text string | size int64 | token_count int64 |
|---|---|---|
#! /usr/bin/env nix-shell
#! nix-shell -i python3 -p "[python3] ++ (with pkgs.python37Packages; [ requests future ws4py pytest pylint coveralls twine wheel ])"
# <<END Extended Shebang>>
import json
from pywebostv.discovery import *
from pywebostv.connection import *
from pywebostv.controls import *
with open('/home/camus/.lgtv.json') as f:
store = json.load(f)
client = WebOSClient(store['hostname'])
client.connect()
for status in client.register(store):
if status == WebOSClient.PROMPTED:
print("Please accept the connect on the TV!")
elif status == WebOSClient.REGISTERED:
print("Registration successful!")
ctrl = InputControl(client)
system = SystemControl(client)
media = MediaControl(client)
app = ApplicationControl(client)
inp = InputControl(client)
inp.connect_input()
# vim: set filetype=python :
| 844 | 278 |
#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
def get_type():
return "LIBRARY"
def get_desc():
return "Lua interpretic script module"
def get_licence():
return "MIT"
def get_compagny_type():
return "org"
def get_compagny_name():
return "lua"
def get_maintainer():
return "authors.txt"
def get_version():
return "version.txt"
def configure(target, my_module):
my_module.add_depend([
'elog',
'etk',
])
my_module.add_flag('c', [
'-DLUA_VERSION_TAG_NAME="\"5.2\""',
'-Wall',
])
my_module.add_flag('c', '-DLUA_COMPAT_ALL', export=True);
#ifeq ("$(TARGET_OS)","Windows")
# my_module.compile_flags_CC('-D_WIN32')
#else
my_module.add_flag('c', '-DLUA_USE_LINUX')
#endif
my_module.add_src_file([
'lua/lapi.cpp',
'lua/lauxlib.cpp',
'lua/lbaselib.cpp',
'lua/lbitlib.cpp',
'lua/lcode.cpp',
'lua/lcorolib.cpp',
'lua/lctype.cpp',
'lua/ldblib.cpp',
'lua/ldebug.cpp',
'lua/ldo.cpp',
'lua/ldump.cpp',
'lua/lfunc.cpp',
'lua/lgc.cpp',
'lua/linit.cpp',
'lua/liolib.cpp',
'lua/llex.cpp',
'lua/lmathlib.cpp',
'lua/lmem.cpp',
'lua/loadlib.cpp',
'lua/lobject.cpp',
'lua/lopcodes.cpp',
'lua/loslib.cpp',
'lua/lparser.cpp',
'lua/lstate.cpp',
'lua/lstring.cpp',
'lua/lstrlib.cpp',
'lua/ltable.cpp',
'lua/ltablib.cpp',
'lua/ltm.cpp',
'lua/lundump.cpp',
'lua/lvm.cpp',
'lua/lzio.cpp',
])
my_module.add_header_file([
'lua/ltm.h',
'lua/llimits.h',
'lua/lctype.h',
'lua/lgc.h',
'lua/lstring.h',
'lua/lzio.h',
'lua/lmem.h',
'lua/lobject.h',
'lua/lvm.h',
'lua/ldebug.h',
'lua/lundump.h',
'lua/lcode.h',
'lua/ltable.h',
'lua/lfunc.h',
'lua/lparser.h',
'lua/lopcodes.h',
'lua/lua.h',
'lua/ldo.h',
'lua/llex.h',
'lua/lapi.h',
'lua/lstate.h',
'lua/lualib.h',
'lua/lauxlib.h',
'lua/luaconf.h',
])
my_module.compile_version('c', 1999, gnu=False)
return True
| 2,102 | 1,028 |
import pandas
import pytest
from covid_model_seiir_pipeline.lib.io import RegressionRoot
from covid_model_seiir_pipeline.lib.io.marshall import (
CSVMarshall,
ParquetMarshall,
)
class MarshallInterfaceTests:
"""
Mixin class for testing the marshall interface.
"""
def test_parameters_marshall(self, instance, regression_root, parameters):
self.assert_load_dump_workflow_correct(instance, regression_root,
parameters, key=regression_root.ode_parameters(draw_id=4))
def test_coefficients_marshall(self, instance, regression_root, coefficients):
self.assert_load_dump_workflow_correct(instance, regression_root,
coefficients, key=regression_root.coefficients(draw_id=4))
def test_regression_beta_marshall(self, instance, regression_root, regression_beta):
self.assert_load_dump_workflow_correct(instance, regression_root,
regression_beta, key=regression_root.beta(draw_id=4))
def test_no_overwriting(self, instance, regression_root, parameters):
self.assert_load_dump_workflow_correct(instance, regression_root,
parameters, key=regression_root.ode_parameters(draw_id=4))
def test_interface_methods(self, instance):
"Test mandatory interface methods exist."
assert hasattr(instance, "dump")
assert hasattr(instance, "load")
assert hasattr(instance, "exists")
def assert_load_dump_workflow_correct(self, instance, regression_root, data, key):
"Helper method for testing load/dump marshalling does not change data."
instance.touch(*regression_root.terminal_paths())
assert instance.dump(data, key=key) is None, ".dump() returns non-None value"
loaded = instance.load(key=key)
pandas.testing.assert_frame_equal(data, loaded)
def assert_no_accidental_overwrites(self, instance, data, key):
"Test overwriting data implicitly is not supported."
instance.dump(data, key=key)
with pytest.raises(LookupError):
instance.dump(data, key=key)
class TestCSVMarshall(MarshallInterfaceTests):
@pytest.fixture
def regression_root(self, tmpdir):
return RegressionRoot(tmpdir)
@pytest.fixture
def instance(self):
return CSVMarshall
class TestParquetMarshall(MarshallInterfaceTests):
@pytest.fixture
def regression_root(self, tmpdir):
return RegressionRoot(tmpdir)
@pytest.fixture
def instance(self):
return ParquetMarshall
| 2,657 | 753 |
from telegram import Update
from telegram.ext import CallbackContext, CommandHandler
from bot.settings import settings
from bot.utils import get_log
from ._utils import require_owner
log = get_log(__name__)
@require_owner
def command(update: Update, context: CallbackContext):
log.debug('Taken command `settings`')
update.message.reply_markdown('Current VK configuration:\n\n'
f'`APP ID: {settings.VK_APP_ID}`\n'
f'`Group ID: {settings.VK_WALL_ID}`\n'
f'`Access Token: {settings.VK_APP_TOKEN}`\n\n'
'Call /config to update it.')
handler = CommandHandler('settings', command)
| 727 | 210 |
import telegram
from telegram.ext import CommandHandler, ConversationHandler, MessageHandler, \
Filters
from civbot.commands.cmd_cancel import cancel_all
from civbot.models import User, Subscription
SELECT = 1
def add_game(bot, update):
user = User.get_or_none(User.id == update.message.from_user.id)
if not user:
update.message.reply_text('You are not registered!')
return ConversationHandler.END
chat_id = update.message.chat_id
if update.message.chat.type != 'private':
admin_ids = [
admin.user.id for admin in bot.get_chat_administrators(chat_id)
]
if update.message.from_user.id not in admin_ids:
update.message.reply_text('You are not admin of the group!')
return ConversationHandler.END
games = user.games
if len(games) == 0:
update.message.reply_text("You don't have any registered games")
return ConversationHandler.END
games = list(
filter(
lambda g: not (
Subscription.select().where(
Subscription.game == g
).where(
Subscription.chat_id == chat_id
).exists()
),
games
)
)
if len(games) == 0:
update.message.reply_text(
"You don't have any registered games not in this chat"
)
return ConversationHandler.END
games = list(filter(lambda g: g.active, games))
if len(games) == 0:
update.message.reply_text("You don't have any active games")
return ConversationHandler.END
custom_keyboard = []
for game in games:
custom_keyboard.append([game.name])
custom_keyboard.append(['cancel'])
reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
update.message.reply_text('Chose the game', reply_markup=reply_markup)
return SELECT
# noinspection PyUnusedLocal
def select_game(bot, update):
if update.message.text == 'cancel':
update.message.reply_text(
'Canceled',
reply_markup=telegram.ReplyKeyboardRemove()
)
return ConversationHandler.END
user = User.get_or_none(User.id == update.message.from_user.id)
game = [g for g in user.games if g.name == update.message.text]
if len(game) == 0:
update.message.reply_text(
'Game does not exist',
reply_markup=telegram.ReplyKeyboardRemove()
)
return ConversationHandler.END
game = game[0]
chat_id = update.message.chat_id
subscriptions = Subscription.select().where(
Subscription.game == game
).where(
Subscription.chat_id == chat_id
)
if subscriptions.exists():
update.message.reply_text(
'Game has already been added',
reply_markup=telegram.ReplyKeyboardRemove()
)
return ConversationHandler.END
Subscription.create(
game=game,
chat_id=chat_id
)
update.message.reply_text(
f'Subscribed to {game.name}.'
f' This chat will now start receiving notifications for the '
'game. To get notifications, send /register to me as private message',
reply_markup=telegram.ReplyKeyboardRemove())
return ConversationHandler.END
def handle():
return ConversationHandler(
entry_points=[CommandHandler('addgame', add_game)],
states={
SELECT: [MessageHandler(Filters.text, select_game)],
},
fallbacks=[CommandHandler('cancel', cancel_all)]
)
| 3,595 | 1,063 |
# Rule nomad_run generates a runner script to execute nomad run with the given
# job file.
#
# NOTE(kfeng): This rule currently assumes that the nomad executable is
# installed on the host machine, and is in one of the directories listed in
# the PATH environment variable. In the future, this project may fetch
# the nomad executable directly instead of relying on the executable on
# the host machine.
def _impl(ctx):
script = ctx.actions.declare_file(ctx.label.name + ".deploy")
command = "nomad run " + ctx.file.job.short_path
ctx.actions.write(
output = script,
content = command,
is_executable = True,
)
runfiles = ctx.runfiles(files = [ctx.file.job])
return [
DefaultInfo(executable=script, runfiles=runfiles)
]
nomad_run = rule(
implementation = _impl,
attrs = {
"job": attr.label(
allow_single_file = True,
mandatory = True,
),
},
executable = True,
)
| 982 | 287 |
def rmsprop_update(loss, params, grad_sq, lr=1e-1, alpha=0.8):
"""Perform an RMSprop update on a collection of parameters
Args:
loss (tensor): A scalar tensor containing the loss whose gradient will be computed
params (iterable): Collection of parameters with respect to which we compute gradients
grad_sq (iterable): Moving average of squared gradients
lr (float): Scalar specifying the learning rate or step-size for the update
alpha (float): Moving average parameter
"""
# Clear up gradients as Pytorch automatically accumulates gradients from
# successive backward calls
zero_grad(params)
# Compute gradients on given objective
loss.backward()
for (par, gsq) in zip(params, grad_sq):
# Update estimate of gradient variance
gsq.data = alpha * gsq.data + (1-alpha) * par.grad.data**2
# Update parameters
par.data -= lr * (par.grad.data / (1e-8 + gsq.data)**0.5)
set_seed(2021)
model = MLP(in_dim=784, out_dim=10, hidden_dims=[])
print('\n The model parameters before the update are: \n')
print_params(model)
loss = loss_fn(model(X), y).to(DEVICE)
grad_sq = [0.0001*i for i in list(model.parameters())]
## Uncomment below to test your function
rmsprop_update(loss, list(model.parameters()), grad_sq=grad_sq, lr=1e-2)
print('\n The model parameters after the update are: \n')
print_params(model) | 1,355 | 446 |
import logging
from urllib.parse import urljoin
import requests
from thomas import Item, StreamerBase, router
from unplugged import Schema, fields
from twisted.internet import threads
from ...exceptions import NotModifiedException, PathNotFoundException
from ...plugins import InputPlugin
from ...stream import Stream
logger = logging.getLogger(__name__)
class RemoteFilesystemInputSchema(Schema):
url = fields.String()
token = fields.String()
priority = fields.Integer(default=5)
class RemoteFilesystemStreamer:
def __init__(self, plugin, path):
self.plugin = plugin
self.path = path
def evaluate(self):
return self.plugin.config["priority"] + 1
def stream(self):
return self.plugin.stream(self.path)
class RemoteFilesystemInputPlugin(InputPlugin):
plugin_name = "remotefilesystem"
config_schema = RemoteFilesystemInputSchema
simpleadmin_templates = True
def __init__(self, config):
self.config = config
self.route_input_rfs_list = f"input_rfs_list_{self.name}"
router.register_handler(
self.route_input_rfs_list, self.thomas_list, False, True, False
)
self.route_input_rfs_stream = f"input_rfs_stream_{self.name}"
router.register_handler(
self.route_input_rfs_stream, self.thomas_stream, False, False, True
)
def unload(self):
router.unregister_handler(self.route_input_rfs_list)
router.unregister_handler(self.route_input_rfs_stream)
def get_headers(self):
return {"Authorization": f"Token {self.config['token']}"}
def get_item(self, path):
item = Item(id=path.strip().split("/")[-1], router=router)
item.expandable = True
item.streamable = True
self.add_routes(item, path, skip=True)
# item.add_route(self.route_input_rfs_list, False, True, False, kwargs={'path': path})
# item.streamable = True
# item.add_route(self.route_input_rfs_stream, False, False, True, kwargs={'path': path})
return item
def add_routes(self, item, path, skip=False):
if not skip:
if path:
path = f"{path}/{item.id}"
else:
path = item.id
if item.is_streamable:
item.add_route(
self.route_input_rfs_stream, False, False, True, kwargs={"path": path}
)
if item.is_listable:
if item.is_expanded:
for nested_item in item.nested_items:
self.add_routes(nested_item, path)
else:
item.add_route(
self.route_input_rfs_list, False, True, False, kwargs={"path": path}
)
def thomas_list(self, item, path, depth=0, modified_since=None):
logger.info(f"Listing path {path!r} with depth {depth}")
item_id = item.id
headers = self.get_headers()
if modified_since:
headers["If-Modified-Since"] = modified_since.strftime(
"%a, %d %b %Y %H:%M:%S GMT"
)
r = requests.get(
urljoin(self.config["url"].strip("/") + "/", path),
params={"depth": depth},
headers=headers,
)
if r.status_code == 200:
item = Item.unserialize(r.json(), router=router)
item.id = item_id
self.add_routes(item, path, skip=True)
return item
elif r.status_code == 304:
raise NotModifiedException()
elif r.status_code == 404 or r.status_code == 403:
raise PathNotFoundException()
else:
logger.warning(
f"Unknown status code {r.status_code} while listing {self.name}/{path}"
)
def thomas_stream(self, item, path):
logger.info(f"Trying to stream {path!r}")
return RemoteFilesystemStreamer(self, path)
def stream(self, path):
logger.info(f"Trying to stream {path!r}")
headers = self.get_headers()
r = requests.post(
urljoin(self.config["url"].strip("/") + "/", path), headers=headers
)
if r.status_code != 200:
raise PathNotFoundException()
return Stream.unserialize(r.json())
| 4,289 | 1,292 |
from api import get_secret, get_tweepy_api, TwitterApiSecret
import json
SECRET_NAME = "TwitterAPIKeys"
def test_get_secret():
secret = get_secret(SECRET_NAME)
assert secret is not None
assert type(secret) is TwitterApiSecret
assert len(secret.access_token) > 0
assert len(secret.access_token_secret) > 0
assert len(secret.api_key) > 0
assert len(secret.api_secret_key) > 0
def test_get_twitter_api():
secret = get_secret(SECRET_NAME)
api = get_tweepy_api(secret)
assert secret is not None
assert api is not None
public_tweets = api.home_timeline(tweet_mode="extended")
for tweet in public_tweets:
assert len(tweet.full_text) > 0
assert len(json.dumps(tweet._json)) > 0
| 741 | 261 |
# Copyright 2013-present Barefoot Networks, 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.
"""
Thrift SAI interface L2 tests
"""
import sys
# sys.path.append('../')
# from sai_types import *
import socket
from switch import *
import sai_base_test
import random
@group('l2')
class L2AcceptedFrameType(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
vlan_id = 1
hw_port1 = 0
hw_port2 = 1
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
# port2 drops tagged. port1 drops untagged
attr_value = sai_thrift_attribute_value_t(booldata=True)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_DROP_UNTAGGED, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_DROP_TAGGED, value=attr_value)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
sai_thrift_create_fdb(self.client, mac1, default_bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, default_bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
untagged_pkt1 = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
tagged_pkt1 = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64,
pktlen=104)
untagged_pkt2 = simple_tcp_packet(eth_dst='00:11:11:11:11:11',
eth_src='00:22:22:22:22:22',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
tagged_pkt2 = simple_tcp_packet(eth_dst='00:11:11:11:11:11',
eth_src='00:22:22:22:22:22',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64,
pktlen=104)
try:
print "Sending tagged packet port 0 -> port 1"
send_packet(self, hw_port1, str(tagged_pkt1))
verify_packets(self, tagged_pkt1, [hw_port2])
print "Sending tagged packet port 1 -> port 0"
send_packet(self, hw_port2, str(tagged_pkt2))
verify_no_packet_any(self, tagged_pkt2, port_list.keys())
print "Sending untagged packet port 0 -> port 1"
send_packet(self, hw_port1, str(untagged_pkt1))
verify_no_packet_any(self, untagged_pkt1, port_list.keys())
print "Sending untagged packet port 1 -> port 0"
send_packet(self, hw_port2, str(untagged_pkt2))
verify_packets(self, untagged_pkt2, [hw_port1])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, default_bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, default_bridge_type, None)
attr_value = sai_thrift_attribute_value_t(booldata=False)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_DROP_UNTAGGED, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_DROP_TAGGED, value=attr_value)
self.client.sai_thrift_set_port_attribute(port2, attr)
@group('l2')
class L21DBridgeBasicTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
print "Sending L2 packet port 0 -> port 1"
vlan_id = 10
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
hw_port1 = 0
hw_port2 = 1
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
bind_mode = SAI_PORT_BIND_MODE_SUB_PORT
attr_value = sai_thrift_attribute_value_t(s32=bind_mode)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_BIND_MODE, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create 1D Bridge
bridge_type = SAI_BRIDGE_TYPE_1D
bridge_attr_value = sai_thrift_attribute_value_t(s32=bridge_type)
bridge_attr = sai_thrift_attribute_t(id=SAI_BRIDGE_ATTR_TYPE, value=bridge_attr_value)
bridge = self.client.sai_thrift_create_bridge([bridge_attr])
# Create Bridge ports
bridge_port_type = SAI_BRIDGE_PORT_TYPE_SUB_PORT
self.client.sai_thrift_remove_bridge_port(bridge_port1)
self.client.sai_thrift_remove_bridge_port(bridge_port2)
bridge_port1 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port1, vlan_id, bridge)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port2, vlan_id, bridge)
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
sai_thrift_create_fdb(self.client, mac1, bridge_type, None, bridge, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, None, bridge, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
try:
send_packet(self, hw_port1, str(pkt))
verify_packets(self, pkt, [hw_port2])
finally:
sai_thrift_delete_fdb(self.client, mac1, None, bridge_type, bridge)
sai_thrift_delete_fdb(self.client, mac2, None, bridge_type, bridge)
bind_mode = SAI_PORT_BIND_MODE_PORT
vlan_id = 1
attr_value = sai_thrift_attribute_value_t(s32=bind_mode)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_BIND_MODE, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
bridge_port_type = SAI_BRIDGE_PORT_TYPE_PORT
self.client.sai_thrift_remove_bridge_port(bridge_port1)
self.client.sai_thrift_remove_bridge_port(bridge_port2)
bridge_port1 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port1, None, default_bridge)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port2, None, default_bridge)
self.client.sai_thrift_remove_bridge(bridge)
br_port_list[port1] = bridge_port1
br_port_list[port2] = bridge_port2
@group('l2')
class L21QBridgeAccess2AccessTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
print "Sending L2 packet port 0 -> port 1"
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
vlan_id = 10
# Set HW ports
hw_port1 = 0
hw_port2 = 1
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create VLAN
vlan_attr_value = sai_thrift_attribute_value_t(u16= vlan_id)
vlan_attr = sai_thrift_attribute_t(id=SAI_VLAN_ATTR_VLAN_ID, value=vlan_attr_value)
vlan_oid = self.client.sai_thrift_create_vlan([vlan_attr])
# tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
tagging_mode = SAI_VLAN_TAGGING_MODE_UNTAGGED
vlan_member1 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port1, tagging_mode)
vlan_member2 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port2, tagging_mode)
# SAI_VLAN_ATTR_MEMBER_LIST
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
bridge_type = SAI_BRIDGE_TYPE_1Q
sai_thrift_create_fdb(self.client, mac1, bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
try:
send_packet(self, hw_port1, str(pkt))
verify_packets(self, pkt, [hw_port2])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, bridge_type, None)
self.client.sai_thrift_remove_vlan_member(vlan_member1)
self.client.sai_thrift_remove_vlan_member(vlan_member2)
self.client.sai_thrift_remove_vlan(vlan_oid)
vlan_id = 1
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
@group('l2')
class L21QBridgeAccess2TrunkTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
# switch_init(self.client)
vlan_id = 11
trunk_pvid = 20
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
# Set HW ports
hw_port1 = 0
hw_port2 = 1
print "Sending L2 packet Access(%d) -> Trunk(%d) (trunk vlan=%d)" % (hw_port1, hw_port2, vlan_id)
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create VLAN
vlan_attr_value = sai_thrift_attribute_value_t(u16= vlan_id)
vlan_attr = sai_thrift_attribute_t(id=SAI_VLAN_ATTR_VLAN_ID, value=vlan_attr_value)
vlan_oid = self.client.sai_thrift_create_vlan([vlan_attr])
# tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
tagging_mode = SAI_VLAN_TAGGING_MODE_UNTAGGED
vlan_member1 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port1, tagging_mode)
tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
vlan_member2 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port2, tagging_mode)
# SAI_VLAN_ATTR_MEMBER_LIST
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
bridge_type = SAI_BRIDGE_TYPE_1Q
sai_thrift_create_fdb(self.client, mac1, bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
exp_pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64,
pktlen=104)
try:
send_packet(self, hw_port1, str(pkt))
verify_packets(self, exp_pkt, [hw_port2])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, bridge_type, None)
self.client.sai_thrift_remove_vlan_member(vlan_member1)
self.client.sai_thrift_remove_vlan_member(vlan_member2)
self.client.sai_thrift_remove_vlan(vlan_oid)
vlan_id = 1
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
@group('l2')
class L21QBridgeTrunk2TrunkTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
# switch_init(self.client)
vlan_id = 12
trunk_pvid = 20
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
# Set HW ports
hw_port1 = 0
hw_port2 = 1
print "Sending L2 packet Trunk(%d) -> Trunk(%d) (trunk vlan=%d)" % (hw_port1, hw_port2, vlan_id)
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create VLAN
vlan_attr_value = sai_thrift_attribute_value_t(u16= vlan_id)
vlan_attr = sai_thrift_attribute_t(id=SAI_VLAN_ATTR_VLAN_ID, value=vlan_attr_value)
vlan_oid = self.client.sai_thrift_create_vlan([vlan_attr])
tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
vlan_member1 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port1, tagging_mode)
vlan_member2 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port2, tagging_mode)
# SAI_VLAN_ATTR_MEMBER_LIST
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
bridge_type = SAI_BRIDGE_TYPE_1Q
sai_thrift_create_fdb(self.client, mac1, bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64)
exp_pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64)
try:
send_packet(self, hw_port1, str(pkt))
verify_packets(self, exp_pkt, [hw_port2])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, bridge_type, None)
self.client.sai_thrift_remove_vlan_member(vlan_member1)
self.client.sai_thrift_remove_vlan_member(vlan_member2)
self.client.sai_thrift_remove_vlan(vlan_oid)
vlan_id = 1
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
@group('l2')
class L21QBridgeTrunk2AccessTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
# switch_init(self.client)
vlan_id = 13
trunk_pvid = 20
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
# Set HW ports
hw_port1 = 0
hw_port2 = 1
print "Sending L2 packet Trunk(%d) -> Access(%d) (trunk vlan=%d)" % (hw_port1, hw_port2, vlan_id)
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
# Create VLAN
vlan_attr_value = sai_thrift_attribute_value_t(u16= vlan_id)
vlan_attr = sai_thrift_attribute_t(id=SAI_VLAN_ATTR_VLAN_ID, value=vlan_attr_value)
vlan_oid = self.client.sai_thrift_create_vlan([vlan_attr])
tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
vlan_member1 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port1, tagging_mode)
tagging_mode = SAI_VLAN_TAGGING_MODE_UNTAGGED
vlan_member2 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port2, tagging_mode)
# SAI_VLAN_ATTR_MEMBER_LIST
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
bridge_type = SAI_BRIDGE_TYPE_1Q
sai_thrift_create_fdb(self.client, mac1, bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
dl_vlan_enable=True,
vlan_vid=vlan_id,
ip_ttl=64)
exp_pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64,
pktlen=96)
try:
send_packet(self, hw_port1, str(pkt))
verify_packets(self, exp_pkt, [hw_port2])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, bridge_type, None)
self.client.sai_thrift_remove_vlan_member(vlan_member1)
self.client.sai_thrift_remove_vlan_member(vlan_member2)
self.client.sai_thrift_remove_vlan(vlan_oid)
vlan_id = 1
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
@group('l2')
class L21DLagTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
print
print "Sending 3 L2 (1D) Lag packets port 0 -> port 1/2/3"
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
# Set HW ports
hw_port1 = 0
hw_port2 = 1
hw_port3 = 2
hw_port4 = 3
hw_port5 = 4
switch_init2(self.client)
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
port3 = port_list[hw_port3]
port4 = port_list[hw_port4]
port5 = port_list[hw_port5]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
bridge_port3 = br_port_list[port3]
bridge_port4 = br_port_list[port4]
bridge_port5 = br_port_list[port5]
vlan_id = 15
bind_mode = SAI_PORT_BIND_MODE_SUB_PORT
attr_value = sai_thrift_attribute_value_t(s32=bind_mode)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_BIND_MODE, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
self.client.sai_thrift_set_port_attribute(port5, attr)
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
self.client.sai_thrift_set_port_attribute(port5, attr)
# Create LAG
lag = self.client.sai_thrift_create_lag([])
lag_member1 = sai_thrift_create_lag_member(self.client, port2, lag)
# lag_member2 = sai_thrift_create_lag_member(self.client, port3, lag)
lag_member3 = sai_thrift_create_lag_member(self.client, port4, lag)
lag_member4 = sai_thrift_create_lag_member(self.client, port5, lag)
# self.client.sai_thrift_remove_lag_member(lag_member2) # Check remove_lag_member from middle of list. shouldn't mess with hash.
# Set LAG Vlan attr
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(lag, attr)
# Create 1D Bridge
bridge_type = SAI_BRIDGE_TYPE_1D
bridge_attr_value = sai_thrift_attribute_value_t(s32= bridge_type)
bridge_attr = sai_thrift_attribute_t(id=SAI_BRIDGE_ATTR_TYPE, value=bridge_attr_value)
bridge = self.client.sai_thrift_create_bridge([bridge_attr])
# Create Bridge ports
bridge_port_type = SAI_BRIDGE_PORT_TYPE_SUB_PORT
self.client.sai_thrift_remove_bridge_port(bridge_port1)
self.client.sai_thrift_remove_bridge_port(bridge_port2)
self.client.sai_thrift_remove_bridge_port(bridge_port4)
self.client.sai_thrift_remove_bridge_port(bridge_port5)
bridge_port1 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port1, vlan_id, bridge)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, lag, vlan_id, bridge)
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
fdb_bridge_type = SAI_FDB_ENTRY_BRIDGE_TYPE_1D
sai_thrift_create_fdb(self.client, mac1, fdb_bridge_type, None, bridge, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, fdb_bridge_type, None, bridge, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:11:11:11:11:11',
eth_src='00:22:22:22:22:22',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
try:
send_packet(self, hw_port2, str(pkt))
verify_packets(self, pkt, [hw_port1])
for ip_id in [101,103,105,107]:
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=ip_id,
ip_ttl=64)
send_packet(self, hw_port1, str(pkt))
verify_packets_any(self, pkt, [hw_port2, hw_port4, hw_port5])
finally:
sai_thrift_delete_fdb(self.client, mac1, None, bridge_type, bridge)
sai_thrift_delete_fdb(self.client, mac2, None, bridge_type, bridge)
vlan_id = 1
bind_mode = SAI_PORT_BIND_MODE_PORT
attr_value = sai_thrift_attribute_value_t(s32=bind_mode)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_BIND_MODE, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
self.client.sai_thrift_set_port_attribute(port5, attr)
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
self.client.sai_thrift_set_port_attribute(port5, attr)
self.client.sai_thrift_remove_lag_member(lag_member1)
self.client.sai_thrift_remove_lag_member(lag_member4)
self.client.sai_thrift_remove_lag_member(lag_member3)
self.client.sai_thrift_remove_lag(lag)
bridge_port_type = SAI_BRIDGE_PORT_TYPE_PORT
self.client.sai_thrift_remove_bridge_port(bridge_port1)
self.client.sai_thrift_remove_bridge_port(bridge_port2)
self.client.sai_thrift_remove_bridge(bridge)
bridge_port1 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port1, None, default_bridge)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port2, None, default_bridge)
bridge_port4 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port4, None, default_bridge)
bridge_port5 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port5, None, default_bridge)
br_port_list[port1] = bridge_port1
br_port_list[port2] = bridge_port2
br_port_list[port4] = bridge_port4
br_port_list[port5] = bridge_port5
@group('l2')
class L21QLagTest(sai_base_test.ThriftInterfaceDataPlane):
def runTest(self):
switch_init2(self.client)
print "Sending 3 L2 (1Q Access2Access) Lag packets port 0 -> port 1/2/3"
mac1 = '00:11:11:11:11:11'
mac2 = '00:22:22:22:22:22'
# Set HW ports
hw_port1 = 0
hw_port2 = 1
hw_port3 = 2
hw_port4 = 3
port1 = port_list[hw_port1]
port2 = port_list[hw_port2]
port3 = port_list[hw_port3]
port4 = port_list[hw_port4]
bridge_port1 = br_port_list[port1]
bridge_port2 = br_port_list[port2]
bridge_port3 = br_port_list[port3]
bridge_port4 = br_port_list[port4]
vlan_id = 15
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
# Create LAG
lag = self.client.sai_thrift_create_lag([])
lag_member1 = sai_thrift_create_lag_member(self.client, port4, lag)
lag_member2 = sai_thrift_create_lag_member(self.client, port2, lag)
lag_member3 = sai_thrift_create_lag_member(self.client, port3, lag)
# Set LAG Vlan attr
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(lag, attr)
# Create Lag Bridge port
bridge_port_type = SAI_BRIDGE_PORT_TYPE_PORT
self.client.sai_thrift_remove_bridge_port(bridge_port2)
self.client.sai_thrift_remove_bridge_port(bridge_port3)
self.client.sai_thrift_remove_bridge_port(bridge_port4)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, lag, None, default_bridge)
# Create VLAN
vlan_attr_value = sai_thrift_attribute_value_t(u16= vlan_id)
vlan_attr = sai_thrift_attribute_t(id=SAI_VLAN_ATTR_VLAN_ID, value=vlan_attr_value)
vlan_oid = self.client.sai_thrift_create_vlan([vlan_attr])
# tagging_mode = SAI_VLAN_TAGGING_MODE_TAGGED
tagging_mode = SAI_VLAN_TAGGING_MODE_UNTAGGED
vlan_member1 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port1, tagging_mode)
vlan_member2 = sai_thrift_create_vlan_member(self.client, vlan_oid, bridge_port2, tagging_mode)
# Create FDB Entries:
mac_action = SAI_PACKET_ACTION_FORWARD
fdb_entry_type = SAI_FDB_ENTRY_TYPE_STATIC
bridge_type = SAI_BRIDGE_TYPE_1Q
sai_thrift_create_fdb(self.client, mac1, bridge_type, vlan_id, None, bridge_port1, mac_action, fdb_entry_type)
sai_thrift_create_fdb(self.client, mac2, bridge_type, vlan_id, None, bridge_port2, mac_action, fdb_entry_type)
pkt = simple_tcp_packet(eth_dst='00:11:11:11:11:11',
eth_src='00:22:22:22:22:22',
ip_dst='10.0.0.1',
ip_id=101,
ip_ttl=64)
try:
send_packet(self, hw_port3, str(pkt))
verify_packets(self, pkt, [hw_port1])
for ip_id in [101,103,105]:
pkt = simple_tcp_packet(eth_dst='00:22:22:22:22:22',
eth_src='00:11:11:11:11:11',
ip_dst='10.0.0.1',
ip_id=ip_id,
ip_ttl=64)
send_packet(self, hw_port1, str(pkt))
verify_packets_any(self, pkt, [hw_port2, hw_port3, hw_port4])
finally:
sai_thrift_delete_fdb(self.client, mac1, vlan_id, bridge_type, None)
sai_thrift_delete_fdb(self.client, mac2, vlan_id, bridge_type, None)
vlan_id = 1
self.client.sai_thrift_remove_vlan_member(vlan_member1)
self.client.sai_thrift_remove_vlan_member(vlan_member2)
self.client.sai_thrift_remove_vlan(vlan_oid)
self.client.sai_thrift_remove_bridge_port(bridge_port2)
bridge_port2 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port2, None, default_bridge)
bridge_port3 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port3, None, default_bridge)
bridge_port4 = sai_thrift_create_bridge_port(self.client, bridge_port_type, port4, None, default_bridge)
br_port_list[port2] = bridge_port2
br_port_list[port3] = bridge_port3
br_port_list[port4] = bridge_port4
self.client.sai_thrift_remove_lag_member(lag_member1)
self.client.sai_thrift_remove_lag_member(lag_member2)
self.client.sai_thrift_remove_lag_member(lag_member3)
self.client.sai_thrift_remove_lag(lag)
attr_value = sai_thrift_attribute_value_t(u16=vlan_id)
attr = sai_thrift_attribute_t(id=SAI_PORT_ATTR_PORT_VLAN_ID, value=attr_value)
self.client.sai_thrift_set_port_attribute(port1, attr)
self.client.sai_thrift_set_port_attribute(port2, attr)
self.client.sai_thrift_set_port_attribute(port3, attr)
self.client.sai_thrift_set_port_attribute(port4, attr)
| 34,698 | 13,150 |
from flask import Flask, request, jsonify
from flask_sqlalchemy import SQLAlchemy
from model.exp_model import Experience, ExperienceSchema
class ExperienceService(object):
def __init__(self, app:Flask, db:SQLAlchemy) -> None:
self.app = app
self.db = db
self.exp_schema = ExperienceSchema()
self.exps_schema = ExperienceSchema(many=True)
# Creating new experience
def add_experience(self):
description = request.json['description']
employee_id = request.json['employee_id']
start_date = request.json['start_date']
end_date = request.json['end_date']
new_experience = Experience(employee_id, description, start_date, end_date)
self.db.session.add(new_experience)
self.db.session.commit()
return self.exp_schema.jsonify(new_experience)
# Retreiving all experiences
def get_experiences(self):
all_experiences = Experience.query.all()
return jsonify(self.exps_schema.dump(all_experiences))
# Retreiving single experience
def get_experience(self, id):
experience = Experience.query.get(id)
return self.exp_schema.jsonify(experience)
# Updating single experience
def update_experience(self, id):
experience = Experience.query.get(id)
employee_id = request.json['employee_id']
description = request.json['description']
start_date = request.json['start_date']
end_date = request.json['end_date']
experience.employee_id = employee_id
experience.description = description
experience.start_date = start_date
experience.end_date = end_date
self.db.session.commit()
return self.exp_schema.jsonify(experience)
# Deleting single experience
def delete_experience(self, id):
experience = Experience.query.get(id)
self.db.session.delete(experience)
self.db.session.commit()
return self.exp_schema.jsonify(experience) | 2,024 | 603 |
""" Code for turning a GAE Search query into a SOLR query. """
import logging
import sys
from constants import INDEX_NAME_FIELD, INDEX_LOCALE_FIELD
from appscale.common.unpackaged import APPSCALE_PYTHON_APPSERVER
sys.path.append(APPSCALE_PYTHON_APPSERVER)
from google.appengine.api.search import query_parser
from google.appengine.api.search import QueryParser
class ParsingError(ValueError):
pass
def prepare_solr_query(index, gae_query, projection_fields,
sort_fields, limit, offset):
""" Constructor query parameters dict to be sent to Solr.
Args:
index: An Index for the query to run.
gae_query: A str representing query sent by user.
projection_fields: A list of fields to fetch for each document.
sort_fields: a list of tuples of form (<FieldName>, "desc"/"asc")
limit: a max number of document to return.
offset: an integer representing offset.
Returns:
A dict containing http query params to be sent to Solr.
"""
params = {}
solr_query = '{}:{}'.format(INDEX_NAME_FIELD, index.name)
if not isinstance(gae_query, unicode):
gae_query = unicode(gae_query, 'utf-8')
logging.debug(u'GAE Query: {}'.format(gae_query))
if gae_query:
query_tree = query_parser.ParseAndSimplify(gae_query)
logging.debug(u'Tree dump: {}'.format(query_tree.toStringTree()))
solr_query += ' AND ' + _create_query_string(index.name, query_tree)
params['q'] = solr_query
# Use edismax as the parsing engine for more query abilities.
params['defType'] = 'edismax'
# Restrict to only known index fields.
search_fields = ['id'] + [field['name'] for field in index.schema]
params['qf'] = ' '.join(search_fields)
# Get the field list for the query.
if projection_fields:
fields_list = ['id', INDEX_NAME_FIELD, INDEX_LOCALE_FIELD] + [
'{}_{}'.format(index.name, field_name)
for field_name in projection_fields
]
params['fl'] = ' '.join(fields_list)
# Set sort order.
if sort_fields:
sort_list = _get_sort_list(index.name, sort_fields)
params['sort'] = ','.join(sort_list)
params['rows'] = limit
params['start'] = offset
logging.debug(u'Solr request params: {}'.format(params))
return params
def _get_sort_list(index_name, sort_fields):
""" Generates a list of Solr sort expressions:
strings containing fields name and direction.
Args:
index_name: A str representing full index name (appID_namespace_index).
sort_fields: A list of tuples of form (<FieldName>, "desc"/"asc").
Returns:
A list containing fields with direction to order by.
"""
#TODO deal with default values of sort expressions.
field_list = []
for field_name, direction in sort_fields:
new_field = '{}_{} {}'.format(index_name, field_name, direction)
field_list.append(new_field)
return field_list
def _create_query_string(index_name, query_tree):
""" Creates a SOLR query string from a antlr3 parse tree.
Args:
index_name: A str representing full index name (appID_namespace_index).
query_tree: A antlr3.tree.CommonTree.
Returns:
A string which can be sent to SOLR.
"""
query_tree_type = query_tree.getType()
has_nested = query_tree_type in [
QueryParser.CONJUNCTION, QueryParser.DISJUNCTION, QueryParser.NEGATION
]
if has_nested:
# Processes nested query parts
nested = [
_create_query_string(index_name, child)
for child in query_tree.children
]
if query_tree_type == QueryParser.CONJUNCTION:
return '({})'.format(' AND '.join(nested))
if query_tree_type == QueryParser.DISJUNCTION:
return '({})'.format(' OR '.join(nested))
if query_tree_type == QueryParser.NEGATION:
return 'NOT ({})'.format(' AND '.join(nested))
# Process leaf of the tree
if query_tree_type in query_parser.COMPARISON_TYPES:
field, match = query_tree.children
if field.getType() == QueryParser.GLOBAL:
value = query_parser.GetQueryNodeText(match).strip('"')
escaped_value = value.replace('"', '\\"')
return '"{}"'.format(escaped_value)
else:
field_name = query_parser.GetQueryNodeText(field)
value = query_parser.GetQueryNodeText(match).strip('"')
internal_field_name = '{}_{}'.format(index_name, field_name)
escaped_value = value.replace('"', '\\"')
oper = _get_operator(query_tree_type)
return '{}{}"{}"'.format(internal_field_name, oper, escaped_value)
else:
raise ParsingError('Unexpected query tree type: {}'.format(query_tree_type))
# TODO handle range operators
def _get_operator(op_code):
""" Returns the string equivalent of the operation code.
Args:
op_code: An int which maps to a comparison operator.
Returns:
A str, the SOLR operator which maps from the operator code.
"""
# TODO
if op_code == QueryParser.EQ:
return ':'
return ':'
| 4,850 | 1,563 |
import sys
import pickle
def create_evaluable_CAG(input, output):
with open(input, "rb") as f:
G = pickle.load(f)
G.res = 200
G.assemble_transition_model_from_gradable_adjectives()
G.sample_from_prior()
with open(output, "wb") as f:
pickle.dump(G, f)
if __name__ == "__main__":
create_evaluable_CAG(sys.argv[1], sys.argv[2])
| 367 | 147 |
byt = open("xor_key.bin", "rb").read()
final = "\x00\x00\x00\x00\x6A\x00\x6A\x00\x68".encode()
final = [e for e in final]
final.append(0x26)
final.append(0xFC)
final.append(0x19)
final.append(0x00)
final.append(0x6A)
final.append(0x00)
final = [e for e in final]
final.append(0xB8)
final.append(0xC8)
final.append(0x59)
final.append(0x51)
final.append(0x00)
final.append(0xFF)
final.append(0xE0)
pwn_str = "Game has been pwnd\x00".encode()
for e in pwn_str:
final.append(e)
while len(final) != 0x220:
final.append(0x61)
final.append(0x14)
final.append(0xFC)
final.append(0x19)
final.append(0x00)
final = bytearray(bytes(final))
for index,_ in enumerate(final[4:]):
final[4+index] ^= byt[index%0x190]
with open("texture.dat", "wb") as f:
f.write(final)
| 774 | 384 |
''' Incremental-Classifier Learning
Authors : Khurram Javed, Muhammad Talha Paracha
Maintainer : Khurram Javed
Lab : TUKL-SEECS R&D Lab
Email : 14besekjaved@seecs.edu.pk '''
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.nn import init
class DownsampleStride(nn.Module):
def __init__(self, n=2):
super(DownsampleStride, self).__init__()
self._n = n
def forward(self, x):
return x[..., ::2, ::2]
class ResidualBlock(nn.Module):
expansion = 1
def __init__(self, inplanes, increase_dim=False, last=False):
super(ResidualBlock, self).__init__()
self.increase_dim = increase_dim
if increase_dim:
first_stride = 2
planes = inplanes * 2
else:
first_stride = 1
planes = inplanes
self.conv_a = nn.Conv2d(inplanes, planes, kernel_size=3, stride=first_stride, padding=1, bias=False)
self.bn_a = nn.BatchNorm2d(planes)
self.conv_b = nn.Conv2d(planes, planes, kernel_size=3, stride=1, padding=1, bias=False)
self.bn_b = nn.BatchNorm2d(planes)
if increase_dim:
self.downsample = DownsampleStride()
self.pad = lambda x: torch.cat((x, x.mul(0)), 1)
self.last = last
def forward(self, x):
y = self.conv_a(x)
y = self.bn_a(y)
y = F.relu(y, inplace=True)
y = self.conv_b(y)
y = self.bn_b(y)
if self.increase_dim:
x = self.downsample(x)
x = self.pad(x)
if x.shape != y.shape:
import pdb; pdb.set_trace()
y = x + y
if self.last:
y = F.relu(y, inplace=True)
return y
class CifarResNet(nn.Module):
"""
ResNet optimized for the Cifar Dataset, as specified in
https://arxiv.org/abs/1512.03385.pdf
"""
def __init__(self, n=5, channels=3):
""" Constructor
Args:
depth: number of layers.
num_classes: number of classes
base_width: base width
"""
super(CifarResNet, self).__init__()
self.conv_1_3x3 = nn.Conv2d(channels, 16, kernel_size=3, stride=1, padding=1, bias=False)
self.bn_1 = nn.BatchNorm2d(16)
self.inplanes = 16
self.stage_1 = self._make_layer(16, increase_dim=False, n=n)
self.stage_2 = self._make_layer(16, increase_dim=True, n=n-1)
self.stage_3 = self._make_layer(32, increase_dim=True, n=n-2)
self.stage_4 = ResidualBlock(64, increase_dim=False, last=True)
self.avgpool = nn.AvgPool2d(8)
self.out_dim = 64
for m in self.modules():
if isinstance(m, nn.Conv2d):
nn.init.kaiming_normal_(m.weight, mode='fan_out', nonlinearity='relu')
elif isinstance(m, nn.BatchNorm2d):
nn.init.constant_(m.weight, 1)
nn.init.constant_(m.bias, 0)
def _make_layer(self, planes, increase_dim=False, last=False, n=None):
layers = []
if increase_dim:
layers.append(
ResidualBlock(planes, increase_dim=True)
)
planes = 2 * planes
for i in range(n):
layers.append(ResidualBlock(planes))
return nn.Sequential(*layers)
def forward(self, x, feature=False, T=1, labels=False, scale=None, keep=None):
x = self.conv_1_3x3(x)
x = F.relu(self.bn_1(x), inplace=True)
x = self.stage_1(x)
x = self.stage_2(x)
x = self.stage_3(x)
x = self.stage_4(x)
x = self.avgpool(x)
x = x.view(x.size(0), -1)
return x
def resnet_rebuffi(n=5):
return CifarResNet(n=n)
| 3,721 | 1,391 |
# -*- coding: utf-8 -*-
"""
IO
~~~~~~~~~~~~~~~~~~~
A Python module for Input and Ouput interactions
:copyright: (c) 2020 Killian Mahé
:license: MIT, see LICENSE for more details.
"""
__title__ = 'io'
__author__ = 'Killian Mahé'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 Killian Mahé'
__version__ = '0.0.1'
from .terminal import Terminal
from .keyboard import Keyboard
from .file import File | 406 | 158 |
''' Tools for dealing with multithreaded programs. '''
from concurrent.futures import ThreadPoolExecutor, as_completed
from nlplib.general.iterate import chunked
__all__ = ['simultaneously']
def simultaneously (function, iterable, max_workers=4) :
''' This runs the given function over the iterable concurrently, in a similar fashion to the built-in <map>
function. The output's order is not guaranteed to correspond the order of the input iterable. Therefor the
output order should be treated as undefined. The <max_workers> argument denotes the amount of worker threads to
use. '''
if max_workers < 1 :
raise ValueError('<simultaneously> requires at least one worker thread.')
with ThreadPoolExecutor(max_workers=max_workers) as executor :
futures = (executor.submit(function, item)
for item in iterable)
for chunk in chunked(futures, max_workers, trail=True) :
for future in as_completed(chunk) :
yield future.result()
def __demo__ () :
from urllib.request import urlopen
urls = ['http://amazon.com', 'http://ibm.com', 'http://google.com', 'http://python.org']
for html in simultaneously(lambda url : urlopen(url).read(1024), urls) :
print(html, end='\n\n')
def __test__ (ut) :
def double (string) :
return string * 2
inputs = ['foo', 'bar', 'baz']
outputs = {'foofoo', 'barbar', 'bazbaz'}
for kw in [{}, {'max_workers' : 1}, {'max_workers' : 231}] :
ut.assert_equal(set(simultaneously(double, inputs, **kw)), outputs)
for workers in [0, -1, -13421] :
ut.assert_raises(lambda : set(simultaneously(double, inputs, max_workers=workers)), ValueError)
class SomeArbitraryException (Exception) :
pass
def raise_something (string) :
raise SomeArbitraryException
ut.assert_raises(lambda : list(simultaneously(raise_something, inputs)), SomeArbitraryException)
if __name__ == '__main__' :
from nlplib.general.unittest import UnitTest
__test__(UnitTest())
__demo__()
| 2,095 | 646 |
# Generated by Django 2.2.5 on 2019-09-28 19:25
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('eyedetector', '0004_xypupilframe'),
]
operations = [
migrations.CreateModel(
name='Experiment',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=50)),
('description', models.CharField(blank=True, max_length=350, null=True)),
('image', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='experiments', to='eyedetector.Image')),
],
),
]
| 781 | 250 |
inp=input("Enter a string: ")
rev=0
while (inp>0):
dig=inp%10
rev=rev*10+dig
inp=inp//10
print(rev) | 108 | 63 |
import globals
class Exhaust(globals.Hass):
async def initialize(self):
config = self.args["config"]
self._input = config["input"]
self._temperature = config["temperature"]
self._min_temperature = float(config["min_temperature"])
self._max_temperature = float(config["max_temperature"])
await self._ensure_state_async()
await self.listen_state(self._temperature_callback_async,
entity=self._temperature)
async def _temperature_callback_async(self, entity, attribute, old, new, kwargs):
if old == new:
return
# self.log(f"TemperatureChange: old = {old}, new = {new}")
await self._ensure_state_async()
async def _ensure_state_async(self):
input = await self.get_state(self._input)
temperature = float(await self.get_state(self._temperature))
# self.log(f"EnsureState: input = {input}, temperature = {temperature}")
if temperature < self._min_temperature and input == "on":
# self.log("turn_off")
await self.call_service("input_boolean/turn_off",
entity_id=self._input)
elif temperature > self._max_temperature and input == "off":
# self.log("turn_on")
await self.call_service("input_boolean/turn_on",
entity_id=self._input)
| 1,424 | 393 |
# -*- coding: utf-8 -*-
from django.db import models
from apps.registro.models.Anexo import Anexo
from django.core.exceptions import ValidationError
import datetime
class AnexoBaja(models.Model):
anexo = models.ForeignKey(Anexo)
observaciones = models.CharField(max_length = 255)
fecha_baja = models.DateField()
class Meta:
app_label = 'registro'
db_table = 'registro_anexo_baja'
def __unicode__(self):
return self.fecha_baja
| 474 | 164 |
import os
import unittest
from rosie import Rosie
from rosie import DocumentNotFound
# from test import create
# create(100)
class RosieTest(unittest.TestCase):
def setUp(self):
basedir = os.path.join(os.path.expanduser("~"), "Documents",
"Progetti", "HTML-CSS", "rosie-output")
cartelle = []
cartelle.append(os.path.join(basedir, "_content"))
# cartelle.append(os.path.join(basedir, "_files"))
cartelle.append(os.path.join(basedir, "_images"))
self.rosie = Rosie(*cartelle)
self.rosie.registra_allegati(tag="Images",
estensioni=[".jpg", ".jpeg", ".png", ".gif"])
self.rosie.registra_allegati(tag="Files",
estensioni=[".zip", ".rar", ".7z"])
self.rosie.scan()
def test_documenti_trovati(self):
self.assertEqual(len(self.rosie.elenco), 100, "Ci dovevano essere 100 documenti")
def test_tutti_hanno_titolo_e_tag(self):
for indice, elemento in enumerate(self.rosie, start=1):
self.assertTrue("title" in elemento.meta.keys(),
"Non ci doveva essere un documento senza titolo")
self.assertTrue("date" in elemento.meta.keys(),
"Non ci doveva essere un documento senza data")
def test_il_primo_ha_almeno_un_immagine(self):
"""
Il primo elemento ha sempre almeno un'immagine, per via di come creo
i files nel pacchetto test
"""
ciccio = self.rosie.find("element0001")
self.assertTrue("images" in ciccio.meta,
"Il primo elemento doveva avere almeno un'immagine")
def test_la_ricerca_funziona(self):
"""
Quando cerca un'elemento (che so esistere) lo deve trovare
"""
ciccio = self.rosie.find("element0003")
self.assertTrue(ciccio is not None, "L'elemento N. 3 doveva esistere")
with self.assertRaises(DocumentNotFound):
self.rosie.find("element9999")
def tearDown(self):
# print(self.rosie.json())
pass | 2,159 | 676 |
# @file
#
# FadZmaq Project
# Professional Computing. Semester 2 2019
#
# Copyright FadZmaq © 2019 All rights reserved.
# @author Lachlan Russell 22414249@student.uwa.edu.au
# @author Jordan Russell jordanrussell@live.com
import json
# Tests that the server is up at all.
def test_index(client):
response = client.get('/', follow_redirects=False)
assert response.status_code == 308
# Not implemented
def test_user_request(client):
response = client.get('/user/recs', follow_redirects=True)
assert response.status_code == 200
# Not implemented
def test_user_request_by_id(client):
response = client.get('/user/1234', follow_redirects=True)
assert response.status_code == 410
# Basic test the profile API
# To be expanded when we receive data from DB -Jordan
def test_profile(client):
# Check we get a response
response = client.get('/profile', follow_redirects=True)
assert response.status_code == 200
data = json.loads(response.data)
assert "profile" in data
profile = data["profile"]
assert "name" in profile
# assert "age" in profile
def test_profile_post(client):
# Note this currently fails since the posting to profile is *not* implemented with json.
# Do not change this test, profile should (and will soon) be json.
# post_data = dict(somedata=profile_data.my_profile)
# response = client.post('/profile', data=post_data, follow_redirects=True)
# assert response.status_code == 200
assert True is False
def test_matches(client):
response = client.get('/matches', follow_redirects=True)
assert response.status_code == 200
print(response)
def test_match_request_by_id(client):
response = client.get('/matches/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 200
# Not implemented yet
def test_match_delete_by_id(client):
response = client.delete('/matches/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 204
def test_match_thumb_down(client):
response = client.post('/matches/thumbs/down/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 204
def test_match_thumb_up(client):
response = client.post('/matches/thumbs/up/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 204
def test_like(client):
response = client.post('/like/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 200
def test_pass(client):
response = client.post('/pass/b026324c6904b2a9cb4b88d6d61c81d1', follow_redirects=True)
assert response.status_code == 200
| 2,726 | 1,012 |
import inspect
import subprocess
import tempfile
from copy import copy
from weakref import WeakKeyDictionary
import piexif
import pyheif
from cffi import FFI
from PIL import Image, ImageFile
from pyheif.error import HeifError
ffi = FFI()
_keep_refs = WeakKeyDictionary()
pyheif_supports_transformations = (
'transformations' in inspect.signature(pyheif.HeifFile).parameters
)
HEIF_ENC_BIN = 'heif-enc'
def _crop_heif_file(heif):
# Zero-copy crop before loading. Just shifts data pointer and updates meta.
crop = heif.transformations['crop']
if crop == (0, 0) + heif.size:
return heif
if heif.mode not in ("L", "RGB", "RGBA"):
raise ValueError("Unknown mode")
pixel_size = len(heif.mode)
offset = heif.stride * crop[1] + pixel_size * crop[0]
cdata = ffi.from_buffer(heif.data, require_writable=False) + offset
data = ffi.buffer(cdata, heif.stride * crop[3])
# Keep reference to the original data as long as "cdata + offset" is alive.
# Normally ffi.from_buffer should hold it for us but unfortunately
# cdata + offset creates a new cdata object without reference.
_keep_refs[cdata] = heif.data
new_heif = copy(heif)
new_heif.size = crop[2:4]
new_heif.transformations = dict(heif.transformations, crop=(0, 0) + crop[2:4])
new_heif.data = data
return new_heif
def _rotate_heif_file(heif):
"""
Heif files already contain transformation chunks imir and irot which are
dominate over Orientation tag in EXIF.
This is not aligned with other formats behaviour and we MUST fix EXIF after
loading to prevent unexpected rotation after resaving in other formats.
And we come up to there is no reasons to force rotation of HEIF images
after loading since we need update EXIF anyway.
"""
orientation = heif.transformations['orientation_tag']
if not (1 <= orientation <= 8):
return heif
exif = {'0th': {piexif.ImageIFD.Orientation: orientation}}
if heif.exif:
try:
exif = piexif.load(heif.exif)
exif['0th'][piexif.ImageIFD.Orientation] = orientation
except Exception:
pass
new_heif = copy(heif)
new_heif.transformations = dict(heif.transformations, orientation_tag=0)
new_heif.exif = piexif.dump(exif)
return new_heif
def _extract_heif_exif(heif_file):
"""
Unlike other helper functions, this alters heif_file in-place.
"""
heif_file.exif = None
clean_metadata = []
for item in heif_file.metadata or []:
if item['type'] == 'Exif':
if heif_file.exif is None:
if item['data'] and item['data'][0:4] == b"Exif":
heif_file.exif = item['data']
else:
clean_metadata.append(item)
heif_file.metadata = clean_metadata
class HeifImageFile(ImageFile.ImageFile):
format = 'HEIF'
format_description = "HEIF/HEIC image"
def _open(self):
try:
heif_file = pyheif.open(
self.fp, apply_transformations=not pyheif_supports_transformations)
except HeifError as e:
raise SyntaxError(str(e))
_extract_heif_exif(heif_file)
if pyheif_supports_transformations:
heif_file = _rotate_heif_file(heif_file)
self._size = heif_file.transformations['crop'][2:4]
else:
self._size = heif_file.size
self.mode = heif_file.mode
if heif_file.exif:
self.info['exif'] = heif_file.exif
if heif_file.color_profile:
# rICC is Restricted ICC. Still not sure can it be used.
# ISO/IEC 23008-12 says: The colour information 'colr' descriptive
# item property has the same syntax as the ColourInformationBox
# as defined in ISO/IEC 14496-12.
# ISO/IEC 14496-12 says: Restricted profile shall be of either
# the Monochrome or Three‐Component Matrix‐Based class of
# input profiles, as defined by ISO 15076‐1.
# We need to go deeper...
if heif_file.color_profile['type'] in ('rICC', 'prof'):
self.info['icc_profile'] = heif_file.color_profile['data']
self.tile = []
self.heif_file = heif_file
def load(self):
heif_file, self.heif_file = self.heif_file, None
if heif_file:
try:
heif_file = heif_file.load()
except HeifError as e:
cropped_file = e.code == 7 and e.subcode == 100
if not cropped_file or not ImageFile.LOAD_TRUNCATED_IMAGES:
raise
# Ignore EOF error and return blank image otherwise
self.load_prepare()
if heif_file.data:
if pyheif_supports_transformations:
heif_file = _crop_heif_file(heif_file)
self.frombytes(heif_file.data, "raw", (self.mode, heif_file.stride))
heif_file.data = None
return super().load()
def check_heif_magic(data):
return pyheif.check(data) != pyheif.heif_filetype_no
def _save(im, fp, filename):
# Save it before subsequent im.save() call
info = im.encoderinfo
if im.mode in ('P', 'PA'):
# disbled due to errors in libheif encoder
raise IOError("cannot write mode P as HEIF")
with tempfile.NamedTemporaryFile(suffix='.png') as tmpfile:
im.save(
tmpfile, format='PNG', optimize=False, compress_level=0,
icc_profile=info.get('icc_profile', im.info.get('icc_profile')),
exif=info.get('exif', im.info.get('exif'))
)
cmd = [HEIF_ENC_BIN, '-o', '/dev/stdout', tmpfile.name]
avif = info.get('avif')
if avif is None and filename:
ext = filename.rpartition('.')[2].lower()
avif = ext == 'avif'
if avif:
cmd.append('-A')
if info.get('encoder'):
cmd.extend(['-e', info['encoder']])
if info.get('quality') is not None:
cmd.extend(['-q', str(info['quality'])])
subsampling = info.get('subsampling')
if subsampling is not None:
if subsampling == 0:
subsampling = '444'
elif subsampling == 1:
subsampling = '422'
elif subsampling == 2:
subsampling = '420'
cmd.extend(['-p', 'chroma=' + subsampling])
if info.get('speed') is not None:
cmd.extend(['-p', 'speed=' + str(info['speed'])])
if info.get('concurrency') is not None:
cmd.extend(['-p', 'threads=' + str(info['concurrency'])])
try:
# Warning: Do not open stdout and stderr at the same time
with subprocess.Popen(cmd, stdout=subprocess.PIPE) as enc:
for data in iter(lambda: enc.stdout.read(128 * 1024), b''):
fp.write(data)
if enc.wait():
raise subprocess.CalledProcessError(enc.returncode, cmd)
except FileNotFoundError:
raise FileNotFoundError(
2, f"Can't find heif encoding binary. Install '{HEIF_ENC_BIN}' "
+ "or set `HeifImagePlugin.HEIF_ENC_BIN` to full path.")
Image.register_open(HeifImageFile.format, HeifImageFile, check_heif_magic)
Image.register_save(HeifImageFile.format, _save)
Image.register_mime(HeifImageFile.format, 'image/heif')
Image.register_extensions(HeifImageFile.format, [".heic", ".avif"])
# Don't use this extensions for saving images, use the ones above.
# They have added for quick file type detection only (i.g. by Django).
Image.register_extensions(HeifImageFile.format, [".heif", ".hif"])
| 7,728 | 2,500 |
from cloc import grp, cmd, opt, arg, mixins
from cloc.types import Choices
"""Test Code ->"""
@grp('cli')
def cli():
"""cli docstring"""
pass
@grp('nested')
def group2():
"""group 2"""
pass
@grp('permissions')
def permission_group():
pass
@cmd('test')
@arg('arg1', type=int, help='positional argument 1')
@opt('--opt1', '-o1', type=Choices(['these', 'are', 'the', 'choices']), help='option 1')
def test(cmd1, opt1=None):
"""test command"""
print('#test_command')
print(cmd1, str(opt1))
class UserCmds(mixins.List, mixins.Echo):
def __init__(self, **kwargs):
for key, value in kwargs.items():
setattr(self, key, value)
@cmd('users')
def listusers(self):
"""list users command"""
print('#user_command')
if hasattr(self, 'users'):
print(', '.join(self.users))
class PermissionCmds(mixins.List, mixins.Echo):
"""this class is going to inherit the List mixin which provides a generic list command"""
def __init__(self, **kwargs):
for key, value in kwargs.items():
setattr(self, key, value)
u = UserCmds(users=['user1', 'user2'])
user2 = UserCmds(users=['user1', 'user2', 'user3'])
perms = PermissionCmds(roles=['admin', 'user', 'dev'], services=['test_service1'])
cli.add_command(u)
cli.add_command(group2)
group2.add_command(test)
group2.add_command(user2)
group2.add_command(permission_group)
permission_group.add_command(perms)
if __name__ == '__main__':
cli() | 1,510 | 540 |
#!/usr/bin/env python3
import os
os.system("openocd -f wukong.cfg -c 'init; pld load 0 build/top.bit; exit' ")
| 111 | 47 |
import json
import time
from utils.helper import RedisClient
from paho.mqtt.client import MQTT_ERR_SUCCESS
import paho.mqtt.client as mqtt
from utils.date_time import TimeMeasure
import tasks as tasks_mqtt
from utils.message import MsgShadowGet, MsgShadowUpdate
import logging
logger = logging.getLogger()
logger.setLevel(logging.INFO)
class CommMqtt:
host = None
port = None
client = None
def __init__(self, host, port):
self.host = host
self.port = port
self.client = mqtt.Client(protocol=mqtt.MQTTv311)
def connect(self):
try:
result = self.client.connect(self.host, port=self.port, keepalive=60)
time.sleep(5)
except:
return False
return True if result == MQTT_ERR_SUCCESS else False
def disconnect(self):
time.sleep(1)
self.client.disconnect()
def publish_for_send_list(self, msg_obj, buf_list):
"""
Publish処理
送信データのリストを1件ずつPublishする
:param msg_obj: 送信メッセージのオブジェクト
:param buf_list: 送信するデータのリスト
:return: 送信成功送信バッファリスト、送信失敗送信バッファリスト(タプル)
"""
# 送信成功リスト
send_ok_buf_list = []
# 送信失敗リスト
send_ng_buf_list = []
# 再送信データが大量にあると通信が長引いてしまうため
# 一定時間、送信処理が続いた場合は次回の送信時に送信するようにする
time_measure = TimeMeasure(time_out_sec=60)
for idx, buf in enumerate(buf_list):
if time_measure.is_time_out():
# 次回起動時に送信する
send_ng_buf_list.append(buf)
continue
# Publish
result = self.publish(msg_obj, buf=buf, idx=idx)
if result:
send_ok_buf_list.append(buf)
else:
send_ng_buf_list.append(buf)
return send_ok_buf_list, send_ng_buf_list
def publish(self, msg_obj, buf=None, idx=0):
"""
Publishの実行
:param msg_obj: 送信メッセージオブジェクト
:param idx: 送信データのindex
:param buf: 送信データ
:return: 結果(True:成功、False:失敗)
"""
# Publishするトピック名を取得する
topic = msg_obj.get_pub_topic()
if not topic:
return False
# 送信メッセージを取得する
send_data = msg_obj.create_pub_data(buf, idx) if buf else {}
logger.debug('publish send_data:[%s]' % send_data)
try:
# Publish実行
result = self.client.publish(topic, json.dumps(send_data), qos=1)
except Exception as e:
logger.error("failed publish")
logger.error("type:{0}".format(type(e)))
logger.error("args:{0}".format(e.args))
logger.error("{0}".format(e))
result = False
return result
class CommMqttShadow(CommMqtt):
imsi = None
def __init__(self, host, port, imsi):
super().__init__(host, port)
self.imsi = imsi
def shadow_get(self):
redis_client = RedisClient()
msg_shadow_get = MsgShadowGet(imsi=self.imsi)
result_sub = tasks_mqtt.run_subscribe_by_mqtt.delay(self.host, self.port, msg_shadow_get.get_sub_topic())
time.sleep(2)
try:
self.connect()
result = self.publish(msg_shadow_get)
self.disconnect()
except Exception as e:
logger.error(e)
while not result_sub.ready():
time.sleep(1)
value = redis_client.get('token')
if not value:
return ''
payload_str = value.decode(encoding='utf-8')
if not payload_str:
return ''
return payload_str
def shadow_update(self, update_dict):
msg_shadow_update = MsgShadowUpdate(imsi=self.imsi)
time.sleep(2)
try:
self.connect()
result = self.publish(msg_shadow_update, buf=update_dict)
self.disconnect()
except Exception as e:
logger.error(e)
| 3,916 | 1,391 |
# simple servo test for PCA9685 with HS422
from servo.servo import *
from time import sleep
pca = PCA9685()
pca.setZero(0)
sleep(2)
for a in xrange(-67,67,1):
pca.setAngle(0,a)
sleep(0.05)
for a in xrange(67,0,-1):
pca.setAngle(0,a)
sleep(0.05)
| 255 | 132 |
items = input().split("|") # items to buy
budged = int(input())
profit = 0
profit_price_list = []
profit_list = []
profit_price = 0
for index in items:
profit = 0
profit_price = 0
separator = index.split("->")
if separator[0] == "Clothes":
if not 0 < float(separator[1]) <= 50:
continue
elif separator[0] == "Shoes":
if not 0 < float(separator[1]) <= 35:
continue
elif separator[0] == "Accessories":
if not 0 < float(separator[1]) <= 20.50:
continue
budged -= float(separator[1]) # calculating budged left
profit_price += float(separator[1]) * 1.40 # calculating the price with 40% increase
profit += float(separator[1]) * 0.40 # profit = round(profit, 2) # calculating the profit after the 40% increase for each item
profit_price_list.append(round(profit_price, 2)) # list with the increased prices
profit_list.append(profit) # list with every items' profit
if budged <= 0:
budged += float(separator[1])
profit_price_list.pop()
profit_list.pop()
continue
profit_price = sum(profit_list)
price_after_40 = sum(profit_price_list)
budged += price_after_40
print(*profit_price_list)
print(f"Profit: {profit_price:.2f}")
print(); print()
if budged >= 150:
print("Hello, France!")
else:
print("Time to go.") | 1,386 | 473 |
from rest_framework import viewsets
from rest_framework.serializers import ValidationError
from .models import Address
from .serializers import AddressSerializer
from lims.permissions.permissions import IsAddressOwner, IsAddressOwnerFilter
from lims.shared.mixins import AuditTrailViewMixin
class AddressViewSet(AuditTrailViewMixin, viewsets.ModelViewSet):
"""
Provide a list of address for the logged in user.
**Permissions:** IsAuthenticated, UserIsOwnerAccessOnly
**Filters:** IsOwnerFilterBackend
"""
queryset = Address.objects.all()
serializer_class = AddressSerializer
permission_classes = (IsAddressOwner,)
filter_backends = (IsAddressOwnerFilter,)
def perform_create(self, serializer):
# Allow an admin user to set the user
# for instance is adding a new address
if self.request.user.groups.filter(name='admin').exists():
serializer.save()
else:
# No. You are not admin, you cannot add user.
if self.request.user != serializer.validated_data['user']:
raise ValidationError('You cannot add an address to another user')
serializer.save(user=self.request.user)
| 1,209 | 326 |
'''
Created on Sep 8, 2018
Use autocropFaces() to crop out the material around faces in an image,
where the faces are automatically detected.
See the bottom for an example use script.
Used this as a starting reference point:
https://docs.opencv.org/3.3.0/d7/d8b/tutorial_py_face_detection.html
@author: tmahrt
'''
import os
from os.path import join
import cv2
from matplotlib import pyplot as plt
from PIL import Image
TRAINING_DATA_PATH = '/opt/local/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml'
class NoFacesException(Exception):
def __init__(self, fn):
super(NoFacesException, self).__init__()
self.fn = fn
def __str__(self):
errStr = ("ERROR: Could not find faces in file `%s` with "
"training data: \n`%s`\n Please try again with a different "
"file, or different training set.")
return errStr % (self.fn, TRAINING_DATA_PATH)
class FaceRecognizer():
def __init__(self):
self.recognizer = cv2.CascadeClassifier(TRAINING_DATA_PATH)
def recognize(self, imgFn):
gray = cv2.imread(imgFn, 0)
faces = self.recognizer.detectMultiScale(gray, 1.3, 5)
if len(faces) == 0:
raise NoFacesException(imgFn)
return faces
def outputDebug(imgFn,
faces,
faceRegion=None,
helperRegion=None,
finalCropRegion=None):
img = cv2.imread(imgFn)
# The list of faces
for face in faces:
_drawRectangle(img, face, (255, 0, 0))
# All the faces fit tightly in this space
if faceRegion is not None:
_drawRectangle(img, faceRegion, (0, 0, 255))
# I used this to see various intermediate stages
if helperRegion is not None:
_drawRectangle(img, helperRegion, (0, 255, 0))
# The final cropping region
if finalCropRegion is not None:
_drawRectangle(img, finalCropRegion, (255, 255, 0))
img = _convertBgrToRGB(img)
plt.imshow(img)
plt.show()
def _convertBgrToRGB(img):
# https://stackoverflow.com/questions/15072736/extracting-a-region-from-an-image-using-slicing-in-python-opencv/15074748#15074748
return img[:, :, ::-1]
def _drawRectangle(img, xywh, color):
x, y, w, h = xywh
cv2.rectangle(img, (x, y), (x + w, y + h), color, 2)
def encapsulateSubsquares(regionList):
'''
Given a list of squares, return a square that tightly fits all subsquares
Input is a list of the form [(x, y, w, h), () ]
Output is the (x, y, w, h) that wholly includes all input
'''
newRegionList = [(x, y, x + w, y + h) for x, y, w, h in regionList]
x0List, y0List, x1List, y1List = zip(*newRegionList)
x0 = min(x0List)
y0 = min(y0List)
x1 = max(x1List)
y1 = max(y1List)
return [x0, y0, x1 - x0, y1 - y0]
def modifyAspectRatio(sourceXYWH, targetRatio):
'''
Changes the ratio of the input square to be that of the target ratio
'''
sourceRatio = sourceXYWH[2] / sourceXYWH[3]
if targetRatio > sourceRatio:
newX1 = int(sourceXYWH[3] * targetRatio)
returnXYWH = [sourceXYWH[0], sourceXYWH[1],
newX1, sourceXYWH[3]]
else:
newY1 = int(sourceXYWH[2] / targetRatio)
returnXYWH = [sourceXYWH[0], sourceXYWH[1],
sourceXYWH[2], newY1]
return returnXYWH
def relativeRecenter(sourceXYWH, targetXYWH):
'''
Centers a square with respect to the center of a different square
'''
targetXCenter = targetXYWH[0] + (targetXYWH[2] / 2.0)
targetYCenter = targetXYWH[1] + (targetXYWH[3] / 2.0)
newX = int(targetXCenter - (sourceXYWH[2] / 2.0))
newY = int(targetYCenter - (sourceXYWH[3] / 2.0))
return (newX, newY, sourceXYWH[2], sourceXYWH[3])
def keepInsideImage(sourceXYWH, imageWH):
'''
Forces a square to be within the image that contains it
'''
left = sourceXYWH[0]
right = sourceXYWH[0] + sourceXYWH[2]
top = sourceXYWH[1]
bottom = sourceXYWH[1] + sourceXYWH[3]
newLeft = left
if left < 0 and right > imageWH[0]:
newLeft = (imageWH[0] - right)
elif left < 0:
newLeft = 0
elif right > imageWH[0]:
newLeft = imageWH[0] - sourceXYWH[2]
newTop = top
if top < 0 and bottom > imageWH[1]:
newTop = imageWH[1] / 2.0 - sourceXYWH[3]
elif top < 0:
newTop = 0
elif bottom > imageWH[1]:
newTop = imageWH[1] - sourceXYWH[3]
return [int(newLeft), int(newTop), sourceXYWH[2], sourceXYWH[3]]
def enforceMinSize(sourceXYWH, targetWH, imgWH):
'''
Increase the crop region to the target, but don't exceed the img dimensions
'''
newW = max((targetWH[0], sourceXYWH[2]))
newH = max((targetWH[1], sourceXYWH[3]))
newW = min((imgWH[0], newW))
newH = min((imgWH[1], newH))
return (sourceXYWH[0], sourceXYWH[1], newW, newH)
def autocropFaces(fn, outputFN, recognizer, targetWH=None, debug=False):
'''
Will crop an image based on all of the faces it automatically detects
targetWH: e.g. (300, 200); if specified, it the output will that size.
The area around the detected heads will be enlarged to permit
the necessary aspect ratio before scaling occurs. If the image
is smaller than the target, whitespace will be filled in.
debug: if True, an image will pop up showing detected faces and the
region that will be cropped. The image must be closed before
the code will continue
'''
faceList = recognizer.recognize(fn)
faceRegion = encapsulateSubsquares(faceList)
img = Image.open(fn)
imgWH = (img.width, img.height)
if targetWH is not None:
sizedFaceRegion = enforceMinSize(faceRegion, targetWH, imgWH)
proportionedFaceRegion = modifyAspectRatio(sizedFaceRegion,
targetWH[0] / targetWH[1])
regionToCenterIn = relativeRecenter(sizedFaceRegion,
faceRegion)
adjustedFaceRegion = relativeRecenter(proportionedFaceRegion,
regionToCenterIn)
adjustedFaceRegion = keepInsideImage(adjustedFaceRegion, imgWH)
# If the crop region is smaller than the targetWH, fill in
# the empty space with a white background
newImg = Image.new('RGB',
(adjustedFaceRegion[2], adjustedFaceRegion[3]),
(255, 255, 255))
newImg.paste(img, (-adjustedFaceRegion[0], -adjustedFaceRegion[1]))
img = newImg
if debug is True:
outputDebug(fn, faceList, faceRegion, sizedFaceRegion,
finalCropRegion=adjustedFaceRegion)
else:
img = img.crop(faceRegion)
if targetWH is not None:
img = img.resize(targetWH)
img.save(outputFN)
# Example use
if __name__ == "__main__":
def getThumbnailName(fn):
name, ext = os.path.splitext(fn)
return name + "_thumbnail" + ext
inputPath = os.path.abspath("../data/faces/")
outputPath = os.path.abspath("../data/faces/output")
targetWH = (300, 200)
if not os.path.exists(outputPath):
os.mkdir(outputPath)
_recognizer = FaceRecognizer()
for _fn in os.listdir(inputPath):
if ".jpg" not in _fn:
continue
inputFn = join(inputPath, _fn)
outputFn = join(outputPath, getThumbnailName(_fn))
try:
autocropFaces(inputFn, outputFn, _recognizer, targetWH, debug=True)
except NoFacesException:
print("No faces in: " + inputFn)
continue
| 7,875 | 2,629 |
# -*- coding: utf-8 -*-
"""MultistageDdecWorkChain workchain"""
from __future__ import absolute_import
from aiida.plugins import CalculationFactory, DataFactory, WorkflowFactory
from aiida.common import AttributeDict
from aiida.engine import WorkChain, ToContext
# import sub-workchains
Cp2kMultistageWorkChain = WorkflowFactory('cp2k.multistage') # pylint: disable=invalid-name
Cp2kDdecWorkChain = WorkflowFactory('ddec.cp2k_ddec') # pylint: disable=invalid-name
# import calculations
DdecCalculation = CalculationFactory('ddec') # pylint: disable=invalid-name
# import aiida data
CifData = DataFactory('cif') # pylint: disable=invalid-name
class MultistageDdecWorkChain(WorkChain):
"""A workchain that combines: Cp2kMultistageWorkChain + Cp2kDdecWorkChain"""
@classmethod
def define(cls, spec):
"""Define workflow specification."""
super(MultistageDdecWorkChain, cls).define(spec)
spec.expose_inputs(Cp2kMultistageWorkChain)
spec.expose_inputs(Cp2kDdecWorkChain, exclude=['cp2k_base'])
# specify the chain of calculations to be performed
spec.outline(cls.run_cp2kmultistage, cls.run_cp2kddec, cls.return_results)
spec.expose_outputs(Cp2kMultistageWorkChain, exclude=['output_structure'])
spec.expose_outputs(Cp2kDdecWorkChain, include=['structure_ddec'])
def run_cp2kmultistage(self):
"""Run CP2K-Multistage"""
cp2k_ms_inputs = AttributeDict(self.exposed_inputs(Cp2kMultistageWorkChain))
cp2k_ms_inputs['metadata']['call_link_label'] = 'call_cp2kmultistage'
running = self.submit(Cp2kMultistageWorkChain, **cp2k_ms_inputs)
self.report('Running Cp2MultistageWorkChain to move the structure')
return ToContext(ms_wc=running)
def run_cp2kddec(self):
"""Pass the Cp2kMultistageWorkChain outputs as inputs for
Cp2kDdecWorkChain: cp2k_base (metadata), cp2k_params, structure and WFN.
"""
cp2k_ddec_inputs = AttributeDict(self.exposed_inputs(Cp2kDdecWorkChain))
cp2k_ddec_inputs['cp2k_base'] = self.exposed_inputs(Cp2kMultistageWorkChain)['cp2k_base']
cp2k_ddec_inputs['cp2k_base']['cp2k']['parameters'] = self.ctx.ms_wc.outputs.last_input_parameters
cp2k_ddec_inputs['cp2k_base']['cp2k']['structure'] = self.ctx.ms_wc.outputs.output_structure
cp2k_ddec_inputs['cp2k_base']['cp2k']['parent_calc_folder'] = self.ctx.ms_wc.outputs.remote_folder
cp2k_ddec_inputs['metadata']['call_link_label'] = 'call_cp2kddec'
running = self.submit(Cp2kDdecWorkChain, **cp2k_ddec_inputs)
return ToContext(cp2k_ddec_wc=running)
def return_results(self):
"""Return exposed outputs and print the pk of the CifData w/DDEC"""
self.out_many(self.exposed_outputs(self.ctx.ms_wc, Cp2kMultistageWorkChain))
self.out_many(self.exposed_outputs(self.ctx.cp2k_ddec_wc, Cp2kDdecWorkChain))
| 2,920 | 1,057 |
'''
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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
os.environ["ROOT"] = ""
from mock.mock import patch, MagicMock
from unittest import TestCase
import platform
from ambari_commons import os_utils
os_utils.search_file = MagicMock(return_value="/tmp/ambari.properties")
import shutil
project_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)),os.path.normpath("../../../../"))
shutil.copyfile(project_dir+"/ambari-server/conf/unix/ambari.properties", "/tmp/ambari.properties")
with patch.object(platform, "linux_distribution", return_value = MagicMock(return_value=('Redhat', '6.4', 'Final'))):
with patch("os.path.isdir", return_value = MagicMock(return_value=True)):
with patch("os.access", return_value = MagicMock(return_value=True)):
with patch.object(os_utils, "parse_log4j_file", return_value={'ambari.log.dir': '/var/log/ambari-server'}):
from ambari_server.serverUtils import get_ambari_server_api_base
from ambari_server.serverConfiguration import CLIENT_API_PORT, CLIENT_API_PORT_PROPERTY, SSL_API, DEFAULT_SSL_API_PORT, SSL_API_PORT
@patch.object(platform, "linux_distribution", new = MagicMock(return_value=('Redhat', '6.4', 'Final')))
class TestServerUtils(TestCase):
def test_get_ambari_server_api_base(self):
# Test case of using http protocol
properties = FakeProperties({
SSL_API: "false",
CLIENT_API_PORT_PROPERTY: None
})
result = get_ambari_server_api_base(properties)
self.assertEquals(result, 'http://127.0.0.1:8080/api/v1/')
# Test case of using http protocol and custom port
properties = FakeProperties({
SSL_API: "false",
CLIENT_API_PORT_PROPERTY: "8033"
})
result = get_ambari_server_api_base(properties)
self.assertEquals(result, 'http://127.0.0.1:8033/api/v1/')
# Test case of using https protocol (and ssl port)
properties = FakeProperties({
SSL_API: "true",
SSL_API_PORT : "8443",
CLIENT_API_PORT_PROPERTY: None
})
result = get_ambari_server_api_base(properties)
self.assertEquals(result, 'https://127.0.0.1:8443/api/v1/')
class FakeProperties(object):
def __init__(self, prop_map):
self.prop_map = prop_map
def get_property(self, prop_name):
return self.prop_map[prop_name]
| 2,997 | 978 |
import sys
import time
from itertools import chain
from pathlib import Path
import nbformat
import notedown
def convert(path, timeout=40 * 60):
with path.open() as in_file:
notebook = notedown.MarkdownReader().read(in_file)
start = time.time()
notedown.run(notebook, timeout)
print(f"=== {path.name} finished evaluation in {time.time() - start} sec")
# need to add language info to for syntax highlight
notebook["metadata"].update(language_info={"name": "python"})
with path.with_suffix(".ipynb").open("w") as out_file:
out_file.write(nbformat.writes(notebook))
if __name__ == "__main__":
assert len(sys.argv) >= 2, "usage: input.md"
here = Path(".")
files = list(chain.from_iterable(map(here.glob, sys.argv[1:])))
for file in files:
convert(file)
| 828 | 280 |
from .tu_simple_lane import TusimpleLane | 40 | 15 |
import turtle as t
n = 50
t. bgcolor("black")
t. color("green")
t. speed(0)
for x in range(n):
t. circle(80)
t. lt(360/n)
| 147 | 69 |
from .dashboard_menu import * | 29 | 9 |
# The 3-Clause BSD License
# Copyright (C) 2019, KessK, all rights reserved.
# Copyright (C) 2019, Kison.Y, all rights reserved.
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
# following conditions are met: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.
import datetime
import hashlib
import random
import string
import time
from django.contrib.auth.models import User
from django.core.cache import cache
from django.http import JsonResponse
from django.shortcuts import render
from rest_framework.decorators import api_view
from common.AliyunIot import AliyunIot
from common.ExceptionAPI import AValidation400Error, response_json
from common.WechatCommonView import WechatCommonView
from common.config import ErrorCodes, DEVICE_MASK, DEVICE_NAME_DEFAULT, ALIYUN_IOT_CONTROL_APP_PRODUCT_KEY
from device.models import Device, DeviceBind, ControlDevice, AliyunIotRules
from device.wexinSignature import Signature
from rest_framework import status, generics
class BindView(WechatCommonView):
"""
Configure the device to connect to wifi AP in Wechat client
"""
template_name = "config-wechat-wifi.html"
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
sign = Signature(self.full_url)
sign.sign()
print(sign.ret['nonceStr'])
print(sign.ret['jsapi_ticket'])
print(sign.ret['timestamp'])
print(sign.ret['url'])
context['sign'] = sign
return context
#
# class BindDeviceAPI(generics.CreateAPIView):
#
# def post(self, request, *args, **kwargs):
# print("ok")
@api_view(['POST'])
def bindDevice(request):
if not check_login(request):
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['not_allowed'],
errcode=ErrorCodes['global']['not_allowed'])
chip_id = request.POST.get('chip')
if not request.session.get('userid') or not chip_id:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['required'],
errcode=ErrorCodes['global']['required'])
chip_id = str(chip_id).replace(DEVICE_MASK, '')
chip_id = str(chip_id).replace(':', '')
try:
device = Device.objects.get(device_chipid=chip_id)
user = User.objects.get(id=request.session['userid'])
except Device.DoesNotExist:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['device']['not_exits'],
errcode=ErrorCodes['device']['not_exits'])
except User.DoesNotExist:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['user']['not_exits'],
errcode=ErrorCodes['user']['not_exits'])
device_action = DeviceBindAction(device=device,user=user)
device_action.unbinding_device()
device_bind = device_action.bind_device()
return JsonResponse(response_json(data={'device_name':device_bind.device_name,'id':device_bind.id}), status=status.HTTP_201_CREATED)
@api_view(['POST'])
def bindShareDevice(request):
if not check_login(request):
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['not_allowed'],
errcode=ErrorCodes['global']['not_allowed'])
share_code = request.POST.get('share_code')
if not request.session.get('userid') or not share_code:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['required'],
errcode=ErrorCodes['global']['required'])
share_info = cache.get(share_code)
if share_info is None:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['device']['share_oft'],
errcode=ErrorCodes['device']['share_oft'])
user_id = share_info.get("user")
device_id = share_info.get("device")
try:
user = User.objects.get(id=user_id)
device = Device.objects.get(id=device_id)
current_user = User.objects.get(id=request.session.get('userid'))
device_bind = DeviceBind.objects.get(user=user, device=device, onActive=True)
except User.DoesNotExist or Device.DoesNotExist or DeviceBind.DoesNotExist:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['not_allowed'],
errcode=ErrorCodes['global']['not_allowed'])
device_action = DeviceBindAction(device=device, user=current_user)
device_bind = device_action.bind_device(origin_user=user)
return JsonResponse(response_json(data={'device_name': device_bind.device_name, 'id': device_bind.id}),
status=status.HTTP_201_CREATED)
@api_view(['PUT'])
def ccnameDevice(request):
if not check_login(request):
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['not_allowed'],
errcode=ErrorCodes['global']['not_allowed'])
chip_id = request.POST.get('chip')
name = request.POST.get('name')
is_name = request.POST.get('is_name')
if not chip_id:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['required'],
errcode=ErrorCodes['global']['required'])
device_bind_action = DeviceBindAction(device=None,user=User.objects.get(id=request.session.get('userid')))
if not is_name:
device_bind = device_bind_action.update_device_name(device_bind_id=chip_id,name=name)
else:
device_bind = device_bind_action.update_device_name(device_bind_id=DeviceBind.objects.get(device__device_name=chip_id,user__id=request.session.get('userid'),onActive=True).id, name=name)
return JsonResponse(response_json(data={}),
status=status.HTTP_201_CREATED)
class DeviceBindAction():
def __init__(self,device,user):
self.device = device
self.user = user
self._deviceRule = DeviceRule(self.device,None)
control_device = self._deviceRule.create_control_device(self.user)
self._deviceRule.control_device = control_device
def unbinding_device(self):
self._deviceRule.delete_device_all_action()
try:
bind_log = DeviceBind.objects.filter(device=self.device, onActive=True).exclude(user=self.user)
bind_log.update(onActive=False, unbind_time=datetime.datetime.now())
bind_log = DeviceBind.objects.filter(device=self.device,onActive=True,origin_user__isnull=False).exclude(origin_user=self.user)
bind_log.update(onActive=False, unbind_time=datetime.datetime.now())
except DeviceBind.DoesNotExist:
pass
def unbind_user_device(self):
try:
if DeviceBind.objects.filter(device=self.device, user=self.user,onActive=True,origin_user=None).exists():
# Current user is the main user
self._deviceRule.delete_share_rule_action()
bind_log = DeviceBind.objects.filter(device=self.device, onActive=True, origin_user=self.user)
bind_log.update(onActive=False, unbind_time=datetime.datetime.now())
bind_log = DeviceBind.objects.filter(device=self.device, user=self.user, onActive=True)
bind_log.update(onActive=False, unbind_time=datetime.datetime.now())
# Delete rule action
self._deviceRule.delete_device2control_action()
# self._deviceRule.delete_control2device_action()
except DeviceBind.DoesNotExist:
pass
def get_user_device_name(self):
user_devices_count = DeviceBind.objects.filter(user=self.user, onActive=True).count() + 1
device_name = DEVICE_NAME_DEFAULT + str(user_devices_count)
return device_name
def bind_device(self,device_name=None,origin_user=None):
"""
Binding steps:
Step1. Create if not exists a binding log.
Step2. Create if not exists a device's rule.
Step3. Create if not exists a control device's rule # No more used
Step4. Create if there is no rule action from device to control device.
Step5. Create if there is no rule action from control device to device. # No more used
Step6. Create if there is no rule action from current control device to share's control device # No more used
Step7. Create if there is no rule action from share's control device to current control device # No more used
:param device_name:
:return:
"""
# Step.1
if not DeviceBind.objects.filter(user=self.user, device=self.device,onActive=True).exists():
if device_name is None:
device_name = self.get_user_device_name()
device_bind = DeviceBind(
device=self.device,
user=self.user,
origin_user=origin_user,
device_name=device_name,
onActive=True,
)
device_bind.save()
# Step.2-5
self._deviceRule.create_device2control_action()
# self._deviceRule.create_control2device_action()
#Step.6-7
# if origin_user is not None:
# origin_user_control = self._deviceRule.create_control_device(origin_user)
# self._deviceRule.create_share_rule_action(origin_user_control)
return DeviceBind.objects.get(user=self.user, device=self.device,onActive=True)
def update_device_name(self,device_bind_id,name):
try:
device_bind = DeviceBind.objects.get(id=device_bind_id)
except DeviceBind.DoesNotExist:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['device']['not_exits'],
errcode=ErrorCodes['device']['not_exits'])
if not device_bind.user.id == self.user.id:
raise AValidation400Error(detail="Unknow", code=ErrorCodes['global']['not_allowed'],
errcode=ErrorCodes['global']['not_allowed'])
if name is None or name == device_bind.device_name:
pass
else:
device_bind.device_name = name
device_bind.save(update_fields=['device_name'])
return device_bind
class ControlDeviceAction():
def __init__(self,user):
self.user = user
self._aliyun = AliyunIot()
def create_control_device(self):
"""
Create a control device when it dose not exists.
Each user has only one control device
:return:
"""
if not ControlDevice.objects.filter(user=self.user).exists():
response = self._aliyun.register_control_device()
print('Aliyun response is ')
print(response)
if response is not None:
control_device = ControlDevice(
user=self.user,
product_name='KessK_Controllor',
device_name=response['DeviceName'],
product_key=response['ProductKey'],
device_secret=response['DeviceSecret'],
)
control_device.save()
return ControlDevice.objects.get(user=self.user)
def create_device2control_rule(self,device_bind,rule_name=None):
"""
Create Aliyun IoT rule from the esp8266 device to the control device.
It will only be created once.
:param device_bind:
:param rule_name:
:return:
"""
if rule_name is None:
rule_name = device_bind.device.device_name + "_2control_rule"
topic = "/"+device_bind.device.device_name+"/user/update"
if not AliyunIotRules.objects.filter(short_topic=topic,bind_device=device_bind).exists():
data = self._aliyun.create_rule(rule_name=rule_name,topic=topic,product_key=device_bind.device.product_key)
if data is not None:
aliyun_iot_relu = AliyunIotRules(
name=device_bind.device.device_name + self.user.first_name,
short_topic=topic,
ruleid=data["RuleId"],
bind_device=device_bind,
requestid=data["RequestId"]
)
aliyun_iot_relu.save()
data["rule_name"] = rule_name
return AliyunIotRules.objects.get(short_topic=topic,bind_device=device_bind)
def create_control2device_rule(self,device_bind,rule_name=None):
if rule_name is None:
rule_name = self.user.first_name + str(time.time()).replace('.','')
def create_device2control_rule_action(self,relu_id,rule_name,configuration,device_bind):
if not AliyunIotRules.objects.filter(ruleid=relu_id,action_config=configuration).exists():
data = self._aliyun.create_rule_action(relu_id,configuration)
if data is not None:
aliyun_iot_relu_ = AliyunIotRules(
name=rule_name + '_action_',
ruleid=relu_id,
bind_device=device_bind,
requestid=data["RequestId"],
action_type="REPUBLISH",
action_config=configuration,
)
aliyun_iot_relu_.save()
return AliyunIotRules.objects.get(ruleid=relu_id,action_config=configuration)
def start_rule(self,rule_id):
self._aliyun.start_rule(rule_id)
class DeviceRule():
def __init__(self,device,control_device):
self.device = device
self.control_device = control_device
self._aliyun = AliyunIot()
def create_control_device(self,user):
"""
Create a control device when it dose not exists.
Each user has only one control device
:return:
"""
if not ControlDevice.objects.filter(user=user).exists():
response = self._aliyun.register_control_device()
print('Aliyun response is ')
print(response)
if response is not None:
control_device = ControlDevice(
user=user,
product_name='KessK_Controllor',
device_name=response['DeviceName'],
product_key=response['ProductKey'],
device_secret=response['DeviceSecret'],
)
control_device.save()
return ControlDevice.objects.get(user=user)
def create_share_rule_action(self,origin_user_control):
# Get control device rule
control_device_rule = self.create_control_rule()
# Get share's control device rule
share_control_device_rule = self.create_rule(origin_user_control.device_name + "_2device_rule",
"/" + origin_user_control.device_name + "/user/update",
origin_user_control.product_key, origin_user_control.id, True)
# Create control device to share's control device action
configuration = "{\"topic\":\"/" + self.control_device.product_key + "/" + self.control_device.device_name + "/user/get\",\"topicType\":1}"
self.create_rule_action(share_control_device_rule.ruleid, configuration, self.control_device.id, True)
# Create share's control device to current control device
configuration = "{\"topic\":\"/" + origin_user_control.product_key + "/" + origin_user_control.device_name + "/user/get\",\"topicType\":1}"
self.create_rule_action(control_device_rule.ruleid, configuration, origin_user_control.id, True)
def delete_share_rule_action(self):
# Get all user share devices
all_share_bind_log = DeviceBind.objects.filter(device=self.device,origin_user=self.control_device.user,onActive=True)
control_device_rule = AliyunIotRules.objects.get(isControlDevice=True,device_id=self.control_device.id,isAction=False)
for share_bind_log in all_share_bind_log:
current_control_device = self.create_control_device(share_bind_log.user)
current_rule = AliyunIotRules.objects.get(isControlDevice=True,device_id=current_control_device.id,isAction=False)
try:
share_to_control_action = AliyunIotRules.objects.get(isAction=True,isControlDevice=True,
ruleid=control_device_rule.ruleid,
device_id=current_control_device.id)
self._aliyun.delete_rule_action(share_to_control_action.action_id)
share_to_control_action.delete()
except AliyunIotRules.DoesNotExist:
continue
try:
control_to_share_action = AliyunIotRules.objects.get(isAction=True, isControlDevice=True,
ruleid=current_rule.ruleid,
device_id=self.control_device.id)
self._aliyun.delete_rule_action(control_to_share_action.action_id)
control_to_share_action.delete()
except AliyunIotRules.DoesNotExist:
continue
def delete_device_all_action(self):
# Step.1 Delete device all actions. These rule action is from control devices to the esp8266 device
all_device_action = AliyunIotRules.objects.filter(isAction=True,isControlDevice=False,device_id=self.device.id)
for action in all_device_action:
self._aliyun.delete_rule_action(action.action_id)
action.delete()
# Step2. Delete all control devices actions. These rule action is from the esp8266 to control device
try:
device_rule = AliyunIotRules.objects.get(isAction=False,isControlDevice=False,device_id=self.device.id)
all_device_action = AliyunIotRules.objects.filter(ruleid=device_rule.ruleid,isAction=True)
for action in all_device_action:
self._aliyun.delete_rule_action(action.action_id)
action.delete()
except AliyunIotRules.DoesNotExist:
pass
def create_device_rule(self):
"""
Create Aliyun IoT rule from the esp8266 device to the control devices.
It will only be created once.
:return: The device's rule
"""
name = self.__md5(self.device.device_name + "_2control_rule")
topic = self.device.device_name + "/user/update"
return self.create_rule(name,topic,self.device.product_key,self.device.id,False)
def create_control_rule(self):
"""
Create Aliyun IoT rule from the control device device to the esp8266 devices.
It will only be created once.
:return: The device's rule
"""
name = self.__md5(self.control_device.device_name + "_2device_rule")
topic = "/" + self.control_device.device_name + "/user/update"
return self.create_rule(name,topic,self.control_device.product_key,self.control_device.id,True)
def create_device2control_action(self):
"""
Create action from esp8266 to control device
:return: The action object
"""
device_rule = self.create_device_rule()
configuration = "{\"topic\":\"/" + self.control_device.product_key + "/" + self.control_device.device_name + "/user/get\",\"topicType\":1}"
action = self.create_rule_action(device_rule.ruleid,configuration,self.control_device.id,True)
self._aliyun.start_rule(device_rule.ruleid)
return action
def create_control2device_action(self):
"""
Create action from control deivce to esp8266
:return: The action object
"""
device_rule = self.create_control_rule()
configuration = "{\"topic\":\"/" + self.device.product_key + "/" + self.device.device_name + "/user/get\",\"topicType\":1}"
action = self.create_rule_action(device_rule.ruleid, configuration, self.device.id, False)
self._aliyun.start_rule(device_rule.ruleid)
return action
def delete_device2control_action(self):
"""
Delete rule action from esp8266 to control device
:return:
"""
device_rule = self.create_device_rule()
try:
device_action = AliyunIotRules.objects.get(ruleid=device_rule.ruleid,isAction=True,device_id=self.control_device.id,isControlDevice=True)
except AliyunIotRules.DoesNotExist:
return
self._aliyun.delete_rule_action(device_action.action_id)
device_action.delete()
def delete_control2device_action(self):
"""
Delete rule action from control device to esp8266
:return:
"""
device_rule = self.create_control_rule()
try:
device_action = AliyunIotRules.objects.get(ruleid=device_rule.ruleid,isAction=True,device_id=self.device.id,isControlDevice=False)
except AliyunIotRules.DoesNotExist:
return
self._aliyun.delete_rule_action(device_action.action_id)
device_action.delete()
def create_rule_action(self,relu_id,configuration,device_id,is_control):
"""
Create Aliyun IoT rule action
Only one action per device or control device in each rule
:param relu_id:
:param configuration:
:param device_id:
:param is_control:
:return: The action object
"""
if not AliyunIotRules.objects.filter(ruleid=relu_id,action_config=configuration,isAction=True,device_id=device_id,isControlDevice=is_control).exists():
data = self._aliyun.create_rule_action(relu_id,configuration)
if data is not None:
aliyun_iot_relu_ = AliyunIotRules(
name=str(relu_id) + '_action_',
ruleid=relu_id,
isAction=True,
device_id=device_id,
action_id=data["ActionId"],
isControlDevice=is_control,
requestid=data["RequestId"],
action_type="REPUBLISH",
action_config=configuration,
)
aliyun_iot_relu_.save()
return AliyunIotRules.objects.get(ruleid=relu_id,action_config=configuration,isAction=True,device_id=device_id,isControlDevice=is_control)
def create_rule(self,rule_name,topic,product_key,device_id,is_control):
"""
Create Aliyun IoT rule
It will only be created once for each device or control device
:param rule_name:
:param topic:
:param product_key:
:param device_id:
:param is_control: if there is the control device's rule
:return: The device's rule
"""
if not AliyunIotRules.objects.filter(short_topic=topic,isControlDevice=is_control,device_id=device_id).exists():
data = self._aliyun.create_rule(rule_name=rule_name,topic=topic,product_key=product_key)
if data is not None:
aliyun_iot_relu = AliyunIotRules(
name=rule_name,
short_topic=topic,
ruleid=data["RuleId"],
isControlDevice=is_control,
device_id=device_id,
requestid=data["RequestId"]
)
aliyun_iot_relu.save()
# self._aliyun.start_rule(data["RuleId"])
return AliyunIotRules.objects.get(short_topic=topic,isControlDevice=is_control,device_id=device_id)
def __md5(self,str):
m = hashlib.md5()
m.update(str.encode("utf8"))
return m.hexdigest()[8:-8] + ''.join(random.sample(string.ascii_letters + string.digits, 4))
def check_login(request):
userid = request.session.get('userid')
if userid is None:
return False
return True | 25,389 | 7,394 |
from matplotlib import pyplot
iters = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999, 4000, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186, 4187, 4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, 4340, 4341, 4342, 4343, 4344, 4345, 4346, 4347, 4348, 4349, 4350, 4351, 4352, 4353, 4354, 4355, 4356, 4357, 4358, 4359, 4360, 4361, 4362, 4363, 4364, 4365, 4366, 4367, 4368, 4369, 4370, 4371, 4372, 4373, 4374, 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382, 4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, 4391, 4392, 4393, 4394, 4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404, 4405, 4406, 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414, 4415, 4416, 4417, 4418, 4419, 4420, 4421, 4422, 4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477, 4478, 4479, 4480, 4481, 4482, 4483, 4484, 4485, 4486, 4487, 4488, 4489, 4490, 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, 4555, 4556, 4557, 4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, 4587, 4588, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, 4598, 4599, 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, 4825, 4826, 4827, 4828, 4829, 4830, 4831, 4832, 4833, 4834, 4835, 4836, 4837, 4838, 4839, 4840, 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, 4849, 4850, 4851, 4852, 4853, 4854, 4855, 4856, 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, 4881, 4882, 4883, 4884, 4885, 4886, 4887, 4888, 4889, 4890, 4891, 4892, 4893, 4894, 4895, 4896, 4897, 4898, 4899, 4900, 4901, 4902, 4903, 4904, 4905, 4906, 4907, 4908, 4909, 4910, 4911, 4912, 4913, 4914, 4915, 4916, 4917, 4918, 4919, 4920, 4921, 4922, 4923, 4924, 4925, 4926, 4927, 4928, 4929, 4930, 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, 4939, 4940, 4941, 4942, 4943, 4944, 4945, 4946, 4947, 4948, 4949, 4950, 4951, 4952, 4953, 4954, 4955, 4956, 4957, 4958, 4959, 4960, 4961, 4962, 4963, 4964, 4965, 4966, 4967, 4968, 4969, 4970, 4971, 4972, 4973, 4974, 4975, 4976, 4977, 4978, 4979, 4980, 4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999, 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5096, 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, 5148, 5149, 5150, 5151, 5152, 5153, 5154, 5155, 5156, 5157, 5158, 5159, 5160, 5161, 5162, 5163, 5164, 5165, 5166, 5167, 5168, 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191, 5192, 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, 5210, 5211, 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, 5228, 5229, 5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, 5250, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275, 5276, 5277, 5278, 5279, 5280, 5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291, 5292, 5293, 5294, 5295, 5296, 5297, 5298, 5299, 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, 5320, 5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350, 5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385, 5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414, 5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424, 5425, 5426, 5427, 5428, 5429, 5430, 5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457, 5458, 5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468, 5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477, 5478, 5479, 5480, 5481, 5482, 5483, 5484, 5485, 5486, 5487, 5488, 5489, 5490, 5491, 5492, 5493, 5494, 5495, 5496, 5497, 5498, 5499, 5500, 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, 5509, 5510, 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5539, 5540, 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, 5557, 5558, 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, 5567, 5568, 5569, 5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579, 5580, 5581, 5582, 5583, 5584, 5585, 5586, 5587, 5588, 5589, 5590, 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, 5599, 5600, 5601, 5602, 5603, 5604, 5605, 5606, 5607, 5608, 5609, 5610, 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, 5619, 5620, 5621, 5622, 5623, 5624, 5625, 5626, 5627, 5628, 5629, 5630, 5631, 5632, 5633, 5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649, 5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666, 5667, 5668, 5669, 5670, 5671, 5672, 5673, 5674, 5675, 5676, 5677, 5678, 5679, 5680, 5681, 5682, 5683, 5684, 5685, 5686, 5687, 5688, 5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, 5697, 5698, 5699, 5700, 5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, 5718, 5719, 5720, 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, 5730, 5731, 5732, 5733, 5734, 5735, 5736, 5737, 5738, 5739, 5740, 5741, 5742, 5743, 5744, 5745, 5746, 5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768, 5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828, 5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856, 5857, 5858, 5859, 5860, 5861, 5862, 5863, 5864, 5865, 5866, 5867, 5868, 5869, 5870, 5871, 5872, 5873, 5874, 5875, 5876, 5877, 5878, 5879, 5880, 5881, 5882, 5883, 5884, 5885, 5886, 5887, 5888, 5889, 5890, 5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957, 5958, 5959, 5960, 5961, 5962, 5963, 5964, 5965, 5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022, 6023, 6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, 6048, 6049, 6050, 6051, 6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, 6067, 6068, 6069, 6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077, 6078, 6079, 6080, 6081, 6082, 6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, 6091, 6092, 6093, 6094, 6095, 6096, 6097, 6098, 6099, 6100, 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198, 6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210, 6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, 6228, 6229, 6230, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246, 6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254, 6255, 6256, 6257, 6258, 6259, 6260, 6261, 6262, 6263, 6264, 6265, 6266, 6267, 6268, 6269, 6270, 6271, 6272, 6273, 6274, 6275, 6276, 6277, 6278, 6279, 6280, 6281, 6282, 6283, 6284, 6285, 6286, 6287, 6288, 6289, 6290, 6291, 6292, 6293, 6294, 6295, 6296, 6297, 6298, 6299, 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, 6318, 6319, 6320, 6321, 6322, 6323, 6324, 6325, 6326, 6327, 6328, 6329, 6330, 6331, 6332, 6333, 6334, 6335, 6336, 6337, 6338, 6339, 6340, 6341, 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, 6350, 6351, 6352, 6353, 6354, 6355, 6356, 6357, 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, 6366, 6367, 6368, 6369, 6370, 6371, 6372, 6373, 6374, 6375, 6376, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589, 6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613, 6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699, 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, 6758, 6759, 6760, 6761, 6762, 6763, 6764, 6765, 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893, 6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, 6957, 6958, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, 7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244, 7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256, 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268, 7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316, 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7354, 7355, 7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364, 7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, 7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412, 7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424, 7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, 7476, 7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 7485, 7486, 7487, 7488, 7489, 7490, 7491, 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 7514, 7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526, 7527, 7528, 7529, 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538, 7539, 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, 7550, 7551, 7552, 7553, 7554, 7555, 7556, 7557, 7558, 7559, 7560, 7561, 7562, 7563, 7564, 7565, 7566, 7567, 7568, 7569, 7570, 7571, 7572, 7573, 7574, 7575, 7576, 7577, 7578, 7579, 7580, 7581, 7582, 7583, 7584, 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7592, 7593, 7594, 7595, 7596, 7597, 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, 7606, 7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630, 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654, 7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, 7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708, 7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720, 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7730, 7731, 7732, 7733, 7734, 7735, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744, 7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756, 7757, 7758, 7759, 7760, 7761, 7762, 7763, 7764, 7765, 7766, 7767, 7768, 7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780, 7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792, 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804, 7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816, 7817, 7818, 7819, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828, 7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, 7840, 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852, 7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7861, 7862, 7863, 7864, 7865, 7866, 7867, 7868, 7869, 7870, 7871, 7872, 7873, 7874, 7875, 7876, 7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7886, 7887, 7888, 7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912, 7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921, 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933, 7934, 7935, 7936, 7937, 7938, 7939, 7940, 7941, 7942, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 7955, 7956, 7957, 7958, 7959, 7960, 7961, 7962, 7963, 7964, 7965, 7966, 7967, 7968, 7969, 7970, 7971, 7972, 7973, 7974, 7975, 7976, 7977, 7978, 7979, 7980, 7981, 7982, 7983, 7984, 7985, 7986, 7987, 7988, 7989, 7990, 7991, 7992, 7993, 7994, 7995, 7996, 7997, 7998, 7999, 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010, 8011, 8012, 8013, 8014, 8015, 8016, 8017, 8018, 8019, 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8029, 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, 8048, 8049, 8050, 8051, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8095, 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, 8104, 8105, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, 8120, 8121, 8122, 8123, 8124, 8125, 8126, 8127, 8128, 8129, 8130, 8131, 8132, 8133, 8134, 8135, 8136, 8137, 8138, 8139, 8140, 8141, 8142, 8143, 8144, 8145, 8146, 8147, 8148, 8149, 8150, 8151, 8152, 8153, 8154, 8155, 8156, 8157, 8158, 8159, 8160, 8161, 8162, 8163, 8164, 8165, 8166, 8167, 8168, 8169, 8170, 8171, 8172, 8173, 8174, 8175, 8176, 8177, 8178, 8179, 8180, 8181, 8182, 8183, 8184, 8185, 8186, 8187, 8188, 8189, 8190, 8191, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200, 8201, 8202, 8203, 8204, 8205, 8206, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8265, 8266, 8267, 8268, 8269, 8270, 8271, 8272, 8273, 8274, 8275, 8276, 8277, 8278, 8279, 8280, 8281, 8282, 8283, 8284, 8285, 8286, 8287, 8288, 8289, 8290, 8291, 8292, 8293, 8294, 8295, 8296, 8297, 8298, 8299, 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, 8320, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8332, 8333, 8334, 8335, 8336, 8337, 8338, 8339, 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, 8350, 8351, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8362, 8363, 8364, 8365, 8366, 8367, 8368, 8369, 8370, 8371, 8372, 8373, 8374, 8375, 8376, 8377, 8378, 8379, 8380, 8381, 8382, 8383, 8384, 8385, 8386, 8387, 8388, 8389, 8390, 8391, 8392, 8393, 8394, 8395, 8396, 8397, 8398, 8399, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, 8410, 8411, 8412, 8413, 8414, 8415, 8416, 8417, 8418, 8419, 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8427, 8428, 8429, 8430, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 8453, 8454, 8455, 8456, 8457, 8458, 8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8469, 8470, 8471, 8472, 8473, 8474, 8475, 8476, 8477, 8478, 8479, 8480, 8481, 8482, 8483, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 8495, 8496, 8497, 8498, 8499, 8500, 8501, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, 8540, 8541, 8542, 8543, 8544, 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552, 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8560, 8561, 8562, 8563, 8564, 8565, 8566, 8567, 8568, 8569, 8570, 8571, 8572, 8573, 8574, 8575, 8576, 8577, 8578, 8579, 8580, 8581, 8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8590, 8591, 8592, 8593, 8594, 8595, 8596, 8597, 8598, 8599, 8600, 8601, 8602, 8603, 8604, 8605, 8606, 8607, 8608, 8609, 8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619, 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, 8630, 8631, 8632, 8633, 8634, 8635, 8636, 8637, 8638, 8639, 8640, 8641, 8642, 8643, 8644, 8645, 8646, 8647, 8648, 8649, 8650, 8651, 8652, 8653, 8654, 8655, 8656, 8657, 8658, 8659, 8660, 8661, 8662, 8663, 8664, 8665, 8666, 8667, 8668, 8669, 8670, 8671, 8672, 8673, 8674, 8675, 8676, 8677, 8678, 8679, 8680, 8681, 8682, 8683, 8684, 8685, 8686, 8687, 8688, 8689, 8690, 8691, 8692, 8693, 8694, 8695, 8696, 8697, 8698, 8699, 8700, 8701, 8702, 8703, 8704, 8705, 8706, 8707, 8708, 8709, 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8717, 8718, 8719, 8720, 8721, 8722, 8723, 8724, 8725, 8726, 8727, 8728, 8729, 8730, 8731, 8732, 8733, 8734, 8735, 8736, 8737, 8738, 8739, 8740, 8741, 8742, 8743, 8744, 8745, 8746, 8747, 8748, 8749, 8750, 8751, 8752, 8753, 8754, 8755, 8756, 8757, 8758, 8759, 8760, 8761, 8762, 8763, 8764, 8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775, 8776, 8777, 8778, 8779, 8780, 8781, 8782, 8783, 8784, 8785, 8786, 8787, 8788, 8789, 8790, 8791, 8792, 8793, 8794, 8795, 8796, 8797, 8798, 8799, 8800, 8801, 8802, 8803, 8804, 8805, 8806, 8807, 8808, 8809, 8810, 8811, 8812, 8813, 8814, 8815, 8816, 8817, 8818, 8819, 8820, 8821, 8822, 8823, 8824, 8825, 8826, 8827, 8828, 8829, 8830, 8831, 8832, 8833, 8834, 8835, 8836, 8837, 8838, 8839, 8840, 8841, 8842, 8843, 8844, 8845, 8846, 8847, 8848, 8849, 8850, 8851, 8852, 8853, 8854, 8855, 8856, 8857, 8858, 8859, 8860, 8861, 8862, 8863, 8864, 8865, 8866, 8867, 8868, 8869, 8870, 8871, 8872, 8873, 8874, 8875, 8876, 8877, 8878, 8879, 8880, 8881, 8882, 8883, 8884, 8885, 8886, 8887, 8888, 8889, 8890, 8891, 8892, 8893, 8894, 8895, 8896, 8897, 8898, 8899, 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908, 8909, 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8917, 8918, 8919, 8920, 8921, 8922, 8923, 8924, 8925, 8926, 8927, 8928, 8929, 8930, 8931, 8932, 8933, 8934, 8935, 8936, 8937, 8938, 8939, 8940, 8941, 8942, 8943, 8944, 8945, 8946, 8947, 8948, 8949, 8950, 8951, 8952, 8953, 8954, 8955, 8956, 8957, 8958, 8959, 8960, 8961, 8962, 8963, 8964, 8965, 8966, 8967, 8968, 8969, 8970, 8971, 8972, 8973, 8974, 8975, 8976, 8977, 8978, 8979, 8980, 8981, 8982, 8983, 8984, 8985, 8986, 8987, 8988, 8989, 8990, 8991, 8992, 8993, 8994, 8995, 8996, 8997, 8998, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9010, 9011, 9012, 9013, 9014, 9015, 9016, 9017, 9018, 9019, 9020, 9021, 9022, 9023, 9024, 9025, 9026, 9027, 9028, 9029, 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, 9058, 9059, 9060, 9061, 9062, 9063, 9064, 9065, 9066, 9067, 9068, 9069, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9078, 9079, 9080, 9081, 9082, 9083, 9084, 9085, 9086, 9087, 9088, 9089, 9090, 9091, 9092, 9093, 9094, 9095, 9096, 9097, 9098, 9099, 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, 9110, 9111, 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9119, 9120, 9121, 9122, 9123, 9124, 9125, 9126, 9127, 9128, 9129, 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, 9140, 9141, 9142, 9143, 9144, 9145, 9146, 9147, 9148, 9149, 9150, 9151, 9152, 9153, 9154, 9155, 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9166, 9167, 9168, 9169, 9170, 9171, 9172, 9173, 9174, 9175, 9176, 9177, 9178, 9179, 9180, 9181, 9182, 9183, 9184, 9185, 9186, 9187, 9188, 9189, 9190, 9191, 9192, 9193, 9194, 9195, 9196, 9197, 9198, 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9208, 9209, 9210, 9211, 9212, 9213, 9214, 9215, 9216, 9217, 9218, 9219, 9220, 9221, 9222, 9223, 9224, 9225, 9226, 9227, 9228, 9229, 9230, 9231, 9232, 9233, 9234, 9235, 9236, 9237, 9238, 9239, 9240, 9241, 9242, 9243, 9244, 9245, 9246, 9247, 9248, 9249, 9250, 9251, 9252, 9253, 9254, 9255, 9256, 9257, 9258, 9259, 9260, 9261, 9262, 9263, 9264, 9265, 9266, 9267, 9268, 9269, 9270, 9271, 9272, 9273, 9274, 9275, 9276, 9277, 9278, 9279, 9280, 9281, 9282, 9283, 9284, 9285, 9286, 9287, 9288, 9289, 9290, 9291, 9292, 9293, 9294, 9295, 9296, 9297, 9298, 9299, 9300, 9301, 9302, 9303, 9304, 9305, 9306, 9307, 9308, 9309, 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9317, 9318, 9319, 9320, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, 9330, 9331, 9332, 9333, 9334, 9335, 9336, 9337, 9338, 9339, 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, 9350, 9351, 9352, 9353, 9354, 9355, 9356, 9357, 9358, 9359, 9360, 9361, 9362, 9363, 9364, 9365, 9366, 9367, 9368, 9369, 9370, 9371, 9372, 9373, 9374, 9375, 9376, 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, 9391, 9392, 9393, 9394, 9395, 9396, 9397, 9398, 9399, 9400, 9401, 9402, 9403, 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, 9412, 9413, 9414, 9415, 9416, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424, 9425, 9426, 9427, 9428, 9429, 9430, 9431, 9432, 9433, 9434, 9435, 9436, 9437, 9438, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448, 9449, 9450, 9451, 9452, 9453, 9454, 9455, 9456, 9457, 9458, 9459, 9460, 9461, 9462, 9463, 9464, 9465, 9466, 9467, 9468, 9469, 9470, 9471, 9472, 9473, 9474, 9475, 9476, 9477, 9478, 9479, 9480, 9481, 9482, 9483, 9484, 9485, 9486, 9487, 9488, 9489, 9490, 9491, 9492, 9493, 9494, 9495, 9496, 9497, 9498, 9499, 9500, 9501, 9502, 9503, 9504, 9505, 9506, 9507, 9508, 9509, 9510, 9511, 9512, 9513, 9514, 9515, 9516, 9517, 9518, 9519, 9520, 9521, 9522, 9523, 9524, 9525, 9526, 9527, 9528, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9536, 9537, 9538, 9539, 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, 9550, 9551, 9552, 9553, 9554, 9555, 9556, 9557, 9558, 9559, 9560, 9561, 9562, 9563, 9564, 9565, 9566, 9567, 9568, 9569, 9570, 9571, 9572, 9573, 9574, 9575, 9576, 9577, 9578, 9579, 9580, 9581, 9582, 9583, 9584, 9585, 9586, 9587, 9588, 9589, 9590, 9591, 9592, 9593, 9594, 9595, 9596, 9597, 9598, 9599, 9600, 9601, 9602, 9603, 9604, 9605, 9606, 9607, 9608, 9609, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, 9620, 9621, 9622, 9623, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9656, 9657, 9658, 9659, 9660, 9661, 9662, 9663, 9664, 9665, 9666, 9667, 9668, 9669, 9670, 9671, 9672, 9673, 9674, 9675, 9676, 9677, 9678, 9679, 9680, 9681, 9682, 9683, 9684, 9685, 9686, 9687, 9688, 9689, 9690, 9691, 9692, 9693, 9694, 9695, 9696, 9697, 9698, 9699, 9700, 9701, 9702, 9703, 9704, 9705, 9706, 9707, 9708, 9709, 9710, 9711, 9712, 9713, 9714, 9715, 9716, 9717, 9718, 9719, 9720, 9721, 9722, 9723, 9724, 9725, 9726, 9727, 9728, 9729, 9730, 9731, 9732, 9733, 9734, 9735, 9736, 9737, 9738, 9739, 9740, 9741, 9742, 9743, 9744, 9745, 9746, 9747, 9748, 9749, 9750, 9751, 9752, 9753, 9754, 9755, 9756, 9757, 9758, 9759, 9760, 9761, 9762, 9763, 9764, 9765, 9766, 9767, 9768, 9769, 9770, 9771, 9772, 9773, 9774, 9775, 9776, 9777, 9778, 9779, 9780, 9781, 9782, 9783, 9784, 9785, 9786, 9787, 9788, 9789, 9790, 9791, 9792, 9793, 9794, 9795, 9796, 9797, 9798, 9799, 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, 9810, 9811, 9812, 9813, 9814, 9815, 9816, 9817, 9818, 9819, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9828, 9829, 9830, 9831, 9832, 9833, 9834, 9835, 9836, 9837, 9838, 9839, 9840, 9841, 9842, 9843, 9844, 9845, 9846, 9847, 9848, 9849, 9850, 9851, 9852, 9853, 9854, 9855, 9856, 9857, 9858, 9859, 9860, 9861, 9862, 9863, 9864, 9865, 9866, 9867, 9868, 9869, 9870, 9871, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9879, 9880, 9881, 9882, 9883, 9884, 9885, 9886, 9887, 9888, 9889, 9890, 9891, 9892, 9893, 9894, 9895, 9896, 9897, 9898, 9899, 9900, 9901, 9902, 9903, 9904, 9905, 9906, 9907, 9908, 9909, 9910, 9911, 9912, 9913, 9914, 9915, 9916, 9917, 9918, 9919, 9920, 9921, 9922, 9923, 9924, 9925, 9926, 9927, 9928, 9929, 9930, 9931, 9932, 9933, 9934, 9935, 9936, 9937, 9938, 9939, 9940, 9941, 9942, 9943, 9944, 9945, 9946, 9947, 9948, 9949, 9950, 9951, 9952, 9953, 9954, 9955, 9956, 9957, 9958, 9959, 9960, 9961, 9962, 9963, 9964, 9965, 9966, 9967, 9968, 9969, 9970, 9971, 9972, 9973, 9974, 9975, 9976, 9977, 9978, 9979, 9980, 9981, 9982, 9983, 9984, 9985, 9986, 9987, 9988, 9989, 9990, 9991, 9992, 9993, 9994, 9995, 9996, 9997, 9998, 9999]
klw1_arr=[546.0209464297252, 8930.859814613663, 8508.860282162981, 2359.910885946764, 6507.549834246265, 503883.4699956365, 761.2904870683848, 9430.646389218993, 3754706.6058851844, 539.2806755213426, 343.22576124798127, 388.0949520497447, 3548.4540695702294, 17263703.62042079, 7899.433522512538, 160570.8665302631, 4752.777482324798, 2988.991972489953, 41786.96694034826, 34573.08702941589, 17529.02806127558, 2810.627140746759, 49102.20044509715, 8975.191256102056, 420.90444097815725, 2741.7920603490493, 3560.211765868154, 5590.167846809314, 1553.6592487656603, 923.5329853644138, 1665.1430152254488, 3231.568618975011, 30.594790652962153, 1.8635581353522397, 1300.2943416277376, 0.42802891929928394, 0.37845581767965886, 0.06273629089777527, 115.2844639273809, 0.9621985922486248, 0.051811233318797625, 1.0081429910513937, 0.08062190857704407, 0.07900426260289087, 0.034059972473487216, 0.0348500391891572, 0.060981293285034766, 0.02819145962600329, 0.018667251964773732, 0.021780992635416524, 0.018346382173346765, 0.01779638035949072, 0.01728245676525545, 0.01435960066824662, 0.013964827182123638, 0.013084214609454622, 0.012069208745414351, 0.011079159303976247, 0.010070877595948153, 0.009493523249784542, 0.01113157883361737, 729.3504967813267, 154344.21730727277, 225.68141749548278, 0.09817159669475123, 0.1305390707461564, 0.014554987833253926, 0.14305992587066982, 0.00895114350002927, 0.008075781240553945, 0.010287437420315824, 0.007683572823692364, 0.006912439563438212, 0.009052707275800148, 0.008135476909941321, 0.007869961073516783, 0.007884125996109784, 0.008881168106056686, 0.010036194210501512, 0.011528711853374219, 0.010585247985343271, 0.01326294624652952, 0.011166175718859151, 0.010637478990685918, 0.01131176511202672, 0.011573671850541794, 0.011245372082921309, 0.02390598118880171, 0.034432224346511, 0.01482776138828647, 0.012319472210170117, 0.011502758334349845, 0.011672426297301919, 0.010131115618419995, 0.010122711733044932, 0.011930662924115586, 0.01664606651890324, 0.015568966257447182, 0.010478353140286487, 0.01211659818028379, 0.009251511069694272, 0.010132646231254332, 0.009169752146983108, 0.009496600034195857, 0.00944406863181239, 0.009369480140757879, 0.010084977542350292, 0.00912658675574785, 0.009315956249057383, 0.009341009904389633, 0.009577545155859561, 0.00873685282860661, 0.00903465635756576, 0.008544421534788574, 0.0102367845268756, 0.008590783048025522, 0.008636995213023232, 0.010395500176978862, 0.008345569119466295, 0.008634561202000238, 0.009474365846881267, 0.007805205814280415, 0.009475862112796277, 0.009046981248904086, 0.008516656261339607, 0.00889419589476603, 0.01001968983824247, 0.00769823586451063, 0.008223409320713044, 0.0073233272447855696, 0.007344640732797734, 0.008182564275683838, 0.007069556196158638, 0.007437264260965033, 0.008101983382736351, 0.006655048019087525, 0.006811133285381592, 0.007253330417335923, 0.006747809011243848, 0.006882448946961538, 0.006274131513344499, 0.007972350568894743, 0.008625753148041601, 0.006510847834958538, 0.007196718445081063, 0.007191245601214718, 0.00733204032911801, 0.006427933598252074, 0.00624775821112926, 0.006831663326318462, 0.006094199576405881, 0.00729851914385615, 0.006425908171765216, 0.006698161969296827, 0.006909808366083061, 0.007150130253872518, 0.006959690953036293, 0.007391863873771515, 0.00612724464299552, 0.006189944437430962, 0.005962164341959023, 0.007074697632356729, 0.006388516797162821, 0.0064094672072481235, 0.006968387389026112, 0.0075741234650501576, 0.006829836090886989, 0.006018158394098466, 0.005323344448225345, 0.005678513473023465, 0.00603481107621517, 0.006789163811395246, 0.006920184834376522, 0.007290515623352281, 0.005625103388081636, 0.006143685099018619, 0.00581353559977807, 0.007337470319341814, 0.0061230725591044696, 0.00826887135971045, 0.0057079558069390735, 0.006280486663150476, 0.005329985768675972, 0.006481210248148417, 0.004917841860148301, 0.0063096751120121945, 0.00513269670588981, 0.006510591345184925, 0.005611046387772842, 0.005589138740959824, 0.005748832191342698, 0.00571598240805191, 0.00581934537255662, 0.005369179401076293, 0.005955614790937248, 0.006081167898786041, 0.005493080319089892, 0.00585876830691571, 0.005776029551838494, 0.00666901093257255, 0.006137618433171526, 0.0053415142537468615, 0.005084955504586977, 0.005174267811739533, 0.005824914287437673, 0.0053793538798991136, 0.00552696591879884, 0.0056285236664265345, 0.00549394539360968, 0.0053948621936453734, 0.004975730570990994, 0.006098841439471895, 0.005759141105038929, 0.008882921998283246, 0.006764758391970752, 0.0057735324351219945, 0.005654350329460606, 0.007169872933218591, 0.005421427412479331, 0.006052656483597182, 0.005897771338144621, 0.00606191642741241, 0.006894721584060473, 0.004522366328929256, 0.00759063746577336, 0.006685165543340051, 0.006344635942034509, 0.006483877935312431, 0.00847152211626211, 0.005362535947982266, 0.006594551771012527, 0.004976626266822417, 0.0058160510500309456, 0.006709237924514627, 0.006019599431930881, 0.00498413295910388, 0.007833066684176231, 0.005799257197874738, 0.005328070923857093, 0.006510600598238682, 0.004598722024571061, 0.005658806586371265, 0.0054569408456446545, 0.006419408387136441, 0.007663168880246892, 0.007069730058614522, 0.006544398817691281, 0.007848882375546295, 0.005723704595596073, 0.0064252160665461385, 0.005442780122037594, 0.007923466376346427, 0.007527056460143554, 0.0091609853571401, 0.005946040277334639, 0.007317600205721489, 0.006674229946505438, 0.005574991245864068, 0.006999152042572951, 0.005891779209030741, 0.005843695880122474, 0.006674116091977658, 0.005855496772786068, 0.006724370650311709, 0.006206427103124931, 0.00532934308313833, 0.006880187888837011, 0.005572357973717043, 0.009962336691985976, 0.0067307936065135795, 0.005555784714489203, 0.0053668277702499465, 0.006937832637432419, 0.005975322119656087, 0.006001856172335599, 0.006402912635918837, 0.005995473219956731, 0.007116971297934928, 0.005366294792734349, 0.007904160511714083, 0.006419696781863817, 0.006359490047287315, 0.005943370506360053, 0.007166774291060708, 0.008823711620795904, 0.007442616661678544, 0.007237375115720895, 0.007865914213505779, 0.0068136877130891785, 0.006949578802770762, 0.00749925304577555, 0.007455771430382308, 0.007596977924659104, 0.0069362052666456005, 0.006965645864878056, 0.007585375986439329, 0.007237615642666541, 0.0066413627312412555, 0.00861597358772482, 0.006779382087944934, 0.006004441241169469, 0.006823468540442098, 0.0065316021035636985, 0.00654756342357056, 0.00700730089896595, 0.006672751191829118, 0.006736385401588567, 0.006928479533213271, 0.0067558533297087785, 0.0064213164461402236, 0.00618966004522981, 0.0067868957526274545, 0.006863518895542385, 0.006652598439500779, 0.007029033506050722, 0.006297834192594523, 0.006175849774782681, 0.0068934740549847304, 0.005846399862223048, 0.007375009598081158, 0.006520151181293216, 0.006297935793913796, 0.007650448475624615, 0.0071782002728051335, 0.006572200322377451, 0.007830436826761673, 0.0069080682298290185, 0.006841172524075766, 0.006414882609427848, 0.007014821146723237, 0.007088568547134254, 0.0074904585996644416, 0.00728093027520807, 0.00823299102351558, 0.007738093322607978, 0.008269632614299215, 0.008088698834066023, 0.007111848597344689, 0.007827033121675108, 0.007239180759427396, 0.008364394353297663, 0.00830624709088851, 0.007762206462040328, 0.007360382058036736, 0.007637553465519811, 0.006760156457746027, 0.007767863327684754, 0.00765150622948148, 0.007855489427526851, 0.007452060441049724, 0.007787237925601912, 0.008065123517571033, 0.007551256464682543, 0.00795742047511689, 0.008418262750762042, 0.007418131852147567, 0.008586139878007487, 0.008533292237323579, 0.0073421046114334546, 0.007983060602197304, 0.00811335670977199, 0.007492537864711849, 0.00868767397319063, 0.007889750889210687, 0.007365605668248784, 0.0071375711385059295, 0.007096796614703711, 0.007360849204302347, 0.009168774434014641, 0.007392542276210843, 0.008540912914618996, 0.008789204438412586, 0.008159015876968647, 0.008735115286633548, 0.00857586969242664, 0.008022998145610884, 0.007582449751846255, 0.007643023286089637, 0.0077720660142553645, 0.008380550860445087, 0.00856501238674252, 0.008766897792719138, 0.007764118428857339, 0.008426572138440946, 0.007752225741853169, 0.007503059597424859, 0.007116485849993201, 0.008543973572166732, 0.007413442781729454, 0.007530740648209912, 0.007977212874679621, 0.00841023097262433, 0.008106551809828201, 0.007934889436009255, 0.00766548748056937, 0.007875004928078666, 0.007570645378778641, 0.008307362454583158, 0.007493932359192075, 0.008783007310820426, 0.007835005992591479, 0.0076318878179313055, 0.00845391024224083, 0.008827049538368142, 0.0077917369037934035, 0.007157588441014456, 0.007366330899736352, 0.007649219936051994, 0.008039269697166743, 0.007033367850980297, 0.007014148531810685, 0.00817283331136957, 0.008142091215760826, 0.00798014926864576, 0.008693441813767643, 0.009262126482049753, 0.008789514057993063, 0.008508447832812238, 0.009037721609197998, 0.00746613482894503, 0.009047094979271376, 0.007476107682136914, 0.007543612454637116, 0.0077674728874955095, 0.006956130473785571, 0.007213325737951084, 0.00956560324760264, 0.009134564156610656, 0.00844982092310111, 0.007667202327443753, 0.0072413119188857135, 0.007928487627989911, 0.007467865351045879, 0.007831058366848073, 0.008025677239621064, 0.007281356889591519, 0.0069424854610995014, 0.008189799195295219, 0.0076584962904483415, 0.008056913850786645, 0.00917787331472987, 0.007730519365640687, 0.008155386201233407, 0.007792521304885028, 0.00743892740675813, 0.00931932217178643, 0.007893081306987754, 0.007631858297362411, 0.008801287495594466, 0.9936200978717048, 0.009674304856297033, 0.008161148738942952, 0.012995617721073435, 0.007635097703334234, 0.007632092750553694, 0.008218311151364992, 33.50499306095238, 15.884744131035376, 40.13576581441383, 62.46187262959951, 4.6139784201201035, 77.56706439551984, 145.4382104841786, 6.848868188749584, 0.5830779507672881, 0.7884802799997144, 0.07349608843685318, 0.8800282466934727, 3.077230385731128, 97021.35703787034, 91.54333763218, 13.228640251233392, 13.095424256585124, 8.951793617535964, 12.951886410050069, 332.6538094521959, 17.454206523526636, 298.66630488613407, 10.999528883506187, 295.5255602992156, 34.294594677566785, 1.6287416407393889, 5.445330597476653, 0.041976749272573395, 0.03967268576347059, 1.0790021448547502, 21.326731046765012, 0.23007746514179042, 0.6833248068865212, 893.7417381824804, 9.116749037987432, 0.02767262707978522, 0.7758525870914672, 6.177101097812308, 0.026872180572108446, 0.023131925697305454, 0.07669406603775095, 55.833018409613, 0.07430378016761163, 0.023074306224594693, 26.52557102134687, 0.01445897500583628, 0.014089394351394075, 0.012294798481641061, 0.011780180077409922, 0.011781460649361466, 0.01110893982897514, 0.010737114180768347, 0.010394292801951784, 0.12476621914374127, 0.011340985053928231, 0.009643581456086169, 0.009895973542923906, 0.009727556576031866, 0.00914003893271155, 0.00975241527826708, 0.008663616513359894, 0.00899494832668473, 0.009017061328284568, 0.009632111027620634, 0.008404003536680846, 0.009295053478433112, 0.009773989918367781, 0.020126424029166284, 0.008780367859304852, 0.008105828664447945, 0.00789136528585377, 0.009929932246833086, 0.008668215567941857, 0.007541365835489346, 0.008357939948659238, 0.008123468706079034, 0.007182478654930792, 0.007464778244275054, 0.007898003364318687, 0.00814693455920482, 0.00869622662077325, 0.007503630755480968, 0.007661569960582042, 0.008314155233823468, 0.008450795396385205, 0.007873561602896196, 0.0067895291979047185, 0.007626229953091398, 0.008023261242843143, 0.0073876781187676484, 0.007687783731634182, 0.008127511036008034, 0.007482216303441815, 0.0068508096083075036, 0.008420128780856441, 0.007439937421403931, 0.00847589152567755, 0.008653714283774518, 0.007857411070172514, 0.007378547065469911, 0.00795858910832776, 0.007576055324243075, 0.008641697627524373, 0.006535541012949957, 0.008478351926560263, 0.00783711172171565, 0.008578818480322766, 0.007488086762123959, 0.008413243593103545, 0.00885529554586725, 0.007270076015530355, 0.008462996861371837, 0.007982630463896467, 0.008811284126293516, 0.007951865940661558, 0.00992340476748738, 0.010322690933570987, 0.00794387962902021, 0.0073189878257591545, 0.00812222689283604, 0.007425343201622653, 0.007676265955196828, 0.007386683378886557, 0.008912142790137604, 0.00798967896935274, 0.007513646271937273, 0.008864265535537433, 0.0078286769569988, 0.007734332023925164, 0.007040370527308185, 0.008055791090397111, 0.007559529899407266, 0.007641705252348587, 0.008348107442178438, 0.008543265009063772, 0.007181154171282419, 0.008267959268848078, 0.008138526355796049, 0.0068552288867236065, 0.00772332658912538, 0.008242748181740384, 0.008680874712699101, 0.008868548683203257, 0.00884424097558215, 0.007603165324889876, 0.008707937444853786, 0.008055312124209962, 0.0072999605301054035, 0.007839685467568415, 0.009087240449320022, 0.009035150882058444, 0.008104157261928214, 0.0077224075638936945, 0.007954248043244124, 0.008134489850683732, 0.007854250101853201, 0.007474825610989891, 0.007523392467536087, 0.007653744629213459, 0.007294871698770968, 0.00785604166766515, 0.006834582328980321, 0.007325015600769892, 0.008433561678295533, 0.0079443280260436, 0.008208397268063734, 0.007072606389568477, 0.007748062881502718, 0.008402061292200235, 0.008898190817211393, 0.007103752575242134, 0.007956682661270385, 0.009140676723381808, 0.008042940645682731, 0.008029218280107532, 0.009425233318349104, 0.008395348941112591, 0.007481099872864112, 0.007761220131572354, 0.008288512621061625, 0.008156859440036541, 0.007490809071771812, 0.007304654899061293, 0.00751670682761961, 0.009035043178075668, 0.0068780917891929, 0.007151446876847702, 0.007473921650707373, 0.0080615801954055, 0.008506396201365953, 0.007652591873285579, 0.008746889973532434, 0.007868875870177993, 0.007932318918571933, 0.008130333474909896, 0.00710602309374013, 0.00829939892490714, 0.006616167458488462, 0.007612398425528337, 0.007265473077727654, 0.007770928432511035, 0.007534752216120891, 0.007254201006561782, 0.00916433914404788, 0.00798067444572652, 0.007071022863803329, 0.009271471436410245, 0.008013422275670362, 0.008884398636580625, 0.008052428776157706, 0.007686303565976681, 0.007290826374217812, 0.009498501508537427, 0.008383651097491566, 0.007254932990315958, 0.00842586273572547, 0.006969975177559065, 0.007784204196599455, 0.007553226604917111, 0.00998224047514528, 0.007763128930932453, 0.008232045079871946, 0.008161201256310908, 0.008418310930457678, 0.008972784364271217, 0.006927157069381866, 0.008955295082954702, 0.00763403651445745, 0.009951803042074645, 0.008363695893260917, 0.008230080790660347, 0.00810543564381708, 0.00814630556385081, 0.008264996217925239, 0.009998299892391656, 0.008007436394226242, 0.009890801884480466, 0.007942353265639746, 0.007967422180436409, 0.008491455306114679, 0.009307835108592063, 0.0071057987609147305, 0.008328833077167473, 0.008663369144236453, 0.009730684175088846, 0.007959555040093597, 0.009311214946089406, 0.008451007457003024, 0.009446082366633576, 0.009214343523273846, 0.008098469744221098, 0.008609458097282441, 0.00837414195189086, 0.007719827419897858, 0.007870241280992112, 0.009350356468361524, 0.007839206488827901, 0.00998430894375122, 0.007872351412355476, 0.007922531865109174, 0.009006311632927021, 0.008194164416696723, 0.007944388539420788, 0.009322378822559405, 0.007853544910469235, 0.00855239813397494, 0.008771470698972259, 0.008580085631924916, 0.008710180846863536, 0.008119082426650583, 0.007623904334906619, 0.008799718482849845, 0.00831333114676599, 0.009143377914183211, 0.008750210133708011, 0.008432134806441834, 0.008533338590095125, 0.008662728042800768, 0.010517033655727167, 0.008819508925401884, 0.007452065531261433, 0.008659118694303147, 0.007506540103438042, 0.007236089180926056, 0.008884417080506853, 0.00838255197396789, 0.007210969446612675, 0.008478703507771568, 0.007832314318943713, 0.008001208353655254, 0.009591735157333803, 0.008289952565296545, 0.009994176047270757, 0.007062850771582281, 0.009146592830635602, 0.010295100978934692, 0.00693968412473568, 0.007924280121099143, 0.009494825439832879, 0.0073962426364829695, 0.00746923574602897, 0.007728244543706646, 0.00792139693344095, 0.008576986914245032, 0.008451451301405111, 0.007634456646006285, 0.007602964567914655, 0.008529775833918726, 0.007458422760450878, 0.008579407272083029, 0.010350941408730382, 0.008219306547134483, 0.009914786193706865, 0.008259625875554935, 0.009145424226924867, 0.007595157652974335, 0.008529920753701719, 0.009895188435515258, 0.0073381338606668175, 0.007968515023707056, 0.009556528680841433, 0.00710414021780659, 0.007122288130132615, 0.006849844521227809, 0.009358733799640029, 0.007999696115512971, 0.008279179155631155, 0.00701541684375621, 0.008614543509155225, 0.008454648223981141, 0.009485511947642916, 0.00847481108616149, 0.008152891025841758, 0.009289881724778886, 0.00891857065492877, 0.008312192343437315, 0.007924770665993173, 0.008448546545726757, 0.00803852832076938, 0.008334169896669382, 0.009333374534126502, 0.008902535809890397, 0.010112290987320213, 0.009251256382746636, 0.009388938179920854, 0.009131758302840909, 0.009942948730279838, 0.008317999423965425, 0.008025932313814321, 0.00893080747345226, 0.009142796668256245, 0.009176147268005985, 0.008352875878735327, 0.008961426154703944, 0.008424654298628185, 0.007822860634035467, 0.007297299612968297, 0.008274152241570427, 0.008579698288796471, 0.008710760198902236, 0.008088075051901638, 0.0075661395399232055, 0.009328013708052809, 0.009046148662369307, 0.010361564912272275, 0.007828769522266067, 0.008767931164997203, 0.00876237775510243, 0.007807725743660848, 0.009694951496076425, 0.009665383773726286, 0.00829684418060407, 0.008812278179331619, 0.009707305565941472, 0.009265534880234755, 0.008440788594500434, 0.010810396983215998, 0.00867935775385541, 0.008691604789529555, 0.010277757319204762, 0.009529184054258674, 0.007957730312432172, 0.009055813700156238, 0.008721209310140355, 0.00861582855093034, 0.010122311829788433, 0.00854190140656479, 0.00986167565698444, 0.008470222582226872, 0.007819668895144877, 0.008798505519457385, 0.008533520781894795, 0.01009335667907199, 0.009820836622016904, 0.008768612570765829, 0.008614898384303292, 0.00790017145075172, 0.008973066879855733, 0.007701140651399771, 0.00911060650237467, 0.00841110029457568, 0.010781177510009014, 0.00834409131620202, 0.009329342219110219, 0.007932232608134164, 0.009504084526185348, 0.008390421205477486, 0.009003394204001942, 0.009609396674475884, 0.008099380848791882, 0.008668335732966149, 0.00803777532953916, 0.009330935235083654, 0.00783515141043389, 0.007501942786049318, 0.00761594970636791, 0.007760242487041373, 0.008249424331575638, 0.009776228952421225, 0.007986673497585556, 0.009505321502171388, 0.008192495008436374, 0.00951365992266443, 0.008869800973143363, 0.00814674463481022, 0.007950635841219515, 0.009617978937598318, 0.008290527208533304, 0.008642430284433053, 0.00853598732956881, 0.00916176098451606, 0.00907474677401644, 0.008470694283761942, 0.009085759484715055, 0.008589359726159446, 0.008082372735518352, 0.008163719002650248, 0.008645348314550922, 0.008559592226492753, 0.008720739226581672, 0.00888823396606676, 0.008803337038941362, 0.010132563398309084, 0.008448085225343434, 0.00905576110208094, 0.008225820124058154, 0.008518865433161257, 0.00884710368682454, 0.010329731721465243, 0.00818258712703968, 0.008198358015065188, 0.007738229777111724, 0.008631921962183113, 0.010519721920757183, 0.008564839170264824, 0.009837877983545103, 0.00841501217693646, 0.008757311346528207, 0.008338995526179654, 0.008461437285633254, 0.011281161943333616, 0.0095646375897924, 0.008848090325961346, 0.008712726128107674, 0.00828504248111976, 0.00945198056974347, 0.008433522812626573, 0.008902324905588479, 0.00786949330073825, 0.008877484449832699, 0.00889691245339506, 0.008271933745560232, 0.010072206139693084, 0.009625946784702312, 0.008838717838759214, 0.009659120387618967, 0.009887100778711275, 0.008142844515703854, 0.007956743210583598, 0.008561659329079407, 0.008874752816691516, 0.009586463068771093, 0.008752549321568267, 0.009932508775353783, 0.00858435872799827, 0.007780806455685449, 0.00769928950271466, 0.011577783067257342, 0.008214717025709412, 0.01098341434040521, 0.007976170854545033, 0.00893461548382479, 0.00908081133366147, 0.008632669151268486, 0.007907201871729566, 0.009189272560107414, 0.008381621793862693, 0.009092934621030576, 0.00969887547627965, 0.008118332574573924, 0.009197938316657304, 0.008987859450338309, 0.008537257713602083, 0.007916328560322814, 0.010181833451647925, 0.008119711994921067, 0.00782720663841805, 0.0096420111437541, 0.008594216382229724, 0.007598816905478698, 0.008455514552049185, 0.008857002594460327, 0.00962431891722903, 0.00828710372828992, 0.010023320353792078, 0.009529950715588072, 0.009468286601705064, 0.009055939800630904, 0.009038322592602729, 0.00946015777594584, 0.009955375172919455, 0.008686663674110862, 0.00905371528676689, 0.008773998320634923, 0.009251591153630093, 0.009038243987618638, 0.009875069782905315, 0.010568915783444943, 0.009058069163169917, 0.009315946914827249, 0.008123349073646776, 0.009777307701683153, 0.009898457640983137, 0.008119812664828401, 0.00991601371767924, 0.009128142836821363, 0.009428164123420844, 0.008563399207939778, 0.009183813799453096, 0.010114464348960689, 0.00882297647006939, 0.010086829009671238, 0.008527754316645484, 0.011103000034053897, 0.010175387956057958, 0.009408212767013112, 0.008981038269260631, 0.00828344541061766, 0.00901063703140532, 0.00916820362812134, 0.008293369279870583, 0.009565180471521918, 0.008355652563189842, 0.009076001375175589, 0.008607632248762431, 0.010915467011905568, 0.00966570162490741, 0.008592628725124956, 0.008427505507552831, 0.008977931810678077, 0.010965582613996296, 0.00861846131473805, 0.00843346141311536, 0.008670993200609095, 0.011025992288370636, 0.009891464844616242, 0.0073044203035068185, 0.009366440058560192, 0.010717846365946105, 0.009332871522124139, 0.009339400815244816, 0.008394858922228954, 0.009086747298870053, 0.008815549507659852, 0.008386053841247527, 0.008550005014025645, 0.009881812094237732, 0.01086367153675892, 0.01049720454523832, 0.00980083156615918, 0.009200642881087694, 0.009964272969121332, 0.008308947047915708, 0.008463829154305023, 0.008553213514983189, 0.00816855467518468, 0.008768578739102636, 0.008615764969264741, 0.011470774218259257, 0.009355912304949497, 0.009441822085393233, 0.010742137876622978, 0.0111095251377659, 0.009070525375770072, 0.008742682827275292, 0.008401194554160657, 0.009850094190707249, 0.007763939563891001, 0.008908434981073025, 0.009851086437271459, 0.008404401291140316, 0.009128117913130573, 0.009608385475140108, 0.008873441040212742, 0.00875422246833323, 0.008644218733499211, 0.010712493582266752, 0.008804955368220058, 0.009885789316684414, 0.009789007929578732, 0.010925410823846241, 0.008924211301496858, 0.00882625227654826, 0.010424060737968251, 0.00868717600698789, 0.008351124958598086, 0.007634887525877996, 0.008727838593045068, 0.010159579873448682, 0.012293711242201527, 0.008209396367226049, 0.008305047717425214, 0.008783694659500376, 0.009456844841511753, 0.00797960738896945, 0.009836346655136214, 0.012574775541339431, 0.008604207573306962, 0.01048808088491562, 0.008550489702801983, 0.00838093827795777, 0.00981050309951319, 0.00819912507476503, 0.009349040162700632, 0.010205084180787163, 0.009480440190273992, 0.010042346550430625, 0.009642491065049823, 0.010383226790428033, 0.010311804275631803, 0.011023585882151344, 0.009921204575941676, 0.00941241282996339, 0.01007234575403242, 0.009178417831659097, 0.01115172215334368, 0.008311953401595538, 0.01030856433962809, 0.009343857941929042, 0.009511442620005748, 0.00865453139178039, 0.009693161064823968, 0.009111075115218198, 0.010128298302495026, 0.008248015323951162, 0.008718312315246883, 0.01033393132766364, 0.01006346082985783, 0.008598418483348465, 0.009200064425233771, 0.00999227024387397, 0.00900327129507222, 0.008398765890970728, 0.009180186038608347, 0.009165595115392137, 0.01179985640501453, 0.010630668585005143, 0.009340025010285446, 0.011830596980050666, 0.00948627991003467, 0.011401616726654983, 0.00892221468999203, 0.008766545357350471, 0.009743431035385346, 0.009827431873428003, 0.008816415564282292, 0.009994221156960097, 0.009345022076309762, 0.008758406220273744, 0.008958898257063174, 0.00849281382485082, 0.008642977695852042, 0.007844256833485313, 0.010526236329666533, 0.010089341034833367, 0.0080277768876094, 0.008977214327787473, 0.009441732047938762, 0.009613554238362779, 0.008377084910102209, 0.008399966909695342, 0.008604539988453548, 0.008718833595374556, 0.009085603482262347, 0.01008624254567678, 0.010122204803978827, 0.009319829933120537, 0.008677629861348587, 0.010846505911456094, 0.00936190370292077, 0.009412385728414817, 0.009887398194762944, 0.009131354848037822, 0.009306737256813996, 0.008933558580328736, 0.008564421546825988, 0.008839541627072444, 0.009866628926009166, 0.009296626672648325, 0.0079718655533037, 0.008723956232745706, 0.008506108992549288, 0.008700456837104823, 0.010383368913392933, 0.008668873335797538, 0.008888082500041566, 0.008895902286661376, 0.009746126166814764, 0.010241665667902765, 0.00861994330280743, 0.008652530010193515, 0.010103489286928407, 0.008576408906111957, 0.009465022753745615, 0.012685947345891438, 0.008930119091447922, 0.010172158776807246, 0.008289352871968067, 0.012103406583733612, 0.009404239080258895, 0.01067894371957513, 0.008928169597392439, 0.008113352007550857, 0.008303423497353492, 0.008699710330963789, 0.008529683647006552, 0.009457686573761647, 0.008430598753997398, 0.008529598605366295, 0.008709051164105497, 0.00990490800086423, 0.009267147453875491, 0.007727029875107429, 0.008694531540824934, 0.01086939937052617, 0.008725827008969863, 0.010979451836642671, 0.010495247539799028, 0.008378058006457249, 0.012297929370989136, 0.011529057222601021, 0.007852590519171688, 0.010534860271699236, 0.008498167911463062, 0.008610856485433385, 0.009212991878550408, 0.009113453068282004, 0.01090739963124258, 0.01041386485870564, 0.00790809052346541, 0.009600153790108803, 0.008510785469621973, 0.008921544170480702, 0.009178726235275676, 0.009641395711915276, 0.008980232506994618, 0.00904973823848344, 0.011755648984386961, 0.00953445034294423, 0.008507178769947074, 0.007846571054211335, 0.008982708089987386, 0.009750050173553435, 0.00834145482455987, 0.008321312365738675, 0.008203355546257942, 0.008618748897339048, 0.008594494831066174, 0.008810298733661992, 0.00876298834820938, 0.008591363744730613, 0.00822688322703265, 0.009283226557136027, 0.010770385542581626, 0.00908363995148308, 0.008270745097511183, 0.009440892993122807, 0.009312534514723855, 0.010948625464138623, 0.009466766015092503, 0.008413776851085979, 0.00993790958755462, 0.009803316491815437, 0.00773950229973671, 0.007804106521730543, 0.009128715724808542, 0.008281926885988378, 0.009413769092365526, 0.009330638466558173, 0.008788258381868598, 0.007455216757375649, 0.010830070040150514, 0.00853580541121644, 0.009815885913165753, 0.009065870359091894, 0.009820697481703682, 0.009257540830267618, 0.008303633556652108, 0.010383515728363012, 0.010172140147598072, 0.00837323148064172, 0.00812743047237806, 0.010180286494809215, 0.0077807224325465675, 0.010664482957849471, 0.00831962876544621, 0.007957590701399071, 0.009838486511865589, 0.008125542886647746, 0.008526896723459925, 0.009380607409403285, 0.00916749879823977, 0.00843713505391569, 0.008287824884204714, 0.008959145746998716, 0.011714831528568979, 0.007866789614399744, 0.009867014773581198, 0.007449593940687234, 0.007931747822152896, 0.008569494719131534, 0.009086531019841863, 0.008445506113300244, 0.008927779572351507, 0.008876877251827588, 0.008160195605300846, 0.009188192157736244, 0.008508138478552257, 0.009159360720242713, 0.008554446100822776, 0.00991652947618854, 0.008272392912548745, 0.007107012367691621, 0.007831938950213843, 0.008460040940313092, 0.00779718716432991, 0.00862126504459886, 0.010230418335920286, 0.007144043480401277, 0.007768466296498626, 0.007510357559888528, 0.009808004230604466, 0.009006128589044626, 0.008640837271584687, 0.008108767447960654, 0.007233319363946671, 0.007637072790396909, 0.007790163768239785, 0.008057206002345425, 0.00820920341553501, 0.007431692544160466, 0.012782806583068138, 0.008538242723040374, 0.007711856172839008, 0.007583392481672837, 0.008774424221110404, 0.009558755570798947, 0.007089906949633901, 0.007545476579087674, 0.007813704887958146, 0.010122553727865127, 0.008545916615062297, 0.007646948055804084, 0.0072130273881829505, 0.007627866366068664, 0.008789559572621881, 0.009500672184979905, 0.007482988206708753, 0.006997692813631345, 0.008305210345653364, 0.007818526691268443, 0.0068950690595557945, 0.008242641933689777, 0.007495606580377378, 0.006867893408478686, 0.007301162330635174, 0.007611811497117811, 0.0077462577196465085, 0.006895815467516856, 0.007732440847911545, 0.00712251885528434, 0.0076747174138008635, 0.007752466661826668, 0.007905556152261576, 0.008561610880921928, 0.008311542530161854, 0.007910582847533097, 0.006882863285535797, 0.008196253539216285, 0.008303297236307117, 0.00723455422603903, 0.007973326500929964, 0.0074345326874421785, 0.006433772668434626, 0.008254417430247522, 0.007122181846505755, 0.006721210877994326, 0.0066088055656848745, 0.00744499709021874, 0.006309474711374616, 0.006906414235898994, 0.007154863277080911, 0.006864608797541592, 0.007382953722805567, 0.006919729341254524, 0.0071616804051768315, 0.007408187642587061, 0.007238000600672053, 0.007929277621339428, 0.006458433677468585, 0.007537882712871031, 0.007860879326192007, 0.007342743629223311, 0.007487579712044455, 0.007427892880966622, 0.005751777404149285, 0.007493851091752708, 0.008166943213803835, 0.005978348720095387, 0.006671815043910648, 0.006158395784799207, 0.006449944575334712, 0.008579738267441248, 0.007663703496758914, 0.006088778838109789, 0.007415204689215792, 0.006892933362263291, 0.006248387284458324, 0.006210914528599119, 0.006270965909558356, 0.007267772196091869, 0.005713966642024592, 0.007229682819337469, 0.0067035064354935186, 0.006485949442031067, 0.006574491552858624, 0.0066355105873036665, 0.006730344727057721, 0.007729578745468019, 0.006568039074545356, 0.006486718021261646, 0.006178566441694721, 0.006492869443140735, 0.006190465777542208, 0.007147597121059594, 0.005553052596949935, 0.005880021857065125, 0.006322453643945625, 0.006544822901544675, 0.005810508018952833, 0.007046850391154319, 0.0063010560530324874, 0.0057018247151821855, 0.005689113330633004, 0.006399506069755761, 0.005915186455008039, 0.00606585238408039, 0.0053775948197806135, 0.005966233642940827, 0.0062507524636606126, 0.005678674562709084, 0.006830782042298905, 0.005384901552131142, 0.005863854513997938, 0.006329414158284058, 0.006736207286939419, 0.005845444420153912, 0.005601375663011631, 0.005821372621469026, 0.005399377044487707, 0.006017293701918927, 0.00569385903599181, 0.006044281388402732, 0.0059565485617624455, 0.005711311388399569, 0.006229212841766874, 0.005992385502024732, 0.0053830852189915585, 0.0053874803951827425, 0.005346896279212842, 0.005238223948527793, 0.005261933339972413, 0.0059609003895797754, 0.0056167574353351655, 0.005139452101878225, 0.005517625243494577, 0.005678057234080025, 0.005017535188190269, 0.006208452195306953, 0.0053540368626813105, 0.005588723606336229, 0.005997665920573743, 0.0050734497190737336, 0.005601484499614008, 0.005189708174320877, 0.0053541496306664296, 0.005696385091216984, 0.005886282157998512, 0.005063376787331287, 0.005064902286881468, 0.0059773422666297696, 0.005996534917159367, 0.005084918484431972, 0.0051698379850157825, 0.004793252937230987, 0.005137315873055582, 0.0051309762528865595, 0.005349019219793864, 0.0057788630549170565, 0.0049180605123862, 0.005044921370503696, 0.005394182309133732, 0.00523149184822937, 0.005812429196698865, 0.005303407144832367, 0.005876160126267672, 0.005184699468117252, 0.004825154563756687, 0.005074423889395252, 0.004651188787242256, 0.004680726232536045, 0.005411515602225152, 0.006131919601038328, 0.005322761150863052, 0.004910540279264154, 0.00482812581063821, 0.004926370058609406, 0.0052097081909306, 0.005099434640300992, 0.005530942311973138, 0.005883467223997214, 0.004812267435738448, 0.005214264951151293, 0.004131110730655753, 0.004480827054972613, 0.004836825471604155, 0.004978579650129064, 0.0050832159489595345, 0.005290829617229206, 0.005016578045118727, 0.005200087918403809, 0.005404647118475408, 0.004494819626793987, 0.00440278958711679, 0.004761862876002644, 0.00550936086522458, 0.0050093374656723835, 0.0050736919657743155, 0.004421350110245423, 0.005390692563136066, 0.005356974053715163, 0.005535410364497896, 0.004400120290366112, 0.004763658821386555, 0.00490444077861355, 0.004635630767926288, 0.004399935447855509, 0.005234120141207026, 0.003918986014414786, 0.004367905401292611, 0.0042799248672568254, 0.004888526814165757, 0.0042754941041955544, 0.005384817946245937, 0.004416904786259471, 0.004566417751401507, 0.004591202260543456, 0.004603613897527457, 0.004746371843084716, 0.004839235608437995, 0.004127512830474798, 0.0056580648012684405, 0.004687021828604322, 0.004966594332295944, 0.004737967535976251, 0.005041646164020029, 0.004932269698277865, 0.004164283900595092, 0.004129374452721705, 0.004798778718736997, 0.004412386989629393, 0.0038458281183722668, 0.005209688718503777, 0.004362455489511125, 0.00484608599880356, 0.004550385243366395, 0.0042942997013269155, 0.004191514344063929, 0.004361303249911359, 0.004109141185660756, 0.0041270831579078, 0.00465453641800323, 0.0036067492033656627, 0.004055842462918003, 0.004770495353758849, 0.007059950606529928, 0.0038974499705303296, 0.004174732546296723, 0.0043099150065294654, 0.004060216738868782, 0.004732749138717728, 0.004234550149539808, 0.004696249301983372, 0.0038407407036093514, 0.004303305835093493, 0.003969917961385615, 0.005780729146121818, 0.004197933712783792, 0.004049076541986594, 0.0037113808019360803, 0.0039160751995472, 0.004357832116338183, 0.0038383507302498323, 0.004282629187662376, 0.004667408053969271, 0.004709331120335291, 0.0035292163358095477, 0.0056524484559751596, 0.0042113716306766994, 0.00378140170611719, 0.0037704011464371767, 0.00391469842868901, 0.0043646008445611785, 0.004916527480905099, 0.004478975763280905, 0.004146160720212523, 0.0038015929993192392, 0.0037049925643271565, 0.003944844215247885, 0.004364223470815551, 0.004164824643832608, 0.004630653898186216, 0.004906291932292331, 0.004159635787658839, 0.0046569129835270905, 0.004159207775227136, 0.003709485050540251, 0.003530322315786839, 0.004546356490453551, 0.005168837307389126, 0.0044473991809020575, 0.0034818853281828486, 0.004208136263985812, 0.0035918633378891835, 0.004167692844487953, 0.00433001847048045, 0.004307741909894669, 0.0034139933799600076, 0.0037340623941454834, 0.004035153077334822, 0.005349439785784409, 0.003424504399485791, 0.0035058744275332926, 0.004122455908106676, 0.00361681042992447, 0.0037203533231647073, 0.0046310118866905985, 0.004323354898762967, 0.0033763740475977076, 0.003967653719492867, 0.0040333842447642775, 0.00347998728883981, 0.004359117243514003, 0.0041262282850270705, 0.005658252873213385, 0.004022740540478925, 0.003916694175974037, 0.003932526981253645, 0.003508135535889756, 0.0032659007447835412, 0.0039877515747866014, 0.0033307317589854695, 0.0032410565848304458, 0.0043709162228003666, 0.0033696439426261437, 0.0036323102974064776, 0.003483734173487369, 0.004131777799887841, 0.003180981198625828, 0.004484722297916484, 0.004569727610729885, 0.0034617198284290717, 0.003608603068473224, 0.003896725888367552, 0.004138106733183522, 0.0035531136889394967, 0.003310406951878178, 0.00464511707421387, 0.003814767970701128, 0.0032222670321037086, 0.003227772963749593, 0.0034970844615714257, 0.003176340286302184, 0.003156623666788891, 0.003505853384605287, 0.004089035136420068, 0.003443195342132573, 0.0031459280976406873, 0.00390029797522259, 0.004266870789314119, 0.003975831292039481, 0.0039648343405942425, 0.004024593688388721, 0.003971612474350448, 0.003556594897664867, 0.003190654440059401, 0.003059162721833837, 0.004738907864848899, 0.004337098323300108, 0.004370344537311638, 0.0033413022299829233, 0.00355659582152723, 0.0034020846620126193, 0.0038855017908594677, 0.004095830333413218, 0.0031766178483400285, 0.0038652511874767608, 0.0044063266277433195, 0.0039507234521102275, 0.003156075202395096, 0.0036632520143244445, 0.0038458467204900842, 0.0037224947098827383, 0.0032711384422850617, 0.0036532427810248977, 0.003224904125247645, 0.00419245015836456, 0.004990567544023789, 0.0027644182518034477, 0.0029116551776289133, 0.003162777453483167, 0.0033362540912967634, 0.004126409732723312, 0.0036869119958590746, 0.003956580090452498, 0.0038794895096380807, 0.0035918559934836856, 0.003711249021580653, 0.002953627468285553, 0.0031250758976433812, 0.003199543806039253, 0.0037252553422184136, 0.0034716480135920415, 0.005812655615770214, 0.003148910834249438, 0.005256040124837017, 0.003099300392622582, 0.003148306899122999, 0.0029202445867937228, 0.0027590593384627608, 0.003410932939734309, 0.004022135499287398, 0.003057442162250537, 0.0034132200374374947, 0.003707315116051503, 0.004097625513501425, 0.0034278251253495014, 0.003110572039567644, 0.0027678331659163847, 0.003927832477472108, 0.003387165786209869, 0.004065924284274978, 0.0030507926177367915, 0.0030517672815282655, 0.0028507658636431656, 0.0037330137287080226, 0.0035242863213467137, 0.00315467440005224, 0.003108179550453464, 0.003662412025273706, 0.00317085333947598, 0.0030933089099084987, 0.0033278972267943817, 0.003515911820809808, 0.003758896861077876, 0.0025826290257510197, 0.0032633028607398145, 0.003128230259119481, 0.0036718460212716193, 0.003479153082960362, 0.0032751417848134678, 0.005696800815508005, 0.0026843356839867565, 0.0030919731939319382, 0.002649731793091963, 0.0035414068334562953, 0.0028286729252016427, 0.0036358261198354857, 0.0031707045627066533, 0.003544719972415628, 0.0031210512495649613, 0.0027908830608177745, 0.0026418694806850805, 0.0030435211542299014, 0.004240850002377028, 0.0038820313655555765, 0.003231480191939174, 0.0026636136719953695, 0.0025040371052180302, 0.0031384263771088968, 0.003057379958131277, 0.0028558333008099172, 0.003801222683474173, 0.002437301427514133, 0.0029616156133947984, 0.0033423251855643444, 0.0033268708708206218, 0.002924477842954509, 0.004358980698051135, 0.002986232650080998, 0.003343632271191951, 0.002564150307169389, 0.00405094444263347, 0.002685751387688332, 0.00340943355327356, 0.003888328296981871, 0.003711403277722451, 0.002569123156133999, 0.003222359179161719, 0.004146893563316841, 0.002647647817296988, 0.0038171004394541306, 0.0034026624594023598, 0.003695309852492748, 0.0031078123813936724, 0.0031749744954984948, 0.0030964635268058557, 0.0025870329935035402, 0.0031917759997952535, 0.0026140200858878362, 0.003124679912914646, 0.0031397751827072834, 0.002865629863281904, 0.0029896289750122275, 0.0038522326734054856, 0.005219584961702389, 0.0036812689080933463, 0.002965674410193104, 0.004492855828147941, 0.003686354568717318, 0.003443118898093251, 0.0026574767485337083, 0.0035224009237283882, 0.003938132894270304, 0.004318278981935463, 0.0031953730983981113, 0.003546071189544142, 0.002611849049680601, 0.002692584904142333, 0.0027600400101815874, 0.0035447703246445092, 0.0029374747626786015, 0.003398772888285694, 0.0038141031441032433, 0.003205762014956885, 0.002738070565660159, 0.0027215697377699897, 0.0030842111249705173, 0.0036963533635646618, 0.002481086069491753, 0.0033701335288925187, 0.005659972346891402, 0.0023059520019085298, 0.0028606807079952423, 0.0025261442195954036, 0.003167588199615661, 0.0031964874024812116, 0.002341561020555553, 0.0030989423402926195, 0.0040544403201552715, 0.003418832711353252, 0.003635056590536747, 0.0022962102655294217, 0.003952408260592287, 0.003692095984682601, 0.0031080990542537547, 0.0028860824278965453, 0.0032653821738685223, 0.005601935549414822, 0.0053017285309255495, 0.004836857998305166, 0.002987873606984672, 0.002411246338502685, 0.003604368297873314, 0.0039100726782797055, 0.003157728230374285, 0.003114970817762936, 0.002778768629472396, 0.004694696540083214, 0.003292801854125596, 0.0024604269002016536, 0.0038489963260166724, 0.004612063509717565, 0.0034857591215295045, 0.004527471652857083, 0.0035119004077790042, 0.0025527428926749576, 0.005171437060937096, 0.0040680475793720364, 0.0027534813214358917, 0.003868067618667466, 0.0028998277070711037, 0.0034110576003223867, 0.0030653602221536714, 0.004664776359644132, 0.003316901317364481, 0.0025566344594994553, 0.003805134120791094, 0.002916165527411713, 0.0023616974866463346, 0.0030643032637247413, 0.002750971357924124, 0.002361685049383915, 0.0033149856905882345, 0.002363481265584284, 0.0025258266038167094, 0.00377294951513051, 0.0028166761179619034, 0.0024831471330368543, 0.0033062822434908263, 0.0029271463759402015, 0.0035656210083852115, 0.0033493848022537235, 0.0034211573571163757, 0.0038501853000413476, 0.00488272298445939, 0.004619909883091203, 0.0021753829399791457, 0.0021896665084624295, 0.003560534967860124, 0.004152907453638815, 0.003240406683322111, 0.003712464078505355, 0.002490528491217384, 0.0040327207850056985, 0.003739391325906942, 0.00527186838555517, 0.0028102719148098984, 0.0035198996696252033, 0.005651004665536001, 0.0033579882641618175, 0.002607068733454031, 0.002888543183852603, 0.003441314049635485, 0.00323392026595036, 0.0033623536087024953, 0.003503929958673136, 0.0030902137718654002, 0.0026410199612632163, 0.007201114453420641, 0.0036881304821136255, 0.0021669601111804202, 0.0033669520541331154, 0.004635730389478315, 0.0028795319180073553, 0.0058152695695219666, 0.00220652754129281, 0.002426086924745747, 0.00409352172828358, 0.002949250882955763, 0.004179095604731082, 0.0036691136090841138, 0.0037556313675280472, 0.005169624081392029, 0.002835234787502278, 0.0031223858149386666, 0.0022436493513497352, 0.003517937954538578, 0.003140355134466357, 0.004178915053446657, 0.002955421576920389, 0.003981350952291437, 0.0034390032481989123, 0.004260056526312233, 0.0025044354304599886, 0.003607014971621747, 0.002377024069725943, 0.00304594310074457, 0.0033698089757219344, 0.0050062027549281135, 0.002533256234814164, 0.00398061805194123, 0.003340821427984588, 0.002795160019739417, 0.005397064986961874, 0.004127326868135621, 0.0044464296148767676, 0.0022455926493488067, 0.0038492904646524593, 0.004424092216027313, 0.0028014778151107997, 0.0035685212225286056, 0.003017313017900488, 0.003841130297628144, 0.0032279567098145385, 0.0033780042257331626, 0.002719861710857374, 0.0032837287567960725, 0.0036977208252036895, 0.0027560955797427925, 0.0028058243107872286, 0.0028097861072927006, 0.0054351673923399135, 0.005714149726271552, 0.004337205527133097, 0.0028886278693370593, 0.0027218417568669957, 0.003534368494465543, 0.003209703972721583, 0.004301131979057794, 0.0033353321460309316, 0.0030512375735153815, 0.0031139112176210583, 0.004902864639930937, 0.00377600983922841, 0.0032477194665621904, 0.004017418279553306, 0.003911669548889328, 0.003819008896291778, 0.0027850030946983354, 0.0027341637042582485, 0.0032917759469162874, 0.0042459777897900204, 0.005103442661212643, 0.002875624980282407, 0.004918083368858379, 0.002279085598736218, 0.002494294515117827, 0.0032171975523272145, 0.0036554201602598596, 0.00344519344592676, 0.0035063040086175134, 0.004113348496844645, 0.0028054315475361615, 0.004670206678152033, 0.004842242073587755, 0.003297725338992201, 0.0027107602709251087, 0.0027792747703097895, 0.005353746654066789, 0.0038653854700911212, 0.00320549592448097, 0.006252133353746726, 0.0043658036134888644, 0.0033242762018076627, 0.002805038889367905, 0.0033643473449351292, 0.003528964929046938, 0.0021378693480979833, 0.005562354802590973, 0.0027471869719896238, 0.003922614106819868, 0.0024814650716233192, 0.0032456434421738916, 0.004015162251947747, 0.002928449935463492, 0.004110142873279631, 0.003462936574300348, 0.0022758013864675663, 0.0033592393095803934, 0.007499063529223564, 0.002767524405226481, 0.002897459248153144, 0.00483985046770238, 0.002055182756513571, 0.006525849149342138, 0.0033018326804967165, 0.00407400070455248, 0.004593343259496085, 0.0031773166637658196, 0.003643209250092254, 0.0037405618503465873, 0.00263986132999374, 0.002544674091709134, 0.0021358227745753027, 0.0052812220629622365, 0.004018091407745665, 0.0032694765817292866, 0.004155884916542064, 0.005900924545264059, 0.003457741948638493, 0.0027673744519534148, 0.0030550556976470973, 0.004167827212997965, 0.00363200709214028, 0.0028745529875235662, 0.002834597914230731, 0.0035328994223766835, 0.004470195160317479, 0.002713180287031386, 0.0035932355203913678, 0.0061625011657277925, 0.005000980402777301, 0.003671365386196004, 0.003560665035087803, 0.0025827597057320973, 0.005735981142308869, 0.0025439942524587648, 0.0036367377879584226, 0.0025406850334565986, 0.0027842495470459475, 0.0024992046633693196, 0.003377928911160598, 0.0030931235131188006, 0.003072633313264449, 0.0035631669293476483, 0.004078311875338915, 0.002816781157340179, 0.004176879579996324, 0.004420159237460112, 0.003006040349856879, 0.0029517376990939623, 0.004366256877374177, 0.0026765532564841992, 0.0047723845731723795, 0.004850789739711861, 0.0027444616230650597, 0.0037353069457493385, 0.003603274802569488, 0.0027439410652108326, 0.003191058603927023, 0.008273557252702502, 0.0032512104103727597, 0.003284641742981171, 0.0032134500212134356, 0.0029435787182200733, 0.0034498895749991098, 0.0037785133055186436, 0.006519301348071578, 0.003383948793141476, 0.0031490883307169594, 0.0043479069312681255, 0.002684009807256392, 0.0020487060067408583, 0.004904063882954971, 0.003764404801197747, 0.00288952157571398, 0.0030418615754804943, 0.002461344345815495, 0.0031782920466248117, 0.002693387082825923, 0.005031159242868136, 0.003123491557302999, 0.003770817045479602, 0.0026435589995306725, 0.0023194957537544625, 0.004609696050405895, 0.0027697376066297278, 0.004305672994357851, 0.0033724271757167392, 0.003794320212878331, 0.005745011057117934, 0.005088330560061119, 0.0033012684109938713, 0.0031953623732420187, 0.003152165741237914, 0.004185058978730234, 0.002464574726726559, 0.0032822938925754427, 0.0036105853583160686, 0.003444756614402312, 0.0019668605695163407, 0.0035106965207473027, 0.003492794859583647, 0.00389809345375144, 0.003558045349891329, 0.002492925986588625, 0.005482313078326306, 0.003158289520897447, 0.0037351467217033906, 0.006562847501244594, 0.004167830258934152, 0.002556307435302264, 0.0052474127451095426, 0.002941646523877016, 0.003419262803267617, 0.003407132682136616, 0.002736982917791836, 0.0031202480947680462, 0.0030560158423379173, 0.006143774884199105, 0.0029244025705039045, 0.0038793932187644563, 0.0031358405185836257, 0.004716533995807432, 0.004129822026440555, 0.004458910721611698, 0.0023649941593471844, 0.004730580605918287, 0.006954787646506214, 0.003620658323883982, 0.004742699436109831, 0.003901579525604644, 0.008859565216037247, 0.004659772732753471, 0.003605751357777358, 0.0027705066219791794, 0.0031154027748743094, 0.0036484679914196736, 0.0032175885940305105, 0.003354502739329977, 0.0027974812973621953, 0.004017440242040137, 0.004079390707369104, 0.004634690943037208, 0.002646117308518726, 0.0032778968229252464, 0.002956675143251297, 0.003172801666002218, 0.0026429605654053317, 0.002721789161450758, 0.004131398989219772, 0.0026801118808972802, 0.005911583475512879, 0.0034676151506470186, 0.0033642816186615935, 0.005658650440474968, 0.003373185545594036, 0.0037659379681539993, 0.004976084435970264, 0.005410027447079755, 0.0032475484241134807, 0.0031616759111845966, 0.0034519179133998407, 0.003484547746429943, 0.0026596751404578374, 0.007798532613656446, 0.004676605432549131, 0.004500494434601596, 0.0028459566052966264, 0.004233783602477774, 0.003754650027361648, 0.006231815577959886, 0.004390974588008844, 0.0040887196734329815, 0.0020602239421991246, 0.004698932113117556, 0.004715169651294272, 0.002898438172313344, 0.0033862983002782613, 0.002897512054532996, 0.0032494569365718136, 0.0036925846664743974, 0.002485166956970575, 0.00394557666514554, 0.005409735222245499, 0.004147654849477036, 0.004265963789972465, 0.008865278745555307, 0.0032898019221305834, 0.0021528755638116877, 0.0028259406825659685, 0.00350785642394296, 0.0038770585408032235, 0.005254791768669513, 0.004899667859766211, 0.0037471561687833894, 0.002713965961827791, 0.005604165245671671, 0.002914399602701119, 0.003956971846217894, 0.005669959532670901, 0.004478396716770311, 0.0038668237118736548, 0.00259082676917681, 0.0062876987222082945, 0.003764509879583403, 0.0035023706543407264, 0.0047150343552844285, 0.003726693431274343, 0.005507493191846687, 0.002271499452061515, 0.005765852615009879, 0.0037263577347906806, 0.0024180953545675926, 0.0028100038390638654, 0.0035223024650230055, 0.0039146172242699, 0.003327930868660117, 0.0033877983823234225, 0.0062937185561747115, 0.00487608237906216, 0.0026874658261604165, 0.003169714021967527, 0.0032857634287476825, 0.009243426066343067, 0.005239002860126871, 0.0033803394120017196, 0.0038687125856996336, 0.0033556629691346637, 0.0040624642726407026, 0.0027557364109536786, 0.003876569641126308, 0.0039343460461002365, 0.003158664279277188, 0.004822721170770759, 0.0035654909793050664, 0.003667825030903016, 0.0036065740337473604, 0.005401903255610515, 0.0023820428817218796, 0.0034510870434188413, 0.007995601993643927, 0.004089713463223249, 0.003158868933651008, 0.004770040712514609, 0.0034717212363724785, 0.005532583651153576, 0.0038284906645416, 0.005208576317714452, 0.003989201334302234, 0.003366760022433681, 0.003327771926652019, 0.002876381754724686, 0.005799823673188596, 0.003174026302148274, 0.007340812043416732, 0.003249018058326947, 0.0031305585240920045, 0.003412091083731885, 0.004042956289277803, 0.004204292302825898, 0.0030298637668372797, 0.004230275437656144, 0.0059835990259239765, 0.0047005579091972255, 0.004171885809795545, 0.0032372305117587723, 0.003198199055747515, 0.006043602314103893, 0.002893859428276027, 0.0038028936492115117, 0.004145850608399856, 0.00543532782604669, 0.00408684967611747, 0.0022184277905664004, 0.003672760298184019, 0.004130520138266016, 0.004020160792934839, 0.005524342023527003, 0.0026741110415163497, 0.0048827732564625526, 0.0033531522697621565, 0.005004104581674833, 0.005609901301415407, 0.0052562406612024, 0.0033189647316892294, 0.004775193694520309, 0.005263062341425003, 0.0029953651199377306, 0.00362459837385716, 0.0038838329096257023, 0.0032599212145370967, 0.003903220680317771, 0.0028112684740428076, 0.0037068507644920255, 0.006340087783136104, 0.003523112102680433, 0.003656013570983221, 0.002985037669225382, 0.004498752149844682, 0.004305967032571898, 0.002809141813259923, 0.003736100780033233, 0.00395997464732048, 0.0036888895803398754, 0.003387202034868858, 0.004674766407528867, 0.0034824840813682937, 0.005881163857789994, 0.002814412730538667, 0.006099789341200805, 0.0030192863207418067, 0.008175993628018562, 0.004179714067528861, 0.005971964850868164, 0.003936862714835329, 0.0048425242396902355, 0.0021843149067188165, 0.005960085469684127, 0.004782305034032622, 0.0050425848552154255, 0.003487314675320046, 0.0042736141827797525, 0.004126584197426319, 0.0028730811762759092, 0.007482964006618055, 0.004316689424737773, 0.003178810686465754, 0.00329059832575498, 0.0032836055275570464, 0.004438569102879964, 0.00390032634893182, 0.0037695448073829553, 0.0038232822160464432, 0.0028200188575121087, 0.004761157423738801, 0.005540508351665653, 0.0034052490586860907, 0.0031672269178261935, 0.0035894327467260413, 0.003983860643367217, 0.0031926071539752675, 0.005825284993239956, 0.0037599155990165898, 0.0026522037385263756, 0.0036621110218844864, 0.0035095349970174017, 0.004337711319750714, 0.010178608921227104, 0.004511951282171011, 0.004812149905085053, 0.0034309591431051106, 0.003319961784119891, 0.006439714660259087, 0.0035431137269408856, 0.006227953302785515, 0.0030958179221841726, 0.003951088128787753, 0.007536805495546558, 0.0043765765449067205, 0.0029247938926356245, 0.0058121483143143415, 0.00626709518598059, 0.004879607563810626, 0.003923625808595331, 0.005485966512391713, 0.003067043185186588, 0.00391725545426781, 0.00307670935429056, 0.0032053399859064842, 0.0026368890051170673, 0.007466908201416743, 0.0031562955027678793, 0.006836636088463373, 0.005290370990512637, 0.0037857331092046808, 0.003714973513966316, 0.0036480537286859016, 0.002584700690401045, 0.003095555406937479, 0.004086861587403398, 0.0031973785014038913, 0.003861757355109013, 0.0037122297269133178, 0.003524999648674373, 0.005731565830866171, 0.004417752056278231, 0.006577785138051769, 0.00451503965692226, 0.005929464588024808, 0.003788023296980604, 0.003176974350185044, 0.0053271648374272, 0.003367113898260796, 0.0036985477098509566, 0.004392607203692804, 0.003286279890979947, 0.006138020792006436, 0.004301720630019939, 0.004948808483079684, 0.0036278762788002155, 0.0034557693693639305, 0.0043040538542741275, 0.0035121415528694133, 0.0034540065356474027, 0.003143204320364712, 0.004457999340927965, 0.0032686013197794884, 0.003269483246615596, 0.0037367815229711167, 0.005019855901020819, 0.0030062070370841893, 0.004858886921519459, 0.004246826158121191, 0.004802003214790097, 0.004602772405407575, 0.005447151150087986, 0.0038380934707075614, 0.0055794191305249315, 0.0033568801406799326, 0.002903783604353282, 0.003312007625597596, 0.003933226624858606, 0.0053308834505872375, 0.004641085120573122, 0.0036749271748289522, 0.007048352001503928, 0.002868430228181749, 0.005759595449158691, 0.0035334030902093977, 0.0035620723472071895, 0.004532256577893886, 0.002666470636147484, 0.007092258256558339, 0.0038136168737141823, 0.004132809469552462, 0.004075006941756601, 0.0038487766321053953, 0.00408409357130501, 0.003850775549143463, 0.004094387674866093, 0.0031072031845566996, 0.0036172023959326833, 0.002992331085398576, 0.003501989506273306, 0.0032209935254564927, 0.006266019508359056, 0.003035309122484997, 0.004408572632249251, 0.00416159004204965, 0.003229650826821212, 0.003820150323540839, 0.004312437078341456, 0.0038627137861529373, 0.006150932968247262, 0.002908999640811154, 0.0068100701788434085, 0.003002498073646201, 0.0026547378023038396, 0.004453288369826175, 0.0035437499823911455, 0.003785327022617649, 0.006442983511159056, 0.008357915439762728, 0.003551134905345043, 0.005235645303167295, 0.004010174829043312, 0.00376523508377343, 0.0032727637104916904, 0.0034840788182512643, 0.0033998332247568335, 0.002826170601621442, 0.004922839870175951, 0.011047979591839023, 0.0042463092217960765, 0.003055971609304891, 0.005552398097109063, 0.00608721572555492, 0.00289647553053837, 0.005788007758884923, 0.0037881206561807407, 0.004081313534101764, 0.0034285039534764973, 0.003983389488500775, 0.0055665273919782, 0.00448463370517424, 0.00635372850329604, 0.004265443571709037, 0.004583833137702798, 0.006080767524847104, 0.003321751434494644, 0.003302669010064283, 0.0036034311624343132, 0.003889153398450572, 0.00470318299794828, 0.006650526557622145, 0.004000695601272695, 0.003818897563484052, 0.0035139625215552346, 0.004985193366264666, 0.003503268692728894, 0.004225785641610262, 0.0037293980066342588, 0.007205410901877511, 0.0036346449652467985, 0.005802227728676681, 0.002685994044185538, 0.00512283947940248, 0.0081562345178477, 0.004081791578620287, 0.0028188764689329087, 0.0038577926204466746, 0.006485231327068995, 0.006715270104917852, 0.0036797888140537778, 0.00598775070245376, 0.007613527015635048, 0.004512655887875995, 0.0044131177064242865, 0.006098866748429497, 0.006969322717504424, 0.00480363022762169, 0.0037741417798890795, 0.003827774902359829, 0.005303955796206473, 0.006174333942183785, 0.0032841475388565252, 0.004226011152930067, 0.0051157432847268635, 0.003242138718905206, 0.0051739772981313405, 0.005487793541027402, 0.005448035461811097, 0.0036463046014022734, 0.004542748209092728, 0.00648685265367899, 0.004814642145117296, 0.0038654464594972257, 0.003782846904592932, 0.003234222708536484, 0.004933997189900794, 0.0033011388811737875, 0.0057660291041801235, 0.0038081970092172885, 0.004783408675037339, 0.006443532584770891, 0.004088361024672508, 0.003914996115775908, 0.003541953497272616, 0.004654693535883865, 0.0033692362220054525, 0.0028905018927310286, 0.0030342585665724363, 0.0052295986294290525, 0.004835422227922184, 0.0037181632693901747, 0.0033027628937650514, 0.006154176387777552, 0.0027146945408768326, 0.0031025099430406853, 0.005007944722827484, 0.006738046973837749, 0.00455830802264932, 0.0041002725266371925, 0.0036596507453420767, 0.007008078729151374, 0.0032947583290152036, 0.00765693648291991, 0.004367897106420104, 0.004320172972493839, 0.003706146961395175, 0.002966365053189909, 0.004011865670545767, 0.004996597624520939, 0.003427214930975985, 0.0032817663200927797, 0.00407079769218272, 0.003304615651537629, 0.00622062730619167, 0.004369262938989415, 0.0039540174756302554, 0.004024678198114021, 0.0061244675542713135, 0.0035706811110981992, 0.003791895643021815, 0.002628159431120305, 0.008069798892189041, 0.0029464319175066802, 0.0030504885252770697, 0.003239031132311931, 0.003758352076542035, 0.003968771667061994, 0.0041400985815740156, 0.004020252859508003, 0.004301560952012525, 0.005697221231369738, 0.0038135626739897364, 0.004057749956668599, 0.006901770902754689, 0.006318342145498699, 0.004518599965351195, 0.003924970075999918, 0.0033588130962836685, 0.0037136544127832466, 0.0030162089785109843, 0.004241677351455241, 0.0030275297850223533, 0.008881229118462796, 0.003190139890441234, 0.005026961342340648, 0.003612033580611675, 0.004831480038877817, 0.003780604856842856, 0.003112604031786503, 0.0068733553588545175, 0.005173428155069905, 0.0038337571781464504, 0.003400943048077984, 0.005567455944339673, 0.003544981585476367, 0.005458662595139725, 0.003681740810526304, 0.0038197045228497103, 0.003771885484317323, 0.004263329836141524, 0.004597928058787689, 0.00530537820896702, 0.0049470794965786845, 0.0033178380076905995, 0.004228512071631181, 0.006150934515487026, 0.004097618943054224, 0.0037766913217029225, 0.004094145326737565, 0.00465811304084918, 0.003962294679813527, 0.0036503251833362115, 0.005875472888352737, 0.0042847994909321774, 0.0035309128298619515, 0.004563140914876965, 0.003970349217532063, 0.004516733898728793, 0.0036527520313750068, 0.005550463342029317, 0.004388220348280106, 0.0037357323525296104, 0.0035663111573631737, 0.0053845344422961, 0.005018121684250948, 0.005077406441251683, 0.004044095960481535, 0.0035734907906267064, 0.005204040450260039, 0.005483649272040805, 0.0036385281625108228, 0.0039094974793631955, 0.0044772406819973114, 0.0045086954931355455, 0.004054864315218974, 0.0076923818799958426, 0.0029933321128317878, 0.0037964240277492374, 0.004504470357160272, 0.004326488444156822, 0.006197423861099701, 0.00303682341215542, 0.004216651828454378, 0.004517004520595327, 0.005205124082470461, 0.003916857611017332, 0.004229662994983473, 0.003284291309216802, 0.003978696983860411, 0.005446310729678114, 0.004461150365273175, 0.0026001151824625876, 0.003952383860005138, 0.003783624173939247, 0.0039005369081805295, 0.003857495086700192, 0.004591790324550819, 0.009012278912652993, 0.0069350898833458584, 0.003586620006506862, 0.003468268317599184, 0.0031176090239165436, 0.004156404820169505, 0.002773870927288235, 0.004709392134026625, 0.002895795553065183, 0.004855264786628481, 0.0048480267439076135, 0.003752193378073954, 0.005354734384621942, 0.004666208687447716, 0.003107297184190216, 0.005952213770213491, 0.0052603580154702385, 0.005585878615270215, 0.004092014133498847, 0.0039022246197041935, 0.0028913552158655554, 0.0049877661026298484, 0.006049707550618982, 0.00266332735697941, 0.003402343339787848, 0.0061093183753724595, 0.004192561554091529, 0.0034393091407311934, 0.0037422399742804272, 0.003941476683620609, 0.004142997116259552, 0.005335076089559081, 0.005703320529041801, 0.003505793499366086, 0.006986181815691948, 0.004093354779671659, 0.005005156550749112, 0.004019523942616571, 0.005770905124059381, 0.0035378697680921905, 0.004505020426440794, 0.003984372300281384, 0.003521774991522298, 0.005902316585629295, 0.007261136314060173, 0.007237819719766517, 0.0032752845016241205, 0.004763325016848845, 0.004577053969703461, 0.004965990612096767, 0.004703233778483116, 0.004481902234870022, 0.007051412657364744, 0.0037123586073202486, 0.0028721174214741884, 0.006397024243829347, 0.002750242571957481, 0.003789415864947906, 0.004972820081143534, 0.00513740001022229, 0.008547192365603274, 0.0041614028642263205, 0.0036965735084195164, 0.0037724809017804497, 0.004413432620948264, 0.005742391370376424, 0.004926953841613566, 0.003966508196807832, 0.0034891255210382924, 0.0035734404780169613, 0.004704477403523041, 0.005307296858548472, 0.0038677488647679025, 0.003413473008463308, 0.003203948868242793, 0.00611109196010228, 0.0041228504233033455, 0.003397248792320262, 0.007778436724266299, 0.005630579186239432, 0.007572827883811052, 0.006896812691690737, 0.00525044261810745, 0.004299891272529574, 0.0038175845259160956, 0.0039791323129715695, 0.0037749774133349024, 0.006558258403245807, 0.004452137856731124, 0.0060404836112369345, 0.00579691160147615, 0.005489437166571645, 0.0045461238749489995, 0.003935404212440355, 0.004579641462822985, 0.004963458520087548, 0.003564592343372883, 0.004970170621909296, 0.003692674722233366, 0.004887723924066693, 0.0035571423837627305, 0.0038321243110919605, 0.004480196429987102, 0.006037817884190859, 0.004861158405420191, 0.010890873272706835, 0.004631092857454535, 0.0031099000078037313, 0.003955704996851235, 0.004698333496537784, 0.003818366205923008, 0.004495517883874415, 0.005208379676546414, 0.003970476740367655, 0.004259027220004713, 0.006356177404141905, 0.004490387131967519, 0.004893861533183905, 0.002543404890928149, 0.005252644008109322, 0.003803766668762247, 0.0033509222272597927, 0.006966233096875869, 0.003443431147741492, 0.003594585253376345, 0.003661277760844687, 0.008666949610335274, 0.005688494428793572, 0.004031650733580813, 0.005237227108559459, 0.0036672903889584537, 0.00609105313993421, 0.003592243248187735, 0.0039748231940761386, 0.0036024544989082564, 0.0034405362501756685, 0.004092022387525205, 0.004935965211671275, 0.003289083268778323, 0.005373850986712655, 0.004456155958252191, 0.0037250354149412036, 0.004439745884213645, 0.005994049840583882, 0.007280941404114559, 0.004596959817894942, 0.0029251218910448596, 0.003587619740070289, 0.004083839072197363, 0.009777079087954235, 0.005203077421220231, 0.007284304314762412, 0.0038816403426272183, 0.003592619505300953, 0.004824390177088114, 0.0042902825274911, 0.0056384283644401855, 0.003169830476784828, 0.005402174914122788, 0.004254495462051235, 0.00641863976889996, 0.005174338710116548, 0.0048005187032804505, 0.004107325958879452, 0.003945163197752404, 0.003668065266049886, 0.0031999578732899727, 0.0060331552069515385, 0.003607410955233156, 0.0039711654213490655, 0.005698264398428956, 0.00686639032863552, 0.0040856371494515644, 0.0033386212611804357, 0.003685985293761783, 0.005247376176032563, 0.004748063011092231, 0.006054607710034762, 0.004421114907005508, 0.006381437845460437, 0.0032472493650164114, 0.004536242760890883, 0.004326406275729018, 0.005354433127106163, 0.003787535114657489, 0.0036094206793887236, 0.0038368171145297587, 0.0040747014001587985, 0.0063091577211258475, 0.007062400878383858, 0.0027730896722090808, 0.003414130234700307, 0.004078124128412548, 0.004573014644643946, 0.005613565380673003, 0.00323127028195027, 0.002783439037069352, 0.007427841077665006, 0.0035509404280067818, 0.004292812440472138, 0.0035787950685038177, 0.008608694823797619, 0.003505693258691519, 0.00437621205350336, 0.006458146850081961, 0.004815580382149943, 0.004326742095720761, 0.0033861050780292215, 0.004027750013774738, 0.0037669746003062706, 0.00482206532888845, 0.004578926121110417, 0.0035764960324804833, 0.0047434139008196, 0.0042565860098862, 0.01039770552884511, 0.0058929327663467665, 0.006822404195671943, 0.0030310603006732115, 0.00362630687714626, 0.004113570932941781, 0.006310269311145653, 0.0036678160262409954, 0.0035247640685497268, 0.004498391606686013, 0.007795473524424806, 0.004508409954233514, 0.003715100990668646, 0.007658998222751926, 0.0043162707552535946, 0.0038565224057318416, 0.007266230844331208, 0.003908950058321986, 0.005028627679665008, 0.004867399241754395, 0.005040494969530819, 0.003440359427795739, 0.004776851424463784, 0.005248801599986703, 0.004840388312984766, 0.004265231498317452, 0.0033337497827735985, 0.0045767227879624575, 0.0031734627077005468, 0.003939392390929424, 0.006725943532987906, 0.004597037844320076, 0.005012184588199605, 0.0038420033237188357, 0.004264451483004465, 0.005558734403412055, 0.0035648980724585005, 0.004220628248823345, 0.004839492256332968, 0.002398612542699156, 0.007562542072622841, 0.0048427548732459, 0.002926816325459399, 0.005335153023176862, 0.00415194961005186, 0.006375530771922831, 0.004374855623376421, 0.004519686587838504, 0.0034866059174762667, 0.0050028804335421305, 0.0039037448088802976, 0.004545302220648109, 0.004049925062627287, 0.00461166864077637, 0.004189753970074812, 0.004377344620803007, 0.00444200560026617, 0.0038145736023927354, 0.0031018581192053954, 0.005068709001961701, 0.005426495578520421, 0.0035630130356081014, 0.0053678971611749995, 0.0033604536557966767, 0.0039633118041253815, 0.006327106722306709, 0.005734295539239655, 0.002636278543797832, 0.0044068955237433795, 0.006100156509406969, 0.004162993771259055, 0.0030014041377677885, 0.005218231649859966, 0.0040397879307681895, 0.0039902210895301285, 0.004266711268080768, 0.003500842289643349, 0.006628235342948046, 0.0038377392043553865, 0.00292222346619539, 0.005172027031207061, 0.004043554217923062, 0.00405496746783564, 0.005906764635965167, 0.0029220758272225597, 0.007655925104869027, 0.004577719358402234, 0.005586521612194083, 0.00870983854989079, 0.004110509314762341, 0.0034086230246116477, 0.005881774885925918, 0.004499755506556589, 0.004156903026876562, 0.0047164596397654395, 0.003591037787062619, 0.0034342191775148393, 0.006286225243184275, 0.003427288533761072, 0.003720271879510125, 0.004159639170340486, 0.007634278921358001, 0.0040618763825021695, 0.006166241113356159, 0.0039025109982120847, 0.004385091895782753, 0.003608847648997198, 0.004900479876374179, 0.006545770509233497, 0.004452678588416443, 0.0032707116587230916, 0.004930843197510384, 0.005165490395620347, 0.003387457831536772, 0.0038468091604540637, 0.004712933652752785, 0.007021903060289709, 0.0034029262686216303, 0.0066646355690026, 0.00803160107796437, 0.005448229782793836, 0.0032951833935991317, 0.003690145640885526, 0.0047027390738377094, 0.0034326147484724503, 0.0035019704881939623, 0.005418960582703372, 0.005613677864001522, 0.003075402106781322, 0.00412619190875912, 0.0033008951131710622, 0.006217434099324107, 0.0034665245441083356, 0.004903627304455569, 0.0033903483073701654, 0.0035631573471362034, 0.003345145066069901, 0.003140340783527216, 0.007963662028310019, 0.007143293557750413, 0.003252536452562374, 0.005905166726759981, 0.01016028220099278, 0.005064942047291203, 0.005370216760090622, 0.004250208111634899, 0.0038206925760877137, 0.003687036999419384, 0.0031057896544066876, 0.004953382141145375, 0.003983429996309041, 0.007092653362018165, 0.007009119755448594, 0.010906173122424838, 0.007811797026342099, 0.003619556204178441, 0.00408949751094128, 0.006603487433101411, 0.004871318742943988, 0.006754412542389054, 0.004975565959506779, 0.0035552746486688805, 0.00376161969946657, 0.005240975636318099, 0.01050043647564207, 0.005277768279085334, 0.003873202030908749, 0.0033710364924960596, 0.004558237492670386, 0.006163794500139879, 0.0030719456527477378, 0.003341095027629024, 0.006927937170280366, 0.0041958628289156755, 0.0035389863029923196, 0.0035193296708375954, 0.005902571958996946, 0.0032535692765853982, 0.0035799075345165424, 0.0063213234048631484, 0.005300267617838396, 0.0035598422034856087, 0.007283942395066921, 0.014926103517482326, 0.0039298267905534265, 0.003301782466413831, 0.003029952171114232, 0.004710935016096874, 0.0041117073325264404, 0.003996500144046488, 0.005636365969009336, 0.0035706623193056224, 0.0026697373320869085, 0.002882981964992715, 0.005403802182870988, 0.00441943663753405, 0.00525204233873098, 0.006087801572662582, 0.0039929273418795284, 0.003526919899608301, 0.005760990544240197, 0.003918051197936002, 0.00339602808067618, 0.008342702456772079, 0.003084683167792619, 0.004632927116061341, 0.0037562886886824015, 0.005063985191247899, 0.0033499107394387335, 0.00518318333849822, 0.003981924479777977, 0.003842545172743788, 0.0031049032433877978, 0.007500851420112402, 0.008404790199634533, 0.006677307786215077, 0.003994735066712503, 0.005606516415509752, 0.006706024740061958, 0.005012174515530566, 0.0040181196574504184, 0.005643199432626726, 0.0031744971834307663, 0.006643910597799005, 0.004221037558626728, 0.005537256174327241, 0.005347587733775312, 0.003917083973045616, 0.004675629403227064, 0.004322289624059947, 0.004802978481493611, 0.0035032521502530835, 0.004537808018702422, 0.006408112339656218, 0.003813334189731828, 0.0037959354312211667, 0.004988494690357738, 0.004510960323659744, 0.0038362386136704682, 0.006957326939964549, 0.0052059965962999635, 0.006892378369191002, 0.005541903828864825, 0.0042476657094997206, 0.0043366206514041505, 0.0037881654563207538, 0.005412471752001616, 0.004757026043122837, 0.0029469168397917777, 0.004707358979051676, 0.005088607333743319, 0.003628739577249687, 0.0029226000017556785, 0.0042952689864772155, 0.003932128250885402, 0.004568584553601053, 0.005728449520878054, 0.004366247387464555, 0.0038496787860879595, 0.005356276021366677, 0.0036520657346384134, 0.004607594891169465, 0.004226273947651346, 0.003235693632127038, 0.008601620145919748, 0.005397900680843929, 0.005592661014614039, 0.0042473187401016995, 0.0055108366726332614, 0.0037076126096154474, 0.006015763733167092, 0.011129433955102767, 0.0035428023171858456, 0.004872062647423632, 0.003682299989162717, 0.006839960721173925, 0.007886832857262608, 0.004084687547386943, 0.00394324674278129, 0.009900866740152406, 0.003570926030787968, 0.0042608642079057495, 0.0049285178405612685, 0.005460315417186211, 0.0077355127450637485, 0.003584800935325265, 0.0034131364978587813, 0.005260751596151205, 0.005870509849754539, 0.006708809534955232, 0.0032471681702989008, 0.006316638683011508, 0.005070620083069922, 0.0074719501252871, 0.004135005298586703, 0.003299118924830052, 0.00554675258592883, 0.005302559760747836, 0.002863374135073377, 0.006533707846217339, 0.004026914472133661, 0.004200470124496794, 0.005492254919505669, 0.003066681919303195, 0.010931092120234024, 0.0039011527783755448, 0.005173793258659989, 0.0066417002072207505, 0.0034802048696215095, 0.005974262397692764, 0.004389773595483386, 0.004019204320037361, 0.003597629556328974, 0.004058748643196952, 0.0039037909155565154, 0.007254276444883768, 0.003909657461259797, 0.0037786023106491117, 0.005628707857041037, 0.005271700417090133, 0.006366185742207058, 0.012358944823819874, 0.0033188521342349597, 0.0035658190796376945, 0.004059716644308894, 0.004732397872552981, 0.006902327652530228, 0.004522870944297808, 0.0035264018108685192, 0.0033752660479353484, 0.0038881802252628645, 0.0038861106812615536, 0.004271900550498785, 0.008552439802534069, 0.004172711473830603, 0.0053068850628342785, 0.004505583753864005, 0.004517127599901128, 0.004755338896405287, 0.006744131515956158, 0.00363844689358142, 0.004322361063755874, 0.00476123560221628, 0.00248757059924076, 0.012021140396337567, 0.0048956773178334195, 0.004517264219741262, 0.004980804019766217, 0.004398446392622944, 0.005253790685149296, 0.0050252556718904965, 0.0034843594533747945, 0.0042142082704675074, 0.0038723069262367933, 0.006254586487218249, 0.0045398559790612615, 0.0038664193504232398, 0.0037889150867203556, 0.005726476105136403, 0.004424566808432174, 0.003961264747077667, 0.004590124610130232, 0.0049793694155569985, 0.006761835935649822, 0.0047505634763206185, 0.005239003194636122, 0.0042332265584431135, 0.004146347865453334, 0.004708035053964364, 0.0049886537714841995, 0.004494373650816026, 0.0060883383614349544, 0.0032295853555801292, 0.006558805961752045, 0.004595129613057832, 0.006876892925867291, 0.005868539666775045, 0.004244074396267579, 0.00569345944629688, 0.004854809498251417, 0.005365146063612934, 0.004848989226634523, 0.003951629685707269, 0.00583428176384721, 0.005175178880803314, 0.008424293994338073, 0.004960054251216982, 0.00752535973363942, 0.0034327381699446593, 0.00512098438079877, 0.00463654495920941, 0.006666684204106208, 0.00702043502896599, 0.003347967813564278, 0.011216942279844582, 0.008288566329513851, 0.003355591506702108, 0.006421592668474902, 0.012375587565741874, 0.004675572449236976, 0.004923505401184832, 0.007193326976150586, 0.004626087800535107, 0.00476786859614596, 0.003353214202788578, 0.00575953566380091, 0.004373543049227046, 0.003512872322831823, 0.004303707402969472, 0.0042543310093895, 0.004747347896382026, 0.004588258630435857, 0.0037294291048483065, 0.0038800786776301372, 0.0032399303824096697, 0.0049981936043475075, 0.007149875124131443, 0.006385678055764493, 0.0036961821973683718, 0.005323180485819572, 0.003572368105988569, 0.0027551669823206986, 0.004367891003445851, 0.0035971271902049623, 0.005476288640260196, 0.005180075010435472, 0.005350690610027757, 0.003991725371412008, 0.003816891808952119, 0.007471692244869173, 0.0027106047230025803, 0.003803993003646841, 0.003721821755980066, 0.0035723305944328166, 0.008090871916189854, 0.005136010613664437, 0.0027836376316475084, 0.007016900426310711, 0.0036369525386632205, 0.0036865375161498153, 0.003769061979515509, 0.0076044519345525915, 0.0037976119830728725, 0.003743072434129325, 0.0028963820543499567, 0.004898939303749664, 0.004446889119153409, 0.006372157356803035, 0.004481481378461754, 0.004008831850419666, 0.0036540360634998, 0.0032801139902300645, 0.003252166974495395, 0.0038679580194195253, 0.008754471364912074, 0.00531745279854202, 0.0035696322330306556, 0.00544883539424298, 0.003201062445646354, 0.004784595884567964, 0.006102062144839568, 0.0025533821626349392, 0.004319763442879705, 0.004833287168580639, 0.0037987987397430966, 0.007593546291272809, 0.0039489733564764, 0.003432533225399822, 0.008904875169472035, 0.007491641468616321, 0.004981923596066356, 0.005698164997654279, 0.005523003197920566, 0.004013013289124565, 0.005704560642335757, 0.004580115307753448, 0.004487495208783302, 0.003146622265121816, 0.004142963990509464, 0.004597903911144479, 0.004319709523173274, 0.005384853084204086, 0.006232771050613066, 0.006734191586328211, 0.007111328176791695, 0.004067686168839022, 0.0036739440740774037, 0.007450443798935858, 0.0048116703717497765, 0.004208128141577248, 0.0027456241920997635, 0.005909858329834904, 0.0070349334017667155, 0.004428396172655046, 0.002659280613634993, 0.009267463284005009, 0.004120331146560074, 0.006026661898034309, 0.003359215444120798, 0.00440414594005518, 0.017810404806875096, 0.006153556921348659, 0.00302056575227688, 0.004191336000233228, 0.003826964486214875, 0.00356140940956661, 0.004348418734511748, 0.004145529404068589, 0.005420606637258799, 0.0032577488481983336, 0.004204937576012417, 0.005230998643473153, 0.0041971992874746235, 0.004299720447211433, 0.0043911811691633605, 0.005136091541338641, 0.004136128245529345, 0.003997836032465315, 0.008589353784007422, 0.0038554213695586974, 0.0030563070918000973, 0.004560806676521325, 0.008567612672158994, 0.004351957220286371, 0.002262329417336772, 0.005429884293030843, 0.004326039188140568, 0.00398663705598253, 0.0037448765265017357, 0.005754292795349767, 0.006220467152205417, 0.00400573715515512, 0.008272990932847205, 0.0035263701258544623, 0.00754296536566072, 0.0034290866374367722, 0.004460323922668367, 0.0036578321003577045, 0.004019635109822803, 0.009047004410104609, 0.006086523780539657, 0.002782394590607765, 0.0056298820539476945, 0.006173961421863103, 0.004305155499519463, 0.004415955785127766, 0.0062683379698205335, 0.0033428286084068006, 0.004077260831423647, 0.0040644626083794514, 0.013140305994544143, 0.003270799582192765, 0.006366495286803195, 0.0035293714614133727, 0.004860957080057563, 0.002162325460816331, 0.006729726893323811, 0.00564954574320338, 0.004237962174741998, 0.0031070602095689924, 0.0050951095852571305, 0.007548727298569785, 0.0044556122846583345, 0.0038071833756179916, 0.005044882944421328, 0.004716361941122818, 0.006150050747049652, 0.0044670690798756605, 0.004296783359736373, 0.003665869508841072, 0.006194950971165419, 0.0045663551003095925, 0.004772593305537617, 0.005462010452355652, 0.004573246579778975, 0.004218168574880099, 0.00479535845444689, 0.007048353036849951, 0.003612064832699476, 0.004327886257804852, 0.0026963013531286647, 0.0054147483103790025, 0.009632438198950707, 0.003335925941555086, 0.0042849488982403625, 0.00468180534454095, 0.005331954438190193, 0.0029643700439868042, 0.0032602495869127773, 0.003671252563169155, 0.004957261433562588, 0.003806978629349636, 0.003998796511587673, 0.004703207199438367, 0.006066893441368631, 0.0038958634316037465, 0.0034769082189773813, 0.006904539517432649, 0.0029046415363783423, 0.004003357076166973, 0.0027046620938038944, 0.007521174286708178, 0.006157705830324354, 0.00460476468263896, 0.005128062132019198, 0.006618209859998533, 0.005681590389100444, 0.0039370989242398565, 0.005483655279245856, 0.007802969525194009, 0.004615340481350405, 0.011167358677092612, 0.007932830299032032, 0.00477564785384023, 0.0037246011600280903, 0.0032909725995339005, 0.003250010277274185, 0.005968735082021386, 0.00527686018120507, 0.005126983185155347, 0.004582290886582853, 0.003919128456103956, 0.008774208506920326, 0.005069165829844108, 0.00445758830803161, 0.002720078528234367, 0.006143244669173399, 0.004558407280460674, 0.0054483273645711105, 0.004063797124771567, 0.0032264278655328967, 0.012515173255533302, 0.0039459969905923115, 0.005939099167291217, 0.003891753835148284, 0.0034595553030724834, 0.004143927112210297, 0.004557569100368698, 0.004506892196594941, 0.003996560275950217, 0.006472874259242397, 0.004395559996653872, 0.003946950384572229, 0.006916279043504732, 0.0033947609975303653, 0.0033964195951251912, 0.003912670906094193, 0.0035842698781350475, 0.00335252021080068, 0.008899658148041752, 0.003946361227371593, 0.004934887172535823, 0.004434495986376771, 0.004013885723561303, 0.004459863560109765, 0.005745089843135892, 0.00317356967873859, 0.006727593622922466, 0.003416465380134164, 0.003058530611505926, 0.00554565736053952, 0.0044317839178834055, 0.0060906575655365735, 0.006782590291728422, 0.004140019350623439, 0.004759764224393909, 0.004101880279819803, 0.003962581474730011, 0.004981525419099404, 0.004274345641974969, 0.006899111867690866, 0.003600476982170059, 0.003453162248198741, 0.004849700536679281, 0.0038103567011234006, 0.004486490092457728, 0.0034346152068787444, 0.004234026711013977, 0.004480709954014428, 0.003787762222483255, 0.0033831088925187465, 0.0031824256403864388, 0.005817682889229842, 0.004474640462585798, 0.00688650188609707, 0.005144285418861199, 0.006833883878362254, 0.0040941428743576855, 0.0037689006724269543, 0.0060730138942497605, 0.005477817123534022, 0.00448701603467514, 0.009051094095050045, 0.004539412284839103, 0.008095046258915226, 0.0032816697435062913, 0.004787767405954101, 0.006105267564751382, 0.004676192276732014, 0.009550597743645606, 0.004168572836388084, 0.0030255797260137444, 0.006763914096067694, 0.004834820327091323, 0.004448697672686112, 0.003892088505470951, 0.0053771972151073644, 0.00533616286825018, 0.004194387863734783, 0.0034747604278993855, 0.00509627306558795, 0.005701003572208314, 0.0038393716104342295, 0.004599292161865689, 0.003835689036163545, 0.0045436517048857115, 0.005864316471997449, 0.005566961725554072, 0.0035959224247676474, 0.005985567892570666, 0.005259672928258096, 0.004627800941888582, 0.003136827854046126, 0.004716526076611718, 0.0030187816052650233, 0.007340484102507127, 0.0036840500495240085, 0.0034276512637695837, 0.0040178962371039805, 0.003348708671197996, 0.0041977407281803165, 0.004488485479645422, 0.004168376010041497, 0.0032915893050473252, 0.00520810489495978, 0.002952476898761487, 0.0038402098307998393, 0.00709768824596217, 0.005709016303816336, 0.004419700679347917, 0.005090691823899585, 0.00434850942011033, 0.005007819680540687, 0.004824095043622858, 0.009364070854107858, 0.0049104437076358705, 0.0035356991324611156, 0.0038628456149034456, 0.005512359008810703, 0.0029462570536094015, 0.0032082671528444696, 0.008104679921029699, 0.003943406762324813, 0.00494101410232491, 0.00423195168409636, 0.0037938667836502045, 0.006258916294508837, 0.004053700590310681, 0.003836001671901651, 0.007586476462846924, 0.005351144956002457, 0.005389677596578485, 0.004019388200663899, 0.003606187287761759, 0.0026102933244997076, 0.005248521772316503, 0.0032887489090010712, 0.006816163833686879, 0.00341464905138062, 0.004373714418128384, 0.008573975160313923, 0.003561862855587033, 0.008617781811542838, 0.0036456968936252206, 0.0037625194490059862, 0.003913794499049361, 0.005493020763902861, 0.004198113046068854, 0.00400483374206223, 0.004438115393968859, 0.003929159790780684, 0.003964954983126863, 0.004052856222697638, 0.003419494337246364, 0.00601220004125421, 0.007330682016465122, 0.006042078430147193, 0.0028267624005054266, 0.003900055781691979, 0.005409018814398231, 0.004102267889099143, 0.003726582724808438, 0.003078456644169717, 0.0040050813938374685, 0.005178317502931027, 0.007604324398444308, 0.006052273234034657, 0.005150149657456202, 0.005540060333251937, 0.0028937556140529535, 0.005868750609355816, 0.0028763103398648216, 0.003967044019947296, 0.0038121525102775807, 0.004440444035224913, 0.003878911593478464, 0.0057846197062357265, 0.004553920275082494, 0.0039112323057764525, 0.003121631233566483, 0.007706459319200611, 0.005300169700728677, 0.004180919304628667, 0.005259754145502491, 0.0036700527189513976, 0.003647628841007745, 0.005036988561137332, 0.0028679131891671803, 0.004142050878482235, 0.004248180503985002, 0.0041473338581653535, 0.005398714925039831, 0.005783267207924666, 0.007035482155072127, 0.003764795597503831, 0.006338300006320086, 0.006773616033399899, 0.004329977036122611, 0.004155333860755384, 0.004626842800853391, 0.003754089411835815, 0.004090087539920319, 0.006456498122828712, 0.006249597937926495, 0.008836581810642698, 0.006062373040797519, 0.004308466600149203, 0.0065206330732753255, 0.0034657024631012346, 0.003200283830205212, 0.005703741487929645, 0.004061692456740001, 0.005972969422121029, 0.006987562690480865, 0.00399965391398093, 0.004848639271219727, 0.0034874150274356724, 0.006388061956733684, 0.005847461369178489, 0.003933402733220395, 0.004623910546278443, 0.003968407543084378, 0.0053221050160547154, 0.0037618663122440943, 0.008063784869138889, 0.007124876046565191, 0.004338504776356132, 0.003676895527835107, 0.0036772678381737527, 0.005404577565367863, 0.005280496886118391, 0.003001937373579397, 0.004278998299691675, 0.003933463349126658, 0.007476742375959385, 0.0038063868475567307, 0.0035379286142108364, 0.004099152877874652, 0.003181956403243135, 0.00534326627874548, 0.008156914256202352, 0.0040249082734622795, 0.006277560178978148, 0.0038300735540000965, 0.005159985620784955, 0.003878820364927941, 0.005742182061912752, 0.003997507282611635, 0.004596548311159783, 0.0031188399710989924, 0.003331265883427164, 0.005761900450465134, 0.0031319647665311867, 0.00745330983463356, 0.004471573502703318, 0.0042747850270742176, 0.0043491082311878015, 0.002618616771259437, 0.004672996191404331, 0.006029462560137316, 0.003576494624320448, 0.005653023987896041, 0.006243837361291143, 0.007002945656003766, 0.004913975372921942, 0.0037014862558185048, 0.005014649240267352, 0.0029583470657871314, 0.0027857737183905, 0.006368790181882691, 0.002703289794646028, 0.005417685370263812, 0.003532135099657464, 0.005536807519832065, 0.0043087420841348995, 0.003801427866641545, 0.004809543997316009, 0.004751950960355227, 0.00342642388990513, 0.00869699305753446, 0.004466053264621325, 0.0033147754630151274, 0.004295330888805502, 0.00400250974741758, 0.004882683734152704, 0.007274336289693062, 0.00370479174427833, 0.0053855977883326975, 0.0038910773099981753, 0.005194883572951054, 0.004428483282266563, 0.005714920297867509, 0.0031253612544829257, 0.00505827682706999, 0.003292810397432736, 0.0037122558689868155, 0.007165757203101096, 0.003514515123872651, 0.0035549927489346793, 0.0046688040141120105, 0.0056420444677847525, 0.004758608477875208, 0.00453881923434491, 0.004923660802183962, 0.006655820017943878, 0.004778808771556705, 0.0041177433580719845, 0.004988611737790064, 0.002960932802885614, 0.00453388703590406, 0.005309999314976803, 0.0033145837506287474, 0.012093104716744015, 0.01043088644866071, 0.0038205110512183763, 0.004815636240941988, 0.003094705520080455, 0.004340218495253902, 0.004064898134302884, 0.004424066931089819, 0.004580021349217642, 0.004457674383942323, 0.006329651772281302, 0.004320499780685303, 0.004105674456636373, 0.005465154798117918, 0.005199704561789977, 0.004460514380096302, 0.003385311847844419, 0.006771663580968342, 0.0048989556087244476, 0.005236242090566003, 0.007025290505166414, 0.004132226604166407, 0.004267510263239113, 0.007068590257819274, 0.0053608829093288795, 0.004698349641963247, 0.0028871377930413207, 0.004424760760674314, 0.00861766823428391, 0.003658616244830866, 0.0035861387943210824, 0.003593125945340533, 0.007009786902340012, 0.005806174501375182, 0.003006985571694485, 0.0034966909762276697, 0.004147669794944192, 0.005098288967258291, 0.003717880759624503, 0.005635888781113834, 0.004298229083637211, 0.005509972115209867, 0.003383060384077391, 0.0044421614936578785, 0.005406119526174697, 0.0026812232981591197, 0.0038751569326264993, 0.0028324945868071294, 0.0037602387706932943, 0.00845064457589247, 0.004660379011764715, 0.0031532668170620648, 0.008034668534697932, 0.004562111431499623, 0.003834622020142328, 0.004305237132392681, 0.005907925174471881, 0.0033933657489372904, 0.0038567409708076795, 0.003046733793741264, 0.0034895189549445467, 0.0037600084625534123, 0.004186412580162339, 0.005249084627509238, 0.005333287316427183, 0.007013687895474895, 0.003855711351815798, 0.003134411515491756, 0.004331920697911712, 0.008363530844380646, 0.0036488057238860854, 0.005280738607112833, 0.0032452195880602443, 0.004990671634820277, 0.004479716267767615, 0.009740244349351527, 0.004127117800185223, 0.004181376293379334, 0.006385997369438656, 0.0033064952464215156, 0.0038132785547392092, 0.003529301522622149, 0.00686978944528904, 0.003091981617613774, 0.005584291704511141, 0.010835948148685829, 0.009644717305621393, 0.0023290857286167666, 0.004458496888392116, 0.003634119850071737, 0.004388059258223798, 0.010132686727587844, 0.003858268308473963, 0.004178365139139646, 0.0035868637389250843, 0.004524404464153914, 0.0046149683338328066, 0.0030099162694113405, 0.004593723315856699, 0.004007972862728854, 0.005192653429643597, 0.006586701372814395, 0.004559279044110623, 0.0036749005398757787, 0.005358209234454096, 0.0070384400973914655, 0.006366788616421202, 0.005776267852528792, 0.0050539648247349715, 0.005576776201965033, 0.00807629017759799, 0.003802464336372796, 0.006453149631676794, 0.004706605273587136, 0.005003035903114504, 0.003617964707785562, 0.0036170581618562743, 0.004630556202555136, 0.003921068618389903, 0.004527166327208197, 0.003115161611104846, 0.006473316903197676, 0.008270485300825853, 0.004449294418683183, 0.005519532222196818, 0.0035489929601068377, 0.003634567273753677, 0.0043024677721100555, 0.00386460904456092, 0.004282214655185451, 0.008358924446224002, 0.007070873195335077, 0.007762000535413706, 0.00732566011610801, 0.0034404816411572323, 0.0059279530310351915, 0.00321342324578699, 0.003473151477404428, 0.0033286671897198696, 0.006425738072767993, 0.004000623083711752, 0.0036524162631597057, 0.004910660731345858, 0.0044119873099218955, 0.007673176124418921, 0.002794053176325975, 0.004179384620680725, 0.005679014944767494, 0.004809721083738963, 0.006152078955192201, 0.0031735285615495934, 0.0067350051429075405, 0.0032901212292530376, 0.004706611834133844, 0.006361113373765317, 0.006283561794769831, 0.003391625834089833, 0.004097502464125553, 0.006859051289843045, 0.004784543364962249, 0.005315483802181919, 0.004619510864722207, 0.0044464248242453396, 0.005170474592897647, 0.002750330549865771, 0.0035660519401700883, 0.004378323717687437, 0.004902580258935323, 0.003988895434376288, 0.0037108275929755323, 0.003464000687027615, 0.0035904620184011257, 0.006080423160446091, 0.003466108863963459, 0.00382708956312523, 0.005897794047820821, 0.00523413526379894, 0.0031912636351318856, 0.004284408408205507, 0.005128353147446871, 0.005064648915643128, 0.004182321469390701, 0.00491804056275295, 0.0034325638344684987, 0.010826204047104944, 0.004386985225725127, 0.004556156842312977, 0.0027111336997297482, 0.0070708948304381595, 0.004599986464912925, 0.008633139396789408, 0.004144391458979657, 0.004953370574829588, 0.004591142228258838, 0.004350234398074906, 0.004062760625067262, 0.003997794664671601, 0.005853180567430209, 0.003940631513853587, 0.003703987886082121, 0.0043961841105637734, 0.0031320376876912658, 0.003755274510237803, 0.004831110907901367, 0.004116548208260178, 0.003426723277532421, 0.0036548700213848533, 0.0031013855660645363, 0.00636771501364998, 0.005082309211283902, 0.004410512609516801, 0.004121712374825243, 0.007111170120071486, 0.004659875371485793, 0.003409710138896753, 0.005079198132649261, 0.003556434577146115, 0.004564698308169914, 0.004341275925860209, 0.005597883940864204, 0.0031814132550882454, 0.004965780118598385, 0.004051620987330554, 0.003999657520932459, 0.004232800802059245, 0.00404321352653542, 0.008791719303797105, 0.005939336127953737, 0.00531242189659231, 0.004871182057999182, 0.0027639424128159075, 0.00672935470138832, 0.003743647948516747, 0.004937676744277252, 0.0029898215439655733, 0.003809187281010725, 0.004862023518166289, 0.004136378565180202, 0.0050400358349101506, 0.008341377987139114, 0.003339487980724659, 0.005905719381959739, 0.0034118864777318396, 0.004080871696355996, 0.003805124333067562, 0.013468149409429489, 0.0045662356666063865, 0.005156369263729766, 0.004827841638082532, 0.00403970197355149, 0.006422311021155666, 0.005047738150263686, 0.003641563805314917, 0.005412466447934003, 0.0036476286559077404, 0.0034837388694130542, 0.00406989059745315, 0.0029065873399829736, 0.004161277351793562, 0.003688683364699454, 0.004970399945298965, 0.007450496679958028, 0.0032435265398616233, 0.0035577527938143736, 0.0027582101288555396, 0.003460703340543074, 0.005895933546161878, 0.0037400511933403996, 0.008257560382147913, 0.003603763138816686, 0.004640528414515912, 0.005114557786988986, 0.006896941343085121, 0.005365620508275541, 0.003315716273978392, 0.0031975766630648198, 0.0031086078262384845, 0.003923120876388816, 0.0036809365656604366, 0.00446335354766535, 0.005320438277678923, 0.0072412900607754, 0.004144882015040347, 0.0035709803758586208, 0.003910191198565177, 0.004722532837452254, 0.004504471459795253, 0.0026949888858335933, 0.0038617358318189577, 0.003299721580802518, 0.010774236067145112, 0.005424052908346617, 0.005562128428204632, 0.0049276856520034055, 0.0027149028530274117, 0.004670228888446532, 0.00726625856835632, 0.003273851257373493, 0.0032678615901277188, 0.00723937309772887, 0.008896133414325819, 0.006658824841028969, 0.005345986405235719, 0.0032597539191733817, 0.0045192814788742805, 0.006525525759375368, 0.00419272034871005, 0.0037787623502405303, 0.004081502277159677, 0.0034519059002919962, 0.0026285609975134675, 0.006601715535182813, 0.003977261681482247, 0.004748594293860522, 0.0035211807055004546, 0.0034943892363540107, 0.0036489588738834525, 0.0030865484586036, 0.0035510134484206127, 0.005036120285433157, 0.005261932281560971, 0.005188398134579327, 0.0043753785771654995, 0.005429585329169559, 0.0036468548558575157, 0.0028075946978600545, 0.006589086861037432, 0.006201304696591039, 0.00308154915469355, 0.005680496072012281, 0.004106723091266141, 0.0037863889812868277, 0.003388615309176978, 0.00312463964004048, 0.005791697490535161, 0.004826726038923039, 0.003755085262583973, 0.008477933571177753, 0.0032550885656055482, 0.0044186475564223626, 0.0028031442850280494, 0.007258603963392318, 0.003611895878907726, 0.0033336692325624147, 0.0036375499604586964, 0.003318730736176968, 0.0034749296727236085, 0.004516611096138082, 0.003982421216164053, 0.0037021764830458574, 0.004581668801782033, 0.004143462796969422, 0.005153926435005954, 0.003538362884482015, 0.0033692649427454627, 0.00519109871695334, 0.007184886540960072, 0.004894271852486386, 0.0035578465166265076, 0.004149204137268122, 0.006826524248661603, 0.0036745704840222227, 0.0044222410564942185, 0.004277312284532121, 0.005474129134146137, 0.005459907888771173, 0.004344154019009101, 0.005377373939665854, 0.0032360112796463955, 0.004101766971811486, 0.003917643061790683, 0.0034037002293683142, 0.005686186076655864, 0.00394285782201702, 0.0032268237496675773, 0.00767989947670864, 0.005235374880530797, 0.0032905088513575783, 0.004166585527509427, 0.007004352335670312, 0.002961024177147016, 0.003355177039531173, 0.011751895603592076, 0.004386626430057384, 0.006255045958315476, 0.006397067946502323, 0.006095185220701441, 0.004256743570626871, 0.0031190691996921395, 0.004889331258196601, 0.004132147485292532, 0.005485695577088592, 0.0028575863727535117, 0.00433646173587092, 0.006853999803559457, 0.006445218800537407, 0.00442192469793214, 0.004782801402320162, 0.003889448686832961, 0.00335244466048654, 0.004554977571381532, 0.004769133172181881, 0.0067570533624424865, 0.004317878823474335, 0.004317497209138798, 0.0028502937868880333, 0.004137648629391219, 0.003569768543970086, 0.0031779568878095702, 0.0037630514845519588, 0.004823965822617059, 0.005636081631775378, 0.00607820072919934, 0.002794797942356473, 0.0036241616185151127, 0.006720886979342565, 0.006478079179432976, 0.005172110708087716, 0.003154912499830735, 0.003704997798419316, 0.006756542208978403, 0.004584931704105262, 0.009645248018429949, 0.004211265409466667, 0.003109210988109376, 0.0034941549753778707, 0.005501980052043776, 0.0033408508138987486, 0.005159462432155946, 0.00329013376777079, 0.0035467441701248826, 0.005804321776307327, 0.0033088661801016933, 0.0032968481623571423, 0.008605465871148917, 0.004941173298487983, 0.006517223002088786, 0.006538107647561586, 0.0035453582900540244, 0.0025427121299504, 0.005177351506996317, 0.0027790209505269394, 0.003191422976973446, 0.005030672349611597, 0.005195439666495298, 0.003851233337428408, 0.003397160713816418, 0.003562666948581255, 0.004150703026290236, 0.0037082692382306402, 0.008036917751093784, 0.004322022208734093, 0.0037269118327021614, 0.00375753142235869, 0.004453394886762271, 0.004899787102467575, 0.004822314952487745, 0.003868238307462561, 0.003988035585019341, 0.004381979600764848, 0.006997465621441233, 0.006123446626117907, 0.007532327230825989, 0.0036721991622937983, 0.005113427934352395, 0.003210160478701325, 0.002998613563118168, 0.002071480303432362, 0.002686884056801977, 0.008788126126804387, 0.004349861669267217, 0.005331831746001403, 0.0031094608604213983, 0.004035620360114565, 0.009984057315897386, 0.003730617261272485, 0.002999778077166999, 0.006472175580543966, 0.002702098260793431, 0.004209509284961851, 0.011560245789201144, 0.0030735726364329342, 0.007938719669690252, 0.004893134921986192, 0.004866500442583665, 0.0031526378809597472, 0.007403377009546093, 0.005984266098461021, 0.0054623883569041454, 0.003866439797330377, 0.003372406855880604, 0.0028757337228571844, 0.004803624982761774, 0.00506011677815514, 0.0038729538723508974, 0.004189303456873038, 0.006812748022979928, 0.004530730408830598, 0.002890126714722641, 0.0030440194129828326, 0.0033680788266846305, 0.0029101255775488477, 0.004372980750437452, 0.002761669677504192, 0.004076084399106846, 0.009760662407399374, 0.005380963565678744, 0.006759342861059463, 0.004517341870123604, 0.003405570713246796, 0.0027080013890897385, 0.0031885788353809134, 0.004199125970711396, 0.0058111630705143785, 0.002741031208327965, 0.0031231505227270278, 0.0037687478680113956, 0.005485328538115801, 0.005584591477250938, 0.004420033430991736, 0.003749604263012094, 0.003724073436346268, 0.002974120122026323, 0.003191740149632976, 0.008993191697263574, 0.004717584727021829, 0.003945339171264213, 0.0031606402538719982, 0.0034112136402896136, 0.0037782311902529427, 0.0034113443316092867, 0.006468763260032881, 0.004623267547280912, 0.0045932260193306505, 0.004320031741979943, 0.0031608488108933915, 0.0044848946498198435, 0.0031904480948766875, 0.00787471986617128, 0.004373311230432932, 0.00345272175816872, 0.005973006928719422, 0.009517025433775507, 0.0038165894928707325, 0.003044925768419179, 0.004427142985570559, 0.0046548548120356175, 0.004544618578782926, 0.004495230580769048, 0.0055711461568886955, 0.0032380186991691077, 0.0044799947637711906, 0.004737281486678338, 0.0033858634046415445, 0.005353796160080385, 0.00788671425622592, 0.003629859618144389, 0.00376449677296034, 0.003159337309935533, 0.0047674271350435435, 0.0035822911967051583, 0.0031375189681347275, 0.0035001584011579725, 0.004186703959487939, 0.0036380353886321013, 0.004632400837333201, 0.003106287910865323, 0.005281058385181687, 0.003919589947579149, 0.006490110585829235, 0.005839671304444996, 0.010145764319255962, 0.010281999240970797, 0.00650577398923514, 0.0035987037647508685, 0.004219753045394151, 0.004720326264247216, 0.0038049372867208857, 0.003527319275242545, 0.002530066587356208, 0.0052877728474017595, 0.003594472417775848, 0.0031458899738722483, 0.0049942390580953126, 0.005639215289748856, 0.004471704768939459, 0.006116457675107267, 0.004626044972684556, 0.005549005902817744, 0.006156336669818196, 0.005607220943721177, 0.003614697930943535, 0.006036593785821007, 0.0032730225969199436, 0.004056764885973908, 0.005631629070344121, 0.00335908094371059, 0.005420740432683045, 0.0023210850351153217, 0.005385555046520322, 0.006094714614825732, 0.002311240738126323, 0.008663185983679302, 0.007023580499597566, 0.010906178639593126, 0.004185886090638396, 0.009210700273827732, 0.0053961952834515456, 0.00305642759866226, 0.003272225393594332, 0.003925497886906748, 0.005112166195838002, 0.005085912080133483, 0.005379641186263164, 0.004301518166897217, 0.006551937538475727, 0.004144679579149586, 0.003536606949416976, 0.003954535926957541, 0.003836809751212333, 0.006426111762225123, 0.003797252991426496, 0.007180784106116199, 0.0028484010580222896, 0.00558968016207009, 0.005254044721998146, 0.003685978121508997, 0.005402351197213883, 0.003132901442345736, 0.004606690348922758, 0.0036895730454161862, 0.009586555961475077, 0.0033793599349413667, 0.0032449927115739, 0.004343325180035057, 0.0023754116821693596, 0.00314400326774426, 0.004454987973341099, 0.007216824197532991, 0.0033961253746458676, 0.004591109050657209, 0.003233254294926174, 0.004548250091563642, 0.003939516146359083, 0.004281777660948772, 0.004717639378724646, 0.003457708267149916, 0.0026430880450967562, 0.004871826060761056, 0.003869476800318488, 0.006593127853444981, 0.00469329249113677, 0.004203354484954996, 0.004374427763298773, 0.003932950038102924, 0.005511611021434498, 0.004906937966434052, 0.0037543071816296112, 0.004291877139703048, 0.004170336252571082, 0.007047169968079014, 0.003306305458598378, 0.004302787636801712, 0.00325769395546959, 0.004026899584383072, 0.0029388822121482515, 0.004216292154382243, 0.0038174542752453917, 0.004257625395329248, 0.0050484169874774176, 0.006379761199615851, 0.005782730777833167, 0.0031146421443210255, 0.002201845836446936, 0.005035389350580388, 0.006783469419822975, 0.004374699795474383, 0.003948958792167769, 0.0041285714024434424, 0.004931485114312009, 0.004346508041504486, 0.004091167849237835, 0.0037999943948105012, 0.003680019816693414, 0.004118713963251279, 0.005264472954771516, 0.006023492630842166, 0.0037590718527902344, 0.0035525344384302222, 0.003713016024656878, 0.0055244401552510935, 0.006197482317415095, 0.005375046066263578, 0.004949981187468387, 0.003917264438984307, 0.004783902577881802, 0.0037197861335406084, 0.007308978129860463, 0.0030635077256434984, 0.005526027649346091, 0.004532045789797998, 0.0032094815194680625, 0.003155740703717045, 0.0061336138485128654, 0.004791075356496851, 0.007942750917862241, 0.0027468305783906423, 0.008739621933675976, 0.0033881711295891464, 0.0038749108707227123, 0.003529405246814981, 0.004654730469920078, 0.002760071931400154, 0.0036553814050437035, 0.0026727445861704354, 0.005604737479875839, 0.006827402540713745, 0.004517773884200128, 0.0038802458735548127, 0.005402862128220587, 0.0057921578143135975, 0.002495589955993009, 0.0038963821548358736, 0.005058217538511628, 0.0026692478917454505, 0.004842149850670121, 0.0038602087444818876, 0.0047105827701546385, 0.005111637124617124, 0.003474354504185844, 0.00408182563810904, 0.006364190223554539, 0.002974972733146065, 0.008112811905507469, 0.006137710871503898, 0.0036861238031294327, 0.003181539904813875, 0.004997582512164029, 0.006261121881730028, 0.0037805493624040267, 0.0026048678754478066, 0.006266189728995163, 0.00472392708902932, 0.003422601061821541, 0.0029930362666892828, 0.0047196545365475896, 0.0037917622757117526, 0.003891847168585357, 0.0025902723396842996, 0.0041373694952432085, 0.01775613843261051, 0.003262219109234693, 0.006345503969630692, 0.0058184654868340445, 0.005692469429750067, 0.0032859309492706016, 0.004095378681154777, 0.0023576155063520427, 0.0038812896220423595, 0.003291984339941035, 0.005344656381736585, 0.004699690824071169, 0.004747099441095938, 0.005693568281820952, 0.004302709931108579, 0.004107616654105754, 0.005697339394385914, 0.0027654683216987745, 0.007316686286838729, 0.0033262955430696747, 0.005265742662147475, 0.005055438296934458, 0.005129100637346174, 0.0031256539075174504, 0.003409928588209702, 0.002563089425504822, 0.008716620160499063, 0.003700215672356839, 0.006816409657863386, 0.00452756600681324, 0.006115743563041351, 0.003107816682336242, 0.0033922635974483, 0.0036920950665231475, 0.002444152947236939, 0.005603829304191408, 0.004214321531610445, 0.0070774225685568005, 0.002887944988079497, 0.003456701533410844, 0.002015302084825068, 0.003078732561842002, 0.004814318076640942, 0.006387060839797452, 0.007115069803962685, 0.0032845850580961572, 0.0032084752650308516, 0.003590278020847275, 0.0044761653246262805, 0.0033946168918293036, 0.004888589752249857, 0.0071046718499989045, 0.003740231502634493, 0.005436159978441743, 0.003703957297054169, 0.0032429622871072853, 0.0040355956134890455, 0.006224699519464779, 0.003825810007149548, 0.005032982612836025, 0.0041569186363742214, 0.0042812996041190965, 0.004750121600594929, 0.004815749437672309, 0.006231853092848879, 0.004125301622364854, 0.004185707264820107, 0.004610107800420088, 0.0032637123065988928, 0.0033974774523261773, 0.00549096216293367, 0.0032499600289566987, 0.0026523290310095215, 0.005960900612536718, 0.004309744119327434, 0.003917454156248898, 0.0034864341526376964, 0.004384396025408256, 0.007135593167667764, 0.004850248579844731, 0.002645237176889661, 0.0027842350152297644, 0.0026466087389011555, 0.004501850409431431, 0.004353824656392035, 0.0035495122973082027, 0.0033367465710998972, 0.004616614123420921, 0.003497433190197353, 0.007491138672521251, 0.004166422319091692, 0.004201278996929566, 0.0032258007224860545, 0.0032569837207745006, 0.002800901634376741, 0.0037498136061313962, 0.0037026354493035285, 0.004594412648329655, 0.003112439706458668, 0.002526696451872799, 0.005328896538325314, 0.005929555133652299, 0.0033849989932762956, 0.0033534180780934427, 0.0031809132306420754, 0.007277638748258025, 0.006051782138636658, 0.004086345667878492, 0.006624953283076796, 0.00541574108169554, 0.0037378337687767093, 0.0032673222185999216, 0.0047006935693233035, 0.0052259330237848555, 0.003185575636062524, 0.003415338385416639, 0.005802430563613846, 0.0031676191388559987, 0.004158399775093009, 0.004713595368162398, 0.004357231936335733, 0.005882526433014458, 0.0037971292696773774, 0.0037558430817252, 0.00539012670371187, 0.00504024926487044, 0.0023745709038284018, 0.0035220920947243543, 0.005009484344416502, 0.003135467644353033, 0.0029919781075689817, 0.005579989405991678, 0.0034673019183587435, 0.005435529590975813, 0.00598320830103055, 0.0042397271704791555, 0.004752364224513694, 0.00439160586928887, 0.00428886355022071, 0.004427604330002832, 0.004270394763775614, 0.0034196327866031356, 0.003699620535125737, 0.013262277781396565, 0.004180641385320459, 0.005628405824796352, 0.003061029855860122, 0.00401573248939729, 0.004575463942545108, 0.0033986690234892535, 0.003643374175650359, 0.003857058908725628, 0.0033482945925432045, 0.0043487738549734395, 0.0039165928415888585, 0.0055779173052937486, 0.003704349164363805, 0.003676010867057194, 0.0024003145745412685, 0.005090156745563636, 0.005061798863547814, 0.0027398348635093188, 0.004281682754315841, 0.006209570608830135, 0.006172045370220069, 0.0025912348788305747, 0.007644667144284076, 0.0033323557943231393, 0.003399212885547266, 0.0031507857620326207, 0.00646954972998099, 0.003514511141096333, 0.004658785505846862, 0.004740568262607216, 0.003005213564801848, 0.002899976500116875, 0.005428138404395794, 0.007347921567544907, 0.0031762862775210525, 0.003462791075099969, 0.0019462884596016291, 0.007493345605706897, 0.0024329381035453654, 0.004748387791680606, 0.0039407902450270624, 0.0026989589215968826, 0.0060386461368563665, 0.006006846712591422, 0.006192728822061357, 0.0033867477687844075, 0.006138983126942771, 0.0037028262914973508, 0.003735952559085235, 0.006549085074403401, 0.006124807543082515, 0.0036950159587693446, 0.0037426786717938954, 0.003313271778370503, 0.0056905515325483165, 0.0051519812027716674, 0.002554213515298212, 0.007228725184269697, 0.0038597040080852233, 0.006798421958984375, 0.003078656033925778, 0.006414701368041624, 0.0034273881369466267, 0.004023650389800447, 0.0050061880321374125, 0.00282637477314232, 0.004333808653719055, 0.0053987925070146225, 0.003716097212912808, 0.003577868209426044, 0.004163836198925516, 0.006545804453809541, 0.003351806049064306, 0.0024447895048199486, 0.009066372263123134, 0.003709043288965605, 0.004196754463242873, 0.004069422112744797, 0.002939763835837754, 0.004237249772178031, 0.0031225876679098177, 0.005110841259783357, 0.005704850690128842, 0.0037538217455115874, 0.005343818025909632, 0.004002862713968482, 0.0052752124858905965, 0.003797650845169166, 0.003522459162962398, 0.0043109288542905865, 0.004307600724249131, 0.003709889999152823, 0.0034303680257201734, 0.0033767676480945794, 0.0036479076154231674, 0.0025330890680649947, 0.003050048484962208, 0.003997382733045051, 0.008311337751587072, 0.002607791827287656, 0.0049872755125396, 0.004688282046573204, 0.00536001779728947, 0.005502500113866083, 0.004237782016625841, 0.005110011439489223, 0.004708497537306034, 0.0044438459550551635, 0.0033297390772057075, 0.003040564837547021, 0.0033050080000520494, 0.004266416550199223, 0.0075307944344223, 0.00847330763504253, 0.003772127839566878, 0.004275954592681871, 0.003515568045782931, 0.0030338645474482268, 0.004583565271244092, 0.0022966911852667676, 0.004702330339984396, 0.004307520067645081, 0.0031056664954210566, 0.004710907226513258, 0.006655052207663843, 0.004543258316839311, 0.002852779368785363, 0.003948711492630928, 0.00287799645710061, 0.004872308798655388, 0.006782277005097185, 0.004909399583713567, 0.003289037903902761, 0.006546493119220345, 0.00687937454566129, 0.00353721311142492, 0.003436586463950818, 0.003555385459045548, 0.004579175277042708, 0.004736206951981519, 0.003990488544939095, 0.004480472147874701, 0.003761106130044836, 0.0032431096737960607, 0.003543556570518045, 0.005693918390012404, 0.010770540749346141, 0.006126136066324667, 0.00292649734124805, 0.004300926002781883, 0.0061988240774511335, 0.006794353584575949, 0.0036275099933770634, 0.0031759350798835568, 0.003593778203938275, 0.005234710387348156, 0.0032305150229557196, 0.003461557439848756, 0.004857478341698948, 0.003774096236927844, 0.004530591751421966, 0.0032970517426302616, 0.004510835566963661, 0.004459686304686775, 0.006164674501981359, 0.007521923206814711, 0.004704494286287979, 0.003835569151636929, 0.0036230852455570784, 0.004303146792741389, 0.0030401559919448606, 0.004167352895915376, 0.0036144231125011016, 0.004108962113014557, 0.003052408894986679, 0.002956186880769186, 0.007668234939961609, 0.0037253599295905123, 0.004206469600023335, 0.0066999802277548735, 0.004860765297234359, 0.0053863695356322645, 0.0042723095732665655, 0.0034727027514762296, 0.0045077824484586046, 0.004532641385998913, 0.003532194966173079, 0.002562044726972932, 0.004291791275331497, 0.00504202769179219, 0.005250747808919964, 0.002532290027122719, 0.004179932128193209, 0.004092084913893216, 0.004649632685435652, 0.003827985056700532, 0.0024186346994106247, 0.007545232848987648, 0.003205303426722604, 0.005833757711004451, 0.005431385317950263, 0.006112118374777148, 0.004100099589073783, 0.004313256632717987, 0.005424799211385397, 0.003943697733380968, 0.004710800309347009, 0.007535167558160831, 0.00605232409091242, 0.003403826230043222, 0.0032744513103734863, 0.0028140556818652064, 0.003418288553568443, 0.004179414983129101, 0.006201666139932243, 0.003692577521597004, 0.004121470111302204, 0.004293435978309537, 0.004472812144223779, 0.0026995977029537184, 0.004828345426882711, 0.0031276360909943514, 0.004244013400620858, 0.003796278677170975, 0.006726921196220604, 0.004450104913873728, 0.0041190610985862765, 0.007001097284828027, 0.0037448831544350655, 0.0026406633173005623, 0.003123508046854591, 0.00438152109692742, 0.005248086594648226, 0.004004079984974978, 0.005147954515466234, 0.003279135118923183, 0.004627517869324875, 0.003971063993818585, 0.0038227686784531234, 0.0031426456687076087, 0.0057379850212192106, 0.005084160606799728, 0.004398381704994852, 0.002908902666512377, 0.0034450747177355, 0.0034507694604675883, 0.0037553818785405722, 0.003962849260006912, 0.0037049601168949535, 0.0028852893921407527, 0.0027667745391389284, 0.0044917631548396725, 0.0023440589722275467, 0.003292887395904602, 0.0026274913457273496, 0.003134482789144237, 0.003540424394032241, 0.0038369264007427615, 0.004569029223469445, 0.0036694581778402868, 0.004139576656939399, 0.003438684546061389, 0.005844409712787551, 0.004697135844207178, 0.006886864396970735, 0.0039651917638028914, 0.0032975839722562106, 0.003453709210130921, 0.003878970400616274, 0.005914099231085776, 0.006822389872136271, 0.005991939364897695, 0.004666102302724703, 0.004751781937179255, 0.0030153205655110435, 0.003539791619561465, 0.002522083946165943, 0.0029058082916365267, 0.0042908778687825696, 0.004478083805841988, 0.00363253422463205, 0.0025734605770256183, 0.002967930560875979, 0.00460246824586494, 0.0028518366677895697, 0.005796037375758905, 0.0032357180602364485, 0.0032567288000172724, 0.0077227452560786475, 0.005002300093770491, 0.0027697292293801697, 0.0032880118236259326, 0.0041486119899680155, 0.004683178096639972, 0.0038871059583887807, 0.005013260440192068, 0.002308580991877026, 0.0055875307263681066, 0.004531979753328563, 0.003925837315807304, 0.0025782777689147686, 0.011309135728403162, 0.005429064934604682, 0.004083547646042527, 0.004119719603754144, 0.003538130512228229, 0.0029877553736871103, 0.004846940361524196, 0.0031972195287159506, 0.0029410901457432898, 0.004983971095040401, 0.004055008670997217, 0.006767044372593449, 0.0026203537826279444, 0.0034997782106662816, 0.004519442680697545, 0.002900646762501955, 0.004504172610187435, 0.00591080982300737, 0.0037642290220032183, 0.001985457266616073, 0.003794809902709075, 0.004377838796194793, 0.0033562370141475783, 0.0031373027014156784, 0.003625005025430827, 0.003313691267470717, 0.0028598883027531564, 0.006423919498982253, 0.0037733140838407445, 0.004236287981370399, 0.006365787338934374, 0.005601079731209544, 0.003525420548386481, 0.004440558650410301, 0.006663158361776519, 0.006320312556648849, 0.00418910894378698, 0.0032136408864740875, 0.007929384427166992, 0.0050386072494138755, 0.005025322033125803, 0.002986911124825417, 0.003704233015846529, 0.003787304407453695, 0.00202812485405615, 0.0025772715489561075, 0.0040441918257170225, 0.00563912023819633, 0.009198659671202983, 0.0055484588109599425, 0.003587270374525281, 0.0036781631645891122, 0.002309767109590451, 0.00418152769881402, 0.005225717177096538, 0.003379871996089081, 0.0035179682924999746, 0.0025736816908017756, 0.003916341849589404, 0.003194089607343572, 0.0029936255104260124, 0.0024393094745493735, 0.007877042313618467, 0.00414914574595593, 0.005481719880826908, 0.004952591531783035, 0.005208297676883205, 0.004904907274526987, 0.00465460435795737, 0.0039879742503469715, 0.003798625587772638, 0.0034313097752622056, 0.00244670205434107, 0.004878536461871831, 0.005064453091483649, 0.0035256789895647426, 0.002445786155317095, 0.01078266786371226, 0.00408085130714947, 0.0030126432073838373, 0.0028403659368052324, 0.003613219034475714, 0.002771452619323883, 0.003794480563391164, 0.004209032511781101, 0.0036629999344767435, 0.0036777158234712224, 0.004644667122768019, 0.00561393214033077, 0.006947134356091196, 0.002527054979867764, 0.0033469878489369386, 0.0031129949332805336, 0.004303109629868414, 0.004964112619345066, 0.0035319422095995484, 0.0028313682648366503, 0.007791840375571448, 0.0036302518860479383, 0.006121065825215627, 0.002908758349860783, 0.004637581265695015, 0.0048569608824783035, 0.0041797700474641005, 0.004232167642691094, 0.006590912154650341, 0.0044057795187451045, 0.006825877873514146, 0.004881477114151256, 0.0035778368956451033, 0.003214382606343209, 0.003041871025072656, 0.0021606146718807363, 0.008106424575148504, 0.007615045209053614, 0.004657808053613361, 0.004164369797043225, 0.007205666051244962, 0.004485862926584485, 0.0033419909997126664, 0.003672316232489364, 0.00474663712537649, 0.0024177840483402056, 0.0054211735308579345, 0.0044369703374402296, 0.00530553501895617, 0.003042084214633177, 0.0042274644863713046, 0.003263559638525033, 0.003236700252640762, 0.005797596642960615, 0.0034983945347455718, 0.002416762683153298, 0.0035333153040873915, 0.0052399177019040845, 0.0030275324263137433, 0.004398590173625031, 0.005092109164092622, 0.002429756246474046, 0.0037203255013413135, 0.004760519029373448, 0.0033053073572153722, 0.003343246850290026, 0.0053427419577775845, 0.0029307974736317976, 0.003638638848504956, 0.003563904870576177, 0.002689126479907209, 0.009286995207819625, 0.005190590705599174, 0.002814297776204943, 0.009098429956366168, 0.002739249208905938, 0.004046381466792032, 0.003306561194214537, 0.0029190874427070883, 0.0029605453077427824, 0.005196991693243578, 0.013904101255653441, 0.004113290496285333, 0.0026027357248993408, 0.008901665166409025, 0.002215698237686893, 0.003212412838201292, 0.0034885649674483766, 0.0028882885776103703, 0.0030075497228316136, 0.004340977224003056, 0.0031875496487434414, 0.005099767790934154, 0.006146178618265962, 0.004855842127842047, 0.0033354414095216924, 0.0029488549675516828, 0.002224314094797117, 0.003138325932310857, 0.005992967747361638, 0.0026043758254664486, 0.005504044484509862, 0.0038472467955522503, 0.004288151249274683, 0.005270173493900787, 0.004079186020292001, 0.003103856126639842, 0.002926817815210958, 0.0101246200533852, 0.0022259184776914943, 0.02234899422033441, 0.002691896478178153, 0.0035548457940975135, 0.0032921156763170297, 0.0042960843412515725, 0.003171464542931955, 0.0037170562900298867, 0.004561550076465195, 0.004460814257150751, 0.005997642776064977, 0.003958615023972935, 0.003088259702021914, 0.0035014591380000014, 0.003289043339107443, 0.002401293097260682, 0.0035772981479320876, 0.003922072721492165, 0.0055642372608473495, 0.003329139714438296, 0.002698830276733408, 0.005896211574965992, 0.004819881415815594, 0.005034283033346213, 0.0031513645036672796, 0.004757069045153214, 0.0027093933009966244, 0.0033690824727467344, 0.0030128034265133963, 0.0041451398563700234, 0.0029146813598635375, 0.007363323837646663, 0.005092153153347529, 0.0028485204269477213, 0.004184061232657758, 0.006781486340773728, 0.005971037767487633, 0.0020932534702079526, 0.0034859255454338886, 0.0040938090623176045, 0.0046042890946837636, 0.0035745497144416055, 0.004126456602380592, 0.0031793626796887678, 0.0048129826835195495, 0.0036616877804421127, 0.004129081142250615, 0.005473498017821028, 0.003689377036257834, 0.008857721258819106, 0.0050912702157819454, 0.004078639529897442, 0.003321040288549884, 0.003691543993663682, 0.0025207745661700734, 0.003387793134382253, 0.004448666336048666, 0.004289501257392804, 0.004282313566767183, 0.004888819145148284, 0.004481405319768607, 0.004504540778735032, 0.004509097922547843, 0.002922683012293534, 0.0027809400525089095, 0.00521192988294189, 0.0029087627208384597, 0.005293445176364263, 0.00317808407693964, 0.0037086387570672923, 0.003305913068884962, 0.0036537508933978296, 0.0032389684281374535, 0.004935898040075726, 0.003578309636119632, 0.0068807517895381224, 0.005721661693030192, 0.002731149307417473, 0.003514398813437036, 0.004828336739406603, 0.004336477992244043, 0.002957803877259807, 0.005507908680455009, 0.0027873344490675364, 0.002612265599468914, 0.005605668414289226, 0.004642411889038359, 0.006626832006579798, 0.0036155087140602414, 0.0052459553866766205, 0.00403548354395958, 0.0035481299309939166, 0.003531217821027388, 0.005051977524647942, 0.003331064363682864, 0.003177458636918615, 0.0023944342758693447, 0.008658810823648017, 0.0031437414738855717, 0.004197249398157989, 0.0030562828062081823, 0.0029868046645674133, 0.0031373895450081332, 0.005728555661730329, 0.011236366313469557, 0.004634983120904671, 0.005322084184451745, 0.0040079196450876105, 0.003146469194110686, 0.0037643011529031184, 0.0073850275233457, 0.004142068624334668, 0.002959086645472332, 0.004579856626631532, 0.004550329488293559, 0.002517918251540681, 0.006272293532209132, 0.005354786288547116, 0.00332336604625134, 0.004617425998405941, 0.005082227013871888, 0.002514825409038282, 0.004187006393712467, 0.0032152055234188084, 0.004182404378699891, 0.004119167359465344, 0.004037636186609127, 0.0042573760358800864, 0.004583125579019103, 0.002786594338876953, 0.0037750782400680317, 0.003284777717098583, 0.0023609828950565187, 0.006840045727214543, 0.0034177448315247183, 0.0033981040407097783, 0.0026511348662492497, 0.009071444618738492, 0.0038266770766275477, 0.003342139175672442, 0.00401337271411086, 0.00250687992981945, 0.0042795665888531054, 0.005605054752981919, 0.003933257564274459, 0.005407277353442688, 0.0026337088069649855, 0.003132288534821242, 0.0054606927471510915, 0.0031994921033456115, 0.0037286249195676454, 0.005239556708277332, 0.003883503327931523, 0.0037769755025546573, 0.003762940499645912, 0.0032865796162743896, 0.004091352752185621, 0.0034200902743122437, 0.004519841486783147, 0.002635246390352218, 0.003103420170306599, 0.0029130051709532305, 0.0030541592714846007, 0.006316343275557264, 0.00296702767827257, 0.0035228592630773365, 0.00519545237110855, 0.0031786064311455442, 0.003840379170145608, 0.0025967603370107037, 0.00658712033894975, 0.004632065258596935, 0.005287150544808377, 0.002958078014272173, 0.0031621938134649696, 0.0037340604327355162, 0.004663501252750894, 0.004752376724725079, 0.00930376548498653, 0.004889995599839581, 0.003774204155118899, 0.0031825571012321753, 0.004336525277424703, 0.00480510227304273, 0.007866791246022077, 0.002416258112806319, 0.0044794582617850714, 0.0043327288767983875, 0.004208741010366481, 0.0038873013584903014, 0.0034736144647697343, 0.00429677326238979, 0.0038940855919379117, 0.005869615331487285, 0.00305561305942915, 0.0035673212307601085, 0.002537923239439222, 0.004140977614472791, 0.004239904659697355, 0.004827009943673586, 0.006382012194402692, 0.004720168069430593, 0.008181777828316611, 0.0030651426045914774, 0.003667603028470568, 0.0038367919566513796, 0.0027924240970692805, 0.003715028167983852, 0.004965772740125245, 0.004835283298895817, 0.001872252503467612, 0.005301376952646071, 0.0034352808522190607, 0.003193475088475372, 0.003380402732637121, 0.006347074768653369, 0.00374056062156952, 0.004011539491320449, 0.005157956506126481, 0.004322111973017401, 0.0023524689919348493, 0.0035875117925766573, 0.002683469051307671, 0.00567765834073724, 0.004790111804355611, 0.0027680341001433016, 0.010129771852901707, 0.0024211924540618736, 0.004362696747530749, 0.003972580977407651, 0.004860713913685212, 0.003027320722815748, 0.003359908077606169, 0.0035999995240387586, 0.007321488828143171, 0.0032829879373928615, 0.003638931924151766, 0.003060900639233087, 0.0024978770892514065, 0.003479225584531406, 0.003506820811439222, 0.004309694273763394, 0.005647736885056011, 0.0026218278280487973, 0.004726595288522097, 0.004019479583197454, 0.00475840945579825, 0.0046367641620123174, 0.003276887432927494, 0.0034970588207050755, 0.0033723374487204783, 0.005213286447287727, 0.004222287622747061, 0.006929090450043383, 0.0039710931751602155, 0.0032748927458418784, 0.0038074002285994487, 0.003079598315777765, 0.003220978944636965, 0.004493793748724444, 0.004902859811424224, 0.004100013129727863, 0.0040720870936910725, 0.0036351025845807357, 0.0027948842850388372, 0.004956747144587683, 0.0034045130314631017, 0.003929556437879669, 0.006576994261834851, 0.0030144038220372886, 0.004232711943932174, 0.003236063101406117, 0.003347798947898606, 0.005730076569424253, 0.0042809008556597295, 0.003017419690975412, 0.0034439247370143594, 0.004449261386562864, 0.003973574584568382, 0.002991448350014727, 0.006315452023251138, 0.004420504607549099, 0.006620097031542651, 0.0048792359303337016, 0.0044735629550274455, 0.006376618125916472, 0.0034188916882087325, 0.0024793040917485496, 0.004073150234668542, 0.00405542920939124, 0.003691527738152041, 0.004981639160742927, 0.0045723727189664765, 0.00397420968244811, 0.0041671002108829205, 0.004693089900523985, 0.0029152303519737717, 0.002556093345749269, 0.00909853465486279, 0.0030976724635537233, 0.004348335407807056, 0.002270167712544906, 0.003523435601647791, 0.003949645055855536, 0.004417057016619647, 0.004084893600380543, 0.0035297029620619154, 0.0028979896035743634, 0.003997873369188722, 0.006667290315902788, 0.0035943567456064767, 0.003325039647997282, 0.0030378572102593843, 0.00332916218240455, 0.0035920225732855235, 0.0053112609169150915, 0.004246142832924487, 0.0025271977801694114, 0.0033892312198437477, 0.004668456577641975, 0.003707049642959227, 0.0070705384140766865, 0.005138110751641606, 0.006243682285847348, 0.005412767488980162, 0.003909254156587463, 0.0030194503937840014, 0.005837969638621678, 0.0024991099247084533, 0.0035760045463576343, 0.006474066977575736, 0.004110972226436706, 0.0032510318990915735, 0.003634563736434681, 0.002502245574238369, 0.004920828506812871, 0.004672616208459659, 0.00263402505972826, 0.0020732144072980498, 0.004730997365264106, 0.0032560316502921794, 0.003012340516205578, 0.007911430099122452, 0.0040029159872224255, 0.0045537070619264, 0.0050225169504376065, 0.011520444751821091, 0.005066430066825699, 0.0032074787870364787, 0.002980944301423191, 0.002957103134204278, 0.0040657630207145395, 0.006741955094427187, 0.002200539026601082, 0.011022152282943266, 0.005531032738472779, 0.0033256630819798877, 0.005696876040508023, 0.004022976908755905, 0.0023428487640122673, 0.002996374152913602, 0.004095944834392299, 0.0055082268653427234, 0.008444862120602978, 0.004604662916369214, 0.00458773170443407, 0.0034193561266456897, 0.0032955234446012047, 0.0031859682689941993, 0.0034275616174282973, 0.004751545906628987, 0.0036059761377878093, 0.0054993960397501825, 0.006993214577579064, 0.0035277658593759454, 0.0075465830916165485, 0.002315120003828253, 0.0031343953397795312, 0.0037152365086233576, 0.002750341751041713, 0.003066635434064183, 0.0043124605228251605, 0.004060971142442136, 0.004859504252334983, 0.0028567569216868985, 0.0038796158244520144, 0.003289343696640646, 0.004401759505610213, 0.004984607194923412, 0.002985377251519661, 0.0036913027211330275, 0.004742195760834896, 0.0035981596949338627, 0.0027043958449805244, 0.0052698048081562185, 0.003893196225942172, 0.0024011622640105817, 0.0024864649126034753, 0.0066997480367996685, 0.004138430052017408, 0.004551516378087432, 0.0018134660389060749, 0.004867563541931769, 0.0043862856792667125, 0.006679366032827867, 0.003087575461913103, 0.0033392230809024814, 0.003524635591727938, 0.0032586275349006447, 0.0027533825641097255, 0.004759407010945077, 0.002868794545946917, 0.0030477077597967387, 0.004047244498027519, 0.0032264802943859894, 0.013316326126839173, 0.006082419979193213, 0.0027757297510551666, 0.0036638181360181985, 0.002921642114299495, 0.0036603266167056043, 0.0051720110474071735, 0.0023570096185931938, 0.004482945005950764, 0.0026292586850285554, 0.006424749310452125, 0.006104331731289724, 0.0029689345632594763, 0.0035666772573047815, 0.004356480830392884, 0.004901536106572999, 0.0024651033709266333, 0.003949634425193984, 0.0026398895057674313, 0.003874329610849636, 0.006398966201099398, 0.0023741546730110565, 0.007936837806013057, 0.0030414231360765564, 0.0022403955089210846, 0.0045784246356992825, 0.0025889779177337676, 0.00341738398921227, 0.006150522174967737, 0.003059882357799171, 0.004312158474886115, 0.010704509079510963, 0.005819900150450296, 0.0027267582963183047, 0.006282402371165348, 0.002402411603074509, 0.003281260719285489, 0.004970680669667054, 0.012768747428118168, 0.008521420855058819, 0.0031524914252454837, 0.004497972176498598, 0.00476513160020559, 0.003114398459852359, 0.004038533927652415, 0.003374967184746315, 0.0035319042966558425, 0.0031305112858245774, 0.002775636557127204, 0.003369997116492108, 0.0028295477034325526, 0.004845848518754787, 0.003481970885502672, 0.0030819583364251587, 0.009319034949516266, 0.0037136971410801785, 0.0033890318107514445, 0.00561266570712038, 0.0027775936850795466, 0.004803252325223708, 0.0029831679997669334, 0.0038340540528839237, 0.003485726088332021, 0.003460079498557973, 0.005226331543495037, 0.004352477844942025, 0.004787489053191662, 0.0029493219163544736, 0.005021605132138276, 0.0019102691077028465, 0.0036748345070105465, 0.003932421715381132, 0.0025268977108639746, 0.0063403761325617845, 0.004203320664757319, 0.004591887812979073, 0.004068517878834959, 0.0025214857611528976, 0.004382677021335274, 0.006745569915069305, 0.005212821774300349, 0.0050709038230791325, 0.0034727697434253054, 0.004791784906333424, 0.003101306986070015, 0.0045596846846078015, 0.003382426771906589, 0.003791794599637817, 0.00589272299588583, 0.003471465535977791, 0.005658659498921239, 0.002031121109224856, 0.004913182165193337, 0.003138423558975454, 0.003433171244123478, 0.002465158400499371, 0.005236465959535233, 0.0037487593864230415, 0.004044631059034043, 0.0028437293683177315, 0.004896012352077423, 0.0027818043503708345, 0.004178452966086805, 0.004310085041153569, 0.003422537039586697, 0.004117304614506574, 0.0038046294117411923, 0.005266535148286372, 0.0038796969546819418, 0.003338674371106394, 0.003745190910548172, 0.005427042078865256, 0.0026202462567864386, 0.008371436936411802, 0.005001711610233368, 0.0032000690540314935, 0.0036527154595102107, 0.004101173673818841, 0.004336251514089904, 0.002378375813084008, 0.0030293934329760465, 0.002640907124892132, 0.004983191744210148, 0.0018732727934591838, 0.005446060525204459, 0.0064148183503409655, 0.0034837256262999516, 0.002157261146477442, 0.0027859768078271436, 0.0037977515216423077, 0.00435107633076369, 0.005612865101346204, 0.0028497811273983853, 0.004709097692129674, 0.0037925222304546575, 0.004281533572355634, 0.003225916307905647, 0.003810393303565187, 0.004083090458015792, 0.006529047187260384, 0.003322976804368996, 0.002320521580617075, 0.003808951807040444, 0.007472148878805443, 0.0035033381346758806, 0.003284482160854504, 0.004081529108854884, 0.0024125549320159903, 0.004161966813932551, 0.0033020742302788467, 0.005273958790816545, 0.0026479796355529032, 0.006824881771300422, 0.005088871152257355, 0.002343344451466522, 0.0029953761111476867, 0.0023534806960597275, 0.00373488856060518, 0.0033428261723833673, 0.005945444781392971, 0.004752561371749286, 0.0028952036294183393, 0.004230727472207101, 0.003561871238429054, 0.011278047052867581, 0.003469230708667471, 0.0037651167649274814, 0.0028370115410927274, 0.0031437162018445675, 0.0031068074402723295, 0.0047169011372083505, 0.004513937142218147, 0.009808555818508374, 0.003760404021578905, 0.0027852151604084003, 0.0034469437715586556, 0.003640847097213152, 0.0030366627508365274, 0.003419319285060523, 0.0034987341175544825, 0.0036261323396168305, 0.003400353404584968, 0.00275393242953135, 0.0037957953961878605, 0.002785731737183351, 0.0034878655501151138, 0.002960798532488926, 0.0032966630250320338, 0.0033795415846753322, 0.007401184806580971, 0.004510273763052082, 0.0032217736892459956, 0.004435400456345529, 0.00375978689930609, 0.00362786609179521, 0.002806027449809182, 0.007753239278101938, 0.004552063424377423, 0.0024491165682527178, 0.0028395450850151366, 0.0032334147400277986, 0.0036005606284201276, 0.0035237384676987255, 0.005271356160883728, 0.006414970286513258, 0.003591897634679005, 0.005373343004856115, 0.00908923421883426, 0.0026374883757204594, 0.005533977116684742, 0.003743609952580515, 0.0035517544176632857, 0.003637738101609884, 0.0037235921552597425, 0.002870199339861491, 0.0031978782788261717, 0.002879855168303707, 0.004937709636205298, 0.002789319013600795, 0.004217902894725788, 0.0026338185245694326, 0.003357580256487877, 0.005202135545641419, 0.005148350387519708, 0.004606658790136936, 0.0026302872611452784, 0.003428959792004826, 0.003616224770721932, 0.006387617229979485, 0.005757375698485411, 0.007364078256504402, 0.005942030587414743, 0.0023092144629420466, 0.0036389024464742277, 0.0037772194693071427, 0.005053304762977695, 0.0033006276862605592, 0.002826122758633878, 0.0034888834661658623, 0.005283073411226696, 0.0038179109535983274, 0.002720257016724161, 0.004743953907889792, 0.00490784361845462, 0.003483981513411276, 0.003932354408768236, 0.0045562509668312795, 0.003474528917155679, 0.0030983956804335106, 0.002968482072271233, 0.0028220753722135107, 0.003309694195483049, 0.00594840170894632, 0.00407699389881128, 0.004707166147104778, 0.004738482477004913, 0.003123743870871792, 0.003536519438642564, 0.006754428431817974, 0.004711350368186261, 0.00289341512292102, 0.0029846238382132554, 0.011300786062263302, 0.0038015199573349055, 0.004606411097877228, 0.002008226661875665, 0.0031017408390225957, 0.008846975143752862, 0.002307230245098051, 0.0036892133548360137, 0.007064970208294756, 0.002425604770915307, 0.002928816570461944, 0.005524882542823282, 0.004080618760066206, 0.005833778821045476, 0.0033261923765011197, 0.004010881161770133, 0.005555667768276551, 0.0032062475327368036, 0.002226093413361593, 0.0030118614737178187, 0.0033411579082689726, 0.0036823697447015387, 0.0023350905768897133, 0.005044324033855695, 0.0033644565405288726, 0.004983921354603397, 0.0040097163875221255, 0.00259698447243664, 0.006267949851515954, 0.0025995037985818183, 0.004972039580836478, 0.002892878254801212, 0.003210922566726423, 0.004734156982358295, 0.0027086669279949563, 0.0033928706623163316, 0.0032339484210544395, 0.008245733526176791, 0.003441461476190626, 0.0031636337467069696, 0.003671411640162959, 0.0028348863043412176, 0.0031572913735365042, 0.0025646068356524427, 0.003455156110815276, 0.004117294107104662, 0.005616794942462827, 0.0023160369799181562, 0.003295517344897496, 0.004952832992532789, 0.005405884466209195, 0.004991125984644439, 0.0023091029966119314, 0.0034812562529714522, 0.005049653736944068, 0.005398707428828283, 0.004470540312448878, 0.004397687692471437, 0.0043514983771322955, 0.002867643909647245, 0.006004102480115065, 0.006366845035326518, 0.004200644618462623, 0.004295146608330741, 0.003310203684340923, 0.0034567673497317153, 0.003118333174772958, 0.008819185151057311, 0.0020420775119240346, 0.0069414647022854, 0.0016370913413846968, 0.009143841613030335, 0.004061006614335184, 0.005696458599574251, 0.0025160668216334713, 0.0037457932812212783, 0.0022073746085900584, 0.0032461706118875845, 0.005355215008364939, 0.0027599870583477964, 0.002900284852183895, 0.003027932570616309, 0.004876175021171071, 0.0037004262184214256, 0.0029954410443029616, 0.003168092943609253, 0.01058244669417595, 0.0020974321549225693, 0.003939377894335645, 0.004469906038573456, 0.0025537705463364846, 0.003726409228150266, 0.0030154102601731075, 0.00457535605553251, 0.004387852203088944, 0.004571083925973647, 0.003937988648580248, 0.002869448390207632, 0.004141233146752557, 0.003574544632621307, 0.0035039961157537413, 0.003367913411287867, 0.00835291988209277, 0.005588480613406746, 0.0035625744868229003, 0.002619099274763054, 0.0029847770764660432, 0.002557148020276564, 0.0022936501614261857, 0.006097430813956041, 0.005050997547921731, 0.0037883917955893105, 0.002337330127067931, 0.0036367715036673904, 0.0023527462555572123, 0.007661989698053738, 0.0032934566108219028, 0.002777035937794302, 0.004445743940469948, 0.006157878629182726, 0.006035081278423474, 0.005946477402140755, 0.0019197962338550058, 0.0025824700999447585, 0.006244397969216413, 0.003479031165177162, 0.0034860704413454367, 0.004399949984416551, 0.0022087890533984003, 0.00284071964171683, 0.005571022371603349, 0.0019138198868697838, 0.0035660492762351536, 0.00478553343520347, 0.002449992002415669, 0.005383083337593864, 0.012873286507114865, 0.004706160734110061, 0.002964516946744611, 0.009719470146149323, 0.002294829346872487, 0.004603063350026237, 0.002111497348045579, 0.007071035215058416, 0.003481220889840293, 0.004742745963678853, 0.002855890505691464, 0.008593414356538386, 0.0025761699579411154, 0.004289597874637497, 0.002663833246197982, 0.003169837466545309, 0.00302528537585207, 0.004517709798772382, 0.0025387230196853385, 0.002778554191471096, 0.011117998880545174, 0.0034168969322561555, 0.006297743812790501, 0.0023595699518170485, 0.0037330576177779773, 0.0037851553568851158, 0.0035909167207483716, 0.005054623683313296, 0.0032985571189816363, 0.0022006265887998715, 0.0038236058325513385, 0.003196708822375321, 0.005124123237276018, 0.006640514465155569, 0.003538602588089106, 0.003691896749616079, 0.0032659573801947736, 0.003445734651769749, 0.0025338836103655496, 0.0035047531008464846, 0.010034109812799556, 0.004355876038921993, 0.0027154403585945373, 0.0045184282616366174, 0.0021125811618522192, 0.003225252165592131, 0.005714739412677509, 0.0025046660515274486, 0.005910540538723821, 0.004732651816615471, 0.005595453827328484, 0.0021443843273939384, 0.004186392527195413, 0.004258714783242709, 0.0032707929843274475, 0.003327322756336803, 0.00322155245779819, 0.002572541292647538, 0.0037247204972243515, 0.0035408923982870313, 0.0038954390947923316, 0.002481278474688421, 0.0032060077633559504, 0.004338918931095701, 0.006429983801967122, 0.0043605604001293, 0.002451954055264439, 0.003555823657037158, 0.0030744999833331975, 0.002787586725066089, 0.004364911794154975, 0.0037650870034706776, 0.003877588031582376, 0.004515706955094795, 0.0029161890829726804, 0.00453940102205503, 0.006282429309483498, 0.002570947987494477, 0.00644191437052623, 0.003903247402311026, 0.0027201902757474075, 0.002695846489962768, 0.002369120058190769, 0.003670248322614711, 0.0029904362365929115, 0.004486344667190981, 0.005033264688615541, 0.004872131172176044, 0.00332729461516108, 0.00339386394325965, 0.008671698493427981, 0.004176619652527294, 0.0046416307659932566, 0.004887138304198155, 0.004590718652745637, 0.0024578307961468327, 0.004961004665713483, 0.0044559128364589275, 0.004766842212199737, 0.003219500008742463, 0.00311525436459227, 0.0029033752467752883, 0.0032259781065949707, 0.0026977959976138164, 0.006991938606221328, 0.002586777979765674, 0.003257086713814368, 0.0030340822754040416, 0.005018339156990889, 0.003344560488368177, 0.003398105416538454, 0.0039660094826411895, 0.004941844216149189, 0.002758063515154789, 0.003064952165787238, 0.004989628794225449, 0.0034637235572862806, 0.003312690980370624, 0.0025992331274055707, 0.0030244938271089144, 0.0039050105173437364, 0.0035081185672331495, 0.0029754787349146475, 0.003396064835227755, 0.004973629122447778, 0.0076158832541917435, 0.0034489816808356993, 0.003083545128533813, 0.0027118734604101693, 0.0035193030908390586, 0.0027522460946090535, 0.0038749484561783286, 0.0038010595159341763, 0.004128689659424622, 0.003759573744745416, 0.002465941549262691, 0.004213423344843071, 0.008050297117341357, 0.001471459544081644, 0.004701409953855549, 0.005475312994824725, 0.003366388248600126, 0.0030224580250748957, 0.003891281672508278, 0.0029356135712476712, 0.005118709077876726, 0.003676335744584915, 0.005805990095477194, 0.0044925494930186365, 0.004976740281292324, 0.0034800612179650007, 0.0040392750508276305, 0.0037006033078640505, 0.002895106222356628, 0.003372944069910209, 0.0043594293234986824, 0.005056467696769391, 0.004887285822877585, 0.003980384206965061, 0.003510866545403085, 0.010076322744099475, 0.002941929726013738, 0.003247320820752822, 0.003711013141454008, 0.007855536931219773, 0.006844430531959175, 0.0024281870226567997, 0.0052679499615959895, 0.0026822721375559895, 0.002550905930652809, 0.002640628643042539, 0.004632155760566857, 0.004013853254231019, 0.004008212082382841, 0.0040798647642072815, 0.00417927811479313, 0.0025236655060305335, 0.004541791624237111, 0.0035237705146925306, 0.0032800967241688786, 0.002388934757162845, 0.006001119995846217, 0.0038549168161144793, 0.002595871761549456, 0.006362146915348243, 0.003230234077716214, 0.003199460689842485, 0.002651185109374986, 0.003030263140065279, 0.007024124293584932, 0.00510608435592154, 0.0029417637868958194, 0.0034991147013329047, 0.0029800457933586173, 0.003051641649418689, 0.0037106422947835458, 0.0047330999612647485, 0.005464397558272803, 0.001964914573022531, 0.0039318685158641915, 0.0035875787730834142, 0.0034306011555316394, 0.005914495906982758, 0.005056787017303301, 0.003692391432522913, 0.0041446169557234885, 0.0025699124979126483, 0.0030800243625327085, 0.001941985618608133, 0.0028498117660585216, 0.004487780073129246, 0.0033179141998984684, 0.0069161253027823985, 0.004425342575642566, 0.003568980568391343, 0.0038441387483887602, 0.0031151044375314465, 0.0050511568200310225, 0.0031997340266240173, 0.005066350634113264, 0.002229066452600219, 0.00875053469811582, 0.00438208334403965, 0.004134562390457232, 0.0022723975908316802, 0.004314177787096802, 0.005454034150780866, 0.0033071091013683203, 0.002853353241925936, 0.0030739573868804855, 0.0035307239713887406, 0.00378267490503469, 0.005076927065381074, 0.0033971560571113583, 0.0056285450835215555, 0.007972895157018852, 0.0034462586950670115, 0.004594210276281514, 0.0032609321420529595, 0.002735139860113377, 0.005012975847528752, 0.0037981970200099574, 0.002830923153115909, 0.004145173393042152, 0.005680064136695681, 0.0031450432017653407, 0.0018449424421451831, 0.005413310348136939, 0.001970236468199095, 0.0033058968591991667, 0.006018070972348312, 0.002441100623875688, 0.005085932544977206, 0.005942159945665913, 0.0021123571210419257, 0.003234103634026416, 0.005429338593782477, 0.0025360945220999666, 0.0026342709927425455, 0.0030686467570636192, 0.0022985535147576758, 0.002305348554404304, 0.008675991467808135, 0.0031036532614946827, 0.0019422511820503987, 0.0032184660711398064, 0.0027604366803650362, 0.004629145090840159, 0.006172733029887355, 0.003933253793592442, 0.0030118052610036993, 0.0028846582391603426, 0.005033531102025278, 0.003813872619445785, 0.0035125782269856813, 0.004415466879717031, 0.004842876990230072, 0.005092301885346563, 0.008178809728458854, 0.007198227078988403, 0.0032351408491842018, 0.004348117214979701, 0.003184127183061518, 0.0033899033623961522, 0.003125763625757505, 0.007694447653540689, 0.004206706775787246, 0.0032037314773183793, 0.0018294752671367057, 0.0032751358058812395, 0.0032164701646369984, 0.006891359576892471, 0.006185004869208607, 0.0021475812301858517, 0.0033728714220787282, 0.00295960539281005, 0.002900097397077583, 0.006827692148845078, 0.0021986067299797777, 0.004032503738278145, 0.0037934162814033286, 0.006247321765604234, 0.0038822661435083403, 0.005012394423403637, 0.002829181773906125, 0.003543418179137835, 0.0037111002845531997, 0.0030182657235573473, 0.0029137636155879116, 0.0033188329738883006, 0.0032463516160189413, 0.005556932726736339, 0.0034345806716913653, 0.002609652590589492, 0.003400489309540862, 0.002134400649686557, 0.003822102849309465, 0.004406337020999948, 0.005303801945010929, 0.0038741843512330224, 0.00312393576022923, 0.0028510722234591558, 0.002513033472575031, 0.004595129752393267, 0.003410673454199041, 0.0029919079497991653, 0.002072274001649016, 0.0035420818233308686, 0.00447551879739394, 0.0032316607628009404, 0.0033554862435545923, 0.003659182383588655, 0.0028353775966297743, 0.004231637713578525, 0.006392184898323971, 0.00548376661785632, 0.002802960992748392, 0.0037554186192276656, 0.0022172091581598536, 0.005354999600952494, 0.004201314391039863, 0.004562861519655286, 0.002190272854253662, 0.0031727089670788265, 0.0037331282915180853, 0.003511628994952062, 0.002447861198796301, 0.0030581000301292, 0.006170097479187317, 0.004341036982293267, 0.003235167843099325, 0.004236643669729307, 0.0069920144494744095, 0.004191141976227017, 0.004697678315051767, 0.0030458895030549297, 0.0025002673202716274, 0.003508282034070898, 0.003036301612172554, 0.002801525173012004, 0.0033126691480421127, 0.006066830644252511, 0.0039125591688019285, 0.005695261685570148, 0.003405033679906034, 0.006180954883431426, 0.0059215622553564565, 0.004763180753591993, 0.004363347553081926, 0.0028674523262581324, 0.002395465141549291, 0.00464211465893216, 0.005194353662053978, 0.004269708421202531, 0.003137673549473437, 0.003652043215431481, 0.0025744171025368903, 0.005454861363805614, 0.006448210589462796, 0.004686178709079744, 0.0029379952082345074, 0.004148561222758413, 0.0019846258563439895, 0.005476083508977684, 0.004229151162364264, 0.0023693540669205695, 0.0025755690599390457, 0.004169721158043973, 0.005573823690923837, 0.003935745330886726, 0.004825169137276402, 0.0029408936359280533, 0.002595952133117635, 0.002527016534229644, 0.0046719183819205826, 0.007559210570762957, 0.0033505787075217403, 0.0050379732271296825, 0.001511620434088985, 0.0051361152829577945, 0.005088856844626696, 0.0032822159984558785, 0.003322676001634299, 0.0051144334715689166, 0.004039056215914065, 0.0029186157229083324, 0.005630803377039648, 0.0029602654010809043, 0.0036431295833674665, 0.002788584907484416, 0.005517914819524553, 0.0047751763056933195, 0.004338010128692673, 0.0046209550002876175, 0.00263208336788729, 0.0034403330342068807, 0.004399547475650829, 0.0033224726507809555, 0.0059322661889871335, 0.003961397422542459, 0.004722952074787445, 0.0032139880873457323, 0.004391412808405146, 0.003985006915159719, 0.003549785014809829, 0.002253586783358693, 0.003193602221599828, 0.00353345197641359, 0.003237009035130052, 0.0035811831375180915, 0.002939269423567943, 0.0027881844969254426, 0.0024269177756392436, 0.01647782181471646, 0.003744838035569823, 0.004933270860845577, 0.0036136598140831095, 0.00333492391907845, 0.0026975270168927935, 0.0034915496765498245, 0.002807315786391716, 0.00871099662280324, 0.0022141249480034826, 0.006495726161758789, 0.002618717124078321, 0.002264262007656545, 0.004508323645484097, 0.002530368608913492, 0.0025555999238219573, 0.0016126626554128754, 0.002206597072886818, 0.003967323538991435, 0.003329925535156287, 0.004624785354850041, 0.003073139462619846, 0.0022439863026448847, 0.004308933356909712, 0.0032988721048740808, 0.0038546550482338377, 0.007403267402556768, 0.003731821138704233, 0.003385011309073715, 0.0044770531043024355, 0.0022157276875684377, 0.0028559012116365573, 0.007888602933917927, 0.002737189849903681, 0.0054339020138815235, 0.002577270000043683, 0.002847310851937348, 0.0037107840665494634, 0.0032283805895342204, 0.0028277255073388377, 0.002634941455908835, 0.004714091949331249, 0.003536788543576968, 0.003496498711809864, 0.0037923605819097433, 0.003497934641246365, 0.004048105106656235, 0.003004942796080697, 0.005540587807736963, 0.0030719354568285472, 0.004322694269857819, 0.005405442524457918, 0.00394695013762292, 0.00373276050862188, 0.0046511817905330035, 0.0038647273744574612, 0.0026334935236731454, 0.0057561937225586056, 0.005440268747323799, 0.003679686908256441, 0.0022636472999938637, 0.0029656255901679353, 0.002498763441003678, 0.003481553089027807, 0.0036558980506549545, 0.0035182336554036844, 0.005239873699012026, 0.0031669270329553563, 0.0026549846336568718, 0.0033512172163121085, 0.003313260392220377, 0.004140724203357898, 0.0037528507180907096, 0.004822339819030406, 0.003289757533323509, 0.0050464731794334, 0.005142717004609983, 0.0035133874493379785, 0.0025364398320013195, 0.002694836141823264, 0.0029010140878283942, 0.0024902999182904537, 0.003342487245664066, 0.0032198846565163627, 0.0033230582956382477, 0.005506926237697834, 0.0056630788676720525, 0.006912543778344852, 0.0045900629149915415, 0.0031012695612205555, 0.0033664667441104324, 0.0027727939720687115, 0.005577192378773671, 0.0024912541792029654, 0.009535042772229396, 0.0034777148426366916, 0.003221638075752655, 0.0034544750856972764, 0.005476920540091867, 0.0037140378713810115, 0.0036464508644089627, 0.004562898455667258, 0.004001788354978774, 0.0025809028881915025, 0.004439075509448836, 0.007099556032402999, 0.004487361486130164, 0.0020632904833673246, 0.003178996187861531, 0.004808004883999801, 0.004021288602500416, 0.002275641140711566, 0.0034443458961561438, 0.003035817627707945, 0.0033275431676024056, 0.003624365395024787, 0.007154804949322947, 0.0032283826652766607, 0.003420657155364152, 0.004010056374021051, 0.004613693261430762, 0.006769271433960134, 0.0020510953501215777, 0.004601883532886925, 0.0030762745635779017, 0.004224407162225173, 0.002513904554168552, 0.0033523021290342687, 0.004087184084420718, 0.0036185776516479014, 0.00250187507263551, 0.004068326292129362, 0.004861366984022066, 0.003025066315499516, 0.004823659597832033, 0.006667197908951275, 0.0036073542022519076, 0.0044637797118464075, 0.004135101725297032, 0.00480322248034378, 0.0029197429364083045, 0.002598192401375154, 0.0021154711142691083, 0.0031132499894036235, 0.0031649400520526046, 0.0052247518760133605, 0.007227950013368241, 0.0030946930303868284, 0.0035702511762058494, 0.003493112569298612, 0.003942706629076851, 0.0029989320558343907, 0.0027221973509097474, 0.008237147556486758, 0.0031730995580538496, 0.0038087561492899115, 0.003415628844840509, 0.0026808484146117733, 0.0032252287472938094, 0.002827425734811476, 0.009108375277060102, 0.005160206235489926, 0.00218253150419024, 0.0022384343401409173, 0.013067960262910452, 0.003302363712879833, 0.0035732962688969513, 0.003479256816492923, 0.002156628803230929, 0.0033109196952593955, 0.002930811241467786, 0.002545351697693928, 0.007801046585221428, 0.004056034721444954, 0.0017351317943150406, 0.003983668699578033, 0.002484152583989019, 0.003225006728792864, 0.0030169228766199724, 0.002552759893300448, 0.012150283757358115, 0.003066162767450198, 0.0033782267070168737, 0.004578257639070887, 0.002781812803599152, 0.003186387223791725, 0.003317776235710785, 0.005229386363547132, 0.0029988519593833725, 0.013044531452270233, 0.0034207294331691424, 0.0030265073969203984, 0.004565707620256946, 0.003260596290024746, 0.002492414223232871, 0.00640930708446, 0.004818260181990837, 0.0017967723734069764, 0.003627723942352068, 0.0049367657971202345, 0.002749344172587232, 0.004236353820802991, 0.004938339627090335, 0.0034698373539664685, 0.004444221234321119, 0.003641290708879953, 0.003967896236661575, 0.00371200157781825, 0.0022942050402992064, 0.004300769888707845, 0.003262692104870189, 0.001756864012765558, 0.00356559576072511, 0.006685362181846284, 0.00230184440334563, 0.0033343755273503493, 0.002586432984703767, 0.0030634787705516872, 0.005512892640310542, 0.0038488534680753217, 0.002784097926849259, 0.0029776750566446143, 0.0038590222948894836, 0.0028337721392572013, 0.0036395448303030856, 0.004526286192697758, 0.003683402549319814, 0.00513501070147865, 0.005122583366757231, 0.004553767057621976, 0.0035200274076091914, 0.0035860808257372916, 0.003030094786056686, 0.0027180886934029475, 0.0034406687886923215, 0.008665271387258302, 0.004217967248290185, 0.006680332684519447, 0.005969359727190169, 0.0034870192303576844, 0.002888033946662206, 0.002404436015233766, 0.002995741413501117, 0.004172787881485272, 0.0034607838387834557, 0.006303060556523218, 0.0034287186388029176, 0.0027539689856132255, 0.0028344770473041772, 0.002617973483926492, 0.0026522227891515844, 0.0027249182352823234, 0.0036864940047468078, 0.006930476611628857, 0.004476564855342539, 0.0027609044158023064, 0.0034699235483831555, 0.005040742618777309, 0.00446052187403893, 0.0026834540064626404, 0.003793966959211554, 0.004427631847564573, 0.004655713297603405, 0.0030248908486138638, 0.004154594084301385, 0.004011377411847853, 0.0038511146268800527, 0.00684908210631132, 0.0021276676125266845, 0.006368212585014349, 0.0020569034803302687, 0.0023338946996005, 0.004680112257105937, 0.003901485034052715, 0.003947574021574356, 0.00355064630863213, 0.004663132884643453, 0.0024884842145170053, 0.015061125594132465, 0.005735683371225963, 0.0019389290259743661, 0.0026193272227282337, 0.0034983715667003348, 0.004308621057052349, 0.004747124508418471, 0.0037263135670970934, 0.0019010542421114298, 0.0034137949663703795, 0.00488587577220669, 0.0023307050381642597, 0.005081563209203209, 0.0074601361730216005, 0.006011381514733646, 0.004021746543965666, 0.002847510104394841, 0.004617438608233382, 0.0025014376789107514, 0.004047629089555546, 0.004426078141686033, 0.0029221346291705775, 0.002341225813062188, 0.004164529536901322, 0.002697999476314358, 0.0031800896749992363, 0.0019867940870784513, 0.0024447197248488022, 0.007240890291868263, 0.004104454206333261, 0.003994145982484653, 0.0027668742497578896, 0.0036484837988009487, 0.004265631139356001, 0.002714395161276791, 0.0024287823406965057, 0.003024415227804683, 0.004812759049731153, 0.0028091093779838714, 0.004096140035538838, 0.003487913622735067, 0.005246173419923803, 0.002849031241464563, 0.0042909067582993145, 0.0024572569762375774, 0.002750324409551587, 0.004506055312688094, 0.006138378132459531, 0.0037151035803998653, 0.004343026957823354, 0.001586903420984421, 0.0023013078294480275, 0.004009800343060163, 0.004321169616684413, 0.007723007344146234, 0.0036712978000014163, 0.0035401518743722418, 0.003766788197520478, 0.002396951373298287, 0.003541203530228308, 0.004002159656108304, 0.002534782832236516, 0.003818252900936299, 0.003861299917645427, 0.0028958827909169186, 0.004408304528268452, 0.003365716994669131, 0.007242203556992155, 0.003566001506269254, 0.0032455927018077988, 0.0028753684125027634, 0.004273961451207588, 0.002574297248582646, 0.004735757783905442, 0.0027413318375699093, 0.0035986815848227972, 0.0021141242829480445, 0.0037452775140298052, 0.002208152809015991, 0.004955924591232279, 0.003782074025751904, 0.003911392088927549, 0.004072597901883475, 0.003822018433358572, 0.0025192817117729626, 0.0033151983268678736, 0.003432030536335829, 0.0049795234666422305, 0.005088588999281807, 0.011566360293808284, 0.003416461847936099, 0.004705860681067036, 0.0032133107406453346, 0.0030661748916722764, 0.002924319294455103, 0.003638332150441738, 0.0018480676180231688, 0.004256058673975676, 0.0028768752333588527, 0.006811724263251958, 0.0077738136100334605, 0.004380201015171497, 0.0035170377840828826, 0.003010580661444825, 0.0026434136267048853, 0.0027268848182324156, 0.0056138200689747645, 0.004183497816613186, 0.0023378298835533213, 0.003117288091085797, 0.002788791253745313, 0.0023168873555224757, 0.0055267306893359985, 0.004014523312524174, 0.0036166281882864964, 0.0022126788775429923, 0.006244870378887139, 0.0019748375757409225, 0.0038742674597978034, 0.004352837012752299, 0.0042362486741079446, 0.0021732151735210834, 0.0063750647620952105, 0.006153453748371374, 0.006320687852033695, 0.005410118977890289, 0.002844897603202757, 0.0036438362763918757, 0.0020608633585229843, 0.009239154022182273, 0.0034581995756213756, 0.0034885037992678433, 0.004798081567670304, 0.0028025219577868577, 0.004281125675662774, 0.00409087622770095, 0.0015926324209255484, 0.01070526409609729, 0.0026748143837706695, 0.0034942171097658453, 0.003387369681949534, 0.0037495114395882717, 0.002495322962120577, 0.010172910778814447, 0.003679789148198299, 0.0023542213547515264, 0.004856262500634396, 0.0036198912912037335, 0.0040296005907153615, 0.0027700838943260043, 0.005044426612881018, 0.0032816056037430616, 0.003180911030839839, 0.0035561524026351274, 0.003131084897379369, 0.0032386315064456056, 0.003622608268331501, 0.005010386592003647, 0.004073471233334229, 0.004844219711120269, 0.003708570905975074, 0.0028022606216821675, 0.00304604421754201, 0.0065489926172889595, 0.006479364793798395, 0.0034937373145590743, 0.003914249359164518, 0.003703363375709455, 0.007004460211642442, 0.0037042015648767477, 0.002208370196922074, 0.004375684760390618, 0.003171695922912441, 0.0018140742810271286, 0.0035669333950359887, 0.0029656181448232963, 0.007003554142133399, 0.004612161225258221, 0.002278248855146648, 0.00569417520008643, 0.003702639143045386, 0.003262074583918336, 0.0038178633459915534, 0.002749038848513952, 0.0037146495521803513, 0.003010407203143914, 0.0033930879668303895, 0.0021193541475953855, 0.004185235902038032, 0.008021263302480996, 0.0043606220450340145, 0.0017334016384734766, 0.003105158137528566, 0.00297481390189008, 0.004267570890628243, 0.0032077023158430737, 0.0030428197300029426, 0.00421607047075649, 0.0027921693138724217, 0.002378023718424774, 0.0028417906311555387, 0.004004792047589454, 0.0030989567058239643, 0.003279896715213003, 0.0038520996136536894, 0.005540410531373156, 0.004364713948844443, 0.0023737969230835268, 0.004021880924082999, 0.002813194089829078, 0.003557908781636519, 0.003849678084460971, 0.0023604854056010144, 0.003151248220668938, 0.0033836939105040603, 0.0025657962521752164, 0.005242822533111919, 0.002209399283982105, 0.003806772367160183, 0.002485714729990031, 0.0032889260853627006, 0.008883406226078593, 0.00275574091578657, 0.004727687114235031, 0.003233447031691683, 0.002827730374925355, 0.005657578243275, 0.002218488803615452, 0.005296756795650129, 0.0029257410956780514, 0.0034111085150740823, 0.003279011781312477, 0.0029443663028563528, 0.005104100842152506, 0.0032349356811252664, 0.004334991862332862, 0.005261596411135474, 0.0034822996033746882, 0.003872117947375212, 0.0029606581100885114, 0.0036884866088823924, 0.004382645142322455, 0.006256971226296452, 0.003845449312651119, 0.0036851099250420896, 0.007133855272556841, 0.0025447512053417163, 0.005606336954959098, 0.0032541262152234246, 0.004607928796840337, 0.0038725487568479306, 0.004531277173413101, 0.0032565950792567003, 0.003151750429825832, 0.0031755548470676236, 0.0030372338837615443, 0.0027374446429242368, 0.003108493498384746, 0.00406472382652718, 0.003094696687790148, 0.0025762305649755205, 0.008145142542196292, 0.0033389654637591922, 0.0030231960251004162, 0.004305900869208883, 0.0034001878205397198, 0.004585576018854432, 0.0037212098554183573, 0.00422842930464704, 0.003571784259050529, 0.0031861699557570997, 0.0060624876056352, 0.0035951528646255538, 0.003104579025517796, 0.004149138875565246, 0.002266284130432997, 0.0021442708908456258, 0.0053095886225108715, 0.0026156010412377523, 0.005507043888534056, 0.004537938439243073, 0.01413551157146987, 0.0034829792952334668, 0.0029012799583649778, 0.002616142166963022, 0.0032243459939989504, 0.003660383275804853, 0.0034680258061225225, 0.00516071042606433, 0.0028500558559709493, 0.0019924399566357475, 0.006181926430061982, 0.004141284735191218, 0.002074337956449321, 0.013309287136695672, 0.0025677377115383925, 0.0024422022088914754, 0.004752965827154199, 0.005020782325026053, 0.002538640040101617, 0.0020936557826433224, 0.008352140890743586, 0.002680871450280978, 0.003996237126374274, 0.003930885626999914, 0.001673970185795222, 0.004556392344568277, 0.002177546607241329, 0.004918672567790627, 0.007661849265062149, 0.002253396666840488, 0.0038812560779397875, 0.004647858457519714, 0.0052137000469836695, 0.0026163797022182014, 0.003229338921932228, 0.004866772795923393, 0.005642895731766716, 0.003257992600257268, 0.0035875289133628072, 0.002419389990422264, 0.0024204904274770585, 0.002801531152799583, 0.003305083954894228, 0.005085694209634739, 0.0020436677865688637, 0.004443186171208857, 0.0052017546788382125, 0.0033567095934490267, 0.004137037934839551, 0.0020621349990471907, 0.004625107830799259, 0.002689974690261139, 0.00320153481835663, 0.0037787863121399715, 0.0019328018845036336, 0.0030223414565700457, 0.002860664034474194, 0.0035808631939789905, 0.0021865170135958547, 0.0029026924027207588, 0.004366952948925454, 0.004021289463846269, 0.003519076621746861, 0.0013718762689115074, 0.002983548420811202, 0.002670401701181402, 0.006037491152891413, 0.004967370003031791, 0.004125112985682492, 0.0023874946278759205, 0.005138319084013493, 0.0028329981213288916, 0.0020975905580323073, 0.002897630747090744, 0.005980481086327974, 0.0042085701248043466, 0.0032985246584856013, 0.002568389586552401, 0.003362449561670206, 0.00453685458080505, 0.00321513291163997, 0.0037170079557656242, 0.00326451883107415, 0.003991361338005808, 0.0026335532340315574, 0.001968941001663988, 0.0033306835114001857, 0.0030695556644148095, 0.0027613051982117317, 0.006105604572005756, 0.0038352635300724614, 0.002101559108485823, 0.004172562513273451, 0.002758172838960289, 0.0024867479051690574, 0.004958332457054034, 0.0031836475804251476, 0.0030332879389979596, 0.0041229699510298475, 0.002989316894231696, 0.00284608258202706, 0.0033775625275987617, 0.005133618495920234, 0.0067614995963287865, 0.0029818607317946507, 0.004626245641350127, 0.0055098007574754726, 0.0028285763402166025, 0.0024536680881973626, 0.002385922321018363, 0.005127878581450999, 0.0024320642705535174, 0.003348668092878862, 0.003159003926335216, 0.00242278980129012, 0.004050257847697855, 0.004491248204158673, 0.0037601721174672135, 0.0028552930028634604, 0.0023086059856526715, 0.004613261342788291, 0.0034806612641477613, 0.0022626672600739544, 0.0031042705397371674, 0.004884082551899206, 0.004084367162900139, 0.002512608559049967, 0.002940466567095642, 0.004904933538567756, 0.003807375012176204, 0.003970269524716025, 0.0034469829820827995, 0.0020910225533881045, 0.0034040850620878855, 0.0033307795853119216, 0.0033879505790147387, 0.0026967896750652305, 0.005827795996734858, 0.006984317789811313, 0.005440792454850608, 0.0027404024444560877, 0.0026476345750088724, 0.003981345539679295, 0.004533841574229967, 0.003507428840421501, 0.004236914383463435, 0.0038701156806284142, 0.0017119847063082842, 0.009334440808910329, 0.0037087624268803488, 0.0036376617463062576, 0.007643430389521882, 0.007470072161689906, 0.0029895780643569717, 0.00209058988846337, 0.0028129647213683976, 0.002444395867249624, 0.003749608071381082, 0.003284983551904207, 0.002607806483613438, 0.0022613739675195086, 0.004484741114930044, 0.0040705647224190174, 0.002344442812412969, 0.0028671605329300557, 0.0039050581195316575, 0.00560191725062497, 0.0059344300728120065, 0.0044216605612794994, 0.006492213290026953, 0.00232231922838436, 0.0041745207062999015, 0.0027109589743356073, 0.0030164557404988674, 0.004016101278260131, 0.0022224791756390873, 0.003123646380595116, 0.004101138880957343, 0.006340538825283901, 0.0034001161346730703, 0.0019299158558930534, 0.005658454608818305, 0.0028438213120333326, 0.004603411646024931, 0.004004899345602948, 0.0036019409001540915, 0.0019686247769798537, 0.003571035675195038, 0.002629375844758392, 0.0041058714915095645, 0.003372840108022224, 0.006376750091772564, 0.003314273289272589, 0.002010406519068422, 0.004762417103332743, 0.003002798811064866, 0.001847497072634124, 0.0030486481577544416, 0.0036539426023016477, 0.0034372107820004314, 0.005242239682037212, 0.004714120701901208, 0.00204040583555593, 0.0032454984891467885, 0.00291747606681834, 0.0023360024978947664, 0.0029691173398640343, 0.00297738086567225, 0.0031287557606194233, 0.0028582040531746635, 0.002449577029200135, 0.006927864953605209, 0.005995963557490705, 0.004244995225345617, 0.0040701017637404, 0.005750587349146423, 0.001972772453801289, 0.002633081421244183, 0.004612661968217689, 0.0028080370936378893, 0.002205625776508054, 0.00444520718532472, 0.0032675607809206585, 0.0042463260578779905, 0.00581591781698064, 0.005157786233385936, 0.0039691523939660465, 0.0022961690466011585, 0.0026929999210830633, 0.004987059891437036, 0.0020991314766002807, 0.0038890790162005814, 0.003606208047858624, 0.0029486650749140017, 0.004205683061247349, 0.007020439636987873, 0.0028952144799240004, 0.005309360996591182, 0.003437189989492057, 0.0041896911966315285, 0.0035753802786474185, 0.0029187053733777018, 0.002902893328457997, 0.0021961226846763265, 0.003312202974973653, 0.0024184028174319104, 0.005492373557614922, 0.00296475051792068, 0.005770481223876743, 0.002020775479013456, 0.0019351623504180663, 0.004269547245541067, 0.0057004955079243405, 0.003240554593734094, 0.0038312388285978902, 0.0034321571306158713, 0.005642871045831355, 0.0025737740392742002, 0.00228751346307973, 0.0023322686044245475, 0.0034618534596978453, 0.005511735349213754, 0.004807050549596088, 0.0024499921828710397, 0.002695639756587056, 0.0019791852640368784, 0.00422965887534324, 0.0017968141808085865, 0.004362689530159925, 0.004071854402794494, 0.0021563841822214835, 0.005491032588382395, 0.006852018922000621, 0.0035801551389548015, 0.0035958171538956023, 0.003381103021014279, 0.0037566582655408735, 0.004821794280742827, 0.001851780140554714, 0.0043608194028756635, 0.004246172261874012, 0.003658430193915925, 0.003090275639873889, 0.0026808854657433914, 0.0038011860890087177, 0.0031681229078408995, 0.005350576208400106, 0.004763451856587038, 0.002345434000166283, 0.0038642542775275458, 0.004538653906621575, 0.0036296505414955237, 0.003511988781363634, 0.003977672725549043, 0.003556695748503315, 0.002596512827228716, 0.0035693010402723458, 0.003507846089141565, 0.0012551439869970264, 0.004786759476837312, 0.0028508974724208366, 0.00431264965278562, 0.002013560027152166, 0.00444395866813086, 0.004071738767304898, 0.0034306722294902164, 0.003866114661573136, 0.0032527542589219473, 0.003257214795212507, 0.004790462514175324, 0.002742457623335389, 0.002923603163197689, 0.0028899254787146016, 0.002665232208443414, 0.007385003894592847, 0.0053953146045300025, 0.00863781477962758, 0.0021101182883153484, 0.0031423746230361182, 0.004990051596171684, 0.00300777113273954, 0.003293518579089331, 0.002706838892138935, 0.00292092115760683, 0.0027875299745014565, 0.004270978887075312, 0.003730219973556736, 0.0032727488748760885, 0.0025895209860064138, 0.0038507033904216933, 0.005542023143752019, 0.005099467839642232, 0.0024819855975713014, 0.003194237053413241, 0.0033170170709771714, 0.0019981430033212144, 0.004618295365552395, 0.0022521957978615613, 0.006064999437417307, 0.0028002247286210676, 0.003609765159973604, 0.003679684566129971, 0.0022501318898397117, 0.009074793400636941, 0.0025733349629706113, 0.003406819770109827, 0.004958776460717943, 0.005385470310370065, 0.0033271550252895856, 0.0027727251105471333, 0.0026117050229256733, 0.002607937385133661, 0.0037847774254750354, 0.002747773948143862, 0.008328795536621397, 0.0025918784307278815, 0.003002047154896573, 0.003824844735702768, 0.006652644283731179, 0.0035187591035272746, 0.002821300399010621, 0.002142405983162384, 0.004148384059655548, 0.002222853037300035, 0.0030678249929836495, 0.002090925759158996, 0.003202811862663605, 0.002228390092879656, 0.0075142384556100335, 0.009913158205085277, 0.004534737539598509, 0.0020469196385598, 0.003287344105460556, 0.0035537888873939175, 0.0032085814877395535, 0.0028446130410926173, 0.002432349078273767, 0.002472054662761452, 0.0025521204477984105, 0.003872201439626833, 0.0025969053724132604, 0.005890011314047883, 0.0041617035245492765, 0.00390244134995534, 0.012069877395247303, 0.0030284805915591984, 0.0037259788109525217, 0.0029859986236289576, 0.0042902110025371965, 0.001971445214252965, 0.0032518549797670845, 0.004296790857122935, 0.004707059967046715, 0.002882039000573802, 0.0027405546381320464, 0.0021692310721374733, 0.0038860681285947294, 0.002820008758781552, 0.0038295204277654384, 0.002780763176191768, 0.0033189578912294474, 0.004852171197025542, 0.002442765471569328, 0.003778281806163251, 0.0056253976822058785, 0.002685679635212146, 0.0028851310605775573, 0.005606345311802185, 0.004376213068375895, 0.005244447254897977, 0.002630339297662309, 0.00886901264023372, 0.003468800817410203, 0.005219877633760774, 0.002149095725411432, 0.0035187867995963044, 0.003572540790157029, 0.001939516036221544, 0.0030196359920011406, 0.0032841987655342873, 0.002715339689265725, 0.004318225574497842, 0.0029412518270305037, 0.011316539812572387, 0.004413700603832818, 0.0037667470006315013, 0.0026879920297368746, 0.0019905148429481302, 0.001878119686223867, 0.006741717646474568, 0.0031938845555955684, 0.0033178455610928374, 0.0029423165435292203, 0.0036260720325506104, 0.0030094087698532166, 0.006097085063797534, 0.0026684680626397417, 0.0034222202670597065, 0.0030956452973971925, 0.00403730339567958, 0.004634794384912844, 0.0025396452025238576, 0.0031928547302791663, 0.003333474915174299, 0.002326632126075414, 0.0069131061861861885, 0.003651296921597603, 0.0021631380256133784, 0.00974901826937304, 0.004795444242051037, 0.003242298420350647, 0.0031856369532286136, 0.003825930190502566, 0.00511914732738975, 0.003080738105373658, 0.0029079678341176946, 0.0031021761621828005, 0.0037505421929415936, 0.004616143278267712, 0.005658274042989857, 0.002227331598156535, 0.0038592798093212803, 0.0028365094808229527, 0.0024842628733746366, 0.0022954904995690045, 0.0026759021322971437, 0.0064119879691398405, 0.004369858973821262, 0.0034250030681432396, 0.0031685807376815507, 0.002756377544058975, 0.0024174721085594405, 0.013948047637992697, 0.0029372781621017025, 0.0027814337402671837, 0.0037131176571503443, 0.003342192507297132, 0.0033125489073811956, 0.003294138877613789, 0.0026471195598139737, 0.00230668066142667, 0.0030038995668878713, 0.0038352451320873373, 0.0030189266531995833, 0.002459420016924397, 0.0024532891846940972, 0.0029127404651668313, 0.002966432789163923, 0.002601826181404897, 0.0023263145487544316, 0.002793003419413869, 0.002809571510259827, 0.0060395987738263565, 0.005295014618269069, 0.0069917560608721285, 0.0029662356997377866, 0.0035659781591986838, 0.0030880079810394483, 0.003204004178143886, 0.003450991695635233, 0.002551528644042424, 0.003900879294831566, 0.003043421517265027, 0.003181421371469993, 0.006620373835863941, 0.00431308363914004, 0.002128273564058106, 0.003911698765277822, 0.0030218630689344364, 0.00361682872304014, 0.0027078454620327983, 0.002695699835434365, 0.002979487705944901, 0.002087416439962385, 0.004247060614927877, 0.004244147576459816, 0.003996873298956132, 0.0028635010668062915, 0.003650185122543447, 0.002286522173589406, 0.0038448591262929483, 0.0068468616289554555, 0.01496846409823439, 0.002720282231713539, 0.004378467417714969, 0.003151641171727862, 0.0024838113785507353, 0.0030235701212252045, 0.0037898077389227278, 0.003643647432984413, 0.003473097613120935, 0.006314428573548493, 0.004944146555188143, 0.0023775656122863443, 0.003925911101793874, 0.0019270388475384117, 0.0036717952050892024, 0.002286253077336598, 0.0037981727760477793, 0.004542202851538473, 0.002755318637235945, 0.0027635649778044342, 0.002390202707152498, 0.0028580312361169095, 0.00350404028374095, 0.003465109075961534, 0.003718522641264889, 0.0026839665594705167, 0.004147349747309339, 0.0035520768145483744, 0.0018876796383845197, 0.005085774077022978, 0.0034687574177776127, 0.0030522534262135, 0.0047365620847135605, 0.003565173030378819, 0.0032212947082205902, 0.005012965102770559, 0.0028636738704889714, 0.003423011533967375, 0.004464342967074994, 0.0028841639173173097, 0.0021528979915655813, 0.0024802020891662984, 0.004666246884840465, 0.003833869485936675, 0.002060801120560409, 0.0031623310421328987, 0.004461133375384755, 0.0032739410508702558, 0.004226385538723018, 0.00369457915664144, 0.002292519270300284, 0.006182512251030666, 0.003677459838213583, 0.005257123763488872, 0.004791214698415687, 0.0063870054521532535, 0.0035698373438109903, 0.003868191633468537, 0.0018137839874731807, 0.003302025752405905, 0.0037842005923410535, 0.0019592758125867495, 0.0055469760186794784, 0.00353613884346884, 0.002394408469918574, 0.002146748950171323, 0.006628474761941579, 0.002732694769226361, 0.0018043835810992652, 0.004353264465636174, 0.003931047611141955, 0.002443967582763287, 0.003359475309501173, 0.004259428842568185, 0.00634428269766626, 0.002859567864150866, 0.002270807007544434, 0.0022486277198881443, 0.0033703260558647806, 0.004912540141902137, 0.002560150499122099, 0.0037577599670495765, 0.0023685858019716105, 0.011497506678212152, 0.0021262138945449694, 0.0028813814166446317, 0.0033598015744132985, 0.005278942629032083, 0.0022833565527532913, 0.004303874307838983, 0.0016773101426077006, 0.00572854460576319, 0.0027917921425133683, 0.003219610211513905, 0.004583685756253067, 0.003049221788756148, 0.001659922153983842, 0.0076471747424960105, 0.0024092303938557337, 0.0019546535270748787, 0.002081210524394032, 0.0032989339628416133, 0.00876423795853445, 0.0033845941034756507, 0.0018494958218330617, 0.0021502332050145354, 0.003054068444271981, 0.0024223784833810663, 0.0026216453131383518, 0.0035136933919777276, 0.0023110305370718518, 0.0034194254040161845, 0.0014511336551610774, 0.00560897222231607, 0.0049588744197284155, 0.007393177455629831, 0.0030718540844032003, 0.00316895873651242, 0.00392701478665315, 0.002688617385898843, 0.001745288480869005, 0.0028291099564391837, 0.0029690329894785906, 0.0024999471659823626, 0.002233267772540697, 0.004922054427715521, 0.008611052677514454, 0.0022095028156887916, 0.002240128484168201, 0.007230057717929984, 0.005022789936845743, 0.003628227757285927, 0.0037166185994863413, 0.0030073052173285823, 0.0022788075845271835, 0.0035759850476631124, 0.005124154736419714, 0.002669001736020666, 0.0021335647878611003, 0.0034254148864563986, 0.003202430355281622, 0.0023741592992235945, 0.0023907914097050244, 0.002476676036507642, 0.003229602563865211, 0.004132038621021579, 0.002549469658592727, 0.0054057525895290425, 0.007501379526399102, 0.004058053530949167, 0.002254182447786687, 0.0026475120583568, 0.00346954988419306, 0.003897993150198569, 0.002889569402873521, 0.0032382858258300775, 0.0027062575229177648, 0.007292826314644422, 0.004985766112808107, 0.00372893386955795, 0.002510661421334967, 0.0018838602045047575, 0.0035731293854651277, 0.0040747100084950905, 0.003433428772280915, 0.003455567515880379, 0.0023676223608093227, 0.004614580879429604, 0.0028041290034908177, 0.00414141785774202, 0.004455507899352145, 0.003417397193710609, 0.002835147365502115, 0.00343723295651661, 0.004449110440683755, 0.002539561324941393, 0.002637980430386855, 0.003172199824475338, 0.0028156450393686597, 0.017836470319224813, 0.004503175997474761, 0.002764993834993447, 0.0039251724118834885, 0.002155191161610583, 0.006482179408546951, 0.003216754312829009, 0.0018727719181963417, 0.0049163396297172545, 0.0035931358365569113, 0.003351797058112339, 0.005668540074008508, 0.0036498895606853167, 0.005023148024130423, 0.0020120710661798084, 0.0034424667828444147, 0.002273191629285329, 0.004367158560630457, 0.0027552190779577897, 0.0035488609144199495, 0.0028383460580170628, 0.002985249334254464, 0.004822111752076694, 0.0033131427862254275, 0.0031505679322468027, 0.006451889600157741, 0.003329708466703926, 0.0021604980671829357, 0.002371304939132836, 0.002745888480588035, 0.004111022671713048, 0.0025656933620829127, 0.0033250422305646566, 0.0022225638394936234, 0.004577952051288994, 0.00456699630909291, 0.007213313914109074, 0.007388765184352347, 0.0038817517702403547, 0.002673879232910014, 0.0039019289365555404, 0.002407488833626383, 0.0034061433694318024, 0.0036182395110796414, 0.002601401424532843, 0.003732966560339478, 0.001592345395095348, 0.003700720950609104, 0.004832292150709978, 0.005034431632147018, 0.0025865882145472687, 0.0032038194746201306, 0.003732216162043913, 0.0052135949899609286, 0.0022311932035085713, 0.0033347983964954935, 0.0035539436211295744, 0.002015004160034893, 0.00421501975993306, 0.0023403640081306526, 0.0024083077273704566, 0.0035185983596664958, 0.005785057077316832, 0.00376206382099271, 0.00485466755294174, 0.002953531857407934, 0.0031084795997622385, 0.0022885424133288037, 0.003413308246630248, 0.005922932452796318, 0.002525688492053719, 0.0026899147103004095, 0.0039954027227629375, 0.005090655246237877, 0.0034241184418784586, 0.005391323697010295, 0.0032466030880722177, 0.0024092289766461323, 0.008654223746366181, 0.003102939445669616, 0.004099145847185457, 0.002456221488476054, 0.002335246800198183, 0.00434663121975265, 0.002886482526776887, 0.005090535743107015, 0.0023945514949648052, 0.002780500535950494, 0.002240390167851434, 0.003628799084702136, 0.00223312182069891, 0.003453493981260681, 0.002887417750539336, 0.0029584966151851807, 0.0024583473240705834, 0.0076254586419819, 0.0041302449504240875, 0.005836036265953702, 0.004044678410205447, 0.0023176946186011897, 0.002909498404708023, 0.005277067389232215, 0.004172428581261722, 0.002228330163427764, 0.0034681407064938467, 0.003919922749687881, 0.007048074200695156, 0.002857846779626542, 0.004635122628708701, 0.0021337425429096804, 0.0029588388838311234, 0.0018555311800718594, 0.0038868513516696597, 0.002874567574171081, 0.005495940071134705, 0.00421765099356295, 0.003172415572405314, 0.0026148985675429485, 0.00534106437269441, 0.003965780627589269, 0.0018114410610038008, 0.0033655728162425404, 0.00263086358445865, 0.0037076643065322165, 0.002433879040331668, 0.0036000300871791785, 0.002038547692631314, 0.0027170597835618634, 0.0021416181292827413, 0.002552873596486628, 0.0035973461207346935, 0.008368456512603838, 0.0027694501333534226, 0.002508709791965684, 0.004592925654800096, 0.003912598475390353, 0.0036378301458800237, 0.002902668517893936, 0.002592512483087351, 0.001977451861490444, 0.004322227074191614, 0.00415125670415478, 0.003709116839875337, 0.003377525333207885, 0.0026439209082229583, 0.002718678270987436, 0.005262039443213748, 0.0021261728043199092, 0.002578230187133271, 0.0028132166482505313, 0.002560124366954545, 0.002469330008779128, 0.003249416565218607, 0.0025759386180173034, 0.0027125335939537877, 0.004156668778957624, 0.005825860419400111, 0.0022557700926729594, 0.003318222549932537, 0.0018342811747553505, 0.011817300495410583, 0.0029226733484583765, 0.002559752017368147, 0.0033445730474648957, 0.004756583407534368, 0.0022435643591386285, 0.008746284783708619, 0.0036190608702818317, 0.0024191694504104603, 0.005158058751102848, 0.0029974786282042274, 0.0033667661785764997, 0.0068607019096026765, 0.0027227688468894557, 0.0033169446934421982, 0.004505434905847415, 0.002008008975818352, 0.0025332170673454417, 0.006966195351701345, 0.0032181275498534972, 0.003050277553439115, 0.0031941772149610297, 0.007172073061081662, 0.003336715078053416, 0.002351761090116326, 0.0026545417156404842, 0.0023668133566568787, 0.0033927003587787665, 0.002794958816494921, 0.0032593564556057933, 0.00403633539856202, 0.0028369387221295174, 0.0028675497042983194, 0.00938249333615149, 0.0028023954508523074, 0.004719797217553676, 0.005626033553772272, 0.005614962285650373, 0.004324438557526051, 0.003377083643307911, 0.005735687112243593, 0.002736447364407919, 0.0017536234793674769, 0.0043534712375185875, 0.011044986893896502, 0.004188863371419558, 0.004537125671870981, 0.0027425271284712933, 0.0026194911132610427, 0.012655001855940115, 0.002146535976649607, 0.002606579531882718, 0.00336743355604611, 0.0019677928233286816, 0.007542883496400152, 0.0024878958572747524, 0.0038491136166293035, 0.0027753062494450063, 0.002967983681700705, 0.002869103164890941, 0.001712757722896837, 0.013128085675789746, 0.003665208222482553, 0.003527927701262981, 0.0032380353083100383, 0.0031865303819311173, 0.0023124352947693294, 0.0024833383905063086, 0.002438895163148687, 0.002387611800436922, 0.003749596812818471, 0.0026453379580978456, 0.006824655233463711, 0.0054976175029905466, 0.0029057212890497017, 0.0025737792207208765, 0.004241480454514867, 0.004056409657599022, 0.0029017198241983603, 0.0022632539747934662, 0.004123341884903259, 0.0017589145803988942, 0.0036172466197079154, 0.0036968529184178813, 0.003217366977037072, 0.007523087249468856, 0.0020913648726985307, 0.003463174791668696, 0.002072258089654077, 0.00498795956018171, 0.0027983763069525155, 0.0019552793217821906, 0.004061988518759143, 0.004327135811207765, 0.0021891251776313984, 0.002230156557750157, 0.00432992483318147, 0.003748911657315783, 0.0033558530707255667, 0.0032035780055447356, 0.0033449839690029943, 0.004462314083115386, 0.002339005026865356, 0.0037535297650859376, 0.0038378255478368796, 0.0029183986987968693, 0.002334781933828472, 0.0026815774874540043, 0.004087279963757731, 0.004710272161615935, 0.003700624289090678, 0.0022067817008841898, 0.0017893448490446605, 0.004213974201704573, 0.003578252317554999, 0.0028016026737478074, 0.002176791278274719, 0.0023414605334486365, 0.005734420739322488, 0.00308121026420681, 0.004209489484560904, 0.002103387024116275, 0.0056525363637978015, 0.0032131486939264873, 0.004087131929668341, 0.0020681235401419067, 0.0026476978115463957, 0.0076868575681687855, 0.0025698992841540385, 0.003768813480330313, 0.003322824601326803, 0.002416794287117545, 0.00427975961344562, 0.002100663037682652, 0.0063960461033894704, 0.00584687004732905, 0.005181156802296211, 0.004372247915798718, 0.0022589488902199583, 0.003984634069510541, 0.004260654535553262, 0.0031084793229734257, 0.004402667826137572, 0.0037487547959225557, 0.0034140846939958733, 0.0035377651425664764, 0.004719185824857723, 0.0037249264146701363, 0.002428216585694945, 0.0032203700560180697, 0.0030570267696545294, 0.0029816586835749483, 0.0025405704585919663, 0.0030314679690817753, 0.005266692277057307, 0.0027240940952169583, 0.00365222676299485, 0.0033215010167866855, 0.003492021594213203, 0.0033174889068151954, 0.004717712953653003, 0.004264531440191611, 0.0028598500385478686, 0.002173077562671503, 0.00279044733331682, 0.0035682169963541003, 0.003632790574962446, 0.003959499738502439, 0.002461992450808402, 0.004776007044779686, 0.002332755766141519, 0.002582267020937341, 0.0031509153486135554, 0.003081626204522019, 0.003951732834613143, 0.003256443908278294, 0.0037674550528000116, 0.0033299878121482067, 0.004401944532223803, 0.0026169658687337496, 0.0022535918184925746, 0.005255742404090584, 0.004283280312578706, 0.003818254083234643, 0.0030784737151388114, 0.0036748771696556736, 0.003301708783044018, 0.003910037124115216, 0.009198685242464706, 0.001752032095852707, 0.003285856802223059, 0.002926686914603467, 0.002394784802422507, 0.0033994420166203318, 0.0031264417486826465, 0.0020024877862915634, 0.0028344547196580442, 0.001886869359683763, 0.0027932163920418025, 0.0051738998448221584, 0.0029047500514487934, 0.0028498385079031617, 0.0024511778601391645, 0.0030788449359604115, 0.0038231086824671552, 0.002303543991645365, 0.0029873981834686826, 0.0019453322219650012, 0.004225311323665646, 0.004331387818285243, 0.0057522076175381106, 0.0029036966369539257, 0.004619570991378915, 0.004656177631114772, 0.0016018783044888414, 0.005377953630867493, 0.002455764518043969, 0.0018915985422150315, 0.0032726796468441947, 0.005596299635940635, 0.0032472172289089245, 0.0027651332271956793, 0.003617834686024277, 0.002639004512348069, 0.004290951548335827, 0.005224729189267618, 0.0029325491190465925, 0.002012745793452806, 0.0036224109545585936, 0.009235472850633, 0.004549345019316078, 0.003692167505907386, 0.0030905217030774575, 0.0031469400583716617, 0.0036701312761096153, 0.0029307751267554825, 0.0030426154111161227, 0.003854122058727381, 0.008802278762801225, 0.0033277264946043163, 0.00514699557547525, 0.0020976039627154295, 0.0023724573493160307, 0.0027169841376503967, 0.006071872369848311, 0.0018694896417479523, 0.004838971688787042, 0.0064736477548215056, 0.004553538691529803, 0.004436171231350733, 0.00300592940393975, 0.0019350967383772659, 0.0038126246369946442, 0.0031328707234748628, 0.0034475621113128504, 0.0029718676300730822, 0.002279302211454141, 0.0033156340372137634, 0.0034809682085243884, 0.002435540943152497, 0.005823084259183378, 0.0036197650501770665, 0.0027584243407874328, 0.002738330688429049, 0.004042842995483647, 0.004596105838795021, 0.003480839732742008, 0.004475118754140566, 0.0031095828862668347, 0.004587849745328097, 0.0038464804976403957, 0.0036253455580812603, 0.002854519170362799, 0.0046871039796035005, 0.004351368314884021, 0.002221914669884731, 0.0031526404112535247, 0.0031856985421867177, 0.002483488679320797, 0.0038444064716027806, 0.007091451738141801, 0.0033859546314746725, 0.003068658996417569, 0.003879629076463197, 0.003901413082192144, 0.0022577697629687925, 0.003265650821912539, 0.0026311875159376157, 0.0019322157828826562, 0.00335489739579608, 0.0033783018307309252, 0.0024443940075359544, 0.0016254196013175564, 0.008363819263353807, 0.003666517577953854, 0.0036068041214362633, 0.0036848591325708913, 0.001866964177951488, 0.003566484455405894, 0.003416526997950023, 0.004385351717336812, 0.002719417132972339, 0.003533930232756992, 0.003405964232375475, 0.0034215866551841113, 0.00355711368030603, 0.0027002278269808414, 0.0037758928192079427, 0.002610886420268645, 0.0017615330235800394, 0.0036628912682814146, 0.005349046742736894, 0.0032448189351478585, 0.003581967795939963, 0.0042997996812425155, 0.0038715614531186445, 0.002294670656690762, 0.002436105050541446, 0.0023647607722049827, 0.0036395900001736092, 0.0020551203255668934, 0.0031152999169176796, 0.007634932715641894, 0.003609777030593758, 0.0024133011280323565, 0.001925005309249515, 0.003957981668965071, 0.0036721807756593776, 0.0022843951347888782, 0.003964817846661929, 0.006066831103390144, 0.0055513495486161244, 0.0020551263292955513, 0.004494187794556224, 0.004318254071067408, 0.0031789775445529014, 0.004385063378118774, 0.0034329087098278455, 0.004247704119456191, 0.002421737530303139, 0.0031530695222369365, 0.002678483216681688, 0.004103446101430044, 0.004921341403642352, 0.0025196018254011153, 0.004099227015180168, 0.0027962457615343882, 0.003063924384580335, 0.0030387452725947495, 0.0076138276891295235, 0.0023675491557272102, 0.004222648150522067, 0.003954837216294286, 0.0030358109841818618, 0.002873840643884957, 0.0018778661363479756, 0.004316499568966758, 0.0034271499020982845, 0.0033376766632214664, 0.00396511869749824, 0.006272092063168791, 0.0027401919977204075, 0.0026786920689731045, 0.0020911126992747514, 0.004888643956195886, 0.0044586251819586555, 0.004767864740157441, 0.00446903073936058, 0.0034297084164175975, 0.002729504776534928, 0.0019941228168116796, 0.006014705122656834, 0.003485469907696894, 0.0017570339162359127, 0.002681680591852346, 0.0031393473090059335, 0.0045095326860320915, 0.0020654539583567686, 0.00797271995061177, 0.0027946122320504302, 0.0014900929790103263, 0.007676273396860579, 0.0031071257027467706, 0.0034562820949556533, 0.00325858406483599, 0.0030729113668890667, 0.004293194093362266, 0.00870468266494989, 0.002090096705549501, 0.0026631964158323564, 0.004001252074831938, 0.00383456842147651, 0.0028204109521626245, 0.0033300286858617507, 0.005274903637501894, 0.004967625583131725, 0.0024890461786968715, 0.004979664207974422, 0.002689000295484251, 0.0026557845741222988, 0.002343026929908248, 0.003410905212987838, 0.005725525099456718, 0.0023604679775248234, 0.0024130613591961123, 0.005100099415435898, 0.002784627361714482, 0.003411426381890241, 0.0037484374130374856, 0.0031758557506406278, 0.00228065158392389, 0.003729968620244459, 0.004185537194057156, 0.006266410449743609, 0.002802446686060239, 0.0032125346168126096, 0.0019010295195512252, 0.004265504448065839, 0.0016563952764759127, 0.0038117107213048044, 0.0069132007876308785, 0.0036353684170958764, 0.003583223480163344, 0.003356551973189118, 0.001639841906485754, 0.0028853087738151774, 0.0026227834025190407, 0.0037397867394993413, 0.001956522820545039, 0.003616383751656201, 0.001797482645203166, 0.003097973383154283, 0.004426730944355587, 0.008646573956260669, 0.002499816717535723, 0.012009872574546986, 0.0024912788259862204, 0.002598580988081563, 0.0042301849147775, 0.0039365632654604285, 0.001908645053304033, 0.00343992431877945, 0.004724070278583453, 0.0016219036761481857, 0.004721620653680137, 0.003103151942812385, 0.00355411738867764, 0.0049315733796056836, 0.002229455062704811, 0.002380146365835867, 0.002674747576273756, 0.004009108610318099, 0.008099603331020454, 0.00648620392958065, 0.00797570995786125, 0.0020653447768229, 0.002793058544956239, 0.00217880686442586, 0.003974739515328724, 0.0021814885218104313, 0.004261163884846663, 0.0029482260592328608, 0.0017083787723138379, 0.002713106063164373, 0.0050386938030634034, 0.003762666977827894, 0.0026804745020139165, 0.002995336228959263, 0.0032655070086663406, 0.0026581144459019894, 0.00426537249518158, 0.0020567282841252726, 0.00657642581877097, 0.0034508041779425526, 0.0030974056609292437, 0.0034584596761920083, 0.0017647353336295146, 0.003417776400108026, 0.003169158414921237, 0.0030664515489308604, 0.003450796090471394, 0.002371687973275154, 0.0021658654905799117, 0.005400237627556937, 0.002499418918871597, 0.006097568756697428, 0.00372714656662639, 0.002759145605792581, 0.001974241809094613, 0.002922162945186815, 0.0033858887268138427, 0.0028198746074720358, 0.002497684835174267, 0.004202471622296019, 0.001861804734583574, 0.005448383230851429, 0.0031746357185969813, 0.003841063521098248, 0.0023886331484898617, 0.00435437581161075, 0.002953875585864727, 0.002634798627578592, 0.00279510012111039, 0.0031361229792708743, 0.002902555659063894, 0.003234620552705853, 0.004841952830949423, 0.002557121329582859, 0.0020133829240937154, 0.014676965662199198, 0.005596921923061649, 0.001455901997965719, 0.0034913980315763723, 0.0034179682920296847, 0.002300798542409745, 0.004150016414970703, 0.007681355383701292, 0.0024418206260739504, 0.00484366116773019, 0.0073383748496325864, 0.002728963111983873, 0.004048416698294655, 0.0023555338209537064, 0.002867084968319308, 0.003087998861198731, 0.00276850442555025, 0.0015366057899361288, 0.004593477753622031, 0.007254619881671696, 0.0024825243911358813, 0.0034726567871718496, 0.003223921094501389, 0.0022739479018967657, 0.002130146501772724, 0.005482996638378107, 0.006826792173828103, 0.0026751494632688876, 0.0026065564358760253, 0.003317349060847535, 0.004218024706158104, 0.004191933270463867, 0.002480927039279456, 0.0016202108641113187, 0.0041741299026574995, 0.00391017732535212, 0.0021185292537570276, 0.013735174743909447, 0.0036334510569969287, 0.0019348497964218568, 0.0027310766943589694, 0.0017263136216089426, 0.0025258274014109574, 0.002099695383058821, 0.003870280063116805, 0.004098945374114266, 0.0026359961605704374, 0.004220328149130734, 0.0027557108308191914, 0.0016569328528358625, 0.0025797241331574046, 0.0035678583045848033, 0.007051947429837328, 0.0023504203711014735, 0.003943091785433823, 0.0042593938048952045, 0.0018984172212727982, 0.0033242114153299294, 0.0065235770867016485, 0.0038714846269196136, 0.005871093209686167, 0.003637406898794397, 0.002716688287979453, 0.002090161121562365, 0.0028455461655443963, 0.0046060214950804975, 0.0026841540414912703, 0.007953857948681212, 0.0033055782126930728, 0.004763329613459113, 0.002358189903662652, 0.0036227506608201843, 0.0030877690935818512, 0.0029156110306237763, 0.0023084761501279633, 0.0036009231338025244, 0.00715530951991519, 0.0038910696463613724, 0.0035838917477546257, 0.0025851897095828984, 0.006869568326460175, 0.0020777233121783995, 0.0038394005992825214, 0.0022862984880862016, 0.002983258389744181, 0.003307052338851555, 0.0029014360708950683, 0.0034226049719901326, 0.0026255337001470013, 0.005297571802223427, 0.002195023971620034, 0.0036964306705790143, 0.005935964016019984, 0.002244693355115861, 0.0023516619214144475, 0.006167316130810729, 0.002324823324198046, 0.0036165696726615805, 0.0038473659697030468, 0.006375637303309001, 0.003182933561886595, 0.0023921660710885294, 0.0030449501487560845, 0.0027545145971668494, 0.005184458946146652, 0.0014438934030934953, 0.0026476971326913085, 0.002206494402147075, 0.0072402157215952735, 0.003965370584697233, 0.0036128641422264783, 0.0016170154769112421, 0.004323264363955765, 0.005482108812855756, 0.0019136162324266172, 0.002313003812504687, 0.0029802623529974303, 0.0027314761573624126, 0.004951261201811448, 0.003380198333953166, 0.0018053365874460057, 0.003140003239589429, 0.013095094896437797, 0.0026745744220813454, 0.0030815644965569416, 0.0039127037539635895, 0.003015280588149908, 0.002653347551127603, 0.005877343455855646, 0.0019387189268013944, 0.01268737858754522, 0.002372832041898948, 0.0037193088150958655, 0.0036697430090187264, 0.002448041217944618, 0.002669384708630396, 0.0015975156544982155, 0.004673265541773624, 0.006658382920508248, 0.003041138518137819, 0.0031161127680903898, 0.0021757509527144735, 0.002011042974663082, 0.0025091121302043347, 0.0035190848056158236, 0.0017413537710780226, 0.0061490171061187844, 0.0021066319483631717, 0.004002737499713521, 0.008200830604743376, 0.0034657670772102675, 0.0031673927879216648, 0.0044745928429910115, 0.0020379398608093542, 0.002840021795169927, 0.0017725483811961346, 0.0039013894502164304, 0.0032815868386376424, 0.0022678021410539374, 0.002637103051381636, 0.006902974388553601, 0.002496592457940033, 0.002302044293261668, 0.002002317683415214, 0.005283559156088065, 0.0016319883249039247, 0.002101891810364646, 0.0027776242142158805, 0.004735741556227551, 0.0024044269131524654, 0.0021174189949810063, 0.017671428120456485, 0.002677171392177117, 0.001517895602844504, 0.0022962470085473516, 0.0020786489356684167, 0.0045551274993914604, 0.0023146163725637865, 0.0030887141621194613, 0.00409344688009842, 0.0018254983201686445, 0.004044956228982401, 0.0019418628739646788, 0.004068758433062112, 0.003143145178469347, 0.0018677409675680867, 0.0030338879376496744, 0.003529615667791101, 0.0022354800464923783, 0.0017447662595236172, 0.004695813158899163, 0.002851723433972329, 0.003043276569594168, 0.003999853182538688, 0.002493463241479825, 0.002038067988541486, 0.008421536456059699, 0.0020926288369624586, 0.0023246294342677476, 0.002073080986233988, 0.0024445939159757368, 0.005498216036522822, 0.003259092455174645, 0.0050403471274872375, 0.0033108951809760674, 0.0028450598875577665, 0.0020037645621176015, 0.004589684738956968, 0.0016307407095833572, 0.0038410254679754076, 0.0034889117099062826, 0.0037575944950551583, 0.004502740754755862, 0.0020403701616467447, 0.0061325726289141015, 0.001981981150743329, 0.002884015016642178, 0.003555630466792826, 0.003492045690259895, 0.0026765755760944625, 0.0032176931075104513, 0.003821389522670242, 0.0017960270652826941, 0.0028394762937531065, 0.008456482674407365, 0.002138705550084185, 0.003292589011261187, 0.0029336947447804783, 0.0035023052167258645, 0.0025189866009548657, 0.003983195634061465, 0.004149032381347949, 0.0021996161264743637, 0.002961503307599888, 0.001994962449628694, 0.008498555279328229, 0.002992424437272062, 0.0024429374158663514, 0.00412614441167344, 0.002267086263293464, 0.002971854732705171, 0.0030105038528421696, 0.005658244022923252, 0.0027359057459155705, 0.002428871701879094, 0.002195254600955344, 0.0030557149220338435, 0.0020816586421006375, 0.005202641501458508, 0.007734580170494085, 0.003232610554333882, 0.00393966024239799, 0.0019837879657246564, 0.003041199048773963, 0.0021982882640402233, 0.0033997604758447776, 0.004757022433016348, 0.005802550394958318, 0.0030785200172611417, 0.004393647423297028, 0.0034740393242860385, 0.0020155474225747897, 0.004135623781433478, 0.005205276028805051, 0.0018628418771272919, 0.0031105907769089112, 0.004520113504081434, 0.0035260870652853308, 0.0023424921537190174, 0.004064952605178184, 0.0028016925720873095, 0.005114757504409712, 0.002614948808312905, 0.004223765532120555, 0.0031343054347532768, 0.0016147931727824847, 0.00423684109166435, 0.002584697182563652, 0.0025536705044119706, 0.002626234543614415, 0.005625746505997032, 0.0040327591938366224, 0.003081995757425289, 0.003258853143090252, 0.00248464373374197, 0.003238181741990322, 0.0026834178481329515, 0.014400902323969771, 0.0025113845143974736, 0.0024492754847411364, 0.0021168718757452005, 0.0029589717836180974, 0.001951284104531869, 0.003387814368752101, 0.0017109815614228287, 0.0051133746841356, 0.0031898235944489415, 0.0041339909240139736, 0.002141510949256686, 0.0035358152853892655, 0.002130886524563227, 0.0023634040806461056, 0.004393687449582952, 0.0030465480297018743, 0.002772135979079306, 0.0023845880711498265, 0.004300016830936961, 0.007999973444139686, 0.006544149632978595, 0.003485390081448989, 0.002234425102155483, 0.002499002326618802, 0.003941372424923187, 0.0030337442524535577, 0.0027316754885403378, 0.0019072532830080335, 0.002964969745634311, 0.0021766101854837155, 0.006667663850544443, 0.0027973855134666597, 0.003796356716617861, 0.002404349231691339, 0.002776203980325682, 0.00334308903668074, 0.0029590354202424815, 0.001962208811622135, 0.003849610819247555, 0.003158476586191945, 0.010897476359161785, 0.001639985566972517, 0.0027653627705505495, 0.0035846753588989868, 0.0024182468018766183, 0.0036209571376739254, 0.0028764606582560343, 0.0034294794326339777, 0.002031798310464677, 0.004256752236414558, 0.0032189267761786435, 0.0022735008952696504, 0.006831103996364106, 0.00278353959028126, 0.00440285901877792, 0.002573146933596737, 0.0033779564449836637, 0.0023739656140909513, 0.0030379608806647097, 0.0032780334848530393, 0.002772233135195485, 0.002196180639882239, 0.0044474023797125405, 0.008545283796210867, 0.0026970755030260585, 0.004907631175116488, 0.0019141764642258145, 0.0029377295348177795, 0.002459386257310248, 0.0022301716700853184, 0.008678548188506378, 0.0058825265518566445, 0.002780845850835667, 0.0030674396769608545, 0.008641424940369683, 0.004201110564095069, 0.0045099246862615105, 0.0022077230025715645, 0.00217989574543092, 0.003025689829778931, 0.00338736800301333, 0.0027378725358792036, 0.005105827759141499, 0.0019084317603517396, 0.0040168232513017555, 0.0016395846548766433, 0.0045760459167745, 0.0023136368794937825, 0.002205870429774501, 0.00492590947230495, 0.0021032961802927336, 0.002776103954235311, 0.0034398106684416117, 0.0020557163144316578, 0.004345784194282708, 0.00964145848794391, 0.004410971593291265, 0.0032490246213718174, 0.0024313446913701744, 0.003971254627679492, 0.0021459447906323433, 0.0035886380016430562, 0.0018507967322481799, 0.0040652847962661404, 0.003372825493267972, 0.003328297734056333, 0.0043806636924090345, 0.0014189138967473295, 0.004716327695800759, 0.00319658584705914, 0.001890465251454449, 0.002110600797591696, 0.003575327540998796, 0.008620646154437346, 0.0034670719781174524, 0.005702799416649756, 0.0023840967084794934, 0.003349855251558856, 0.0034826315773208516, 0.0030328642863303983, 0.0024543960425616683, 0.004527761370827977, 0.0035791915944370528, 0.004743353999656986, 0.0025627386234216188, 0.003848065278984381, 0.002244070778430438, 0.0047916303107993965, 0.0041761300862426225, 0.0024437827583173657, 0.006888640810188607, 0.0033062228242159743, 0.004227448898111315, 0.0024191002561837266, 0.005280851471625732, 0.005670034483606032, 0.0034499454318784616, 0.0025567488600551328, 0.0034426969460339013, 0.0027176182502362547, 0.002687290655057237, 0.002153168758281024, 0.0036356722106142456, 0.0035217362400113334, 0.004190880287354826, 0.00249713009353968, 0.0041229989459553315, 0.0030223226452522813, 0.004868043216488637, 0.004113328085236718, 0.003925584844800403, 0.004384708143126613, 0.0053508978843638385, 0.0053619422760598145, 0.0019179447062726486, 0.0037459250805029027, 0.0022784007924173608, 0.002784847818310648, 0.00431797004733619, 0.003776839535674599, 0.0035282438287408692, 0.0022167553013932553, 0.0025937503577433464, 0.0017519294683062138, 0.005997460513338437, 0.001413066594595008, 0.006472859047719259, 0.0021217541661207777, 0.0023309584277265588, 0.016850000023155978, 0.0016663296005119863, 0.0031905835382386658, 0.004452780153597776, 0.0025313752025316024, 0.002332110008986018, 0.003695415740975312, 0.002192605433850688, 0.0026387418661398803, 0.005431503439777454, 0.005539240187031715, 0.0036179869545203405, 0.003205147152174902, 0.004289167243682859, 0.0022745425830789363, 0.0036189301804168033, 0.0035459029504444723, 0.002589968754082491, 0.005141677584758997, 0.0024384841931272784, 0.001555679816657099, 0.0035998343355050045, 0.0018724585135206843, 0.0026775561574448052, 0.002866063126974259, 0.003271938712375252, 0.003699047999766668, 0.002893474320100538, 0.0042496458522705, 0.0023373063387307847, 0.004028620463668939, 0.0029953596931767148, 0.005051285150125777, 0.0023277544675081316, 0.0017297556338213174, 0.005211414333710389, 0.004937980953288735, 0.006499437203719549, 0.0047140769947511055, 0.0028353380997654604, 0.002780478376206822, 0.008449380583359782, 0.002388543470382206, 0.0043284597643140675, 0.0022391664462153996, 0.004157345386025692, 0.0028482169435118435, 0.003267884107771699, 0.002956821341841535, 0.002779057189441067, 0.004413335831487544, 0.0015751810455898508, 0.0018103705370157476, 0.006519229151692144, 0.002133284047114306, 0.0019995059668361263, 0.007127788031144948, 0.0035629515521480573, 0.002554376948334746, 0.0030504970151950524, 0.004607958385635597, 0.004781079563497436, 0.0046557964300477555, 0.0020068022486308757, 0.006374000737612344, 0.002331492486819453, 0.004660412473782564, 0.0024320686918985436, 0.00400663833563112, 0.002906641553200786, 0.002675644740944081, 0.0037757705849989984, 0.0026678211511027526, 0.0021486002020608313, 0.006797210872761439, 0.0051059830398284736, 0.005393622946651555, 0.005793518192415034, 0.0015728825182252837, 0.004311691034818925, 0.0016097926522462536, 0.00524506788572175, 0.0033391893526129902, 0.0033693478551682318, 0.005680033838683802, 0.002315397488913614, 0.003477123669821944, 0.00306932594933029, 0.003103592329213896, 0.006359545280100132, 0.002291762871319977, 0.0031447551777145583, 0.0037659646816004637, 0.0019527238884491979, 0.002431171026475119, 0.0025080750975354136, 0.0037832837500714686, 0.0032606494669281034, 0.0024556378270987533, 0.008935934772989287, 0.002085667153931082, 0.0040757663224653936, 0.002290683087403875, 0.0025135803784223183, 0.004193658638578092, 0.0011516968032320742, 0.0028305924971811108, 0.0022459138677946113, 0.002045284292283315, 0.002909619668457687, 0.00814618242991605, 0.0027553002711869883, 0.004135976626148326, 0.004132560029937803, 0.0020490049370036015, 0.0015903471903802393, 0.0022959139891090266, 0.008206630602130656, 0.002170376966142952, 0.004894080295802071, 0.0018440590590729767, 0.0032589408233752943, 0.002786678495524686, 0.0023323018452380846, 0.0015650337974499426, 0.0027718802320381474, 0.003084081809539954, 0.0033797081190994212, 0.003330550884061387, 0.0035008441309937522, 0.0023053461569271017, 0.002891700392367999, 0.0026990354878114664, 0.002338060890420411, 0.0036055391183073557, 0.0023471416506850077, 0.005949379846945087, 0.0022847371148277773, 0.0034140700728493554, 0.0042125709131884065, 0.0026278364283871545, 0.00256367245388807, 0.001996895785792549, 0.00563412854340868, 0.0014651741049206703, 0.007095829094417484, 0.003473458477372727, 0.004605772477539125, 0.003467152244562271, 0.002845170971546081, 0.0035759540898101425, 0.003420601024375512, 0.005483456767836833, 0.0037695070631128132, 0.0023586894027029536, 0.0028939016869891747, 0.00573742305306669, 0.005298029437602844, 0.0041769271600630735, 0.0031362905736288076, 0.002743368621968999, 0.0024179580107027395, 0.0062030409884952335, 0.003352877178658733, 0.0027588486015473848, 0.00365992060323895, 0.004416067019726183, 0.0021479701332304878, 0.0026251408483798752, 0.006288553533256932, 0.0023199235864984134, 0.002900264028510568, 0.0030471220796887653, 0.0068672788336984645, 0.0029123066887861964, 0.0038194911059343966, 0.0029345548803061776, 0.001997031178105101, 0.0027496555454101413, 0.0014697526396741083, 0.003016323594549071, 0.0023785810499623297, 0.0016031385806056953, 0.0024213755418190106, 0.005541189283859834, 0.004226550729972465, 0.00297430295269784, 0.0020643914844948592, 0.003031359260090455, 0.0020677426637638304, 0.0028090196196420797, 0.004779083454110702, 0.004026656845298407, 0.002824212258452857, 0.0031117885423218093, 0.005158856102466015, 0.0034696001506031838, 0.00197868884580179, 0.0035115994826205566, 0.0021874213145839, 0.0026830874335727495, 0.005092013500227774, 0.0032942234919732965, 0.0022177804359829086, 0.0028800399823821566, 0.0034463396330514278, 0.0018316107509135742, 0.0028988178671848436, 0.0018422182264408974, 0.00673298839826777, 0.002180992965525029, 0.0070396932476467595, 0.004485250981979881, 0.002996827494943901, 0.0026145812062248882, 0.002997609957326924, 0.003936433598433922, 0.0018132544313988433, 0.005985594927945913, 0.003827691409872624, 0.00250343668756081, 0.0036589010749913512, 0.0035667996119698522, 0.0038584837933358595, 0.0016466407357927503, 0.0025818781352463394, 0.0035250699898597957, 0.0020981555789094377, 0.007463175181448611, 0.0027579966070341673, 0.0020645608889874978, 0.002247887156036514, 0.002443940366690463, 0.001997795852390659, 0.007667948438981369, 0.0033948970823926552, 0.003424667042111988, 0.002909816049735947, 0.0034810593743333923, 0.003095534369040397, 0.0036698989977700736, 0.002163685648763048, 0.004198162560690756, 0.002243219271292086, 0.0027729458157098067, 0.0031088815071873962, 0.0025341249404128565, 0.005053486761846669, 0.0032798417348239616, 0.0020303232177689865, 0.0023429903661375063, 0.00326942636170406, 0.004661905769133268, 0.002347300281142867, 0.003570095632352918, 0.00251661723770952, 0.003967309283870445, 0.0020633180822889445, 0.002780055200001272, 0.0023670031112807124, 0.002674576491829923, 0.0027278857987020908, 0.004569059078414526, 0.002652595298495446, 0.0019194503325766412, 0.0021271842457751115, 0.002265620153444852, 0.007830772867586941, 0.005367265776424559, 0.002461607053847418, 0.003235226689484925, 0.0036350994875204087, 0.001709907830690498, 0.0019372656952018157, 0.003923619277988292, 0.0021865473439940056, 0.002374102539491989, 0.008426307583018195, 0.003253082850580821, 0.002278456662289133, 0.0017699808601580713, 0.0037088962683418207, 0.002251180071072252, 0.0027406255355095985, 0.006248281401060296, 0.003926067365244116, 0.0033538266032920247, 0.0030476305110268232, 0.00249394971704085, 0.007423405551737407, 0.00339848715781502, 0.003771309861950558, 0.0013126383658730858, 0.003927438048600557, 0.0021995530553072687, 0.003294122154736336, 0.007058223683739685, 0.0043991175997469874, 0.0023639676887269494, 0.007190489091241569, 0.0018752124002956974, 0.0022788363315651597, 0.003567124131167947, 0.003881769145537073, 0.003556405181947115, 0.004567928888720561, 0.002488326233433, 0.0020193781283884427, 0.005709601401400784, 0.004040642117549069, 0.003597693657030008, 0.00519130979697848, 0.0022721485389335097, 0.005564449010565924, 0.0030487607725349013, 0.00287021312899547, 0.002104609573714047, 0.003303000028169962, 0.002925260776005096, 0.002458095515277145, 0.003173775043486459, 0.001811468593790363, 0.005367682756872745, 0.0032557276179631623, 0.003723015836870571, 0.0030106985801749077, 0.004177829598147014, 0.0028159713882367826, 0.002642298399969863, 0.005352727324190355, 0.002162400519541815, 0.002237828768536974, 0.002771596056063073, 0.004274220997858175, 0.003973206967566236, 0.007276501976006276, 0.0029026307539654988, 0.00270538705268287, 0.00264995287635786, 0.0029240196076510644, 0.002912130278754473, 0.004965798453156177, 0.0029354556587554417, 0.002494993478130099, 0.0023345156066031355, 0.002884075543158088, 0.0014592773070788707, 0.0027040695702383985, 0.0035602462303302392, 0.0038074441059964778, 0.0024546273731331602, 0.001638872406008177, 0.00935761434770085, 0.004314868218605621, 0.006988133823916731, 0.006873683344864263, 0.002212769340655585, 0.005913067697917265, 0.003310687711106991, 0.0032408139628604137, 0.0034405606583676578, 0.0024786226621575777, 0.00268567336307937, 0.004012675834144945, 0.007429174996768974, 0.0021433997836720945, 0.003122624681856632, 0.003434292673920641, 0.004047085692080494, 0.0018885566997555176, 0.0031642749159022402, 0.0018646487878417773, 0.0025722777904018156, 0.00317503410773839, 0.0029092669567862403, 0.0017631511270624171, 0.0017203400281069873, 0.0018991552597483804, 0.0029208781333912815, 0.004983396107679644, 0.009824959696765537, 0.0020923537016997807, 0.004469438107816299, 0.0025227961808589267, 0.0021827995566394117, 0.002343618535877502, 0.0033747966758640078, 0.0025131267394991456, 0.0024481149073236883, 0.002770349687553183, 0.003428610739070013, 0.002797698903045408, 0.0027331425876083873, 0.0022362027873284534, 0.0023173844975229113, 0.004358824147123772, 0.004545383240329376, 0.002767523907947717, 0.001654297296214936, 0.002260116967482983, 0.003449514485177701, 0.0022034526200908197, 0.005576271399950202, 0.003390733578339321, 0.002052520969109124, 0.004317023561008415, 0.0021574711666604153, 0.00352881462850439, 0.003764656623866673, 0.00366725624644725, 0.002911882145626515, 0.0018978035386114302, 0.0038668433694488726, 0.0032222646502960577, 0.008919548150131204, 0.00281615729827949, 0.0024035365970039935, 0.004814796907986827, 0.003585092809321085, 0.0026675239601979665, 0.0022748541801623544, 0.001993127507622971, 0.004454363194148608, 0.0025195547689626746, 0.0037339181753654935, 0.0017451380504791842, 0.002463058365459718, 0.00512171408314782, 0.004719541160500278, 0.002098621450108599, 0.002300286809857368, 0.00202455879538575, 0.00201735288146094, 0.0041543963313890615, 0.0018260750988944702, 0.007390753946197823, 0.0031442246106897485, 0.0032499717213506376, 0.0026381132978269273, 0.008381248046403836, 0.00349500968114234, 0.0026038229110690245, 0.002726040370637174, 0.0023629344640865705, 0.0035368140304752847, 0.006361419690655802, 0.003749366853127745, 0.002915314586609665, 0.00221439661339441, 0.0071318649078048035, 0.0030915072881386963, 0.002417886702838023, 0.0025583560399754937, 0.005293219325125212, 0.0032949692785977473, 0.0029261701057725796, 0.0031571347761682406, 0.001248416896823359, 0.003562867245668728, 0.0019882717998016934, 0.003529284446329014, 0.0029663139036639682, 0.0028684083992657245, 0.0024295005575773574, 0.003807272312112348, 0.007448006487883903, 0.005423692419029817, 0.003199746609097622, 0.0017595643704421318, 0.0023906915556682674, 0.003481042548317101, 0.0035135249976329863, 0.003065605911621381, 0.00609635725023603, 0.003999922053925258, 0.0025263035215317632, 0.0022458189622662577, 0.0025658677160488317, 0.0038325319372846966, 0.0031975961512278684, 0.004516528428785296, 0.001720443601579063, 0.002571665304630649, 0.005455826473094081, 0.009907096330087994, 0.0026151719251581228, 0.004531504088679454, 0.0017222129079586597, 0.0038467962459663397, 0.0023478825549040163, 0.003853746757203979, 0.0029797962547671105, 0.003913037542750258, 0.004851341808031515, 0.0030565337625862643, 0.002587885912671655, 0.0030654316034619943, 0.0030522944720062324, 0.003518442037435658, 0.0038126023982083283, 0.0029110454787248776, 0.0030784368887346817, 0.0026793679323891336, 0.004137298508062425, 0.002767252018303741, 0.0026196328991863896, 0.004324099837351251, 0.0035837230194136218, 0.006336182321995736, 0.002706750630824429, 0.003196796399623534, 0.005055831904144743, 0.0023391570168036263, 0.0031341781427331556, 0.0019369633537726504, 0.002326914208274479, 0.0031252641334867464, 0.005929000371099915, 0.0023041960747137774, 0.0037170486929160654, 0.003798368113638543, 0.002337062608213844, 0.004403081321101343, 0.003510575861069428, 0.0024567358585031633, 0.002594435788377989, 0.005523039040221205, 0.0066217232844498625, 0.005362087853497297, 0.0018083321136040612, 0.0020646515154970706, 0.003444250518577184, 0.002575799837881028, 0.0034427862367443574, 0.002356770370624951, 0.0033964166684865653, 0.004672775069235574, 0.004155014657426666, 0.003851502322480245, 0.0039035741494780974, 0.0024219308379332975, 0.0022764317259549327, 0.003891668693354379, 0.0028464586034550434, 0.0013537026353407206, 0.003768939408393629, 0.0021801367285761105, 0.001924163323300376, 0.006790540385016088, 0.003339869050064706, 0.002634451858480877, 0.0072320313542676125, 0.002254509047641837, 0.0037247760134799463, 0.002798296231646592, 0.0030349931200175646, 0.0028050687017943396, 0.0032818848570220272, 0.0025807920916632817, 0.0033801236507107215, 0.00599015429624628, 0.002968432903971661, 0.003128628140109716, 0.0036196525390276395, 0.0017339751905901004, 0.004337046406391729, 0.00464767747153807, 0.0036886123591132374, 0.0032937880056106822, 0.001824807128739939, 0.0030895672242310344, 0.00453069629404397, 0.0022590626064614185, 0.0022749630996335953, 0.002198890782213328, 0.012272377006693848, 0.004199952627003936, 0.0023955566273732545, 0.002087880962675555, 0.004051580590307405, 0.001999573492443135, 0.0018640538285236389, 0.003701318400716648, 0.002420805539347359, 0.0019843865771915718, 0.0034261776353355935, 0.0025803690595525694, 0.0028128377792968314, 0.0032819871535556683, 0.002333808419358667, 0.0041717496391557845, 0.0027418973808146156, 0.0029199744960462398, 0.003169683819169951, 0.004442188200922093, 0.002081348395142304, 0.004493515115690739, 0.00743793610683513, 0.0053059925608876495, 0.0019284847590075225, 0.002059454373097504, 0.0036390659844497105, 0.0051201389154305705, 0.0019641091508071033, 0.003020072413599956, 0.0026513225823015223, 0.002661875909792827, 0.0031610851426615147, 0.008699206259498576, 0.0036434849091806277, 0.0045512415186454176, 0.004448723572198593, 0.0033782348764878995, 0.0030490560133933165, 0.0020417281482268093, 0.002452774193746938, 0.00761859811193312, 0.006222685383525907, 0.005574166729096846, 0.0019966204069564743, 0.007699040504176804, 0.004284171843537068, 0.0021886816445882786, 0.003385658714562543, 0.006230052078212922, 0.004177573472660503, 0.006082398171597692, 0.003003813077801481, 0.0021670130395202284, 0.00209209080050022, 0.003840017645226937, 0.003959351633779222, 0.0027154345170929883, 0.0020079815399975465, 0.003812768438191055, 0.0011969138518897614, 0.0027595764441822354, 0.002691261323847681, 0.004913279828587372, 0.0033199448749626054, 0.004980046683258579, 0.004521246205808355, 0.0014991326805534847, 0.0035941422011074317, 0.002545367279300873, 0.0019769408826620693, 0.005390551731185688, 0.005099168809422488, 0.0024850664314573943, 0.0027685530624739644, 0.0032999272485945827, 0.0050643686405584774, 0.004680590403005103, 0.001769387118410324, 0.004714908926083138, 0.0038594184890196953, 0.003570091499456425, 0.002785459267631618, 0.002398299463173916, 0.0036859668102601994, 0.0037221731515080644, 0.003204257815300157, 0.002759280075312457, 0.003561576153493378, 0.0023453972227529024, 0.0032063982315965306, 0.003833801913303966, 0.0030389174151896725, 0.0022088349741303578, 0.0019095459399341853, 0.002155790641961474, 0.004515244148754148, 0.0019071871114784064, 0.006802101400589, 0.0034458893797900286, 0.003723458778841661, 0.002655217203055847, 0.0028424597854206984, 0.0038550943352549565, 0.0016060118267362295, 0.0036340276380909518, 0.0027432962743258365, 0.0034444207006202, 0.003224885389244718, 0.004567110126221224, 0.0016572940585572755, 0.005434124367199437, 0.0031974932285581286, 0.0035705274953116957, 0.0026663229991889885, 0.00378416071598546, 0.003591809147758425, 0.003243872879874825, 0.004492345621766193, 0.005814172786488847, 0.0026820179092993785, 0.002305429066917994, 0.005393133226524051, 0.002296931615610843, 0.0019427651642497043, 0.0016698842621234052, 0.004349099491616574, 0.003312169767378783, 0.002647132893801669, 0.0037882491719635376, 0.0030945978690327704, 0.001873465908769038, 0.003243918504524888, 0.002912192756686028, 0.003093373895272711, 0.002132067231355955, 0.005545910782659351, 0.0031643978710971924, 0.0024930883249022788, 0.0022218273949333603, 0.0018799491838896165, 0.011795531435839692, 0.0028798248722363287, 0.0030121773910972978, 0.010782356000760069, 0.0032182292432978224, 0.0027274970620171186, 0.0024245947657550245, 0.001422206568047778, 0.003747643167542504, 0.002850813841343325, 0.0038577823285401228, 0.003219156628456762, 0.0038936702891039566, 0.00288557898598058, 0.0020832689314877594, 0.0032238382667815714, 0.0028025609055612214, 0.003403047692791224, 0.005100510585769521, 0.003607637653861838, 0.007595565725405727, 0.006888856373562967, 0.0021642218932150384, 0.004213303553223463, 0.0028235829004292635, 0.0028531357063619335, 0.002673278988337247, 0.0029625555358131768, 0.003449946458543571, 0.002690105864004636, 0.0026303829904727296, 0.007943133763785571, 0.0043061821625364856, 0.011368066636513786, 0.0030222805949109235, 0.003403543449795974, 0.0021306411718102413, 0.0039000308453643064, 0.0030499575426826083, 0.004210884730580555, 0.002054913931717606, 0.004859384004555505, 0.0018469920180048383, 0.004221753059491857, 0.002676729225699714, 0.002365429280560016, 0.0030426039852222172, 0.0044258578541679005, 0.002017065145240672, 0.0029551063008416713, 0.0024231249422684404, 0.0016969373645342352, 0.003957924859486908, 0.0018770648526051, 0.005522537394523243, 0.002180008088129062, 0.0025092975401458167, 0.0023961181411824824, 0.0031377562095805333, 0.003943405553893574, 0.009223841008328298, 0.0033236313283821284, 0.0017305847444565431, 0.0028254991602576942, 0.0028012356180285173, 0.004500820800700063, 0.0016361430921995389, 0.016160167864385434, 0.002267078372689494, 0.0024398741530787115, 0.003428554488013086, 0.0033903916934394174, 0.0032301030113490595, 0.0020657962646918123, 0.002288400880974889, 0.005867799767664028, 0.004037577904029035, 0.003881716354162525, 0.0015426321793699028, 0.002434719420827478, 0.0035791817598905713, 0.002351424434638794, 0.004489389581886955, 0.0026874483860507116, 0.0034569276388997545, 0.003529864071132211, 0.002213131303314976, 0.002984425756028819, 0.007587425605350591, 0.004707747995499413, 0.0030817203574686884, 0.0050995257457400285, 0.004444497128850553, 0.0022094507462074265, 0.002367424337171048, 0.002375530248354896, 0.001812039499462208, 0.004453095163649357, 0.0020771920764673197, 0.002286097537621297, 0.00819722397516525, 0.003229204206103218, 0.002445864991175341, 0.0056940815764454636, 0.003995499581288485, 0.0016363873182631086, 0.0019123058391377745, 0.005547382494145939, 0.008706308653366742, 0.0017551931694797097, 0.002122154123758548, 0.003998574302358095, 0.002773221453635872, 0.0029813676459662596, 0.0029524238854536236, 0.002230680974231256, 0.008995900801473281, 0.0027583521741203244, 0.0022291853868891937, 0.0045592837439055855, 0.003477337972086857, 0.004648688069777913, 0.002587827389541126, 0.0017715012640193123, 0.005378592032133677, 0.002982336935229339, 0.003634417208871422, 0.001688171713582572, 0.0019084426916967487, 0.0029809882098645194, 0.004066931707891828, 0.005516336533982469, 0.0035483759844999914, 0.0036222124818760214, 0.0022245058243409873, 0.004179946590236468, 0.0030772221254975964, 0.0013667730379624023, 0.004184585696541473, 0.00498075792218528, 0.0026666809748007543, 0.00293253867726454, 0.004806791646762431, 0.0023230218234045114, 0.0026667688040540915, 0.0038530609027098107, 0.0019202890992000184, 0.0030853624454696845, 0.0015896900717994149, 0.004597157059338306, 0.006243914783917734, 0.002572934990523283, 0.0022245261214572393, 0.005986425916711451, 0.0027761888933861144, 0.00381135622483715, 0.0017846946199572482, 0.0031838666759860454, 0.005900592687933304, 0.0026627656096021224, 0.001507824698782261, 0.003943875529711411, 0.0023589849668542192, 0.0025390375448878957, 0.0032579090267529217, 0.0034349026104879576, 0.0016811917329824177, 0.002852505328810618, 0.0016845183997226734, 0.0032583983173834806, 0.003089199688507434, 0.003562362309722512, 0.0025376401457276035, 0.003377301339865294, 0.002152563640800682, 0.0041531331321548, 0.0021750573558678076, 0.003823274448670092, 0.008635722021558663, 0.002776969039628047, 0.001817930950572771, 0.0043970071645097735, 0.00695640704233078, 0.004435982090927358, 0.0018434831679562513, 0.002390864137015762, 0.0018789943325664069, 0.0024549927054752434, 0.002857399851642821, 0.005769091777146017, 0.0020054318079327582, 0.0033934448922003425, 0.0016298117004035107, 0.004189669796122154, 0.0040011619771393395, 0.0031409098494022047, 0.003922769027826931, 0.003095063677911735, 0.0028119653642574077, 0.003417114772213002, 0.006039068962961319, 0.006974222966074568, 0.002415057939107472, 0.0020661722211332383, 0.004030507447579915, 0.002007262201270009, 0.002090952799375919, 0.001970657537913427, 0.00516790016623899, 0.0024689715949137766, 0.0034023696489382757, 0.003503789187010973, 0.003089938932067259, 0.002130706530307715, 0.0022383127792192548, 0.0029256271220536, 0.004481828893669768, 0.0035914277890232668, 0.002547560812196414, 0.004298329545033034, 0.0023034069989151316, 0.0034872695872233766, 0.0026850822892587767, 0.0016471361331416312, 0.005860426016546372, 0.0026416756286037936, 0.002818007489544182, 0.003945927237392928, 0.003500238100554322, 0.0017890143641946254, 0.002217489414531535, 0.0024388677469134048, 0.0029987534339493897, 0.003329391809832962, 0.0050720465922671695, 0.006035318231805504, 0.0031585034824771043, 0.002905376894302524, 0.0032622459208831098, 0.0025670268058971446, 0.0030556557016239052, 0.0030635541542912634, 0.0021721221367617246, 0.008430732534847725, 0.0035128846919384067, 0.0021613606490635926, 0.0027421291499342563, 0.002541273732335887, 0.004080408039848379, 0.003429158136412775, 0.0027835248677944868, 0.0023417310121747574, 0.005028697193108781, 0.0021435307286675246, 0.00239524000888873, 0.0023456922136368117, 0.0034881134109551967, 0.0035350027441429102, 0.0013773915989050594, 0.010018384362414362, 0.00302205489913895, 0.004604720767924456, 0.0024693122997445534, 0.002821574754242774, 0.0016300546553807403, 0.004493179294358295, 0.001798873101869513, 0.0037684907216056, 0.0016411386791246915, 0.0024394578680583773, 0.0016147891000325696, 0.0034869104081595706, 0.0034181905225741964, 0.003361691576449554, 0.0033703759983344317, 0.0032776866105249636, 0.003173631682197215, 0.002338046578912658, 0.00420158842194896, 0.0021209485594672283, 0.0032226779621926, 0.0028597550765619034, 0.0037142629822029837, 0.0023913143373938757, 0.0024078427313283758, 0.007019198073583606, 0.0017882120876969259, 0.0028753418569516867, 0.002445223136838398, 0.003662407101928544, 0.0029066166834037293, 0.0030345418981818045, 0.00211513936145052, 0.002190973172486153, 0.002552750900154852, 0.002147379643960817, 0.0028264295555633172, 0.0025827161650549798, 0.003127637059165912, 0.0042643841402851485, 0.00309712668064024, 0.0033991639872927642, 0.0024200461477471825, 0.004973735752016946, 0.0021879261233940565, 0.0024675011738462633, 0.004839714117164493, 0.0027757308974171923, 0.001306833827852385, 0.007309200144272871, 0.0021811776213578695, 0.004149469575333442, 0.003382479566601431, 0.0025070543009634563, 0.004164598980767455, 0.010087020213922882, 0.005874053842022366, 0.0022474856867306815, 0.0016997299048244565, 0.002071453796212705, 0.003754517036007602, 0.0035451670131701014, 0.003187030544428344, 0.011581465532160086, 0.002404641501763433, 0.002706914337271161, 0.0025741371330514143, 0.007537830621327938, 0.005959195482171493, 0.0044949389182355175, 0.003281175795031384, 0.002054632723040535, 0.0033987306963212697, 0.006606352247243821, 0.002849195466991635, 0.0028726217141569602, 0.004248423761901094, 0.003669561107599348, 0.0029646525501629767, 0.002608032426870933, 0.002924863731195079, 0.0034855493339075497, 0.0034433697953640185, 0.0026339994762077596, 0.002268120807843058, 0.002248237016140833, 0.004047257437716924, 0.006996210855141578, 0.003488841679336, 0.004233108644627725, 0.004253157152721416, 0.004343121527727066, 0.001733699796168343, 0.0035109062321949684, 0.003424761208870958, 0.0022077024412527338, 0.0039028078317673463, 0.0018023616329068814, 0.005128489156320455, 0.0031776926872271404, 0.005694313800609286, 0.0024739298111789766, 0.0020693542324446363, 0.004487665956250336, 0.003998075134876672, 0.00219439538705732, 0.0038720058208678285, 0.0021015367242561934, 0.0047892076455896765, 0.003628070511362836, 0.005540727008030488, 0.0022541038957677125, 0.00405937461694344, 0.0028047268066092846, 0.003466329825976005, 0.0050561877378890304, 0.0025560598772591562, 0.004815813883237021, 0.0024920959692151584, 0.0031144566652669594, 0.0032389608398017433, 0.002740572318197069, 0.002781339459645927, 0.0025375984409679586, 0.0033443595111494703, 0.003970605807120312, 0.00466912616546463, 0.007420663974944676, 0.0022580853380575884, 0.0033272613657321405, 0.003051693713587607, 0.005771738901265915, 0.0035727136191820484, 0.004083643775927853, 0.0033638449857496906, 0.003448357786232649, 0.0026982659451977786, 0.0030522146600527903, 0.0032901402180606823, 0.0014068491245430997, 0.0028539505522984015, 0.0039058050727045954, 0.005926090093786801, 0.003972081570624145, 0.0026582762837203356]
klw_arr=[546.1104812130575, 8930.921170174643, 8508.933973864774, 2359.9795276764053, 6507.712912914897, 503883.9496693844, 762.2042915980464, 9431.546515599413, 3754707.3379809163, 540.0356038333574, 344.0924876491787, 389.3520947186299, 3549.8880931894646, 17263705.720946994, 7901.725710235281, 160573.3063173653, 4755.149720860267, 2990.8778737291946, 41788.834025207005, 34574.90494027078, 17530.587882282667, 2812.2158749710593, 49103.28254982877, 8976.497499059034, 422.54218165881355, 2743.6927376264503, 3562.0892055571253, 5592.232553437503, 1555.7704683510021, 925.3624667763781, 1666.6605228272172, 3232.9743534262443, 31.320923045069016, 2.0910521574005743, 1300.4526957004841, 0.5567126176518543, 0.448658626102449, 0.12643034541228695, 115.37770850874949, 1.034730420191111, 0.10189355827459697, 1.0562073931557585, 0.12539680135383516, 0.11388652515147701, 0.06320621660477352, 0.062380817321070745, 0.08206846198598572, 0.04704320577734601, 0.03341187119379097, 0.031910259224754316, 0.02627304426591525, 0.02459788198065124, 0.023928251384835585, 0.020137121292068398, 0.01787950982377254, 0.016594143698941945, 0.015381208586424522, 0.013799696518800178, 0.012770257137975416, 0.012253201392842934, 0.014943518404318188, 729.3573859282986, 154344.88145459045, 226.64187117120022, 0.153607289851605, 0.14648456820326672, 0.02270244320729637, 0.1486435505465467, 0.013947151116948293, 0.012015812491494283, 0.014810790462164719, 0.012013913010143392, 0.010681547997431382, 0.014028517481286857, 0.015691974560479702, 0.0226988241721546, 0.03256179403730351, 0.044723425208225684, 0.05380986432981684, 0.056860338326411006, 0.05422162387523917, 0.05790209349159413, 0.05639282250294704, 0.05665933501823469, 0.05834107448894978, 0.05881922948774626, 0.058699036240610215, 0.0735005256157904, 0.08473464106813094, 0.06628265611430226, 0.062339786477750056, 0.062345765913990915, 0.06315508451454925, 0.061434092372891436, 0.06160340192258362, 0.06385525684275789, 0.06845016997567761, 0.06779539180050362, 0.06265693095403849, 0.0646134137029446, 0.06216635690286511, 0.0630842086980836, 0.06157053779414247, 0.06291670742792428, 0.062266936549709016, 0.06275368338545319, 0.06375649198985442, 0.06246012914344806, 0.06336708517770558, 0.06345790756995205, 0.06354401634107362, 0.062317450182230075, 0.06327699962934981, 0.0630841917707962, 0.0651415149898835, 0.06358817743155172, 0.06399436248854885, 0.06534552446351856, 0.06364541606526343, 0.063639122555509, 0.06521109806055456, 0.06322066262008842, 0.0650808895735809, 0.06506243294909313, 0.06453111157531045, 0.0652227157022934, 0.06706946947718787, 0.06364899203337966, 0.06412093017518826, 0.06418945982591806, 0.06384807686289812, 0.06534902107349534, 0.06388242427457794, 0.0648448785794023, 0.0659928768492882, 0.06403363116717889, 0.06430408454050747, 0.06517269504622751, 0.06476592343070167, 0.06461864240468926, 0.06407757146620027, 0.06668649309057006, 0.06699280966800195, 0.06469313379737988, 0.06612719083823786, 0.06780922761459748, 0.06827105600841271, 0.06687942014190155, 0.06648600354810213, 0.06570906788191612, 0.06478792848076828, 0.06724156732825731, 0.06544893249435745, 0.065691767866505, 0.06632601130026691, 0.06721525042796501, 0.06685086069161911, 0.06856990499095784, 0.0657264405763003, 0.06593327256567011, 0.06509822676859814, 0.0677095224232671, 0.06637206099380216, 0.06656282719173783, 0.0670443560243805, 0.06787090516287483, 0.06729177887142139, 0.06708128595987384, 0.06552893181389749, 0.06639568475668332, 0.06708330856904964, 0.06695405732522516, 0.06742581384426348, 0.06963865048712145, 0.06670420152039502, 0.06732944104995599, 0.06732356942384823, 0.06875101867167788, 0.06802931485772247, 0.07053676071384674, 0.06816263694801107, 0.06789239851917145, 0.06671642972195443, 0.06834208898780976, 0.0656083367728583, 0.06773193158501212, 0.06681169545524739, 0.06843194719328141, 0.0667740049960341, 0.06655603031770835, 0.06687340702273677, 0.06651718180070959, 0.06682321033803476, 0.06498379279336511, 0.06615264410694707, 0.06502573999319665, 0.06455558779804424, 0.06409992059570513, 0.06223402880107639, 0.06106223080864862, 0.05601447475567749, 0.051116105902337027, 0.04983287334000591, 0.05145677640551721, 0.04953959600510694, 0.048019473953400865, 0.04847203415165387, 0.0483816872599785, 0.048104313933961654, 0.04851087885435608, 0.04765864444034342, 0.049099522425231815, 0.04864443867602414, 0.0519042728921701, 0.048946909973001954, 0.04888510329527139, 0.04789332358757077, 0.05056390608390737, 0.049102761820816215, 0.04941887434140772, 0.04842694234239104, 0.048683719231640485, 0.05029919104012094, 0.0472466030392435, 0.051183232184490536, 0.04920793837287358, 0.049064148322254066, 0.050068186990103195, 0.051526002196742283, 0.04840465717917093, 0.050070506256239676, 0.050249080522214364, 0.05198961874991308, 0.05324836827669353, 0.051573746004960355, 0.04797690703710469, 0.05162873780674654, 0.04940482688699484, 0.04843414185042692, 0.0503158828725175, 0.04820849634052914, 0.049688522656361575, 0.04943430160176589, 0.05111502375704433, 0.052132083295528556, 0.051197871134261164, 0.05035753700449014, 0.05381479591586922, 0.05286112866688081, 0.05387639701408865, 0.053145122073487185, 0.0541067993258592, 0.05223716648023918, 0.05453495198359587, 0.05434386757348515, 0.05495698094203612, 0.05415031659978653, 0.05269021146941576, 0.05499282076946321, 0.0537211490688148, 0.053614572995059874, 0.05411086766341437, 0.053861697293749664, 0.05528412039377736, 0.053983938724696, 0.052823869292942714, 0.05515271582683717, 0.05226197909862203, 0.05735783682610497, 0.0528036877324055, 0.052224003950912104, 0.051380760942234684, 0.05419469949104462, 0.05246248058403198, 0.052411168532358055, 0.0533820810024189, 0.0527240347812896, 0.055533713204460246, 0.052086435698618164, 0.05576670789232245, 0.05406043232216554, 0.054045086869806705, 0.054948748055835585, 0.05781294327015195, 0.062026717420850294, 0.06304148701824819, 0.06612269108417702, 0.06965357827176924, 0.07008027708962329, 0.07197804973053887, 0.0735191149979624, 0.07303844471997514, 0.0741819791200907, 0.07305827460307188, 0.07470692631895834, 0.07560929545791953, 0.07438370389101713, 0.07395929601866254, 0.07685230963322243, 0.07500620677736844, 0.07486243203787847, 0.07535318088038004, 0.07450777711386473, 0.07573086157408235, 0.07662063767786428, 0.07562584284664621, 0.07562932485387978, 0.07612800023575977, 0.07679836414288685, 0.0763721351034772, 0.0770750455585271, 0.07679123848393625, 0.07695315491805695, 0.0772391680098069, 0.07929426325995949, 0.07716773320866754, 0.07714399383465606, 0.07794566104516465, 0.07728750048310445, 0.079422733951977, 0.07828417470225688, 0.07788564489427709, 0.0805675129781265, 0.0795394381625242, 0.0797442939270239, 0.0803231785188779, 0.08033147869135647, 0.08020239046885118, 0.08094101797777632, 0.08543134025267674, 0.08858055135139718, 0.09355435983007927, 0.09586160427597243, 0.09848966652750063, 0.0972090236005915, 0.09919351199499649, 0.09929451194952114, 0.0984106269506744, 0.10077592922712433, 0.09973512319230102, 0.10231392997242339, 0.10244835182782039, 0.10209861574050276, 0.10178018202683584, 0.10404128733586104, 0.10235785085129534, 0.10339892366992029, 0.10402761306585476, 0.10424941869991691, 0.10387554019052583, 0.1049813264883797, 0.10590093894503169, 0.10591316852889635, 0.10693977563012573, 0.10648746748611686, 0.10572447322599421, 0.10814745092544087, 0.10869804414909198, 0.10574851551656098, 0.10757832130215032, 0.10807002526868666, 0.10861559793307374, 0.11018854709577022, 0.10945544009718303, 0.10815874783618393, 0.10848220835891606, 0.10878134616263091, 0.10913461537282203, 0.11157742809084495, 0.11015801051037537, 0.11136950695846581, 0.11198088132443262, 0.11257665034018134, 0.1113956735709, 0.11281301618096781, 0.11217622065883434, 0.11150933800275983, 0.11276729171034057, 0.11330813658054233, 0.11405422509417147, 0.11599913156847357, 0.11555278156664488, 0.11594269676965782, 0.11592415421017559, 0.11605227348591388, 0.1145739895987055, 0.11534869745983638, 0.11733062600930426, 0.11631985566239138, 0.11654386306026479, 0.11800555955881584, 0.11938578899884691, 0.11820681045964929, 0.11974785547958813, 0.11911547143307696, 0.12069410621261031, 0.11951035665491402, 0.1220425762063034, 0.12103207038908421, 0.12348215760859611, 0.12330670269541566, 0.12324787704817128, 0.12496822392207693, 0.1272214398300928, 0.12572907975547115, 0.12445767989783452, 0.12583594343679458, 0.1262641315908673, 0.12797708262094623, 0.12603514863557047, 0.12746309702834885, 0.12930941802313214, 0.13045257320303028, 0.13017732514421593, 0.1324553688446729, 0.13225936021432716, 0.13222737717565097, 0.1327412636939842, 0.13436126137751359, 0.13223814517636026, 0.1343703024418803, 0.1324893040494573, 0.13290780700926813, 0.13397542713769933, 0.13357981957000079, 0.13373478121514212, 0.13612268122743482, 0.13710691775377143, 0.1360533933576934, 0.13611126034050128, 0.1349945008990649, 0.1363412756469156, 0.1372972443058516, 0.13716943507885376, 0.13875436664269994, 0.1380913278062941, 0.13660930345032746, 0.1406392865384874, 0.13983872887638366, 0.14134479052970086, 0.14256124802915712, 0.1406155628271922, 0.14078484799267738, 0.14336720489405624, 0.14134149771566026, 0.1451617971929232, 0.14350764285173395, 0.14326751379816544, 0.1455517436557715, 1.1310578437484256, 0.14802066690107446, 0.14548129156153883, 0.1515192510786083, 0.1455991259819531, 0.1477247322771932, 0.14834761288739923, 33.64959532359221, 16.081725846168517, 40.281641643638125, 62.609470256285576, 4.78057338666701, 77.71902078791184, 145.61556224882216, 7.024978202432284, 0.7422590785440459, 0.9346581801976124, 0.22454730029714298, 1.0281033135804185, 3.2217510684157724, 97021.49320253335, 91.69227563715863, 13.401663756356683, 13.292307156757355, 9.089209337650924, 13.074636819652593, 332.7518588046575, 17.58644461109967, 298.8157792181451, 11.12898229570955, 295.6448298628031, 34.412137056405214, 1.7338585051739546, 5.550750788657017, 0.16312708556218883, 0.16902786238571593, 1.212462927687973, 21.458371831631226, 0.361859603623654, 0.8193655872576755, 893.8728945969685, 9.261129960080428, 0.16580336586337344, 0.9167171657286192, 6.31642463479198, 0.16957613980568703, 0.1678267247711111, 0.22099439978607233, 55.97893809413459, 0.2238061162798382, 0.17018231897302094, 26.673115841013008, 0.1625399785209229, 0.16348764423420092, 0.16183646253062584, 0.16189601608126433, 0.16185594603781417, 0.16331445592076896, 0.16269553892527464, 0.1630212792318702, 0.279058643798255, 0.16548818332496856, 0.16343260466414472, 0.16379392372931678, 0.16514971791138358, 0.16473527911507482, 0.1658380287754913, 0.16509714004452633, 0.16762039655615762, 0.16654432011548745, 0.16769236723784653, 0.1662359974031917, 0.1690831853619351, 0.16883776854460414, 0.1800592081932086, 0.16794323664776115, 0.16996137726284863, 0.1688846762072654, 0.17165579435518213, 0.17058048595417516, 0.17000252859388082, 0.17169658301018637, 0.1705991297607067, 0.17004049935315152, 0.17148243734145713, 0.17192481239270468, 0.17192686470183774, 0.17458428131650008, 0.1750162589019798, 0.17285207992334345, 0.17474353146511093, 0.1749204983701635, 0.17673991190563978, 0.1747104147568135, 0.17526376952308553, 0.1771944827735806, 0.17516469370251803, 0.17605878398374245, 0.17809151403417056, 0.17658905015530435, 0.1763906621673468, 0.17922327244187447, 0.17830637276131006, 0.18044111196424656, 0.18152387628539207, 0.1804992841193746, 0.18134756885150718, 0.18224622478263636, 0.18060491116039953, 0.1838500280163333, 0.1790462662540494, 0.18413237566084273, 0.18371531082096354, 0.18427799739174494, 0.18279416498878015, 0.1836132236860101, 0.1856902715222571, 0.1834005282434235, 0.1852870449572977, 0.18467515569378826, 0.18713208217890834, 0.18632747021975365, 0.1897361761669712, 0.18914609683923933, 0.18681442997124406, 0.1872066108746285, 0.18896231571033928, 0.18727229752266814, 0.18829544326546896, 0.19006248967939082, 0.19237880304156854, 0.18986767861944914, 0.19214730659983736, 0.19216118377035102, 0.19042201835136874, 0.19122933146657656, 0.19154470200250415, 0.19240078479149839, 0.1912595531179667, 0.1933546652589665, 0.19410351218063815, 0.19470502983843158, 0.19286851684542583, 0.1957800084136416, 0.19624485610094605, 0.19369812938697192, 0.19482102411130037, 0.19720206389661657, 0.19785522885163473, 0.20004483775510012, 0.19839327884027458, 0.19798230302487554, 0.19820612216014788, 0.19924945361493843, 0.1997916323186325, 0.19771938918548917, 0.2014774945288686, 0.202132915366195, 0.20097844101047121, 0.20025784421879028, 0.2010934770003908, 0.2023889584907709, 0.20283648367266732, 0.20270150450985353, 0.20282489089141414, 0.20314892993189076, 0.20199200566710834, 0.2039868788869282, 0.20276163483483378, 0.2057010541382144, 0.20672072748914122, 0.20704579728574904, 0.2088200514068291, 0.20767722835612248, 0.20797472575944026, 0.2075347754951053, 0.21001735230736124, 0.20677371866737088, 0.20901106163635164, 0.21127067231836025, 0.20952539127274816, 0.20998143198386848, 0.21253429158899229, 0.2124559741787475, 0.21050584923537813, 0.2115526167127022, 0.2128432819775158, 0.214881764003341, 0.21262500239968235, 0.21331811321617536, 0.21488643431536905, 0.2158485168617703, 0.21378736672136886, 0.21534444400591898, 0.21615992957228386, 0.2179726559788795, 0.21942805784868047, 0.21557955361549155, 0.2197775139312524, 0.21792568351654662, 0.21705412161218854, 0.22006952131867172, 0.21792983322911502, 0.22199721250154708, 0.21853691796532632, 0.22081688078245118, 0.22104008899346445, 0.22199163508580866, 0.2220826989053796, 0.22106162846492694, 0.22315276464382633, 0.22201768620992057, 0.22088798298885698, 0.22672027043192816, 0.225627220689716, 0.2240991148686767, 0.22595059523894562, 0.22654800051259713, 0.22467281284782153, 0.22854126593972404, 0.2272217029650228, 0.22622855945461323, 0.23002168892455033, 0.225834282706395, 0.22992166321871293, 0.22979813583241843, 0.23352694048161543, 0.2290411167525556, 0.23090355519169736, 0.23232743005262088, 0.2322716301625503, 0.23257611742873233, 0.2304777237428542, 0.23354534603032095, 0.23245215505974967, 0.23926028386000234, 0.2340062382863934, 0.2344195111399166, 0.23599979019555137, 0.23584995691908936, 0.2365259648841423, 0.2390391672506283, 0.23868081090878115, 0.24048920108608826, 0.2380373143240901, 0.23774444093385422, 0.23719251023852989, 0.2404566379380571, 0.2391742209591894, 0.24097835237803325, 0.24190228766080252, 0.24371591389921798, 0.24207206230520253, 0.2441455257353816, 0.24182649090057368, 0.24479699436705143, 0.24414518054041495, 0.24228009152099467, 0.24514318339617164, 0.24453624580403638, 0.2449646295891994, 0.24484683078320285, 0.24657485749291735, 0.24708753672779582, 0.2490283256239103, 0.24693716174595096, 0.24802277301913836, 0.24874291235605614, 0.24901102226286093, 0.2477670037553768, 0.25269531073717266, 0.2519667669992683, 0.25143195529436685, 0.252654632765698, 0.2516758498444206, 0.2541979457308342, 0.2520963807719459, 0.25478173859203623, 0.25363531761577224, 0.25587677746667137, 0.25737036769945454, 0.2560772071354158, 0.2572559976518485, 0.2555663108154725, 0.2566403025526525, 0.2605947658809296, 0.25865483596896016, 0.25892768141789435, 0.25841978247751535, 0.2581217777311749, 0.25714670442071424, 0.2613421005589215, 0.2615564726675506, 0.259357917185426, 0.2615015786556705, 0.2606997275887426, 0.25997591837592887, 0.26434762862643946, 0.2654671646198195, 0.26420519030183537, 0.26340017237483937, 0.2665430358717835, 0.269904592166278, 0.2658903206556123, 0.26523509765797953, 0.2685564118083711, 0.26574142414647633, 0.2657319240714615, 0.26827568525067247, 0.26941086445703555, 0.26942152832714583, 0.270043410906572, 0.2698949489442395, 0.2682066029452668, 0.27185193200483493, 0.2718669393794341, 0.2723949292400577, 0.2756517590596053, 0.2740877254477881, 0.2762836528331719, 0.27430910988477486, 0.27595124218340594, 0.27346823426416594, 0.2765519978025134, 0.27793862630193705, 0.2762219956202863, 0.27630112149147656, 0.2812824120366769, 0.27729632412518995, 0.2777315953837848, 0.2777745938832921, 0.2805596790583147, 0.28053788043967137, 0.2815900934533963, 0.2801072063000682, 0.2815751503968014, 0.2835836284461527, 0.28405062739169906, 0.2855779444462555, 0.2820832835965042, 0.28392613095514874, 0.2868140948960286, 0.2849568190704806, 0.2837240426589637, 0.28537021666960727, 0.2855992298635427, 0.28724179373748276, 0.2884084601733318, 0.2896734708274712, 0.2891526853562397, 0.29219686683161206, 0.2901687370279774, 0.2895258406444989, 0.29415486703847293, 0.2923901707575599, 0.29059796609324395, 0.29324608658336193, 0.2960518163639992, 0.2944870551228016, 0.29598395374576497, 0.2934784666633543, 0.2936822323071854, 0.29485451562976567, 0.29584411826373436, 0.2954236022041176, 0.297809597327595, 0.2974363555395466, 0.2957319339432484, 0.2977481500497029, 0.3001155697524035, 0.30023481139444025, 0.3034034505913689, 0.3016047453745787, 0.30060502009366546, 0.30161935601128176, 0.30065077289658493, 0.3042526148017276, 0.3028448629717134, 0.3034482266349053, 0.30437298887092845, 0.30525662905065587, 0.3066415151706293, 0.3052472358868067, 0.30950696932095184, 0.30648441909614416, 0.3080506874727, 0.31081420088442796, 0.3084926814644808, 0.3080822994321802, 0.3100880256124238, 0.3100212969081019, 0.3105268475247377, 0.31556000754880176, 0.3125632036567167, 0.314786765230492, 0.3139802829806926, 0.31373529692586943, 0.31586917767183037, 0.3131928895272628, 0.3177766036102997, 0.3172386285262757, 0.3174108604010969, 0.31740798303869094, 0.3178171178949218, 0.3188880685501731, 0.31747035167648924, 0.32036431562483497, 0.3195409939026336, 0.3242928270470523, 0.31938983382627895, 0.321626812589905, 0.32155986900994393, 0.32368954263372346, 0.32340215222892665, 0.32204196653111594, 0.32524982629054205, 0.3232664112073763, 0.32408451182710235, 0.32444496780609866, 0.32517314153362964, 0.32622517468252865, 0.32370010648851716, 0.3268459465619197, 0.32759425779525403, 0.3294774635074401, 0.3313234478721343, 0.328880128963124, 0.33247019620034246, 0.3298976055083574, 0.3332178728683201, 0.3319505846167186, 0.3339235604119111, 0.3326763332156458, 0.3353324844558335, 0.3352704724782828, 0.3359856029460545, 0.33463412647879914, 0.33523112132835625, 0.3376411935921445, 0.33502572316643425, 0.3380059863303257, 0.33818736477735023, 0.3382970162745399, 0.3389336008095648, 0.3410064246695336, 0.3414896638145904, 0.3413770412411983, 0.34041403252651015, 0.3434502483811136, 0.3453087261960678, 0.34302885310929343, 0.34626247400774385, 0.3452651854162318, 0.3439497437317852, 0.34534883136684347, 0.34782761192911665, 0.3462220194030072, 0.3455115659898832, 0.34850465231292305, 0.3493285552934906, 0.35110040342378246, 0.35066961409959785, 0.3529191244385028, 0.35124692511813027, 0.3500268194903495, 0.3515746082283082, 0.35244324448208536, 0.3573086674151667, 0.35553142496843065, 0.35322486278935766, 0.3540397158304822, 0.3538457482360913, 0.3565859247598715, 0.3578702932889724, 0.3574546749343387, 0.3565273783880171, 0.3588999836025907, 0.3593092910967191, 0.3616770018959422, 0.36204946909007896, 0.3614792803688714, 0.36111391390111985, 0.3640467564046803, 0.36495598855287503, 0.36002196012886384, 0.36586585217369905, 0.36618591465945227, 0.36475001207143193, 0.3677102831735981, 0.3655653247432443, 0.3677505959151757, 0.36690786950086235, 0.36677389054367243, 0.3676346238780072, 0.3729334049781984, 0.3694118622217803, 0.3726032514560777, 0.3706724532189704, 0.37253356474684346, 0.37223601764833514, 0.37292462189246667, 0.3739572777476238, 0.3769763349271192, 0.37590326293136483, 0.3762435780828529, 0.3774913361116852, 0.37682017358021846, 0.3787588696072033, 0.3774748466722385, 0.37727286844668284, 0.3765763594789549, 0.3809052509077887, 0.3816827311587484, 0.3772836334653213, 0.3833643647423005, 0.3820876266101502, 0.3794877742463304, 0.3853991942731756, 0.38406773715572495, 0.3863586145104708, 0.3847977626619553, 0.38754832059592925, 0.3896384853077412, 0.3882887144483197, 0.3865079064114877, 0.3876018594516172, 0.38882644053910265, 0.3896153786940666, 0.3885247970830414, 0.3921954612148127, 0.39003431229057023, 0.39183939441378546, 0.3921726076356457, 0.3928439054230037, 0.39453202931371306, 0.39489269327877635, 0.39574649946579893, 0.39706527506999245, 0.39829924240939235, 0.40015050418383835, 0.39867081346412, 0.3999244245396411, 0.40013101157930714, 0.40163254279673655, 0.4019558500010253, 0.40025690004815895, 0.4059669146861288, 0.4026624479128551, 0.4004097960950677, 0.4046823646507235, 0.4097572448254179, 0.4084747562457155, 0.40603929769599834, 0.4079199420544787, 0.40617689726327705, 0.40853283678353697, 0.40914024619140754, 0.4078319214264832, 0.4117825496360255, 0.4091821320124831, 0.41327931207727026, 0.41222901606206125, 0.4159613780863025, 0.4137320005946946, 0.4129953195306556, 0.4125468474897488, 0.4159213684697668, 0.4177577313675881, 0.4149969425937951, 0.4168003943934244, 0.41815844442777805, 0.42037587779049074, 0.4212157363768759, 0.4176584343181128, 0.42163177392731316, 0.4207514898686216, 0.4227938260138722, 0.4230579096071252, 0.422196166285629, 0.42255422109594154, 0.4264850583609248, 0.42530457343648986, 0.42592343956582707, 0.4270571290554745, 0.4294773588079332, 0.4275418340747481, 0.429485594593066, 0.4279988670440568, 0.4302453844760968, 0.43171844299724266, 0.42985428819748267, 0.4292851421190945, 0.4330996048400476, 0.4351174265391484, 0.4323215899643119, 0.4384945114583161, 0.4345012378035812, 0.43640549969816905, 0.4399170399507614, 0.4416625415715874, 0.43814407045710296, 0.4405208036297056, 0.4388057150287997, 0.439218062227683, 0.4403224212479705, 0.44204136118992726, 0.44292883741789374, 0.4425526784326922, 0.44462020871843366, 0.4449687703411205, 0.44327272858470473, 0.4454048787728803, 0.444949591237649, 0.4492173230968727, 0.4501438681763529, 0.4496186170823379, 0.45084936803932846, 0.4532387943715507, 0.449274430001889, 0.4515785454534343, 0.4558077785102143, 0.4516181096741968, 0.45297247507636007, 0.4532839358914843, 0.45221434129087845, 0.45767406893156704, 0.45950821434091116, 0.45754625371168833, 0.45817979310926543, 0.45909623613477574, 0.45970469567841266, 0.4598846421085785, 0.4633909224325266, 0.464420374609346, 0.4614068381763448, 0.46578374178190823, 0.4614384103539054, 0.46274371631994393, 0.4660928675092507, 0.46430083486636037, 0.4653706511970568, 0.46662909902484345, 0.4696993245405744, 0.46982445205874884, 0.46745240186210213, 0.4705426402503107, 0.4725205065825907, 0.4736476905910355, 0.47404019243634365, 0.47465857132791206, 0.4721195297728243, 0.4736972861013089, 0.47389549525382374, 0.47247393047741254, 0.47891497379932063, 0.47901821941360473, 0.4777730558126871, 0.4787114865953101, 0.47970324167442413, 0.4754058053978912, 0.47851009794303423, 0.4799437349999227, 0.4778836272707929, 0.4839399783397481, 0.48388561481044945, 0.4809145842366956, 0.4822584452669922, 0.4853866549830343, 0.48664802906445476, 0.48554332788847254, 0.48584754264108093, 0.48908380273301094, 0.48817237073028147, 0.4912913736247875, 0.49133468457031926, 0.4935053836210702, 0.4907110906264477, 0.49630576117651987, 0.4947782445226802, 0.493780424573728, 0.4947873306283661, 0.4925363318506243, 0.4954690619094553, 0.4991563740747337, 0.49872428978375477, 0.49729750478062823, 0.49706436817585303, 0.4989817543362281, 0.4992281367111949, 0.49736768324735037, 0.5036261622498255, 0.5012772484314656, 0.502417395417947, 0.5037896577147951, 0.5046191132412031, 0.5086390897122686, 0.5038179743421742, 0.5043422532116765, 0.5063524054589293, 0.5082887805462043, 0.5086401824455753, 0.5122427322125207, 0.5110971419394986, 0.5115195172545343, 0.513314248515694, 0.5105776493641843, 0.5118868876727352, 0.5123866279694373, 0.5137465426781833, 0.5139389313574112, 0.5142906866125591, 0.5154340246675186, 0.5135481425147329, 0.5167393810577205, 0.5200715380636117, 0.5193792491246165, 0.5183326645610875, 0.5187478632348385, 0.5207433734818812, 0.5227586600848316, 0.5236444924700561, 0.5221082128470936, 0.5234213809706851, 0.5245769918453367, 0.5263903320261549, 0.5278893433136517, 0.525633135449081, 0.5261720021639349, 0.529741490733828, 0.5283898057465727, 0.5317460285043876, 0.5341485865440021, 0.534346717618856, 0.5323417285713566, 0.5276915007700984, 0.5339887921363445, 0.5356895967613194, 0.5340939782080726, 0.533410981334659, 0.5336336591050632, 0.5323081008660618, 0.5362945900121279, 0.5369054218748054, 0.5381209900130505, 0.5387059344797407, 0.540254802414381, 0.5378669220392813, 0.5434014290196176, 0.5401284282925658, 0.5400025905922647, 0.5421887393849238, 0.5462237039870188, 0.5425556117882844, 0.5450654510766265, 0.5479714778653062, 0.547667761937293, 0.5480038118610843, 0.54786962318585, 0.548634947392808, 0.5499757339150969, 0.5505094817743539, 0.5480856553102317, 0.5524007148262734, 0.5513069649137079, 0.5552085225071385, 0.5525018205970549, 0.5546350382474403, 0.5575778151073638, 0.553797839341567, 0.5588049838911014, 0.5569896054041199, 0.5566142881287592, 0.5592196163965736, 0.5569310305145256, 0.5633159675126217, 0.5607787475655491, 0.5607850487908099, 0.5599308000442799, 0.5617895308630274, 0.5611204380336511, 0.559050991710766, 0.5603477726942715, 0.5600766252312309, 0.564723891608325, 0.5671652850280778, 0.567278562374532, 0.5661887700690864, 0.5653008696365124, 0.5662677273577865, 0.5692785239279401, 0.5715085657585368, 0.568499619744083, 0.569479589769985, 0.5695968608991628, 0.5714667173387797, 0.5733823525971091, 0.5731979290606354, 0.5697513288219744, 0.5727817671445392, 0.5763569074569388, 0.575750673665887, 0.5740946781384892, 0.5733539842970661, 0.5731677877987165, 0.5756313128050174, 0.5754736803415381, 0.5773504278940669, 0.5759327502718309, 0.5836763599359357, 0.5774513955760889, 0.5823943018741686, 0.582528791110624, 0.581638181917778, 0.5822363307965472, 0.5831616128591748, 0.5865288090548255, 0.5800182262810901, 0.5810281697710205, 0.5835486644938388, 0.5853253995659021, 0.5859010303867173, 0.586758944851668, 0.5865084941939356, 0.5883691364972139, 0.5858909235099748, 0.5865303129971141, 0.5888602024160037, 0.5882554833636594, 0.588209246784183, 0.5929565214506078, 0.5891133040915522, 0.5942825779856833, 0.5937152606293117, 0.5890351615551589, 0.5929633083636469, 0.5888396422046431, 0.5939834606968509, 0.5930557749830081, 0.5915090667366429, 0.5951011452725359, 0.594729188732454, 0.5937966976444604, 0.5941824266248028, 0.5973367010934023, 0.5945060760961207, 0.5985163221944243, 0.5948719760740268, 0.5994658922138896, 0.5921567429445069, 0.6009625016537934, 0.5958035036921177, 0.5966730206308657, 0.5960049942813119, 0.5978969796603206, 0.6034641641668332, 0.5974221448751117, 0.5974806729309938, 0.5986943537872846, 0.6011181728097308, 0.6033649680473961, 0.6010402230933265, 0.6000790392915094, 0.6012726367134291, 0.5971353264977102, 0.5959855679579139, 0.60053227678105, 0.5978970870451572, 0.5991384707631836, 0.6053363074405514, 0.6017950482407601, 0.6024160259572185, 0.5983133938841079, 0.6025098614296096, 0.6037079924492083, 0.6028637949843916, 0.6037627524400387, 0.6019238982881279, 0.6050299220988209, 0.6013870227050694, 0.5978609971289166, 0.6019438730789012, 0.599730551019123, 0.602295831890981, 0.6035153032288844, 0.599064828714307, 0.5990465205371482, 0.6052153076830649, 0.6002898069474534, 0.6052120873685212, 0.6057685537891924, 0.5988345716079031, 0.6029014144956506, 0.6045710232696482, 0.5978589913413728, 0.5994658618112463, 0.6021827634366319, 0.6066353472281694, 0.5998864518073996, 0.6022975497487351, 0.6034248794813056, 0.5991187871525936, 0.5980780750549213, 0.5973050573294996, 0.6014491881415289, 0.6002066928398946, 0.6003039030074051, 0.6013605236971828, 0.598805539943584, 0.5993840786789237, 0.5948757294261362, 0.5999589807833463, 0.5990726609938022, 0.5966199628270291, 0.5964306169023327, 0.597019771350075, 0.5964131753045906, 0.5984103427588485, 0.5981581754681178, 0.5943652365205925, 0.5964389550165962, 0.5956759906708371, 0.5932058978244047, 0.5926284151941876, 0.5936284103826905, 0.5968696088064817, 0.5973168057021344, 0.5917103896204698, 0.5928656303313954, 0.5898237386309984, 0.5888709017183069, 0.5888411025933711, 0.5848064617854785, 0.5857118194709441, 0.5828218911778618, 0.58671039409622, 0.580157997663006, 0.5812502434578789, 0.5823941760335944, 0.5795089849642714, 0.5815694396638909, 0.5859748418367989, 0.5815190760706753, 0.5807408529360707, 0.5756566999526181, 0.5736166468167123, 0.5745526474855198, 0.5713455204645765, 0.5731619981928814, 0.5692025073833012, 0.5687108779341876, 0.5698525122292697, 0.56483871555771, 0.5653226965901397, 0.5613378222167836, 0.5563012377139753, 0.559642592181797, 0.5576536080778427, 0.5540448320381001, 0.5496928521174842, 0.5485955476946749, 0.5482245746408012, 0.5518531256773899, 0.5438789112917646, 0.5410060209199132, 0.5429557314956392, 0.5452077953199664, 0.5395597541269515, 0.5383534288205696, 0.5343971237624008, 0.5319163924953653, 0.5278983872637739, 0.526862232211553, 0.5264635092765466, 0.5211849941461258, 0.5170055171485005, 0.516808878975425, 0.5120085552109352, 0.5125999792659235, 0.5164358333306547, 0.5043886831433003, 0.505025388846548, 0.5063802473653175, 0.5030354139595079, 0.4957282515316656, 0.49152713432821554, 0.4953508927721949, 0.49655824150519406, 0.4927369220857433, 0.487603908896231, 0.4867999093616593, 0.4824363628720455, 0.4825858347343381, 0.4809241909230666, 0.47765433173996713, 0.4775638673008955, 0.47372309483340735, 0.47071593349471696, 0.4734253571970853, 0.4653575270248864, 0.46614842652822547, 0.46076888233332963, 0.4596981859489788, 0.4592302407082271, 0.45655944007073695, 0.4575963321235418, 0.45861505103266537, 0.45163471204388433, 0.45274917844863066, 0.45245532114316445, 0.44440731607171857, 0.4442477949079386, 0.439913859615727, 0.4429553709684722, 0.4427536619866098, 0.43773186067401937, 0.4358702775369066, 0.4330246419538013, 0.43771260257303696, 0.4289621352318781, 0.42777546749971584, 0.42839742737190284, 0.42618006714840756, 0.4269826223834251, 0.4247407362218274, 0.42278559621630823, 0.4223141051149083, 0.41850765344627006, 0.4170545714420677, 0.4143478221129092, 0.4120598792839504, 0.414387541274174, 0.41216101654095044, 0.40551940312681356, 0.40647089471793196, 0.3995013993010338, 0.3994886524529055, 0.40056199338185927, 0.4002016958478829, 0.39776232957929925, 0.3958900390189669, 0.39287839381640816, 0.3951016032776187, 0.3946951342084281, 0.40085382447662876, 0.3962563936406015, 0.3937123894856008, 0.38909470690647957, 0.3871194695926817, 0.3910356941198444, 0.3868408980363616, 0.38459648248533934, 0.38429281654936703, 0.3806673948844329, 0.3819955585882247, 0.3784450000685176, 0.37778280033362505, 0.3742107317520799, 0.37077421576562175, 0.36966004147999737, 0.3646854618503518, 0.3706186712533071, 0.3701079129882741, 0.3707254107239013, 0.36835418409093046, 0.3649349893554212, 0.35925388365074873, 0.36143285420857507, 0.3570589034169034, 0.35774348950935, 0.3578662859013405, 0.35263616375569057, 0.3533184881903397, 0.3494861065094615, 0.3520097406001754, 0.34849076760072045, 0.3460899879211182, 0.3440765611069631, 0.3399040684184028, 0.33999880710264146, 0.34111944102506336, 0.33579465704022005, 0.3391142342431386, 0.33402397055135186, 0.33571174118008573, 0.3361736585713347, 0.33517819556924755, 0.3292370873279605, 0.3272623242846313, 0.324088189861809, 0.32196511331339767, 0.3193815182684174, 0.32002218255216697, 0.3191916347899245, 0.3168524857119373, 0.315000538693623, 0.3179049001923157, 0.31490460968191186, 0.31543908122192077, 0.3074319989168452, 0.3074214175920479, 0.3046236819008837, 0.29865661608050786, 0.2972876227695864, 0.2957782612611838, 0.2936363450491818, 0.2928223123334326, 0.2937111687420784, 0.2902659491252876, 0.28755889068557294, 0.2905728349833453, 0.2841884256591968, 0.2848108052257295, 0.2842656535786142, 0.27584671662283033, 0.2703351385035172, 0.27345095714679857, 0.2761603948283078, 0.2653128246578686, 0.26464844309680713, 0.26590315214776983, 0.26507547246601815, 0.2601704936930792, 0.26110526415612434, 0.2618821109711763, 0.25908013337756086, 0.2547406379506736, 0.252673152973311, 0.25205344135821084, 0.24993608912814272, 0.2421071037199578, 0.2428268055185503, 0.24259614318217487, 0.24267414050527422, 0.24031441150562816, 0.24098985785243704, 0.23568670005951323, 0.23106903373678614, 0.23016099414763538, 0.23104899574609677, 0.22825492777855594, 0.22721438848254488, 0.22610982111710212, 0.22658201920994947, 0.22092269986022597, 0.2196927463990221, 0.22187729121543134, 0.21591377559397915, 0.21825525572123627, 0.220869680570831, 0.21543277169810388, 0.21332770093109218, 0.21190878840796512, 0.20775181438363127, 0.207622184918058, 0.2076123010108765, 0.2050180071787307, 0.20245086980030136, 0.20013127145041953, 0.1961789322268343, 0.19467617930776443, 0.19502684989067715, 0.194605072220091, 0.1925822106627102, 0.19158373717392782, 0.19333917495085823, 0.19120826798922202, 0.18629822575684768, 0.18990783663454044, 0.18665435133436328, 0.18310019473635264, 0.18768052493263726, 0.18715484457822673, 0.18219042991547893, 0.18365587056208116, 0.17944543675271174, 0.17346071409450742, 0.174637152534109, 0.175608277815466, 0.17769229665490424, 0.17716482396246286, 0.1715002804261591, 0.17126811141441187, 0.17188096833306243, 0.16957818356081483, 0.16490141564316935, 0.16345061201292446, 0.16697794401181426, 0.16149309129889272, 0.1586117604195835, 0.15857192964418443, 0.15973924339692447, 0.15913366547447408, 0.15700265987376125, 0.15742515342931385, 0.15676461437513967, 0.15228942170493726, 0.15367675292087016, 0.1556578573248567, 0.15261066770961865, 0.15059624367481925, 0.14867277492593994, 0.1448367226109452, 0.14439854687373335, 0.1451224001773655, 0.14387059141434982, 0.14199389687942274, 0.1394650734317413, 0.14064435469205536, 0.14284706768584202, 0.1416733311973507, 0.14046859676057502, 0.1378394860484041, 0.13880376184018933, 0.1356871160169292, 0.1333292238154847, 0.13357421417100665, 0.13762095533527172, 0.13417433507017457, 0.13086797922720184, 0.1277792049706369, 0.12814694671142776, 0.12551102561348634, 0.12541982823967737, 0.1245267596778364, 0.12148356865671003, 0.12046943398005679, 0.12024719130291486, 0.11711834907644732, 0.11723664398865405, 0.11654079918003242, 0.11545312810883182, 0.11617026497893101, 0.11595706945675026, 0.11581926466767208, 0.11322816486998055, 0.11621907561910053, 0.11326429091629076, 0.11469434738951874, 0.11011312548604099, 0.10832129372428778, 0.10543902647555534, 0.10675267351700068, 0.10623262833517573, 0.1078996908664525, 0.10563144749567213, 0.10305043223848084, 0.09922652182388228, 0.09995509666959067, 0.09977134096452574, 0.09645269632142285, 0.09828574891314436, 0.09945774814355933, 0.0967582036490595, 0.09679801549404389, 0.0954636863214645, 0.09361230505091533, 0.09311915922913658, 0.09170670214590358, 0.09075985978438914, 0.09265341309984935, 0.09276456516148844, 0.08850762219382156, 0.08998666901131137, 0.08534219683900038, 0.08763711635345205, 0.08458809326739578, 0.08083123561941462, 0.08216129430507035, 0.08251453562832835, 0.0812509915608454, 0.07974769601472499, 0.08055069379496496, 0.07717563749607201, 0.07545394247175832, 0.07601913423037919, 0.07621514961519307, 0.07675076427848065, 0.07247632811775692, 0.07150823616652782, 0.07127980675329244, 0.07157343192190826, 0.06992753722929218, 0.07165204876397409, 0.06964033425249888, 0.07002881089888038, 0.06825558661625282, 0.06726370354137755, 0.06622699413998037, 0.0664848033742647, 0.06417321354197772, 0.06411805706448791, 0.06412484852258171, 0.06232550644096997, 0.06322886850799947, 0.06253816062504214, 0.06438040843980898, 0.062385398823090285, 0.06164595063149211, 0.06311516242058565, 0.06201428011939249, 0.06144979400295699, 0.05877460491201123, 0.06103381392682992, 0.05769084547301938, 0.06012118937737818, 0.05719687170047888, 0.05677168257689149, 0.05509234069510131, 0.05615381801498927, 0.054375493750297633, 0.05472538190148422, 0.056736118059127885, 0.0538739368730198, 0.053365545372365174, 0.052807587094852636, 0.05232847539058698, 0.05214259551828517, 0.04976802412875593, 0.048928500140314156, 0.04871305310720174, 0.047242500022752716, 0.04757008389164411, 0.04614386834147705, 0.0445543092568576, 0.04558465348111887, 0.04571530642483769, 0.04483146958738572, 0.04492938838731814, 0.045065837880081415, 0.04517810068623154, 0.04280435012931868, 0.041750620945911185, 0.04274805561054835, 0.04304857561075579, 0.0420714775980441, 0.040982447763721536, 0.04104577193227969, 0.03980006276559907, 0.040918955513855555, 0.0416789689936341, 0.039415872988602434, 0.038683816176722834, 0.037604107433979725, 0.03774404106642362, 0.037399088289836506, 0.037807978138465224, 0.03879783162476519, 0.03926253109566544, 0.040096765677209906, 0.035981538402674026, 0.03710956563217003, 0.037459891053762046, 0.03743164095181213, 0.03530974367548061, 0.03529129757638485, 0.036276248362683075, 0.03532377733726006, 0.034840869311964937, 0.03290327303780914, 0.033739100930724596, 0.03460044005192655, 0.03347932786700803, 0.03278173334776967, 0.030742632940911313, 0.031018241173142114, 0.030204335518730124, 0.029902974073468164, 0.03042887752237506, 0.028411795925221188, 0.029701138119651454, 0.028706097155250566, 0.02998631967402886, 0.02798524404380387, 0.02733896883534298, 0.027751130025469417, 0.02797538932361741, 0.026416945283816485, 0.028149741820655057, 0.031178641479609675, 0.027197179431443043, 0.0261678411521007, 0.02566933133704701, 0.024739347651703915, 0.026108482871576848, 0.023875379927559195, 0.024858054095550967, 0.025480960578700147, 0.02376020086778706, 0.023634309923932888, 0.02306188800903216, 0.025311878860626646, 0.024537141678665813, 0.025270659463543226, 0.023599494665066115, 0.024054119607674528, 0.02512424117389004, 0.025029372998504985, 0.023134424649643756, 0.02210081725718905, 0.021730914174062633, 0.022920918282088962, 0.0236124803851702, 0.02187416100841041, 0.021925115005456377, 0.021243062973662193, 0.0238964889294447, 0.020876397345353303, 0.020170778789236933, 0.021712841763960714, 0.023223083486722987, 0.021903381147164953, 0.021980696375665815, 0.020941226838540612, 0.019618395589647224, 0.023129622554685883, 0.020383785831833222, 0.018397008367275015, 0.019374193520474543, 0.019779885031358555, 0.019155243648644942, 0.01820062393723456, 0.020358851113047055, 0.019544509505206326, 0.01827683004983736, 0.01867626868461935, 0.020087900017153375, 0.01736448064793996, 0.016498092623107207, 0.017393025312603786, 0.016482023411213093, 0.017192435890247038, 0.016463061798260414, 0.016545694012301954, 0.01714948791766625, 0.01730708574128157, 0.016142084356498186, 0.016739456278483892, 0.016626477065949934, 0.017678894725212356, 0.01630477367573003, 0.01744659442624635, 0.016985362029694258, 0.0185213519850845, 0.01832111604318688, 0.01545451282095325, 0.015381451014231554, 0.01634949373521275, 0.01650080541955761, 0.0159827171090744, 0.016337309474899343, 0.014487362028106712, 0.016726294400324058, 0.016567411569689886, 0.018231524428414282, 0.015200717659576155, 0.015804438181394757, 0.017373425596419412, 0.014765800888560424, 0.01484101935948821, 0.015363893381544943, 0.014673529444602679, 0.014980478956364979, 0.014395445789238792, 0.014669771145206683, 0.014780804755987944, 0.014582170958986307, 0.01881443675705346, 0.015188644965077325, 0.013955251450065079, 0.01535885781097493, 0.016207908574728168, 0.014292691759975737, 0.017579333215920045, 0.013767090459130446, 0.01405858873396262, 0.015589774061618484, 0.014235691565835262, 0.015367484489753206, 0.015041818684979055, 0.014611214539703965, 0.015639945867793152, 0.013686978428853299, 0.012885961254964707, 0.012606349028037853, 0.014379657550385649, 0.013434863554072368, 0.014981914246851993, 0.01383899212626551, 0.01458677600887379, 0.01490818575449993, 0.014962364000591708, 0.012438440877438183, 0.013204124637575717, 0.013186556803944047, 0.013198069758129292, 0.013965164225227644, 0.015281234772901905, 0.013104727178483913, 0.014122381390204459, 0.013435364005372746, 0.012648215299445617, 0.01559945675991686, 0.013316341581418681, 0.01450520202012325, 0.012056428258940818, 0.013020925214883891, 0.013668101734978354, 0.01254644920843897, 0.012833993040650976, 0.012674972964235087, 0.013236575814810896, 0.012048391153538538, 0.013494461645897574, 0.012283179476196764, 0.012677263566435342, 0.012978444267310676, 0.011755231995078918, 0.011146129212945097, 0.011515664354911723, 0.014053425402374064, 0.014731583970748988, 0.013243282322219732, 0.012053014467575842, 0.011122507202655865, 0.01189891401756005, 0.011209577508249254, 0.012548325560348206, 0.011029412737768215, 0.010568927680220127, 0.01009240585567385, 0.012624008233862843, 0.011100825957476562, 0.010664205205684011, 0.010922810547767874, 0.011432357983470792, 0.011290621326060781, 0.010350655485799307, 0.00995781219163056, 0.010978805353740649, 0.011988135305513159, 0.012520224833717328, 0.010148743256746126, 0.01262863660133269, 0.009115264930963317, 0.009436296489683376, 0.010606251780404346, 0.010414385652470392, 0.010272210065812259, 0.010544805122871155, 0.012076340317501164, 0.009959166994745822, 0.011308677390451159, 0.011642826146237463, 0.009986117910770836, 0.008870550631007324, 0.008619094417523118, 0.011796622768273961, 0.010505039649470634, 0.01011384861950654, 0.012693182054252235, 0.01081442040978013, 0.009769396492414128, 0.008664962411449883, 0.00949366735534706, 0.009721564246580484, 0.00831872260297234, 0.011600222669423623, 0.008657653011412709, 0.009949785580735114, 0.00810951264291997, 0.008969768840771181, 0.010135156963231312, 0.008246209372002822, 0.010136850715176879, 0.009190700001185903, 0.008590307306222764, 0.00890670223619213, 0.013056108593708007, 0.008698688465411908, 0.008803843837285538, 0.01108366161526663, 0.007671785042829301, 0.01220027603710129, 0.009046878891772168, 0.008868792363529448, 0.009262563004873275, 0.008519722231153042, 0.008792116475533854, 0.008688992871847328, 0.007872078617200278, 0.0077769962270249305, 0.0069218609449682115, 0.010149382939661371, 0.00938128801440662, 0.008490887919716025, 0.008887587041747526, 0.01076612284489473, 0.007989367314464185, 0.0071703933302510545, 0.00820768913219513, 0.009092050233279733, 0.008795708210631678, 0.007592395851620241, 0.007565428698897233, 0.008071242314072646, 0.009237593971132139, 0.007785507760602628, 0.00830350090534717, 0.010765934488964618, 0.009578200395059449, 0.008078075393342843, 0.008165656597575559, 0.006888707330557427, 0.010221218914059135, 0.007470522525327044, 0.0083354629224438, 0.007190422722099342, 0.006834863040137587, 0.006677782144280361, 0.00737980486906967, 0.007138523343688227, 0.007337773595280613, 0.008220314995764696, 0.008679032608834054, 0.006894380611433884, 0.008706224482655112, 0.009001116406225782, 0.007333719224271423, 0.007175534913119069, 0.008980618065061867, 0.006760387197006281, 0.008625909075424282, 0.008437711434136498, 0.006527809580544866, 0.007522476668944807, 0.007815854304637129, 0.007290628409666812, 0.007511056070252864, 0.012643547301714433, 0.007434021615580032, 0.007443617756361165, 0.0073482734798199, 0.006839679314388412, 0.007295144448112268, 0.0075357339776218725, 0.010538760091314372, 0.007733625988483992, 0.007227050191228011, 0.008369499097714742, 0.006855639529152667, 0.006005637924472649, 0.008773344188276196, 0.007753504807167981, 0.006996008300681328, 0.0073332957897340525, 0.006084430244091521, 0.007037951005921264, 0.00651314456241041, 0.009105098017057821, 0.006938839791155801, 0.007369673488322457, 0.006405257156799095, 0.006072683582327944, 0.008439941397241336, 0.00671031636777864, 0.008373850148174426, 0.0072512780705556125, 0.0075991031215980305, 0.00938791291820101, 0.008769266292417505, 0.007186181915390886, 0.006979931540707059, 0.006808071995571543, 0.007672621858585511, 0.006381804222674696, 0.007245969732429608, 0.007338627354612844, 0.007334403180209356, 0.00564630075720861, 0.007259899649187908, 0.007470728913610165, 0.007809818683854583, 0.006970863467012536, 0.005877031902731533, 0.008883435563796982, 0.006427711318640986, 0.007409278173046732, 0.00982189630446766, 0.007488409134714919, 0.0059595198130731955, 0.008976663034396003, 0.006440942865160717, 0.006934029666138697, 0.007086407978224793, 0.0062997675288296974, 0.006774905435737756, 0.006628019182747734, 0.011023440939067111, 0.007346623491444581, 0.008025950331256448, 0.007193131420508006, 0.008791974898658335, 0.008050419401082132, 0.008489355330315008, 0.006246464446335542, 0.008488428170298436, 0.010683405670059185, 0.0071398172761624025, 0.008355545626368777, 0.007560649431680768, 0.012170495056892567, 0.008379549681612085, 0.007146959505339003, 0.006421844580921205, 0.006684226412230448, 0.007081633762720379, 0.006622754192130258, 0.006349979034159113, 0.006134179189003274, 0.0073724442334140924, 0.0075013498919150115, 0.007781576172551969, 0.005896340446670905, 0.006797065371434314, 0.006067442346027555, 0.006545948218152571, 0.005938212224873879, 0.006161324612071617, 0.007402015797327738, 0.0059885234236672505, 0.009452031005559022, 0.007020981904316065, 0.006693753933503207, 0.009117345015751583, 0.006648894618855388, 0.006997098558729311, 0.008153928810800626, 0.008902287151714355, 0.0066185340208781696, 0.006339722229975466, 0.0068171153923941435, 0.006657450262483359, 0.005545192223690422, 0.010888026231641128, 0.007781929516445243, 0.007682688196929186, 0.005854549868834072, 0.007388038800924468, 0.006888697340103915, 0.009078165161829558, 0.0074985109537343015, 0.0068999944363064515, 0.0050251381199061, 0.008529684786496435, 0.008059225193199454, 0.006120621776797745, 0.006678626084604358, 0.006150699181239316, 0.006385982807341793, 0.0068435840763738705, 0.005467540037508084, 0.0069949359975478645, 0.008368539023583293, 0.007139209167463724, 0.006991143579119903, 0.011706127701192639, 0.006351875241125943, 0.005326687534174831, 0.005795975609179604, 0.006417948792524965, 0.006997381583193858, 0.008122669358798972, 0.00780971491601124, 0.006904562792620984, 0.0055819707172988006, 0.008341289945456559, 0.005596601336518518, 0.006817306122729921, 0.008375134446095523, 0.007190822019572091, 0.006721257401654419, 0.005532704443301441, 0.009089205695254331, 0.006569154132011081, 0.006148849263548959, 0.007731770292039965, 0.006483860998501752, 0.008187618552783596, 0.004692630750949246, 0.008250335632450635, 0.0062866722617599515, 0.005038606838525585, 0.005361861856189006, 0.006038898312775877, 0.006579550846562948, 0.005865024535218184, 0.006152988713616654, 0.008809210659225547, 0.007600258760907423, 0.0054283794000407615, 0.005811986083526952, 0.005852542976265712, 0.012133963607502846, 0.007857756441166569, 0.0058304167935706724, 0.006137913392492992, 0.005544094942379859, 0.006870839946865108, 0.005063379345970109, 0.006117263112360889, 0.006111358891215206, 0.005604841532393859, 0.00706009804656615, 0.005854000133947207, 0.006053810728656429, 0.006136570177502643, 0.007904161075283803, 0.004980066093716789, 0.005974943951178067, 0.010264722197201592, 0.006251201215026865, 0.005382671971673241, 0.00681065835765738, 0.0057559893286600276, 0.007681314252956392, 0.0058325829577061785, 0.007274061217749525, 0.0061239676998375275, 0.005213460626618283, 0.0055388827473499295, 0.004794704297222037, 0.007760016347522429, 0.005336092683524555, 0.009641380834613723, 0.0054103347649771035, 0.0052503759434328395, 0.005535185013962678, 0.006575168650569806, 0.006477680642763002, 0.005121757342464435, 0.006247115876263599, 0.008038820947583878, 0.00678817212703528, 0.006071318842363091, 0.005105143895805643, 0.0051814612921969976, 0.008159980936022156, 0.004908314522365958, 0.006096772093402483, 0.006259522468973497, 0.007428399689626823, 0.0062269266396257775, 0.0042581498388468446, 0.005655605296847861, 0.006369629500693847, 0.006118426102915341, 0.007522428454823637, 0.00476912881092625, 0.007143548250796205, 0.005512160140379053, 0.007179472688864215, 0.007984252489522585, 0.0072544401668219, 0.005101838562633158, 0.006702555026445019, 0.007234803769779549, 0.005019924222714602, 0.005433630891247089, 0.005705789823283739, 0.005054200844754737, 0.005805349621158751, 0.00472990165727553, 0.0054871137530028286, 0.008020025036826129, 0.0052808132141391835, 0.005614517773776597, 0.00480437751724082, 0.0063366175281381705, 0.006144461485871469, 0.004691455351131198, 0.005570430144339227, 0.0059176579168159354, 0.005750584579973344, 0.00522919737093411, 0.006563425942494995, 0.0053095582171073805, 0.007975909167375232, 0.00476810986132504, 0.00810498256088151, 0.004975739381045488, 0.009973898188614681, 0.00595410750020825, 0.008066134592648402, 0.0059384763434427905, 0.006773443652600228, 0.003984758514240852, 0.007773365218946951, 0.006377400958511413, 0.006627926421602875, 0.005177892214371848, 0.006202761477958535, 0.0061195126023125285, 0.004687444340277671, 0.009290168533793176, 0.006199878487783874, 0.0050230701606157465, 0.005071263293294045, 0.005013745233727527, 0.006284498055166702, 0.005710012845782303, 0.005552018295061236, 0.005736900710648267, 0.004771668366640296, 0.006735070242198699, 0.0073832170196574355, 0.005388324453621198, 0.0051781033193338336, 0.0053923652672790215, 0.005943331229031831, 0.005063355314890122, 0.007717926346936842, 0.005872671649075638, 0.004664832849542608, 0.005459190935285046, 0.005269675885552538, 0.006024692068995996, 0.011863008742194783, 0.006105718090407922, 0.006483585358567781, 0.005258502435093558, 0.0054778824048038475, 0.008473808641623125, 0.005360059733143582, 0.00785827633459106, 0.004577128664849334, 0.005597380657939152, 0.009068035572348716, 0.005943734937790471, 0.004577446445357472, 0.007425900581051764, 0.007789695293337402, 0.006523676834065434, 0.005625436011977407, 0.007173768631383323, 0.004732085582575401, 0.005546151229061928, 0.004804649225993182, 0.004822970825065132, 0.00431918427685733, 0.009217013774169822, 0.004785071726882566, 0.008601358759344275, 0.007232449257065876, 0.005561198135154031, 0.005373935965475836, 0.005239171361424917, 0.004120497120334973, 0.0047440010914214775, 0.005658633998233334, 0.0047519797827168374, 0.005475502118461267, 0.005297658819250643, 0.005255597727900327, 0.007441517567161877, 0.0060573823574805435, 0.008292049044870744, 0.006083577210019239, 0.007503322931854422, 0.0052847410928909735, 0.004803455343648631, 0.006906586482658028, 0.004903481371379255, 0.005326258958572833, 0.006015567318573755, 0.0048213667984638294, 0.007789865727326949, 0.00584309365619908, 0.006589404849414932, 0.005231099344015418, 0.005078351205231713, 0.0058899237678819785, 0.00501260819332536, 0.0050026917709010705, 0.004771948113231341, 0.006065208109951493, 0.00479770587688568, 0.004807196678790228, 0.005310728026433222, 0.006391425179215132, 0.004531429492096505, 0.0064048638913433795, 0.005728376976745707, 0.006321205379642429, 0.006166630245451999, 0.006922067275548292, 0.005257468660315652, 0.007108023280431352, 0.0048002250283802105, 0.004341763137533413, 0.004787058116341578, 0.005265149458197555, 0.00672265805649482, 0.006039667820971388, 0.005178433272310161, 0.008511758849964524, 0.004302329629107642, 0.007251870403776129, 0.005051149227648564, 0.0050793622111635645, 0.006078584809867697, 0.004270938913919381, 0.00867465729903867, 0.005476843992827238, 0.005578311503110083, 0.005752643054044068, 0.0055429322303536255, 0.005561154691496756, 0.005363021956806518, 0.005560875397169956, 0.004501461256687673, 0.005019026833779464, 0.004394856664006619, 0.004830540207427132, 0.004595431997879759, 0.007733000107641404, 0.004642348717997249, 0.006005420838006091, 0.005564333299870527, 0.004671268990480232, 0.005251745322496231, 0.005658634059952526, 0.005148519846892524, 0.0074305101620004785, 0.004363914132540082, 0.008274219114585436, 0.004393339972404124, 0.003940206808655699, 0.005733559417936808, 0.004931334607894291, 0.005043225094222103, 0.007732354873448528, 0.00978602341780042, 0.004899303291468036, 0.006552523523501869, 0.005270122325441622, 0.005007735834867572, 0.004561457245888105, 0.0047940025066385995, 0.004582819210440714, 0.004064613146422825, 0.006142786573562893, 0.012466990029704235, 0.005604243050178757, 0.0043337920400530645, 0.006868506108406465, 0.007425376454193816, 0.004213960763322061, 0.007125157840604694, 0.005163033087553397, 0.005460917063223962, 0.0047864489942786624, 0.005315727021757736, 0.006890307118027015, 0.005780789109535102, 0.007594352133228917, 0.0055374762236121994, 0.005780498578085885, 0.007280760007474213, 0.004523009551318185, 0.0046105900603973975, 0.004874947877517596, 0.005101396451787469, 0.005952377716774497, 0.007864667444352286, 0.005152056184058408, 0.005020057101336807, 0.004741321039592869, 0.00621037539678323, 0.004631675105329013, 0.005362582855373543, 0.004840602923178161, 0.00843188037045011, 0.004805252415610925, 0.006998736772145379, 0.0039614732262438345, 0.006331843595995082, 0.009341670548344226, 0.005212473354484956, 0.00397819330377741, 0.004994750414715523, 0.00765936930277074, 0.007867009264089325, 0.004829787911416582, 0.007153779860295974, 0.008748796005762472, 0.005687505165121344, 0.005575345844516504, 0.007214369049879729, 0.00801431180154709, 0.005849165396608162, 0.004771101355147441, 0.004786154689770192, 0.0062185162020128295, 0.007088619845673426, 0.004131664582051479, 0.0051167371565556475, 0.00601168833264822, 0.004119215037670621, 0.006113577958177137, 0.0064526110586461734, 0.006341778456725462, 0.00455920265991579, 0.005475812769657382, 0.007428805921356492, 0.005730572647417252, 0.004728969701823206, 0.0046145052294276736, 0.004098478103005089, 0.005916181015395808, 0.004263051523328565, 0.006697023839455092, 0.004649382971192833, 0.005591817744366665, 0.007296516135110205, 0.004992020593375677, 0.00464741655693024, 0.004302401568178818, 0.005473595581697007, 0.004156320676972638, 0.0035932647956414083, 0.0037601544581258852, 0.006010945753778056, 0.005620588015202966, 0.0044584969767536035, 0.0040369803912552755, 0.006895993126690378, 0.003462018152847905, 0.0038184340442966322, 0.005670399344463102, 0.0074906064769135, 0.005298731574455937, 0.004869142498855292, 0.004571950812726077, 0.00784707923198857, 0.0040696066442194555, 0.008432512162802533, 0.005117749612788828, 0.005034953139829061, 0.004404980488972968, 0.0036226733966522075, 0.004545320897530767, 0.005607229060683295, 0.003971060678282704, 0.0038000175314683838, 0.004556958238525094, 0.0037980734178280524, 0.00679027186465077, 0.004842958293221191, 0.004418873836614294, 0.004592715745962776, 0.006772007362130103, 0.004111163313597529, 0.004298790013304347, 0.0031516624294238406, 0.008643666052983539, 0.0034454615085510085, 0.003514428604164894, 0.0036396792104349215, 0.0041656624193677876, 0.004383747133789926, 0.004568833550811422, 0.004459024311285279, 0.004699627502096402, 0.006147143136573359, 0.0042394832317870345, 0.004451281673054668, 0.0073275075635402444, 0.006706046936721996, 0.004887125585356477, 0.004279002518237297, 0.0037455104267062277, 0.004076534058555542, 0.003396019609140133, 0.004647678440294579, 0.0034164036311111765, 0.009267804040196384, 0.0035733102228900173, 0.005489753817090345, 0.003967753594065604, 0.005178130811597169, 0.004225579481570198, 0.003586840859912081, 0.007314168432519266, 0.005657108783670171, 0.00415572903251933, 0.0037679628323623966, 0.005970071387637158, 0.003925335377283638, 0.00577665574825632, 0.004013620032248125, 0.00412979934602388, 0.00406791152653413, 0.004547454594122462, 0.004932424900925411, 0.005662076111086996, 0.005264060263330579, 0.0035933033135177083, 0.0044976508050617, 0.006548327797900844, 0.004323906167610099, 0.004051282852801331, 0.004438257855549377, 0.005046157031665677, 0.004306114181056111, 0.004027042507725886, 0.0062093170689329555, 0.004618931539472515, 0.003808521835544521, 0.004864163552373365, 0.004317322686449083, 0.004798841220851578, 0.003933263172750442, 0.005813929808067431, 0.0046715578288999745, 0.004103438666982227, 0.003882904888641589, 0.005713844998869141, 0.005342535664740715, 0.005354302360570405, 0.004396598910757897, 0.003890663261901858, 0.005526980060867685, 0.005795384350195938, 0.0038554753463791265, 0.004140320984288943, 0.004812764207004756, 0.0048220401031752996, 0.004356890755651193, 0.008037463824519153, 0.0032653192725635902, 0.004053277545764458, 0.004768245551045128, 0.004591317998910386, 0.006441410910767741, 0.0032928563257248918, 0.004457212440819386, 0.004769321084746901, 0.005430012832967827, 0.004183985730514403, 0.004449096656782608, 0.00355172423837116, 0.004213155595453922, 0.0056857666288950715, 0.004709187098463713, 0.002860002327154252, 0.004215127577659166, 0.0039929747709459415, 0.004128454024026555, 0.004075143478152318, 0.0047948646676372, 0.009277011369181888, 0.0072329962635165265, 0.0038496052288135027, 0.003677673738297642, 0.0033295618258601715, 0.004355516468140534, 0.002923339473090124, 0.004895250782166403, 0.003097196316444689, 0.00504299764005287, 0.005055384699319645, 0.003928638602224717, 0.005533287423099473, 0.004833655310690874, 0.003237538646463604, 0.0061275983494234005, 0.005406105410646383, 0.005730227727534439, 0.0042648619673773475, 0.0040563523165871645, 0.0031213427778820566, 0.0052085516767349195, 0.006297830900995734, 0.0028565500123631793, 0.0035844520862021575, 0.006296422687465187, 0.004334279022093526, 0.003578295571354311, 0.0039000953333742233, 0.004115501482106309, 0.004336826977407309, 0.005559445430014807, 0.005885836839410195, 0.0036611598129383726, 0.007168669577815168, 0.004242826740739948, 0.00514158185000716, 0.004172990998573489, 0.005936922944370254, 0.0037084795555580702, 0.004756529564816434, 0.004135902333112463, 0.003683024376407003, 0.006049121752664125, 0.007392105303503526, 0.007389584587880934, 0.003388352213697476, 0.004869906787281003, 0.0047182893829823295, 0.0051809957011051695, 0.004913029618969686, 0.0046285862630182474, 0.007191263140341024, 0.003867975146090538, 0.003000975773276655, 0.00652771058711187, 0.002879097448595989, 0.003916786986108686, 0.0050724229341496865, 0.005250808806043269, 0.008923659685114254, 0.004269878992610615, 0.0037846442674961617, 0.0038796069585377577, 0.004506077487656783, 0.005837652290015304, 0.00499755753249349, 0.004043760976807393, 0.003567471612087031, 0.0036758091407606977, 0.004818613878944228, 0.005434084158357875, 0.003959248872900669, 0.0035193992121259135, 0.0032930956836043196, 0.006214083058045428, 0.004233743483392683, 0.0034878137673761333, 0.008021081719797396, 0.006055247000029802, 0.007744831849181554, 0.0069824208920262155, 0.0053395325144723355, 0.004379044837884465, 0.003912294417065342, 0.004059989704586697, 0.003864651110199226, 0.006632478128791662, 0.004536347992267367, 0.006173938612968113, 0.005872894028803262, 0.005586503561821428, 0.004639328730028445, 0.004038444749417621, 0.0046898509178900415, 0.005059089713324941, 0.0036619116720304325, 0.005053170018441781, 0.003791944294757757, 0.005005590737626638, 0.0036683253833433684, 0.0039510610418733595, 0.004578969407057784, 0.006142114775348144, 0.004961982555148616, 0.011098070741254754, 0.0047500397478586, 0.0031906987395134367, 0.004040835935046991, 0.004783411267941568, 0.003908846047444138, 0.004583685797936651, 0.005271005287252478, 0.004027446207125994, 0.004347355458719485, 0.0066060611441795866, 0.004597309718181727, 0.0049771025640732115, 0.002615692989460007, 0.005316868405111455, 0.0038635214594196165, 0.003414826495823738, 0.0070868215827288045, 0.003498119773469096, 0.0036660940850297523, 0.0037261729104736303, 0.009169786652899397, 0.005864666922080762, 0.004167341722473058, 0.005309603758875424, 0.0037517384810849194, 0.006156905527840118, 0.0036632454559787212, 0.004052427975754508, 0.003685363029905553, 0.003508999289147389, 0.004171811118764142, 0.004994843631265478, 0.0033308740957584244, 0.005434749550408274, 0.004549998026711735, 0.003789204725106929, 0.004497515635788982, 0.0060879122497650515, 0.007377188621751042, 0.004655862138583988, 0.0029979376815664305, 0.003648571538289724, 0.004127965456067946, 0.009869015351810652, 0.0052789380131285915, 0.007507704992493913, 0.003920644116614682, 0.003630810520454527, 0.004898039542707902, 0.0043732591310454375, 0.005751398566642143, 0.003225320144907095, 0.005442039307151703, 0.004321733982046179, 0.0064822522717234736, 0.0052242378581144385, 0.00486086670295399, 0.0041771963575707675, 0.004005007276508322, 0.0037280799809056983, 0.0032565863619418087, 0.0063395771172851684, 0.0036648550447823773, 0.004011688381676843, 0.005791330623945726, 0.006933514018453439, 0.004181629534029332, 0.0033862727288367874, 0.00374120436511687, 0.005297335368359484, 0.004805036365105003, 0.00613390207041042, 0.004498715703590132, 0.006445570553763125, 0.003295913264911491, 0.004592670132184337, 0.004409385976911767, 0.005409066741040545, 0.0038485071570171594, 0.0036600744269107755, 0.003901340317182333, 0.004120643520348876, 0.006386283309754777, 0.00723104708604754, 0.0028273299973426104, 0.0034616428606595875, 0.004121267229656606, 0.0046674482892527895, 0.005757231964040315, 0.0032751140417469522, 0.0028408175671210878, 0.007495765136285855, 0.003616138345217175, 0.004335531216387819, 0.0036319684793128513, 0.008667329621951454, 0.0035763370360528935, 0.004438641196188349, 0.006557755505426506, 0.00485588380570758, 0.004397328916561957, 0.003423639786882568, 0.004070614746697136, 0.003805852364172959, 0.004866504536286216, 0.004618599644043132, 0.003658981767667157, 0.0048127904043764975, 0.004301862474100432, 0.01064630150680043, 0.005952430452059289, 0.006872958104926387, 0.0030686080432673585, 0.0036594170752505427, 0.0041672170771584515, 0.006365252571931381, 0.0037301009382904884, 0.003580384833588521, 0.0045669305940672904, 0.00797294880587944, 0.004625594953306623, 0.0037490592675556043, 0.007708837017649152, 0.00435595889919206, 0.003889039346623639, 0.007343585993803037, 0.003959680346862669, 0.005103539902293387, 0.0049129480768392055, 0.00508784984030111, 0.003470930692757114, 0.004812892148965077, 0.005270997469270669, 0.004899159255431509, 0.004334048249496284, 0.003381349369161532, 0.004621488060432343, 0.003222146648291166, 0.004035041293454111, 0.006793929776594573, 0.00468336493052666, 0.005056209411821166, 0.0038798979783744416, 0.00430914501695241, 0.005621123588269479, 0.0035967325390288602, 0.0042671517174411745, 0.004864932465090851, 0.00242352096442098, 0.007838225505607168, 0.004892102771992367, 0.002960039749371722, 0.005435202693079816, 0.004228292183366062, 0.00642081052672488, 0.004412466066066776, 0.004561600442815958, 0.003509128580144348, 0.005032930282036914, 0.003927845897938764, 0.004595002049982542, 0.0040782700691948314, 0.004660221396442148, 0.004224923409917635, 0.004409002733285523, 0.004475836453961374, 0.003853914579412699, 0.003148690091556422, 0.005190929658470342, 0.005459627812302394, 0.003604535428544169, 0.005392933120366508, 0.0033816410083942474, 0.00397739236561395, 0.006389046454429501, 0.005812684498640157, 0.0026599103846025795, 0.004429060010216793, 0.0061623199420447975, 0.004185145338949392, 0.0030601585151966, 0.005282098349141798, 0.0040931284271860414, 0.004024226224964821, 0.004298910588921887, 0.0035317271135946833, 0.006667636075580028, 0.0038667895149220753, 0.002951809713467142, 0.005240560584293464, 0.004071910996960233, 0.004111161895008631, 0.00593371096258497, 0.002948842981615498, 0.007724217373575583, 0.00460681907439574, 0.005630392939760841, 0.009240937086152689, 0.004160640098407137, 0.0034267618228693486, 0.0059059872522840935, 0.004520488903808241, 0.004187227064364042, 0.004743092914991762, 0.0036181927328496387, 0.0034820631788228832, 0.006335915064736212, 0.0034568826837990977, 0.0037436861505692623, 0.004188476164359315, 0.007682227885284483, 0.004096185464382821, 0.006211051154839621, 0.003922317885209281, 0.004411179023230285, 0.003640470505635182, 0.004930637238674739, 0.006636278675004782, 0.004477822778852477, 0.003296512611612025, 0.0050860276599142395, 0.00521461307462032, 0.0034077362624889787, 0.003864799375655119, 0.004740469793525734, 0.00705552110396238, 0.0034440866975260997, 0.006713118166498816, 0.008219155915597513, 0.005473659774065305, 0.003308315819716727, 0.0037096545852870364, 0.004729763166686928, 0.0034584254312472903, 0.003534010040656769, 0.005480732541100765, 0.005696062091826656, 0.003096543464551465, 0.004148065389525311, 0.0033300222571018188, 0.006246684632534237, 0.0035233157170598112, 0.0049727390292014445, 0.0034116918925793755, 0.0035836380539019906, 0.003370876678584, 0.003168226629346386, 0.008050652069433098, 0.0071781054020722875, 0.0032660126750835078, 0.005929384190867937, 0.010850851285502507, 0.005096460805344451, 0.005434914655336058, 0.00431225807115634, 0.0038405896291745416, 0.0037042645256053484, 0.00311752531840884, 0.0049683722316137815, 0.003997766866083923, 0.007119844841711434, 0.0070417544117131, 0.011022779299905458, 0.007923769483901343, 0.0036353563750228047, 0.004104388393545125, 0.006621399235959879, 0.004887600262668732, 0.006777914044989603, 0.005053324781173382, 0.003569510379303506, 0.0037761298273730273, 0.005262010750984084, 0.010571502714171815, 0.005372796604494805, 0.0038894826173427903, 0.003407077524319288, 0.0045847395360581085, 0.0061868374665078624, 0.0031012421661979457, 0.003387054063077958, 0.007022565052958387, 0.004223528906488869, 0.003552096755039115, 0.003542642504067428, 0.00596350637077134, 0.003271953038854439, 0.003596727221930722, 0.006451975226906871, 0.005332183128127392, 0.0035766353267912042, 0.00733171770309711, 0.016084368208835118, 0.003971184793068268, 0.003315324747246138, 0.0030416766964945128, 0.004731308294318974, 0.004123291630704706, 0.004025919225391245, 0.005693387969710444, 0.0035890753582673873, 0.002686852431575679, 0.002901643765803292, 0.005640230021067857, 0.004460882592757406, 0.005288991114268755, 0.006114794673339042, 0.004018544937231176, 0.0035466216076858285, 0.0057895579488471665, 0.0039403608705656686, 0.0034141079909634233, 0.00840278629542116, 0.0031050859806775323, 0.004653934038815986, 0.0037710158443721963, 0.005089526149203697, 0.0033821455318929195, 0.0052381403285789, 0.004016692891713381, 0.0038609763399609495, 0.003116932002866941, 0.007589692467479018, 0.008479040597929501, 0.006702477015894248, 0.004012898873417323, 0.005710392620349069, 0.0068246908361706314, 0.0050259907500998634, 0.004061047290909528, 0.005789128901651948, 0.003212009437348925, 0.006659392086261101, 0.00428980518615781, 0.0055527082186447065, 0.005367554172922318, 0.003945200292634399, 0.0046954126419568535, 0.004344566867038407, 0.004826898355339169, 0.003527472812777043, 0.0045546993105525764, 0.0065554562422031944, 0.0038284944411906196, 0.0038162830562739037, 0.005019079772924115, 0.004546818247930237, 0.003856080007425764, 0.007071460135441269, 0.0053179984097929955, 0.006949455915188826, 0.00557100661392153, 0.004264226001049183, 0.004357815718250091, 0.0038064588042015486, 0.005471693529023317, 0.004799745346885641, 0.002969120264932348, 0.004770864097638679, 0.0051261915414809785, 0.0036479735688158613, 0.002936956434455534, 0.004323593424214719, 0.003945507159224112, 0.004595027489874287, 0.005810752586962363, 0.004498640607929065, 0.00394750006030189, 0.005370566447149851, 0.0036609243973255282, 0.00463092912775486, 0.004237232870890994, 0.0032694916063898552, 0.008837133069966056, 0.005475018479211581, 0.005611843034286601, 0.004274247298343334, 0.0055319954568945826, 0.0037185666990731695, 0.006037253405291747, 0.011244313224013477, 0.0035637512472429292, 0.004887822229675372, 0.003701363207873508, 0.006848086082974131, 0.007903611599498712, 0.004130464906196901, 0.003955268394110865, 0.010066704721077532, 0.003609840958215016, 0.00429948089108833, 0.005081312574273014, 0.005471917895725204, 0.0077810806361700985, 0.0036109338504989137, 0.0034262197182785372, 0.005294254920454643, 0.005903023236218314, 0.006757135495755411, 0.0033036707190451584, 0.006398361336021829, 0.005101446885999505, 0.007483709955945661, 0.0041509862847716045, 0.003312472003033174, 0.005577418174093464, 0.005318116952150381, 0.00289233179239286, 0.0066178913966357155, 0.004051814292950717, 0.004234760778715861, 0.005538649121638095, 0.0030863518324488327, 0.011040097238193648, 0.003912550152195807, 0.0051908726642761, 0.006682563196273417, 0.0035057580216055636, 0.006037857109142478, 0.004446587548835755, 0.004033943901385768, 0.003605344920192361, 0.004071743014654094, 0.003916308961320186, 0.007489759383660459, 0.003939025389046969, 0.003790392202256657, 0.00566075473435017, 0.005286708252473617, 0.0064228844958566875, 0.012423008570545204, 0.0033316144666934444, 0.00357521188343788, 0.004082566904144947, 0.004760071358518637, 0.007033513396418775, 0.0046022358515096316, 0.0035420203604536763, 0.003384749960879647, 0.003919281486045223, 0.003909747689610792, 0.004293144450141168, 0.008705878674255391, 0.00418786362719179, 0.005323977602742299, 0.004518254011543311, 0.004540671705943186, 0.0047653459272863855, 0.006766747185450557, 0.003660423396098607, 0.004331877903514121, 0.004770664611747686, 0.0024994628964393646, 0.012439930475468302, 0.0049227127580537735, 0.004526071654537987, 0.005006245746056079, 0.0044052890711609016, 0.00529346701946782, 0.005065504849190239, 0.0035288324141722186, 0.004226005921577248, 0.0038795007439847234, 0.006508634008320409, 0.004555375358815785, 0.003873281410966479, 0.003800495243553345, 0.005771631503729017, 0.0044440519290622985, 0.003969767349218624, 0.004606086411420325, 0.0050411456268845516, 0.00678615112584857, 0.004770992943422325, 0.005252144664116968, 0.0042736460781131885, 0.004176271831054111, 0.004804052799339263, 0.005011236554100112, 0.004514819359469406, 0.0062061499145777185, 0.0032783016950807555, 0.006570646735781364, 0.004626026244662573, 0.006926627714125023, 0.00588838044737302, 0.0042566183044143785, 0.00572062202455415, 0.00508589572879861, 0.005375193463843947, 0.0048620897225073656, 0.003969860384300816, 0.0059238648063167035, 0.0051991185444211375, 0.00881002940359378, 0.004982124141134728, 0.007556482937229736, 0.0034492467051494696, 0.005197067519241648, 0.004659598872423381, 0.0066772077495239985, 0.007028399542423891, 0.0033676148967027113, 0.01148780915448399, 0.008320842017913275, 0.0033669192913899824, 0.006437278200567988, 0.012392031123568029, 0.004732836645887917, 0.0049807318811796114, 0.007460220527344061, 0.004638058735346842, 0.00477669077516659, 0.0033605050159260658, 0.005789921542529149, 0.0043821252092417625, 0.003520891175897662, 0.0043264126764637105, 0.004340143462223755, 0.004763015426765613, 0.004599682859885553, 0.003743965059071901, 0.0038910582818094605, 0.003251303592300344, 0.005009596680313922, 0.007337369004433714, 0.0064116783105613905, 0.003709933790546161, 0.005444357991284011, 0.0036350054673805095, 0.0027628372394020145, 0.004387228946085977, 0.003687794661213347, 0.005510761152531953, 0.005203895388165334, 0.005456806110662139, 0.004004084302910628, 0.003829394772487743, 0.007479949400550867, 0.002717969525570643, 0.003813014401657241, 0.003732164038520464, 0.00358528598924891, 0.008182977604803555, 0.005150394336275403, 0.0028089204824729127, 0.007074028370344166, 0.003657499848256956, 0.00369438754215448, 0.003781295607736327, 0.007830024411388654, 0.0038239717595719225, 0.003754273213559131, 0.0029060787828267503, 0.004975575915379443, 0.004578675168611247, 0.006559201550947231, 0.004502750838963235, 0.004021303301825747, 0.0036609301264828595, 0.0032914219524684063, 0.0032622537729446086, 0.0038816838239639573, 0.009046026324099912, 0.005427575477011199, 0.0035950210263068876, 0.005466568681504825, 0.003208919239598989, 0.004813966808015506, 0.006142297808654572, 0.0025776665305726116, 0.004334917910935992, 0.005112178306694504, 0.0038087331250595572, 0.007615635437648262, 0.00395795440278226, 0.003451779364628651, 0.008967493925494537, 0.007713414199815393, 0.004992512748079552, 0.0057095845914889466, 0.005560974907430003, 0.004024030847153058, 0.005790392874189999, 0.004594672045467372, 0.004495610685351972, 0.003155361008384779, 0.00415655458144726, 0.004628924127404228, 0.00433245172482904, 0.00541261308938565, 0.0062911739859901296, 0.006854633271382754, 0.007132218769343647, 0.004114242343942426, 0.003697490985086969, 0.007507913000826453, 0.004839338837816747, 0.0042247670081027025, 0.0027571707645108554, 0.005951724219790255, 0.007179545260116377, 0.004446989937706598, 0.002665426189059762, 0.009751684409482975, 0.004148837553430702, 0.0060409298817366746, 0.003377854864292599, 0.004413464755566834, 0.018120101183313562, 0.006531032510797832, 0.003024764376320714, 0.004195661089472064, 0.0038322454336803917, 0.003571577177797489, 0.004362191685056328, 0.004156349911145021, 0.005430479882915363, 0.0032770515894350845, 0.004226204990744172, 0.005251157491712306, 0.004207772252134, 0.004351084375280428, 0.004400194684242065, 0.00515068564146666, 0.004155885458376501, 0.00400455558574945, 0.008651414832987564, 0.003885915486009676, 0.0030645548879992147, 0.0045719249614102845, 0.008957800936099446, 0.004389561265655658, 0.00226931034459251, 0.005436231503862192, 0.004380593766883685, 0.0039949067520417166, 0.003761171024379314, 0.005764060930385369, 0.006247521876235231, 0.004018863511660897, 0.00839452296724989, 0.0035637872763116404, 0.007573114002373452, 0.003443314259463603, 0.004505025086238685, 0.003669884453880804, 0.00403641799119484, 0.009248949993189036, 0.006261474631323954, 0.0027880677390774863, 0.005644930824719342, 0.006272847607086435, 0.004311876488170033, 0.004421859252026738, 0.006293397328324543, 0.003351142326785754, 0.004098857741419159, 0.004102083768978634, 0.014192058731086518, 0.0032849692088991918, 0.006385124840509425, 0.0035793390831385828, 0.004865714784071747, 0.002167771424037982, 0.006738509376968502, 0.005676268295536212, 0.004292651864818923, 0.0031267341811409112, 0.005108656008638817, 0.007669218268243745, 0.004474688598544224, 0.0038135290257452657, 0.005052504196807027, 0.004726122683874367, 0.006294032473389781, 0.004525276306397813, 0.004303999971489901, 0.003680292110201965, 0.006210454321658614, 0.004572779862957722, 0.004789883124614269, 0.005482602550645222, 0.004581754328596026, 0.004231853436636514, 0.0048425602813443125, 0.007083031992733397, 0.0036240689208740873, 0.004341074819763588, 0.0027191903233282346, 0.005514325345966098, 0.009971413115343707, 0.003367903263802559, 0.00429182370818103, 0.004716846209217115, 0.005342229257761311, 0.0029724409727579825, 0.0032690111789269705, 0.0036818041289131396, 0.005005536202242218, 0.0038243609494681163, 0.004019593161463069, 0.0047216636851967935, 0.006276504885959868, 0.003922832808810377, 0.003488901009070794, 0.007105987652801101, 0.002924127568729387, 0.004030558043321809, 0.002717761994035043, 0.007610168212549605, 0.006181540764451364, 0.0046139897737046305, 0.0051548763254097504, 0.006977047740047223, 0.005701694545930774, 0.003948596666243198, 0.0055784674264860645, 0.00782529415757487, 0.004642354089004897, 0.01132122168711121, 0.007958504941910523, 0.004799651098303785, 0.0037367680767648277, 0.0032986319695312177, 0.003259957565039013, 0.005994387182586816, 0.005285510058140849, 0.00516327201442387, 0.004600649687950145, 0.003956527188465355, 0.008809871854940126, 0.005204503935726553, 0.004491231531129148, 0.002731183479753814, 0.006164307906142507, 0.0046249353016713365, 0.0054667868928167905, 0.0040708721073714395, 0.003242944494904595, 0.012781225929611931, 0.00396243734349746, 0.005978403689429045, 0.003945671073576429, 0.003481210808849369, 0.004149029701802565, 0.004567332148070939, 0.004540108237837071, 0.004016829714392508, 0.006573330284219145, 0.004416894117206525, 0.00397154894633481, 0.00694063507715009, 0.0034111796210538545, 0.00341141120140027, 0.0039319027685123815, 0.0035953979993545056, 0.0033669847959587303, 0.009342927087506229, 0.004075612508055133, 0.004997528462048641, 0.004448570532062383, 0.004022313427957916, 0.004549016277751587, 0.00576925792906247, 0.003383714244619183, 0.006738615314981283, 0.003423553293880202, 0.0030656904902330454, 0.00555552835435958, 0.004475603931312479, 0.006106929927615524, 0.006894736166925312, 0.004186447081693136, 0.0047738663776436645, 0.004115783648191047, 0.0039686571917154825, 0.0050270512915268515, 0.0043193823118357925, 0.006925793504001891, 0.0036089555241310156, 0.003478562358442625, 0.004914213463669344, 0.003829777345936601, 0.004500866396446208, 0.0034438678987699324, 0.004245421097772862, 0.004524318015012981, 0.0038453266401951803, 0.0034041483512939957, 0.0031922575364924438, 0.005842743822065599, 0.00455542455136541, 0.0075819320312352015, 0.005198741840482357, 0.006868138843229862, 0.004134093474921992, 0.0037766449479097026, 0.006083877522228879, 0.0054893222768595176, 0.004505127340167533, 0.009083339237480587, 0.004558221773729777, 0.008168209901864428, 0.0032874731572007285, 0.004802815856945656, 0.006121366239617413, 0.004688574280189281, 0.009889386758919084, 0.004189670215679472, 0.00303034911993658, 0.006793446409614006, 0.004890522614562349, 0.004464140912785611, 0.003910335329785081, 0.005564480315819241, 0.005459145562521462, 0.004211588462566516, 0.003479383005229101, 0.005102385619943679, 0.005710470808715975, 0.003866281518746841, 0.004618085508982939, 0.003843422153905258, 0.00455880761250598, 0.005876394970267152, 0.005587722197319488, 0.0036126080792130075, 0.0061214623031419155, 0.005327564328827571, 0.004648583077684317, 0.0031418362014713807, 0.004753994494565807, 0.0030285622182135382, 0.0074107470414443944, 0.0037029493746905235, 0.0034402874908526526, 0.0040291838958611435, 0.003357625313976302, 0.004222702587351104, 0.004565476242910349, 0.004202313552342544, 0.003303938174969331, 0.0052572106556968, 0.0029845691115489162, 0.003892653931862216, 0.00725520181878242, 0.0058731996902819435, 0.004441026473330776, 0.005175054548408521, 0.004367706657881538, 0.0050323483692763975, 0.004840905342753131, 0.009653100077408872, 0.005011451946514191, 0.003545926085568149, 0.0038675967412944365, 0.005518494880446532, 0.002955387216015358, 0.0032159264677617608, 0.008115491922108146, 0.003953216131506577, 0.004953612069287737, 0.004257771875911089, 0.003824276267797296, 0.006409786992104431, 0.004073227671835303, 0.0038473824785708066, 0.0077271536844319465, 0.005403899306007402, 0.005496541645627977, 0.00403775651973282, 0.0036124485343970295, 0.0026168818061856444, 0.005257941500550156, 0.003325945028834745, 0.006960542364356158, 0.0034371290479776606, 0.0043894577045653855, 0.00883778827015626, 0.0035941133997396827, 0.008669442842258079, 0.0036550497458917156, 0.0037678313588490795, 0.00394117754457708, 0.005582218402032611, 0.00425686442414954, 0.004015121838374722, 0.0044435612805842715, 0.003940009292478993, 0.003975982073251973, 0.004061597640854002, 0.0034359338483289726, 0.006030875942856361, 0.0073520897003252995, 0.006163702473524615, 0.0028340883927990062, 0.003929212358430368, 0.005522813216746364, 0.0041927490053444, 0.003735027558169502, 0.003088748068889041, 0.004012879733436879, 0.005196284620228242, 0.007923418593699995, 0.006083662676836528, 0.005212410068145634, 0.005550327580067935, 0.002900426503441038, 0.0058857392403773535, 0.002887953755943474, 0.0039856817824702965, 0.0038277382738188146, 0.004485869045400903, 0.003899241034575434, 0.005829805355338099, 0.004577004923478269, 0.003930505337440432, 0.0031300933229189984, 0.007969732128005454, 0.005357920230905459, 0.004190601930408491, 0.0053960455426600145, 0.003694816548622749, 0.0036555270884464294, 0.00505410026774411, 0.002874791262305392, 0.004151699398038949, 0.004265087249523826, 0.004279989124768157, 0.005528321369604001, 0.005792209071603023, 0.007147320154036569, 0.003804257648092956, 0.006364467203526851, 0.0068011821727817804, 0.004362867455726303, 0.0041708588035188595, 0.004638486978555304, 0.00377292375618831, 0.004136859651432094, 0.006502237666281203, 0.006318695284817423, 0.008965750317500432, 0.006073205835335874, 0.004318511435261012, 0.0066444417127080255, 0.003495925782829391, 0.003212148525094661, 0.005753149724776382, 0.004082697001593824, 0.005994801775731732, 0.007265773579055693, 0.004010723648881364, 0.004854955905318265, 0.0034933593600186075, 0.006404552438547488, 0.005920589632288508, 0.003962021822119898, 0.0046680369442789115, 0.003976978450863892, 0.00535995160169825, 0.0037682421082250637, 0.00855297632457513, 0.007377921040002788, 0.004396867312815719, 0.0036805866625693657, 0.003680939659869829, 0.005433709710367319, 0.005285944512954731, 0.003008757489324789, 0.004286960660176297, 0.00394278885036405, 0.007517350572690084, 0.003816573949767127, 0.0035455055792584732, 0.004109147997423362, 0.003214978451141556, 0.005366026988927434, 0.008477152109684796, 0.004038351077448493, 0.0062952982703755895, 0.003976189363810238, 0.005179431125096959, 0.0038867275613954275, 0.005965292992962505, 0.004009186693147059, 0.004602705757406785, 0.0031386880450239734, 0.0033647784073050787, 0.005803721545603871, 0.003144819474905106, 0.007580166988275604, 0.004630587822576794, 0.004328861217531496, 0.004388477601366692, 0.0026286807490755186, 0.004684369617821038, 0.006065729812897411, 0.003588481007966456, 0.005730347717745584, 0.0063864881532168915, 0.007160923706727748, 0.004929110319061471, 0.003707792205475468, 0.005040493735054555, 0.002967747908469321, 0.0027913186292723782, 0.006440047716500976, 0.0027322727941509585, 0.0055598328827434615, 0.0035620818763522862, 0.0055794858026248055, 0.004329769423196328, 0.0038115895799241107, 0.004817810395774565, 0.004761837455252359, 0.0034356717057644572, 0.008915294041540596, 0.004495268022835638, 0.003325906987978515, 0.004312283386001489, 0.004019535912634773, 0.00496741250476263, 0.0073420321963605815, 0.0037273796632987855, 0.005471104219051743, 0.0039045623521253973, 0.00520265619307425, 0.004462051032345794, 0.0058127080649042475, 0.003166285961882452, 0.0050768594883325545, 0.003317864985257969, 0.003719236694831854, 0.007181032982155187, 0.003568127363332027, 0.0035713554433662357, 0.00470561426585936, 0.005825211438497688, 0.004772434112845893, 0.004696332666914068, 0.004965495114705577, 0.006668485620163809, 0.004966968346566755, 0.004153860128273931, 0.004998399358419254, 0.0029690443799125135, 0.004545764564741229, 0.005327454745564254, 0.003334299358274076, 0.012327125874833115, 0.01068372407319217, 0.0038299958751516795, 0.0048513389927304735, 0.003101907254441785, 0.004345579220804653, 0.004077213381675257, 0.004456791798557519, 0.004597473646010551, 0.004505968171944546, 0.006665540912334181, 0.0043389929304809005, 0.0041165349532192854, 0.0054837096538515135, 0.005208028574846238, 0.004470278807019406, 0.0034027878487430364, 0.006815891564398578, 0.004916014537720514, 0.005264611289957509, 0.0072080882479321744, 0.004151795923764812, 0.004280316370092659, 0.007191546468181156, 0.005564887930759671, 0.004713600101700604, 0.002896689421587652, 0.004434598221755507, 0.008665330667237462, 0.0036748564998587787, 0.0036100591045601384, 0.0036099609974725236, 0.007190141346810673, 0.005868981335438306, 0.0030147643752015153, 0.003512196500146758, 0.004156584572122326, 0.005119618008822656, 0.003738331955088664, 0.005671565383699686, 0.00431765035660687, 0.005674171690131104, 0.0034354550427414753, 0.004450180979288931, 0.005474643532030161, 0.0026902192040785854, 0.003888008984989981, 0.002852001555651305, 0.003788531293342479, 0.008541741420236962, 0.004738374623351029, 0.003164685974461743, 0.008325510251290294, 0.004621417925250117, 0.0038530394354728227, 0.004313180495264053, 0.005913688906987553, 0.003400608884472487, 0.003865905810893743, 0.0030571770893190464, 0.0035010467317603136, 0.0038015172822368935, 0.004206098518025834, 0.0053192718562386715, 0.005341602697336321, 0.00714351594755862, 0.003942965614316156, 0.003165712689166186, 0.004406475900878268, 0.008628335475239744, 0.0036555008251998944, 0.005298332450014008, 0.003248184008818373, 0.005039635682415851, 0.004593328122026419, 0.009782841257784006, 0.004131601779581495, 0.004196768691136679, 0.006546046590727934, 0.0033153570595147856, 0.0038367432477539654, 0.003536862752974347, 0.006881332604555472, 0.0031016814443521157, 0.005610270011373343, 0.011174314334742174, 0.009667631919336356, 0.0023379299784315115, 0.004463425246343778, 0.0036394265265380804, 0.00439585397993177, 0.010402394722449063, 0.003966778658237042, 0.004197238795289406, 0.003618626763596578, 0.004534169834212111, 0.004716093395938869, 0.003089104866713726, 0.004607005245506958, 0.0040212171807150815, 0.005208063824814905, 0.006597349055123991, 0.004595167869929374, 0.003695986136314669, 0.005378866551547297, 0.007054736475972008, 0.006389517245413941, 0.005809702946560836, 0.005125574678350298, 0.005603052998466502, 0.008089547068316352, 0.003821353004678293, 0.0066003735354650565, 0.004813993757650099, 0.005077417487604082, 0.003628233658047248, 0.003622516884850471, 0.0046489558226297835, 0.003971641880652099, 0.004558157094542184, 0.0031214489809038852, 0.0066404519576886535, 0.008311289240136455, 0.004455474732828516, 0.005530579491934709, 0.0035959811135852747, 0.003640505194093179, 0.0043109976452650346, 0.0038693695194660224, 0.004328476857960675, 0.00839829686445073, 0.007085391898505928, 0.00832444775081132, 0.007382789627047051, 0.0034620002174321264, 0.006170183044778149, 0.003254718743581206, 0.0034777472963105314, 0.0033340451749515657, 0.0064327660215915666, 0.004008404401787312, 0.0036601773015525326, 0.0049836355297754225, 0.004431049469438739, 0.007691456416261613, 0.002800659682992106, 0.004195632362144569, 0.005696179527441094, 0.0048556233124915455, 0.006186071106739536, 0.003205343774146316, 0.006755991595866999, 0.003319633485043459, 0.004732520953340294, 0.006406736378148428, 0.00635849462526456, 0.0034565208805022963, 0.004108453362720843, 0.006924644045863138, 0.0050245013616511775, 0.00532344597292837, 0.004624243695177293, 0.004473908066523634, 0.005180881105991267, 0.002758077597870903, 0.0035724247624616358, 0.004410454944799671, 0.004924864549525584, 0.004231676541991713, 0.00374980673399196, 0.003470133140054568, 0.0035994608763231344, 0.006104735260072606, 0.003470781058015567, 0.003864594971280901, 0.00592619200228125, 0.005271108660529626, 0.0032045472928552525, 0.004299318233972454, 0.005156512244742566, 0.005083898158720254, 0.004212788582545896, 0.004938291201893716, 0.0034659455437292723, 0.011012041842068077, 0.004411319237633369, 0.004726357895606933, 0.0027218090253775607, 0.007364933903228105, 0.004695851107631155, 0.008717319900494475, 0.004151383536379676, 0.00496231397589473, 0.0046200286090481105, 0.0043635452804687115, 0.0040703227898232636, 0.004015451604347286, 0.006056671962533698, 0.003947328369515607, 0.003710768525818584, 0.004404935364439189, 0.0031376232062302325, 0.0037605918298319967, 0.0048434345945775545, 0.004126568053154489, 0.003435495245212905, 0.0036611858342547885, 0.0031441199691537116, 0.006384063714847203, 0.005165686150736172, 0.004449109127201603, 0.004199737925898477, 0.007209768340235062, 0.004696660649872469, 0.0034256781785373773, 0.005125960822421065, 0.0036291903716616078, 0.00457816951549227, 0.004360228877405613, 0.0056094773416541874, 0.003189814305749456, 0.0049895692698810595, 0.004122501755171007, 0.004014201256650805, 0.004252128095579984, 0.004073495594575235, 0.009207141568529587, 0.0060687447753933095, 0.005430485239214777, 0.005054452443864222, 0.002769456180109081, 0.006739327222944504, 0.0037503979765503015, 0.00494527314010828, 0.002998131880663087, 0.0077166357456248235, 0.004896541361519888, 0.004145019830962892, 0.005079975941841159, 0.008360248491537905, 0.0033541485037542076, 0.005927629347016768, 0.0034355024519285996, 0.004090716185211717, 0.0039536560988825365, 0.013786313141694918, 0.004580301478902709, 0.0053113124633873575, 0.004835883478882325, 0.004045817146223099, 0.006429456568208895, 0.005150762844041557, 0.0036817585880845618, 0.005427335201130693, 0.0036513333435372595, 0.0035002334590029183, 0.004073730703179149, 0.0029153762936568596, 0.004168826121595382, 0.003698216504851015, 0.005117328953301242, 0.0076421933199512185, 0.003265415048255922, 0.003563613065596291, 0.002787609574644328, 0.0034745643097237574, 0.005980503002550508, 0.0037535620723351455, 0.0083673290062349, 0.0036103825145791467, 0.004666175137995396, 0.005153127892569975, 0.006920937017441835, 0.005390209645225413, 0.003324849600758634, 0.003207696595237811, 0.0031166780727000802, 0.0039815762309999255, 0.0036947605166993682, 0.0044697962069519545, 0.0053504397494236414, 0.008086751592252733, 0.004373671136809011, 0.0035785462982045753, 0.003913972585519359, 0.004742793856917948, 0.004514778781756108, 0.002703277351015435, 0.0038656218887422296, 0.0033040626169706317, 0.010848421253318112, 0.005443576323528223, 0.005588343245140362, 0.004935654640996601, 0.002719436652008317, 0.004699156691275589, 0.007277385345066147, 0.0032878872962124953, 0.003276091640670529, 0.007269167135561411, 0.008987790540903108, 0.006931818206993981, 0.005488208512160382, 0.003281862521070136, 0.004574504122358368, 0.006537306729025269, 0.004199028391278229, 0.003784244593905392, 0.004089790296846996, 0.0034644729110467455, 0.0026328264806814083, 0.006754869666552969, 0.004272072788675816, 0.004768892067838136, 0.003528120654271149, 0.0034994206803185025, 0.0036555657032704366, 0.0030934357114838604, 0.0035710494946413957, 0.005072315659887225, 0.005336666302931415, 0.005224591139928568, 0.004409432693453704, 0.005462829536276373, 0.0036722207950390696, 0.0028125722780133386, 0.0066198515512237415, 0.006305788164911928, 0.003100374959470661, 0.0056953338764335875, 0.004237453124124363, 0.0038237753447168308, 0.0034012488411137845, 0.00313495469751133, 0.005855635347954805, 0.004903220147568575, 0.003910103381984522, 0.008670046735371193, 0.003355600524594626, 0.00442184535840347, 0.002806427448917914, 0.007317345832318967, 0.003621097991866154, 0.0033404988144757784, 0.0036447937228305015, 0.0033227185216577046, 0.0035265793770177627, 0.004558975262044752, 0.004027227485234368, 0.003738684388930491, 0.004839317139767522, 0.004159626042077678, 0.005176350481822526, 0.0035464496031773463, 0.003378284632713873, 0.0052676055952818905, 0.007361938977052261, 0.005083219816066526, 0.0035681918735304087, 0.004158079777747393, 0.007026040224750256, 0.003692287754171184, 0.004428744786749422, 0.004284422212130443, 0.00547912664922549, 0.005497921151858444, 0.004377164040038062, 0.005440019087321556, 0.0032509843402264696, 0.00410852018866719, 0.003926828483980459, 0.003412279887951559, 0.00573453059956555, 0.004014354432193138, 0.0032341325365939323, 0.007952542165425323, 0.0052881906122951485, 0.003298205602969722, 0.004173514152024693, 0.0070916697200805595, 0.002979174985669413, 0.003361925688467227, 0.011864164483626689, 0.004419280397444499, 0.006297840594331397, 0.006553901454340996, 0.006290087292784031, 0.004343912497555016, 0.0031279723152547166, 0.004911505850925117, 0.00415313873583621, 0.005497406419611655, 0.0028672047940666336, 0.004342104872453486, 0.00687037198681356, 0.006644613867212143, 0.004527656578758555, 0.004786416874555414, 0.003895392549096163, 0.003360453894045147, 0.004574708978649212, 0.004831456354326911, 0.007001191460973023, 0.004438410809265185, 0.0043296321602845165, 0.0028542436205431895, 0.004140580857032708, 0.0035786870434089055, 0.003183155391844745, 0.0037749138553089118, 0.00485319952487175, 0.0056479061640464295, 0.00610586440822118, 0.0028089917310338986, 0.0036573269637101896, 0.007045617630009856, 0.006534037981243804, 0.005190554267603465, 0.0031600662893660958, 0.003719506012779171, 0.006857914568258301, 0.004668197999514581, 0.009665266075191524, 0.004226764777648474, 0.0031234467321029492, 0.0034998650685466163, 0.00557255823545322, 0.003670717554155908, 0.005175525045056592, 0.003300398124649133, 0.0035659946094208405, 0.005822586519326731, 0.0033532147886178713, 0.0033082932675159277, 0.008796470845933567, 0.005001328178962674, 0.00661130774557688, 0.008143519850511208, 0.00355504658415044, 0.0025446514459948814, 0.005182607546995828, 0.0027830799833861272, 0.0031953925453780223, 0.005037787081314318, 0.0052077298584116815, 0.0038821486259598024, 0.0034046542376644103, 0.003567612878181628, 0.004173751420757796, 0.0037457316120419414, 0.00825465307229915, 0.004368464341159006, 0.0037582632163677527, 0.0037685084285772183, 0.004460141492892433, 0.004916318996049164, 0.00483256891378369, 0.0038759303414679634, 0.004004730069497668, 0.004436944533487731, 0.0070434999196791635, 0.006252474564664731, 0.007955176117534251, 0.0037457427592464086, 0.005124682119120398, 0.0032144816982701795, 0.0030017870015149675, 0.002076581867935341, 0.0026916802106017523, 0.008833636805402419, 0.004356512593793124, 0.005377012226928631, 0.0031292008210335536, 0.004041005352930583, 0.010202603780175618, 0.003782035267961921, 0.003004456090336836, 0.006489172066592594, 0.002722264121708691, 0.00422812779374295, 0.011660920864506564, 0.003084915067007068, 0.00813699691895824, 0.004943333407527656, 0.004879055486353437, 0.0031600879042456794, 0.0076085752210792515, 0.006059940169547948, 0.005714278108469447, 0.0038781440669621685, 0.0033786610046488037, 0.002880307816069609, 0.004817329134227078, 0.005076216315460734, 0.0039360588458751756, 0.004203351734586895, 0.006830077867171494, 0.004537537549937639, 0.0029009220341702875, 0.003048511187602041, 0.0033808306213210515, 0.002920434831541565, 0.004383019686743418, 0.0027726569901002137, 0.0040857015523172785, 0.009903691963647567, 0.0056688839731258885, 0.0069190126791037155, 0.0045520582579235734, 0.0034114089792944536, 0.0027226048095575607, 0.0032065099868007533, 0.004206235684683519, 0.005910559878362266, 0.002745416828812836, 0.0031325360262611686, 0.0037723724645152496, 0.0055122066601258615, 0.005646250097167639, 0.004433606294755123, 0.0037622590442767468, 0.0037376989690334184, 0.003005345006151321, 0.0032055449769429747, 0.009480756501740987, 0.00477735065051862, 0.003952359483830445, 0.003166163351700473, 0.0034245031852373252, 0.003786925800373573, 0.0034275410508236626, 0.006584404230407357, 0.004799322904817728, 0.004605227372937347, 0.004345638227379618, 0.003165316523513901, 0.004501057009764333, 0.0031970519812659325, 0.007906932956870416, 0.004389786933634051, 0.003456737989892048, 0.006042031066119381, 0.010101018988157498, 0.003875001508465265, 0.0030496410867483096, 0.004433254502682729, 0.0046612553895308915, 0.0045652765450516965, 0.004512310236736051, 0.0055891374004058015, 0.003245962711552705, 0.004501941953498249, 0.004767707213855697, 0.003390803110616065, 0.0054328239889437045, 0.008234981574902848, 0.0037124870624962564, 0.0037699635020678702, 0.0031628433617557883, 0.004773417251520983, 0.003592438722103801, 0.003144339836833257, 0.003551194383464522, 0.004201583989287048, 0.003653423903904646, 0.004646701517844394, 0.0031783543070043824, 0.005452393525553261, 0.003941611579726939, 0.006568463315434913, 0.006049000125169426, 0.010176060574116724, 0.010319559959870942, 0.006520933412088865, 0.0036094743928998764, 0.004224822855789183, 0.0047281697318630345, 0.003845863004815128, 0.0035520678152355612, 0.002539510754242072, 0.005294891981347685, 0.0036086308608991916, 0.0031573261875794236, 0.005016125031755866, 0.005697997979868151, 0.004543941024524268, 0.006147773531172679, 0.004675014519412844, 0.005678358894699217, 0.00634603059112133, 0.005817197086511073, 0.0036218643098423577, 0.006052958536025012, 0.003282317539387595, 0.004090034578354687, 0.005643371041522504, 0.0033653653876763493, 0.005428053607834963, 0.0023345409038366964, 0.005429263779478396, 0.006161975384632111, 0.002322244381810523, 0.008697236257837668, 0.0070709482773874035, 0.011559247864819048, 0.004231292776456556, 0.00921511971348504, 0.005422634763137651, 0.0030964479462185475, 0.0032770811393236774, 0.003935891078388555, 0.005122770563821594, 0.005127518974370988, 0.005394397810365119, 0.004319996379708166, 0.0067523168536282475, 0.004222495768513421, 0.0035416513669218907, 0.003983197765942013, 0.003851138056036122, 0.006433247793547997, 0.0038104840213990096, 0.0075858483432348816, 0.0028555865909058163, 0.005597996717183266, 0.005266354750238612, 0.0036976140822615683, 0.005434543975454853, 0.003139580374742821, 0.004632738325307474, 0.003710647713560227, 0.009917050648028766, 0.0034066588604810114, 0.003250609026847065, 0.00434891524860428, 0.0023788178514970175, 0.0031487176992583818, 0.004516552292204884, 0.007252917898109723, 0.0034035699561787993, 0.0046024431130969965, 0.0032402226898546787, 0.004591338170200726, 0.004476377093955527, 0.004296998424777962, 0.004731899710836095, 0.0034649027598377055, 0.0026471381214900063, 0.004879230990704438, 0.003880624556271897, 0.006636643218475803, 0.004755745396429169, 0.004229662436943881, 0.004408013893571923, 0.003945751058770223, 0.005573862312382421, 0.004996115685244148, 0.0038328353147459937, 0.004299984045657158, 0.004281853857752767, 0.007118053024255421, 0.0034078865484819774, 0.004330722584072961, 0.003288394892215911, 0.004033962947852345, 0.0029433262265111887, 0.004223910425115707, 0.00382264588176714, 0.004266682444225729, 0.005067698081727019, 0.006457021034278918, 0.0058858259787380575, 0.00317522042046749, 0.0022297070514438523, 0.005072366147285947, 0.006851622954119134, 0.004443870688767276, 0.003954527393755543, 0.004150703198564822, 0.004993182557207367, 0.004385854233140484, 0.004120765848322931, 0.0038518103848488574, 0.0036962117633098242, 0.004165074368837939, 0.005398584774868121, 0.00625171738648114, 0.003763585958146031, 0.003558253035123961, 0.0037309852600790603, 0.005537933470732127, 0.006240344978190376, 0.005403885580503148, 0.004970478850708706, 0.003936408881729753, 0.004828658269136556, 0.0037578812753090796, 0.007399210613750895, 0.003163859573783365, 0.0056061231895094266, 0.004541523099792241, 0.0032144903574425265, 0.0031645600506730433, 0.006287170011880568, 0.004807607967048142, 0.00838121992678476, 0.002764987400761491, 0.009075136024746112, 0.0034348349075120923, 0.0038843766246881113, 0.003555644226973682, 0.004661730318436635, 0.0027633024274806564, 0.0036602552738854654, 0.002687752532433131, 0.0057238257834592516, 0.0068911857109033876, 0.0045424640642710915, 0.0039104980650615665, 0.005477018933342124, 0.005974590209709749, 0.002508203090633945, 0.003899703291273454, 0.005182367331208669, 0.0026725882935992895, 0.004846978006539506, 0.0038654241476714702, 0.004723744800753599, 0.005129937840625146, 0.00348072942405936, 0.004089123528828458, 0.006439105112922575, 0.0029817379387140834, 0.00847195574496533, 0.006336315672689251, 0.003693462356149646, 0.003197988862178058, 0.005017676146406294, 0.006290223700495803, 0.003801921030654485, 0.0026071962124860327, 0.006298012896279763, 0.004801394691158313, 0.003426217354768084, 0.002996235171946035, 0.004725289511380252, 0.003799776815789545, 0.003903757541739835, 0.0025950381080474174, 0.00415649500677491, 0.01844235779962906, 0.0032710242454401127, 0.0064948331291882445, 0.005969768982855199, 0.005721619218545642, 0.003289684573012141, 0.004103621246601287, 0.002360672885954508, 0.003884177021902431, 0.0032954613609273665, 0.00535353781904352, 0.004707527567834861, 0.004780525431884285, 0.0057018163463963085, 0.004507242685380469, 0.004116841500736624, 0.005713101329562672, 0.002773236450171184, 0.007674757873937514, 0.0034474488052422827, 0.005273535672184973, 0.005082520117326126, 0.005283768664315246, 0.0031520182324484775, 0.0034152505850372655, 0.002566096983675605, 0.008775414471790064, 0.0037277618040078113, 0.006977694049330817, 0.004660766909741701, 0.00612703923759398, 0.0031112285235137278, 0.003396145465188088, 0.0037093915083919785, 0.0024570566569888045, 0.005611738533793261, 0.004262908881105244, 0.0072334291412114934, 0.002910504424529914, 0.0034607462753177753, 0.0020242107800675186, 0.003088454669184354, 0.004827963299510949, 0.006563957400524886, 0.007328575200307783, 0.00329784533860047, 0.0032128669821559117, 0.003613093231370143, 0.004495961028243802, 0.00340196901516361, 0.004904259566133086, 0.007233285696024302, 0.003845241458752712, 0.0054691276871648795, 0.003746461462339904, 0.0032491914620103855, 0.004040666880823331, 0.006274265574588563, 0.0038569603718361795, 0.005063868841300233, 0.004185900543284218, 0.004580906328261981, 0.004769967295445055, 0.0049676842835121695, 0.006321965401857891, 0.004136426252691114, 0.0041943984393144965, 0.004695105935034818, 0.0032706391925200083, 0.0034031625713796636, 0.005519498208473822, 0.003255170775676234, 0.0026590239773373547, 0.005997932338131938, 0.004328249559269743, 0.003922378650252403, 0.003491199888723275, 0.004429974599511109, 0.007364686794883576, 0.004972586425996449, 0.0026534547500911888, 0.0027913662700388324, 0.0026543265993125725, 0.004512638487081998, 0.004442211068095265, 0.0035681631983298682, 0.0033418398840216234, 0.004626929939271414, 0.0035066030872124183, 0.0077929521673040835, 0.004189010609201371, 0.004248704169720345, 0.0033049029351406812, 0.0032658140721940495, 0.0028041899024435863, 0.003760489548693364, 0.0037283893721028706, 0.004609390739452251, 0.00311571281139573, 0.0025385270509399576, 0.005517551266808052, 0.006035491920930256, 0.0034033050039840376, 0.003369062524843486, 0.0031861565232248167, 0.007338990009165665, 0.006115238649532006, 0.004168070190752326, 0.0068060630304035, 0.005550163844309031, 0.0037413610045273897, 0.003286765722626208, 0.004749004164577098, 0.005238783399702894, 0.003203714238921857, 0.0034338429212195966, 0.005835076971975569, 0.0031874068722372757, 0.004199519229580441, 0.004809047888543807, 0.004442733233242223, 0.0059731127874399674, 0.003813907390455934, 0.0037782014965589404, 0.005488830002435606, 0.005058205559723256, 0.0023939473169841867, 0.0035427429753149124, 0.005019351957011928, 0.003143270053853329, 0.003001521654774352, 0.005777903705720387, 0.003520325587545377, 0.0055888183910854615, 0.006211485150523225, 0.00425692791230653, 0.004775398767011553, 0.004403744231018211, 0.004313109602296425, 0.004441515759474402, 0.004285096722756184, 0.0034329657274937836, 0.003720687229132319, 0.013767334358163064, 0.004200498080064639, 0.005638093096476913, 0.003072697363100602, 0.004026015363068883, 0.004606014669090183, 0.0035577677397884756, 0.0036505408946699673, 0.0038863433609909155, 0.003399835481253448, 0.004366558011452493, 0.0039540595258720675, 0.00560637308740097, 0.003759199147686909, 0.0036814207511110717, 0.002425439907735125, 0.005145781073090527, 0.005082063952650089, 0.002756010613386768, 0.004289708746872698, 0.006259030345229756, 0.006290356924794065, 0.0026016982505392325, 0.007785578173991346, 0.00336017685432485, 0.003409110901766746, 0.003158333546056409, 0.0065244735124077346, 0.0035199519916648122, 0.004666034832092323, 0.004841730073650528, 0.003015773892506419, 0.0029035638988795212, 0.005587181348575479, 0.007665453268996027, 0.0031818942258792495, 0.0034888985437457032, 0.001950691318656634, 0.007557976837728987, 0.0024517817459713534, 0.004788947904611688, 0.003967387044917966, 0.0027064332987779714, 0.006061924723141913, 0.006258266924720172, 0.010523280759385892, 0.003394485808691452, 0.00618747534241659, 0.0037614135009383766, 0.0037549147249781962, 0.006569548176142891, 0.006188554785165922, 0.003765989651855404, 0.003802146498788741, 0.003319718538575732, 0.005709650931798011, 0.005202465844850989, 0.002574752974224842, 0.00740242539295244, 0.0038852870265184214, 0.006904341746859642, 0.0031767955569798204, 0.0066394530838162335, 0.0035522526735206755, 0.004279561563768122, 0.005015229164257095, 0.0028503612387719025, 0.0043913507079550934, 0.005410549967675234, 0.0037377081464926992, 0.0035904785715323607, 0.0041714214819404795, 0.006643836781967441, 0.003361740149623983, 0.002447743441904449, 0.009160908154859005, 0.0037188803968831513, 0.004202343790396106, 0.004078793727144526, 0.002994186035544108, 0.004273961254264611, 0.0031332228811729785, 0.005208207123331351, 0.005735362523308219, 0.0037881382076597366, 0.005432431400418129, 0.004062830582595857, 0.005310386056935681, 0.0038821498356584197, 0.0036043504672410515, 0.004326613431176159, 0.004312632669729933, 0.003759897033753439, 0.0034726800536929504, 0.003394552224665344, 0.0036963120126794736, 0.002553325317999037, 0.0030558116223998776, 0.004055769696954962, 0.008391898410253536, 0.0026158756245232705, 0.005026691774030443, 0.004717020346349029, 0.005407165954800562, 0.005648908754595096, 0.004297014094370854, 0.0051340855404034815, 0.004718599019980912, 0.004452389805618977, 0.003346262642700385, 0.003120405166980718, 0.003314005131032985, 0.0042708868705637355, 0.007737508259301309, 0.00963350158388569, 0.0038363000970863697, 0.004278829048225864, 0.003518309896028583, 0.0030365122709185015, 0.004588357210648239, 0.002300179133305279, 0.00471384216462307, 0.004312425750504191, 0.003108546199546311, 0.0047375106834622914, 0.0067486036433647475, 0.004562713899941558, 0.002857827208773368, 0.003951922268833491, 0.002894504818814308, 0.004880336803293681, 0.006805622541320543, 0.004929278642378024, 0.003295354487508799, 0.006579251467220622, 0.00698093455564802, 0.0035841936885388976, 0.0034557539620006135, 0.003574796972287804, 0.0046413133319887796, 0.004936930585510637, 0.003996499040102462, 0.004487348240555214, 0.003774744874593302, 0.0033053257315362704, 0.003547820617539537, 0.0058268562402607, 0.011056179784899397, 0.006232819418405349, 0.002935988387261928, 0.004303936975700454, 0.006241693917105731, 0.0068115798039943155, 0.0036311307570977827, 0.0031818920140471935, 0.0036068350011153384, 0.0053367059495139, 0.003295211516898826, 0.0034846156033254277, 0.004899807364758725, 0.0037926830728320904, 0.00456025630315973, 0.003302713549142257, 0.004579382290301409, 0.004511275073135262, 0.006345396633024802, 0.007777015250673512, 0.004741639993936553, 0.0038493363015607864, 0.0036425068881248404, 0.004316455916835335, 0.003057877475467495, 0.0041754627994205285, 0.0036236619894700985, 0.004118937723284866, 0.003070893251470974, 0.0029658231268333197, 0.007718180350925795, 0.003782205555336547, 0.00421551985258707, 0.006765505966686189, 0.005307676081510473, 0.005393046918719664, 0.004276820227994824, 0.0034860245209901142, 0.0045227715500751695, 0.00460509510268846, 0.003541661639898482, 0.0025756788506665655, 0.004303374934958718, 0.005065918391517732, 0.005273455565042354, 0.0025440674610065542, 0.004186773787420931, 0.0041136922148196494, 0.004693974443128033, 0.003957621845434737, 0.0024243161205861406, 0.0075591774517780545, 0.0032223794140454156, 0.005867987745606573, 0.005458569257276036, 0.006180406915210519, 0.00438711111688846, 0.004329887789632648, 0.005450333303315214, 0.003966782981429254, 0.004717991101379933, 0.007615965021800635, 0.0063260644134110365, 0.0034305930524872615, 0.003279867561884969, 0.0028170374988742523, 0.003428937404217074, 0.004195813664300562, 0.006249623755323628, 0.003700342277729839, 0.004152816825191122, 0.004434138875298083, 0.0044816300627874076, 0.002715672303039875, 0.004837850349822556, 0.003149917097899207, 0.004255866195693564, 0.0038072789993815596, 0.006771017822649978, 0.0046171319591573005, 0.004150851415566523, 0.007425538724741436, 0.003758535054761842, 0.002646989976303536, 0.003126515102216286, 0.004412715161500722, 0.0052699130537435124, 0.004009256190233453, 0.005179771334099529, 0.0032945888183641505, 0.004688750700546547, 0.003984578713301805, 0.003827543188508832, 0.0032095602911046796, 0.005762298462581658, 0.0052165790861337154, 0.004434159086987742, 0.0029406769916405827, 0.0034606772361462277, 0.0034581770216430955, 0.003761521583998225, 0.0040192950812640345, 0.003724531356313794, 0.002890788038216661, 0.002797105849949225, 0.004525187503503424, 0.0023511178809576413, 0.0032993996240731948, 0.002638158167261994, 0.0031501959837729595, 0.003606995806957722, 0.003853623276312404, 0.004640315508637147, 0.0038120076251087877, 0.004183608580206237, 0.0034616520491799673, 0.005879102151317607, 0.004836485263160298, 0.006914641033544712, 0.003979957973629595, 0.0033013798771363186, 0.003464105456053611, 0.0038988909814425044, 0.005948925391456477, 0.007898180519060109, 0.006277811107038389, 0.004720543984703533, 0.0047650211088747264, 0.0030201804288946675, 0.003571861917975503, 0.0025300893091241812, 0.0029105120277851675, 0.0042996203469956905, 0.004493173510839538, 0.003671246282094264, 0.002594995878050619, 0.0029754503442384916, 0.004649488223026367, 0.0028586054444667153, 0.005846048591487475, 0.0032443894181407745, 0.0032698689239942158, 0.00803043807064473, 0.005038251587639364, 0.002773349955120923, 0.003291493920928732, 0.004152725730167249, 0.004725690235372932, 0.0038958021782647756, 0.005017654797349393, 0.002316067833180919, 0.005597275906602741, 0.004607416370587964, 0.003936032027053909, 0.002582766358879856, 0.011782285783312436, 0.005585008522780597, 0.004090183842526766, 0.0041308111735479875, 0.003552779081527979, 0.002997143196298221, 0.004897914167358081, 0.003272196672519343, 0.0029468858873588294, 0.004992290104163577, 0.004093041374117412, 0.0068998838289329335, 0.00264236434048965, 0.003504501963514129, 0.004531559517010879, 0.002909381336114704, 0.004788606403304395, 0.005961179459636112, 0.003774247470813767, 0.0019883541187094775, 0.0038003977122805558, 0.004387140566844691, 0.0033810404320451966, 0.0031714781022841843, 0.0036334073888533843, 0.003323661774231381, 0.002865737788708775, 0.006501488509259969, 0.003810400546798097, 0.0042646093774722305, 0.006567556892878248, 0.0056355884587705575, 0.003569015123738077, 0.004575893666789103, 0.006683962024715756, 0.006415682074142078, 0.004217435244465986, 0.003218897230710365, 0.013757885188618327, 0.005061146694915683, 0.005066103550074868, 0.003007221031924124, 0.0037422150365996588, 0.0037955578819935318, 0.0020443387915450974, 0.002582932361706705, 0.004054693598572838, 0.005667730110597733, 0.010105201816493518, 0.00592500036948467, 0.0035910902352377034, 0.003700466119639439, 0.0023134126910892175, 0.0041924172203232505, 0.005618346507247128, 0.0034187142175257047, 0.0035245550306629786, 0.002576452966731184, 0.003920824248669676, 0.003202684727578711, 0.0029971132124593553, 0.0024446323157621, 0.007907325690404908, 0.004208991159070493, 0.0055623333792995016, 0.005022164659778094, 0.005300769626871371, 0.004912100590540355, 0.00467551741435021, 0.003999342393890426, 0.003822623025458961, 0.0034375650079500435, 0.002455863384263321, 0.004927051085538356, 0.00513835595602361, 0.0035357505613971283, 0.002453814282796332, 0.01127530184702937, 0.004149064000765935, 0.0030193003513309014, 0.0028448900099919037, 0.003617323853932352, 0.002776638621570733, 0.0038334353815209624, 0.004224526729078998, 0.0036711227866331555, 0.0036866077108714717, 0.00479345235391234, 0.005825817594955456, 0.00710219268107487, 0.0025379832326652423, 0.003350845609267715, 0.0031200140799769642, 0.004311079623504031, 0.004982081846538038, 0.00354678195777235, 0.0028404060785106235, 0.007965867741454356, 0.0037097320635631295, 0.006252556463305596, 0.0029144680105139603, 0.004693571005336192, 0.0049139527968616, 0.004185408611654181, 0.004301436709298471, 0.006653963744853232, 0.004453415050449571, 0.0068458841077753295, 0.004950255498337851, 0.0035896787376420262, 0.0032179335598386824, 0.00305221346393297, 0.0021659413678745175, 0.008385432433755953, 0.008084215824593222, 0.004952014634865544, 0.004246405979818841, 0.00727234817042238, 0.0044922980705294265, 0.0033479292986951883, 0.003687542908475061, 0.004752347425740794, 0.002425312262387134, 0.005447621505748658, 0.004458218671149925, 0.0054548109970920435, 0.0030541468401951927, 0.00423680335928402, 0.0032730729492863645, 0.0032426726453800548, 0.005863875246796204, 0.0035096806981831214, 0.0024216318242302882, 0.003538821783307456, 0.005518998756656732, 0.003086857498204415, 0.004403578575700078, 0.005149976909330312, 0.0024496976220251035, 0.003733863407997228, 0.004854132854851074, 0.0033121600696228103, 0.0033599342483962903, 0.005550004111168816, 0.0029945447446335085, 0.0036448955012689183, 0.0035678109467798523, 0.0026968990945974627, 0.00951874648824968, 0.005250375248142139, 0.002832115615216118, 0.009158693773964565, 0.002754203365845731, 0.004054949207698113, 0.003311782814254899, 0.0029234589457612205, 0.002969520222795575, 0.005252977828295624, 0.014819525818526797, 0.004284687150634036, 0.0026056842847826346, 0.00892209397064467, 0.0022233508589087373, 0.003217311789999238, 0.0034953499515668167, 0.002895530614359889, 0.0030147064443518273, 0.0043489270916882835, 0.0032177512530268083, 0.005197613626210848, 0.006198216063210448, 0.004889171494157412, 0.0033541839117998697, 0.0029528249761629696, 0.0022280445212915323, 0.003144605079362205, 0.006016439032524925, 0.002621600373116646, 0.005633082228409298, 0.003927560169243005, 0.004297745747500977, 0.005282203934322095, 0.0041186414362459345, 0.0031156488359889638, 0.002939094308247081, 0.010271438641892325, 0.002233921153272175, 0.02411945753214009, 0.0027265447288366616, 0.0035580995083406863, 0.0032932116010625325, 0.004298213220957399, 0.0031855965071273438, 0.003718908404006553, 0.004567359945642612, 0.0044682095540371485, 0.006032961085796052, 0.0039666998878898265, 0.003104637578707483, 0.003516491861064247, 0.003298624217164376, 0.0024055719500906893, 0.003588960828201624, 0.003975337436818641, 0.005628078998531542, 0.0033599010510824067, 0.0027037888742297155, 0.005937272464581385, 0.0048397116824265085, 0.005305500959140124, 0.003162987238123233, 0.004782107065150027, 0.0027216994058420524, 0.003373921377682317, 0.003022985708825887, 0.004151369753942399, 0.002916904749989243, 0.0075077683246538175, 0.005285414974807752, 0.002854030727686948, 0.004198356896610241, 0.006839592103145732, 0.006009948232908577, 0.0021001142638645107, 0.0034885298644189086, 0.004098648222608851, 0.004618556027837055, 0.0035873042050069146, 0.004181781115341073, 0.0031965818421350366, 0.005020049517295935, 0.003674298102343853, 0.004137778432962014, 0.005684511559597803, 0.0037583568163635553, 0.008882391418536957, 0.005094590270537531, 0.0040950300032253474, 0.003328988629715285, 0.0036995675573121903, 0.0025277850367008995, 0.0033934450784406716, 0.004456233070280773, 0.004322262829471594, 0.004376640225941067, 0.005075960938607808, 0.004507851449906475, 0.004508124744616879, 0.004517335249141564, 0.0029277115379060907, 0.002816278688233579, 0.005359567617221323, 0.002982573032743199, 0.0053018945402314695, 0.003193677010194363, 0.0037187453787710647, 0.003362734457019808, 0.0037241618552377696, 0.003246929850608695, 0.0049513535132288036, 0.003612891411599832, 0.006988293142193439, 0.006046088206422327, 0.002739148072975377, 0.0035170922642777354, 0.004845748898529862, 0.004343639002819067, 0.0029639417050426786, 0.0056507841760542726, 0.002830878881533865, 0.0026219885840748774, 0.005670384959247197, 0.004732942925855174, 0.006710745651902781, 0.0036382801291900387, 0.005318498241338879, 0.004053692725608385, 0.0035620429594141975, 0.0035547810433181628, 0.005111354285349451, 0.0033418407456134993, 0.0032143910107210105, 0.00240892069359687, 0.008873231825623773, 0.003201381067580957, 0.004217620516918895, 0.003075161034838437, 0.002992508605755539, 0.003146285445237199, 0.0058182031173158845, 0.01128232138159833, 0.004651126712998329, 0.0053709299355268435, 0.004014557853566527, 0.0031560334738333093, 0.003923914266654919, 0.007648774766394635, 0.004272112182134436, 0.0029621435065452445, 0.004586831587306645, 0.004611033105926265, 0.0025225410303226386, 0.006413390317947268, 0.005395034407144217, 0.003351508161347156, 0.004634293762547919, 0.0050957256834696435, 0.0025326304793455157, 0.0041993387962717945, 0.0032340442085175792, 0.0043731824885631775, 0.004143741241615892, 0.004055146769882703, 0.004289927904457263, 0.004769009354529403, 0.002792457467597732, 0.003785475910882686, 0.003302112351593784, 0.0023684863594593294, 0.006980416301073019, 0.0035084202536006673, 0.00342260586573749, 0.002657191703419811, 0.009244821807489183, 0.003859227883461355, 0.0033577002838503477, 0.004019361924243995, 0.0025127717629310612, 0.004287949933843552, 0.005626570755367771, 0.003952092456474133, 0.005497950628879992, 0.0027345051436918656, 0.0031460021415733188, 0.005588582078556557, 0.0032202572741275547, 0.003779835476493228, 0.005358591932802703, 0.003991365407004256, 0.0038120766994024203, 0.003770064907582782, 0.0032931738046632123, 0.004100893740936013, 0.00344015355105771, 0.004563284125751683, 0.0026431875642777183, 0.003130916256539226, 0.0029307625009380965, 0.003070466960894352, 0.006543296243024246, 0.0029891304407489014, 0.0035498572224845946, 0.005240007451848418, 0.003203159947342768, 0.0039355065237963996, 0.0026077889851254927, 0.0066167188933689116, 0.004682226044729392, 0.005517381595031725, 0.0029613479033447224, 0.0031654874621195456, 0.0037436581203063256, 0.004670828611637144, 0.004820402413380318, 0.00961173423860934, 0.004928674953715368, 0.003782390468960521, 0.003212655819594852, 0.004346193678895061, 0.004820185895575924, 0.007890979960745918, 0.002424093125920646, 0.0044937119348056834, 0.004340750776151004, 0.004269216983844296, 0.003999284312820247, 0.0035139299727660633, 0.004328137624737565, 0.0039098626836876526, 0.006156108060230962, 0.003059700467283057, 0.003590922963171242, 0.002547318854775802, 0.004144690215605769, 0.004325992812291626, 0.0048433740148999945, 0.006392436827712374, 0.004889001594102195, 0.008787063061760095, 0.0031653739064225798, 0.0036718512836565026, 0.003840503383483363, 0.0028105593011036566, 0.0037216256099687948, 0.004977380223329468, 0.004843764491989746, 0.0018766137289738798, 0.005310946047482018, 0.0034434974650678655, 0.0032262380547470543, 0.0033894129947630186, 0.00654329555973793, 0.00386853350010605, 0.004022028323764304, 0.0051745644348632994, 0.004377040501185032, 0.002357314593970453, 0.003595523971146873, 0.0026879102018977606, 0.005685528351384243, 0.004824369402647862, 0.002781645332657919, 0.010355289887721183, 0.002426072128155232, 0.004383579128391936, 0.004009735866433152, 0.004880501093777114, 0.003034142571859666, 0.0034039979937407296, 0.0036148482343991207, 0.007869232799096909, 0.003499221592892189, 0.003644289959492765, 0.003063780453233576, 0.0025004313475402596, 0.0034850387110122345, 0.0035113492047111027, 0.004321282497347759, 0.005835382724356678, 0.00269852090455698, 0.004772863879295044, 0.004027763424999388, 0.004773649560061039, 0.00473480097996694, 0.0033428563745018444, 0.0035186070320253234, 0.003376687574527984, 0.0052312291006986495, 0.004237654437809441, 0.007050499644223679, 0.004060636641680227, 0.003282790590334804, 0.003828391065836447, 0.0030929501403409543, 0.0032259994719335003, 0.004500315800199175, 0.0049686579369239954, 0.0043463460169839855, 0.00408345771821367, 0.003683532951080612, 0.002876782568744689, 0.004965001717823392, 0.003411205152701105, 0.003939923277545873, 0.00663777162673467, 0.0030601444426814335, 0.004256561306071833, 0.0032415485761776177, 0.0033531015602874152, 0.005799927571870513, 0.004343128533052283, 0.003031355334240788, 0.003453291726709256, 0.004587716969228032, 0.003985963754557635, 0.0030173580305455265, 0.006391426817327681, 0.004434316539233293, 0.006918310063624797, 0.005052164638723177, 0.004591246419084953, 0.006535933448627499, 0.003423231936252434, 0.002483054763536474, 0.004079913166159669, 0.004057937717157218, 0.0036969185154044097, 0.005039774087671789, 0.004600105477190205, 0.004007906143670043, 0.004172643760695373, 0.004699869748014238, 0.002919091891235814, 0.002563080929977341, 0.009443486083617206, 0.0031313675298357637, 0.004367644081534039, 0.0022848593770999287, 0.0035335946966666095, 0.003954519635427584, 0.004433805990503857, 0.0041216328086687015, 0.00358024070289691, 0.0029044963220906357, 0.004008213351461362, 0.006937259524359735, 0.0036194007165525318, 0.0033638506053704892, 0.0030565686132299004, 0.003336275174436046, 0.0036163723636381912, 0.00533678649879805, 0.004335854009293753, 0.0025360584710029162, 0.0033939383719150127, 0.0046965271409598035, 0.0037333041123990204, 0.007345452107073528, 0.005751673337491429, 0.006251457660155962, 0.005434854272270915, 0.003916259807705267, 0.0030236203195056236, 0.005851377574545386, 0.0025200408454532737, 0.0035949223217066743, 0.006562316556136169, 0.004175910208169308, 0.0032607357710294953, 0.0036392154429651692, 0.0025301170422176215, 0.004933724120366257, 0.0046813894569010224, 0.0026591388316994486, 0.0020803309070011084, 0.004758179610856889, 0.003265210003292509, 0.003026171681553713, 0.008119356441853015, 0.004066720997122745, 0.004566847309604149, 0.005044778678439591, 0.012517153289815916, 0.005181833118501484, 0.0032234124044963975, 0.0029887058850281015, 0.0029755766883925202, 0.004070976952842198, 0.006749333915566186, 0.0022084839644304433, 0.011032849936808456, 0.0056484461434420765, 0.0033637572930485813, 0.005703869266267069, 0.004028043376426362, 0.002348402127307911, 0.0030013256031672817, 0.004158083819929729, 0.0055471234812484865, 0.008718352332183297, 0.004772497388820316, 0.004593004237226162, 0.0034261187066044175, 0.0033097233644350348, 0.0031962780596772647, 0.0034373655554571386, 0.00477883828226007, 0.0036236321313913066, 0.005513205392058797, 0.007174571062740107, 0.003719390924105568, 0.008820826661557939, 0.0023474847543948946, 0.003141273658284001, 0.003723876305457896, 0.002764602201271184, 0.0030762156287000133, 0.004319494277072765, 0.0040693203310213375, 0.004872057753685261, 0.0028612863683593463, 0.0038976603784029278, 0.00330833241589044, 0.004419742960707349, 0.005019444265347927, 0.003138799553999166, 0.00370097524069201, 0.004749800502629386, 0.003625592055805281, 0.002716127281083901, 0.005309209701854457, 0.003906418336737637, 0.0024415979055800326, 0.0025365205296903524, 0.0067706662264909664, 0.00416681404374329, 0.004572454126693245, 0.0018210617376337168, 0.005030071033885783, 0.004691414932773114, 0.006784688753811342, 0.0030954860655773636, 0.003344131624050191, 0.0035396321260265213, 0.003262444265799353, 0.0027607556633546114, 0.004816138093917344, 0.0028956359108339392, 0.0030538417432640847, 0.0041426302432416, 0.0032558008477002916, 0.015414788983075661, 0.006098338077498333, 0.0027850848363998627, 0.003674015283050807, 0.0029253942278798734, 0.0037072618822047215, 0.005190016783470899, 0.002364202666788654, 0.0044878137545291096, 0.0026410090206311744, 0.00650229535517403, 0.006320953531350983, 0.0029969844155262903, 0.003571345370531112, 0.004386897053364946, 0.004950189317998585, 0.002473437128657747, 0.003955093657055412, 0.0026466593732374583, 0.0038798788674448232, 0.006564635676477091, 0.0024015269311522735, 0.008132858256679431, 0.0031205260294612435, 0.0022451556149992976, 0.004582516198197216, 0.002593742092937493, 0.0034525426121843365, 0.006159869959361019, 0.003065016116975829, 0.0043421565336655265, 0.010860214828042274, 0.0059850547641826625, 0.002772938382190744, 0.006288758115444527, 0.0024067061510240433, 0.003286400219002065, 0.004978740535241338, 0.015180914729984082, 0.009934019640316441, 0.003155461020585333, 0.0044995448559281784, 0.004766324127889258, 0.003115574766187844, 0.004040230557780562, 0.00337672351991739, 0.0035343417985747244, 0.003132553574163901, 0.0027777907123227997, 0.003372874561170909, 0.002833260264090308, 0.004853660771771971, 0.0034851463827430844, 0.0030845395094448087, 0.009354837558887724, 0.0037729618156283743, 0.0033923128669338656, 0.005615385572748001, 0.0027836318861896143, 0.004809018484620884, 0.00298790537094452, 0.0038411658145565625, 0.0034916810948827414, 0.003472643323375374, 0.005255115984220496, 0.004459517834433141, 0.004805529852182337, 0.0030548182042146243, 0.005103714891694848, 0.0019646020897675495, 0.0036817636733353157, 0.0039371582343370294, 0.0025381305901670407, 0.006524793741971349, 0.004237212285741617, 0.004604142767683905, 0.004137672162477207, 0.0025372047211707303, 0.004400421357475112, 0.006796962316789726, 0.005450773458674014, 0.005132414471254956, 0.003488628049516165, 0.004824041478768916, 0.0031120094265047306, 0.004768830690243038, 0.0034269659720573874, 0.0038000833054266867, 0.005900881698697203, 0.0035108885908010493, 0.005788655770054373, 0.002036371543274011, 0.00495165237917697, 0.0031565976597130534, 0.003451877105190529, 0.002470279370532058, 0.0052891916108704145, 0.0037611485676434736, 0.004079666371017304, 0.002886607717338447, 0.0049237188636399865, 0.0028040743545260692, 0.0042542028647595724, 0.004483125350498873, 0.0034916456594795407, 0.004136659636548615, 0.0038244133865422574, 0.005300071147143792, 0.0038939134828875586, 0.0034075574363412915, 0.0037538386462799035, 0.0056295133943997985, 0.0026243274424729004, 0.008539311884197496, 0.005237910271597556, 0.003215904103725921, 0.0036565294737913668, 0.004167984809419307, 0.004345777806715749, 0.0023813695311473947, 0.0030323611843586134, 0.0026439620900542402, 0.004997428198680805, 0.0018889415245232047, 0.0054631822805693165, 0.006508704945948617, 0.0035168423696340595, 0.0021715341137582347, 0.0027910932659859847, 0.003896468776089317, 0.0044700687319230836, 0.00564083064146786, 0.0029210689115421774, 0.004716943397944559, 0.0038088293564711015, 0.00429131979954489, 0.0032329091791961197, 0.0038318569555526255, 0.004098760821404023, 0.006763203586259622, 0.003350887713527691, 0.002323370122410116, 0.0038170985836454173, 0.007735569780498755, 0.0035114765430876204, 0.003289922696777035, 0.004101541987283634, 0.002430679292992358, 0.004193773794107347, 0.00330712405223793, 0.00528211888874035, 0.0026566189336149565, 0.007054833554248135, 0.005142979502026155, 0.0023507420846310928, 0.0030017826235134324, 0.0023574960574895922, 0.003738783507662786, 0.0033479202396687552, 0.0060652912871916745, 0.004793530419992664, 0.002911663691659067, 0.004297400697562985, 0.003608154620586898, 0.011566886950533331, 0.0035821571565449436, 0.0037752486961368597, 0.0028672728737861855, 0.003150821074140081, 0.0031541560059197248, 0.00473917809084375, 0.00470049251040794, 0.009995865971825, 0.0037936715415360133, 0.0027912773695715895, 0.0034594400267063683, 0.0036565922939254024, 0.0030402444494826535, 0.0034361401169757783, 0.003507372622761652, 0.003637701895049834, 0.003446265593024896, 0.0027702369476904944, 0.003838786463624985, 0.002793012952654584, 0.003494790871588467, 0.002986131110719049, 0.0033024269397196526, 0.003386176191157069, 0.007790637124515283, 0.004573084027477951, 0.0032546550377129647, 0.004442835213788536, 0.0037660143767802327, 0.003652134402981424, 0.0028263644125547894, 0.007828836537634849, 0.0046711679138811074, 0.002461124523200113, 0.0028423480770698854, 0.00323689435841141, 0.0036177338077873085, 0.0035451379661936002, 0.0053450812671235436, 0.006658222911592485, 0.003703652251104303, 0.0053782180151211835, 0.009412403474968349, 0.002650248006332365, 0.005542008945255758, 0.0037461870677505033, 0.0035551402294768395, 0.003641331109844949, 0.0037549185684226916, 0.0028978228835487554, 0.0032192128427149477, 0.0028855435193277748, 0.004948627465592194, 0.0028244228154764425, 0.004224158790879499, 0.0026433085890807785, 0.0033741656455016644, 0.005404080562277519, 0.005437179167669637, 0.004614780068055772, 0.0026370927874268786, 0.0034368999444039116, 0.0036331231111910397, 0.006482072868123851, 0.0058146451423764485, 0.007487301174095076, 0.005951301944209456, 0.0023146406212914993, 0.003645247432710574, 0.003794594252305004, 0.005599241485687379, 0.0033089938551213354, 0.0028309076850707637, 0.003501390289235204, 0.005507583460510232, 0.0039255474523053144, 0.0027675649684426977, 0.004747738643265875, 0.00491814763205078, 0.0034915862173506055, 0.003942908083836304, 0.00456556562373443, 0.0034811515267579906, 0.0032195115365358878, 0.0029752677959311033, 0.002826584854177117, 0.003321810700802952, 0.006062133602188062, 0.004127468566011017, 0.0047195584499360845, 0.004744291942353153, 0.00315754306812678, 0.0035630571655443912, 0.007029829706727243, 0.004733415132020962, 0.002896795460612115, 0.0029883879764822053, 0.011979701133937504, 0.003942674767393004, 0.00461189595454775, 0.0020112226514208383, 0.0031047099168681736, 0.009001290904564767, 0.002354093241724918, 0.003692760804597675, 0.007093860977304569, 0.0024441958654085987, 0.002949079980560333, 0.00565814059399919, 0.00411187447814289, 0.0058407059847596495, 0.0033364570475841104, 0.004061173593400367, 0.0056259630159486915, 0.003212766812300382, 0.002230041132964375, 0.0030171095103010332, 0.003356968785065867, 0.0036939174664523586, 0.002343371973789148, 0.005433367949232625, 0.0033846860998613124, 0.005023693710395799, 0.004014371087220074, 0.0026040474992828485, 0.00631647204526478, 0.0026201343396642382, 0.004988589597610762, 0.00289704478926718, 0.003222895089146606, 0.004757630658173481, 0.0027196960701199695, 0.0033998136855829205, 0.00324298546290529, 0.00855686599985163, 0.0034813540521726437, 0.003176769299952411, 0.003688387443718983, 0.0028851639679068493, 0.0031641757566045364, 0.0025681167110826425, 0.0034669308940689773, 0.0041432093439480264, 0.005747176242542468, 0.0023575379199849878, 0.003349432538727399, 0.00496894134154348, 0.005588941085962738, 0.0050054024037330105, 0.0023159460902803792, 0.003490025245218728, 0.005057703437288684, 0.005478487887881465, 0.004494085394440503, 0.004423825734869249, 0.0043621228366992225, 0.002874897907779516, 0.006098536995701056, 0.006649211471003558, 0.004258866147500871, 0.004308017950717838, 0.0033183905334037223, 0.0034896443629621075, 0.003125604443596887, 0.008845106980525779, 0.0020579981797058354, 0.006960091560215981, 0.0016481954803566827, 0.009257468973843958, 0.004102002330283036, 0.005735693619618424, 0.0025471020635216314, 0.003770651831573403, 0.0022316660765607683, 0.0032531499874321698, 0.005708636991334732, 0.0027815749178056737, 0.0029051935900979466, 0.0030319581099125734, 0.00495450622170923, 0.0037114221220768987, 0.0030047303740778444, 0.0031723058493615224, 0.010721637919413324, 0.00211692075386925, 0.004020295621552313, 0.004476340039679509, 0.0025718924748547294, 0.0037767587267922274, 0.003076505550024273, 0.004595798445086922, 0.004408567918892549, 0.004630805330287707, 0.003946931836650803, 0.0029116969236618238, 0.004183769682493897, 0.0037124338926068762, 0.0035256643579080335, 0.0033923720775259542, 0.008487115234052031, 0.005711875483937293, 0.0036293729552017142, 0.002630318286287164, 0.00299156727849427, 0.0025602411836646638, 0.0022968178734458803, 0.006118742385163323, 0.005064639807773755, 0.0039242052377160015, 0.002344937290079021, 0.0036435389265069506, 0.0023678366970811783, 0.007795610562496622, 0.003318229292102596, 0.0027902641076648924, 0.004455987050441217, 0.0064035326040245534, 0.006088671427466879, 0.006024861162617841, 0.0019243367058313476, 0.002589709363597639, 0.006392452268748757, 0.0036226230139158266, 0.0034906204588330434, 0.004501301902348847, 0.0022573049595962184, 0.002844976569905282, 0.005599694592558218, 0.0019252466370285493, 0.0035754137319277462, 0.0048467642581388175, 0.002463996967540844, 0.0054388445403837325, 0.014030018894630328, 0.004724543853896727, 0.003036721500940744, 0.009729948005570057, 0.002307205955097176, 0.004607255454264699, 0.002113879940634035, 0.007092425128899714, 0.003534620583029801, 0.004753086699615489, 0.0029097077679016764, 0.008702123573300882, 0.0025841251794550147, 0.004293508988023497, 0.0026772851904182547, 0.003173286143718296, 0.0030285765162235715, 0.004522890559558157, 0.0025425516445964497, 0.0028320222416090336, 0.012078652567221449, 0.0034578866092882764, 0.0063095503846222435, 0.00236460471326866, 0.0037413940539524028, 0.0038052816079654885, 0.0036010261019808172, 0.005130160855218642, 0.003308023303735647, 0.0022115318818050128, 0.0038378950586913318, 0.003200408179315864, 0.005221603017207411, 0.006916273983259702, 0.0035447993428094488, 0.0037016952248875115, 0.003269029606644828, 0.0034557807809068516, 0.00253889530734992, 0.003515271703116591, 0.010882244902525314, 0.0044158212957154715, 0.002720323069657523, 0.004528472477809636, 0.0021198495547543796, 0.0032297934776663205, 0.005727237195813573, 0.00252723713655857, 0.0059875723384426385, 0.004778069184557006, 0.005649634635463344, 0.0021560838822262513, 0.004212133266958149, 0.0043186132981952435, 0.0032874411295155275, 0.0033383579834413415, 0.00323535454149197, 0.002636370795270776, 0.0037329010562094575, 0.003550241121774156, 0.003910099418154923, 0.002485312411258004, 0.0032366981520739213, 0.004360550536745741, 0.006748147375424833, 0.004563513079877734, 0.00245626263349731, 0.003560092414591904, 0.0030787083056851164, 0.0027935126356245727, 0.004383631872471832, 0.003770611771328323, 0.0038887151151373637, 0.0046475686021845, 0.002925021469431206, 0.004556883325483833, 0.006472517211401822, 0.0026521850543564703, 0.006541183939804213, 0.003987573309561281, 0.002731752865630621, 0.0027405230458387485, 0.0023743996796589642, 0.0036831503081260083, 0.0029963421948161436, 0.0045218023726482474, 0.00529727078402749, 0.005226336279293295, 0.00333566851842772, 0.0033962231868169385, 0.008689537165322092, 0.004190487194755951, 0.004645896938213485, 0.0049287942878418495, 0.004670340474076542, 0.0024630714600201867, 0.005076713835367152, 0.004525370768528684, 0.004915293052174216, 0.0032564041116959993, 0.0031267520576483917, 0.002908470778225192, 0.0032369526688429623, 0.0027040678572974926, 0.007037424694716465, 0.002595375340420847, 0.0032775461706119474, 0.0030522227560019445, 0.005045401496448722, 0.003409524991807373, 0.0034596412682486068, 0.004027356329402159, 0.004957572276654132, 0.0027644798833325597, 0.003069799041153013, 0.005002362072093932, 0.003539277763776296, 0.0033323974179772222, 0.0026403374200820668, 0.003084655636045053, 0.003914044570788555, 0.0035159274824216663, 0.002986845266449608, 0.003440855794579845, 0.005120394240044073, 0.00792964910724934, 0.0034549612810540224, 0.0030949774345597303, 0.00271563662304963, 0.003533877641691669, 0.0027814082030055295, 0.0039027615375328887, 0.003815307869499104, 0.0042387651577743, 0.003769581075269804, 0.002470580005865909, 0.004232822884103321, 0.008102611290332316, 0.001538049730142764, 0.0047810616478005654, 0.005503448279397709, 0.0033767152579322465, 0.0030326753914358016, 0.003923624227357215, 0.0029506522429727797, 0.005270309844111703, 0.003682026994111124, 0.00582166219834631, 0.004578382528872993, 0.005333554726795012, 0.0035089882184514464, 0.0040489445879857925, 0.003719496670946721, 0.002910988753934849, 0.0033858943331756238, 0.004419271712275757, 0.005091242086521071, 0.004913147290721449, 0.0039909180157206075, 0.003540050867687039, 0.010465559322126547, 0.003081807711607561, 0.00325255131688401, 0.003718767849901048, 0.008242452853203169, 0.006982285299123141, 0.0024377655660288745, 0.0052714007340198465, 0.0027028050730930598, 0.002561740458662541, 0.0026490535997793813, 0.004646698149877273, 0.004023893164656464, 0.004053825651903207, 0.004084216203963835, 0.004185451323223438, 0.002531331512460863, 0.004581678509088869, 0.0035483667981139498, 0.003288700579384634, 0.002394241425143807, 0.0062337513605008775, 0.004047091546731347, 0.0026156662347459115, 0.006521349164263353, 0.0032911644525702548, 0.003203826132703843, 0.002654928854687358, 0.003034034286353849, 0.007106509431634443, 0.005278410175564301, 0.0029465096796403756, 0.0035126591411656803, 0.0029844584571976983, 0.003080897740868784, 0.003720546022907939, 0.004742128410793618, 0.005490615624570031, 0.0019898344846441883, 0.003939519152136009, 0.0036342257308567944, 0.003479585820228605, 0.006144538643442621, 0.00568733802583714, 0.0037019048178960332, 0.00414733245185232, 0.0025728879116509004, 0.0030826377531700147, 0.0019450972705714082, 0.0028552516178730306, 0.004493919827219977, 0.0033452578156106896, 0.0070033639202754915, 0.004431899387053786, 0.0036724591313717844, 0.003908785794207803, 0.0031213378198286018, 0.005057127998566771, 0.003204400819825997, 0.0051104575628641066, 0.0022441124888111915, 0.008992859169495358, 0.004463154625787678, 0.004146112244707787, 0.002276930689198614, 0.0043202246234159475, 0.005467887895536583, 0.0033662596774681345, 0.002874831943103694, 0.0030876144027682092, 0.0035361963064533984, 0.0038013094194975115, 0.00528394571061677, 0.0034747786381643187, 0.005693165469416563, 0.008231263680160576, 0.003469031758857399, 0.004613724024036678, 0.0032816790397976136, 0.0027492385549155456, 0.00502094817062605, 0.0038076818288306884, 0.002838371268690079, 0.004160790662241775, 0.005758616871992861, 0.0031607604826509672, 0.0018602944042434226, 0.005419856938530901, 0.0019894408309352953, 0.003313827451727818, 0.0060683480357209, 0.002499723599325849, 0.005187072311128497, 0.006089557044545426, 0.002133866080582236, 0.0032629769440061388, 0.005591793967515793, 0.0025583729444695292, 0.002637710307049109, 0.003072032633966227, 0.0023052191505732117, 0.002310163779236386, 0.008852398170801908, 0.003144708068612468, 0.0019464681355058002, 0.0032226255077670643, 0.0027643873112769375, 0.004646944946118104, 0.0062279478246700225, 0.003951197555219734, 0.0030428227880541768, 0.0029532214125712083, 0.005079737055756215, 0.003857348783198334, 0.00351949864670673, 0.004494766121696948, 0.0048716357745385375, 0.005150784660719063, 0.009149599314146793, 0.007502963520058928, 0.003274773532100582, 0.004362083220894463, 0.0031886365092242777, 0.003392174680625011, 0.003128655374970195, 0.007782642051330622, 0.004214897826964062, 0.0032108869286813133, 0.0018316188597988022, 0.0032811573685467867, 0.003222643864537549, 0.007045824553699969, 0.006299944347882709, 0.0021991175641269496, 0.003379094667975779, 0.0029619324978004814, 0.002908111699288438, 0.006881718170532162, 0.0022165437759108357, 0.00403873230051826, 0.003805146090657456, 0.006352905833835581, 0.0039030319732164358, 0.005051308001838095, 0.0029125023123993555, 0.0035833318662807805, 0.0037191767372720176, 0.0030657461985873573, 0.0029206238889314773, 0.003323528994743348, 0.0032539899869241653, 0.0056852261785553995, 0.003488307963364204, 0.002625576553217708, 0.0034114606899112747, 0.0021453515360473074, 0.0038924271661107445, 0.004454527900075134, 0.005348161762089995, 0.003963172784034155, 0.003131803909417457, 0.00285658556704729, 0.002541222413489637, 0.004770029611317131, 0.0034713291949904296, 0.003013634349751525, 0.0020794232740392925, 0.0035505660814783313, 0.00456207845312669, 0.0032530199279185946, 0.0033662437321851043, 0.003673148777732129, 0.0028538082812066346, 0.004510276264255075, 0.006526452346307094, 0.0056239087118642285, 0.0028142080150063385, 0.0037603185404861995, 0.0022205452599557618, 0.0053690530165697616, 0.004369169601163871, 0.004574150279368077, 0.0021938048140781826, 0.0031750745027432775, 0.0037886665662434766, 0.00352103425337697, 0.002454932289816274, 0.00306755139458857, 0.006221620712626401, 0.004413453910073449, 0.003286647230814412, 0.0042466736157976675, 0.007279549512860098, 0.004316294222194579, 0.004705910271708396, 0.0030609185916073535, 0.002503395329624771, 0.0035128102841935557, 0.003045660528694842, 0.0028074078883135677, 0.003354056381513307, 0.007157262599180464, 0.003924341489535614, 0.0057026488228891, 0.0034145080242691988, 0.006255732685816926, 0.005933906258368895, 0.0047705139476530494, 0.004383502770153881, 0.0028699446321221894, 0.0023994579970091686, 0.004667752271765597, 0.005236490202928412, 0.004297391702759258, 0.0031478606149185967, 0.0036590225184551114, 0.0025786948466800254, 0.0054763670054403715, 0.006649899687419851, 0.004723407551593556, 0.0029543351671537563, 0.004200004045737296, 0.0019948079238165384, 0.00548772144451082, 0.00423772527017427, 0.0023734582379553474, 0.002585018286838963, 0.004188110535843721, 0.005673647607151397, 0.00417748771283191, 0.005196521080219746, 0.00296325420483321, 0.0025988427607019785, 0.0025333555642858266, 0.004716849073097161, 0.007748319569318293, 0.0033844704633135317, 0.00509168579394173, 0.0015203973816956045, 0.0051628263569517335, 0.005224227377816928, 0.003292526345193092, 0.0033263659456960804, 0.005120745274745298, 0.004194559011293704, 0.0029228407921902235, 0.005747281937084311, 0.0030044486333191288, 0.0036750551105550755, 0.0027959136938103925, 0.0055252690301839805, 0.0047863378458949815, 0.004349685219260692, 0.004655575035153412, 0.0026492038526264097, 0.013108583841224092, 0.004431323162287736, 0.0034353974691611416, 0.006111604128454072, 0.003983233698322921, 0.004733020486583952, 0.003230120062573648, 0.00473336966621691, 0.0040083156012928845, 0.0035672578040810018, 0.002262648785697946, 0.0031995248325981116, 0.0035376337564077785, 0.0032449356248872865, 0.003587685528200245, 0.002954903953740481, 0.002792391708463848, 0.0024434577934682347, 0.017966488840646583, 0.003936058618102761, 0.005046470813131253, 0.0036179714847818624, 0.0033461597113387887, 0.002702870886684734, 0.0034966953286646313, 0.002810278261866676, 0.008821771803663373, 0.0022272511475968097, 0.006501579627474772, 0.0026532862673815686, 0.002266157455654641, 0.004517977900926243, 0.002535837528706825, 0.002560521967211371, 0.0016175989643793377, 0.002209694589152606, 0.0039774131572601745, 0.0033665039830575285, 0.004673913825032054, 0.0032511439244568077, 0.0022574544679897705, 0.004322625846146876, 0.003418486041953631, 0.0038918010770539906, 0.007769783541742762, 0.0037406676434442085, 0.003414086846562016, 0.004482456916183613, 0.0022178103476039436, 0.002860724624750459, 0.008035125864373709, 0.002759097072933685, 0.005629543362037037, 0.0025839797737112003, 0.0028508072705164837, 0.003713479476307676, 0.003237153136977806, 0.002835111511249829, 0.0026417198076280433, 0.004848372406384962, 0.003736098844845792, 0.0036405141802605414, 0.0038032280607415677, 0.003533172788733422, 0.004058391527616803, 0.003064520227388048, 0.005564453388737274, 0.0030823303549310987, 0.004328953660029769, 0.005530908970399048, 0.004236222858895873, 0.003735280430987995, 0.004676489590769527, 0.004092513260596242, 0.002642341561385368, 0.005785987376441321, 0.00547517090217167, 0.0036856158426374517, 0.0022669122877313915, 0.00296821086600565, 0.002503008846736833, 0.003522361716660913, 0.003697887466613177, 0.0035329206685891937, 0.005290933806242256, 0.0031787771690932097, 0.002669892987653716, 0.003356985146964601, 0.0033258876537858193, 0.004168130639049111, 0.0037692096560140694, 0.004834571137802021, 0.003349538506180747, 0.005359092667379857, 0.005184251628519154, 0.0036040338861725836, 0.0025944954030260358, 0.0026980225589260326, 0.0029091209143078957, 0.0024947615668947966, 0.0033530851556507154, 0.003228020280479809, 0.0033340121753870624, 0.005556287454369901, 0.0057908511991176925, 0.007148708270740679, 0.004657725720017697, 0.003158892931006989, 0.003371359286832785, 0.002776195340960822, 0.005584988740833994, 0.002503655567715884, 0.009661315010447983, 0.0035236032942352288, 0.003245982358134519, 0.0034697275447316323, 0.005841741522777786, 0.003733050460012546, 0.0036678333600184453, 0.004571799412785967, 0.004007372635541939, 0.0025892389087682688, 0.004446929191458114, 0.007432199285586118, 0.00449668855824761, 0.0020653518114773775, 0.0031831037760173242, 0.0048130846714352984, 0.0040326985003324815, 0.002277315208173808, 0.0034632917609473007, 0.0030478920531584316, 0.0033356643373719788, 0.0036281781275564577, 0.0071882373134198345, 0.0032472458295227636, 0.003425332001548627, 0.004016286555685665, 0.004659094265634546, 0.00714142827917304, 0.00206521629197838, 0.004809348319454959, 0.003091000482127091, 0.004235789472384227, 0.0025189739887059768, 0.003370002689446151, 0.00409516160048289, 0.0036239428437708837, 0.0025085398256120698, 0.0040914241499912804, 0.005030739278321303, 0.003040046929193637, 0.004897524128213112, 0.007286721209417253, 0.0036528989372841755, 0.004473067482152595, 0.00414167935420628, 0.0049693093012263215, 0.002925619039978306, 0.002603519521970763, 0.002122636525807328, 0.003118555933275722, 0.003174340416534014, 0.005292752103876518, 0.007297433002526432, 0.003142270839015133, 0.0035863280015891105, 0.003498283226789458, 0.003950881337691885, 0.0030072016204592735, 0.002760895093885549, 0.008419114283160561, 0.003202192378704847, 0.003899150008211999, 0.003457045573308278, 0.0026849597422960825, 0.0032284360601229876, 0.0028392844229496983, 0.009426550097861584, 0.005236793658543798, 0.0021891262529017278, 0.0022407830711510548, 0.013362327931082548, 0.0033235241749040995, 0.003575726785057117, 0.0034919328663131632, 0.002163678022958999, 0.0033339106110802383, 0.0029470262077517127, 0.002553277743343868, 0.007953497140321408, 0.004084821438928008, 0.0017441044348176563, 0.003991601904835754, 0.0024892091997779356, 0.003250325918799514, 0.0030826074766904326, 0.0025985858996189857, 0.012623461318361982, 0.003082138565809693, 0.003380751874738414, 0.00458293890771952, 0.0027903383244995304, 0.0031931159751264343, 0.003353319491488601, 0.0052808095715118014, 0.003067234851079033, 0.014445112817716446, 0.003648087480901748, 0.0030284949833562823, 0.004568317152741223, 0.0032631397369906655, 0.002495105808302642, 0.006414054565017516, 0.004824310850353646, 0.0017998528945475229, 0.0036311640692777342, 0.004942068365627784, 0.0027587238613925973, 0.0042535998336065434, 0.0050575868174737365, 0.0034782680159879753, 0.004448503300928281, 0.0036475757081133814, 0.003971998935419003, 0.0037170979705417537, 0.0022977653801924723, 0.00430593236223189, 0.003275920091147228, 0.0017665894255046645, 0.0035723361679635495, 0.00671604291633021, 0.002309213286185197, 0.003349754264058481, 0.0026221139493780633, 0.0030705582300924804, 0.005654542067081927, 0.00399718190750606, 0.002803829742456849, 0.0030197137616497388, 0.003909860523561812, 0.002853300460043063, 0.003650227596116796, 0.004563815612031993, 0.003916029593171709, 0.0054206331744045665, 0.005255055307479884, 0.004590841048319971, 0.0035254903841294505, 0.003590453659379629, 0.0030392804075750597, 0.0027227024833726124, 0.0035299383284041726, 0.008943990955981583, 0.004256311498493207, 0.00676347984421069, 0.006045337896944829, 0.0035161999208546146, 0.002893540875442864, 0.002407605277064503, 0.0030006264183147892, 0.004195764260695985, 0.0035747392601131753, 0.00660360610801915, 0.003437714146880022, 0.0027571545140890317, 0.002839713430225952, 0.0026230094087861594, 0.002659585223175283, 0.002734726780626708, 0.003733259359313322, 0.007048778377911144, 0.004498113295899581, 0.002768334833386138, 0.0034795394694967043, 0.005061759897998303, 0.0044708033860118785, 0.002704046679986718, 0.0037978274128986, 0.004447789214835746, 0.004761588120998077, 0.003087228596111052, 0.0041805239131458725, 0.0040190046956446, 0.003926114029919101, 0.006938132473886832, 0.0021415754522072093, 0.006393980971166721, 0.0020603210514016567, 0.0023384039398329326, 0.004686729233317781, 0.003953246181223934, 0.003986138478881148, 0.0037112737568012442, 0.004730652466756615, 0.0025250642052927984, 0.01707200944203547, 0.005755019142985684, 0.0019445943581145465, 0.0026231861131779063, 0.0035017581283047, 0.004314807305600324, 0.00475202265200925, 0.0037300777890598887, 0.001903557306468005, 0.003425683971249086, 0.004897140758348569, 0.00233702015212874, 0.00508811146956423, 0.007773733991058515, 0.0060393820450456645, 0.004023504140529683, 0.0028508710410632652, 0.0046307058571296005, 0.0025702350690221323, 0.0040516173205266464, 0.004429019037141933, 0.002925758479855726, 0.0023441495167332758, 0.004212318636849134, 0.0027122767872506683, 0.003183757091377288, 0.00200877107177575, 0.0024563917988667198, 0.007287316032846239, 0.004423002313353339, 0.004032022492713916, 0.0028683959674219175, 0.003661021228562629, 0.0042772172975312625, 0.002739314961451361, 0.0024331584430456227, 0.0030330078503262637, 0.00483080041826448, 0.0028167118294651146, 0.004144699723518805, 0.0035101965037990374, 0.005343533271538546, 0.0028636198025058356, 0.004304298680957932, 0.0024949257645901354, 0.002761637096262275, 0.004537409254050429, 0.006409958071318151, 0.0037347790464978396, 0.004367459949049085, 0.0016020175987845639, 0.00230322447402208, 0.004018347917716799, 0.004332097613758598, 0.008211112455528953, 0.0037158503495889053, 0.003544081977816206, 0.003770145421683463, 0.0024043612791755037, 0.0035506745779318393, 0.004019720850743406, 0.0025468683308342713, 0.0038240772628809067, 0.0038681569937833887, 0.0029952324260722413, 0.004476237873509857, 0.0034456651876024944, 0.007366217076821328, 0.003583534593704232, 0.0032496106060375895, 0.002911413424959956, 0.004296672905134702, 0.0025807596409612556, 0.004764109983906532, 0.00275607587508537, 0.003610020435153128, 0.0021183395216485923, 0.0037693277290828894, 0.002244947107822076, 0.005448044576734101, 0.004067760487705917, 0.003932653514693609, 0.004077665466565124, 0.0038272207304752676, 0.002527181485210127, 0.003335024369590066, 0.0034388381468425573, 0.005001062217997248, 0.005129471250142018, 0.011890632656454231, 0.0034231754124009507, 0.0047140736588924355, 0.003258984799203784, 0.0030690810735048064, 0.0029334716324381786, 0.003644572295460052, 0.001853188333781617, 0.004266415641406123, 0.0028827991350182623, 0.006912157296909177, 0.007919637134769703, 0.004425644625218551, 0.0035262822821408926, 0.003017087135270786, 0.0026502588568117096, 0.0027455684793679554, 0.006044042685398905, 0.0041985193809899535, 0.0024032524287501923, 0.0031207973969693925, 0.0027930803157968096, 0.002321101791441651, 0.0055559295769359775, 0.004059747111981363, 0.003623783254839427, 0.0022176608986353317, 0.0065319351646723044, 0.0020011774616367005, 0.003878424621392319, 0.004362666864832386, 0.004337978350566981, 0.0021959317410939977, 0.0063867827169409915, 0.0061831386066525905, 0.006385539493646332, 0.005484845021980523, 0.0028924794096254927, 0.003657811315713149, 0.0020785390678850274, 0.009759636713689634, 0.003575308722979865, 0.003494648031701137, 0.00480326745231157, 0.0028054754496050363, 0.004284601617739097, 0.0040953953522175615, 0.0015993033179379473, 0.01078082310148136, 0.00276323989683132, 0.0035125217287332866, 0.0034324852971693203, 0.0037700929742674237, 0.0025195612802606875, 0.010486599122995339, 0.0037742644915213217, 0.0023650677277146743, 0.005069881186506258, 0.0036403413478467072, 0.004032548706861332, 0.0027736509603501413, 0.005142716688363617, 0.0032957490913124803, 0.003252245219396525, 0.003564179230590777, 0.0031439821788339533, 0.003244173741318844, 0.003641924563179133, 0.005214214747272626, 0.004100844963425287, 0.004961598365512134, 0.0037136780280966966, 0.0028055641088998886, 0.0030492657228001928, 0.006565596216213739, 0.0065304126767294825, 0.0035452367173750034, 0.003986636557047007, 0.0037257881744458903, 0.007543656330831862, 0.0037185249074681015, 0.0022126150458027707, 0.0043971191669465925, 0.0031779875170093964, 0.001816382634481512, 0.0035717524192151497, 0.002972690993564865, 0.007121149598474997, 0.004642626400316563, 0.0022923450905582713, 0.005756162277477691, 0.0037070886047644034, 0.003266873527903168, 0.003838930185114632, 0.002755234485317064, 0.003728160274139505, 0.0030154674387382094, 0.0033964949492229944, 0.0021248289704885242, 0.004209448683972126, 0.00842805546535676, 0.004389461538233045, 0.0017363930284575464, 0.0031070063991419225, 0.002978573202146281, 0.004281392178814433, 0.003247944884439773, 0.0030505641526253477, 0.004238002396468374, 0.0027982072888160263, 0.0023825985994208147, 0.0028471705108765984, 0.004123952925537812, 0.003143791166003698, 0.003292068269954872, 0.0038777549613798813, 0.005831579481176621, 0.0043889582030658065, 0.0023882175290763632, 0.00404512300190314, 0.0028937606498290113, 0.0036268870647672745, 0.003867203466263393, 0.0023725851842896135, 0.0031548821080174755, 0.0033918903302371586, 0.0025812844757949166, 0.005258371721173539, 0.002232345680989261, 0.00382202781154216, 0.002503211088398298, 0.0034234114140090878, 0.00892932263983385, 0.0027868540314771686, 0.004777490085056554, 0.0035692758049319477, 0.0028314028930408355, 0.005670615671180124, 0.002221982573320574, 0.005352899930586672, 0.0029316392802567178, 0.0034205817288556263, 0.0032837879672059722, 0.0029800707910405955, 0.0055089919703048655, 0.0032421319386240722, 0.004397458420929902, 0.005416319955848775, 0.0035413759043560157, 0.00387658581611389, 0.00296445486384101, 0.003697475818624768, 0.004409429012579552, 0.006404088075057516, 0.003944374348225322, 0.0037206041266519586, 0.007155028628015902, 0.0025571321938838354, 0.00572281404669423, 0.0032707017238434756, 0.004653421324738805, 0.004051826742401209, 0.004658245462459717, 0.0032633446734027767, 0.0031667616229414373, 0.00318707878711319, 0.0030412418621209216, 0.0027449852484524085, 0.0031169000377729962, 0.004078531063441844, 0.0031046551420288544, 0.0025932928639789974, 0.008529124850126964, 0.0033691690460173293, 0.0030776231687176347, 0.004349256670300343, 0.0034114443819060055, 0.004625081910548954, 0.0037459766563950948, 0.004237684646910352, 0.0036364754600490073, 0.003202050911398716, 0.006350533477550072, 0.0036662160893323587, 0.003106181690516804, 0.004152096863719571, 0.002268827267698485, 0.0021485895973276533, 0.0053409132974623, 0.0026395998543386296, 0.005566929942609357, 0.004560324549222691, 0.015606905318927883, 0.0034870055179627873, 0.0029026315946823547, 0.0026171592941529663, 0.003226123792459809, 0.003663445784402787, 0.003475010253188529, 0.0051643694100155105, 0.002851704186819925, 0.00199349707899109, 0.0061893587283457455, 0.004201823142753484, 0.0020778837580592634, 0.013436775512537733, 0.00261002732384361, 0.002446387784039503, 0.004761073957981893, 0.005112287460206252, 0.0025931774965630046, 0.002100294458488659, 0.008484129219207114, 0.0026875780546238327, 0.004024602196351188, 0.00393771497479899, 0.0016842460487597611, 0.004563954666488339, 0.002192639898038507, 0.004947881024303576, 0.00835107508289171, 0.00226560175917482, 0.0038858935519793685, 0.004694888178123292, 0.005222260535933438, 0.002620922279834576, 0.003234484148940171, 0.00488065332489565, 0.005651453397267096, 0.00328957802683747, 0.0036565459499304244, 0.0024262043687378184, 0.0024228658385112884, 0.0028155051568755697, 0.003313670055048763, 0.005143269736262173, 0.0020534322741203076, 0.0045704504120864554, 0.005359253337045321, 0.0033651792102610185, 0.0041618428978961106, 0.002069949625035417, 0.004765211168599169, 0.0027337226418819873, 0.003244182819680937, 0.0037942292827935695, 0.0019494011797909975, 0.0030266625775477373, 0.0028662409836122103, 0.0036172834696753995, 0.0022461673035385193, 0.002921068918741693, 0.004390766638033088, 0.004075890229897727, 0.0035581408624025938, 0.001385618780680393, 0.0029903725102804965, 0.002684646034767688, 0.0061769860425968225, 0.005081647906403374, 0.00424395433343996, 0.0024030832078147666, 0.0051497768205723046, 0.0028620818372332374, 0.0021033370754202666, 0.002902491653272608, 0.006183113225148536, 0.004285157799052572, 0.0033047008254618758, 0.002573324485728246, 0.003375404140801283, 0.004549672332565513, 0.0032221161602907075, 0.0037861636992022876, 0.0033133880155760227, 0.004016783953699621, 0.0026412863967646754, 0.0019960745416572096, 0.003336832732948066, 0.0031038501933343563, 0.0027839297081509442, 0.006205384468232884, 0.004016863265852997, 0.002108902790599338, 0.004211767568984396, 0.002793471472561846, 0.0025054758235858194, 0.0050392771925652415, 0.003220034352915766, 0.0030382345723727632, 0.004130198675236645, 0.0029956313638356377, 0.002856181591084364, 0.003388096819647713, 0.005200515793961878, 0.007040509164488469, 0.002993957749343066, 0.0046650858077522065, 0.00552769726809957, 0.0028567413795867044, 0.0025070546806303723, 0.002399139707341626, 0.00513827378414602, 0.0024448532143689756, 0.003353150380443271, 0.0031677215676654594, 0.0024290958181178196, 0.004101668673754945, 0.004631768299943646, 0.0039361717727028605, 0.0028808810723225057, 0.0023127062584718107, 0.004627012184413582, 0.0034873607101997086, 0.0022683417515972867, 0.003120323025872924, 0.004961469475657919, 0.004215878235566136, 0.00253027089964612, 0.002958261453037423, 0.0050282170240480775, 0.0039943303528817906, 0.003989663791211141, 0.003512741678848899, 0.0020987247978581625, 0.0034082866982639965, 0.0033394760223177077, 0.0033984029072436903, 0.0027017375382782966, 0.0058589055848125415, 0.007158032804352429, 0.005590253828061418, 0.0027452895028202014, 0.0026518235121661816, 0.003995780149069245, 0.004742471269950135, 0.0036100534918854102, 0.0042530749927397644, 0.0038756347222161903, 0.0017144367953721928, 0.010350095790762952, 0.0037359070577236086, 0.0036404298605720747, 0.007722002356410018, 0.007533325714961509, 0.002991807200606547, 0.002092446617787516, 0.0028147005171537693, 0.0024489436607508974, 0.0037659466364940537, 0.0032876282082705695, 0.0026103164209973946, 0.002276388033793975, 0.00452727589114395, 0.0040777431932435765, 0.0023478664196371064, 0.002870995426838702, 0.003910782538154812, 0.0056334372139552275, 0.006350776789674485, 0.004517266984560088, 0.006611468941613206, 0.0023297131805728654, 0.004183526219408206, 0.0027221021188903365, 0.003019040818205814, 0.004251476274209975, 0.0022385208279432772, 0.0031269183323428414, 0.004108446422578059, 0.006380748260568651, 0.003412447780975413, 0.0019353011892610822, 0.005666185602877072, 0.0028707385467102407, 0.0046117373726885765, 0.004055530338936031, 0.0036790812865567985, 0.0019720392073782726, 0.003596751664499089, 0.002642570327049857, 0.004123560307862347, 0.0034048135127385847, 0.006840180561143815, 0.0033369063733467673, 0.0020130577745777704, 0.004809620241193366, 0.00301582937680809, 0.0018504254787568095, 0.0030530025888298147, 0.003769918733666075, 0.0034463742313467884, 0.00527939653092785, 0.004719452238206339, 0.0020570511345659025, 0.0032808693118303615, 0.0029302509467489775, 0.0023398278369879478, 0.002995061836381304, 0.003003893411370268, 0.003134553986547259, 0.0028657351073568876, 0.0024555283204303305, 0.00723770682366062, 0.00614857359759797, 0.0042719308263257484, 0.004730117558407707, 0.006046390107840836, 0.001980224837159415, 0.002636192809904168, 0.004616148286769101, 0.0028105655032738554, 0.0022089483632638904, 0.0044504624554294716, 0.003286951735443995, 0.004336753763313117, 0.006010009138100346, 0.005166065516877127, 0.003976823801756122, 0.0023139715614792222, 0.0026959236627917826, 0.005002006559556323, 0.002107125151454807, 0.003934774125755163, 0.0036141582798451142, 0.002965552935983827, 0.0042245299585098855, 0.007072826308694641, 0.0029130262899517783, 0.0054739173438571155, 0.003551464939691705, 0.0043499767185017375, 0.0036286067991981195, 0.0029244014838115504, 0.0029098661396343576, 0.0021987884666195916, 0.00331647238323848, 0.0024222477430792502, 0.00550870780286502, 0.0029837140131521197, 0.005870470765049433, 0.002024956976969793, 0.0019381974739853466, 0.00432905647051485, 0.00574683282578113, 0.003253238500595049, 0.0038735355419676418, 0.0035466798284055035, 0.005941816320636763, 0.00258025767753701, 0.002290391296533864, 0.002336452370661923, 0.003470534798317562, 0.005701457201049471, 0.00523575471180394, 0.0024526302521519373, 0.0026973632603170686, 0.0019816419904775833, 0.004235220482749841, 0.001813723584421892, 0.004366814188122101, 0.004106222804946053, 0.002164448938661522, 0.005532367256324181, 0.007092662151349996, 0.003584460655043695, 0.003601866740511414, 0.0033946305209518928, 0.0037835310703789237, 0.004845340714671301, 0.0018656767045211956, 0.004366883753610612, 0.0043604708856972065, 0.0036892604531949965, 0.003104628413786262, 0.0028360169744814953, 0.0038308164763698775, 0.0031765370274191725, 0.005457269348366678, 0.004802954553757909, 0.0023504255808420088, 0.0038744792410810346, 0.004825364040882811, 0.003706832566434124, 0.0035230726488734653, 0.003991132022620616, 0.0035852320375757557, 0.0026029421368082744, 0.003586212569995352, 0.003543484782431535, 0.001257366187937803, 0.004796142067139306, 0.002855832864111408, 0.004554748066500598, 0.0020404890958476652, 0.004454585651315814, 0.004088335054552625, 0.003445560266341332, 0.004026823217376948, 0.0032561880038679014, 0.003260413777651161, 0.004805995119575636, 0.0027524520457919417, 0.002936992274724962, 0.0028931561454359597, 0.0026964824133472822, 0.007660689722958134, 0.0057888366252288204, 0.008718803221601604, 0.002117006117412594, 0.0031449631914305166, 0.00499461201129412, 0.0030115119524751098, 0.0032977564580674154, 0.0027094875379332804, 0.0029248489140618577, 0.0027931515040865267, 0.0042795050199378945, 0.0037395385653555173, 0.0033853717327050844, 0.002616943467273452, 0.0038655640525328294, 0.005761092751600881, 0.005191903022831987, 0.0024846947003986314, 0.0031980530854056497, 0.003344735596402128, 0.0020050568212009482, 0.004634898925736941, 0.0022682248784803203, 0.006167817345547403, 0.002822804985137278, 0.0036390288646074493, 0.003977991584791852, 0.0022698988986442356, 0.009238449239615172, 0.0025804763006458233, 0.0034145232862102574, 0.005014455871006643, 0.005608861668546659, 0.0033713173470697, 0.0027774632535126744, 0.0026146486526498207, 0.00261404646065803, 0.0038335043028437745, 0.002753918685262264, 0.008452586689841824, 0.0025974718538841245, 0.003004992185447781, 0.003833617632126999, 0.006865389531499245, 0.0035930684034115186, 0.0028253244286112022, 0.0021460117466481224, 0.004164495762851433, 0.002281778809104213, 0.0030779037921365437, 0.002096396436508869, 0.0032069599129085336, 0.0022330149600007176, 0.007845292451867072, 0.010860482783634506, 0.004587606464422912, 0.002048421312031589, 0.0032889278919576194, 0.003558993237963786, 0.0032119557102811306, 0.002846893373121423, 0.0024364491870957346, 0.0024757932232854305, 0.002573788184258344, 0.003878548862905607, 0.0026019109990792935, 0.005930268264810873, 0.0042042236735185595, 0.003953136600383376, 0.012413344595908272, 0.003041615461243998, 0.0037645301456204544, 0.0030027383278405425, 0.004331447405697939, 0.0019760470251112485, 0.003258898476365358, 0.004413913892969022, 0.004719574552853383, 0.0028876457356175325, 0.0027632580821875677, 0.0021762083593108053, 0.0038994796566785097, 0.002873205873799405, 0.004035121611846364, 0.002809034363600878, 0.0033484011569798362, 0.004870689119936695, 0.0024479284568803437, 0.0037835924668866905, 0.005709520544178303, 0.002714284930186563, 0.00291255575032661, 0.00564929664198963, 0.004484481432585196, 0.005303920754658893, 0.0026357269337494234, 0.00903039960093785, 0.0035802233315631767, 0.005391291324629521, 0.0021535522914525426, 0.003521760843999812, 0.0035757481915165853, 0.0019433799792685134, 0.0030309417206326643, 0.0032988693482630797, 0.0027198060641045073, 0.004324502909912027, 0.002970863522981741, 0.011674946169969362, 0.004677174967431795, 0.003773149762796355, 0.0026905226458309624, 0.0019935367916833766, 0.0018867131589119265, 0.007101325461056457, 0.0032169225106449873, 0.0033335644497392734, 0.002944229887055057, 0.0036297369200541966, 0.003015287282035296, 0.006152042323343319, 0.002671036555064665, 0.003428107235999221, 0.003101150840318056, 0.00404389633224539, 0.0046447110032828256, 0.002553677736320153, 0.003221410571634229, 0.003408183502164297, 0.002398788391990011, 0.006983393649676218, 0.003709205904829952, 0.0021687715428522717, 0.010086712018611027, 0.00482293837317931, 0.0032665645382333507, 0.0031922117479858494, 0.003834585646360691, 0.005247182932241728, 0.003099140448729746, 0.0029208657048332655, 0.003106170797458635, 0.0037562452740367742, 0.005010610292080294, 0.005792562474333731, 0.0022313017365485667, 0.0038617547973428304, 0.0028387717047772937, 0.0024860629047223663, 0.002296693465831193, 0.0026778681499097573, 0.006461773431554905, 0.004592790154485872, 0.0034810999698991463, 0.0031763903163129397, 0.0027605817063425424, 0.0024201215790405502, 0.014188308008568986, 0.002945831444849481, 0.002784705462204252, 0.0037176214394124434, 0.0033479555812780453, 0.0033182523891151935, 0.0033037114674588385, 0.0026509845475304467, 0.0023086225517080527, 0.003013685826340225, 0.003922408098763786, 0.003066914787556752, 0.0024695874146247005, 0.002507624530775151, 0.002917817703281839, 0.002972063287817031, 0.0026248918126830735, 0.002341178149137611, 0.002813229692077108, 0.002837947555053428, 0.0063037916192309725, 0.005474432502317494, 0.007349240226295349, 0.002986564004519605, 0.003570594355632878, 0.0030914082235196237, 0.0032122500125619084, 0.003461749911013741, 0.0025639947061694606, 0.003907078602104727, 0.003049406875433688, 0.003198418407763142, 0.006895215993166244, 0.004325400583773671, 0.0021305956655053577, 0.004125501556610749, 0.0030536250874993133, 0.0036207937475400075, 0.0027156733323139386, 0.0026993672896124987, 0.0029857977735556164, 0.002095657589401962, 0.004256020587654212, 0.004275401647201233, 0.004035227531976099, 0.0028756479758616864, 0.003678285211992731, 0.002306835146353429, 0.0038532458687478032, 0.0068871774740062825, 0.015808239604650443, 0.0027348108027593263, 0.004395823260238412, 0.003184533667702635, 0.002498592581762496, 0.003029496187656416, 0.0037988319220438986, 0.0036496705872633905, 0.0034779199735292714, 0.006558855985707818, 0.0049925758297686175, 0.0023834099561313837, 0.003949130515677346, 0.0019438437189722873, 0.00368701822271328, 0.002346925565965932, 0.0038021047773259668, 0.004590768575824666, 0.002795221923213901, 0.002770629465735696, 0.002393597270404011, 0.0028711134911203412, 0.003560229496754616, 0.0035098848754951143, 0.0037287207334838605, 0.002704431207844359, 0.004235304156702568, 0.003563146849495999, 0.0018919320815862623, 0.0051036752885554966, 0.00348098670639662, 0.0031456430202798772, 0.0047859249074586625, 0.004061138418333584, 0.003231987001942735, 0.005135765383341052, 0.002914663039147458, 0.0034269518864370034, 0.00452271603920434, 0.0029041867260949893, 0.0021559515137597233, 0.002483083123673465, 0.004734163716735886, 0.00384811126824106, 0.002062188906573983, 0.003166842563366856, 0.0045627748950605816, 0.003311828258400039, 0.004238197717192269, 0.0037532048291796945, 0.0023121730390012413, 0.02262244349366809, 0.0037000230205976267, 0.005286841927959732, 0.004813063379322231, 0.00676358761007508, 0.003595492272656614, 0.003871396801669584, 0.0018176608058725684, 0.0033062940202399325, 0.003901559986849816, 0.001975187901147087, 0.005593461603647163, 0.003544554972845534, 0.002398664331041545, 0.0021520007606374526, 0.006744399862092491, 0.002775609816532318, 0.001812292306359447, 0.004358405557707395, 0.0040264094851149715, 0.0024717163722853823, 0.0033648479672479656, 0.004277100399909213, 0.0065230303596642, 0.002885965202854164, 0.002294565145782276, 0.0022505903391066063, 0.003415777856993706, 0.004946971252455185, 0.002713559015191669, 0.003763530348760212, 0.0023735765580334637, 0.012113836886044827, 0.0021696819813124013, 0.00289018498734695, 0.0034064759422951113, 0.005305949666671152, 0.002289432047943298, 0.004308852061468018, 0.001685621621688535, 0.005733729265472808, 0.002799351625527921, 0.0032282527244340393, 0.004710488245137876, 0.0030604111903544612, 0.0016659891356060087, 0.008118169083121185, 0.0024293024780209843, 0.0019582522081281945, 0.002090727352340063, 0.00330305667135896, 0.008902131982823943, 0.003391659896602492, 0.0018513899451152477, 0.0021516433399985297, 0.003058305881403087, 0.0024267907948350687, 0.00263755296855966, 0.0035541987605378885, 0.0023152330210599514, 0.0034287463580817664, 0.0014671866156904293, 0.005737526968388652, 0.005142384851472696, 0.00910297433228019, 0.003091243681902494, 0.0031720352607543115, 0.003980763951860978, 0.002713378552208046, 0.0017472307071833243, 0.0028309072339993764, 0.002976153955105174, 0.002503650469615519, 0.0022412450766102782, 0.004938061858516221, 0.008765825016809463, 0.002214905288652675, 0.0022419448470621145, 0.0072605644050506455, 0.005164379325714577, 0.0036594820733469634, 0.003748448539699606, 0.00302210060882477, 0.0022852034551871904, 0.003598972568359649, 0.005154792607679058, 0.002691795735340082, 0.002136596012765204, 0.0034280416225547124, 0.0032082513532862775, 0.0023817251557451537, 0.0023942512352621652, 0.0025002494091065125, 0.0032519356674601332, 0.004316439592095322, 0.0025619121596590685, 0.005449185451522883, 0.008938322288135393, 0.004161223021646869, 0.002268709086745884, 0.0026614016386931403, 0.0034776594209755866, 0.003908011992216661, 0.0028922419425875803, 0.003321086504789962, 0.002713138311911295, 0.007547681838745136, 0.004997485261494975, 0.0037322545036713958, 0.0025151323684575303, 0.0018868223999297308, 0.0035832884644246056, 0.004118872434813109, 0.003758619635415859, 0.003472211170379424, 0.002377980398653079, 0.00462322789815477, 0.002813237313868522, 0.00415923016554913, 0.004494430587317967, 0.003440572969348756, 0.0028464129294112415, 0.0034394305029858247, 0.00445746444970942, 0.002548816740027657, 0.0026426247332807487, 0.0031814535415501813, 0.0028277081675910968, 0.01888701879623058, 0.004602962308971388, 0.002768456054752564, 0.0039494157887798535, 0.0021962855288681906, 0.006508756655620722, 0.0032326415508281644, 0.0018781065202844044, 0.004923309540837355, 0.0036808602086150486, 0.0033749721401624814, 0.005875731729713072, 0.0037359280077263295, 0.005271345010170835, 0.0020340467977446675, 0.003447979383079138, 0.0022780177557199023, 0.004370079113972336, 0.0027581032846892015, 0.003551597013224299, 0.0028419678514105236, 0.003001963860509793, 0.004843640004350546, 0.0033196447400604652, 0.0031585741131427017, 0.0065855087724155425, 0.0033461775041702994, 0.0021632774972651517, 0.0023735488175837863, 0.002753085424833317, 0.004222392501503905, 0.0025784670389192538, 0.003336148849577158, 0.0022288015378653376, 0.004704024081236188, 0.004731880702697911, 0.007388702144631776, 0.008442937760017031, 0.0038976629372800297, 0.002675676850461919, 0.0039049714035048525, 0.0024087327582377536, 0.003407811512487585, 0.0036217294905881263, 0.002603886491298819, 0.0037400600537293984, 0.0015954902560325508, 0.0037031672141515045, 0.004842404553090692, 0.00514854395956478, 0.0025906957233119005, 0.0032428112065793534, 0.003792314745202427, 0.005405595743275706, 0.002311349634630527, 0.00333788915290664, 0.0035585691190384767, 0.0020227060817699606, 0.004220005024398838, 0.0023424577336787385, 0.002411559951603257, 0.003537109399887601, 0.006021873951267214, 0.004094666832267344, 0.004865127611493965, 0.0029736971170488827, 0.003115223903872383, 0.0022942777999297474, 0.0034184256466192275, 0.005956606814371411, 0.002531516918142758, 0.0026989049967304575, 0.0040935478363244415, 0.00518004444272468, 0.003549344615440485, 0.005477166441254186, 0.0032527590115117313, 0.002423676824746741, 0.00950072651654185, 0.003125520724619259, 0.004102357065207152, 0.002458972116182983, 0.0023370224796813678, 0.004385288889893564, 0.0029123601279155845, 0.005399320720984447, 0.002398136899204737, 0.0027834820045231296, 0.002249865999709549, 0.0036566731698714, 0.0022656792550870696, 0.003532790135165248, 0.0029121500961859135, 0.0029652859945233983, 0.0024620222354305573, 0.007649867631011604, 0.0041374018519538, 0.0058848846964882065, 0.004049416750353313, 0.0023245223557360668, 0.0029123583991238953, 0.005342249443825243, 0.004269293174662876, 0.002237911015685849, 0.003473712754383653, 0.003940950171919821, 0.0078069176043579335, 0.002879817275212817, 0.004677496903120327, 0.0021363307204380613, 0.002964167825891911, 0.0018591523930348269, 0.003891727700074894, 0.0028914902718304705, 0.005602433206430421, 0.0042582175313102145, 0.0031790349071310654, 0.00263958188933398, 0.0054587222660943185, 0.004038961279312641, 0.0018193033671939085, 0.003397610126661575, 0.0026354811838370526, 0.003711338183438022, 0.0024387370840443985, 0.0036118949665946746, 0.0020488045301681234, 0.0027223796980093843, 0.0021443913902106882, 0.002569091246492005, 0.0036318103569987466, 0.008842799563155623, 0.002814352973461034, 0.002584150075222065, 0.004861455542303456, 0.003943037632190725, 0.0036452585376241125, 0.002909388775980917, 0.002599072342062012, 0.001984963873253376, 0.004336772171105656, 0.004326892912023314, 0.0037169756682935025, 0.0033825658734526107, 0.002646929657657052, 0.00272350661942951, 0.005320600139157106, 0.0021344555452626015, 0.002588690268722518, 0.0028157889507819016, 0.002569164833447549, 0.002474806774070513, 0.003256271415800124, 0.0025850769371737496, 0.0027661047498338024, 0.004179487244142044, 0.00596165038589409, 0.0022712822561655683, 0.003328373604202659, 0.001850022328360174, 0.012239945821540893, 0.003003343748901794, 0.002561763904907971, 0.0033475482239446928, 0.004763929037579224, 0.0023851234969623205, 0.009044068238092494, 0.003652510533850155, 0.0024219290641916084, 0.005164785686539131, 0.003000800028386329, 0.0033776296906199363, 0.006962540626692342, 0.0027564466355037573, 0.0033199333393723945, 0.004508624479087964, 0.0020101076614663363, 0.0025377487440437327, 0.007015062286115359, 0.00326129254934165, 0.0030782960855688496, 0.0032001008588573355, 0.007468436813483727, 0.0037008298356250914, 0.0023542667385432112, 0.0026567004059271627, 0.002370277063034512, 0.0033965061153064975, 0.0027992360807149773, 0.003263689435542957, 0.00404903148611927, 0.002846455678718982, 0.002879480348337026, 0.00982003545607077, 0.002855605760951686, 0.004743983921760801, 0.005644403230279768, 0.0056298703869430925, 0.0044065258067470916, 0.0034020448338204687, 0.005757262078045588, 0.0027731716246550695, 0.0017629508680625928, 0.004369753759902181, 0.01224707218536449, 0.004309966117791638, 0.004540219138522114, 0.002745686192626493, 0.0026230993072228156, 0.012722300547932391, 0.0021961768102275354, 0.0026098697354989507, 0.003370228967456464, 0.0019706327868994284, 0.0076572459504768734, 0.002494465690056654, 0.003857783387693537, 0.002781638135001873, 0.0029721842758681878, 0.002875374443958099, 0.0017160481777724747, 0.01401260289818734, 0.0037242754340435233, 0.0036092823302983764, 0.003250851131981235, 0.00319288331481424, 0.0023154263612040196, 0.0024889518966747476, 0.002444053310471421, 0.00241679190381502, 0.0037581140038014152, 0.002649240977962006, 0.006896021759229836, 0.005873282317064265, 0.0029265594642582655, 0.0025851650676397145, 0.004247333685945465, 0.004355934907859316, 0.0029134278857128387, 0.002266100958049047, 0.0041261255420451766, 0.0017618498543053127, 0.003620735453443884, 0.003701474126589167, 0.0032290552258384363, 0.007699330240163097, 0.0021023116196458727, 0.0034665703049339414, 0.002077431236496011, 0.005011243912846275, 0.00280480718584934, 0.001961986987860694, 0.004078550410271444, 0.004337785397895265, 0.002217920681520299, 0.002240379925345659, 0.004359336075758763, 0.003958922637404081, 0.0033892392946663795, 0.003298083333151556, 0.00335572719398826, 0.004563651499197052, 0.002346427722671455, 0.003769205913198316, 0.004095825529561524, 0.002973182251120107, 0.002337911298099717, 0.002686101926581582, 0.0041019673411278375, 0.00475266603385986, 0.0037310186706841822, 0.002209220398892268, 0.0017933757137669009, 0.004231983478304701, 0.003598450043947957, 0.0028093497293572413, 0.002180054880169051, 0.0023471373896357126, 0.005903403169111334, 0.003153395190161374, 0.004401827491014179, 0.00211213203725955, 0.0059035898243558265, 0.0032213931002432056, 0.004104359348998348, 0.002075755552509638, 0.0026502466106910014, 0.007744555551621578, 0.0025739655721389847, 0.0037784979205595206, 0.0033755726802357014, 0.0024212954179342787, 0.004318250001058323, 0.0021041141848351292, 0.006529306871321966, 0.0062051358123927005, 0.005199760106922864, 0.004386372657928067, 0.002264182426127702, 0.004006001614372606, 0.004303862124417473, 0.00312658209944293, 0.004438712802486562, 0.003902780138478166, 0.003419488758750383, 0.0035419987922499464, 0.004735726193719006, 0.0037281739380317772, 0.0024352478921500728, 0.0032878538316635036, 0.003196456853763545, 0.0029990936525845476, 0.0025482622034215005, 0.0030425552174542223, 0.005330514378033948, 0.0027500910018746325, 0.0036607330626143276, 0.0034210675030353415, 0.003506653519496953, 0.0033229204768440317, 0.0048149709178418616, 0.004398835110140382, 0.0028893393797244133, 0.0021756658741725996, 0.0027948388072735362, 0.0035766902622114565, 0.003734791427912827, 0.004068113943665383, 0.002504247061072289, 0.004853265695105394, 0.002336059768072451, 0.0025881454908010864, 0.003204268759638544, 0.0031156537063188267, 0.003956557760872113, 0.003265138852832853, 0.0037816395199224634, 0.003335628576398425, 0.004429516780251342, 0.002627303372921362, 0.0022616929136650707, 0.005542475840383735, 0.004325001508985872, 0.0039214358091069195, 0.003210587624634987, 0.0036868082176524175, 0.0033431453323524408, 0.003935261749211943, 0.009317195215905337, 0.0017921973713306018, 0.0032904562008749345, 0.00293114127642574, 0.0024030564273807586, 0.0034131632020866936, 0.003173633819770888, 0.0020056556268790377, 0.002842427519329115, 0.0019082556739904223, 0.0028007590780924387, 0.0057817983887193235, 0.0029131558966183457, 0.0028523924305474645, 0.002452645088698896, 0.0031115162558905526, 0.003959156893549468, 0.0023077445060217744, 0.0029898799520002694, 0.0019470354416387535, 0.004228520167716942, 0.004406437771000108, 0.00582101565968529, 0.0029411569894927875, 0.0046885160727879755, 0.00466254022875501, 0.0016060660234556057, 0.005392240417028598, 0.0024599716112713916, 0.001893274490015482, 0.003327017650816902, 0.0057458444331713165, 0.0032578066371259165, 0.002771117791564082, 0.003688925967481181, 0.0026456004230452426, 0.004310328978652746, 0.005239932261011, 0.0029674470342989255, 0.0020173718201947667, 0.003653283881725029, 0.009475939679578651, 0.004566759235275753, 0.003699437952496986, 0.0031097362995800917, 0.003238574561797201, 0.0036874732318557257, 0.0029426503198233885, 0.00304708376344182, 0.0038987029471759813, 0.00930723615521051, 0.003340536564339655, 0.005203447489404494, 0.0021260273616849896, 0.0023760078391856588, 0.002720735620968485, 0.006078390778778411, 0.0018788162362147534, 0.004980609421359657, 0.01247248878993887, 0.004596074122999134, 0.004657151513268456, 0.003023952261031397, 0.0019385588338240785, 0.0038202509875674105, 0.003137070009481835, 0.003456638805155037, 0.0029822756704877694, 0.0022826710493020095, 0.003324007806867109, 0.003537603298705629, 0.0025309904644366904, 0.00590319189277982, 0.0037158697852819147, 0.0027632712199834146, 0.002751221546570206, 0.004053558910959248, 0.004605529741641844, 0.0036506412700771976, 0.004488863887826316, 0.0031234957311077746, 0.004951647979876503, 0.0038683989737980174, 0.0036313858000554047, 0.0029145621296634895, 0.004752857319338058, 0.004422940019671431, 0.0022240292245115905, 0.003155214482495036, 0.0031951998525623785, 0.0024895303888810526, 0.003852795547416539, 0.007215350468887899, 0.00342005986211453, 0.003134354034517573, 0.00391856200627818, 0.0039353919752991556, 0.002279397279868813, 0.0032725464119379663, 0.0026546823054212215, 0.0019370773009170592, 0.0033675248211305605, 0.00340801477186376, 0.0024568598129204046, 0.0016345790004079742, 0.008597725033214081, 0.0036829052447662513, 0.0037473793171703155, 0.0036924162143898596, 0.0018708248054473177, 0.0035716205693628765, 0.0035724841646622304, 0.004454874122529017, 0.0027479809815109725, 0.0035372193497473633, 0.00340976829650839, 0.0034598320137578576, 0.003569325409021519, 0.0027059233962613304, 0.003780625661013566, 0.0026184311685584134, 0.0017650461378258514, 0.0036982543865161804, 0.005400119471267604, 0.0034401223354173366, 0.0036991648855243366, 0.004346860484055111, 0.003884025657621534, 0.0023033489731048187, 0.0024404051895218224, 0.002369448425579324, 0.00365387189947333, 0.0020595924058319933, 0.003156645211852968, 0.008263482505094566, 0.003755403094452426, 0.0024225141521881928, 0.0019281133286242723, 0.003972964717853091, 0.0036770281637126265, 0.0022899330171021587, 0.003980369852398085, 0.0060962253370660585, 0.005612406218419694, 0.0020604109532155394, 0.004517070217572183, 0.004483611139941973, 0.0032415957884591624, 0.004415332647133234, 0.0034644280387546725, 0.004254310439743352, 0.0024325742692205346, 0.0031563650077170388, 0.002686343297097775, 0.004113961201285533, 0.005022077038851792, 0.002543266317846791, 0.004138255395397675, 0.0029032977043362608, 0.0030901625286547723, 0.003057521087545578, 0.007835447136735679, 0.00241113852760978, 0.004258696802740809, 0.003965378755027873, 0.0030409465694313416, 0.002878892637870343, 0.0018847071704547146, 0.0043973818430910454, 0.003472933265305472, 0.003358087499889408, 0.003972456182518828, 0.00664860550586345, 0.002763465652982207, 0.002687501052344345, 0.0020941357328275972, 0.004899737892677459, 0.004486273215282473, 0.0048195396373591935, 0.004542755262613315, 0.0034735899311654555, 0.002734271277476446, 0.0020116858572735816, 0.006082422571155237, 0.003500657363247471, 0.0017689864714307564, 0.002688368792596311, 0.0031482426052555903, 0.004515205850480795, 0.0020817421383289405, 0.008220216178313351, 0.0028272233099478324, 0.0014926047336649901, 0.007785941201295383, 0.0032607298495721275, 0.0041089296359489245, 0.003265221712384812, 0.0030895006634508253, 0.004310510682047861, 0.008738782769116934, 0.002137211969415597, 0.002665939975042302, 0.004014212215974683, 0.003838966345233364, 0.0028247843825088483, 0.0033506544434767924, 0.005371641897634815, 0.005051939169989335, 0.002494270155205358, 0.004996989242233489, 0.0027203316564729766, 0.0026756355305327406, 0.0023497099955465187, 0.0034176305273852098, 0.005874899074870878, 0.002365913719221298, 0.002418016351462627, 0.005109875567132646, 0.0028528095227268765, 0.003452685923544417, 0.003806065765274878, 0.003185832743295485, 0.0022922691836235, 0.0037378974479375395, 0.004215718861748069, 0.006545827239185118, 0.0028528350993101874, 0.0032216315025376746, 0.0019046989155201235, 0.004781134649142893, 0.0016703793388639534, 0.003813451377842467, 0.007036239242279243, 0.00365171491593419, 0.0037763450953912426, 0.003360773000789797, 0.0016441212757541024, 0.0028940911279949936, 0.0026447835649178394, 0.0037718188284725034, 0.001961790647617618, 0.0036246330858942916, 0.0018001865961453922, 0.0031102926998614203, 0.004434209736215251, 0.00879902019007801, 0.0025084391724832797, 0.01221277277474003, 0.0025984238242056502, 0.0026194341837889458, 0.004262372545572858, 0.003972517794495996, 0.001924279393623276, 0.0034495037943618892, 0.004737656321714724, 0.0016262301549539182, 0.004736822640809555, 0.003109935152844213, 0.0035858210836368885, 0.005539762464297509, 0.0022480189124853196, 0.0023869996178115835, 0.0026833628962407313, 0.004033120040995481, 0.008334658595818754, 0.006743921909733702, 0.008133471660361793, 0.002085973927385221, 0.0027942299440854813, 0.002181109165936811, 0.0040008152006071225, 0.0021931076687243165, 0.004271992445794956, 0.0029546161174378053, 0.0017118451896357089, 0.002718484100000958, 0.005061312452762685, 0.003923285717243095, 0.0026886391679806646, 0.002997294939349945, 0.0032724593001495785, 0.002661753183145089, 0.004288737882108659, 0.0020618673881541098, 0.006630209303529669, 0.0034630739641565594, 0.0031181239079873576, 0.0035549518734089834, 0.0017785929369570578, 0.003422423702585065, 0.0031735463018990697, 0.003099172185169226, 0.003469702767641283, 0.0023861839039742115, 0.0021745572285071396, 0.005555929649089735, 0.0025084667499272913, 0.006296130942358258, 0.0038437350968219598, 0.002774042031758264, 0.0019770422810034016, 0.0029318116767137145, 0.0033899569169790742, 0.002858677741665179, 0.0025025358006394885, 0.004215430133059564, 0.001887274627028645, 0.005607656297805632, 0.0033671779699340513, 0.003926602822246088, 0.0024003872763457635, 0.004415028669239101, 0.0029590763754908534, 0.0026370310109897987, 0.002799458346398913, 0.0031407145065270106, 0.0029128199881693568, 0.0033272820603041297, 0.0048651895665932305, 0.0025615884685183557, 0.0020178521065812383, 0.015403045590449773, 0.005909703092883447, 0.0014601503738737847, 0.003501124190881555, 0.0034281241271836857, 0.0023086511484901955, 0.004199079505929971, 0.007981769528110987, 0.002707098577348105, 0.004849342066633717, 0.007416212077527014, 0.0027494173559662817, 0.004052909408578731, 0.002359764400466876, 0.0028754506348928266, 0.0030937068158215773, 0.0027737095783452776, 0.0015399695779597315, 0.004606753817974448, 0.007268044666218908, 0.0025247080957757568, 0.003689070481135777, 0.00323149840781696, 0.002282994636373564, 0.0021391868298946404, 0.005508555426636009, 0.007035437158743972, 0.002698624083078271, 0.002611741675259438, 0.003353873891817665, 0.004282312114475025, 0.004201517384924408, 0.0024895858559202144, 0.0016245539870633427, 0.004195715451009089, 0.003918346014259532, 0.0021268354778586555, 0.014755074158367085, 0.0036820517005647737, 0.0019370939434044821, 0.0027334039824433902, 0.001729072838339661, 0.00253100004371159, 0.0021084161802706683, 0.0039003212602795366, 0.004223461866770814, 0.0027018008722661697, 0.004229485021074672, 0.002760104491249326, 0.0016621149065351895, 0.0025836910563376515, 0.003623177330295143, 0.007288850483762261, 0.0023719426947021627, 0.004021448851234107, 0.004267366205635653, 0.001903266476166135, 0.0033293848721305044, 0.006660164785027477, 0.00388407005087948, 0.006817031443481694, 0.003645155399354183, 0.0027190954406933142, 0.002091579204266776, 0.0028469613327899955, 0.004610267837598396, 0.0026932309853143314, 0.007980542726263036, 0.0033638121807355766, 0.004795840209703298, 0.002372220806460822, 0.0036288861200090205, 0.003090816141892795, 0.0029229947331680865, 0.0023109176996716444, 0.0037304586865826448, 0.007356530424686605, 0.00391002496039552, 0.003586915445053661, 0.002587239007763314, 0.006925280405205091, 0.0020813381528458795, 0.0038637487814198726, 0.0023140916782985136, 0.0029916960159237114, 0.0033137091169909913, 0.0029104402077617247, 0.003492169002177198, 0.002634318003116814, 0.0053081954010768045, 0.0022195505446336687, 0.0037566765984074213, 0.006507322673368329, 0.002276779161695907, 0.0023537996633253874, 0.006217880224830216, 0.002337395860582439, 0.0036185462209289134, 0.003853977342335999, 0.006474247771045086, 0.0031946450174334604, 0.0023989617229100754, 0.003050273223513892, 0.0027598034741430004, 0.005263947163906444, 0.00144790890611712, 0.0026509745840278547, 0.0022138739127556873, 0.007575221385856352, 0.004003921928882766, 0.0036636140642736757, 0.0016268632121975144, 0.0043282878543966915, 0.005535271607389439, 0.0019245939646893625, 0.0023167787571327634, 0.002985327293989403, 0.002779236743426919, 0.005126863499403446, 0.003402375712994158, 0.0018171190778314059, 0.0031454784862652574, 0.013813889995603798, 0.0026938046153990643, 0.0030840915509781526, 0.003931087616095238, 0.0030175280653686513, 0.0026561688428507323, 0.005916664333593787, 0.001952099539077728, 0.014153881711086674, 0.0023910616895656068, 0.003721328897437426, 0.0036723846061809317, 0.002450722912148237, 0.002671999212147675, 0.001600717616303582, 0.004684839453892859, 0.006966834210459322, 0.0030578394385206136, 0.003121133859577836, 0.0021840898489365835, 0.002012770702628049, 0.00251279255327863, 0.0035209172003536466, 0.001744375492091096, 0.006230407214178142, 0.0021516010525246933, 0.004010943842096444, 0.008770485025017299, 0.003492204533176125, 0.003172419717498703, 0.004563840378522393, 0.0020404993417609653, 0.0028419542824297634, 0.001774792680342241, 0.00390826521323609, 0.0032925066118906477, 0.002297994671814192, 0.0026424753593301204, 0.007023711624204372, 0.002513536614194726, 0.0023062015515626826, 0.0020244190878965025, 0.005316984990052453, 0.0016531760730437144, 0.0021053486776433793, 0.002786733301929895, 0.004782407273474866, 0.0024145258488489285, 0.0021287735301336766, 0.019147905576996783, 0.002730586252940915, 0.0015204417287494677, 0.0022981939477334573, 0.002080385313654034, 0.00477561870483083, 0.002325790388824981, 0.0031035395542622197, 0.0042063682059015955, 0.001831950066919481, 0.004049024301754028, 0.0019441002046963062, 0.004075665040010393, 0.003146670877897926, 0.0018710307280598866, 0.0030387582433008538, 0.0035397697709348306, 0.0022491546600878166, 0.0017496612452683792, 0.00470298689019813, 0.002917537657318304, 0.0030858008955677915, 0.004093088747212895, 0.0025169765629964773, 0.0020462094884966865, 0.008680471426447699, 0.0020994404695990026, 0.0023289232772706952, 0.002078073292269026, 0.002447764671128431, 0.005610198030598696, 0.003315923295239478, 0.00533115117177552, 0.0033279964153653833, 0.002847697267522936, 0.002008375916156657, 0.004628195360283952, 0.0016431853986880822, 0.0038901790950449286, 0.0036039824026569433, 0.00396349675595666, 0.004510410882740077, 0.002045185267188502, 0.006180380799972856, 0.001988687297898142, 0.0028878556611885366, 0.0036921751703972113, 0.003508891225043484, 0.0026835381655196883, 0.0032297864025495142, 0.00383627696446524, 0.0017991896611842992, 0.002873691695622862, 0.00852864629797528, 0.0021504360775781066, 0.0033592864615981403, 0.0029846231518877975, 0.003525203790808197, 0.002547649203833979, 0.003996997788489979, 0.004186658268704949, 0.002230861523120594, 0.002966919942283213, 0.0020026494702281043, 0.008672917691654111, 0.0030228414028069047, 0.0024577253632738537, 0.004195958905638554, 0.0022856777575519576, 0.0029843985304584464, 0.003111929796205723, 0.005845537846814757, 0.00274934987148409, 0.002431696687354872, 0.0021981746234533825, 0.0030588430022704897, 0.0020849314968350617, 0.005220456986200124, 0.008193618344491643, 0.003734637458568688, 0.003950098530195708, 0.0019860091445512104, 0.0030431092457436255, 0.0022027753605997715, 0.0034048651464537857, 0.004788880199571133, 0.00592313691794377, 0.003087076416183978, 0.0043964003456242375, 0.003476726222371593, 0.0020194947213443763, 0.004165372386266679, 0.005243676919426958, 0.0018694111312840497, 0.003112998426808493, 0.004885792855551017, 0.003577731751154578, 0.002365861657061044, 0.004070114849729188, 0.0028059742853467984, 0.005188622028031752, 0.002640718487397668, 0.004242732943259497, 0.003151658434076073, 0.0016206668262905614, 0.004259564513288612, 0.0025928798976005358, 0.002557121639571727, 0.0026399859307851443, 0.0057084675548762075, 0.004129313122500503, 0.0031291670717295593, 0.0033393418828669176, 0.0025118392282988617, 0.0032636659333695798, 0.002713549924300342, 0.014520297268590684, 0.002520759635621465, 0.002455493156438155, 0.002145893130497199, 0.00296222080659406, 0.001955830791907735, 0.003405015140090638, 0.0017193264824595807, 0.005152199362884837, 0.003242672659505752, 0.004245532326757885, 0.0021485671356366717, 0.003541625999261606, 0.002243560896076062, 0.0023676233857328477, 0.004426267917263672, 0.003137171169125851, 0.002808079987259013, 0.002390663613793513, 0.004389733550921911, 0.008333589866949515, 0.006965584961111571, 0.0034910167478949907, 0.0022389564073859807, 0.002501404672675155, 0.003948041163106401, 0.0030361456924595754, 0.0027367071460462937, 0.0019094232258503132, 0.0029684144482328687, 0.0021846803611430456, 0.006817732178740943, 0.002822797852800002, 0.0038529045810808083, 0.002410455145601796, 0.002797847048471471, 0.0033928804221857846, 0.0029618801348247755, 0.001970383062682533, 0.003855935320625095, 0.003188332293561493, 0.011543651799899777, 0.0017582683797300494, 0.0027760728966471347, 0.0036038431989505724, 0.002422244192428432, 0.0036284942969539895, 0.0028808415218625643, 0.003441312456854932, 0.002060092623909275, 0.0043138395652834215, 0.003232251774929731, 0.0022802690665304367, 0.0072871044039500895, 0.003002279184759915, 0.004424253746950426, 0.002596450229790972, 0.0033898302620870104, 0.0023834674533379234, 0.0030458343534036565, 0.003286214966104028, 0.0027799701531759473, 0.0021997678024994315, 0.004492956586449802, 0.008978624356400088, 0.0027119069653607853, 0.005005472699932976, 0.0019378088308634929, 0.002940215250626122, 0.0024628182959058114, 0.0022330929804093807, 0.008699465887762294, 0.006015789387035806, 0.002789839463452105, 0.003092778814379071, 0.00891748513394049, 0.004217621478312879, 0.004537795008461444, 0.0022987938788077244, 0.0021820551323112132, 0.0030543511193180358, 0.0034710342655624163, 0.0027440892928864095, 0.005113617466225353, 0.0019131983027875453, 0.004020779112170207, 0.0016428232571905812, 0.004697503096544217, 0.0023358511341590987, 0.0022307645641420847, 0.004942095836286155, 0.002112158957015452, 0.002785118093160712, 0.0035059821030743467, 0.0020625506968318975, 0.004373258723854837, 0.010356059098049842, 0.004637927692907721, 0.0033278495459133153, 0.002436109131448548, 0.003977755441204104, 0.0021509791354385075, 0.003624178531023356, 0.0018692693200811922, 0.004068615873074452, 0.0033836808949931087, 0.0033337723485705696, 0.004403026197739258, 0.0014399519212062708, 0.004792116720091229, 0.003203719801997307, 0.001902451935681522, 0.002119872990632548, 0.0036124408880584256, 0.008805688392543802, 0.0034865963683089842, 0.0058226868017921376, 0.002426219327921746, 0.003366187178019551, 0.0034972036588529105, 0.003057967918920276, 0.0025055736614031177, 0.004586314602291196, 0.0037647372905047537, 0.004762212108168534, 0.002565808071985479, 0.003863940657937451, 0.0022587735114812852, 0.004816991576306898, 0.004224285013201944, 0.0024554814297828185, 0.00689894080173081, 0.0033582080627228153, 0.004279834027822513, 0.002432236307896382, 0.0053324320448858865, 0.005915638673053502, 0.0035125523808351286, 0.0025601377786776125, 0.003450120122648724, 0.002721038722971913, 0.0026918083101491767, 0.00215836963635836, 0.0036508012835084667, 0.0035324528409078028, 0.00420018800678227, 0.0025150729952621237, 0.004146597666807268, 0.003100975647524369, 0.004964663939832753, 0.004174986012746906, 0.0039561662379761125, 0.004420808114362886, 0.0059903088676742, 0.005366995622560997, 0.001922670268918579, 0.0037554625499196135, 0.002283083487413386, 0.0027915664541403483, 0.004404378963630828, 0.0038019050943861404, 0.003581045237098144, 0.0022286562859512847, 0.002611027023688266, 0.0018026651970080236, 0.006015581137458233, 0.0014361075152560282, 0.006487112612556847, 0.0021250381381720694, 0.0023343322085123894, 0.017530413199853004, 0.00168384623089968, 0.0031925311321685467, 0.004461009797057952, 0.0025368285619151113, 0.0023425956821915865, 0.0037005787908592214, 0.0021987125806796955, 0.002666577698273113, 0.005440982332777302, 0.005846211455085784, 0.003709128254623486, 0.003214597288429287, 0.00430220677258877, 0.0023061308669725857, 0.0036788917978113423, 0.003574564140938726, 0.00260314684273638, 0.0053851708668596135, 0.0025014790642111126, 0.0015584099336823603, 0.003607222747379206, 0.0018752345115065447, 0.002703677071037427, 0.0028762177642698487, 0.0032931499486459773, 0.003706344828237863, 0.002971922425877828, 0.004326894215131108, 0.002374475414150483, 0.004033002246510325, 0.003112630185991603, 0.005074384049135651, 0.0023322883641689602, 0.001732329028533033, 0.005251392897968566, 0.005022868848507623, 0.006995044525577013, 0.004754706624976046, 0.0028439751035529274, 0.0027938675365901102, 0.008490618670418316, 0.0025786108820649795, 0.004348418108564638, 0.0022742803929688476, 0.004177487313456069, 0.002856000590254349, 0.0032742570463903985, 0.0029602935724597065, 0.0028307604783365773, 0.004422279809412725, 0.0015793093635889884, 0.0018135832150568427, 0.006564093417572946, 0.002149190382599705, 0.0020109621308089277, 0.007358368959471867, 0.003585284411387526, 0.002559524459501283, 0.0030550964288208393, 0.004634150924179537, 0.0050644017085543684, 0.0046826989120033235, 0.0020123284940665137, 0.006540894205233421, 0.0024067484968917164, 0.004668911208876152, 0.002434959688540245, 0.004049178496598456, 0.00291279593456304, 0.0026834858993399617, 0.003790866444613637, 0.0026793496175283225, 0.0021568141658810896, 0.007048852992414319, 0.005254223699684966, 0.005400859580059058, 0.005849569168595741, 0.0015881050516248327, 0.004331471009465519, 0.001647170874919814, 0.00526456591790574, 0.003344672763954794, 0.0033739999528045266, 0.006032172716844109, 0.0023409259545247828, 0.0034807767645353865, 0.003082705209687886, 0.003203963437490425, 0.006365553711418684, 0.0022974653160874195, 0.003150442017910097, 0.003782586246693293, 0.001963174283649845, 0.002433785422328144, 0.0025253365736070013, 0.0037876776063954848, 0.0032756958126284007, 0.0024592149735736795, 0.009418882703709552, 0.0021866541247663866, 0.00409677242152164, 0.002338639576512672, 0.002541252225348864, 0.004293710948363505, 0.0011545283606142105, 0.0028329584127302536, 0.0022503153114447868, 0.0020477446810996543, 0.0029630080907058305, 0.00829002892109519, 0.0027777007572082697, 0.004170013242705295, 0.004141356405143898, 0.002056069425579875, 0.0015921015334740337, 0.002297807424438508, 0.008346905195571097, 0.0021783769902330346, 0.004943134539928755, 0.002008952148579786, 0.0032625702131579156, 0.0027905380659796, 0.0023501385034080005, 0.0015698379283788407, 0.0027746074618042933, 0.003179594714946878, 0.003406390991742941, 0.00341755659174403, 0.0035772902982298066, 0.0023203163586081785, 0.002901468419116516, 0.0027866093446631706, 0.002340261888091679, 0.003633631898036242, 0.002450323419446068, 0.005959440091020349, 0.00229036178781163, 0.0034279093274002166, 0.0042679463645578, 0.002637458126297219, 0.0025680975983915356, 0.0020088321748588365, 0.005749065969621691, 0.0014782778211603737, 0.007523536001898101, 0.0034873049193548554, 0.004680556239200208, 0.0036167592570229127, 0.0028633419965987525, 0.003620522539504507, 0.0034352291438281514, 0.0055201659912918494, 0.0037752241552555764, 0.002361717785802759, 0.0028991278798344, 0.005825065728733126, 0.005331246799373829, 0.004195944668445976, 0.003161980397730748, 0.0027871748935907265, 0.0024263710031585894, 0.006540666487598473, 0.003416196776391443, 0.0027643698321915366, 0.003683663786553929, 0.004443280662984576, 0.002166249530835948, 0.0026295684798986717, 0.006400541759743311, 0.0023720016186439302, 0.0029106449650345353, 0.003053128469056479, 0.007174709247078252, 0.0030735010637874725, 0.003822576117458868, 0.002942282630413098, 0.002001876087984659, 0.0027528163911620133, 0.0014751161321280783, 0.0030192980951632828, 0.002382680909094712, 0.0016083273334755027, 0.0024243990675012336, 0.005560106398250688, 0.004259168680099405, 0.003032874498850895, 0.002084435753103096, 0.0030630520570639973, 0.0020867981075088507, 0.0028235847292250476, 0.004935896796058588, 0.004158247697453878, 0.002840742748362238, 0.0031190453202206755, 0.00525206365200425, 0.003535366921271644, 0.001982728942221559, 0.003526691570852649, 0.002194386348171412, 0.0027123246002178523, 0.005146303188232246, 0.003372227895954359, 0.0022379145869692715, 0.002992301360992639, 0.0034550413162626236, 0.0018350371621779315, 0.0029070214781218916, 0.0018478039979470617, 0.006766648151923625, 0.002189350555403622, 0.007597818277516542, 0.004848152862928681, 0.003004034580826722, 0.0026176700335024576, 0.003035887346644655, 0.003943595337978673, 0.0018287280217649318, 0.006092206960554479, 0.003834667265893226, 0.002508400211888927, 0.0037098347232842424, 0.0036350867697758547, 0.003947356698878762, 0.0016504240809369155, 0.002585628603288773, 0.0035389110814905587, 0.002108816194808915, 0.007682636857943235, 0.002812829806939616, 0.00206774778502697, 0.002254974028550923, 0.0024486114041771144, 0.0020027694671855847, 0.008237279391741683, 0.003483036885048578, 0.003430012854172751, 0.0029130758411583524, 0.003495412390379702, 0.0031435446092165065, 0.004012024913620592, 0.00217007815427198, 0.0042097865814051325, 0.0022842872063064982, 0.0027760320700323518, 0.00311101777804339, 0.0025404476450298424, 0.005337644576269973, 0.0032897929253934708, 0.002035099870036284, 0.002346686450529021, 0.0032746666564026686, 0.004744239050549222, 0.002390172261940347, 0.003579572021881924, 0.0025315528568860715, 0.003994274728124291, 0.0020731618839326072, 0.002796331003417771, 0.002372489435505724, 0.002697511588635135, 0.0027484912803406422, 0.005201706561249549, 0.0026617793719820966, 0.0019205104810370716, 0.002128442146807187, 0.002267519179794516, 0.007936227260935463, 0.005436942234883238, 0.0024733248447622843, 0.003274275935367816, 0.003645870180745088, 0.001715077993432166, 0.001941830690578982, 0.003928065141844556, 0.002189735978336651, 0.0023770385787893478, 0.008691412795604491, 0.0032748254913341442, 0.0022896316236471715, 0.0017728582373659832, 0.0037157444051260148, 0.0022553541465940427, 0.0027513142278096153, 0.006508922207314284, 0.004102667167776063, 0.00335699734268758, 0.0030718561600032645, 0.002505808079141256, 0.007590748060217069, 0.003646384868167765, 0.003774776454203563, 0.0013146028604394606, 0.003933568551427501, 0.00220262492477471, 0.0033007060352397864, 0.007101593482523633, 0.004403313408727589, 0.002444220921000331, 0.007200914731067799, 0.001889040986563783, 0.002286449932352835, 0.003571759006869745, 0.0038982510699870298, 0.0036366048823614724, 0.004676903825805833, 0.0025320894096084582, 0.0020223259833879346, 0.005907450615075268, 0.004339185549096047, 0.003610143543203378, 0.005237212396492542, 0.002327919603888169, 0.005637063005144102, 0.0030890830529550833, 0.0028724469209892877, 0.00210749314071965, 0.003310624528592145, 0.0029320823073348858, 0.0024623806590997367, 0.003176340327192567, 0.0018297810995010079, 0.005483462286863218, 0.003269648531659624, 0.003727355309088875, 0.0030182768484467667, 0.004209764007461697, 0.0028219585676216305, 0.002648868048473891, 0.005485732579058689, 0.0022579131936718627, 0.0022615444141028227, 0.002796242271097497, 0.004440555981896253, 0.004000449574634525, 0.007437831065355925, 0.0029112801176266224, 0.0027249408877622334, 0.002654829037763857, 0.002969952680659441, 0.002958320826478243, 0.0051331339973934905, 0.0029399729253310088, 0.002499042634526696, 0.0023362541335446908, 0.0028899916730894693, 0.0014629703967323107, 0.0027073387034519314, 0.003574147726165788, 0.0038680193910217778, 0.002487282036180458, 0.00164112365701506, 0.009504539973378249, 0.00433585321617075, 0.007501776516410723, 0.006966545928500005, 0.0022191336129317825, 0.005920450138969963, 0.003314971736432954, 0.003247276753486802, 0.0034489289887497444, 0.002486322867891533, 0.0026895715048437475, 0.004032460515413464, 0.007583054223389276, 0.0021996932631570105, 0.003149782220874424, 0.0034402190906878778, 0.0040642929819825185, 0.0019056129332166174, 0.003168157156557183, 0.001867923828510849, 0.002579670201855767, 0.0031799238537486307, 0.0029164768054070742, 0.0017659509108519076, 0.001726432579411202, 0.0019033844092393247, 0.00293107178339113, 0.005055726553350159, 0.010579596084710926, 0.002166101902505094, 0.0044747131985211925, 0.002531895779048647, 0.002185475880518422, 0.0023505154432560023, 0.0033980511070956392, 0.002517212935851683, 0.002451640725653371, 0.0027754487329416455, 0.0034756171380825583, 0.0028500198180513433, 0.0027377826151346657, 0.0022390916165207974, 0.0023228317409281943, 0.004509768582001455, 0.004684662664862756, 0.002774035216012139, 0.0016587698958736821, 0.0022635762837910182, 0.003519615777090121, 0.0022118495280465493, 0.005593174816168579, 0.00362855455685474, 0.0020644028886753533, 0.004355013929020461, 0.0021672527995551705, 0.0035837502689273354, 0.003941288842180284, 0.0036734248589008504, 0.002921969016153562, 0.0019093947221601206, 0.0038710747177750186, 0.00322707739033671, 0.009170314839369543, 0.0028200690178513074, 0.0024093228433480873, 0.004907689837107712, 0.0036064606608402702, 0.002684600673125352, 0.0022811090450646117, 0.0019952125705592597, 0.004476683748624697, 0.0025390687039492416, 0.003743268240813612, 0.001751736983259106, 0.0024920983612762735, 0.005303081570704997, 0.004798509064257562, 0.0021064577622871014, 0.0023064757229765915, 0.0020295512209928435, 0.0020207342649430815, 0.004282086742010737, 0.001829941374068777, 0.007795240354346723, 0.0033740393757852533, 0.0032579168704101056, 0.0026419091597029497, 0.008448035977797226, 0.0035016282973453355, 0.0026065131512964697, 0.0027295825755036703, 0.0023737601056637836, 0.003540905729358522, 0.006624184654250277, 0.003758576962916657, 0.002919748186023042, 0.002216723612346156, 0.007197184964832215, 0.0031765621040489903, 0.002421237791983831, 0.002562575855993046, 0.005501232219635685, 0.0033250815905691697, 0.002934944971026708, 0.0031616149441340024, 0.0012502889974115995, 0.003575267116996788, 0.0019909249146007543, 0.003537740382098451, 0.0030253429957248215, 0.0028729094713937837, 0.002433736120404864, 0.0038704843885375975, 0.00764873814435887, 0.005671138287726, 0.003213030991558289, 0.001761668436039743, 0.002395138297473459, 0.003486305588898268, 0.0035270308160019934, 0.003134432452621843, 0.006332366734635003, 0.0041345538562720064, 0.0025406994514105604, 0.0022484812453230935, 0.0025690355996175513, 0.003863548510414793, 0.0032777202006535723, 0.0045237461933355285, 0.0017357269596372294, 0.0025809178245806636, 0.005521823164257832, 0.010160105801613112, 0.0026315159066832025, 0.00454262426595417, 0.0017311899043682692, 0.003934507749590016, 0.002358117660866501, 0.003890064977225052, 0.002987051854761089, 0.003927174926156791, 0.004956903951699627, 0.0030671741150906464, 0.002592855659126941, 0.0030890259465534255, 0.0030576727258872023, 0.00357383197157779, 0.0039448587273055585, 0.0029389342809464326, 0.003132816219910842, 0.0026893322254812634, 0.0042424580161233355, 0.0028086238561342222, 0.002625471403944277, 0.0043663336810937925, 0.003592451663239809, 0.006559857626632916, 0.0027230038797218053, 0.0032001270936782506, 0.00526319730613513, 0.002494038604685824, 0.0031367364654472083, 0.0019398498102603118, 0.002330515710399546, 0.003127915300225852, 0.0059668939265296855, 0.0023153705335817, 0.0037231157326960444, 0.0038036748757496568, 0.0023765293997175443, 0.0044336586431273925, 0.0036085473497513994, 0.0024630505960342173, 0.0025974072933184897, 0.005999901394376542, 0.006661616115874088, 0.005369809099434045, 0.0018111353500086156, 0.002068059559057537, 0.003451440458946737, 0.0025819868084327267, 0.003472053009965738, 0.0023622269096288044, 0.0034649122526414313, 0.004810229189353336, 0.0042957130122222905, 0.0038887539614159946, 0.003911417970530973, 0.002434202544917039, 0.002282090271710161, 0.0039744302742167675, 0.002852576665455753, 0.001356278041799913, 0.00377728037246092, 0.002195683971540225, 0.0019306479035783256, 0.006998958171113727, 0.003419056894591886, 0.002644005974693384, 0.007381890790110974, 0.002272487640635655, 0.0037406634635438613, 0.0028643007245212648, 0.0030378690080432465, 0.0028079270964890815, 0.0032906375976527154, 0.002598987779932172, 0.0035868174417005307, 0.006274191292058173, 0.002972790915748794, 0.0031506840580661118, 0.003649838443560626, 0.0017367823347645567, 0.004344577518042458, 0.004773617322267053, 0.0037205635811700085, 0.0033189200684841415, 0.0018286566743514743, 0.0030946436549246377, 0.00453667444213297, 0.0022653681814685384, 0.002283867879027359, 0.002203840238962736, 0.01311702863140742, 0.0042570777967148934, 0.0024070174994917145, 0.002090548740509151, 0.004057801285616908, 0.0020115048713062796, 0.0018666319107165299, 0.003807371707928906, 0.0024266567296891144, 0.0019880959503733742, 0.0034608511550602273, 0.0026636864680958878, 0.002816618701850436, 0.003306170071759395, 0.002380187795921171, 0.004185271002458425, 0.0027454834964427363, 0.002923214545200591, 0.003173601318092038, 0.00446697453007793, 0.002092415908941749, 0.004551953107138433, 0.008299114132565356, 0.0054538739202156915, 0.001931433195596605, 0.0020629235875066717, 0.0036471642489179605, 0.005178879451324249, 0.0019698289097761653, 0.0030244859089519215, 0.0026536216824235167, 0.002664388430871051, 0.0031637134127769024, 0.008719475918173679, 0.0036691729068928647, 0.004794250201741715, 0.004496926057146954, 0.0034001791856985595, 0.003070088723958808, 0.0020465442648692775, 0.0024572741939714957, 0.0076262936121542875, 0.006460287366679156, 0.005583532776500523, 0.0020092985682553482, 0.007726636439244346, 0.004366562300374118, 0.002193615823262647, 0.0033907627173441605, 0.006289855190907648, 0.0043127531300573615, 0.0061794156992499155, 0.0031001344140865815, 0.0021703640742198782, 0.002102521597961196, 0.003847028825110324, 0.004125019019119062, 0.0027306719793274395, 0.0020138680851204205, 0.003823089232360727, 0.001201051482601144, 0.002769262910054913, 0.002695605536304867, 0.004985711609704057, 0.0033802538739514964, 0.005145820342630027, 0.004531197451143833, 0.0015028999572031837, 0.0036083312255074445, 0.0025524124295046224, 0.001979407307759441, 0.005427711394104208, 0.005158565614873539, 0.0025045466182182586, 0.002774913509930141, 0.0033340848086990367, 0.005172760851584792, 0.004732496155462949, 0.001773877073500653, 0.004806617437910335, 0.0041572319238787885, 0.0035766614078451024, 0.0028073750765211718, 0.0024080939135092475, 0.0037119246523579902, 0.0038205231036485313, 0.0032140601842821524, 0.002761958471412012, 0.0035651109416505247, 0.0023558721599087453, 0.0032738111144537422, 0.003948489293577183, 0.0030565810087577307, 0.0022212644678156774, 0.0019141080208475343, 0.0021939503642045364, 0.0046059859709679345, 0.0019183486699730027, 0.007068410021325339, 0.003486981131840366, 0.0037525749608668274, 0.0026601072244679053, 0.0028543860031837445, 0.003866213467743477, 0.0016150023744473836, 0.0037577144279688896, 0.0027590643029340558, 0.0034499541624721645, 0.0032283909488879485, 0.004607774937294376, 0.0016715897632119062, 0.005670830373632951, 0.003268192008216924, 0.0035887994724787694, 0.0026686886838410313, 0.0037893787489048174, 0.0036080292220796555, 0.003309689690455993, 0.004646856145524203, 0.0063522686672641505, 0.0026928558199192875, 0.002307477681119048, 0.005404184222781343, 0.0023093790956885706, 0.0019452572055014684, 0.0016718004326802816, 0.004364734760571024, 0.003321907143513185, 0.0026683735411260406, 0.0038555426236998383, 0.0031255789484644324, 0.0018805723362498444, 0.00326585610776695, 0.0029168421163491267, 0.0031218248103416545, 0.002152112456069934, 0.005590926057547727, 0.003221531530126164, 0.0024996310226354365, 0.002224804072443148, 0.0018940925591378489, 0.012501039863372213, 0.002917637296921285, 0.003020232917209937, 0.01089140671673237, 0.003296934586627247, 0.0027379387103308945, 0.0024341796194001083, 0.001425179602061182, 0.0037631090385339813, 0.002856812756423793, 0.0039289649493635505, 0.003232649392021631, 0.003986988387343808, 0.0029135028215752207, 0.0020963825997898445, 0.003246545821149823, 0.002828361688084802, 0.0034238046783789554, 0.005254004852981023, 0.003625204149274456, 0.00782786329832068, 0.006950601903727487, 0.0021698736611871407, 0.004218259059852408, 0.0028273138878829084, 0.0028565369322467865, 0.002696863523582951, 0.0029853952723769704, 0.0034573140978961005, 0.0027074757843262285, 0.0026361517855961946, 0.008423055917898258, 0.004385409446394753, 0.012156676994670521, 0.0030390307660315427, 0.0034061221451910416, 0.002134007097794936, 0.003902592488237063, 0.003052286285883634, 0.0042143001392081466, 0.0020595862366515278, 0.004864306301527587, 0.0018497427586960098, 0.0042767160427527266, 0.00269266741462108, 0.0023686789830004063, 0.0030678586708011986, 0.004484397358341388, 0.002041215328100415, 0.0029627511843676236, 0.0024407646869053436, 0.0016991511723717003, 0.003970227163222996, 0.0018992240815689071, 0.00564837451138203, 0.0022028744667384166, 0.002538432034457135, 0.002402669524167212, 0.003259176743282217, 0.00401006987554273, 0.010148521491362982, 0.0034428050383350723, 0.0017333293715121874, 0.0028271980799232372, 0.0028054208444286207, 0.004509841807341597, 0.0016382097998455755, 0.016755162821527052, 0.0023142077724833884, 0.0024529388042940753, 0.0034375503840262398, 0.003392530103241484, 0.0032365834710437595, 0.0020681119442231056, 0.0022914386899621757, 0.0059445777961587495, 0.004148118397654247, 0.003889482048431263, 0.001544913949472174, 0.0024374178281292144, 0.0035909831476896347, 0.0023575123994712616, 0.004502238546720912, 0.0027054290532961167, 0.0034930398537714796, 0.0035500866772764776, 0.0022213781291713424, 0.0029920770721190283, 0.008045300475329014, 0.005140898691535503, 0.003125416007118352, 0.00510762485513798, 0.004449630218703533, 0.002218718813791488, 0.002370068433525395, 0.0023776561975348337, 0.001817845384063489, 0.00449020094330518, 0.0020804923073192744, 0.0022924909909290982, 0.008493855688723488, 0.00323968623518476, 0.0024523492532755016, 0.005823865365823304, 0.004053505975723402, 0.0016383027026800837, 0.0019141884770380898, 0.0056517682641880765, 0.008716442923993989, 0.001759550166905865, 0.0021362396079734757, 0.004096666910648616, 0.0027827922878076146, 0.002984538821902867, 0.0029632079930619784, 0.00223817591292814, 0.009288721042512509, 0.0027633284151681874, 0.0022310922927134954, 0.00463981864979729, 0.0037102948650861957, 0.00486314154276383, 0.0025981835777071157, 0.001775463432121523, 0.0053944248658741815, 0.002986759610776823, 0.003667844598457876, 0.0016904949673914721, 0.001910828321774468, 0.002987130408222085, 0.004074049040024068, 0.005554724633748386, 0.0037379838950387856, 0.003642843626677471, 0.0022576048995837893, 0.004210244238511877, 0.003093177384725137, 0.0013728014466989837, 0.004188715302258404, 0.005004920678302871, 0.0026926789699968762, 0.0029385685978932747, 0.005025964020205164, 0.0023280227905360254, 0.0026753698118517273, 0.003877570385234215, 0.0019463033142647617, 0.0030889927871951576, 0.0015936949041666308, 0.004631348836455607, 0.006513582327912661, 0.002597825303202133, 0.0022332241197954355, 0.006188165647422265, 0.0029570866415785726, 0.0038235188327139244, 0.0017869750930962092, 0.003188435247338515, 0.006013050518368829, 0.002667618275050982, 0.0015100370281958594, 0.0039519214913170545, 0.0023713877073699642, 0.0025436586955034516, 0.003284094689795081, 0.003504011981854311, 0.0016832992175012634, 0.0028658655354623147, 0.0016888702902563314, 0.0032669211897295965, 0.003129573291043554, 0.003610851954866175, 0.002590817344168785, 0.00347209175479758, 0.002182573941578388, 0.004181443210577134, 0.0021790074730562844, 0.0038338460948857387, 0.009022132569813327, 0.0029839491143404057, 0.0018224932626908612, 0.004405966127747437, 0.007251321596707254, 0.004508914083524743, 0.0018455169743453663, 0.002392186489449298, 0.0018808249561438836, 0.0024598594837577227, 0.0028694351067559565, 0.006030540515118898, 0.0020247493831160907, 0.0033974253808545683, 0.0016330120243348886, 0.0041922727609631, 0.004007616257178149, 0.0033076893866373297, 0.003929928502737139, 0.003099651231483957, 0.002815313239409632, 0.0034366261048424025, 0.0060833642427009105, 0.00739653298752304, 0.0024283768263311852, 0.0020687543676375093, 0.004036996367915563, 0.002009705509281804, 0.002095844366384969, 0.0019729595006867284, 0.005298946053174054, 0.0024775645761139485, 0.0034273139845027666, 0.003527469321538005, 0.003124295349286887, 0.0021367489223368913, 0.0022431350133757175, 0.0029425054837971137, 0.004491998011086346, 0.0037508760684027294, 0.002583357920229511, 0.004332006400717669, 0.002321307904199216, 0.003527880055249788, 0.002688445047987395, 0.0016517418387688577, 0.005992096419055638, 0.002665961530814274, 0.0028571451173683435, 0.004087539228922915, 0.0035201452165395373, 0.0017931244533158901, 0.0022295578750998633, 0.0024514892634719563, 0.003032309362796418, 0.003333837611131876, 0.005235767963328039, 0.006344575697479824, 0.003202265891216711, 0.002954272453473922, 0.003287728153289808, 0.002624841120535132, 0.003070709823170778, 0.0030709679029184444, 0.0021748612093850086, 0.0086974711162591, 0.003635587562040553, 0.0021650684425445635, 0.0027633633658105347, 0.0025453692790769933, 0.004094880336667131, 0.003492482812273224, 0.002809686338247098, 0.002346038631155721, 0.0050587178461131525, 0.0021606965171734266, 0.002411132636449076, 0.0024373279670280553, 0.0035029604600947638, 0.0035442927652376255, 0.0013804207007843611, 0.010259413345411663, 0.003194173994654077, 0.004651847361967255, 0.002481612225042186, 0.0028633278534725866, 0.0016367976821729299, 0.004500535026850076, 0.0018078566605634339, 0.0037771168173873783, 0.0016494496423039525, 0.002442327169743921, 0.0016183633457694212, 0.0035242132525080843, 0.003495386206767144, 0.0036247923122290798, 0.0033776934401780006, 0.0032864319556012308, 0.003225088337648836, 0.002366591191082098, 0.004223434020341074, 0.0021271028658131873, 0.0032441162503053676, 0.0029729970165331813, 0.0037212502784601973, 0.0023979111766624767, 0.0024119547853584194, 0.007043345337987589, 0.0018066988504372087, 0.002903305339817781, 0.0025247381572254123, 0.0037705213749851204, 0.002991753191521023, 0.0030391123706208995, 0.002118192871766602, 0.0021945158901530196, 0.002621211322107096, 0.0021875640788449843, 0.002855536442920772, 0.0025985775645020652, 0.003141940642421999, 0.004288605747429408, 0.0031279544843110657, 0.0034111406839384796, 0.002424703294178608, 0.0051514212441179565, 0.002207158748795277, 0.0024795598933107835, 0.00505141858055257, 0.002844735665462383, 0.001314368160649554, 0.007547508036194392, 0.0022132511963013843, 0.00415327148288542, 0.0033894847881573904, 0.002513383566719681, 0.004254422527194903, 0.010202441930177516, 0.00590277288225571, 0.0022601150815538497, 0.001701944678039404, 0.0020726213394870402, 0.0037659957163554006, 0.0035576972961402324, 0.0031993116111488514, 0.011954581768134737, 0.0024200218303107074, 0.0027083924267705087, 0.002579392524021582, 0.007692728178983678, 0.006011955905578539, 0.004499178264877243, 0.0032854633880360024, 0.002058855963833961, 0.003405769446295966, 0.006670148426270094, 0.002854064671374632, 0.0028799061988576003, 0.004573824355068914, 0.0036856762687411384, 0.0029693997719877794, 0.0026141553617660576, 0.0029307222137523827, 0.0034887762955792554, 0.0034878862968932773, 0.002636570869178872, 0.002273573216402452, 0.002254845564156262, 0.004082630647442201, 0.007144536580123088, 0.0035217022605320823, 0.004483363336224102, 0.0043158090269736545, 0.004351575224932479, 0.0017633597830099313, 0.0035158168089654274, 0.0034266479083841597, 0.0022119883805600806, 0.0039098658037208705, 0.0018115961465633439, 0.005197610929120838, 0.003208399204184635, 0.005798586260404736, 0.002492942258194857, 0.002074095600332911, 0.004500975219800178, 0.004006985516780449, 0.0022200576723734877, 0.003879316898328912, 0.0021261022145020723, 0.0048154051963863855, 0.0036506113516393884, 0.005790642648709831, 0.0022582331390653128, 0.004084124811813002, 0.0028137263868186118, 0.003515468432680395, 0.005441411060183784, 0.0025608381915035233, 0.004898986299130382, 0.0025155426590178754, 0.0031244683187695334, 0.003248973655583689, 0.0027515395927863876, 0.0027943723611997973, 0.0025405912421907163, 0.003370648213001139, 0.003995034513722403, 0.0046876822364601825, 0.007439805566756612, 0.0022681433844363506, 0.0033518237109438354, 0.0031228843722043266, 0.005844250619372127, 0.0036815829702515923, 0.004106246064173967, 0.003389426403211413, 0.0034658071964321774, 0.002711511811771937, 0.0030644035100988965, 0.003322514010879753, 0.0014879466639300125, 0.002857108847340751, 0.003911560730740207, 0.006056050196896144, 0.004049840364138422, 0.002699195345070232]
tlb_arr=[555.2833589351646, 8939.142295494765, 8516.124775613524, 2366.6198787547046, 6514.2742815535785, 503890.46480871114, 768.6649221969946, 9437.963579170466, 3754713.7319445065, 546.4028769462019, 350.4264984988278, 395.6597537336305, 3556.17077186637, 17263711.999713622, 7908.008746486162, 160579.57046823195, 4761.398585043984, 2997.1174134585144, 41795.06669551583, 34581.141716432394, 17536.81400519875, 2818.427839740819, 49109.482334312204, 8982.672388945886, 428.6985064194103, 2749.8434986422185, 3568.229291021363, 5598.362461950232, 1561.883858714525, 931.4673378678883, 1672.7708803215562, 3239.074473415786, 37.413255559726295, 8.150567702999671, 1306.4663298012158, 6.552060650653127, 6.414075236070455, 6.07378534204496, 121.31252681772689, 6.9629698093026775, 6.020745620128368, 6.961816394060227, 6.020617001700867, 5.997952374440056, 5.936329046228681, 5.9204933317705075, 5.928288428722107, 5.8813995614825085, 5.853146029207297, 5.839020443611164, 5.82305748247338, 5.8099070158264485, 5.7973704315539605, 5.781873512392942, 5.764474248916359, 5.752646293769444, 5.738984436217957, 5.724944381522219, 5.712043461267476, 5.699161013666954, 5.694205628365333, 735.0333376977334, 154350.88144153723, 232.56238072981986, 5.851455051887985, 5.820807880955702, 5.681127442210792, 5.791585712099627, 5.6467597405871555, 5.6320695345655984, 5.622762675841526, 5.614735595314942, 5.595487530963473, 5.5861711494476545, 5.563396449688037, 5.532536635961952, 5.50081390668984, 5.472570090310394, 5.440848459297595, 5.418985219268775, 5.395925048927562, 5.3797401393005275, 5.37340603044697, 5.351179827822182, 5.342009648210029, 5.340245341323962, 5.326708894980801, 5.336221323334908, 5.3478615884764285, 5.322076820788761, 5.303320348113942, 5.3025079649734135, 5.295055433259029, 5.287005404866963, 5.27436637445032, 5.292386853411992, 5.280032670151227, 5.323260170054467, 5.269572965789765, 5.2599754607301294, 5.252276600944073, 5.2555521011415705, 5.24328766091225, 5.245190990065091, 5.233875656514193, 5.231784486078393, 5.232974962315718, 5.22327224567886, 5.231982329523882, 5.221420464521692, 5.225110379242574, 5.211456606790284, 5.211252352474959, 5.2072861019731915, 5.22109385703488, 5.202158553046648, 5.208548429608657, 5.206611945360659, 5.196823861931817, 5.192940605801224, 5.205431527838003, 5.186537763259016, 5.20010400223058, 5.184851436685742, 5.183760510372699, 5.178722266084189, 5.200594818120733, 5.171048932206323, 5.1661435683391135, 5.164822072502195, 5.160744507044393, 5.16112874571869, 5.158087426901162, 5.159698667143924, 5.158909711275106, 5.150666095648909, 5.147350341508898, 5.146397107273428, 5.140060588189216, 5.139528306993595, 5.136685976889711, 5.141577284457353, 5.137773180973325, 5.136396314205892, 5.131163751364947, 5.139765101166791, 5.134100699315019, 5.123432953672237, 5.118564004983186, 5.12144817667607, 5.115115847087564, 5.1196779786146935, 5.116855365173554, 5.108497756851823, 5.119958011794759, 5.112542089285803, 5.108977441829745, 5.125649473893232, 5.104963054349292, 5.099281864374765, 5.097895685485749, 5.10903042081072, 5.100335234474899, 5.096065480375116, 5.091506293709844, 5.093790493652319, 5.091996790048875, 5.08749361523002, 5.082600175643401, 5.080870038040503, 5.082186505810353, 5.083055460051592, 5.076134814406163, 5.102634881689655, 5.0735225569214215, 5.073739451189019, 5.069507088860835, 5.08568205678783, 5.070052499642615, 5.075677498935923, 5.069529219328608, 5.066307815246704, 5.059324682323041, 5.070541829406369, 5.053517533344937, 5.059775045678916, 5.053786857063375, 5.058984603960122, 5.053838984060881, 5.050908188129343, 5.045597972299136, 5.0484867278733345, 5.0474311233726485, 5.046320351215196, 5.047050750253891, 5.042448788596645, 5.037080870668158, 5.036658590385023, 5.03081043061921, 5.03174209836728, 5.026868994046124, 5.013160456689869, 5.013381499317008, 5.014041847223202, 5.013883439165006, 5.005760425289539, 5.005458114795875, 5.008897559368612, 5.00305231885936, 5.00217212847854, 4.9987891230193435, 5.0009654644102435, 4.998734875459432, 4.999737181919275, 4.9986987514685115, 4.996134918805593, 4.988260613242181, 4.997303964064189, 4.993557744118684, 4.993768709617569, 4.988202453018337, 4.988098489451384, 4.994079701125564, 4.983476625514806, 4.996972441684637, 4.982719673652083, 4.9807843727955525, 4.987379620462141, 4.986177085591885, 4.977264621191244, 4.98222812826898, 4.975186491330793, 4.977934929631502, 4.979735256372507, 4.977281862983753, 4.976769623635746, 4.975803530259518, 4.972034303136281, 4.966241282729359, 4.969745474751789, 4.964149590683865, 4.965637269660498, 4.966403983892711, 4.966598595457246, 4.973496541442161, 4.966067501792639, 4.96315149296347, 4.966991378847251, 4.965376180195808, 4.968706153096594, 4.967118901528723, 4.968115520149737, 4.963225130154971, 4.96864386716471, 4.961567396615964, 4.963040730434477, 4.957804517607761, 4.955520882770186, 4.957760633220891, 4.953643939336, 4.955681121462211, 4.951776662432922, 4.951031144450303, 4.952000456072588, 4.957372835508922, 4.94588904462483, 4.957690265576263, 4.945539927869829, 4.953841783063053, 4.944701447782658, 4.941136404598274, 4.940285865565925, 4.951292063043838, 4.9415625634739655, 4.939613035577453, 4.937475849905561, 4.935885077858007, 4.948059025500513, 4.933695765181012, 4.941301937761672, 4.933723436771393, 4.933341464673044, 4.933494547827862, 4.935117164681554, 4.935289168755594, 4.920688881152664, 4.907821072619892, 4.900396693402546, 4.884892771152226, 4.880611336840087, 4.873148789728733, 4.869145595096777, 4.870905300789753, 4.864462048873622, 4.864664247935835, 4.86181217824983, 4.860496174569908, 4.852604710743138, 4.8590527602843, 4.848827302938061, 4.849151101533684, 4.847916690263274, 4.849420371097001, 4.8444430635345315, 4.843954316995399, 4.84257924168478, 4.84115181361383, 4.839598957848521, 4.839508290669306, 4.839004509999757, 4.8370978815309, 4.836752217676866, 4.834508150227093, 4.834066710277081, 4.8389858100303, 4.830373231192188, 4.829928816165454, 4.827738365266646, 4.824577596960856, 4.828967292337149, 4.825297376088129, 4.822554332846498, 4.829271412355735, 4.825773190018589, 4.822210891600883, 4.824562306263939, 4.822236666385556, 4.818035701670995, 4.813268071933196, 4.805057894340456, 4.7973912247690365, 4.790473267958369, 4.781985301935967, 4.782143604525652, 4.773835368687616, 4.770018817622502, 4.768345213647429, 4.760508898052507, 4.75657244492225, 4.7501181820810015, 4.753678901364785, 4.747780415456321, 4.744575878740949, 4.738694136527693, 4.738942435922968, 4.7369979805382085, 4.734884094605368, 4.732578313092665, 4.727565297298612, 4.730476166191609, 4.7281874132870225, 4.728219024184611, 4.726895040116152, 4.727760121344989, 4.724031135653155, 4.722406599431116, 4.725601133123522, 4.724683141847721, 4.713365133844055, 4.715859172721723, 4.718448690102113, 4.7120849381859795, 4.7165102458311, 4.713160186506351, 4.709175848078937, 4.708673986693698, 4.704983471539725, 4.7059657308277725, 4.706671128542204, 4.705359832989539, 4.7068673222730455, 4.705497185797112, 4.701674909044772, 4.698898279127495, 4.7022262001463595, 4.697113823313773, 4.692366044864848, 4.693993574000116, 4.692644364593081, 4.69502550015657, 4.693242276485601, 4.69316815795578, 4.688672520804397, 4.688198942978403, 4.686381077246004, 4.678830050604704, 4.6791860628332165, 4.680753360742022, 4.6747324830887695, 4.678173762011919, 4.673280275821229, 4.677519939939233, 4.673466702478764, 4.667579805070857, 4.663988349006977, 4.662981535994058, 4.6607618958119215, 4.659732408546659, 4.659209308017682, 4.658860155585615, 4.6562424297182, 4.648382651706397, 4.64974866688358, 4.657111182114155, 4.644433792385272, 4.641229063666085, 4.64430766194885, 4.640443027171342, 4.641055662351085, 4.6378227288609555, 4.635228793636721, 4.640841895828743, 4.636552591502787, 4.635314855928522, 4.638051446310501, 4.634910484194729, 4.631759394586457, 4.632680976159209, 4.632304735665828, 4.627317919253771, 4.628423502298453, 4.6206213719626374, 4.623983231354338, 4.618690904290353, 4.618416134846711, 4.614051973056989, 4.61565119208378, 4.620267453390897, 4.6150592339041205, 4.611059435998377, 4.610803045865284, 4.607433198900216, 4.607493203176475, 4.605533834292212, 4.602052319633196, 4.600018547044615, 4.598728662148366, 4.608790230147066, 4.600158915936459, 4.60110618909659, 4.603318585935353, 4.596746326918195, 4.5948834376958985, 4.597285855132586, 4.59528907518057, 4.5980128197441195, 4.59233351266491, 4.587992876728784, 4.591484619571587, 5.577708443647141, 4.5912966496708005, 4.583922607087418, 4.5898911594695075, 4.581410335422792, 4.584174329151147, 4.582414417429525, 38.298230813837826, 24.14512924295707, 46.01736197134121, 68.20638112497335, 10.627291910354, 83.07639647057908, 150.9191705458495, 11.91561413968294, 5.508645596529798, 5.705574113333572, 4.835217925568985, 6.112743895158445, 8.023577776275419, 97028.03168998848, 98.27366505924581, 18.96588501579058, 19.052126495713942, 14.268673607426582, 18.996019068487243, 338.19691359867744, 23.001060051283577, 304.2677895183616, 16.315988794291663, 300.7211086724942, 39.49895959658841, 6.77182933765707, 10.58532120224122, 5.014618641661577, 4.890933936357707, 6.086619991189076, 26.147191848898935, 5.028456121287441, 5.453938681106015, 898.9731952915996, 14.224914883962436, 4.779596717947259, 5.561994036925304, 10.91514616950063, 4.719789584563312, 4.70261547077398, 4.741297339241377, 60.501731918099736, 4.739895578471807, 4.6696573867362705, 31.16126581751418, 4.644178753689674, 4.636518729104763, 4.628264839457171, 4.6272811697405105, 4.619238681194158, 4.611343515542556, 4.605034378038977, 4.605660827047137, 4.731699881887442, 4.60125409010943, 4.5919760424674525, 4.590774155303916, 4.588603789543283, 4.581855996119724, 4.581590732296865, 4.579937114849619, 4.5812963974057315, 4.582312291271449, 4.580454089242847, 4.569952967742769, 4.5742418351259655, 4.573265832062678, 4.58205078582599, 4.567304620657191, 4.568207282493118, 4.561331375325264, 4.570098197974035, 4.567635434266973, 4.562151612097899, 4.564778473073925, 4.562636265672788, 4.557085354473978, 4.5558027119922695, 4.557668647617079, 4.558739801436696, 4.561836449276643, 4.559416604365865, 4.552650893105216, 4.554864324629482, 4.5518970923960325, 4.5527244573118875, 4.54844999424652, 4.552086326018378, 4.5542263773221245, 4.5469357135962465, 4.548494599707729, 4.552268671422195, 4.5459003498953106, 4.545592020083444, 4.545899903917198, 4.547998797594727, 4.551225515775263, 4.5520843351554445, 4.547672728556697, 4.545228110534561, 4.544954190176567, 4.544407027233993, 4.547133117290623, 4.538844244450712, 4.5460874321158835, 4.5437277740284445, 4.544657604862559, 4.538744520832514, 4.54176260584426, 4.5469012276190455, 4.541371111028509, 4.540950730477108, 4.54080262023617, 4.544758786481702, 4.543726100306719, 4.550519865622585, 4.547769037454272, 4.5401331109899195, 4.5362857006858395, 4.544826151301658, 4.540488440973291, 4.537850255040558, 4.538048901588041, 4.539068260213066, 4.541427140844446, 4.5420092871016156, 4.53991608572716, 4.537367826898537, 4.5382416979156535, 4.5397992756858985, 4.538387319709376, 4.53732882382143, 4.539592641305004, 4.5391721908621685, 4.537152739551003, 4.534625247068609, 4.538137248726612, 4.539649173852035, 4.532540949403683, 4.533971547304529, 4.5352118544819895, 4.544407276190229, 4.539596420875774, 4.534296382248072, 4.534765342555122, 4.535426363578582, 4.536569706442987, 4.534782864513833, 4.533418455636979, 4.537693316285223, 4.536334280175196, 4.532799845604168, 4.530155374577255, 4.534932324881146, 4.535173889893708, 4.53068420254304, 4.532139649688096, 4.532117125225439, 4.5313818309575975, 4.528561749943513, 4.530637960154279, 4.531696850030037, 4.534186619776505, 4.535717041588427, 4.536637946056018, 4.53175248876367, 4.532810487327337, 4.528830301237285, 4.532664181509453, 4.530468690938599, 4.531156625564728, 4.533505979341414, 4.536983553662786, 4.533131210251496, 4.527478455280309, 4.5318847394924955, 4.529643823494326, 4.528684264754767, 4.529534929996307, 4.5307254891917355, 4.536011417065877, 4.529872721144594, 4.529786963234273, 4.531443931798321, 4.533531375522393, 4.527443829931288, 4.526830211565253, 4.527178298859324, 4.528185599110779, 4.531847853666502, 4.528438540149753, 4.533088112808448, 4.5263513305338625, 4.532243172351202, 4.528280007864241, 4.529751270587966, 4.532427200708453, 4.524690354531165, 4.52832603111291, 4.525990646397211, 4.527540300848065, 4.529880741700941, 4.528589340771605, 4.5329015381217905, 4.526010607020636, 4.523711138887505, 4.5289879783324585, 4.528693019415142, 4.529758763262832, 4.526370065829057, 4.52768930131868, 4.525910291732756, 4.534628788266854, 4.529166348595328, 4.528517690015339, 4.531744833474058, 4.526902894454151, 4.528731859792341, 4.530945525333335, 4.535018501551371, 4.526969616363376, 4.532411682843053, 4.530426239918884, 4.53127467227077, 4.529852420907122, 4.525681418764785, 4.531295498126891, 4.530496866821862, 4.540389719889197, 4.533363878142622, 4.531711318325547, 4.52949825062751, 4.529697250378733, 4.527465342109359, 4.53800857631887, 4.533843739171283, 4.534021749217209, 4.530818352017317, 4.529106832335243, 4.527876664295092, 4.534103799716132, 4.531138537834083, 4.531582123914105, 4.530397596422697, 4.535922748314655, 4.534125654294652, 4.533508165416083, 4.5340559719054365, 4.535019789419832, 4.5357063424851045, 4.53000087119257, 4.531785751681015, 4.5314904583590705, 4.528911955970137, 4.527658151733898, 4.534827608641603, 4.52879944621243, 4.537723345401424, 4.528738049105615, 4.528496513207259, 4.535223394636138, 4.530632228316514, 4.5301360820441365, 4.534670452901672, 4.532867218704237, 4.529591108630326, 4.535800329151123, 4.534903388002627, 4.544238987986566, 4.530706044367809, 4.536139051978396, 4.532158050213783, 4.53680023450771, 4.536151782687705, 4.535574773868477, 4.531591184016956, 4.534556384501171, 4.534728423580102, 4.541437171531539, 4.535112630549031, 4.532873712033039, 4.533303888396216, 4.53360031651532, 4.53303972501256, 4.536563337083107, 4.530493106520355, 4.5314916724404455, 4.537888052781302, 4.529152228119143, 4.536331722814798, 4.540126671036631, 4.535825748630393, 4.5423263135422784, 4.530497187586172, 4.541292283215331, 4.542694629942437, 4.539980622364704, 4.53695485186955, 4.54104107405656, 4.533228337006631, 4.535879175323074, 4.532799067320893, 4.536939667648474, 4.536053847312372, 4.536726399318423, 4.537809831754848, 4.535756193883436, 4.537479941621551, 4.538472716866276, 4.536087146558186, 4.539639677574513, 4.540557909416764, 4.537933474399254, 4.5406928604359305, 4.5388445782487175, 4.535588343505666, 4.538116013548985, 4.545256571494267, 4.536927027471493, 4.540337176776495, 4.547526948307633, 4.537307754208227, 4.54086416626664, 4.538124242323272, 4.54339273519832, 4.540459810636284, 4.5381476633123725, 4.53926839941121, 4.545411321860633, 4.5419919801945, 4.545115525888745, 4.538848695212175, 4.542330501789018, 4.546149520195299, 4.542993082283422, 4.542243899381683, 4.54035321236915, 4.543550500285117, 4.547014625423989, 4.541985542562266, 4.5504727513361, 4.54520117190077, 4.549953553470948, 4.5508286389164, 4.546478014895841, 4.544537122000124, 4.549589437760092, 4.5488741501797225, 4.545657751041396, 4.551684530863481, 4.5517280481509435, 4.549241750785919, 4.552266747221883, 4.547666608292086, 4.548637627569454, 4.546286711498096, 4.546823853636486, 4.550364864966394, 4.548000949931174, 4.550608270191907, 4.545627308466318, 4.546454958578254, 4.552778204449714, 4.552142037785189, 4.5537768591285275, 4.551859252880197, 4.554318575604902, 4.553634603142449, 4.550545237365534, 4.555041308079923, 4.557772134723074, 4.555878385758224, 4.554644055204419, 4.554016863760367, 4.556471856248607, 4.556928608057587, 4.56009025025988, 4.55306399931981, 4.556182734770081, 4.562914761341727, 4.5611383805597345, 4.557251964749391, 4.555948964605193, 4.557356470542544, 4.554808205630215, 4.559640010219896, 4.561891160551541, 4.5623304513848115, 4.556353018493477, 4.557256610982276, 4.5621614787869, 4.560234846161331, 4.564665140299245, 4.565209458020057, 4.564116845110609, 4.558898376484185, 4.562179082144949, 4.56424760659571, 4.560689714237052, 4.563546504167044, 4.560419685910549, 4.569792527554117, 4.563347361971654, 4.56652745759863, 4.567528088348224, 4.569200799724129, 4.564682403081401, 4.564855914034153, 4.572241404520339, 4.561144400913708, 4.566086225846786, 4.5664804604059075, 4.566991976810003, 4.563907048080145, 4.566269627486551, 4.563024191379879, 4.5682428726551105, 4.571769400726383, 4.572543483054556, 4.571982192543131, 4.572287387359742, 4.5713280262881675, 4.574446337809958, 4.571262901607142, 4.569196337590403, 4.572303223524132, 4.581377794946722, 4.572417043172534, 4.574193189384308, 4.575662894011167, 4.5749995193054165, 4.572715140497153, 4.575465669569889, 4.573372091055843, 4.5755775313399525, 4.577499505370957, 4.576096918207606, 4.5766193467521985, 4.576332727250184, 4.579035326329005, 4.576878359125054, 4.575297118813785, 4.582355736172523, 4.579153447295134, 4.58444894190729, 4.584306768613379, 4.577750477622014, 4.581227552564944, 4.584215767274097, 4.579355341829886, 4.578206739207783, 4.5790887434378185, 4.585091788982718, 4.589245432423637, 4.589386107464994, 4.588532284753375, 4.58727873244231, 4.585378208761438, 4.585710793535086, 4.591242579135638, 4.597247720020593, 4.589896962526846, 4.586918587593085, 4.58817131678495, 4.58580380046847, 4.589649223719439, 4.58819845877975, 4.594353420554944, 4.5901966562515595, 4.59177900468283, 4.592299242825045, 4.597070793347788, 4.594886108602338, 4.594876536806072, 4.593312770670648, 4.595464193568228, 4.595504289466226, 4.592295303133743, 4.594051421213399, 4.594309123405848, 4.599298169671726, 4.5981479399882295, 4.595274353381083, 4.599380749494619, 4.598741357034649, 4.595533196614041, 4.600161613918692, 4.607368018162293, 4.602282091533542, 4.604934041456809, 4.59799556586198, 4.600603251197257, 4.602553536005866, 4.6017261840510555, 4.59864685363855, 4.606133094096075, 4.603233975976326, 4.604424902811333, 4.608019292312809, 4.605849949014721, 4.604904136629866, 4.607943706211017, 4.60214040002637, 4.609648267179921, 4.612990507859402, 4.610251183884047, 4.610366913498854, 4.608428961650741, 4.606510277203037, 4.607932224649338, 4.613492299740306, 4.6070475641839455, 4.615736954351979, 4.615686335089496, 4.612839799786477, 4.616822069115274, 4.614471263852083, 4.611710758315177, 4.611754071005015, 4.615418925271502, 4.618353227349045, 4.615742989391977, 4.620218730444263, 4.614871945622432, 4.620367357064717, 4.61511244308382, 4.616902795287457, 4.623280216977841, 4.615720744164748, 4.620042027285711, 4.618648350997768, 4.624758151658629, 4.626473102612746, 4.617610573369915, 4.622280790491933, 4.627048301504414, 4.627150790244004, 4.627386200115998, 4.625055754700012, 4.630231454225311, 4.632291412328533, 4.625051059422007, 4.628082528941951, 4.629678033925877, 4.637434433500494, 4.632588952576155, 4.630206610790691, 4.628954957742751, 4.633115607193597, 4.634905366235129, 4.630683897604861, 4.632830518261481, 4.628570751156941, 4.640103378562378, 4.635682873464211, 4.64061825688299, 4.635353989048362, 4.6365680491095445, 4.6325011282166235, 4.640950399272725, 4.645342661768101, 4.6407238259039465, 4.638524085712815, 4.644038688889412, 4.642681018308255, 4.645445946682944, 4.64059586191913, 4.640949083438468, 4.6460230406110075, 4.643173932849285, 4.650386388225825, 4.645113330270439, 4.644430518906126, 4.645182478537601, 4.645785947078945, 4.645722103420928, 4.655298901367635, 4.65307010599926, 4.65291913672746, 4.648073126394936, 4.6496300171768805, 4.651735227339666, 4.654513419555666, 4.651559938484338, 4.648865709894428, 4.651566457003581, 4.654542678104181, 4.655644023835458, 4.667997519374547, 4.659089978397701, 4.656382158868525, 4.661381638804183, 4.665379095961718, 4.655730163841411, 4.658849234450801, 4.665478976512186, 4.657347315754537, 4.656809082235765, 4.658469222416856, 4.6603502025492, 4.659519153101064, 4.665271010395559, 4.667349626932647, 4.664275347183622, 4.662854329561798, 4.664001506660764, 4.674697867844043, 4.6744036928650345, 4.671786870733072, 4.674812138371244, 4.678713808506345, 4.666097269288519, 4.670118594229814, 4.6801860110920135, 4.673320168930042, 4.673619212889432, 4.669421538487074, 4.671848567732498, 4.681503750002743, 4.681274086625112, 4.678047445371101, 4.676713211278743, 4.682287723026506, 4.682197476954217, 4.678870799954193, 4.68193851641525, 4.689677684931915, 4.682832837308816, 4.687049295603131, 4.6790441802213545, 4.684273419870169, 4.693670922822414, 4.683620238329671, 4.681452743336999, 4.691194247941092, 4.691068350690243, 4.691558388357426, 4.692917697259428, 4.69086936165474, 4.694963574472318, 4.701759242143349, 4.694580221543712, 4.700116082226161, 4.695167534824312, 4.695841970161409, 4.692592020693928, 4.693382241143538, 4.700578813471479, 4.703278064957957, 4.70166429287097, 4.6986464187890356, 4.70571239438147, 4.693735899274264, 4.703298993690916, 4.700585800454879, 4.701889644474987, 4.708942973228352, 4.703772343113167, 4.702074070067985, 4.70822353056229, 4.708274424405538, 4.709396782696762, 4.706111280744372, 4.710799277244076, 4.7091374196923494, 4.7100311154069745, 4.71668151447508, 4.713336762707803, 4.719713960103176, 4.7163184803021405, 4.721975899066833, 4.713435604702307, 4.720715520649623, 4.718446598325229, 4.7199113099730505, 4.717189792977473, 4.724867824403641, 4.718194329142195, 4.717797004219757, 4.7217963400019896, 4.724330576853527, 4.724279537232999, 4.7216584775862085, 4.729011068393444, 4.725425836472552, 4.7293442551549365, 4.723968104148243, 4.727893602686345, 4.732259522622858, 4.728707176812182, 4.731320482030453, 4.7330432183044255, 4.734137740999803, 4.733241782471852, 4.735227719562324, 4.731961712821845, 4.733589100283562, 4.736663014070992, 4.743453756516663, 4.737422800504596, 4.739292550329883, 4.7397284092649254, 4.744010552606573, 4.738877322780941, 4.743432831416102, 4.73780778645764, 4.741663166831719, 4.750009675300143, 4.743333565691248, 4.744631661855186, 4.746722665453811, 4.744462512585929, 4.748597084080003, 4.7550251107864545, 4.748986980584698, 4.751108766957328, 4.754459858134732, 4.754066617989746, 4.754346006010612, 4.7539126478282165, 4.753199768369268, 4.760775630930891, 4.761879428939602, 4.760645247234355, 4.763962786884436, 4.7699460329557, 4.761596885682573, 4.758857553351081, 4.769069549093163, 4.763249956761644, 4.765044674625285, 4.765889517422492, 4.762935454643279, 4.762208889663404, 4.766382776649072, 4.770809407780714, 4.770313285158854, 4.764352216810383, 4.768548570110146, 4.768577249038099, 4.774737881100497, 4.7733822925057945, 4.773067356895013, 4.774170779159434, 4.779554460710222, 4.780359331165593, 4.779322754850399, 4.7815125291819855, 4.7819785957496315, 4.781078791138765, 4.786948321882816, 4.779638402383186, 4.784669222732325, 4.783756969515304, 4.7818822463892285, 4.7812060901084585, 4.783603989759293, 4.792976963855273, 4.790132254113596, 4.789784606405481, 4.794074195401775, 4.792085924948129, 4.794480241689901, 4.796338558589143, 4.7979577391402, 4.799014511368965, 4.796603301228204, 4.80500185617917, 4.798223014958385, 4.804968980474229, 4.801594384993722, 4.806052407836905, 4.803859538982537, 4.803667014975844, 4.80281734136707, 4.8047521957794705, 4.803269500447657, 4.811033929681301, 4.8041763355676865, 4.8095006834473715, 4.806050995257549, 4.809257445768363, 4.813519487053435, 4.818860498178859, 4.813206135433524, 4.816047395455046, 4.8135757119369424, 4.816107363685004, 4.818811050791229, 4.818366690588371, 4.818037434824426, 4.821211013273276, 4.822202622430651, 4.826854259903568, 4.828456102330356, 4.821371302700415, 4.8199528472839095, 4.825817125037957, 4.826698072270404, 4.8269216959803085, 4.826493652736458, 4.834115489723855, 4.829803616437784, 4.835302320133364, 4.832959951194207, 4.84014595328828, 4.833739148113258, 4.834139152168025, 4.839091483886015, 4.8385575545723745, 4.833946459007945, 4.840345865954841, 4.841998858577635, 4.837756225449598, 4.847597488600959, 4.844956852437948, 4.843401526742098, 4.846971320054946, 4.836341983660393, 4.851047688209102, 4.851984673467368, 4.847983738618881, 4.852290900202202, 4.848792535748415, 4.852926991485949, 4.854003980751462, 4.853954209695276, 4.862324755649112, 4.851088618987302, 4.857074731991596, 4.856318350605819, 4.856146966654002, 4.854090200072316, 4.856926520542429, 4.8581023476703376, 4.862437738634897, 4.866911207802711, 4.864912714861135, 4.86809442292938, 4.864632146066333, 4.866036011828016, 4.870885293737079, 4.873573281952284, 4.867968479580227, 4.8690974330312375, 4.871234121431509, 4.8692208867111155, 4.8736009621425325, 4.870258344182288, 4.871055778610338, 4.874367939103386, 4.873940462004956, 4.879035674466167, 4.875744440146557, 4.881975941155808, 4.880331617072028, 4.877342939467004, 4.884769279187038, 4.881850739656994, 4.884021756910634, 4.888328761435786, 4.88935270814816, 4.890260442354112, 4.889197640087952, 4.888216051644083, 4.88800616296488, 4.895343288767899, 4.893416723297132, 4.891728342062269, 4.892509251680673, 4.894565190730896, 4.900760967791369, 4.89916148646413, 4.899581109084504, 4.90162077910451, 4.9023475400076055, 4.899214678450077, 4.901854528538688, 4.902952861010363, 4.905867117637498, 4.899615790406062, 4.90822803800386, 4.912937258650615, 4.906982114854269, 4.910645267021815, 4.909627464464795, 4.907595710925255, 4.908866941063161, 4.911540095100362, 4.918487867795868, 4.91371212521615, 4.915478261696229, 4.914229314428652, 4.914930345877181, 4.917943521760784, 4.914646854589885, 4.916401627582422, 4.915029842389202, 4.917457724336307, 4.923553038597627, 4.922455486313552, 4.92655118204253, 4.9238277411414915, 4.926520326049933, 4.9257346953700365, 4.924797421436098, 4.927042871869805, 4.92606153130922, 4.927272646487235, 4.9245895041657715, 4.932765485650561, 4.931490903668166, 4.934462698950446, 4.9334226170283, 4.933118400360395, 4.9344719431666615, 4.934909617802928, 4.939811426720129, 4.935720270821916, 4.93977540690442, 4.939304717162214, 4.938421129558225, 4.941358968778286, 4.942965074717756, 4.944082909593171, 4.9480544330962815, 4.946400966141908, 4.9486561330791226, 4.942457474018534, 4.949007708378402, 4.942438716627775, 4.9496660082493396, 4.949889911238184, 4.955606928429051, 4.945118549325943, 4.947230028907665, 4.949819338784769, 4.951454036880568, 4.952717735932028, 4.950914409532887, 4.952697657706141, 4.952713358338532, 4.957862815878306, 4.955128889713611, 4.952567903055192, 4.9590473004361515, 4.958372739911932, 4.95669790385405, 4.960249876693667, 4.96248478690588, 4.961667457330655, 4.959975387690791, 4.961265268508066, 4.961102610731642, 4.961497100105481, 4.959093913038947, 4.958645836489987, 4.95918503509378, 4.963540620120744, 4.9607501786416135, 4.965371364725719, 4.964307308437841, 4.967921271540646, 4.964229497941377, 4.960259713272988, 4.970379736585329, 4.961454644051712, 4.967520689279608, 4.966282000453971, 4.964989826601114, 4.966968904690696, 4.9724100986842235, 4.964770017330787, 4.967314118451176, 4.969377492452088, 4.971681943125439, 4.968257352427429, 4.966753848889784, 4.968275144247324, 4.972502597857426, 4.966836194146562, 4.970643197426615, 4.972849601130194, 4.974695421302539, 4.969862912171863, 4.968916758883469, 4.970423756090562, 4.97409070325625, 4.969255125377051, 4.970504240531214, 4.974244975621093, 4.968951592212689, 4.968437620312973, 4.973449757845994, 4.968873254306718, 4.969979498509582, 4.97326730385246, 4.974000401643555, 4.975883412175801, 4.97279067839339, 4.975880808033711, 4.9758615527015, 4.9737014513230875, 4.976806297760488, 4.97182478856324, 4.977278451094045, 4.974251234132883, 4.975887126728018, 4.972319385717196, 4.9756198488555325, 4.983404105148872, 4.972387239987143, 4.974156312693522, 4.983234969816062, 4.972617673083304, 4.974556284717136, 4.980421829094498, 4.976830370183909, 4.974433606902637, 4.9782052174644935, 4.981213021449703, 4.9809988761355, 4.976642045380219, 4.978343065253235, 4.976155347906484, 4.981111201703354, 4.981586694232308, 4.977759686639803, 4.979766179069833, 4.98156886485362, 4.983744438926129, 4.985275114245156, 4.98489071607265, 4.982889618336266, 4.981917178300745, 4.98503598897076, 4.987520013840117, 4.98195291595094, 4.982644304085957, 4.984931768340521, 4.985822720690598, 4.986209426499755, 4.987467926542198, 4.981281358901935, 4.985757699612211, 4.9855253453035, 4.985783460021041, 4.986659939368603, 4.988789659039149, 4.988392632444036, 4.988417019467341, 4.986184691583239, 4.987922584158614, 4.986948884073986, 4.989095576875352, 4.984542466608486, 4.992303131764257, 4.986904163985892, 4.989471910414969, 4.990845490754967, 4.989964707486747, 4.992206236623913, 4.994576934698726, 4.9876176397085485, 4.993401598258971, 4.992302052500862, 4.991109959169013, 4.990470366659635, 4.993461248489218, 4.993821361000485, 4.991241116056459, 4.991929893128907, 4.992703288452311, 4.990282103594293, 4.988957124955594, 4.987360463243253, 4.995278196856722, 4.996085248764972, 4.993602047457457, 4.9924118846696395, 4.9936634855227835, 4.9961669283095045, 4.992575934209787, 4.995821921971913, 4.994214110393456, 4.99364568469279, 4.99383171907006, 4.993629222645556, 4.99636293035878, 4.995634356365987, 4.999913149680514, 4.996481231211004, 4.999750339694731, 4.996686002447623, 4.997076261572769, 5.000864827351448, 4.998673633034216, 4.996753063954959, 4.994602199640407, 5.002571747674353, 5.000127762921031, 5.000589323050404, 4.999073295121974, 4.993396918009344, 4.997365343061521, 4.998067263387917, 4.992679524505766, 4.995582333804608, 4.997309779404658, 5.000013853097551, 4.997063484464964, 5.001814476915862, 4.999890101233464, 4.99783959652123, 4.996767053000317, 4.995431470146275, 5.001523166340037, 4.995884916299602, 4.996816374348557, 4.993293374822029, 4.99781848846712, 4.998829128532079, 4.996883360931905, 4.998522011464756, 5.001305744854974, 5.002097139904783, 5.000028431866904, 5.005300898538385, 4.998569077781712, 4.996338794496416, 4.998063229211342, 4.9987794527784075, 5.002998340909675, 5.000909770614891, 4.997737785583579, 5.001199995886846, 4.996809207213597, 4.997549571483672, 4.998081548067159, 4.996271328670701, 5.0001815830828225, 5.003258917998953, 5.003246121038278, 4.997912468748538, 5.002528358293981, 4.999923626020253, 4.997723943512542, 5.002760842009048, 5.004850421140505, 5.002026021363602, 5.004771886554604, 4.996573037382047, 4.99866915414057, 5.00088306586511, 5.001695956163888, 4.998131152851693, 4.998531947009942, 5.00047342781817, 4.995972096078092, 5.0004924975925995, 4.999194179099392, 4.998205476772309, 5.000061040497075, 5.000679003299259, 5.000380118364876, 4.9976329149039795, 5.00266539715645, 5.002403018133003, 4.996488299318233, 5.00142085388201, 4.999924247587011, 5.001478109867519, 5.0005754558873035, 5.001370894590833, 4.996527754479862, 5.000552549728545, 4.999940665095412, 5.001727846480909, 4.9999808875188085, 4.998974427762554, 5.0016196655850305, 4.999854370698783, 4.997674996777784, 5.000852965907833, 4.997709819748121, 4.996718593123659, 5.001484776486082, 5.001264940121819, 4.996366454144713, 5.001532134023761, 5.0050504392078725, 5.002032492737724, 4.999845883568666, 5.002098686218225, 4.997205479023415, 4.993411490904751, 4.996876808991826, 5.003599460864228, 5.002169263375391, 5.000769080280482, 4.9967568652802825, 5.002506887285957, 5.005863711974543, 5.000879556343949, 5.001054776004112, 4.997834147116593, 5.001369957057664, 4.994754512263668, 4.996945406454358, 4.999525813972787, 5.000818178895727, 4.996277115471632, 5.000465315966078, 5.0002603498091815, 4.99809963428195, 4.997594198672433, 4.99948903610297, 5.000522595093436, 4.996562996147849, 5.000762276541231, 4.998943541698848, 4.99801620219517, 4.9999333561790245, 4.998151120449404, 5.000736881793211, 4.997980779626607, 5.0009618216878255, 4.999466254511927, 5.000271645565023, 5.000641331491195, 4.997749801501742, 4.998428890528743, 5.001438273108176, 4.996861376546482, 4.998397485465716, 4.995114979970698, 4.999951660765257, 4.999445661972272, 4.996215840654851, 4.994125830712056, 4.99741862221642, 4.9993436723981315, 4.996780344102434, 4.9981827268432335, 4.998836990351913, 4.996862754227751, 4.999042130911162, 4.998718287033991, 4.996364963730363, 4.997011077644986, 4.996148863545138, 4.9976959839510195, 5.001562757413626, 5.000608620763036, 4.998303974472136, 5.001790685115218, 4.9969166588181935, 4.997001130220312, 4.997418769106468, 4.997438483637131, 4.994568655031236, 4.996227544567161, 4.996002604735163, 4.996275456140703, 4.9942441909014175, 4.996907045911287, 4.997614971174295, 4.992635085027607, 4.996986494972395, 4.994152659416692, 4.995515024837501, 4.994582048395309, 4.994822155909066, 4.996004253803163, 4.995636898558789, 4.995641549704894, 4.991402329732564, 4.992497060650056, 4.9922198090405185, 4.992812125208735, 4.9906716633569035, 4.993406155638905, 4.993025509101921, 4.990321988724078, 4.9946409799791756, 4.992270114943899, 4.9924334907834025, 4.989042875960529, 4.994159138415953, 4.9949205391142435, 4.991067073631425, 4.9944699406581545, 4.996246983700708, 4.998614321802977, 4.993352914309157, 4.994680084813043, 4.993778942955093, 4.995234191476315, 4.9912313810743765, 4.989019787920781, 4.989039766140236, 4.9872118222778425, 4.9891776220086355, 4.992531121815992, 4.99401478712016, 4.99107071612904, 4.9898148667518445, 4.9903447511163765, 4.991842249833463, 4.989957340306421, 4.990834956524572, 4.989184320340226, 4.9923354537500195, 4.986654956293062, 4.987715506581006, 4.990505691885636, 4.987335004950156, 4.988557512864425, 4.990734263473985, 4.99010828080594, 4.989609596619383, 4.990501154205128, 4.989571136542377, 4.989519451184858, 4.98734442805223, 4.9883622044663785, 4.991226210636284, 4.986900683843944, 4.986892906957849, 4.990295256743648, 4.9853234606984635, 4.988093898711357, 4.988142643059833, 4.988211508675257, 4.98728889818925, 4.987256061185279, 4.9882335360377015, 4.9888451343030225, 4.986027525328561, 4.986490769913341, 4.990732629497518, 4.988767572202843, 4.987678243350105, 4.9877375811460976, 4.991268216676964, 4.986545379145589, 4.986814927589595, 4.984660270150462, 4.991061682801798, 4.98608154212382, 4.990066086951099, 4.9830128656761, 4.9861088540536365, 4.988791075514788, 4.98634538899964, 4.985743848253739, 4.984696529369332, 4.986827495180502, 4.984774138987666, 4.986348527876751, 4.986555041491746, 4.984067798993596, 4.98229120729669, 4.984865621999371, 4.9822872621477545, 4.982572278634892, 4.982224012667228, 4.983603777841438, 4.981621408555904, 4.982456513525295, 4.984219985944579, 4.985465300228791, 4.982038500952594, 4.984065846992533, 4.982117734320043, 4.982110537709973, 4.981234138967326, 4.984336112343325, 4.983179642687055, 4.985615660003828, 4.9828613458004325, 4.979744692871329, 4.979138451456189, 4.983960522343496, 4.982857350189258, 4.981665248561261, 4.979654857812177, 4.9817817468062096, 4.980298481870576, 4.986654090124427, 4.9846295928040405, 4.980803497012116, 4.98290419891259, 4.984398516376592, 4.981281256215953, 4.981126525865589, 4.981182832341656, 4.981299514811215, 4.9833272047961845, 4.980113499406374, 4.977474403737638, 4.982018864880376, 4.981426903331984, 4.978124157464239, 4.982499342350049, 4.982636236888093, 4.978402974013548, 4.98312532060752, 4.98012845921712, 4.977441481985812, 4.9782879449224415, 4.979848399691285, 4.977027636762274, 4.979698591550344, 4.979379064988953, 4.98054817459569, 4.976536143716263, 4.981476669125504, 4.982586595164937, 4.977510573407424, 4.975929262568998, 4.976885924589437, 4.976409663775575, 4.976577541062002, 4.975875476810235, 4.978660628905713, 4.975887200531032, 4.975441573062929, 4.975866462289868, 4.975778153317636, 4.97879631544264, 4.9768483931387735, 4.975449012183067, 4.979196029725907, 4.977445841758938, 4.97905499749094, 4.980678703877105, 4.976409154937286, 4.974538664499134, 4.980472695860088, 4.976364655358563, 4.9746907812088015, 4.977697930994259, 4.973583067235731, 4.975860305382423, 4.978485990443355, 4.978831021043952, 4.976189376988875, 4.978170405027194, 4.9793887046512575, 4.977682718907478, 4.973626214546824, 4.973081148522226, 4.975476837451632, 4.978820251941602, 4.973990355288327, 4.97216987427705, 4.974501219977581, 4.971854660184155, 4.9781313241032965, 4.9745611092700015, 4.972631719494993, 4.974372525745549, 4.977403418252029, 4.976844104221787, 4.973444541262053, 4.969919065408573, 4.972802728853628, 4.973822903741416, 4.974493896126641, 4.9746503682504635, 4.975781592438454, 4.977422573894872, 4.974955619166833, 4.973230493112947, 4.974906450036764, 4.972470468835189, 4.972588456930019, 4.970224517069672, 4.975750075219144, 4.972895978018744, 4.974139642201444, 4.971144401206831, 4.972160565673596, 4.969844580301949, 4.976982367164784, 4.971420162967248, 4.970577421185999, 4.972896203961442, 4.977003274026573, 4.973659539489387, 4.975616797335368, 4.974317288964188, 4.970214199561382, 4.9771261516217375, 4.974689167608496, 4.974600178013532, 4.972113898711443, 4.972192166958168, 4.972438632845342, 4.969585083867319, 4.972253183694682, 4.971299183837244, 4.971372688284513, 4.974038619239433, 4.970596465613543, 4.967064980264899, 4.975399856984651, 4.97251097030984, 4.971375865386959, 4.966888492925607, 4.973099625485366, 4.9741252192983785, 4.972532690646238, 4.972072840196841, 4.9714010266497, 4.967587463407623, 4.969297621745791, 4.9719460517545375, 4.970426015459771, 4.970490925793538, 4.969483577377132, 4.967678902473192, 4.970808094307179, 4.974163103282199, 4.968157245600749, 4.968914750749848, 4.970506865096107, 4.971213516466356, 4.966649787911239, 4.968158147914293, 4.970167409668927, 4.970568974540819, 4.971040191075323, 4.970056684037785, 4.970684597264896, 4.967025858717402, 4.96481339478715, 4.968470384575741, 4.967306196962395, 4.968662120360894, 4.968815538335354, 4.970642859468472, 4.970883356615969, 4.968602279306671, 4.96882210395119, 4.965038387164455, 4.965121548576324, 4.965470728402334, 4.970387784689109, 4.970155379311023, 4.967891819582753, 4.969805162487765, 4.968394177049187, 4.966858981990571, 4.968407571185554, 4.965896205104642, 4.969148115368078, 4.966870535315589, 4.964723942642975, 4.967176208760078, 4.968124962029548, 4.966532832958963, 4.969153323590306, 4.967408966461098, 4.966926677930945, 4.970840088335634, 4.967624837774959, 4.964113039378873, 4.965105384294744, 4.973114076822171, 4.967933462724228, 4.9642851932722625, 4.968705283660582, 4.963944215745004, 4.9713035517035244, 4.964836712005045, 4.964880091218925, 4.9643790685953535, 4.967586976820661, 4.968754779047299, 4.968094934395902, 4.966170279491315, 4.9634719689256475, 4.963783007556137, 4.968300671820272, 4.967098829057674, 4.9652460863450445, 4.965653322302136, 4.969736784860702, 4.967100674033789, 4.962708986191628, 4.9672095854859, 4.966264092862611, 4.966541319577007, 4.962719299361373, 4.967914163271056, 4.962131215208083, 4.969705179103814, 4.966603912703798, 4.965353117921806, 4.966124219269559, 4.966555414660026, 4.965694578167727, 4.963774411130562, 4.961953856826922, 4.966896535815897, 4.9621969419027305, 4.966322674434499, 4.961541431573883, 4.961256853735227, 4.961631076016074, 4.965404235752552, 4.96558471861198, 4.961793395344908, 4.964227241161303, 4.963560288506333, 4.961314254447931, 4.9674781688601914, 4.962546101042051, 4.965029921400107, 4.961479333292776, 4.962903159027826, 4.9644282181777815, 4.964211345699377, 4.967079906532557, 4.963060540471465, 4.962563409074834, 4.962804975324139, 4.962753231841456, 4.964827610716484, 4.967263258207827, 4.961181953680462, 4.963226126804186, 4.960340489845783, 4.960776879883853, 4.962815702273203, 4.9590239466179264, 4.967724868696606, 4.960837881034601, 4.96302608012209, 4.963743649537035, 4.960891202893416, 4.958382316625298, 4.9616965845302445, 4.96439348001409, 4.959811156506893, 4.962430111786133, 4.95956164376324, 4.963537859669429, 4.959572417343736, 4.962143634065316, 4.962070125080556, 4.960192801271143, 4.963787366276081, 4.957325007703483, 4.962790404725945, 4.963464948691329, 4.962821734363326, 4.95933012426169, 4.95987325625296, 4.964679629563049, 4.9657210331182124, 4.960514000820434, 4.95974943713779, 4.962451914458954, 4.960746731649936, 4.9597728930593785, 4.961246862688113, 4.962887380002468, 4.957661571517851, 4.959203608255427, 4.957398694767702, 4.958429665194236, 4.958077060586481, 4.960760843240402, 4.957133683785381, 4.9627209613341865, 4.959916334303352, 4.960808029715186, 4.959158668363902, 4.96027417988636, 4.959581352715428, 4.9613310439263545, 4.954565441721938, 4.958346217113179, 4.959802657535013, 4.957498824312675, 4.959981225258212, 4.957626053791438, 4.961787297004649, 4.958213584554047, 4.96065226049535, 4.961100036854633, 4.95876036875338, 4.960888067174844, 4.958955007925325, 4.9560775096187015, 4.959315919082259, 4.963638426729287, 4.956612293516157, 4.96029699359319, 4.9613308494288715, 4.967434957381107, 4.960826541841614, 4.960795975329201, 4.956800506824962, 4.960982017075784, 4.956922907612201, 4.958222157652079, 4.955377402534446, 4.959200121852948, 4.957488046468672, 4.960782154117525, 4.957651838118035, 4.956065292336707, 4.957177541589068, 4.957417446095285, 4.955025788854431, 4.957429955347374, 4.953773392721169, 4.959525192796738, 4.954919456531815, 4.961755551408901, 4.95778864723798, 4.9599173273867505, 4.961604736481209, 4.959469776770532, 4.958808388750531, 4.961264233697358, 4.961816192062505, 4.9559633441348545, 4.956635488872948, 4.954323857747185, 4.9583583594042935, 4.954515363070953, 4.9622012380670935, 4.957815107715413, 4.958438096888033, 4.958246324396997, 4.957697586313732, 4.957619240295637, 4.956359494813822, 4.9564110472854805, 4.958617012065739, 4.96015135148343, 4.960168396269319, 4.959291300352374, 4.955300957154856, 4.957805523239726, 4.956365791638011, 4.956489686595824, 4.959058541692866, 4.955766926223764, 4.957283452061208, 4.961040302988824, 4.953871317378035, 4.953717433458256, 4.960779849770671, 4.955474972216672, 4.955784488046342, 4.954812425869819, 4.955813557542077, 4.955080079805815, 4.955418991702909, 4.953395982481677, 4.9534534094651175, 4.952675234380876, 4.959735679119686, 4.9557820084237125, 4.95698308432166, 4.956775217759333, 4.955358470516102, 4.952294675786548, 4.957089500744669, 4.961575020281924, 4.955396101420153, 4.954858419244652, 4.958010009967928, 4.955547477662057, 4.955663909982471, 4.950046826247229, 4.955577994038778, 4.952481286432851, 4.956397601167623, 4.950798401664338, 4.955302816907409, 4.954422594179753, 4.952839932661723, 4.955753749060316, 4.958105157371777, 4.956870436346536, 4.952320173306553, 4.95405453053664, 4.953938749153087, 4.960688926218529, 4.962953800989715, 4.952378995198323, 4.953418135514169, 4.954029218154302, 4.9548031592421395, 4.952739155717199, 4.953337257062794, 4.952378919838624, 4.956026184483821, 4.9559286022732, 4.9514512660631285, 4.955662868814541, 4.952224620269905, 4.9607917702708955, 4.955250156272674, 4.947184850657591, 4.956426259399652, 4.959672215322132, 4.95216095691808, 4.955127635211841, 4.9537366810822965, 4.953187439463865, 4.953314656441148, 4.952968016644763, 4.954495941634567, 4.952170458535068, 4.9539294511837255, 4.952025826646442, 4.956349104088852, 4.95056585252254, 4.957902766585812, 4.951197996729006, 4.950963601902613, 4.954346658555734, 4.95338656920741, 4.955279866766622, 4.952305582064051, 4.951670100913745, 4.953947841565919, 4.953789820981873, 4.953583669585795, 4.953162714326111, 4.949546610937161, 4.952892032094943, 4.9545495464229115, 4.952037215089091, 4.953505697404046, 4.953404168419402, 4.9547703758896935, 4.953494003742685, 4.9528235864674155, 4.952971352636077, 4.9537548991606934, 4.954425513855629, 4.952408617541606, 4.954092090430968, 4.955701598286731, 4.952565295130842, 4.953679425740997, 4.956602575674628, 4.94870347974169, 4.953642781303934, 4.955746732276921, 4.949005617692892, 4.949544014786779, 4.947917223955939, 4.952786754409442, 4.953027312095019, 4.947692388881221, 4.951345895501133, 4.955048925337284, 4.949970808713638, 4.9506747952002765, 4.9514548359116715, 4.951699310936243, 4.955596604840741, 4.950977365607985, 4.951657191442977, 4.952493568825092, 4.951158692741106, 4.94900575615828, 4.952137240509307, 4.951094337422703, 4.952782679552779, 4.953729201522576, 4.959330161438481, 4.951134367339023, 4.952075482404622, 4.951243634546899, 4.954098081136253, 4.953957012800413, 4.954129052033018, 4.95141723300559, 4.951293945561758, 4.95238833749926, 4.952266378152741, 4.9483925745550295, 4.94988026019657, 4.946155287799369, 4.947115163662553, 4.954971301055103, 4.952090471953154, 4.9516255223764825, 4.949212613179148, 4.949184034830936, 4.950476163034644, 4.954295004823504, 4.949694248700245, 4.952592671411486, 4.949386123904114, 4.948167562882517, 4.952578496244345, 4.951761069910138, 4.9505144160281125, 4.9511245367823316, 4.950686942146276, 4.949556680555984, 4.953202887461763, 4.95448388467254, 4.949826130265168, 4.94941447528859, 4.950950036826266, 4.9477138160489735, 4.95657599830939, 4.951609745616937, 4.950134006042359, 4.949589623379802, 4.949993929805647, 4.952872491853566, 4.94654595705812, 4.952760557878632, 4.94757415422963, 4.948463687329326, 4.953374590920298, 4.948131762779975, 4.948383722912696, 4.951705295942455, 4.953795193696694, 4.95210637406356, 4.950226571916925, 4.953373877151813, 4.9483817627910565, 4.946731255050884, 4.948744612807852, 4.9488375572305285, 4.947128675458197, 4.949994955771585, 4.949584160411191, 4.949481631883431, 4.94878154064822, 4.946313021432652, 4.949085585429857, 4.944966528063844, 4.946882037609609, 4.946859902526771, 4.947197989192614, 4.951565842885488, 4.947408986155958, 4.946775859589078, 4.9475177918138815, 4.951264828737292, 4.946819354206579, 4.949621069408275, 4.946210997663961, 4.9528520251625885, 4.947565696193267, 4.9439401083147025, 4.946563823896723, 4.944613927073032, 4.946676096054396, 4.94510981038555, 4.946627581700357, 4.949588511168174, 4.94861132348569, 4.947503988875402, 4.946358196649013, 4.945293079502625, 4.948302469081473, 4.946096220995154, 4.949173989610325, 4.945159309964561, 4.947852893273241, 4.946821265247926, 4.9483135809659355, 4.944085563830667, 4.949453009854574, 4.943937645909495, 4.948487578709622, 4.947889871182125, 4.951254823346367, 4.947355161403696, 4.947014837090853, 4.947967794349273, 4.950711643302989, 4.943183749504949, 4.944496565888796, 4.946863814083832, 4.943192777411881, 4.945952473257094, 4.949317095247912, 4.9463234345938, 4.952015041824923, 4.945952972000074, 4.94605684492512, 4.945411148480162, 4.948227998285674, 4.947392361534765, 4.9409970470217095, 4.947865608771981, 4.950142528659802, 4.943671187140377, 4.9455451702579225, 4.943532159594336, 4.947266988351652, 4.945123517538703, 4.94770812776961, 4.943375103362044, 4.94488236005521, 4.94351795670384, 4.943973167964041, 4.946105319534116, 4.945796197214369, 4.945231074044456, 4.948832910932708, 4.947419779540591, 4.944592299274416, 4.945610168965098, 4.9451547227714485, 4.9455714233626775, 4.94898977285983, 4.947622924856492, 4.946320117561482, 4.945331994472872, 4.94175196975571, 4.945458861701491, 4.9452844406660645, 4.943965314341201, 4.946387333847706, 4.947232333253996, 4.9408949881965425, 4.946732486609876, 4.944058211045063, 4.945879737322941, 4.946994621197652, 4.939537118896106, 4.942337123942542, 4.942830836040995, 4.943134209946055, 4.953133883986163, 4.942622570347666, 4.941932469365104, 4.946225026104103, 4.950674805979047, 4.942954851423865, 4.946925781743861, 4.943806850458152, 4.943354419819067, 4.942809612324725, 4.946565064539447, 4.944648869303991, 4.947815620626178, 4.946240708953384, 4.945755525186465, 4.946993255351101, 4.951161509656586, 4.945118753577642, 4.943341640968201, 4.941464451681467, 4.942915872628584, 4.945507128033334, 4.943933748270978, 4.944422528141326, 4.946544520827306, 4.944049823739713, 4.945165864846022, 4.943832666744457, 4.943590763952503, 4.947004898662923, 4.947201665069609, 4.945632064677779, 4.9441853555220865, 4.942253312794232, 4.944060014994327, 4.946406392337126, 4.941741140043263, 4.944696327401274, 4.941152887971537, 4.946056464312119, 4.9475648040924, 4.942730119352336, 4.944359878767793, 4.945730445160767, 4.945218166829174, 4.939208594977796, 4.942948552480704, 4.946305409243551, 4.945265820206929, 4.941062395523148, 4.945112054411669, 4.944695465328188, 4.944248816785434, 4.941559606284147, 4.942739606342608, 4.943733624470136, 4.942639431682716, 4.944996448379514, 4.9449073450503205, 4.9468098043572315, 4.940106308487261, 4.944134209452252, 4.943485797940708, 4.943081320482955, 4.94041385272533, 4.941077664819032, 4.9412854262392205, 4.9430727801043215, 4.939824055506329, 4.9452942686718, 4.940998176101351, 4.941578576632581, 4.94592680317591, 4.946373423525253, 4.938235487446585, 4.943889766769567, 4.938619133632433, 4.940248978597841, 4.939284089118941, 4.939758644130256, 4.940785608141158, 4.943207787714942, 4.941097997149595, 4.940418592437166, 4.944059888065766, 4.940082062598256, 4.93983883311558, 4.939374588373596, 4.946295840138758, 4.94322457310117, 4.942033270816294, 4.942773687520189, 4.9466481458242635, 4.940939112496167, 4.94384796079097, 4.9426225402237876, 4.939638013732114, 4.940354385981776, 4.943045949776762, 4.940314325594208, 4.939361090041341, 4.939500042359929, 4.9382891797189306, 4.938414127301505, 4.938991943261017, 4.9455500889231825, 4.937956713908729, 4.942290297716262, 4.939637186258055, 4.945251343158657, 4.940125833793526, 4.940379811724917, 4.939905273792286, 4.941499734852487, 4.938344873526132, 4.937553280599323, 4.9411230094556595, 4.938041115087794, 4.939677980061404, 4.93895215203036, 4.942534716325975, 4.939018434274599, 4.942810068647504, 4.941959863448726, 4.940167101456689, 4.942515319256752, 4.94280241083414, 4.941844384709286, 4.938861884355466, 4.94146670391367, 4.940817312557494, 4.937705214975299, 4.93792512859369, 4.938682995604362, 4.942870898345246, 4.942077258812374, 4.936385908845645, 4.935024520451654, 4.939940424906035, 4.940931641212033, 4.939630641178323, 4.940862039601405, 4.941068674837894, 4.939628573379019, 4.937607265143293, 4.939061866073675, 4.938917262291946, 4.938185393378531, 4.934135191501953, 4.9374964714955, 4.938865435270106, 4.9399465232813, 4.941008851362182, 4.940897660683014, 4.942492601151421, 4.936658579879222, 4.937818665509267, 4.94082643649949, 4.941899007652477, 4.938063366853103, 4.936969468206074, 4.94017352695369, 4.93752015517717, 4.938162973015672, 4.938313584000809, 4.938363648946842, 4.936180987704793, 4.940017632608763, 4.939336135537415, 4.937395857885123, 4.938331604663529, 4.940507639227791, 4.936581240307677, 4.938435007355426, 4.93959240619785, 4.939240477320317, 4.939799578215527, 4.937876515677, 4.941133113807698, 4.937778070390182, 4.936664628132789, 4.9396219287354715, 4.938874046331886, 4.939491921134405, 4.939804432219597, 4.937385487737227, 4.935637265682386, 4.939371902165308, 4.937260533013177, 4.939366397082371, 4.937176088905668, 4.937229933455384, 4.938983892379707, 4.938727983455492, 4.934933622060592, 4.936579215168088, 4.938018542060706, 4.93413405182512, 4.938895111934083, 4.938904295368137, 4.938352452120596, 4.936867066715253, 4.935377156705101, 4.938908390667234, 4.933981968427797, 4.935500160014727, 4.936172003045191, 4.935546788046701, 4.935151245697424, 4.940039851730242, 4.9413014871607865, 4.935130932686347, 4.936655609548568, 4.936186057320734, 4.934386362712162, 4.936079017597281, 4.938737480442722, 4.934350371555689, 4.937817098050529, 4.934234256453234, 4.940934518894346, 4.938067690719348, 4.935700157014793, 4.933532734030292, 4.936249448566988, 4.940008729212041, 4.939227025768075, 4.940018728143657, 4.936597894724716, 4.935296549251624, 4.935144515461072, 4.941774440827462, 4.934669332606264, 4.93366195947679, 4.936261426081866, 4.936940419503861, 4.9363928938317185, 4.937293687523926, 4.931019744000371, 4.936735779742695, 4.93927022871255, 4.938398485014753, 4.937221641244423, 4.93781478343357, 4.939985143735847, 4.936897911992654, 4.939280895218591, 4.9398336578535424, 4.935502321292226, 4.934326122109219, 4.9362462043102395, 4.934560058421583, 4.939078932600119, 4.939973547037942, 4.940818200704063, 4.934758890417958, 4.934155523802753, 4.937554614443241, 4.935408472269687, 4.932491179759703, 4.935694269376095, 4.940827842525645, 4.935647541798644, 4.935302458189197, 4.935296852819389, 4.933512186419689, 4.93558315460383, 4.934017237611893, 4.936257363716965, 4.939450797613564, 4.934663745509593, 4.934953974529625, 4.9336909203336505, 4.931588716769656, 4.935928476653969, 4.9365241906703226, 4.935450131484525, 4.93539376951144, 4.934095485381882, 4.937580390494854, 4.937835996063991, 4.935561659950623, 4.932220415035078, 4.934476451450774, 4.937195504432003, 4.933925585570851, 4.934875191778351, 4.940142605205988, 4.935364189877236, 4.9365583567893525, 4.939965273590229, 4.936551611397159, 4.9332399549930255, 4.93263006387144, 4.934701679489094, 4.933965071003234, 4.937922178780878, 4.9352756469806405, 4.935439023196539, 4.9379480576572155, 4.937530273264672, 4.934867667358105, 4.93165158106815, 4.934482609313072, 4.9330721969418665, 4.933982503878532, 4.9364054249133265, 4.934781802487647, 4.93420589116645, 4.935761974003883, 4.935579418017049, 4.9354285639032, 4.935933613021087, 4.934184205304686, 4.94216465020353, 4.938281024037857, 4.93026239323436, 4.93624631313112, 4.934144664245304, 4.934897375538769, 4.935135892452058, 4.932576936527992, 4.9305008449814975, 4.929980788319827, 4.935681773091689, 4.9368556255796845, 4.9388200384570995, 4.933519875011382, 4.934064677268723, 4.933979021466881, 4.931093210152436, 4.93686556686712, 4.933376519772828, 4.929481995384068, 4.930530182030588, 4.940234640860924, 4.935772712300774, 4.933045323150542, 4.932074646750233, 4.930542609008725, 4.934401987645474, 4.93558615375156, 4.935735698538354, 4.929527898850353, 4.93327401782121, 4.930776332516083, 4.934241748763489, 4.932253511214323, 4.934917315904764, 4.93543970338213, 4.932148730755083, 4.931533766419432, 4.933681683319309, 4.939129359318868, 4.932355615872099, 4.931840950741133, 4.93257916262876, 4.929021345659832, 4.939604988223183, 4.934408049132281, 4.936875663676191, 4.932593501601515, 4.9332989235096125, 4.9314598213022425, 4.932457941208359, 4.933766994921642, 4.932017448930699, 4.935396344909636, 4.934310598301297, 4.9347973781622265, 4.93461344317153, 4.932717886820081, 4.931387381732421, 4.928552073446558, 4.930509879185546, 4.931751197458668, 4.934620413989317, 4.932118202818814, 4.9323340567554474, 4.934245287496224, 4.933544028544643, 4.936453275711659, 4.933735283762659, 4.931945964317299, 4.935768878047859, 4.93242705419527, 4.935595659409241, 4.934760229535881, 4.9335877374364605, 4.93396281000302, 4.932652980968873, 4.929998184807024, 4.928909951324194, 4.931909220790274, 4.930388955852106, 4.9329465299205335, 4.931691546058522, 4.934739634932823, 4.933211914741634, 4.929582025295947, 4.928435682277964, 4.930074187514078, 4.932575299993062, 4.928636296674188, 4.929466151886401, 4.929049780903998, 4.933571176264605, 4.930006257485315, 4.931626789488501, 4.9305865905131885, 4.937280389849382, 4.9295894258665225, 4.930966089427524, 4.931632282410456, 4.930057923177911, 4.931537483730677, 4.930756992045317, 4.927128671328522, 4.9302233308156955, 4.92904010307926, 4.928561186138126, 4.932633035728639, 4.930855898009472, 4.927983344518699, 4.938020408733777, 4.9335930543243744, 4.939500828970328, 4.929715947641276, 4.927000932769978, 4.930545654090071, 4.9341914726126, 4.928741805065721, 4.93019480638843, 4.9316444322586594, 4.93218170687984, 4.932577294891142, 4.9298901641726705, 4.934504009877997, 4.931941551374142, 4.933630860253782, 4.933978467761196, 4.932842695784743, 4.932586222262059, 4.9330174696688065, 4.932921617239051, 4.932451940185762, 4.931383031311164, 4.926613566734513, 4.930790692618229, 4.930452842753601, 4.928330217677528, 4.929842773298013, 4.92848086269946, 4.928619965552157, 4.932596752356336, 4.927867518391046, 4.935332623528298, 4.932125514213181, 4.929795305977167, 4.931904006099527, 4.929134152960396, 4.933277795661597, 4.928961484887571, 4.925957506643711, 4.930307660237187, 4.9302414558617595, 4.928491554157992, 4.928035793524189, 4.931424649092795, 4.9301108780748715, 4.926723184620985, 4.933173911098955, 4.932168694020551, 4.932617000235945, 4.9299457263767525, 4.9302174356104285, 4.930454337646779, 4.930142912923773, 4.927629461118447, 4.928820109923789, 4.9287787235752525, 4.929949970676435, 4.928010251542775, 4.928149939094912, 4.9316088868540024, 4.929464377942372, 4.933070916338882, 4.929345264649486, 4.9299263325268985, 4.9299784045499795, 4.932842864746788, 4.927599248878293, 4.925414133052156, 4.930756834511191, 4.928967457185558, 4.9270832796893185, 4.928438362703966, 4.929219410798884, 4.929677531192889, 4.931997225313601, 4.927167702460002, 4.932444038403203, 4.929091066358877, 4.924769066026995, 4.925084663459666, 4.927468581585939, 4.927228626640366, 4.933756825215633, 4.927939282073223, 4.930658548425571, 4.926521789470932, 4.930742853769122, 4.93373267545921, 4.9257205177889904, 4.928028046237432, 4.929431362987795, 4.929378065183352, 4.928139070846549, 4.927611104442552, 4.929522680034742, 4.925060125302812, 4.928629545460577, 4.926391387547589, 4.926748155744398, 4.930292911826852, 4.930728804441795, 4.9285261827046165, 4.929154862986854, 4.929323495055353, 4.929011837403996, 4.929796585580552, 4.928617537602768, 4.93027040980614, 4.926911396693599, 4.927335947604351, 4.9277869913566095, 4.927679494628274, 4.929741684084386, 4.926787497785493, 4.93049739337839, 4.930571892121156, 4.928189717838119, 4.92466856811224, 4.933004998224073, 4.928867230422103, 4.926863030839899, 4.926885841364443, 4.926245438743176, 4.926629190649427, 4.926608445188485, 4.9269486803695655, 4.929484315162038, 4.9268136788360435, 4.926952889816917, 4.9279524436104065, 4.927507665912508, 4.927017724782144, 4.9321211471259145, 4.924759900463862, 4.921999845468275, 4.924452227877299, 4.926763445932446, 4.927586617413571, 4.927846116298955, 4.924678530542695, 4.927124198929102, 4.932444664520708, 4.928137884623885, 4.930861509219827, 4.928676297057906, 4.929197484886055, 4.92668404591485, 4.925321495875189, 4.9312481783714315, 4.924470623765624, 4.929524619142378, 4.92907212954971, 4.935813445341081, 4.9288068656048205, 4.927281869571695, 4.923886534186179, 4.93091671895546, 4.925817137632377, 4.928784008529317, 4.928243862032298, 4.923860157020746, 4.923658083436292, 4.927834252324574, 4.931363808589407, 4.927655261783221, 4.928191347325018, 4.926852036158361, 4.922198183681615, 4.9269707253558215, 4.927867746893949, 4.9272858020056916, 4.929561838476264, 4.92468861460892, 4.927249051315496, 4.9264304173471185, 4.92813924138242, 4.924930527324637, 4.924647045416606, 4.92798893971001, 4.929569479229012, 4.924849753557685, 4.92903151929201, 4.94005207877527, 4.925273639147991, 4.924356182761513, 4.923005120660559, 4.923530659117593, 4.92193383843399, 4.926424150766314, 4.926949892899046, 4.926205524422762, 4.9246651933763195, 4.925343429394458, 4.923837771457583, 4.923664539962932, 4.927280434219979, 4.92439405957124, 4.924089188598514, 4.921714222256558, 4.925901506601678, 4.92689279562323, 4.923400748330783, 4.929932999511055, 4.924343164418042, 4.923497650715408, 4.926028005621923, 4.927014165788628, 4.924413791093132, 4.923163118961513, 4.920861390135831, 4.9235485234311, 4.926007329004102, 4.924233987594112, 4.9329044084808515, 4.934074922222392, 4.924921125504629, 4.928975085682609, 4.928387589883931, 4.92696400110942, 4.92458659922242, 4.927972131502296, 4.926230093567663, 4.924523602632761, 4.924029447283005, 4.927179140439423, 4.9276688171518455, 4.926447539382638, 4.923685843087669, 4.921921138637804, 4.923137174649039, 4.928333729619813, 4.924770780760624, 4.926612992948692, 4.920075975674787, 4.9243124637818685, 4.925620492010098, 4.9255515281439815, 4.919577501764594, 4.927011978107459, 4.9231519866700015, 4.925320887905122, 4.926437860241768, 4.925848952785001, 4.923870025350306, 4.921235505937708, 4.92603031866534, 4.923406443543766, 4.926586071772373, 4.9260257029475305, 4.928336627142201, 4.924501393347155, 4.922765462485485, 4.919517893651748, 4.923261370235236, 4.921773913550015, 4.924286014246258, 4.923159309685063, 4.924558786613352, 4.926317082546692, 4.92427124750989, 4.92071332604777, 4.923335748963269, 4.922698988159216, 4.926409827868806, 4.926666769197904, 4.925411156128132, 4.927722237816683, 4.923725518611848, 4.925447699682592, 4.925108478176269, 4.928259038905948, 4.920520239154598, 4.9249419455649965, 4.926458156538675, 4.925219806186087, 4.928779860670016, 4.9276310729664825, 4.922132382420946, 4.931904302182314, 4.924797251076692, 4.920902016382852, 4.923319153792941, 4.926332369121029, 4.9265110501953355, 4.92240493413938, 4.9219473832252545, 4.921482849070276, 4.925555045649889, 4.927938710336944, 4.922184788463655, 4.923904033991857, 4.921430128673417, 4.928907164466566, 4.920832846881672, 4.922802060595318, 4.9244839874790385, 4.921744588478701, 4.923256625030509, 4.9236547442965835, 4.920249678354646, 4.923966708041659, 4.927174278708202, 4.92261923596657, 4.926695922608963, 4.922645677632383, 4.927097988420352, 4.92799132547596, 4.922658709723341, 4.924118687184842, 4.926304690242988, 4.922801778392612, 4.923790521321491, 4.923014335411418, 4.921885769539832, 4.92526701583786, 4.925670087077205, 4.926106585368181, 4.921387809611344, 4.926127096698179, 4.925227586885964, 4.93309655345964, 4.924782366112067, 4.92174403068364, 4.922843353243268, 4.921210276190539, 4.92465907942857, 4.927329945275815, 4.920821441004138, 4.9256011999234115, 4.923200515119734, 4.924751806443006, 4.9239834055195075, 4.928184381784072, 4.921023038838072, 4.92307870195703, 4.927872297895518, 4.923657953715883, 4.921478882798324, 4.926671476628776, 4.9207874275458385, 4.923386038537464, 4.923946410683791, 4.923371678316435, 4.928408568133209, 4.922695406018285, 4.924196815246097, 4.919386281498958, 4.924488116995734, 4.922133098491765, 4.9192342781173055, 4.919581456877461, 4.92049244692938, 4.92194726376894, 4.923377401021599, 4.926865471638076, 4.918318502120197, 4.92167492889576, 4.923096558024018, 4.918077717294886, 4.920186239176703, 4.926612693148585, 4.924451667658596, 4.922340260510491, 4.92104940721883, 4.9224603062883805, 4.924013948684552, 4.9241783823413865, 4.929238230886263, 4.921423756652782, 4.9207507108673125, 4.925611865382452, 4.920481542077615, 4.917975928741998, 4.923426699862126, 4.924949106705375, 4.921735349796643, 4.923318509211315, 4.921163224085846, 4.924386800044293, 4.921258643990009, 4.920817223265364, 4.919468498106523, 4.924957773831749, 4.9255502368900554, 4.922943926794284, 4.920132100646358, 4.924130841836166, 4.920799550877321, 4.919629776146236, 4.922651665613619, 4.925575074939003, 4.926353456280022, 4.9203296237449425, 4.9254730700578, 4.925607900107267, 4.922615410303006, 4.924644659102341, 4.931598344468276, 4.925588750848434, 4.920682749303214, 4.921721529434194, 4.9224935782143575, 4.919147532455854, 4.918234816290667, 4.925961989578008, 4.92011568566479, 4.919813811244615, 4.917452684369156, 4.918492877895498, 4.924223256504203, 4.925464858992964, 4.921689507112585, 4.917630629788809, 4.9160081607456005, 4.919703741139733, 4.922952380948816, 4.925829827028457, 4.919607037579881, 4.9216068848223, 4.919649079418678, 4.919647763632249, 4.91812223825407, 4.917794531873412, 4.920851994466626, 4.92243474142783, 4.91976671583061, 4.919144054497405, 4.921746440467497, 4.923380804896379, 4.918107986451773, 4.919659216261843, 4.918287068478017, 4.924136444436879, 4.920903546548462, 4.919777730783886, 4.920915589919856, 4.922266319424157, 4.920089687303746, 4.917035282924411, 4.919237060083676, 4.922107408798093, 4.921736934205213, 4.9152674210565035, 4.920760258448735, 4.917048293875462, 4.919690803040599, 4.922971434750697, 4.9203117418424345, 4.918682485387209, 4.919206143912417, 4.9180249767787085, 4.923209144076749, 4.918786542278165, 4.926135051349322, 4.919628144170728, 4.916635381725607, 4.92339723002595, 4.919756933473954, 4.917338691171959, 4.922138769750477, 4.919183238745302, 4.917062352183753, 4.921093135277447, 4.917021403782373, 4.922629518465028, 4.9206216163412, 4.920119742284386, 4.924893994093378, 4.922526589294266, 4.917140775096728, 4.921593719991968, 4.921922186571526, 4.918058130058403, 4.924748598770387, 4.917969748173382, 4.919794665223204, 4.9168975046502945, 4.91946891228396, 4.919249991602394, 4.9189231641678495, 4.922161470771622, 4.9198033432743955, 4.920456572292347, 4.9206031571701745, 4.921449084711974, 4.91870873549106, 4.922176197633491, 4.917722780428518, 4.920337830298922, 4.918027415581588, 4.920542816064934, 4.921495696621358, 4.921272948606804, 4.916271637597262, 4.92250197274186, 4.917554862689056, 4.921113716927111, 4.919726196580468, 4.919919899787935, 4.931648819025151, 4.922104807073703, 4.920393628172665, 4.919444634584962, 4.920008853595013, 4.918642973396379, 4.9162160318951456, 4.9185461236371815, 4.919169121050706, 4.920549715729837, 4.921609949788207, 4.917751437943336, 4.916690518449945, 4.9171103134604826, 4.9180935887984125, 4.918382432997444, 4.915475125770189, 4.9191585776327935, 4.927520908892555, 4.918881076933502, 4.917502002064941, 4.9182512117016035, 4.924818039851555, 4.916645041773088, 4.918849335472563, 4.923195163427573, 4.9209588701769675, 4.917434158446701, 4.919482000139196, 4.918885022538444, 4.921111665665181, 4.918251725264715, 4.921463791818788, 4.918225004355313, 4.9214837867663705, 4.919469597575004, 4.918400123859034, 4.916564120283398, 4.914662299780834, 4.923200240495128, 4.918137649426497, 4.916923745620776, 4.91443350049439, 4.916834535471098, 4.917780494477443, 4.917344505155219, 4.92103429583459, 4.917909276101537, 4.916598142141419, 4.917548684465535, 4.925679884657092, 4.916780462762533, 4.91666887945662, 4.916454045587375, 4.915983347705063, 4.914317638590319, 4.9192864912402126, 4.921279308406886, 4.915930585404733, 4.915761184735837, 4.916765377863893, 4.923203311072008, 4.920624258411856, 4.917336591648096, 4.919050476420341, 4.91950063681999, 4.916053705548963, 4.919415826206365, 4.916374884248741, 4.921630269449426, 4.918581031612536, 4.916524158477797, 4.920356049999163, 4.914932347453626, 4.915142376954342, 4.917332674939911, 4.916782383445332, 4.919566473943809, 4.917005687850554, 4.919127048747553, 4.912252765592884, 4.916554039698474, 4.9239318612838625, 4.915987666808214, 4.917417696995451, 4.915519263207932, 4.914780309635441, 4.915830210404325, 4.9165975663377255, 4.9154882294969084, 4.916436388508206, 4.917601340300929, 4.917290337430342, 4.917142358352539, 4.919458046476876, 4.917479493088562, 4.914540803387152, 4.922910240498126, 4.916249544810471, 4.9148218462730195, 4.915441089452203, 4.920388173045903, 4.9192672700219, 4.916950482957799, 4.91622855036355, 4.91857689836238, 4.916752511683535, 4.916464903311628, 4.912073162953124, 4.9192920174759776, 4.917132871612156, 4.923699433671009, 4.919086428471922, 4.918661311836226, 4.915365689147292, 4.914473084783326, 4.915600399411444, 4.914814403970287, 4.919973838624804, 4.9176052556530845, 4.917357536195768, 4.916125446727516, 4.91813776396503, 4.919988070640125, 4.915900167291661, 4.9184753044468, 4.917057768118769, 4.9135343661007, 4.911760807281008, 4.915881561414032, 4.915597816057761, 4.924650630020107, 4.913858800490728, 4.917383933371109, 4.916349904521242, 4.915676838619425, 4.915055564514425, 4.918285350640215, 4.9178463428591055, 4.914193354164323, 4.915274725169733, 4.912454354190006, 4.9154054425937455, 4.914549675368496, 4.920004533232839, 4.9152801832647866, 4.915363663516099, 4.914935657192072, 4.910178216702962, 4.919367649073828, 4.917925374043894, 4.918488724607579, 4.914735171190826, 4.9156697793487485, 4.916672406823347, 4.918776622630977, 4.9157863746627415, 4.915932598873642, 4.917014504087737, 4.912533696107092, 4.917523761771617, 4.915458289902304, 4.917194827617662, 4.918133429967531, 4.918170180714722, 4.913168312683096, 4.9160184894166195, 4.913484697685483, 4.9193253737231775, 4.912835329499758, 4.919142548059531, 4.917439968354996, 4.915041454503072, 4.913470118281769, 4.914489029858553, 4.914961547812494, 4.917174385270975, 4.911497062372942, 4.917088483786683, 4.915560171689627, 4.913190152204532, 4.915856897873157, 4.915807593217222, 4.917581561093027, 4.917599804696438, 4.917555967917745, 4.91609221338349, 4.91782903477115, 4.914500141200411, 4.918013102762916, 4.912695792252422, 4.918251487461093, 4.918880152865956, 4.916977308976564, 4.915506474047694, 4.911576236030184, 4.913068023298483, 4.915341711124836, 4.915805822797989, 4.919189897732139, 4.9114206433827, 4.913700788072464, 4.914808595807825, 4.917767454811465, 4.910637423950807, 4.915365295852467, 4.911092159629096, 4.916280662593089, 4.913398674661008, 4.915756265061853, 4.9143095677826825, 4.916257519450824, 4.914413957842472, 4.916715644644281, 4.914437279224687, 4.908396593639841, 4.916474115655804, 4.915037423861044, 4.911202949883979, 4.916609008991431, 4.916250043100002, 4.915556262168288, 4.909995424737202, 4.91489499032456, 4.910998512411342, 4.9150744081903674, 4.914859748631935, 4.915350605494639, 4.9161040838399, 4.913310440676058, 4.914702851001381, 4.913669736703869, 4.91349557474392, 4.911386987306552, 4.91081876183728, 4.910120995417076, 4.9141305677756275, 4.91392266305547, 4.91346637324787, 4.912530277975877, 4.917590886250794, 4.91471497942671, 4.918068787583085, 4.9136233879806195, 4.917655073070337, 4.915547790595815, 4.9137008636797885, 4.915091511371183, 4.914909241898101, 4.917270917007744, 4.9146001413992035, 4.917138964801017, 4.912815544228343, 4.914086992515405, 4.917617593863481, 4.911049100041547, 4.915245051847872, 4.913505607863583, 4.914237376485159, 4.918466340657747, 4.91415550621925, 4.914588028771084, 4.910870575311917, 4.914655418657562, 4.911593328070646, 4.911551252864018, 4.912531514473896, 4.91418787986019, 4.91549688649432, 4.910007249759774, 4.91435882121039, 4.911857765443724, 4.919249336765274, 4.9117289672720705, 4.915751223486677, 4.912309734596576, 4.91683952177287, 4.915316039320827, 4.912988367486081, 4.91202383177016, 4.915227894707085, 4.91083609541714, 4.910525530853918, 4.912004188508229, 4.915894009793207, 4.91498522182825, 4.914530063124541, 4.9114018164262925, 4.9120129183118575, 4.913261686951844, 4.909383660977609, 4.908839241225974, 4.911994838935736, 4.913464948314785, 4.913221703640211, 4.915251869177288, 4.916509404050228, 4.91328155981258, 4.915347612484217, 4.911004411738144, 4.912481566298792, 4.914932699566938, 4.910529880544211, 4.913164565350464, 4.914252935350435, 4.908389206873463, 4.917119490275193, 4.910206572772382, 4.911679174701731, 4.9109852877676525, 4.914534263621516, 4.912509177676902, 4.913469264361143, 4.914224524292107, 4.912583993235045, 4.912654219588194, 4.9129720736785725, 4.91198341281653, 4.908764510059119, 4.913356956878977, 4.912092156289931, 4.913418969945932, 4.911445716005075, 4.913542834458531, 4.910897802411815, 4.912390525209977, 4.918182843783788, 4.915583632392063, 4.911926420134768, 4.91144118073492, 4.9135207994089365, 4.908426098876899, 4.914514834171727, 4.911760680955295, 4.913859984359058, 4.914272680559122, 4.910982829020619, 4.912314019560556, 4.909955914777246, 4.908177615682775, 4.914989844521502, 4.912021781400314, 4.910659710388883, 4.9185167279443816, 4.911212809750625, 4.911124089785605, 4.911170732031047, 4.9136101161904895, 4.9140162845284685, 4.911454977659512, 4.913576209670182, 4.913005865040199, 4.914824084486243, 4.913112090120316, 4.915429388609271, 4.912277759417501, 4.911841282747779, 4.909930609781299, 4.913004219507431, 4.913012167018506, 4.914013034767353, 4.911102900975256, 4.910182988123523, 4.913640207470239, 4.915836621844083, 4.910700732289367, 4.913795714147501, 4.909251743264079, 4.9130301217478864, 4.909052164847462, 4.917007334292423, 4.908168933145087, 4.912772483270994, 4.913085958760165, 4.91435216896088, 4.911909282656565, 4.912521769302783, 4.911657733225672, 4.913244184566734, 4.9116834392053335, 4.908317344849401, 4.9099827015099375, 4.910794159861717, 4.911926321736124, 4.912590881565352, 4.912222394524978, 4.910671040876193, 4.910386840715534, 4.906451355137215, 4.914131812711679, 4.912767101556277, 4.9096844034817915, 4.916623845099798, 4.914253926034932, 4.910270209990712, 4.908920866353465, 4.912002373373732, 4.908610857731558, 4.911454617250951, 4.911242063471279, 4.908781732301482, 4.9127072994442775, 4.911564350707716, 4.91280498524024, 4.909086330577061, 4.90932324492748, 4.909813476757011, 4.91416883738382, 4.910056149827856, 4.914784626075059, 4.9100684577715885, 4.910745286434065, 4.909363306947568, 4.909884965164147, 4.907127999931456, 4.915477887209806, 4.911744722693191, 4.912159020568159, 4.913829399397917, 4.910301016524427, 4.913143792204682, 4.909554810694106, 4.9102297299836275, 4.9071957776147075, 4.910792567282288, 4.910445810759055, 4.9196922890727155, 4.910841912021794, 4.905067759038487, 4.907748200943466, 4.909714259527739, 4.909268643067724, 4.913322623997006, 4.909072427433875, 4.915703567258285, 4.908981175231201, 4.912300599382318, 4.911519252989189, 4.907767887433744, 4.909290065740545, 4.913487646451468, 4.9138285269885404, 4.91903805475794, 4.917144145811035, 4.910671515836682, 4.911482781340105, 4.910678239112196, 4.912578171277234, 4.908303447979792, 4.9113209465243, 4.9090622926373335, 4.910222524519557, 4.907652340616716, 4.912296965983851, 4.911839087081846, 4.915208554514029, 4.912987183558629, 4.912633560860524, 4.908207214854123, 4.912931294007599, 4.911751821705607, 4.914251923052304, 4.915277595572055, 4.9099776122621765, 4.909377406097323, 4.912702766658439, 4.915908035144384, 4.911370568119731, 4.909383084739165, 4.90700813049261, 4.911044890552215, 4.909773401421502, 4.908979533019408, 4.911327025545388, 4.9134806338279455, 4.912703945255215, 4.910560539462472, 4.905639674557137, 4.907647258263301, 4.9069653441624315, 4.909621111094346, 4.911179582575441, 4.911666319106262, 4.9102298584486075, 4.908521994614003, 4.906501684025003, 4.9089325927917775, 4.908021234067716, 4.907878461019896, 4.910064265575375, 4.909543074550363, 4.9116277341394845, 4.911470655285795, 4.906611883027448, 4.9142089867315315, 4.909257794187257, 4.912733935259655, 4.9112250144662255, 4.9103611287056035, 4.906389468065493, 4.909793401321001, 4.90749008408052, 4.906930407021607, 4.9065868623806015, 4.909673720887884, 4.911801192177404, 4.911667786568654, 4.913850812045754, 4.908929840727573, 4.9077108266614955, 4.910064057046734, 4.914354979063699, 4.906877174454544, 4.91501080210911, 4.909321264432658, 4.907662211947464, 4.910486781050114, 4.913047475354754, 4.90824442756905, 4.908420250798317, 4.911254010193646, 4.908852488205886, 4.908970754194395, 4.910798249901893, 4.910277890075311, 4.908773812011338, 4.912045768003495, 4.913143474136667, 4.912643121647848, 4.909274069812439, 4.906496016661224, 4.910463338975401, 4.909462589502716, 4.914443846436944, 4.909357330154667, 4.9069451266141675, 4.909807048060573, 4.906480594880856, 4.905010039925022, 4.908121222745317, 4.9053892387901294, 4.9102851841327, 4.908129182020508, 4.913657680384652, 4.914490129744363, 4.90643771026958, 4.908500629870901, 4.911498446080385, 4.911896777122364, 4.915432888974268, 4.911477442188962, 4.910687914031106, 4.912105270724234, 4.908110210617509, 4.912809304529626, 4.906738053662744, 4.908075538851296, 4.907249987213302, 4.908164650103502, 4.905453146186751, 4.907387087912044, 4.90628218101659, 4.907630332510082, 4.907122353627947, 4.910998788620937, 4.90631448213643, 4.906854067815107, 4.913136255423457, 4.906805202362422, 4.90891975823958, 4.910359389319803, 4.9068423031760435, 4.912604202801498, 4.908468473662649, 4.9120773522281524, 4.908726934349451, 4.907885196741239, 4.91028900650725, 4.9033198023072515, 4.90207637991798, 4.903515450785586, 4.913205575491064, 4.908166797078712, 4.9057769466379595, 4.908995512735114, 4.907409854295634, 4.916202729771966, 4.907799779719965, 4.909043692960757, 4.90982466767839, 4.907537609822967, 4.909683835210432, 4.907352638992487, 4.908676961740967, 4.906899885060595, 4.906701121035488, 4.908234836459114, 4.909449879706264, 4.907679772126447, 4.906745253969013, 4.909860218773379, 4.91120808306522, 4.910413669644295, 4.910888920556754, 4.906448916965078, 4.909393393474792, 4.907901615542126, 4.905534212953073, 4.9022043177502095, 4.907771662720085, 4.90843587827493, 4.906109501554694, 4.904519134158776, 4.905276315530415, 4.908492701488381, 4.905178515860753, 4.906272361185227, 4.907520126193041, 4.906940678996198, 4.906204589543478, 4.908324262165829, 4.904304756453835, 4.908645926941693, 4.903319397415198, 4.907427338244069, 4.906460175647562, 4.917594445082102, 4.904114034264298, 4.905563306873079, 4.908040722049744, 4.909541433991747, 4.90703839666696, 4.9136734748139235, 4.907223489040282, 4.907137530576618, 4.903875787530178, 4.9072216076232404, 4.903123117072845, 4.90550088757816, 4.908959801745121, 4.905981983844805, 4.9076448154383545, 4.909899520897377, 4.904878575404344, 4.901424805796774, 4.9057610709849255, 4.910038139700264, 4.905524913695553, 4.907365165168923, 4.907182085219366, 4.910152410148661, 4.908873502931825, 4.905611857313426, 4.902531336720552, 4.910398964407633, 4.905764377129559, 4.903747689813567, 4.908980926683153, 4.90504269406483, 4.909855539697072, 4.905083502826369, 4.908595854184817, 4.904616764021147, 4.907085878554687, 4.907478681716967, 4.90754997604194, 4.906264690451769, 4.907661808300655, 4.911522668739956, 4.906007683195004, 4.909908794912702, 4.903622192166669, 4.904870737561, 4.909393985509075, 4.90732942536643, 4.905321166758977, 4.90588738018212, 4.907599745740696, 4.909665244767339, 4.906020785697922, 4.90715200056081, 4.912701608598081, 4.9066662330308874, 4.908180943543521, 4.904084546582835, 4.908997282254361, 4.902279153203681, 4.915216817421102, 4.90662423427821, 4.907072911233867, 4.905093370102357, 4.904704580377429, 4.909689019488928, 4.904129900347689, 4.907991999123708, 4.905188727307965, 4.900816241519722, 4.901114546517805, 4.9068518853900125, 4.903498082353512, 4.90098922630842, 4.906856247816476, 4.9026221387525295, 4.9105091954599, 4.908871086472202, 4.904885560926909, 4.903568650732188, 4.90567017117814, 4.905190148441855, 4.907497830659793, 4.90751682758948, 4.906239822789913, 4.906802859590759, 4.904139943879623, 4.906631446189459, 4.911671229552357, 4.904540810666032, 4.901789189825246, 4.903463580636375, 4.907360463941565, 4.9046795065095825, 4.908161002743557, 4.909203752416626, 4.907952755111665, 4.904790753111007, 4.904900848993251, 4.905296371364548, 4.902943501335117, 4.907032701671995, 4.90134536737167, 4.900866939913611, 4.904136256684653, 4.91330260819891, 4.907477439159296, 4.903857544804857, 4.905596817708167, 4.9049231207677675, 4.905011471377422, 4.908645967454138, 4.90466329853634, 4.9038884827595375, 4.9081193928783, 4.913613953732317, 4.910350965841367, 4.90661229539054, 4.907198273509172, 4.901498352201161, 4.908531786590295, 4.9045602753679045, 4.9062457704091695, 4.90265091693661, 4.904764910792785, 4.90337852045378, 4.904494561653875, 4.903822678744848, 4.904540831718312, 4.902696598587054, 4.8999031384180425, 4.902303902628683, 4.89914708024727, 4.901700017579801, 4.9067545756468745, 4.905851813615118, 4.908699023624292, 4.903973983781901, 4.906622388590609, 4.900251572888825, 4.903100356230973, 4.905049298375472, 4.906196662051119, 4.904074923698753, 4.906245215655321, 4.907135573245016, 4.904943147229033, 4.9013676123199, 4.900693973051874, 4.907902404027947, 4.903136350346201, 4.905311763189076, 4.906409164222328, 4.905919254791235, 4.904159450080111, 4.90341854158589, 4.906923418751328, 4.903987852166535, 4.90320427387081, 4.903294307962324, 4.90317927971702, 4.901849253503526, 4.904456892897677, 4.90339962536644, 4.902557191909622, 4.904726161465161, 4.904364343962746, 4.8986937574774645, 4.9018202947820955, 4.902284459058146, 4.908760027670219, 4.905183686052704, 4.901656575279529, 4.900914329212765, 4.904587364068281, 4.9044799958119265, 4.905704696658613, 4.903489051473161, 4.907800636720912, 4.902053853791953, 4.904161202537834, 4.904608692260079, 4.908578352404572, 4.9037528515462485, 4.901702246652327, 4.905151440041169, 4.900642922119035, 4.907385099856103, 4.903908724010253, 4.9035680845645375, 4.909147707227051, 4.902524627654331, 4.905357517378387, 4.903015064477062, 4.90610505038778, 4.9004768181078395, 4.901129804094065, 4.911522626658367, 4.902058315522268, 4.90827198732864, 4.909683747784604, 4.905453481890122, 4.903505569384709, 4.9014736349174814, 4.902908556049062, 4.90272664707339, 4.902309080111225, 4.901955925072678, 4.901252233273912, 4.904346835292988, 4.906324751213279, 4.90650458981832, 4.904087295074529, 4.902048840775885, 4.900814016638476, 4.903335890347652, 4.903827643997741, 4.905089492001151, 4.905473812462474, 4.90382154472198, 4.901585702026913, 4.902330525770032, 4.9021255637416585, 4.904137684503683, 4.904395924025136, 4.903346636534609, 4.904093407361705, 4.9049250700441265, 4.903221672209453, 4.898200384914477, 4.906770632306859, 4.9073554186986215, 4.9064831312401385, 4.898320864321244, 4.903166266319791, 4.90590254087091, 4.901668870373393, 4.911908813757966, 4.907285656688865, 4.904453888306993, 4.902538403158301, 4.904112692588808, 4.9017146177621855, 4.901328479509822, 4.901572695906202, 4.900316168985536, 4.904656451213777, 4.904895224595678, 4.900760986991296, 4.909256662532028, 4.899596249828611, 4.905240889866215, 4.908593523447868, 4.901338268760204, 4.90229171283607, 4.904273518257187, 4.903667570622113, 4.901318669090992, 4.9034915948626985, 4.909188413647465, 4.903667839570252, 4.900085487523361, 4.901308809923967, 4.900292977569082, 4.904260143347201, 4.905987157534686, 4.8997938349440116, 4.904239862741486, 4.901487024578588, 4.906735544666077, 4.903775925754931, 4.902288314560765, 4.900399455354031, 4.905427689024898, 4.905122158101624, 4.90196522829155, 4.909862419333278, 4.905589383652766, 4.900093933180482, 4.905839403409795, 4.902032762319138, 4.904586811485571, 4.900401049102486, 4.899540985521331, 4.909085008520945, 4.901917753115427, 4.901594999542133, 4.901746351857145, 4.90247927341309, 4.9104384519056845, 4.905004880662628, 4.9032067191461, 4.904781625238932, 4.903452745908514, 4.902001483066728, 4.913191577916548, 4.901966994621744, 4.908193678275455, 4.905469085147663, 4.901320884330091, 4.897247542296833, 4.908046469532806, 4.904182214062171, 4.901716554674376, 4.899243885694422, 4.9002765091379015, 4.9004707556131315, 4.903178197253849, 4.901133447266927, 4.903201022095336, 4.901135173116043, 4.903859600022437, 4.903807893386018, 4.900805299441774, 4.900378522954556, 4.903867993233143, 4.9010061414968815, 4.8992485197617714, 4.899040314833187, 4.901470160440522, 4.905952776023368, 4.900902382331899, 4.903585783140594, 4.902584083320336, 4.899658014516299, 4.9012729712853425, 4.902165350180267, 4.9018214173521, 4.904319044281215, 4.899856294390539, 4.898544528381367, 4.897689426883718, 4.903932940797592, 4.901493456341384, 4.901033324285438, 4.903599558735285, 4.898121015911528, 4.899710885537108, 4.8977854551145255, 4.904461450180959, 4.90287032170148, 4.899825156112607, 4.902386881147903, 4.898158988324185, 4.897072948399012, 4.900553513503623, 4.906115927902898, 4.9017092855470485, 4.901284831873932, 4.900524008374452, 4.899385420487952, 4.903171867061884, 4.901192746659823, 4.902927715759732, 4.904197339939282, 4.899632502177378, 4.900505233361003, 4.902281426198725, 4.900375887355402, 4.897514131883105, 4.902023859761311, 4.9041154068760076, 4.908351232769582, 4.8999878901898395, 4.905605845211108, 4.898397908888386, 4.9023988788362125, 4.903106755353881, 4.901117242325663, 4.90300856872564, 4.905464027423912, 4.9031107954071675, 4.898350145213225, 4.898293684827744, 4.89723204092672, 4.9009276686858545, 4.900969792792474, 4.901606058810211, 4.899118820097107, 4.9022041699842065, 4.901224091737205, 4.904112108640083, 4.8986872140575155, 4.8998281313900165, 4.903603058762013, 4.904015806467973, 4.909092145802948, 4.906908571561774, 4.901074640368028, 4.901755276649229, 4.8951885312358385, 4.899765034007192, 4.904208269662282, 4.895380210485926, 4.898889669229239, 4.9003065710681675, 4.905578479974293, 4.900567811030568, 4.901635221750963, 4.898925009954583, 4.902786560706185, 4.902439003957709, 4.904267317324187, 4.899324466736548, 4.903044093441145, 4.905981238270963, 4.899951754771118, 4.9000753989676875, 4.899925136547057, 4.9030223981235, 4.902801906893071, 4.897908638904413, 4.905870369563051, 4.899374735765847, 4.901679992600178, 4.901221304190894, 4.9027146308441125, 4.907768803691316, 4.907971241690489, 4.90728713874654, 4.902506179781351, 4.9038333457132275, 4.902806575597943, 4.899186063715521, 4.8995348443142275, 4.899434817100495, 4.902429285286823, 4.902206533994502, 4.901682724144675, 4.902684073197062, 4.898217121877713, 4.900330613983458, 4.901735769025028, 4.901423601870779, 4.903899229253039, 4.903716900827426, 4.898629920848002, 4.901455796952184, 4.900693701064825, 4.902477765623519, 4.899871784948594, 4.905133213929483, 4.903200569234963, 4.900239820333169, 4.899345638504284, 4.897901612341504, 4.903038184569473, 4.898756099711049, 4.897864939586547, 4.899108995356094, 4.9000379636323945, 4.899534928233568, 4.901440483271829, 4.897738242556728, 4.896368868532841, 4.898907770598204, 4.904016486295409, 4.896876722630277, 4.899319039089106, 4.894957409158683, 4.899827117626039, 4.89677822919448, 4.896787909066407, 4.899255524253834, 4.898495403003074, 4.89920299459707, 4.901986789842287, 4.900738083063717, 4.898361146861966, 4.89739161209443, 4.899706576416135, 4.901382957832425, 4.9014283147927475, 4.902084568512971, 4.895847045317484, 4.903737327509032, 4.9035525700473945, 4.900269659025545, 4.899435333476574, 4.898924633865723, 4.899790322596984, 4.901224694052546, 4.901353643754979, 4.899536635849104, 4.900941225776315, 4.901850344531946, 4.898869127191726, 4.895817870609575, 4.897460941091568, 4.89911181130646, 4.904051539743952, 4.901498406879233, 4.89878437308537, 4.899725051156915, 4.899742640369524, 4.8958924374963235, 4.902627586126112, 4.898959363635919, 4.898435379340478, 4.898477029628292, 4.898291681221699, 4.897777944798909, 4.897809527785549, 4.899639387364992, 4.89941909679625, 4.9080245833942495, 4.902495992384354, 4.90053827734787, 4.89874378351738, 4.901488282878964, 4.900306110974245, 4.899853732023935, 4.902289244333633, 4.898003118285639, 4.900803513859984, 4.897916943925802, 4.896806715210973, 4.896466470562213, 4.901000540093158, 4.896761592627646, 4.902231521776355, 4.897993907539584, 4.903779130966427, 4.897549901518811, 4.899909555218825, 4.89721384649577, 4.895031358803748, 4.898296838496247, 4.898896163208835, 4.898877883717276, 4.9014072409219045, 4.898058711646286, 4.900197730683952, 4.902758512918453, 4.895359791983855, 4.90345443410816, 4.901181964806651, 4.899369053529085, 4.898720931569786, 4.897226717718647, 4.898914448694714, 4.895634863930412, 4.897155648823328, 4.898400039456725, 4.897039986273879, 4.898216543176208, 4.902361498349693, 4.899335025667873, 4.90573632617121, 4.901062733628885, 4.899923261200377, 4.895477423338203, 4.897048982098697, 4.900645013650161, 4.898555904318226, 4.897851492916737, 4.8995790956218865, 4.900123178203149, 4.896842285059174, 4.899222546209846, 4.895403985982467, 4.898555429122901, 4.895466769698312, 4.898883074843814, 4.896890371610849, 4.913392352131217, 4.897585827744967, 4.8995554256728795, 4.898510761872728, 4.90176219783736, 4.899681266771024, 4.894378453985686, 4.898357627920728, 4.896891915230483, 4.896551722356231, 4.898384867408364, 4.895662255930817, 4.89718501649965, 4.904276408119442, 4.89776595996537, 4.896677196370371, 4.899343011775403, 4.89860014516819, 4.902644432185088, 4.900537327774192, 4.901186105829582, 4.898875480068701, 4.897142265893432, 4.894978334998109, 4.896609297294026, 4.895961617386551, 4.897870990532031, 4.901905032772932, 4.8966191133674455, 4.898754546388451, 4.898504233075945, 4.898915294496009, 4.9000192097581134, 4.896117414450866, 4.898827920801423, 4.900923926758119, 4.900090331605784, 4.9019562418176665, 4.896033457464577, 4.895697698043016, 4.899689395167231, 4.897925643429872, 4.900441473145099, 4.899004348002129, 4.899585873375713, 4.898736493068002, 4.895705260065762, 4.896928777486633, 4.89655542440398, 4.894153873944926, 4.898425433512648, 4.899517923097773, 4.893925578549417, 4.896770876294514, 4.895890439497426, 4.900899869963947, 4.901174007354762, 4.8994214656402715, 4.895932579016646, 4.898709519852777, 4.899871171894651, 4.900188930406095, 4.896980430230042, 4.898910842375318, 4.898255772775799, 4.901652336448631, 4.895075463876897, 4.897023025797228, 4.896238309432565, 4.898743507783095, 4.898819587545685, 4.89540897986145, 4.893851129064634, 4.8954989539641165, 4.895804881153098, 4.895234893041854, 4.895667498133289, 4.898674345208348, 4.896250620559825, 4.89849980012356, 4.896867892509229, 4.897500014601487, 4.89646483059104, 4.893761816123, 4.896389540555623, 4.896126551774125, 4.89529847512175, 4.897225517616619, 4.89783766674231, 4.899883954687645, 4.898933956587867, 4.905026114951289, 4.894755590522458, 4.9000891240344675, 4.895749739472544, 4.893337999625045, 4.897637253329201, 4.897766385070001, 4.895926396687857, 4.896932885297557, 4.898933267672939, 4.898600791245405, 4.894636488850409, 4.8977513868923355, 4.895882522557452, 4.899649418538593, 4.897243084831133, 4.894936502113873, 4.899213089899455, 4.89723503360894, 4.894946768495715, 4.895422769937932, 4.899243349636893, 4.8969310962701496, 4.896515624447835, 4.895512781624285, 4.897907272658248, 4.896572211076242, 4.896864570239251, 4.896944332207106, 4.896367032044901, 4.894971478278378, 4.89477601244976, 4.8978118604202905, 4.895083908809111, 4.899821682258545, 4.896321799203121, 4.894600871706343, 4.8935856848550445, 4.897183049460447, 4.894148092194527, 4.893046719940027, 4.896368132542589, 4.899619639380207, 4.89826913706356, 4.895995146907089, 4.895530326344207, 4.8974219708553335, 4.897581730680634, 4.8972535848931225, 4.8991732047241605, 4.895880271557588, 4.897408531392628, 4.9065332648573845, 4.897824134902367, 4.898457855441555, 4.897711712572997, 4.899903451038278, 4.898667379723554, 4.896729278627907, 4.894082183314362, 4.896237555079196, 4.895532918705735, 4.895446838390382, 4.896667902633354, 4.899201532646876, 4.895826970259469, 4.894318394704364, 4.89722149459058, 4.896505277913491, 4.893380003195029, 4.896587644552907, 4.897858533505135, 4.9000589268232835, 4.897762243021211, 4.89319501541422, 4.898676134236485, 4.893644524725031, 4.8946362148269, 4.893668057579241, 4.901530097649602, 4.8966101019737085, 4.899003639448987, 4.900041779917545, 4.894957385930061, 4.8947409866876574, 4.897325407351957, 4.8992222451043705, 4.8984210772334835, 4.895742534926575, 4.892405542116269, 4.896274499621924, 4.894195181534451, 4.89289127762525, 4.891434780230265, 4.893343362750822, 4.89852584302145, 4.895662341265024, 4.900350327918069, 4.8991482477233985, 4.896601795201235, 4.896410321035409, 4.898791355116419, 4.900684521088147, 4.9034636593818295, 4.896943040083372, 4.89621987833756, 4.896219112382839, 4.897721069318134, 4.900663712907648, 4.894670481088845, 4.903417712171541, 4.894302251034308, 4.9000370169906855, 4.897751563195003, 4.894437752722898, 4.896145092868665, 4.892326561935076, 4.901180791450382, 4.8937335912485, 4.893741559157837, 4.900763898771976, 4.895767284820822, 4.894628365943168, 4.89598476891526, 4.899836978565281, 4.8995404047165785, 4.89506663047471, 4.898736144733639, 4.8946142918787405, 4.898870964606397, 4.897473158263695, 4.895478656380248, 4.891298700617314, 4.89494035747513, 4.897032576156815, 4.90124057591134, 4.897855765661993, 4.894084963274009, 4.898113187691012, 4.899349731679079, 4.8972047712890445, 4.895309982588698, 4.8931701094862285, 4.895132121733335, 4.8957762860698875, 4.89169295905689, 4.895829595111168, 4.894843689321894, 4.895516575525029, 4.896337385760019, 4.893766022876573, 4.896844791572225, 4.8944234284532655, 4.895528472485605, 4.893203926084157, 4.896142072933052, 4.900478087077911, 4.898785070074863, 4.897815427407134, 4.893011834859907, 4.895553781550625, 4.8935419122385975, 4.893836660210832, 4.891827690963069, 4.895905990111894, 4.899800808984363, 4.899108928491922, 4.894850060909765, 4.897356284203192, 4.896199189915827, 4.8947401126965175, 4.898020245432759, 4.899200405880581, 4.890944955579732, 4.8959098267019145, 4.894953488148798, 4.896551893040699, 4.899938436501267, 4.89553333257467, 4.892582802167143, 4.8949851292970346, 4.8931241706660575, 4.8930282753506225, 4.9016335068453305, 4.897011936645383, 4.892641850002744, 4.893911531567566, 4.898876081762721, 4.894735308895269, 4.895019951858584, 4.893767866435737, 4.894303661302511, 4.897069659272099, 4.895125500494038, 4.89572384023845, 4.891907712060471, 4.892676151038475, 4.8939628417743375, 4.897390124152771, 4.901077314358978, 4.8973743403453875, 4.8933749447304065, 4.8900029833529475, 4.898568533347193, 4.898509494038427, 4.895059129912964, 4.8955803749475075, 4.894248953480136, 4.893126983714387, 4.8941311400593595, 4.895316315364221, 4.895649829900175, 4.890044395793826, 4.8957441169458935, 4.891660420818626, 4.898403516414258, 4.894938244117926, 4.898176813064167, 4.897580597970239, 4.892029763810621, 4.891332291327281, 4.898179864435318, 4.890452426202849, 4.890403459469219, 4.895692097009294, 4.8949556524516025, 4.89529972378236, 4.891927362504699, 4.89756272136802, 4.899235734278426, 4.897890103640966, 4.893562314404525, 4.894945967013666, 4.895420736719727, 4.891742708921809, 4.8925789728854445, 4.893052711587987, 4.888449892083278, 4.8966515944913676, 4.888683077733305, 4.891658943180928, 4.8921237756771285, 4.896386163798281, 4.896689349445209, 4.891136841752219, 4.892882887876056, 4.897495903228132, 4.898725980027317, 4.892553477119154, 4.892185322916087, 4.896780416020091, 4.892265315150282, 4.896829567378204, 4.894624905198791, 4.895438492377432, 4.895628445252614, 4.893100297436915, 4.897415491938153, 4.89470646151139, 4.893916181710461, 4.896468355140603, 4.8987183743110645, 4.895015396853273, 4.895679163185806, 4.898466957527851, 4.892311123824191, 4.892854018401093, 4.895435550938354, 4.8905592639137705, 4.892204364794106, 4.895146688948493, 4.893502290078657, 4.895550745332746, 4.895514931666137, 4.892898819681919, 4.892933818398379, 4.891829123838865, 4.8994319148167955, 4.892871756416704, 4.891426951322563, 4.899902964820613, 4.8927397579829845, 4.893637964256395, 4.89210704558343, 4.900243826870005, 4.8985849596065325, 4.89628803984853, 4.896072376848424, 4.8936759013238795, 4.8937325537326295, 4.893383470377003, 4.897378313376455, 4.896480253279957, 4.891306841396251, 4.896482773188118, 4.89409623795223, 4.895438857072479, 4.893372625152808, 4.891708503264125, 4.898277841330114, 4.893931651779418, 4.892577258684101, 4.894462411296614, 4.892065888790445, 4.8942432784905066, 4.890363478743469, 4.889037473863221, 4.8931769563677445, 4.891108999166659, 4.89553085599479, 4.892726109882739, 4.8941055347642575, 4.8917488378749825, 4.895246300048783, 4.8931742511175536, 4.892367320645533, 4.8927023403392615, 4.898775424299652, 4.893717653950743, 4.892496332465784, 4.891308583565129, 4.892548235648625, 4.894860495421981, 4.896269032021015, 4.897225509393372, 4.89541670075453, 4.893345436240764, 4.893723222187713, 4.893818126769137, 4.891061559143035, 4.892161966982149, 4.8905174341342725, 4.89659197924363, 4.892153414465385, 4.891637966228471, 4.890273743033697, 4.89318823705406, 4.891556322217477, 4.895438172162779, 4.895808605403716, 4.887516518745636, 4.899058563064553, 4.891669294802748, 4.892625686342624, 4.891514823155116, 4.8918419398214095, 4.893929391099779, 4.8931165493291555, 4.894250245471234, 4.8969854838232765, 4.89398107355941, 4.895205402868245, 4.892293178202644, 4.8928189343342705, 4.899251505952412, 4.895002259912394, 4.8962730065581335, 4.895048250783288, 4.894414865558659, 4.892003252203844, 4.89348096050791, 4.894369004744826, 4.889493249138374, 4.895310590828455, 4.8921277798660165, 4.89762058375249, 4.891739420081463, 4.89011960513684, 4.893325819244271, 4.893067173822447, 4.895141673296796, 4.892250815088363, 4.891154719872725, 4.888175537510778, 4.891559835992159, 4.892812917999329, 4.894816014699346, 4.893769939953385, 4.890471326566457, 4.894351221071889, 4.88824613129895, 4.895304030300582, 4.891467496158267, 4.892282677132583, 4.892140197294021, 4.89409749597864, 4.893460138638384, 4.895079262305485, 4.896905976613229, 4.899033591316262, 4.892999632781136, 4.891839053005513, 4.898330296982629, 4.892451405525216, 4.894746922740803, 4.890247079408777, 4.89070869471343, 4.894436407696396, 4.8911807476009495, 4.88730232603622, 4.891338399898439, 4.897672195267739, 4.897692842449025, 4.8927549539080655, 4.889897052261505, 4.89398296497626, 4.891562229157973, 4.8922019909806505, 4.896988180837579, 4.890007672801868, 4.891446793926457, 4.893250864101923, 4.8896956691415765, 4.892170907816425, 4.893637081644503, 4.891424729520753, 4.896871028520232, 4.892805548091503, 4.8958125667769306, 4.895610175684681, 4.8937626245343475, 4.894743767720587, 4.894701765137499, 4.891593479837808, 4.893734807145512, 4.893237511530489, 4.887247174092712, 4.8900406276204835, 4.897653177498704, 4.890381886459, 4.88835787774655, 4.8970436425362625, 4.8953370452641405, 4.892749220635694, 4.889751505888338, 4.896505716136749, 4.891133011344857, 4.88673045148329, 4.888189175816338, 4.8899143790163, 4.892341358776532, 4.891052292600964, 4.892588022485489, 4.898181883697076, 4.893963402540155, 4.892240085975105, 4.891383769102845, 4.890689582282566, 4.893111623645238, 4.890756165738493, 4.8917057964841195, 4.896388942457368, 4.888656308975234, 4.892500574778137, 4.892495408415516, 4.889967231564207, 4.895621522860558, 4.8936854559713305, 4.889719572936986, 4.891004950176729, 4.895768392581125, 4.899992114060963, 4.892335165005898, 4.891477763443376, 4.891305688009258, 4.8886559015428634, 4.888870940964987, 4.897523720404028, 4.897455000718263, 4.893302107316325, 4.892407548587134, 4.8930719165257655, 4.894520631268486, 4.890510198798706, 4.89708897503905, 4.890660485752555, 4.893037357438852, 4.89363334505543, 4.890468932476556, 4.893414043158556, 4.8914405002104955, 4.890953642625768, 4.892601981094634, 4.893564890618189, 4.892448307341459, 4.887846480499329, 4.889039830657889, 4.889394894089501, 4.8924694438647744, 4.891207963068502, 4.891216643008899, 4.893654540890088, 4.889495721747404, 4.889864147498806, 4.8927403740768245, 4.889386799505862, 4.8902193326465, 4.892696844656202, 4.89075355430257, 4.891712716359907, 4.891414668396033, 4.889199272480305, 4.893207468051667, 4.891948764822006, 4.889167480741403, 4.894840564784395, 4.891261147854589, 4.88910038492298, 4.889660505666174, 4.889091052593711, 4.891258933810197, 4.892270402627772, 4.898369529273768, 4.891770709937559, 4.8929189393016355, 4.896279150715337, 4.891928128924812, 4.89318504012325, 4.890152536337849, 4.892801590170857, 4.890620154771281, 4.890710100605784, 4.892478666122612, 4.8929478913933355, 4.893692133955173, 4.893168556607499, 4.894325548083914, 4.887873094129075, 4.890505227946061, 4.889517027010039, 4.889187560411375, 4.888383347041321, 4.891692204954154, 4.890118377364789, 4.891077072613994, 4.889472672626232, 4.889117642050257, 4.8908402427983795, 4.887740835680345, 4.898779907447583, 4.884521816897328, 4.911503250767723, 4.889059935281289, 4.8879134221089195, 4.886905915035056, 4.888776938078319, 4.891321434797417, 4.890190468149161, 4.889124054370107, 4.891058684498936, 4.892484437095253, 4.889926142167237, 4.892658702003572, 4.890467646411413, 4.88890599101453, 4.891345661804022, 4.890401117759704, 4.890496748356113, 4.891344225376995, 4.892810498666413, 4.8888060779369, 4.890445864145646, 4.896767070236021, 4.89143703620592, 4.889946673348834, 4.88990517008799, 4.889339041443469, 4.887347206883282, 4.88859170632076, 4.891134450973909, 4.88921377196243, 4.896588263055438, 4.8893310684132265, 4.890603186763237, 4.891863797651037, 4.892954853317835, 4.894324015186397, 4.892462253274955, 4.890952769108976, 4.891362834472273, 4.8931710668611546, 4.890374778874843, 4.889149256338383, 4.891074678132621, 4.889657440912074, 4.88801897064541, 4.888384666055485, 4.891447307001778, 4.889619315161246, 4.895223894468208, 4.8932877050644885, 4.890167382587589, 4.892780011678652, 4.891550238842858, 4.890573570238842, 4.887405746138084, 4.893535444748716, 4.89103741416763, 4.888329147879817, 4.890485011407947, 4.888055504415519, 4.889183015340241, 4.888191759598194, 4.886217240975458, 4.889023937039588, 4.89063575799322, 4.8899179196441604, 4.892670879564312, 4.894717074875333, 4.886963747599202, 4.892340981131546, 4.890323903313592, 4.887132155361526, 4.889953013653241, 4.893658511430419, 4.8926200608831865, 4.89104244381322, 4.8905187548247735, 4.885485695127684, 4.889680608715594, 4.889319566202256, 4.891086025274444, 4.892669294102587, 4.889756502928114, 4.88666357882033, 4.887888877415045, 4.888714465697588, 4.894217270921393, 4.886935035557383, 4.8886258434814565, 4.889644120932092, 4.887291168115966, 4.888980468663714, 4.8923074506950055, 4.890955977353476, 4.890752097157612, 4.8873816155785255, 4.893282881808317, 4.893935569248776, 4.887759084449354, 4.891298631901074, 4.890454866221242, 4.8882749793741285, 4.889255624629814, 4.893817271562976, 4.892698742550001, 4.8929889565242854, 4.8890741658975765, 4.886777586765981, 4.89167921801359, 4.890918097000747, 4.896210112367942, 4.889173137665676, 4.8893692801899755, 4.88982771928569, 4.886621383259952, 4.891402119860156, 4.891098908684022, 4.892220184765925, 4.888994750614847, 4.892164296602859, 4.8866024717038785, 4.888699117524562, 4.88700995234864, 4.888480962694532, 4.890686195082941, 4.890006724767987, 4.894719568136711, 4.890333541645146, 4.889677243740376, 4.8873535634884835, 4.888420019055767, 4.887924585179494, 4.892567638199248, 4.885157776193777, 4.884939543641488, 4.88825185654044, 4.893541441822601, 4.889429248693063, 4.888236709895636, 4.889928781472259, 4.8873792919884735, 4.886999514945425, 4.893496221532019, 4.889230385928454, 4.8918764901361405, 4.888866993587217, 4.886101726486127, 4.888340303323146, 4.890719392215572, 4.8894713292733405, 4.889647012354035, 4.890363217436237, 4.892207513350227, 4.885986742020409, 4.888780346330415, 4.890140535342104, 4.889770385917857, 4.888448293572859, 4.888329016131935, 4.887128824301177, 4.889801923837426, 4.886727166603697, 4.891854178613401, 4.890638149683797, 4.887196099703376, 4.8906358307687565, 4.893170907358735, 4.8906135469273755, 4.8878351587718365, 4.886976292254231, 4.888515986538442, 4.8912475091472905, 4.891759665996675, 4.889687773075448, 4.892091860857855, 4.889916318646136, 4.890767058878821, 4.8906718787336745, 4.886513358292424, 4.888541629022068, 4.890998398124365, 4.886061713894702, 4.8888401918744835, 4.8951418976794425, 4.887584813369305, 4.889053719207036, 4.888416320859561, 4.893459118127593, 4.890925645330961, 4.882024511601015, 4.888349340601467, 4.891106478421733, 4.8889593213670235, 4.889164270371866, 4.889079144681814, 4.886528955852422, 4.887607675770553, 4.889052163571509, 4.890194772057717, 4.89023818582135, 4.893037891168275, 4.895769531883152, 4.886757607684794, 4.885644601624179, 4.890724304154786, 4.886334035224962, 4.887454027274197, 4.892895907351752, 4.890467029158966, 4.886225700125446, 4.888477217771863, 4.887687079149313, 4.888029156923876, 4.8855962440331115, 4.894415019479682, 4.888042193646202, 4.8876861838174435, 4.88896036634979, 4.8875137489956515, 4.889061425181592, 4.884788880693523, 4.887538074017356, 4.890262349341829, 4.88662475921954, 4.889384777177865, 4.895265499321782, 4.8897272684356645, 4.8886002510575555, 4.887737067665741, 4.89183782047698, 4.8902388426663315, 4.887514772968168, 4.889473618227586, 4.890198801543591, 4.889468846969307, 4.886732637277602, 4.883771451389074, 4.888090673546459, 4.886059561654927, 4.884511898590737, 4.890307132077175, 4.889837453838469, 4.8868036734186715, 4.888267175291172, 4.889264278421389, 4.884668653455622, 4.8862261385658625, 4.8882332016574805, 4.88522335434209, 4.884699365234871, 4.88818174602749, 4.890368095871025, 4.893290882306373, 4.888881908817222, 4.890904242866247, 4.884817880849863, 4.884803353223784, 4.885832394538566, 4.889381196695223, 4.888061438305503, 4.884072179571165, 4.887462035626663, 4.887499636764902, 4.885374951609715, 4.886247774425213, 4.886691480655666, 4.891616964757876, 4.895180008517754, 4.888145305193614, 4.883575951865346, 4.889650844613273, 4.885704922525831, 4.887593850804374, 4.8910447753720385, 4.886253299893506, 4.88798307823234, 4.889203436067094, 4.886465182612559, 4.8841493838340595, 4.887894167789005, 4.889666780812245, 4.890020125419909, 4.884214918269774, 4.887284806679432, 4.890167568465436, 4.888094188645459, 4.886866174770188, 4.888304303743343, 4.884243074316748, 4.891860569708593, 4.889425700028836, 4.888873361572367, 4.8909079016128745, 4.889011186758679, 4.888794874621945, 4.886850471504153, 4.886390064301187, 4.892975854537656, 4.889755759236794, 4.88895576431983, 4.883327406415829, 4.885801938155284, 4.8901198280363785, 4.888869013632333, 4.883632081046202, 4.888516163128297, 4.886375978831815, 4.88544074464968, 4.889782277084287, 4.886986440172933, 4.887869002371279, 4.886886308861928, 4.88405161911003, 4.887913174781953, 4.889005470589657, 4.887631434156353, 4.884802688956581, 4.889259151337977, 4.887279897091532, 4.887693397639643, 4.89204938696127, 4.892289615276413, 4.887123229104232, 4.885166306447747, 4.889779435322971, 4.890553469057602, 4.889170091550007, 4.88732627854762, 4.885688605326684, 4.891314206822168, 4.885544407453557, 4.886251725321282, 4.885053143530783, 4.887007832047884, 4.887171848115625, 4.8882234462411445, 4.886725068484871, 4.881858629277674, 4.889023591448376, 4.8878091345037475, 4.89137482151269, 4.89400355419505, 4.889979829515048, 4.8858224754630495, 4.889559595828379, 4.898380093755987, 4.887646929745712, 4.885683242445607, 4.886619603162773, 4.888573045642819, 4.885883588937864, 4.8900679777029685, 4.889392251065997, 4.894158891666682, 4.8892042821726225, 4.885542553741157, 4.8896835152208356, 4.889233448589137, 4.888503155011085, 4.88490572638346, 4.886727742347507, 4.886917499322405, 4.891943091968296, 4.889004676643031, 4.884869160798664, 4.884186736377789, 4.885556111898174, 4.88521288080513, 4.887745212340459, 4.887652223699854, 4.885657039829498, 4.886948457874388, 4.894359161739411, 4.8869482336147785, 4.889571007947138, 4.887078243004582, 4.88788626002964, 4.883983731438829, 4.887077801116886, 4.8864303287548205, 4.886476935419724, 4.892812466414415, 4.890602982479205, 4.890107043813105, 4.885829059033042, 4.8875477229613224, 4.887780292157356, 4.889489077604506, 4.885971762280954, 4.886853466707773, 4.885862810063069, 4.883112026764591, 4.885589662328219, 4.8858170072453015, 4.887647026154205, 4.884125090911299, 4.882276399075082, 4.8926552864488615, 4.883057402442079, 4.889543657603808, 4.884831301189792, 4.886995943737019, 4.886906069873926, 4.887319268908472, 4.884823904681319, 4.886776580153583, 4.885965930432272, 4.881240210232174, 4.883347161658325, 4.884568642776895, 4.884987749548222, 4.88516842078497, 4.885742650806231, 4.88608580162642, 4.899451452319963, 4.8889955112955406, 4.888060171523522, 4.884549235167478, 4.886477142321279, 4.884329115031682, 4.885549788498338, 4.8866869313137915, 4.885480628590689, 4.8866630016970465, 4.888321784845018, 4.8926719993677965, 4.88644197960525, 4.886631484570718, 4.8887428272919635, 4.886616567795253, 4.885806849277059, 4.886921107084715, 4.883000632987346, 4.8863597663809415, 4.889838691913826, 4.887247289591662, 4.891100224824965, 4.886271323907594, 4.8862772919709645, 4.884935569327707, 4.883358004543198, 4.88438442939706, 4.891220386915979, 4.886900822133529, 4.886640111095435, 4.895502261137707, 4.892766148277275, 4.886613803914088, 4.888526411547317, 4.886786575095261, 4.885464962622902, 4.891367365122079, 4.897042206928394, 4.892805949279304, 4.885587335212017, 4.885522650689425, 4.883923468375206, 4.885650048275141, 4.885583313850345, 4.8880950148626185, 4.880687922193256, 4.8818649463429615, 4.8875215310635785, 4.882018348677933, 4.888207537510899, 4.884823155579861, 4.88595527021379, 4.889853099900211, 4.892985388549552, 4.882501997007358, 4.886714077077986, 4.891207513183166, 4.887990332005616, 4.885631340605362, 4.88292725826509, 4.887007511167529, 4.887578402744447, 4.885061699633383, 4.886360881269907, 4.8865302283901935, 4.8846289145827715, 4.886415340217652, 4.8866405543450915, 4.886004268242259, 4.881191816367641, 4.8845509213758715, 4.884276361002759, 4.885732802972724, 4.8869314130179, 4.88808557876919, 4.8891620431648235, 4.884740512685905, 4.886227242664167, 4.88721985138785, 4.883473026742966, 4.885403206448679, 4.886525029052233, 4.887435107260753, 4.882596288113374, 4.883955123216685, 4.882414485712438, 4.885459145049211, 4.889396376391999, 4.886107884375249, 4.888123256466605, 4.886290487164382, 4.885776926504246, 4.8884725548978185, 4.883967584650841, 4.882471464303319, 4.8890112435155135, 4.886168629052414, 4.8880127321343485, 4.8814993462177, 4.88740966623627, 4.885041977154797, 4.886284608801789, 4.8892476284890085, 4.885495347257544, 4.886265179590422, 4.887530820715609, 4.888251990889339, 4.880221210395801, 4.881103036311099, 4.885874927799209, 4.885619759373875, 4.882913254659696, 4.890139650366505, 4.888195963091559, 4.885237460896752, 4.882531195762445, 4.884948128925528, 4.886566796088841, 4.885258455669574, 4.883947694142021, 4.889025869512269, 4.885049631187468, 4.883725825529747, 4.885660682493549, 4.885919662357395, 4.883819460365241, 4.884868932639693, 4.885503905392595, 4.8846136982305355, 4.887927768525387, 4.8899318051891045, 4.8836041891269355, 4.8856306556774225, 4.88537684114698, 4.884916600639114, 4.8860151634243385, 4.883370557040052, 4.886426985967105, 4.888397786019537, 4.885963737824459, 4.8853019660954695, 4.8856235866492925, 4.8893609884526175, 4.885051353181172, 4.88484042934842, 4.885122047992142, 4.880127532178923, 4.881192131063004, 4.885388683208478, 4.8836095214812065, 4.886521789315226, 4.8842884429717595, 4.8871251250926715, 4.883762385938257, 4.883281390459833, 4.8830711160554, 4.881037624316733, 4.88035495990203, 4.888779621523218, 4.886359305607143, 4.884692087173442, 4.884551018420808, 4.885042799133613, 4.8926903520176515, 4.886538330892659, 4.883422049312935, 4.883851746701661, 4.88206198795731, 4.883937036131111, 4.887402994745538, 4.887166278437566, 4.889066413146244, 4.883904771421919, 4.884254830057776, 4.883965604870421, 4.88662496930184, 4.880819235689441, 4.885710506238477, 4.885375406118362, 4.886072851044532, 4.884418308283251, 4.880787314584737, 4.881583032061446, 4.885881040594411, 4.885971721162675, 4.8815866824717045, 4.882692628438503, 4.886474653925917, 4.889629197792956, 4.884246541568992, 4.884024508600165, 4.886836441558552, 4.88740406014293, 4.885584054637588, 4.879154671913668, 4.890627937780897, 4.884144670139788, 4.883966345046784, 4.884799073701709, 4.882630013948853, 4.880887674946702, 4.882606601508062, 4.885131391301199, 4.889152705918975, 4.885369949223307, 4.882046544114954, 4.890444053201227, 4.883090045531123, 4.888980743599088, 4.886244913664088, 4.8841545842594964, 4.882229407339619, 4.8830424960314724, 4.885179002806393, 4.886575420965533, 4.88338429052776, 4.8867662512304255, 4.886834176950719, 4.886485942543767, 4.88271071148584, 4.883838749406919, 4.885583443597053, 4.884530335522351, 4.887866585045311, 4.8889716231847675, 4.883066333557631, 4.878347498931863, 4.8865208263750475, 4.889253999733813, 4.887955631776251, 4.885014962768971, 4.88143658721563, 4.883478271242879, 4.8796612949079545, 4.8857807744076, 4.882173248617475, 4.885775250035504, 4.879845274955797, 4.884433766229568, 4.880598297194053, 4.88573889827201, 4.882366141361924, 4.886646790845682, 4.886412801566349, 4.884006279123957, 4.885601733681988, 4.885813072203156, 4.884378770863895, 4.883844129526311, 4.880886877520103, 4.886757595311206, 4.886764259705871, 4.886057018823378, 4.886618498491827, 4.886823452241735, 4.883414160002333, 4.884428431758796, 4.887995051444139, 4.885184813844495, 4.882223439650586, 4.882367953829655, 4.894810643519662, 4.886208737166302, 4.885063278113888, 4.885742030160873, 4.8837722026998085, 4.890885838540445, 4.885056515629186, 4.888265489868265, 4.887186381236535, 4.883087117803226, 4.881899764680459, 4.882847729459483, 4.88838123224062, 4.8844887577675475, 4.885373623743462, 4.883087084340554, 4.886079028816328, 4.884469685161007, 4.882613144416105, 4.880351337623999, 4.883909061259417, 4.884931755233094, 4.880475906315864, 4.879364107667999, 4.8814036838737245, 4.888045632724236, 4.884759179196425, 4.882659266950322, 4.884456423713824, 4.882861577589539, 4.885005248020129, 4.8800943538608506, 4.88532473586312, 4.88343839606849, 4.883269204531779, 4.882251661338116, 4.883101756815969, 4.8880642662303515, 4.8824881507352575, 4.881356974684446, 4.883155944327312, 4.884137683570004, 4.881851466273093, 4.8851631499065515, 4.88209614354785, 4.8845362129163075, 4.884186774738601, 4.878021831324535, 4.883272732368864, 4.883560849913929, 4.882157306076153, 4.884371809253119, 4.8827970647760335, 4.882357935238264, 4.885413040558456, 4.886880501927328, 4.886395815834106, 4.8845451794214165, 4.885852107654729, 4.887201174250226, 4.887462084519981, 4.885653837370941, 4.8855875237581055, 4.88531482813614, 4.885076191301832, 4.880497058447471, 4.881902220096575, 4.887700922225449, 4.883410251094989, 4.883682695010004, 4.881448437240105, 4.888033206315835, 4.883393773079304, 4.8849203737366, 4.883056713677467, 4.880894734391629, 4.88644985893488, 4.881098135568971, 4.883236484484092, 4.878084539192798, 4.881853833304274, 4.882313135822775, 4.883387023316803, 4.886590620620537, 4.880091016036387, 4.879865336092026, 4.890994801636493, 4.887007593527555, 4.883269314602179, 4.885114427466251, 4.883828227777411, 4.8840825966469295, 4.884470659025331, 4.882146076198003, 4.884320663372638, 4.883616349561505, 4.881396406274006, 4.8819815133320805, 4.882696913294805, 4.88019332952674, 4.881260797462004, 4.883804678081895, 4.882814201205396, 4.883821936377865, 4.880140696904762, 4.8832518383408985, 4.880566241717202, 4.88138683533739, 4.880269601746049, 4.884877205383076, 4.886870222160181, 4.882400548594819, 4.878797563659604, 4.878630482741919, 4.880772095572897, 4.882804837004282, 4.876840873940336, 4.8833784897710135, 4.880887473890596, 4.8840767707026576, 4.88450315865219, 4.885466828038115, 4.882484984723112, 4.881499880101616, 4.885912753483629, 4.880651621523032, 4.883906806371608, 4.887181788389441, 4.87943595481544, 4.879400870650993, 4.883873571570124, 4.884495667708011, 4.880505955540626, 4.88604348490793, 4.883552713668221, 4.886080670967788, 4.894402888334239, 4.885232189488052, 4.878891615492941, 4.890802738247632, 4.8847166804397535, 4.882485078263849, 4.885070979234564, 4.885341919898755, 4.881068615308836, 4.886168498165797, 4.883459027217871, 4.885228336964459, 4.882706112146629, 4.881220020369922, 4.880435084953729, 4.887444675356126, 4.880275794127165, 4.883606631567435, 4.881363683213674, 4.882219357809254, 4.892001352086902, 4.882494677686287, 4.889922981788188, 4.876527083062155, 4.87912829385011, 4.879114045203453, 4.879601807120072, 4.884849183551307, 4.882669151153971, 4.883477535030709, 4.878851221865757, 4.880431164722818, 4.883768538776793, 4.885622372556979, 4.882978566173852, 4.883421796863761, 4.882187946006459, 4.885286848227917, 4.882405939989732, 4.881148514090031, 4.888726532159319, 4.882833931394237, 4.884748372313764, 4.884310741649172, 4.880561606315673, 4.878812483014256, 4.887916960228694, 4.882243049870057, 4.881352780091506, 4.885024105395301, 4.880911248902747, 4.879912388208477, 4.877223167443973, 4.8859409342573645, 4.881856927612778, 4.884818741739701, 4.881485079916166, 4.8792464779193, 4.881372354328393, 4.8839242341099425, 4.883987390297463, 4.883428793971069, 4.878512020343263, 4.8824563918165955, 4.883047870307929, 4.883054527541045, 4.8791653860506345, 4.881386548592962, 4.881483024626393, 4.877513801934385, 4.881576959299154, 4.879500355950002, 4.887360315846834, 4.885507746872169, 4.8804092806321915, 4.88552733288663, 4.887311016958337, 4.878551987126255, 4.883575428175012, 4.883775023459474, 4.879372838418036, 4.879635294142834, 4.881476212852324, 4.881892092950124, 4.882806195115811, 4.8832680052768085, 4.884272099119764, 4.881909223384273, 4.879224132654599, 4.881124326700386, 4.885637307021225, 4.8821231660645665, 4.88141313443835, 4.882994590749667, 4.883365280933803, 4.882603979502958, 4.880999813940119, 4.885334102701446, 4.8839658577813285, 4.882148295543778, 4.8799320599504945, 4.881202084670449, 4.880487596140922, 4.884918365724491, 4.885369048730211, 4.877382380264652, 4.879258310257295, 4.882185010819363, 4.883187886338623, 4.881924126878237, 4.880279179822516, 4.881512844096454, 4.883429418375371, 4.882429749409825, 4.882533462409842, 4.884056838653673, 4.882535398898613, 4.875755272298829, 4.879810711866046, 4.8797444808537955, 4.882830001050636, 4.881408118201398, 4.877597370553409, 4.8859268001580345, 4.882882500416382, 4.884605232596065, 4.879902864472078, 4.881023266729647, 4.8807342597661165, 4.877267885846246, 4.882410957930011, 4.879986001758046, 4.884360129203093, 4.883875515918439, 4.884992321539389, 4.881175070814381, 4.877575161402999, 4.887177997128301, 4.880259834749802, 4.880601233832612, 4.878722834105124, 4.88165644976801, 4.877323618230163, 4.883462948518473, 4.878829147062424, 4.882829521061849, 4.883091810360854, 4.883172204487575, 4.881918691796121, 4.88078068088312, 4.875890831340122, 4.884717880196462, 4.8809994654134075, 4.87969831379068, 4.881810835101612, 4.884658798063057, 4.881249414456945, 4.883558462541754, 4.882431865771758, 4.882270870797216, 4.888345635049108, 4.884024772785109, 4.881036522389898, 4.882146923025819, 4.88041893541943, 4.886065998291634, 4.8830417933926205, 4.8843533146170355, 4.8807156408927295, 4.876934593117767, 4.877469363069962, 4.880579229349417, 4.881626844610749, 4.87978858110622, 4.886224233525336, 4.880464845175433, 4.883539145932935, 4.879660173463495, 4.879413423322651, 4.882541059551705, 4.881879439700784, 4.886310340930742, 4.881735482200563, 4.879064467959063, 4.883190915720499, 4.882046791866537, 4.880064777734569, 4.8795269485954424, 4.8819898856267, 4.881050131148774, 4.880331360301293, 4.878398734654489, 4.881575699707833, 4.8794861087433405, 4.879779036706498, 4.883369973501777, 4.877717966851694, 4.884696844868662, 4.881572615713291, 4.878596985283441, 4.882308693826916, 4.881964837659469, 4.881480035340113, 4.881059855850259, 4.881466029900136, 4.87991038515004, 4.881371803384468, 4.877169705058303, 4.878619223847964, 4.879007026447537, 4.881015018351684, 4.885285379091742, 4.882863851731675, 4.883561216255556, 4.8828247442267605, 4.88464861326192, 4.880799375077516, 4.883976027240886, 4.8795051604350075, 4.8827807042919975, 4.874033670100274, 4.88526269512685, 4.880807562744257, 4.883213335690648, 4.881251465872424, 4.8819426556646714, 4.882550513697287, 4.882326796797527, 4.880195522302766, 4.879196464906025, 4.877781565634018, 4.880578641676214, 4.883901824043276, 4.882008057841275, 4.884475620268657, 4.883291746127045, 4.88320408156154, 4.882426991459424, 4.878742396493763, 4.881981627856096, 4.881113133648581, 4.8805351452256565, 4.877372743485152, 4.878700946285357, 4.880879855885773, 4.884612505927875, 4.877515058534419, 4.88461996962495, 4.879301853481129, 4.878412833327949, 4.8860821169395425, 4.88074059332826, 4.877483991258129, 4.884627356497524, 4.879355169653957, 4.881845145508765, 4.8825776224250195, 4.88047522863849, 4.88003279345484, 4.878982443848907, 4.878904817602516, 4.876775744420804, 4.88302563527513, 4.88209651001662, 4.878992448145426, 4.875136336899046, 4.881575728349111, 4.881732756476936, 4.882767192501843, 4.882707050117533, 4.881014232574866, 4.8767585471971, 4.881412846681585, 4.881274017801017, 4.876005552505004, 4.876892633366086, 4.882388447002648, 4.8829504386175575, 4.88382569835993, 4.882272360876038, 4.882401751447666, 4.879266678366743, 4.879759375388335, 4.881504578277543, 4.883580603105917, 4.884240243059522, 4.880151567959494, 4.879177933821583, 4.877988068323587, 4.876820206354208, 4.877647853793414, 4.885883225791969, 4.8866274056024945, 4.880770239750457, 4.879054187875635, 4.879413386308149, 4.88198653821866, 4.88366300354066, 4.8799943515121615, 4.877473011822936, 4.877269764606799, 4.882917886717147, 4.877771378550847, 4.886460844804646, 4.88147956343794, 4.876472814114341, 4.879616025985181, 4.878827911557581, 4.880270234885218, 4.88182621514658, 4.881366608202331, 4.8805652046328465, 4.8808493487371996, 4.880005732983591, 4.877593911661551, 4.876931572717423, 4.877975572213463, 4.875694929867891, 4.880993041000665, 4.878274708568894, 4.875788166360225, 4.880692242480933, 4.876136581001615, 4.8820076922159, 4.8782390536177465, 4.881211893264719, 4.876539000750445, 4.880591557876807, 4.880692422654468, 4.88096257533351, 4.881817330679726, 4.88120689713895, 4.881472096296973, 4.88332737590679, 4.880839030818443, 4.886053256834605, 4.87939871738234, 4.878553632844982, 4.882236682199966, 4.88153322341199, 4.884042766320884, 4.881639671640887, 4.879526209384635, 4.878378868920228, 4.881762507644072, 4.8798280712810795, 4.876971009875489, 4.87737219434449, 4.885835053302204, 4.879140522816458, 4.877911589262752, 4.880936139195858, 4.883200511671399, 4.879539523135085, 4.879741830958759, 4.879066976010976, 4.880838012403367, 4.877828828207784, 4.874801795108658, 4.875722630158331, 4.883298915252002, 4.8837162895398585, 4.87858778315378, 4.881102509148182, 4.882682976933321, 4.879160420812143, 4.880987281758494, 4.877465157693093, 4.876554133616794, 4.880087707567179, 4.879440255312199, 4.881473335207504, 4.8828212107904685, 4.880939027582828, 4.878930658673207, 4.879511408723092, 4.878035578597422, 4.881618675916999, 4.8817528770872896, 4.879439723883059, 4.878076871350727, 4.877168334106738, 4.878650469432532, 4.881387205895697, 4.881028034580441, 4.88093836610936, 4.87633027247452, 4.879771771468849, 4.882700511325252, 4.8821518978248335, 4.879176446610118, 4.87789345544382, 4.877986997854593, 4.87620853527871, 4.88058149951757, 4.883874451992465, 4.881837406464077, 4.884815131622061, 4.880434714855996, 4.882074334703194, 4.8807928148311275, 4.8778788408092435, 4.878511278727351, 4.881287645440214, 4.877814749742033, 4.87839964483669, 4.886534668048017, 4.8758670983333605, 4.88003292797747, 4.876970880785074, 4.880334193172551, 4.8782255522423785, 4.88001885465164, 4.87825822767611, 4.8801097823003925, 4.885632897974175, 4.877804966294301, 4.876680351596829, 4.878409390285759, 4.883074781171242, 4.883822676711063, 4.881328357666029, 4.882079560195647, 4.876085356089979, 4.879500710686548, 4.8806102173036034, 4.879984855388767, 4.876117373904641, 4.8826430755089945, 4.877534391886879, 4.878174226597075, 4.8782059284030215, 4.876170742722101, 4.894021726424535, 4.881166650325095, 4.8818957610614575, 4.880426722096663, 4.877279795684702, 4.87991272193902, 4.8769203540311095, 4.877817965797405, 4.8866846759972296, 4.877621851721495, 4.882514233372026, 4.87900188815553, 4.876750497726967, 4.877986981136118, 4.881187659613492, 4.874244240493936, 4.873652220868821, 4.873870560915666, 4.8730340681028945, 4.880092127194304, 4.879941023365804, 4.879659189975571, 4.875926956970478, 4.879461099595138, 4.879549141788882, 4.875247807661058, 4.880094632709157, 4.880391037404854, 4.87890945741631, 4.881104579395053, 4.8792778355808135, 4.880437972539445, 4.883506332773373, 4.8804807611210315, 4.874658656390746, 4.88013522198778, 4.879157299225939, 4.877193835826445, 4.879162320626212, 4.8826286944042305, 4.877240219135337, 4.8801082021745925, 4.88018754594722, 4.87641015514178, 4.880455974026238, 4.881664787141277, 4.881403222435965, 4.88218477990529, 4.878655393969195, 4.878454124385546, 4.879823108919076, 4.879071030103961, 4.880209089270178, 4.877660931287499, 4.880678463234276, 4.882147577009129, 4.878633932888219, 4.879052909779953, 4.884439198445998, 4.878687454855938, 4.879392279190316, 4.876147225146234, 4.877050230745158, 4.876729817441022, 4.87688928557645, 4.873394192219725, 4.8821104034350125, 4.878628118197248, 4.876591389040483, 4.8819413403989556, 4.880840938942704, 4.879413950361855, 4.878315360467871, 4.877121665234512, 4.881698898769543, 4.881612475366007, 4.880351043407269, 4.879560752822647, 4.878400349273942, 4.87730165944811, 4.875600884000858, 4.877695599421032, 4.879902070027372, 4.882873013410395, 4.875877940309471, 4.876647968263166, 4.877267172032883, 4.884982820527308, 4.8758598659708134, 4.877015651861262, 4.88114854782036, 4.873831945256935, 4.88053107938412, 4.883477506216613, 4.882211205813662, 4.882754772712494, 4.877156384979335, 4.877634689326795, 4.8823800240557045, 4.875483343832214, 4.877045791983433, 4.878566179639991, 4.8816606804731375, 4.876021442821188, 4.876244624164186, 4.884500835168048, 4.881254796845544, 4.879030416180749, 4.880381595405143, 4.876166858753929, 4.877781265491608, 4.879206041570368, 4.87472932566156, 4.881027274407534, 4.8765246989825055, 4.8771030504940995, 4.88092682895665, 4.882352528630773, 4.87600772178738, 4.881591380218642, 4.879460664641425, 4.8822219413325385, 4.876391019524759, 4.878740521425545, 4.874997994361457, 4.882141842654649, 4.878082690731272, 4.879728514027388, 4.877491437238713, 4.881340052745578, 4.876487291034387, 4.876394734437431, 4.880138255717935, 4.879504442396472, 4.87885685546749, 4.882518948611714, 4.877057979903683, 4.880624325986348, 4.879510276897854, 4.875734538181817, 4.877003984928515, 4.87696969247046, 4.879130579642732, 4.8765600984040605, 4.87750797542513, 4.880584323385136, 4.8783265031592125, 4.880598988061707, 4.877778038550192, 4.877166824992782, 4.879955225389258, 4.877804770047979, 4.878551097632145, 4.880550164000853, 4.8792070984732945, 4.881054208559378, 4.87683778475199, 4.8771735523141455, 4.8792020944800445, 4.877038788689898, 4.883346965655628, 4.88000128732545, 4.877575015133439, 4.872865512688559, 4.884946502472053, 4.879006664925486, 4.876653424897878, 4.879177674716667, 4.879270515808613, 4.876560618133768, 4.878244517514341, 4.872288607766842, 4.882238497815488, 4.877978262672235, 4.875758439092874, 4.8741799990680885, 4.87921470556521, 4.877638238054572, 4.876041117161921, 4.874202802352676, 4.884201932284189, 4.872549761649689, 4.873116260635439, 4.876703430699704, 4.8808980831732836, 4.881058995441622, 4.876658662957232, 4.879889133931854, 4.877998299482327, 4.8811259456330465, 4.878482004469369, 4.876245032853044, 4.879202805483028, 4.8808940791303, 4.871828864077415, 4.881241576410213, 4.873670480546879, 4.8759310333285235, 4.879649811204304, 4.877467292144459, 4.876206105241595, 4.879712688236835, 4.878087191044429, 4.8756599127119475, 4.880547668291051, 4.874261027271028, 4.87851721955115, 4.878652017340036, 4.873469196443047, 4.87929194665986, 4.876578326142401, 4.875520904901589, 4.877306727262438, 4.8802266449446225, 4.8766955072289235, 4.876416224853355, 4.876440571850956, 4.873856637543354, 4.8826782657180745, 4.875135925413948, 4.8796863439638605, 4.876189085076889, 4.876425537031567, 4.872304054700588, 4.875500727377504, 4.87796921330988, 4.875204494511025, 4.881840123267099, 4.882313095773929, 4.881928769435349, 4.878596206103598, 4.876152472354302, 4.8796583121887185, 4.874397232276524, 4.875460089521731, 4.879316802186306, 4.876825238271428, 4.882327705072037, 4.881331714556425, 4.8762123727938125, 4.878239674200561, 4.878069144500722, 4.875998184913764, 4.879118976685161, 4.876758669155093, 4.879135640686837, 4.875441583381321, 4.877056482807846, 4.875251916806786, 4.878401432452485, 4.878490699013516, 4.878288131281018, 4.87923950670043, 4.878021728941507, 4.877014341004889, 4.874652923521615, 4.877556745785902, 4.880245521592074, 4.880609152621558, 4.877222251778119, 4.878549965958511, 4.878343271706017, 4.879806191041067, 4.878782918861959, 4.8748601112180605, 4.878902830261059, 4.88018095551371, 4.881754024467238, 4.878496170546814, 4.883513100985747, 4.875328979899095, 4.875840870501444, 4.873501716297033, 4.87576970601616, 4.877233929921063, 4.877332748868315, 4.880519729967031, 4.8790310609539045, 4.886706070546387, 4.876586749538716, 4.878038175747048, 4.873266192737751, 4.876618117662481, 4.878794658311316, 4.876528919533299, 4.8790285936574795, 4.877635058761568, 4.873226337665663, 4.876901901762282, 4.8736204342579255, 4.875208917681047, 4.8847538403254, 4.879062946006951, 4.8745481683250045, 4.874811706574867, 4.874818369326092, 4.877939487150487, 4.873582045976019, 4.876249340587028, 4.876731302829141, 4.872669051171272, 4.873216508383218, 4.875143611900692, 4.878344951789799, 4.875285397952778, 4.87557917650765, 4.8790952980325, 4.877822489464047, 4.876306770125775, 4.877345991982294, 4.876481815231875, 4.877212562682844, 4.875853165745306, 4.875907187622886, 4.875926358190947, 4.874457790693884, 4.875299302424788, 4.878859702748531, 4.877893619370224, 4.879417371575588, 4.878878126007417, 4.878709044003213, 4.8791609201171555, 4.876073682612212, 4.8794363465139154, 4.879199149110635, 4.877902246394827, 4.87686238244321, 4.877394723588673, 4.873685222891103, 4.875967036950691, 4.875418773854677, 4.880693845985055, 4.8755208862279815, 4.877611099159833, 4.876444328215287, 4.872035179522335, 4.879717821698935, 4.87851761184569, 4.87497688914449, 4.876127304513943, 4.875075142569085, 4.878363334108148, 4.8794468788861, 4.874073593858602, 4.8781975587903394, 4.878308750360156, 4.876317230757753, 4.87422753285022, 4.880634581127075, 4.874706101254188, 4.876718660107022, 4.876037388103281, 4.872481170316151, 4.875539007650388, 4.876172030006255, 4.87420813859425, 4.876804290817658, 4.877420824719768, 4.874266785937097, 4.87666613382094, 4.873877941650304, 4.8773068558521935, 4.8755035952023205, 4.874514644236225, 4.87788650125757, 4.880471017370821, 4.884834271992571, 4.87778723451474, 4.8778894234520855, 4.8781109972014525, 4.877232475777203, 4.872010191224417, 4.872290166974225, 4.874549083185461, 4.875857665311029, 4.879428453971591, 4.880479917692477, 4.88108705124236, 4.879337626548933, 4.877538703927539, 4.871373200660406, 4.877933158148943, 4.873324387300975, 4.877764469150477, 4.8780480946057665, 4.874162789593614, 4.873188813720729, 4.877146653584584, 4.874840414695704, 4.872234915004045, 4.87576916997397, 4.876940039161379, 4.875271400570996, 4.8800469466081555, 4.877819306993683, 4.874126122271014, 4.8774172669655815, 4.876776208252183, 4.873159342941997, 4.880982777099114, 4.878862970055377, 4.876986981613283, 4.877059675410258, 4.871919172461773, 4.876085556860671, 4.876090391116562, 4.879690991938159, 4.877105636386629, 4.876807806732643, 4.877811266692811, 4.8780073453838915, 4.875225881633066, 4.876894014588821, 4.875177451959664, 4.880480030247755, 4.875211955167856, 4.878814067765267, 4.872129030741556, 4.872478896150643, 4.875350168562914, 4.881747739309815, 4.877037137774806, 4.872492885265663, 4.875911006496036, 4.880317156760944, 4.8799972602772295, 4.873098168115961, 4.877479087584577, 4.874682313405616, 4.874196323272896, 4.87714807212112, 4.877009901682458, 4.872465881963096, 4.876416137516003, 4.871798801713188, 4.877623411057565, 4.877406573469068, 4.879521234964551, 4.87748984358578, 4.870745034301888, 4.882035443145787, 4.879907690246222, 4.877491034646218, 4.8734186127208785, 4.874899663552156, 4.878790663071631, 4.876017484486208, 4.874710688719404, 4.876047017234727, 4.878739869563221, 4.872684980586621, 4.871788355105764, 4.872621134088736, 4.880159776267407, 4.877379443557271, 4.876794395946247, 4.875121581716784, 4.8764894056171295, 4.878360200998037, 4.874930352893474, 4.875651929047, 4.875254229276658, 4.878020811318395, 4.874262437551596, 4.8724778666724715, 4.878955899384194, 4.879936440863045, 4.879415677296445, 4.874798674600328, 4.875170778518994, 4.872710120622829, 4.876014385428445, 4.875953356111815, 4.871112011198398, 4.877663009634702, 4.873168661339308, 4.871422220252026, 4.873263282673667, 4.877293469364722, 4.874620146003233, 4.874202216509319, 4.8762635591504395, 4.878631437829345, 4.878297485530143, 4.874433490601719, 4.876481119055365, 4.872637012887542, 4.874955097218085, 4.8743171548875805, 4.874104758980359, 4.87254989038207, 4.877765202895648, 4.878181230892952, 4.877294131748218, 4.875040755787153, 4.872193853429819, 4.875990884647868, 4.875237432340036, 4.877115351466735, 4.874729990406428, 4.875594601111743, 4.875802350783957, 4.877137072494753, 4.875613143063033, 4.873620013053658, 4.874813412610367, 4.87435678759241, 4.875192379028404, 4.874090042594149, 4.876227146529944, 4.874605100129533, 4.874314987614438, 4.875766450573115, 4.875433936050265, 4.873181144352602, 4.873460633008294, 4.870148993877027, 4.879681669712478, 4.8724782366034, 4.875005470495405, 4.8770690616299275, 4.875879802384411, 4.875853119285727, 4.875018557632392, 4.876853492915124, 4.871551160542852, 4.877052810251552, 4.875401855577568, 4.8741198149109906, 4.876877106075552, 4.872675985100811, 4.8725527427787965, 4.876049597732399, 4.875043820423461, 4.872923096546609, 4.878245899321842, 4.871285506643931, 4.875742474877947, 4.883565914439204, 4.872657872348869, 4.875074911915177, 4.8800474948771875, 4.873017933076925, 4.8763427485385336, 4.878460294636355, 4.8774725792038565, 4.875888748017545, 4.87152572346925, 4.87915907454865, 4.875823426674879, 4.87241574846596, 4.87870330718575, 4.8766954857532525, 4.8749346518246135, 4.8782652203388555, 4.875854829305011, 4.8772836915081985, 4.875878106196305, 4.885881679710643, 4.877080890136312, 4.873044925011184, 4.878104424063357, 4.874173598477171, 4.871610421524857, 4.870520085988893, 4.87766524350298, 4.875076846561612, 4.872500346841608, 4.875243307971574, 4.8726779168690015, 4.877653221870409, 4.880726608404364, 4.876397984934281, 4.875564527529125, 4.873540370239511, 4.873620337029213, 4.872093733425678, 4.873073738193736, 4.88165043389805, 4.8733533253899886, 4.871584616178698, 4.87632932968482, 4.872727981076806, 4.874896514705224, 4.874762718386735, 4.8767923110067155, 4.878614043340106, 4.87292558247668, 4.873060488926295, 4.875940592159766, 4.876884428160397, 4.874141349087862, 4.874770157237202, 4.878293500458627, 4.874778358891655, 4.8782594872279885, 4.872423812283962, 4.8719479781456325, 4.872416351637576, 4.875974453440887, 4.875731111502939, 4.874636425448985, 4.873214994792589, 4.873974974881583, 4.873240347643235, 4.870774130719681, 4.875260646193322, 4.873810290004107, 4.8728394152216215, 4.878228044530126, 4.873600721099495, 4.874304150763494, 4.870682589587975, 4.872702550688006, 4.869155897868691, 4.872277085053836, 4.874159648801747, 4.874336620327973, 4.872319544993024, 4.879065870401678, 4.876430721851387, 4.875507399344197, 4.873431737350899, 4.876082535083835, 4.876992394126605, 4.876464448107312, 4.878462249935616, 4.872469249618014, 4.874892316957498, 4.873170407489525, 4.873489749596257, 4.8749338151298796, 4.875980233425843, 4.877421422998398, 4.874105851876311, 4.874854831682148, 4.872357800261458, 4.874445851742424, 4.873532858292431, 4.876310288185614, 4.876074871808276, 4.8752858730475115, 4.867060720918872, 4.8711367221763435, 4.87015471198728, 4.87518948209881, 4.8745141228893125, 4.876985994463654, 4.87521200896136, 4.870367805315352, 4.87124425522577, 4.873017972825955, 4.872224031481356, 4.872645891603508, 4.8730723194815635, 4.8762275370995445, 4.875147197781667, 4.874206192314338, 4.875474640561881, 4.86845931001021, 4.877465374068555, 4.8768489358704326, 4.8776817615789225, 4.875475481796061, 4.874455269799084, 4.877957331737472, 4.873337750148709, 4.8743076471304025, 4.876964576350434, 4.872049083802852, 4.876275688320385, 4.872022709000052, 4.871628843196575, 4.876487583044419, 4.877560286669763, 4.874989021273588, 4.872445143082138, 4.873219353393701, 4.873365511008752, 4.874204920794351, 4.874709383573585, 4.871067827394779, 4.8750599915735275, 4.875831340791805, 4.874842629633223, 4.873638935627744, 4.8767196275927125, 4.873285880915011, 4.875851354311065, 4.873108597597691, 4.873128087745342, 4.8735419861271945, 4.873672741050845, 4.871616797645923, 4.871298728165732, 4.8711698271686865, 4.878329031726473, 4.877183811839664, 4.874938980293798, 4.869821741530314, 4.869501427135592, 4.87629583640984, 4.875786171636162, 4.876590025803714, 4.874967899765417, 4.873461408647975, 4.882527800902124, 4.877380926097123, 4.873905326900107, 4.876345548839435, 4.880433175384672, 4.876589055757677, 4.871982063625364, 4.875629006149305, 4.8741871449576895, 4.873092608184948, 4.8750938265376345, 4.872502352452885, 4.872444415011358, 4.874392696069757, 4.870089522378206, 4.8717736698334555, 4.872745620659822, 4.871609218355129, 4.87455443332451, 4.881562148633206, 4.872761750961734, 4.876432194858187, 4.874524973220588, 4.872601988191653, 4.873410481498906, 4.871160286069179, 4.875072665558092, 4.87455996996937, 4.871510840015833, 4.87502034865817, 4.875608904618582, 4.870040316976089, 4.873400479209407, 4.87131893819229, 4.870537851773073, 4.875531094645009, 4.870379651583243, 4.87398566247912, 4.879410938030671, 4.871205252199404, 4.872242220774976, 4.873601174677449, 4.87421272047833, 4.878644234698019, 4.872361646705415, 4.872200138137295, 4.875125514144408, 4.873902659008153, 4.87418121785598, 4.8725018456341385, 4.875252926077039, 4.876871227948046, 4.874583585628568, 4.877701915068637, 4.8723638849543764, 4.87112283462764, 4.873998633468874, 4.874780781812239, 4.872318036859918, 4.869494823996346, 4.874927425174318, 4.872997246600801, 4.875121758460759, 4.87678078617055, 4.876722929185365, 4.873922571487194, 4.877947821428322, 4.8718253111759084, 4.8745604869282415, 4.8700951463508675, 4.874075725622421, 4.876295153434457, 4.87582645354064, 4.875573630984016, 4.873373983408131, 4.8724451004498786, 4.8742235685973885, 4.8782370433924935, 4.873087222665182, 4.8725827476393295, 4.871777650254194, 4.872885344880645, 4.872080694278358, 4.870925537537256, 4.87182518280815, 4.873729236036195, 4.874297281182053, 4.877634903385987, 4.870388850585654, 4.874107676134566, 4.8733854430758115, 4.874153100814608, 4.877753938591441, 4.872006460574956, 4.874756926405143, 4.873586941798256, 4.874962705025886, 4.8698996776274, 4.876459559755107, 4.870003201156562, 4.874609534382777, 4.871415118845145, 4.867262959937601, 4.868257313085359, 4.875895829855958, 4.872539379539305, 4.872303681846516, 4.8751424146608775, 4.875098842159302, 4.872496339530395, 4.87237451521816, 4.873226537895582, 4.871152546661054, 4.874967390411733, 4.872802019375905, 4.874122413210296, 4.874178345987059, 4.87058520864645, 4.8719790078553835, 4.870900729481486, 4.874550903972329, 4.874626623903223, 4.871934993970809, 4.872930876723126, 4.879532477396447, 4.872190150278653, 4.873765372765896, 4.873958710487456, 4.872640852628831, 4.872644025148028, 4.87262775051053, 4.8707288392653645, 4.872703705146018, 4.875001009848864, 4.870697632397111, 4.870400485064704, 4.874950985458582, 4.8672891757934105, 4.873998479821022, 4.876191872600987, 4.872091087197959, 4.876330041732657, 4.871633222271976, 4.873378052751205, 4.873962990167035, 4.871377058245535, 4.872580582740281, 4.8720332674534275, 4.87205931976932, 4.87179396069852, 4.873051985274331, 4.868015943036673, 4.870579760628462, 4.875362380510616, 4.872962750116166, 4.871956672365601, 4.8743153017316265, 4.875637218801938, 4.873042958141887, 4.8687208574284995, 4.868455249194547, 4.8751912691209, 4.873483956847134, 4.872064412698553, 4.870823910408477, 4.874178553326846, 4.875070277288404, 4.874856809646625, 4.8741296341281775, 4.870038881593857, 4.873614766122831, 4.875562041929825, 4.874387898774053, 4.870861685526792, 4.86768468591506, 4.868634398316141, 4.873427702215145, 4.876137463002402, 4.872514728675794, 4.872303129197826, 4.870847675056124, 4.869604046747565, 4.8734374027215095, 4.878098463646387, 4.872142898300096, 4.871002060128176, 4.87100724842686, 4.873097631523221, 4.871939274038934, 4.872840494237469, 4.876724474689076, 4.868091221169982, 4.871235060648479, 4.869563555596973, 4.872857754434366, 4.879387741422947, 4.869252851608274, 4.874918875136464, 4.874839974141978, 4.8743393460013555, 4.872838358378399, 4.873909029532871, 4.86905822282076, 4.868755773013776, 4.869986256139365, 4.8719144346127745, 4.879511469453178, 4.873355505483192, 4.87069115403948, 4.870194232131178, 4.870625644695352, 4.87648874404163, 4.873700285849539, 4.8696098538708235, 4.871618345868539, 4.869998143637147, 4.869345877183852, 4.874579992111547, 4.866305430865584, 4.870813739726463, 4.874518134217171, 4.876875053622792, 4.87437502666476, 4.871552606746426, 4.867616502292008, 4.870119155190206, 4.870821551928194, 4.87025674331399, 4.871778497223586, 4.870683794429659, 4.875613575606861, 4.872644148793035, 4.870078126653307, 4.875301849467105, 4.877440776740249, 4.871811969587697, 4.881080111838916, 4.868137863551239, 4.869229163287926, 4.870623323279071, 4.871747072855699, 4.869532460641937, 4.869900822199345, 4.871663721446312, 4.872382264259963, 4.87218546962051, 4.874580665362241, 4.871723655481376, 4.8730440846908625, 4.876239913670084, 4.870710012684083, 4.8724096572001105, 4.871994443017776, 4.873530184057673, 4.871694793576704, 4.871088489727097, 4.879440086147253, 4.874485008254422, 4.869482280512233, 4.872978741139543, 4.8731460791027015, 4.878334561942263, 4.874293415905895, 4.876433501828464, 4.8745979420518175, 4.8705685512013535, 4.869681774467216, 4.867290402435334, 4.872094511668264, 4.874594760659529, 4.869071695937245, 4.871775635187841, 4.868999359888957, 4.875598279578704, 4.871494751758485, 4.8809180699746495, 4.874304784073432, 4.871230691784843, 4.870053209462301, 4.873499774514012, 4.872587638153698, 4.873224267727371, 4.873573641016959, 4.872774911355135, 4.87175049557372, 4.877550155798697, 4.873941471991158, 4.876103932392193, 4.874578629756939, 4.873774920972397, 4.873053038568106, 4.86877162403108, 4.875162645776247, 4.871063956735748, 4.872622835854185, 4.870210564859454, 4.867669519903969, 4.874100541231148, 4.87071978688781, 4.869999715442766, 4.878789618957915, 4.872386496437322, 4.873434904776877, 4.872568868535334, 4.871095642683064, 4.871407100614057, 4.870033224502471, 4.875790903439124, 4.872006136465666, 4.873160553473848, 4.876133085215463, 4.868060945008745, 4.870984326585025, 4.869267390064339, 4.874219296459018, 4.868337881794696, 4.870173458790782, 4.8710947310362, 4.874217636020154, 4.87526621042921, 4.869740515833946, 4.874102875582413, 4.875673165827103, 4.8710354965480205, 4.884938204457171, 4.870041995297401, 4.870615065355061, 4.8735700497295, 4.872505749953637, 4.869621138064679, 4.870662262423535, 4.871572439893466, 4.866356753508126, 4.869758257729312, 4.8729980414219884, 4.868797021305049, 4.869449421589559, 4.86941544500553, 4.867427805162285, 4.871255786123619, 4.871612551526348, 4.868807894083222, 4.868509377075989, 4.8724928855269996, 4.874939277465425, 4.870985124811169, 4.872359961054305, 4.87268435119171, 4.873744868831358, 4.870346494792458, 4.870978647023967, 4.8716751181050055, 4.8692283520453135, 4.870641333189764, 4.8726939649040215, 4.870316013564645, 4.873838454432825, 4.872825220039468, 4.870456580717456, 4.870568457075555, 4.867492246550515, 4.875647838335324, 4.8685330345915325, 4.870784297951387, 4.868577866071195, 4.869519321542233, 4.86835888800074, 4.873154519380572, 4.869752714996135, 4.873045934152901, 4.866326934639968, 4.870778533663011, 4.872237094989573, 4.876308293110259, 4.887241423089838, 4.866925662605977, 4.8752536058477185, 4.871441177222061, 4.871624011071759, 4.872426553269361, 4.87118673946661, 4.872101543720343, 4.869833799356339, 4.8716599059144965, 4.875446836456634, 4.873572240176624, 4.870100397089605, 4.870214959043702, 4.871209602274218, 4.870217017021648, 4.87018273913747, 4.872281322554316, 4.8740146930075126, 4.865752647099531, 4.868393841220081, 4.868365515518146, 4.866772835440154, 4.8701702082659875, 4.870504783918053, 4.868637100538202, 4.8699861034853456, 4.87171676031378, 4.868186373604303, 4.874287877293421, 4.868232648940796, 4.870371308492645, 4.866588866402201, 4.8716974797562225, 4.8723523558959725, 4.869100483915967, 4.869087163095927, 4.8695992134507415, 4.871151613325829, 4.8738601926608665, 4.869785358656015, 4.86819681718138, 4.870749356892461, 4.875684828460629, 4.8710051170002595, 4.8704132022535145, 4.870079618638329, 4.871042601634858, 4.8675760547297795, 4.868265460168976, 4.869648959166276, 4.890410328979522, 4.875006949063424, 4.872426510950098, 4.87615375002991, 4.875811401537209, 4.872807805544758, 4.871801801906782, 4.87009280605811, 4.870006561783095, 4.868779246737086, 4.870432755805178, 4.871473523560568, 4.8699636209749215, 4.868819585998046, 4.864235003222961, 4.871187479135301, 4.868747482779494, 4.868033261879626, 4.8707726924287815, 4.871994661318065, 4.873649346472044, 4.873381451494098, 4.868452170620211, 4.871725446690947, 4.866756157478525, 4.870895216068838, 4.868887673499541, 4.870393020014079, 4.8723015353616015, 4.870482395736966, 4.868168751657727, 4.869470453291661, 4.8761394852547815, 4.868958968484045, 4.866709107076312, 4.873262596763843, 4.873034775645816, 4.872422524407533, 4.869380680878559, 4.8693921650838075, 4.8738169797482, 4.870339345244184, 4.868789367274793, 4.869366342044688, 4.8683098606634605, 4.873950141578043, 4.8760607418105515, 4.868799755262109, 4.868418514908282, 4.867185135950865, 4.867784506292077, 4.877157550563388, 4.868319594221155, 4.8658666617409985, 4.8657506773339305, 4.866427498771076, 4.871434525828998, 4.872395989561336, 4.869689000934914, 4.868107984446851, 4.8715674179515025, 4.8736323819441605, 4.871599177458849, 4.8703243922668955, 4.879546450840509, 4.871547026300382, 4.872402331961139, 4.871184039639347, 4.871333662866137, 4.86729514104254, 4.866337749281432, 4.873537281411677, 4.8726121858398965, 4.869610967001289, 4.871794540751318, 4.875082145486912, 4.86610223426243, 4.869283647406713, 4.871521161677879, 4.875686781198304, 4.871064378218231, 4.869120150671152, 4.869576232627699, 4.8682255192496555, 4.874676698832993, 4.869667190539026, 4.868707946501106, 4.87087905352704, 4.869938694960232, 4.8698705510441105, 4.86641108957213, 4.867990639630513, 4.870655878600324, 4.86708732515369, 4.868957750925508, 4.868657791787086, 4.871120013870717, 4.877012141393729, 4.871778110689406, 4.870844712226174, 4.867602015886666, 4.866280367269882, 4.87078007421307, 4.867930860925965, 4.871633373323453, 4.870542620037134, 4.876653013962657, 4.8715166367591065, 4.870497978688806, 4.870099863717517, 4.869630422774872, 4.870759590265296, 4.873163621202547, 4.872581852915544, 4.876238023125749, 4.866662229839434, 4.866635285869303, 4.868643848860251, 4.87036421473595, 4.8717204492722646, 4.869554396125471, 4.871629822474899, 4.872054070213943, 4.875284493634418, 4.870093198833526, 4.869577741292866, 4.86831508572359, 4.8714283688282425, 4.883574794481368, 4.871145538766297, 4.869473270504819, 4.866343336046251, 4.868818396482817, 4.874434596545968, 4.872588545329831, 4.871560127801222, 4.869708217001067, 4.869096239693333, 4.8755668651844255, 4.8709052728260795, 4.8723187609667455, 4.8686484974357285, 4.867947880696596, 4.86884338232258, 4.8715697593703435, 4.869469322775382, 4.866819717023979, 4.870661287658099, 4.871247074144286, 4.873974766389328, 4.873208316359507, 4.871047326275834, 4.870292153806208, 4.869572511169206, 4.86641282948647, 4.867617576127438, 4.869354232265233, 4.863654658958857, 4.87133161678125, 4.872052040831398, 4.868468031549031, 4.8697753591890205, 4.870444190947687, 4.87282555828182, 4.873485765133267, 4.872306316951915, 4.87042234342099, 4.87065082796461, 4.870644207284343, 4.866442690629059, 4.868535153574766, 4.8726184426018655, 4.867651527210269, 4.8699051775274205, 4.867730669330081, 4.869659971964689, 4.867829865358016, 4.869908588237548, 4.869810967632274, 4.866518517037092, 4.870744716270055, 4.870438687177165, 4.86766088548881, 4.86958602758432, 4.87079343123614, 4.871234287326695, 4.867328945170412, 4.870837760196499, 4.870392515096736, 4.870729700823949, 4.8714612543176035, 4.870607001339742, 4.873124851777993, 4.870535290392778, 4.87091987980024, 4.871321490088564, 4.871046225262024, 4.869763167640923, 4.867003765437988, 4.865820490892989, 4.868163736571967, 4.870183056544276, 4.868441037202407, 4.868502186509565, 4.870601927753414, 4.87204928190361, 4.873277848611499, 4.870355244063323, 4.870417141895517, 4.871276254442482, 4.870829499332773, 4.870484913860688, 4.868293321573509, 4.871807775154033, 4.870084851606413, 4.871053158170616, 4.869381464231438, 4.870241111708988, 4.869566143531388, 4.866784099462445, 4.868823869348856, 4.871806784568956, 4.866528796830537, 4.873652644909261, 4.871912050283545, 4.870884588241756, 4.869992890746923, 4.86681701379481, 4.869221727949304, 4.872598417297388, 4.867563902495437, 4.870236014583549, 4.868607361720791, 4.867995096694649, 4.875091452559902, 4.868952032015795, 4.8694500891579136, 4.869586261823086, 4.868302636144268, 4.868557284353004, 4.868298895604449, 4.8667928675727286, 4.869966072802803, 4.8694652268671845, 4.86638625067235, 4.8718944098520875, 4.873138670057887, 4.8680085766011185, 4.868812152527733, 4.870451542952725, 4.867990273198098, 4.868637028894723, 4.86906168986896, 4.867059592114332, 4.869389506206707, 4.866760407194754, 4.868883071247934, 4.867543369280285, 4.869818132079203, 4.869537886325622, 4.8711962590393165, 4.86833836795691, 4.870592261859232, 4.869870614257359, 4.870520323784891, 4.868079772814437, 4.8727446438532676, 4.866593290882355, 4.867126735719362, 4.869333094218961, 4.867478660149306, 4.867265561937012, 4.868163594496195, 4.866344331475189, 4.8702154229960986, 4.868187676133039, 4.865684098088461, 4.867836935114436, 4.865778573116369, 4.86655067537035, 4.867832136611613, 4.866699623835254, 4.86711325853672, 4.86642949304311, 4.872569108370262, 4.870228145752439, 4.87025077294666, 4.865175362970013, 4.877315782677709, 4.868248357996053, 4.866261086125725, 4.8705591023929555, 4.870561630464071, 4.869397147433201, 4.869671672414744, 4.873084704293097, 4.864079276404846, 4.868992287436451, 4.868623627690706, 4.866750796073776, 4.8695135159580145, 4.870968294710691, 4.870100762134943, 4.868509513386211, 4.866836904904544, 4.864823133751895, 4.8713732817892685, 4.871457779493784, 4.868920776521505, 4.86489140959077, 4.872936590472593, 4.865951254867949, 4.868221140294204, 4.868374502548532, 4.868201547466637, 4.867020166925346, 4.872569531435725, 4.86931175063579, 4.870658343641631, 4.872640064930746, 4.866485342663595, 4.875224010889733, 4.86820766898299, 4.868965996109278, 4.870891286038018, 4.875608254274207, 4.866333779145374, 4.870142190249129, 4.8729136159721875, 4.871251617479516, 4.866713894507275, 4.866864012956652, 4.8781273869157085, 4.870174535204194, 4.871746109329839, 4.868571040776198, 4.8665784267947405, 4.877930345272373, 4.87288230120622, 4.866261212834574, 4.866579356228057, 4.86995733411254, 4.872912241084875, 4.869070558873629, 4.868596934354847, 4.86854863689747, 4.867430109224468, 4.869198638506836, 4.868779787812099, 4.876619950823848, 4.869713046585316, 4.867036793189593, 4.867404610938505, 4.8690533151200786, 4.869419451845436, 4.863887511757739, 4.869312402161099, 4.868746896426712, 4.866248781168714, 4.87178070076389, 4.868475649593316, 4.868928318100201, 4.871106056302924, 4.868824807128551, 4.866434391495067, 4.8662618957337, 4.870731301308313, 4.867800058119661, 4.869015404759705, 4.866239716355972, 4.867441683409594, 4.865460553699748, 4.870514877713618, 4.872527798701813, 4.864851662795977, 4.867759697448449, 4.86657460836804, 4.869532762101648, 4.87168307251429, 4.869845990897454, 4.866824201570276, 4.870062893158941, 4.86971922850513, 4.864553047727723, 4.868634285980704, 4.869627092459322, 4.86800793124644, 4.865976124382799, 4.867568523881105, 4.872852872797996, 4.867136059946814, 4.871847434474884, 4.8672550913983565, 4.869349363334406, 4.867163352182308, 4.868504015337888, 4.870029882434873, 4.868320639023381, 4.864034054233341, 4.868380820810917, 4.867743258408462, 4.86803425464115, 4.866586725949637, 4.868859413498431, 4.867993534649953, 4.8670468290157505, 4.869900527337438, 4.872714279943045, 4.869648871996775, 4.8669589033104845, 4.870344915611542, 4.872220179175594, 4.870338022389994, 4.868845817534439, 4.865751341660269, 4.8711829640873034, 4.8714130509696725, 4.866658260060272, 4.863643504177185, 4.86653182619333, 4.869646353022427, 4.871382111931133, 4.8705333289017805, 4.87233630274312, 4.869842130370431, 4.871604081529275, 4.869401288685519, 4.867550249771119, 4.8689846926759595, 4.8676957090360595, 4.870303870511201, 4.869178384371407, 4.866966892883562, 4.869075827764119, 4.8698166649741275, 4.870148179308534, 4.8655537002935825, 4.8694148818495515, 4.867498984826948, 4.864998587816855, 4.86890552911923, 4.871586647350967, 4.868770848641202, 4.866928460845315, 4.866169597993653, 4.86798281104697, 4.866965906777656, 4.870058842146005, 4.8706247391079724, 4.866939233614349, 4.8724091566476115, 4.867738121384052, 4.865666721123972, 4.8683710319897395, 4.868982199214647, 4.8717890549305976, 4.868118849178918, 4.870251278134416, 4.863480177850544, 4.866520314484861, 4.867458428775085, 4.8706596154281705, 4.869100486652651, 4.870189288641885, 4.8681487012367715, 4.8701372103555, 4.871140663600055, 4.866421661572465, 4.863847655218466, 4.868764960297114, 4.8679753582391605, 4.869426611558714, 4.869646457344707, 4.868125947568265, 4.867451741159488, 4.866164616023559, 4.872160380857265, 4.866685745534573, 4.867172176051509, 4.866448704455129, 4.867822078063423, 4.869794968249989, 4.8690876041699855, 4.866905482798787, 4.865641169079433, 4.870186557628341, 4.869763580783998, 4.872254214661002, 4.863472549054174, 4.868322157673504, 4.868171053065688, 4.871343592276021, 4.8689294973893515, 4.868631169705307, 4.867477244440202, 4.865202140361628, 4.864166378807597, 4.869630838941823, 4.873753950389634, 4.870777907059189, 4.868058417775575, 4.870469688001942, 4.86834251331251, 4.865850061497463, 4.868609111919797, 4.868641091044623, 4.869484309750527, 4.8684067905055395, 4.8689483876682464, 4.865055457473357, 4.864593775900306, 4.86410545554901, 4.865229474167663, 4.8708989847925075, 4.867508699554054, 4.866300926337993, 4.866254148704689, 4.8712019281899845, 4.872011393281876, 4.871013030133204, 4.863161294267946, 4.869233719286415, 4.86452440653256, 4.869587328160112, 4.868352748654777, 4.870950833880134, 4.871841102139552, 4.8677152268244, 4.871451010662382, 4.868418207904353, 4.86808461231651, 4.866440841289356, 4.869934472065768, 4.8686823433764115, 4.869113878961553, 4.878597687734912, 4.868881090571977, 4.866419777411146, 4.867118232520246, 4.865589681573114, 4.868554920529836, 4.868383146740075, 4.867649866667472, 4.870026644986345, 4.8710405258090175, 4.864327517682009, 4.868602432131847, 4.867005574051518, 4.868834939516152, 4.867425471120217, 4.8681035390293745, 4.8703724060546465, 4.871551892173205, 4.870940334576388, 4.862749996909153, 4.867472018123296, 4.867639503569978, 4.867244780233588, 4.8658203451854245, 4.8688210006679205, 4.869441298237268, 4.869086970065674, 4.867834668839321, 4.866050355234029, 4.866695879463817, 4.868598335934246, 4.867426434844175, 4.867127094063669, 4.870774398752582, 4.870416563089646, 4.865746029871905, 4.862759066978472, 4.869221080558012, 4.865993830910454, 4.867916913410592, 4.868190717747973, 4.865210226844352, 4.868759635030517, 4.868031097257806, 4.865862762361704, 4.8634852246521385, 4.871158465842353, 4.867631504793007, 4.8686269804376305, 4.866068255484998, 4.868074387981219, 4.867758299771056, 4.869528365899433, 4.8712703763646665, 4.867675378676488, 4.867248310721139, 4.867234261940048, 4.868271091192478, 4.862672460583436, 4.867951036953199, 4.87074905438548, 4.868170928926682, 4.869636824122169, 4.865799240948304, 4.869122903586534, 4.86742728908046, 4.865961939043076, 4.868238491933179, 4.865556039334447, 4.865231906822906, 4.8622671018656405, 4.863724038225816, 4.86654953568012, 4.8634293986626975, 4.867473204760105, 4.8718529313836125, 4.867013419742154, 4.865265736394457, 4.866606134340224, 4.8667992137395135, 4.871703204960338, 4.8647099339462745, 4.864005083185622, 4.870683332666141, 4.871570602794592, 4.867909348944414, 4.868135383658441, 4.8711951591727125, 4.868623710690432, 4.8657475435539475, 4.865375601707161, 4.86943260932458, 4.865334457069492, 4.86868438708592, 4.869535413493562, 4.865833204103071, 4.871498289774454, 4.864998787516273, 4.8659043783343225, 4.867411962939633, 4.865371048066283, 4.868345622207286, 4.870788453647213, 4.871288782862418, 4.864624604670096, 4.866898958249417, 4.867126028209275, 4.866512094185016, 4.863862876088483, 4.86959831202636, 4.867597078783732, 4.8643777482685975, 4.864534050296914, 4.869329736570721, 4.866642786788449, 4.866081058984802, 4.863753071873452, 4.864985600404292, 4.867532996638111, 4.871503865639161, 4.8714617708435854, 4.866050831858876, 4.865347309135271, 4.864969913052181, 4.8715086557005485, 4.8653949327919745, 4.866046299676272, 4.8671628759004575, 4.865446532442428, 4.868882736660909, 4.86431339258168, 4.868040836832651, 4.866395407392215, 4.866367855045025, 4.870399583250477, 4.865444345049019, 4.8675152945947495, 4.866345733263934, 4.865687124799935, 4.8699332018213815, 4.872231458005955, 4.87040477733605, 4.866988478423178, 4.86533171691041, 4.869307270280684, 4.864270622938813, 4.865654844221678, 4.867013295445426, 4.871699312218356, 4.864812984935499, 4.86802691584311, 4.870327163853858, 4.8663406998670755, 4.866784320346852, 4.867396179234266, 4.872002039530416, 4.867913533526858, 4.864106995302169, 4.871084091907895, 4.870441059082285, 4.865675532760804, 4.866491408023003, 4.867696112546993, 4.864444687615764, 4.866349938099372, 4.871951694295357, 4.870289499310124, 4.864501558021873, 4.867191276620785, 4.87135098762632, 4.865258799672209, 4.867335409670487, 4.867307187206246, 4.8695628987219095, 4.867307481531075, 4.86422795268878, 4.865590684982859, 4.867353037205396, 4.865551374938399, 4.8647874752931, 4.86530946178582, 4.86588568872058, 4.867065281710139, 4.867097146797127, 4.863528546376746, 4.865798438108194, 4.871992402777908, 4.868768505271645, 4.874198811819932, 4.868808004725855, 4.869204732704022, 4.866356723864071, 4.867730262777707, 4.8620534707432705, 4.8649169273933515, 4.869861635012648, 4.866471221387804, 4.867435674242716, 4.861558381531026, 4.867699849456363, 4.8670851177871715, 4.866729880200006, 4.863637444054162, 4.866020635500371, 4.865401362623976, 4.869856257364022, 4.86810701485207, 4.873320253531485, 4.867912480317068, 4.864872870369017, 4.868375693404425, 4.864257812483208, 4.865020956725387, 4.865687945132926, 4.8698502431006485, 4.865386593035988, 4.866637562668137, 4.8650095548587196, 4.86812348296399, 4.86691575656462, 4.863826958172635, 4.867102577170835, 4.866736512355431, 4.863593682740408, 4.8671438794989195, 4.867165153424461, 4.867959160724344, 4.864603261915538, 4.868099967626039, 4.862494131542588, 4.862970591277582, 4.869629968942925, 4.867826245849308, 4.866983632344234, 4.869598366912252, 4.8675356198239506, 4.865549310595138, 4.866670640627635, 4.868435593588379, 4.867940826480177, 4.868419746411004, 4.864568984550039, 4.866141318428095, 4.864199736563914, 4.864729805293038, 4.8646433035704355, 4.863106416080279, 4.866451703534158, 4.864931846203731, 4.864847309602046, 4.863651579473058, 4.863747150620038, 4.868985206922462, 4.867086384726858, 4.864353877975239, 4.864570178055098, 4.86980792642307, 4.866164924486208, 4.864348686438488, 4.86663854123212, 4.8682508568031775, 4.865381801628429, 4.876263618137349, 4.871968925297917, 4.8669130034060855, 4.864120426669758, 4.867697445208826, 4.865002143589768, 4.866219811835949, 4.868604245247652, 4.869396966987655, 4.868166084929065, 4.870928907576119, 4.866350546329189, 4.869357314500841, 4.864517947681356, 4.865231559032221, 4.863082661080554, 4.866060670586767, 4.865114414522972, 4.869113996700472, 4.8739455834560275, 4.867028604338868, 4.86685370559672, 4.864559795572166, 4.864015380592657, 4.8672365279685685, 4.869955789945998, 4.8715096984537904, 4.865817305452361, 4.86398696267584, 4.865042881400645, 4.867736370596671, 4.8681760014452005, 4.863023401934738, 4.863592395007949, 4.8639309128310515, 4.866143795284552, 4.866937285770874, 4.872645816854812, 4.866673247489909, 4.8659874504672285, 4.865644779042577, 4.863497636565173, 4.866776673691696, 4.863963086831747, 4.862575418335831, 4.864811663556959, 4.86603716385558, 4.8671806608156185, 4.866765020006102, 4.864576870255515, 4.862673177508652, 4.860598878384705, 4.867163144060134, 4.866222875580146, 4.865311105480996, 4.867549498275949, 4.867820122079333, 4.8669688216300475, 4.86975891236733, 4.867166700749564, 4.870786093414939, 4.868857783093521, 4.866148456801266, 4.867896255410001, 4.860847351754291, 4.8701838578756895, 4.866286528678309, 4.87120741950689, 4.865744255082447, 4.86667247056643, 4.865535147531042, 4.865381108599402, 4.864614042243716, 4.865565928743765, 4.8633495807945, 4.867344779849031, 4.871519151155845, 4.864539667472217, 4.866351146085355, 4.8659760995797186, 4.863522231013922, 4.866380771944304, 4.865198418455806, 4.8643753330723865, 4.864799340731245, 4.864241212288389, 4.86335467129027, 4.864715655327247, 4.864091087015909, 4.867736344086871, 4.865027534649469, 4.866881153494665, 4.864969246307749, 4.8669313665613645, 4.865635340429341, 4.869731092907478, 4.870686154073896, 4.869118993807882, 4.8665471985467335, 4.86739965308279, 4.870046900414183, 4.866535766998664, 4.8641409090922645, 4.862114292480659, 4.864596872943036, 4.860214472408476, 4.865409761849016, 4.86318220169976, 4.867183873118284, 4.866217481000972, 4.863844587576759, 4.864701838724537, 4.8642095759240505, 4.87155672257961, 4.86777762594298, 4.868116885286009, 4.865231200224155, 4.86470560816775, 4.867925480902903, 4.86663414632279, 4.865577960882239, 4.8660147733372074, 4.873697402883639, 4.8667979074125265, 4.866006806719054, 4.870552589950496, 4.8655331791764596, 4.864430018089469, 4.866816706030512, 4.865720545058526, 4.872489864977364, 4.864008820020889, 4.864876518464659, 4.867256023200051, 4.865734758252491, 4.8641563009326, 4.865190411388384, 4.867643489211944, 4.869775430747597, 4.864752292678204, 4.863130803482267, 4.867179693791361, 4.861763899582779, 4.863399174075858, 4.866523613516799, 4.862839192069574, 4.867909640412394, 4.8668225524160995, 4.865982171441809, 4.8685371501797325, 4.864380890084156, 4.864838670463406, 4.868182599215218, 4.865543042248901, 4.862917686496941, 4.864590039875229, 4.864280885839868, 4.864494168262929, 4.867067715894663, 4.862750397307564, 4.86981425934337, 4.86063815700217, 4.863190936324601, 4.86287636478311, 4.863982239948345, 4.868131119763407, 4.859438025394974, 4.863748283523135, 4.865734126707019, 4.862709490346892, 4.865407739453235, 4.880380662455581, 4.866756369780858, 4.859640947849522, 4.85930509692857, 4.862914657468596, 4.867765150705727, 4.8657940033403815, 4.863377137244556, 4.8648820572497735, 4.863693384361326, 4.860357219500622, 4.862506453828414, 4.861748263585265, 4.864451199752045, 4.8639511791557615, 4.86419297552562, 4.865556819741608, 4.865648302309657, 4.862053900758254, 4.868500280013022, 4.86428268736953, 4.862639855963531, 4.8638703111137165, 4.867696248171196, 4.858750095274532, 4.870146809421876, 4.8628330208399895, 4.8675689906700175, 4.861561955315972, 4.862785107772906, 4.865822972055847, 4.86097156218942, 4.869314863287826, 4.868263078966132, 4.863549332231232, 4.864346304498343, 4.867500547173339, 4.866458354866934, 4.8645902732840405, 4.862353942341649, 4.868994037145092, 4.868820100906294, 4.86510281345636, 4.8683194644585575, 4.865378426001987, 4.862732086399584, 4.865347861213245, 4.861848117151756, 4.864548605049651, 4.865556621981681, 4.863254199771472, 4.861790841018405, 4.865222617425633, 4.875300108945412, 4.860056388142125, 4.863422286426273, 4.86502952603846, 4.866639889674195, 4.862289946430261, 4.866928915568314, 4.866242992900294, 4.866476806433859, 4.862287040210203, 4.864267981958936, 4.8672687301580435, 4.864135848234604, 4.8654279427593865, 4.866585136458499, 4.868168144836671, 4.864485510335292, 4.859973969853102, 4.863550352304763, 4.862975259831268, 4.861499826188558, 4.867117280834721, 4.865273538263812, 4.861145448440874, 4.861827936395587, 4.87324561576119, 4.865952163985899, 4.864614014346912, 4.862991861675703, 4.869018736471379, 4.863439338002557, 4.865040635268098, 4.865709778644859, 4.866125348105606, 4.863299005918393, 4.869176878873178, 4.865981619866937, 4.864520233185628, 4.866569095211937, 4.865847672906602, 4.864112819916999, 4.861452176090141, 4.863674040798463, 4.864959649461584, 4.8653993455970586, 4.865168371912347, 4.867861892884389, 4.8674496336806365, 4.863410723955613, 4.866308285653865, 4.861583402480158, 4.862991873891892, 4.862738816382786, 4.8655500388972985, 4.862769868229693, 4.863597025974091, 4.865397911739646, 4.865084915166118, 4.865768007974838, 4.860933774962759, 4.865495129884953, 4.8678616266029495, 4.865878684562123, 4.877328525219862, 4.868677683728816, 4.861995870884057, 4.8607945764043015, 4.860510114946146, 4.867960531344098, 4.861852489904226, 4.864414774475623, 4.865018087180543, 4.866544786865875, 4.861487655819288, 4.861096025768782, 4.866960523827965, 4.864696779520178, 4.862599241519903, 4.866442902402403, 4.867114962615793, 4.861042460596176, 4.865228758484548, 4.867484642283438, 4.87003091336348, 4.867224738090707, 4.864191221965695, 4.862573928161337, 4.864904958263553, 4.867665666245869, 4.8638474076223215, 4.862730485029635, 4.866211770060695, 4.8625422750619585, 4.8639012741742125, 4.868960308455868, 4.865127747985697, 4.8666872153118055, 4.864886589192542, 4.864355061439833, 4.864518670261938, 4.863401562965127, 4.8666983238722334, 4.866269785544086, 4.864837687164643, 4.872947499347033, 4.864160531589386, 4.864880669481782, 4.863557050812615, 4.863205913905708, 4.866061382187997, 4.864699525305203, 4.86581505282492, 4.862330343886625, 4.860515273447574, 4.864829652289833, 4.867915130014616, 4.866695458340475, 4.865093019062633, 4.863289568229421, 4.861025527668215, 4.863555679074383, 4.866464302365486, 4.862143192501672, 4.865410038016085, 4.863234514098507, 4.864737361601942, 4.864425837604546, 4.867019148507687, 4.860547571947122, 4.867446077957854, 4.866336221112638, 4.862277651440488, 4.863808341672732, 4.865737738244191, 4.867188709776212, 4.868268126302532, 4.860218315875077, 4.86573404073062, 4.869185564012744, 4.865987668868622, 4.866689504494952, 4.8641140333060715, 4.862624115346756, 4.864813281942906, 4.861692537773331, 4.864320014391788, 4.862952037817655, 4.863863758027859, 4.865375599793017, 4.861905621123906, 4.863657734928909, 4.862646937191668, 4.862997186069565, 4.862974280843547, 4.86658120662124, 4.860512381242417, 4.863967447845209, 4.861494212821487, 4.863863590472464, 4.870438828971245, 4.868159512662599, 4.864117954179718, 4.865629607115317, 4.863500615384382, 4.863990698618216, 4.8652667915729495, 4.865065482440791, 4.865138094054606, 4.865385402056516, 4.859254494197481, 4.868499153909359, 4.864769477876704, 4.863813008395154, 4.860868482926706, 4.864290229475615, 4.8622503549725655, 4.860718468491168, 4.869056018293916, 4.862663458717561, 4.865613261943475, 4.866490399143147, 4.864754998610155, 4.864285149917481, 4.86776265454676, 4.864091496809982, 4.864957457114798, 4.864110262499622, 4.861769069361813, 4.862848731967441, 4.864369430991436, 4.864252916172745, 4.866052455483635, 4.867807039314876, 4.863976330255342, 4.868580115964683, 4.867752665381989, 4.864381328098234, 4.864706099770053, 4.86452682966314, 4.862329782557786, 4.867862386130845, 4.860424916884425, 4.854980904478716, 4.865107474843152, 4.862927814566694, 4.86104118036852, 4.866667232263922, 4.867257608059699, 4.86632189775928, 4.8646510092930955, 4.862215944711088, 4.865443830363819, 4.866154518127194, 4.866928842212415, 4.861888137579579, 4.866664528261458, 4.8667668653517655, 4.866974084294178, 4.862197223257008, 4.866589858786581, 4.863072094633599, 4.860823028080582, 4.861205582431797, 4.861527911390434, 4.862205395734657, 4.859441567408294, 4.862837084853738, 4.8596621434516205, 4.864690066898966, 4.863298005795724, 4.863256616719505, 4.862581785074527, 4.8606326222357215, 4.87381908347995, 4.8636047791630395, 4.862866865087071, 4.863655551422664, 4.864656008293494, 4.86288725471182, 4.86212100154963, 4.862654594835666, 4.864140891381153, 4.868669152859082, 4.865818301461395, 4.864148963894446, 4.862807388950328, 4.864638519829241, 4.861741322047559, 4.8643835182506105, 4.862303676530159, 4.8634685759959115, 4.866644742989572, 4.865146872597237, 4.859243435335227, 4.861924951885642, 4.861314407607306, 4.855809323339471, 4.86104876272138, 4.866688940694443, 4.8640523389963075, 4.8627388671327, 4.86530953195337, 4.861092273563649, 4.861121947239729, 4.862659148826206, 4.864298728245214, 4.864109286057969, 4.862853129769092, 4.8629895025598024, 4.866141308315298, 4.86417750359631, 4.865178526126175, 4.861276231839081, 4.861652481615849, 4.867868526151839, 4.8657783208734315, 4.8634784869816, 4.865655837667211, 4.865718941440834, 4.8671972060751845, 4.863459174107517, 4.8608215803598105, 4.866649722269747, 4.861780194336278, 4.862437390558134, 4.855764129791284, 4.865410715315898, 4.8637347761368614, 4.8627672873835905, 4.865779257203135, 4.861952779111681, 4.8609531125180565, 4.861692413341348, 4.865083798463758, 4.866017123354526, 4.865296438630106, 4.862008210016716, 4.868550525501833, 4.868952173777329, 4.864861255186161, 4.862903707265475, 4.862824509565477, 4.861807097934464, 4.8632088346663425, 4.86001376562157, 4.8605956791588065, 4.86299723488061, 4.86550564285148, 4.861864513695982, 4.8635604231519824, 4.866088196553955, 4.864453934933641, 4.86437096166323, 4.862032255603953, 4.863708557613006, 4.865630948253398, 4.862980892708073, 4.865180593458127, 4.865308573275733, 4.8617665180560135, 4.865733082662262, 4.863775436077889, 4.8635871499880405, 4.863211029379539, 4.865508128317169, 4.8618177379903225, 4.864317412080429, 4.863987872196591, 4.858610819498606, 4.86801767872575, 4.8635697626384005, 4.862938952174967, 4.867408437500796, 4.862502733180408, 4.865228260205288, 4.862973961629747, 4.864222511911729, 4.864774398201382, 4.862105123878129, 4.85667222576891, 4.861364408602151, 4.861062723674246, 4.861498770085769, 4.868586505054293, 4.867176930731015, 4.862712634099763, 4.865948694384858, 4.863059025727994, 4.859684079371332, 4.860706051048597, 4.86795115635663, 4.862506395790357, 4.862275867158379, 4.862501452021772, 4.861244901362133, 4.863485167405532, 4.867032053121178, 4.86114433434635, 4.86424448078263, 4.867364175307173, 4.862210607955606, 4.860709583549134, 4.864261248326974, 4.85908421353612, 4.865282616001211, 4.861989154201578, 4.857741790071906, 4.863807385598848, 4.860982407076975, 4.862843760290416, 4.86213428216373, 4.8599831861732605, 4.861248142460103, 4.862131249822931, 4.861127360014864, 4.862082405486156, 4.862139038648332, 4.861916793926582, 4.8688380262861815, 4.864424259693793, 4.860163906943854, 4.863221728910504, 4.86256446937029, 4.859673942997131, 4.862578473332336, 4.87073436614183, 4.857428975498822, 4.862328022327373, 4.8615022985088885, 4.865083344714892, 4.863862627211424, 4.865054231972491, 4.864626568578826, 4.865978014831042, 4.863540819659002, 4.865229922731873, 4.862248283955252, 4.862496407653303, 4.857371215828059, 4.861187243857856, 4.862576941887068, 4.8597896541814105, 4.862769602022191, 4.861141687784675, 4.861183423669602, 4.8617689510530955, 4.8644031204452105, 4.8647360668660244, 4.864077846138648, 4.861074068077786, 4.864066024766649, 4.859193814823793, 4.859566431319306, 4.8621318866259, 4.864014335360951, 4.864367386298117, 4.859536284806034, 4.865894628362325, 4.86681250581623, 4.8613247218961835, 4.859356632276883, 4.866715762218135, 4.859456948999712, 4.85692423430118, 4.867711120879573, 4.864178797672851, 4.862758209078323, 4.862340943833231, 4.860726162775138, 4.860696303371976, 4.861499501351501, 4.862084615053712, 4.861704949135416, 4.861256665946886, 4.864533262150428, 4.864290433202701, 4.862787878748184, 4.8588397701014685, 4.863915259463955, 4.865701638778633, 4.861498111323183, 4.861742061779265, 4.864960603510717, 4.8609590080076615, 4.8661537202078975, 4.862209175826459, 4.863781217210457, 4.865946663835463, 4.861848317078409, 4.86426025990354, 4.863077475009664, 4.865525668527466, 4.862871729366101, 4.865224329596008, 4.857775249632997, 4.862910121357624, 4.861748871238707, 4.864846505419918, 4.8620472496325, 4.865165544297399, 4.8624692022126155, 4.867876153298605, 4.865065397644755, 4.862528516826437, 4.862800177658274, 4.863447996463235, 4.860503663157401, 4.864991792099854, 4.86390762637142, 4.861647072428079, 4.862900565619761, 4.862327288557214, 4.861819235698593, 4.863318145314076, 4.86325737007688, 4.864105262700378, 4.859859510106498, 4.860880860915722, 4.86286023121643, 4.8661673890643575, 4.864492426179497, 4.862126542476634, 4.864292133840895, 4.862363182156407, 4.863155474672368, 4.862982985136833, 4.860309157915318, 4.859927673037099, 4.86329891014484, 4.859791367822145, 4.86465085769815, 4.857913534241684, 4.862205103412481, 4.860509252739027, 4.861295367440357, 4.865415924266766, 4.85845420295181, 4.861177960814453, 4.859287202454918, 4.861854966500721, 4.865496499580722, 4.8645042570040555, 4.861518204957862, 4.860575076819515, 4.864063713807458, 4.864084513427053, 4.861288266365249, 4.86328416441142, 4.861579952635682, 4.865378245141886, 4.86597470914886, 4.8633216693901264, 4.8591582113595715, 4.861104341316194, 4.865848193216038, 4.862023337757135, 4.8616572894711725, 4.861652979431474, 4.864837182880689, 4.862383276425786, 4.86260627796565, 4.862026831733013, 4.8673846980354085, 4.864539639340434, 4.858530009744629, 4.861205557855767, 4.861121633355081, 4.857241845053023, 4.861580854362304, 4.870649313804341, 4.8632610081408565, 4.857675063647946, 4.86049167208219, 4.862271746650469, 4.861554208797777, 4.858819837926889, 4.8636345094036235, 4.857033986419681, 4.866171369530314, 4.8611962576845364, 4.85767618926891, 4.8665216782996685, 4.86129022627088, 4.858282178354264, 4.86028970717568, 4.859683190159526, 4.861143315687835, 4.862709351643623, 4.86108269416307, 4.864272164841314, 4.861312569347488, 4.868478570833952, 4.861164131221371, 4.863511411673555, 4.8624508600759295, 4.862230763090025, 4.8611370274293835, 4.860185338990637, 4.863295893469635, 4.864857663763613, 4.862099906807792, 4.861419235989908, 4.862659924397774, 4.8599078721249445, 4.8605398720178155, 4.85976143384497, 4.860377276432871, 4.861157340424349, 4.86967099544889, 4.862063613358684, 4.860209501197634, 4.8589184531440015, 4.860568108287138, 4.860849460124836, 4.863707017445907, 4.861197638729596, 4.864293696876032, 4.861263413732873, 4.863845942335261, 4.860959492131529, 4.860151508664354, 4.862310688749287, 4.865836203720025, 4.861886167149968, 4.861452582970751, 4.866587916856011, 4.865571049940279, 4.863363747649048, 4.8635409303177015, 4.856638255911065, 4.8622175295905885, 4.862072695302749, 4.862351047708397, 4.860903981542389, 4.863063449196028, 4.864159548048248, 4.863237707173157, 4.865820000948427, 4.860024502172632, 4.860336786145513, 4.860267786380584, 4.862769190056026, 4.86085944596473, 4.860746313609384, 4.8643753492361155, 4.860201304515982, 4.863127667208738, 4.861968679632606, 4.858446456246992, 4.860882369893508, 4.856042825109065, 4.859490912948932, 4.862811034753804, 4.867969315384016, 4.86355818829398, 4.8608159885205815, 4.859827690528478, 4.861565036387743, 4.86126386920831, 4.859603507455934, 4.859901096592187, 4.862934233445609, 4.8593985495255065, 4.863296517053566, 4.857294364472633, 4.859422367602346, 4.86233767586162, 4.859379202924939, 4.8639539460306755, 4.864938920822321, 4.863911051404974, 4.858662439009513, 4.861227236679864, 4.859568474044027, 4.860954699304292, 4.860657986967569, 4.857767837441495, 4.857210555159327, 4.862027585028746, 4.861035181446565, 4.863956086916715, 4.861216126610905, 4.862265730672311, 4.861383459715061, 4.861046058967161, 4.861628977665037, 4.863225002855202, 4.866282354185251, 4.86122288967282, 4.8582255605150895, 4.862170913433698, 4.864024501610425, 4.86106004651719, 4.862026193735966, 4.858357063627048, 4.860020840330106, 4.860151280119983, 4.861982847626287, 4.864538179529586, 4.8597659078660405, 4.860062924749693, 4.865919314884261, 4.864202408041847, 4.860885394742331, 4.860745959279746, 4.860057688923596, 4.863421550945931, 4.860251237260739, 4.8615958550072165, 4.865656890958964, 4.8626770820856535, 4.864118108426938, 4.8657355063604095, 4.858833247091041, 4.862878618336326, 4.861795107044696, 4.862329820753382, 4.8638186732363256, 4.864531325218398, 4.861485216270802, 4.861590614867758, 4.857616055132687, 4.860677717177938, 4.861547713218302, 4.858960048846376, 4.864371964200982, 4.862536658786179, 4.862032370974058, 4.8606272444664675, 4.859344636895268, 4.86494475095109, 4.85847484178014, 4.861369749060877, 4.861743098596738, 4.862039152431242, 4.859615927699998, 4.862304319531221, 4.861946816594619, 4.869286856578026, 4.8652948106379625, 4.859518862915385, 4.86306785319134, 4.858672503179103, 4.860928922205558, 4.8632103049935544, 4.861838202091877, 4.866128824286375, 4.859372218508254, 4.861485935754287, 4.858762319314931, 4.856672638826328, 4.860161712520903, 4.863209014872517, 4.860635602460162, 4.859067095738461, 4.861909744122598, 4.86026716759011, 4.867522253613484, 4.86539686643763, 4.862598131178851, 4.8644049690099145, 4.859065303194435, 4.858835817274143, 4.860604979654008, 4.862574488158768, 4.864196528744184, 4.8656514012769785, 4.859133705632867, 4.859953848740631, 4.858804651662093, 4.862375193790962, 4.86140247101835, 4.860090821368231, 4.859067722346477, 4.8604626372325805, 4.863836500466975, 4.861487930032613, 4.8602675413160155, 4.859716469259839, 4.863359960771899, 4.858705204806231, 4.861535453451686, 4.858893725409156, 4.864617736376309, 4.861644294496544, 4.861009629546399, 4.861423359984821, 4.860430766790113, 4.858000163888697, 4.863183889928997, 4.863326730765168, 4.860521600764942, 4.860273848139267, 4.861099952959006, 4.85971642488379, 4.862015262770243, 4.860584108946253, 4.859461673598477, 4.861839722188467, 4.861416343389363, 4.861361539350074, 4.869094143587132, 4.860508535718747, 4.85609197201817, 4.859388042696893, 4.858922714353926, 4.863743759353132, 4.858135471215804, 4.859256584393337, 4.862631387726352, 4.862284713648399, 4.858207136678127, 4.862956136213445, 4.859345752659079, 4.858874559289843, 4.8617746085119204, 4.86196862673714, 4.858981736705256, 4.858228732583591, 4.861910107075881, 4.859712261785806, 4.863690234629915, 4.855541453190015, 4.860339618844703, 4.862201543389803, 4.861340829848376, 4.8619016913880015, 4.863013732873276, 4.862939134697188, 4.862122024190564, 4.8623684336838435, 4.861904423759245, 4.857466058166161, 4.862821742707754, 4.860589263920208, 4.859214256508642, 4.861445720161478, 4.858986165030745, 4.861038000566526, 4.861482796221271, 4.8595875492623195, 4.860126827942077, 4.86105790132334, 4.859157114162991, 4.862125168719816, 4.862217508259679, 4.858351388201381, 4.857079431263938, 4.870777030862943, 4.858991760248574, 4.857486386103918, 4.85483786008565, 4.861453282514208, 4.862634802771491, 4.858352797022691, 4.861224708448596, 4.858067396776933, 4.8607929643464605, 4.859157602232328, 4.859935995202983, 4.859013052435576, 4.860609098080209, 4.860213356813083, 4.860743861146225, 4.8617423814709175, 4.859000772958689, 4.86021050537697, 4.866085706831624, 4.862591601894378, 4.860548775010864, 4.866543750833577, 4.863528051735819, 4.864193413999606, 4.856702106470533, 4.864139954992675, 4.859823461926382, 4.860515110482184, 4.861359216452857, 4.861477658886633, 4.860282535506587, 4.861964660212856, 4.8671055788465925, 4.865410639548655, 4.858195431264306, 4.8643156066239905, 4.857375055100007, 4.8591035409911685, 4.860086783829702, 4.862607012586725, 4.861625881316821, 4.865065693216895, 4.861485436755772, 4.862402247932809, 4.860374060869927, 4.864175717787818, 4.859132373176073, 4.861761409522095, 4.867692186730297, 4.862311701246077, 4.86398511878861, 4.862353733453499, 4.858190556029262, 4.857349316900881, 4.857811501696781, 4.859511617150633, 4.8613863255326795, 4.859104116673857, 4.857341243919404, 4.8600358859465205, 4.861334453036134, 4.859099901576624, 4.8655444297369375, 4.861820498907273, 4.861079248260132, 4.859716975195871, 4.860083906572423, 4.856876775125361, 4.859964743972259, 4.862706887388203, 4.862776183278915, 4.864945397625366, 4.863131566830409, 4.862157514982006, 4.86176277282558, 4.859796467603922, 4.861120906800502, 4.859708089883416, 4.8595662652752765, 4.860115656643604, 4.860122682901245, 4.860348599234487, 4.858182853360849, 4.857302558856157, 4.862354763240422, 4.861587753952372, 4.857944238167334, 4.861209228015691, 4.864158823767567, 4.8604752963377775, 4.85921175739215, 4.857845254431821, 4.861618588967131, 4.860218074828273, 4.8589549105263306, 4.862751985857406, 4.857511542496178, 4.8611550181293515, 4.860091828799555, 4.858534356328606, 4.859254081143872, 4.861226358461136, 4.86331175602662, 4.859646895710557, 4.857853440294282, 4.859362565188995, 4.859045652106683, 4.86516791481766, 4.859973801912698, 4.860303225835503, 4.862269265010535, 4.858526247741759, 4.860774204096761, 4.860119348940365, 4.864525714326552, 4.8615903088417465, 4.858710166805443, 4.860763476756441, 4.863015813000368, 4.859908867476699, 4.858572825558747, 4.862046597934671, 4.857735384800042, 4.856023040901121, 4.857020176016892, 4.8613716445788775, 4.8626481058882, 4.857247974884336, 4.8628152278396275, 4.8635678319288935, 4.86137405230731, 4.861537567809622, 4.857417057083528, 4.861912055846931, 4.8587137739009325, 4.8579105218780825, 4.860613477570978, 4.85888877712093, 4.856885885891485, 4.857548811515589, 4.871862825316822, 4.8617998200431725, 4.862535696783715, 4.866575168753943, 4.861653811176188, 4.861743032870033, 4.859586324732027, 4.858956360657809, 4.860991120411906, 4.86011037708905, 4.8592143806916255, 4.860451965297528, 4.862112823391827, 4.859549377476961, 4.862747815348901, 4.858085100093766, 4.856742629637886, 4.860565753478054, 4.862731408984596, 4.86066006622095, 4.864768385553673, 4.866119748608375, 4.8628519759694075, 4.861669217658019, 4.860552008216027, 4.8624918510617, 4.8575039574749335, 4.862435629019132, 4.857584770118448, 4.858384085136702, 4.864005575402119, 4.862222480750786, 4.863070991269877, 4.866633910003755, 4.859187571464695, 4.8605813433814316, 4.858505605969198, 4.8586489727506645, 4.858533618544588, 4.862606978258437, 4.856253951706182, 4.857440160053983, 4.860448799034955, 4.858101860429297, 4.860938722872012, 4.8594040662969515, 4.859229576756009, 4.859527644850917, 4.854400404276456, 4.856349073706101, 4.861660124646889, 4.861046190984542, 4.861875636089034, 4.859209018025782, 4.863450965204764, 4.8584534440364004, 4.857719169002344, 4.856899314606357, 4.856008217533029, 4.857990314521386, 4.8669724350640795, 4.854529412976137, 4.8613441930437835, 4.857380977799623, 4.859320438112707, 4.8593010644982115, 4.86047583253667, 4.872268745095897, 4.860707070642123, 4.85860780429873, 4.8591994522485935, 4.86232434414582, 4.860305536525511, 4.8588621305764415, 4.858154155428367, 4.863220690355156, 4.858597729562865, 4.862344623880384, 4.859802810248857, 4.856967414897494, 4.86133255516593, 4.860171979562268, 4.860745482770811, 4.8569591071415985, 4.860932434539116, 4.862633469159866, 4.862934382955071, 4.859877374453719, 4.86127857411047, 4.860944003564837, 4.859756408183638, 4.861813959698901, 4.859280475536712, 4.862143668856188, 4.859195693040159, 4.8570291902701515, 4.8622052367611195, 4.858501015757424, 4.858638032734409, 4.856140378988458, 4.864766578700161, 4.861259464278435, 4.862501291636297, 4.860940375611831, 4.863612318070275, 4.860632967865871, 4.856099126786918, 4.856573959302247, 4.862555658429941, 4.859500297352551, 4.858090472608597, 4.859703920274563, 4.860955523674318, 4.860552197555403, 4.857956630169348, 4.857292339819727, 4.86428541813901, 4.8555079899751465, 4.854871873671661, 4.863153514145912, 4.860422931824283, 4.8586009915422395, 4.860042025543382, 4.857012307661557, 4.860158258593931, 4.857156263736157, 4.860099285404161, 4.859453949458582, 4.856955738917804, 4.857103926584452, 4.861349887306145, 4.86252244158637, 4.860190423854158, 4.8612427564879495, 4.861448095949487, 4.862277780058712, 4.859729843464213, 4.8570131854361565, 4.858318408708194, 4.8622262520644774, 4.8603469719166466, 4.857987693718433, 4.859835368547812, 4.861021030580877, 4.858334437393564, 4.85758608129113, 4.858993999629638, 4.858717202596955, 4.856517791941629, 4.862401725844228, 4.860557923854648, 4.85998147900986, 4.860457523071068, 4.86242361761905, 4.860398409729207, 4.860453845362808, 4.8554284615056105, 4.861988561351664, 4.864426187372617, 4.856570039921558, 4.857754454857598, 4.858605213907607, 4.856943202905361, 4.859950587893335, 4.860515027706765, 4.858762014737462, 4.859373014939342, 4.85905742483334, 4.859283967060496, 4.857338088928641, 4.860296614289374, 4.86060588784322, 4.85886189517767, 4.857042954326025, 4.860841524469305, 4.861297942073466, 4.861558687518175, 4.863320123451332, 4.864119349295039, 4.857603185883848, 4.85635616758876, 4.858032932831808, 4.863830994441626, 4.860928351554795, 4.859630970671, 4.853499873554952, 4.860664398423022, 4.855591855174002, 4.861607284120949, 4.862288513773221, 4.8603450993807, 4.858376945400236, 4.858750590547803, 4.858590074408708, 4.860721556610305, 4.86095106254201, 4.859675279067142, 4.856396185628272, 4.860616472798113, 4.861592904138357, 4.859501969920532, 4.864595956498272, 4.859199101667338, 4.856997066674188, 4.860431644655035, 4.855202271521847, 4.862777307959042, 4.86065575381758, 4.863414124010889, 4.857074780330583, 4.859549424222535, 4.860479006105998, 4.861316276103443, 4.85685608962774, 4.857429409772976, 4.863098468931935, 4.864144445491521, 4.8597102311551845, 4.855559064513083, 4.8621206798133345, 4.856884599229166, 4.859558638645629, 4.855112223586044, 4.858207610160675, 4.859596995704758, 4.8600204772354925, 4.859624613098122, 4.856687385493741, 4.860572506274088, 4.858774808236996, 4.856582672540575, 4.858697632803745, 4.857075111739826, 4.861499912982151, 4.860014923307009, 4.861269700492599, 4.859136345256237, 4.858568720356066, 4.860520549201663, 4.859719928136921, 4.854624735307597, 4.856777568172356, 4.855941200198001, 4.859865885424574, 4.85829230874686, 4.856790939013467, 4.8555699379249, 4.86026789052201, 4.8599729282573785, 4.860942607638823, 4.859243240717264, 4.858794904242978, 4.860415598756146, 4.857015678781378, 4.853625757669111, 4.856470981791572, 4.861170696063786, 4.859061819030186, 4.8624671984473045, 4.865564030018328, 4.85941857917434, 4.857908304184546, 4.856669541903182, 4.860300864015381, 4.8588073882922, 4.858133771702273, 4.856349772387932, 4.856677184973802, 4.85694825047401, 4.8542486571126116, 4.857843077249191, 4.859089571676877, 4.857704071044511, 4.860339023498831, 4.858912071431271, 4.860334132866634, 4.857760121204868, 4.8604861218766375, 4.859785979056997, 4.855208196959986, 4.854559082468884, 4.862013951483119, 4.8565852960076805, 4.857321704984783, 4.861301039829736, 4.860590211785391, 4.859590807499239, 4.857001659992592, 4.857986370261578, 4.859436183893725, 4.864179218274132, 4.855916021080128, 4.855905834036913, 4.859985545819409, 4.859346948636331, 4.85545702633117, 4.85709188370212, 4.858667075085481, 4.856080826072447, 4.857697167619575, 4.85776834731073, 4.857828358353854, 4.8583047157995845, 4.860935068010828, 4.856735753536984, 4.858342757812748, 4.857378242671318, 4.862070459081636, 4.858073052251564, 4.8637215581146025, 4.854021917019155, 4.8574845097891535, 4.855674732836954, 4.859353395692969, 4.859527536617127, 4.8635024685702914, 4.865900685990425, 4.856771338037686, 4.856124095042021, 4.853530417482267, 4.859081945083919, 4.862746538911983, 4.863431870279306, 4.866073323065239, 4.858992887661747, 4.854714903310236, 4.8573993151539305, 4.861591887045547, 4.862690111143116, 4.856304074586676, 4.862927706720702, 4.857117152947768, 4.859534787892943, 4.860943726726566, 4.85777415882901, 4.856546850423462, 4.859622903726369, 4.862030630576454, 4.85592445185456, 4.857708068836428, 4.860637085020742, 4.860817345776693, 4.859447391172237, 4.8593521878904316, 4.858134309845012, 4.8578991479930576, 4.860038109016481, 4.864220869985552, 4.862358108747384, 4.862271106362842, 4.857464571974276, 4.8578556441103, 4.857519807872874, 4.858959566212085, 4.856191337425673, 4.860188406931579, 4.858322641183601, 4.855706052893431, 4.862308748918995, 4.855045521991652, 4.859954349750315, 4.860072698012962, 4.857943478710149, 4.857180611530685, 4.8597929421519925, 4.856593932023132, 4.856873751903473, 4.86154939641194, 4.856686137897627, 4.856943353095324, 4.861786716291951, 4.855769541505801, 4.85514951809825, 4.859208431607791, 4.859098628988674, 4.862134956696062, 4.855643368435688, 4.8611879664267335, 4.860533278524335, 4.857840786597621, 4.859639256057074, 4.857899872324326, 4.857085462273577, 4.857778077444951, 4.856940641781642, 4.8549563983507875, 4.858279667159611, 4.859435671615438, 4.858265111248523, 4.858444528820304, 4.860305954130794, 4.862025904217008, 4.858794634695306, 4.856344746901146, 4.860640565827402, 4.858670030224608, 4.86151556322476, 4.859064238627206, 4.859463599089605, 4.860727767835809, 4.856416109570147, 4.8581907898018555, 4.859124947865998, 4.858273027272538, 4.860771256059535]
pyplot.subplot(3,1,1,title="KLD sent vs Epochs")
pyplot.plot(iters,klw1_arr,color='blue',label='Train')
pyplot.yscale('log')
pyplot.xlabel('Epochs')
pyplot.ylabel('KL sent')
pyplot.legend()
pyplot.subplot(3,1,2,title="KLD Total vs Epochs")
pyplot.plot(iters,klw_arr,color='blue',label='Train')
pyplot.yscale('log')
pyplot.xlabel('Epochs')
pyplot.ylabel('KL Total')
pyplot.legend()
pyplot.subplot(3,1,3,title="Tot LB vs Epochs")
pyplot.plot(iters,tlb_arr,color='blue',label='Train')
pyplot.yscale('log')
pyplot.xlabel('Epochs')
pyplot.ylabel('TLB')
pyplot.legend()
pyplot.savefig('./Big_log.png') | 691,455 | 691,086 |
'''
Description: numpy项目相关
Author: HCQ
Company(School): UCAS
Email: 1756260160@qq.com
Date: 2021-04-25 19:49:38
LastEditTime: 2021-04-25 19:57:55
FilePath: /python-libraries/01Numpy/np_project.py
'''
import numpy as np
# 通过下标列表获取np数据
# A = [[ 3 4 5 6]
# [ 7 8 9 10]
# [11 12 13 14]]
A = np.arange(3,15).reshape((3,4))
index = np.arange(1,2) # [1]
print(index)
print(A[index]) # [[ 7 8 9 10]] | 403 | 239 |
import FWCore.ParameterSet.Config as cms
QualityMon = cms.EDAnalyzer("SiStripMonitorQuality",
StripQualityLabel = cms.string('test1'),
OutputMEsInRootFile = cms.bool(False),
OutputFileName = cms.string('SiStripQuality.root')
)
| 242 | 90 |
import os
import sys
sys.path.append("../../../monk/");
import psutil
from gluon_prototype import prototype
##########################################################################################################################
gtf = prototype(verbose=1);
gtf.Prototype("sample-project-1", "sample-experiment-1");
gtf.Default(dataset_path="../../../monk/system_check_tests/datasets/dataset_cats_dogs_train",
model_name="resnet18_v1", freeze_base_network=True, num_epochs=10);
gtf.Train();
##########################################################################################################################
# Press CTRL-C to interrupt training
################################################# Resume Training ########################################################
gtf = prototype(verbose=1);
gtf.Prototype("sample-project-1", "sample-experiment-1", resume_train=True);
gtf.Train();
########################################################################################################################## | 1,036 | 254 |
import models
from DefCurse import widgets
from DefCurse import style
from DefCurse import area
def render(model: models.Model, rows: int, cols: int):
areas = [
area.Area(
int(rows/2),
int(cols/2),
),
area.Area(
int(rows/2),
int(cols/2),
int(rows/2)
),
area.Area(
int(rows/2),
int(cols/2),
0,
int(cols/2)
),
area.Area(
int(rows/2),
int(cols/2),
int(rows/2),
int(cols/2),
),
]
a = widgets.labeled_box_widget(
areas[0],
"Main 0"
)
widgets.labeled_box_widget(
areas[1],
"Main 1"
)
widgets.labeled_box_widget(
areas[2],
"Main 2"
)
widgets.labeled_box_widget(
areas[3],
"Main 3"
)
widgets.text_widget(
a,
style.inverse(
"Hallo " +
style.bold("Welt ") +
" 4321"
) +
" 1234"
) | 1,087 | 370 |
from django.conf.urls import url, include
from rest_framework import routers
from api.views import UserViewSet, GroupViewSet,FeedViewSet
router = routers.DefaultRouter()
router.register(r'users', UserViewSet)
router.register(r'groups', GroupViewSet)
router.register(r'feeds', FeedViewSet)
router.register(r'category', FeedViewSet)
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
url(r'^', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
] | 579 | 178 |
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
]
setup_requirements = [
'pytest-runner',
]
test_requirements = [
'pytest>=3'
]
setup(
author="Alex Willmer",
author_email='alex@moreati.org.uk',
python_requires='>=3.5',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="Reference implementation of CB58 encoding used by AVA",
#entry_points={
# 'console_scripts': [
# 'cb58ref=cb58ref.cli:main',
# ],
#},
install_requires=requirements,
license="MIT license",
long_description=readme + '\n\n' + history,
include_package_data=True,
keywords='cb58 base58 ava',
name='cb58ref',
packages=find_packages(include=['cb58ref', 'cb58ref.*']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/moreati/cb58ref',
version='0.2.0',
zip_safe=True,
)
| 1,512 | 515 |
import argparse
import os
import sys
import subprocess
import time
import numpy as np
import random
import h5py
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--data', type=str, required=True, help='training data')
parser.add_argument('--align', type=str, required=True, help='alignment data')
parser.add_argument('--output', type=str, required=True, help='output file')
args = parser.parse_args()
with h5py.File(args.output, 'w') as output:
with h5py.File(args.data, 'r') as data:
keys = data.keys()
with h5py.File(args.align, 'r') as align:
for key in keys:
mat = data[key+'/data'][()]
seq = align[key+'/align'][()]
seq = seq.tolist()
output.create_group(key)
output.create_dataset(key+'/data', data=mat)
output.create_dataset(key+'/align', data=seq)
if __name__ == "__main__":
main()
| 1,009 | 307 |
class Solution:
def XXX(self, strs: List[str]) -> str:
if not strs: return ''
s_min, s_max = min(strs), max(strs)
for i, c in enumerate(s_min):
if c != s_max[i]:
return s_min[:i]
return s_min
undefined
for (i = 0; i < document.getElementsByTagName("code").length; i++) { console.log(document.getElementsByTagName("code")[i].innerText); }
| 409 | 136 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
def has_duplicate(phrase):
seen = set()
words = phrase.split(' ')
for w in words:
if w in seen:
return True
seen.add(w)
return False
def check(text):
count = 0
phrases = text.split('\n')
for p in phrases:
if not has_duplicate(p):
count += 1
return count
if __name__ == "__main__":
if len(sys.argv) != 2:
print('Usage:', sys.argv[0], '<input>')
exit(1)
with open(sys.argv[1]) as f:
result = check(f.read().strip())
print('Result:', result)
| 627 | 225 |
import setuptools
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
import sys
import setuptools
import os
import re
import platform
import subprocess
# from pathlib import Path
from os.path import expanduser, join
from distutils.version import LooseVersion
import io
__version__ = '0.2.2'
# As of Python 3.6, CCompiler has a `has_flag` method.
# cf http://bugs.python.org/issue26689
def has_flag(compiler, flagname):
"""Return a boolean indicating whether a flag name is supported on
the specified compiler.
"""
import tempfile
with tempfile.NamedTemporaryFile('w', suffix='.cpp') as f:
f.write('int main (int argc, char **argv) { return 0; }')
try:
compiler.compile([f.name], extra_postargs=[flagname])
except setuptools.distutils.errors.CompileError:
return False
return True
def cpp_flag(compiler):
"""Return the -std=c++[11/14] compiler flag.
The c++14 is prefered over c++11 (when it is available).
"""
if has_flag(compiler, '-std=c++14'):
return '-std=c++14'
elif has_flag(compiler, '-std=c++11'):
return '-std=c++11'
else:
raise RuntimeError('Unsupported compiler -- at least C++11 support '
'is needed!')
# Readme file as long_description (from cirq):
stream = io.open('README.md', encoding='utf-8')
stream.readline()
long_description = stream.read()
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
def run(self):
try:
out = subprocess.check_output(['cmake', '--version'])
except OSError:
raise RuntimeError("CMake must be installed to build the following extensions: " +
", ".join(e.name for e in self.extensions))
if platform.system() == "Windows":
cmake_version = LooseVersion(re.search(r'version\s*([\d.]+)', out.decode()).group(1))
if cmake_version < '3.1.0':
raise RuntimeError("CMake >= 3.1.0 is required on Windows")
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
'-DPYTHON_EXECUTABLE=' + sys.executable,
'-DBINDERS=' + 'release']
# cfg = 'Debug' if self.debug else 'Release'
# print(cfg)
cfg = 'Release'
build_args = ['--config', cfg]
if platform.system() == "Windows":
cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(cfg.upper(), extdir)]
if sys.maxsize > 2**32:
cmake_args += ['-A', 'x64']
build_args += ['--', '/m']
else:
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
build_args += ['--', '-j2']
env = os.environ.copy()
env['CXXFLAGS'] = '{} -DVERSION_INFO=\\"{}\\"'.format(env.get('CXXFLAGS', ''),
self.distribution.get_version())
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
subprocess.check_call(['cmake', ext.sourcedir] + cmake_args, cwd=self.build_temp, env=env)
subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=self.build_temp)
extensions = []
setup(
name='pytket',
version=__version__,
author='Seyon Sivarajah',
author_email='seyon.sivarajah@cambridgequantum.com',
python_requires='>=3.6',
url='https://github.com/CQCL/pytket',
description='Python module for interfacing with the CQC t|ket> library of quantum software',
long_description=long_description,
long_description_content_type='text/markdown',
license="Apache 2.0",
packages=setuptools.find_packages(),
install_requires=[
'sympy >=1.3',
'numpy'
],
ext_modules=extensions,
cmdclass={
'build_ext': CMakeBuild
},
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
zip_safe=False,
)
| 4,707 | 1,500 |
'''
https://www.geeksforgeeks.org/command-method-python-design-patterns/
Command Method is Behavioral Design Pattern that encapsulates a request as an object, thereby allowing for the parameterization of clients with different requests and the queuing or logging of requests. Parameterizing other objects with different requests in our analogy means that the button used to turn on the lights can later be used to turn on stereo or maybe open the garage door. It helps in promoting the “invocation of a method on an object” to full object status. Basically, it encapsulates all the information needed to perform an action or trigger an event.
Problem without using Command Method
Imagine you are working on a code editor. Your current task is to add the new buttons in the toolbar of the editor for various different operations. It’s definitely easy to create a single Button Class that can be used for the buttons. As we know that all the buttons used in the editor look similar, so what should we do? Should we create a lot of sub-classes for each place where the button is used?
Problem-without-Command-method
Solution Using Command Method
Let’s have a look at the solution for the above-described problem. It’s always a good idea to divide the software into different layers which helps in easy coding as well as debugging. The command pattern suggests that objects shouldn’t send these requests directly. Instead, you should extract all of the request details, such as the object being called, the name of the method and the list of arguments into a separate command class with a single method that triggers this request.
• Python3
'''
"""Use built-in abc to implement Abstract classes and methods"""
"""Class Dedicated to Command"""
from abc import ABC, abstractmethod
class Command(ABC):
"""constructor method"""
def __init__(self, receiver):
self.receiver = receiver
"""process method"""
def process(self):
pass
"""Class dedicated to Command Implementation"""
class CommandImplementation(Command):
"""constructor method"""
def __init__(self, receiver):
self.receiver = receiver
"""process method"""
def process(self):
self.receiver.perform_action()
"""Class dedicated to Receiver"""
class Receiver:
"""perform-action method"""
def perform_action(self):
print('Action performed in receiver.')
"""Class dedicated to Invoker"""
class Invoker:
"""command method"""
def command(self, cmd):
self.cmd = cmd
"""execute method"""
def execute(self):
self.cmd.process()
"""main method"""
if __name__ == "__main__":
"""create Receiver object"""
receiver = Receiver()
cmd = CommandImplementation(receiver)
invoker = Invoker()
invoker.command(cmd)
invoker.execute()
'''
Output
Action performed in receiver.
Class Diagram
Following is the class diagram for the Command method
Class-diagram-Command-Method
Advantages
• Open/Closed Principle: We can introduce the new commands into the application without breaking the existing client’s code.
• Single Responsibility Principle: It’s really easy to decouple the classes here that invoke operations from other classes.
• Implementable UNDO/REDO: It’s possible to implement the functionalities of UNDO/REDO with the help of Command method.
• Encapsulation: It helps in encapsulating all the information needed to perform an action or an event.
Disadvantages
• Complexity Increases: The complexity of the code increases as we are introducing certain layers between the senders and the receivers.
• Quantity of classes increases: For each individual command, the quantity of the classes increases.
• Concrete Command: Every individual command is a ConcreteCommand class that increases the volume of the classes for implementation and maintenance.
Applicability
• Implementing Reversible operations: As the Command method provides the functionalities for UNDO/REDO operations, we can possibly reverse the operations.
• Parameterization: It’s always preferred to use Command method when we have to parameterize the objects with the operations.
'''
| 4,156 | 1,021 |
import functools
import numpy as np
import theano
import theano.tensor as T
import treeano
import treeano.nodes as tn
import canopy
from treeano.sandbox.nodes import batch_normalization as bn
fX = theano.config.floatX
@treeano.register_node("strided_downsample")
class StridedDownsampleNode(treeano.NodeImpl):
hyperparameter_names = ("strides",)
def compute_output(self, network, in_vw):
strides = network.find_hyperparameter(["strides"])
out_slices = []
out_shape = list(in_vw.shape)
for idx, stride in enumerate(strides):
out_slices.append(slice(None, None, stride))
size = out_shape[idx]
if size is not None:
out_shape[idx] = (size + stride - 1) // stride
network.create_vw(
"default",
variable=in_vw.variable[tuple(out_slices)],
shape=tuple(out_shape),
tags={"output"},
)
@treeano.register_node("resnet_init_conv_2d")
class ResnetInitConv2DNode(treeano.NodeImpl):
"""
NOTE: originally copy-pasted from Conv2DNode
"""
hyperparameter_names = ("inits",
"num_filters",
"filter_size",
"conv_stride",
"stride",
"conv_pad",
"pad")
def compute_output(self, network, in_vw):
# gather hyperparameters
num_filters = network.find_hyperparameter(["num_filters"])
filter_size = network.find_hyperparameter(["filter_size"])
stride = network.find_hyperparameter(["conv_stride", "stride"], (1, 1))
pad = network.find_hyperparameter(["conv_pad", "pad"], "valid")
pad = tn.conv.conv_parse_pad(filter_size, pad)
assert len(filter_size) == 2
# create weight
num_channels = in_vw.shape[1]
filter_shape = (num_filters, num_channels) + tuple(filter_size)
W = network.create_vw(
name="weight",
is_shared=True,
shape=filter_shape,
tags={"parameter", "weight"},
default_inits=[],
).variable
# calculate identity for resnet init
# ---
# read hyperparams
identity_ratio = network.find_hyperparameter(["identity_ratio"], 0.5)
ratio_on_input = network.find_hyperparameter(["ratio_on_input"], True)
# find center spatial location
dim0_idx = filter_shape[2] // 2
dim1_idx = filter_shape[3] // 2
# create identity kernel
ratio_idx = 1 if ratio_on_input else 0
init = np.zeros(filter_shape, dtype=theano.config.floatX)
for i in range(min(filter_shape[0],
filter_shape[1],
int(identity_ratio * filter_shape[ratio_idx]))):
init[i, i, dim0_idx, dim1_idx] += 1
out_var = T.nnet.conv2d(input=in_vw.variable,
filters=W + init,
input_shape=in_vw.shape,
filter_shape=filter_shape,
border_mode=pad,
subsample=stride)
out_shape = tn.conv.conv_output_shape(input_shape=in_vw.shape,
num_filters=num_filters,
axes=(2, 3),
conv_shape=filter_size,
strides=stride,
pads=pad)
network.create_vw(
"default",
variable=out_var,
shape=out_shape,
tags={"output"},
)
@treeano.register_node("resnet_init_conv_2d_with_bias")
class ResnetInitConv2DWithBiasNode(treeano.Wrapper0NodeImpl):
hyperparameter_names = ResnetInitConv2DNode.hyperparameter_names
def architecture_children(self):
return [
tn.SequentialNode(
self._name + "_sequential",
[ResnetInitConv2DNode(self._name + "_conv"),
tn.AddBiasNode(self._name + "_bias",
broadcastable_axes=(0, 2, 3))])]
@treeano.register_node("zero_last_axis_partition")
class _ZeroLastAxisPartitionNode(treeano.NodeImpl):
"""
zeros out a fraction of a tensor
"""
hyperparameter_names = ("zero_ratio",
"axis")
def compute_output(self, network, in_vw):
zero_ratio = network.find_hyperparameter(["zero_ratio"])
axis = network.find_hyperparameter(["axis"], 1)
in_var = in_vw.variable
size = treeano.utils.as_fX(in_var.shape[axis])
num_zeros = T.round(zero_ratio * size).astype("int32")
idxs = [None] * (axis - 1) + [slice(-num_zeros, None)]
out_var = T.set_subtensor(in_var[idxs], 0)
network.create_vw(
"default",
variable=out_var,
shape=in_vw.shape,
tags={"output"},
)
def residual_block_conv_2d(name,
num_filters,
num_layers,
increase_dim=None,
conv_node=tn.Conv2DNode,
bn_node=bn.BatchNormalizationNode,
activation_node=tn.ReLUNode,
input_num_filters=None,
projection_filter_size=(1, 1),
increase_dim_stride=(2, 2),
no_identity=False):
if increase_dim is not None:
assert increase_dim in {"projection", "pad"}
first_stride = increase_dim_stride
if increase_dim == "projection":
identity_node = tn.SequentialNode(
name + "_projection",
[tn.Conv2DNode(name + "_projectionconv",
num_filters=num_filters,
filter_size=projection_filter_size,
stride=first_stride,
pad="same"),
bn_node(name + "_projectionbn")])
elif increase_dim == "pad":
assert input_num_filters is not None
identity_node = tn.SequentialNode(
name + "_pad",
[StridedDownsampleNode(
name + "_stride",
strides=(1, 1) + first_stride),
tn.PadNode(
name + "_addpad",
padding=(0, (num_filters - input_num_filters) // 2, 0, 0))])
else:
first_stride = (1, 1)
identity_node = tn.IdentityNode(name + "_identity")
nodes = []
# first node
for i in range(num_layers):
if i == 0:
# first conv
# ---
# same as middle convs, but with stride
nodes += [
conv_node(name + "_conv%d" % i,
num_filters=num_filters,
stride=first_stride,
pad="same"),
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
]
else:
nodes += [
conv_node(name + "_conv%d" % i,
num_filters=num_filters,
stride=(1, 1),
pad="same"),
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
]
# for last conv, remove activation
nodes.pop()
residual_node = tn.SequentialNode(name + "_seq", nodes)
if no_identity:
# ability to disable resnet connections
return residual_node
else:
return tn.ElementwiseSumNode(name,
[identity_node,
residual_node])
def resnet_init_block_conv_2d(*args, **kwargs):
return residual_block_conv_2d(*args,
conv_node=ResnetInitConv2DNode,
**kwargs)
def resnet_init_projection_conv_2d(name,
num_filters,
num_layers,
bn_node=bn.BatchNormalizationNode,
activation_node=tn.ReLUNode,
stride=(1, 1)):
nodes = []
# first node
for i in range(num_layers):
if i == 0:
# first conv
# ---
# same as middle convs, but with stride
nodes += [
tn.Conv2DNode(name + "_conv%d" % i,
num_filters=num_filters,
stride=stride,
pad="same"),
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
]
else:
nodes += [
ResnetInitConv2DNode(name + "_conv%d" % i,
num_filters=num_filters,
stride=(1, 1),
pad="same"),
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
]
# for last conv, remove activation
nodes.pop()
return tn.SequentialNode(name + "_seq", nodes)
def preactivation_residual_block_conv_2d(name,
num_filters,
num_layers,
increase_dim=None,
initial_block=False,
conv_node=tn.Conv2DNode,
bn_node=bn.BatchNormalizationNode,
activation_node=tn.ReLUNode,
input_num_filters=None,
projection_filter_size=(1, 1),
increase_dim_stride=(2, 2),
no_identity=False):
"""
from http://arxiv.org/abs/1603.05027
"""
if increase_dim is not None:
assert increase_dim in {"projection", "pad"}
first_stride = increase_dim_stride
if increase_dim == "projection":
# TODO remove pre-activation when initial block
assert not initial_block
identity_node = tn.SequentialNode(
name + "_projection",
[
bn_node(name + "_projectionbn"),
activation_node(name + "_projectionactivation"),
tn.Conv2DNode(name + "_projectionconv",
num_filters=num_filters,
filter_size=projection_filter_size,
stride=first_stride,
pad="same"),
])
elif increase_dim == "pad":
assert input_num_filters is not None
identity_node = tn.SequentialNode(
name + "_pad",
[StridedDownsampleNode(
name + "_stride",
strides=(1, 1) + first_stride),
tn.PadNode(
name + "_addpad",
padding=(0, (num_filters - input_num_filters) // 2, 0, 0))])
else:
first_stride = (1, 1)
identity_node = tn.IdentityNode(name + "_identity")
nodes = []
# first node
for i in range(num_layers):
if i == 0:
# first conv
# ---
# maybe remove initial activation
if not initial_block:
nodes += [
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
]
# same as middle convs, but with stride
nodes += [
conv_node(name + "_conv%d" % i,
num_filters=num_filters,
stride=first_stride,
pad="same"),
]
else:
nodes += [
bn_node(name + "_bn%d" % i),
activation_node(name + "_activation%d" % i),
conv_node(name + "_conv%d" % i,
num_filters=num_filters,
stride=(1, 1),
pad="same"),
]
residual_node = tn.SequentialNode(name + "_seq", nodes)
if no_identity:
# ability to disable resnet connections
return residual_node
else:
return tn.ElementwiseSumNode(name,
[identity_node,
residual_node])
def generalized_residual(name, nodes, identity_ratio=0.5):
return tn.ElementwiseSumNode(
name,
[_ZeroLastAxisPartitionNode(name + "_zero",
zero_ratio=(1 - identity_ratio)),
tn.SequentialNode(
name + "_seq",
nodes)])
def generalized_residual_conv_2d(name,
num_filters,
include_preactivation=True,
bn_node=bn.BatchNormalizationNode,
activation_node=tn.ReLUNode,
conv_node=tn.Conv2DNode,
identity_ratio=0.5):
"""
generalized resnet block based on pre-activation resnet
"""
nodes = []
if include_preactivation:
# add pre-activation
nodes += [
bn_node(name + "_bn"),
activation_node(name + "_activation"),
]
nodes += [conv_node(name + "_conv", num_filters=num_filters)]
return generalized_residual(name, nodes, identity_ratio)
def generalized_residual_block_conv_2d(name,
num_filters,
num_layers,
increase_dim=None,
initial_block=False,
bn_node=bn.BatchNormalizationNode,
activation_node=tn.ReLUNode,
conv_node=tn.Conv2DNode,
identity_ratio=0.5,
input_num_filters=None,
projection_filter_size=(1, 1),
increase_dim_stride=(2, 2),
no_identity=False):
if no_identity: # HACK for compatibility
identity_ratio = 0
nodes = []
if increase_dim is not None:
if increase_dim == "projection":
# TODO remove pre-activation when initial block
assert not initial_block
# TODO maybe reduce layers by 1 to have same depth
# num_layers -= 1
nodes += [tn.SequentialNode(
name + "_projection",
[bn_node(name + "_projectionbn"),
activation_node(name + "_projectionactivation"),
tn.Conv2DNode(name + "_projectionconv",
num_filters=num_filters,
filter_size=projection_filter_size,
stride=increase_dim_stride,
pad="same")])]
elif increase_dim == "pad":
assert input_num_filters is not None
nodes += [tn.SequentialNode(
name + "_pad",
[StridedDownsampleNode(
name + "_stride",
strides=(1, 1) + increase_dim_stride),
tn.PadNode(
name + "_addpad",
padding=(0, (num_filters - input_num_filters) // 2, 0, 0))])]
else:
raise ValueError(increase_dim)
for i in range(num_layers):
include_preactivation = (not initial_block) or (i != 0)
nodes += [generalized_residual_conv_2d(
"%s_%d" % (name, i),
include_preactivation=include_preactivation,
num_filters=num_filters,
activation_node=activation_node,
identity_ratio=identity_ratio)]
return tn.SequentialNode(name, nodes)
def pool_with_projection_2d(name,
projection_filters,
stride=(2, 2),
filter_size=(3, 3),
bn_node=bn.BatchNormalizationNode):
pool_node = tn.MaxPool2DNode(name + "_pool",
pool_size=stride,
stride=stride)
projection_node = tn.SequentialNode(
name + "_projection",
[tn.Conv2DNode(name + "_projectionconv",
num_filters=projection_filters,
filter_size=filter_size,
stride=stride,
pad="same"),
bn_node(name + "_projectionbn")])
return tn.ConcatenateNode(name, [pool_node, projection_node])
def forget_gate_conv_2d_node(name,
num_filters,
filter_size=(3, 3),
initial_bias=0):
return tn.ElementwiseProductNode(
name,
[tn.IdentityNode(name + "_identity"),
tn.SequentialNode(
name + "_forget",
[tn.Conv2DWithBiasNode(name + "_conv",
num_filters=num_filters,
filter_size=filter_size,
stride=(1, 1),
pad="same"),
tn.AddConstantNode(name + "_initial_bias", value=initial_bias),
tn.SigmoidNode(name + "_sigmoid")])])
| 18,099 | 4,899 |
from test_module import module_func_2 as oar
module_func() | 58 | 19 |
from astropy import constants
import math
import autofit as af
import autoarray as aa
import autogalaxy as ag
from autoarray.mock.mock import *
from autofit.mock.mock import *
from autofit.mock import mock as af_m
# MockProfiles #
class MockLightProfile(ag.lp.LightProfile):
def __init__(
self,
image_2d=None,
image_2d_value=None,
image_2d_first_value=None,
value=None,
value1=None,
):
super().__init__()
self.image_2d = image_2d
self.image_2d_value = image_2d_value
self.image_2d_first_value = image_2d_first_value
self.value = value
self.value1 = value1
def image_2d_from(self, grid):
if self.image_2d is not None:
return self.image_2d
image_2d = np.ones(shape=(grid.shape[0]))
if self.image_2d_first_value is not None:
image_2d[0] = self.image_2d_first_value
return image_2d
class MockMassProfile(ag.mp.MassProfile):
def __init__(
self,
convergence_2d=None,
potential_2d=None,
deflections_yx_2d=None,
value=None,
value1=None,
):
super().__init__()
self.convergence_2d = convergence_2d
self.potential_2d = potential_2d
self.deflections_2d = deflections_yx_2d
self.value = value
self.value1 = value1
def convergence_2d_from(self, grid):
return self.convergence_2d
def potential_2d_from(self, grid):
return self.potential_2d
def deflections_yx_2d_from(self, grid):
return self.deflections_2d
# Mock Galaxy #
class MockGalaxy:
def __init__(self, value, shape=1):
self.value = value
self.shape = shape
@aa.grid_dec.grid_2d_to_structure
def image_2d_from(self, grid):
return np.full(shape=self.shape, fill_value=self.value)
@aa.grid_dec.grid_2d_to_structure
def convergence_2d_from(self, grid):
return np.full(shape=self.shape, fill_value=self.value)
@aa.grid_dec.grid_2d_to_structure
def potential_2d_from(self, grid):
return np.full(shape=self.shape, fill_value=self.value)
@aa.grid_dec.grid_2d_to_structure
def deflections_yx_2d_from(self, grid):
return np.full(shape=(self.shape, 2), fill_value=self.value)
# Mock Cosmology #
class Value:
def __init__(self, value):
self.value = value
def to(self, *args, **kwargs):
return Value(value=self.value)
class MockCosmology:
def __init__(
self,
arcsec_per_kpc=0.5,
kpc_per_arcsec=2.0,
critical_surface_density=2.0,
cosmic_average_density=2.0,
):
self.arcsec_per_kpc = arcsec_per_kpc
self.kpc_per_arcsec = kpc_per_arcsec
self.critical_surface_density = critical_surface_density
self.cosmic_average_density = cosmic_average_density
def arcsec_per_kpc_proper(self, z):
return Value(value=self.arcsec_per_kpc)
def kpc_per_arcsec_proper(self, z):
return Value(value=self.kpc_per_arcsec)
def angular_diameter_distance(self, z):
return Value(value=1.0)
def angular_diameter_distance_z1z2(self, z1, z2):
const = constants.c.to("kpc / s") ** 2.0 / (
4 * math.pi * constants.G.to("kpc3 / (solMass s2)")
)
return Value(value=self.critical_surface_density * const.value)
def critical_density(self, z):
return Value(value=self.cosmic_average_density)
# Mock Model-Fitting #
class MockResult(af_m.MockResult):
def __init__(
self,
samples=None,
instance=None,
model=None,
analysis=None,
search=None,
mask=None,
model_image=None,
path_galaxy_tuples=None,
hyper_galaxy_image_path_dict=None,
hyper_model_image=None,
hyper_galaxy_visibilities_path_dict=None,
hyper_model_visibilities=None,
pixelization=None,
):
super().__init__(
samples=samples,
instance=instance,
model=model,
analysis=analysis,
search=search,
)
self.mask = mask
self.hyper_galaxy_image_path_dict = hyper_galaxy_image_path_dict
self.hyper_model_image = hyper_model_image
self.path_galaxy_tuples = path_galaxy_tuples
self.hyper_galaxy_visibilities_path_dict = hyper_galaxy_visibilities_path_dict
self.hyper_model_visibilities = hyper_model_visibilities
self.model_image = model_image
self.unmasked_model_image = model_image
self.pixelization = pixelization
self.max_log_likelihood_plane = ag.Plane(galaxies=[ag.Galaxy(redshift=0.5)])
@property
def last(self):
return self
class MockResults(af.ResultsCollection):
def __init__(
self,
samples=None,
instance=None,
model=None,
analysis=None,
search=None,
mask=None,
model_image=None,
hyper_galaxy_image_path_dict=None,
hyper_model_image=None,
hyper_galaxy_visibilities_path_dict=None,
hyper_model_visibilities=None,
pixelization=None,
):
"""
A collection of results from previous searchs. Results can be obtained using an index or the name of the search
from whence they came.
"""
super().__init__()
result = MockResult(
samples=samples,
instance=instance,
model=model,
analysis=analysis,
search=search,
mask=mask,
model_image=model_image,
hyper_galaxy_image_path_dict=hyper_galaxy_image_path_dict,
hyper_model_image=hyper_model_image,
hyper_galaxy_visibilities_path_dict=hyper_galaxy_visibilities_path_dict,
hyper_model_visibilities=hyper_model_visibilities,
pixelization=pixelization,
)
self.__result_list = [result]
@property
def last(self):
"""
The result of the last search
"""
if len(self.__result_list) > 0:
return self.__result_list[-1]
return None
def __getitem__(self, item):
"""
Get the result of a previous search by index
Parameters
----------
item: int
The index of the result
Returns
-------
result: Result
The result of a previous search
"""
return self.__result_list[item]
def __len__(self):
return len(self.__result_list)
| 6,857 | 2,332 |
import json
import ast
import plotly.plotly as py
import plotly.graph_objs as go
import plotly.io as pio
import os
import numpy as np
import plotly
plotly.io.orca.config.executable = '/home/gabi/dev/miniconda3/bin/orca' #May be useful in Ubuntu
#PARAMS
logs_path = "C:\\Users\\gbosetti\\Desktop\\test\\logs"
output_path = "C:\\Users\\gbosetti\\Desktop"
# Functions
def draw_scatterplot(**kwargs):
data = []
annotations = []
for res in kwargs["results"]:
x = res[kwargs['x_axis_prop']]
y = res[kwargs['y_axis_prop']]
a,x_markers,y_markers = annotate_extrema(y, 5, 3.5, 0.75, x)
annotations = annotations + a
trace = go.Scatter(
x=res[kwargs["x_axis_prop"]],
y=res[kwargs["y_axis_prop"]],
name=res[kwargs["trace_name"]]
)
data.append(trace)
layout = go.Layout(
title=go.layout.Title(
text=kwargs["title"],
xref='paper',
x=0
),
xaxis=go.layout.XAxis(
title=go.layout.xaxis.Title(
text=kwargs["x_axis_label"],
font=dict(
size=18,
color='#7f7f7f'
)
)
),
yaxis=go.layout.YAxis(
title=go.layout.yaxis.Title(
text=kwargs["y_axis_label"],
font=dict(
size=18,
color='#7f7f7f'
)
)
)
)
# add annotations
layout.update(dict(annotations=annotations))
fig = go.Figure(data=data, layout=layout)
pio.write_image(fig, kwargs["full_path"])
def inflexion_points(y,x):
# a state machine to find inflexion points
last_y = None
points = []
state = 0
for x_val,y_val in zip(x,y):
if state == 0:
last_y = y_val
last_x = x_val
state = 1
elif state == 1:
if last_y > y_val:
state = 2
last_y = y_val
last_x = x_val
points.append({"x":last_x,"y":last_y, "inflexion": False})
else:
last_y = y_val
last_x = x_val
points.append({"x":last_x,"y":last_y, "inflexion": False})
state = 3
elif state == 2:
if last_y < y_val:
# change state because found an inflexion point
state = 3
# the last one was an inflexion point, annotate using the previous values
points.append({"x":last_x,"y":last_y, "inflexion": True})
last_y = y_val
last_x = x_val
else:
# stay on the same state until the next inflexion point
points.append({"x":last_x,"y":last_y, "inflexion": False})
last_y = y_val
last_x = x_val
elif state == 3:
if last_y > y_val:
state = 2
# annotate
points.append({"x":last_x,"y":last_y, "inflexion": True})
last_y = y_val
last_x = x_val
else:
# stay on the same state until the next inflexion point
points.append({"x":last_x,"y":last_y, "inflexion": False})
last_y = y_val
last_x = x_val
# the last point can be tagged if needed
points.append({"x":last_x,"y":last_y, "inflexion": True})
return np.asarray(points)
def annotate_extrema(y, lag, threshold, influence,x):
ip = inflexion_points(x=x,y=y)
th = threshold_points(y,lag,threshold,influence)
state = 0
annotations = []
markers_x = []
markers_y = []
for signal,inflexion in zip(th["signals"], ip):
if state == 0:
if signal == 0:
# go to the next
state = 0
else:
state = 1
if inflexion["inflexion"]:
state = 0
annotations.append(go.layout.Annotation(text="("+"{:12.2f}".format(inflexion["x"]).strip()+";"+"{:12.2f}".format(inflexion["y"]).strip()+")", x=inflexion["x"], y=inflexion["y"],align="center", valign='bottom', showarrow=False))
markers_x.append(inflexion["x"])
markers_y.append(inflexion["y"])
elif state == 1:
if inflexion["inflexion"]:
state = 0
annotations.append(go.layout.Annotation(text="("+"{:12.2f}".format(inflexion["x"]).strip()+";"+"{:12.2f}".format(inflexion["y"]).strip()+")", x=inflexion["x"], y=inflexion["y"],align="center", valign='bottom', showarrow=False))
markers_x.append(inflexion["x"])
markers_y.append(inflexion["y"])
else:
# keep looking
state = 1
return annotations,markers_x,markers_y
# https://stackoverflow.com/questions/22583391/peak-signal-detection-in-realtime-timeseries-data/43512887#43512887
def threshold_points(y, lag, threshold, influence):
signals = np.zeros(len(y))
filteredY = np.array(y)
avgFilter = [0]*len(y)
stdFilter = [0]*len(y)
avgFilter[lag - 1] = np.mean(y[0:lag])
stdFilter[lag - 1] = np.std(y[0:lag])
for i in range(lag, len(y)):
if abs(y[i] - avgFilter[i-1]) > threshold * stdFilter [i-1]:
if y[i] > avgFilter[i-1]:
signals[i] = 1
else:
signals[i] = -1
filteredY[i] = influence * y[i] + (1 - influence) * filteredY[i-1]
avgFilter[i] = np.mean(filteredY[(i-lag+1):i+1])
stdFilter[i] = np.std(filteredY[(i-lag+1):i+1])
else:
signals[i] = 0
filteredY[i] = y[i]
avgFilter[i] = np.mean(filteredY[(i-lag+1):i+1])
stdFilter[i] = np.std(filteredY[(i-lag+1):i+1])
return dict(signals = np.asarray(signals),
avgFilter = np.asarray(avgFilter),
stdFilter = np.asarray(stdFilter))
def read_file(path):
file = open(path, "r")
logs = '['
for line in file:
line = line.replace('", "f1"', ', "f1"')
line = line.replace('", "recall"', ', "recall"')
line = line.replace('", "precision"', ', "precision"')
line = line.replace('", "positive_precision"', ', "positive_precision"')
line = line.replace('", "wrong_pred_answers"', ', "wrong_pred_answers"')
logs = logs + line
logs = logs[:-1]
logs = logs + ']'
return json.loads(logs.replace('\n', ','))
def process_results(logs):
loop_logs = [log for log in logs if 'loop' in log]
loops_values = [log["loop"] for log in logs if 'loop' in log] # datetime
accuracies = [log["accuracy"] for log in logs if 'loop' in log]
#diff_accuracies = [0 if log["diff_accuracy"] == 'None' else float(log["diff_accuracy"]) for log in logs if 'loop' in log]
precision = [log["precision"] for log in logs if 'loop' in log]
positive_precision = [log["positive_precision"] for log in logs if 'loop' in log]
recall = [log["recall"] for log in logs if 'loop' in log]
wrong_answers = [log["wrong_pred_answers"] for log in logs if 'loop' in log]
return loops_values, accuracies, wrong_answers, precision, positive_precision, recall #diff_accuracies, wrong_answers
def print_in_file(content, path):
file = open(path, "a+")
file.write(content)
file.close()
def draw_evolution(var_name, labeled_var_name, res):
draw_scatterplot(title="Evolution of " + labeled_var_name + " across loops", results=res,
x_axis_label="Loop", y_axis_label=labeled_var_name,
x_axis_prop="loops", y_axis_prop=var_name,
trace_name="scenario_name", full_path=os.path.join(output_path, '_ANNOTATED_EXT_HYP_' + labeled_var_name + '.png'))
# Initialization
logs_folders = [f.path for f in os.scandir(logs_path) if f.is_dir() ]
# Looping each session to get the HYP results
hyp_results = []
for path in logs_folders:
# Get all the HYP files for the session
session_files = [f for f in os.scandir(path) if not f.is_dir() and "_OUR_" in f.name]
# Get the logs of the only file for HYP
logs = read_file(session_files[0].path)
# Get the values from such file
loops_values, accuracies, wrong_answers, precision, positive_precision, recall = process_results(logs)
hyp_results.append({ "loops": loops_values,
"accuracies": accuracies, # "diff_accuracies": diff_accuracies,
"precision": precision,
"positive_precision": positive_precision,
"recall": recall,
"wrong_answers": wrong_answers,
"_total_wrong_answers": sum(wrong_answers),
"_total_loops": len(loops_values),
"scenario_name": "Secnario " + path[-1:], "_max_accuracy": round(max(accuracies), 2)})
print("hyp_results:\n", json.dumps(hyp_results, indent=4, sort_keys=True))
draw_evolution("accuracies", "accuracy", hyp_results)
# draw_evolution("diff_accuracies", "diff. accuracy", hyp_results)
draw_evolution("wrong_answers", "wrong answers", hyp_results)
draw_evolution("recall", "recall", hyp_results)
draw_evolution("precision", "precision", hyp_results)
draw_evolution("positive_precision", "positive precision", hyp_results)
| 9,441 | 3,159 |
from controllers import *
route = [
(
r"/",
home.homeHandler
),
(
r"/auth/register",
auth.registerHandler
),
(
r"/logout",
logout.logoutHandler
),
(
r"/home",
timetable.timeTableHandler
),
(
r"/auth/login",
auth.loginHandler
)
]
| 285 | 148 |
# -*- coding: utf-8 -*-
import unittest
import libkeepass
import keepass_guesser
# file : attempts from file expected before success or failure
guess_files = {'tests/data/guesslist0': {'attempts': 3, 'guessphrase': None},
'tests/data/guesslist1': {'attempts': 1, 'guessphrase': 'test'},
'tests/data/guesslist2': {'attempts': 2, 'guessphrase': 'test'},
'tests/data/guesslist3': {'attempts': 3, 'guessphrase': 'test'}}
# kdb file : keyfile
kdbs = {'tests/data/test.kdbx': None,
'tests/data/test_keyfile.kdbx': 'tests/data/test_keyfile'}
class TestSample(unittest.TestCase):
def _test_kdb_file(self, kdb_file, key_file):
with libkeepass.open(kdb_file, password="test",
keyfile=key_file) as kdb:
self.assertEqual(kdb.opened, True)
self.assertEqual(kdb.read(32), b'<?xml version="1.0" encoding="ut')
def test_kdb_samples(self):
"""Test the test files"""
for kdb_file, key_file in kdbs.iteritems():
self._test_kdb_file(kdb_file, key_file)
class TestGuesser(unittest.TestCase):
def test_kdb_samples(self):
"""Test the test files with try_guess"""
for kdb_file, key_file in kdbs.iteritems():
keepass_guesser.try_guess(kdb_file, 'test', key_file)
def test_run(self):
"""Test the main run loop against each of the guess_files"""
for kdb_file, key_file in kdbs.iteritems():
for guess_file, expected in guess_files.iteritems():
with open(guess_file, 'r') as guess_fh:
result, attempts = keepass_guesser.run(kdb_file, key_file,
guess_fh, False)
self.assertEqual(attempts, expected['attempts'])
self.assertEqual(result, expected['guessphrase'])
if __name__ == '__main__':
unittest.main()
| 1,935 | 642 |
import numpy as np
import os
class MovielensDatasetLoader:
def __init__(self, filename='./ml-1m/ratings.dat', npy_file='./ml-1m/ratings.npy', num_movies=None, num_users=None):
self.filename = filename
self.npy_file = npy_file
self.rating_tuples = self.read_ratings()
if num_users is None:
self.num_users = np.max(self.rating_tuples.T[0])
else:
self.num_users = num_users
if num_movies is None:
self.num_movies = np.max(self.rating_tuples.T[1])
else:
self.num_movies = num_movies
self.ratings = self.load_ui_matrix()
def read_ratings(self):
ratings = open(self.filename, 'r').readlines()
data = np.array([[int(i) for i in rating[:-1].split("::")[:-1]] for rating in ratings])
return data
def generate_ui_matrix(self):
data = np.zeros((self.num_users, self.num_movies))
for rating in self.rating_tuples:
data[rating[0]-1][rating[1]-1] = rating[2]
return data
def load_ui_matrix(self):
if not os.path.exists(self.npy_file):
ratings = self.generate_ui_matrix()
np.save(self.npy_file, ratings)
return np.load(self.npy_file)
if __name__ == '__main__':
dataloader = MovielensDatasetLoader()
print(dataloader.ratings) | 1,173 | 496 |
# Copyright (c) 2021, Thomas Aglassinger
# All rights reserved. Distributed under the BSD 3-Clause License.
from sanpo.command import main_without_logging_setup
from ._common import PoFileTest
class CommandTest(PoFileTest):
def test_can_show_help(self):
with self.assertRaises(SystemExit):
main_without_logging_setup(["--help"])
def test_can_show_version(self):
with self.assertRaises(SystemExit):
main_without_logging_setup(["--version"])
def test_can_sanitize_single_file(self):
self.write_po_file(self.test_can_sanitize_single_file.__name__)
initial_po_lines = self.po_lines()
self.assertEquals(main_without_logging_setup([self.po_path]), 0)
sanitized_po_lines = self.po_lines()
self.assertNotEqual(initial_po_lines, sanitized_po_lines)
def test_can_sanitize_multiple_files(self):
po_path_to_sanitized_po_lines_map = {}
file_count = 3
for file_number in range(1, file_count + 1):
test_name = f"{self.test_can_sanitize_multiple_files.__name__}_{file_number}"
self.write_po_file(test_name)
assert self.po_path not in po_path_to_sanitized_po_lines_map
po_path_to_sanitized_po_lines_map[self.po_path] = self.po_lines()
po_paths_to_sanitize = list(po_path_to_sanitized_po_lines_map.keys())
self.assertEquals(main_without_logging_setup(po_paths_to_sanitize), 0)
for po_path, initial_po_lines in po_path_to_sanitized_po_lines_map.items():
sanitized_po_lines = self.po_lines(po_path)
self.assertNotEqual(sanitized_po_lines, initial_po_lines)
def test_fails_on_non_existent_po_file(self):
self.assertEquals(main_without_logging_setup(["no_such.po"]), 1)
| 1,785 | 620 |
import pytest
import logging
import struct
import base64
import msgpack
import nacl.signing
import algosdk
from . import txn_utils
from . import ui_interaction
from . import speculos
@pytest.fixture
def keyreg_txn():
b64votekey = "eXq34wzh2UIxCZaI1leALKyAvSz/+XOe0wqdHagM+bw="
votekey_addr = algosdk.encoding.encode_address(base64.b64decode(b64votekey))
b64selkey = "X84ReKTmp+yfgmMCbbokVqeFFFrKQeFZKEXG89SXwm4="
selkey_addr = algosdk.encoding.encode_address(base64.b64decode(b64selkey))
txn = algosdk.transaction.KeyregTxn(
sender="YTOO52XR6UWNM6OUUDOGWVTNJYBWR5NJ3VCJTZUSR42JERFJFAG3NFD47U",
votekey=votekey_addr,
selkey=selkey_addr,
votefst= 6200000,
votelst=9500000,
votekd= 1730,
fee= 2000,
flat_fee=True,
first=6002000,
last=6003000,
gen="testnet-v1.0",
gh="SGO1GKSzyE7IEPItTxCByw9x8FmnrCDexi9/cOUJOiI="
)
return txn
def get_expected_messages(current_txn):
votepk = str(base64.b64encode(algosdk.encoding.decode_address(current_txn.votepk)),'ascii').lower()
vrfpk = str(base64.b64encode(algosdk.encoding.decode_address(current_txn.selkey)),'ascii').lower()
# if current_txn.? == True:
# participating_flag = 'yes'
# else:
# participating_flag = 'no'
messages = [['review', 'transaction'],
['txn type', 'key reg'],
['sender', current_txn.sender.lower()],
['fee (alg)', str(current_txn.fee*0.000001)],
['genesis id', current_txn.genesis_id.lower()],
['genesis hash', current_txn.genesis_hash.lower()],
['vote pk', votepk],
['vrf pk', vrfpk],
['vote first', str(current_txn.votefst)],
['vote last', str(current_txn.votelst)],
['key dilution', str(current_txn.votekd)],
['participating', 'yes'],
['sign', 'transaction']]
return messages
txn_labels = {
'review', 'txn type', 'sender', 'fee (alg)', 'genesis id', 'genesis hash', 'vote pk','vrf pk',
'vote first', 'vote last', 'key dilution', 'participating', 'sign'
}
conf_label = "sign"
def test_sign_msgpack_asset_validate_display(dongle, keyreg_txn):
"""
"""
decoded_txn= base64.b64decode(algosdk.encoding.msgpack_encode(keyreg_txn))
with dongle.screen_event_handler(ui_interaction.confirm_on_lablel, txn_labels, conf_label):
logging.info(decoded_txn)
_ = txn_utils.sign_algo_txn(dongle, decoded_txn)
messages = dongle.get_messages()
logging.info(messages)
logging.info(get_expected_messages(keyreg_txn))
assert get_expected_messages(keyreg_txn) == messages
def test_sign_msgpack_with_default_account(dongle, keyreg_txn):
"""
"""
apdu = struct.pack('>BBBBB', 0x80, 0x3, 0x0, 0x0, 0x0)
pubKey = dongle.exchange(apdu)
decoded_txn= base64.b64decode(algosdk.encoding.msgpack_encode(keyreg_txn))
with dongle.screen_event_handler(ui_interaction.confirm_on_lablel, txn_labels, conf_label):
logging.info(decoded_txn)
txnSig = txn_utils.sign_algo_txn(dongle, decoded_txn)
assert len(txnSig) == 64
verify_key = nacl.signing.VerifyKey(pubKey)
verify_key.verify(smessage=b'TX' + decoded_txn, signature=txnSig)
| 3,371 | 1,366 |
from sklearn.feature_extraction.text import TfidfVectorizer
from database_utils import get_all_data, remove_summary
from collections import OrderedDict
import operator
def rank_pages(summaries, query):
vect = TfidfVectorizer()
result = {}
for video in summaries:
tfidf = vect.fit_transform([video['summary'], query])
score = (tfidf * tfidf.T).A[1][0]
#if(score > 0.1):
result[video['name']] = score
return OrderedDict(sorted(result.items(), key=operator.itemgetter(1), reverse=True))
def main():
remove_summary('test')
if __name__ == 'main':
main() | 613 | 204 |
from netapp.netapp_object import NetAppObject
class IfgrpInfo(NetAppObject):
"""
ifgrp name, type, and components.
"""
_interface_name = None
@property
def interface_name(self):
"""
The interface name.
"""
return self._interface_name
@interface_name.setter
def interface_name(self, val):
if val != None:
self.validate('interface_name', val)
self._interface_name = val
_links = None
@property
def links(self):
"""
array of interface names in interface group.
An ifgrp with no members is possible.
"""
return self._links
@links.setter
def links(self, val):
if val != None:
self.validate('links', val)
self._links = val
_favored = None
@property
def favored(self):
"""
interface that is favored.
Only applies if ifgrp-type = single.
"""
return self._favored
@favored.setter
def favored(self, val):
if val != None:
self.validate('favored', val)
self._favored = val
_ifgrp_type = None
@property
def ifgrp_type(self):
"""
Possible values: [single|multi|lacp].
"""
return self._ifgrp_type
@ifgrp_type.setter
def ifgrp_type(self, val):
if val != None:
self.validate('ifgrp_type', val)
self._ifgrp_type = val
_ifgrp_policy = None
@property
def ifgrp_policy(self):
"""
Possible values: [rr|mac|ip|port|single]. Default is ip.
"""
return self._ifgrp_policy
@ifgrp_policy.setter
def ifgrp_policy(self, val):
if val != None:
self.validate('ifgrp_policy', val)
self._ifgrp_policy = val
_nofavored = None
@property
def nofavored(self):
"""
interface that is not favored.
Only applies if ifgrp-type = single.
"""
return self._nofavored
@nofavored.setter
def nofavored(self, val):
if val != None:
self.validate('nofavored', val)
self._nofavored = val
@staticmethod
def get_api_name():
return "ifgrp-info"
@staticmethod
def get_desired_attrs():
return [
'interface-name',
'links',
'favored',
'ifgrp-type',
'ifgrp-policy',
'nofavored',
]
def describe_properties(self):
return {
'interface_name': { 'class': basestring, 'is_list': False, 'required': 'required' },
'links': { 'class': basestring, 'is_list': True, 'required': 'optional' },
'favored': { 'class': basestring, 'is_list': False, 'required': 'optional' },
'ifgrp_type': { 'class': basestring, 'is_list': False, 'required': 'required' },
'ifgrp_policy': { 'class': basestring, 'is_list': False, 'required': 'optional' },
'nofavored': { 'class': basestring, 'is_list': False, 'required': 'optional' },
}
| 3,112 | 962 |
from .abstractExpression import AbstractExpression
from typing import TypeVar
T = TypeVar('T')
class IdExpression(AbstractExpression):
def __init__(self, id_: T):
self.id = id_
def __repr__(self) -> str:
return str(self.id)
def __eq__(self, other) -> bool:
if self is other:
return True
if type(other) == IdExpression:
return self.id == other.id
return False
def __hash__(self):
return hash(self.id)
def get_id(self) -> T:
return self.id
| 545 | 164 |
import os
import sys
from typing import Tuple
import pkg_resources
from Bio import SeqIO
import RNA
import numpy as np
complement_table = str.maketrans('ATGCU', 'TACGA')
def stream_fasta_seq_list(fasta_filename):
with open(fasta_filename, "rU") as handle:
for record in SeqIO.parse(handle, "fasta"):
yield str(record.seq)
def get_fasta_seq_list(fasta_filename):
return list(stream_fasta_seq_list(fasta_filename))
def stream_txt_seq_list(text_filename):
with open(text_filename) as infile:
for line in infile:
yield line.strip()
def get_txt_seq_list(text_filename):
return list(stream_txt_seq_list(text_filename))
def uniquify_background_list(background_list):
uniq_background_set = set()
while background_list:
uniq_background_set.add(background_list.pop())
background_list = []
while uniq_background_set:
background_list.append(uniq_background_set.pop())
return background_list
def stream_kmers(seq, k):
if k >= len(seq):
return [seq]
return (seq[i:i+k] for i in range(len(seq)-k+1))
def get_comp(seq):
return seq.translate(complement_table)
def get_revcomp(seq):
return get_comp(seq)[::-1]
def stream_min_kmers(seq, k):
for kmer in stream_kmers(seq, k):
yield min(kmer, get_revcomp(kmer))
class Fold(object):
def __init__(
self,
temp=37.0,
dangles=2,
part_type='RNA'):
if not part_type in ['RNA', 'DNA']:
part_type = 'RNA'
if part_type == 'DNA':
RNA.cvar.noGU = True
RNA.cvar.noGUclosure = True
self.parameter_directory = os.path.dirname(
os.path.abspath(__file__))#"/usr/local/share/ViennaRNA/"
# Temperature in Celsius;
# default=37.0 (float)
RNA.cvar.temperature = temp
# Dangling end energies (0,1,2);
# see RNAlib documentation;
# default=2 (int)
RNA.cvar.dangles = dangles
self.settings = RNA.md()
self.part_type = part_type
parameter_file = pkg_resources.resource_filename(
'nrpcalc', 'base/{}.par'.format(
self.part_type))
RNA.read_parameter_file(parameter_file)
if part_type == 'DNA':
self.clear_warning()
self.adjust = self.adjust_dG(temp)
def adjust_dG(self, temp):
# Adjustment according to Dirks et al.
kB = 0.00198717 # Boltzmann constant in kcal/mol/K
T = temp
a = [-3.983035, 301.797, 522528.9, 69.34881, 999.974950]
# Calculate the number of moles of water per liter (molarity) at temperature (T in deg C)
# Density of water calculated using data from
# Tanaka M., Girard, G., Davis, R., Peuto A., Bignell, N.
# Recommended table for the density of water..., Metrologia, 2001, 38, 301-309
pH2O = a[4] * (
1 - (T+a[0])**2 * (T+a[1]) / \
(a[2]) / \
(T+a[3])) / \
18.0152
return -kB * (T + 273.15) * np.log(pH2O)
def clear_warning(self):
clrlen = len('WARNING: stacking enthalpies not symmetric')
sys.stdout.write('\033[F\033[F\033[F\033[F')
sys.stdout.write(' '*clrlen+'\n')
sys.stdout.write(' '*clrlen+'\n')
sys.stdout.write(' '*clrlen+'\n')
sys.stdout.write(' '*clrlen+'\n')
sys.stdout.write('\033[F\033[F\033[F\033[F')
sys.stdout.flush()
def evaluate_mfe(self, seq, dg=False):
# MFE Structure Only
fc_obj = RNA.fold_compound(seq, self.settings)
struct,energy = fc_obj.mfe()
if not dg:
return struct
else:
return struct, energy
def evaluate_centroid(self, seq, dg=False):
# Centroid Structure Only
fc_obj = RNA.fold_compound(seq, self.settings)
fc_obj.pf()
struct,energy = fc_obj.centroid()
if not dg:
return struct
else:
return struct, energy
def design(self, seq, struct):
# Closest MFE Structure Sequence
inv = RNA.inverse_fold(seq, struct)[0]
if self.part_type == 'DNA':
inv = inv.replace('U', 'T').replace('u', 't')
return inv
def evaluate_mfe_dimer(self, seq1, seq2):
# MFE Dimer Structure and Energy
fc_obj = RNA.fold_compound(seq1+'&'+seq2, self.settings)
struct,energy = fc_obj.mfe_dimer()
struct1 = struct[:len(seq1)]
struct2 = struct[len(seq1):]
energy += self.adjust
return (struct1, struct2, energy)
if __name__ == '__main__':
pass | 4,679 | 1,684 |
#!/usr/bin/env python3
#
# Analyses a hierarchical tab-indented list file
# and prints out subsection sizes on a requested nesting level
# Subsections with the same name in different subtrees
# are treated as continutaions of a single section
# The script accepts two command line parameters:
# file name
# indentation level
#
import sys
def get_headings(filename, indentation_level):
diff = 0
heading = ''
headings = {}
try:
with open(filename, 'r') as fh:
for line in fh:
line = line.rstrip()
if len(line) == 0:
continue
# Include commented out lines
if line[0] == '#':
line = line[1:].rstrip()
if len(line) == 0:
continue
if line == "==========EndOfList==========":
break
count = 0
for c in line:
if c == '\t':
count += 1
else:
break
line = line.lstrip()
if count <= indentation_level:
if len(heading) > 0:
headings[heading] = headings.get(heading, 0) + diff - 1
diff = 0
if count == indentation_level:
heading = line[:]
diff += 1
except EnvironmentError as err:
print(err)
if len(heading) > 0:
headings[heading] = headings.get(heading, 0) + diff - 1
return headings
def main():
if len(sys.argv) < 2:
print("usage: {0} <filename> <nesting level>".format(sys.argv[0]))
sys.exit(1)
if len(sys.argv) < 3:
level = 0
else:
level = int(sys.argv[2])
if level < 0:
level = 0
try:
headings = get_headings(sys.argv[1], level)
except FileNotFoundError:
print("Error: unable to process file {0}".format(sys.argv[1]))
sys.exit(1)
for heading in sorted(headings, key=headings.get, reverse=True):
if headings[heading] > 0:
print('{0}{1}'.format(heading.ljust(50, ' '), headings[heading]))
if __name__ == '__main__':
main()
| 2,288 | 682 |
#based on the code from https://github.com/studywolf/blog/blob/master/VREP/two_link_arm/vrep_twolink_controller.py
#explained at https://studywolf.wordpress.com/2016/04/18/using-vrep-for-simulation-of-force-controlled-models/
import numpy as np
from VrepWorld import VrepWorld
#create the world object
world = VrepWorld()
#connect to vrep server
world.init()#scene="scenes\\ePuck_wall.ttt") #remote scene import not working at the moment
#create robot object linked to ePuck
robot = world.getRobot('ePuck')
#create obstacles
obstacle1 = world.setObstacle(0.3, 0.2)
obstacle2 = world.setObstacle(0.1, 0.25)
#table for storing positions of the robot
positions = []
try:
#start simulation
world.startRun(5)
robot.setWheelsVelocity(1, 1)
while not world.runFinished:
#robot.getProximitySensors()
#robotVelocity = robot.getVelocity()
robotPosition = robot.getPosition()
positions.append(np.copy(robotPosition)) # store for plotting
#update simulation
world.run()
#clean simulation
world.endRun()
finally:
#close connection even if we got an exception
world.close()
#plot robot positions
import matplotlib.pyplot as plt
positions = np.array(positions)
plt.plot(positions[:, 0], positions[:, 1], 'rx', label="Position de l'ePuck")
plt.axis([0, 1, 0,1])
plt.show() | 1,357 | 487 |
from ROAR.control_module.controller import Controller
from ROAR.utilities_module.vehicle_models import VehicleControl, Vehicle
from ROAR.utilities_module.data_structures_models import Transform, Location
import numpy as np
import logging
from ROAR.agent_module.agent import Agent
from typing import Tuple
import json
from pathlib import Path
import cvxpy as cp
import scipy
import scipy.signal
import scipy.linalg
class MPCController(Controller):
def __init__(self, agent, steering_boundary: Tuple[float, float],
throttle_boundary: Tuple[float, float], **kwargs):
super().__init__(agent, **kwargs)
self.max_speed = self.agent.agent_settings.max_speed
self.throttle_boundary = throttle_boundary
self.steering_boundary = steering_boundary
self.config = json.load(
Path(agent.agent_settings.mpc_config_file_path).open(mode='r'))
self.controller = FullMPCController(agent=agent,
throttle_boundary=throttle_boundary,
steering_boundary=steering_boundary,
max_speed=self.max_speed,
config=self.config)
self.logger = logging.getLogger(__name__)
def run_in_series(self, next_waypoint: Transform, **kwargs) -> VehicleControl:
long_control, lat_control = self.controller.run_in_series(next_waypoint=next_waypoint,
target_speed=kwargs.get("target_speed", self.max_speed))
long_control = float(np.clip(long_control, *self.throttle_boundary))
lat_control = float(np.clip(lat_control, *self.steering_boundary))
return VehicleControl(throttle=long_control, steering=lat_control)
class FullMPCController(Controller):
def __init__(self, agent, config: dict,
throttle_boundary: Tuple[float, float],
steering_boundary: Tuple[float, float],
max_speed: float,
dt: float = 0.03, **kwargs):
super().__init__(agent, **kwargs)
self.config = config
self.max_speed = max_speed
self.throttle_boundary = throttle_boundary
self.steering_boundary = steering_boundary
self._dt = dt
self.A_matrices, self.B_matrices = self.construct_linearized_matrices(max_speed)
self.last_steer_CMD = 0
def get_throttle_CMD(self, Fr_x, vx):
"""Calculates the motor input command
Calculates the motor input command based on the optimal rear tire longitudinal force
given by solving the CVXPY problem. The optimal rear tire longitudinal force is then
used with the longitudinal dynamics model to solve for the actual motor input command.
Args:
Fr_x: Optimal rear tire longitudinal force
vx: Current longitudinal velocity
Returns:
Motor input command
"""
return (Fr_x + self.config['F_friction'] + self.config['C_d'] * vx**2) / self.config['b_motor']
def get_steer_CMD(self, Ff_y, beta, r, vx):
"""Calculates the steering input command
Calculates the steering input command based on the optimal front tire lateral force
given by solving the CVXPY problem. The optimal front tire lateral force is then
used with the lateral dynamics model to solve for the actual steering input command.
Args:
Ff_y: Optimal front tire lateral force
beta: Current side slip angle of vehicle
r: Current angular velocity
vx: Current longitudinal velocity
Returns:
steer_cmd
"""
# Makes sure the argument to the arcsin function on the following line is valid
arcsin_arg = np.clip(Ff_y / (-self.config['mu'] * self.config['Ff_z']), -1, 1)
alpha_f = np.tan(np.arcsin(arcsin_arg) / self.config['C']) / self.config['B']
steer_angle = np.arctan(beta + ((r * self.config['Lf']) / (vx + 10e-1))) - alpha_f
steer_cmd = steer_angle / self.config['max_angle']
self.last_steer_CMD = np.abs(steer_cmd)
return steer_cmd
def linearize_around_steer_angle(self, steer_angle_eq, speed_eq):
"""Calculates linearized state space equations
Linearizes and discretizes the state space equations of the vehicle dynamics model
around a given equilibrium steering angle and equilibrium speed.
Args:
steer_angle_eq: Equilibrium steering angle to linearize around
speed_eq: Equilibrium vehicle speed to linearize around
Returns:
Ad: The linearized and discretized A matrix in the state space model
Bd: The linearized and discretized B matrix in the state space model
"""
# Linearize system state equations around a steering angle and 100km/hr
beta_eq = np.arctan((self.config['Lr'] / self.config['wheelbase']) * np.tan(steer_angle_eq))
vx_eq = speed_eq * np.cos(beta_eq)
r_eq = (speed_eq / self.config['Lr']) * np.sin(beta_eq)
alpha_f = np.arctan(beta_eq + (r_eq * self.config['Lf']) / vx_eq) - steer_angle_eq
Ff_y_eq = -self.config['mu'] * self.config['Ff_z'] * np.sin(self.config['C'] * np.arctan(self.config['B'] * alpha_f))
Fr_y_eq = (self.config['Lf'] * Ff_y_eq * np.cos(steer_angle_eq)) / self.config['Lr']
# Find partial derivative entries for A and B matrices
a_13 = -(Fr_y_eq + Ff_y_eq * np.cos(steer_angle_eq)) / (self.config['mass'] * vx_eq)
a_31 = -vx_eq * r_eq
# Below is a more complex a_13 term that comes from Gonzales dissertation, found to not be needed but may be useful for improving performance
# a_31 = vx_eq * r_eq \
# + ((Ff_y_eq * np.cos(steer_angle_eq)) / mass) \
# * (1 /(1 + (beta_eq + ((r_eq * Lf) / vx_eq))**2))
Ac = np.array([
[0, -1, a_13],
[0, 0, 0,],
[a_31, 0, 0]])
b_11 = np.cos(steer_angle_eq) / (self.config['mass'] * vx_eq)
b_21 = np.cos(steer_angle_eq) * self.config['Lf'] / self.config['Izz']
b_31 = -np.sin(steer_angle_eq) / self.config['mass']
Bc = np.array([
[b_11, 0],
[b_21, 0],
[b_31, 1/self.config['mass']]])
# C and D are just for calling cont2discrete
Cc = np.zeros((3, 3))
Dc = np.zeros((3, 2))
system = (Ac, Bc, Cc, Dc)
Ad, Bd, Cd, Dd, dt = scipy.signal.cont2discrete(system, self._dt)
return Ad, Bd
def construct_linearized_matrices(self, speed_eq):
"""Constructs dicts to hold A and B matrices
Runs through the array of equilibrium steering angles and calculates
the linearized A and B matrices for each angle. Those matrices then get
put into dicts that can be called while CARLA is running. The vehicle dynamics
change at different steering angles so the optimizer needs to change which
matrices it is working with or else it cannot solve for optimal vehicle inputs
Args:
speed_eq: Equilibrium vehicle speed to linearize around
Returns:
A_matrices: Dict holding the linearized and discretized A matrices
B_matrices: Dict holding the linearized and discretized B matrices
"""
A_matrices = {}
B_matrices = {}
for angle in self.config['equilibrium_angles']:
A, B = self.linearize_around_steer_angle(angle, speed_eq)
A_matrices.update({angle: A})
B_matrices.update({angle: B})
return A_matrices, B_matrices
def get_linearized_matrices(self, steer_angle):
"""Returns the correct A and B matrices for a given angle
Args:
steer_angle: Current steering angle of the car (should be absolute value)
Returns:
A and B matrices for the given steering angle
"""
for i, angle_entry in enumerate(self.config['equilibrium_angles']):
if i > 0 and steer_angle < angle_entry:
angle_eq = self.config['equilibrium_angles'][i-1]
return self.A_matrices.get(angle_eq), self.B_matrices.get(angle_eq)
elif i == len(self.config['equilibrium_angles']) - 1:
angle_eq = self.config['equilibrium_angles'][-1]
return self.A_matrices.get(angle_eq), self.B_matrices.get(angle_eq)
def solve_cftoc(self, target_state, current_state, state_bounds, input_bounds):
"""Solves for optimal vehicle inputs
Takes in the current vehicle state and the target state that the car should be at,
and then solves for the optimal input sequence to reach the target state. Vehicle
states are beta, yaw and longitudinal speed for a total of 3 state variables.
Vehicle inputs are front tire lateral force and rear tire longitudinal force, for a
total of 2 input variables.
Args:
target_state: The state that the vehicle should be at
current_state: The current vehicle state
state_bounds: Bounds that the state variables should not exceed or be under
input_bounds: Bounds that the inputs should not exceed or be under
Returns:
The optimal steering and throttle commands for the current time step
"""
# Number of future time steps to optimize over
M = 10
# Number of state variables, which are beta, yaw and longitudinal speed
nx = 3
# Number of input variables, which are front tire lateral force and rear tire longitudinal force
nu = 2
# Initialize the array of variables for each time step
x = cp.Variable((nx, M + 1))
u = cp.Variable((nu, M))
# Initialize cost and constraints
cost = 0
constr = []
# Set Initial State
constr += [x[:, 0] == current_state]
# Get correct linearized dynamics matrices based on the last steering angle
A, B = self.get_linearized_matrices(self.last_steer_CMD * self.config['max_angle'])
for m in range(M):
# Cost function: basically a sum of squares between the current beta, yaw and speed values and the target values
# The different coefficients come from the magnitude of the state values (i.e. beta is on the range of 0-2 while
# longitudinal speed can range from 0-100), and the importance of the state variables as well.
cost += 10**3 * cp.sum_squares(x[0, m] - target_state[0])
cost += cp.sum_squares(x[2, m] - target_state[2])
# The cost function value relating to the yaw is removed when the car needs to make a large turn
if np.abs(target_state[0]) < np.pi / 20:
cost += 10**1 * cp.sum_squares(x[1, m] - target_state[1])
# Constraint for dynamic model
constr += [x[:, m + 1] == A @ x[:, m] + B @ u[:, m]]
# Constraints for setting bounds on the input values
constr += [input_bounds[:, 0] <= u[:, m]]
constr += [input_bounds[:, 1] >= u[:, m]]
u_delta_limits = np.array(self.config['delta_lim'])
if m < M - 1:
# Constraint limiting how much inputs can change between time steps - ensures "smoother" input profiles
constr += [u[:, m + 1] - u[:, m] <= u_delta_limits, u[:, m + 1] - u[:, m] >= -u_delta_limits]
# Set terminal cost values
cost += 10**3 * cp.sum_squares(x[0, M] - target_state[0])
cost += cp.sum_squares(x[2, M] - target_state[2])
# Again, the terminal cost function value relating to the yaw is removed when the car needs to make a large turn
if np.abs(target_state[0]) < np.pi / 20:
cost += 10**1 * cp.sum_squares(x[1, M] - target_state[1])
problem = cp.Problem(cp.Minimize(cost), constr)
try:
problem.solve(warm_start=True)
uOpt = u.value
# In case optimizer doesnt return any values for u
if uOpt is None or uOpt.size == 0:
if np.isnan(uOpt[0][0]):
if target_state[0] < 0:
Ff_y_cmd = 1000
else:
Ff_y_cmd = -1000
if np.isnan(uOpt[0][1]):
Fr_x_cmd = 5000
else:
Ff_y_cmd = u.value[0, 0]
Fr_x_cmd = u.value[1, 0]
except:
# Sometimes the solver cant find a solution at all for a time step, but input values still need to be returned
Ff_y_cmd = 0.0
Fr_x_cmd = 5000
return self.get_throttle_CMD(Fr_x_cmd, current_state[2]), self.get_steer_CMD(Ff_y_cmd, *current_state)
def run_in_series(self, next_waypoint: Transform, **kwargs) -> float:
# Calculate current steering angle, beta and vehicle speed. All angles are in radians
current_steer = self.last_steer_CMD * self.config['max_angle']
current_beta = np.arctan((self.config['Lr'] / self.config['wheelbase']) * np.tan(current_steer))
current_speed = Vehicle.get_speed(self.agent.vehicle)
# Longitudinal speed will be different from the vehicles current speed if beta != 0
current_vx = current_speed * np.cos(current_beta)
# Calculate a vector that represent where you are going
v_begin = self.agent.vehicle.transform.location.to_array()
current_yaw = np.deg2rad(self.agent.vehicle.transform.rotation.yaw)
direction_vector = np.array([-np.sin(current_yaw),
0,
-np.cos(current_yaw)])
v_end = v_begin + direction_vector
v_vec = np.array([(v_end[0] - v_begin[0]), 0, (v_end[2] - v_begin[2])])
# Calculate error projection
w_vec = np.array(
[
next_waypoint.location.x - v_begin[0],
0,
next_waypoint.location.z - v_begin[2],
]
)
v_vec_normed = v_vec / np.linalg.norm(v_vec)
w_vec_normed = w_vec / np.linalg.norm(w_vec)
error = np.arccos(np.dot(v_vec_normed, w_vec_normed))
_cross = np.cross(v_vec_normed, w_vec_normed)
if _cross[1] > 0:
error *= -1
# Set the target speed, target beta angle and target longitudinal velocity
target_speed = self.max_speed
target_beta = -error
target_vx = target_speed * np.cos(current_beta)
# The actual yaw is not needed or important for the optimization problem, as it just needs a "relative" yaw to solve with.
# However, the first yaw angle does need to be 0, as the linearized matrices were calculated with yaw = 0.
# The starting yaw is different for each map: for berkely minor map it is -1.570796 rad (90 degrees),
# for easy map it is 0 rad.
current_yaw = current_yaw - self.config['starting_yaw']
# Make sure the yaw angle is in [-pi/2, pi/2] or else the optimizer cannot solve for correct steering angle
current_yaw = np.mod(current_yaw + np.pi / 4, np.pi/2) - np.pi / 4
# Current optimization setup does not need state bounds, so that's why all state_bounds arrays are 0
motor_cmd, steer_cmd = self.solve_cftoc(
target_state=np.array([target_beta, current_yaw, target_vx]),
current_state=np.array([current_beta, current_yaw, current_vx]),
state_bounds=np.array([[0, 0], [0, 0], [0, 0]]),
input_bounds=np.array([[-6000, 6000], [-1000, 10000]]))
return motor_cmd, steer_cmd
| 15,902 | 4,908 |
from django.test import TestCase
from eahub.base.models import User
from eahub.localgroups.models import LocalGroup, Organisership
from eahub.profiles.models import Profile
class LocalGroupTestCase(TestCase):
def test_organisers_names(self):
local_group = LocalGroup()
local_group.save()
user1 = User()
user1.email = "user1@email.com"
user1.save()
user2 = User()
user2.email = "user2@email.com"
user2.save()
profile1 = Profile()
name1 = "Peter"
profile1.name = name1
profile1.user = user1
profile1.save()
profile2 = Profile()
name2 = "Mary"
profile2.name = name2
profile2.user = user2
profile2.save()
o1 = Organisership(user=user1, local_group=local_group)
o1.save()
o2 = Organisership(user=user2, local_group=local_group)
o2.save()
organiser_names = local_group.organisers_names()
self.assertEqual(f"{name1}, {name2}", organiser_names)
def test_organisers_names_handles_users_without_profiles(self):
local_group = LocalGroup()
local_group.save()
user_without_profile = User()
user_without_profile.save()
o = Organisership(user=user_without_profile, local_group=local_group)
o.save()
organisers_names = local_group.organisers_names()
self.assertEqual("User profile missing", organisers_names)
def test_get_exportable_field_names(self):
actual = LocalGroup.get_exportable_field_names()
expected_field_names = [
"id",
"slug",
"is_public",
"name",
"is_active",
"organisers_freetext",
"local_group_types",
"city_or_town",
"region",
"country",
"lat",
"lon",
"website",
"other_website",
"facebook_group",
"facebook_page",
"email",
"meetup_url",
"airtable_record",
"last_edited",
"other_info",
"organisers",
"organisers_emails",
]
self.assertListEqual(expected_field_names, actual)
| 2,268 | 683 |
import boto3
import sys
import getopt
import datetime
import pytz
# Globals
BucketName = ''
FolderName = ''
HowManyDays = None
ProfileName = 'default'
Env = 'us-east-1'
Delete = False
# Parse CL opts
opts, args = getopt.getopt(sys.argv[1:],'he:b:p:f:k:d')
for opt, arg in opts:
if opt == '-h':
print '-b bucketname'
print '-f foldername'
print '-k days to keep'
print '-p profile name'
print '-e region'
sys.exit(0)
if opt == '-e':
Env = str(arg)
if opt == '-p':
ProfileName = str(arg)
if opt == '-b':
BucketName = str(arg)
if opt == '-f':
FolderName = str(arg)
if opt == '-k':
HowManyDays = str(arg)
if opt == '-d':
Delete = True
if HowManyDays is None or BucketName is None or ProfileName is None or Env is None:
print 'Missing or invalid options'
print '-b bucketname'
print '-f foldername'
print '-d days to keep'
print '-p profile name'
print '-e region'
sys.exit(1)
# Get all the objects
allS3Keys = {}
s3Client = boto3.client('s3',
profile_name=ProfileName,
region_name=Env)
nextToken = 1
while nextToken is not None:
allObjects = None
if nextToken == 1:
allObjects = s3Client.list_objects_v2(Bucket=BucketName,Prefix=FolderName)
else:
allObjects = s3Client.list_objects_v2(Bucket=BucketName,Prefix=FolderName,ContinuationToken=nextToken)
if allObjects.get('IsTruncated') == True:
nextToken = allObjects.get('NextContinuationToken')
else:
nextToken = None
for i in allObjects['Contents']:
allS3Keys[str(i['Key'])] = i['LastModified']
# Discover objects to delete
olderThanDate = datetime.datetime.now(tz=pytz.utc) - datetime.timedelta(int(HowManyDays))
print 'Finding all objects in ' + BucketName + '/' + FolderName + ' older than ' + str(HowManyDays) + ' days (' + str(olderThanDate) + ')'
for key in allS3Keys:
if allS3Keys[key] < olderThanDate:
print key + ' => ' + str(allS3Keys[key]) + ' (marked for delete)'
if Delete:
s3Client.delete_object(Bucket=BucketName,Key=key)
else:
print key + ' => ' + str(allS3Keys[key])
| 2,204 | 761 |
from cloudmosh.components.base import CloudMoshComponent
import os
import numpy as np
# Keras / TensorFlow
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '5'
from keras.models import load_model
import skimage.io
from skimage.transform import resize
from keras.engine.topology import Layer, InputSpec
import keras.utils.conv_utils as conv_utils
import tensorflow as tf
import keras.backend as K
from nutsflow.base import Nut,NutSink, NutSource, NutFunction
class AWBilinearUpSampling2D(Layer):
"""
This is a custom-defined layer needed by the Alhashim-Wonka network.
"""
def __init__(self, size=(2, 2), data_format=None, **kwargs):
super(AWBilinearUpSampling2D, self).__init__(**kwargs)
self.data_format = K.normalize_data_format(data_format)
self.size = conv_utils.normalize_tuple(size, 2, 'size')
self.input_spec = InputSpec(ndim=4)
def compute_output_shape(self, input_shape):
if self.data_format == 'channels_first':
height = self.size[0] * input_shape[2] if input_shape[2] is not None else None
width = self.size[1] * input_shape[3] if input_shape[3] is not None else None
return (input_shape[0],
input_shape[1],
height,
width)
elif self.data_format == 'channels_last':
height = self.size[0] * input_shape[1] if input_shape[1] is not None else None
width = self.size[1] * input_shape[2] if input_shape[2] is not None else None
return (input_shape[0],
height,
width,
input_shape[3])
def call(self, inputs):
input_shape = K.shape(inputs)
if self.data_format == 'channels_first':
height = self.size[0] * input_shape[2] if input_shape[2] is not None else None
width = self.size[1] * input_shape[3] if input_shape[3] is not None else None
elif self.data_format == 'channels_last':
height = self.size[0] * input_shape[1] if input_shape[1] is not None else None
width = self.size[1] * input_shape[2] if input_shape[2] is not None else None
return tf.image.resize_images(inputs, [height, width], method=tf.image.ResizeMethod.BILINEAR, align_corners=True)
def get_config(self):
config = {'size': self.size, 'data_format': self.data_format}
base_config = super(AWBilinearUpSampling2D, self).get_config()
return dict(list(base_config.items()) + list(config.items()))
class AWDepthEstimator(Nut):
"""
Contains the code for the depth detection step, adapted
from https://github.com/ialhashim/DenseDepth, the repository
for the 2018 pre-print by Alhashim and Wonka entitled
'High Quality Monocular Depth Estimation via Transfer Learning'.
"""
#The network used by the Depth Detector expects images to be of size 640x480
EXPECTED_IMAGE_WIDTH = 640
EXPECTED_IMAGE_HEIGHT = 480
def __init__(self,modelPath,minDepth=10,maxDepth=1000,batchSize=2):
"""
modelPath: The path to the model file that contains the trained network (e.g. 'data/nyu.h5').
minDepth (optional): The minimum depth that the network is allowed to assign a pixel. Default 10.
maxDepth (optional): The maximum depth that the network is allowed to assign a pixel. Default 1000.
batchSize (optional): How many images the network should process at once. Default 2.
"""
super().__init__()
self._depthModelPath = modelPath
self._minDepth = minDepth
self._maxDepth = maxDepth
self._batchSize = batchSize
#Custom object needed for inference and training
custom_objects = {'BilinearUpSampling2D': AWBilinearUpSampling2D, 'depth_loss_function': None}
self._model = load_model(self._depthModelPath, custom_objects=custom_objects, compile=False)
def setMinDepth(self,minDepth):
self._minDepth = minDepth
def setMaxDepth(self,maxDepth):
self._maxDepth = maxDepth
def setBatchSize(self,batchSize):
self._batchSize = batchSize
def __resize(self,images,width,height):
"""
width: The desired width of the resulting image(s).
height: The desired height of the resulting image(s).
"""
shape = (images.shape[0],width,height,images.shape[3])
return resize(images, shape, preserve_range=True, mode='reflect')
def __depthNorm(self,x):
return self._maxDepth / x
def __rrshift__(self,iterable):
for data in iterable:
if len(data.shape) == 3:
#(width,height,color)
originalWidth = data.shape[0]
originalHeight = data.shape[1]
else:
#(index,width,height,color)
originalWidth = data.shape[1]
originalHeight = data.shape[2]
data = np.clip(data / 255, 0, 1)
# Support multiple RGBs, one RGB image, even grayscale
if len(data.shape) < 3:
#If the image(s) are grayscale, we convert them to an RGB equivalent (v -> <v,v,v>).
data = np.stack((data,data,data), axis=2)
if len(data.shape) < 4:
data = data.reshape((1, data.shape[0], data.shape[1], data.shape[2]))
if data.shape[-1] == 4:
#Drop the alpha component from RGBA. The network only cares about RGB.
#e.g. (1,640,480,4) -> (1,640,480,3)
data = data[:,:,:,:3]
#The network used by the Depth Detector expects images to be of size 640x480
data = self.__resize(data,width=AWDepthEstimator.EXPECTED_IMAGE_WIDTH,height=AWDepthEstimator.EXPECTED_IMAGE_HEIGHT)
# Compute predictions
predictions = self._model.predict(data, batch_size=self._batchSize)
# Put in expected range
predictions = np.clip(self.__depthNorm(predictions), self._minDepth, self._maxDepth)
#Resize to original width and height.
predictions = self.__resize(predictions,width=originalWidth,height=originalHeight)
yield predictions
| 5,769 | 2,063 |
# ==============================================================================
# Copyright 2018 Intel Corporation
#
# 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 tensorflow as tf
import argparse
import numpy as np
import ngraph_bridge
from google.protobuf import text_format
import json
import os
import sys
def createFolder(directory):
try:
if not os.path.exists(directory):
os.makedirs(directory)
except OSError:
print('Error: Creating directory. ' + directory)
def set_os_env(select_device):
if select_device == 'CPU':
# run on TF only
ngraph_bridge.disable()
else:
if not ngraph_bridge.is_enabled():
ngraph_bridge.enable()
assert select_device[:
7] == "NGRAPH_", "Expecting device name to start with NGRAPH_"
back_end = select_device.split("NGRAPH_")
os.environ['NGRAPH_TF_BACKEND'] = back_end[1]
def calculate_output(param_dict, select_device, input_example):
"""Calculate the output of the imported graph given the input.
Load the graph def from graph file on selected device, then get the tensors based on the input and output name from the graph,
then feed the input_example to the graph and retrieves the output vector.
Args:
param_dict: The dictionary contains all the user-input data in the json file.
select_device: "NGRAPH" or "CPU".
input_example: A map with key is the name of the input tensor, and value is the random generated example
Returns:
The output vector obtained from running the input_example through the graph.
"""
graph_filename = param_dict["graph_location"]
output_tensor_name = param_dict["output_tensor_name"]
if not tf.gfile.Exists(graph_filename):
raise Exception("Input graph file '" + graph_filename +
"' does not exist!")
graph_def = tf.GraphDef()
if graph_filename.endswith("pbtxt"):
with open(graph_filename, "r") as f:
text_format.Merge(f.read(), graph_def)
else:
with open(graph_filename, "rb") as f:
graph_def.ParseFromString(f.read())
set_os_env(select_device)
with tf.Graph().as_default() as graph:
tf.import_graph_def(graph_def)
if len(output_tensor_name) == 0:
# if no outputs are specified, then compare for all tensors
output_tensor_name = sum(
[[j.name for j in i.outputs] for i in graph.get_operations()],
[])
# Create the tensor to its corresponding example map
tensor_to_example_map = {}
for item in input_example:
t = graph.get_tensor_by_name(item)
tensor_to_example_map[t] = input_example[item]
#input_placeholder = graph.get_tensor_by_name(input_tensor_name)
output_tensor = [graph.get_tensor_by_name(i) for i in output_tensor_name]
config = tf.ConfigProto(
allow_soft_placement=True,
# log_device_placement=True,
inter_op_parallelism_threads=1)
with tf.Session(graph=graph, config=config) as sess:
output_tensor = sess.run(output_tensor, feed_dict=tensor_to_example_map)
return output_tensor, output_tensor_name
def calculate_norm(ngraph_output, tf_output, desired_norm):
"""Calculate desired_norm between vectors.
Calculate the L1/L2/inf norm between the NGRAPH and tensorflow output vectors.
Args:
ngraph_output: The output vector generated from NGRAPH graph.
tf_output: The output vector generated from tensorflow graph.
desired_norm: L1/L2/inf norm.
Returns:
Calculated norm between the vectors.
Raises:
Exception: If the dimension of the two vectors mismatch.
"""
if (ngraph_output.shape != tf_output.shape):
raise Exception('ngraph output and tf output dimension mismatch')
ngraph_output_squeezed = np.squeeze(ngraph_output)
tf_output_squeezed = np.squeeze(tf_output)
ngraph_output_flatten = ngraph_output_squeezed.flatten()
tf_output_flatten = tf_output_squeezed.flatten()
factor = np.prod(ngraph_output_squeezed.shape)
if desired_norm not in [1, 2, np.inf]:
raise Exception('Only L2, L2, and inf norms are supported')
n = np.linalg.norm((ngraph_output_flatten - tf_output_flatten),
desired_norm)
if desired_norm is np.inf:
return n
else:
return n / len(ngraph_output_flatten)
def parse_json():
"""
Parse the user input json file.
Returns:
A dictionary contains all the parsed parameters.
"""
with open(os.path.abspath(args.json_file)) as f:
parsed_json = json.load(f)
return parsed_json
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument(
"--json_file", type=str, help="Model details in json format")
args = parser.parse_args()
if args.json_file is None:
raise ValueError("Supply a json file to start")
parameters = parse_json()
# Get reference/testing backend to compare
device1 = parameters["reference_backend"]
device2 = parameters["testing_backend"]
# Get L1/L2/Inf threshold value
l1_norm_threshold = parameters["l1_norm_threshold"]
l2_norm_threshold = parameters["l2_norm_threshold"]
inf_norm_threshold = parameters["inf_norm_threshold"]
# Create a folder to save output tensor arrays
output_folder = device1 + "-" + device2
createFolder(output_folder)
os.chdir(output_folder)
print("Model name: " + parameters["model_name"])
print("L1/L2/Inf norm configuration: {}, {}, {}".format(
l1_norm_threshold, l2_norm_threshold, inf_norm_threshold))
# Generate random input based on input_dimension
np.random.seed(100)
input_dimension = parameters["input_dimension"]
input_tensor_name = parameters["input_tensor_name"]
# Get random value range
rand_val_range = parameters["random_val_range"]
bs = int(parameters["batch_size"])
assert len(input_dimension) == len(
input_tensor_name
), "input_tensor_name dimension should match input_dimension in json file"
assert len(input_tensor_name) == len(
rand_val_range
), "Length of random_val_range should match input_tensor_name in json file"
# Matches the input tensors name with its required dimensions
input_tensor_dim_map = {}
for (dim, name, val_range) in zip(input_dimension, input_tensor_name,
rand_val_range):
random_input = np.random.randint(
val_range, size=[bs] + dim).astype('float32')
input_tensor_dim_map[name] = random_input
# Run the model on reference backend
result_tf_graph_arrs, out_tensor_names_cpu = calculate_output(
parameters, device1, input_tensor_dim_map)
# Run the model on testing backend
result_ngraph_arrs, out_tensor_names_ngraph = calculate_output(
parameters, device2, input_tensor_dim_map)
assert all(
[i == j for i, j in zip(out_tensor_names_cpu, out_tensor_names_ngraph)])
passed = True
th_dict = {
"L1": l1_norm_threshold,
"L2": l2_norm_threshold,
"inf": inf_norm_threshold
}
for tname, result_ngraph, result_tf_graph in zip(
out_tensor_names_cpu, result_ngraph_arrs, result_tf_graph_arrs):
new_out_layer = tname.replace("/", "_")
nparray_tf = np.array(result_tf_graph)
nparray_ngraph = np.array(result_ngraph)
np.save(device1 + "-" + new_out_layer + ".npy", nparray_tf)
np.save(device2 + "-" + new_out_layer + ".npy", nparray_ngraph)
l1_norm = calculate_norm(result_ngraph, result_tf_graph, 1)
l2_norm = calculate_norm(result_ngraph, result_tf_graph, 2)
inf_norm = calculate_norm(result_ngraph, result_tf_graph, np.inf)
norm_dict = {"L1": l1_norm, "L2": l2_norm, "inf": inf_norm}
print("\n[" + tname + "]")
#start the loop and check norms
for norm_name in norm_dict:
np.set_printoptions(precision=15)
if norm_dict[norm_name] > th_dict[norm_name]:
print(
"The %s norm is greater than %s threshold - %s norm: %f, %s threshold: %f"
% (norm_name, norm_name, norm_name, norm_dict[norm_name],
norm_name, th_dict[norm_name]))
passed = False
else:
print("The %s norm test passed - %s norm: %f, %s threshold: %f"
% (norm_name, norm_name, norm_dict[norm_name], norm_name,
th_dict[norm_name]))
if not passed:
sys.exit(1)
| 9,316 | 2,853 |
from fixing import *
from observable import *
from generate_flows import *
from generate_observables import *
class swap_rate(observable):
def __init__(self
, attributes
, flow_id
, reset_id
, reset_date
, reset_ccy
, proj_start_date
, proj_end_date
, fix
, spread=None):
observable.__init__(self
, attributes
, flow_id
, reset_id
, reset_ccy
, reset_date
, proj_end_date
, fix
, spread)
self.__proj_start_date = proj_start_date
self.__proj_end_date = proj_end_date
self.__generate()
def proj_start_date(self): return self.__proj_start_date
def proj_end_date(self): return self.__proj_end_date
def fixed_pay_basis(self) : return self.__fixed_pay_basis
def float_pay_basis(self) : return self.__float_pay_basis
def proj_basis(self): return self.__proj_basis
def fixed_flows(self): return self.__fixed_flows
def float_flows(self): return self.__float_flows
def __str__(self):
s = "%d, " % self.flow_id()
s += "%d, " % self.reset_id()
s += "%s, " % self.reset_currency()
s += "[%s, %s], " % (self.__proj_start_date, self.__proj_end_date)
return s
def __generate(self):
start = self.__proj_start_date
until = self.__proj_end_date
attributes = self.attributes()
fixed_period = attributes["fixed-pay-period"]
fixed_period_duration = attributes["fixed-pay-period-duration"]
fixed_pay_basis = attributes["fixed-pay-basis"]
fixed_pay_holiday_centers = attributes["fixed-pay-holiday-centers"]
fixed_shift_convention = attributes["fixed-shift-convention"]
float_period = attributes["float-pay-period"]
float_period_duration = attributes["float-pay-period-duration"]
float_pay_basis = attributes["float-pay-basis"]
float_pay_holiday_centers = attributes["float-pay-holiday-centers"]
float_shift_convention = attributes["float-shift-convention"]
libor_basis = attributes["index-basis"]
libor_holiday_centers = attributes["index-holiday-centers"]
libor_shift_convention = attributes["index-shift-convention"]
self.__fixed_flows = \
generate_flows(start
, until
, period = fixed_period
, duration = fixed_period_duration
, pay_shift_method = fixed_shift_convention
, pay_currency = self.reset_currency()
, pay_basis = fixed_pay_basis
, pay_holiday_centers = fixed_pay_holiday_centers
, accrual_shift_method = fixed_shift_convention
, accrual_holiday_centers = fixed_pay_holiday_centers)
libor_observables = \
generate_libor_observables(
start
, until
, roll_period = float_period
, roll_duration = float_period_duration
, reset_period = float_period
, reset_duration = float_period_duration
, tenor_period = float_period
, tenor_duration = float_period_duration
, reset_currency = self.reset_currency()
, reset_basis = libor_basis
, reset_holiday_centres = libor_holiday_centers
, reset_shift_method = libor_shift_convention)
self.__float_flows = \
generate_flows(start
, until
, period = float_period
, duration = float_period_duration
, pay_shift_method = float_shift_convention
, pay_currency = self.reset_currency()
, pay_basis = float_pay_basis
, pay_holiday_centers = float_pay_holiday_centers
, accrual_shift_method = float_shift_convention
, accrual_holiday_centers = float_pay_holiday_centers
, observables = libor_observables)
def forward(self, t, curve):
fund_pv = 0
for f in self.__float_flows:
obs = f.observables()[0]
proj_start, proj_end, reset_accrual_dcf = \
(obs.proj_start_date(), obs.proj_end_date(), obs.year_fraction())
dfs, dfe = \
curve(int(proj_start - t)/365.0), curve(int(proj_end - t)/365.0)
libor = (dfs/dfe - 1.0)/reset_accrual_dcf
pay_date, accrual_dcf = (f.pay_date(), f.year_fraction())
dfp = curve(int(pay_date - t)/365.0)
fund_pv += dfp*libor*accrual_dcf
fixed_pv = 0
for f in self.__fixed_flows:
pay_date, accrual_dcf = (f.pay_date(), f.year_fraction())
dfp = curve(int(pay_date - t)/365.0)
fixed_pv += dfp*accrual_dcf
return fund_pv/fixed_pv
def _test():
import doctest
doctest.testmod()
if __name__ == '__main__':
_test()
| 5,038 | 1,555 |
import discord
from discord.ext import commands
import os
import random
from server import run_server
#token
token = os.environ.get("token")
#prefisso
bot = commands.Bot(command_prefix="m!", description="Nada.")
bot.remove_command('help')
#status
@bot.event
async def on_ready():
print("Sono online come", bot.user)
await bot.change_presence(activity=discord.Game(name="It's-a me, Mario! m!help"))
@bot.command(description='It s-a me, Mario!')
async def help(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="Okeydokey!",
colour=discord.Colour(0xFF001E),
timestamp=ctx.message.created_at)
embed.set_footer(text=f"I am exploring {len(bot.guilds)} kingdoms")
for x in bot.commands:
if not x.hidden:
if not x.description:
embed.add_field(
name=f"{bot.command_prefix}{x.name}",
value=f'Descrizione non impostata!',
inline=False)
else:
embed.add_field(
name=f"{bot.command_prefix}{x.name}",
value=f'```{x.description}```',
inline=False)
mes = await ctx.send(embed=embed)
def check(reaction, user):
return user == ctx.author and str(reaction.emoji) == '🔧'
await mes.add_reaction(emoji='🔧')
reaction, user = await bot.wait_for('reaction_add', check=check)
if reaction.emoji == "🔧":
await mes.delete()
#log
@bot.event
async def on_guild_join(guild):
ch = bot.get_channel(719316259237396491)
emb = discord.Embed(
description=f"{bot.user.mention} has arrived in the kingdom of **{guild.name}**\n King : **{guild.owner}**\n Inhabitants : **{guild.member_count}**",
colour=0xFF001E)
emb.set_footer(text=f"I am exploring {len(bot.guilds)} castel", icon_url=bot.user.avatar_url)
emb.set_thumbnail(url=guild.icon_url)
if guild.banner:
emb.set_image(url=guild.banner_url)
await ch.send(embed=emb)
@bot.event
async def on_guild_remove(guild):
ch = bot.get_channel(719316259237396491)
emb = discord.Embed(
description=f"{bot.user.mention} has abandoned the kingdom of **{guild.name}**\n King : **{guild.owner}**\n Inhabitants : **{guild.member_count}**",
colour=0xFF001E)
emb.set_footer(text=f"I am exploring {len(bot.guilds)} castel", icon_url=bot.user.avatar_url)
emb.set_thumbnail(url=guild.icon_url)
if guild.banner:
emb.set_image(url=guild.banner_url)
await ch.send(embed=emb)
#comandi
@bot.command(description='I repeat everything you write')
async def say(ctx, *, message):
a = commands.clean_content(use_nicknames=True)
message = await a.convert(ctx, message)
await ctx.send(message)
@bot.command(description='View support server')
async def support(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="I'm-a-tired.",
description=
"[Support server](https://discord.gg/DF7KSsN)",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='View source code')
async def source(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="I'm-a-tired.",
description=
"The source code is available on [GitHub](https://github.com/Infinit7Even/Mario-)",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='Invite Mario to your server')
async def invite(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="Mamma mia!",
description=
"[Invite Mario](https://top.gg/bot/714550524829106296) in your server!",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='Vote Mario In the Store')
async def vote(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="Thank you so much for-to-playing my game!",
description="[Vote Mario!](https://top.gg/bot/714550524829106296)",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='Bot credits')
async def credit(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="Thank you so much for-to-playing my game!",
description="Bot developed da **Infinit7Even#1803** and **IT | Kewai#9029**",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='Use this command if Mario isn t working properly')
async def fix(ctx):
await ctx.message.delete()
embed = discord.Embed(
title="Nighty, nighty. Ah, spaghetti... ah, ravioli... ah, mamma mia.",
description="Make sure Mario can read the messages, delete them and send links, if you still have problems contact Infinit7Even#1803.",
colour=0xFF001E)
await ctx.send(embed=embed, delete_after=20)
@bot.command(description='Bot response time in ms (Milliseconds)')
async def ping(ctx):
latency = bot.latency
await ctx.send('**Bot response time in ms (Milliseconds):**')
await ctx.send(latency)
#support
@bot.event
async def on_message(message):
await bot.process_commands(message)
if not message.author.bot:
if message.content.lower() == "m!say":
triggered = ['`To use that command type m!say message`']
await message.author.send(
f"{random.choice(triggered)}")
#triggered
@bot.event
async def on_message(message):
await bot.process_commands(message)
if not message.author.bot:
if message.content.lower() == "ciao":
triggered = ['Ehi, torna qua, scimmione!', 'Hi']
await message.channel.send(
f"{random.choice(triggered)}")
if message.content.lower() == "noice":
triggered = ['gg', 'k', 'kk']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "rip":
triggered = [
'https://tenor.com/view/rip-coffin-black-ghana-celebrating-gif-16743302', 'https://cdn.discordapp.com/attachments/611325092269522944/717659473057022013/SnapCrab_NoName_2020-6-3_10-42-9_No-00.png', 'https://tenor.com/view/davis-boreanaz-salute-uniform-gif-4762830'
]
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "f":
triggered = ['F', '```Press F to Pay Respect```']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "we":
triggered = ['Olah!', 'Welà']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "mario":
triggered = [
'Lets-a go!', 'Mamma mia!', 'Here we go!',
'It s-a me, **Mario!**', 'Okeydokey!', 'Im-a-tired.', 'Press "START" to play!', 'Hello there', 'I am back!'
]
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "start":
triggered = [
'Use `m!help` to open the menu']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "come va?":
triggered = [
'Bene, a te?', 'Alla grande!', 'Spettacularis!',
'It s-a me, **Mario!**', 'Good!'
]
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "bene":
triggered = [
'Ottimo!', 'Eccllente!', 'Fantastico!']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "m!say @everyone":
triggered = [
'F', 'Rip.']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "oh shit":
triggered = [
'OH SHIT, HERE WE GO AGAIN']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "mamma mia":
triggered = [
'Mamma Mia Marcello!']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "marcello":
triggered = [
'Mamma Mia Marcello!']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "luigi":
triggered = [
'Luigi! Che cosa ti trattiene!?']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "onesto":
triggered = [
'Ben detto fra!']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "ok":
triggered = [
'```Mario approves```']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "nintendo":
triggered = [
'Oh shit, my creator hasn t asked for rights yet', 'https://tenor.com/view/traffic-fbiopen-up-raid-gif-13450966']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "rossi":
triggered = [
'Wait!']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "giovanni":
triggered = [
'TIRAMI FUORI DA QUI!!!', 'Mamma mia!', 'Mamma mia Marcello!', 'Mamma miaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "gg":
triggered = [
'That s my bro.']
await message.channel.send(f"{random.choice(triggered)}")
if message.content.lower() == "mario dm":
triggered = ['I am back!']
await message.author.send(
f"{random.choice(triggered)}")
if message.content.lower() == "super mario":
triggered = ['bross WIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII', 'https://www.youtube.com/watch?v=9kdayFSHkyI']
await message.channel.send(
f"{random.choice(triggered)}")
if message.content.lower() == "fuck you":
triggered = ['Owowowow']
await message.channel.send(
f"{random.choice(triggered)}")
if message.content.lower() == "64":
triggered = ['What memories...']
await message.channel.send(
f"{random.choice(triggered)}")
if message.content.lower() == "yo":
triggered = ['risposta 1', 'risposta 2']
await message.channel.send(
f"{random.choice(triggered)}")
run_server()
bot.run(token) | 10,953 | 3,621 |
import numpy as np
import string
import re
__all__ = ['BADAA',
'AALPHABET',
'convertHLAAsterisk',
'isvalidmer',
'isvalidHLA',
'rankEpitopes',
'rankKmers',
'rankMers',
'getIC50',
'getMers',
'getMerInds',
'grabKmer',
'grabKmerInds',
'findpeptide',
'grabOverlappingKmer',
'overlappingMers']
BADAA = '-*BX#Z? '
AALPHABET = 'ACDEFGHIKLMNPQRSTVWY'
def convertHLAAsterisk(hlas):
"""Replace the * with _ in each HLA allele"""
repAsteriskPattern = re.compile('\*')
return [re.sub(repAsteriskPattern, '_', h) for h in hlas]
def isvalidmer(mer):
if not mer is None:
return not re.search('[%s]' % BADAA, mer)
else:
return False
def isvalidHLA(h, loci='AB'):
if h[0] in loci:
return True
else:
return False
def rankEpitopes(ba, hlaList, peptide, nmer = [8, 9, 10, 11], peptideLength = None):
"""Breaks peptide into kmers (all nmer lengths)
and rank all (hla, kmer) pairs by predicted IC50 in hlaPredCache ba
IDENTICAL to rankKmers but may have different performance?
Can be used to find the most likely optimal epitope in a peptide sequence.
Predictions that are not found in ba get a temporary prediction of 15 log-nM
Parameters
----------
ba : hlaPredCache
dict-like container of all (hla, kmer) IC50 values
hlaList : list
HLA alleles to be used as keys in ba
peptide : str
AA sequence
nmer : list
Integers indicating optimal lengths to be tested as kmers.
peptideLength : int or None
If a number is specified then a number of '.' padded kmers are included
so that there are always garaunteed to be a certain number of kmers and results
Returns
-------
ranks : ndarray int
Zero-based rankings of kmers based on predicted IC50 (lowest IC50, lowest rank)
sorti : ndarray int
Index that can be used to sort the returned arrays
kmers : ndarray object
Array of kmer strings in order by getMers() (can be sorted by rank with sorti)
ic50 : ndarray float
Predicted log-IC50 (log-nM) with the HLA allele with the lowest IC50
hla : ndarray object
Array of HLA alleles that were the best predicted binder to each kmer"""
merList = getMers(peptide, nmer, peptideLength)
kmers = np.empty((len(merList), len(hlaList)), dtype=object)
ic50 = np.ones((len(merList), len(hlaList))) * 15
hla = np.empty((len(merList), len(hlaList)), dtype=object)
for i, m in enumerate(merList):
for j, h in enumerate(hlaList):
kmers[i, j] = m
hla[i, j] = h
tmp = ba[(h, m)]
if not np.isnan(tmp):
ic50[i, j] = tmp
kmers = kmers.flatten()
ic50 = ic50.flatten()
hla = hla.flatten()
sorti = ic50.argsort()
ranks = np.empty(len(ic50), int)
ranks[sorti] = np.arange(len(ic50))
return (ranks, sorti, kmers, ic50, hla)
def rankKmers(ba, hlaList, peptide, nmer=[8, 9, 10, 11], peptideLength=None):
"""Breaks peptide into kmers (all nmer lengths)
and rank all (hla, kmer) pairs by predicted IC50 in hlaPredCache ba
IDENTICAL to rankEpitopes but may have different performance?
Can be used to find the most likely optimal epitope in a peptide sequence.
Predictions that are not found in ba get a temporary prediction of 15 log-nM
Parameters
----------
ba : hlaPredCache
dict-like container of all (hla, kmer) IC50 values
hlaList : list
HLA alleles to be used as keys in ba
peptide : str
AA sequence
nmer : list
Integers indicating optimal lengths to be tested as kmers.
peptideLength : int or None
If a number is specified then a number of '.' padded kmers are included
so that there are always garaunteed to be a certain number of kmers and results
Returns
-------
ranks : ndarray int
Zero-based rankings of kmers based on predicted IC50 (lowest IC50, lowest rank)
sorti : ndarray int
Index that can be used to sort the returned arrays
kmers : ndarray object
Array of kmer strings in order by getMers() (can be sorted by rank with sorti)
ic50 : ndarray float
Predicted log-IC50 (log-nM) with the HLA allele with the lowest IC50
hla : ndarray object
Array of HLA alleles that were the best predicted binder to each kmer"""
kmers = getMers(peptide, nmer, peptideLength)
result = rankMers(ba, hlaList, kmers)
return (result[0], result[1], kmers, result[2], result[3])
def rankMers(ba, hlaList, merList):
"""Ranks all (hla, mer) pairs by predicted IC50 found in hlaPredCache, ba
Can be used to find the most likely optimal epitope from a list.
Predictions that are not found in ba get a temporary prediction of 15 log-nM
Parameters
----------
ba : hlaPredCache
dict-like container of all (hla, kmer) IC50 values
hlaList : list
HLA alleles to be used as keys in ba
merList : list
Peptide sequences to be tests with each HLA allele
Returns
-------
ranks : ndarray int
Zero-based rankings of kmers based on predicted IC50 (lowest IC50, lowest rank)
sorti : ndarray int
Index that can be used to sort the returned arrays
kmers : ndarray object
Array of kmer strings in order by getMers() (can be sorted by rank with sorti)
ic50 : ndarray float
Predicted log-IC50 (log-nM) with the HLA allele with the lowest IC50
hla : ndarray object
Array of HLA alleles that were the best predicted binder to each kmer"""
ic50 = np.ones((len(merList))) * 15
hla = np.empty(len(merList), dtype=object)
for i, m in enumerate(merList):
if not '.' in m:
ic50[i], hla[i] = getIC50(ba, hlaList, m, returnHLA=True)
sorti = ic50.argsort()
ranks = np.empty(len(ic50), dtype=int)
ranks[sorti] = np.arange(len(ic50))
return (ranks, sorti, ic50, hla)
def getIC50(ba, hlaList, mer, nmer=[8, 9, 10, 11], returnHLA=False):
"""Return the IC50 from ba of the mer and its affinity with the most avid HLA in hlaList.
Or if len(pep)>11, return that of the most avid kmer
Parameters
----------
ba : hlaPredCache
dict-like container of all (hla, kmer) IC50 values
hlaList : list
HLA alleles to be used as keys in ba
mer : string
Peptide sequences to be tests with each HLA allele
nmer : list
Integers indicating optimal lengths to be tested as kmers.
returnHLA : bool
If True, return the HLA with the lowest binding affinity.
Returns
-------
ic50 : float
Log-IC50 from ba
hla : string (optional)
HLA allele with best binding"""
if ba is None:
raise NameError('Did not load IC50 values into ba!')
if len(mer) <= 11:
"""Minimum IC50 over the HLAs"""
ic50s = np.asarray([ba[(h, mer)] for h in hlaList])
hlas = hlaList
else:
"""Minimum IC50 over all the mers and all the HLAs"""
pairs = [getIC50(ba, hlaList, m, returnHLA=True) for m in getMers(mer, nmer)]
ic50s = np.asarray([p[0] for p in pairs])
hlas = [p[1] for p in pairs]
mini = np.argmin(ic50s)
if returnHLA:
return ic50s[mini], hlas[mini]
else:
return ic50s[mini]
def getMers(seq, nmer=[8, 9, 10, 11], seqLength=None):
"""Takes a AA sequence (string) and turns it into a list of 8, 9, 10, 11 mers
The seq will be padded with one or more '.' if it is shorter than seqLength
These indices will match the peptides created by getMers()
Paramters
---------
seq : str
Peptide sequence.
nmer : list
List of k's for the creation of all kmers.
seqLength : int
Minimum length of seq ('.' used for padding before applying the process)
Useful for garaunteeing that a certain number of kmers will be in the list.
Returns
-------
mers : list
All peptides of length nmer contained by seq"""
if not seqLength is None:
if len(seq) > seqLength:
seq = seq[:seqLength]
elif len(seq) < seqLength:
seq = string.ljust(seq, seqLength, '.')
mers = []
for n in nmer:
mers.extend([seq[i:i+n] for i in range(len(seq)-n+1)])
return mers
def getMerInds(seq, nmer=[8, 9, 10, 11], seqLength=None):
"""Takes a AA sequence (string) and turns it into a list of 8, 9, 10, 11 mers
The seq will be padded with one or more '.' if it is shorter than seqLength
These indices will match the peptides created by getMers()
Paramters
---------
seq : str
Peptide sequence.
nmer : list
List of k's for the creation of all kmers.
seqLength : int
Minimum length of seq ('.' used for padding before applying the process)
Useful for garaunteeing that a certain number of kmers will be in the list.
Returns
-------
mers : list
All peptides of length nmer contained by seq
mers : list
Seq indices for mers"""
if not seqLength is None:
if len(seq) > seqLength:
seq = seq[:seqLength]
elif len(seq) < seqLength:
seq = string.ljust(seq, seqLength, '.')
mers = []
inds = []
for n in nmer:
mers.extend([seq[i:i+n] for i in range(len(seq)-n+1)])
inds.extend([np.arange(n)+i for i in range(len(seq)-n+1)])
return mers, inds
def itermer(seq, k=9, gapped=True, yield_inds=False):
"""Generator over all k-mers in seq.
There are [len(seq) - k + 1] k-mers in seq.
Parameters
----------
seq : str
Sequence which will be broken into kmers.
k : int
Length of peptides to return.
gapped : bool
If True (default), yield the k-mer including gaps.
If False, yield the "non-gapped" k-mer from grabKmer
return_inds : bool
If True, also yield an array of indices from grabKmerInds
Yields
------
mer : str
If gapped, then a k-length peptide starting at starti from seq.
If seq[starti] is a gap then returns None.
If not gapped then all gaps are removed before taking the k-length peptide
(if there aren't k AAs then return is None)
inds : nd.array (optional)
An array of indices for the mer"""
for i in range(len(seq) - k + 1):
g, ng = grabKmer(seq, i, k=k)
if gapped:
mer = g
else:
mer = ng
if yield_inds:
ginds, nginds = grabKmerInds(seq, i, k=k)
if gapped:
inds = ginds
else:
inds = nginds
yield (mer, inds)
else:
yield (mer,)
def grabKmer(seq, starti, k=9):
"""Grab the kmer from seq starting at position starti with length k
Return the gapped and non-gapped kmer
If seq[starti] is a gap then the non-gapped kmer is None.
If there are not enough non-gap AA to return after starti then it returns None
Parameters
----------
seq : str
Sequence from which peptide will be grabbed.
starti : int
Starting position of the kmer (zero-based indexing)
k : int
Length of the peptide to return.
Returns
-------
gapped : str
A k-length peptide starting at starti from seq.
nonGapped : str
A k-length peptide starting at starti from seq.
If seq[starti] is a gap then returns None.
If not then all gaps are removed before taking the k-length peptide
(if there aren't k AAs then return is None)"""
if not isinstance(starti, int):
starti = int(starti)
if (starti+k-1) <= (len(seq)-1) and starti >= 0:
tmp = seq[starti:]
full = tmp[:k]
if full[0] == '-':
return None, None
elif '-' in full:
ng = tmp.replace('-', '')
if len(ng) >= k:
ng = ng[:k]
else:
ng = None
else:
ng = full
return full, ng
else:
return None, None
def grabKmerInds(seq, starti, k=9):
"""Grab the kmer from seq starting at position starti with length k
Return the indices of the gapped and non-gapped kmers
i.e. indices are such that seq[ind] == kmer
If seq[starti] is a gap then the non-gapped kmer is None.
If there are not enough non-gap AA to return after starti then it returns None
Parameters
----------
seq : str
Sequence from which peptide will be grabbed.
starti : int
Starting position of the kmer (zero-based indexing)
k : int
Length of the peptide to return.
Returns
-------
gapped : ndarray
A k-length vector starting with starti containing the indices for the kmer
nonGapped : ndarray
A k-length vector starting at starti.
If seq[starti] is a gap then returns an empty array.
If not then all gaps are removed before taking the k-length peptide
(if there aren't k AAs then return is an empty array)"""
if not isinstance(starti, int):
starti = int(starti)
if (starti+k-1) <= (len(seq)-1) and starti >= 0:
tmp = np.arange(starti, len(seq))
full = tmp[:k]
"""If it starts with a gap then it is invalid (arbitary rule)"""
if seq[starti] == '-':
return np.empty(0), np.empty(0)
elif '-' in seq[starti:starti+k]:
"""If there's a gap somewhere else then go through one by one adding non-gapped indices"""
ng = []
for sitei in tmp:
if not seq[sitei] == '-':
ng.append(sitei)
"""If we get to k non-gapped AAs then return full,ng"""
if len(ng) == k:
return full, np.array(ng)
"""If we get to then end of the seq then return ng=None"""
return full, np.empty(0)
else:
"""If there are no gaps anywhere then just return k indices starting with starti"""
return full, full
else:
"""If its an invalid request then return None,None"""
return np.empty(0), np.empty(0)
def findpeptide(pep, seq, returnEnd = False):
"""Find pep in seq ignoring gaps but returning a start position that counts gaps
pep must match seq exactly (otherwise you should be using pairwise alignment)
Parameters
----------
pep : str
Peptide to be found in seq.
seq : str
Sequence to be searched.
returnEnd : bool
Flag to return the end position such that:
seq[startPos:endPos] = pep
Returns
-------
startPos : int
Start position (zero-indexed) of pep in seq or -1 if not found"""
ng = seq.replace('-', '')
ngInd = ng.find(pep)
ngCount = 0
pos = 0
"""Count the number of gaps prior to the non-gapped position. Add them to it to get the gapped position"""
while ngCount < ngInd or seq[pos] == '-':
if not seq[pos] == '-':
ngCount += 1
pos += 1
startPos = ngInd + (pos - ngCount)
if returnEnd:
if startPos == -1:
endPos = -1
else:
count = 0
endPos = startPos
while count < len(pep):
if not seq[endPos] == '-':
count += 1
endPos += 1
return startPos, endPos
else:
return startPos
def grabOverlappingKmer(seq, sitei, pos=0, k=9):
"""Grab the kmer from seq for which it is in the pos position at sitei
Return the gapped and non-gapped kmer
This is a generalization of grabKmer for pos = 0
If seq[sitei] is a gap then the non-gapped kmer is None.
If there are not enough non-gap AA to return before/after sitei then it returns None
Parameters
----------
seq : str
Sequence from which peptide will be grabbed.
sitei : int
Key position of the kmer (zero-based indexing)
pos : int
The position of the key sitei in the kmer.
k : int
Length of the peptide to return.
Returns
-------
gapped : str
A k-length peptide that overlaps sitei
nonGapped : str
A k-length peptide that overlaps sitei
If seq[sitei] is a gap then returns None.
If not then all gaps are removed before taking the k-length peptide
(if there aren't k AAs then return is None)"""
aaRight = k - pos
aaLeft = pos
if seq[sitei] == '-':
return None, None
if (sitei + aaRight) <= len(seq) and (sitei - aaLeft) >= 0:
if pos<k:
rh = seq[sitei:]
fullRH = rh[:aaRight]
if '-' in fullRH:
ngRH = rh.replace('-', '')
if len(ngRH) >= aaRight:
ngRH = ngRH[:aaRight]
else:
ngRH = None
else:
ngRH = fullRH
else:
fullRH = ''
ngRH = ''
if pos>0:
lh = seq[:sitei]
fullLH = lh[-aaLeft:]
if '-' in fullLH:
ngLH = lh.replace('-', '')
if len(ngLH) >= aaLeft:
ngLH = ngLH[-aaLeft:]
else:
ngLH = None
else:
ngLH = fullLH
else:
fullLH = ''
ngLH = ''
full = fullLH + fullRH
#print aaLeft,fullLH,",", aaRight,fullRH
if ngLH is None or ngRH is None:
ng = None
else:
ng = ngLH + ngRH
return full, ng
else:
return None, None
def overlappingMers(seq, sitei, nmer = [8, 9, 10, 11], padding = 0):
"""Create a list of kmers that overlap sitei in seq
Returns parallel lists of the mers, start positions and lengths
Parameters
----------
seq : str
sitei : int
Zero-based index into seq
nmer : list
Lengths of kmers to consider
padding : int
Allow kmer to be within padding.
Defalut is no padding (must overlap)
Returns
-------
mers : list
List of overlapping peptides
starti : list
List of start positions"""
def _overlappingMersNoPadding(seq, sitei, nmer):
mers = []
starti = []
for k in nmer:
for posi in range(k):
ng = grabOverlappingKmer(seq, sitei, pos=posi, k=k)[1]
if not ng is None:
mers.append(ng)
starti.append(sitei-posi)
#print sitei, posi, k, ng
mers, uniqi = np.unique(mers, return_index = True)
starti = np.array(starti)[uniqi]
return mers, starti
mers, starti = _overlappingMersNoPadding(seq, sitei, nmer = nmer)
if padding > 0:
for padi in (np.arange(padding) + 1):
for tmpSitei in [sitei+padi, sitei-padi]:
tmpMers, tmpStarti = _overlappingMersNoPadding(seq, tmpSitei, nmer)
mers = np.concatenate((mers, tmpMers))
starti = np.concatenate((starti, tmpStarti))
mers, uniqi = np.unique(mers, return_index = True)
starti = np.array(starti)[uniqi]
return mers, starti | 19,506 | 6,285 |
assert __name__ == '__main__'
# in shell
import os, sys
simfempypath = os.path.abspath(os.path.join(__file__, os.path.pardir, os.path.pardir, os.path.pardir, os.path.pardir,'simfempy'))
sys.path.insert(0,simfempypath)
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
import pygmsh
from simfempy.applications.stokes import Stokes
from simfempy.applications.navierstokes import NavierStokes
from simfempy.applications.problemdata import ProblemData
from simfempy.meshes.simplexmesh import SimplexMesh
from simfempy.meshes import plotmesh
# ================================================================c#
def main(testcase='drivenCavity'):
testcases = ['drivenCavity', 'backwardFacingStep', 'poiseuille']
# create mesh and data
if testcase=='drivenCavity':
mesh, data = drivenCavity(h=0.2, mu=0.00025)
elif testcase=='backwardFacingStep':
mesh, data = backwardFacingStep(h=0.1)
elif testcase=='poiseuille':
mesh, data = poiseuille(h=0.1)
else:
raise ValueError(f"test case must be in {testcases=}")
# plotmesh.meshWithBoundaries(mesh)
# create application
# stokes = Stokes(mesh=mesh, problemdata=data, linearsolver='iter_gmres_10')
stokes = Stokes(mesh=mesh, problemdata=data, linearsolver='umf')
# stokes = NavierStokes(mesh=mesh, problemdata=data, linearsolver='iter_gmres')
# stokes = NavierStokes(mesh=mesh, problemdata=data, linearsolver='iter_gcrotmk')
# stokes = NavierStokes(mesh=mesh, problemdata=data, linearsolver='umf')
result = stokes.solve()
print(f"{result.info['timer']}")
print(f"postproc:")
for p, v in result.data['global'].items(): print(f"{p}: {v}")
fig = plt.figure(figsize=(10, 8))
outer = gridspec.GridSpec(1, 3, wspace=0.2, hspace=0.2)
plotmesh.meshWithBoundaries(mesh, fig=fig, outer=outer[0])
plotmesh.meshWithData(mesh, data=result.data, title="Stokes", fig=fig, outer=outer[1])
plotmesh.meshWithData(mesh, title="Stokes", fig=fig, outer=outer[2],
quiver_data={"V":list(result.data['point'].values())})
plt.show()
# ================================================================c#
def drivenCavity(h=0.1, mu=0.001):
with pygmsh.geo.Geometry() as geom:
ms = [h*v for v in [1.,1.,0.2,0.2]]
p = geom.add_rectangle(xmin=0, xmax=1, ymin=0, ymax=1, z=0, mesh_size=ms)
geom.add_physical(p.surface, label="100")
for i in range(len(p.lines)): geom.add_physical(p.lines[i], label=f"{1000 + i}")
mesh = geom.generate_mesh()
data = ProblemData()
# boundary conditions
# data.bdrycond.set("Dirichlet", [1000, 1001, 1002, 1003])
data.bdrycond.set("Dirichlet", [1001, 1002, 1003])
data.bdrycond.set("Navier", [1000])
# data.bdrycond.fct[1002] = lambda x, y, z: np.vstack((np.ones(x.shape[0]),np.zeros(x.shape[0])))
data.bdrycond.fct[1002] = [lambda x, y, z: 1, lambda x, y, z: 0]
# parameters
data.params.scal_glob["mu"] = mu
#TODO pass ncomp with mesh ?!
data.ncomp = 2
return SimplexMesh(mesh=mesh), data
# ================================================================ #
def backwardFacingStep(h=0.2, mu=0.02):
with pygmsh.geo.Geometry() as geom:
X = []
X.append([-1.0, 1.0])
X.append([-1.0, 0.0])
X.append([0.0, 0.0])
X.append([0.0, -1.0])
X.append([3.0, -1.0])
X.append([3.0, 1.0])
p = geom.add_polygon(points=np.insert(np.array(X), 2, 0, axis=1), mesh_size=h)
geom.add_physical(p.surface, label="100")
for i in range(len(p.lines)): geom.add_physical(p.lines[i], label=f"{1000 + i}")
mesh = geom.generate_mesh()
data = ProblemData()
# boundary conditions
data.bdrycond.set("Dirichlet", [1000, 1001, 1002, 1003])
# data.bdrycond.set("Dirichlet", [1000, 1001, 1002, 1003, 1005])
data.bdrycond.set("Neumann", [1004])
data.bdrycond.set("Navier", [1005])
# data.bdrycond.fct[1000] = [lambda x, y, z: 1, lambda x, y, z: 0]
data.bdrycond.fct[1000] = [lambda x, y, z: y*(1-y), lambda x, y, z: 0]
# parameters
data.params.scal_glob["mu"] = mu
data.params.scal_glob["navier"] = 0.01
#TODO pass ncomp with mesh ?!
data.ncomp = 2
return SimplexMesh(mesh=mesh), data
# ================================================================ #
def poiseuille(h= 0.1, mu=0.02):
with pygmsh.geo.Geometry() as geom:
#ms = [h*v for v in [1.,1.,0.2,0.2]]
ms = h
p = geom.add_rectangle(xmin=-1.0, xmax=3.0, ymin=-1.0, ymax=1.0, z=0, mesh_size=ms)
geom.add_physical(p.surface, label="100")
for i in range(len(p.lines)): geom.add_physical(p.lines[i], label=f"{1000 + i}")
mesh = geom.generate_mesh()
data = ProblemData()
# boundary conditions
data.bdrycond.set("Dirichlet", [1000, 1003, 1002])
data.bdrycond.set("Neumann", [1001])
# data.bdrycond.fct[1002] = lambda x, y, z: np.vstack((np.ones(x.shape[0]),np.zeros(x.shape[0])))
data.bdrycond.fct[1003] = [lambda x, y, z: 1, lambda x, y, z: 0]
#--------------------------------------------------------------------------
#navier_slip_boundary
data.bdrycond.fct[1002] = [lambda x, y, z: 1, lambda x, y, z: 0]
#data.bdrycond.fct[1000] = [lambda x, y, z: 0, lambda x, y, z: 0]
#---------------------------------------------------------------------------
# parameters
data.params.scal_glob["mu"] = mu
data.params.scal_glob["navier"] = 0.01
#TODO pass ncomp with mesh ?!
data.ncomp = 2
return SimplexMesh(mesh=mesh), data
# ================================================================c#
main()
| 5,697 | 2,298 |
import re
import ujson
from psycopg2.sql import SQL, Composable, Identifier
from polecat.utils import to_bool, to_tuple
from ...schema.column import ReverseColumn
from .expression import Expression
class DiscardValue:
pass
class Where:
FILTER_PROG = re.compile(r'^([a-zA-Z][a-zA-Z0-9_]+(?:__[a-zA-Z][a-zA-Z0-9_]+)*)$')
FILTER_TYPES = None
def __init__(self, *args, **kwargs):
self.root = self.parse_input(args, kwargs)
def get_sql(self, relation):
self.relation = relation
if self.root:
return self.root.get_sql(self)
else:
return None
def parse_input(self, args, kwargs):
root = None
for k, v in kwargs.items():
m = self.FILTER_PROG.match(k)
if not m:
raise ValueError(f'Unable to match filter condition: {k}')
target = m.group(1)
lookup, flt_cls = self.parse_target(target)
flt = flt_cls(self, lookup, v)
if root is None:
root = flt
else:
root = And(root, flt)
for a in args:
# TODO: Confirm that `a` is a proper FilterType.
root = And(root, a)
return root
def parse_target(self, target):
i = target.rfind('__')
if i != -1:
try:
return target[:i], self.FILTER_TYPES[target[i + 2:]]
except KeyError:
pass
return target, Equal
def merge(self, other, boolean='AND'):
# TODO: We should really do a check for duplicate filters.
if self.root:
if other.root:
if boolean == 'AND':
self.root = And(self.root, other.root)
else:
self.root = Or(self.root, other.root)
elif other.root:
self.root = other.root
def get_primary_columns(self):
return self.root.get_primary_columns()
class FilterType:
def __init__(self, filter, lookup, value):
self.parse_lookup(lookup)
self.parse_value(filter, value)
def get_sql(self, filter):
sql, args = self.eval(filter)
sql = self.eval_joins(filter, sql)
return sql, args
def eval(self, filter):
pass
# val = self.value
# if isinstance(self.value, str):
# val = val.format(**filter.context)
# values.append(val)
def eval_joins(self, filter, condition):
if not self.joins:
return condition
sql = '%s'
relation = filter.relation
args = []
for i, joined_column_name in enumerate(self.joins):
# TODO: Handle m2m, reverse fk, reverse m2m.
column = relation.get_column(joined_column_name)
if isinstance(column, ReverseColumn):
prev_tbl_name = relation.alias
prev_col_name = 'id'
col_name = column.related_column.name
else:
prev_tbl_name = relation.alias
prev_col_name = column.name
col_name = 'id'
relation = column.related_table
tbl = relation.alias
# TODO: Use Identifier
# TODO: PK field other than 'id'.
next = 'EXISTS (SELECT 1 FROM {} WHERE {} = {} AND %s)'
args.extend([
Identifier(tbl),
SQL('{}.{}').format(Identifier(prev_tbl_name), Identifier(prev_col_name)),
SQL('{}.{}').format(Identifier(tbl), Identifier(col_name))
])
sql = sql % next
sql = sql % '{}'
args.append(condition)
sql = SQL(sql).format(*args)
return sql
def parse_lookup(self, lookup):
lookup_parts = lookup.split('__')
if len(lookup_parts) < 1:
raise ValueError(f'invalid filter: {lookup}')
# if lookup_parts[-1] in Filter.FILTER_TYPES:
# self.type = lookup_parts.pop()
# else:
# self.type = 'eq'
self.joins = lookup_parts[:-1]
self.field = lookup_parts[-1]
def parse_value(self, filter, value):
# TODO: Oh this isn't nice. I need to be able to use fields to
# convert values.
if self.field == 'id':
try:
self.value = value.id
except AttributeError:
self.value = value
else:
self.value = value
def get_table_column(self, filter):
relation = filter.relation
table_name = relation.alias
for joined_column_name in self.joins:
column = relation.get_column(joined_column_name)
relation = column.related_table
table_name = relation.alias
return table_name, self.field
def format(self, format_string, *args):
# TODO: A little ugly. Now a lot ugly.
if isinstance(self.value, Composable):
format_string = format_string % '{}'
return SQL(format_string).format(*(args + (self.value,))), ()
elif isinstance(self.value, Expression):
value_sql, value_args = self.value.to_sql()
format_string = format_string % '{}'
return SQL(format_string).format(*(args + (value_sql,))), value_args
else:
value = self.get_value()
if value == DiscardValue:
sql_args = ()
else:
sql_args = to_tuple(self.get_value(), keep_none=True)
return SQL(format_string).format(*args), sql_args
def get_value(self):
return (self.value,)
def get_primary_columns(self):
# TODO: Test this.
if self.joins:
return (self.joins[0],)
return (self.field,)
class Equal(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
op = '=' if self.value is not None else 'IS'
return self.format(
'{}.{} {} %s',
Identifier(tbl),
Identifier(col),
SQL(op)
)
class NotEqual(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
op = '!=' if self.value is not None else 'IS NOT'
return self.format('{}.{} {} %s', tbl, col, op)
class Contains(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
op = self.get_operation()
return self.format('{}.{} {} %s', Identifier(tbl), Identifier(col), SQL(op))
def parse_value(self, filter, value):
value = '%{}%'.format(value)
self.value = value.replace('%', r'%%')
def get_operation(self):
return 'LIKE'
class ContainsInsensitive(Contains):
def get_operation(self):
return 'ILIKE'
class Less(FilterType):
def eval(self, filter):
super().eval(filter)
return self.format('{} < %s', self.field)
class Greater(FilterType):
def eval(self, filter):
super().eval(filter)
return self.format('{} > %s', self.field)
class LessEqual(FilterType):
def eval(self, filter):
super().eval(filter)
return self.format('{} <= %s', self.field)
class GreaterEqual(FilterType):
def eval(self, filter):
super().eval(filter)
return self.format('{} >= %s', self.field)
class In(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
return self.format('{}.{} = ANY (%s)', Identifier(tbl), Identifier(col))
def parse_value(self, filter, value):
if isinstance(value, (list, tuple, set)):
self.value = list(value)
else:
try:
self.value = ujson.loads(value)
except Exception:
raise ValueError(f'Unable to parse "in" filter value: {value}')
def get_value(self):
return ([self.value],)
class NotIn(In):
def eval(self, filter):
FilterType.eval(self, filter)
return self.format('{} NOT IN %s', self.field)
class IsNull(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
op = 'IS' if self.value else 'IS NOT'
return self.format(
'{}.{} {} NULL', Identifier(tbl), Identifier(col), SQL(op)
)
def parse_value(self, filter, value):
self.value = to_bool(value)
def get_value(self):
return DiscardValue
# class NotNull(FilterType):
# def eval(self, filter):
# super().eval(filter)
# return f'{self.field} NOT NULL'
class Overlap(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
return self.format('{}.{} && %s', tbl, col)
class WithinDistance(FilterType):
def __init__(self, filter, lookup, point, distance):
super().__init__(filter, lookup, distance)
self.value = (point, self.value)
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
return self.format('{}.{} <@> %s < %s', tbl, col)
# TODO: This may not be the fastest formulation: https://www.postgresql.org/docs/10/pgtrgm.html#id-1.11.7.41.8
class TrigramSimilar(FilterType):
def eval(self, filter):
super().eval(filter)
try:
tbl, col = self.get_table_column(filter)
except KeyError:
raise ValueError(f'invalid attribute: {self.field}')
return self.format('{}.{} % %s', tbl, col)
class Operator:
def __init__(self, left, right):
self.left = left
self.right = right
def get_sql(self, filter):
raise NotImplementedError
def eval_sides(self, filter):
left_sql, left_args = self.left.get_sql(filter)
right_sql, right_args = self.right.get_sql(filter)
return left_sql, right_sql, left_args + right_args
def get_primary_columns(self):
return self.left.get_primary_columns() + self.right.get_primary_columns()
class And(Operator):
def get_sql(self, filter):
left, right, args = self.eval_sides(filter)
# TODO: Making new SQLs here is probably a tiny bit inefficient.
if isinstance(self.left, Or):
left = SQL('({})').format(left)
if isinstance(self.right, Or):
right = SQL('({})').format(right)
return SQL('{} AND {}').format(left, right), args
class Or(Operator):
def get_sql(self, filter):
left, right, args = self.eval_sides(filter)
return SQL('{} OR {}').format(left, right), args
Where.FILTER_TYPES = {
'eq': Equal,
'ne': NotEqual,
'lt': Less,
'gt': Greater,
'le': LessEqual,
'ge': GreaterEqual,
'in': In,
'ct': Contains,
'cti': ContainsInsensitive,
'ni': NotIn,
'nu': IsNull,
# 'nn': NotNull,
'ov': Overlap,
# 'bt': Between,
'trigram_similar': TrigramSimilar
}
| 11,816 | 3,573 |
import json
from autobahn.asyncio.websocket import WebSocketClientProtocol
from config import DEBUG, CLIENTS_MSGS_COUNT, CLIENTS_COUNT
class WSClientProtocol(WebSocketClientProtocol):
"""
Websocket client protocol.
"""
def __init__(self):
super(WSClientProtocol, self).__init__()
self._msgs_received = 0
self._disconect_after = CLIENTS_COUNT * CLIENTS_MSGS_COUNT - CLIENTS_MSGS_COUNT
def _print(self, msg):
if DEBUG:
print('Client {}: {}'.format(id(self), msg))
def onConnect(self, response):
self._print('connected: {}.'.format(response.peer))
def onOpen(self):
self._print('ws connection opened.')
msg_bin = json.dumps(
{
'client_id': id(self),
'message': 'Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a.'
}
).encode('utf8')
for _ in range(CLIENTS_MSGS_COUNT):
self.sendMessage(msg_bin, isBinary=True)
def onMessage(self, payload, is_binary):
if is_binary:
self._print('binary msg {} received: {} bytes'.format(self._msgs_received, len(payload)))
self._msgs_received += 1
if self._msgs_received == self._disconect_after:
self._print('sendClose')
self.sendClose(code=1000, reason='we_are_tired')
def onClose(self, wasClean, code, reason):
self._print('connection closed: {}.'.format(reason))
| 1,479 | 468 |
import pytest
import time
import json
from datetime import date, timedelta
from www.core import Synapse, Env
from www.services.synapse_space.daa import GrantDaaAccessService
import synapseclient as syn
@pytest.fixture
def mk_service(syn_test_helper, syn_client, mk_uniq_real_email, blank_daa_config, set_daa_config):
services = []
def _mk(config=None,
team_name=syn_test_helper.uniq_name(prefix='Team'),
institution_name=syn_test_helper.uniq_name(prefix='Institution'),
institution_short_name=syn_test_helper.uniq_name(prefix='Institution Short Name'),
user_identifier=mk_uniq_real_email(),
agreement_url='https://{0}/doc.pdf'.format(syn_test_helper.uniq_name()),
start_date=date.today(),
end_date=date.today() + timedelta(days=30),
comments=syn_test_helper.uniq_name(prefix='Comment'),
with_all=False,
with_data_collection=False,
with_emails=False):
if not config:
config = blank_daa_config
data_collection_name = None
emails = None
if with_data_collection or with_all:
project = syn_test_helper.create_project()
folder = syn_client.store(syn.Folder(name='Folder', parent=project))
collections = [
{"name": "Collection 1", "entities": [{"name": project.name, "id": project.id}]},
{"name": "Collection 2", "entities": [{"name": folder.name, "id": folder.id}]}
]
config['data_collections'] = collections
data_collection_name = collections[0]['name']
if with_emails or with_all:
emails = [mk_uniq_real_email(), mk_uniq_real_email()]
# Set the config in the Env so it's available to the service.
set_daa_config([config])
service = GrantDaaAccessService(config['id'],
team_name,
institution_name,
institution_short_name,
data_collection_name,
user_identifier,
agreement_url=agreement_url,
emails=emails,
start_date=start_date,
end_date=end_date,
comments=comments)
services.append(service)
return service
yield _mk
for service in services:
if service.team:
syn_test_helper.dispose_of(service.team)
@pytest.fixture
def assert_basic_service_success(syn_test_helper):
def _fn(service):
assert service.team is not None
assert len(service.errors) == 0
syn_test_helper.dispose_of(service.team)
yield _fn
@pytest.fixture
def assert_basic_service_errors(syn_test_helper):
def _fn(service):
assert len(service.errors) > 0
if service.team:
syn_test_helper.dispose_of(service.team)
yield _fn
def test_it_creates_the_team(mk_service, assert_basic_service_success):
service = mk_service()
assert service.execute() == service
assert_basic_service_success(service)
assert service.team.name == service.team_name
def test_it_does_not_create_duplicate_teams(mk_service, assert_basic_service_errors, syn_test_helper):
existing_team = syn_test_helper.create_team()
service = mk_service(team_name=existing_team.name)
assert service.execute() == service
assert_basic_service_errors(service)
assert service.team is None
assert len(service.errors) == 1
assert 'Error creating team:' in service.errors[0]
def test_it_assigns_the_team_to_the_synapse_entities_with_can_download_access(mk_service,
assert_basic_service_success,
syn_client):
service = mk_service(with_data_collection=True)
assert service.execute() == service
assert_basic_service_success(service)
assert service.data_collection is not None
for syn_id in [c['id'] for c in service.data_collection['entities']]:
syn_perms = syn_client.getPermissions(syn_id, principalId=service.team.id)
assert syn_perms
syn_perms.sort() == Synapse.CAN_DOWNLOAD_PERMS.sort()
def test_it_adds_managers_to_the_team(mk_service,
assert_basic_service_success,
syn_client,
blank_daa_config):
user_ids = [Env.Test.TEST_OTHER_SYNAPSE_USER_ID()]
blank_daa_config['team_manager_user_ids'] = user_ids
service = mk_service()
assert service.execute() == service
assert_basic_service_success(service)
syn_invites = syn_client.restGET('/team/{0}/openInvitation'.format(service.team.id))
invite_results = syn_invites.get('results')
assert len(invite_results) == len(user_ids)
for result in invite_results:
user_id = int(result.get('inviteeId'))
assert user_id in user_ids
team_acl = syn_client.restGET('/team/{0}/acl'.format(service.team.id))
acl_accesses = team_acl.get('resourceAccess')
for user_id in user_ids:
resource = next((r for r in acl_accesses if r['principalId'] == user_id))
assert resource.get('accessType').sort() == Synapse.TEAM_MANAGER_PERMS.sort()
def test_it_invites_the_emails_to_the_team(mk_service, assert_basic_service_success, syn_client):
service = mk_service(with_emails=True)
emails = service.emails
assert len(emails) >= 1
assert service.execute() == service
assert_basic_service_success(service)
syn_invites = syn_client.restGET('/team/{0}/openInvitation'.format(service.team.id))
assert syn_invites
invite_results = syn_invites.get('results')
assert len(invite_results) == len(emails)
for result in invite_results:
email = result.get('inviteeEmail')
assert email in emails
def test_it_writes_the_log_file_on_success(mk_service,
assert_basic_service_success,
syn_test_helper,
syn_client,
monkeypatch):
project = syn_test_helper.create_project()
folder = syn_client.store(syn.Folder(name='Synapse Admin Log', parent=project))
monkeypatch.setenv('SYNAPSE_SPACE_LOG_FOLDER_ID', folder.id)
service = mk_service(with_all=True)
assert service.institution_name is not None
assert service.institution_short_name is not None
assert service.data_collection_name is not None
assert len(service.emails) >= 1
assert service.agreement_url is not None
assert service.start_date is not None
assert service.end_date is not None
assert service.comments is not None
assert service.execute() == service
assert_basic_service_success(service)
files = list(Synapse.client().getChildren(folder))
assert len(files) == 1
file = Synapse.client().get(files[0]['id'])
assert file.name.endswith('_daa_grant_access.json')
with open(file.path, mode='r') as f:
jdata = json.loads(f.read())
jparms = jdata['parameters']
assert jparms['team_name'] == service.team_name
assert jparms['institution_name'] == service.institution_name
assert jparms['institution_short_name'] == service.institution_short_name
assert jparms['agreement_url'] == service.agreement_url
assert jparms['emails'] == service.emails
assert jparms['start_date'] == service.start_date.strftime('%Y-%m-%d')
assert jparms['end_date'] == service.end_date.strftime('%Y-%m-%d')
assert jparms['comments'] == service.comments
assert jparms['user'] == service.user_identifier
jteam = jdata['team']
assert jteam['id'] == service.team.id
assert jteam['name'] == service.team.name
jdc = jdata['data_collection']
assert jdc['name'] == service.data_collection['name']
assert jdc['entities'] == service.data_collection['entities']
def test_it_writes_the_log_file_on_failure(mk_service,
assert_basic_service_success,
syn_test_helper,
syn_client,
monkeypatch):
# TODO:
pass
def test_it_updates_the_access_agreement_table(mk_service,
assert_basic_service_success,
syn_test_helper,
syn_client,
blank_daa_config):
# Create a project with a table to update.
table_project = syn_test_helper.create_project()
cols = [
syn.Column(name='Organization', columnType='STRING', maximumSize=200),
syn.Column(name='Contact', columnType='STRING', maximumSize=200),
syn.Column(name='Synapse_Team_ID', columnType='INTEGER'),
syn.Column(name='Granted_Entity_IDs', columnType='STRING', maximumSize=1000),
syn.Column(name='Agreement_Link', columnType='LINK', maximumSize=1000),
syn.Column(name='Start_Date', columnType='DATE'),
syn.Column(name='End_Date', columnType='DATE'),
syn.Column(name='Comments', columnType='STRING', maximumSize=1000),
syn.Column(name='Test_Col_One', columnType='STRING', maximumSize=50),
syn.Column(name='Test_Col_Two', columnType='STRING', maximumSize=50)
]
schema = syn.Schema(name='KiData_Access_Agreements', columns=cols, parent=table_project)
syn_table = syn_client.store(schema)
blank_daa_config['agreement_table_id'] = syn_table.id
service = mk_service(with_all=True)
assert service.data_collection_name is not None
assert len(service.emails) >= 1
assert service.agreement_url is not None
assert service.start_date is not None
assert service.end_date is not None
assert service.comments is not None
assert service.execute() == service
assert_basic_service_success(service)
rows = list(syn_client.tableQuery(
"select {0} from {1}".format(', '.join([c['name'] for c in cols]), syn_table.id))
)
assert len(rows) == 1
row = rows[0]
assert row[2] == service.institution_name
assert row[3] == service.emails[0]
assert str(row[4]) == str(service.team.id)
assert row[5] == ', '.join('{0} ({1})'.format(c['id'], c['name']) for c in service.data_collection['entities'])
assert row[6] == service.agreement_url
assert row[7].strftime('%Y-%m-%d') == service.start_date.strftime('%Y-%m-%d')
assert row[8].strftime('%Y-%m-%d') == service.end_date.strftime('%Y-%m-%d')
assert row[9] == service.comments
def test_it_fails_if_the_access_agreement_table_does_not_have_the_required_columns(mk_service,
assert_basic_service_errors,
syn_test_helper,
syn_client,
blank_daa_config):
# Create a project with a table to update.
table_project = syn_test_helper.create_project()
cols = [
syn.Column(name=syn_test_helper.uniq_name(), columnType='STRING', maximumSize=200),
syn.Column(name=syn_test_helper.uniq_name(), columnType='STRING', maximumSize=200),
syn.Column(name=syn_test_helper.uniq_name(), columnType='STRING', maximumSize=200)
]
schema = syn.Schema(name='KiData_Access_Agreements', columns=cols, parent=table_project)
syn_table = syn_client.store(schema)
blank_daa_config['agreement_table_id'] = syn_table.id
service = mk_service()
assert service.execute() == service
assert_basic_service_errors(service)
assert service.errors
assert len(service.errors) == 1
assert 'Column: Organization does not exist in table' in service.errors[0]
###############################################################################
# Validations
###############################################################################
def test_validations_validate_team_name(syn_test_helper, syn_client):
existing_team = syn_test_helper.create_team(prefix='Team ')
# Wait for the team to be available from Synapse before checking.
tries = 0
while True:
tries += 1
try:
syn_client.getTeam(existing_team.name)
break
except ValueError:
if tries >= 10:
break
else:
time.sleep(3)
error = GrantDaaAccessService.Validations.validate_team_name(existing_team.name)
assert error == 'Team with name: "{0}" already exists.'.format(existing_team.name)
| 13,174 | 3,855 |
import numpy as np
# create J[k,h], the number of individuals in niche k on island h
def draw_J(K, JV):
# secondary parameters
H = len(JV) # number of islands
J = list()
for k in range(K):
J.append([])
for h in range(H):
Jkh_float = JV[h] / K # number of individuals that can fit
# treat the fractional component of Jkh_float probabilistically
Jkh, prob = (int(Jkh_float // 1), Jkh_float%1)
if np.random.rand() < prob:
Jkh += 1
J[k].append(Jkh)
return(J)
# create D[k,h], the number of founding individuals in each niche k on island h
def calculate_D(mV, TV, J):
# secondary parameters
K = len(J) # number of niches
H = len(J[0]) # number of islands
D = list()
for k in range(K):
D.append([])
for h in range(H):
T = TV[h]
m = mV[h]
if np.isinf(T):
# then there is only one founding individual
D[k].append(1)
else:
# need to calculate using Chen & Chen's formula
W = J[k][h] * m / (1-m) # Watterson's theta for the local community
alpha = T/2
beta = (W-1)*T/(2*J[k][h])
if 1 / (1 + np.exp(-beta)) == 1:
# avoid overflow warning when beta too large (approx beta > 37, np.exp(beta) > 1e16)
Dkh = 1
else:
Dkh = ( T*(W-1)/2 ) / ( alpha*(np.exp(beta)-1) + beta*np.exp(beta) )
# round it, and if it's less than 1, set it to 1
Dkh = int(round(Dkh))
Dkh = 1 if Dkh < 1 else Dkh
D[k].append(Dkh)
return(D)
# create a sample using my species generator
def draw_sample_species_generator(theta, mV, J, D):
# secondary parameters
K = len(J) # number of niches
H = len(J[0]) # number of islands
thetak = theta/K # fundamental biodiversity number per niche (assumes equal niches)
# rows are niches, index is species ID and value is the no. of times that species has immigrated
ancestors = list() # stores a_k
community = list() # stores n_{k,h,i}
# count how many ancestors sampled from each niche
no_ancestors = [ 0 for k in range(K) ] # l_k
for k in range(K): # for each niche
ancestors.append([])
community.append([])
for h in range(H): # for each island
community[k].append([ 0 for a_k in range(len(ancestors[k])) ])
Jkh = J[k][h] # how many individuals in niche k in island h
# deal with special case, if Jkh = 1, then is a new immigrant
# necessary bc if Jkh = 1, then I = 0, then I/(I+j) = nan
if Jkh == 1:
# has to be a new immigrant
if np.random.rand() < thetak / ( thetak + no_ancestors[k] ):
# the immigrant was a new species
ancestors[k].append(1)
community[k][h].append(1)
else:
# the immigrant was a species we've seen before
prob_i = [ ai / no_ancestors[k] for ai in ancestors[k] ]
i_star = np.random.choice( range(len(prob_i)), 1, p = prob_i )[0]
ancestors[k][i_star] += 1
community[k][h][i_star] += 1
# increment the ancestors counter
no_ancestors[k] += 1
else: # if Jkh > 1
# first, sample the individuals who were founders T generations ago, when island separated
# from mainland (or, if T = inf, then Dkh = 1, therefore just sample the first immigrant)
Dkh = D[k][h]
for j in range(Dkh):
if np.random.rand() < thetak / ( thetak + no_ancestors[k] ):
# the immigrant was a new species
ancestors[k].append(1)
community[k][h].append(1)
else:
# the immigrant was a species we've seen before
prob_i = [ ai / no_ancestors[k] for ai in ancestors[k] ]
i_star = np.random.choice( range(len(prob_i)), 1, p = prob_i )[0]
ancestors[k][i_star] += 1
community[k][h][i_star] += 1
# increment the ancestors counter
no_ancestors[k] += 1
# now sample the remainder of the individuals, who are a mix of descendants
# and immigrants
I = mV[h] * (Jkh-1) / (1-mV[h]) # Etienne's immigration parameter
for j in range(Dkh, Jkh):
if (np.random.rand() < I / (I+j)):
# we have drawn an immigrant
if np.random.rand() < thetak / ( thetak + no_ancestors[k] ):
# the immigrant was a new species
ancestors[k].append(1)
community[k][h].append(1)
else:
# the immigrant was a species we've seen before
prob_i = [ ai / no_ancestors[k] for ai in ancestors[k] ]
i_star = np.random.choice( range(len(prob_i)), 1, p = prob_i )[0]
ancestors[k][i_star] += 1
community[k][h][i_star] += 1
# increment the ancestors counter
no_ancestors[k] += 1
else:
# it's a birth-death
prob_i = [ ni / j for ni in community[k][h] ]
i_star = np.random.choice( range(len(prob_i)), 1, p = prob_i )[0]
community[k][h][i_star] += 1
return(ancestors, community)
| 6,048 | 1,869 |
""" Game fix for Watch_Dogs
"""
# pylint: disable=C0103
import subprocess
from protonfixes import util
from protonfixes import splash
def main():
""" Fix the in-game sound
"""
util.protontricks('xact')
util.protontricks('winxp')
info_popup()
@util.once
def info_popup():
""" Show info popup on first run
"""
zenity_bin = splash.sys_zenity_path()
if not zenity_bin:
return
# pylint: disable=C0301
zenity_cmd = ' '.join([
zenity_bin,
'--info',
'--text',
'"If the game does not run the first time and complains that the UPlay launcher\nis not compatible with the operating system: cancel and restart the game."',
'--no-wrap'])
subprocess.Popen(zenity_cmd, shell=True)
| 767 | 263 |
import collections
from abc import ABC, abstractmethod
from typing import TypeVar, Generic, Callable, OrderedDict, Collection, Any
from brigadier import Command, RedirectModifier
S = TypeVar('S')
# the class ouroboros keeps growing
class CommandNode(ABC, Generic[S]):
@abstractmethod
def is_valid_input(self, input: str) -> bool:
return False
@abstractmethod
def get_name(self) -> str:
return ""
@abstractmethod
def get_usage_text(self) -> str:
return ""
@abstractmethod
def parse(self, reader: StringReader, contextBuilder: CommandContextBuilder[S]) -> None:
return
@abstractmethod
async def list_suggestions(self, context: CommandContext[S], builder: SuggestionsBuilder) -> Suggestions :
return None
@abstractmethod
def create_builder(self) -> ArgumentBuilder[S, Any]:
return None
@abstractmethod
def get_sorted_key(self) -> str:
return ""
@abstractmethod
def get_examples(self) -> Collection[str]:
return []
class LiteralCommandNode(CommandNode):
pass
class ArgumentCommandNode(CommandNode):
pass
class RootCommandNode(CommandNode):
pass
class CommandNode(ABC, Generic[S]):
def __init__(self, command: Command[S], requirement: Callable[[S], bool], redirect: CommandNode[S],
modifier: RedirectModifier[S], forks: bool,
children: OrderedDict[str, CommandNode[S]] = collections.OrderedDict,
literals: OrderedDict[str, LiteralCommandNode[S]] = collections.OrderedDict,
arguments: OrderedDict[str, ArgumentCommandNode[S]] = collections.OrderedDict):
self.command = command
self.requirement = requirement
self.redirect = redirect
self.modifier = modifier
self.forks = forks
self.children = children
self.literals = literals
self.arguments = arguments
def get_children(self) -> Collection[CommandNode[S]]:
return self.children.values() # this is a subclass of Collection so it's ok but pycharm doesn't think so
def get_child(self, name: str) -> CommandNode[S]:
return self.children[name]
def can_use(self, source: S) -> bool:
return self.requirement(source)
def add_child(self, node: CommandNode[S]) -> None:
if isinstance(node, RootCommandNode):
raise TypeError('Cannot add a RootCommandNode as a child to any other CommandNode')
name = node.getName()
if name in self.children:
# We've found something to merge onto
child = self.children[name]
if node.command is not None:
child.command = node.command
for grandchild in node.children:
child.add_child(grandchild)
else:
self.children[name] = node
if isinstance(node, LiteralCommandNode):
self.literals[name] = node
elif isinstance(node, ArgumentCommandNode):
self.arguments[name] = node
# Note: Mojang has a cursed stream sort thing here but it's bad and useless
@abstractmethod
def is_valid_input(self, input: str) -> bool:
return False
@abstractmethod
def get_name(self) -> str:
return ""
@abstractmethod
def get_usage_text(self) -> str:
return ""
@abstractmethod
def parse(self, reader: StringReader, contextBuilder: CommandContextBuilder[S]) -> None:
return
@abstractmethod
async def list_suggestions(self, context: CommandContext[S], builder: SuggestionsBuilder) -> Suggestions:
return None
@abstractmethod
def create_builder(self) -> ArgumentBuilder[S, Any]:
return None
@abstractmethod
def get_sorted_key(self) -> str:
return ""
@abstractmethod
def get_examples(self) -> Collection[str]:
return []
| 3,928 | 1,082 |
from absl import app, flags, logging
from absl.flags import FLAGS
import cv2
import os
import numpy as np
import tensorflow as tf
import time
from PIL import Image
from modules.models import RetinaFaceModel
from modules.utils import (set_memory_growth, load_yaml, draw_bbox_landm,
pad_input_image, recover_pad_output,
get_bbox_imgs, get_one_image, get_faces)
flags.DEFINE_string('cfg_path', './configs/retinaface_res50.yaml',
'config file path')
flags.DEFINE_string('gpu', '0', 'which gpu to use')
flags.DEFINE_string('img_path', '', 'path to input image')
flags.DEFINE_boolean('webcam', False, 'get image source from webcam or not')
flags.DEFINE_float('iou_th', 0.4, 'iou threshold for nms')
flags.DEFINE_float('score_th', 0.5, 'score threshold for nms')
flags.DEFINE_float('down_scale_factor', 1.0, 'down-scale factor for inputs')
def main(_argv):
# init
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os.environ['CUDA_VISIBLE_DEVICES'] = FLAGS.gpu
logger = tf.get_logger()
logger.disabled = True
logger.setLevel(logging.FATAL)
set_memory_growth()
cfg = load_yaml(FLAGS.cfg_path)
# define network
model = RetinaFaceModel(cfg, training=False, iou_th=FLAGS.iou_th, score_th=FLAGS.score_th)
# load checkpoint
checkpoint_dir = './checkpoints/' + cfg['sub_name']
checkpoint = tf.train.Checkpoint(model=model)
if tf.train.latest_checkpoint(checkpoint_dir):
checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir))
#print("[*] load ckpt from {}.".format(tf.train.latest_checkpoint(checkpoint_dir)))
else:
print("[*] Cannot find ckpt from {}.".format(checkpoint_dir))
exit()
if not os.path.exists(FLAGS.img_path):
print(f"cannot find image path from {FLAGS.img_path}")
exit()
print("[*] Processing on single image {}".format(FLAGS.img_path))
img_raw = cv2.imread(FLAGS.img_path)
img_height_raw, img_width_raw, _ = img_raw.shape
img = np.float32(img_raw.copy())
if FLAGS.down_scale_factor < 1.0:
img = cv2.resize(img, (0, 0), fx=FLAGS.down_scale_factor, fy=FLAGS.down_scale_factor, interpolation=cv2.INTER_LINEAR)
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
# pad input image to avoid unmatched shape problem
img, pad_params = pad_input_image(img, max_steps=max(cfg['steps']))
# run model
outputs = model(img[np.newaxis, ...]).numpy()
# recover padding effect
outputs = recover_pad_output(outputs, pad_params)
# draw and save results
imgs = []
DIM = 64;
save_img_path = os.path.join('data/out_' + os.path.basename(FLAGS.img_path))
for prior_index in range(9):
if(prior_index < len(outputs)):
img = get_bbox_imgs(img_raw, outputs[prior_index], img_height_raw, img_width_raw)
img = cv2.resize(img, (DIM, DIM))
imgs.append(img)
else:
imgs.append(Image.new('RGB', (DIM, DIM)))
imga = imgs[0]
for img in imgs[1:3]:
imga = np.concatenate((imga, img), axis=1)
imgb = imgs[3]
for img in imgs[4:6]:
imgb = np.concatenate((imgb, img), axis=1)
imgf = np.concatenate((imga, imgb), axis=0)
imgc = imgs[6]
for img in imgs[7:9]:
imgc = np.concatenate((imgc, img), axis=1)
imgf = np.concatenate((imgf, imgc), axis=0)
cv2.imwrite(save_img_path, imgf)
print(f"[*] save result at {save_img_path}")
if __name__ == '__main__':
try:
app.run(main)
except SystemExit:
pass
| 3,564 | 1,327 |
from .resource import ValveCompiledResource
from .vphys import ValveCompiledPhysics
from .vmat import ValveCompiledMaterial
from .vtex import ValveCompiledTexture
from .vmdl import ValveCompiledModel
from .vwrld import ValveCompiledWorld
from .vmorf import ValveCompiledMorph
from .vrman import ValveCompiledResourceManifest
def get_resource_loader_from_ext(ext: str):
if ext == '.vmdl_c':
return ValveCompiledModel
elif ext == '.vwrld_c':
return ValveCompiledWorld
elif ext == '.vtex_c':
return ValveCompiledTexture
elif ext == '.vphys_c':
return ValveCompiledPhysics
elif ext == '.vrman_c':
return ValveCompiledResourceManifest
elif ext == '.vmat_c':
return ValveCompiledMaterial
else:
return ValveCompiledResource
| 803 | 243 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
b2ac.compat
~~~~~~~~~~~
B2AC compatiblity module.
"""
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import absolute_import
import sys
is_py3 = (sys.version_info[0] > 2)
# Py3 mappings
if is_py3:
xrange = range
| 351 | 135 |
#!/usr/bin/env python3
n, *a = map(int, open(0).read().split())
from itertools import*
*S, = accumulate(a)
*M, = accumulate(S, max)
Z = ans = 0
for s, m in zip(S, M):
ans = max(ans, Z + m)
Z += s
print(ans) | 214 | 96 |
class SoundError(Exception):
pass
class WavePlayError(Exception):
pass
class ArgumentError(Exception):
pass
class PlayerError(Exception):
pass
class PlayerMciError(Exception):
pass
| 209 | 63 |
import functools
def adageop(func):
"""
Decorator that adds a 's' attribute to a function
The attribute can be used to partially define
the function call, except for the 'adageobj'
keyword argument, the return value is a
single-argument ('adageobj') function
"""
def partial(*args,**kwargs):
return functools.partial(func,*args,**kwargs)
func.s = partial
return func
class Rule(object):
def __init__(self,predicate,body):
self.predicate = predicate
self.body = body
def applicable(self,adageobj):
return self.predicate(adageobj)
def apply(self,adageobj):
return self.body(adageobj = adageobj)
def adagetask(func):
"""
Decorator that adds a 's' attribute to a function
The attribute can be used to fully define a function
call to be executed at a later time. The result
will be a zero-argument callable
"""
try:
from celery import shared_task
func.celery = shared_task(func)
except ImportError:
pass
def partial(*args,**kwargs):
return functools.partial(func,*args,**kwargs)
func.s = partial
return func
def callbackrule(after = None):
"""
A decorator that creates a adage Rule from a callback function
The after argument is expected to container a dictionary
of node identifiers. The callback is expected have two arguments
A dictionary with the same keys as in after as keys, and the
corresponding nodes as values, as well as the adajeobj will be
passed to the callback
"""
after = after or {}
def decorator(func):
def predicate(adageobj):
return all([adageobj.dag.getNode(node).successful() for node in after.values()])
def body(adageobj):
depnodes = {k:adageobj.dag.getNode(v) for k,v in after.items()}
func(depnodes = depnodes, adageobj = adageobj)
return Rule(predicate,body)
return decorator
| 1,978 | 560 |
import sys
import getpass
from keepassxc_pwned import check_password
pw = getpass.getpass("Password to check: ")
count = check_password(pw)
if count > 0:
print("Found password {} times!".format(count))
sys.exit(1)
else:
print("Could not find that password in the dataset.")
sys.exit(0)
| 300 | 100 |
from __future__ import unicode_literals
import django
from django.test import TestCase
from job.configuration.results.results_manifest.results_manifest import ResultsManifest
from job.configuration.results.exceptions import InvalidResultsManifest, \
MissingRequiredOutput
class TestResultsManifestConstructor(TestCase):
def setUp(self):
django.setup()
def test_empty_results_manifest(self):
json_manifest = {}
#This should not throw an exception since it is valid
ResultsManifest(json_manifest)
def test_manifest_support_simple_file(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt"}
]
}
try:
#This should not throw an exception since it is valid
ResultsManifest(json_manifest)
except InvalidResultsManifest:
self.fail('This simple json_manifest is valid')
def test_manifest_supports_file_with_paths(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "paths":["nfs:server//myfile.txt"]}
]
}
try:
#This should not throw an exception since it is valid
ResultsManifest(json_manifest)
except InvalidResultsManifest:
self.fail('This simple json_manifest is valid')
def test_invalid_results_manifest(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt", "paths": ["nfs:server//why_do_i_have_path_and_paths"]}
]
}
try:
ResultsManifest(json_manifest)
self.fail('files in a results manifest should not have both path and paths')
except InvalidResultsManifest:
#This should throw an exception since it is invalid
pass
def test_manifest_version_1_1(self):
json_manifest = {
"version": "1.1",
"output_data": [
{
"name" : "output_file",
"file": {
"path" : "/tmp/job_exe_231/outputs/output.csv",
"geo_metadata": {
"data_started": "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"geo_json": {
"type": "Polygon",
"coordinates": [ [ [ 1.0, 10.0 ], [ 2.0, 10.0 ], [ 2.0, 20.0 ],[ 1.0, 20.0 ], [ 1.0, 10.0 ] ] ]
}
}
}
},
{
"name" : "output_files",
"files": [
{
"path" : "/tmp/job_exe_231/outputs/output.csv",
"geo_metadata": {
"data_started": "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"geo_json": {
"type": "Polygon",
"coordinates": [ [ [ 1.0, 10.0 ], [ 2.0, 10.0 ], [ 2.0, 20.0 ],[ 1.0, 20.0 ], [ 1.0, 10.0 ] ] ]
}
}
},
{
"path" : "/tmp/job_exe_231/outputs/output2.csv"
}
]
}
],
"parse_results": [
{
"filename" : "myfile.h5",
"data_started" : "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"data_types" : ["H5", "VEG"]
}
]
}
manifest = ResultsManifest(json_manifest)
class TestResultsManifestValidation(TestCase):
def test_simple_validation(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt"}
]
}
input_files = {
"input_file": False
}
output_files = {
"foo": (False, True)
}
manifest = ResultsManifest(json_manifest)
manifest.validate(output_files)
def test_simple_validation_1_1(self):
json_manifest = {
"version": "1.1",
"output_data": [
{
"name" : "output_file",
"file": {
"path" : "/tmp/job_exe_231/outputs/output.csv",
"geo_metadata": {
"data_started": "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"geo_json": {
"type": "Polygon",
"coordinates": [ [ [ 1.0, 10.0 ], [ 2.0, 10.0 ], [ 2.0, 20.0 ],[ 1.0, 20.0 ], [ 1.0, 10.0 ] ] ]
}
}
}
}
]
}
input_files = {
"input_file": False
}
output_files = {
"output_file": (False, True)
}
manifest = ResultsManifest(json_manifest)
manifest.validate(output_files)
def test_output_does_not_match(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt"}
]
}
input_files = {
"input_file": False
}
output_files = {
"bar": (False, True)
}
manifest = ResultsManifest(json_manifest)
try:
manifest.validate(output_files)
self.fail('The outputs do not match the manifest, there should be a failure')
except MissingRequiredOutput:
pass
def test_missing_optional_is_ok(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt"}
]
}
input_files = {
"input_file": False
}
output_files = {
"foo": (False, True),
"bar": (False, False) #This is an optional file
}
manifest = ResultsManifest(json_manifest)
try:
manifest.validate(output_files)
except MissingRequiredOutput:
self.fail('The missing an optional file')
def test_missing_required_is_bad(self):
json_manifest = {
"version": "1.0",
"files": [
{"name":"foo", "path":"nfs:server//myfile.txt"}
]
}
input_files = {
"input_file": False
}
output_files = {
"foo": (False, True),
"bar": (False, True) #This is a missing required file
}
manifest = ResultsManifest(json_manifest)
try:
manifest.validate(output_files)
self.fail('There is a missing required file. Validation should have failed')
except MissingRequiredOutput:
pass
class TestResultsManifestConversion(TestCase):
def test_convert_1_0_to_1_1(self):
json_manifest = {
"version": "1.0",
"files": [
{"name" : "output_file", "path" : "/tmp/job_exe_231/outputs/output.csv"},
{"name": "output_files", "paths": ["/tmp/job_exe_231/outputs/output.csv", "/tmp/job_exe_231/outputs/output2.csv"]}
],
"parse_results": [
{
"filename" : "myfile.h5",
"data_started" : "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"data_types" : ["H5", "VEG"]
}
],
"errors": []
}
new_format = {
"version": "1.1",
"output_data": [
{
"name" : "output_file",
"file": {
"path" : "/tmp/job_exe_231/outputs/output.csv"
}
},
{
"name" : "output_files",
"files": [
{
"path" : "/tmp/job_exe_231/outputs/output.csv"
},
{
"path" : "/tmp/job_exe_231/outputs/output2.csv"
}
]
}
],
"parse_results": [
{
"filename" : "myfile.h5",
"data_started" : "2015-05-15T10:34:12Z",
"data_ended" : "2015-05-15T10:36:12Z",
"data_types" : ["H5", "VEG"]
}
],
"errors": []
}
manifest = ResultsManifest(json_manifest)
converted = manifest._convert_schema(json_manifest)
self.assertEqual(converted, new_format)
| 9,318 | 2,764 |
# -*- coding: utf-8 -*-
# _ __
# | |/ /___ ___ _ __ ___ _ _ ®
# | ' </ -_) -_) '_ \/ -_) '_|
# |_|\_\___\___| .__/\___|_|
# |_|
#
# Keeper Commander
# Copyright 2022 Keeper Security Inc.
# Contact: ops@keepersecurity.com
#
from typing import Optional, Callable, Iterator, List, Iterable, Tuple
import argparse
import logging
import io
import os
import re
import shutil
import sys
import tempfile
from .base import Command, dump_report_data
from .ssh_agent import add_ssh_key, SshAgentCommand
from .record import find_record, RecordListCommand
from ..attachment import prepare_attachment_download
from ..params import KeeperParams
from ..subfolder import find_folders, get_folder_path, try_resolve_path
from ..vault import TypedRecord, KeeperRecord, PasswordRecord
from ..vault_extensions import SshKeysFacade
ssh_parser = argparse.ArgumentParser(prog='ssh',
description='Establishes connection to external server using SSH. ')
ssh_parser.add_argument('record', nargs='?', type=str, action='store',
help='record path or UID. Record types: "SSH Key", "Server"')
ssh_parser.add_argument('destination', nargs='?', type=str, action='store',
metavar='LOGIN@HOST[:PORT]', help='Optional. SSH endpoint')
mysql_parser = argparse.ArgumentParser(prog='mysql', description='Establishes connection to MySQL server.')
mysql_parser.add_argument('record', nargs='?', type=str, action='store',
help='record path or UID. Record types: "Database"')
postgres_parser = argparse.ArgumentParser(prog='postgresql',
description='Establishes connection to Postgres/Redshift servers.')
postgres_parser.add_argument('record', nargs='?', type=str, action='store',
help='record path or UID. Record types: "Database"')
postgres_parser.add_argument('database', nargs='?', type=str, action='store',
help='Postgres database name.')
rdp_parser = argparse.ArgumentParser(prog='rdp',
description='Establishes RDP connection to remote Windows servers.')
rdp_parser.add_argument('record', nargs='?', type=str, action='store',
help='record path or UID. Record types: "Server"')
connect_parser = argparse.ArgumentParser(prog='connect', description='Establishes connection to external server')
connect_parser.add_argument('--syntax-help', dest='syntax_help', action='store_true',
help='display help on command format and template parameters')
connect_parser.add_argument('-n', '--new', dest='new_data', action='store_true', help='request per-user data')
connect_parser.add_argument('-s', '--sort', dest='sort_by', action='store', choices=['endpoint', 'title', 'folder'],
help='sort output')
connect_parser.add_argument('-f', '--filter', dest='filter_by', action='store', help='filter output')
connect_parser.add_argument('endpoint', nargs='?', action='store', type=str,
help='endpoint name or full record path to endpoint')
mysql = ''
postgresql = ''
endpoint_parameter_pattern = re.compile(r'\${(.+?)}')
def detect_clients():
global mysql, postgresql
if shutil.which('mysql'):
mysql = 'mysql'
if shutil.which('pgcli'):
postgresql = 'pgcli'
elif shutil.which('psql'):
postgresql = 'psql'
detect_clients()
def connect_commands(commands):
commands['ssh-agent'] = SshAgentCommand()
commands['connect'] = ConnectCommand()
commands['ssh'] = ConnectSshCommand()
if mysql:
commands['mysql'] = ConnectMysqlCommand()
if postgresql:
commands['postgresql'] = ConnectPostgresCommand()
if sys.platform == 'win32':
commands['rdp'] = ConnectRdpCommand()
def connect_command_info(aliases, command_info):
command_info[connect_parser.prog] = connect_parser.description
command_info[ssh_parser.prog] = ssh_parser.description
if mysql:
command_info['mysql'] = mysql_parser.description
if postgresql:
command_info['postgresql'] = postgres_parser.description
aliases['pg'] = 'postgresql'
if sys.platform == 'win32':
command_info['rdp'] = rdp_parser.description
class BaseConnectCommand(Command):
def __init__(self):
super(BaseConnectCommand, self).__init__()
self.command = ''
self.run_at_the_end = []
def support_extra_parameters(self):
return True
SHELL_SUBSTITUTION = {
'`': r'\`',
'$': r'\$',
'?': r'\?',
'*': r'\*',
'^': r'\^',
'(': r'\(',
')': r'\)'
}
def execute_shell(self):
logging.debug('Executing "%s" ...', self.command)
try:
command = self.command.translate(str.maketrans(BaseConnectCommand.SHELL_SUBSTITUTION))
os.system(command)
finally:
self.command = ''
for cb in self.run_at_the_end:
try:
cb()
except Exception as e:
logging.debug(e)
self.run_at_the_end.clear()
def get_extra_options(self, params, record, application):
# type: (KeeperParams, KeeperRecord, str) -> str
record_options = BaseConnectCommand.get_custom_field(record, f'{application}:option')
if record_options:
temp_files = []
record_options = BaseConnectCommand.get_command_string(params, record, record_options, temp_files)
if temp_files:
def remove_files():
for file in temp_files:
os.remove(file)
self.run_at_the_end.append(remove_files)
options = ''
if record_options:
options += f' {record_options}'
if self.extra_parameters:
options += f' {self.extra_parameters}'
return options
@staticmethod
def get_record(params, record, types): # type: (KeeperParams, str, Iterator[str]) -> Optional[TypedRecord]
if not record:
ls = RecordListCommand()
ls.execute(params, record_type=types, verbose=True)
return
try:
record = find_record(params, record)
except Exception as e:
logging.warning(e)
return
if not isinstance(record, TypedRecord):
logging.warning('Only typed records are supported')
return
if record.record_type not in types:
logging.warning('Command supports %s records only', ' and '.join(types))
return
return record
@staticmethod
def get_custom_field(record, field_name): # type: (KeeperRecord, str) -> str
if isinstance(record, PasswordRecord):
return next((x.value for x in record.custom if field_name.lower() == x.name.lower()), None)
if isinstance(record, TypedRecord):
return next((x.get_default_value(str) for x in record.custom
if (x.type or 'text') == 'text' and field_name.lower() == (x.label or '').lower()), None)
@staticmethod
def get_record_field(record, field_name): # type: (KeeperRecord, str) -> str
if isinstance(record, PasswordRecord):
if field_name == 'login':
return record.login
if field_name == 'password':
return record.password
if field_name == 'url':
return record.link
elif isinstance(record, TypedRecord):
if field_name in {'hostname', 'port'}:
field = record.get_typed_field('host')
else:
field = record.get_typed_field(field_name)
if field:
value = field.get_default_value()
if isinstance(value, str):
return value
if isinstance(value, dict):
if field_name in {'host', 'hostname', 'port'}:
host_name = value.get('hostName') or ''
port = value.get('port') or ''
if field_name == 'hostname':
return host_name
if field_name == 'port':
return port
if port:
return f'{host_name}:{port}'
return host_name
return ''
return BaseConnectCommand.get_custom_field(record, f'cmdr:{field_name}')
@staticmethod
def get_parameter_value(params, record, parameter, temp_files, **kwargs):
# type: (KeeperParams, KeeperRecord, str, list, ...) -> Optional[str]
if parameter.startswith('file:') or parameter.startswith('body:'):
file_name = parameter[5:]
attachments = list(prepare_attachment_download(params, record.record_uid, file_name))
if len(attachments) == 0:
logging.warning('Attachment file \"%s\" not found', file_name)
return None
if len(attachments) > 1:
logging.warning('More than one attachment file \"%s\" found', file_name)
return None
if parameter.startswith('file:'):
prefix = (kwargs.get('endpoint') or file_name) + '.'
with tempfile.NamedTemporaryFile(delete=False, prefix=prefix) as tf:
attachments[0].download_to_stream(params, tf)
temp_files.append(tf.name)
return tf.name
else:
with io.BytesIO() as mem:
attachments[0].download_to_stream(params, mem)
return mem.getvalue().decode('utf-8')
else:
return BaseConnectCommand.get_record_field(record, parameter)
@staticmethod
def get_command_string(params, record, template, temp_files, **kwargs):
# type: (KeeperParams, KeeperRecord, str, list, ...) -> str or None
command = template
while True:
m = endpoint_parameter_pattern.search(command)
if not m:
break
p = m.group(1)
pv = BaseConnectCommand.get_parameter_value(params, record, p, temp_files, **kwargs)
command = command[:m.start()] + (pv or '') + command[m.end():]
return command
class ConnectSshCommand(BaseConnectCommand):
def get_parser(self):
return ssh_parser
def execute(self, params, **kwargs):
name = kwargs['record'] if 'record' in kwargs else None
record = self.get_record(params, name, ['sshKeys', 'serverCredentials'])
if not record:
return
dst = kwargs.get('destination', '')
if dst:
login, at, host = dst.partition('@')
if at != '@':
logging.warning('Destination parameter should be LOGIN@HOST[:PORT]')
return
else:
login = BaseConnectCommand.get_record_field(record, 'login')
host = BaseConnectCommand.get_record_field(record, 'host')
if not login:
logging.warning('Record "%s" does not have login.', record.title)
return
if not host:
logging.warning('Record "%s" does not have host.', record.title)
return
host_name, _, port = host.partition(':')
self.run_at_the_end.clear()
options = self.get_extra_options(params, record, 'ssh')
self.command = f'ssh{options} {login}@{host_name}'
if port:
self.command += f' -p {port}'
if record.record_type == 'sshKeys':
facade = SshKeysFacade()
facade.assign_record(record)
private_key = facade.private_key
if not facade.private_key:
logging.warning('Record "%s" does not have private key.', record.title)
return
passphrase = facade.passphrase
if not passphrase:
passphrase = None
to_remove = add_ssh_key(private_key=private_key, passphrase=passphrase, key_name=record.title)
if to_remove:
self.run_at_the_end.append(to_remove)
else:
password = BaseConnectCommand.get_record_field(record, 'password')
if password:
if shutil.which('sshpass'):
self.command = 'sshpass -e ' + self.command
os.putenv('SSHPASS', password)
def clear_env():
os.putenv('SSHPASS', '')
self.run_at_the_end.append(clear_env)
else:
self.command += ' -o PubkeyAuthentication=no'
try:
import pyperclip
pyperclip.copy(password)
logging.info('\nPassword is copied to clipboard\n')
def clear_clipboard():
txt = pyperclip.paste()
if txt == password:
pyperclip.copy('')
self.run_at_the_end.append(clear_clipboard)
except Exception as e:
logging.debug(e)
logging.info('Failed to copy password to clipboard')
logging.info('Connecting to "%s" ...', record.title)
self.execute_shell()
class ConnectMysqlCommand(BaseConnectCommand):
def get_parser(self):
return mysql_parser
def execute(self, params, **kwargs):
name = kwargs['record'] if 'record' in kwargs else None
record = self.get_record(params, name, ['databaseCredentials', 'serverCredentials'])
if not record:
return
login = BaseConnectCommand.get_record_field(record, 'login')
if not login:
logging.warning('Record "%s" does not have login.', record.title)
return
host = BaseConnectCommand.get_record_field(record, 'host')
if not host:
logging.warning('Record "%s" does not have host.', record.title)
return
host_name, _, port = host.partition(':')
self.run_at_the_end.clear()
options = self.get_extra_options(params, record, 'mysql')
self.command = f'mysql{options}'
self.command += f' --host {host_name} --user {login}'
if port:
self.command += f' --port {port}'
password = BaseConnectCommand.get_record_field(record, 'password')
if password:
os.putenv('MYSQL_PWD', password)
def clear_env():
os.putenv('MYSQL_PWD', '')
self.run_at_the_end.append(clear_env)
logging.info('Connecting to "%s" ...', record.title)
self.execute_shell()
class ConnectPostgresCommand(BaseConnectCommand):
def get_parser(self):
return postgres_parser
def execute(self, params, **kwargs):
name = kwargs['record'] if 'record' in kwargs else None
record = self.get_record(params, name, ['databaseCredentials', 'serverCredentials'])
if not record:
return
login = BaseConnectCommand.get_record_field(record, 'login')
if not login:
logging.warning('Record "%s" does not have user name.', record.title)
return
host = BaseConnectCommand.get_record_field(record, 'host')
if not host:
logging.warning('Record "%s" does not have host.', record.title)
return
host_name, _, port = host.partition(':')
database = kwargs.get('database')
if not database:
database = BaseConnectCommand.get_custom_field(record, 'database')
if not database:
database = 'template1'
logging.info(f'\nConnecting to the default database: {database}\n')
self.command = f'{postgresql} {self.extra_parameters} -h {host_name}'
if port:
self.command += f' -p {port}'
self.command += f' -U {login} -w {database}'
self.run_at_the_end.clear()
password = BaseConnectCommand.get_record_field(record, 'password')
if password:
os.putenv('PGPASSWORD', password)
def clear_env():
os.putenv('PGPASSWORD', '')
self.run_at_the_end.append(clear_env)
logging.info('Connecting to "%s" ...', record.title)
self.execute_shell()
class ConnectRdpCommand(BaseConnectCommand):
def get_parser(self):
return rdp_parser
def execute(self, params, **kwargs):
name = kwargs['record'] if 'record' in kwargs else None
record = self.get_record(params, name, ['serverCredentials'])
if not record:
return
login = BaseConnectCommand.get_record_field(record, 'login')
if not login:
logging.warning('Record "%s" does not have user name.', record.title)
return
host = BaseConnectCommand.get_record_field(record, 'host')
if not host:
logging.warning('Record "%s" does not have host.', record.title)
return
host_name, _, port = host.partition(':')
password = BaseConnectCommand.get_record_field(record, 'password')
if password:
os.system(f'cmdkey /generic:{host_name} /user:{login} /pass:{password} > NUL')
def clear_password():
os.system(f'cmdkey /delete:{host_name} > NUL')
self.run_at_the_end.append(clear_password)
self.command = f'mstsc /v:{host_name}'
if port:
self.command += ':' + port
logging.info('Connecting to "%s" ...', record.title)
self.execute_shell()
connect_command_description = '''
Connect Command Syntax Description:
This command reads the custom fields for names starting with "connect:"
connect:<name> command
connect:<name>:description command description
connect:<name>:ssh-key:<key-comment> ssh private key to add to ssh-agent
connect:<name>:env:<Environment Variable To Set> sets environment variable
Connection command may contain template parameters.
Parameter syntax is ${<parameter_name>}
Supported parameters:
${user_email} Keeper user email address
${login} Record login
${password} Record password
${file:<attachment_name>} stores attachment into temporary file. parameter is replaced with temp file name
${body:<attachment_name>} content of the attachment file.
${<custom_field_name>} custom field value
SSH Example:
Title: SSH to my Server via Gateway
Custom Field 1 Name: connect:my_server:description
Custom Field 1 Value: Production Server Inside Gateway
Custom Field 2 Name: connect:my_server
Custom Field 2 Value: ssh -o "ProxyCommand ssh -i ${file:gateway.pem} ec2-user@gateway.mycompany.com -W %h:%p" -i ${file:server.pem} ec2-user@server.company.com
File Attachments:
gateway.pem
server.pem
To initiate connection: "connect my_server"
Connect to Postgres Example:
Title: Postgres
Login: PGuser
Password: **************
Custom Field 1 Name: connect:postgres
Custom Field 1 Value: psql --host=11.22.33.44 --port=3306 --username=${login} --dbname=postgres --no-password
Custom Field 2 Name: connect:postgres:env:PGPASSWORD
Custom Field 2 Value: ${password}
To initiate connection: "connect postgres"
'''
endpoint_pattern = re.compile(r'^connect:([^:]+)$')
endpoint_desc_pattern = re.compile(r'^connect:([^:]+):description$')
class ConnectEndpoint:
def __init__(self, name, description, record_uid, record_title, paths):
self.name = name # type: str
self.description = description # type: str
self.record_uid = record_uid # type: str
self.record_title = record_title # type: str
self.paths = paths # type: list
class ConnectCommand(BaseConnectCommand):
LastRevision = 0 # int
Endpoints = [] # type: [ConnectEndpoint]
def get_parser(self):
return connect_parser
def execute(self, params, **kwargs):
if kwargs.get('syntax_help'):
logging.info(connect_command_description)
return
ConnectCommand.find_endpoints(params)
endpoint = kwargs.get('endpoint')
if endpoint:
endpoints = [x for x in ConnectCommand.Endpoints if x.name == endpoint]
if not endpoints:
rpos = endpoint.rfind(':')
if rpos > 0:
try_path = endpoint[:rpos]
endpoint_name = endpoint[rpos+1:]
else:
try_path = endpoint
endpoint_name = ''
record_uid = ''
if try_path in params.record_cache:
record_uid = try_path
else:
rs = try_resolve_path(params, try_path)
if rs is not None:
folder, title = rs
if folder is not None and title is not None:
folder_uid = folder.uid or ''
if folder_uid in params.subfolder_record_cache:
for uid in params.subfolder_record_cache[folder_uid]:
r = KeeperRecord.load(params, uid)
if r.title.lower() == title.lower():
record_uid = uid
break
if record_uid:
endpoints = [x for x in ConnectCommand.Endpoints
if x.record_uid == record_uid and endpoint_name in {'', x.name}]
if len(endpoints) > 0:
if len(endpoints) == 1:
record = KeeperRecord.load(params, endpoints[0].record_uid)
self.connect_endpoint(params, endpoints[0].name, record)
else:
logging.warning("Connect endpoint '%s' is not unique", endpoint)
ConnectCommand.dump_endpoints(endpoints)
logging.info("Use full endpoint path: /<Folder>/<Title>[:<Endpoint>]")
folder = endpoints[0].paths[0] if len(endpoints[0].paths) > 0 else '/'
logging.info('Example: connect "%s/%s:%s"', folder, endpoints[0].record_title, endpoints[0].name)
else:
logging.info("Connect endpoint '%s' not found", endpoint)
else:
if ConnectCommand.Endpoints:
sorted_by = kwargs.get('sort_by') or 'endpoint'
filter_by = kwargs.get('filter_by') or ''
logging.info("Available connect endpoints")
if filter_by:
logging.info('Filtered by "%s"', filter_by)
filter_by = filter_by.lower()
ConnectCommand.dump_endpoints(ConnectCommand.Endpoints, filter_by, sorted_by)
else:
logging.info("No connect endpoints found")
return
@staticmethod
def dump_endpoints(endpoints, filter_by='', sorted_by=''):
logging.info('')
headers = ['Endpoint', 'Description', 'Record Title', 'Folder(s)']
table = []
for endpoint in endpoints:
title = endpoint.record_title
folder = endpoint.paths[0] if len(endpoint.paths) > 0 else '/'
if filter_by:
if not any([x for x in [endpoint.name.lower(), title.lower(), folder.lower()] if x.find(filter_by) >= 0]):
continue
if len(title) > 23:
title = title[:20] + '...'
table.append([endpoint.name, endpoint.description or '', title, folder])
table.sort(key=lambda x: x[3] if sorted_by == 'folder' else x[2] if sorted_by == 'title' else x[0])
dump_report_data(table, headers, row_number=True)
@staticmethod
def find_endpoints(params): # type: (KeeperParams) -> None
if ConnectCommand.LastRevision < params.revision:
ConnectCommand.LastRevision = params.revision
ConnectCommand.Endpoints.clear()
for record_uid in params.record_cache:
record = KeeperRecord.load(params, record_uid)
endpoints = []
endpoints_desc = {}
if isinstance(record, PasswordRecord):
for field in record.custom:
m = endpoint_pattern.match(field.name)
if m:
endpoints.append(m[1])
else:
m = endpoint_desc_pattern.match(field.name)
if m:
endpoints_desc[m[1]] = field.value or ''
elif isinstance(record, TypedRecord):
for field in record.custom:
if field.type and field.type != 'text':
continue
m = endpoint_pattern.match(field.label)
if m:
endpoints.append(m[1])
else:
m = endpoint_desc_pattern.match(field.label)
if m:
endpoints_desc[m[1]] = field.get_default_value(str) or ''
if endpoints:
paths = []
for folder_uid in find_folders(params, record_uid):
path = '/' + get_folder_path(params, folder_uid, '/')
paths.append(path)
for endpoint in endpoints:
epoint = ConnectEndpoint(endpoint, endpoints_desc.get(endpoint) or '', record_uid, record.title, paths)
ConnectCommand.Endpoints.append(epoint)
ConnectCommand.Endpoints.sort(key=lambda x: x.name)
@staticmethod
def get_fields_by_patters(record, pattern): # type: (KeeperRecord, str) -> Iterable[Tuple[str, str]]
if isinstance(record, PasswordRecord):
return ((x.name, x.value) for x in record.custom if x.name.lower().startswith(pattern))
if isinstance(record, TypedRecord):
return ((x.label, x.get_default_value()) for x in record.custom
if (x.type or 'text') == 'text' and (x.label or '').lower().startswith(pattern))
@staticmethod
def add_ssh_keys(params, endpoint, record, temp_files):
# type: (KeeperParams, str, KeeperRecord, List[str]) -> Iterable[Callable]
key_prefix = f'connect:{endpoint}:ssh-key'
for cf_name, cf_value in ConnectCommand.get_fields_by_patters(record, key_prefix):
key_name = cf_name[len(key_prefix)+1:] or 'Commander'
parsed_values = []
while True:
m = endpoint_parameter_pattern.search(cf_value)
if not m:
break
p = m.group(1)
val = ConnectCommand.get_parameter_value(params, record, p, temp_files)
if not val:
raise Exception(f'Add ssh-key. Failed to resolve key parameter: {p}')
parsed_values.append(val)
cf_value = cf_value[m.end():]
if len(parsed_values) > 0:
cf_value = cf_value.strip()
if cf_value:
parsed_values.append(cf_value)
to_delete = add_ssh_key(parsed_values[0], parsed_values[1] if len(parsed_values) > 1 else None, key_name)
if to_delete:
yield to_delete
@staticmethod
def add_environment_variables(params, endpoint, record, temp_files):
# type: (KeeperParams, str, KeeperRecord, List[str]) -> Iterable[Callable]
key_prefix = f'connect:{endpoint}:env:'
for cf_name, cf_value in ConnectCommand.get_fields_by_patters(record, key_prefix):
key_name = cf_name[len(key_prefix):]
if not key_name:
continue
while True:
m = endpoint_parameter_pattern.search(cf_value)
if not m:
break
p = m.group(1)
val = ConnectCommand.get_parameter_value(params, record, p, temp_files)
if not val:
raise Exception('Add environment variable. Failed to resolve key parameter: {0}'.format(p))
cf_value = cf_value[:m.start()] + val + cf_value[m.end():]
if cf_value:
os.putenv(key_name, cf_value)
def clear_env():
os.putenv(key_name, '')
yield clear_env
def connect_endpoint(self, params, endpoint, record):
# type: (KeeperParams, str, KeeperRecord) -> None
temp_files = []
try:
command = BaseConnectCommand.get_custom_field(record, f'connect:{endpoint}:pre')
if command:
command = BaseConnectCommand.get_command_string(params, record, command, temp_files, endpoint=endpoint)
if command:
os.system(command)
command = ConnectCommand.get_custom_field(record, f'connect:{endpoint}')
if command:
self.command = ConnectCommand.get_command_string(params, record, command, temp_files, endpoint=endpoint)
if self.command:
self.run_at_the_end.extend(
ConnectCommand.add_ssh_keys(params, endpoint, record, temp_files))
self.run_at_the_end.extend(
ConnectCommand.add_environment_variables(params, endpoint, record, temp_files))
logging.info('Connecting to "%s" ...', record.title)
self.execute_shell()
command = BaseConnectCommand.get_custom_field(record, f'connect:{endpoint}:post')
if command:
command = ConnectCommand.get_command_string(params, record, command, temp_files, endpoint=endpoint)
if command:
os.system(command)
finally:
for file in temp_files:
os.remove(file)
| 30,543 | 8,248 |
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import with_statement
from builtins import input
import mpcorbget as mpc
def main():
"""Handy dandy quick ephemeris tool"""
print("QuickEphem v1.1 | Code by Alex Davenport\n----------------------------------------------")
asteroid = input("Asteroid Designation: ")
observatory = input("Observatory Code: ")
datetime = input("UTC (YYYY/MM/DD HH:MM:SS): ")
ast = mpc.MPCORB(asteroid)
observatory = mpc.Observatory(observatory)
geo = ast.geocentric(datetime)
topo = ast.topocentric(observatory.location, datetime)
print("----------------------------------------------")
print(geo)
print()
print(topo)
if __name__ == "__main__":
main()
| 855 | 267 |
import unittest
import logging
import game_code
log = logging.getLogger('test.level_1')
class TestAdventureLevelOne(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.game = game_code.main.start_game(interface='python')
def test_outside_slowly(self):
outside = self.game.interface.get_next_screen()
self.assertEqual(outside.title, 'Outside')
self.assertEqual(outside.choices[1], 'Open the door slowly')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_outside_kick(self):
outside = self.game.interface.get_next_screen()
self.assertEqual(outside.title, 'Outside')
self.assertEqual(outside.choices[2], 'Kick down the door!')
ok = self.game.interface.put_choice(2)
self.assertTrue(ok)
def test_entrance_hall_left(self):
entrance_hall = self.game.interface.get_next_screen()
self.assertEqual(entrance_hall.title, 'Entrance Hall')
self.assertEqual(entrance_hall.choices[1], 'Left Door')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_entrance_hall_front(self):
entrance_hall = self.game.interface.get_next_screen()
self.assertEqual(entrance_hall.title, 'Entrance Hall')
self.assertEqual(entrance_hall.choices[2], 'Front Door')
ok = self.game.interface.put_choice(2)
self.assertTrue(ok)
def test_entrance_hall_right(self):
entrance_hall = self.game.interface.get_next_screen()
self.assertEqual(entrance_hall.title, 'Entrance Hall')
self.assertEqual(entrance_hall.choices[3], 'Right Door')
ok = self.game.interface.put_choice(3)
self.assertTrue(ok)
def test_closet_room_search(self):
closet_room = self.game.interface.get_next_screen()
self.assertEqual(closet_room.title, 'Closet Room')
self.assertEqual(closet_room.choices[1], 'Search the closet')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_closet_go_back(self):
closet_room = self.game.interface.get_next_screen()
self.assertEqual(closet_room.title, 'Closet')
self.assertEqual(closet_room.choices[1], 'Go back.')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_closet_room_leave(self):
closet_room = self.game.interface.get_next_screen()
self.assertEqual(closet_room.title, 'Closet Room')
self.assertEqual(closet_room.choices[1], 'Leave room')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_kitchen_listen(self):
kitchen = self.game.interface.get_next_screen()
self.assertEqual(kitchen.title, 'Kitchen')
self.assertEqual(kitchen.choices[1], 'Kneel next to the zombie and listen.')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_kitchen_ask(self):
listening = self.game.interface.get_next_screen()
self.assertEqual(listening.title, 'Listen To Zombie')
self.assertEqual(listening.choices[1], 'Ask why he tried to run away')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_kitchen_ask_ring(self):
listening = self.game.interface.get_next_screen()
self.assertEqual(listening.title, 'Listen To Zombie')
self.assertEqual(listening.choices[1], 'Ask for the ring')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_kitchen_leave(self):
listening = self.game.interface.get_next_screen()
self.assertEqual(listening.title, 'Listen To Zombie')
self.assertEqual(listening.choices[1], 'Leave room')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_living_room_hold(self):
living_room = self.game.interface.get_next_screen()
self.assertEqual(living_room.title, 'Living Room')
self.assertEqual(living_room.choices[1],
'Hold your holy cross firmly before the ghost and recite a banishment prayer!')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_living_room_move(self):
living_room = self.game.interface.get_next_screen()
self.assertEqual(living_room.title, 'Ghast Destroyed')
self.assertEqual(living_room.choices[1],
'Move towards the iron gate at the far end of the room')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_living_room_key(self):
living_room = self.game.interface.get_next_screen()
self.assertEqual(living_room.title, 'Iron Gate')
self.assertEqual(living_room.choices[1], 'Try the key')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_living_room_stairs(self):
living_room = self.game.interface.get_next_screen()
self.assertEqual(living_room.title, 'Iron Gate')
self.assertEqual(living_room.choices[1], 'Advance down the stairs')
ok = self.game.interface.put_choice(1)
self.assertTrue(ok)
def test_arrive_at_grande_hall(self):
grande_hall = self.game.interface.get_next_screen()
self.assertEqual(grande_hall.title, 'Grande Hall')
| 5,338 | 1,753 |
import unittest
from project.player.beginner import Beginner
from project.player.player_repository import PlayerRepository
class TestPlayerRepo(unittest.TestCase):
def setUp(self):
self.repo = PlayerRepository()
def test_set_up(self):
self.assertEqual(self.repo.count, 0)
self.assertListEqual(self.repo.players, [])
def test_addplayer_when_player_name_exists(self):
p = Beginner("Borko")
self.repo.add(p)
with self.assertRaises(ValueError) as ex:
self.repo.add(p)
self.assertEqual(str(ex.exception), "Player Borko already exists!")
def test_add_player_when_name_is_new(self):
p = Beginner('Borko')
self.repo.add(p)
self.assertTrue(len(self.repo.players), 1)
self.assertEqual(self.repo.count, 1)
self.assertEqual(self.repo.players[0].username, 'Borko')
def test_remove_when_name_is_net_defined_should_raise_error(self):
p = Beginner('Borko')
self.repo.add(p)
with self.assertRaises(ValueError) as ex:
self.repo.remove("")
self.assertEqual(str(ex.exception), "Player cannot be an empty string!")
def test_remove_when_name_is_ncorect_remove_user(self):
p = Beginner('Borko')
self.repo.add(p)
self.repo.remove('Borko')
self.assertEqual(len(self.repo.players), 0)
self.assertEqual(self.repo.count, 0)
def test_find(self):
p = Beginner('Borko')
self.repo.add(p)
actual = self.repo.find('Borko')
self.assertEqual(p, actual)
if __name__ == '__main__':
unittest.main()
| 1,627 | 555 |
import xml.etree.ElementTree as ET
class Template:
def __init__(self, image, default_xml):
self.tree = ET.parse(default_xml)
self.root = self.tree.getroot()
self.image = image
def add_template_objects(self, xml, **kargs):
tree = ET.parse(xml)
root = tree.getroot()
y_offset = kargs["y_offset"] if("y_offset" in kargs) else 0
for _object in root.findall('./object'):
for bndbox in _object.findall('bndbox'):
bndbox.find('ymin').text = str(int(bndbox.find('ymin').text)+y_offset)
bndbox.find('ymax').text = str(int(bndbox.find('ymax').text)+y_offset)
self.root.insert(-1, _object)
pass
def random_crop_img(self):
## get random img from ext_images
img = cv2.open(rand_img_path)
pass
def save(self, path):
self.tree.write(path)
def create_battlefield(img, handcards, enemy_minions, player_minions, heropower_enemy, heropower_player):
t = Template(img, "templates/battlefield/defaults.xml")
if(handcards > 0):
t.add_template_objects("templates/battlefield/handcards_{}.xml".format(handcards))
if(player_minions > 0):
t.add_template_objects("templates/battlefield/minions_{}.xml".format(player_minions))
if(enemy_minions > 0):
t.add_template_objects("templates/battlefield/minions_{}.xml".format(enemy_minions), y_offset=-185)
if(heropower_enemy):
t.add_template_objects("templates/battlefield/heropower_enemy.xml")
if(heropower_player):
t.add_template_objects("templates/battlefield/heropower_player.xml")
return t
| 1,663 | 568 |
from .datasets import * # noqa
from .metrics import * # noqa
| 61 | 21 |
from monstage import *
class MonType():
def __init__(self,sprites=None,stage=egg,becomes=None):
self.stage = stage
self.becomes = becomes
self._sprites = sprites
def setSprites(self,sprites):
if type(sprites) not in [list,tuple] or sprites == None:
raise TypeError
self._sprites = sprites
def getSprites(self):
return self._sprites
sprites = property(getSprites,setSprites)
bobo = MonType(sprites=["img/bobo.png","img/bobo2.png"],stage=bab)
plainegg = MonType(sprites=["img/egg1.png","img/egg2.png"],becomes=[bobo])
| 640 | 226 |
# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2019-04-09 04:03
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('netdevice', '0006_auto_20190409_0325'),
('bgp', '0003_auto_20190328_0332'),
]
operations = [
migrations.AlterField(
model_name='aut_num',
name='asn',
field=models.BigIntegerField(),
),
migrations.AlterUniqueTogether(
name='aut_num',
unique_together=set([('asn', 'vrf')]),
),
]
| 619 | 235 |
import sys
import os
import subprocess as proc
import distutils.spawn as which
version = sys.version[:3]
activate_env_path = os.path.join("env", "bin", "activate_this.py")
activate_env = activate_env_path
opts = {}
def has_colours(stream):
if not hasattr(stream, "isatty"):
return False
if not stream.isatty():
return False
try:
import curses
curses.setupterm()
return curses.tigetnum("colors") > 2
except:
return False
def print_color(text, color = 7):
if has_colours(sys.stdout):
seq = "\x1b[1;%dm" % (30 + color) + text + "\x1b[0m"
return seq
else:
return text
dependencies = ["pandoc", "pandoc-citeproc",
"pandoc-crossref", "pandoc-sidenote",
"virtualenv"]
if version != "2.7":
error = "[ERR]\tPython version not 2.7"
print(print_color(error, 1))
sys.exit()
for dependency in dependencies:
if not which.find_executable(dependency):
error = "[ERR]\t" + dependency + " not found in path"
print(print_color(error, 1))
sys.exit()
print(print_color("==> Creating the virtual environment. . .", 4))
try:
proc.check_call(["virtualenv", "--python=/usr/bin/python2.7", "env"])
except Exception, e:
raise e
print(print_color("==> Activating the virtual environment. . .", 4))
execfile(activate_env, dict(__file__=activate_env))
print(print_color("==> Installing pip dependencies. . .", 4))
proc.check_call(["pip", "install", "-r", "requirements.txt"])
try:
print(print_color("==> Customizing athena. . .", 4))
opts["title"] = raw_input(
print_color("Enter title: ", 4)
)
opts["author"] = raw_input(
print_color("Enter author: ", 4)
)
opts["indexdesc"] = raw_input(
print_color("Enter home page description: ", 4)
)
opts["sidebardesc"] = raw_input(
print_color("Enter sidebar description: ", 4)
)
opts["footer"] = raw_input(
print_color("Enter footer: ", 4)
)
except KeyboardInterrupt:
print("\n")
sys.exit()
with open("config.py", 'w') as f:
f.write("config = {\n")
for key, value in opts.items():
f.write('\t"%s"\t: "%s",\n' % (key, value))
f.write("}\n")
print(print_color("==> Installation complete!", 2))
| 2,195 | 792 |
# from functools import lru_cache as memoize
from collections import namedtuple
from pyparsing import Regex, SkipTo, ParseException, OneOrMore, Optional, Suppress, Empty
Language = namedtuple("Language", ["code", "text"])
# directives
# _dsee = Suppress("@see")+SkipTo(LineEnd())
# _dparam = Suppress("@param")+SkipTo(LineEnd())
# _dname = Suppress("@name")+SkipTo(LineEnd())
#
#
# _text = Optional(_dname) + SkipTo(Or((Suppress(_dsee), Suppress(_dparam), StringEnd())), include=True)
def _build_language():
# TODO: use regexp backreference
def check_match(s, loc, toks):
start = toks[0].strip()
stop = toks[1][1].strip()
if start[1:] != stop[4:]:
raise ParseException("Language tags mismatch")
code = start[1:]
content = toks[1][0].strip()
return Language(code, content)
open_ = Regex(r"\\([a-zA-Z0-9]+?)\s")
close = Regex(r"\\end([a-zA-Z0-9]+?)(\s|$)")
return (open_ + SkipTo(close, include=True)).setParseAction(check_match)
_language = _build_language()
def _build_doxygen(spec):
def is_meta(s):
for m in ("@param", "@name", "@see"):
if s.startswith(m):
return True
def normalize(s, loc, toks):
decommented = (ll.strip() for ll in toks[0].replace("*", "").split("\n"))
cleaned = " ".join(ll.strip() for ll in decommented if not is_meta(ll))
languages = OneOrMore(_language).parseString(cleaned, parseAll=True)
return [languages]
end = "*/"
return (Suppress(r"/**") + Suppress(spec) + SkipTo(end) + Suppress(end)).setParseAction(normalize)
# Exported
inline = _build_doxygen(r"<")
reader = _build_doxygen(r"$XIR")
writer = _build_doxygen(r"$XIW")
struct = _build_doxygen(r"$XIS")
reader_calb = _build_doxygen(r"$XIRC")
writer_calb = _build_doxygen(r"$XIWC")
struct_calb = _build_doxygen(r"$XISC")
flagset = _build_doxygen(Empty())
OpenGroup = Suppress(Optional(Optional(_build_doxygen(Empty())) + r"//@{"))
CloseGroup = Suppress(Optional(r"//@}"))
| 2,031 | 735 |
from abc import ABC, abstractmethod
class AbstractModel(ABC):
def __init__(self):
self.model = None
self.word2idx = None
self.idx2word = None
self.tag2idx = None
self.idx2tag = None
self.max_len = None
self.vocabulary = None
self.categories = None
self.load_workflow = []
self.load_param = []
super().__init__()
def load(self):
for method, param in zip(self.load_workflow, self.load_param):
print(method)
if method is not None and callable(method):
method(*param)
@abstractmethod
def train(self, X, y, epochs=100, batch_size=32):
pass
@abstractmethod
def predict(self, input):
pass
@abstractmethod
def test(self, X_test, y_test):
pass
@abstractmethod
def save_model(self, path):
pass
@abstractmethod
def load_model(self, path):
pass
def load_vocabulary(self, path_to_vocabulary):
self.vocabulary = [word.strip() for word in open(path_to_vocabulary, "r").readlines() if len(word) >= 1]
def load_categories(self, path_to_categories):
self.categories = [category.split("\t") for category in open(path_to_categories, "r").readlines() if len(category) > 3]
| 1,314 | 422 |
import logging
import sys
import concurrent.futures as cf
from time import clock, time
import numpy as np
import pytest
from worms import simple_search_dag, Cyclic, grow_linear, NullCriteria
from worms.util import InProcessExecutor
from worms.database import CachingBBlockDB, CachingSpliceDB
from worms.ssdag_pose import make_pose_crit, make_pose
from worms.ssdag import graph_dump_pdb
from worms.filters.clash import prune_clashes
from worms.search import lossfunc_rand_1_in
logging.getLogger().setLevel(99)
# David's Defaults
# --max_chunk_length 170
# --nres_from_termini 80
# --max_sample 1e11
# --min_chunk_length 100
# --use_class True
# --prefix %s_n%s
# --err_cutoff 9.0
# --max_chain_length 400
# --min_seg_len 15
# --cap_number_of_pdbs_per_segment 150
# --clash_cutoff 1.5
# --superimpose_rmsd 0.7
# --superimpose_length 9
# --Nproc_for_sympose 8
# --max_number_of_fusions_to_evaluate 10000
# --database_files %s" '%(base,nrun,base,base,nrun,config_file,base,nrun,DATABASES)
def _dump_pdb(i, **kw):
pose = make_pose(**kw)
pose.dump_pdb("test_%i.pdb" % i)
def worm_grow_3(
bbdb,
spdb,
nbblocks=10,
shuffle_bblocks=0,
parallel=1,
verbosity=1,
monte_carlo=0,
clash_check=0,
dump_pdb=0,
cache_sync=0.001,
):
if clash_check < dump_pdb:
clash_check = dump_pdb * 100
ttot = time()
ssdag, tdb, tvertex, tedge = simple_search_dag(
[
("C3_N", "_N"),
("Het:NCy", "C_"),
# ('Het:CCC', 'C_'),
# ('Het:NN', 'NN'),
# ('Het:CC', 'CC'),
# ('Het:NNX', 'N_'),
],
(bbdb, spdb),
nbblocks=nbblocks,
timing=True,
verbosity=verbosity,
parallel=parallel,
cache_sync=cache_sync,
)
# crit = Cyclic(3, from_seg=2, origin_seg=0)
# crit = Cyclic(3)
# last_bb_same_as = crit.from_seg
crit = NullCriteria()
lf = crit.jit_lossfunc()
last_bb_same_as = -1
tgrow = time()
rslt = grow_linear(
ssdag,
# loss_function=lf,
loss_function=lossfunc_rand_1_in(1000),
parallel=parallel,
loss_threshold=1.0,
last_bb_same_as=last_bb_same_as,
monte_carlo=monte_carlo,
)
tgrow = time() - tgrow
Nres = len(rslt.err)
Ntot = np.prod([v.len for v in ssdag.verts])
logtot = np.log10(Ntot)
print(
"frac last_bb_same_as",
rslt.stats.n_last_bb_same_as[0] / rslt.stats.total_samples[0],
)
Nsparse = int(rslt.stats.total_samples[0])
Nsparse_rate = int(Nsparse / tgrow)
ttot = time() - ttot
if len(rslt.idx) == 0:
frac_redundant = 0
else:
frac_redundant = rslt.stats.n_redundant_results[0] / len(rslt.idx)
print(
f" worm_grow_3 {nbblocks:4} {ttot:7.1f}s {Nres:9,} logtot{logtot:4.1f} tv"
f" {tvertex:7.1f}s te {tedge:7.1f}s tg {tgrow:7.1f}s {Nsparse:10,} {Nsparse_rate:7,}/s {frac_redundant:4.1f}"
)
if len(rslt.err):
print("err 0 25 50 75 100", np.percentile(rslt.err, (0, 25, 50, 75, 100)))
sys.stdout.flush()
if not clash_check:
return
tclash = time()
norig = len(rslt.idx)
# rslt = prune_clashes(
# ssdag, crit, rslt, at_most=clash_check, thresh=4.0, parallel=parallel
# )
print(
"pruned clashes, %i of %i remain," % (len(rslt.idx), min(clash_check, norig)),
"took",
time() - tclash,
"seconds",
)
for i, idx in enumerate(rslt.idx[:10]):
graph_dump_pdb("graph_%i_nojoin.pdb" % i, ssdag, idx, rslt.pos[i], join=0)
# graph_dump_pdb('graph_%i.pdb' % i, ssdag, idx, rslt.pos[i])
return
if len(rslt.idx) > 0:
tpdb = time()
exe = cf.ThreadPoolExecutor if parallel else InProcessExecutor
with exe(max_workers=3) as pool:
futures = list()
for i in range(min(dump_pdb, len(rslt.idx))):
kw = dict(
bbdb=bbdb,
ssdag=ssdag,
# crit=crit,
i=i,
indices=rslt.idx[i],
positions=rslt.pos[i],
only_connected=False,
)
futures.append(pool.submit(_dump_pdb, **kw))
[f.result() for f in futures]
print("dumped %i structures" % min(dump_pdb, len(rslt.idx)), "time", time() - tpdb)
def main():
import argparse
import glob
import pyrosetta
pyrosetta.init("-mute all -beta")
parser = argparse.ArgumentParser()
parser.add_argument("--verbosity", type=int, dest="verbosity", default=0)
parser.add_argument("--parallel", type=int, dest="parallel", default=True)
parser.add_argument("--nbblocks", type=int, dest="nbblocks", default=4)
parser.add_argument("--clash_check", type=int, dest="clash_check", default=0)
parser.add_argument("--dump_pdb", type=int, dest="dump_pdb", default=0)
parser.add_argument("--cache_sync", type=float, dest="cache_sync", default=0.01)
parser.add_argument("--monte_carlo", type=int, dest="monte_carlo", default=0)
args = parser.parse_args()
bbdb = CachingBBlockDB(
dbfiles=[
"worms/data/c6_database.json",
"worms/data/HBRP_Cx_database.json",
"worms/data/HFuse_Cx_database.20180219.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-103_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-112_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-127_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-13_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-15_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-34_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-37_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-39_2.20180406.json",
"worms/data/HFuse_het_2chain_2arm_database.ZCON-9_2.20180406.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh13_3.20180406.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh13_3.20180416.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh29_3.20180406.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh29_3.20180416.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh34_3.20180416.json",
"worms/data/HFuse_het_3chain_2arm_database.Sh3e_3.20180406.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh13_3.20180406.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh13_3.20180416.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh29_3.20180406.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh29_3.20180416.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh34_3.20180416.json",
"worms/data/HFuse_het_3chain_3arm_database.Sh3e_3.20180406.json",
"worms/data/master_database_generation2.json",
"worms/data/test_db_file.json",
"worms/data/test_fullsize_prots.json",
],
read_new_pdbs=True,
verbosity=args.verbosity,
)
spdb = CachingSpliceDB()
worm_grow_3(
bbdb,
spdb,
nbblocks=args.nbblocks,
parallel=args.parallel,
verbosity=args.verbosity,
monte_carlo=args.monte_carlo,
clash_check=args.clash_check,
dump_pdb=args.dump_pdb,
cache_sync=args.cache_sync,
)
sys.stdout.flush()
if __name__ == "__main__":
main()
| 7,327 | 3,242 |