max_stars_repo_path stringlengths 3 269 | max_stars_repo_name stringlengths 4 119 | max_stars_count int64 0 191k | id stringlengths 1 7 | content stringlengths 6 1.05M | score float64 0.23 5.13 | int_score int64 0 5 |
|---|---|---|---|---|---|---|
apigee/backups/commands.py | mdelotavo/apigee-cli | 5 | 12767451 | import click
from apigee import console
from apigee.auth import common_auth_options, gen_auth
from apigee.backups.backups import Backups
# from apigee.cls import OptionEatAll
from apigee.prefix import common_prefix_options
from apigee.silent import common_silent_options
from apigee.verbose import common_verbose_options
APIS_CHOICES = {
'apis',
'keyvaluemaps',
'targetservers',
'caches',
'developers',
'apiproducts',
'apps',
'userroles',
}
@click.group(help='Download configuration files from Apigee that can later be restored.')
def backups():
pass
def _take_snapshot(
username,
password,
mfa_secret,
token,
zonename,
org,
profile,
target_directory,
prefix,
environments,
apis,
**kwargs
):
if not isinstance(apis, set):
apis = set(apis)
Backups(
gen_auth(username, password, mfa_secret, token, zonename),
org,
target_directory,
prefix=prefix,
fs_write=True,
apis=apis,
environments=list(environments),
).take_snapshot()
@backups.command(
help='Downloads and generates local snapshots of specified Apigee resources e.g. API proxies, KVMs, target servers, etc.'
)
@common_auth_options
@common_prefix_options
@common_silent_options
@common_verbose_options
@click.option(
'--target-directory',
type=click.Path(exists=False, dir_okay=True, file_okay=False, resolve_path=False),
required=True,
)
@click.option(
'--apis',
type=click.Choice(APIS_CHOICES, case_sensitive=False),
multiple=True,
default=APIS_CHOICES,
show_default=True,
)
# @click.option('--apis', metavar='LIST', cls=OptionEatAll, default=APIS_CHOICES, show_default=True, help='')
# @click.option(
# '-e', '--environments', metavar='LIST', cls=OptionEatAll, default=['test', 'prod'], help=''
# )
@click.option(
'-e', '--environments', multiple=True, show_default=True, default=['test', 'prod'], help=''
)
def take_snapshot(*args, **kwargs):
_take_snapshot(*args, **kwargs)
| 1.9375 | 2 |
dlchord2/parser/chord_parser.py | anime-song/DLChord-2 | 0 | 12767452 | from dlchord2 import const
class ChordParseData(object):
def __init__(self, root_text, bass_text, quality_text):
self.__root_text = root_text
self.__bass_text = bass_text
self.__quality_text = quality_text
@property
def root_text(self):
return self.__root_text
@property
def bass_text(self):
return self.__bass_text
@property
def quality_text(self):
return self.__quality_text
class ChordParser(object):
"""
コードをルート、クオリティ、ベースに分解するクラス。
"""
def parse(self, chord_text):
split_text = chord_text.split("/")
root_text = chord_text[0]
bass_text = ""
accidentals_text = ""
if len(split_text) > 1:
bass_text = split_text[1]
res = split_text[0][1:]
for i in range(len(res)):
if res[i] != const.ACCIDENTALS_SHARP and res[i] != const.ACCIDENTALS_FLAT:
break
accidentals_text += res[i]
root_text += accidentals_text
quality_text = res[len(accidentals_text):]
# ベースがない場合はルート音がベースになります
if bass_text == "":
bass_text = root_text
return ChordParseData(root_text, bass_text, quality_text)
| 3.140625 | 3 |
tests/table_data.py | bws428/ambiance | 18 | 12767453 | <gh_stars>10-100
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author: <NAME>
# ===== LAYER CHANGES =====
# OK --> -5.0e3
# *OK -2500
# *OK --> 0.00e3
# *OK 2000
# *OK --> 11.0e3
# *OK 15000
# *OK --> 20.0e3
# *OK 25000
# *OK --> 32.0e3
# *OK 41_000
# *OK --> 47.0e3
# *OK 50_000
# *OK --> 51.0e3
# *OK 61_000
# *OK --> 71.0e3
# *OK 75_000
# *OK --> 80.0e3
from collections import defaultdict
import random
import numpy as np
class TableData:
"""
Tabularised data from standard atmosphere
"""
PROPERTY_NAMES = [
# Table 1
"H", # Geopotential height
"temperature",
"temperature_in_celsius",
"pressure",
"density",
"grav_accel",
# Table 2
"speed_of_sound",
"dynamic_viscosity",
"kinematic_viscosity",
"thermal_conductivity",
# Table 3
"pressure_scale_height",
"specific_weight",
"number_density",
"mean_particle_speed",
"collision_frequency",
"mean_free_path",
]
def __init__(self):
self.property_dict = {}
def add_entry(self, h, entry):
# Dictionary: h (geometric height) --> property dict
self.property_dict[h] = entry
def get_vectors(self, return_random=False, list_len=10):
"""
Return test data in vector form
"""
height = []
properties = defaultdict(list)
# -------------------------------------------------------------------
# Random list
# -------------------------------------------------------------------
if return_random:
for _ in range(list_len):
h, entry_dict = random.choice(list(self.property_dict.items()))
height.append(h)
for prop_name, value in entry_dict.items():
properties[prop_name].append(value)
# -------------------------------------------------------------------
# Sorted
# -------------------------------------------------------------------
else:
for h, entry_dict in self.property_dict.items():
height.append(h)
for prop_name, value in entry_dict.items():
properties[prop_name].append(value)
return height, properties
def get_matrices(self, return_random=False, shape=(3, 3)):
"""
Return test data in matrix form
"""
n_elem = np.prod(shape) # Number of elements in matrix
height, properties = self.get_vectors(return_random=return_random)
height = np.reshape(height[0:n_elem], shape)
properties_new = {}
for prop_name, value in properties.items():
value = np.reshape(value[0:n_elem], shape)
properties_new[prop_name] = value
return height, properties_new
table_data = TableData()
table_data.add_entry(
h=-5000,
entry={
"H": -5004,
"temperature": 320.676,
"temperature_in_celsius": 47.526,
"pressure": 1.77762e5,
"density": 1.93113,
"grav_accel": 9.8221,
# ----------
"speed_of_sound": 358.986,
"dynamic_viscosity": 1.9422e-5,
"kinematic_viscosity": 1.0058e-5,
"thermal_conductivity": 2.7861e-2,
# ----------
"pressure_scale_height": 9371.8,
"specific_weight": 1.8968e1,
"number_density": 4.0154e25,
"mean_particle_speed": 484.15,
"collision_frequency": 1.1507e10,
"mean_free_path": 4.2075e-8,
}
)
table_data.add_entry(
h=-4996,
entry={
"H": -5000,
"temperature": 320.650,
"temperature_in_celsius": 47.500,
"pressure": 1.77687e5,
"density": 1.93047,
"grav_accel": 9.8221,
# ----------
"speed_of_sound": 358.972,
"dynamic_viscosity": 1.9421e-5,
"kinematic_viscosity": 1.0060e-5,
"thermal_conductivity": 2.7859e-2,
# ----------
"pressure_scale_height": 9371.1,
"specific_weight": 1.8961e1,
"number_density": 4.0140e25,
"mean_particle_speed": 484.14,
"collision_frequency": 1.1503e10,
"mean_free_path": 4.2089e-8,
}
)
table_data.add_entry(
h=-2500,
entry={
"H": -2501,
"temperature": 304.406,
"temperature_in_celsius": 31.265,
"pressure": 1.35205e5,
"density": 1.54731,
"grav_accel": 9.8144,
# ----------
"speed_of_sound": 349.761,
"dynamic_viscosity": 1.8668e-5,
"kinematic_viscosity": 1.2065e-5,
"thermal_conductivity": 2.6611e-2,
# ----------
"pressure_scale_height": 8903.3,
"specific_weight": 1.5186e1,
"number_density": 3.2173e25,
"mean_particle_speed": 471.71,
"collision_frequency": 8.9830e9,
"mean_free_path": 5.2512e-8,
}
)
table_data.add_entry(
h=0,
entry={
"H": 0,
"temperature": 288.15,
"temperature_in_celsius": 15,
"pressure": 1.01325e5,
"density": 1.225,
"grav_accel": 9.80665,
# ----------
"speed_of_sound": 340.294,
"dynamic_viscosity": 1.7894e-5,
"kinematic_viscosity": 1.4607e-5,
"thermal_conductivity": 2.5343e-2,
# ----------
"pressure_scale_height": 8434.5,
"specific_weight": 1.2013e1,
"number_density": 2.5471e25,
"mean_particle_speed": 458.94,
"collision_frequency": 6.9193e9,
"mean_free_path": 6.6328e-8,
}
)
table_data.add_entry(
h=1000,
entry={
"H": 1000,
"temperature": 281.651,
"temperature_in_celsius": 8.501,
"pressure": 8.98763e4,
"density": 1.11166,
"grav_accel": 9.8036,
# ----------
"speed_of_sound": 336.435,
"dynamic_viscosity": 1.7579e-5,
"kinematic_viscosity": 1.5813e-5,
"thermal_conductivity": 2.4830e-2,
# ----------
"pressure_scale_height": 8246.9,
"specific_weight": 1.0898e1,
"number_density": 2.3115e25,
"mean_particle_speed": 453.74,
"collision_frequency": 6.2079e9,
"mean_free_path": 7.3090e-8,
}
)
table_data.add_entry(
h=2000,
entry={
"H": 1999,
"temperature": 275.154,
"temperature_in_celsius": 2.004,
"pressure": 7.95014e4,
"density": 1.00655,
"grav_accel": 9.8005,
# ----------
"speed_of_sound": 332.532,
"dynamic_viscosity": 1.7260e-5,
"kinematic_viscosity": 1.7147e-5,
"thermal_conductivity": 2.4314e-2,
# ----------
"pressure_scale_height": 8059.2,
"specific_weight": 9.8647,
"number_density": 2.0929e25,
"mean_particle_speed": 448.48,
"collision_frequency": 5.5558e9,
"mean_free_path": 8.0723e-8,
}
)
table_data.add_entry(
h=11_000,
entry={
"H": 10981,
"temperature": 216.774,
"temperature_in_celsius": -56.376,
"pressure": 2.26999e4,
"density": 3.64801e-1,
"grav_accel": 9.7728,
# ----------
"speed_of_sound": 295.154,
"dynamic_viscosity": 1.4223e-5,
"kinematic_viscosity": 3.8988e-5,
"thermal_conductivity": 1.9528e-2,
# ----------
"pressure_scale_height": 6367.2,
"specific_weight": 3.5651,
"number_density": 7.5853e24,
"mean_particle_speed": 398.07,
"collision_frequency": 1.7872e9,
"mean_free_path": 2.2273e-7,
}
)
table_data.add_entry(
h=11_019,
entry={
"H": 11000,
"temperature": 216.650,
"temperature_in_celsius": -56.500,
"pressure": 2.26320e4,
"density": 3.63918e-1,
"grav_accel": 9.7727,
# ----------
"speed_of_sound": 295.069,
"dynamic_viscosity": 1.4216e-5,
"kinematic_viscosity": 3.9064e-5,
"thermal_conductivity": 1.9518e-2,
# ----------
"pressure_scale_height": 6363.6,
"specific_weight": 3.5565,
"number_density": 7.5669e24,
"mean_particle_speed": 397.95,
"collision_frequency": 1.7824e9,
"mean_free_path": 2.2327e-7,
}
)
table_data.add_entry(
h=15_000,
entry={
"H": 14965,
"temperature": 216.650,
"temperature_in_celsius": -56.500,
"pressure": 1.21118e4,
"density": 1.94755e-1,
"grav_accel": 9.7605,
# ----------
"speed_of_sound": 295.069,
"dynamic_viscosity": 1.4216e-5,
"kinematic_viscosity": 7.2995e-5,
"thermal_conductivity": 1.9518e-2,
# ----------
"pressure_scale_height": 6371.6,
"specific_weight": 1.9009,
"number_density": 4.0495e24,
"mean_particle_speed": 397.95,
"collision_frequency": 9.5386e8,
"mean_free_path": 4.1720e-7,
}
)
table_data.add_entry(
h=20_000,
entry={
"H": 19937,
"temperature": 216.650,
"temperature_in_celsius": -56.500,
"pressure": 5.52929e3,
"density": 8.89097e-2,
"grav_accel": 9.7452,
# ----------
"speed_of_sound": 295.069,
"dynamic_viscosity": 1.4216e-5,
"kinematic_viscosity": 1.5989e-4,
"thermal_conductivity": 1.9518e-2,
# ----------
"pressure_scale_height": 6381.6,
"specific_weight": 8.6645e-1,
"number_density": 1.8487e24,
"mean_particle_speed": 397.95,
"collision_frequency": 4.3546e8,
"mean_free_path": 9.1387e-7,
}
)
table_data.add_entry(
h=20_063,
entry={
"H": 20000,
"temperature": 216.650,
"temperature_in_celsius": -56.500,
"pressure": 5.47487e3,
"density": 8.80345e-2,
"grav_accel": 9.7450,
# ----------
"speed_of_sound": 295.069,
"dynamic_viscosity": 1.4216e-5,
"kinematic_viscosity": 1.6148e-4,
"thermal_conductivity": 1.9518e-2,
# ----------
"pressure_scale_height": 6381.7,
"specific_weight": 8.5790e-1,
"number_density": 1.8305e24,
"mean_particle_speed": 397.95,
"collision_frequency": 4.3117e8,
"mean_free_path": 9.2295e-7,
}
)
table_data.add_entry(
h=25_000,
entry={
"H": 24902,
"temperature": 221.552,
"temperature_in_celsius": -51.598,
"pressure": 2.54921e3,
"density": 4.00837e-2,
"grav_accel": 9.7300,
# ----------
"speed_of_sound": 298.389,
"dynamic_viscosity": 1.4484e-5,
"kinematic_viscosity": 3.6135e-4,
"thermal_conductivity": 1.9930e-2,
# ----------
"pressure_scale_height": 6536.2,
"specific_weight": 3.9001e-1,
"number_density": 8.3346e23,
"mean_particle_speed": 402.43,
"collision_frequency": 1.9853e8,
"mean_free_path": 2.0270e-6,
}
)
table_data.add_entry(
h=32_162,
entry={
"H": 32000,
"temperature": 228.650,
"temperature_in_celsius": -44.500,
"pressure": 8.68014e2,
"density": 1.32249e-2,
"grav_accel": 9.7082,
# ----------
"speed_of_sound": 303.131,
"dynamic_viscosity": 1.4868e-5,
"kinematic_viscosity": 1.1242e-3,
"thermal_conductivity": 2.0523e-2,
# ----------
"pressure_scale_height": 6760.8,
"specific_weight": 1.2839e-1,
"number_density": 2.7499e23,
"mean_particle_speed": 408.82,
"collision_frequency": 6.6542e7,
"mean_free_path": 6.1438e-6,
}
)
table_data.add_entry(
h=41_266,
entry={
"H": 41000,
"temperature": 253.850,
"temperature_in_celsius": -19.300,
"pressure": 2.42394e2,
"density": 3.32646e-3,
"grav_accel": 9.6806,
# ----------
"speed_of_sound": 319.399,
"dynamic_viscosity": 1.6189e-5,
"kinematic_viscosity": 4.8668e-3,
"thermal_conductivity": 2.2599e-2,
# ----------
"pressure_scale_height": 7527.3,
"specific_weight": 3.2202e-2,
"number_density": 6.9167e22,
"mean_particle_speed": 430.76,
"collision_frequency": 1.7636e7,
"mean_free_path": 2.4426e-5,
}
)
table_data.add_entry(
h=47_350,
entry={
"H": 47000,
"temperature": 270.650,
"temperature_in_celsius": -2.500,
"pressure": 1.10906e2,
"density": 1.42752e-3,
"grav_accel": 9.6622,
# ----------
"speed_of_sound": 329.799,
"dynamic_viscosity": 1.7037e-5,
"kinematic_viscosity": 1.1934e-2,
"thermal_conductivity": 2.3954e-2,
# ----------
"pressure_scale_height": 8040.7,
"specific_weight": 1.3793e-2,
"number_density": 2.9683e22,
"mean_particle_speed": 444.79,
"collision_frequency": 7.8146e6,
"mean_free_path": 5.6918e-5,
}
)
table_data.add_entry(
h=50_396,
entry={
"H": 50000,
"temperature": 270.650,
"temperature_in_celsius": -2.500,
"pressure": 7.59443e1,
"density": 9.77519e-4,
"grav_accel": 9.6530,
# ----------
"speed_of_sound": 329.799,
"dynamic_viscosity": 1.7037e-5,
"kinematic_viscosity": 1.7429e-2,
"thermal_conductivity": 2.3954e-2,
# ----------
"pressure_scale_height": 8048.4,
"specific_weight": 9.4360e-3,
"number_density": 2.0326e22,
"mean_particle_speed": 444.79,
"collision_frequency": 5.3512e6,
"mean_free_path": 8.3120e-5,
}
)
table_data.add_entry(
h=51_412,
entry={
"H": 51000,
"temperature": 270.650,
"temperature_in_celsius": -2.500,
"pressure": 6.69384e1,
"density": 8.61600e-4,
"grav_accel": 9.6499,
# ----------
"speed_of_sound": 329.799,
"dynamic_viscosity": 1.7037e-5,
"kinematic_viscosity": 1.9773e-2,
"thermal_conductivity": 2.3954e-2,
# ----------
"pressure_scale_height": 8050.9,
"specific_weight": 8.3144e-3,
"number_density": 1.7915e22,
"mean_particle_speed": 444.79,
"collision_frequency": 4.7166e6,
"mean_free_path": 9.4303e-5,
}
)
table_data.add_entry(
h=61_591,
entry={
"H": 61000,
"temperature": 242.650,
"temperature_in_celsius": -30.500,
"pressure": 1.76605e1,
"density": 2.53548e-4,
"grav_accel": 9.6193,
# ----------
"speed_of_sound": 312.274,
"dynamic_viscosity": 1.5610e-5,
"kinematic_viscosity": 6.1565e-2,
"thermal_conductivity": 2.1683e-2,
# ----------
"pressure_scale_height": 7241.0,
"specific_weight": 2.4390e-3,
"number_density": 5.2720e21,
"mean_particle_speed": 421.15,
"collision_frequency": 1.3142e6,
"mean_free_path": 3.2046e-4,
}
)
table_data.add_entry(
h=71_802,
entry={
"H": 71000,
"temperature": 214.650,
"temperature_in_celsius": -58.500,
"pressure": 3.95639e0,
"density": 6.42105e-5,
"grav_accel": 9.5888,
# ----------
"speed_of_sound": 293.704,
"dynamic_viscosity": 1.4106e-5,
"kinematic_viscosity": 2.1968e-1,
"thermal_conductivity": 1.9349e-2,
# ----------
"pressure_scale_height": 6425.8,
"specific_weight": 6.1570e-4,
"number_density": 1.3351e21,
"mean_particle_speed": 396.11,
"collision_frequency": 3.1303e5,
"mean_free_path": 1.2654e-3,
}
)
table_data.add_entry(
h=75_895,
entry={
"H": 75000,
"temperature": 206.650,
"temperature_in_celsius": -66.500,
"pressure": 2.06790e0,
"density": 3.48604e-5,
"grav_accel": 9.5766,
# ----------
"speed_of_sound": 288.179,
"dynamic_viscosity": 1.3661e-5,
"kinematic_viscosity": 3.9188e-1,
"thermal_conductivity": 1.8671e-2,
# ----------
"pressure_scale_height": 6194.2,
"specific_weight": 3.3384e-4,
"number_density": 7.2485e20,
"mean_particle_speed": 388.66,
"collision_frequency": 1.6675e5,
"mean_free_path": 2.3308e-3,
}
)
table_data.add_entry(
h=81_020,
entry={
"H": 80000,
"temperature": 196.650,
"temperature_in_celsius": -76.500,
"pressure": 8.86272e-1,
"density": 1.57004e-5,
"grav_accel": 9.5614,
# ----------
"speed_of_sound": 281.120,
"dynamic_viscosity": 1.3095e-5,
"kinematic_viscosity": 8.3402e-1,
"thermal_conductivity": 1.7817e-2,
# ----------
"pressure_scale_height": 5903.9,
"specific_weight": 1.5012e-4,
"number_density": 3.2646e20,
"mean_particle_speed": 379.14,
"collision_frequency": 7.3262e4,
"mean_free_path": 5.1751e-3,
}
)
| 2.6875 | 3 |
src/tryme.py | RandalJBarnes/AkeyaaGIS | 0 | 12767454 | <reponame>RandalJBarnes/AkeyaaGIS<filename>src/tryme.py
import arcpy
import akeyaa
__version__ = "02 July 2020"
#-------------------------------------------------------------------------------
# The constants CWIGDB and CTYGDB are specific paths on the local machine.
# These paths must be modified to point to the gdb's as installed on the local
# machine. Similarly, DESTINATION is the local path to the output table.
#-------------------------------------------------------------------------------
# Minnesota County Well Index (CWI). Obtained from the Minnesota Department
# of Health. The CWI is administered by the Minnesota Geological Survey.
# https://www.mngs.umn.edu/cwi.html
# This gdb uses 'NAD 1983 UTM zone 15N' (EPSG:26915).
CWIGDB = r"D:\Google Drive\CWI\CWI_20200420\water_well_information.gdb"
# County Boundaries, Minnesota. Obtained from the Minnesota Geospatial Commons.
# https://gisdata.mn.gov/dataset/bdry-counties-in-minnesota
# This gdb uses 'NAD 1983 UTM zone 15N' (EPSG:26915).
CTYGDB = r"D:\Google Drive\GIS\fgdb_bdry_counties_in_minnesota\bdry_counties_in_minnesota.gdb"
# Path and filename prefix for the feature class, .hdr, and .flt files.
BASE_FILENAME = r"D:\Google Drive\Projects\AkeyaaGIS\data\dakota"
# -----------------------------------------------------------------------------
def main():
polygon, xyz = get_dakota_county_data()
akeyaa_array = akeyaa.run_akeyaa(
polygon,
xyz,
radius=3000,
required=25,
spacing=1000,
base_filename=BASE_FILENAME
)
# -----------------------------------------------------------------------------
def get_dakota_county_data():
"""Get the polygon and well data from Dakota County.
This function has one purpose only: to create a test case. This function
will be discarded after we hook into ArcGIS Pro.
"""
CTY_SOURCE = CTYGDB + r"\mn_county_boundaries" # County boundaries
ALLWELLS = CWIGDB + r"\allwells" # MN county well index
C5WL = CWIGDB + r"\C5WL" # MN static water levels
# Get the Dakota County polygon.
source = CTY_SOURCE
what = ["CTY_NAME", "CTY_FIPS", "SHAPE@"]
where = "(CTY_FIPS = 37)"
results = []
with arcpy.da.SearchCursor(source, what, where) as cursor:
for row in cursor:
results.append(row)
dakota_polygon = results[0][2]
# Get the Dakota County wells.
in_table = arcpy.AddJoin_management(ALLWELLS, "RELATEID", C5WL, "RELATEID", False)
dakota_table = arcpy.SelectLayerByLocation_management(in_table, 'WITHIN', dakota_polygon)
field_names = ["allwells.SHAPE", "C5WL.MEAS_ELEV"]
where_clause = (
"(C5WL.MEAS_ELEV is not NULL) AND "
"(allwells.AQUIFER is not NULL) AND "
"(allwells.UTME is not NULL) AND "
"(allwells.UTMN is not NULL)"
)
dakota_wells = []
with arcpy.da.SearchCursor(dakota_table, field_names, where_clause) as cursor:
for row in cursor:
dakota_wells.append((row[0][0], row[0][1], row[1]))
return dakota_polygon, dakota_wells
# -----------------------------------------------------------------------------
if __name__ == "__main__":
# execute only if run as a script
main()
| 1.65625 | 2 |
dynadb/migrations/0075_auto_20170125_1954.py | GPCRmd/GPCRmd | 3 | 12767455 | # -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2017-01-25 18:54
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('dynadb', '0074_auto_20170125_1926'),
]
operations = [
migrations.AlterField(
model_name='dyndbsubmission',
name='user_id',
field=models.ForeignKey(blank=True, db_column='user_id', null=True, on_delete=django.db.models.deletion.DO_NOTHING, to=settings.AUTH_USER_MODEL),
),
]
| 1.695313 | 2 |
pytest_unittest_discovery_scenarios/copy_scenario.py | d3r3kk/vscode-python-extras | 0 | 12767456 | <filename>pytest_unittest_discovery_scenarios/copy_scenario.py
import os
import shutil
import sys
import tarfile
NEVER_COPY_DIRNAMES = [
".pytest_cache",
"__pycache__",
".venv-pytest_37",
".venv-pytest_36",
".git",
]
def compress_scenario(scenario_name, scenario_folder):
tarfile_folder, _ = os.path.split(scenario_folder)
tarfile_path = os.path.join(tarfile_folder, f'{scenario_name}.tar.gz')
archive = tarfile.open(tarfile_path, 'w:gz')
archive.add(scenario_folder, arcname=scenario_name)
def do_not_copy(src, names):
ignore_names = []
for copy_path in names:
_, src_name = os.path.split(copy_path)
if src_name in NEVER_COPY_DIRNAMES:
ignore_names.append(src_name)
return ignore_names
def create_scenario(scenario_name, dir_to_copy):
copy_to_root, _ = os.path.split(dir_to_copy)
copy_to_path = os.path.join(copy_to_root, scenario_name)
shutil.copytree(
dir_to_copy, copy_to_path, symlinks=False,
ignore=do_not_copy)
compress_scenario(scenario_name, copy_to_path)
shutil.rmtree(copy_to_path)
def main():
if len(sys.argv) != 3:
print("Try again, but give me a scenario name and a dir name.")
else:
scenario_name = sys.argv[1]
src_folder = os.path.realpath(sys.argv[2])
create_scenario(scenario_name, src_folder)
if __name__ == "__main__":
main()
| 2.34375 | 2 |
python/022_Generate_Parentheses.py | JerryCatLeung/leetcode | 0 | 12767457 | # class Solution(object):
# def generateParenthesis(self, n):
# """
# :type n: int
# :rtype: List[str]
# """
class Solution(object):
def generateParenthesis(self, n):
if n == 1:
return ['()']
last_list = self.generateParenthesis(n - 1)
res = []
for t in last_list:
curr = t + ')'
for index in range(len(curr)):
if curr[index] == ')':
res.append(curr[:index] + '(' + curr[index:])
return list(set(res))
# def generateParenthesis(self, n):
# def generate(leftnum, rightnum, s, result):
# if leftnum == 0 and rightnum == 0:
# result.append(s)
# if leftnum > 0:
# generate(leftnum - 1, rightnum, s + '(', result)
# if rightnum > 0 and leftnum < rightnum:
# generate(leftnum, rightnum - 1, s + ')', result)
#
# result = []
# s = ''
# generate(n, n, s, result)
# return result
| 3.421875 | 3 |
docs_Ismail_Geles/benchmark/utils/format.py | isgeles/SMARTS | 554 | 12767458 | # MIT License
#
# Copyright (C) 2021. Huawei Technologies Co., Ltd. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
def pretty_dict(d, indent=0):
"""Pretty the output format of a dictionary.
Parameters
----------
d
dict, the input dictionary instance.
indent
int, indent level, non-negative.
Returns
-------
res
str, the output string
"""
res = ""
for k, v in d.items():
res += "\t" * indent + str(k)
if isinstance(v, dict):
res += "\n" + pretty_dict(v, indent + 1)
else:
res += ": " + str(v) + "\n"
return res
| 2.34375 | 2 |
aioairtable/helpers.py | gleb-chipiga/aioairtable | 0 | 12767459 | <gh_stars>0
import json
from functools import partial
from typing import Final
__all__ = ('json_dumps', 'get_python_version', 'get_software', 'debug')
json_dumps: Final = partial(json.dumps, ensure_ascii=False)
def get_python_version() -> str:
from sys import version_info as version
return f'{version.major}.{version.minor}.{version.micro}'
def get_software() -> str:
from . import __version__
return f'Python/{get_python_version()} aioairtable/{__version__}'
def debug() -> bool:
return __debug__
| 2.171875 | 2 |
test_script.py | martinagvilas/CompEnv-Ex1 | 0 | 12767460 | <gh_stars>0
from __future__ import print_function
a = 5
b = 2
print("{0} divided by {1} gives".format(a, b), a / b) | 2.78125 | 3 |
modeling/trans/__init__.py | WenmuZhou/crnn.pytorch | 46 | 12767461 | <reponame>WenmuZhou/crnn.pytorch
# -*- coding: utf-8 -*-
# @Time : 2020/6/17 10:59
# @Author : zhoujun
from .TPS import TPS
__all__ = ['build_trans']
support_trans = ['TPS', 'None']
def build_trans(trans_name, **kwargs):
assert trans_name in support_trans, f'all support head is {support_trans}'
if trans_name == 'None':
return None
head = eval(trans_name)(**kwargs)
return head
| 2.234375 | 2 |
twitcher/__init__.py | edwinmosong/twitcher | 1 | 12767462 | <filename>twitcher/__init__.py
# twitcher project.
# <NAME>
"""
twitcher - A simpleTwitchTV API wrapper.
This python package provides ease of use and accessibility to many, if not all,
of TwitchTV's features.
"""
import json
import requests
import helper
import streams
__version__ = '0.0.1'
BASE_URL = 'https://api.twitch.tv/kraken'
GET_API_PATHS = {
'streams': '/streams/?',
'streams_channel': '/streams/%s/?',
'streams_featured': '/streams/featured?',
'streams_summary': '/streams/summary?',
'channel': '/channels/%s?',
'channel_videos': '/channels/%s/videos?',
'channel_follows': '/channels/%s/follows?'
}
class Twitcher(object):
"""
TwitchTV client that is used to make and send requests. This class wraps
requests and returns objects.
"""
def __init__(self):
self.rest_helper = helper.RESTHelper()
def get_stream_info(self, game='', channel='', limit=25, offset=0,
embeddable='false', hls='false'):
"""
Returns a StreamInfoHelper object for the requested query.
https://github.com/justintv/Twitch-API/blob/master/v2_resources/
streams.md#get-streamschannel
:params: Default Description
------------------------------------------------------------------
game '' Streams categorized under game.
channel '' Streams from a comma-separated list of channels.
Name are case-sensitive.
limit 25 Maximum number of objects in array. Max is 100
offset 0 Object offset for pagination.
embeddable 'false' If set to true, returns streams that can be
embedded.
hls 'false' If set to true, only returns using HLS.
"""
if channel:
endpoint = GET_API_PATHS['streams_channel'] % channel
else:
endpoint = GET_API_PATHS['streams']
params = dict([('game', game), ('channel', channel), ('limit', limit),
('offset', offset), ('embeddable', embeddable),
('hls', hls)])
stream_info = self.rest_helper.request(endpoint=endpoint, params=params)
return streams.StreamInfoHelper(stream_info, params=params)
def get_featured_streams(self, limit=25, offset=0, hls='false'):
"""
Retrieves a StreamInfoHelper for featured streams
"""
endpoint = GET_API_PATHS['streams_featured']
params = dict([('limit', limit), ('offset', offset), ('hls', hls)])
stream_info = self.rest_helper.request(endpoint=endpoint, params=params)
return streams.StreamInfoHelper(stream_info, params=params)
| 2.609375 | 3 |
mmskeleton/deprecated/datasets/recognition.py | fserracant/mmskeleton | 1,347 | 12767463 | import os
import numpy as np
import json
import torch
from .utils import skeleton
class SkeletonDataset(torch.utils.data.Dataset):
""" Feeder for skeleton-based action recognition
Arguments:
data_path: the path to data folder
random_choose: If true, randomly choose a portion of the input sequence
random_move: If true, randomly perfrom affine transformation
window_size: The length of the output sequence
repeat: times of repeating the dataset
data_subscripts: subscript expression of einsum operation.
In the default case, the shape of output data is `(channel, vertex, frames, person)`.
To permute the shape to `(channel, frames, vertex, person)`,
set `data_subscripts` to 'cvfm->cfvm'.
"""
def __init__(self,
data_dir,
random_choose=False,
random_move=False,
window_size=-1,
num_track=1,
data_subscripts=None,
repeat=1):
self.data_dir = data_dir
self.random_choose = random_choose
self.random_move = random_move
self.window_size = window_size
self.num_track = num_track
self.data_subscripts = data_subscripts
self.files = [
os.path.join(self.data_dir, f) for f in os.listdir(self.data_dir)
] * repeat
def __len__(self):
return len(self.files)
def __getitem__(self, index):
with open(self.files[index]) as f:
data = json.load(f)
resolution = data['info']['resolution']
category_id = data['category_id']
annotations = data['annotations']
num_frame = data['info']['num_frame']
num_keypoints = data['info']['num_keypoints']
channel = data['info']['keypoint_channels']
num_channel = len(channel)
# get data
data = np.zeros(
(num_channel, num_keypoints, num_frame, self.num_track),
dtype=np.float32)
for a in annotations:
person_id = a['id'] if a['person_id'] is None else a['person_id']
frame_index = a['frame_index']
if person_id < self.num_track and frame_index < num_frame:
data[:, :, frame_index, person_id] = np.array(
a['keypoints']).transpose()
# normalization
if self.normalization:
for i, c in enumerate(channel):
if c == 'x':
data[i] = data[i] / resolution[0] - 0.5
if c == 'y':
data[i] = data[i] / resolution[1] - 0.5
if c == 'score' or c == 'visibility':
mask = (data[i] == 0)
for j in range(num_channel):
if c != j:
data[j][mask] = 0
# permute
if self.data_subscripts is not None:
data = np.einsum(self.data_subscripts, data)
# augmentation
if self.random_choose:
data = skeleton.random_choose(data, self.window_size)
elif self.window_size > 0:
data = skeleton.auto_pading(data, self.window_size)
if self.random_move:
data = skeleton.random_move(data)
return data, category_id | 2.609375 | 3 |
winton_kafka_streams/processor/_context.py | szczeles/winton-kafka-streams | 0 | 12767464 | <filename>winton_kafka_streams/processor/_context.py
"""
Processor context is the link to kafka from individual processor objects
"""
import logging
import functools
from .._error import KafkaStreamsError
log = logging.getLogger(__name__)
def _raiseIfNullRecord(fn):
@functools.wraps(fn)
def _inner(*args, **kwargs):
if args[0].currentRecord is None:
raise KafkaStreamsError(f"Record cannot be unset when retrieving {fn.__name__}")
return fn(*args, **kwargs)
return _inner
class Context:
"""
Processor context object
"""
def __init__(self, _state_stores):
self.currentNode = None
self.currentRecord = None
self._state_stores = _state_stores
def send(self, topic, key, obj):
"""
Send the key value-pair to a Kafka topic
"""
print(f"Send {obj} to {topic}")
pass
def schedule(self, timestamp):
"""
Schedule the punctuation function call
"""
pass
@property
@_raiseIfNullRecord
def offset(self):
return self.currentRecord.offset()
@property
@_raiseIfNullRecord
def partition(self):
return self.currentRecord.partition()
@property
@_raiseIfNullRecord
def timestamp(self):
return self.currentRecord.timestamp()
@property
@_raiseIfNullRecord
def topic(self):
return self.currentRecord.topic()
def get_store(self, name):
if not self.currentNode:
raise KafkaStreamsError("Access of state from unknown node")
# TODO: Need to check for a global state here
# This is the reason that processors access store through context
if name not in self.currentNode.state_stores:
raise KafkaStreamsError(f"Processor {currentNode.name} does not have access to store {name}")
if name not in self._state_stores:
raise KafkaStreamsError(f"Store {name} is not found")
return self._state_stores[name]
| 2.59375 | 3 |
feature_extraction.py | navtejsingh/epilepsypred | 1 | 12767465 | <filename>feature_extraction.py
"""
Extract Features from EEG time series
-------------------------------------
Peak in Band (PIB) features are extracted from EEG time series data.
Six PIB per minute are calculated. This results in 960 features for
10 minute of EEG recording in 16 channels.
Reference
---------
http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0081920
"""
import numpy as np
from glob import glob
import scipy.io as _scio
import scipy.signal as _scsg
import multiprocessing as mp
def readdata(matfile):
"""
Routine to read input MATLAB matrix as store in memory.
Parameters
----------
matfile : string
MATLAB binary file
Returns
-------
Tuple of
eeg_record : numpy array
EEG time series
eeg_record_length_min : int
EEG time series length in minutes
eeg_sampling_frequency : float
EEG time series sampling frequency
"""
try:
data = _scio.loadmat(matfile)
except IOError:
raise IOError("Error opening MATLAB matrix " + matfile)
# Get the length of data for each channel
data_key = ""
for key in data.iterkeys():
if type(data[key]) == np.ndarray:
data_key = key
# Copy data for the channel and return it back
eeg_record = np.copy(data[data_key]["data"][0,0])
eeg_record_length_min = int(data[data_key]["data_length_sec"]/60.)
eeg_sampling_frequency = float(data[data_key]["sampling_frequency"])
del data
return (eeg_record, eeg_record_length_min, eeg_sampling_frequency)
def determine_pib(X, eeg_sampling):
"""
Calculate power in bands (PIB).
Parameters
----------
X : numpy arrat
Time series
eeg_sampling : float
EEG sampling frquency
Returns
-------
pib : numpy array
Power in band (6 elements)
"""
freq, Pxx = _scsg.welch(X, fs = eeg_sampling, noverlap = None, scaling = "density")
pib = np.zeros(6)
# delta band (0.1-4hz)
ipos = (freq >= 0.1) & (freq < 4.0)
pib[0] = np.trapz(Pxx[ipos], freq[ipos])
# theta band (4-8hz)
ipos = (freq >= 4.0) & (freq < 8.0)
pib[1] = np.trapz(Pxx[ipos], freq[ipos])
# alpha band (8-12hz)
ipos = (freq >= 8.0) & (freq < 12.0)
pib[2] = np.trapz(Pxx[ipos], freq[ipos])
# beta band (12-30hz)
ipos = (freq >= 12.0) & (freq < 30.0)
pib[3] = np.trapz(Pxx[ipos], freq[ipos])
# low-gamma band (30-70hz)
ipos = (freq >= 30.0) & (freq < 70.0)
pib[4] = np.trapz(Pxx[ipos], freq[ipos])
# high-gamma band (70-180hz)
ipos = (freq >= 70.0) & (freq < 180.0)
pib[5] = np.trapz(Pxx[ipos], freq[ipos])
return pib
def worker(eegfile):
"""
Multiprocessing pool worker function. Extracts features from EEG time
series.
Parameters
----------
eegfile : EEG recording file name
Returns
-------
feature_arr : numpy array
Extracted feature array
"""
print "Processing file : ", eegfile
# Read the MATLAB binary file and extract data
eeg_record, egg_length_min, eeg_sampling = readdata(eegfile)
n_channels = eeg_record.shape[0]
feature_arr = np.zeros((1, 6 * n_channels * egg_length_min))
# Extract features. Features are sum of power in power spectrum of
# time series. Summed power in 6 bands ==> delta(0.1-4hz), theta(4-8hz),
# alpha(8-12hz),beta(12-30hz), low-gamma(30-70hz), high-gamma(70-180hz)
# This is done for 1 minute segment of the time series.
start, stop = 0, 6
for channel in range(n_channels):
time_chunks = np.array_split(eeg_record[channel], egg_length_min)
# iterate through the chunks and calculate summed spectral power of
# the band. This will give 6 features/1 minute for 1 channel or 96/minute
# for 16 channels. This will give us 960 features for 1 dataset
for chunk in time_chunks:
feature_arr[0,start:stop] = determine_pib(chunk, eeg_sampling)
start, stop = stop, stop + 6
return feature_arr
def main(args):
"""
Main function
Parameters
----------
args : list
List of EEG recording file names
feature_arr : numpy array
Consolidated array of features for the training set
"""
# Determine number of input files
nfiles = len(args)
# Create an array to store extracted features
feature_arr = np.zeros((nfiles, 960))
# Number of cpus
n_cpus = mp.cpu_count()
# Create a pool of worker functions
pool = mp.Pool(n_cpus)
result = pool.map(worker, args)
# Feature array
for i in range(len(result)):
nrecs = result[i].shape[1]
feature_arr[i,:nrecs] = result[i]
del result
return feature_arr
if __name__ == "__main__":
preictal_files = glob("../Dog_1/*preictal_segment*.mat")
feature_arr_1 = main(preictal_files)
interictal_files = glob("../Dog_1/*interictal_segment*.mat")
feature_arr_2 = main(interictal_files)
X = np.vstack((feature_arr_1, feature_arr_2))
y = np.concatenate((np.ones(feature_arr_1.shape[0]), np.zeros(feature_arr_2.shape[0])))
np.savez("../Dog_1/Dog_1_features.npz", X = X, y = y) | 2.96875 | 3 |
rastervision_pytorch_learner/rastervision/pytorch_learner/learner_pipeline.py | theoway/raster-vision | 1,577 | 12767466 | from rastervision.pipeline.pipeline import Pipeline
from rastervision.pytorch_learner import LearnerConfig
class LearnerPipeline(Pipeline):
"""Simple Pipeline that is a wrapper around Learner.main()
This supports the ability to use the pytorch_learner package to train models using
the RV pipeline package and its runner functionality without the rest of RV.
"""
commands = ['train']
gpu_commands = ['train']
def train(self):
learner_cfg: LearnerConfig = self.config.learner
learner = learner_cfg.build(learner_cfg, self.tmp_dir)
learner.main()
| 2.625 | 3 |
books/booksdatasource.py | KristinA64/cs257 | 0 | 12767467 | <gh_stars>0
#!/usr/bin/env python3
'''
booksdatasource.py
<NAME>, 21 September 2021
For use in the 'books' assignment at the beginning of Carleton's
CS 257 Software Design class, Fall 2021.
<NAME> and <NAME>, 2 October 2021
'''
import csv
class Author:
def __init__(self, surname='', given_name='', birth_year=None, death_year=None):
self.surname = surname
self.given_name = given_name
self.birth_year = birth_year
self.death_year = death_year
def __eq__(self, other):
''' For simplicity, we're going to assume that no two authors have the same name. '''
return self.surname == other.surname and self.given_name == other.given_name
class Book:
def __init__(self, title='', publication_year=None, authors=[]):
''' Note that the self.authors instance variable is a list of
references to Author objects. '''
self.title = title
self.publication_year = publication_year
self.authors = authors
def __eq__(self, other):
''' We're going to make the excessively simplifying assumption that
no two books have the same title, so 'same title' is the same
thing as 'same book'. '''
return self.title == other.title
class BooksDataSource:
#Initalizes the books and authors lists by parsing through the csv file
def __init__(self, books_csv_file_name):
''' The books CSV file format looks like this:
title,publication_year,author_description
For example:
All Clear,2010,<NAME> (1945-)
'<NAME>',1934,<NAME> (1881-1975)
This __init__ method parses the specified CSV file and creates
suitable instance variables for the BooksDataSource object containing
a collection of Author objects and a collection of Book objects.
'''
with open(books_csv_file_name, 'r') as csv_file:
reader = csv.reader(csv_file)
self.all_books = []
self.all_authors = []
for row in reader:
title = row[0]
year = int(row[1])
book_authors = []
multiple_authors = row[2].split('and')
for each_author in multiple_authors:
names = each_author.split()
temp_author = self.parse_authors(names)
already_added = False
for ex_author in self.all_authors:
if ex_author == temp_author:
book_authors.append(temp_author)
already_added = True
if already_added == False:
added_author = temp_author
self.all_authors.append(added_author)
book_authors.append(added_author)
self.all_books.append(Book(title, year, book_authors))
def parse_authors(self, names):
''' Helper function which initializes the given name, surname, birth
year, and death year of an author given the list of strings: name.
Returns a temporary Author object.
'''
if '(' in names[2]:
given_name = names[0]
surname = names[1]
years = names[2].split('-')
else:
given_name = names[0] + ' ' + names[1]
surname = names[2]
years = names[3].split('-')
if len(years) == 2:
birth_year = years[0].replace('(','')
death_year = years[1].replace(')','')
else:
birth_year = years[0].replace('(','')
death_year = None
temp_author = Author(surname, given_name, birth_year, death_year)
return temp_author
def authors(self, search_text=None):
''' Returns a list of all the Author objects in this data source whose names contain
(case-insensitively) the search text. If search_text is None, then this method
returns all of the Author objects. In either case, the returned list is sorted
by surname, breaking ties using given name (e.g. <NAME> comes before <NAME>).
'''
if search_text is not None:
filtered_authors = list(filter(lambda author: (search_text.lower() in author.given_name.lower()) or (search_text.lower() in author.surname.lower()), self.all_authors))
filtered_authors = sorted(filtered_authors, key=lambda author: (author.surname, author.given_name))
return filtered_authors
else:
filtered_authors = sorted(self.all_authors, key=lambda author: (author.surname, author.given_name))
return filtered_authors
def books(self, search_text=None, sort_by='title'):
''' Returns a list of all the Book objects in this data source whose
titles contain (case-insensitively) search_text. If search_text is None,
then this method returns all of the books objects.
The list of books is sorted in an order depending on the sort_by parameter:
'year' -- sorts by publication_year, breaking ties with (case-insenstive) title
'title' -- sorts by (case-insensitive) title, breaking ties with publication_year
default -- same as 'title' (that is, if sort_by is anything other than 'year'
or 'title', just do the same thing you would do for 'title')
'''
if search_text is not None:
filtered_books = list(filter(lambda book: search_text.lower() in book.title.lower(), self.all_books))
if sort_by == 'year':
filtered_books = sorted(filtered_books, key=lambda book: (book.publication_year, book.title))
else:
filtered_books = sorted(filtered_books, key=lambda book: (book.title, book.publication_year))
return filtered_books
else:
return self.all_books
def display_books(self, book_list):
''' Prints all book titles, publication years, and author information
in a given list to the terminal window.
'''
if book_list is None:
return
for book in book_list:
format_book = book.title + ' ' + str(book.publication_year)
print(format_book)
self.display_authors(book.authors)
def display_authors(self, author_list):
''' Prints all book author information for each author in a given
list to the terminal window.
'''
if author_list is None:
return
for author in author_list:
if author.death_year:
format_author = author.given_name + ' ' + author.surname + '(' + author.birth_year + '-' + author.death_year + ')'
else:
format_author = author.given_name + ' ' + author.surname + '(' + author.birth_year + '-)'
print(format_author)
def books_between_years(self, start_year=None, end_year=None):
''' Returns a list of all the Book objects in this data source whose publication
years are between start_year and end_year, inclusive. The list is sorted
by publication year, breaking ties by title (e.g. Neverwhere 1996 should
come before Thief of Time 1996).
If start_year is None, then any book published before or during end_year
should be included. If end_year is None, then any book published after or
during start_year should be included. If both are None, then all books
should be included.
'''
if (start_year is not None) and (end_year is not None):
filtered_books = list(filter(lambda book: (book.publication_year >= start_year) and (book.publication_year<= end_year), self.all_books))
filtered_books = sorted(filtered_books, key=lambda book: (book.publication_year, book.title))
return filtered_books
elif start_year is not None:
filtered_books = list(filter(lambda book: book.publication_year>= start_year, self.all_books))
filtered_books = sorted(filtered_books, key=lambda book: (book.publication_year, book.title))
return filtered_books
elif end_year is not None:
filtered_books = list(filter(lambda book: book.publication_year<= end_year, self.all_books))
filtered_books = sorted(filtered_books, key=lambda book: (book.publication_year, book.title))
return filtered_books
else:
return self.all_books
| 4.28125 | 4 |
args/asr_train_arg_parser.py | HikaruHotta/M2M-VC-CycleGAN | 5 | 12767468 | <filename>args/asr_train_arg_parser.py
"""
Arguments for training ASR model.
Inherits BaseArgParser.
"""
from args.train_arg_parser import TrainArgParser
class ASRTrainArgParser(TrainArgParser):
"""
Class which implements an argument parser for args used only in train mode.
It inherits BaseArgParser.
"""
def __init__(self):
super(ASRTrainArgParser, self).__init__()
self.isTrain = True
self.parser.add_argument(
'--dropout', type=float, default=0.1, help='Dropout rate.')
self.parser.add_argument(
'--gamma', type=float, default=0.99, help='Annealing rate for LR scheduler.')
# Model args
self.parser.add_argument(
'--n_cnn_layers', type=int, default=3, help='Numer of CNN layers.')
self.parser.add_argument(
'--n_rnn_layers', type=int, default=5, help='Number of RNN layers')
self.parser.add_argument(
'--rnn_dim', type=int, default=512, help='Dimensionality of RNN')
self.parser.add_argument(
'--n_class', type=int, default=29, help='Number of output classes.')
self.parser.add_argument(
'--n_feats', type=int, default=128, help='Number of features.')
self.parser.add_argument(
'--stride', type=int, default=2, help='Conv2D kernel stride.')
self.parser.add_argument(
'--pretrained_ckpt_path', type=str,
default=None,
help='Model pretrained on Librispeech.')
self.parser.add_argument('--librispeech', default=False, action='store_true',
help=('Train with libirspeech dataset.'))
| 2.953125 | 3 |
migrations/versions/2023b1841f34_initial_revision.py | wlsouza/pydiscordbot | 0 | 12767469 | """initial revision
Revision ID: 2023b1841f34
Revises:
Create Date: 2021-07-21 18:53:29.086785
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '<KEY>'
down_revision = None
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###
| 1.226563 | 1 |
python/fate_arch/common/__init__.py | QuantumA/FATE | 715 | 12767470 | <filename>python/fate_arch/common/__init__.py
from fate_arch.common._types import FederatedMode, FederatedCommunicationType, EngineType, CoordinationProxyService, \
CoordinationCommunicationProtocol
from fate_arch.common._types import BaseType, Party, DTable
| 1.234375 | 1 |
src/zignalz/cli/log_server.py | rscohn2/sensepy | 0 | 12767471 | # SPDX-FileCopyrightText: 2020 <NAME>
#
# SPDX-License-Identifier: MIT
import logging
logger = logging.getLogger(__name__)
def add_parser(subparsers):
parser = subparsers.add_parser('log-server', help='Log server')
subparsers = parser.add_subparsers(dest='cmd')
subparsers.required = True
sync_parser = subparsers.add_parser(
'sync', help='Sync logs to local machine'
)
sync_parser.set_defaults(func=sync)
def sync():
pass
| 2.296875 | 2 |
src/rpi/stream.py | CI-Warrior/picoastal | 0 | 12767472 | <filename>src/rpi/stream.py
"""
# SCRIPT : stream.py
# POURPOSE : Stream the camera to the screen.
# AUTHOR : <NAME>
# DATE : 14/04/2021
# VERSION : 1.0
"""
# system
import os
from time import sleep
# arguments
import json
import argparse
# PiCamera
from picamera import PiCamera
from picamera.array import PiRGBArray
# OpenCV
import cv2
def set_camera_parameters(cfg):
"""
Set camera parameters.
All values come from the dict generated from the JSON file.
:param cfg: JSON instance.
:type cam: dict
:return: None
:rtype: None
"""
# set camera resolution [width x height]
camera = PiCamera()
camera.resolution = cfg["stream"]["resolution"]
# set camera frame rate [Hz]
camera.framerate = cfg["stream"]["framerate"]
# exposure mode
camera.exposure_mode = cfg["exposure"]["mode"]
if cfg["exposure"]["set_iso"]:
camera.iso = cfg["exposure"]["iso"]
return camera
def run_single_camera(cfg):
"""
Capture frames and display them on the screen
"""
# set camera parameters
camera = set_camera_parameters(cfg)
# read the data
rawCapture = PiRGBArray(camera)
# warm-up the camera
print(" -- warming up the camera --")
sleep(2)
print(" -- starting now --")
# capture frames from the camera
for frame in camera.capture_continuous(
rawCapture, format="bgr", use_video_port=True):
# grab the raw NumPy array representing the image, then initialize the timestamp
# and occupied/unoccupied text
image = frame.array
# show the frame
cv2.imshow("Camera stream - press 'q' to quit.", image)
key = cv2.waitKey(1) & 0xFF
# clear the stream in preparation for the next frame
rawCapture.truncate(0)
# if the `q` key was pressed, break from the loop
if key == ord("q"):
break
def main():
# verify if the configuraton file exists
# if it does, then read it
# else, stop
inp = args.config[0]
if os.path.isfile(inp):
with open(inp, "r") as f:
cfg = json.load(f)
print("\nConfiguration file found, continue...")
else:
raise IOError("No such file or directory \"{}\"".format(inp))
# start the stream
print("\nStreaming the camera")
run_single_camera(cfg)
print("Stream has ended.")
if __name__ == "__main__":
# Argument parser
parser = argparse.ArgumentParser()
# input configuration file
parser.add_argument("--configuration-file", "-cfg", "-i",
nargs=1,
action="store",
dest="config",
required=True,
help="Configuration JSON file.",)
args = parser.parse_args()
# call the main program
main() | 3.296875 | 3 |
us/tests/test_us.py | Juh10/python-us | 346 | 12767473 | <reponame>Juh10/python-us<filename>us/tests/test_us.py
from itertools import chain
import jellyfish # type: ignore
import pytest # type: ignore
import pytz
import us
# attribute
def test_attribute():
for state in us.STATES_AND_TERRITORIES:
assert state == getattr(us.states, state.abbr)
def test_valid_timezones():
for state in us.STATES_AND_TERRITORIES:
if state.capital:
assert pytz.timezone(state.capital_tz)
for tz in state.time_zones:
assert pytz.timezone(tz)
# During migration from SQLite to Python classes, a duplicate
# time zone had been found
assert len(state.time_zones) == len(set(state.time_zones))
# maryland lookup
def test_fips():
assert us.states.lookup("24") == us.states.MD
assert us.states.lookup("51") != us.states.MD
def test_abbr():
assert us.states.lookup("MD") == us.states.MD
assert us.states.lookup("md") == us.states.MD
assert us.states.lookup("VA") != us.states.MD
assert us.states.lookup("va") != us.states.MD
def test_name():
assert us.states.lookup("Maryland") == us.states.MD
assert us.states.lookup("maryland") == us.states.MD
assert us.states.lookup("Maryland", field="name") == us.states.MD
assert us.states.lookup("maryland", field="name") is None
assert us.states.lookup("murryland") == us.states.MD
assert us.states.lookup("Virginia") != us.states.MD
# lookups
def test_abbr_lookup():
for state in us.STATES:
assert us.states.lookup(state.abbr) == state
def test_fips_lookup():
for state in us.STATES:
assert us.states.lookup(state.fips) == state
def test_name_lookup():
for state in us.STATES:
assert us.states.lookup(state.name) == state
def test_obsolete_lookup():
for state in us.OBSOLETE:
assert us.states.lookup(state.name) is None
# test metaphone
def test_jellyfish_metaphone():
for state in chain(us.STATES_AND_TERRITORIES, us.OBSOLETE):
assert state.name_metaphone == jellyfish.metaphone(state.name)
# mappings
def test_mapping():
states = us.STATES[:5]
assert us.states.mapping("abbr", "fips", states=states) == dict(
(s.abbr, s.fips) for s in states
)
def test_obsolete_mapping():
mapping = us.states.mapping("abbr", "fips")
for state in us.states.OBSOLETE:
assert state.abbr not in mapping
def test_custom_mapping():
mapping = us.states.mapping("abbr", "fips", states=[us.states.DC, us.states.MD])
assert len(mapping) == 2
assert "DC" in mapping
assert "MD" in mapping
# known bugs
def test_kentucky_uppercase():
assert us.states.lookup("kentucky") == us.states.KY
assert us.states.lookup("KENTUCKY") == us.states.KY
def test_wayoming():
assert us.states.lookup("Wyoming") == us.states.WY
assert us.states.lookup("Wayoming") is None
def test_dc():
assert us.states.DC not in us.STATES
assert us.states.lookup("DC") == us.states.DC
assert us.states.lookup("District of Columbia") == us.states.DC
assert "DC" in us.states.mapping("abbr", "name")
# shapefiles
@pytest.mark.skip
def test_head():
import requests
for state in us.STATES_AND_TERRITORIES:
for url in state.shapefile_urls().values():
resp = requests.head(url)
assert resp.status_code == 200
# counts
def test_obsolete():
assert len(us.OBSOLETE) == 3
def test_states():
assert len(us.STATES) == 50
def test_territories():
assert len(us.TERRITORIES) == 5
def test_contiguous():
# Lower 48
assert len(us.STATES_CONTIGUOUS) == 48
def test_continental():
# Lower 48 + Alaska
assert len(us.STATES_CONTINENTAL) == 49
def test_dc():
assert us.states.DC not in us.STATES
| 2.53125 | 3 |
UI/res.py | YongLiuLab/BrainRadiomicsTools | 10 | 12767474 | <reponame>YongLiuLab/BrainRadiomicsTools
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.11.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x9a\xa7\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x01\x54\x00\x00\x00\x76\x08\x02\x00\x00\x00\x18\xe3\xfc\x6b\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7\x6f\
\xa8\x64\x00\x00\x9a\x3c\x49\x44\x41\x54\x78\x5e\xcd\xbd\x07\x80\
\x1c\x57\x91\x3e\xde\x33\x3d\x71\x73\x4e\xda\x55\xce\x59\xb2\x6c\
\xc9\x39\xe7\x1c\xc9\xc6\x06\x4c\x38\x4c\x30\x18\x38\x72\xc6\x18\
\xee\x38\xf2\x71\xe0\x23\x67\x8c\xb1\x31\xce\x38\x27\xc9\x49\xb2\
\x72\x0e\xab\xd5\x6a\x73\xde\x9d\xd4\xdd\xf3\xff\xaa\xea\x75\x4f\
\xf7\x4c\xcf\x4a\xb2\xf1\xfd\x7f\x9f\x9e\x7a\xea\xd5\xab\x57\x55\
\x2f\xbf\xd7\xdd\x33\x1b\xf8\xc2\x3f\x07\x35\x4d\xcb\xda\x00\x0d\
\x04\x02\x01\xe7\x2a\x00\x2d\x51\xcb\xb2\x44\x0c\xd1\x60\x30\xe8\
\x8e\x8a\x00\xa2\x60\x0a\xed\x86\x93\x2a\x51\x01\x67\x22\x20\x8b\
\x62\x79\x21\xd2\x10\x90\xab\x43\x98\x59\x0b\x49\x3e\xda\xb2\xd9\
\x80\x96\x33\x0d\x01\x05\xf0\x28\x99\x20\x49\xba\xae\x87\x42\x21\
\xa4\x98\xa6\x09\xeb\x6e\x07\xc0\x0c\x42\xdc\xa5\xe7\x88\x20\x67\
\x60\xdb\x76\x47\x59\x82\x2d\xb0\xc8\xd3\x02\x20\xc5\xf6\x84\xc4\
\x6c\x90\xab\x05\x85\x92\x8f\xac\xaa\x8c\xa3\x04\xd4\x78\x5a\xc1\
\x4d\x3b\x80\x10\xf8\x68\xc7\x20\xaa\xb4\x48\x13\xe4\xc1\x57\x8f\
\x1b\x56\x91\xf4\xbc\x72\x39\xd0\x8b\xd4\x73\x9e\xbc\x13\xb5\x02\
\x54\x2e\x76\x39\x57\xe3\xa0\x8f\xce\x7d\x37\x72\x19\xa4\x50\xea\
\x1a\x44\x55\x2b\x80\x23\x4c\x00\x3d\x85\x3a\x49\x56\xa3\x7e\x13\
\xd2\x61\x1a\x3d\x07\x40\x06\xc8\x89\xcc\xd1\x01\x9d\x31\x8b\x02\
\x88\x66\xe8\x61\xb5\x59\x32\x0c\x55\xc4\x72\xfd\x7b\x23\xc1\xc6\
\xec\x42\x4a\x85\x02\xc2\xcc\xab\x7d\x81\x93\x0a\x40\x40\xc0\x63\
\x87\x66\x01\xa4\x42\x09\xc6\x15\xab\x21\x28\x51\x5b\x58\x45\x5e\
\x2b\x44\x03\xae\xb0\xe3\xe8\x67\xc5\x39\xcd\x6e\xda\x81\x23\x83\
\x2c\x8e\x87\x34\xec\x4d\xd3\x57\xfe\x8d\x06\x6c\x3a\x95\x86\x2b\
\x38\xe2\x18\x40\xa5\xb2\xcb\xc5\xb2\xd2\x3a\x42\x1e\x03\x8a\xe5\
\x11\xbe\x58\x07\x2d\x16\xc1\x96\xd4\x37\x0e\xb0\xe2\x0b\x95\x5c\
\x00\x95\x5c\x28\xe0\xaa\x16\xa7\xba\x18\xc2\x3e\x5a\xb8\x33\xb8\
\xfb\x06\x2e\x20\xa4\x5d\x00\x10\x02\x21\x91\x08\x11\x88\x3a\xb9\
\x5e\x03\x90\x0d\x8b\x17\xad\x5f\xf6\x90\x71\x14\x12\x64\xcc\x93\
\x11\x06\x45\xde\x10\x04\xc9\x16\x43\x59\x62\x08\x27\x0f\x6e\x49\
\x21\x00\x47\x9e\xbd\x26\x38\x4c\x40\x68\x92\x63\x48\xea\xb1\xc2\
\xad\x01\x10\x2b\xe0\xb1\x85\xfc\x24\x88\x0b\x21\x00\x0d\x19\x54\
\xae\x8e\x7f\xaa\x97\xab\x8c\x48\xc5\xc8\x97\xb6\x75\x98\x20\xfe\
\xcf\x20\xe6\xc4\xba\x5c\x01\x30\xd1\xbb\xd8\x17\xd5\xb3\x85\x8f\
\xfe\x20\xcc\xa3\x87\xca\xc8\xc8\x8b\xba\x8b\x2c\x78\xa3\x17\x99\
\xd7\x00\x78\xa5\xa8\x3c\x50\x02\x3b\x6d\x03\x3c\x6a\x45\x1b\x8e\
\xd4\xe4\x70\x8b\xd0\x88\xb6\xe7\x11\x68\x90\x31\x2f\x51\x00\xda\
\xc0\x11\xb5\x00\xd9\xb0\xe7\x85\x22\x2e\x1e\x09\x34\xf0\x91\x5f\
\xed\x09\xc5\x15\x26\xfd\x30\x49\xd2\xeb\x83\x5a\xf9\x01\x29\x27\
\x20\xb4\x30\x51\x3c\x89\x0a\x91\x07\x30\x9d\x2a\x93\xa8\x03\x11\
\x10\xbe\x5c\xdd\xc4\xd1\xc3\x9d\x45\xa9\xf6\x7a\x02\x01\x81\x1d\
\x55\x59\x1c\x49\x44\xe1\xa4\x1e\xc2\x62\x4f\xab\xbd\x93\x84\xc6\
\x93\xed\x3e\x65\xf3\x1a\x62\x3a\x17\x7d\x23\x20\x7e\x0a\x10\x15\
\x7f\x00\x10\x32\xe5\x73\x67\x54\x83\x5f\x92\x38\xdf\x6b\x81\x28\
\x11\x80\x26\x13\x68\x78\x1b\xc2\x79\x3d\xfa\xdf\x20\x88\x9f\x80\
\xf8\x8f\xab\x10\x3c\x50\x73\x33\x23\xc4\xec\xa1\x48\xc2\x47\x0f\
\xd1\x0f\x25\x54\xcf\xdc\x8b\x6d\x4d\xf6\xc8\x67\x9b\xa4\x9f\x01\
\x61\x18\x95\x8c\x8e\x98\xb8\x45\xea\x8e\x1e\xac\xcd\x01\xa2\xe0\
\x41\xc5\x31\x6a\xf9\x17\x80\x56\x7e\xf2\xc0\x06\x97\x65\x32\x37\
\x9c\x54\xc9\x25\xf2\x02\x87\xef\x28\x74\x08\x25\x71\xac\xd5\x54\
\x04\x50\xcb\x35\xef\x71\x40\x92\xbc\x1e\x39\x40\xdb\xba\xfa\x0a\
\x37\x9e\x10\x02\xc9\xf9\x7f\x0f\x71\x4e\x68\xe5\x4a\x5e\xad\xbe\
\xbe\x2e\xa1\x74\xf8\xd1\x34\xee\x5d\x23\x5f\xec\xfe\x3f\x05\xae\
\x8c\xfc\xfe\xa3\xdc\x76\x8f\x7c\xf8\xcf\x57\xaa\x2c\x86\x64\x61\
\x1e\x41\xa2\x93\x81\x33\x8a\x30\x57\x85\x67\x3d\x10\x3e\x88\xbc\
\xea\x12\x26\x09\x1c\xe3\xa6\x89\xa4\xc9\x4d\xf6\xd3\x51\xc4\xde\
\x13\xe7\xff\x10\xb9\x95\x5f\xc0\x5e\xf9\x38\xe1\x14\x15\xf0\x15\
\x00\x1c\xbe\x94\x08\x90\x28\xc0\x5a\x09\x2a\xfe\x5a\xa1\xf4\x52\
\x7b\xab\xfe\x0a\x9d\xd2\x2a\xa2\x5c\x52\x85\x29\x60\x3e\x1a\x0c\
\xcb\xbc\x3a\xde\x8b\x8c\xe4\x75\xd3\x2c\x49\xc0\xe7\xeb\xf6\xf4\
\x08\x80\xcd\x3c\xd3\x80\x70\x72\xa0\xbd\x3e\xf5\x39\xec\x59\x70\
\x6a\x91\x8c\x47\x0f\x28\x54\x94\x17\xe0\x4b\xb5\x00\x30\x82\xae\
\xac\x12\xde\x60\x88\xc5\x42\xa8\xe4\x02\x50\x05\xd8\x57\x40\x49\
\xc3\x67\x1e\x3e\x54\x3f\x36\xc0\x44\x89\x20\x22\x92\x47\x09\xa9\
\x03\x10\xd0\x80\x4a\x90\x21\x4d\x09\xc4\xa6\xcd\x00\x0c\x09\x1f\
\x3c\xb5\x6d\xe4\x56\x23\x19\x96\xc2\x95\x52\x6d\xce\xb1\x02\x1a\
\x90\x93\xac\xf2\x64\x02\x75\x64\x18\x50\xe9\xb9\x32\xaa\xf8\xbf\
\x1a\xaa\x4b\xf9\xda\x98\xc4\xaa\xe3\x21\x0a\xef\xe4\x75\x3c\xc7\
\xd5\x61\x4a\x34\x8f\x78\x6d\x70\x14\x12\xc4\x80\xcb\x2e\x20\x6c\
\x4e\xb6\xc7\x8c\x3d\x5b\xf3\xad\xbd\xdc\x7c\x21\xc2\xc5\xf1\xba\
\xfc\x3c\x3a\x78\x16\x10\xf1\xc7\xf1\x0a\x4c\x49\x05\x8d\x02\xd0\
\x89\x25\xa8\x4b\xd2\x51\xc3\x53\x04\x77\x79\x41\x3b\xd5\xe2\xf8\
\xe0\x16\xf8\x7f\x07\x70\xcc\xb9\x02\x70\x92\xfc\xb4\xe7\x4d\x71\
\x5e\x98\x6e\x88\xb0\xc8\x00\xa0\x84\x93\x07\x1a\xe0\x2c\x0c\x19\
\xa7\xb6\x89\xcf\x76\xa4\xfe\x94\x09\xee\x4e\x60\xca\xbc\x03\x90\
\x84\x9d\xb7\x88\xfa\x23\x40\xb2\xab\xb2\x88\x5a\x47\xa9\xd8\x66\
\x1e\xeb\x7f\x4d\x06\x8e\x02\x81\xcf\x3f\xd4\xaf\x48\x46\x30\x94\
\x3b\x18\x9b\xf6\x9d\x70\x29\x39\x3d\xd5\xd0\xb4\x70\x38\x0c\xda\
\x30\x0c\xd4\x0b\xa2\xf2\xb4\x4c\x80\xa8\x03\x55\x8a\x02\x38\xca\
\x05\x12\xc5\x95\x27\x41\xe2\x93\x10\x43\x92\xf0\xc9\x81\xe0\x4e\
\xb5\xb2\x26\xb5\x12\x3c\x63\xe7\x84\x09\x01\x8c\x78\xe4\x24\xd5\
\x00\x6d\x0f\xec\xce\xcd\xa3\x48\x0a\x02\xcf\x85\x4b\xd9\x1c\x33\
\x36\xc0\x97\xa2\xe5\x40\x8d\xa3\x4c\x63\x25\x76\xfc\x71\x83\x05\
\x5c\xb9\x44\x17\x49\x92\x21\xc5\x74\x01\x2c\x17\x97\x44\x1d\xb0\
\x5b\x1e\x50\x77\xa4\xad\x2e\x3d\x5e\xa2\x52\x31\x54\x12\xa5\x84\
\xa4\x0b\x09\x93\x0d\x93\x0a\x94\x42\xca\xcb\x3e\x70\xe5\x70\x94\
\x1e\x27\x71\x19\x81\xbc\x2c\xc7\x84\x62\x8f\xf4\x60\x45\x51\x47\
\x07\xb8\xa1\x28\x86\xe3\x89\x65\x1a\xa0\x31\xed\xa1\xe4\xe2\x34\
\x39\xcc\xff\x60\x42\xac\x38\x45\x60\x10\x47\xb2\xcb\x55\x92\x50\
\x56\x5c\xc0\x21\x70\x5d\x8a\x88\x74\x02\x50\x79\x90\x3a\xa3\x34\
\x06\x38\xb2\x8a\x18\xfc\x70\x88\x54\x70\xb7\x83\x90\xd4\x22\x67\
\xf2\xab\x0b\x32\xe6\xa3\xbf\x18\xa8\x98\x41\x1c\xc3\xb9\xcf\xb2\
\x7d\x62\x92\xaf\x01\x77\xcf\x3a\x32\x28\x87\xbf\x5d\xe9\xf2\x0e\
\x26\x6b\x27\xaa\x25\x86\x8a\x33\x87\x2b\xc4\xa3\x5a\x64\x00\x15\
\x9f\x14\x4e\x76\xc8\x4b\x0d\x0a\x93\x13\x3d\xc8\x63\xe6\x45\x79\
\xd6\xa6\x26\xa2\x05\x9d\x9b\x11\x51\xcc\x44\x48\xe2\x2e\xc2\xe0\
\x71\x42\xc2\x0e\xb8\x91\x98\x60\xca\xbe\xe6\x81\xd3\x5d\xf0\xc4\
\x7c\x5c\x05\xf2\xf5\xc0\x2e\x99\xf6\x17\x2e\xc0\x11\xc4\xec\xb1\
\xad\x3a\x31\x0d\x05\x29\x3f\x35\x87\x86\x1e\x89\xb2\x42\x8c\x92\
\xb8\x4a\x05\xa0\x29\x2f\xf5\x50\xca\x6c\x33\xf3\xca\xa6\x2a\x47\
\x45\xfc\x20\x02\x47\x0f\x95\xed\xa8\xa1\xb2\x15\x64\xa4\xe7\x33\
\x6a\xe4\x23\x49\x35\x29\xda\xd4\x2d\xe9\xa5\x73\x51\x2a\xb0\xb7\
\xc3\x00\x48\xe5\x6a\x93\x3a\xc9\x3d\xe2\x75\x4b\x92\x0c\x2b\xa1\
\xfc\x5c\x69\x18\xf9\x88\x92\x65\x75\x2f\x20\x67\x91\x69\xa8\x73\
\x73\x72\xa0\xb6\x39\x36\x40\x5e\x16\x24\x89\xda\x38\x66\x3d\x45\
\x21\xa5\x73\x90\x3f\xf8\xa5\xcc\x20\x28\xcd\x3b\x38\x85\x16\x50\
\x56\x1b\x8a\x65\x0b\xe4\x31\xf3\xc0\x95\xe8\xd1\x6f\x0b\xe7\xb2\
\x88\x80\x10\x20\xf9\x5a\xb4\xfc\x92\x5d\xf4\x00\x90\x93\x2e\x82\
\xa6\x92\x5c\xc2\x17\x4b\xd4\x52\x2e\x6d\xc4\x28\xe2\x29\x8b\x13\
\x0a\xa2\x45\x32\x78\xa1\xa4\x09\x6e\xda\x0d\x8f\xa4\x9b\xf6\x05\
\x52\x73\xc5\x41\xc5\xd1\xe8\xf7\xb4\x8e\xab\x50\x39\x6d\xb8\x52\
\x69\xb9\x13\xbb\x5b\x13\x10\x01\xe1\x08\x2d\xc4\xff\x3d\x1c\xc7\
\x1c\xb0\x5f\x7c\xd8\xe1\x93\x36\xbc\x95\x6e\x23\x20\x01\x6e\x05\
\x24\x39\x57\x22\x38\x9f\xd0\x79\xa0\x04\x06\x68\xa5\x85\xf4\xe4\
\xd7\x5b\x61\x27\xa1\x9a\xe6\x39\x54\x76\xc1\xa2\x21\x1f\x45\x9a\
\x18\x5c\x25\x70\x74\x10\xa3\xb0\x4a\x26\x29\xbf\x62\xba\xdc\x3f\
\x3a\x70\x46\x3f\xe4\xa7\x48\x79\x73\xb0\x1d\x50\x06\xb9\xec\xca\
\x13\xe1\x38\xa9\x2e\x0f\x09\x42\xbb\x39\x47\x84\x57\x95\xd2\xef\
\x4e\x62\x60\xba\xcd\x05\xd8\x97\x20\x8b\x25\x32\x4a\x17\x01\x81\
\x2c\xae\x16\x92\x20\x3a\xd9\x2b\xe6\xba\xc1\x0c\x0a\x02\x61\x3a\
\x2e\x49\x14\x70\xa7\x12\x60\x3d\xe8\x13\x88\xef\x82\x12\x26\xb8\
\x69\x37\x3c\x92\x6e\x7a\x12\xc0\x3d\xf1\x90\x32\xd0\xa2\x88\xe2\
\xe3\x82\x18\xd7\x09\x57\x11\xaa\x41\x55\x14\xd5\x91\x54\x1a\x2a\
\x8a\x02\x98\xf6\xf2\xa5\xe0\xb6\x2b\x74\x21\x24\xf5\x8d\x83\x38\
\xac\x7c\xb6\x03\x3b\xac\x56\x26\xa7\xd4\x70\x46\x31\xd1\x9e\x76\
\xfb\xca\x15\xa0\x57\x29\x6d\x55\xa2\x2d\xa8\x0a\xae\x46\xb5\xe8\
\x71\x00\xc5\x8e\xb0\x0a\x64\x5a\xed\x31\xa0\x1f\xb6\x9c\x5c\x3c\
\xfb\x90\xe5\x3c\x90\xde\xa2\x4d\x5c\xb4\x4a\x7d\x01\x77\xc8\xae\
\x80\x9c\x16\xaf\x27\x51\x5f\x04\x92\xcd\x07\x2a\xdd\x41\xe0\x0b\
\x0f\x0f\x28\x92\x81\x2e\x23\x82\x4e\xd5\x73\xb1\x55\xb9\x41\x38\
\xa9\x52\x23\x18\x78\x54\x37\x0c\x47\x40\x84\x7d\x21\x62\x0e\x44\
\x1b\xc0\xb5\xaf\x9a\x19\x90\x54\x37\x58\x26\x47\x90\x04\x9a\x16\
\x11\xf6\x93\xb2\xf0\xff\x40\xd0\x75\xe6\x77\xe9\x21\x49\x97\x75\
\x77\x12\xc0\x2a\x6d\xfd\xf4\x5f\xcd\x71\x40\x9e\xe4\x24\x70\x4b\
\xc2\x9a\x00\x4c\x5f\x0d\x60\x09\x17\x32\xfc\x49\x10\xba\xc8\x2e\
\xd2\x23\x09\x90\x76\x91\x77\xc1\xcd\x97\x24\x5c\xd1\x58\xdc\x9a\
\x70\xc6\xd3\x94\x42\x1c\x11\x8e\xb6\x3c\x14\x3b\xf3\x17\x93\x2f\
\x06\xcb\x32\x84\x60\xc7\x73\xa0\xf2\xb0\x93\x79\xae\x22\xca\xed\
\x8e\x4d\x81\xea\x9c\x22\x80\x2b\xd8\x20\x28\xb3\xeb\x22\x49\x0e\
\x28\x0e\x19\xfe\xe7\x8e\x12\x78\xb8\xc9\xbd\x2d\x74\x6c\xd0\xd0\
\x4f\x26\x68\xe0\xa3\x6b\x91\x14\xb2\x90\xa0\x6b\x5e\x10\x0d\x85\
\xa0\xd1\x7c\x2c\x35\x41\xba\xf8\xe1\x0e\xc0\x8a\x69\x80\xb1\x76\
\x58\x3a\x16\x45\x90\x2d\x72\xe6\xcf\x83\x1a\xe1\x0e\x50\x24\x21\
\x60\x1a\x34\x20\xe5\x14\x26\x08\xf0\x85\x10\x38\x7c\xa1\x1d\x4e\
\x31\x38\xda\x44\x8f\x03\x56\x90\x83\xe2\x12\xe0\x06\x05\xea\x6c\
\xbc\x20\x48\x94\x6e\x7f\xd3\x61\x0c\xcd\x83\xc6\xe2\xb7\x75\x48\
\xa1\x6a\x44\x80\xeb\xd0\xe3\xb9\xc0\x1d\xb5\x69\xba\xe0\x3f\x55\
\xb7\xed\x96\xaf\x24\x43\xf9\x93\x17\x98\x9f\x83\x92\x75\xe9\xc9\
\x03\xb8\x6e\x49\x37\xed\x0b\x29\x18\x08\x97\x8f\x04\x30\x51\x4a\
\x0e\x98\xe0\x10\xa5\x8a\x72\x02\xa2\xe8\xc3\x52\x69\xd8\xba\x62\
\x61\x94\xf1\xef\xd6\xe0\x80\x0c\xfc\x2b\xa0\xd4\x1d\x03\xc8\x67\
\xa9\x46\x27\x80\x23\x4e\x3a\xae\x2a\xed\x0c\x8e\x28\xa6\x2b\x09\
\x84\xbd\xda\xa3\xd4\x3a\x08\x51\xa5\xc0\xe5\xa6\x28\xc9\x42\x2e\
\xd7\x94\x58\xe5\x1d\xa3\xbc\x79\xb4\x0d\x80\xa6\x9e\xa5\xc9\xbd\
\x52\x1a\x2c\x9c\xa0\xca\x48\x34\x8b\xfd\x6b\x20\x9a\xd8\x49\xd1\
\x4c\xed\xca\xbc\x7f\x15\x94\x5a\x1b\xfe\x83\x9f\x1d\x20\x28\x21\
\x5a\x37\x54\x92\x40\xf8\x0e\xed\x26\x38\x25\x27\x59\x08\x11\x70\
\x46\x26\xac\xa0\x7e\x85\xe9\x87\x5c\x16\x37\x24\x23\x5a\xc5\x9e\
\xfa\x55\x1b\x23\x2e\x9b\x7f\xd0\x6e\x49\x89\x92\x04\x43\x28\x5b\
\xc0\x95\xc0\x10\xbe\xc0\xcd\x61\x42\x18\xf9\xc8\xe3\x8b\x3c\xe0\
\xa6\xdd\x70\x32\xa8\xa8\x8b\xf6\x05\x3c\xce\x2b\x14\x00\x0e\x4f\
\x7a\xa8\x3d\x9a\x55\xe5\x2d\x46\x69\x2c\x00\x62\x52\xc9\x80\x48\
\x32\x5b\x55\x94\xf0\xdd\x10\xfe\xff\x3d\xc4\x79\x86\x72\x1e\xae\
\xca\xf2\xcb\xa9\x0a\x12\x15\x38\xc3\x0f\x70\x92\x68\x06\x44\x89\
\x79\x55\x40\x35\x80\x6f\xd7\x8f\x82\x5b\x58\x80\x28\x8d\x69\xca\
\x86\x09\x92\x7b\x14\x3d\x22\x21\x2e\x52\x39\x53\xae\xce\x9d\xac\
\xbc\xc9\x54\xd5\x08\xa8\xc4\x02\x20\x41\x49\x1c\x1d\x24\x17\xf4\
\xb2\x59\x19\x7a\x34\x6d\x43\x0b\xd3\x47\x0d\xa5\xcf\x17\xa4\xde\
\x09\x45\x07\xbf\x44\x01\xb7\x42\x87\x00\x84\x0f\xa8\x38\x23\x2f\
\x5a\x08\xd1\x0c\x31\x54\xb7\x08\x83\xc3\xfd\xd2\xa3\xaa\x90\xa6\
\x64\x17\x41\x8f\xed\x79\x90\x53\x97\xb1\x7b\x3c\xf4\x18\xb2\x0b\
\xe0\x26\xa7\xcc\xae\xec\x12\x55\x7c\x56\xc2\x0c\xee\x47\x36\x5d\
\x08\x47\x0c\x60\xba\x98\x64\x51\x0d\x93\xa0\x40\xf9\x64\x80\xe7\
\xe2\x3c\x24\x45\x18\x51\xa7\xb0\xe0\x70\xa7\xcf\x0d\x7e\x10\x00\
\xf8\x22\x46\x99\x49\x2c\xbf\xc5\xff\x7f\x87\xf8\xc9\x50\x35\x20\
\xa5\xc2\x27\x68\x2e\xab\xcd\x67\x10\x45\x8c\x1c\x1f\x60\x29\x35\
\xf2\x49\x91\x2b\x8b\x94\xdd\x96\x21\x08\x9f\xd3\x85\xcb\xf2\xcc\
\x87\xa8\xcc\x41\xc8\x25\x13\x90\x4b\x1b\x89\x32\x91\x43\x21\xe7\
\x75\x80\xf4\x8b\xc3\x2a\x42\x96\xff\x85\xfa\xf3\x11\xf8\xe2\x23\
\x9e\xe7\xfc\x72\xb8\xb0\x2b\x4b\xee\x27\x91\x0b\xfc\x86\x8c\x34\
\x09\xf6\x54\x34\xaf\x8a\x98\xc5\xdb\x5d\xca\xc3\xcf\xd7\x78\x42\
\xb1\x39\x47\x01\x47\x52\xf4\x88\x2d\xa8\x15\x80\x4f\x16\xa4\x1e\
\xa8\x67\x28\xa3\x9c\xc3\x1f\xf2\xfc\x9f\xf5\x88\x8f\x5c\x8c\x40\
\xd0\xe0\xe7\x61\x98\xb3\x89\xc1\xff\x14\xa8\xc0\x4e\x24\x07\x3a\
\xf0\x05\x72\xfd\x86\x65\xc4\x25\xf2\x85\x39\x79\x40\x22\x55\x8e\
\x80\x72\x93\x15\xe5\x01\x5f\x3d\xf0\x48\xb3\xbc\x4d\x21\xf8\x17\
\x30\x27\x53\x00\x71\x12\xa5\x46\xd7\x87\x18\x29\xe7\xcd\x94\xf0\
\xe5\x8a\xa2\xab\xe2\xbb\xf4\xa8\x24\xc6\x24\xfa\x8f\x09\xd9\x60\
\x4e\x67\x21\x60\x51\x6c\xc2\x9a\x58\x0c\x07\xc3\xc4\x80\xcf\xd4\
\x9b\x1c\x97\x70\xf5\xf8\xe3\xb8\x67\x6a\x06\xb5\xa8\xab\xab\x08\
\x3f\xa0\x8b\x00\xae\xb2\x88\x8b\x2a\xce\x46\x51\x31\xa2\x84\x01\
\x64\x27\x17\x5c\x8b\x3c\x71\x44\x27\x9a\x9d\xeb\xca\x03\x12\xa7\
\xa6\x47\x32\x48\x9e\x65\x02\xdc\xeb\x7d\x64\x27\xc3\xd1\xdd\x0a\
\x20\x57\xb8\xd3\x93\x3b\x32\x77\xa3\x89\xc5\x43\x24\x73\xdc\xae\
\x92\x7c\x14\xbb\x45\x80\xbc\x8a\x62\xe4\xf7\x63\x6f\x32\x59\x10\
\x50\xc1\x6d\x08\x1b\xc9\x2a\xea\xce\xe5\xaa\xdc\xa3\x01\x6b\x52\
\x70\x47\x41\x53\xf3\x52\x6f\x0e\xe1\x3f\xf4\x83\x87\x2a\x50\xb5\
\x50\xdc\x0a\x24\x65\xd0\x73\x8d\x91\x30\x22\xa8\x43\xaa\x46\xbb\
\xb7\x71\xaf\x38\x82\x9f\x05\x32\xa0\x8f\x90\x25\x1f\x64\x8e\x3e\
\x49\x51\x21\x58\x44\x90\xab\x3d\xca\xf4\x5a\x00\x0d\x00\xb4\x72\
\x0d\xd1\xac\x12\x0a\x85\xb8\xfe\xd4\x7d\x59\xac\x62\x20\x1c\x31\
\x07\x92\xfd\x8d\x86\x32\xc6\x40\x14\xc5\xe5\xa0\x40\x4c\x49\xe2\
\x4f\xc9\x52\x58\x13\x2c\x42\x70\x72\xa1\x50\x52\x58\x44\x51\x5e\
\x66\x3b\xb2\x42\x78\xe0\xc3\x75\x19\xe1\xec\x14\x27\x1b\x7e\x6d\
\x2d\x2c\x11\x13\xbc\xb6\xd6\x3a\x62\x26\xb6\x2f\x5e\xb0\x4d\xb1\
\xc5\x19\x99\xed\x0c\x6d\xbf\x42\x1e\x0b\xfc\x37\x81\x62\x0c\x80\
\x25\xea\x3a\x76\x15\xa3\x33\xe1\x2a\x4c\x72\x42\x7c\xb2\xaf\x79\
\xc4\xd1\xc3\x51\x25\x34\x00\x02\x71\x98\x93\x8d\x2c\xa7\x4a\x0a\
\x41\x24\x7d\x01\x17\xe1\x01\x4b\x91\xdb\x22\xcc\x1e\x29\xe7\x45\
\x8c\x70\x84\xaa\xcb\x65\xf4\x8b\xfa\xc0\x49\x72\xcb\x14\x13\x07\
\x9b\x95\x11\x14\xc7\x45\x1f\x1b\x68\x05\x50\x79\xe9\x2c\xc4\x9b\
\x55\x87\x23\x24\x2e\xd2\xa1\x98\x93\x0f\x96\x3d\x66\xd3\x92\xab\
\x18\x44\x86\x4c\xda\x46\xdd\xcd\x21\x6d\x21\x00\x53\x92\x24\x55\
\x04\x00\xa1\xf3\xc0\x42\xb6\x24\xb4\xb0\x1e\xa5\x8d\x05\x7c\xe0\
\x57\x68\x92\xe7\x1c\xa4\xcb\x9e\x50\x24\xea\xa4\xe6\x03\xec\xd7\
\x36\xdc\x8f\x1a\xe2\x0c\x11\xee\xa8\xcb\x3d\x87\xab\xe8\xd7\x07\
\xfb\xa1\x82\x0d\xb0\x1c\x33\x8a\xc5\x6d\x23\x7c\xa9\x65\xc5\xf5\
\xf3\x20\xe7\x62\x11\x40\x20\x4f\x46\xf4\x80\x25\x49\x02\x27\xc9\
\x65\x45\x25\x01\x8a\xe1\x07\x27\x0d\xf9\x1c\x41\xf6\x5f\x72\x1e\
\x21\xbb\x03\x64\x17\xcb\x9c\x0d\x59\x8e\x2a\x97\x2d\x4c\x84\x70\
\x8e\x26\xa3\x93\x2b\x17\xf1\x83\x12\x28\x00\x3c\x15\x42\x4a\x87\
\x2b\x3c\x47\x91\x0d\x7e\x05\x1b\x2d\x86\xf9\x53\x36\x02\x90\x91\
\xa6\x74\x63\x12\xcd\xaf\x07\xa2\xd6\x51\x8e\x76\x24\xdf\x5c\x10\
\x26\xfc\x01\xb8\x9d\xed\x52\xd8\x19\x05\xc2\x14\x88\x0c\xf6\xe4\
\xa0\x50\x1c\xbe\xbf\x49\xe7\x52\xf0\x31\xe5\x49\xaa\xe4\x90\x8c\
\x7c\x45\xc8\x29\x17\x38\xa9\x42\x28\x30\x9d\x27\xe9\x81\x28\x7b\
\xe3\x50\x60\x1a\x0c\xbb\x50\x0a\xc4\x94\xf2\xb8\xd6\xcb\xa3\x87\
\x64\x74\x90\x9b\x80\x05\x22\xa4\x22\x76\x75\x08\x84\x2f\xe3\x9f\
\xa5\x08\x2c\x75\x0c\x28\x96\x0b\x2c\xe1\x3b\xfa\xd1\x27\x64\x1d\
\x03\x9c\x24\x49\x15\x01\x5f\x78\xfd\x54\xaa\x98\x49\x7c\x7b\x7c\
\x10\x8e\xd0\x90\x76\x16\x25\x4c\xa0\x0f\x89\x16\x03\x8b\x91\x8c\
\x5c\xdd\x44\x1e\xdc\x5c\xce\x64\x33\x24\x72\x2c\xc0\x99\x86\xdb\
\x87\x66\x3b\x1a\x0c\x3a\xa2\x56\x26\x93\x41\xbd\x09\x5f\x14\x4b\
\xd5\x39\x15\xe8\x40\x69\x79\x03\x20\xca\xc5\x0a\xc0\xb7\x8f\x08\
\xa0\x45\x40\xdc\x73\x08\x40\xf8\x8e\x00\xc0\x59\x0b\xa0\x34\xe5\
\xda\x17\x7d\xc5\x6e\xd0\x5c\x5e\x40\x5c\xb0\x69\x1b\x36\x29\x7c\
\x05\x97\x03\x47\x0d\xa5\x5d\xa9\x3b\x3a\x14\x93\x16\x5f\x49\xa1\
\x44\x09\xec\x13\x7b\x25\x4c\xaf\xc7\xfe\x9a\x8a\xe9\x2f\x84\xff\
\xb6\x1f\x90\x64\x15\xb1\xf7\x6c\xc2\x74\x57\xba\xa4\x4a\xd4\x0d\
\x16\xf4\x81\x4a\x66\x08\xc7\x69\x45\x37\x90\xca\xa5\xb6\x37\x84\
\x7c\x3b\x50\x50\x28\xec\x06\x94\x3a\xca\x79\x61\x50\x2f\x66\x43\
\x8d\x30\x01\x47\x83\x92\xf3\x83\xa3\x07\x40\x54\xb2\xb8\x99\xbe\
\xe0\xac\x24\x93\x47\xf8\x82\x73\x10\xf2\xa2\xc5\x20\x62\x85\x70\
\x7a\x3b\x7c\xa4\xc1\x6f\xbf\x22\x02\x02\x4c\x94\x1c\xb3\x00\xae\
\x50\x80\xf5\x5f\xb6\x00\x28\x90\xca\x5c\xe0\xc6\xd1\x43\x65\x9b\
\x14\x4a\x54\x5a\x99\x7d\x03\xad\xd2\x5c\x10\x19\x40\xc5\x99\xa3\
\x28\x86\xa4\x92\x12\x2c\xf8\x21\x5a\xf2\xc1\xe4\x75\x81\x40\x02\
\xd0\xcc\x52\x22\xec\x5c\x05\x94\x60\x33\x89\x90\xab\x8b\x0f\x48\
\xa5\x09\x3d\x09\x24\x8b\x82\x58\xb1\x35\xbc\x7e\xd8\x5a\x59\xad\
\x0d\xc7\x31\x4a\xe3\x0a\x14\x48\x6a\x21\x8e\xde\x9b\x9c\x2e\x81\
\x62\xdb\x7e\x38\x10\x0f\x00\xd0\xd2\x06\xc2\xe4\x44\xe5\xae\x43\
\xb0\x02\x7f\x20\x8b\x10\x22\x2f\xb7\x6d\x45\x1b\x20\x02\x22\xc2\
\x89\x8a\x49\x5b\x5b\x57\xc3\x28\xa6\x1f\x38\x47\x3e\xc0\x67\xb5\
\xaa\x06\xdd\x16\x27\xf7\xd5\xbe\x28\xb5\xcc\xa4\x8b\x2f\x1c\x65\
\x79\x04\xe5\x2c\x84\x2d\x60\x93\x36\x6d\x47\x8f\x1e\xc8\x85\xe2\
\x60\x3c\x80\xa0\x49\x8e\x1b\x45\xa2\x22\x20\x4c\x47\x92\x41\xa4\
\x23\xf0\xda\x80\xec\xbe\x50\xc9\xb6\x80\x32\xc8\x26\xc1\x14\x4f\
\xdc\xfe\xb0\x54\x0e\x94\x93\x05\x44\x06\x50\x09\xb6\x26\x38\x0e\
\x26\x0a\x25\x70\x64\x84\x28\x04\x52\x24\x95\xaf\xa2\x88\x2e\x76\
\x2a\xc1\x63\x4e\xf1\x0a\x00\x7e\xde\xc8\x2a\x6a\xf3\xb5\x43\xd9\
\x62\x08\x07\x8e\x49\x31\x15\xd7\xe6\x3b\xc4\xd1\x43\xb2\x3b\xf0\
\xaf\x7a\x37\x21\x70\x6a\x07\xb4\xb4\x81\x08\xe4\x01\xa9\x72\x2d\
\x06\xa4\x8a\x1e\x42\x80\xb6\xac\x60\x52\x8b\x32\x03\x49\x28\x27\
\x2e\x94\x88\x34\x5e\x2b\xc4\x96\x9d\xa4\x7c\x98\x1c\xa4\xcb\x05\
\xe2\x20\x27\x43\x52\x59\x2a\x5f\x2c\x0f\xb0\x04\x79\x5c\x44\x18\
\xb0\xd9\x45\xe1\x12\x53\xc8\x8b\xe6\xe0\x95\x2c\x2a\x66\x03\xc9\
\x9c\xc3\x07\x48\x75\x6a\x89\x46\x83\xfd\xb3\x9c\x94\x8b\x09\x9a\
\x08\x28\xaa\x0e\xd8\xc2\x74\x0f\x3a\x48\x72\x49\xff\x35\x70\xab\
\x12\xfd\x6c\x8e\xf6\x23\xc2\x14\xc2\xe1\x8b\x8c\x24\xe5\xc1\xa5\
\x0a\xc2\x2a\x87\x49\xdf\xad\x95\x93\xa0\xca\x2e\x12\x85\xe0\x24\
\x95\x4a\x36\x08\xcc\x14\xca\x95\x80\x4f\xe5\x15\xff\xf3\x47\x4e\
\xd9\x1b\x02\x76\x84\x0c\xc8\x55\xd9\xe3\x65\x0f\xad\xe6\x54\x9a\
\x9d\xfa\x5a\x20\xd9\x73\xf8\xf2\xa3\xf4\xd3\xdd\x02\x44\xa5\xb2\
\x0b\xd5\x67\x03\xca\x3c\xf7\x25\xf4\x24\xf5\x5e\x6d\x28\x68\x05\
\xf5\x48\x36\x10\xa4\xad\x25\x8e\x5d\x68\x10\xa4\x65\xd1\x38\x10\
\x56\x23\x8d\xb2\xcb\xd2\x8d\xbd\x28\x7d\xdf\x1e\x71\xe6\x4a\x22\
\xd3\x48\x85\xac\xc8\x13\x83\x6d\xb1\x84\x10\x79\xc0\xd2\x86\x24\
\xb9\x83\x8d\x28\xfd\x97\x66\xc3\x3f\x7e\x15\x9b\x36\xbd\x00\x88\
\x9c\x04\x65\xb3\x1d\x72\x1c\xb3\xab\xd5\x05\xd1\xa3\x54\x03\xd2\
\xc3\x58\x13\x40\x59\x45\xa5\xad\xd8\x51\x9a\x03\x92\x90\x89\x1c\
\xc0\x80\xf4\x2b\x02\x04\xe8\x1f\x43\xd9\x3b\x12\xb8\x38\xf8\xf4\
\x6a\xa3\x97\x1a\xc8\x3e\xb4\xa1\x28\xec\x14\x04\x44\x9d\x23\x99\
\x2b\x36\x47\x10\xa4\x4c\x54\x28\x74\x2c\x7e\x89\x03\xf9\x88\x23\
\x10\x69\x29\x21\x7d\x6d\xc9\x17\xae\x37\xc4\x9c\x2c\x40\xca\x4a\
\x43\x3b\xdd\x7b\x10\x13\xac\x07\x08\x98\xf9\xf7\x1a\x05\xd2\x6d\
\x00\x15\xb7\xe5\xe9\xe5\x7d\x72\x54\x92\xb8\xfe\xb9\x84\xe8\x75\
\xb4\x30\x10\x9b\x98\x2a\x0f\x47\x21\xc7\x71\x66\x73\x12\x7d\xd2\
\x23\x2d\x5b\x39\xd7\xb5\x92\x85\x61\x31\x05\xbe\xad\x28\xe7\x44\
\x01\xd0\xc9\xe5\x93\x2e\x52\xed\x2c\x6d\xc2\x2f\xc7\x8d\xa3\x80\
\x7c\x11\xac\x08\x3c\x09\x12\xc1\x15\x01\xb6\xa4\xd5\xc0\x41\x35\
\xd0\x60\x43\xc1\xc0\xcd\x99\x56\xfe\xa0\x19\x4d\x35\x8e\x3d\x40\
\x22\xbd\xc6\xe8\x42\xae\xfd\x04\x48\xf4\xa4\xdb\x90\xce\x82\x2a\
\x82\x55\x9e\x87\xd4\x02\x82\x6e\x63\x9a\x86\xdd\x7d\xa4\x2e\x2d\
\x93\x4c\xf3\x7f\x1b\x70\x0b\x0a\xd0\x1f\x94\x76\xdb\x0c\xa5\x91\
\xfb\x24\xe0\x80\x12\x55\xdc\xa7\x0c\x0c\xaa\x6e\x7a\x27\x84\x24\
\x49\x98\xe4\x45\x61\x91\x2c\xa4\x93\x83\xc0\x89\xaa\xbc\x1e\xa8\
\xe7\xa8\x6e\x3e\xb9\xc9\x1c\xa9\x7d\x71\xcc\x36\xcd\x0c\x86\x44\
\x58\x58\xc9\x7b\x92\xdd\x70\xb3\x8b\x88\x78\x21\x42\x9e\xd2\x89\
\x7e\x58\xa0\x3a\x94\xea\x57\x02\xca\x01\x1b\x0e\xcd\x32\x04\xda\
\x02\x70\x3b\x52\x12\x35\x0d\x03\xe5\x23\x21\x1b\xa2\x5d\x68\xce\
\xee\x81\xa4\x02\xa0\xdd\x02\xa2\x0a\xfe\x82\x45\x06\x6c\xa8\xe4\
\x02\x90\x2c\x7d\x2d\xd2\x72\x02\xbc\xc0\xc8\xa7\x7b\x97\xfc\xe3\
\x65\x9c\x1b\xce\xa2\x5b\x89\x1e\x9f\x77\x58\xc0\x51\x4c\x08\x90\
\x88\x32\xc7\x4c\x72\x04\xb3\x07\x8a\x42\x62\x34\x30\xe0\x97\x1a\
\xf9\x9c\x4e\x57\xd6\xa0\x8a\x73\x34\x40\x1e\xb2\xc4\xfd\xee\x98\
\x02\x67\xf5\x45\x3e\x3f\x97\x8b\xb3\x91\xa3\xe2\xaa\xdd\xf1\x14\
\x5b\x41\x65\xcf\xe5\xf2\x86\x42\xe4\x56\xfe\xc9\x8b\x1d\xd0\xd5\
\xd1\x11\x80\x24\x5a\x57\x6e\xba\x64\x32\x19\xee\x3a\x98\xe6\x43\
\x34\x21\xd9\x55\x9f\xcd\x1a\xf2\xc1\x5e\xe6\x80\x99\x43\x14\x22\
\x49\x08\x81\xd8\x86\x00\x7f\x12\xf2\x04\xf2\x40\xcb\xa9\x68\xa4\
\x35\x80\x38\x22\xef\xe4\x82\x87\x48\x43\x14\x00\x21\x4c\x07\x6e\
\x8e\xc8\x08\x6c\x7e\x61\x0e\x40\x8d\x7c\x25\x9a\xe7\xbf\x9d\xc1\
\xe1\xf3\x10\xa0\x29\xde\xf4\xbc\xcb\xa7\xe0\xc9\xcc\xf0\x35\xe9\
\x06\x04\x44\x39\xae\xa0\x05\x5c\x71\xa4\x9f\x1c\x62\x90\xa8\x0b\
\x24\x63\xc3\xa1\x1d\x31\xd6\x41\x00\x89\xf9\xdc\x51\x93\x31\xad\
\xfe\xe1\x44\xff\x68\x62\x74\x3c\xd9\x37\x34\x3e\x38\x96\x4c\x9b\
\xd9\xaa\x78\x68\x46\x43\xc5\xc9\x8b\x9b\xd3\xc1\x70\x30\x60\xc5\
\xf5\xa4\x69\x45\x33\x66\x30\x63\xd1\x10\x65\x25\xec\x24\x8d\x64\
\x55\x42\xa5\x8e\xcd\xe5\xaf\x33\x36\x24\xa3\xc8\x48\x54\x80\xda\
\x43\x94\xe7\xa8\x5c\xc7\x03\x30\x0b\x38\xa9\xee\x5c\x42\x00\x0e\
\x53\x80\x71\xcf\xc9\xf6\x7f\xdb\x2b\xd4\xa6\xd0\x2c\x05\x28\x01\
\xee\xc3\x1e\x0d\x82\xbc\x95\x9f\xf7\x1e\xe4\x12\x3b\xc7\x29\x47\
\x07\x4c\x3e\x58\xfc\x55\xc4\x03\x7f\x2d\xf0\xc6\xe9\x40\x76\x6f\
\x87\xef\x3c\x02\x7c\x0d\xa3\x6d\x7c\xd5\xb3\x69\x37\x68\xf0\x4b\
\x8d\x1c\x01\x98\x92\x19\x54\x52\xde\x54\xeb\x7c\xdf\x98\x16\x79\
\x1c\x23\x35\x6a\x7f\xf0\x0d\x7c\xd2\x9e\x2c\x94\x35\x93\x4e\x61\
\xa0\xdf\x81\x9c\xd6\x00\x08\x0b\x21\x40\x92\x70\x44\x0c\x04\x99\
\x29\x5e\xa9\xd4\x42\x5c\x13\x24\x2c\x19\x18\xb2\xc7\x86\x63\xe0\
\x21\xbb\xf4\x1b\x96\xf2\x29\xa3\xc3\x64\x53\x04\x89\x52\x0a\xff\
\xc7\x3f\x30\xc9\x16\xeb\xc4\x0c\x07\x4a\x8e\x15\xe0\xc8\xd5\xad\
\x19\x34\x69\xb1\xe5\x01\xa8\xc0\xb6\x50\x52\xdd\x50\x42\x0c\x5f\
\xdf\x0a\x21\xca\x55\xc4\x2e\x23\xf4\xcb\x17\xd1\x24\xc9\x11\xc8\
\xd3\xe9\x8e\x8a\x1e\x01\xa2\xa2\x87\x04\x78\x1b\xdf\xd9\x3f\xb2\
\xf3\xe0\x40\x7b\xcf\xc8\xa1\xbe\xd1\xf1\x14\xf6\x96\xac\x50\x72\
\x83\xc4\xd6\x3d\x61\x7d\xfd\x3d\xc7\xad\x68\xfb\xc7\x68\xe2\x31\
\x2d\x30\xdd\xd2\x6a\xf4\x40\x73\x34\xb2\xea\xd0\xc4\xb4\xc1\x14\
\xe9\xc1\xe0\x77\x83\x73\x12\x64\xe8\x14\x82\xb2\xe4\xc4\xc8\x11\
\xaa\x37\x9b\xef\x0c\x7e\x52\xcd\xa5\x00\x4f\x68\x80\x0c\x70\x5e\
\xa1\x49\x41\x01\x90\x13\xc6\x45\x9e\x4a\xc9\x80\x4e\xd1\x25\x32\
\x62\x97\xfe\xf3\xb8\xf2\x55\xe5\x1e\xfc\x24\x2c\xd5\x8f\xae\x4f\
\x19\x38\xe5\xe8\x70\xec\x83\x5f\xf5\x6a\x38\x45\x25\x20\xb0\xab\
\x88\xb3\x61\xb7\xb7\xe0\x43\x77\xb1\xc1\x6f\x6f\xbc\x15\x8e\x76\
\xf0\x67\x35\x9a\x6e\x45\x92\x2a\x8e\xa7\x5e\x5a\xfc\xd1\x4e\x59\
\x53\x37\x8c\x2c\x7d\xa7\x06\x9b\xff\xa0\x19\x0c\x6b\xc1\x48\x20\
\x90\x81\xa8\xc8\xe3\xd3\x29\x98\xdb\xd1\x3c\xa7\x71\x05\x87\x6c\
\x30\xa4\xcd\x25\xbf\x3f\xb8\xbd\x21\xc9\xa4\x02\x34\xca\x94\x00\
\xdd\xd2\x73\xc4\x8a\xf4\xa7\x42\x70\x26\xd2\x03\x49\x44\x45\x18\
\x1c\xf8\x0b\xbd\xee\x24\x2e\x2e\x0d\x7e\x52\xcc\xa0\xfc\x36\x28\
\x8b\x0d\x49\x82\x45\x00\xd4\x31\xad\xfc\x79\x6a\xdd\xe0\xc7\xf9\
\x4c\xb0\x29\x6e\x01\x2a\x26\x1d\xff\x8a\x67\x74\x3b\x96\xe7\xa4\
\x64\x09\x6a\x87\x23\xc1\x97\xd3\xe6\xec\x03\xbd\xa5\x2f\x6c\x37\
\xf7\x76\xf6\xa4\x4c\x2b\x63\xf0\xea\xa7\xce\x38\x2e\x80\x91\xb0\
\x4a\x6a\x4a\x3f\x73\xf9\x0f\x42\xd9\xbf\xa6\xcd\x08\x1d\xbe\xb2\
\x59\x3d\x18\x9b\x56\xf3\xa6\x58\xfc\xf3\x7b\xc7\x9a\x64\x72\x14\
\xd8\xb9\x08\xa4\xd0\x0f\xa8\x60\x76\x8c\x85\x6c\x83\x92\x9b\x32\
\xb8\x72\x49\xb2\xc8\x0b\xa4\x7d\x41\x30\x3f\x5f\x52\x40\x83\x9f\
\x85\x01\x51\xcc\x99\x2c\xfe\x2e\xaf\xca\xc5\x49\x74\xc1\x7f\x69\
\xee\x42\xd0\x42\xab\x3e\x45\x12\x2d\x42\xf5\x41\xf7\x21\x8e\x65\
\xf4\x93\xa5\xd7\x34\xf8\x6d\xd0\x0e\x94\x5d\x60\xdb\x5c\x04\x29\
\x05\x00\x36\xa8\x62\xc3\x46\x32\x39\xd0\xcf\xba\xe1\xd3\x8a\xe4\
\xb4\xa2\xc8\x5a\xb4\xbb\x07\xc1\xa5\x86\x05\x56\x03\x9b\x56\x49\
\x38\x58\x1e\x0b\x55\x44\x83\x25\x11\x7a\x04\x8b\x9a\x4d\x67\x0c\
\xb9\x4f\x0f\x71\x5c\x59\x37\xfa\x28\xaa\xc8\xe2\x07\x50\x8e\x06\
\x17\xad\xa6\x55\x10\x92\xc9\x56\x3f\x89\x57\x52\x18\xc8\x70\x0c\
\xc6\x98\x50\x75\xc3\xb9\x7d\xaa\x4c\xc5\x6c\x38\x1c\x21\x72\x51\
\x0e\x0e\x41\x39\x45\x3d\x57\x2e\xf1\x5d\x19\xdd\xb4\x10\x00\x68\
\x2a\x3b\x4d\x23\x4a\xc6\x0d\x25\xc4\x70\x73\xf2\x92\xdc\x40\x0a\
\x82\x94\x82\xeb\x56\xf1\x55\x21\x5d\x1a\xdc\x70\x33\x85\x16\x48\
\x34\x1a\x78\x52\x4f\x7f\x66\x47\xfb\xc1\x27\x37\xc7\x1f\x5d\x9f\
\x3d\x3c\x3c\x91\x4a\x5b\x18\x14\x55\xf1\x70\xd2\xb0\xb0\xce\xe3\
\xec\xcd\xd5\x08\xdb\x92\x8f\xc8\x8c\x15\x3b\x7b\xf1\x8c\xea\xf8\
\xf3\xba\x56\x19\x0b\x55\x96\x84\x6b\x74\x3d\xdc\x3d\xfa\x74\x2a\
\x75\xcf\x9c\xea\xfa\x50\x68\xee\x68\x5a\x72\xb1\x38\x37\x0d\x82\
\xb7\x39\x72\x80\x23\x24\xa3\xba\x17\x99\x81\x24\x80\x0e\x03\x8a\
\x58\x0c\xe9\x4e\x8e\xbc\xd0\x79\x10\x3e\xe0\xa6\xc5\xbc\x9d\x9b\
\xc0\x8e\xa8\xf7\xdb\x40\x15\x5e\x8b\x40\xe5\x60\x39\xf4\x27\xa6\
\xf1\x9f\xe7\xc9\xa3\x87\xf4\x7c\x15\x39\x3a\x50\x03\x78\x1d\x43\
\x14\x7d\x4b\x58\x92\x84\xab\x10\x84\x22\xea\x73\x02\x8c\xc0\x57\
\x1e\x1b\x52\x94\x37\x21\x0f\xb4\xb1\xb7\x05\xa4\x6d\x88\x19\x08\
\x44\x63\x81\x9a\xb2\xd2\x9a\x92\x60\x14\xd3\x83\x91\x1d\x37\xb2\
\x03\xe3\x06\x8e\x88\x16\xf5\x7b\x8f\x3c\x00\x3a\x64\x0f\x72\x81\
\x30\x09\xf4\x05\x29\x02\x74\x4a\x33\x63\x02\x96\x39\xd8\xd7\x31\
\x87\x29\x1a\x9c\x68\x80\x7f\xf2\x11\x9f\xe8\x3c\xa2\x0d\x57\xe8\
\x01\x21\x32\x22\xef\x10\xc2\x74\xae\x60\x0a\x64\x76\x83\x88\x28\
\x16\x01\x02\x66\x25\x5b\x4c\x71\x5c\x10\x0d\x42\xa3\x14\x00\x22\
\xc5\x56\x7e\x48\xe6\xd4\xda\x26\x7c\xd5\x32\xe0\x8a\x7b\xbb\x4b\
\x1c\x5b\x98\xe7\x23\x3b\x23\x52\x85\x90\x54\x27\x0a\x08\x2d\xfc\
\xf1\x64\xa6\x7f\x68\xfb\xbe\x8e\x27\xb6\x1f\x9a\xd3\xd1\x5f\xad\
\x99\x61\x4d\x4f\x6b\x41\x03\x52\x58\x4f\x30\xa0\x63\x11\x3d\x95\
\xb1\x92\x19\xd3\xb0\xb2\xd1\x70\x30\x99\xb1\xb0\xaf\x23\x2d\xb8\
\xea\xe5\x9f\xb8\xac\x6f\x7a\xf5\xcd\xa9\x0c\xdd\xf7\x41\x59\x23\
\xa1\x12\x6c\x40\xc6\x52\x5d\xa8\xb8\xfa\xd2\x95\x75\xe5\xff\x96\
\xb0\x4e\x3f\x3c\x51\x92\xe4\xf7\xee\xc4\xae\x77\xf9\xca\x81\x9b\
\x4b\xfc\x57\xb5\xc7\x57\x5c\x24\x2b\x41\x24\x01\xe2\xf2\x90\x13\
\x26\x5a\x56\xb2\xb8\xe1\xc8\x2b\x82\x17\x1c\x48\x41\xd2\x01\x34\
\x05\x91\xc0\x16\x39\x4a\x10\x79\x27\x9a\x87\x62\x67\x7e\x54\x88\
\x5f\x0b\x17\x05\xfb\xa4\x3c\xf4\xc2\xdf\x2e\xab\x57\x5d\xc5\xf1\
\x8d\xfa\x16\x77\x74\x76\x9f\x20\x7c\x05\x29\x78\x01\xf2\x76\x04\
\xfa\x99\xef\xfc\x77\x7c\x88\xea\x49\xc0\x8f\x5d\x94\x79\xb7\xa5\
\xda\xca\xd2\xea\xb2\x50\x59\x18\xa7\xff\x8c\x66\x19\xa1\x50\x38\
\x40\xdf\xaf\x0a\xa7\xb8\x55\x1c\x70\x6e\x02\x3c\x16\x42\xb2\x0b\
\x0d\x80\xe2\x09\x34\x27\x29\x19\x45\x46\x84\xf3\x20\x7c\x5c\x51\
\x0f\x20\x44\x18\xff\x99\xaf\xf2\xd2\x23\x6e\x7b\x40\x16\xd3\x03\
\x20\x49\x20\x51\xc8\x83\xe4\x08\x65\xa4\x7a\xe6\x24\xa8\x21\xa2\
\x40\x0f\x67\x25\x08\xed\x66\x82\x40\xa1\x84\x93\x07\x47\x12\x70\
\x68\x37\x33\x1f\xdc\xd5\x1c\x67\x00\x29\x31\xa2\x14\x57\x17\xe7\
\x8a\x40\x49\x88\x0a\xdc\xf4\x86\xdd\x3d\xf7\xaf\xdb\xf3\xd4\xe6\
\xcc\x9e\x8e\xa9\x23\xc9\xa8\x16\xb4\x34\x3d\xc3\x73\x08\x09\xa1\
\x3a\x2b\xe3\xe1\x9b\x4e\x69\xbb\xe9\x94\x56\x6c\xff\x87\x12\x99\
\xb1\x84\x91\xc9\xd8\x1d\x9c\x8c\x46\x56\xcc\x4c\xd5\x97\xde\x87\
\x9d\x01\xb2\x58\x74\xc7\x47\x8f\x85\x6b\x4a\xc2\xf5\xa5\xe1\xba\
\xd1\xf4\x81\xc3\xc3\x7f\x4a\xa7\xff\x38\xbd\x22\x58\x19\x5f\x3c\
\x98\xa2\x9f\x54\x06\xec\x96\xcf\x07\x37\x91\x6a\x6e\x40\x0c\x90\
\x7c\x80\x5e\x4f\x40\x12\x68\xe6\x2b\x80\x41\x19\x0a\xf8\x02\xe1\
\x3b\x02\x44\xb1\x5d\x5b\xb3\x13\x70\xde\x91\x59\x47\x65\x39\x32\
\xdc\x62\xca\x07\xce\x8b\x5e\xc1\x4b\xc5\x51\x06\x95\xdf\x07\xbe\
\x4c\x1e\xb1\x6c\x0c\x50\x1c\x16\x45\xb1\x30\x9a\x84\x93\x07\x11\
\xcd\x0b\x9c\x20\x1f\x0a\xfa\x59\xef\xfc\x24\xdc\xe7\x64\x5c\xb3\
\x68\x78\x36\x41\x74\x2e\x60\x30\xa0\x7f\x80\xe0\x67\x30\x98\x8c\
\xe8\x07\xcc\x83\xd9\x50\x38\x54\x5b\x11\x8f\x68\x56\x2c\x6b\x56\
\x84\x31\xe8\xb3\x69\xc3\xb4\x74\x1d\xd3\xfd\xc8\x58\xc2\x34\x71\
\xac\x82\x8b\x74\x9f\x4c\xe6\x0e\xb8\x2b\x5b\x24\xaa\x7b\xae\x39\
\x72\x93\xd6\x52\x9a\x13\xc8\x1d\x1e\x5d\x0e\x48\x4a\xac\x3b\x9e\
\xd8\x81\x7b\xaa\xa8\xa1\x2b\xf9\xc6\xca\xe8\xb4\x41\x7c\xba\x17\
\x82\x8c\xb0\x06\x3e\xb7\x3e\x44\x39\xa3\xad\x81\x66\x4e\xe5\x02\
\x59\x61\x1d\xa4\x96\xea\x14\xee\x8a\xa3\x2a\x59\xd9\xa0\xba\x23\
\x6d\xa8\x07\xf1\x97\x85\xe4\x00\x47\x19\xb0\x32\xb3\xc3\x34\x4a\
\x29\x48\x99\x68\xcd\xd3\x50\x15\x6c\x54\xd9\x62\x4f\x72\x62\xa4\
\x81\x32\x8a\x63\x34\xfa\x68\x53\x47\x7d\x13\x52\x6c\x16\x5e\xd1\
\x49\x8a\xcb\x41\xfd\x98\x74\x70\xe9\x38\x35\x2f\x30\x1f\x9a\x49\
\x58\x82\x74\x73\x04\xac\xde\xf7\x3c\xbb\xe7\x89\x8d\x07\x87\xc7\
\xd2\x59\xcd\xd4\x42\x06\x8d\x7c\xbb\x7c\x04\x48\x58\x81\xe3\xa6\
\x55\x7e\xeb\xea\x79\x27\x4c\xaf\xc2\x80\x7e\xf9\xc0\x70\xc6\xca\
\x96\x46\xe9\x0e\x2f\xff\x58\x86\xa6\x87\xe2\xab\xe7\xa4\x6a\x4b\
\xef\xc7\xe0\xe7\xc1\x8b\xd3\x5e\x69\x73\xf9\xf2\x39\xb5\xe7\x57\
\xc6\xa6\xc2\x5a\x58\x8f\xa7\xcc\xe1\x7d\xfd\x77\x66\x8d\xbb\x66\
\xd5\xbf\xb9\x2f\x19\x47\x01\xe8\xaf\xaa\x93\x21\x71\x9a\x7b\x03\
\x85\xa0\x7d\x8b\x40\xb8\x5e\x28\x9f\x9c\x76\xa0\x40\x55\x4e\xa0\
\xcc\x2a\x27\x47\xa1\xd9\x16\xce\x41\x8c\x50\xad\x63\xf5\xa4\x35\
\x94\xaa\x0e\x51\x1a\x36\x24\xee\x14\xdc\x55\x03\xa4\x40\xd9\xf2\
\x04\x6a\x1d\x94\x83\x02\x11\xe8\xdb\x3c\xa1\x79\xb2\xbe\x41\xa0\
\xce\xe2\x74\x06\xea\x1b\x54\x33\xb9\xb2\xab\x18\xae\x4e\xb4\x10\
\x94\x97\xd2\x72\x81\xfa\x13\xd5\x8e\xcd\xa0\x93\x16\x36\xdb\xd2\
\x14\x1c\x38\x95\x04\x78\xfb\x6c\xd2\x53\x7d\xf4\x8e\x20\x7d\x63\
\x3c\x12\x09\x97\x85\xb5\xd2\x90\x16\x09\x18\x11\xcd\x88\x05\xac\
\xd2\x70\xa0\x24\xa4\x85\x03\xa6\x8e\xb5\x80\x7a\x31\x94\x53\x47\
\xa4\x5a\xb7\xd0\xfa\x72\x1f\x89\xaa\x8b\x09\x0a\xd4\xf4\x24\xa0\
\x5c\xc7\x95\x49\x02\x9b\x55\x6e\xe4\x05\x1b\x22\xaa\x32\xa8\xdc\
\x00\x9d\x17\xd8\x08\xdb\x91\x32\xba\x8b\x29\x92\x08\x2e\x6d\x22\
\x4c\x14\x31\x5d\x10\xdf\x6c\x10\x2d\x59\xf8\xca\x85\x70\xae\x34\
\xe4\x38\xcd\x06\x0f\x6f\xc9\x94\x13\xe0\x6e\x94\xab\x61\x86\x9d\
\x4a\x81\x9e\x9e\xa0\x62\xa0\x13\x51\x54\x20\x05\x6a\x70\x97\xac\
\x82\xcd\xf1\x83\xa3\xdf\x2d\xb4\xb3\x63\xe0\x95\x3d\xdd\xa6\xc9\
\x37\xf3\xf2\x72\xe3\x90\x9f\xcd\x96\xc7\x42\xd3\xeb\xe3\x65\xb1\
\xd0\x4b\x07\x86\xc1\x3b\x34\x9c\xec\x1c\x4e\xe1\x28\x37\x9c\x32\
\x27\x32\x56\xca\x30\x0d\x33\x1b\x09\x6b\x0d\xe5\x01\x1c\xf5\xcb\
\x22\x0d\x65\x91\xa6\xca\x58\x6b\x7d\xc9\xdc\x19\x35\x67\x2e\x6b\
\xb9\x71\x79\xcb\x3b\x1b\xcb\x97\x59\x56\x1a\x63\xa4\xa6\x64\x5a\
\xcf\xc4\x1e\x73\xfc\x73\xb1\xd4\x08\xed\xcf\xc5\x6f\xa9\x53\x7b\
\x16\x44\xb7\xe0\x06\xa3\x14\x86\xaf\xd7\x85\x20\x1d\x39\x82\x2e\
\x6a\x03\x08\x38\xfa\xc0\x01\xc4\x92\x70\x48\xd4\x0e\xcc\xf0\x81\
\x52\xec\x07\x31\x45\x84\xc4\x59\xe1\x64\x19\xfe\x35\xf0\x18\x00\
\x2d\x41\x20\x65\x95\xe2\x8b\x6f\x93\xc0\xc9\x2b\x21\x7f\xdb\x40\
\xb5\xc8\x50\x71\xa5\x9d\x0c\x80\x90\x23\x16\x52\x43\xf4\x25\x51\
\xfa\x7e\x45\x48\xb3\xc2\xa8\x5b\xd3\x4c\x26\xb0\x35\x4c\x63\xf1\
\x0f\x63\xb0\x18\x09\x7e\x43\x43\x96\x2a\xa8\x22\x0d\xc5\x1c\x13\
\xb5\x2a\xe2\x07\x52\x51\x08\x9b\xed\x96\x11\x5a\x20\x95\x22\x10\
\x1a\x02\xaa\x37\xb0\x24\x98\xcc\x57\x45\x63\x9a\x48\x89\xa1\x6e\
\xdc\xb5\x69\xa7\x12\x28\xd9\x9e\x71\xdd\x32\x45\x40\xa9\x79\x22\
\x47\xca\x22\x10\xdf\xc8\x2e\xac\x20\x93\xdb\x07\x01\xd4\xb0\x17\
\xfe\x50\x42\x5e\x3c\xbb\xa5\x93\xd4\xe4\x25\x62\x2e\x30\xac\xaa\
\xd2\x48\x6b\x4d\x6c\x46\x43\x09\xcc\x3d\xb6\xa3\xff\x57\x6b\x3b\
\x3f\x76\xe7\xf6\xbf\x6d\xe8\xa1\x56\xcc\x66\x13\x63\xe9\x74\x9a\
\x26\x7e\x23\x65\x61\x73\x12\x8b\xec\x4b\xa4\xfb\xc6\x33\xbd\xa3\
\xa9\xce\xe1\xe4\xc1\xf1\x4c\x1f\xdc\x0b\xeb\xd1\x68\xa8\x22\x1a\
\x2a\xb7\x5d\x0b\xd6\xc4\xa6\x1c\x18\x7d\xa0\x2d\xf0\x12\x0a\x82\
\xe9\x0b\x3b\x2a\xfa\x65\x4d\xde\x5a\x61\xe5\x0c\x60\x2b\x20\xf7\
\x11\x8e\x0d\x94\x85\xcb\x87\x56\xc8\x06\x33\xe9\xc6\x8d\x2f\x85\
\x27\xc6\xd8\xa4\xa4\x62\xf6\x54\x7b\x58\xe1\x50\xd5\x79\x6a\x8f\
\xb8\xee\x5a\x72\xd3\x47\x44\x9e\x64\xb1\x6c\xe1\x89\x71\x45\xbd\
\x3e\x40\xbf\xb8\x57\x08\xa4\x4a\xb1\x40\xa3\xd5\xb8\x9f\x78\xfa\
\xea\xe4\x08\x7c\xfd\xf1\xdc\xeb\xbd\x00\x94\x70\xf5\x11\xa8\xce\
\x6c\x45\xfc\xa7\xa2\x90\x4a\x1d\x51\x0e\xd2\x62\xbb\xb5\x42\x2f\
\x8f\x86\x43\xa6\x11\x09\x5a\xd8\xfe\x65\x82\xfa\xb8\x19\xe8\x1e\
\x1a\xee\x4f\xd2\x39\x01\xa0\x6c\x9c\x91\x68\xfa\x2f\x9b\x17\x3b\
\x66\xeb\x17\x6d\x12\x15\x5a\xae\xf4\x0e\xa6\x2d\xe3\x86\xf3\x24\
\x53\x89\x31\xdc\x4a\x70\x75\xf4\x10\x01\x92\xfb\x23\xc9\x71\xaa\
\x80\x63\xb9\x5c\x22\xc0\x19\xd4\x78\x13\x90\x94\x80\x57\x72\x12\
\x60\x49\x95\xac\xf2\xaa\xec\x12\x45\x45\x51\x14\xdd\x93\xb6\x53\
\x6a\x76\x13\x01\x00\x12\x2e\xa5\x39\x20\x99\x0f\x01\x39\x7f\x00\
\xa8\x42\x04\x47\x6b\x16\x51\x49\x72\x05\x1c\x9d\x79\x70\xf8\xd8\
\x82\xc9\x9b\xb5\x0f\x3c\xbb\xe7\xe9\x9d\x87\x99\x67\x03\x3a\x0c\
\xb3\xa2\x3c\x5a\x5b\x46\x7f\x85\x2d\x99\x36\x3a\x87\xd3\xda\x44\
\xa6\xb5\xa5\xfc\xec\xf9\xb5\xbf\x79\xee\x50\x5d\x55\xb4\xa9\x3c\
\x3a\x9a\x32\x32\xa6\xd5\x31\xc0\xef\x6e\xa4\xac\x19\x73\x1a\x3e\
\x7c\xf6\xb7\x43\xe6\x53\x19\x2b\x1a\xc0\x16\x30\x18\x29\x8d\x34\
\xb4\x54\x1c\xdf\x58\xb6\x38\xac\x97\xec\x1f\x7a\xaa\x67\x6c\xd3\
\x70\xa2\x1d\x05\x47\x35\x26\xcd\x81\x2a\x7d\x51\x45\xe5\x5d\x07\
\x52\x65\x54\x18\xa7\x06\x6c\x48\xb4\x10\x22\x59\xb9\x7f\x8f\x9e\
\x4e\x66\x71\xe0\xc8\x64\x32\xe5\x15\x23\xad\xd3\x90\x85\xba\x39\
\x77\x74\x6c\x44\x4f\xfe\xda\xc7\xe7\xdc\xf3\x97\xde\xc5\x2b\x9e\
\xfb\xf2\x77\x06\xa7\xce\x40\x2a\x32\xf2\xc2\x43\xf5\x8f\x28\x6f\
\x64\xb3\x81\x74\x6a\xea\x63\x0f\xc4\xfa\x7b\xa1\x0a\xaa\xd9\x82\
\x1b\x79\x6e\xd8\x02\xb0\x65\x1a\xa3\x2d\x6d\x07\x4f\x3d\x9b\x32\
\xda\x5e\x89\xdb\xd1\xd1\x91\x35\xff\xf9\xa5\xd0\xc4\xd8\xab\x37\
\xdc\xdc\xb7\x70\x29\xc9\xdb\x58\xfa\x8b\x1f\x4d\x7d\xfa\xe1\x83\
\xa7\x9c\xf3\xea\xbb\x3e\x84\x68\x40\x75\x00\x7a\x69\x99\x09\x1f\
\x34\xbf\xbc\x76\xfa\x23\xf7\xee\x3f\xfb\xa2\xc3\xc7\x9f\xac\x58\
\x36\x02\xf4\x34\xd7\xe3\x33\x38\x56\x28\x2c\x34\x97\x14\x81\xbc\
\x42\x4f\xc3\x02\x0d\x86\x24\x4d\x8e\xc0\x37\x9e\xf0\xfc\x6e\xbf\
\x6d\x83\x6a\xd0\xdd\x2e\xba\xfc\x4a\x12\x83\xeb\x1d\xc5\x31\x0d\
\xc3\x88\x84\xb2\x15\xf1\x78\x49\x48\x2f\x89\xd1\x0f\xfb\x8d\xa7\
\xb5\xb1\xb4\x39\x38\x3e\x8e\x39\x9d\x55\x49\x2d\xd1\x7f\x64\x24\
\x8a\x7b\x36\x43\x25\xb9\xac\xe4\x28\x1a\xac\x64\x8a\x8e\xa0\x8a\
\xe5\x05\x71\x1d\x4d\xb6\x72\xc0\xad\x4e\xa0\x92\x70\x71\x0d\x5a\
\x01\x84\x45\xbc\x20\x97\x5a\xd2\x59\x80\x00\x09\x66\xcb\x27\x75\
\x3e\x47\x0f\x52\x65\x6c\x83\xe1\x56\x0e\x9a\x2a\x8a\x6f\x06\x0b\
\x84\x09\x48\x24\xcf\xa4\x80\xdd\x64\x20\xd9\x76\x18\x40\xcc\x79\
\x39\xf2\x28\x81\x5c\x8a\x62\x3c\xb7\xbe\xfd\x1f\x1b\xda\xe1\x38\
\x66\xee\x0c\x76\xf8\x58\x72\x69\x01\xd7\x5b\x2b\xa3\xf0\x73\x28\
\x91\xe9\x19\x49\xd1\x16\x20\xab\xd5\x56\x44\x2e\x59\xd6\xf8\xc8\
\xe6\x9e\xce\xc1\x64\x24\x16\xc2\xe6\x7e\x60\x2c\xd3\x50\x11\x89\
\x47\xf4\xae\xa1\xe4\xe8\x60\xe6\x8c\x93\x1a\xaf\x5e\xfe\x01\xcb\
\xd8\x6f\x65\xcb\x82\xd8\x05\xea\xe1\xd2\x70\xa3\x61\x26\xb1\x23\
\x6c\x2a\x5f\x7c\x78\x6c\xa3\xae\xe9\x19\x6b\x7c\x2c\xd5\xcb\x33\
\x99\x3e\x9e\x3e\xd4\x5a\x71\x66\x59\xe5\x9f\xf6\x8c\x44\xb9\xae\
\xb9\xe8\xce\xc5\xe3\x66\x0e\xf0\xff\xf8\xef\x7c\x79\xc6\x83\x77\
\x07\x8d\x0c\x1d\x13\x4c\xcb\x88\x97\x6e\x79\xc7\x7b\xb7\xbc\xf9\
\x5d\x48\xe2\x4e\x48\x77\xfb\xcf\x7f\xff\xb5\x4d\x2f\xbd\x00\x4d\
\xa3\x53\xda\x1e\xfa\xe9\x1f\xc7\x9b\xa6\xa0\x8c\xdc\x40\x38\xd5\
\xd3\x69\xd3\xb2\xe8\xb6\xc2\xb2\x3b\xbe\xbb\xfc\x27\xff\x49\x6a\
\xed\x39\xf4\xe8\xa0\xd6\xaa\x75\xb7\x7e\x79\xeb\x75\x37\x50\x9c\
\x6b\x95\x0a\x11\x08\x9c\xf2\xf5\x4f\xcd\xb9\xfb\x0f\x41\xcd\xd8\
\x76\xd5\x3b\x9f\xff\xf4\x6d\x24\xce\x68\x7e\xe9\xf9\xf3\x3f\xf0\
\x26\xa1\x31\x2b\x61\xfa\x90\x7e\x03\x5d\x96\x1e\xda\x77\xe1\xe5\
\x5b\xde\xfc\x6e\x49\x75\x50\xbd\x6b\xdb\x85\x37\x5d\x1d\x19\x1f\
\x1d\x6f\x9d\xf2\xf7\x5f\x3d\x94\xaa\xa8\x04\x33\x32\x3e\xb6\xe4\
\x97\x3f\x6a\x7e\xe1\x99\x20\xce\x69\xde\x5a\xc2\x8e\xc9\x88\xc5\
\x37\x5d\xff\xfe\x83\xa7\x9f\x27\xb5\x81\x2b\xbc\xa2\xa1\x6f\x2f\
\x7b\x79\x60\x17\xb8\xd2\x6d\xe8\xe7\xdc\xf8\xef\x10\x75\x20\x6f\
\x8c\x80\x80\x3a\x40\x76\xef\xd8\xe0\x23\x88\x00\xf7\x5b\x02\xcc\
\x60\xde\x4d\x64\xcc\x94\x11\xc0\x80\x4f\x64\x02\xe8\x3c\xbd\xa3\
\xc9\x91\x94\x99\xd6\xf4\x70\x88\xe7\x22\x39\x58\xd2\x99\x8b\xea\
\x0b\x7e\xb1\x56\xf2\x4c\xb4\xf1\xa7\xaa\x50\x66\x28\x20\x8b\x22\
\x3c\xde\xe6\xe0\xd4\x85\x12\xb3\x69\xdb\x3b\x82\x3b\x89\x6f\x35\
\x29\x30\x53\x12\x95\x5d\xe1\x3b\x90\x14\x09\x12\xcd\xf9\xe3\x92\
\x77\x38\x4c\xcb\xd5\xcd\x61\x9a\x02\x95\x5d\xa2\x02\x49\x56\x12\
\x5e\x50\x8a\x9d\x97\x6a\x8a\x41\xf2\x34\x62\x8a\xd4\x45\x11\xa8\
\x8c\x8c\xbd\x07\xfb\x1e\xda\xd0\x9e\x4c\x64\x2a\x4a\xc2\x69\xc3\
\xb2\x0c\xab\xbc\x34\x32\xa3\xb6\xa4\xba\x24\xdc\x33\x4e\xc3\x7e\
\x74\x3c\x43\x8d\x85\x4d\x42\x36\x7b\xe6\xa2\xba\x4d\x9d\x63\xfb\
\x7b\x26\xa2\xf1\x50\x3a\xc3\x8b\x4e\x40\x1b\x18\x49\xa5\x4d\x6d\
\x4a\x45\x34\x1b\x0e\x1f\x3f\x27\x36\xbd\xfa\x6f\xc9\xf4\x58\xca\
\x8a\x05\xb4\x4c\x49\xb8\xd6\xc0\xb1\x20\xd5\x6d\x65\x53\xc1\x60\
\x34\x91\xe9\x37\xac\x89\x50\x30\x1e\xd2\xe3\x19\x73\x0c\x4e\x84\
\xf5\xb2\x9e\xf1\x0d\x61\xe3\xb9\xe9\x35\x97\xf5\x26\x22\xa8\x0d\
\x74\x05\x78\x05\x0f\x51\xc2\x62\xa5\x8a\x8e\x8f\xad\xb9\xed\xd3\
\x25\xfd\x7d\xd1\xd4\x68\x2c\x39\x18\x48\x9b\xe1\xf1\x71\x74\xd0\
\x3d\x17\x5d\x19\xca\x9a\xe1\x4c\x3a\x98\xa5\x2f\x93\x4d\xb4\xc4\
\x9b\x5e\x79\x39\x36\x3a\x1c\x19\x1d\x4b\x34\x34\x0d\x2e\x5e\x1a\
\xce\x66\x75\x8c\xf8\x74\xca\xd0\xf1\x89\xe1\xaf\x05\xd3\x99\xe5\
\xff\xf3\x9d\xb2\xae\x43\x68\x8a\x90\x96\xc2\x44\x82\xcd\x90\x1d\
\x2c\x8c\x5e\x57\xd4\x61\xe2\x6a\xd0\xd4\xad\xd1\xd3\x8a\x64\x65\
\x75\xfb\x99\x17\x38\x55\x0a\x62\xda\x13\x0f\xae\xfa\xc1\x6d\xba\
\x96\x4e\x96\x57\x6e\xbd\xfe\xfa\xe1\x69\x0b\x24\x09\x38\xf5\x8b\
\x1f\x2d\xeb\xea\x84\x95\xb0\x96\x2c\xef\xe9\x28\xeb\xeb\x28\xed\
\xeb\x8c\xf5\x0d\xc4\xfb\x7b\x4b\x7b\x3b\x71\xdd\x71\xf5\x3b\x94\
\x28\x43\x4f\xa7\xce\xfa\xc4\x4d\xe5\x9d\x07\xc3\x5a\xe2\xf0\xd2\
\x55\xfb\xcf\xbe\xc4\x8a\xc4\xc0\x5f\xfc\x9b\xff\x5e\x76\xc7\xf7\
\x4a\x7a\x7b\x4a\xfb\x0f\x55\xf4\x1d\x2c\xeb\xeb\xe4\x70\xa8\xb4\
\xef\x70\xac\x7f\xa0\xb4\xbb\xab\x61\xf3\x2b\xfb\xce\xbb\xcc\x28\
\x29\x15\x3d\x93\x03\xbe\xc3\x6d\x0f\x6e\x7b\xca\xfb\x17\x7b\x72\
\xdd\x94\xbb\x9e\xf4\x3f\xe9\x7b\xf6\x80\x07\x81\x7e\x49\x2d\x88\
\xb5\x08\x73\x82\xa6\x1b\xe9\x8c\xce\xbf\xaa\x94\x48\xa7\x83\xe1\
\x50\x38\x1e\x0b\x98\xa8\x62\xca\x42\x2d\xcd\xe0\x29\x29\xab\xd3\
\xc2\x93\xeb\x94\x0e\x90\xc4\x55\x4a\xa6\x98\x16\x47\xd1\xbe\xfc\
\xfd\xc0\x02\x4c\xb2\xf2\x03\x4e\x34\xc7\xc7\x3f\x5b\x5e\x98\xb8\
\x02\x32\x59\x48\x2e\xa2\x5c\x80\x94\x48\x82\x74\x89\x28\x41\xc9\
\x0e\x48\x02\x80\x24\x87\x23\x02\xa8\x25\x7c\xc0\xb4\xc0\xc9\x05\
\x82\x2a\x83\xd4\xe4\x03\x95\xc6\xf5\x46\x15\x4f\x31\x82\xca\x4d\
\xef\xa8\xfb\x41\x14\x4e\x82\x27\x9f\xdc\xfd\xe8\xfe\xee\x35\x33\
\xaa\xc6\xd3\xf4\x77\x6f\x7b\xc7\x32\xb1\x50\xa0\xb1\x3c\xda\x3e\
\x98\x3c\x38\x90\xa0\x71\x48\xa6\x78\x9e\x1a\x4d\xaf\x59\x5a\x8f\
\xc3\xff\x83\xeb\xbb\xb4\x10\x79\x20\x4e\xa2\xcd\xe8\x25\x65\x1e\
\xb1\x95\xd1\xc8\x5b\xcf\x6c\x3a\x6e\xea\xad\x63\xc9\x97\x2b\xe8\
\x4b\x9d\xd3\xcc\x6c\x68\x2c\x75\x90\x9e\xb4\x04\xf4\x8a\xe8\x94\
\xa4\x39\x84\x42\xa4\xcd\xf1\xd2\x48\xbd\x95\xcd\x8c\xa6\x3a\x83\
\x01\xda\xa0\x26\x8c\x81\xa8\x5e\xb5\xb0\xe5\x9e\x0d\xfd\x73\x58\
\xab\xaa\x0d\xec\xca\x25\x9a\x87\xd2\x9e\xce\x0b\x3e\x70\x5d\x4d\
\xfb\xf6\xfe\xe9\x73\x7b\x57\x2c\x6e\x7b\xec\xd9\xd2\xe1\xee\x2d\
\x57\xde\xb8\xf7\x82\xcb\x96\xfe\xee\xa7\xa1\xf1\x94\x15\xd2\x2d\
\x3d\x1c\x30\xc6\x2b\x3a\xda\xcb\x3a\x0f\x63\x27\x33\xda\x36\x6d\
\x74\xea\x8c\xa0\x65\xa2\x0d\x02\xa9\xd4\xf0\xb4\x99\xaf\x7e\xe0\
\x96\xf1\xda\x16\x1c\xbf\xcf\xfc\xf8\x0d\xad\x2f\x3e\x63\xe8\xb1\
\x43\xa7\x9e\x90\xa8\xa9\x0e\x1a\xb4\x1a\x5b\x91\x70\xb2\xa6\x32\
\x98\x31\xa2\x43\xa3\xbc\xba\x52\x89\xb1\x40\xa5\x2b\x2b\x40\x87\
\xc7\x27\x2a\xf7\x1d\x6c\x7c\xe9\xd5\x90\x96\xd8\x72\xd5\xf5\x6b\
\x3f\xf1\xcd\x6c\x88\x0e\x47\xf0\x2d\xd6\xd7\x73\xf1\x8d\x97\x97\
\x1e\x3e\x14\xd5\x46\xd7\x7e\xe4\x23\xfb\xce\x79\xd3\x68\xd3\x7c\
\x71\x7b\xf1\xaf\xff\x1b\x93\x82\x34\x62\xb2\xaa\x92\x5b\x34\x60\
\xe9\x7a\x6c\x70\x38\x68\xa4\x31\x1d\x6c\xba\xf6\xfa\xb5\x9f\xfc\
\x8e\x08\x0b\xd6\xdc\xfe\xb9\x79\x77\xfe\x26\xaa\x8d\x8c\xd4\xb4\
\x3d\xf1\x9d\xaf\x77\x2f\xb8\x30\x1b\xa4\x19\xe7\xec\x8f\xdd\xd8\
\xfa\xcc\xe3\xc1\x6c\xc6\xd2\x23\xa9\xca\x72\xea\xac\xe8\x08\x81\
\xa0\x9e\xc9\x44\xc6\xc6\xe0\xaa\x11\x8d\xdf\xf7\xab\x7b\x07\x67\
\xd3\xbc\x23\x95\x09\x40\x84\x06\xe6\x51\x00\x2b\xff\xa7\x14\xc9\
\x08\x87\xc3\xce\x91\x9e\xf6\x5a\x04\xb2\x69\xa0\xb2\xb8\x1b\xd2\
\x54\x6a\xf7\x5b\x10\x21\x2d\x1d\xc6\xfe\xcb\x32\x91\x2d\x12\x0e\
\x65\xb3\x98\x44\x8d\x60\x96\x9e\x08\x88\x80\x52\xc5\x55\xc6\x75\
\x4b\x4c\xce\x4d\x10\xbe\x40\xc4\x00\x11\x00\x41\x03\xa0\x48\x29\
\xdc\xbb\x20\x48\x2a\x8a\xe1\x44\xdd\x7c\x5a\x62\x38\x0a\xe5\x6e\
\x07\x90\x42\xff\xbd\x1a\x18\xca\x07\x80\xc7\x21\xb3\x28\x23\x71\
\x24\x2a\x70\xa2\xf2\xe9\x8a\x12\x98\x8b\x90\xd3\x26\xa9\x6e\x0f\
\xdc\x10\x69\x88\xf1\xb2\x4f\xb9\xc5\x61\x58\x16\xdb\x4a\xce\x46\
\x21\x27\x0f\x1d\xdd\x83\xff\x58\xbb\xb7\xa1\x3a\x76\xd5\x8a\xa6\
\x8f\x9d\x3d\x63\x69\x6b\x45\x55\x3c\x84\x7e\xfe\xe2\x81\x91\x5e\
\x6c\xd5\x00\x3a\xc3\xb1\x92\x84\x31\xbb\xb5\x7c\xc5\xb4\xca\x87\
\xd7\x77\x63\x20\x97\x97\x84\x92\x29\xfa\xb6\x2d\x52\x94\xb7\xa0\
\x03\x81\xd4\x48\x2a\x58\x12\x5b\x3e\xed\xe5\xd5\x0d\xbb\xcf\x6c\
\xeb\xeb\x18\x2d\xdf\x3f\x32\x10\x09\xf2\x2b\xba\x81\xac\x1e\x0c\
\x63\x43\x6a\x5a\xf4\x96\x7f\x32\x33\x50\x12\xa9\x0d\x07\xe3\x69\
\x73\x0c\x49\x11\xbd\x2c\x65\x0c\x0c\x4e\xfc\x7d\x6e\xf5\xb5\x03\
\x69\x3e\xff\x43\x25\x94\x17\x29\x41\x6c\x64\x60\xd6\x7d\x77\x56\
\x8e\x1c\xda\x75\xc1\xc5\x6b\x3f\xf7\xd1\x99\xf7\x3d\x52\x3e\xd0\
\x3d\x34\x75\x4e\xdb\xd3\x8f\x4d\x5d\xfb\xcf\xb2\xc3\x1d\x15\x87\
\xf6\x57\x1e\xdc\x53\x7d\x68\x0f\x96\x7d\x68\xc2\x5a\x8d\x2c\x95\
\x07\xf7\x56\x74\xec\x2b\x47\xe8\x3a\x58\xb7\x7d\xe3\xc8\xcc\x99\
\x7d\xf3\x96\x87\x52\xa9\x19\x8f\xfc\xad\xb2\x73\x5f\xaa\xbc\x6a\
\xdd\x67\x3f\xba\xe7\xf2\x8b\x7b\x97\x2e\xee\x59\xb5\x62\x60\xfe\
\xbc\xaa\x3d\xed\x89\x86\xc6\x1d\xd7\x5e\xde\x7e\xd6\x69\xdd\x2b\
\x97\xf5\x2e\x5f\xd2\x75\xc2\x71\x98\x59\xcc\x78\x7c\xc7\xd5\x97\
\xa5\xea\xaa\xa7\x3d\xf2\x24\x96\xf7\xde\x79\x4b\x3b\x4e\x3a\x5b\
\x4e\xbf\xf0\xed\xe4\xaf\x7c\xbc\x61\xe3\x2b\x18\xae\x07\x57\x9e\
\xb4\xf9\xa6\x9b\x2a\x77\x76\x2e\xfd\xc3\x4f\x07\xa7\xcd\xab\xde\
\xbb\xe3\xd4\x2f\x7f\x9c\x66\x1f\xcd\xdc\x7f\xfe\x99\xaf\xbe\xff\
\xed\x87\x4f\x3a\x6e\xff\x79\xa7\x8d\x4f\x69\x69\x7a\x71\x7d\xc8\
\xca\x64\x42\x65\x9b\xde\x7d\xfd\xf0\xd4\xc5\x52\x46\x60\xea\x13\
\x0f\x1c\xff\xfd\x6f\xe8\x1a\xda\x42\xdf\xf8\xae\xb7\xed\x3b\xfb\
\x5a\x4b\x2f\x53\x49\x4f\x3f\x54\xb7\x7b\x13\x8a\xb6\xfd\xcd\x57\
\x6c\x7e\xf7\x9b\xbb\x56\xaf\x38\x74\xda\xea\x8e\xd3\xd7\x74\x9e\
\x72\x7c\xc5\x81\x43\x65\x03\x87\x53\x95\xd5\xfb\x2e\xbc\x26\x51\
\xdb\x00\x61\xea\x1e\xf6\x9d\x26\x74\x17\xaa\x5e\x2f\x44\xa7\x1b\
\x3c\x26\x30\x97\xd0\xde\x3e\x1c\x89\x44\x24\xb3\x40\x3a\x1d\x80\
\x01\x8f\x28\xa4\x71\x85\xa4\x33\x3b\x80\xc8\x6a\x61\x7a\xd8\xab\
\x87\xb2\xfc\x20\x97\x1f\x01\x84\x30\x62\xf5\x40\x88\x36\xfd\xfc\
\x0c\x9b\x7e\x5d\x8a\x1e\x05\x87\x11\x22\x98\x5d\x40\xd2\x9a\x88\
\xfe\x80\xc5\x84\xee\xdc\xc1\x24\x05\xe6\x20\x40\x3b\x69\x41\x80\
\x98\xdc\x1d\xb6\x25\xa8\x83\xe1\xca\x07\x57\x0c\x49\x59\x27\xb1\
\x55\xa5\x45\x87\x9f\xbd\x83\xaf\x02\x47\x73\x01\xeb\x82\x45\xdf\
\x37\xd3\xe9\x0b\x8a\xce\xad\x66\x79\xfc\xce\xb5\x46\x59\xa4\xe6\
\x50\x91\x04\x94\x57\x66\x3a\xa1\x91\x48\xa5\x83\x84\xed\x27\xe5\
\xe2\xbc\x76\x80\x5d\xe5\x2c\x94\x20\xb0\xa7\x54\x2e\x71\x5c\x98\
\x44\x30\x87\xdf\x99\x70\x05\x58\x20\x26\x4e\x5a\x58\x73\x75\x3a\
\x2c\xc3\x3b\x6c\xb3\x50\xf7\xfc\x82\x05\x0e\x52\xe2\xbc\x3b\x90\
\x72\xa9\x9b\x82\x00\x8c\x4d\xa4\x7f\x75\xff\xd6\x50\x65\x74\x51\
\x4b\xf9\x25\x4b\x1b\x8e\x9f\x5e\x79\xf5\x8a\xc6\x55\xd3\x2a\xb0\
\xab\x1f\x9d\x48\xb3\xd3\xe2\x3b\x3d\xe7\xab\xa8\x88\xac\x9a\x5d\
\x7d\xdf\xa6\x9e\xd1\xf1\xb4\xa5\x07\x52\x19\xde\x11\xe4\x81\xba\
\x18\x06\xba\x66\x98\x9d\x73\x2a\x46\x4b\xca\xb4\x9a\x58\x4d\x65\
\x6c\x56\x48\x2f\x89\xe8\x25\xa1\x40\x3c\x65\x8c\xa1\x8c\x29\x63\
\x84\x4b\xac\x0f\x26\x0f\x60\xf3\x5f\x16\x6d\x42\x56\x2b\x6b\xc6\
\xc3\x75\x63\x99\x8e\xa1\xe1\x0f\x36\x46\x60\x9d\xaa\x03\xf5\xe8\
\x69\x26\x57\xa0\xb2\x61\xbf\xad\x95\xd3\x1b\xe4\xa3\xcd\x13\x0d\
\x53\x30\xa2\x8c\xd2\x78\xe7\x9a\x55\xfd\x33\xe6\x0d\x4e\x9f\xd9\
\x3b\x7f\x41\xcf\xa2\xc5\x3d\x33\x17\xf5\xcd\x98\x37\x30\x63\xd6\
\xc0\xcc\xd9\xdd\x8b\x16\x77\x2d\x5e\xda\xb3\x68\xd1\xc0\x8c\xd9\
\xc3\xad\xd3\x0e\x2f\x5f\x31\x38\x63\x36\xea\x81\x0c\x41\xa3\x16\
\x48\xc7\x63\x23\x4d\xc7\x07\x12\xcd\xa9\x92\x85\x13\xd5\x2b\xea\
\xd7\x77\x1e\xff\x8b\x1f\x1f\xff\xdd\x1f\x96\x74\x86\xb3\x99\xe9\
\xe9\xf0\x82\xd1\xda\x55\xe5\x7b\x53\xa7\x7c\xeb\x9b\xab\xbe\xfb\
\xa3\x86\x57\x7a\xd2\xb1\x69\x66\x0c\x3b\x70\x7a\x70\x8d\x26\x21\
\xaf\x02\xd9\xd9\xf7\xfd\x65\xfa\x3f\xef\x0b\x69\xc9\xb1\x9a\xe6\
\x4d\x1f\x78\x57\xdd\xc6\xf6\x8b\x3e\x7b\xc3\xec\xbf\xfe\xe9\xac\
\x7f\x7f\xdf\x19\x9f\xfd\x10\x96\x77\x6a\x39\xcd\x8a\x0c\x8d\x4f\
\xd4\x4e\xef\x5a\x76\xda\x78\xe3\xdc\xe6\xe7\x5e\x0e\x67\x92\x98\
\x44\x3a\x4f\x5c\xd9\xbf\x78\x15\xb5\x28\x87\x92\xbe\xae\x13\xbf\
\xf9\xb9\x00\x06\x8e\x96\xde\x7b\xe6\x59\xdb\xde\x72\x63\x28\xa1\
\xb7\xae\x7f\x96\xbb\x8b\x66\x61\xa8\x68\x69\x33\x10\xe9\x59\xb1\
\x6a\x60\xde\x09\xfd\x0b\x39\x2c\x38\xbe\x7b\xd9\x49\x23\xad\xa8\
\x0d\x5a\x10\xb0\xab\x10\x55\x18\x69\xdc\x61\x0d\x8c\xd7\x10\x7a\
\x10\xb5\x1d\x7a\x2f\x16\x4f\x4a\xe5\x2b\xb7\x89\x2b\xd0\xb0\xc7\
\x70\xe4\x11\x4d\x1d\xc6\xe9\xeb\x72\x75\x08\xaa\x41\x06\xf5\x29\
\x17\xd0\xc0\xb4\x1d\x0d\xea\xd0\x4d\xfb\x37\xe2\xd1\x88\xe0\xfe\
\x47\xad\x87\xdc\x74\xd6\xa7\xa1\x42\x1c\xbe\x72\x60\xb0\x0a\x12\
\x72\x77\x33\x61\x0a\x47\x89\xe1\x1f\xcb\x32\xc1\x0c\xe2\xa9\x40\
\x80\x28\x15\x50\x7d\x90\x5f\xac\x01\x41\xc9\xb0\x5a\x27\x8b\xcd\
\xa4\x85\x55\xac\xe7\x84\x69\x1e\xa1\xb7\x59\x48\x2d\x57\x88\xb3\
\xd9\x41\x14\xb6\x69\x8e\x60\x40\x9e\x98\x2e\x13\x1c\x63\xfb\x0c\
\x8a\x73\x3e\xf9\xef\x70\x61\x97\xaf\x42\xd8\x81\x94\x90\x1a\x89\
\x72\xba\x03\xa2\xed\x2c\xde\xc0\x23\xb4\x30\x08\x3a\x07\xc7\xc7\
\xb3\xd6\xd0\x68\x7a\x3c\x8d\x13\x2c\xb9\x02\xe0\xa3\xba\x34\x1c\
\x8d\x62\x63\x69\x0b\xa2\x74\x56\xf6\xe4\x79\xb5\xfb\xfb\x12\x7d\
\x7d\x09\xad\x04\x7d\x87\xea\xd0\xce\xc1\x00\x6d\x50\x3f\x2b\x2b\
\x8b\xcc\xaa\x8f\x95\x46\x9b\xd6\x75\xd7\xee\xeb\xaa\x3c\x3c\x3e\
\x10\x0f\x87\x5b\x2a\x56\x36\x95\xaf\xa8\x2b\x9b\xdf\x54\xbe\xbc\
\xa1\x7c\x49\x2c\x5c\x65\x5a\x69\xc3\x4a\x5a\x56\x66\x38\x79\x50\
\x0f\x46\x4a\xc3\x58\x9d\x50\x8d\x66\x89\x5e\xdf\x95\x7e\xb2\x26\
\xfb\x00\x69\x64\x5f\xed\xf2\xe7\x07\x81\xa9\x85\x4a\x7a\xfb\x63\
\x43\x83\xf1\x01\x7a\x2c\x85\x7e\xdd\x71\xd6\xc9\xcf\x7d\xe9\x63\
\xcf\x7e\xfd\x93\xeb\x3f\xf4\xee\xcd\x37\xbc\xf9\x99\xdb\x3e\xfd\
\xec\xd7\xff\xfd\xa5\x4f\xbc\xff\xe9\xdb\x3e\x73\xe0\xbc\x33\xcd\
\xea\xf8\xbe\x0b\xce\x42\xea\xda\xcf\x7e\x78\xc3\x87\x6e\x1c\x98\
\x33\x9f\xb4\x71\xf3\xc1\x1e\xf6\x3c\x53\x9f\x7a\x6c\xfa\x53\xf7\
\x1b\xf1\x32\x2b\x14\xaf\x3c\xd0\x9e\xc9\x44\xb5\xa4\xd9\xb0\xe5\
\xe5\x96\xf5\xcf\x60\x29\xcb\xea\xb1\xea\xbd\xfb\x82\x13\xa9\x70\
\x62\xdc\x8c\x95\x24\x6a\xa7\xa8\x5a\x90\x86\x0b\x68\xd1\x91\xa1\
\x25\x3f\xff\x01\x0f\x6f\xe3\xe0\x49\x27\x07\xd2\x91\x25\xbf\xfa\
\xa9\x91\xc0\xa2\x92\xa9\xdf\xf9\x4a\x59\xef\xc1\x90\x96\xe2\x65\
\x3c\xdb\xf2\xe2\x8b\x8b\x7e\x7d\xa7\x15\x6c\x9c\xfe\xf0\xb3\xcd\
\x2f\xbf\x8c\x91\x3f\x11\xaf\xd9\x7e\xdd\x55\xc9\x8a\x36\x52\xc8\
\x58\xf0\xe7\x5f\xc6\xfb\x7b\x83\x5a\xa6\x77\xe6\xc2\xf5\x1f\xbd\
\xb9\x6a\x6f\xcf\xb5\xef\x3c\xe3\xc2\x9b\xaf\x6e\x7e\xe9\x19\x76\
\x9b\xce\xd5\xa9\x6a\x9c\x41\x6a\x92\x15\x73\x46\x9b\x96\x23\x8c\
\x35\x2e\x1b\x6f\x58\x16\xd0\x22\xa6\x16\x85\x06\xe9\x99\x0e\x68\
\xa4\xf1\xa6\x9b\xb2\x73\x97\x22\xbf\x39\x05\x81\x99\xb9\x40\x9d\
\x98\x52\xb8\x8b\x1b\x06\xa6\x0d\x05\x61\x0a\x71\x94\x10\x73\x42\
\xcb\x8a\x49\x71\x7b\x42\x01\x38\x85\xae\xc2\xe7\x11\xa4\xbc\x53\
\x12\x2e\xc0\x1f\xc0\x11\x76\xe0\xe5\x88\x0e\x5e\x23\x58\x07\x13\
\x44\x09\xe1\x40\x89\xfb\x01\xa9\xb6\x3c\x45\x31\x0b\xca\x2b\x0c\
\x80\xa4\x0a\x48\x3b\x89\xf1\xf8\xf7\x26\x89\x0f\xcc\x21\x19\x7c\
\x4a\x2a\xc4\x1d\x3f\xdc\xf2\x04\x12\x42\x3a\x8e\xd1\xe8\x93\x14\
\x88\xc1\x2f\xf7\xe5\x21\x3f\xe3\xd1\x01\x79\x90\xf1\x40\xf7\x48\
\x38\x14\x6c\xad\x89\xa7\x4c\xeb\x47\x4f\x1e\x7c\x71\xff\xf0\x2b\
\xed\xc3\xff\xd8\xd8\x33\x34\x9e\xc1\xd4\x55\x59\xc2\x2f\xde\x9a\
\x96\x96\xc9\x1e\x37\xbb\x06\x5b\xb5\xb5\x3b\xfa\xb5\x38\x4d\x0a\
\x58\xf6\x53\x06\x66\x75\xdb\x34\x68\x2d\xdb\x58\x15\x6b\xad\x8e\
\x57\x96\x46\xe2\x11\x63\x2c\xb5\x7f\x73\xbf\x7e\xe7\x9e\x86\xce\
\xb1\xb1\xd1\xe4\x96\x03\x43\xcf\x76\x0c\xaf\xab\x8a\xcf\xb8\x68\
\xde\xf7\xce\x98\xf9\xa5\xd9\xb5\xe7\xd7\x95\x2c\x68\x2e\x5f\x51\
\x12\xae\x4b\x1a\xc3\x3d\x63\x5b\x83\x81\x50\x79\xa4\x05\x8b\xbf\
\x1e\x8c\x99\xa6\xd5\x67\xfc\xb8\x21\xd5\xa1\x94\x17\x07\x8e\xdf\
\x18\x33\x6d\x8f\x3f\x7c\xe5\xa5\x27\xd5\x6c\xdf\x6a\x68\xb1\xd8\
\xd0\xe8\x68\xe3\xc2\x9e\x65\xa7\x6b\x81\xda\xa5\xbf\xf8\xfd\xf2\
\x1f\xfd\xa2\x61\xd3\xde\x54\xcd\xdc\xc3\x27\x9e\x17\x0c\xd6\x2e\
\xbc\xeb\xae\x19\x4f\x3f\x31\xf7\xde\x87\xd3\x65\xd3\xbb\x56\x9d\
\xdd\x3f\xff\x74\xb3\xa4\x0e\x7a\x54\x73\x68\xc1\x58\x5f\xff\x29\
\x5f\xbb\xe5\xc4\x2f\x7c\xfa\xdc\x8f\xde\x10\x34\x0d\x3d\x31\x6c\
\x6a\x61\xb4\xd3\x09\xff\xf1\xc5\x33\x6e\xb9\xe9\xc2\x77\x5f\x1a\
\x9d\x18\x8f\x0f\xf6\x1a\x81\x12\xd8\x1d\x9d\xda\x62\xc6\x42\xe1\
\xe4\x18\xb9\x42\x1a\xa8\x6d\x30\x71\x54\x1c\xd8\x07\x55\xe9\x40\
\x59\xf3\x0b\x2f\x9f\xf6\xc9\x7f\xaf\xd9\xbe\x09\x23\xbf\x67\xf1\
\x92\xee\x45\x4b\xc3\xda\xf8\xc0\xf4\x39\x5b\xde\xfc\xe6\x44\x79\
\x6d\xd8\x1a\x9b\xf5\xe0\x9d\x17\xdf\x74\xc5\xa2\xdf\xfe\x44\x37\
\x69\x1f\xb5\xe3\x4d\x97\xc3\x2b\x1c\xe0\x49\xa1\xa6\x95\xf4\xf5\
\xcc\xfe\xfb\x5f\x40\x20\x69\xb4\xa5\xa5\x71\xed\xa6\xd3\xbf\xfa\
\xb1\x70\x7b\x1f\x16\xfb\xf2\x43\x07\x44\x06\x86\x42\x13\x89\x19\
\xf7\xdd\xbd\xe4\xb7\x3f\x3e\xee\x47\xb7\x21\xac\xfc\xef\xdb\x57\
\xfc\xf7\xb7\xaa\x76\xef\x12\x01\x5f\x70\x27\xe4\xb1\x21\x05\x2f\
\x18\x0e\x02\xba\x6f\x67\xa2\x35\xec\x91\x46\x9d\xd7\x86\x48\x00\
\x6e\x3a\x0f\xb0\x21\x35\xcb\x11\xf5\x09\x40\x1b\xe7\x92\xf4\xbc\
\xf1\x4f\x5c\x19\x2d\x72\x15\x48\x12\xa0\x44\x19\x12\x75\xae\x0e\
\x24\x8a\x4c\x2a\x33\x67\x17\x1d\x4e\x54\x40\x5a\xbc\x79\x0b\x81\
\x74\x96\x71\xc4\xe0\x18\x29\xa1\xea\x53\xa3\xda\xd1\x23\x76\x55\
\x92\x30\x01\x61\x52\x56\x06\x65\x26\x08\x4d\x17\xa2\x18\x8a\x9b\
\x83\x6d\x94\xca\xc2\xe7\x03\x17\x44\x98\x55\xe5\xe5\x3a\x32\xd0\
\x00\x5d\x83\x63\xd8\x8e\x27\xd3\xe6\x86\x03\xc3\x7f\x7b\xb5\xfb\
\x03\x7f\xd8\xfa\xd3\x67\x3a\xfa\xc7\x32\x07\xfb\x27\x12\x69\xd3\
\x32\xb3\x65\x51\xbd\xa2\x34\x52\x5e\x11\x99\x59\x1f\x7f\x60\x6b\
\x9f\x16\xd2\xe1\x0e\xd6\xfd\x4a\xba\x2f\x40\x03\x9e\x66\x27\x2b\
\x3b\xa5\xb6\x64\x7a\x5d\x09\x36\x93\xa3\x09\xe3\x50\xd7\xb8\x65\
\xa5\x63\x21\x2d\xac\x87\xe2\x7c\x0c\xa2\xc3\x56\x56\x33\xb2\xa9\
\x50\x20\x56\x1a\x69\xa8\x8c\xb5\x25\x8d\x21\xd3\x4a\x62\xc1\x2f\
\x8f\xb5\xce\xad\xbb\x70\x4e\xdd\xf9\xc8\x02\x6d\xa1\x50\x43\xc6\
\xd2\x4a\xf4\xc6\xae\xc4\x8b\x35\xb1\x7f\x84\xcd\xcc\x51\x94\x0b\
\x95\x92\x0e\x6b\x13\xd4\x02\xd8\x63\x59\x99\x44\xbc\xce\xd2\x1a\
\x33\x15\x53\x5b\xd6\xbf\x50\xb7\x7f\xe7\xb2\xdf\xdc\x11\x4e\x5b\
\xc1\x92\x86\xf8\x40\xb2\xfc\x70\x47\x46\x8b\x1c\x3a\xf5\xb4\x91\
\x29\x4b\xad\x60\xb3\x11\x6f\xc6\x41\x1a\x1a\x68\x28\x50\x05\x67\
\x33\x25\x25\xe3\x55\x8d\x18\xd8\x2d\xcf\x3c\xbe\xfa\xb6\xcf\x54\
\xed\xdf\x83\x71\x3b\xd1\x54\x3f\xda\xd4\x1c\xd4\xac\xca\xbd\x7b\
\x4e\xf8\xd6\x67\xab\xb7\x6d\x0a\x66\x33\x86\x16\xb5\xc2\xf4\x95\
\x46\x69\xa0\xa0\x61\xf2\xd8\xd7\x46\xeb\x9b\x74\xcd\xc0\x69\x3f\
\x94\x4d\x96\xf5\x74\x87\xc7\x47\x68\x49\x2f\xaf\x7d\xf5\xbd\xef\
\x78\xe9\x96\xf7\x3d\xff\xa1\x8f\xbf\xfc\xb1\xf7\x6e\x78\xef\xf5\
\x2f\x7c\xee\x23\x83\xad\x33\x61\xb4\x7c\xef\xbe\xd0\xc4\x04\x0e\
\x2c\xdb\x2f\xbe\x7c\xe3\x4d\xef\xb3\x22\x8d\xd4\x96\x8c\xe6\x57\
\x9e\x2b\xed\xef\x0c\xa2\xe6\x34\xbd\xf5\xf9\xb5\xa7\xdd\xf6\xe9\
\xf8\xae\x43\xd0\xd6\xdf\x36\x7b\x60\xde\x2c\x32\x46\xb6\xf5\x70\
\x72\x62\xc6\x13\xf7\x1d\xf7\x5f\x5f\xc3\x8e\x03\x61\xe9\x1d\xdf\
\x5b\x76\xc7\x7f\x55\x1e\xdc\xc7\xa9\x3e\x40\x6f\x94\xb1\x2c\x56\
\x84\x09\xb8\x69\x41\x10\x23\x5f\xfa\x2e\xba\x32\x16\x34\xee\xc9\
\x0a\x22\x01\x14\x66\x2b\x04\xba\xae\xa2\x58\x5e\x06\x3f\xf2\x81\
\x86\x66\x5c\x11\x75\x7c\x62\xf5\x4a\xbf\x23\x20\x10\xa6\xa4\x8a\
\x58\x21\x44\x39\x00\x19\xc9\x82\x2b\x8d\x45\x2e\x82\xa3\x8d\x14\
\x15\x57\xa2\x20\x42\x2c\x05\xb5\x36\x30\x1b\x2a\xe5\xa2\x58\xb4\
\xd9\x32\x4e\x12\x01\x34\x58\x6e\x0e\x20\x51\x5c\x7d\xc1\x12\xa8\
\x1c\x09\x88\xca\x15\x01\x9b\x49\xdb\x23\x1b\x24\x5c\x1c\x94\xad\
\x08\x7a\x87\x12\xed\xdd\xa3\x63\x29\xa3\x6f\x24\x99\x4a\x5b\x19\
\x33\xfb\xf2\xde\xc1\xbd\xbd\x09\xf8\x3a\xb5\xbe\x54\x33\xb3\xa3\
\x89\xcc\x44\xd2\xb0\x32\xd6\x15\xcb\x1b\x77\x77\x8d\x1b\x29\x33\
\x84\xd5\x5f\xcb\x1a\x19\x13\x49\xd0\x10\x0d\x07\x9b\xaa\x62\x0b\
\x5a\xca\x13\xa6\x39\x30\x96\x3e\xd4\x9f\x18\x1a\x4f\x63\x6e\x90\
\xb7\x04\xb0\x6a\xf0\x5f\x46\xa4\x93\x0d\x6a\x29\x1a\x2c\xeb\x1d\
\xdf\xbc\xb1\xeb\x77\xbb\xfb\x1e\x1c\x4c\xec\x3f\x38\xfc\x7c\xfb\
\xd0\xb3\x43\x89\x7d\xc3\xc9\x43\xe3\xe9\xde\x48\xa8\xaa\x22\xb6\
\xe8\xa2\xa9\xe9\x93\x1a\xbb\xe8\xa8\x68\x04\xc7\xb5\x17\x4a\xc6\
\x3b\x61\x45\x95\xa4\x10\xa4\x3a\x1b\xd2\x12\xdd\xcb\x96\x3d\xf7\
\x89\x5b\x27\x1a\x1a\x22\xda\xc4\x48\x6b\x5b\x55\x6f\xf7\x75\xef\
\xbf\xe4\xec\x9b\xde\x74\x68\xc9\xf1\x19\x2d\x56\x72\xa0\xe7\xa2\
\x77\x5e\x31\xfd\xb1\x7b\x97\xfc\xcf\x7f\x66\xd3\xfa\x44\x75\x5d\
\x32\x5e\x72\xe6\xad\xef\xb9\xf2\xdf\x2e\xa9\xe8\xd8\xa7\xaa\x87\
\x3f\x30\x02\xd3\x95\xe5\xeb\x3f\xf2\xee\x81\x99\xb3\xb0\x44\xcf\
\xb9\xfb\x0f\x8d\x2f\xbd\x00\x9d\x83\xf3\x66\xbf\x72\xcb\x7b\x12\
\x95\x35\xd8\xb1\xcf\xbc\xff\x6f\x53\x9e\x7b\x12\xe7\xf9\x91\x96\
\xb6\x50\xca\x08\x8f\x8d\x59\x41\xda\x5d\xa3\x8d\xe9\xaa\x69\xfd\
\x8b\xe6\xbe\xf2\x81\x1b\xb7\x5e\x75\xed\xee\x8b\x2f\xca\xc4\x68\
\x83\x80\xf1\xb9\xfd\xda\x2b\xfb\x17\x9f\x3a\x3a\x6d\x55\xfb\x39\
\xe7\xf6\x2e\x3a\x45\x37\x5a\xcb\x0e\xf6\x19\xa1\x38\xf6\x4e\x10\
\x80\x5a\xec\x59\xaa\xf7\xec\x9b\xfe\xd0\xba\xe8\x48\xee\x9d\xba\
\x91\xd6\x96\xd1\xe6\x29\x46\x34\x9e\xaa\xa8\xcc\x9a\xc1\xb4\x56\
\x06\xbb\x86\x1e\xdf\xf2\x9e\x37\x8f\x4f\x99\x4e\x15\x40\x63\x0a\
\x5d\x34\x98\x2c\xab\x1e\xaf\xad\x9f\xa8\xa9\xb5\x43\x7d\x26\x52\
\x82\x24\x28\x91\xaa\x72\x03\x4c\xe9\xd7\x2a\x6e\x83\x4c\x7a\x41\
\xdd\x5a\x3a\xb7\xf4\x6c\xc5\x2e\x00\x04\xd2\xd8\x09\x66\xd3\x79\
\x21\x63\xa5\xe8\x8d\x6f\x10\x59\x22\x14\x4d\x44\xda\xa4\x5f\xf2\
\xca\x79\x00\x5a\x7c\xca\x83\xa4\xd2\x08\x73\x4d\x01\x80\xa4\x4a\
\x16\x5c\x1d\x38\x7c\x87\x06\x84\x56\x39\xed\x12\x01\x0e\x93\xa5\
\xfc\xc0\x3a\x1c\x01\x51\xcb\x23\x5c\x76\x2e\x48\x42\x1d\x89\x6f\
\xea\x7c\x84\x74\x3b\x89\x12\x28\x1b\xf3\x25\x9a\x67\x4b\x62\xf6\
\x95\x40\x94\x0b\x60\x38\x7c\x56\x9e\x2b\x94\xf0\x05\x8a\x55\x00\
\x24\x28\x09\x2f\xc0\x6d\xef\x19\x19\x4f\x19\xf4\x64\x16\x5e\xd1\
\x0d\x3c\xac\x5d\x81\xed\xdd\x63\x58\xf3\xab\xe2\xa1\x70\x94\x16\
\xf9\x6c\xca\x3a\x79\x6e\xcd\xc1\xc1\xc4\x86\xdd\x83\xe5\x25\x61\
\x2c\xf8\xa1\x40\x20\x12\x0f\x47\x63\x91\xaa\x92\xc8\xd4\x9a\xb8\
\x61\x5a\xfb\x7a\x27\x06\x46\xd2\x23\x09\x43\x8f\x04\x23\xe1\x80\
\x96\x48\x0f\x26\x2a\x34\x2d\x8e\x2e\x83\xd5\x1e\x27\x95\x6c\xc0\
\x18\x0d\x8e\x8f\xeb\x46\x4f\xe6\xe0\xdd\x3b\x6f\xde\xd4\x77\x67\
\x4b\xc5\x71\x61\xbe\x05\x88\x63\xff\xc0\xc4\xae\xde\xb1\xad\xc3\
\xa9\x03\x87\x46\xd6\xf5\x61\xc3\x61\x55\x65\x35\x6c\xfe\xa3\x66\
\x60\x3c\x3e\x42\xcb\xd7\xe4\x08\x6b\x66\xdf\xf2\x25\x5b\xdf\xfe\
\xb6\x44\x5d\x8d\xae\x59\x66\xbc\xb4\xa2\x73\x6f\xf5\xda\x27\xcb\
\xba\x0f\x76\x9f\xb0\x7c\xff\x05\x67\x46\xb4\x11\x7d\x70\x7c\xcd\
\xcd\x1f\xa9\xdd\xb0\x51\xd7\x12\x5d\xcb\x57\x04\xad\xf4\xbc\xc7\
\xff\x58\xbe\xee\xd5\xd6\x27\xfe\x09\x0d\x52\xb5\xac\x2c\x10\x30\
\xb4\x9e\x65\x27\x6c\xf8\xc0\xf5\xc9\x78\x8d\xbd\x9b\x08\x74\xaf\
\x5c\xdd\x79\xd2\xf9\x7b\x2e\x3f\x57\x6e\xd4\x41\x0e\x87\xf0\xa1\
\x39\x33\xd2\xe5\xd5\xa1\xc4\x44\x16\xe3\x97\xb3\xf2\xed\x1b\xcd\
\x0c\x57\xee\xb8\xf6\x9a\x57\xfe\xed\xbd\x89\xfa\xba\x70\x7a\x02\
\xc3\xb5\x73\xd9\xca\x4d\xef\x7d\x6f\xaa\x6a\x86\x11\xab\xaf\xda\
\x35\x3c\xf7\xee\x07\xce\xfc\xe8\x7b\x97\xff\xec\x67\xd5\xfb\xf7\
\x46\xb4\x44\x46\x8f\x4f\x94\xd4\x46\xb4\xf1\xa6\xed\xaf\x9e\x7a\
\xdb\xc7\xaf\xbc\xe2\xd4\x53\x3e\xfb\xe1\x86\x2d\x2f\x43\xd5\xe0\
\xbc\xb9\x2f\x7c\xe6\x43\x8f\xfd\xd7\x57\xf6\x9f\x77\x7a\x30\x68\
\x84\xb5\x24\xb6\x21\xdb\xde\x72\xe5\x9e\x4b\xaf\x4a\x55\x62\xcf\
\x42\x00\x07\x93\xcb\xd6\xeb\xaf\x79\xea\xdb\x9f\x7f\xfe\x8b\x1f\
\x43\x78\xee\xcb\x1f\x7f\xee\xab\xb7\xf6\x2f\x9a\x87\x24\xff\x6e\
\x61\xf7\x16\xe9\x4b\xaa\x3f\x30\x84\x76\x20\xdd\x5a\x8d\x7c\x79\
\x86\x2f\x00\x53\xae\xc0\xfe\xc4\xb6\x3f\x77\xfc\xe8\x8e\x7d\x5f\
\xb9\x63\xff\xd7\xfe\xf7\xc0\xd7\xdd\xe1\xe7\xed\xdf\x40\x00\x81\
\xa4\x9f\xed\xfb\x1a\xae\x08\xe0\xfc\xf2\xe0\xd7\x7f\x75\xe0\xb6\
\x3f\xb6\x7f\xef\xde\x8e\x9f\x3f\xdd\x7b\xef\xe6\xe1\xb5\x7b\xc6\
\x37\x0f\xf1\x1b\xe0\x6e\x9f\x00\xe1\x80\x20\x57\x18\xc2\x17\xb8\
\x25\x05\xe4\x5c\x41\x76\x01\xf8\x8a\xb2\x4d\x28\x8d\x5e\x9d\x5e\
\xb0\x3a\x12\x56\x32\x2a\x6e\x6b\x22\x92\xc7\x27\x8d\x20\x7b\x5b\
\xc1\x02\x04\xe6\xe7\x32\x3a\x51\xd0\xc8\xcb\x04\xfe\xab\x24\xca\
\xe0\x80\x45\xc0\xa3\x5b\xfc\xbc\xc6\x61\xd9\xe7\x69\x45\xcd\x2c\
\x79\xc8\xcf\x7e\x24\x40\xfa\x40\xcf\x88\xa2\x60\x49\xd3\xb0\xf2\
\x83\xee\x1b\xcb\x94\x46\x43\x1d\x83\xc9\x9a\x32\x0c\x2b\x6b\xee\
\xf4\xca\x68\x24\xf8\xc4\xab\x3d\xd9\xa8\x3e\x9a\x36\xfb\x47\xd3\
\xa1\xa0\x76\xce\x69\xf3\xdf\x7c\xd1\x92\xea\x58\x70\xd7\xa1\xd1\
\xbe\xe1\x24\xfd\xaa\x47\x90\xa6\x40\x33\x69\xa4\x93\x5a\xed\xf4\
\xf9\x4b\xa7\x6d\xcf\x5a\x5d\x59\x2d\x8c\x91\x6f\x64\x33\x51\x2b\
\x76\x82\x7e\xea\xc9\xe1\xb3\x66\x18\xcd\x53\xc2\x33\xbb\x26\xb6\
\x47\x2a\x66\x56\x97\x2f\x1c\x49\x75\x26\xad\xd1\x84\x36\x91\xd1\
\xd2\x56\x36\x1d\xd0\xc6\x36\xf4\x37\xbc\x3a\x50\x03\x8f\x2c\x2d\
\x15\xd3\x9a\xc3\x26\xdf\x74\x98\x04\xd9\x6c\x5a\x8b\xa6\xca\x9a\
\x83\xd6\x8c\x4c\xac\xcc\xa0\xf3\x45\x20\x94\x18\x4d\x05\x2a\x23\
\xd6\x58\xb2\x79\xfa\xe6\x0f\xbc\xa7\x73\xce\x71\xba\x96\x0a\x9a\
\x19\xdd\x4a\x27\xc3\x55\xdb\xdf\xf1\x96\xae\xe3\x4f\x96\xe6\x0f\
\x25\xb9\x06\xa8\x0e\xb8\xba\xb1\x0e\xa7\x92\x89\xda\xc5\x5d\xc7\
\x9f\xfd\xca\xcd\xef\x4a\x95\x56\x84\xb5\x84\xa9\x45\x06\xe7\x2c\
\x49\xc7\x67\xef\xbc\xfa\xba\x83\x27\x9c\xa4\x6b\xc9\x20\xdd\x05\
\x09\xb7\x9f\x71\x76\xaa\xa6\x29\x32\x41\x13\x84\xd2\xc1\x84\x19\
\x2d\xcf\x94\x2c\xac\xde\x3d\x34\xe7\xcf\xf7\x05\x2c\x63\xac\xac\
\x71\xfd\xc7\xde\x97\x0d\x4d\x43\xd2\xb9\x9f\xba\xfe\xcc\x5b\xdf\
\xbd\xf2\x07\xdf\xa8\xdf\xfa\x62\x34\x35\x84\xc9\xa5\x6f\xfa\xfc\
\x97\x6f\x7d\xff\xba\xcf\x7e\xb8\x7d\xd5\xc9\x30\x14\xca\x24\x62\
\xc3\x7d\xb3\x1e\xbc\xeb\x8c\xaf\x7e\x50\xcf\xa4\x2c\xbd\xa2\x73\
\xf5\x05\x7a\x4a\x9f\xfe\xc4\xe3\x21\x6b\x02\xa5\xd8\x7d\xd6\x05\
\x9b\x6e\x7a\x77\x30\x4d\x8f\xee\x1c\x60\xef\x30\x38\x7b\x41\xef\
\xb2\x53\x7a\x96\x9f\x44\x61\xe9\xc9\xbd\x4b\x4f\x4c\x57\x56\xc9\
\x3c\x55\x08\x38\x8a\x4e\xc8\x9d\x97\x80\x9e\x23\x50\xc9\x2e\xb0\
\x90\x45\x12\xe8\xd9\xa1\x90\x6a\x0c\xb7\xe8\x8e\xb1\x0d\xff\xb3\
\xf7\x4b\x2f\x0e\x3e\xba\x7f\x62\xfb\xde\xf1\x2d\x7b\xc6\x36\xab\
\x30\xee\xba\xaa\xb0\x69\xf7\xe8\x26\xa1\xf7\x8d\x6f\xdd\x39\xb6\
\xe1\xe5\xc1\xc7\x9f\xe8\xbd\xfb\xee\x8e\x9f\xfd\x6a\xff\x37\x7f\
\xba\xf7\x0b\x3f\xdd\xf7\xf9\x5f\x1f\xf8\xf6\x63\x3d\x77\x75\x25\
\xdb\xd9\x88\xb2\xe2\x76\x51\x20\x7c\x40\xc5\xbd\x90\x01\xe6\x1e\
\x66\xf2\x40\xc1\x81\x3b\x2f\xc4\x04\x12\xcd\x83\x23\x89\x74\x25\
\xe7\x56\x6b\x03\x51\x49\x92\xf1\x2f\xa9\x9c\x8b\x38\x00\xe9\xb2\
\xc1\xa9\xb8\x10\xec\x92\xd8\x9f\x6c\xcb\x26\x24\x90\x69\x10\x6c\
\x45\xd9\x92\xeb\xeb\x01\x14\xec\xef\xa6\xaf\xe5\x81\xe4\xab\x20\
\x40\xbf\xcc\x39\x4e\x23\x7c\x68\xcc\xa8\xaa\x8e\x2f\x6b\x2d\x7b\
\x7a\xfb\x00\x76\xf2\x34\xbc\x81\x60\x20\x99\xb1\xf6\xef\xef\x7d\
\x6e\x7d\x3b\xe6\x82\x39\x53\xca\x2b\xcb\x79\xd3\x8b\xe1\x90\xb0\
\x02\xb1\xba\xf3\x4f\x9e\xf9\x85\x6b\xd6\x4d\x2b\xfb\x4c\xd6\xd4\
\xe3\xe1\x46\x13\xbb\x3c\x3d\xd0\xa2\x35\x5d\xb0\x75\xe2\xc4\xe7\
\x9e\x3f\xef\x95\x03\xd7\x6c\x36\x2f\xdd\xd0\xbf\x60\xfb\xf6\x93\
\xeb\xae\x6f\xab\x3a\xb9\x2d\xb6\x64\x49\xf8\x84\xe6\xf8\xa2\x44\
\xc0\x0c\x86\x4a\x74\x6c\x1f\xb3\x7c\xff\x2c\x98\x0a\x26\x5b\x34\
\x8b\xde\x63\x9b\x04\xd9\x60\x30\xa3\xc5\x17\xfc\xf5\xb7\xe7\x7c\
\xfc\x6d\xd5\xbb\x76\xe1\x1c\x8e\x4a\x8f\x04\x4d\xf0\x51\xaa\xe0\
\xfc\x05\xda\xdc\x13\x5f\xfd\xb7\x1b\x93\x25\xd5\x18\xb1\x18\x0c\
\x3d\x2b\x97\x8d\x37\xcf\x8e\x0f\x24\x12\xe1\x1a\x48\x62\xa3\x90\
\x57\x93\xa1\x64\x12\xd7\x74\xc5\xec\xc3\xab\x4f\xc5\x41\x1d\xb9\
\x30\x26\x67\xdf\xf7\x77\x30\xc7\x9b\x96\x6f\x7f\xcb\x55\xe9\x48\
\x79\x50\x4b\xc3\x50\x28\x4d\x3f\xb1\x8d\x33\x10\xe7\x83\x27\xb9\
\x16\xb4\xc2\xd1\x05\xf7\xfe\x25\x32\x31\x84\x46\xdb\xf6\xf6\x6b\
\x33\x65\xd3\x4a\xfa\x7a\xa7\x3e\xfd\x60\x78\x7f\xaf\x1c\xe0\x47\
\x1b\xa6\xec\x3d\xf5\xec\xe7\x6f\xf9\xf8\xb3\x5f\xfe\xe4\x81\xf3\
\x2e\xec\x5c\x7d\xe6\x8b\x9f\xbe\xf9\x99\x2f\x7e\x6a\xfb\x45\x57\
\x0c\x4d\x9d\x61\x86\x23\x87\xe6\x1e\x6f\x05\xa0\x5f\x37\xf5\xc6\
\xd9\x77\x3f\x5c\xd6\xd7\x6d\x69\xd1\xbd\x6b\xce\x79\xe1\xd3\xb7\
\x68\x46\x93\xc9\xaf\xf7\x09\x30\x61\xa5\xcb\xcb\x33\xa5\x53\xb3\
\x81\xe6\x74\xf9\x7c\x84\x4c\xf9\xdc\x74\xe9\x5c\x23\x5a\x0a\xcf\
\x95\x50\x3e\x94\xab\x4e\xd9\x9d\x2e\x97\x07\x7a\x3a\x8f\x25\x87\
\xbe\xd3\xcd\x84\x0e\x8f\x50\x68\xb8\xc6\x21\x60\x69\xcf\xf4\xde\
\x2b\x1b\xf8\x7c\x88\x66\x4f\xdd\x1e\x01\x03\xe9\x9e\x8d\xc3\xcf\
\xdd\x77\xf8\xd7\x3f\xda\xf3\xd9\x5f\xee\xbb\xed\xc0\xf8\x36\x54\
\x29\x3d\x93\xc7\xc2\x47\xe7\x47\xfa\x7e\x27\xdc\xd4\x83\x7a\x08\
\xff\x68\x90\xc9\x1d\x30\xba\xaa\x05\x52\x08\x54\x30\xc4\xb2\x70\
\xdb\x92\x80\x2d\x2c\x45\xb3\x74\x55\x7c\x0c\x4e\x4e\x0a\x98\x26\
\x85\x2c\x1d\xa7\x9d\x80\xe1\xcb\x8b\x19\xac\xf3\x57\x8f\x03\xf4\
\xb2\x80\x04\x4a\xa5\x28\xdd\xdf\xa1\xb7\x03\x58\x2d\x13\x14\xe0\
\x9e\xf2\x86\x66\x00\x4c\xbd\xa8\x38\xfa\xb2\x06\x4d\x08\x38\x00\
\xa3\x00\xd8\x3a\x22\x15\xfe\x91\x3a\x64\x30\xd1\x99\x82\xd9\x14\
\x36\x69\x3a\x3d\x92\x85\x80\x09\x01\x9a\x48\xf8\x91\xbe\xbc\x10\
\xa1\xfc\xa2\xa7\xa6\xd8\x81\x90\x63\xbc\x17\xf0\x04\xe1\x17\x06\
\xb4\x91\x4f\xc8\x6a\xc9\x34\x9d\xdb\x9d\xae\x40\x08\x68\x46\xca\
\xe8\x1a\x4e\x2e\x99\x52\x91\x1a\x49\x9e\x3b\xaf\x66\xc3\xc1\xd1\
\xc1\x91\x24\x2d\xe1\x0e\xf4\x60\x77\x47\xdf\x8e\xad\x9d\x83\x13\
\x66\xef\x68\x3a\x16\x0e\xce\xad\x8d\x45\x4b\x6b\x16\xae\x98\xf9\
\x89\xeb\xd6\x5f\xb2\xec\xfd\xad\xf1\x9f\x94\x87\x6a\x2b\xe3\x8b\
\x22\xc1\x32\x3d\x10\x6d\x28\x5f\xae\x5b\xd6\xc4\xbe\x87\xc6\xba\
\x36\x65\x3a\xb7\x84\xf6\xbf\xda\xbc\x6f\x7f\xe5\xe3\x3f\x9a\xbf\
\xf1\x95\xab\xbb\x66\x5e\xf4\xfc\x8e\x73\x9e\xdf\x7a\xc5\xcb\x3d\
\x57\xf5\x2f\x6a\x2b\x3f\x2e\x1d\x41\x53\x24\xc7\xcd\xf6\xe6\xb2\
\x13\x23\xc3\xcb\xc6\xa8\x16\xa5\xaa\xa9\xce\xf2\x02\x75\x3e\x4a\
\x32\x4a\xba\x3a\xa7\x3d\x76\x6f\x6c\x74\x90\xaa\x3f\x6b\x96\xc4\
\xb0\x44\xe1\x74\x5f\xd1\x72\xb0\xbd\xad\x3c\xde\xbc\x79\x1f\xaa\
\x0e\x09\x68\x9f\xba\x1d\x5b\x74\x23\x9a\xac\x6f\xc0\x2e\x00\x79\
\xc1\xa5\x2a\xa2\xd6\xa0\x4a\xc0\x7f\x23\x1e\x8b\x24\x93\x68\x96\
\xea\x3d\x43\x25\x03\x83\x19\x0d\x27\x67\x6d\xf6\x7d\x7f\x5c\xfc\
\xd7\x9f\x6a\xa1\x98\x6e\x54\xd0\xdf\x9f\xd0\x22\xe8\x5f\xf3\xfe\
\xfc\x87\x70\x62\xcc\x8c\xc6\xac\x30\xad\x88\xd0\x4f\x7d\x8c\xc3\
\xb4\x27\x1f\x6a\xb9\xef\x11\xb8\x96\x09\x95\xb6\x3c\xf3\xe2\xa9\
\x9f\xfc\xc4\x95\xd7\xad\x3e\xe5\xb3\x1f\x18\x9b\xd1\xf8\xea\xbb\
\x6f\xe8\x5c\x7d\xdc\xe0\xdc\x99\x23\x53\x5b\xf5\x44\x6a\xea\xa3\
\x2f\xcd\xfc\xfb\x33\x33\x1f\x59\x3b\xeb\x9e\x67\x4a\xbb\xfa\x26\
\xea\xeb\xfa\x96\xce\x5b\xff\xc1\x77\x6d\xbe\xe9\xba\x00\xbf\x2f\
\x7f\xfc\xcf\xff\x63\xfa\x93\xf7\xe1\xb4\x6f\xe8\xd1\x6c\x38\xb8\
\xe4\xe7\x7f\x39\xf7\xa3\xef\xb8\xfc\x5d\xe7\x56\x1c\xdc\x0b\x8b\
\x34\x7e\xd1\xe9\xac\xe0\xfc\x3f\xff\x7a\xe9\xef\x7f\xb8\xe2\x97\
\xff\xe9\x84\xda\xed\xdb\x78\x10\xf8\xf4\x13\xaa\x37\xea\x8a\xf4\
\xa2\x11\x3d\x2a\xa5\x69\xd1\xc4\x6c\x89\x7e\xce\x9d\x4c\x7a\x38\
\xda\x99\x7a\x1a\x57\x0c\xac\x20\xd0\xd8\x93\x31\x46\x4c\x0a\x59\
\x6d\x20\xd3\x83\xf4\xc9\x40\xf9\x0b\xe0\x66\x8a\x2e\x17\x26\x8c\
\xd1\x8d\xc3\xcf\xff\x60\xd7\x67\xff\x76\xe8\x67\x29\x8b\x76\x56\
\x92\x4e\x57\x2e\x32\xe7\xa0\x45\x11\xff\x73\x59\xc5\x49\x06\x0b\
\x28\x8e\xd0\x08\xe8\x46\x0e\x8d\xf3\x00\x82\xca\x62\x07\x27\x55\
\x2c\x22\xd0\x03\x7d\xac\xde\x34\x16\xc9\x12\x05\x4e\x42\x8c\x46\
\x34\xf3\xe0\x12\x0e\x45\x12\x48\x09\xfa\x93\xf8\xc5\x29\x7c\x60\
\xa2\x33\x13\x09\xf0\xef\x79\x20\x95\xf6\x07\xa8\x5d\xd6\x1f\x0a\
\x87\xb1\x3d\x20\x2e\xab\xe3\x12\x9a\x68\x24\x32\x49\x6e\xd2\xb6\
\x05\x3c\x32\xce\x9b\x0f\x52\x4c\xba\x0b\x82\xf0\xf3\x42\x9e\x8c\
\x1d\xa0\xba\x2c\x56\xb8\x32\x50\xed\x95\x56\x95\x4f\x5f\xd4\x76\
\xc1\x99\x73\xf6\xf4\x4d\xec\x3c\x34\x8a\xdd\x28\xb3\x73\x68\xae\
\x29\x89\x94\xc7\x30\x15\x0f\x0d\x27\xba\x3b\xc6\x76\x26\xea\xae\
\x3e\xaf\xe6\xf6\x4b\xff\x7e\x6a\xd3\x1f\xe3\x91\x61\x23\x30\xed\
\xb8\xb6\x5b\xd7\x4c\xbd\x19\x0b\xfb\xac\xda\x73\xe1\x74\xc9\xd0\
\x21\x1a\xc1\x51\x5a\xc8\x8d\xb8\x96\x8c\x6b\xe9\xac\x35\xb1\xe5\
\x37\x65\xc1\x8a\xf8\xe8\x88\x36\x70\x28\xd2\xb9\x7d\xee\xfa\x27\
\xcf\x7a\xd9\x0c\xea\x8d\x43\x0d\xfd\xcd\xe5\xc7\x37\x0e\xbd\x67\
\xa4\x5b\x4f\xd6\xb5\xb0\xb7\x28\x87\x72\xdb\x69\x29\x0a\xa6\x49\
\x73\xb7\x66\xa5\x4a\x2a\xfb\xa7\xcc\x35\xc2\x31\x5a\xde\xe9\x05\
\x30\xcc\x18\x9a\x11\x2d\x89\x87\xc3\x25\x87\xf6\xcf\xfa\xdb\x5f\
\x22\x09\xec\x26\xb2\x96\xa6\x47\x87\x46\x56\x7c\xff\xf6\xba\xcd\
\x1b\x53\x91\x0a\xd2\x00\x9d\x76\x15\x09\xac\x90\x4e\x53\x6e\x20\
\x30\xfb\xc1\xbf\x04\xd3\x29\x3e\xcf\x60\xa0\x44\xe7\xff\xec\x27\
\x65\x87\xdb\x5b\x9e\x7f\x1e\x7b\x1c\x1a\x2a\x9a\x51\xb5\x67\xc7\
\x94\xe7\x1e\x31\x4a\xca\x2c\xfe\x89\x7a\xb4\x16\x39\xca\xaa\xe6\
\xfe\xed\x37\x98\xd0\x91\x51\x37\x92\x6d\x5b\x9e\x6f\xd9\xb3\x36\
\x36\x32\x58\x32\xd6\x77\xf0\xcc\x53\x07\x67\xce\xa8\xd9\xbe\xb3\
\x65\xed\x4b\x0b\x7e\xf7\xb7\x95\xff\xf3\xbf\x4b\xfe\xf8\xcb\xd5\
\x3f\xfc\xe2\x49\xdf\xbe\x75\xc9\x9f\x7e\xb1\xfc\x67\x3f\x5f\xf8\
\xab\xbf\xcc\x7c\xe8\x9f\x53\x5e\x78\x31\xd1\x38\x0f\xfd\x2b\x3e\
\x36\x32\xf3\xaf\xbf\xc3\x11\x03\x65\x0c\x9a\xc6\xd4\x67\x9e\x5b\
\xfe\x87\xff\x6e\xde\xf4\x5c\xd3\x86\xe7\x6a\x76\x6e\xa1\x4a\xa1\
\x06\x0b\x86\xc7\x47\xa7\x3d\x7a\xdf\x8a\xff\xf8\xfa\xd2\xef\xff\
\xa7\x13\x2a\x0e\xec\xe3\xca\x22\x88\x57\xae\x00\x36\x2f\x4b\x3c\
\xce\xa9\x62\x64\xc0\xd3\x84\xca\x2a\xed\xc0\xbd\xd8\x03\xbb\x57\
\xd9\x21\x1f\x85\x1c\xa0\x90\x29\x7e\x09\xc4\x56\x01\xb0\xa1\x78\
\xb2\xe7\x1f\x3f\xd9\xf3\xe5\x61\x63\xc0\x36\x47\xa2\x74\x1b\x99\
\xbe\x4e\x42\xaf\x94\x20\xca\x93\x19\xc4\x79\x94\xd0\xcf\x54\x23\
\x29\xa7\x8e\x3c\xf6\x12\x93\x80\x46\x9a\xaa\x31\x45\x23\x0f\x0d\
\x38\x19\xcd\x8c\x1c\xcd\x95\x25\x3e\xc0\x19\x7e\x04\x60\x60\x7f\
\xc2\x0e\x90\x6f\x76\x2a\x8d\x79\x8c\x62\x6c\x60\x68\xfa\x21\x87\
\x65\xc1\xe1\x5c\x59\x2d\xa3\x85\xcc\x60\xd8\x0a\x84\x30\xb5\xf2\
\x38\xa7\x59\x89\x04\xec\xef\x47\x00\x20\x90\x93\x4c\xb3\x6f\xc7\
\x00\xf6\xa1\x30\xc0\x9f\x19\x4d\x95\xf9\xd5\x8e\xce\x1e\x0d\xaf\
\x5c\x3e\xad\xba\xa9\x66\xe1\xb2\xe9\x7b\xc7\x4c\xcd\xe0\x1f\xd9\
\x73\x90\xd5\x4a\x22\x7a\xda\xb4\x8c\xb4\xa9\xd1\x0d\xff\xf2\xba\
\x05\x8b\xbf\xbc\x7a\xef\x37\x92\xef\x5f\xf1\xcc\x17\x4e\x7c\xb1\
\xff\xd2\xbe\xa5\xab\xab\xaf\x98\x53\x77\xd1\xf4\xea\x33\x56\xb5\
\xbe\x0f\x83\x7c\x78\x78\xfd\xbc\xce\x21\x52\xe2\xe8\x81\xd1\xb0\
\x66\x8e\x8f\x25\xfb\xd6\x07\x96\xbd\x29\x63\x68\x19\x1c\x7f\xab\
\x8d\xf8\x23\x1b\x4e\xf8\xf4\xbe\x79\xcf\x9c\x5c\xdd\x77\x4b\xff\
\xfe\x8a\x91\xea\x9a\x4c\x05\xbd\xf9\x47\x6e\x51\x1e\xaa\x0c\x87\
\x40\xd0\xd3\xe9\x40\x2a\x15\xd2\x92\x1d\xa7\xaf\x79\xe2\x7b\x5f\
\x19\x6d\x6b\x09\x6b\x49\x34\x4b\x06\x22\xf8\x30\x8c\xec\x8b\x2f\
\xb7\xde\x74\x53\x64\x60\x10\xc3\x75\xc7\x55\x97\xf7\x2e\x5f\x84\
\xed\x55\xeb\x53\x8f\xcc\xfb\xd5\x4f\x03\x54\x2e\xd4\x02\x69\xb3\
\x03\x5b\x0a\x87\xb1\x8b\xae\xde\xb1\xa9\xf1\xe9\xa7\x21\x3c\x32\
\xbd\x6d\xdf\x79\x67\xc2\x44\xbc\xaf\xfb\x8c\x0f\xdf\x38\xed\xa1\
\x7b\x31\x48\xc6\xea\x1a\xd3\xd1\x12\xd4\xe0\xec\xbf\xfe\x3e\xde\
\x7b\x18\x8b\x3f\x65\x57\x0a\xc8\x3b\x8d\xfe\x50\x01\x75\xc2\x4c\
\xb8\xa4\xa7\x75\xd1\xde\xe3\x4e\xdf\x71\xe6\x25\x2f\xde\x74\xf3\
\xc1\x73\x2e\x2f\xef\x4c\x95\x0d\x77\x07\x0c\x2b\xa4\xa5\x82\xd9\
\x4c\x20\x9d\xc6\x02\x6c\x59\x21\x14\x04\x9b\x11\xe4\xca\x66\x82\
\xb1\xd1\x84\x19\x6b\x44\x75\x61\xb1\x4d\xc5\xca\x42\x5a\x02\xa7\
\x7a\x14\x01\xdd\x63\x2c\xda\xd4\xd7\x3a\x7f\xc7\x19\x97\xc0\x31\
\x98\xa2\xce\x45\x40\xcd\x3a\xa5\xe0\xf1\x4c\x35\xa6\xaa\x9b\x7b\
\xaa\x07\x0e\x4f\x04\xdc\x70\xfa\x36\x68\xd4\xb2\x7e\xfe\xbb\x72\
\xbf\xde\xeb\x8b\x67\x07\x1e\x1a\x37\xd5\x8d\x13\xe5\x86\x03\x1f\
\xfd\xc7\x8c\xa1\x4c\xdf\xce\xb1\x8d\x4b\xab\xd6\xc4\xf4\x38\x14\
\xc2\x33\xb8\x05\xd8\x5e\x12\x21\x3e\xb3\xc3\x2a\x0a\x86\xca\x6f\
\x97\x55\x45\x8a\xc1\x95\xee\x16\x96\xd2\x40\x2d\xae\xe0\x4b\xed\
\xe0\xca\x9f\x94\xe4\x08\xcb\x27\x4d\xa4\xfc\x06\x15\x00\x0e\x52\
\x01\x08\xcb\xbd\x00\x96\x51\xc3\x1b\x24\x66\x0f\xf4\x41\x83\xb6\
\x11\xac\x0e\x66\x70\x12\xd1\xb2\x61\xfe\xae\x24\x14\x80\x83\x6e\
\x4e\xf2\x02\x51\x7a\xac\x40\x8e\x82\x80\x4b\x28\xa4\x6f\xdc\xdb\
\x43\x0f\x70\x10\x11\x70\x69\x5b\x5b\x2a\xeb\x6a\xca\x4a\xb3\xc6\
\xf6\x9d\x87\x87\x07\xb0\xe7\xe7\x4d\x31\x66\x25\x03\xa7\x02\x5d\
\x8f\xc5\xfa\x53\xba\x19\x8e\xcf\x9f\x5d\x77\xc3\x92\x81\xaf\x57\
\xfc\xf8\xad\x3d\x5f\x2b\xdb\xbe\x33\xd2\x6f\x06\x3b\x7b\x62\xdd\
\xdb\xea\x9b\xcf\x0b\xb6\xac\x82\x9e\xf1\xec\x58\x57\x6a\xf3\x71\
\xed\x03\x2d\x7b\xf6\x61\x67\x49\xc0\x55\x2a\x94\xa3\xd9\xa1\x1e\
\xbd\xed\x04\x2d\x1a\x0c\xf5\x1f\xb2\xa6\xb4\x75\xaf\x6f\x9e\x76\
\xdf\x2b\xe1\xc3\x27\xed\x5a\xb2\x34\xd1\x34\x35\xd1\xbc\x54\x55\
\x8b\x0d\x90\x76\x20\x54\x1c\x3e\x30\xfb\xae\x3f\x85\x32\x13\x3b\
\x2f\xbf\xae\x6f\xe5\x49\xd3\x1f\x78\xb0\xa2\xaf\xa3\xe3\xf8\xd3\
\xc7\x1b\x1a\xa7\x3c\x78\x5f\x28\x9d\x88\x6f\xda\x1c\xed\x3e\x84\
\x61\xd6\xbe\xe6\xb4\x57\x3e\x7e\x73\xb2\xb2\xbc\xf5\xa9\x17\x22\
\x99\x91\xf0\xf8\x78\x90\xbe\xee\x1e\xe9\x5d\xb9\xaa\x67\xd5\xc9\
\x30\xa0\xa7\x53\x53\x1f\xbe\xa7\xe2\xd0\x81\x44\x6d\xe3\xbe\x8b\
\xaf\x5e\xf1\xdd\xdb\xaa\xf7\x6c\xc7\x90\xdb\x7d\xc9\xc5\xbb\xae\
\xbd\xbc\xe9\xe9\x97\xca\xc6\x7b\x42\x83\x63\xc1\x4c\x06\x13\xc1\
\x96\x77\xbc\x29\xab\x87\xaa\x0e\xee\x2f\x39\xdc\x95\xa9\xa8\xac\
\xdc\xb7\x3b\x9c\x1c\x1b\x98\xb7\xa4\xf3\x94\x73\xc0\x87\x73\x89\
\x9a\x6c\xdf\xc2\xd9\xed\x67\x9c\xb2\xef\xa2\xb3\xf6\x5f\x78\xe6\
\x81\xf3\x4f\x3f\x74\xfa\xc9\x5d\x27\xac\x0e\x59\xb5\xad\x4f\x3c\
\x52\xbd\x6d\x2b\x5c\xda\x7d\xc1\x05\x3b\xae\xbe\xa2\xeb\xb8\x95\
\x9d\xab\x4f\x40\x68\x3f\xf3\x34\x9c\xf6\xab\x76\xed\x8f\x18\xe3\
\x83\x6d\x73\xf6\x5f\x78\x45\x56\xd7\xad\xb0\x3e\xd1\x10\xe8\x9f\
\x3b\xef\xd0\x89\x27\x74\x9c\x76\xd2\x81\xf3\xce\xd8\x7f\xc1\x19\
\x50\xb8\xfb\x8a\x0b\x8d\x78\x93\x19\x2f\x6f\x79\xe6\xe1\x86\xed\
\xaf\x5a\x81\xe8\x8e\x6b\x2f\xdb\xfe\xa6\xcb\x0f\x9f\xb0\xf2\xd0\
\xc9\xab\x3b\x10\x4e\x5d\x13\xef\x1d\x2a\xeb\x3f\x9c\x89\x97\xed\
\xbb\xe4\xea\x64\x9d\xe7\x06\x21\x4d\x7a\x74\x25\x08\xc1\x6c\xc5\
\x91\xe1\x25\x1c\xd7\x61\x4f\x01\x09\x79\xc1\x05\x6f\x2c\x3f\x3a\
\x09\xc4\x81\x5c\x43\x7b\xd0\x99\xd8\xff\xb7\x43\x77\xe0\xa8\x2a\
\xa7\x3d\x39\xeb\xcb\xfb\x25\xb4\xa2\x82\xc3\xaf\xbf\xeb\x1c\x44\
\x46\x4a\x84\xa2\xb0\x82\x1c\xa4\x7c\x85\x50\xc9\x05\xe0\xf1\xa8\
\xd6\x5e\x81\x4a\xb0\x77\x1c\x72\xa5\xe9\x46\x36\xf3\xac\x4a\x89\
\xba\xa6\x0c\x92\x93\xfa\xa0\x0d\x3c\x05\x0c\x6e\xf4\x94\x70\x80\
\x8e\xf5\x74\xbe\x22\xc9\x2c\x97\x82\xa6\x16\xc4\x44\x03\x09\x0b\
\xc8\x28\xa9\x56\xd1\xa3\x85\x78\x58\x18\xb4\x59\x4d\x95\xcb\xda\
\xca\xf8\x4c\x6d\x23\x48\x5b\x8f\xc7\x9f\xdd\xf5\xc7\x7b\xd7\xdf\
\x79\xff\xc6\xeb\x96\x35\x1c\xbf\xa8\x5e\x4b\x61\x91\x4f\x6b\x7a\
\x45\xbc\xbe\x76\x7a\x5b\xf0\x92\x79\x99\xcf\xaf\xea\xb9\x7b\xc5\
\xdd\xf7\xc5\x6e\xb8\x7d\xf0\xfa\x13\x0e\xfc\x6a\xbc\x7f\x6c\x34\
\xa2\x65\xca\x22\x81\x59\x0b\x03\xcb\xde\x9c\xc1\x6e\xa1\xfd\xc9\
\x89\xf1\x03\x43\x83\xcf\x2d\xdd\xf2\xf2\xdc\x2d\xfb\xb4\x58\x45\
\xb8\xa2\x2e\x1a\x0d\xc5\x62\xe1\x58\x24\x00\x22\x4c\x5f\xe3\xd5\
\x82\xe9\x44\xb0\xfd\xf1\xf2\xb9\x6b\x12\x95\xe5\xfb\x5f\x28\x0b\
\x6d\xd7\x12\xe0\x55\x8c\xa7\x9b\xe7\xa6\x1a\x16\x90\xeb\x0c\x29\
\x86\x00\x35\xc3\xf7\x4f\x09\xf1\xa1\x21\x8c\x46\x53\x8b\x8c\xce\
\x9a\x9f\xa9\x9a\x85\xde\x61\xa2\x46\xad\x6c\x0a\x7b\x09\xae\x61\
\x2b\x18\x32\xc3\x91\xf6\xd5\xa7\xbd\xfa\xc1\x1b\x92\xb5\x2b\x0e\
\x9f\x7c\xc1\xc1\x53\x4e\x4a\xc7\xca\x93\x65\x55\x74\x1e\xa6\x23\
\x98\x82\x18\xa2\x4c\x59\x6b\xd6\x5d\x7f\x68\x7d\xfc\x41\x5d\x4b\
\x4d\x94\xd4\x1e\x3c\xeb\xfc\x91\x19\xab\xf7\x5d\x72\x8e\x9c\x29\
\xc2\xda\xf8\x48\x43\xeb\x9e\x2b\xdf\xd4\x7e\xee\xd9\x51\x6d\x3c\
\x62\x8d\xd4\x6c\xdb\x12\xa4\x5b\x27\xa8\xe5\x5c\x5f\xef\x5d\x79\
\xc2\xee\xab\x2f\xef\x38\xfb\x9c\xd1\xd9\x8b\x12\x8d\x0b\xb5\xf8\
\x8c\xfa\xad\x83\x4b\x7e\x79\x77\xd5\xee\x1d\xe1\xb1\x21\x4b\x0b\
\x61\x19\xef\x5b\xbe\x64\xe7\xb5\x57\xed\x7c\xd3\x55\xbb\xae\xbd\
\x12\x61\xc7\x9b\xae\xdd\x73\xf9\x45\xa9\xb2\x32\x5d\x4b\xa2\xc9\
\x79\xd2\x43\xaf\x0a\x1d\x3e\xf1\xac\x1d\xd7\x5d\xbd\xf3\xda\x6b\
\xf6\x5c\x71\x55\xf7\xaa\x53\x87\x67\x2e\x88\xf7\x25\x8e\xff\xcf\
\x5f\xb6\xbc\xf2\x22\xce\xfa\x56\x34\x42\x27\x82\xac\xd1\x75\xe2\
\x9a\xdd\x57\x5f\xb3\xf7\xb2\xcb\x10\xf6\x5c\x71\xc5\xbe\xcb\x2e\
\x9f\x68\x6a\xa4\xdd\x07\x7a\x20\x6b\x72\x07\xc0\x29\xb2\x43\x08\
\x58\x40\x78\xd4\x5b\x8f\x6e\xf0\x7b\x34\x30\x0a\x39\x93\x83\xd5\
\xa8\x2b\x20\xd9\x5d\x4a\x5e\x19\x7c\x66\xc3\xa0\xfa\x3e\x03\xaa\
\x86\x06\x99\xed\xa2\x04\xc5\x97\xf5\x95\x33\xaa\x0f\x17\x0a\x39\
\x2e\x20\x51\xc1\x13\xb1\x01\x26\x86\x22\x66\x01\x93\x21\xd3\x01\
\x9b\x56\x23\x5f\x02\x86\x2e\x7f\x2f\xc9\xc9\x81\x53\x00\xed\x51\
\x69\x27\x16\xc0\x6c\x1e\xc0\x01\x9f\x46\x3b\xbc\xa5\xf5\xdf\xc2\
\xfe\x37\xa6\x65\x82\x46\x22\x8b\x91\x60\x19\xe1\x10\xdd\x02\x40\
\x49\xe8\xbe\x12\x7d\xad\x88\x76\x07\x98\xd9\xd4\x84\xc6\x13\xc7\
\xbf\x0a\xd8\x5f\x9c\xb1\x6c\x7a\x4d\x89\x45\x4b\xba\x83\x60\x20\
\x39\x91\xe9\xdc\xdf\xbf\x6d\xef\xc0\x1f\xd6\x75\x9e\x35\xa7\xea\
\xa4\xb9\xd5\x5a\x45\xc3\x95\x4b\x53\xff\x58\x7a\xf7\xa3\x4d\x9f\
\xfd\x45\xe8\x96\x4f\x77\xbd\xe3\x92\x83\xdf\x9a\x3a\xb8\x21\xd1\
\xdd\x3f\x34\xae\x99\x15\xe5\x91\x39\xa7\x86\xe7\x5f\x1e\x9a\x73\
\x49\x76\xac\x37\xf1\xcf\x5b\x13\x8f\x7e\xc6\xbc\xfb\xa6\xc6\xa7\
\xff\xd0\xb4\xfb\xd5\x50\xba\x3b\xa0\x0f\x8d\x5b\x83\xbd\xf1\xca\
\x8e\x60\x45\x67\x69\x4b\x7f\x45\x53\xa2\xaa\xca\xac\x2e\xb5\x2a\
\xb5\x91\xbe\x6d\x1d\x03\x23\x07\x07\xae\x8d\xfe\xc6\x8a\xed\xdd\
\x9b\xd5\x22\xc9\xea\x8a\x80\xf7\x05\x10\x35\x5b\xf1\xa4\x9f\x0b\
\x7a\xa0\xe4\x70\x27\xaa\xd6\x08\x95\x86\xc7\xe9\x16\x3d\xfd\x72\
\x20\x03\x4b\x44\x30\x43\xf7\xf6\x77\x5f\x75\xe1\xa3\xdf\xbd\xed\
\xe9\xdb\x3e\x37\xba\xe0\x8c\x80\x1e\xcd\xd4\xcc\x5a\xfb\xc5\x4f\
\x3d\x70\xc7\xf7\xb7\xbf\xed\x4a\x0c\xe3\xa0\xbc\xa1\x88\xc0\xfa\
\x25\x2f\x5a\xa9\xf9\x85\x67\xcb\xac\x3e\x0c\xc2\x5d\xd7\x5e\x32\
\x3a\x7b\x69\x36\x56\xb7\xef\xa2\x4b\x87\x9a\xa6\x21\x4b\x48\x4b\
\xb7\x9f\x73\xba\x51\x31\xab\xf3\xb4\x8b\x77\x9f\x78\x4e\xc7\x71\
\x27\x77\x9c\xba\x9a\x7b\x15\xff\x38\x8e\x8d\x6c\x6c\x9a\x16\x5d\
\x9c\xa9\x5e\x91\xa9\x98\xd7\xfc\xe2\x96\xd5\x5f\xfe\xf2\xc9\x5f\
\xf8\xe8\xd2\x5f\x7e\xff\xb4\xcf\xbe\xb7\xec\xd0\x41\x9a\x60\xb4\
\xd0\xf0\xac\x13\x74\x7d\x76\xb6\x64\xb1\x55\xb6\x04\x21\xa4\xcd\
\x30\xcb\xe7\x50\xc1\xe8\x69\x25\x35\x33\x17\x39\x60\x95\xcd\xb0\
\x2a\x96\x58\xe5\x8b\xad\xd2\x79\xa5\x03\xd9\x15\x3f\xf9\xd5\xc9\
\x9f\xfb\xf2\x9c\x07\xff\x7a\xca\x0f\xbe\xa8\xe9\xc1\xe1\x39\x73\
\xb0\x3d\x31\xa3\xe1\x54\xed\xcc\xb0\x35\xc5\xaa\x58\x88\x90\x2d\
\x9b\x6f\x95\xcd\xcf\x94\x55\x5a\x9a\x9e\x0d\x85\xa8\x5a\xa8\xdf\
\xe4\x02\xdc\x55\x8e\x72\x1f\x75\x01\x86\x59\x00\x45\xc1\xf9\x92\
\x0e\xa7\xf9\xe0\x96\xf0\x06\x1e\x02\x5e\xd8\x1c\x64\x98\x5b\xb6\
\xf4\xb8\xaa\xd3\x96\x55\x9d\xb8\xac\xfa\xa4\xe5\xd5\x27\x11\x51\
\x75\xe2\xd2\xca\xd5\xd3\x4b\xe6\x46\x83\x71\x25\x97\x07\xc9\xee\
\x56\x1b\xd0\x9e\xe8\xfb\x87\x0c\x39\xf1\x43\x46\x39\xe0\x8c\x49\
\x1e\x8d\xaa\x60\x92\x09\x70\x68\x37\xb3\x10\x92\xc8\x59\x09\xcc\
\xa3\x28\x0f\x69\x65\x08\x1c\x98\xc8\x83\x9b\xe9\x64\x91\x3d\x3e\
\x02\x69\xe1\x49\x03\x75\xa4\x56\x75\xde\x1e\x60\x24\x87\x82\xc1\
\x48\x28\x14\x0f\x05\xca\xf5\x4c\x59\xd0\x88\x07\xb1\xa5\x34\x74\
\x5e\xea\x4d\x6c\x69\x64\xba\xa0\xc1\x48\x86\xc5\x36\x13\x44\x1e\
\x0b\xd8\x75\x1f\x50\x5a\x4b\x43\xcd\x75\xcb\xaa\xe2\x11\xfa\x9d\
\xde\x1c\xe8\xf1\x06\x76\x56\xd9\x43\x07\x93\xb7\x3f\x36\xba\x6c\
\xe5\x92\xdf\xbc\x67\xd6\xff\x5a\x1f\x38\xeb\xd5\x6f\x34\xf7\xae\
\x0b\x4c\xf4\x25\xd3\xa9\xb1\xb4\x36\x96\xd2\xac\xba\x96\xc8\x09\
\x6f\xd6\x67\x9d\x1f\x2c\x9f\x62\xf5\x6d\x4f\x3e\xf1\xad\xf4\xd6\
\x07\xb2\x99\x84\x36\xb4\x2b\x76\xe0\x91\xd2\x9e\x67\x47\x42\x75\
\x2f\x75\x45\x36\x6f\xa8\xdb\xf6\x44\xf3\xfe\x3f\xc7\xbb\x7e\x53\
\xd2\xf1\xab\xe0\xae\x3f\x1a\xdb\x9e\x9d\xb6\x79\xdd\xb4\xed\xbb\
\xe7\xec\xdb\xb5\xe8\xd0\xbf\x3f\x35\x6d\x24\xd2\x72\x7c\xcc\xa4\
\x3b\xbb\xc1\x89\xc6\x7a\x14\x55\xf9\x28\xad\xcc\x7d\x11\x9f\xb8\
\xd2\x11\x48\x42\xd6\x8a\xf4\xf6\xe8\x46\x26\x53\x1a\x37\xa2\x74\
\x4f\x3e\x59\x53\x45\xc7\x5d\xca\xa2\xd3\x17\x3f\x35\x2b\xd6\x37\
\x54\x71\xa8\xb7\xf9\x85\x9d\x95\xfb\xf6\xcf\x79\xf4\xae\x86\x57\
\x9e\x6f\x7a\x79\x57\xed\x96\x7d\xd5\x3b\xf7\xa3\x1a\xe9\x2f\x47\
\x50\x2d\xa3\xd5\x90\x4b\x4a\x4e\xd3\xf1\x81\x73\xcf\xd8\x7b\xf2\
\x99\x1b\xaf\xbb\x1e\x4b\xa8\x51\x4a\x1b\x66\xb3\x74\x6a\x69\x7f\
\x5f\x5c\x33\xba\xa6\x2f\xdb\xf9\x96\xb7\x47\xc6\x26\xea\xb6\x6c\
\xdf\x75\xdd\xe5\xeb\x3e\xfb\xd1\x44\x7d\x1d\xce\x17\x90\x09\xb8\
\x5e\x81\x01\xea\xb6\xbe\xb2\xf2\x07\x5f\x39\xfb\x3d\xd7\xac\xfe\
\xca\xad\x4d\x6b\x9f\x0c\x4d\x8c\x87\xcc\xd4\x50\xf3\xb4\x04\x9c\
\xcc\xd2\x6b\x02\x95\x07\xf6\x97\x77\x1c\xa8\x6c\xdf\x5d\xc1\xa1\
\xec\xf0\x81\xda\xcd\x5b\xb2\x21\x1d\xf3\x02\x2b\xc8\xb5\x72\x6c\
\xa8\x7f\xce\x3d\xbf\x3d\xf7\x43\xd7\x5e\x70\xfd\xa5\x6d\x8f\x3c\
\x14\x32\x26\xb2\x66\xf0\xf0\x8c\x59\xb1\xbe\xc3\x95\xbb\xf7\x98\
\x5a\x2c\x55\x52\xd1\xf8\xf2\x86\xb2\xae\x8e\xaa\xfd\xbb\x24\x54\
\x1e\xd8\x53\xd6\xd5\x65\x6a\xd1\x80\x65\xc5\x7b\x7a\x54\x55\xda\
\x40\x15\x29\xd5\x5e\x70\xb5\xa2\x42\xd0\xf8\x5c\xdb\x10\xfc\xaf\
\x67\x47\x25\x4d\x01\x47\x54\x2f\x6e\xdf\x7d\x4b\x57\xa2\xe8\x77\
\x30\x42\x81\xf0\xa7\xe6\x7f\xa7\x36\xd2\x24\x86\x01\x19\xc0\x21\
\x2d\x94\xb2\x92\x03\xa9\xde\x43\xc9\x7d\x4f\xf7\x3d\xb0\x6f\x62\
\xbb\xca\x50\x1c\xc8\xfb\xbe\x99\x9f\x9b\x5f\xbe\x4c\xb9\x46\xc0\
\xb0\xa7\x51\xc7\xc3\x1f\x3d\x06\x7e\x73\x67\x41\xbb\xd2\xc3\x3b\
\x4a\x20\x21\x7b\x58\x72\x16\x7f\xc8\xf6\x5a\x45\xdc\xc2\xd4\xa1\
\x72\x10\x55\x04\x99\xf5\x0a\x81\x8c\x54\xbd\x94\x5d\xae\x92\x85\
\xbf\xd1\x88\x91\x4c\x0f\xa0\x83\x54\xfc\x60\x34\x12\x2e\x89\xe9\
\xf1\x90\x15\x46\xc7\xc9\x06\x26\x52\xe6\x68\x32\x93\x30\xb0\xea\
\xa1\x07\x60\x53\x8a\xee\xa9\xf6\xa5\x4a\x09\xd4\x80\xe4\x07\x35\
\xe0\x1c\x35\x8a\xf8\x49\x9a\xf8\x19\x95\x99\xbe\xef\xb1\x17\x1e\
\xde\x41\xf6\x54\x97\x83\x78\x3c\x3c\xbd\xa9\xe2\xbc\xe6\xfe\xc5\
\x99\xb5\x8b\x32\xaf\x9c\xd5\x30\xa0\x55\x2f\x1c\xda\x70\x77\xc0\
\x44\x67\xc0\xc2\x9c\x09\xd5\x4e\xd7\x5b\x4f\xd1\xcc\x94\x39\xd6\
\x69\xf5\xee\xb0\x7a\x0e\xd3\x19\x26\x4a\x37\xa6\xb1\xa9\xc1\x46\
\xb8\x7d\x48\xdb\x61\xcd\x35\xe7\x5d\xb3\x6d\xff\xe0\x8a\x5f\xdc\
\x7b\x4a\xdf\xb8\xdc\x86\x45\xc8\x68\x7a\x82\x9e\x8f\xeb\x81\xb2\
\xca\x78\xca\x28\xcf\xf4\x94\x7f\xba\x25\x78\x72\x76\xfc\x43\x5d\
\x7d\xed\x35\xeb\xbe\xfd\xf1\xbe\x95\x67\x1b\x55\x33\xd9\x43\xae\
\x46\xda\xf3\x50\x0d\x08\xd8\x45\x8a\x1e\xff\x95\x4f\xcd\xb9\xeb\
\x37\x83\xd3\x66\xed\xbe\xee\x1d\xe1\x89\x89\x19\xf7\xfc\xb9\xb6\
\x63\xe7\x2b\x37\xdd\xda\xbf\x6c\xc5\xe9\x37\xbf\x17\xfb\xf6\x40\
\x54\x37\x4a\xa3\x61\x23\x13\x1e\xc1\x06\xa5\x3a\xae\x0d\x65\xcb\
\xca\xd3\xd1\x98\x3e\x9e\xb4\x92\x50\xa4\x6f\x7c\xff\x87\x37\x7f\
\xe0\x93\xb0\x11\x19\x1b\x39\xf9\x96\x1b\xa6\xbc\xf0\xcc\x58\x5d\
\xeb\xa3\x3f\xfe\x81\x19\x9a\xa0\x37\x80\x5a\x8e\x37\x23\xe5\xe4\
\x80\x91\x59\xf4\x3f\x5f\x2a\xeb\xe9\xd8\x71\xe5\xe5\xc1\x60\xf3\
\x49\xff\xf9\x59\x8c\xed\xc1\xaa\xe9\xe3\x0d\xb5\x25\xbd\x03\x25\
\x7d\xbd\xe1\xec\xd8\xd6\xeb\xde\xf3\xca\xad\xdf\xb0\x42\xe1\xe8\
\x60\xff\xf2\xef\xdd\xd6\xf6\xcf\xfb\xc2\x13\xa3\x41\x7a\xc7\x8e\
\x0c\x0d\x4f\x69\xed\x3c\x79\xd5\xfe\xf3\xcf\x9a\xf3\xb7\x87\xe7\
\xfc\xe3\x6e\x43\x8b\x07\xa2\xc1\x44\x79\x35\xba\x05\x3a\x03\x4c\
\x58\xd8\xf2\x4d\x24\xe0\x86\xae\x65\xba\x97\x1e\xff\xe8\x2f\xfe\
\x6a\x85\x22\xe8\x00\xf3\x7f\xf9\x93\xd9\x77\xfe\xbe\xfc\xd0\x81\
\x20\x6d\xcf\xa8\x0a\x87\x9b\xda\x0e\x9c\x77\x7a\x64\x60\x6c\xda\
\xda\xe7\xe3\x43\x3d\x86\x41\xb7\x1b\x8d\x92\xb2\x4c\x45\xb9\x9e\
\xe2\xdf\x5f\x40\x3c\x10\x88\x0c\x0f\x07\xf9\xcb\x42\x89\xe6\x96\
\xf5\x9f\xf8\x42\xfb\xb9\x17\x4b\x92\x02\xdd\x74\x52\x35\xe9\x02\
\x77\x51\x7b\x70\x61\x44\xe9\x17\xbe\xe7\xb3\xdc\x03\x6d\x50\x43\
\xd0\xad\x68\x27\x3c\xd3\xff\xe0\x18\x7d\x3d\x5b\xf2\xe7\x03\x13\
\xf1\x29\xb5\x17\x94\x85\xca\x91\x8e\xbc\x34\x32\xf1\x49\xbd\x00\
\x5b\xe0\x48\x59\xa8\xb2\x25\x36\x7d\x65\xd5\x29\xe1\x40\x78\xd7\
\xf8\x66\xce\xc0\xd9\x1c\x78\xa3\xb5\xd1\xa6\xd9\xa5\x8b\x31\x37\
\x71\x8c\x54\x66\x03\x61\xd3\x30\xc3\x81\x6c\x59\x24\x14\xc5\x8a\
\x45\xd3\x01\x36\x61\x18\x64\x5c\x0a\x04\x14\x54\xa6\x31\xb9\x52\
\x8f\x52\x60\x25\x0c\x1a\x59\x85\x75\x41\xa0\x2a\x72\x07\x1b\x5c\
\x1c\x9f\x40\x75\x8a\xe9\x53\xad\xd2\x04\x32\x2b\xd6\xe8\x02\x87\
\xe9\xcd\x85\x92\xb0\x5e\x15\x0b\xd5\x44\xf5\xd2\x50\x16\x03\x26\
\xac\x63\xb3\x8f\xed\x59\x20\x9d\x31\x0c\xba\xad\x4b\x4b\x1c\xf5\
\x79\x51\x21\x86\xc5\x75\x52\x28\xb6\x94\x09\x12\xa1\x56\x73\xf8\
\x45\x83\x54\x80\x0a\x5c\x35\xac\x4e\x9f\x56\x57\xda\x56\x32\x51\
\x5e\x11\xa9\x2a\xd7\x6a\xca\xf5\x95\x33\x2b\xdf\xb6\xac\xec\xec\
\xea\xde\x37\x75\x7d\xfe\xd2\xf4\xef\x67\x0c\xef\x18\xed\x68\x4f\
\x65\x53\xf1\x93\x6f\x89\x9d\xf8\x29\x7d\xca\xf1\xc1\x8a\x56\x74\
\x0d\xf3\xf0\xcb\x66\xf7\xab\xe6\xa1\x1d\x5a\x7a\x2c\x10\xc3\x4e\
\x86\x5e\x3d\xcf\xa4\xb4\x6d\x43\xb1\x27\x12\x27\xec\x6c\x7a\xc7\
\x70\xcb\x85\x81\xa6\x15\x55\xcb\xcf\x38\x30\xda\x53\xbd\x63\x33\
\x56\xf6\x32\xb9\xbb\xa9\x59\x25\x9a\x55\xa5\xa5\xaa\xd2\xbd\x11\
\x6b\x60\x42\x8b\x0c\x19\xda\x60\xaa\xbc\xb7\xbf\x61\xcf\x25\x97\
\xf6\x2f\x9e\x6d\x55\x4d\xcf\xc6\xca\x1d\x5f\xa9\x0d\xd4\xa8\x47\
\x9f\xa5\x9a\x00\x4a\x7a\xba\x96\xfc\xf7\x7f\xc5\x46\x06\xc6\x5a\
\xdb\xe2\x03\x03\xcb\xee\xfc\x71\x74\x64\x28\xac\xa5\x0f\xaf\x3c\
\x6d\x60\xd1\xd2\x29\x4f\x3e\x12\x9b\x18\xc6\x0a\x19\x4c\x64\xac\
\x94\x66\x68\x38\xb1\x5b\x58\x24\xad\xb4\x06\x0e\xe2\xf0\x61\xac\
\xb1\x79\xe7\xdb\xde\x9e\x6c\x9d\x0d\x23\xa1\x64\x72\xd6\x5f\x7f\
\x5f\xd9\xb7\x37\x90\xb2\xb6\xdf\xf0\xd1\x54\xfd\x0c\xa3\xa2\xcd\
\x8a\x96\x29\x1f\x82\xd9\xd1\xe6\xd2\xde\x05\x73\xc7\x66\xaf\x08\
\xe8\x65\x2b\x7f\xfc\x15\x2b\x1d\x2c\x9f\xe8\xa9\xe9\xed\x88\x4d\
\xf4\x87\xb4\x64\x46\x2b\xdd\xf4\xde\xf7\x8d\xce\x5c\x02\xd9\xa6\
\x17\x9f\x59\xf5\xbd\xcf\xc7\x32\xf4\x86\x4f\x2a\x5e\xd1\xb7\x70\
\xd1\xf6\x37\x5f\xb9\xeb\xca\x0b\xbb\x56\x1f\x9f\x9c\xb2\xb8\xe2\
\x40\xc7\x94\x97\x9f\xc6\xf1\x41\x37\x93\xd1\x89\xe1\x68\x62\x38\
\x92\xa4\x10\x1d\x1f\x8c\xa6\x47\xc0\x0f\x69\xa9\xc1\xa9\x73\xf7\
\x5d\x76\x1d\x5a\x28\xde\xdf\x73\xd6\x2d\xef\x28\x1b\x3c\x88\x91\
\x6f\x06\x63\x63\x8d\x2d\xbb\x2f\xb9\x60\xf3\x8d\x6f\x1e\x58\xba\
\x78\xf6\x3f\x1e\xad\xdf\xf7\xaa\x66\x61\x93\x86\x0d\x63\x26\x9c\
\x19\x8b\x8e\x0d\x45\x92\xa3\x2a\x24\xe8\x6b\x45\x58\x00\xa1\x10\
\x13\x4a\xa2\xaa\xe1\xf0\xa9\xe7\x48\x51\x54\xe0\xda\x74\x3a\x86\
\x04\xe9\x6f\xd2\xaf\xd0\x39\xe8\x81\xe7\x77\x9f\x1b\x93\xea\x2e\
\x86\x6f\xee\xfa\x50\x57\xf2\xa0\x8a\x14\x40\x0f\x84\x6e\x9d\xfb\
\xad\x96\x98\xfa\x4d\x55\x9d\xbf\x1a\x84\x2d\x3a\xfd\x56\x9a\x17\
\x77\x76\xfe\xcf\xd3\x7d\xf7\xab\x88\x03\x38\xe2\x1a\x72\xab\x6a\
\x4e\x7f\xfb\xd4\x5b\x78\x08\x10\x40\x60\xa4\xc4\xc2\xc1\xaa\x78\
\xb0\x34\x82\x5e\x95\xcd\x98\xd9\x89\x74\x76\x24\x41\xef\xaa\x0a\
\x54\xaf\xe1\x2b\x21\x37\x2a\x3d\xe0\xfd\x1f\xd7\x88\xad\x5c\x90\
\x17\x75\x40\x6c\xbf\x15\x95\xfa\x29\x3d\xe7\xa3\x5c\xb8\x3a\x80\
\xa8\x0c\x69\x20\xaa\x07\x6a\x62\xa1\xba\x58\xb8\x1c\x07\x81\xac\
\x61\x66\x2d\x33\xa0\xa7\xb4\xc0\xb8\xa1\xf5\x8f\x25\x86\x13\x99\
\x0c\x16\x3b\x7a\x33\xa8\x98\x69\xe2\xe7\x4a\x64\xd3\xc2\x2f\x86\
\xfc\x54\xde\x41\x38\xcc\x68\xcf\xb6\x92\xa1\x76\xac\xe4\x01\x93\
\x86\xa7\x15\x2d\x4f\xd5\xcd\xaf\x7b\xe5\x1b\x17\x0d\xfc\x32\x15\
\xa5\x27\xdd\x18\x36\x25\x97\x7c\x3b\x7a\xe2\xad\x10\x1e\xfb\x9f\
\xc5\x46\xfb\x96\x40\x04\x4a\x54\x80\xf9\xca\x90\xd6\x31\xa4\x3d\
\x9d\x59\xd3\x53\x7f\x51\x69\xf3\x5c\xad\xbc\xce\x28\x6f\xca\x54\
\xb7\x69\xd4\x8b\xac\xc1\x0d\xf7\x57\xff\xf9\x47\x97\x3c\xf4\x74\
\x0b\x7d\xcf\x3c\x80\xf1\x38\xaa\xc5\x12\xf5\xd5\xbd\x73\x66\x1f\
\x5a\x3c\xa7\xaf\xae\xde\xaa\x6d\x88\xd5\x54\x63\x3b\x84\xd9\x71\
\x6c\xc1\xf9\x59\xfb\x6b\xad\x80\xbb\xa4\x0e\x2a\x77\x6d\x3b\xf7\
\x6d\x97\xc5\xd2\x7d\xaf\xdc\xf4\xa1\x44\x43\xcb\x92\x3b\x7e\x1c\
\x1a\x4f\x8e\x37\xd4\x6f\xf8\xd8\x27\xfa\x56\x9d\xd5\xf2\xc0\xcf\
\xab\x76\xef\x55\x7b\x06\x81\x7c\x8a\x26\x2b\x6b\x85\xf5\x81\x05\
\x73\xfa\x56\x5f\x6c\x54\x4f\x05\x23\x98\x4a\x2c\xfa\xc1\x97\xe6\
\xfc\xfd\xce\xee\x85\x4b\xd6\x7e\xe7\xd7\x46\x9c\x16\x7c\x37\x02\
\x46\x32\x60\xa4\xad\x58\x85\x3e\xde\xdf\xfa\xc0\x2f\x1b\x5e\xde\
\x18\xef\x1b\x8c\x8e\x8c\xe9\x99\xa4\x11\x8b\x76\x9c\xb2\x66\xcf\
\xb5\x37\x64\xea\xe6\x43\x7f\xf9\xbe\x2d\x4b\xbe\xfb\xc5\xf2\x9e\
\xce\xc1\x19\xb3\x0e\xaf\x59\x39\x34\x7b\x86\x51\x5e\x63\xc5\xeb\
\x8c\xca\x36\x33\x5a\x56\xb1\xed\xa9\xb9\xbf\xfb\x65\x74\x70\x98\
\x5e\xa9\x29\x00\xbd\xe1\xa5\x05\x0e\x9e\x73\x66\xfb\x55\xff\x86\
\x68\x78\x74\x78\xd9\x6d\xb7\xd6\xec\xdc\x31\xd6\xd2\xdc\xbb\x74\
\x61\xff\xa2\xb9\xc9\x3a\xe8\x99\x62\x54\x4e\x6d\x79\xe4\x2f\x53\
\x9e\x78\x94\xa6\x25\x29\x17\xae\x3e\x95\x44\x9b\xc7\x74\x59\xe9\
\xfe\x2b\xae\x1b\x5c\x7e\x8e\x62\x4d\x06\x7b\x93\xc8\x2b\x03\xe1\
\xbb\xcf\x79\xb7\xfd\x05\xf8\xe6\xee\x0f\x77\x25\x5c\x83\xdf\xeb\
\x47\xe1\xe0\x07\xd3\x30\xb0\x87\x21\xc2\x8d\x51\x63\xf8\x5b\x3b\
\x3f\x36\x9c\xe9\x57\x71\x3f\xcc\x2a\x5b\x78\xf3\x9c\xaf\x04\x79\
\xbf\x4a\xa3\x8c\xee\x99\x5b\x75\x15\x25\x15\xd1\x40\x98\xf6\x45\
\x58\x70\x43\xe9\xac\x3e\x34\x9e\x1a\x9a\xc8\x18\xb4\x82\x12\x48\
\x98\xc4\x49\x1e\x17\xb7\x83\x22\x00\x0e\x1f\xb1\xb9\x26\x6d\x79\
\x37\x5d\x88\x62\x29\x34\x83\xd8\x93\x02\x2b\x56\x57\x7c\xc0\x1b\
\x7a\x0a\x88\x63\x58\x28\xd0\x50\x16\xa9\x8f\x87\x4a\xb2\x66\x28\
\x6b\xea\x7a\x30\x9d\x0d\x8e\x65\xac\x71\x2b\x38\x30\x61\x60\xfc\
\x63\x63\x1c\xd0\x43\xb2\x21\x9c\x04\xbe\xa3\xc2\x17\xca\x07\x1b\
\x88\x22\xa7\x1c\x1f\x9c\xa4\x80\x95\xd1\xd2\x09\x9c\x02\x30\x5c\
\xcd\x78\x15\xf8\xe9\x57\xfe\xf2\x8e\xbd\x37\x54\x95\x65\x13\xfc\
\xb3\x3a\x7a\xc3\x82\xd0\xdc\x8b\xad\xa1\xfd\x99\x1d\x77\x67\x33\
\x86\x7c\x9f\x05\x2a\xb0\xcf\x2f\xd7\xb5\xed\x03\x91\xc7\xe2\x6f\
\xd7\x66\x5e\x1c\xaf\xaa\x4a\x56\xb4\x1a\x95\xad\x64\x85\x01\x02\
\x5b\x50\xf3\xe0\x3a\xe3\x9e\x5f\x4c\xdb\xbc\xbd\xdc\x0a\xa5\x9b\
\x1b\x47\xe7\xcf\x19\x9f\xda\x9a\x69\x6d\x8b\xea\x61\x3d\x99\x46\
\xc3\x99\x7a\xd4\x8a\x96\xa4\x6b\x67\x99\xe5\x38\xf6\x1f\x01\xa1\
\x91\xbe\x69\x77\xfd\x77\x78\x64\xb4\xfd\xa2\xcb\xd3\xe5\x65\x55\
\x5b\x5f\xc6\x50\x1c\x6d\x6d\x4a\xb4\x2d\x4e\xd7\x2d\x88\x1d\x7a\
\x49\xcb\x0c\xd3\x5c\xab\x4a\x07\x37\x73\x35\x40\xfd\x04\x97\x68\
\x4d\xba\x69\x71\x56\x97\xdb\x84\xd9\x92\x3d\xcf\x54\x6e\xdf\x34\
\xda\xda\x32\xb6\xf0\xfc\x6c\x48\xbd\x3f\xeb\x54\x8e\x83\x60\x26\
\x11\xea\xda\x1c\xc8\x0c\x06\x0d\x03\xfb\x85\x60\xda\xa0\x9b\x0e\
\xf1\xaa\x74\xf3\x71\xd9\x70\x09\xec\x04\x13\xfd\xf1\x83\xcf\x05\
\x33\xc4\xd7\x42\x35\x56\x59\x53\xa6\x6a\x4a\x20\x14\x92\xaa\x08\
\x0f\x1f\x0a\xf5\x6f\xa1\xbd\xa1\x3f\xf8\x30\x19\xaf\x4b\x4d\x59\
\x49\x11\x33\x1d\xdb\xfb\x54\x68\x7c\x34\x53\x56\xa2\x85\x4a\xad\
\x58\x9d\x55\xdd\x6a\xc6\x2a\x90\x14\x39\xb4\x3e\x90\xec\xa1\xba\
\xe5\x6c\xc5\xc0\xc5\x0e\x9a\xd5\x73\x8c\xda\x19\x8a\x55\xbc\xdb\
\xa0\xac\xd2\x62\xa0\x79\xdb\x1c\x08\x7c\xef\xf9\x23\x0c\xfe\xdb\
\x76\x7e\xf8\x88\x2b\xff\x94\xf8\x74\x1c\x21\x9c\xc1\xcf\x2b\xbf\
\xcf\xcc\xf7\x9b\xf6\xef\xbe\x38\xf8\x84\x8a\xb8\x81\x22\xb2\xc3\
\x2d\xf1\x69\x18\xfc\x25\x3a\x4d\xcc\xe2\x25\xba\x5d\x63\x75\x69\
\x2c\x68\x44\x35\x1a\x45\x19\xd3\x32\x02\xe1\x89\xb4\x75\x78\x24\
\x93\xa2\x1f\x5c\xa4\xfd\xbf\xd3\x84\x54\x32\x1b\xc2\xa1\x12\x32\
\x68\xa7\x2e\x2c\x66\x2a\xca\x4b\xe7\xc1\x37\x89\x1f\x40\x92\x5d\
\x15\xb7\xfd\xe4\x29\x01\x6b\x39\xec\x18\x25\xa1\x40\x7d\x49\xb8\
\x2e\x16\x8c\x67\xd3\x11\x7a\x5e\x13\x4e\x59\x81\x31\x23\x30\x9e\
\xd5\xfb\xc7\x33\x7d\x63\xa9\x4c\x20\x14\xd4\x43\xb4\xe0\x4e\x0a\
\xa7\x14\x82\x49\x5c\x75\xe0\xc8\x20\x67\x16\xce\x10\xdc\xb9\xc0\
\x56\x51\x54\x9b\x95\x9a\x68\xfe\xd3\x19\x57\x37\x6c\x4e\x1a\xf4\
\xc5\x54\x2d\x89\xbd\xb2\x86\x59\x36\x5c\xc1\xcf\xfe\xd9\x38\x6d\
\xe2\xd3\xda\xfa\x91\xea\x75\x35\xef\x89\x4d\x3f\x2d\x58\x5d\x9f\
\x6c\x5a\xa0\xbe\xe8\x26\xe0\xc1\x4f\x76\xd1\xb3\x92\xc3\xc9\x7d\
\xcf\x04\x93\x83\xe1\xd2\xf2\x58\x24\x1e\x4a\x65\xb0\x01\x34\x4b\
\x6b\xcc\xca\x16\xab\xa4\x3a\x83\x5c\x6a\x28\x7a\xe1\x57\x2e\x0c\
\x8c\x50\xcf\x86\x6c\x36\x6d\x55\xce\xcf\x86\xe3\xe1\xc1\x7d\x59\
\x33\x1d\x88\x94\x67\xaa\xa6\x66\xc3\xb1\x40\xd6\x0a\xa4\xc7\x69\
\x32\xf7\x66\xb5\x63\x54\x4c\xec\xea\x55\x8c\x7c\xcc\xea\xa3\xdd\
\xfa\xe8\x21\x2b\x5e\x9f\xa9\x6c\xa1\x2d\x03\x99\xf5\xb1\x4b\xc0\
\x32\x36\x31\x14\xcc\x8c\xd3\x76\x20\x6b\x64\xf5\x18\xf6\x38\x30\
\x4a\x0b\x08\x69\xd6\x42\xa3\x87\x03\xe9\x09\x2b\x56\x69\x96\xf2\
\x2f\x85\x04\xb1\x01\x91\x7c\x94\xaa\x27\x86\x02\x46\x0a\xfd\xc1\
\x57\x3b\xf8\x66\xbc\x32\x8b\x33\x20\x03\x1b\x0d\x7d\x62\x10\x3b\
\x0e\x4c\xc7\xd9\x50\xd4\xc9\x13\xc0\x91\x66\x82\xff\x82\xae\x7b\
\xf8\x0b\xc9\xed\x22\xa0\xc1\x1c\x0c\x9b\x71\x9a\x2f\x8e\x06\x90\
\x57\x14\xd1\x18\xfc\x6b\xed\x17\x78\x8a\xe0\xb6\x1d\x1f\x39\x9a\
\xc1\x8f\x92\x43\x9b\x33\xf8\xf3\x9b\x85\xf1\x58\xcf\x3d\x7f\xeb\
\xfc\xa5\x8a\x00\x10\x71\x95\x04\x68\x8c\x4d\xb9\x79\xce\x57\xcb\
\x43\x55\x2a\x4e\x77\x01\x02\x8d\x55\xf1\xa8\x66\x60\xdb\x1f\x0e\
\x05\xc7\x12\x69\xac\xfc\x19\x53\xeb\x18\x31\x26\xe8\x55\x2f\x2e\
\x03\x43\x68\xb9\xdd\x28\x60\x05\x4a\xc0\x3d\xf8\x01\x70\x14\x55\
\x04\x45\x05\xe8\x38\xe5\x71\x5a\x0c\xd1\x1c\x4d\x2f\x04\x63\xd5\
\x31\x22\x01\xb3\x3a\x16\xac\x8f\xe9\xa5\x41\x2b\x62\x99\xf4\xd8\
\x57\x0f\xa7\x83\xe1\x71\x33\xd8\x3d\x92\x1e\xa4\x6d\x3f\xbd\x2b\
\x42\xaf\x32\xf8\xc1\xf1\x1c\x70\xd3\x47\xf4\x19\x70\xcb\xd0\x77\
\x12\x18\xa0\xc1\x77\x20\x1c\x12\xc8\x66\x47\xb7\x3d\xb1\xfa\xd9\
\xb7\x9e\xdd\x36\x6c\x64\x35\x4c\x01\x58\xe4\xa3\x38\x62\x26\xb4\
\xee\x09\x6d\xc0\x8a\xe3\x8c\x9d\xd5\xc2\xbb\xcc\x39\xed\x4d\x6f\
\x2a\x6b\x5d\x62\x36\x4c\x4b\xd7\xcd\x96\xbc\x00\xaa\x5a\x08\xcc\
\xbf\x32\x05\x93\x66\x23\xad\x8f\xf5\x04\x32\x89\x6c\x00\x85\x2f\
\x33\x4b\xaa\xed\xb5\xd7\x53\x16\x0f\x50\x69\xbe\xa0\x1f\xe1\xb5\
\x9c\xec\x34\x6e\x58\xb2\xd8\x6a\xe8\xea\xd8\xfe\xa0\xdb\x45\x76\
\xfd\xc0\x19\x38\x2c\xf4\xd1\x82\xb6\x13\x7e\xe0\x45\x54\x4a\xe7\
\x94\x71\x12\xe5\xbc\x79\x54\x74\x1e\x8e\xd9\xa5\x63\x03\x8a\xcc\
\x1f\xec\x24\x6c\xc1\x71\xaa\x90\x49\x82\x07\x88\x4e\xea\x5e\xce\
\x7b\x91\xf4\x86\x12\xfa\x43\x4e\x4c\x0b\x0a\x5a\x2b\x1a\x8c\xc5\
\xb1\x62\x84\x82\x4e\xd0\x43\xf4\x07\x00\xb4\xa0\x8e\xa3\x73\x1a\
\x83\x9e\xbb\x1a\xa2\xca\x33\x7a\x66\xa6\x80\x22\x71\xa9\x50\x42\
\x2a\xa4\x6c\x08\x10\xe4\x41\x21\x3d\x8d\xb3\x03\xba\x95\x3b\x5a\
\x3c\xf8\x82\xcc\x92\x65\x1b\x12\xa5\x07\xb8\x7c\x45\x3c\x6d\x65\
\xc7\xd3\xd6\xa8\xa1\xa5\x82\x91\x4c\x24\x9e\x0a\xc5\x52\x81\x70\
\x1a\x4b\x82\x99\x4d\x1a\x06\x36\x45\xf2\x1a\x80\x64\x2c\x04\xfc\
\x76\xaa\xd1\x4d\x4f\x8e\x7c\x49\x57\x0b\x12\x1b\x75\x82\xf5\x09\
\x75\x22\x81\x04\xa9\xae\xca\x16\x9c\xf6\xf2\x69\x7f\xba\x7f\x57\
\x6c\x7c\x58\x0b\xe3\x58\x30\xa6\xed\xea\xd6\x1e\x19\x9c\xf1\x0f\
\xfd\xad\x8f\x55\x7d\xfc\x91\xb2\x0f\xff\xb3\xe6\xd6\x9e\x85\x1f\
\x2f\x9f\x75\x5c\xa6\x75\x61\xba\x6e\x96\xe4\x92\xe0\xd6\x2f\x81\
\xea\x3c\x1c\xc9\x54\xb5\xa6\xea\x66\xa7\x6b\x67\x66\xca\xea\xad\
\x20\xed\x87\xa5\x81\x1c\xe3\x79\x41\xfc\xf5\x01\x3d\xd2\x93\x91\
\xcf\x65\xcb\xcd\x11\x39\x1f\xbc\xe1\x08\xa0\x25\xda\x86\xa7\xae\
\x0a\xe0\x94\x28\x2f\x50\xab\x15\x04\x51\x24\x0a\xd9\x51\x02\xf3\
\x72\x19\xbd\xa1\x18\x90\x23\xaf\x44\xaf\x31\xf0\x10\x28\x0c\xe2\
\x94\x72\x80\x88\xef\xaf\x3b\xc2\xca\xff\x8d\xed\xde\x95\x1f\xb9\
\xa0\xdf\x06\x56\xfe\x4f\xcc\xfb\xb6\xcf\x99\xdf\x36\xe0\xc6\xd3\
\xbd\x0f\xfe\xa9\xe3\x27\xee\xec\x79\x58\x5a\xbd\xfa\x03\xf3\x3e\
\xe7\x8c\x28\x00\x3b\xbc\x9a\xb2\x68\x79\x24\x18\xd1\x4c\xba\xa1\
\x8b\x9d\x3f\xce\x83\x13\x99\xde\x31\x23\x4d\xab\x39\x41\x24\x6d\
\x73\xaa\x90\xa8\x64\xfc\x13\x01\x02\x68\x4e\x06\x0a\x1d\x2b\x04\
\x7a\x32\x35\x54\x21\xa8\xbd\x15\xe9\x86\x4e\x4f\xf8\x02\x46\x90\
\x9e\x94\xd2\xfd\xa6\x40\xb6\x3c\xaa\x57\xc6\x23\x65\x61\x1c\xee\
\xb5\xb4\x99\x9d\xc8\x98\xd8\xef\x8f\x26\xd2\x06\x34\x87\xc2\x98\
\x5b\x74\xbf\x25\x0c\x9e\x2a\xca\x4b\x4f\x8e\xbc\x12\x71\x34\x6b\
\xa9\x3f\x98\x46\x51\x11\x10\x02\xe3\x10\xb4\x28\xa7\x8a\x09\x04\
\x32\x87\x77\x4c\xd9\x77\x4f\x75\xba\x63\x3c\x95\x3d\x94\xa8\x48\
\x57\x2d\xac\x6a\x9e\x6a\x94\xd7\x1b\x25\x95\x01\x93\xde\x10\x32\
\x2a\x9a\x34\x9c\x53\x0a\x20\x4a\x64\xd9\x07\x10\x05\xe8\xaf\xfe\
\xf8\x79\x4e\xcf\xe6\xfd\x60\x81\xef\x97\x02\x25\xd0\xa9\x22\x04\
\x15\xb3\x78\xff\x5d\x08\x74\x6f\x45\x15\x47\x9e\x63\x5e\xfd\x0e\
\x8a\x54\x7b\x91\xe6\xc0\x9c\x82\x99\x89\x4a\xee\x12\x60\xcd\xfe\
\xf2\xc4\xf5\xf7\x34\x37\x3e\xdf\x38\x48\x33\x81\xc0\x15\x83\x5f\
\xbe\xf5\x5d\x14\xdf\xd8\xfe\xd1\xc9\xb7\xfd\x85\x83\x9f\xb6\xfd\
\x7e\xc5\xf8\x73\xfb\x4f\x9f\xea\x7b\x40\x45\xfc\x70\x6e\xcb\x55\
\x57\x4d\xbd\x11\x04\x55\xa4\x20\x9d\x29\x8b\x86\xea\x2a\xe2\xf4\
\x63\x93\x38\x24\x07\x43\x09\x23\xdb\x3f\x92\x48\x98\xd8\xc9\xe7\
\x26\x72\x08\x52\x9f\xa6\x1d\x15\xf7\x25\xb4\x86\xbd\x11\x15\x50\
\x7f\xf1\xba\x54\xa4\xe1\x1d\x20\xd5\x4f\xc0\x35\xf8\x5f\x1d\x58\
\xbb\x6b\x6c\xf3\x70\x9a\x6e\x61\xd6\x44\xea\x16\x96\x2d\x9b\x5f\
\x7d\x82\xa9\x87\x68\x6b\x61\x19\xa1\xac\x19\xd3\x83\x51\x3d\x40\
\x5f\x42\x0b\x04\x53\x19\x7a\x2b\x35\x4b\x3f\x73\x1c\x44\xdd\x5b\
\xa6\x15\x54\x2f\xc4\xe7\x03\xde\xe6\x11\x47\x84\xbb\x2c\x42\xa3\
\x26\xac\x00\x7d\x07\x0e\x2d\xe2\xa4\x72\x4d\x10\x40\xe7\xb2\x50\
\xa5\x65\x03\x99\xa4\x76\xf8\x00\xce\x9f\xe1\x78\xd4\x28\xab\xc9\
\x94\x36\x58\x38\xe5\x32\xb0\x4d\xf1\x05\x6a\x38\x4f\x15\x9a\x00\
\x1c\xfa\xd1\x10\x9b\x93\xb3\x52\x7c\xf0\x17\xa9\x86\x3c\xe4\x34\
\xbd\x9e\xc1\x0f\x88\xcf\x80\xdb\x37\x2f\x8a\x56\xbb\x7f\x06\xda\
\xbe\xe4\x6d\xfb\x45\xb7\xbf\x1e\xe2\x16\xb1\x0c\x35\x8a\x7a\x7d\
\xf0\x2d\x9a\xbb\xb1\x40\x03\x81\x1f\xac\xe5\xfb\x0a\x36\xd0\x55\
\x45\xc8\xc1\xd7\xb7\x1d\x61\xf0\xf3\x99\x9f\x7e\xc9\x04\x7a\x65\
\xc8\x41\x37\xbd\xb9\xca\x50\xb3\x3a\x2d\xbc\xd9\xdb\xb7\xde\x7a\
\x70\x7c\x0f\xb3\xfd\xf1\xee\x39\x9f\x3c\xae\xe6\x64\xd9\xc2\x23\
\x8a\x9c\x98\x47\xd0\xf9\xe2\x91\x70\x04\x0b\x28\xf4\xf2\x2f\xd2\
\xa4\x32\xd8\x59\xf0\xce\x5f\x8c\x88\x45\x06\x59\x76\xfc\x90\x72\
\x92\x04\xe9\x93\x62\x71\x57\x57\x55\x20\x0a\x44\x47\x3e\x58\xc0\
\x07\xb6\xca\xfb\x3b\xfe\xf0\x60\xe7\x5f\x48\x97\x0d\xe8\xbc\x72\
\xea\xbb\x4e\x6f\xbe\x9c\xf6\x82\x74\xdb\xdf\x84\xc7\xe2\x22\x26\
\x45\x12\xa0\xd9\x91\xbe\xe2\xcf\xa9\xd8\x2c\xd0\x22\x0c\x28\x6f\
\x78\xf0\x88\x18\xc7\x90\xd3\xad\x9e\x49\x2e\x87\x30\x91\x85\xf2\
\x51\x7f\x91\x1b\x4e\xf4\x62\x07\x5d\x79\xd3\x42\x3b\x1d\xfb\x69\
\x93\xad\x9e\x73\xd3\x05\x56\xc0\x53\x4c\xc0\xae\x6d\x1c\xb1\x33\
\xe8\x01\x22\x24\x49\x80\x8e\x43\x96\x17\xd2\xa6\x01\x54\x36\x3e\
\x44\xd2\x65\x22\xc7\x64\x33\xca\x3c\xfc\x2c\xd2\xb3\xfd\xb9\x40\
\xce\x41\xa1\x95\x0d\x9a\xe3\x7d\x33\x1d\xe5\xc2\xe9\x14\xad\x88\
\x38\x57\xa3\x2f\xec\xfe\x96\x07\xa8\x61\xf7\xe8\x4a\xe5\xa7\xfc\
\xcc\x90\x7a\xf2\x43\x11\x7e\x31\xf1\x22\x28\xe2\xa7\x5d\xe5\x79\
\x20\x69\x7e\x40\xa6\x68\xac\xd6\x88\xb8\x41\x52\x2e\x48\x53\x2a\
\xf8\xb9\x06\x1e\x95\xd1\x3e\x63\xb3\x5a\x7e\xeb\x06\x71\x0e\xd4\
\x0b\xb9\xd2\x36\x0c\xae\xeb\x18\xdf\x2b\xb9\x7c\x10\xd0\x9a\xe3\
\x6d\x4b\xaa\x8e\x63\x8b\x76\x08\x60\xb3\xa9\x63\x34\x4f\x18\xe6\
\x48\xda\x1c\xcd\x64\x47\x52\xe6\x78\x9a\xbe\xae\xc9\xb3\x3c\x44\
\xf9\xcb\x3f\xb2\xda\xd3\x99\x16\xc3\x8c\xde\x33\x42\x14\x43\x44\
\x02\xbb\xc7\x1e\x49\x90\x89\x5a\x4a\x23\x76\x0a\xa0\xea\x41\x84\
\xf2\x02\x67\x98\x30\xc6\x9e\xed\x7d\x44\x8d\x42\x1b\xf0\xfc\x99\
\xee\x07\x4c\x33\xa1\x67\xcd\x90\x96\xa5\xbf\x38\x42\xf7\x81\x65\
\xb4\x43\x27\xd5\x10\x9c\xc5\x98\x91\x4d\x0b\x3b\xc6\xf5\xc6\x7e\
\xf0\x98\xa4\x22\x43\x5c\x02\x79\x61\xd3\x14\xe5\x62\x52\x11\xe8\
\x3f\x51\xfc\xa2\x2e\x0f\x2a\x56\x65\x07\xda\x5b\xd0\x2b\x1c\x0c\
\x38\x26\x53\x0c\xc0\x6e\x22\x3b\xe6\x22\x5c\xa4\x7d\x48\x44\xae\
\x54\x35\x3a\xff\x89\x45\x5b\x95\x92\x91\x8b\xa3\x9e\xb5\x00\xd4\
\x52\x08\x76\x04\x01\x49\xa4\x18\x93\x1d\x1b\x96\xc0\x33\x20\x5d\
\xa9\x90\x7e\xa1\x28\x5c\x65\x87\x20\xcd\x72\x1c\xb8\x43\x29\xe5\
\x9e\xe0\x08\x7b\x83\x74\xc0\x5c\x70\x8a\x51\x20\x29\x01\x49\x54\
\x84\x82\x40\x89\x8e\x2d\x57\x90\x72\x50\xb5\xdb\x65\xb2\x09\x6e\
\x50\xbf\x90\xa7\xc1\x09\xc7\x8e\x7c\xcd\x1c\x0a\xf4\x72\xa0\x0b\
\xfe\xb3\x8c\xd4\x83\xdd\x47\x6c\xd0\x1d\x51\x69\x54\x69\x4e\x56\
\x35\x39\xa0\x42\x3a\x07\x11\xdc\x85\xa8\x6e\xa9\x1a\x69\x2d\x92\
\xd0\x97\xe8\xbc\xf3\xc0\x1d\xd0\xa8\xf2\xf8\xe1\xb4\x86\x0b\x23\
\x81\x28\xdc\x83\x1e\x7a\x47\x1e\xde\xb0\xdb\xac\x56\xac\xe4\x08\
\xc8\x73\xe7\x93\xac\x5c\x36\xca\x85\x4d\x2e\x81\xb3\x92\x80\x80\
\x05\xa8\xd3\x83\x2f\x57\xe2\x08\xec\x62\x22\x70\x1b\x4b\x11\x88\
\xe0\x1e\xe2\x1f\x86\xd2\xfd\x09\x73\x42\x69\x70\x21\x65\xe2\x3c\
\x32\x2e\x6e\x4b\x80\x31\x1e\x68\xc8\x45\xd5\xee\x30\x41\x63\x34\
\x92\xcf\x3c\x10\x25\x3b\x08\x44\xd8\x04\xf9\xc3\xf2\x8a\x46\x1d\
\x42\x08\x9b\x20\x92\x46\x01\x83\xa1\x6c\x30\xcc\xbf\xba\x04\x1e\
\xb6\x59\x96\x5d\x33\xc8\xcf\x95\xc7\x7b\x72\x81\x28\x17\x40\x9d\
\x58\x74\xc3\xa9\x16\xe7\x0a\x38\x62\xe2\xb3\x04\xaa\x53\xda\x5d\
\xd1\xef\x9a\x48\x99\x1c\x20\x2a\x1c\xe7\x2a\x84\xc3\x79\x3d\x70\
\x6b\x60\xc5\x3e\x50\xc9\x85\xa0\x4a\xf4\x81\x4a\xfd\xd7\xa1\x40\
\xed\xbf\xde\x44\x1e\xc4\x62\x3e\x54\xe2\x91\xa1\xba\x5d\x0e\xdc\
\xe7\xec\x6e\xe7\xd5\xe5\xe9\x45\x36\x02\x81\xd2\x50\x29\x75\x19\
\xd0\x2c\x40\xbd\x8d\xba\x08\xfa\x07\x75\x14\x30\xb7\x0e\xbd\xf2\
\xa3\x5d\x5f\x19\xca\xf4\x51\x72\x11\x2c\xae\x38\xee\xd4\xba\xf3\
\xa9\x4b\x39\x03\xc6\xdd\xed\x58\xbf\x87\x60\x9a\x3e\xd8\x22\x19\
\x65\x0e\xe7\x23\xb0\xa0\x2b\xd5\x16\x70\x64\x44\x80\xa2\xb8\x88\
\x42\x26\x38\xc1\xe1\xf8\x07\x2b\x6b\xf0\x4f\x7a\xe4\xc3\xf7\x38\
\x4a\x26\xd9\x96\xf2\x84\x39\x12\xa5\x64\x5b\xc0\xf1\x8a\x4d\x30\
\x8b\x6d\x29\x1a\x02\xe2\x16\x80\xd2\xf0\x08\xa4\x89\x9a\xfe\x06\
\x19\x46\xbe\x45\x3f\x3d\x46\x43\x1e\x1a\xd0\xa6\x9c\x01\xea\xed\
\x79\x8d\x02\xb8\x44\x60\xae\xa0\x0d\x13\x68\x92\x73\x4d\x79\xfc\
\xb5\x69\xf5\x15\x43\xb9\x4a\x70\xdc\x76\x1c\x06\x84\x66\x33\xe4\
\x93\x5c\x1d\x8e\x1b\xc2\x07\x94\x1b\x1c\x82\x96\x55\x31\xba\xa7\
\xb1\xf7\xe9\xd6\xee\x87\xa7\xf4\x3c\x56\x37\xfc\x6a\xd4\x18\x75\
\x2c\x4a\xc8\xc9\xbb\xf3\x7a\xf5\x78\x02\xb2\x14\x09\xca\x03\x2f\
\xf2\x64\x3c\xc1\x1f\xfe\x09\x4a\x9b\x8b\x50\x28\x62\x82\x8a\x76\
\xac\xa1\x08\xc4\x62\x21\xf2\x6b\x86\x43\x21\x02\x3f\xf4\xde\xf0\
\x73\xf4\x89\x6a\x5c\xbf\xb2\xed\xc3\x87\xdd\x6f\xf8\x79\x11\x0a\
\x84\x3e\x38\xfb\x73\x0d\xd1\x66\x39\x00\x22\x03\xca\x86\x9e\x65\
\xd0\xe3\xb5\xf4\x60\x66\xe0\x85\x81\x27\x5e\xe8\x7f\x92\x65\x8b\
\xa2\x3e\xda\xfc\xe1\x39\x5f\xaa\x8d\xd2\x8b\x5f\x32\x08\xc8\x3a\
\x77\x6f\xe9\x74\x70\x4b\xb6\x02\xd0\x0a\x1e\x08\x1a\x0a\x76\x17\
\x74\x3a\x25\xb1\xed\x55\x14\x4c\x07\x94\xc4\x89\x94\x91\xcb\x25\
\x4c\x95\xaa\x72\x43\xc2\xbe\x20\x89\xb7\x6e\x3e\xe0\x5a\xc4\xca\
\xff\xe5\x4d\x37\x63\x9d\x17\x9e\x83\x9a\x48\xfd\xe7\x97\xfd\x30\
\x12\xcc\xfd\x00\x23\xd4\x91\x45\xdb\x08\x47\x73\xa5\x63\x1e\x0b\
\xf0\x95\x9d\x61\x41\xa2\x6c\x30\x0d\x09\x04\x10\xec\x2f\x33\xa8\
\x9a\xa0\x2a\xab\x99\xf4\x7d\x0f\x9a\x30\x43\x21\xd4\x14\x7d\x59\
\x98\xad\x98\xfc\xd7\xd6\x1d\x40\x3f\x1b\x82\x08\x2d\xda\x0a\xac\
\x53\x00\x8d\x54\x1d\x36\xc0\x91\x2b\xef\x52\x19\x12\x63\x12\x9f\
\xb0\xae\x04\x18\xb6\x3e\x82\x27\x3b\x27\x51\xd4\x56\x13\xcc\x1a\
\xcb\xb6\x7c\x7e\xde\xde\x1f\x83\x10\x7d\x38\xa8\x8c\x94\x2d\x58\
\x7b\xdc\x4f\x07\xaa\xe8\xd5\x37\x81\xc9\x5f\x45\x74\x74\x02\x4a\
\x8f\xcb\xe8\x1b\x01\x1a\x2a\x8a\xcc\x03\xd8\x3e\x29\x34\xe3\xdb\
\x03\x14\xbe\xe5\x35\xab\x2f\x26\x49\xf2\x85\x53\x75\x5e\xd0\xd6\
\xfd\xf5\x20\xf0\xa3\x17\x3c\x8f\xfa\xd0\x9b\x84\x70\xfc\xfb\xf2\
\xd6\x0f\x15\x1d\xfc\x28\x73\x36\x50\x12\x2a\x0b\x07\x22\xce\xa2\
\x87\x6c\x68\x1c\x33\x6b\xa4\xcd\x54\x26\x4b\xbf\xa3\x38\x39\xa6\
\x95\xcd\xbe\x71\xfa\xc7\x1a\xa3\xcd\x52\xb1\x54\x85\x0c\xd0\xd2\
\xcc\xa8\x4d\x44\x65\x46\x00\x2d\x51\x5e\x99\x48\xde\x5d\xdd\x00\
\x25\x31\x24\x2a\xa9\xa4\x87\x67\x0c\x07\x92\x0a\xf0\xde\xc4\xa7\
\x33\x11\x2b\x27\xe5\x06\x75\x0d\x28\xfc\xc5\xde\xef\xbc\xd8\xff\
\xb4\xe2\xd9\xb8\xa4\xed\xad\x17\x4f\x79\xb3\x8a\xd8\x80\x39\x29\
\x08\xae\x62\x5d\xe0\xf8\x06\x1a\x7b\x6c\x11\x00\xcb\x31\x8b\x98\
\xa2\x18\x30\x9c\xa5\xb7\xa7\x2c\x9c\xe7\x23\x61\x3d\x4a\x7f\x53\
\x0c\x4a\xb4\x44\x3a\x6d\x18\xf4\xb7\xb5\x82\x3a\x0e\x02\x81\x8c\
\x49\xa5\xa5\x05\x86\x1f\x71\x08\xc4\x22\x00\x35\xfc\xc3\xac\x39\
\x28\x09\x3a\x86\xb0\x03\xb6\x57\x02\xca\xca\x5e\x2b\x31\x56\xa5\
\x28\x1b\x10\x13\x26\xc9\x31\x61\xe7\xcd\x25\x11\x6d\xe7\x8b\x64\
\x86\xce\x7d\xfa\xec\xca\xd1\x6d\x2a\x4e\x46\xe8\xf3\xf9\x55\xbf\
\xd8\xdf\x9a\xab\x3d\xbe\x9b\xa3\x20\xea\x85\x56\xb3\x5f\x01\xdc\
\x32\x6e\xf0\x0d\x42\x1f\x40\x14\xfd\x57\x45\xbc\xf0\xe5\x72\x81\
\x7c\x52\xa8\x03\xf1\x2f\x32\x12\x6d\x17\x1c\x98\x44\xff\x31\x01\
\xf5\x56\x64\xf0\x53\xdb\x28\xca\x8b\x22\x76\x6d\xcf\x6c\x04\x7e\
\xfc\xa2\xe7\xf5\x5e\x67\xf0\x3b\x65\x98\x7c\xe5\x7f\xcd\x80\x7f\
\x55\x91\xda\x35\xb5\x67\x9d\xdf\x78\x65\x54\xfd\x80\x17\xf1\x61\
\x57\xfa\x90\x40\x0d\x5d\x1c\x77\xf9\x24\x6f\xf2\xb7\xfa\x41\x48\
\x75\x80\xc0\xd5\x91\x71\x38\xee\x2b\x25\xe1\x3f\x5d\xf2\x53\x01\
\xf7\xe0\x77\x94\x80\x20\x19\x16\x2b\x80\x5a\x17\x26\xcc\xf1\x67\
\x7a\x1e\xda\x3d\xb6\x75\xc2\xa0\xc3\x3f\xca\xb2\xa8\x6a\xc5\x9a\
\xfa\xb3\x26\x6b\x6f\xf6\x00\x9f\x62\x1a\x1f\xf0\x1c\x00\x47\x6d\
\x76\x58\x86\x1b\x94\xfa\xb7\xf2\x46\x68\x94\x1d\xdb\x73\xd3\x08\
\x05\xcc\x78\x38\x58\x11\x0b\x97\x46\xf5\x48\x50\x33\xb4\xec\x60\
\x5a\x9b\x98\x48\xa5\x0c\x43\x0b\x62\xe5\xd7\x33\x54\x0c\x4c\x8e\
\x7a\xc0\xb5\xf2\x8b\x45\x06\x3f\x6d\x24\xe3\xec\x09\xad\x73\x6c\
\x8f\x7e\x2f\x93\x0a\x4e\x60\x97\x14\x17\x32\x7c\x57\x18\x44\x0e\
\x52\x51\xf6\xa3\x3e\x01\x2b\xcf\x89\x89\x26\x15\xf1\x22\x6c\x8c\
\x9c\xf9\xdc\xc5\xb5\x43\xf4\x87\x2b\x1c\x60\x4e\x7a\x6e\xd5\x6f\
\x0f\xb6\x5c\xa9\xe2\xc4\xf1\x4c\x5e\x8a\x3a\x76\x90\x16\xbf\xdc\
\xc5\x57\x78\x7f\xa0\x65\x14\xe5\x05\x9f\xac\x54\xf1\x51\x64\x69\
\x50\x80\xb7\xf7\xff\x02\xc0\x6c\x6e\x41\x70\x01\xda\xfd\x0d\x14\
\x29\x17\x1a\x23\xd7\xa7\x18\x81\x9f\xbc\x3c\xae\x48\x81\xab\xcd\
\x84\xf8\xea\xb6\x8f\x1c\x2e\xfe\xa8\xef\x08\x80\x17\xfe\x1d\x40\
\xab\x0e\xd7\x5d\xd3\xf6\xae\xe3\xaa\x4f\x92\x28\x16\x2a\x96\x86\
\x51\xb5\x18\x62\x3c\xe8\x41\x9d\x76\xf9\xfc\x68\x4a\xc7\x7a\x87\
\x3d\xad\x1d\xe5\xbd\x96\xda\xe4\xb3\xcb\x3e\x66\xa4\x3d\x04\xfc\
\x0b\xee\x1e\x31\x95\x40\x56\x79\x29\x17\x20\x81\xaf\x76\x62\x21\
\x3c\x55\x6b\x65\x4d\xfa\x86\x3e\x56\x33\x3d\x5a\xa4\x29\x08\xa2\
\x18\x70\x74\xf2\xce\x85\xfa\x0a\x80\xee\x82\x2b\xca\x42\x80\x00\
\xfd\x04\x4d\x2e\x0b\x40\x32\xd8\xc6\x07\x42\x01\x23\x1d\x09\x18\
\x95\x31\xbd\xa6\x24\x54\x1e\x0d\x46\xf8\x2b\xdd\xfd\x5a\x64\x68\
\x38\x35\x3e\x91\xa2\x9f\x04\x0e\x84\x31\xe2\xb3\x54\x5b\xba\x66\
\xca\x4f\x77\x2b\xa3\x5c\x20\x40\xe3\x17\x11\x14\xc8\xbc\x02\x68\
\xb5\xed\x07\x9f\xe4\x18\x94\xc3\xe9\x7a\x3c\x0b\x89\x00\xae\x30\
\x22\x04\xa7\x29\xfd\x42\x90\x10\x43\x92\xf2\x50\x6c\xf0\x3f\x8f\
\xc1\x3f\xe5\x2a\x15\xa7\x41\xeb\x99\xbc\x14\x75\xec\xf0\x1d\x39\
\xc0\xb1\x0e\x7e\xe4\xe0\x90\x0f\xd9\xf6\xa3\xe9\x40\xa3\xc8\x32\
\xf8\xa9\x2e\x8e\x59\xbf\x3f\x8e\x79\xf0\x73\xd1\x0a\x01\x5e\xde\
\xe0\xe7\xa3\xb3\x80\xdb\x1f\x3e\x73\x0f\xcc\xe1\x75\x95\xc0\xbf\
\xf5\x09\x43\x46\xff\x5f\x3b\x7e\x71\xc7\xbe\xff\x58\xd7\xff\x58\
\xc2\xe4\xaf\x15\x53\x6d\xd1\xa2\xe4\xac\x82\x16\x3f\xb4\x97\x31\
\x81\x28\xb9\xce\x7c\xea\x55\x5c\x14\xba\x71\x45\xf7\xc0\x69\x9a\
\xe0\x27\x0e\xa2\x43\x05\x2a\x91\x2c\xec\x34\xb4\xe8\xb9\x98\x7a\
\x34\x46\x95\x89\xcd\x20\xe6\x03\x7a\xed\x97\x14\xa1\x94\x30\xca\
\xf7\xca\xf9\x66\x17\x4f\x08\xe8\xc3\x05\x41\xdd\x25\xb3\x03\x3c\
\x8b\xe8\x11\x04\xd2\x50\x04\x70\x58\x51\x2e\x50\x55\xf3\x93\x78\
\xf8\x2d\xae\xb3\x57\xc4\xa4\x87\x83\x41\xbe\xf2\x8f\xfc\x53\xc0\
\x5c\x07\x5b\xa1\xa0\x0a\xf4\x54\x23\x18\xa2\xf1\x4d\x3d\x0e\xd9\
\xe9\xcf\x0a\xf3\x8f\x8b\x05\x75\x8b\x42\xc8\x0c\xe8\x46\x40\x47\
\x16\xf5\x67\xfd\x41\xd0\xf3\xfb\x20\x3d\x66\x34\xe8\x47\x88\x39\
\x98\x74\x07\x85\xff\x5a\x02\xcf\xb8\x2e\x47\x55\xcf\x62\xe7\xb9\
\xa2\x39\x50\xeb\xc8\xae\x81\xda\x88\x6e\x31\x52\xa0\x3e\xc4\x81\
\x9d\xa7\x7b\x01\x14\x1c\x82\x03\x09\xd0\xdd\x20\x27\x88\x62\x37\
\x60\x81\xaa\x14\x25\x55\xc1\xa5\x19\xf2\x62\x9a\x02\xc4\xf2\x1a\
\x45\x82\x5b\xc6\x13\x1c\xff\xf3\x82\xb8\x5b\x10\x8a\x37\xa5\xc7\
\x8d\xbc\x00\x87\x69\x9a\x44\x40\xdb\xc1\x7f\xcc\x5c\x8a\x43\x4d\
\xe9\x04\x7a\xf6\xcd\x02\x7e\x01\x7c\x3f\xa8\xbe\x99\x1f\xc0\x27\
\x5f\x7d\x02\x4a\x91\x5f\x39\x08\xd4\x85\x5c\x55\x4a\xb5\xfa\x93\
\x97\xd4\xf7\xf9\xa5\xf5\xd1\x9b\x1d\x5a\x40\x67\x7e\x59\xf9\x73\
\x3c\x06\xac\xe4\x71\x5e\x2b\xa6\x96\xce\xbc\xb8\xe5\xba\xe5\xd5\
\xab\x25\x4a\xe5\xb2\x41\x63\xd1\x8e\xc2\x2b\x07\xc2\xa1\xaa\x41\
\x45\xd8\x3e\xef\x1f\xd9\x95\xb4\x92\x31\x3d\xde\x1a\x97\xbf\x73\
\xe8\x6a\x45\x69\x6c\x3b\x2f\xae\x23\x99\xa1\xa1\xf4\x80\x41\x1b\
\x67\x54\x84\x1e\xd5\xa3\x55\x91\xba\xd2\x10\x7d\x15\x8c\x85\x5c\
\x55\xc0\x20\x1d\x04\xb0\x7d\x8b\x8d\x74\x72\xe3\xe8\x81\xc6\x16\
\xcf\x65\xe5\x1f\xca\x0c\x0c\xa5\xfa\xb1\xdc\x61\x82\xaa\x8e\xd6\
\x56\x45\x6a\x90\xe4\x78\x4b\x7d\x0a\xdb\x7c\xcb\x0c\xf1\xb7\x06\
\xab\xe3\x21\xec\xfc\x23\x9a\x96\xb2\xcc\x3e\x43\x9f\x48\xa4\x93\
\x99\x0c\xff\x24\x20\xbd\x37\x48\xbf\x13\x82\x32\xa1\x3b\x31\xa0\
\x21\x3e\xd1\x51\x92\xe8\xd4\x30\xde\x83\x91\xf1\x78\x6b\x92\xef\
\xad\xba\x41\x76\xa8\xe3\xfb\x00\x33\x86\xa2\x5c\x28\x9d\x38\x10\
\x4b\xf7\x07\xb3\x19\xf4\x65\x33\x10\x4b\xc4\xa7\xa4\xa2\xb5\x92\
\x84\x42\x51\x05\x32\x84\x23\x3e\xb8\x97\xaf\xb3\x9f\x3c\xa7\x6e\
\xe0\x39\xa2\x6c\xdd\x38\x8d\x3c\x79\xd2\x3d\xdd\x0d\x67\xa8\x78\
\xae\xc2\xf3\xe1\xbb\x0c\x66\x0c\x73\x60\x30\x91\x4c\xd1\xaf\x27\
\x60\x60\x84\x74\xfa\xeb\xc3\x55\xe5\x74\xe7\x95\x9f\x5d\xfb\x42\
\xc6\x7a\x3e\x78\x5c\x15\x45\x77\xff\xd8\x68\x22\x8d\x81\x13\x8d\
\xe8\xcd\x75\x65\x98\x71\x2d\xfa\x73\x37\xd4\x94\xc8\x87\x22\x4b\
\x6b\x42\x12\x4d\x0b\xb1\x89\xa4\xd1\x33\x30\x8e\xd3\x2a\x8e\xad\
\x35\x15\xf1\xaa\x8a\x98\x53\x2d\xf9\x90\x89\xa7\x00\x34\x6a\x5d\
\xec\xde\x81\xf1\xf1\x44\x06\x53\x36\x46\x6f\x38\xa2\xd7\x56\xc5\
\x63\xd1\xbc\xef\x4a\x42\x7f\x6e\x73\xe7\x80\xb4\x7b\x4b\x96\x3f\
\xf8\xdd\x10\xd1\xc9\x6e\xf8\xfd\x4b\x71\x4e\xd3\x65\xd7\x4e\xbd\
\xb1\xa0\xe6\x51\xab\x54\xad\x13\xe6\xd8\x93\x87\x1f\x3c\x94\x38\
\x40\x5f\xea\x45\xd5\xeb\xf1\xe3\x6b\x4e\x99\x5b\xb1\x04\x49\xc0\
\xda\xbe\x27\x1e\xeb\xba\xb7\x3b\x79\x28\x63\x66\xb0\x0e\xd7\x46\
\x1b\x2f\x68\xbe\xfa\xb8\x9a\x93\x91\x5f\x04\xa4\x3a\xc6\x8d\xb1\
\x57\x87\x5e\xd8\x37\xba\xb3\x2b\x71\xa8\x3f\xdd\x3b\x61\x8c\x1a\
\x59\x3a\xe9\x62\xdc\x86\x02\xa1\x32\xfa\x0d\xda\xa6\x96\x92\xb6\
\x55\xb5\xa7\x4c\x2f\x9d\x8b\x15\x91\x1d\xc8\x55\x19\x08\xb5\x53\
\xd0\xb4\xc1\x74\xdf\xd3\xdd\x8f\x0c\xa5\xfb\x33\xf4\x57\xe8\x02\
\xa1\x60\xa4\x29\x3e\xe5\xb4\xa6\x0b\x4a\xf4\xdc\x37\x49\x05\x03\
\xa9\xbe\xa7\x7a\x1e\xec\x4f\x76\xa1\x17\xa2\x93\x54\x44\x2a\x4f\
\xac\x3f\xbb\xb5\x04\xd3\x13\xcd\xf4\x98\x65\x9e\xee\x7e\xf8\x95\
\xbe\xe7\xbb\x12\x1d\x63\xc6\x28\x0d\xf3\x40\xa0\x2c\x54\xd1\x18\
\x6f\x59\x59\x7b\xe2\xe9\xcd\xe7\xc3\x1a\x9a\x86\x17\x0b\x3d\x88\
\x54\xcb\x08\x69\xd9\x78\x28\x58\x12\x09\x87\xb1\xfe\x8f\xec\xae\
\xde\xfe\xf3\xc8\x04\x1a\x08\xab\x65\x20\x19\x9f\xb2\x77\xd6\x0d\
\xa3\xe5\xf4\xf3\x35\x18\x25\x41\x2b\x3d\x73\xdf\x1d\xcd\x87\xef\
\x2f\x1f\xd9\x15\x49\x0f\x80\x65\x05\xc2\xa9\x68\xdd\x48\xf9\xdc\
\x43\x53\x2e\xdf\x3f\xfd\x7a\xe5\x22\xb5\xbe\xfb\xfe\xa0\x07\xfc\
\x13\x14\x0a\x8d\xbd\x8f\x4f\xe9\xbc\xa7\x6a\x64\x53\x49\xa2\x23\
\x62\x8c\xd0\x69\x0a\x8e\x05\xc3\xe9\x70\xed\x68\xe9\xac\xc1\x9a\
\xe3\x0f\xb4\xbe\x69\xbc\x9c\xbe\xf9\x47\x3e\xbb\x7a\x14\x0a\x55\
\x39\xbc\x7e\xe6\xfe\x5f\x5a\x7a\x2c\x60\xa5\x5b\x0f\xdd\x1d\x4f\
\x75\xab\x34\x06\x26\x91\xc3\x4d\x17\x8e\x96\xce\x0e\xa0\x45\x50\
\xdf\xf4\x5e\x43\xe6\xc0\xb4\xb7\x0f\x54\xd3\xcf\x84\xbb\xe1\xbe\
\x81\xd7\x3f\x34\xf1\xc2\xe6\xce\xf6\xae\x11\x8c\xc9\x91\xb1\x54\
\x06\xfb\x19\xaa\x2a\xda\x4c\x95\xc4\xc2\xd5\x15\xf1\xe6\xda\xd2\
\x25\xf3\x1a\x96\xcc\xa6\xdf\xea\xcb\x87\x77\xb0\x75\xf5\x8f\x3d\
\xb3\xbe\x7d\x6c\x22\xcd\xbf\xb4\xa4\x55\x97\xc7\xce\x58\x35\xa3\
\xb6\x52\xfd\x08\xe5\xe8\x78\xfa\xa9\xf5\xfb\xb7\xee\xed\xeb\xe9\
\x1f\x4b\xa4\xa9\x07\x86\xf5\x40\x75\x65\xc9\xcc\xd6\xea\x35\xcb\
\x5a\xa6\xb7\x56\x3a\x83\x5f\x80\x2c\x5b\x77\xf5\xae\xdb\xd4\xd9\
\x7e\x78\x78\x68\x34\x85\x1d\x26\x5c\x2a\x8b\x47\x9a\xea\x4a\x97\
\xcd\x6d\x38\x75\xe5\x54\x88\x8b\x66\x17\x3c\xfe\x38\x20\x5d\x81\
\xc0\xfa\x6d\x5d\x9b\x76\x75\x1f\xee\x19\x1d\x18\xa1\x39\x8e\x2c\
\x04\xe8\x8f\xa9\x97\x97\xc7\xea\xab\x4a\x66\xb4\x55\x9f\xbc\xa2\
\xad\x92\x27\x3b\xce\x91\xab\x22\x37\xf2\xb4\x63\xf0\x17\xfb\x3e\
\x3f\xca\x42\x1f\x5f\xda\xf2\x7f\x34\xf8\x81\x53\x1a\xce\xbd\x7e\
\xc6\x07\x85\x16\xf3\xa8\x47\x8c\x4c\x5d\xd7\xd7\xf6\x3e\xfe\xd3\
\x9d\xff\x21\x49\x82\xd9\xe5\x0b\x3e\xb9\xf0\x36\x08\xfe\xf9\xc0\
\xcf\xff\xd9\x75\x8f\xe2\xda\x98\x56\x3a\xfb\x93\x0b\xbf\x19\xc6\
\x7e\x97\x35\x1d\x1c\xdf\xff\x4c\xef\xc3\x1b\x06\xd7\x61\x28\x2a\
\x89\xe2\x88\x06\x63\xcb\x6b\xd6\x5c\xd6\xfa\x96\xba\x18\xfd\x55\
\x09\x64\x77\x4f\x8c\x52\x2d\x7f\xdc\x7f\xc7\x63\x87\xef\x65\x46\
\x0e\x6f\x99\xf9\xbe\xb3\x9a\x2e\x51\x11\x1b\xf7\x1f\xfa\xcb\xdf\
\x0e\xfc\x5a\x45\x18\x27\x36\x9c\xf5\xae\xd9\xb7\x40\xcf\xb6\xa1\
\x0d\x7f\xef\xf8\xe3\xae\xe1\x2d\x2a\x21\x0f\x01\x6d\x61\xe5\xf2\
\x6b\x66\xdc\x30\xbd\x6c\x96\xdd\xa3\xd0\xf7\x69\xb6\x42\x57\xc3\
\x9a\x83\xd8\xb2\xf5\x1f\x9e\xbe\xef\x0e\x4e\x50\xd8\x3d\xf7\x43\
\xaf\x2e\xbb\x1d\x44\x53\xc7\xbd\x0b\xb7\xdf\x5e\x3d\xf8\x0a\x71\
\xb9\xaf\xe4\xe1\x70\xd3\x05\x1b\x97\x7d\x6b\xb4\x7c\x8e\x44\xed\
\x1b\x55\xf9\x90\xc1\x5f\xdf\xfb\xe4\xbc\xdd\xdf\x6d\xe8\x7d\x42\
\x37\x53\x7e\x5d\x54\x21\x1d\xa9\xde\x3b\xfd\x3d\xdb\xe7\x7d\xd2\
\x08\x95\xb1\xcf\x94\x17\x0d\x10\xc8\x5a\x6b\x5e\x7c\x7b\x6b\xe7\
\xdd\x22\x36\x19\x5c\xae\x76\x4c\xb9\x6a\xed\xea\x5f\x63\x5e\x50\
\x71\x86\x0c\xfe\xa1\x91\xe4\xc3\x6b\xf7\xae\xdd\xd8\x81\x65\x50\
\xf8\x39\x78\x0b\x8b\x8a\x9a\x3e\xa5\xea\xac\xe3\xa7\xad\x5a\xd4\
\xa2\x58\x02\xef\xe0\xbf\xeb\xd1\x6d\x0f\x3d\xbf\x9b\x28\x3b\xfb\
\x75\xe7\x2e\x3a\x77\x0d\xfd\x9d\xfc\x75\x9b\x0e\xdd\xf3\xe4\xb6\
\xde\x41\x9f\xd7\xba\x20\x1c\x8d\x86\xce\x3d\x71\xfa\xe5\x67\xce\
\xe3\x8e\x42\x67\xd5\xee\xfe\xf1\x7b\x1e\xdd\xf9\xea\x8e\x6e\xcc\
\x45\x4a\x0c\x20\xaf\x95\xe6\xf9\x33\x6a\xdf\x7a\xe1\x62\x4c\x04\
\xcc\x72\xe0\xf1\xc7\xc1\x96\x3d\x3d\x0f\x3c\xb3\x67\x77\xfb\x00\
\xe6\x35\xc5\x02\x9c\x32\xda\xbc\xaa\xca\xd8\xe9\xab\xa6\x9f\x77\
\xe2\xac\x50\x18\x09\x2e\x49\x17\xd4\x90\xb6\x41\x3b\xff\x5c\x70\
\x81\x27\x32\x86\x9f\x43\x6f\x10\x9e\xe9\x79\xe4\xef\x87\xfe\x00\
\x82\xcc\x32\xb8\xf7\xd0\x4c\x9c\x2e\x78\x6a\x88\x65\x0f\x62\x7f\
\x3c\xf0\xd3\xc2\x91\x0f\xf0\xdf\x17\x94\xaa\xcf\x3e\xd1\x7d\xff\
\xed\x5b\x3e\xf5\x58\xd7\x7d\x47\x33\xf2\x81\x94\x95\x5c\xd7\xf7\
\xc4\xf7\x77\x7c\x79\x20\xd3\x63\xcf\xd0\xe4\x86\x1d\x08\x63\x19\
\x9f\x2f\x44\x8d\x67\x46\xed\xaa\xcc\x05\xfa\x95\x39\x2f\xe2\x3a\
\xfd\x7d\xeb\x07\x3a\xfe\xf2\x5f\x5b\xbf\x58\x74\xe4\x03\xf4\x7e\
\xd4\x86\xef\x6f\xf9\x4a\x67\xa2\x9d\x9c\xc0\x32\x6b\x70\x77\xd2\
\x43\xd9\x50\x38\x13\x0c\xa5\xb0\xf5\xcb\xa8\x8d\x9b\x03\x43\x2f\
\xc5\x96\x62\xd1\xa6\x2f\x9d\xfc\xfc\x9b\xaa\x07\x5e\x51\x2e\x23\
\xbf\x72\x3c\x87\xe6\xae\x07\x4f\x7a\xee\x9a\xf8\xf8\x41\xba\x33\
\x62\x65\xe9\xf5\x41\xbf\x80\x1a\x98\xbb\xf7\x87\xa7\x3f\x77\x49\
\x73\xf7\x43\x3e\x23\xdf\xab\x36\x92\x1e\x9c\xbf\xf3\xdb\xa7\x3e\
\x7b\x71\x3c\x79\x98\x8b\x2f\xe6\xb3\x51\xa3\xbf\x72\x74\xab\x72\
\x06\xf0\xe6\xca\x01\x7c\xa7\xbe\x35\xad\x7c\x6c\x57\xd0\xca\x7f\
\x99\x02\x2a\x37\xed\xec\xfe\xf6\xaf\x9e\x7f\x74\xdd\xbe\xdc\xc8\
\x77\x2b\x74\x69\x00\x4c\xcb\xda\xd3\x3e\xf0\xb3\xbb\xd6\xff\xe1\
\x81\xcd\x60\xe6\x5a\x86\xdd\x73\x02\xce\x0b\x2a\x03\xc0\x79\xb1\
\x77\x00\xf5\xe7\x47\x36\xdf\x71\xf7\xcb\x9e\x91\xef\xd8\x62\x22\
\x95\x36\xfe\xf1\xe4\xee\x3b\x1f\xd9\x2e\xb7\x32\x76\xee\x1b\xf8\
\xce\xaf\xd6\xbd\xbc\xed\xb0\xc1\x37\x6e\x09\x10\x43\x70\xd5\xdb\
\xf6\x7d\xfd\x3f\xfc\xe3\x4b\x83\x23\xf4\x07\x88\x5c\xf0\xf8\x23\
\xe1\xde\x27\x77\x7c\xef\x77\x2f\xec\x3c\xd0\xaf\x46\xbe\x63\xda\
\x5d\x46\xa6\x31\x1b\xde\xf3\xd8\xf6\x1f\xff\xe9\xc5\xf1\x89\xb4\
\xd2\x77\x24\xe8\x97\xbe\xef\xd3\x76\x65\x50\x70\xc6\x3c\xd6\x15\
\xe1\x3c\xde\xfd\xc0\xa8\x51\xf4\x9b\x7f\x38\x2d\xbf\x69\xea\xbb\
\xce\xa8\xbf\x00\x5b\xe5\x55\x35\x27\x63\x2b\x7e\x42\xed\xa9\x27\
\xd4\x9d\xba\xaa\xfa\x94\xe3\x6a\x4e\x5c\x5a\x79\xfc\xac\xf2\x79\
\x65\xa1\xf2\x09\x63\x2c\x99\xcd\x6f\x45\x0f\xa4\x30\x01\x6d\xcf\
\xe8\x8e\xb9\x15\x0b\xeb\xa2\x8d\x1c\xc7\xe0\xa7\x6d\x30\xbc\x3a\
\x34\x71\xe0\x95\xfe\xb5\xc2\x14\x4c\x2f\x9d\x35\x6e\x8e\xde\x73\
\x90\x26\x8b\x42\x54\x47\x6a\x4f\xae\x3f\x5b\x0f\xe8\x07\x27\xf6\
\xfe\x78\xc7\x37\x8d\x6c\xc1\xfa\x70\x24\x8c\x1b\xa3\x3b\x86\x37\
\x1d\x5f\x77\x0a\xdd\xcf\x83\x6b\xd4\x8f\x71\x25\x77\xf0\x7f\xe3\
\xc0\x8b\x07\x13\xfb\xdc\x2d\x0a\x2c\xaa\x5e\x3e\xa7\x62\xa1\x8a\
\xd8\xd8\x35\xb2\x15\x7a\x54\x84\x31\xb5\x6c\x56\x77\xa2\xe3\xce\
\x03\xbf\xc2\x5e\x5b\xb1\x0a\x61\x6b\x4e\x9a\x89\x3d\x23\x3b\x56\
\x37\x9c\x1a\xd5\x23\x74\x9e\x44\x9d\xd3\xbd\x7c\xba\x2d\x09\xba\
\xe5\xf0\x7d\x55\xc3\xaf\xba\x3b\xc1\x40\xcd\x09\x18\xf3\x0b\xb7\
\x7d\x4d\x71\x24\x08\xed\xc0\x96\x8f\xa6\xfb\x2b\x87\xb7\xd2\x3d\
\x76\xda\x29\xa3\xb5\x73\x39\x9c\x30\x6f\xd7\x77\x96\x6e\xfc\x34\
\x2d\x6a\x9c\x25\x07\x30\x44\xc2\x0d\x66\x96\x24\x0e\x35\xf7\x3c\
\x74\x78\xca\x65\x06\xff\x82\x03\x44\xa2\xc6\xe8\xf4\x7d\xbf\x8a\
\x18\x83\x4a\xbe\x30\x17\xe0\xd6\xc6\x44\x3a\x52\x8b\xb3\x89\xa5\
\xf3\x5f\x0a\xb6\xf1\xe2\x96\xce\x9f\xde\xb5\x5e\x0d\x7b\x27\xa3\
\x73\x75\x20\x51\x47\x20\xab\xed\x3f\x3c\xdc\x3f\x94\x58\x3e\xb7\
\xd1\xb7\xa4\x3b\xf6\xf5\xed\x3e\xc8\xee\x49\xc8\xd2\xfa\xfc\xea\
\xce\xae\x87\x9e\xe3\xaf\xa2\x49\x61\xe5\x6a\x2b\x54\x34\x80\x7e\
\xdb\x3e\x38\x7b\x6a\x4d\xdf\xd0\xc4\xf7\x7f\xff\xe2\x04\x7c\x43\
\x92\x93\x0a\x38\xb9\x6c\xc0\xff\x43\x3d\xa3\xab\x97\x4e\x91\xf3\
\x82\x2f\xfe\xf8\xd0\xd6\x07\x9f\xdd\x93\x33\xe4\xb6\x28\xb4\x04\
\xd0\x00\x13\xbd\x83\xe3\x3b\xf6\xf7\xaf\x5c\xd0\x1c\x0d\x61\xde\
\xce\x89\x50\x50\xff\x73\xd0\x2f\x7b\xff\x67\x94\xa9\x1c\x72\x32\
\x58\x78\x9f\xe8\xb9\x7f\xd4\x28\xfa\x9d\x7f\x2c\xbf\x37\xce\xf8\
\x10\xf6\xa5\xcd\xb1\x29\x1c\x5a\xa7\x94\xb4\xb5\xc4\xdb\x9a\xf9\
\xda\x56\x3a\x63\x56\xd9\xfc\xe3\x6a\x4e\x5a\x59\x7d\x62\x43\xac\
\xa5\x63\x62\x5f\xb2\x60\x22\xcf\x03\xd6\xa0\x9e\x64\xd7\x49\xf5\
\x67\x62\x8c\x09\x83\xfd\x09\xb4\x4f\xec\x5f\xef\x1a\xfc\xe0\x0d\
\x65\x06\x5e\xee\x7f\x5e\xc5\x0b\x50\x19\xa9\x3e\xb5\xe1\x1c\x8c\
\x92\xad\xc3\x1b\x5e\x19\xf4\xcc\x1a\x47\x8f\x91\xcc\x50\x45\xb8\
\x72\x76\xc5\x7c\xd0\x52\x35\x00\xd7\xa4\xb6\x61\x60\xdd\xc1\xf1\
\x7d\x2c\x95\xc3\xc2\xea\x65\x73\x2b\x17\x49\x05\x3a\x61\xc7\xc8\
\xe6\xbc\xc1\x7f\x78\xe2\xe0\xc6\xc1\x97\x54\xe4\x28\x30\x9c\x1e\
\xac\x8f\x35\xcd\xa9\x9a\x4f\xe6\xe9\x8f\xfb\xe2\x03\xf3\x06\xf6\
\xff\x66\x4b\xe7\x3f\xaa\x86\x37\x92\x90\xdd\x64\x95\xc3\x9b\x9a\
\xba\x1f\x52\x11\xc0\xdd\x63\xdc\xb0\x99\x65\x13\xfb\xc6\xca\xe7\
\x0f\x57\xc0\x6d\x88\xe6\x87\xd6\x8e\xbf\xac\x58\xff\x21\x8f\x06\
\xb0\x81\x80\x96\x28\x6d\x1b\x2b\x9b\x63\x86\xca\xc2\xfc\x53\xb6\
\xcc\xcd\xa9\x8d\xa6\xfa\xca\x26\xf6\x1f\x6a\xbb\x06\x19\x30\x5b\
\x06\x03\xd9\x69\xed\xbf\x03\x53\x25\xe7\x01\xb9\x1c\x13\xd0\x24\
\x74\x56\x9b\x28\x6d\xdb\x3f\xf3\xc6\x6c\x30\x42\x05\x67\x6c\xdb\
\xd7\xf7\xe3\x3f\xbf\xa4\xf6\xbf\x22\x89\xe0\xca\xe2\x89\x02\x22\
\x20\x08\x68\x1d\xdd\x23\xe1\x50\x70\x6e\x5b\x2d\xb1\xb1\xb4\xda\
\xe9\x08\x5b\xf7\xf5\xee\xee\x18\x74\x34\xa0\xe1\xf6\x1e\x1a\xc2\
\x21\x9f\x32\xfa\x2a\x74\xae\x36\xb1\x71\x67\xf7\xb3\x1b\x3a\xe8\
\x7d\x2b\xe1\x03\x4e\x46\xb9\x7a\xd1\x37\x38\x31\xa5\xa1\x1c\x41\
\xc5\x09\xc8\xa0\xf0\xcf\x75\xfb\xee\x7d\x62\x17\x51\x4e\x5e\x5b\
\x67\x5d\x75\x49\x63\x7d\x69\x24\xa4\x4f\x24\x79\x06\x04\xdf\x65\
\x05\x5b\x00\xf8\xb0\x74\x6e\xa3\xaa\x32\x1b\x94\x2c\x62\x36\x78\
\x12\xc4\x3f\x7c\xf2\x04\xa4\xd8\x30\xe1\x00\x11\xce\x98\x97\x53\
\x71\xb2\xd9\xa1\xf4\x80\xe2\xd8\x70\xeb\x11\xd4\xc5\x1a\xcf\x6a\
\xbc\xe8\x53\x0b\x6f\xc3\x41\x5d\xb1\xdc\x10\x71\xfb\xba\x67\x74\
\xdb\x6e\x7e\xfd\x4b\x79\xcc\xce\xb8\xeb\x05\x40\xdf\x9f\x30\xbd\
\x6f\x28\x78\x81\x2d\xb2\x4c\x1f\xd8\x9b\x50\xdc\xe5\x51\x4d\xb4\
\xfe\xd4\x86\xf3\xae\x9f\x75\xf3\xfb\xe7\x7c\xf2\x43\xf3\x3f\xf7\
\xc1\xf9\x9f\x7e\xeb\xcc\x9b\xfc\x1d\xd3\xb4\x17\xfa\x9e\x86\x2d\
\xba\xeb\xc8\x28\x2c\xda\x6b\x40\xda\x7d\x10\x60\x7d\xa5\xa1\xd2\
\x8a\x48\x65\xd8\xf5\x9b\xb6\x79\x58\xdb\xf3\x64\xc6\x34\x71\xd2\
\x8f\x84\x43\xf4\xa7\xfe\x70\xa2\x31\xd3\x01\x2b\xa9\x8e\x36\x8e\
\x53\x59\x2d\x84\x83\x80\xa7\xaa\xb0\x7e\xd6\xa4\xa2\xf5\x56\xc0\
\x75\x4f\xd8\x5b\x88\xb6\x8e\xbf\x82\x81\x4d\x56\x5e\x88\x26\xbb\
\x96\x6c\xfa\x0c\x49\x78\x15\x0e\x54\xaf\x5a\xb7\xfa\x37\x8f\x9f\
\xf3\xdc\x53\x67\x3e\xfc\xf8\xb9\xcf\x3c\x75\xe6\xa3\xed\xd3\xde\
\xaa\xd2\x00\x5b\xb8\xf9\xd0\xdf\x1b\x7b\x1f\x43\xbf\x82\x39\x23\
\x5a\xd1\xd3\x78\x56\x36\xa0\x9b\xc1\xa8\xc7\x13\x07\xb4\x0b\xd2\
\x4d\x3d\x66\x05\x23\x14\x02\x61\x2b\x18\xea\xaf\x3d\xc5\xd4\xe9\
\x2f\x76\x08\xc6\x12\x99\xdf\x3d\xb0\x59\x8d\x7c\x2f\x22\x61\x7d\
\xf1\xac\xfa\x2b\xce\x9c\xf7\xd6\x0b\x16\x5f\x76\xfa\xbc\xf9\xd3\
\xeb\xd0\x56\x2a\x4d\x60\xc7\x1e\x78\x76\xcf\xe1\xbe\x31\xea\xef\
\x7c\xe8\x75\x82\x6a\x58\xfb\x0a\x2b\xb4\x80\x3b\x60\xa3\x65\xa5\
\x91\xb2\xb8\xd7\x79\xf0\xc5\x9f\x2c\x2d\xe6\x6a\xe4\xdb\x88\x45\
\x43\xe5\x34\x48\xed\x5f\x6c\x73\xae\x42\x68\xda\xcb\x5b\x0e\x2b\
\xca\x8b\xae\xbe\xf1\xbb\x1f\xdd\xa9\x22\x80\x2d\x8f\xcd\xc5\x47\
\xde\xb1\xfa\x0b\xff\x76\xda\x27\x6e\x3c\xf1\xf3\x1f\x38\xe5\xe3\
\xef\x5c\xb3\x64\x8e\xfd\xe0\xc6\x51\x1b\xd0\x70\x20\xda\x77\xc8\
\xf3\x55\x7d\x00\x25\xa3\x11\xee\x82\x7e\xc5\x07\xb0\xf2\xcb\x63\
\x09\x2e\x78\x16\xd3\x21\x07\x3a\x1d\x21\x64\x9f\xe8\x7d\x70\x34\
\xc3\xbf\xdb\x6f\x7b\xa0\xc0\x1c\xcc\xe9\xa7\xd7\x9f\x5b\x15\xae\
\x42\x04\x7a\x54\xa0\x0b\x45\x99\xc9\xf3\x2b\x31\xa9\x8b\x2f\xaa\
\x58\xb6\x61\xf8\x85\x09\x63\xb2\x71\x0b\xc4\xf5\xd8\xb2\xaa\x55\
\xa4\x85\x6e\xf8\xc1\x4a\xe0\xa0\x77\xe5\x57\x20\x13\x0a\x0d\xb1\
\xe6\x13\xeb\xcf\x98\x5d\xb1\x00\x2e\xa5\xcc\xe4\xb2\x9a\x55\xcb\
\xaa\x8e\x83\x03\x86\x65\x3c\xdd\xf3\x88\xc8\x2c\xac\x5c\x76\xf9\
\xd4\xb7\xbd\x69\xda\xbb\x4e\xa8\x3b\x65\x5a\xe9\x2c\xec\x4d\x9a\
\x62\x2d\x2d\xf1\xd6\x99\xe5\xf3\x4e\xac\x3f\x6d\x28\x33\xd8\x3e\
\x61\x7f\xe9\xd8\xd6\x6c\x66\xcd\x35\x75\xa7\xd2\x29\x9d\xfb\x0a\
\xfa\x0c\x2d\x63\x5a\x60\x43\xff\x5a\xda\xf6\x7b\xb1\xb0\x12\xdb\
\xfe\x45\x52\x5c\x09\x60\x62\xd9\xdf\x31\xcc\x7f\xb3\x00\x70\x39\
\x2c\x28\x0b\x57\x5c\x3a\xf5\xda\xab\xa6\xbf\xe3\xac\xe6\x0b\x97\
\xd6\x1c\x97\x30\x26\xba\x12\x87\x54\x9a\x0b\x03\xe9\xde\x15\x35\
\xab\x2b\x23\x95\x64\x1e\x47\x32\x6c\x90\x70\xfa\xcf\x6a\x53\xba\
\x1e\xa8\x1a\x72\xad\xfc\xb8\x4a\x60\x24\x62\x2d\x5b\x17\x7c\x76\
\xeb\xc2\x2f\xec\x9f\xfe\xae\x9e\x86\xb3\xa3\xe9\xee\xd2\xf1\xfd\
\x94\x60\xf7\x12\x42\x56\x8b\x66\xfa\x3a\x5a\xaf\xce\x84\xaa\x5d\
\xf9\x29\xcc\xdf\x7e\x7b\x53\xf7\xc3\x39\x49\xc6\x40\xcd\xaa\x67\
\x4f\xb9\x6b\xb0\x7a\x85\x19\x2a\xc9\x06\x42\x18\xa8\x89\xf8\x94\
\xce\x29\x97\x95\x4c\x1c\xac\x1a\xdc\xa8\xb2\x42\x3f\x5f\x83\x9a\
\x79\xb8\xed\x0a\x5e\x58\x82\xc8\x38\x50\xbb\xfa\xe0\xf4\xb7\x1c\
\x9e\x72\x69\xc5\xf0\xe6\xbc\x5d\x40\x36\xa8\x6f\x5b\xf0\xa9\x1d\
\xf3\x6e\xed\x68\xbb\xe6\x60\xdb\x75\x1d\x53\xaf\xe9\x68\xbd\xaa\
\xbd\xed\x5a\x43\x8f\xb3\x3a\x0a\x4f\xbe\xb4\xff\x85\x4d\x9d\x24\
\x2d\xfe\xc8\x35\xab\xb5\xd4\x97\xbd\xe7\x8a\x15\x97\x9c\x36\x6f\
\xee\xd4\xda\x19\x2d\xd5\xf3\xa6\xd5\x9e\xb4\xb4\x6d\x5a\x53\xe5\
\xae\x83\x03\x89\x14\xbd\x82\xa5\xfc\x61\x02\x47\x71\x1c\x9e\x96\
\xcd\x69\xc2\xe8\x57\x83\x80\x81\x45\x7e\x57\xbb\x7d\x2a\x01\xbc\
\x44\x73\x43\xf9\x9b\xce\x5b\x70\xd9\x69\x73\x4f\x59\xde\xd6\xda\
\x50\xb1\xbb\x7d\x30\xe3\x1c\xe9\x21\xe0\xae\x4f\x06\x76\x67\x67\
\x9f\x30\xe3\x9a\xf3\x16\x9e\x75\xfc\xf4\x25\x73\x1a\x86\x46\x53\
\x38\x11\x28\x01\xe7\x9a\xd5\x52\x86\x79\xf2\xb2\xb6\x68\x84\xee\
\x5e\x81\x45\xff\xb9\xdb\xdc\xfd\xd8\x0e\x98\x70\x2b\x04\xbd\x74\
\x4e\xe3\x87\xde\x76\xfc\x94\xfa\x72\x4c\x27\xa1\x60\x10\x6b\x40\
\x43\x75\xc9\xea\xc5\x53\xba\xfb\xc7\x71\x82\xc8\xa9\x65\x84\x42\
\xfa\x92\xb9\x0d\x14\x75\x05\x67\x98\x4b\xa0\xf9\x51\xa6\x3d\x15\
\x30\xd8\x24\xf0\x14\x20\x3b\x6f\x82\x14\xcf\x0d\x9b\x03\x2d\x88\
\xb8\x95\xca\xc8\xa7\xec\x74\x65\xb5\xac\x0d\xa1\x36\x56\x77\x4d\
\x5b\xee\x09\x93\x07\x10\xb5\xb1\x6d\x64\x63\xda\x4a\xe4\xa6\x24\
\xc0\x77\xc2\xb7\x79\xa7\x36\x9e\xfb\xc9\x45\x5f\x7d\xcb\xf4\xf7\
\xbc\x79\xda\x0d\x9f\x5e\xfc\x8d\x7f\x5f\xf2\xf5\xab\xa7\xbd\x5d\
\x96\xe9\x19\x65\x33\x2f\x6f\x7b\xf3\x49\xf5\x67\x7d\x70\xde\xbf\
\x7f\x7c\xe1\x97\x4f\xac\x3b\x0d\x73\x10\x3b\xac\x66\x2b\x42\x36\
\x1b\x0e\x46\xae\x68\x7b\x4b\x69\xc1\x83\x3a\xcc\x23\xbd\x89\xc3\
\xa8\x10\xfa\x1a\x00\xbd\x78\x8f\x42\xa9\x1b\x22\xf9\x20\x8e\x14\
\x53\x81\x66\x2e\xb6\xe2\x03\x66\xe2\x40\xf1\x89\xc5\x5f\xb9\x68\
\xca\x55\xad\xf1\x69\x98\xbc\x16\x55\xaf\xf8\xe8\xe2\xcf\x61\x0a\
\x60\x09\x0f\xa0\xaa\x37\x79\x18\x1e\xd0\x6b\x49\xb4\x11\x42\xd9\
\x42\xf4\x97\x34\x44\x91\x9f\x89\xde\xba\x53\x9f\x3a\xf5\xfe\xdd\
\x73\x3e\x38\x52\x31\x7f\xb4\x6c\xc6\xe1\xa6\x73\x9f\x3d\xf1\xaf\
\x7d\x75\xea\x95\x4a\xca\x62\x77\xd9\x48\x7a\xa0\x8c\x66\x3d\xb0\
\x28\x08\x4a\x52\xdd\x6d\x9d\x7f\x65\x09\x06\x84\xb3\xb4\x89\x78\
\x65\xd5\xff\x64\x22\x35\xdc\x53\x08\x2a\x55\xd3\x5e\x5d\xf6\xed\
\x64\x49\x33\x51\xae\x86\xaa\xef\x79\xbc\x6c\xfc\x80\x28\x34\x63\
\xb5\x3d\xad\x97\xf6\x35\x9f\xd7\xdd\x76\x85\x11\xa6\xb7\x18\xdc\
\x40\x89\x06\xea\x4f\xec\x6d\x3a\xb3\xbb\xf9\x5c\x84\xae\xe6\xf3\
\x0f\xb7\x5c\x94\x8e\xd5\x49\x1b\x21\x8c\x4d\xa4\x1f\x7b\xf1\x80\
\xf2\x91\x33\xc8\x15\xdb\xe6\x8f\x5f\xbf\x66\xfe\xcc\x5a\x5e\xc9\
\xd5\x16\x16\x61\xf9\xdc\xa6\x8f\xbe\x65\x75\x55\xa9\xe7\x7e\x81\
\x64\xdf\xba\xbf\x77\x74\x22\x29\x6a\x8a\x02\xfa\x6d\x43\x2b\x17\
\x34\xfd\xfb\x3b\xd7\x9c\xb2\xac\xad\xa5\xae\x0c\x63\xef\xcc\x55\
\xd3\x3e\x70\xdd\xca\xb8\xf3\x74\x5d\x3c\x71\xd4\x65\xb5\xb2\x92\
\xf0\x47\xde\x7c\x02\xf6\x20\xb3\xa6\xd4\x34\xd5\x96\x2f\x9e\xd5\
\x78\xcb\xdb\x56\x2f\x9c\xc9\x4b\x34\x84\x45\x33\x5f\x87\x47\x53\
\x07\x3a\x47\xa4\x88\xf0\x59\x88\xbe\xc1\xc4\x0b\x9b\xbd\x0b\x40\
\x40\xab\xad\x8c\xbf\xf3\xd2\xa5\xb1\x50\x88\x56\x65\x15\xc8\x24\
\x06\xf0\x75\xe7\x2f\x2c\x95\xfd\x88\xab\x48\x5b\x76\xf7\x28\x5b\
\x76\x40\x62\x5e\xc8\x8d\xee\xa2\x40\xce\x49\x41\x3e\xdb\x28\x46\
\x0b\x84\xb3\xa4\x72\x79\x4d\x94\x7e\xf3\x58\x01\x3c\x11\x74\x19\
\x1a\xcb\x8c\x0e\xf2\x69\x82\x72\x14\xe8\xc9\xc3\x19\x8d\x17\xdc\
\x38\xeb\x66\x6c\xe6\x21\x27\x3a\xda\x4a\xa7\x97\x86\xca\x64\x97\
\x0e\x5c\xd6\x7a\xdd\xbb\x67\x7f\x68\x65\xcd\x1a\x4e\x2c\x8a\xda\
\x68\xfd\x9c\x8a\xfc\xcd\x3f\xb6\xe8\x03\x99\x7e\xc7\x03\x8c\x7f\
\x8c\x3e\x76\x0a\xe3\x9a\x59\xb9\x34\xf5\x09\x4a\xc6\x3c\xd9\xe7\
\xff\x8a\x0d\x38\x32\x59\x6d\x7e\xd5\xe2\x8f\x2e\xfa\x3c\x5c\x25\
\x21\x88\xb1\xbb\xb8\xbc\x63\xee\xfb\x4a\xf8\x5d\x23\x0f\x02\xda\
\x68\x66\x94\x46\x9b\xfd\x0e\x09\x1c\x90\xef\x3b\xe4\x1c\x70\x90\
\xa5\xc7\x78\xcf\x9d\x74\xe7\x78\xd9\x2c\x72\xd5\x0e\x38\x3c\x6f\
\x59\xf4\x15\x6c\xbc\x55\x16\xb9\x42\x19\x16\x7f\xaa\xed\xdc\x54\
\x85\x4b\x7d\xcf\x13\x25\xe3\x07\x58\x22\x87\xde\xfa\xd3\x46\xca\
\xe7\x09\x0d\x19\xb2\x2e\x74\x40\x33\x23\x15\x87\x5a\xf9\xe5\x5c\
\x4a\x10\xae\x16\x4d\xf6\x96\x8e\xd1\xf3\x33\xf8\x0c\x61\x41\xd8\
\x18\x09\x66\xf9\xe0\x93\xab\x31\xc8\x5a\x11\xf0\x79\xdc\xba\x02\
\xad\x4c\x12\x76\xb6\xf7\xd3\xe2\xe9\x64\xb1\x4d\x5c\x73\xee\xfc\
\xaa\x32\xfa\x19\x08\xaa\x09\x6f\x68\x6b\xac\x38\xe3\x78\xfe\x41\
\x7b\x24\xbb\x6c\xf5\x0e\x4c\xb4\x77\xf9\xfd\x11\x2a\xaf\x18\x21\
\xa0\xad\x5a\xd8\x7c\xf3\x75\xab\x2a\xbc\x93\xc8\xa2\x99\xf5\xcb\
\xb1\xae\x02\x64\x98\x83\x0d\x8c\xfc\x0f\x5e\x77\x9c\xbd\x1b\xa7\
\xca\xc5\xe6\x37\x1c\xd6\x2f\x3f\x63\x1e\x5c\x52\xc2\xb6\x15\x6c\
\x43\x30\xa9\xa9\x08\x52\x18\xdb\xf7\xf7\x4f\x24\xe9\xaf\x0e\xb9\
\xb1\x66\x69\x6b\x4d\x65\x5c\x04\x6c\xa8\x62\xd6\x54\xc6\x8e\x5b\
\xd0\xcc\xa6\x94\x30\x80\x2d\x4f\x5e\x65\x7a\xf5\x11\xf2\x07\xbf\
\xe3\x9e\x13\x8e\x06\xec\x83\x12\x16\x2b\x0e\x4d\xe0\x28\x7f\xd2\
\x35\x1e\x2a\x9d\x5f\xbe\x98\xd3\x19\x5e\xa7\x05\x19\x2b\x93\x74\
\x7d\x61\x96\xb5\x88\xca\x7c\x2c\xac\x5a\xfa\xb6\x99\x37\x09\xed\
\xc8\x38\xc3\x43\xc6\x3f\xf3\x6c\x37\x7c\x83\x9d\x51\xde\xab\x23\
\xb8\x5c\x4a\x9b\x29\x1e\xc3\x4a\x46\x94\xe7\x50\xe0\x3c\x24\x79\
\x38\xe3\x84\x4e\x3f\x88\xe1\x64\x74\xa3\x31\xde\x72\xd3\xbc\x5b\
\x64\x86\x12\x40\x48\x34\xb7\x94\xb6\xb5\x94\xb4\x8a\x58\x0e\x38\
\x52\x66\x46\x44\x15\x8d\x7e\x1e\x4b\x94\xcb\xd1\xed\x72\x63\xb8\
\x6a\xc9\x86\x15\x3f\xb2\xf4\x52\xbb\x7b\xe4\x42\x7f\xed\x9a\xa1\
\xea\xe5\x4a\xce\x85\x20\xca\x28\x90\xda\x08\x04\x2a\x47\xf8\x34\
\xe1\x00\x13\x43\x30\x78\xb8\xd9\xf5\x37\xe1\x48\x56\xf4\x52\x26\
\xd0\x7d\xf5\xa7\xb0\x9c\xc7\x99\xf2\x91\x1d\x42\x60\xb7\x2d\xa0\
\xf9\x4b\x58\xe2\xbc\x2d\x0f\x4d\x28\x8f\x3b\xb8\xb1\x63\x9f\xfd\
\xe7\x5e\x5c\xca\xb1\xec\x2f\x9c\x5e\x2b\xb3\x03\x2a\x8f\x2b\xc6\
\x83\x13\x17\x4f\xa9\x2c\xe3\x71\x2b\xb6\x04\x01\xed\x70\x1f\xfd\
\x55\x42\x62\x3a\x41\x20\x04\x4c\x80\xc8\x6a\xb3\xdb\xaa\xdf\x75\
\xf9\x32\x9a\xbd\x1d\x31\x3b\x2c\x9d\xe3\x7d\x71\x88\xbd\x0a\x87\
\x82\xef\xbc\x74\xd9\xfc\xe9\xfc\x7b\xfe\x54\x33\x6a\x32\x45\x72\
\x5b\x63\x79\x4b\x83\xcf\x0f\xec\x67\x4c\x53\x44\x55\x5c\xd3\x76\
\x1d\x70\x95\x94\x03\x12\x31\xdd\x28\x66\x0e\x39\x6f\xa6\xb7\x54\
\xd2\x27\x20\x59\x78\x13\xc4\x71\x37\xd8\x8a\x2b\x14\xac\xfc\xde\
\x64\x0a\xc4\xe4\xa4\x49\x40\x0e\x90\x30\x40\x31\x57\x5e\x0f\x4d\
\xa2\x84\x7a\x7e\x79\x66\x12\xe0\xa4\xad\xee\x8a\xb1\x4e\x80\xd9\
\x0c\x87\x0c\x68\x15\xe1\xca\xb7\xcd\x78\x9f\xce\x7f\xe1\x87\x64\
\x5c\x92\x4c\xba\x51\xc8\x71\x41\xb2\xa3\xf1\xe8\x8f\x54\xb9\xc0\
\xca\xa4\x1b\xaa\x21\x4a\x34\xba\x19\xba\x2f\xd7\xb1\xc0\x76\x89\
\xac\xe0\x44\xe0\x04\xbe\x71\x82\x2e\xa8\x92\x5d\xc0\xb2\x5f\x1b\
\xab\xe7\xd1\x4b\xaa\x85\x29\xfd\x15\x63\xbb\x2e\xa6\x9e\x74\xba\
\x91\xd1\x32\x22\x0f\x39\x1a\x42\x8e\x5a\xf9\x84\x0f\x36\xe3\xf0\
\x94\xcb\x53\x71\xff\x1a\x86\x47\x13\x25\xf4\x83\x8b\x39\xf7\xa9\
\xf0\x5a\xd8\x4c\xd0\xd7\x23\xb0\x93\xc0\x30\x0a\x64\xb1\x32\x57\
\x0f\xae\x77\x17\x11\xb0\x82\x25\xe3\x65\xb3\x61\x5e\xcf\x66\x74\
\xcd\xd0\x35\xba\x06\xb3\x08\x99\x20\xbc\x43\x3e\xda\x8a\xd2\x07\
\x05\x41\x56\x2b\x9d\x68\xa7\x4f\x0f\x24\xcd\x86\x47\x9e\x46\xb0\
\x04\xf0\x82\xd8\x3c\xd9\xe1\x00\xd6\x6a\xc0\xab\x7c\xc1\xf4\xba\
\x68\x24\xcc\x13\x05\xaa\x1b\x7a\x71\x0e\xf7\x84\xfa\xea\x58\x63\
\x4d\x69\xae\x20\x36\x71\xb0\x9b\xb4\xc1\x57\x27\x10\x37\xcf\x31\
\x4d\x9b\x37\xb5\xb6\x24\x16\x76\x8b\x39\xa1\xbe\xda\x7e\x45\xc7\
\x95\xab\xba\x22\xbe\x72\x9e\xbc\x18\x06\x11\xe5\xad\x64\x88\xc5\
\xf4\x8a\x92\x48\x4e\x58\x4a\x41\xdd\x88\xba\x80\x00\x64\xc6\xb4\
\xf6\x1c\x1c\x94\x24\x02\x6b\x88\x86\x42\xe5\x98\xc2\x70\x74\xe2\
\xaf\xa3\xd8\x41\xce\x80\x10\x60\x03\xb6\xb0\x68\xe6\x4f\x49\x70\
\x05\x2f\x0a\x06\x7f\x21\x58\x97\xba\x0a\xdc\x34\x62\xa2\x59\x08\
\xe7\x2a\x52\x36\x87\xa2\xb8\x10\x45\x08\xd1\x8b\x77\x93\x81\x45\
\x1d\x82\x29\xc7\xaa\xab\xae\xa7\x96\xce\x6c\x29\x69\x23\xe5\x1c\
\x25\x51\x5b\x5a\xba\x98\xe2\x30\x10\x91\x30\x62\x8c\xec\x19\xdb\
\xf9\xd2\xc0\xf3\x0f\x1f\xbe\xf7\x6f\x07\xff\xf0\xbb\xfd\x3f\xfb\
\xcd\xde\x9f\xfc\x7e\xef\xcf\xfe\xb4\xff\xe7\x5b\x86\x36\x70\x6e\
\x1b\xb6\x2d\xca\xcf\x83\x9f\x46\x1f\x2f\xd2\x1e\x3f\x1c\x31\x0c\
\x1f\x7a\x5e\x0e\x12\xf6\x31\x42\xe9\x8b\x33\x1e\x49\x1b\x19\x2b\
\xcd\x5d\x96\xc1\x1c\x71\x98\xf2\x98\x26\x26\x35\x2a\x92\x24\xd8\
\x80\x6e\xf1\x00\x34\x8d\x20\x9e\x26\x38\x93\x0d\x5b\x3e\x68\xd0\
\xa6\xc9\x3e\x19\x7a\x03\x4c\x60\xdb\x5f\x00\xfa\x21\x30\x1a\x64\
\x3c\x88\xd0\xdb\x32\x83\xb1\x64\xa7\xc7\x01\xfa\x5a\x50\x72\xf9\
\x86\x8f\x9e\xf6\xe4\x05\xa7\x3c\x75\xc1\x29\x4f\x9e\x7f\xca\xe3\
\x08\xe7\x51\x78\xe2\xbc\x53\x1f\x3f\xef\xb4\xc7\xcf\x5b\xb8\xe9\
\xf3\xd0\x93\x57\x37\x41\x33\x29\xd5\x8e\x0a\xb4\x03\x26\x10\x84\
\x82\x8a\x11\x8e\x27\xa8\x89\x20\x9d\x36\xe8\xb1\x96\x30\x1d\x04\
\xb0\x32\xd7\x38\x33\x2d\x39\x4f\xf3\x57\x7e\xa8\xa0\x61\xa3\x72\
\x10\xc1\x4a\x06\x47\x13\xf4\xfa\x36\x3b\xa6\x82\xbb\xb4\x22\x16\
\xc0\xa6\xcf\x2b\xe3\x0a\x7a\x88\x1b\x9a\xc5\x9c\x2c\x50\x99\xa4\
\x5f\x97\x25\x16\xfe\x8b\x2c\x53\xe4\x1f\xdd\xf6\x17\x50\x3a\x03\
\x7c\x95\x8e\xff\x24\x3b\x30\x94\x18\x91\x83\x80\xc8\x70\x79\x31\
\x23\xdc\x71\xd7\x2b\xdf\xfa\xc5\x73\xdf\xfc\xdf\x67\x5d\xe1\xb9\
\x6f\xde\xf1\xec\x6d\xff\xfb\xcc\xb7\x7e\xfe\xdc\xfd\xcf\xec\x26\
\x49\x09\x02\x97\x66\x15\x0a\x38\xf9\x83\x9f\xfa\xa2\x17\xf9\x4a\
\x01\x37\xcd\x20\x5d\xe4\xb9\xeb\xca\x81\x22\x02\x17\x09\x4c\x18\
\x63\x8a\x2a\x02\x3d\xa0\x87\x03\x51\x28\x90\x7c\x6e\x4d\x39\x60\
\xfd\xd5\x4c\x7a\xa4\x87\x6e\xcb\x02\x6a\x28\xd8\xb4\x44\x59\x09\
\x71\xc6\x8d\xb1\xc7\xbb\x1e\xfc\xde\xb6\xaf\x7e\x69\xc3\x2d\xff\
\xb1\xe5\x8b\x3f\xde\x7e\xfb\x1f\xf6\xdf\xf1\xf7\x83\x7f\xfc\x67\
\xe7\x3f\x1e\xeb\x7a\xe0\x91\xc3\xf7\x3e\x78\xe8\xee\xce\xe2\x2f\
\x32\x43\x05\x29\xe2\xbe\x4b\xdd\xd7\xcf\x23\x36\x45\x00\x6d\x3b\
\x80\xe0\x27\x0a\x88\x84\x8d\x1c\x8f\x6e\x2b\xfa\x8d\x0d\xb4\x16\
\x75\x70\x97\x36\x55\x5e\xa6\xf3\xc0\x2b\x67\x91\x50\x90\x8b\xd6\
\x1f\xfa\x10\x37\x60\x21\x68\xa5\xf4\xbc\x1f\x29\x84\x4f\x59\xa3\
\x72\xe8\xd5\xda\xfe\x67\x6b\xfb\xd7\xa9\xd0\xa7\xae\x35\xbd\xeb\
\x6a\x7b\x9f\x29\x1b\xb5\x9f\x4b\x3b\xca\x69\x43\xce\x5f\x30\xa2\
\xc9\x4b\x6a\x8e\x81\x7e\xe7\x16\xf3\x03\x5c\x21\x87\x18\xe3\xc9\
\x8c\xfc\xc9\x16\x4f\x96\xac\x56\x55\x1a\x51\x12\x72\x0e\xf2\x0b\
\x35\x15\x71\x29\x9e\x02\xdb\x4d\x24\x8d\x8c\xc1\xf7\x6e\x9c\x20\
\x1f\x6e\xd8\xf5\xe4\x1b\xd4\xc8\x01\x05\x90\xaf\x4c\xd8\x80\x33\
\x2a\x09\x09\x6a\x3f\xc4\x47\x00\xc5\x64\x78\x73\x51\x4a\x40\x9b\
\x48\x65\x30\xa7\x0b\xc7\x01\xd6\x90\x03\x87\x87\xb7\xed\xed\xdd\
\x7d\x70\x60\x77\xfb\x00\x5d\x55\x18\xdc\xdd\x3e\xb8\x6d\x5f\x5f\
\x9f\xbc\x80\xe8\xd5\x4f\x46\xdd\x41\xb1\x73\xc8\x1f\xfc\xaf\x09\
\x1e\xb5\x54\x6c\x21\xd4\x87\xf3\xa9\x60\x69\xd6\xee\x51\x75\x0e\
\x2c\x86\x50\x30\x5c\x12\x96\x07\xbc\x94\x85\x09\x1b\x12\xe3\x2b\
\xad\x32\x54\xb0\x9c\x8c\x10\xe8\x0a\x4e\x54\xf0\xf2\xc0\xf3\xb7\
\x6d\xfa\xf4\xaf\xf7\xfc\x78\xc3\xc0\x8b\x83\xe9\xbe\xa4\x39\x41\
\x1d\x3e\xbf\x92\xfd\x21\x7d\x4b\x76\xda\xd0\x4e\x5d\x0a\x83\xd0\
\x5b\x6a\x17\xb8\xa5\xd1\xe9\x65\x91\xa3\x53\x7f\xc1\x7c\xcf\x10\
\xb5\x02\x44\xc5\x4f\x19\xde\x45\x3c\xcb\x89\x01\xc2\xca\x09\x7a\
\x09\x5c\x94\x5c\x1e\xc0\x86\x39\x47\x18\x20\x51\xfa\xe4\x02\xaa\
\xe3\x4c\x50\x33\x83\xd9\xb4\x47\x0c\x28\x8c\x8a\x17\x0e\xe1\x87\
\x20\x7d\x11\x8b\xa0\x8a\x4a\xd6\xe9\x92\x0f\xde\x95\x78\x82\xf8\
\xc9\x21\x91\xc8\x60\xac\x2a\x49\x1b\x3a\xce\x7b\x3a\xc6\x14\x29\
\xa4\xe0\x48\x7b\x03\xbd\xa5\x0b\x75\x00\x62\x0e\xb8\x1a\x8e\x00\
\xc9\x35\x09\x1c\x0d\x22\xc9\x57\x55\xcd\x0a\xea\x18\x24\x9e\x28\
\x79\xf7\xd5\xc9\x28\x79\xe9\x57\xd8\x9c\x46\x70\x21\x4f\x18\xf0\
\x15\x70\x83\x9e\xb3\xda\x7b\x22\x0e\xe4\x88\x18\xb2\x03\x3a\x66\
\xd6\x1d\x68\x7e\xca\x0f\x47\x00\xc6\x01\xf5\xf2\x00\x7d\xb1\x9c\
\xc7\x04\xe5\xb2\x15\x6a\x3a\x5f\x73\xfa\xb3\xd9\x83\x63\x7b\xf7\
\x14\x0e\x7e\x31\x63\x1b\x2b\x09\x95\xd6\xd0\xf3\x24\x76\x00\x43\
\x8e\x46\x1d\x97\xcf\xf1\xc6\x8e\xd9\xaf\xa0\xe3\xb8\x4a\x33\x19\
\x05\xa2\x69\x33\x40\x05\xe6\x2e\x75\xe7\x81\xdf\xfc\x70\xdb\x37\
\x0f\x4d\xf0\xbd\x6b\x47\x83\x2f\xfc\x52\x89\x47\x3e\xd0\x15\x87\
\x7d\x10\x21\x5a\x52\x78\x48\x8b\xbc\x93\x8b\xbe\x8b\x46\xd6\xe9\
\x0f\xf2\xeb\x7a\x38\x44\x7f\x6c\x2c\xd7\x30\x20\x72\x92\x1a\xff\
\xa6\x37\x05\xfa\xfe\x3e\xbc\xcd\x71\xec\xc2\x7a\x81\xaa\x55\x55\
\x41\x56\x54\x61\x73\xfe\x3a\x14\x2d\xb6\xe4\x83\x33\xc4\xa4\x3b\
\x02\x12\x21\x09\x5c\x1c\x0b\xc2\x26\x6d\xd2\x4b\xc4\x19\x1e\x4e\
\x9c\x94\x43\xb1\x68\x1e\x1f\x80\x72\x5b\xff\x48\xcd\x32\xfa\xe2\
\x1f\xbd\x8b\x6c\x8f\x52\x09\x80\xc8\xc8\xb5\x50\x89\xf2\x95\x02\
\xe5\xc0\x3f\xb7\x0c\xc5\x59\x8d\x13\x30\x66\x7c\x03\x92\x58\x5e\
\x5d\x99\x00\x97\x8f\x39\xb9\xa0\x94\x8b\x58\x0e\x88\xab\xdb\x07\
\xaa\x37\xe6\x82\xd7\x67\xa1\x79\x91\x87\x36\x1e\x6a\x08\x10\x64\
\x1e\xb3\x3d\xf2\x0e\xa4\x13\x48\x20\x43\xec\x01\x24\xf1\xc9\x2a\
\x54\x14\x00\x87\x13\x09\x22\xe0\xc0\x91\x04\x58\x6c\x2c\x81\xb3\
\x83\xf2\x5c\x02\x5c\x91\x3e\x96\x0b\x4e\x37\x52\x81\xba\x8e\x27\
\x1c\x11\xa4\x14\xc1\x1e\xf6\x12\x6c\x85\x4c\x40\x8f\x8a\xa2\x80\
\xd6\xdd\x1d\x7f\xb4\xe8\xd7\x0e\xbc\x90\x92\xd8\xe5\x99\x5b\x31\
\x3f\xa6\xc7\xb8\xc2\x58\x39\xeb\xa4\x04\x2e\x98\x1b\xa2\x56\x46\
\x3e\xae\xf0\x97\xfa\x2e\xef\xf7\xa4\x42\x9e\x38\xfc\xd0\xbd\xed\
\x7f\x51\xd2\x80\x2b\xbb\x1e\xd4\xab\xc3\x35\x4d\xf1\x29\x2d\x71\
\x7a\x19\xb9\xb5\x74\x5a\x49\xd0\xe7\x19\x9b\x9a\x4d\xd4\x9c\x82\
\x22\xd0\xf8\x57\x15\x23\xda\x6c\x9d\x6c\x9d\x66\x22\xf6\x8a\xff\
\xae\x08\x39\xec\x48\xe7\x49\x92\x00\x02\x39\x9c\xeb\x00\x34\xb6\
\xf3\xca\x28\xa0\x12\x21\xc9\xe2\x5f\xe9\xe6\x40\x51\x3f\xa0\x1a\
\xe8\x3b\x7f\x52\x03\x74\x51\x00\x4d\x1c\x15\xe1\x6b\xce\x1f\xf1\
\x59\x26\x20\x70\x83\x59\x79\x33\xd2\x01\x2c\x07\xc2\x83\x35\xab\
\xfa\x1a\x4e\xef\xaf\x3d\x05\x61\xa0\xee\x94\x81\x7a\x57\x40\xd4\
\xe6\xf4\x37\xe0\xba\x66\xa0\xfe\xa4\x5d\x8b\x3e\xd3\x3e\xeb\x9d\
\xea\x27\x3d\x9c\x76\x61\x90\xce\x9c\x6b\x0c\x76\x8e\x5b\x9a\xaa\
\x80\x62\x36\xa2\x11\xfa\xb1\x12\x25\x06\xb0\xdb\xd8\xa9\x18\x06\
\x46\x95\x8d\x5c\x1d\x7a\xc2\x04\x0d\x03\xa5\x5c\x05\x4d\x8b\x86\
\xf4\x68\x08\x6d\xaa\x3a\x39\xf7\x5e\x86\x7c\x40\x3f\x13\xd4\xe8\
\xf6\xdd\x03\xae\x51\x19\xc7\x14\x48\xb5\x1b\x4e\x4d\xf2\x40\xa7\
\x2b\x95\x97\x96\x45\x0a\x41\xfa\x69\x65\x52\x6a\x6b\xa6\x6b\x8e\
\x60\x6d\x5c\xf5\x24\x25\x00\x1f\xc2\xac\x16\x65\x9f\x35\xa5\x6a\
\xd1\xec\xba\xf9\xd3\x6b\xe7\x4f\xb3\x03\xd1\x75\x85\x61\xee\xb4\
\x9a\xf9\x33\x6a\xaf\x39\x67\x81\x9d\xdf\x09\xf9\xf3\x97\xab\x42\
\x8f\x06\x8e\xc7\x2e\xf8\x76\x55\xb4\x85\x34\x1d\xd1\x12\x85\x64\
\x36\xfb\xdb\xf6\xff\x5d\x3f\xf8\xa2\x5f\x0e\x8f\xe6\x95\xd5\x27\
\xd0\xc2\x55\xa4\x73\xbb\x21\x62\x80\x98\xc8\xc3\x68\x66\xf4\xde\
\x8e\x3b\x55\xc4\x85\x98\x5e\x72\x59\xdb\x35\x5f\x5d\xfe\x5f\x5f\
\x5b\xf1\x5f\x5f\x5a\xfa\xed\x2f\x2c\xfb\x16\xc2\xe7\x17\xdf\xbe\
\xaa\x56\xfd\xa0\x48\x0e\x70\x81\x77\xe3\xf4\x1d\x5a\x6e\x46\x18\
\x62\x83\x05\xf3\x17\x17\x13\xe2\x26\x03\xbb\x68\x00\xf9\xc9\xaf\
\x23\x97\x43\x81\x7a\x0c\xcd\x30\x47\x85\xfc\x22\xc3\x8a\xcb\x90\
\xdc\x1e\x04\x41\xce\x32\x07\xf2\xf9\x59\x9c\x98\x97\x4d\x7f\x60\
\x33\x98\xff\xe0\xc3\x0c\x97\x6e\x3a\xee\x87\x2f\x9c\x7a\xf7\x0b\
\x67\xfc\x1d\x61\xed\x69\xf7\xac\x3d\x55\xc2\xdf\x11\xd6\x9d\x8e\
\x70\xef\xba\xd3\xee\x5d\x7b\xda\xdf\xd7\x9d\xf6\xf7\xe7\xcf\xf8\
\xfb\xba\x33\xff\xbe\x73\xd9\x17\xac\x50\x09\x29\xf7\xea\x9f\xa4\
\x42\x48\x50\x9c\x74\x65\x29\x89\x86\xc3\x21\xd7\x64\x64\x27\x0d\
\x8e\x25\x15\x45\xc8\xb3\xa1\x30\x30\x9a\x54\xe6\x9c\x6b\x56\xab\
\x2c\x8f\x85\x42\x3a\xb7\xa3\x82\xc7\x27\x5b\x13\x3e\xb9\x16\x09\
\xdc\x09\xdc\xc0\xf0\x51\x62\x84\x02\xe3\xa8\x7b\x34\x01\xb7\x82\
\x4c\x79\x5c\xac\x02\x31\x32\xc1\x73\x22\x4d\x8e\x5a\x80\xa7\x24\
\x16\x82\x72\x5b\x3e\x16\xd5\xdf\x7d\xe5\xb2\x8f\xbf\xfd\x84\x4f\
\x5c\xbf\xda\x15\xd6\x78\xa3\x2a\x7c\xf2\x86\x35\x9f\x78\xc7\xea\
\x8b\x4e\x9e\x49\x39\x5d\xc8\x6f\x7a\xd8\x55\x9f\x93\xc3\xc9\xe5\
\xad\x22\x00\x1a\xcb\xc3\xee\x6f\x26\xe4\xa0\x32\xd9\x26\xf7\x8f\
\xef\xfd\xc1\xee\xff\x78\xa8\xf3\x1f\x12\xf5\x81\xad\xb9\x2e\xd6\
\x30\xaf\xc2\xf5\x22\x00\x5b\x41\xd5\xa9\x88\x17\x76\xcb\x11\x48\
\x8c\x24\x73\xd8\x32\xb4\xa1\x27\xd1\xa5\x22\x36\x4a\xf4\xd2\x8f\
\x2f\xfc\xdc\x75\xd3\xae\x9f\x5a\x32\xbd\x32\x5a\x53\x1e\x29\x2f\
\x0f\x97\x21\x94\x86\x4b\xe4\x0b\x7c\x79\x20\x85\x34\xa8\x69\x39\
\x92\x99\xce\x65\xd3\x05\x31\xcc\x69\x32\xf2\x99\x2c\x94\x63\xf8\
\x97\x86\xf8\x54\x02\x27\xd5\x25\xe6\xce\x91\x2b\xa8\x87\xab\x3e\
\xc5\x49\x91\x11\x08\x5f\xc1\x1b\xf3\x85\x15\x8c\x9b\xf2\x27\x95\
\x1d\x64\x35\xdd\x98\x08\x1b\x63\xd9\x50\x89\x15\x2a\xf5\x06\x70\
\x4a\x4c\x1d\x21\x8e\x60\x85\x4b\x4d\xe2\x94\x99\xba\x7a\x18\xc6\
\x65\xf2\x36\x60\x1e\xcd\xfe\x22\x90\xa4\x50\x42\xdb\x88\xd3\x50\
\xe5\xbe\xea\x54\x27\xe7\x3a\xd8\x4d\xef\x3e\xd8\x70\x65\x70\x61\
\x64\xcc\xfe\x1a\xb2\x5c\x19\x2d\x75\xa5\xd2\x3a\x2e\xa8\x24\x05\
\x8e\xe2\xe2\x04\xf2\xca\x8b\x9c\x42\x16\x16\x10\x9b\xf6\x08\x62\
\x8e\xb2\xd2\x21\x5e\x05\x5b\xce\x2d\xef\x0d\x65\xf1\x88\x8e\x1d\
\xac\x17\x89\xa4\x89\x29\x24\x12\x0e\x45\xa3\xee\xa0\xfb\x86\x58\
\x84\x52\x95\x8b\x2e\x28\x5d\x2e\xf0\x94\x34\x29\x68\x7e\x70\xf9\
\x9a\x07\x14\x68\xff\xf8\xbe\x43\x13\x07\xdb\x27\xf6\xbb\xc3\xc1\
\xc4\xfe\x83\x13\x07\xf6\x4f\xec\xdd\x30\xf8\xd2\xbd\x9d\x77\x7d\
\x67\xc7\xd7\xbf\xb8\xe9\x13\x2f\xf4\x3d\xab\xb2\x4d\x8a\x0b\x5a\
\x2e\x2b\x0b\x97\x29\xeb\x72\x3d\x0a\xb0\x20\xd7\xb9\x5c\x39\xec\
\x74\x7f\x5b\x5e\x58\x9a\x76\x76\xf3\x05\xf3\xe9\x0d\x7c\x86\x6a\
\x76\x0a\xc8\x47\x3f\xec\xe3\x80\x85\xe9\x93\x08\x25\x23\x20\x13\
\x93\x7a\xe5\x4a\x95\x8c\x05\x28\x32\x29\x20\x5b\x4e\x39\x2e\x5e\
\x29\x49\x02\x54\xdc\x0d\x91\xb4\x53\x1c\x27\x01\x5e\x7b\x08\xc4\
\x57\xc9\xf9\x9a\xf3\x90\x89\x54\x8e\x97\x4c\x55\x11\x01\x3a\x82\
\x95\xae\xef\x7a\xc8\x71\x82\xd7\x42\x0a\xaa\xaf\xb3\x52\x67\xde\
\xe1\x3c\xaa\xbe\x88\x43\x22\x92\x8f\x90\x6f\x5e\x65\xa7\x04\x25\
\x29\x7c\x1b\x58\x3f\xd5\x8b\xba\xee\xac\x01\x6d\xfb\xfe\x7e\xd7\
\x77\x69\xf2\x32\x11\x0e\x74\x8d\x74\xf4\x8e\xb2\x6b\x1c\x27\x23\
\x14\xa6\x37\x55\xe6\x37\x81\x23\xe0\x5c\xf1\x49\xf3\x38\x3d\xaf\
\x45\x90\x82\xf8\xc3\xe5\x15\x4a\xe7\xaa\x93\x1c\x54\x76\x11\x93\
\x24\xd0\x14\x45\x9d\x59\x1c\x28\x52\x53\x19\xaf\xab\xe2\x5b\xdd\
\xae\xec\x30\x4f\xaf\xfa\xbf\x3e\x48\xcd\xbb\x71\x14\x2b\xbf\xb8\
\x5b\x04\x66\xd6\xf8\xef\xdd\xdf\xf9\xfa\xd6\xcf\x7d\x63\xeb\xe7\
\x29\x6c\xe3\xeb\xd6\xcf\x7f\x75\xd3\x67\xbf\xb6\xf9\xb3\x5f\xdf\
\xf4\xb9\xff\xd8\xf6\xd5\x3f\x1d\xf8\xf5\x2b\x03\x2f\x9a\x7e\xe3\
\x8a\xe0\xad\xa3\xb9\x15\x0b\xcf\x69\xba\x48\x45\xec\x44\x38\xaa\
\xea\x12\x17\xaf\xbc\x1b\x54\x1e\x12\xc5\x7c\x45\x57\x84\x84\xe9\
\xda\x16\xaa\xba\xd6\x1a\x63\xfc\x0a\x7a\x0e\xaa\x84\xc8\xc3\xbf\
\xfc\x63\xc3\x29\xb8\xdd\x1f\x11\x64\x18\x29\x7e\x1e\x68\x63\x40\
\x79\x68\xb0\x31\x14\xdb\xb7\xd3\x14\x2d\x05\x27\x48\x8e\xbc\x7c\
\x2e\xbb\xe4\x84\x40\x31\x8a\x2a\x14\x29\x38\xe3\x96\x25\x61\x89\
\xf9\xb9\x06\x64\x03\xa1\xe1\x1a\xfe\xfd\x2c\xaf\x40\xc3\xe1\x87\
\x82\x66\x8a\x4b\x44\xa7\x53\x15\x48\x9b\x7d\xc2\xa6\x7b\x4b\x04\
\x8f\x39\xae\x93\x1c\x83\x6e\x71\xe4\xd7\x73\x20\x6b\x95\x24\xbb\
\xc8\x57\xde\x8e\x72\x35\x7b\x30\x6f\x5a\x2d\x49\x22\xb8\x14\xef\
\xef\x1a\xde\xd6\xde\xaf\x24\xa8\x81\xf2\xf1\xf8\xcb\x07\xe8\x05\
\x01\xf2\x30\x97\x17\xf3\xc8\xb4\xa6\x4a\xa4\xb2\x0e\x1b\x12\x73\
\xae\x4c\x90\x0a\x2a\x1f\x05\x4e\x28\x0e\x49\xe7\xbb\x68\x90\x46\
\x71\x51\x04\x99\x05\xf8\x2f\x29\x05\xf8\x8f\xce\xe4\xc4\x08\x76\
\xd4\x75\x0e\xa7\x5f\xe6\xc2\x89\x5d\x09\xc8\x95\xf1\xc2\x96\x4e\
\x72\x26\x1f\xb6\x73\xf9\xc1\x07\x50\xa2\x28\x1b\x85\x95\x9c\x0f\
\xb1\x3d\x09\x12\x46\x62\x24\x33\x3c\x96\x19\xa5\x90\xe6\x2b\x87\
\xd1\xcc\x48\xd1\x6f\xdd\xba\x4a\xe5\x46\x44\x8f\xbe\x63\xe6\x4d\
\x21\xfe\x89\x1e\x37\x54\x32\x80\x8c\xde\xbc\x9e\x54\xaa\x47\x75\
\x73\x4e\x75\xcb\x3c\xf7\x39\x9a\xc9\x66\x24\x01\x57\x6a\x15\xaa\
\x03\x48\x07\x0e\x27\x3a\x36\x0e\xae\x77\x9a\xc4\x0d\x48\xb8\x01\
\x0e\x0d\x00\x47\xcc\x25\xaf\x24\x18\xce\xf8\x2f\x44\x91\x06\x02\
\x5b\x09\xf8\x42\x09\xd9\xa5\x22\xa2\x88\x3c\x92\xa4\x9e\x58\x5c\
\x81\x26\x24\x3b\x6f\x1e\xc0\x55\x42\x36\x86\x6b\x56\x16\x36\x53\
\xc5\xd0\xc6\x59\xdb\xfe\x13\x04\xa5\xb8\xdc\x00\x48\x39\x43\x38\
\x7a\x36\x13\x4e\x0f\xc9\x7c\x28\x02\x8e\x85\xac\x1e\xb3\xc2\x25\
\xb9\xa6\x44\x0a\xd3\xf5\x9d\xf7\xe7\x86\x3d\xb3\xdd\x58\x30\xbd\
\x8e\xbd\xb4\x73\x31\xa0\xfd\xae\xc7\x77\x8c\x27\xe5\xf5\xf8\xbc\
\x1c\xda\xa6\xdd\xbd\x18\xfc\x2a\x02\xd8\xe9\x73\xa6\xd6\x34\x54\
\x95\x88\x1d\x17\x6c\xcd\x2e\xfd\xa0\x55\x22\x43\x31\x0b\xe1\xc9\
\x88\x0f\x0e\x7c\xf7\x4e\x3a\x98\x8c\x7f\x6a\x2d\x91\x71\xd9\x92\
\x22\x4b\x10\xcc\x9b\xc6\xef\x98\x2b\x6d\x0a\x1b\x77\xf5\x3c\xf6\
\x22\x7f\x23\xd3\x01\x94\x38\x73\xae\x2b\x64\x4c\x6b\x5c\xee\x71\
\x7a\x01\xcd\x8a\xb2\x51\xb4\x77\x1e\x15\x8a\xd7\xc6\x31\xc0\x2e\
\x64\x38\x18\xbe\x79\xde\x27\x66\x96\xcf\x96\x2a\x10\x48\x92\x8b\
\xf4\x01\xa7\x52\x32\xba\x82\xd0\x02\x70\xe2\x41\xf5\x03\x8c\x04\
\xd1\x10\xd0\x5e\xea\x5f\x2b\xdd\x94\x9b\x85\x2f\xc1\xc0\xee\xd1\
\x6d\xdf\xdb\x7a\x7b\x77\xe2\x30\xf9\xe3\xad\x77\x56\x4c\x67\x36\
\x7a\x2b\x9d\x76\x80\xf6\xe1\xcd\x11\xcb\x97\x27\x28\x27\x08\x8a\
\xe3\x86\x4a\x29\x04\x7b\xe9\x9f\x45\x7d\x12\x94\xac\x1b\x2e\x1f\
\x94\x12\xa6\xe1\xaa\x78\x4b\x19\xb8\xd4\xcc\x76\x41\x65\x64\x8d\
\x2e\x0c\x34\x9c\x36\x5a\xbd\xd4\x63\x95\x31\x77\xf3\x97\xe7\x6c\
\xbd\x3d\x9a\x1e\xb0\xdf\x2e\x45\x7e\x55\xed\xa8\x46\x5d\x0f\x56\
\x0c\x6f\x69\xdd\xfb\xab\x55\x4f\x5c\x73\xd2\xa3\xe7\xd6\x76\x3d\
\x59\x58\x3b\x56\x30\x92\x8c\x37\x92\x66\x47\x39\xd3\xf5\x87\x1f\
\x99\xb9\xed\xdb\x25\xa3\x7b\x62\xc9\x9e\xca\xa1\x57\x67\xec\xfc\
\x5e\x53\xe7\x3f\x44\x33\x30\xa7\xb5\x66\x76\x6b\xb5\x92\x77\x61\
\x77\xc7\xc0\x77\xff\xf8\xe2\xce\xf6\x01\xaa\x3b\x1b\xa3\x13\x99\
\x7f\xbe\x78\xe0\xbf\xef\x7a\x19\x4d\xa5\xe4\x5c\x5e\x9c\x7b\xfc\
\x0c\x25\xe7\x02\xad\xbb\xe2\x8f\xbb\xc8\xa8\x2d\xd6\x4b\x61\x12\
\xb8\x32\xc2\xa0\xd4\x39\x60\xdf\xf6\x21\x28\x01\x47\x8d\x4d\xc0\
\xb4\xba\x2f\x48\xf5\x47\x53\xc0\xe2\x99\xf5\xf4\xc3\xa1\x8e\x30\
\x55\x30\x7d\xfe\xf6\xfe\x2d\x0f\x3c\xbb\x27\x95\x31\xc5\x61\x4a\
\x77\x01\xb1\xfd\x9d\xc3\x8f\xbe\x70\xe0\x3b\xbf\x5d\xf7\xd5\x3b\
\x9e\x05\xad\x12\x6c\xb0\x2e\x0f\x5e\xdf\xe0\x77\x55\xe8\xb1\x41\
\x0a\xe6\xf2\xa7\x3a\x52\x73\xcb\xc2\xcf\xae\xaa\x5b\xa3\x3c\xcd\
\xe1\x08\xd5\x2e\xc8\xd5\x38\x3e\x1d\xe5\x01\xcd\xf3\x2d\x3d\xa9\
\xc4\xac\xb6\x65\xe8\xd5\xef\x6e\xfd\xfa\xae\x91\xad\x86\x99\x34\
\xac\xcc\xde\xb1\x3d\x7f\xd8\xf7\xeb\xaf\xbd\xfa\xf9\x76\xf9\xae\
\xbb\x03\xc7\x2e\xdd\xb3\xa7\x43\x19\xdd\xe1\x60\x5a\xd4\x17\x82\
\x98\x24\xc9\xde\x90\x30\x7f\xff\xb7\x48\x01\xa8\xc1\xb9\xcd\xed\
\x39\x5f\xf9\xcc\x94\x0f\xa4\xb2\x6d\x51\x05\xbb\xc3\x8a\xed\x1c\
\x20\x62\x33\xa8\xcc\x54\x31\xe8\xdd\xaa\x6e\x78\xfd\x51\xea\x54\
\xc6\x42\x9b\x66\xa8\x6c\xdf\x1c\xf5\x63\xaa\x04\x91\x27\x64\xe7\
\x6e\xfa\xc2\xea\xc7\xce\x9b\xbb\xf1\x4b\x6d\xbb\xfe\xb7\xe9\xc0\
\x5f\x1a\xdb\xef\x9a\xb2\xf7\xd7\xd3\x77\xfe\x70\xee\xfa\xcf\x1d\
\xf7\xf8\xa5\x27\xfd\xf3\x8c\x65\xeb\x6e\xaa\xef\x7a\xb8\x7c\x68\
\x73\xe5\xc8\x36\x28\x96\x99\x53\xc7\xea\x47\x56\xa8\x06\x87\xab\
\x73\x7f\x93\x2f\x87\x40\x76\xde\xc6\xcf\xad\x7e\xec\xac\x13\x1e\
\x3f\xf7\xc4\x47\xcf\x5c\xb8\xe1\x93\xd8\x65\x84\xe8\x8b\x03\xd4\
\x4d\x63\x11\xfd\xb2\x53\xe6\x2a\xc9\x9c\x33\x84\x6d\xfb\xfb\xbe\
\xf2\xf3\xa7\xbf\xfd\xdb\x75\x7f\x7c\x64\xeb\x5d\x4f\x6c\xff\xc5\
\x3f\x36\x7e\xfd\x97\xcf\xfc\xf2\xbe\x57\xd5\x7b\xb2\x02\xbb\x80\
\xa7\x2d\x6f\xa3\x1f\xf3\xe5\x4a\x94\xca\x54\x90\xa1\xe0\xd5\x4c\
\x32\x76\xc0\x7f\xaa\x55\x27\x88\x04\xe0\xce\xc2\x5c\x28\xc3\x95\
\xab\x9c\x3a\x8c\x04\x88\x71\x2b\xb8\x60\xc7\x48\x10\x1f\xbc\x53\
\x40\x28\x2f\x8b\x5c\x74\x2a\xfd\x70\x28\x01\x09\x62\x3e\x4b\x3f\
\x16\xf8\xdb\xfb\x37\x7f\xfd\x8e\x67\xef\x7a\x74\xfb\x63\x2f\xee\
\x5b\xb7\xf9\xd0\xda\x4d\x9d\x4f\xbc\xd8\xfe\xe0\xb3\x7b\x7f\x7f\
\xff\xd6\xdb\x7e\xfe\xfc\x17\x7f\xfc\xcc\xcf\xef\xde\xb8\x71\x67\
\xef\xc1\xae\x91\x43\xbd\xfc\x0d\xff\x49\x83\xea\x77\x93\x20\x37\
\x77\xfe\x0b\x21\xc5\x15\xc5\x01\x6d\x79\xcd\xaa\x2f\x2e\xbb\x7d\
\x45\xf5\xaa\x82\x2d\x8c\xdb\x55\x1f\xb8\x52\xb9\x5b\x2b\x4f\x25\
\x1b\x0d\xaa\xe5\xb5\xc7\x35\xf8\x7d\xc5\xe5\x85\xbe\xe7\xbf\xb1\
\xf1\x0b\x9f\x59\x7f\xcb\x67\x5e\xfe\xe8\xd7\x37\x7c\xf6\x9e\x03\
\x7f\x49\xf3\x9f\xbb\xf4\x20\x57\x6e\xa8\x97\x87\xc1\xfc\xb8\x17\
\x9a\xc9\x40\x11\xf0\xfc\x23\xdd\x1d\x81\x7d\xf1\x9d\x61\xb1\x5a\
\x52\x1f\x42\x22\x11\x10\x91\x2e\xc5\x9e\x2b\x91\x02\x70\x83\x88\
\xd0\x64\x20\x11\xfa\x44\x9d\x38\x33\x21\x7b\xc5\x7d\x90\x4d\x70\
\x70\x9a\x80\xe1\xa9\x76\x0e\x87\xa6\x5f\xdf\xd3\x72\xa9\x9d\xac\
\x3e\x05\xe5\x43\x9b\x66\x6f\xb9\x7d\xc9\x4b\x37\xaf\x7c\xf6\x1d\
\x2b\x9f\x79\xeb\xd2\xe7\x6f\x5a\xf0\xd2\xc7\x67\x6e\xfd\x76\xfd\
\xa1\x87\x43\x19\xd7\x8f\xbe\x05\x71\x86\x0d\xc2\x34\x36\x4c\x3a\
\xed\x81\xe1\x0f\x0d\x85\xe1\xfa\x35\xb9\x27\xda\x2e\x1f\x80\x58\
\xb2\xab\x6c\x64\x7b\x90\x5f\x2e\x0e\x1b\xc3\x21\x83\x7e\xd6\x41\
\xc2\xea\x05\xcd\xab\x17\xb4\xe4\x79\x42\xe0\x82\x6c\xd8\xd5\x75\
\xef\x33\xbb\xfe\xfa\xf8\x8e\x7f\xbe\xb8\xaf\xa3\xc7\xff\x37\xa9\
\xdb\x1a\x2b\xde\x7a\xfe\x62\x55\x6e\x6f\x61\xd5\xcd\x0a\x47\xb9\
\x12\x92\x2a\x67\xe4\xb8\x4e\x60\x78\x6b\x92\xdb\x47\xe4\x11\xe8\
\x05\x02\x09\x76\x53\xb8\xc0\x0c\x5e\x2c\xa8\xaf\xd0\xdb\x23\xf4\
\xe6\x0d\x85\x0b\x4f\x99\x39\x6f\x3a\xff\x1d\x04\x27\x87\x4d\xec\
\xe9\x18\xbc\xf3\xd1\xed\x77\xfc\xed\xd5\xef\xfd\xfe\xa5\xef\xff\
\xfe\xa5\x9f\xde\xb5\xe1\xd7\xff\xd8\xfc\x8f\xa7\x76\x6f\xde\xdd\
\x4b\x3f\x19\x2a\x6e\xa0\x44\x24\x2f\x6e\xa9\x40\xaf\x1e\x78\x83\
\xdd\x00\x36\xd8\x1f\x4f\xe0\x97\x13\x8e\x04\xc8\xbd\x26\x34\xc6\
\x9a\xdf\x3d\xeb\xdf\x3e\xb1\xf0\xf3\x4d\xb1\x66\xb7\x51\x77\xe0\
\x86\x2f\xfa\x42\x82\x9c\xed\x55\x40\x8d\x63\x71\xa3\xf5\x4d\x7e\
\x8b\x36\x50\x11\x29\xbb\x78\xca\x65\x4a\xd4\x8b\x94\x95\xec\x18\
\x6f\x3f\x38\x71\x60\xdc\xfb\xb3\x42\x65\xe1\x72\x6a\x2a\x0f\x3c\
\x95\x28\x81\x1a\xb7\x10\xd4\xc0\x1e\x31\x99\x06\x28\xc9\x2d\x0e\
\xff\xe8\x6d\x1d\xba\x87\x0c\x4a\x7a\x87\xbd\x05\x40\x26\xfe\x32\
\x49\x21\x9c\xd1\x4b\xd6\x99\x23\x3d\xca\x01\x0c\x0a\xec\xae\x57\
\x18\x48\x0b\x7f\x10\xf0\x89\xa0\x72\x29\x37\xbc\x21\xb0\x75\xc5\
\x77\x46\xaa\x57\x88\xc4\x64\x70\xdc\x70\x08\x06\xfd\xed\x70\xec\
\x6f\x18\xca\x12\xfb\x36\x54\x77\x42\x7f\xd3\x59\x2c\x92\x9f\xc5\
\x0d\x7e\xdd\xc8\x13\xde\x7d\xe9\xb2\xb9\x6d\x35\x3e\x59\xdc\x1c\
\x08\xe6\x81\x39\xd5\x65\xb1\xf7\x5f\xb9\xa2\xa2\x34\xa2\xb4\xe5\
\x29\xc9\xd3\x80\x28\x6a\x40\xc5\x8f\x04\x5b\x8e\x3e\x6d\xc5\x47\
\x9b\x97\x7d\xc9\x0b\x58\x64\xde\x73\xc5\xd2\xba\x6a\xd7\xa1\x15\
\x7c\x81\x43\x00\x0e\xed\x98\xb4\xad\x62\x3a\x91\x98\x37\x78\x9a\
\x97\xde\x54\xf0\x84\xbc\xf4\x80\x36\xbd\x34\xff\x6d\x01\x05\x28\
\x73\xe0\x76\x28\x0f\x6e\x31\x1b\xa5\x7a\xd9\xf2\xea\x55\xef\x9f\
\xfb\x91\xdb\x57\x7e\xef\xdc\xe6\x0b\x79\x7e\xe1\x42\x17\x04\x38\
\x20\x33\x33\xfd\xc1\xdf\x3c\x55\x58\x44\xb2\xf4\xc7\x52\xdc\xde\
\xd2\xd6\x9c\xbe\x49\x42\x93\x81\xdc\x65\xb9\x68\xea\x65\xe7\xb4\
\x5c\x20\x39\x7c\x00\x23\x2e\xbc\x6b\xce\xfb\xcf\x6a\x3a\x0f\x93\
\xb1\x8a\x33\xcc\x2c\xfd\x15\x9c\xbc\x90\xb1\x7c\xee\xa9\xe0\x10\
\x91\x27\x06\x8f\xc0\xa4\x34\x51\x29\x45\xa0\xb7\x4e\x31\xec\xd5\
\x48\xa6\xf1\x88\x71\xc2\xef\x29\xd3\x4a\xc1\xdf\xf9\x63\x39\x1b\
\x60\x05\xe0\x06\x29\x47\x16\xc8\x70\xa0\xbc\xba\x91\x50\x9a\x71\
\x85\x18\xd3\xf4\xe5\x7c\x8f\x0f\x9e\x40\x5f\xb3\xcb\x03\x2d\x36\
\xf2\xd7\xb2\xf3\x43\xb2\xb4\xf5\xe5\x53\xef\xec\x6d\x3a\x5f\x49\
\x02\x60\x3b\x70\xd3\x7e\x98\xa8\x5c\x80\x49\x19\xed\xc0\x5b\x7e\
\xf2\xdc\x29\xe3\xce\x95\xb7\x1b\xe1\xca\xc9\x35\xa4\x23\x15\x16\
\xbd\x79\xa1\x9c\x41\xa8\x2c\x0d\xdf\xfa\xd6\x13\xd4\x0f\x69\x38\
\xec\x3c\x40\xbb\xc0\x49\xc2\x01\xb0\xb5\xfa\x33\x37\x9e\x38\x73\
\x4a\x65\x6e\xe9\xa3\xda\x20\x59\x09\x18\x2d\x4a\x18\x9f\xb6\x86\
\x0c\x0e\xd8\x2e\x19\x77\xe0\xb3\x5d\xbe\x75\xf5\x47\x43\xd0\x13\
\x49\x77\xae\x5b\x4a\x50\x26\x24\x8b\x9d\xd1\xe2\xbf\xcb\x2c\x81\
\x34\xda\x61\x6a\x53\xf9\xa7\x6f\x58\x33\x7b\x6a\xc1\x6d\x0e\x92\
\xb3\xe1\xa6\xdd\xc0\xb0\x6d\xae\x70\xde\x4d\x94\xc0\x2b\x8b\xea\
\x03\x12\xc0\xf1\xf8\x27\xcb\x8f\x3b\x5c\x3b\xed\x2d\x53\x4b\xa7\
\x3b\x4a\x73\xf0\x16\x3b\x87\x22\x0e\xd5\x44\x6b\x97\x55\xaf\x38\
\xb7\xe5\xc2\xf7\xce\xb9\xf9\x0b\xcb\xbe\xf6\x99\x25\x5f\x3a\xab\
\xe9\xdc\x92\x50\x49\x9e\xb9\xbc\x00\x65\x1c\x02\xf1\x60\xee\x87\
\x1c\x73\xc8\x06\x42\xf4\x16\x2a\x5c\x71\x02\xcf\x15\xb8\x32\x78\
\x97\x1e\x7c\xdf\xbc\x9b\x6f\x98\x73\x53\x65\xa4\x52\x32\xf9\x62\
\x66\xd9\xac\x5b\x16\x7d\xea\x82\x29\x17\x63\x60\x2a\x96\x8d\x98\
\x1e\xcd\xf3\x0a\xa1\x24\x9c\xf7\x17\x17\x08\xf1\x50\x2c\x4f\x0c\
\x9e\xc4\xe9\x57\xe8\x6c\xd8\x95\x16\xd3\xe3\x3a\x4e\xfc\xf0\x94\
\xbc\x96\xf6\xa6\x62\x92\xc3\xc1\x20\xff\xd0\x98\x0b\x5c\xb2\x48\
\x20\x4a\x32\xb6\x18\x35\x57\x56\xcb\x84\xab\xa9\xb4\x0e\x98\xce\
\x06\xe9\xef\x36\x14\x0b\x96\xfd\xee\x0d\xa9\x15\x50\x47\xf0\xf9\
\x9e\xaf\x20\x1d\x9f\xf2\xca\xe9\xf7\x6c\x5f\xf1\xed\x61\xfa\x4d\
\x44\x56\xe1\xc0\xa1\x1d\x55\x0c\x2b\x10\xe9\x9d\x72\xe9\xc6\x53\
\x7e\x37\xd0\x78\x86\xd3\x9b\x51\x1b\xaa\x23\xa2\x66\x34\x6d\xac\
\x72\xf1\x4b\x67\x3f\x30\x52\xe3\x77\xf8\x17\x64\xb5\xbe\x96\x8b\
\xb3\xf4\x96\xb7\x07\x55\xa5\xd1\x4f\xbf\x6d\xcd\x07\xaf\x5c\x31\
\xab\x95\xcb\x2e\x21\x0f\xe2\x0f\xf3\x67\xb4\x54\xdd\x70\xd1\x92\
\xcf\xdf\x78\xf2\xd4\x86\x8a\xdc\x26\x91\x82\xec\x28\x55\x08\x51\
\x5b\x79\x0b\x92\xd5\x4a\xe2\x21\x67\xa8\xe4\x85\xb0\xbc\x70\xe8\
\x98\x66\x02\x2d\x12\x0d\xa3\x69\xd4\x68\x62\x75\xb9\xc0\x7f\xd9\
\xd4\xce\x22\x57\x34\x6b\x98\xbe\x1b\x2c\x5d\xc5\x2b\xae\xb5\x36\
\x94\x7f\xe1\xdd\x27\xde\x78\xd9\x92\xb6\xc6\x72\x92\x07\xd3\x17\
\xc2\xe7\x2c\xd1\x48\x68\xf5\xe2\xe6\x7f\xc7\xac\xd1\x56\xed\x0c\
\x7b\x09\x62\xc2\x13\xfe\xb4\x79\x8c\xb3\x2a\xa0\xe7\x29\xca\x85\
\x91\xcc\xc8\xcb\x03\x2f\x0c\xa7\x87\xb0\x83\x93\x29\xcd\x01\xf5\
\x59\x3f\xa0\x0f\xe3\x8a\x91\x19\x0e\x46\x4a\xf5\xd2\xda\x58\x7d\
\x4d\xa4\xa6\x32\x52\x15\x0e\xfa\xfd\x72\x6b\x71\x60\xa7\xcb\xf5\
\x18\xc0\x2e\x7d\x6d\xcf\xf3\x9d\x13\x1d\x49\x33\x85\xf1\x89\xe2\
\x54\x84\x2a\x96\xd5\xac\x9c\x5e\x4a\x77\x6e\x45\x18\x04\xfc\xa1\
\x52\xd1\x10\x42\x2c\xe7\x2a\x26\xe4\x43\x13\x87\x5e\xea\x5b\xb7\
\x71\x60\xfd\xc1\x89\xf6\x94\x91\xb2\xe8\x55\xe7\x40\x2c\x14\x9b\
\x53\x31\x6f\x65\xcd\xf1\xc7\xd7\xad\x2e\x0d\xd1\x9b\x45\x07\xc7\
\x0f\xbc\xd8\xb7\x16\x45\xc6\x86\x1d\x5a\x1a\x62\x8d\xa7\x36\x9e\
\x21\x7f\xc3\xcf\x8d\xfe\x54\xdf\xda\xde\x67\x87\xd2\x83\x86\x45\
\x3f\x11\x89\x72\xd5\xc6\xea\x4e\xaa\x3f\x2d\xef\x7d\x47\x28\x1c\
\x33\x46\x9f\xeb\x7e\xba\x37\xd5\xcb\xeb\x79\x36\xc4\x92\xc7\xd7\
\x9f\x08\xcd\x7c\x28\x20\x90\x24\xbb\x2c\xb9\x86\x52\x43\xcf\x75\
\x3f\xd5\x9f\xee\xcb\x98\xf4\x8c\x1a\xca\x6b\xc2\xb5\x6b\x1a\x4e\
\xad\x8a\xd0\xd3\x69\x01\x72\x61\x25\x89\x26\xbb\x1b\x3b\xfe\x16\
\x9b\xe8\xc0\x6a\x8f\x8c\x56\x30\x92\x2a\x99\xd2\x33\xe5\xb2\x64\
\xe1\x6f\x01\x29\x64\xa3\x13\x1d\x94\x25\xd1\x1d\xa4\x9f\x4b\x09\
\x98\x7a\x2c\x51\x32\xb5\x7b\xea\x35\xa9\xa8\xcf\xbd\x74\x00\x75\
\x2a\xc0\x09\xbc\xba\xfb\xa9\xca\x81\x17\x2b\xfb\x5e\x8c\x4f\xec\
\xd5\x33\xe3\xc1\x2c\x7d\xc7\x1e\xa7\x77\x2b\x18\x36\xc3\xe5\x13\
\x65\xb3\xc7\xaa\x16\x4f\x94\xcf\x1a\xae\x3d\x7e\xac\x1a\x47\x6b\
\x4f\x57\x09\x87\xc5\x6d\x5a\x00\xe5\x8a\xbc\xa1\xf4\x70\xd3\xc1\
\xbb\x6a\xbb\xfe\x59\x36\xb8\x31\x64\xc8\x41\x3d\x60\x84\xab\x87\
\x6b\x96\x0f\x34\x9f\x0b\xaf\x50\x22\x66\xe6\xe0\x28\x9d\x48\x66\
\x36\xed\xe9\xdb\xd1\xde\xbf\xe7\xf0\x70\xf7\xe0\x78\x3a\x65\x1a\
\xd0\xc9\x9b\x0b\x8c\x81\xba\xca\x92\xd9\x53\x2a\xe7\x4d\xab\x5d\
\x32\xbb\x9e\xff\xfc\x46\x3e\x30\x80\x15\xc5\xe8\x1b\x4a\xbc\xb0\
\xed\xf0\xe0\x48\x2a\x4d\x3f\xad\xa3\x45\x42\x7a\x75\x45\xec\xa4\
\x25\x2d\x95\x65\xf4\x1d\x13\x06\x0f\x2f\x1b\x38\x60\xbf\xb2\xa3\
\x7b\x6f\xc7\x70\x32\x6d\x82\xab\xeb\x81\xd2\x58\x78\xe1\x8c\xba\
\x85\x33\xeb\x50\x4c\xd3\xe4\xe2\xb9\x7a\x20\xd0\xd1\x3d\xba\x7e\
\x47\xf7\xf0\x58\x0a\xa9\x48\x88\x44\xf4\xc6\x9a\xd2\x93\x96\xb6\
\xc8\xcf\x01\x72\x2f\xf0\xb8\xe4\x60\x64\x3c\xb5\x79\x4f\xdf\xde\
\x8e\xa1\x3d\x87\x86\x7b\x06\x27\x92\x69\xc3\x24\x9b\xa4\x3e\x14\
\x0c\x96\xc4\x42\x4d\x75\xa5\xd3\x9b\x2b\x5b\xea\xcb\xb0\x53\x68\
\x6d\x28\xc3\x48\x97\x8c\xf9\xf0\xb8\xa3\x05\xfe\xb2\xc5\x73\xe2\
\x85\xdf\x8a\x7a\x9d\xe0\x97\x31\xa5\x5b\xab\xce\xfd\xda\x34\xd3\
\x9f\xa8\xa4\x4e\xc3\x24\x0f\x15\x56\x45\x1f\x3c\x0d\x49\x12\x49\
\xf0\x27\xfa\x3f\x12\x24\x0e\x80\x25\x40\x4e\xde\xa7\x91\x27\x80\
\x93\x4a\x5c\xa9\x71\x25\x8d\x09\x81\x3e\x38\x41\x09\xbf\x1e\xb0\
\x3a\x54\x05\xbb\xcd\x0c\x98\x61\xe3\xf8\xa0\xd2\x08\x54\x82\x0d\
\x37\x0d\x28\x21\x5b\x4c\xa0\xf8\xdc\xdd\x8f\x01\x54\x2a\xd6\xe3\
\x64\x63\x0a\x2c\xea\x8f\x7e\x08\x92\x78\x0e\x62\x1a\x30\xf9\x4f\
\x68\x3b\x51\xc0\xa6\x55\xcf\x13\x87\x05\xa0\x65\xf0\x33\x1d\x40\
\x4b\xa2\x45\x72\x3e\x14\x08\xe3\xea\xd6\xec\x46\x9e\x3f\x47\x44\
\xb1\x72\xd1\x4a\xe1\x07\xf7\xea\xe6\xf5\x01\xf2\x3e\x59\xd0\x00\
\xd2\xe1\xe0\x36\xae\xb2\x7c\xca\xdb\xdd\xae\xf2\xe5\x40\xed\xaf\
\xc8\x7c\xb8\x2b\xe1\xc8\x20\x2d\xf9\xbb\x54\x81\x6f\xd5\xb1\x6f\
\xae\xef\x47\x80\x73\xe7\x16\xcf\xca\x5f\xcc\x31\x67\x51\xca\x43\
\x51\x77\xf9\x5b\x13\xf8\xcc\x13\x70\xb7\xf7\xd1\x41\xfd\xad\x59\
\x50\x50\x85\x2a\x05\x41\x51\xee\x39\xae\x7f\xc4\xc3\x3f\x3a\x4d\
\xdb\x16\x25\x97\x5c\x31\x51\xf2\xcc\x91\x4b\x52\xa9\x05\xee\x2b\
\x06\x1f\xc8\x85\x7c\x7d\x80\x95\x9c\x1b\x2e\xd0\xeb\x1d\xca\x07\
\xee\x37\x64\xcc\xf6\x90\x9c\xb3\xbb\x11\xf3\x72\x90\x54\xd9\xd8\
\x50\x9c\x1f\x28\x1c\x13\x44\x09\xfe\x8b\x43\x6c\x8a\x48\xa3\xc8\
\x60\x70\x06\x9b\x88\x39\x70\x7f\x35\xd3\x9d\x84\xdd\xbd\x10\x62\
\xc8\x01\x96\x43\x88\x71\xa1\x68\xf0\x23\x11\x31\x70\x4c\xac\xb4\
\x36\xf2\xb2\xf8\x82\x2b\x45\xc8\xa3\x02\x7a\x8a\xaf\xf8\xe4\x83\
\xdf\x5b\x22\xa1\x21\xef\x93\x85\xee\xac\xb9\x84\x9d\xc1\x5f\xb8\
\xf2\x0b\x88\x75\x2c\xfe\x03\xfe\xb5\x42\xfe\xfb\x0c\x7e\xb7\xe7\
\x6e\x14\xf2\x31\xf8\xbd\x2f\xe1\x79\xbe\x6c\x9b\x93\x2e\xa6\xb1\
\x68\x39\xb8\x0a\x00\x24\x3b\x2d\x6a\x2b\x51\x1f\xe0\x23\x41\xe9\
\x2d\x62\x00\x35\x48\x7c\x4e\xa5\x0e\x83\xbe\xce\xb4\xf4\x7e\x91\
\x11\x48\x94\x74\x16\x54\x15\x92\x64\x28\x4b\x12\xae\xe0\x88\xbc\
\x6c\x90\x38\x53\x5e\x2e\xfe\x6a\xed\xbf\x00\xd4\x44\xca\x18\x2e\
\x62\x46\xae\x41\x9e\x52\x29\x49\x0a\xc2\x4e\x00\x30\xed\x82\x2b\
\x01\x29\x94\x11\x2c\x8c\x21\x4a\x12\x5d\xdc\x62\x9c\x92\x87\x42\
\x0e\x41\xb8\x22\xce\xb6\xb9\xef\xd2\x74\x2a\x7b\x82\x9c\x22\xe5\
\x98\x1d\x17\x67\xc4\x57\x44\x30\x9d\x0a\x49\x50\x5c\x46\x91\x3d\
\x67\x36\x9b\x91\x3b\x1a\x90\xe0\xd2\xa0\x98\x34\xff\x41\x8d\x18\
\xe6\x0f\x29\x87\x98\xa4\x82\xd2\x87\x5b\x39\x65\x56\x44\x01\xfc\
\x13\xe8\xdc\xe8\x07\x36\xea\x97\x85\xeb\x43\x4c\x7b\x50\xc4\x30\
\xd7\x02\xb5\x94\xb8\x2e\x3d\x93\x77\x36\x3e\x4d\x02\x40\xaf\xaa\
\xd8\x3c\x40\xdc\xdf\x42\x11\x36\xfc\xf1\x53\x53\x4c\x3f\x29\xf1\
\x7a\x14\xf8\xeb\x16\xcf\xbd\x5f\x2b\xc8\x7f\xe4\x80\x21\x8d\xfd\
\xda\x40\x95\x61\x67\xe7\x1d\x90\xea\xd0\xb4\xde\x71\x2a\x55\x0d\
\x43\xf8\x22\xe9\x07\xb5\xf2\xc3\x6b\xd9\xf6\x4b\x54\xb7\x97\x3e\
\x48\xc8\x55\x08\x87\xce\x87\xdc\x20\x73\x09\x20\x3b\xb1\x59\x0f\
\x16\x1f\xe1\x0b\x93\x08\xff\x8a\xfd\x97\xc2\x5b\x6a\x65\x9a\x2e\
\xaa\xdf\x80\x43\xce\xa1\x27\xf1\x7e\x47\xe0\xf6\x93\xaf\x3c\x6a\
\x5d\xb0\x15\x21\xc1\x35\x38\x1d\xd0\x3c\x28\xe9\x1e\x20\x0f\x6a\
\x88\x47\x9f\xe2\xd8\xa0\x5f\xe5\x53\x54\xce\x28\xa3\xc8\xfe\xbb\
\xd8\x36\x5b\xb3\x0c\x1a\xfa\xf6\x76\x06\xc3\x43\xfa\x68\x90\x7f\
\x7f\x55\x6c\x0b\x28\x4a\x32\x4a\x51\x9e\x5d\x47\xa0\x00\x7e\xe5\
\xa5\x8c\x34\xdd\xa8\x88\x0b\x16\xea\x99\x4b\x9b\x2b\x11\x83\xfb\
\x9a\x0f\x6c\x77\xf2\xc1\xef\x72\x10\xc4\x79\xa7\x8c\xd2\xed\x45\
\xe6\x68\x40\x63\xa3\x88\xb8\xaf\x69\xc8\xfa\xf2\xc1\xc3\x9c\xaa\
\x22\x93\x02\xbd\x0b\x9e\xe7\xc2\x1b\x01\xae\x19\xa5\x1a\x1f\x44\
\x71\xc3\x82\x89\x6a\x92\x34\x32\x4e\x84\x12\x73\x3a\x82\xf0\x21\
\x84\x80\x01\x1f\x92\x47\xc6\x7c\xdb\x54\x6a\x56\xae\x6e\xa2\x08\
\x48\xb3\x32\x24\x11\x11\x47\x36\xec\xdb\x48\x3f\x5c\xa1\xfb\xb4\
\xff\x72\x50\x01\xfc\xa0\x92\x19\x4e\x14\x1f\xd2\x7b\xa4\xc8\x00\
\x1c\xa4\x66\xb6\x67\x3d\x81\x08\x53\x92\x33\x34\x05\x76\x1a\x3e\
\x44\x32\x1f\x45\xfc\x01\x9b\xa6\x18\x58\x72\x65\x64\x4d\x54\x4d\
\x4e\xd4\x66\xe6\x88\x42\xb0\xac\x0f\x90\xe0\x08\xd0\x95\x1b\x01\
\x80\x5d\x02\x97\x06\x51\x55\x7c\x82\xe4\x2b\x6a\xe8\x5f\x02\xb7\
\x7e\xdb\x9c\xbf\xc5\x62\x7e\x70\x41\x9c\xc4\xc9\x34\x4c\x8e\xa2\
\x79\x8a\x24\x14\xaf\x98\xa3\xb5\x1e\xb8\x6b\x9b\xe7\x2f\x67\x16\
\xbf\x8b\x73\xcc\xa0\x6a\xb0\xa7\x43\x40\x45\xb9\x91\x39\x59\xea\
\x29\x37\xcd\x8a\x19\x27\x0a\x39\x5c\xf8\xbb\x50\x2c\x68\x43\xa2\
\xce\x5a\x2d\x28\x46\x3b\xc0\xd0\x16\xa2\x30\x55\x14\x02\x48\x12\
\x10\x53\xd2\x5e\x37\xa0\x56\x51\x05\x10\x3f\xf2\x04\xa8\x46\x94\
\xa7\x0a\xf0\x07\x8b\x24\xa4\x31\x1a\x14\x8b\x21\xae\x52\x2d\x82\
\x6f\x2f\x9b\x4c\x10\xa0\x54\x4e\x05\x85\x90\xcd\x57\x01\x60\x45\
\x9d\xc9\x1d\x97\x48\x21\x7d\x70\xd4\xdd\x04\x7c\xa5\x63\x82\x1f\
\xe8\x69\xbe\x2f\x2c\xd3\x19\xcf\xe4\x2b\x03\x6c\xfe\x1b\x28\xaa\
\x1e\x24\x55\x08\x3a\x35\x93\x0f\xb8\xd0\xa7\x4d\x4b\xdc\xd7\x04\
\x92\x94\xb4\x1b\x28\x93\xaf\x7c\x16\x7b\x73\x45\x3a\x85\x13\xd3\
\x3e\x4a\x00\xdf\x65\x16\xa0\x2a\x27\xa7\xe9\x5d\x58\x80\xde\xd8\
\xa6\x1f\x2d\xa3\x7d\xaa\xe3\xfd\xd1\x00\xea\x8b\x58\xf6\x37\x3d\
\x89\xea\x22\x9e\xe6\x23\x7f\xf0\x17\xbb\x8b\x73\xac\xa0\x36\xb4\
\xb3\x73\x9d\x90\xab\xc2\x72\x68\x87\x81\x28\x4d\xfd\x88\xf3\x3f\
\x06\xa7\x88\x04\x03\xb4\xad\x87\x62\x90\x07\x25\xaa\x8e\x06\x94\
\x07\x81\xe5\xf9\x7f\x8e\x40\x12\xfd\xcc\x26\xf7\x48\x69\x3f\x92\
\xc7\xff\x37\x14\x52\x3c\x1b\x52\x40\x06\x7a\x92\x9a\x28\x55\x1c\
\x5e\x49\xe5\x30\xc7\xcd\x17\xff\xa9\xab\x29\x32\x77\x05\x8a\xf4\
\x24\x64\x77\x6c\x79\x80\xc1\x80\x2b\x5b\xce\x37\x24\x44\x3e\x6c\
\x81\x3c\x14\xbd\xbb\xce\x93\x8b\x00\x51\xa8\x15\xd0\x53\x76\x1b\
\x9c\x24\xe9\x0a\x24\x80\x2b\x53\x12\xf5\x24\x1f\x05\x8a\xc9\xf3\
\x4d\x9d\x5c\xd1\x8e\xac\xb6\xd8\x6c\x4a\xa0\xdc\x5c\x1a\xd9\xf6\
\x63\x67\x4a\xad\x86\xa8\x4a\x3f\x0a\x90\x79\x5f\xf1\xc9\xec\xfa\
\xe0\xe8\xeb\x27\xf0\xb7\xed\x9e\x33\xff\x1b\xbd\xf2\x63\x3e\x57\
\x69\x2c\x03\x08\x29\xfd\x5b\xa2\xc2\xe1\xab\x43\x10\xa4\x36\x45\
\x15\x6d\x20\x84\x6b\xc3\x11\xf3\x45\x5e\x2a\x94\x38\x57\x80\xbe\
\x60\xc3\x0b\x2e\xab\x27\x08\xff\xf5\x63\x12\xaf\xc4\x46\x81\x00\
\x56\x79\x0b\x33\x11\x7a\x10\xa6\x2b\x5a\x3b\x6c\x57\x01\x08\x8b\
\x3c\xae\xc2\x67\x80\x00\x33\x27\x26\x3c\x67\x1e\xf5\x02\x4c\x3f\
\x3e\xf5\x30\x6a\x02\x64\x77\x4c\xc0\x07\xe1\x90\x80\x82\x58\x61\
\xb2\x48\xd1\x8a\xad\xfc\x18\xfc\x74\xb5\xc1\x9e\xd2\x08\x09\x68\
\x9e\xe7\x4f\x0e\x50\x01\x8e\x31\xe5\x81\xc7\x93\x42\xf8\xdb\x25\
\xf8\xa5\x50\x79\xc1\xb7\x4b\x41\x1f\x42\x17\x31\x52\x6c\xe5\x87\
\x57\x28\x0e\x32\x4b\x89\xec\xbe\x24\x77\xa8\x26\x77\xd8\x83\x62\
\xea\x81\xe2\xa6\xd5\xa7\x1b\xec\xcb\x24\xca\x72\x08\xdc\xbd\x23\
\x6f\xdb\x9f\xd3\xc7\x45\x7a\x8d\xe0\xf6\x55\xd9\xb9\x4e\x48\x2d\
\x38\x59\x83\xbe\x4b\x8f\x5e\x25\x4c\xb4\x3d\x4d\x94\xdc\xc9\x44\
\xde\xc9\x65\x13\xb8\x12\x21\xc2\xb2\x01\x46\x92\xb3\xbc\x38\xf2\
\x93\x83\xd6\x7d\x16\xe4\x11\x05\x88\x7d\x22\xc0\x73\xb6\xa3\x4e\
\x42\xae\x16\x5e\x37\x44\x6d\x21\xdc\x26\x1c\x19\xda\x7c\xd8\xf7\
\x38\x85\xe3\x40\x9c\x12\x3e\x0d\x6c\x27\x07\x75\x3e\xa1\x6d\xe7\
\x49\x12\x1d\x30\xb7\xa2\xba\x11\x28\xc2\x97\x4d\x1f\xe7\x25\xd0\
\x5d\x10\x75\x02\x51\xf3\x32\xe0\xa4\x12\xf2\x7e\xe1\xd3\xc6\xe4\
\x83\x9f\x08\xbb\x74\x3c\x3c\x3c\x83\xdf\xd1\x0f\x82\x4e\x7c\x20\
\x3c\xf5\x44\xf0\xf8\xe0\x46\x91\xef\x7f\xa0\xd3\xd9\x75\xe5\x01\
\x46\x14\x94\x8b\x27\x02\x45\xd3\x8c\xcb\xf1\x3c\x14\x5b\x81\x79\
\x9e\x45\x56\x72\x0c\x67\x2a\x1e\xfc\xa0\x64\xad\x52\x32\xaf\x07\
\x45\xec\x92\xaf\xfe\x09\x4e\xdf\x38\x02\xfc\x07\xbf\x4f\x8d\x1c\
\x3b\x90\x11\x40\xf9\x05\x12\xd5\x4c\x83\x5e\x6b\xd5\x69\xf0\x9b\
\x06\xbd\x0a\x8d\x2e\xa6\xd3\xae\xdb\x69\x39\xae\x30\x6a\x00\x29\
\x99\x54\x2c\x81\x07\xbf\x4c\x82\x18\xfc\x94\x6c\xa7\x78\x9c\xb4\
\x33\x7a\xc0\xcf\x94\x72\x62\xe4\x90\x57\x0c\x13\x10\x52\x01\x49\
\x2a\xdc\x59\xbc\x66\x38\x46\xf3\xe0\xe8\xf7\x0a\xc0\xae\x1a\xfc\
\x3c\x34\x68\xe0\x81\x96\xf9\x91\x93\x73\x7e\xf1\x14\x80\xa8\x70\
\x20\xa5\xca\xc5\x40\x91\xfd\x07\x43\xb0\xc8\x20\xb1\x74\x9f\x12\
\x43\x91\xf3\x93\x72\xa4\xd4\xed\xc0\x31\x0e\xfe\x20\x3f\xc5\x20\
\x82\xab\x1a\x04\x35\xa8\x77\xe5\xcf\x29\x87\x7a\xfb\xde\xb7\x08\
\x3b\x80\x8c\x5b\x2c\x87\x63\x1f\xfc\x0e\xdf\x63\xa2\xc8\x3a\x5b\
\x7c\xf9\x45\x0a\x14\xa8\x87\x32\xb4\x94\xf1\xe0\x2f\xea\xe7\xb1\
\xa3\x98\x69\x59\xc7\x0a\x51\xd4\x55\x2f\x02\xf7\x78\x07\x3f\x3a\
\xbd\xa7\x22\xbc\xf5\xee\x07\x7f\xfb\x72\xc0\xc3\xc8\x46\x32\x55\
\x81\xaa\x20\xad\x24\x14\x88\x86\xf4\x48\x28\x64\x99\xd9\x74\xc6\
\x48\x19\xa6\x89\x6e\xad\x87\xb5\xdc\x6f\xa4\xb1\x38\x8f\x7e\x8e\
\x51\xb5\x92\x1b\xc4\x50\x77\x68\xc0\x41\x35\x3b\x86\xd9\x47\xb9\
\x70\x66\x3f\x48\x31\x1c\xc1\x9c\x1c\x7d\x80\x43\x1f\x3c\xc0\x44\
\x90\x0f\xff\x4c\xd9\xe2\x74\x21\x8a\x20\x32\x79\x70\x52\xbd\x20\
\x59\x5f\x79\x80\xf9\xae\x44\x47\x96\x8b\x2b\x4e\x50\x91\xe5\x14\
\x40\x49\x54\x09\x94\x42\x17\x35\xf4\x41\xd1\x64\x41\xb3\x27\x15\
\x1f\x01\x9d\x90\x3e\xbc\xdb\x69\x88\x29\x50\x3e\x3f\x60\x14\x4a\
\x5d\xab\xb8\x58\xa1\x37\xd2\xa9\x8f\xb1\x6f\x34\x33\x12\x1f\x8e\
\x51\xac\xc8\xe0\xf7\x57\xaf\xbc\xc3\x3f\x19\xfc\xb0\x04\x3f\x79\
\xf0\x17\xcb\xa0\x7c\x56\x02\x2e\x29\x95\xa0\x3c\x24\x82\x59\xb9\
\xc1\xef\xcd\x82\x34\x3b\x87\x0b\xe4\xa7\x23\xa5\x24\x01\x94\x31\
\x17\xc9\x83\x7f\x0a\x67\xa0\x26\xe3\xe2\x71\xd9\xb8\x2d\x68\x01\
\xf1\xb1\x5b\x1c\xc5\x85\xfd\xed\x82\xed\x97\x40\xe3\x4e\x91\x93\
\x23\xf0\xf7\x1d\x79\xdf\xf1\xca\xed\xf1\x3c\x28\x76\x0b\xb7\x08\
\x74\x2b\x41\x53\x77\x20\x94\xa5\x1d\x3e\xb3\x68\x83\x97\xad\x2b\
\xd5\x4b\xc3\x7a\x3c\x88\xd1\x9e\x4d\xa4\x8c\xe1\xb4\x39\xae\x05\
\xd3\xc1\x90\x66\xa6\xa9\xf2\x0a\x40\xb3\x36\x03\xf5\xe8\x54\x25\
\x7a\x0f\x2a\xdc\xbf\xaa\x88\xed\x9f\xe2\x06\x14\x0a\x41\x0d\xc7\
\xe2\x50\x2e\x86\x00\x89\x12\xd7\x86\x44\xe9\x4a\xf5\xed\x5b\x15\
\x48\xf2\xb1\xcb\x5c\x1f\x79\xb1\xe2\x0b\xc7\x07\x1a\xc4\x6c\x97\
\x47\x0b\xac\xfb\x34\x0d\x7a\x9b\x45\x77\xd1\x09\x92\x0b\x59\x38\
\xa3\xc7\x4f\x77\x71\x8a\xf4\x0c\xea\x32\xa2\x41\x90\xa3\xf9\xcd\
\x3c\xc0\x59\xd0\xc4\xb1\x80\xf7\x5d\xd1\xa3\x81\xb8\x21\xae\x02\
\xd0\x03\x1c\x63\xcf\x52\x6f\x8e\x03\xe4\x0a\x43\xa2\xee\x2e\x0f\
\xe5\x0e\xe1\x08\xe4\x83\x5a\xc6\x27\x09\xb3\x93\x6f\x93\x15\x85\
\x67\x25\x52\xcd\x07\x60\x1f\xe0\xd7\x62\xc5\xe1\xd5\xe3\xc0\xbf\
\x03\x11\x60\xc4\xa7\x09\xa0\xa2\x48\x81\xf3\x91\x3f\xf8\xb1\x19\
\x57\x54\x1e\x8a\x34\x91\x3c\x72\x2f\x44\xc0\x4a\x63\xb5\xe2\x83\
\x63\xd0\xc2\x94\x4c\x2d\x40\xed\xd4\x50\x1a\x8a\x63\xf1\xc7\xd4\
\x68\x65\x93\x19\x6b\x24\x6d\x8e\x19\x56\x92\x7e\xd8\x81\xa6\x06\
\x95\xd9\x05\x2a\x39\x83\x67\x55\x52\xa1\xa2\xaf\x63\xf0\x23\xbb\
\xa2\x00\xbe\xe7\xeb\x40\x94\x0b\xed\xee\x34\x6e\xba\x08\xfc\x7b\
\x12\x39\x94\x3b\xd1\x1c\x19\x6c\x5e\x0d\x5b\xaa\x2f\xb6\x2b\x4e\
\xf9\x0e\x7e\x82\x6d\x97\x84\x1c\xe0\xf0\xa0\xf6\x49\x0a\xaa\x08\
\x10\x71\x8b\xb9\x90\xf7\xe3\x0e\x39\x6d\xf6\xe0\x07\xa4\x11\xc0\
\x23\x6d\x98\x0b\x58\xa7\xe3\xa4\x73\xf5\x05\xc4\x44\x52\x0d\x7e\
\x7a\x36\xf6\x5a\x06\xbf\x3d\xc6\xa9\x4b\x30\x69\x5f\xa0\x9b\xd4\
\xe7\xa3\xa8\x4b\xf4\xa8\xcf\x27\x43\xd1\xc1\x4f\x3c\x3f\x03\x2e\
\xc3\x52\x2e\xbe\xa0\xbc\xf9\x4d\x70\x24\xe4\xf4\xb8\x01\xb3\xbe\
\x3d\x8b\xcb\xe5\xd3\xb5\x48\x4b\x91\x12\xe7\x21\x70\xef\x4e\xef\
\xca\xef\xdf\x83\x8b\x0e\x7e\x5a\x92\x7c\x41\x9d\xc3\x21\x30\xfe\
\xa1\x99\x5e\xe4\xaa\x8d\x65\xe3\xe1\x60\x14\x3b\x49\x53\x9b\x48\
\x19\xa3\xa9\xcc\x84\x99\x35\xe8\xc7\x0b\xfc\x07\x3f\xa0\x6a\x93\
\x34\x41\x17\xca\x45\xd1\x62\x43\x4d\xca\xae\xc8\x22\x10\x6d\x36\
\x40\x53\x43\x49\x1e\x8a\x48\x2a\x5f\x88\xab\x92\xc8\x2e\x31\x7d\
\xfb\x0b\x81\x44\x15\xe9\x06\xbb\xaa\x68\x0f\xbc\x5e\xe4\x40\xa5\
\x13\x55\x54\x5e\x64\x16\xc3\x45\x06\x3f\xa5\x06\x3d\xdb\x22\x64\
\x97\x1b\x28\xa6\xa9\xe4\x9d\xa4\x23\x41\xf5\x24\xdb\x31\xf9\x80\
\x07\x74\xac\xa0\xb8\x93\xc0\xe0\xb3\x85\x82\xc3\x04\x24\x5a\x08\
\x87\x2f\x62\x39\xce\xb1\xad\x8f\x74\xe7\x00\x57\xd1\xe0\xa8\xc2\
\x95\xfc\x70\x2c\x53\x33\xe5\xcc\x09\x91\x8f\x22\x9d\x88\xee\x96\
\xf8\x37\x59\x91\x96\x24\x43\xca\xb4\xcb\x29\xaf\x3f\x47\x05\xd2\
\xa3\x48\x37\x8a\x99\x25\x76\x11\x87\x8a\x64\xc8\x43\xe0\xbe\xdd\
\x9e\x9f\xaf\xe2\x43\xba\x1f\x8a\x0c\xfe\x62\xe5\xcb\xd2\x1f\x95\
\xb2\xe8\xe4\x8f\xb9\x9d\xbc\xd1\x2d\x6c\xf5\x83\x7a\x59\x20\x1d\
\x8f\xe8\xd1\x70\x10\xe7\xc6\x89\x44\x6a\x22\x6d\x66\x50\xd7\xa1\
\x08\x4d\x06\x45\x54\xa9\xaa\x44\x1d\x70\x6f\x73\xa2\x45\x1c\xf5\
\x87\xe3\x27\xf2\x0a\x01\xb8\xe9\x3c\x01\xb9\x82\xe9\xf0\x01\xb2\
\x7b\x6c\x66\x8b\xb5\xa7\xc7\xb4\x1b\xe0\x4b\x92\x18\xc2\x55\x46\
\xbe\xc3\xc9\x03\x49\xf3\x98\x45\x2a\x09\xdb\x00\x87\x96\x9d\xbc\
\x3c\x1c\xf5\xeb\xf0\x0c\xaf\x4b\xa2\x84\x29\xdb\x13\xe6\xe4\x36\
\xed\xac\x5e\x40\x52\x36\xb8\xc1\x8f\x00\x88\x29\x0a\x78\x6d\x83\
\x5f\x22\xa2\x88\xaf\xee\x31\x22\x2e\xa9\xf2\xba\x6d\xb9\xc1\xf7\
\xa3\x14\xed\x41\xf1\xc1\xef\x8f\x9c\x1e\xc7\x1d\x00\xc6\x8f\xa2\
\x26\xdc\x28\xe6\x8f\x3f\xd8\x96\x9a\xaf\x5f\x1b\x02\xf7\xef\xcd\
\xfb\x45\x1a\xff\x6d\x3f\x5a\x5e\x51\x5e\xa8\x5a\x2e\x00\x46\x7d\
\x48\xd7\xa2\xc1\xac\x4e\x47\x57\x2b\x6d\x05\x53\x9a\x6e\x6a\xa1\
\xb8\x96\x09\x85\x02\x21\x3a\x07\x98\x19\x13\x81\xe6\x85\x40\x90\
\x07\xbf\x5f\xc9\x49\x3f\x57\xa5\xd0\xe8\x6f\x18\x0a\xc0\xb1\x0e\
\xfe\x3c\x88\x42\x17\x41\xba\xd9\x14\xf1\x0a\xf9\xcc\xa1\x8b\x78\
\x74\x0c\x80\xab\xa2\xc9\x0b\xe6\xf9\x24\xc0\x0a\x46\xb3\xcb\x2a\
\x73\x27\xb5\x48\x83\x1f\xd5\xc1\x42\xe2\x36\xd5\x0f\x67\x57\x4a\
\x6c\x20\x4a\xea\x8b\x68\xc3\xd6\x4b\xa0\x26\x1b\x27\x6a\x6f\x8c\
\x28\x3b\x9c\xcb\x0d\xfe\x7c\x13\x60\xe2\x9a\x67\xd4\x81\x64\x57\
\x11\x06\xab\x09\x58\xb4\x43\x29\xe2\xd3\xb1\x80\x94\x17\x38\x50\
\x68\x34\x07\x54\x84\x7f\x0a\xb8\xbe\x09\x50\x7b\x64\x3f\xb9\x4c\
\xe4\x0a\x0e\x35\xc5\xaa\xe2\x5f\x05\xb2\xf3\x3a\x10\x78\x60\x9f\
\x67\xe5\xa7\x5f\x95\xf3\xc3\x51\x6e\x24\x1c\x64\x8d\x6c\x69\x24\
\x5c\x11\x0f\x46\x82\x59\xd3\x30\xc7\x52\xe6\xb8\x11\x4c\x65\xf5\
\x08\x0f\x7b\x4b\x33\xd0\xe8\xe8\x46\x5a\x40\xcf\x66\x21\x01\xca\
\xbf\x07\xd0\xbd\x60\x86\x74\x6f\x69\x4b\x89\x4a\x77\x2f\x80\xbf\
\xa3\xee\x66\x40\x76\x45\xa9\xa6\xa2\x54\xb7\x00\xe0\x96\xc9\x4b\
\x2a\x0e\x3f\xd3\x50\x7e\x2c\x55\x07\xbb\xa8\x16\x4c\x97\x62\xd4\
\x71\x83\xa2\xc5\x14\xf1\x68\x76\x3b\x5c\x00\x12\x90\x42\x40\xa8\
\xd8\xbd\x60\xec\xd3\x14\xc5\xc8\x53\xe8\xf8\x23\x20\x8e\xd4\xbf\
\x44\xdc\x36\x8a\x80\x34\xb0\xb0\x23\x29\x13\x09\x0f\xfe\x63\x80\
\xdb\x2d\xa7\x69\x40\x04\xec\x1b\x81\x04\xc7\xf9\x49\x5c\x42\xd3\
\x48\x11\xbc\xe0\xb9\xcf\x6d\xc4\xc1\x64\x7e\x42\x11\xe5\xa1\x02\
\x72\x21\xd1\x45\xed\x46\x7c\xfd\xf0\xd5\xe2\x14\xf1\x35\x42\xd3\
\xfe\x3f\x4e\x5c\x37\xf9\x5e\x95\x38\xe1\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x27\x67\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x01\x5f\x00\x00\x00\x5e\x08\x06\x00\x00\x00\x84\x9e\x17\x90\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7\x6f\
\xa8\x64\x00\x00\x26\xfc\x49\x44\x41\x54\x78\x5e\xed\x9d\x77\x77\
\x14\xc7\xb6\xb7\xdf\xef\xe9\xb5\xc4\x21\x98\x83\x8d\x6d\x70\xc4\
\x39\x60\x83\x8d\x6d\x6c\x38\x60\x63\xb0\x72\xce\x42\x59\x1a\x8d\
\xb2\x46\xd2\xe4\xa8\x09\xca\x1a\x40\x11\x6b\xf8\x06\xfb\xee\xdd\
\xdd\xd5\x5d\xd5\xd3\x33\x9a\x11\x70\xe6\xde\x77\xed\x3f\x9e\x25\
\xa9\xbb\xba\xaa\xba\xc2\xaf\x76\x55\xed\x6a\xfd\xbf\x17\x2f\x5e\
\x00\xc3\x30\x0c\xf3\xdf\x85\xc5\x97\x61\x18\xa6\x02\xb0\xf8\x32\
\x0c\xc3\x54\x00\x16\x5f\x86\x61\x98\x0a\xc0\xe2\xcb\x30\x0c\x53\
\x01\x58\x7c\x19\x86\x61\x2a\x00\x8b\x2f\xc3\x30\x4c\x05\x60\xf1\
\x65\x18\x86\xa9\x00\x2c\xbe\x0c\xc3\x30\x15\x80\xc5\x97\x61\x18\
\xa6\x02\xb0\xf8\x32\x0c\xc3\x54\x00\x16\x5f\x86\x61\x98\x0a\xc0\
\xe2\xcb\x30\x0c\x53\x01\x58\x7c\x19\x86\x61\x2a\x00\x8b\x2f\xc3\
\x30\x4c\x05\x60\xf1\x65\x18\x86\xa9\x00\x2c\xbe\x0c\xc3\x30\x15\
\x80\xc5\x97\x61\x18\xa6\x02\xb0\xf8\x32\x0c\xc3\x54\x00\x16\x5f\
\x86\x61\x98\x0a\xc0\xe2\xcb\x30\x0c\x53\x01\x58\x7c\x19\x86\x61\
\x2a\x00\x8b\x2f\xc3\x30\x4c\x05\x60\xf1\x65\x18\x86\xa9\x00\x2c\
\xbe\x0c\xc3\x30\x15\x80\xc5\x97\x61\x18\xa6\x02\xb0\xf8\x32\x0c\
\xc3\x54\x00\x16\x5f\x86\x61\x98\x0a\xc0\xe2\xcb\x30\x0c\x53\x01\
\x58\x7c\x19\x86\x61\x2a\x00\x8b\x2f\xc3\x30\x4c\x05\x60\xf1\x65\
\x18\x86\xa9\x00\x2c\xbe\x0c\xc3\x30\x15\x80\xc5\x97\x61\x18\xa6\
\x02\xb0\xf8\x32\x0c\xc3\x54\x00\x16\x5f\x86\x61\x98\x0a\xc0\xe2\
\xcb\x30\x0c\x53\x01\x58\x7c\x99\x92\xd8\x3f\x3c\x76\xbc\xce\x30\
\xcc\xe9\x28\x2c\xbe\xcf\x0f\x61\x78\x28\x03\x75\x91\x23\x87\xfb\
\x07\xd0\xd5\x95\x84\x0b\x8d\x29\x78\xaf\x23\x03\x7f\xcc\xef\x3a\
\x84\xf9\xff\x87\xdd\xf8\x06\xdc\x9b\x7c\x06\x47\x0e\xf7\x88\x25\
\x77\x06\xbe\xeb\x5f\x83\xda\xe9\x6d\xf0\x6c\xc8\xf7\x8e\xa0\xbf\
\x37\x09\x6f\xfc\xbd\xa2\x71\x69\x24\x5b\x30\x8e\x93\x58\x1a\x4f\
\xc1\xb9\xe6\x0c\x3c\x9c\x7b\x02\x2b\x7b\x39\xc7\x30\x2f\xc3\xd1\
\x4e\x16\x1e\xb6\xa6\xe0\xb7\xa5\x03\xe9\x7a\x0e\x56\x63\x9b\xf0\
\xb0\x33\x05\x67\x6a\xd2\xd0\x9f\xcd\x4f\x77\x63\x69\x1d\x1e\x7a\
\x76\x61\xdf\x76\x3d\x9f\x7d\xe8\xea\xc1\xf6\xd2\x44\x64\xa0\x6b\
\xd5\x29\x8c\xce\xe4\xa8\x08\x97\x82\xef\x67\xca\x68\x5b\xcf\x77\
\xa1\xa9\x23\x05\x37\xdc\x4f\x60\xcb\xe9\xfe\x6b\xe1\x39\xd6\xf1\
\x0a\x9c\x6b\xd0\xfb\xc2\x7f\x06\xd7\xc1\xb5\xed\x14\xee\xd5\x11\
\x72\xa7\xcd\x36\x75\xcd\x5d\x6a\xf9\x60\xfd\x1a\x65\x9a\x57\xfe\
\x87\x47\x90\xde\xd8\x2f\x8b\xed\x43\xe9\xf9\xff\x4b\x88\x77\xcd\
\x3c\x01\x9f\xd2\x57\x2d\x76\x16\x32\x70\xc1\xe8\x6b\x29\xc7\xf7\
\x3c\x84\x71\xd7\x2a\xfc\x84\x6d\xed\x72\x1d\xf6\xef\xb6\x0d\x08\
\xe7\x85\x39\x19\x47\xf1\xcd\xe5\x0e\x61\xe0\xb1\x25\x1a\x5f\xba\
\xd4\xc6\xbc\x86\x99\x3b\x6b\xdc\x7b\xe3\xef\x04\xfc\x3a\xb5\x06\
\xe9\xcd\x83\xbc\x0a\xb2\x93\xd9\xf9\x47\x11\x1f\xb9\x11\x9d\x9a\
\x81\x1d\x33\x3e\x99\xe3\xd4\x06\x5c\x73\x0a\x5f\x08\xc7\x02\xcc\
\x41\x7c\x61\x15\xde\xae\xd6\xc3\x5c\x9f\xc9\x17\xe0\x5c\xee\x00\
\x1e\xb5\x8a\x78\x12\xf0\xc8\xb7\x69\x3e\xeb\xc7\xf7\xab\x32\xd3\
\x48\xc0\xd5\xd6\x18\x76\xce\x55\x64\xcd\xc6\x26\x78\x6d\xf1\x2a\
\x3c\xcf\xc2\x8d\x1a\x11\xcf\x0a\x7c\x3c\x9e\x35\xef\x8d\x0d\x58\
\xd7\x4b\xe1\xb7\xa5\x7c\x0b\xf6\x99\x7f\x0d\x2e\x8b\xf8\xf1\x5d\
\x9b\x56\x74\x91\xcd\x1d\x65\xe1\x76\x9d\xf5\xec\x85\x9e\x35\xa5\
\x1d\xe4\x9e\x6c\xc3\xd7\x46\xd9\x9c\x6b\x5d\x85\xf6\xe0\x41\xc1\
\xc1\x25\x97\xdb\x85\xbb\x8d\x22\xae\x04\x34\xa5\x0a\x85\xcb\x41\
\x43\xbb\x95\xe6\xfb\xfd\x2b\xda\x35\xa7\xb0\x2a\x47\x30\x3a\x60\
\xb5\xd9\x73\xad\xeb\x30\xb1\x73\x04\x01\xdf\x36\x0c\x2d\x96\xcf\
\xc4\x8a\x93\xd1\x91\x4f\x2e\xb7\x63\x96\x81\x46\x43\x02\x96\x4b\
\xca\xaf\xc5\xd1\xde\xa1\x63\x7f\x91\x59\x37\x06\x5c\x2a\x8b\x81\
\x3e\x2b\xbd\xab\x7d\xb1\x92\xca\x87\xf2\xf9\x8d\xc8\xa3\xad\xfc\
\x77\x66\xcb\xef\x87\xbf\x2e\xec\x9b\xcf\x97\xd3\x06\xaf\x8d\x6c\
\x40\x7d\x5e\xfb\x77\xa6\xde\x6b\xa5\xb1\xb3\xb2\xe3\x58\x4f\x44\
\x87\xcb\xe1\xf9\xde\xb4\x39\x80\xbf\x8b\x5c\x90\xfa\x8f\xe0\xeb\
\xc9\xa7\x66\xfc\x02\x6a\xa7\xf7\x9b\xac\x30\x67\x7a\xd6\xe1\x49\
\x5e\x98\x1c\xf4\x4b\x75\x40\xe5\x79\xcf\xff\x8f\x12\xa6\x14\x1c\
\xc5\x77\x2f\xb3\x01\xdf\x48\x9d\x8e\xb8\xd4\xb7\x05\x89\xe7\x78\
\xff\xf9\x13\xb8\x65\xbb\x57\x32\x2d\x19\x53\xe0\xe8\x05\x86\xfa\
\x12\xce\xe1\xca\xe0\x5c\x7b\x08\xe3\x52\xf3\x4f\x71\x67\x96\xb1\
\xd0\x1d\xc2\x17\xa4\x21\x0a\x21\x39\x9e\xc3\x3d\x18\x1c\x4c\x49\
\xe2\x89\x60\x05\x0e\x64\xa5\x30\x94\xd6\xd1\x0e\x7c\x2b\x3a\x5f\
\x4d\x18\x1e\xaf\xae\x69\xe9\x6f\x2e\xaf\xc1\x45\xf9\xd9\xa2\x24\
\x60\xac\x48\x07\xf2\xa1\xd5\x6b\x86\xc5\x34\x7a\xe3\x29\x2d\x0d\
\xba\xf7\x47\xb3\x1c\xcf\xc9\xfc\x38\xa9\xe7\x4f\xc4\x4d\xbf\xaf\
\x24\x92\x70\x5d\x6e\x9c\xf5\x29\x98\x3e\xc2\x76\xb0\xbf\x0f\xfd\
\x3d\x51\x65\xa0\xfd\x33\x20\x1a\xd9\x11\xb4\x77\x49\xcf\x20\x1f\
\x0f\xa6\xe1\x50\x79\x8f\x3d\x68\xef\xd6\x3b\xc0\xdf\xc1\x3d\xb8\
\xdd\x20\xc2\xc6\xa1\x29\x6d\x84\x71\xb0\xba\xfe\x68\xb1\xe2\xbc\
\xd2\x13\xcb\xbb\x9f\x6f\x75\xa1\xf0\xda\xeb\xaa\x36\x06\xdd\xf1\
\x35\xa5\x23\x95\xc3\x87\xf8\x2e\x56\x39\xe5\x20\xbb\xa5\xe6\x41\
\x03\x0d\x8e\xc0\x7c\x5a\xa9\xe7\x2b\x5d\xa1\xfc\x70\x0a\x07\xf0\
\x94\xfa\x91\x94\xff\x85\x51\x6b\xd0\x28\xc4\x47\xa3\xfa\xa0\x4e\
\x79\x6a\xec\xb0\xae\x5f\xed\x8b\x2a\xf5\x59\x98\x1d\xf8\xc2\x8c\
\xcf\x2a\x7f\x7a\x36\x30\x52\x7e\x3f\xfc\xd1\xbd\xaa\x3d\x4b\x34\
\x49\xf9\x39\x89\xab\x1d\x68\x84\x38\x5c\x77\x42\xd4\x01\x11\x1b\
\x77\x0e\xf3\x32\x54\xe1\x4c\x8c\xe2\x96\xcb\xe9\x00\x0d\x91\x73\
\x66\x98\x38\xfc\x36\xbe\x0c\x2f\xe2\x5b\x36\x71\x5f\x85\x1b\xed\
\x09\xa9\x5f\x60\x5c\x8d\x49\xed\xba\x1a\x0e\x99\xcd\x17\x78\x81\
\xa3\xf8\x6e\x6c\x6e\x81\x7b\xdc\x07\x37\xea\xa5\x4a\xa9\x4d\x40\
\xff\xda\x01\xf4\x4a\xd3\xe8\xb2\x69\x8c\xa3\xc0\xe9\x2f\x4b\x2f\
\x3d\xf8\x0a\xc4\xd7\xa9\xf1\xd1\xdf\xe9\x25\x4b\x7c\x2f\xb7\x2e\
\x43\xd7\xf0\x82\x23\xbf\x8b\xce\xd9\x10\x31\xc4\x17\xa7\xda\xc1\
\x0d\xb8\x6e\x5a\x69\x3a\x55\xb5\x11\xf8\x63\x6c\x56\x13\x24\x25\
\xad\xe0\x9a\x59\x09\x55\xcd\x7e\x14\x9f\x63\x58\x5b\x5c\x83\xb7\
\x4d\x31\xc3\xc6\xd6\x14\x81\xaf\x9a\x23\xf0\xb5\xc4\x07\xb5\x56\
\xdc\x24\xa8\x73\x52\x9c\x0a\x8a\xd5\x9b\x80\x6f\xfa\xbd\x70\x7c\
\x6c\xbd\x6f\xd9\xe2\x6b\x74\x1a\x39\x0d\x7a\x27\xf7\x48\x04\xde\
\x93\x2c\xb8\x4f\x5c\x3b\x5a\xb8\x58\x7c\x05\x7e\xaa\x17\xd7\x13\
\x68\x89\xa6\xe1\x19\x5e\xdf\x98\xcf\x28\x62\x77\xbe\xd9\x07\x33\
\xe1\x88\x2d\x6e\xb4\x0a\xb5\xfb\x71\x9c\x11\xac\x39\x8a\xef\xcb\
\x5a\x5d\x8e\xc2\x5b\x1d\x83\x9f\x07\xe7\x60\x7b\x67\x53\x4a\xb3\
\x3c\xe4\x76\x45\xd6\xd0\x5f\x65\x96\x73\x61\x92\x68\x75\x5a\x65\
\x44\x69\x94\xd2\x0f\x44\x7e\x88\xd7\x2a\xbe\xf5\x21\xb8\xdf\xed\
\x77\xe4\x7b\xb3\x1d\xa8\xe2\x2b\xe7\xe7\x24\x48\x7c\xdf\x71\xb8\
\xee\x84\xfc\xce\x81\x99\x78\xc9\xcf\x69\x54\x27\xe0\xcd\xda\x38\
\xfc\x5b\x23\x06\xd7\xb0\xcf\x51\x1f\xfc\xaa\x35\x00\xf7\xba\x7c\
\x70\xbf\xcb\x0b\xfd\x4b\x6a\x7b\xcd\xe5\xf6\xa1\xda\x9c\xc5\xa2\
\xc1\xd9\xba\x04\x1b\xd9\xec\xa9\xda\xa8\x49\x67\xe1\x99\x5b\xc1\
\x35\xdf\xf5\x8d\x4d\x98\x99\xf5\xc1\xdd\x26\xac\x18\x6c\xcc\xb7\
\x47\x17\xc1\x33\xa6\x36\xf2\x2b\xf8\x22\x4e\x95\xe4\x48\x97\x1f\
\xea\xc6\xa2\x90\x35\x32\x42\x19\x0a\x62\x67\x1d\x9f\x98\x2a\x8f\
\x9e\x88\x92\x87\x6f\x87\xc3\x79\x2f\x47\x7f\xcb\xe2\x5b\x12\x28\
\xbe\xc1\x9d\x27\xd0\x88\xa3\xa1\xd2\x91\x91\x8b\x4d\x7e\xe8\x9d\
\x5d\x84\xdd\xbd\x3d\x25\x1d\x42\x9e\xea\x7e\xf1\xd8\x07\xde\xa9\
\x8c\x64\x09\x25\xe0\xa3\x8e\x45\x98\xf1\x2c\xc1\xc2\xe2\xb2\xc9\
\x48\x7f\x0c\x2e\x88\x30\x35\x51\xb8\x33\x34\x97\x17\xaf\x60\x7e\
\xc4\x8a\xbf\xaa\xd1\x0f\x41\xac\x97\xe4\xf2\x26\x0c\xa5\xf4\x25\
\x1c\x59\x7c\xdf\x69\xf3\x38\x94\x99\x5f\xea\x74\xaa\xf8\x46\x67\
\x32\xe6\xd4\xec\x72\x43\x12\xce\x0b\xf1\xc5\x86\x7b\x09\x3b\x1a\
\x4d\xd7\x88\x8b\x86\xf8\x57\xe1\xf5\xb7\xb4\xeb\x49\x38\x27\x4f\
\xb5\x91\x73\x75\x09\x2d\x2c\xc5\x25\xd6\x69\x69\xaa\xab\xa7\x1d\
\x83\xc6\x78\x36\x4f\x7c\x29\x1f\x2f\x63\x75\xd1\x1a\x6f\x67\xb7\
\xcd\x18\xd0\x84\x77\x56\x6b\xbf\xb4\x24\x54\xd3\x15\xd3\x06\x3b\
\xad\xe3\xc9\x34\xc4\xad\x67\x6a\x62\xf0\x99\x74\x8f\xc2\xdf\x19\
\x95\x45\x6d\x0f\x6e\x49\xc2\xf3\x72\x48\x56\xbf\x56\x46\x39\x18\
\xee\x4f\x18\x22\x51\x98\xcf\xfb\xd1\x0a\x73\x8c\xaf\x00\x62\x39\
\x6e\x3b\xab\x4d\xf3\xef\xa2\x15\x79\xc9\xbc\x9f\x80\x4f\x1f\x93\
\x95\xb6\xa9\x2d\x91\x28\x75\xd0\x14\x83\x56\x57\xca\x91\x1f\x25\
\x83\x44\x16\xdf\x60\x38\xae\x08\xfb\xad\x41\xab\xfd\x35\xb5\xc5\
\xcc\x67\xde\xc0\x01\x3a\xb8\x10\x87\xaf\x24\xc3\xe3\x12\xf6\x3b\
\xb9\x5e\xde\x95\x66\x60\x1f\x48\xe2\x9b\x48\x26\xa1\xb6\xdb\xd0\
\x9b\xde\x25\xdd\x78\x1a\x5c\x86\x3b\x2d\x31\xf8\x97\x11\x9e\x38\
\x53\x17\x86\x7b\x03\x33\x5a\xda\xf3\x52\xbf\x9b\x5f\xf4\xa2\x41\
\x89\x46\x80\x2b\x02\x81\x50\x18\xd2\x99\x55\xd8\xc9\x3e\x31\xeb\
\x81\xd8\x59\x5a\xb5\xac\xde\x9a\x08\x34\x2e\x06\xb5\xeb\x69\xf7\
\x4b\x18\x9c\xad\xf9\x33\x73\x41\xe1\x0d\x37\x84\xc4\x66\x76\xd6\
\x0b\x3d\x2e\x0f\x24\x17\x32\xf0\xa6\x14\xe9\xbf\x1a\x83\x30\xb4\
\x9c\x80\x85\x40\x1a\x16\x82\x99\x13\x59\x8a\xe5\xbf\x2c\x15\x2a\
\x8d\xc8\x4a\xa3\x2a\xb0\x86\x4b\x50\xf8\xb8\x4b\x2d\x88\x9b\xae\
\x84\x11\x8f\x1a\x4e\x16\xdf\xb3\xf5\x51\xc5\xea\x94\xf9\x50\x34\
\x04\x6c\x04\xb3\xcb\x19\x78\xdb\x78\x46\xa3\x1a\x1b\x7d\xa7\x07\
\xe6\xfd\x41\x47\xe1\xcd\xe5\x9e\xc2\x6d\xb3\x53\xc6\xe1\xce\x00\
\x8a\x93\xf2\x3c\x76\x2a\x49\xc4\x74\x24\x91\x43\xaa\x6a\x12\x9a\
\xf0\x09\x11\x7c\xe8\xb7\xde\xe5\x38\xbb\x05\x5f\x98\x82\x18\x83\
\x7b\x93\x41\x38\x3e\xcc\xc2\x2f\xc6\xb2\xcf\x85\xb6\x35\x14\x11\
\x2b\x2e\x67\x2b\x48\xb6\x78\xd4\x4e\x33\xd6\x6f\x5d\x7f\x95\xe8\
\xeb\xb4\xd8\x98\x43\x99\xa2\x03\xe0\x35\xf7\x33\x08\xb8\xe3\x5a\
\x3d\xc8\x1d\xd0\xac\x13\x84\xea\x4e\xbe\x47\x61\xeb\x17\x0c\xf1\
\x45\x81\xfd\x48\x8a\x8f\xea\xeb\xbb\x9e\x39\xcd\x5a\x17\xef\x18\
\x8b\x27\xb4\xce\x66\x67\x69\x48\x12\xdf\xba\x20\x0c\x86\xf4\x4e\
\x29\xc8\x18\xcb\x47\x7a\x19\xee\xc1\x4f\xa7\x5d\x6a\xcb\x23\x5f\
\x7c\x29\xbf\xf3\x1e\x6b\x70\xb6\x43\xf7\x62\x09\x1c\xdc\x1d\xe3\
\x2b\x40\x5b\x44\x8b\x9f\xea\xa0\xf0\x34\x5f\x5f\xee\x7a\xa9\x01\
\x50\x7b\x07\xd5\xaa\x7e\xb0\x94\xd1\xee\x11\x8a\x55\x8f\x42\x74\
\x7c\x7c\x0c\x0f\xa5\x65\xa5\x8f\x7b\x7c\x58\xde\xa2\xec\x63\x70\
\x53\xaa\xfb\x1f\x46\x2d\xc3\x6a\x7f\xff\x40\xab\x13\x12\xcd\x74\
\x32\x03\x23\xa3\x49\xb8\x22\x09\x75\x55\x6d\x14\x6e\xf5\x2e\xc0\
\xcc\xb2\x0f\x76\x76\xf4\x3d\x11\x6a\x83\xc4\x6e\x7a\x1b\x6a\x85\
\x51\x55\x93\x84\x9a\xf0\xa1\x19\xaf\x20\x77\xf4\x14\xee\x9a\x7d\
\x29\x01\x5f\x61\x5c\xbb\x7b\xbb\xb0\x30\xbf\x01\xfd\xbe\x8c\x32\
\x5b\x7e\xd8\x2a\x0f\xdc\x11\xf8\x53\xba\xd7\x3e\xe8\x81\x76\xe9\
\xef\xc1\x69\xaf\x96\x07\x39\x2d\x41\x41\xf1\x3d\x58\xd9\x86\x9e\
\xd0\x01\xec\xed\xed\xc3\x5a\x30\x0d\xd7\x6c\x96\x4e\xb9\x7c\x3c\
\x5e\x40\x54\xb7\xb7\xe0\x03\x29\xdc\xa5\xce\x60\xc1\xcc\x52\x81\
\x8d\x2a\x82\x11\x87\xbf\x70\xb4\xca\x2b\x48\xfc\x5b\x16\xdf\x7f\
\xb7\x44\xa0\x6e\x28\xe6\xc8\x0d\x51\xe0\x28\xbe\xae\x64\x0a\xea\
\xda\xf4\x82\xa5\x11\xf4\xcf\x61\xbd\x23\x53\x83\x39\xc4\xf2\x18\
\x49\xda\xd2\x09\xca\xeb\x43\x31\xb8\x3b\x1d\x82\xde\xee\x08\x9c\
\x37\xaf\x95\xcf\xf7\x38\xfd\xa7\xfc\xd3\xa6\x67\x9b\xb4\xa6\xfa\
\x6e\xfb\x32\x64\xb1\x31\x4c\x0c\x49\x83\x4f\x7d\x0c\x7e\x90\xd6\
\x34\xcb\x15\xdf\x57\xb1\xec\xe3\x04\xe5\x83\xd2\x4e\xcf\x27\x8b\
\xae\x7b\xd3\x66\x91\x93\xf0\x3c\x90\xac\xf9\x77\x3b\xd4\x7b\x64\
\xcd\xe8\x56\x6d\x0e\xf6\xf6\x9f\x58\xd6\xb4\x10\xde\xe8\x0a\x4c\
\x78\xf7\x4c\xef\x0b\xf1\xae\x32\x54\x9f\x8a\x35\x53\x17\xd2\x96\
\xc3\xec\xe1\xac\x32\x54\xc5\xd7\x79\x86\x51\x84\xc1\x90\x34\x65\
\x56\xc5\xd7\xca\x23\xfd\x2c\x86\x5a\x8f\x27\x51\xd5\x11\xd3\xe2\
\x2e\x3e\x03\x8c\xe4\x8b\x2f\x4e\xd1\x65\xe3\x44\x46\x1e\x14\x65\
\xf1\x55\xdb\x18\xce\xf6\x3a\xc5\xfa\xe7\x2a\x7c\x23\xaf\xb9\x6b\
\x56\x60\x0e\x67\x2b\x56\x7a\x57\x7a\xa3\x5a\x7d\xd0\xf5\xe3\x67\
\x5b\xf0\x99\x08\x8b\xfd\xe9\x81\x47\x35\xac\x72\xd9\x67\xd0\x37\
\x8a\xb3\x35\x29\x1f\x54\xef\x9f\xb5\xfb\xa0\x71\x20\x0c\xad\x13\
\x29\x18\xf2\x18\x1b\x71\xd3\xeb\xfa\x9a\x6b\x6f\x4a\x59\x9b\xd5\
\xa8\x4d\x81\x6b\x5f\xae\x83\x1c\x2c\xe2\xac\x5e\xdc\xa7\x25\xb4\
\xc5\x95\x14\x1c\x44\xd6\xcd\x7a\xbb\xda\x9f\x82\x08\x0a\x7f\xca\
\x9f\x82\x8f\x4d\x2d\x8c\xc3\x8f\x83\xf3\x38\x20\xe0\xa0\x80\x03\
\x42\xff\x60\x12\xde\xc2\x7b\x37\xdd\x69\x6d\x90\xa0\xc1\x62\x03\
\xdb\xaa\x95\x8e\x8a\xa3\xf8\xe6\xb2\x3b\x70\xc3\x68\x6c\xd7\xdd\
\x4f\xb4\xa9\x6e\x53\x7b\x4c\x1f\x39\x30\x72\xfb\xb4\xbc\x14\xd4\
\x0d\x0c\x0b\xf2\x4a\x90\x1b\x87\x98\x6a\xd8\xc3\x11\x74\x5d\xdd\
\xe4\x89\x42\x73\x5c\xdd\x40\x12\xe1\x4e\xb3\xec\x10\xc2\x46\xb0\
\xb8\x18\x86\xbb\x9d\x4b\x30\x89\x9d\x9c\x46\x50\x8a\x6b\x2f\xbe\
\x01\x9f\xd2\x28\x5b\x9f\x84\xfe\x35\xe1\x2d\x90\x83\xc7\xca\x8e\
\xa7\x3e\x10\x90\x98\x98\x0d\xb1\x1e\xa7\x40\x5d\x3e\x93\x5f\x9a\
\xc4\x88\x89\x16\x35\x36\x18\xf3\x5e\xab\x35\x35\xbb\x3e\xa2\x8f\
\xf6\x41\xb7\xba\xfc\x71\xde\x98\xee\x9f\x35\x2b\x3e\x01\x37\x86\
\x96\x95\x65\x87\x2a\xcc\xa3\x98\xfa\x0b\xe8\x99\x33\xc6\x7d\xa2\
\xa0\xf8\xa2\xf5\xd7\xec\x24\x1c\x25\xb1\xa8\x88\x93\x10\xdf\xc8\
\x09\x9b\x24\x57\x3b\xe3\x79\x3b\xd7\xd4\x79\xe4\xe9\xed\x5b\xed\
\x18\x46\x74\x28\x83\x61\x84\xbc\x11\xe8\x1d\x7a\xa9\x23\xe3\xac\
\xe0\xd6\xe3\x19\xad\xec\x69\x69\x8c\x9e\x3b\xd7\xba\x06\x83\xe9\
\xe7\xf0\x62\x75\x0b\x07\x28\x51\x1e\x6b\x30\x29\xda\x87\x4d\x7c\
\x8b\xbb\x0a\xa9\xe2\xeb\x3c\xc8\x39\x43\xe1\x52\x4b\x49\xa9\x2d\
\xaa\xe2\xfb\x24\x95\xd5\xdf\xaf\x04\x6a\x47\xa6\xb5\xf2\x2e\xb4\
\xd4\x24\x4f\xf1\xcd\x01\x30\x96\x81\x87\xda\x74\x3d\x2c\x59\xc0\
\xd8\xfe\x3a\x68\x39\xd0\x0b\x49\xcc\x9f\x22\xbe\x2d\x41\x65\xb0\
\x93\x91\x07\xc5\xc2\xe2\x5b\x04\x43\x7c\x87\xe5\x76\xd7\x16\x35\
\x37\x69\xe5\xfd\x13\x6d\xf3\x1a\x05\x4c\x2e\xe7\xe2\x56\x7c\x09\
\xa0\x50\x5f\x6b\xf7\xc2\xe0\xec\x22\xe4\x8c\x38\x35\x70\x86\x69\
\x89\x3e\xce\xea\x6b\x69\x09\x0d\xfb\x9a\x79\x2d\x01\xdf\x0e\x51\
\xbf\xdc\x85\x5a\x69\x4d\xf8\xbd\xf6\x45\x48\x60\x1e\x69\xf0\x58\
\xf5\x48\x2b\x03\xd8\x56\x46\xb3\xf6\x01\x3c\x9f\x3c\xf1\xa5\x04\
\x1e\xd8\x76\x88\xc9\xd3\x61\xc8\x1b\xc2\x4a\x8f\xc2\x4f\x38\x9d\
\x31\xef\x61\xa3\xad\x46\xd3\xba\x73\xd0\x07\xdf\xd6\x25\xe0\xfd\
\xb6\x65\x68\x95\x4c\x6e\x73\x33\x0b\x71\x12\x5f\xfa\x3b\x33\x95\
\x54\x44\xe6\xba\x61\xf9\xc9\xe1\xe4\xf0\xf5\x92\x1b\x92\x18\xb9\
\x9d\xc2\x59\x8d\xce\x5a\x73\xfe\x5e\x9a\xa2\xbf\xdf\xaa\x5f\x13\
\xf7\x1f\x0d\x06\x35\x97\x12\xb2\xf4\x23\xd1\xb8\x56\xa0\x14\xd7\
\xa6\x7f\x4d\xd9\x88\x7a\xa3\x31\x03\x33\x07\x98\xc6\xb3\x6d\xf8\
\x4a\xbe\x6e\x88\xef\xf1\xf1\xb6\xd5\x10\x9b\x43\x30\x31\x1f\x31\
\x88\xc2\x5d\x51\x1e\xd5\x11\xa8\x9e\x09\x9a\xf7\x46\xfa\xad\x69\
\x8c\x10\x5f\xef\x64\xac\xe8\x06\xc3\x85\x16\x3f\xac\xe0\xe0\x70\
\xda\x0d\x37\x42\x11\x5f\x1a\x7c\x72\xc7\xb0\xe9\xb8\x43\x5f\x0c\
\xda\xbd\x97\x3d\x19\x2c\x71\xea\xef\xd5\xe3\x3f\xdb\xb2\x6c\x13\
\xe8\x38\xdc\x1a\x98\x82\xb9\x7e\x69\x3d\xb0\x4c\xa8\x3d\x51\xfd\
\x84\x66\xe3\xf0\xf7\xc8\x1c\xac\x24\xd3\xb0\xb9\xbc\xaa\x2c\x8d\
\x55\xb5\xa5\x20\x89\x83\xfb\x15\xf3\x5a\x0c\xdb\x8b\xd1\x3e\x5e\
\x42\x7c\x9d\x06\xb9\x42\x50\xb8\xcb\x38\x70\x5a\x6d\x5c\x15\xdf\
\x52\x3c\x1d\x04\x62\xa3\x51\xde\x14\x12\x7b\x1e\xf6\xfa\x14\x75\
\x60\x4e\xd7\x57\xd3\x92\x40\x62\x5b\x5d\x5e\xd3\xae\x53\x7c\x2f\
\xbb\xec\x50\xae\xf8\x46\x5d\x52\x79\xd4\x45\x61\x11\xeb\x84\xe2\
\x99\x94\x67\x75\x8d\x01\x73\x7f\x88\xa0\xe7\x56\x52\x29\x69\xf3\
\xb7\x0c\x48\x74\xdb\x7c\xd0\x39\xbd\x60\xcc\x64\x55\xcd\xc8\x66\
\x37\xe0\xa6\x54\xbf\x76\x68\xaf\x85\x2c\x61\xff\x84\xe5\x3a\x7a\
\xb6\xc9\x0f\xd3\xa1\xb0\x69\xb5\xaf\xe0\xac\xf9\x41\xb3\x55\x8e\
\x67\xba\xd7\x4f\xf4\x35\x77\xb4\x7c\xa7\x26\x02\x28\xa6\x6a\x06\
\xbe\x9c\xda\x05\xaf\x3f\x08\x8b\xf2\x5a\x19\x0a\x71\x3a\x93\x56\
\xdc\x79\xce\xb6\xa2\x75\x18\x5a\xd5\x4c\x71\xcb\xff\xb5\xb0\xf8\
\x26\x26\xe4\xc6\x97\x80\x9f\x71\xea\x50\xd8\x67\x38\xab\x6e\x7c\
\xd4\x85\x61\x4a\xba\x6f\xfa\x42\x66\x36\xe1\xbb\xc6\x24\x5c\x46\
\x41\x90\x11\x1b\x47\xc4\xbf\x70\xea\xa2\xde\x47\xeb\x84\x9c\xcf\
\x33\x62\xc4\x3a\xb6\x6d\x9e\x21\x58\x89\x37\x70\xa0\xa1\x69\xe0\
\xca\x94\x7d\x07\x54\x2c\x81\x94\x37\x3d\xb4\x23\xc4\x97\x1a\x09\
\x35\xb4\x2a\x5a\x37\xae\x8d\x2b\xeb\xc4\xfa\x66\x80\x1e\xee\xd5\
\x8a\xef\x0e\xfc\x28\x85\x2d\x8d\x24\xd4\xc5\xe4\xcd\x34\xd1\xf1\
\x8f\xa1\xa6\x4d\xff\x5b\x9f\xcd\xec\xaa\x1b\x6e\xa9\xd3\xad\x35\
\x0a\x84\x65\x47\xfb\x08\x34\xb5\x3b\x5c\xd9\x90\xa6\x83\x48\x75\
\x14\xfe\x74\x2f\x40\x4e\x99\x59\xe1\x60\x6d\xb4\x3b\x55\x7c\xc3\
\x30\x23\xb5\xa3\xf4\xc6\xa1\xed\xd0\xc8\xeb\x59\xf3\xcd\xab\x83\
\x13\x10\x75\x27\x8b\xaf\x68\x2f\xf6\xb8\x84\xf8\x8a\x74\xec\xeb\
\xb2\x54\xfe\xe2\xb9\x57\x2b\xbe\x71\xf8\xa1\x77\xde\x34\xc0\x1e\
\xc9\xeb\xa3\x86\xf8\xa6\xbd\x38\x30\x99\xe1\x63\xd0\xb5\x45\xf9\
\xd8\x57\x2c\xeb\xf7\x70\x46\xa8\x58\xa7\x08\x79\xe5\x34\x77\x85\
\x35\x8f\x05\x75\xe3\xcd\x03\x35\x9d\x61\x78\x5f\x5e\x8e\x20\xb0\
\xbf\x7e\xd1\xe1\x85\xbe\x29\x2f\xd4\x75\xac\xc0\x37\xee\xa7\xb0\
\x67\xe6\x59\xa5\xb9\x43\x2f\x83\x33\x35\x71\xf8\x77\x8d\x54\x1e\
\xd8\x8e\x1e\x4c\x2d\x83\xd7\x9d\xb6\x36\xf6\xf0\xda\xbd\x31\x9f\
\xa5\x53\x71\x9c\xbd\xe0\x6c\xac\x66\x20\x2e\x0d\xf4\x38\x30\xce\
\xe4\xef\x13\xc9\x38\x8a\x2f\xad\xa9\xb9\xdd\x5e\xec\xfc\x7a\x26\
\x2e\x34\xfb\xc1\x6f\x6c\x40\xc8\x15\x7c\xbe\x2b\x86\x96\xe2\x1e\
\x8c\x63\x46\x4c\xb7\x34\x14\x8b\xfb\x4b\x4f\xb5\xb0\x72\x23\x29\
\x24\xbe\xea\x1a\xee\xcb\x41\xbe\x90\x14\xe7\xba\x2f\xad\x14\x42\
\xe9\xe8\x87\x24\x72\x07\x7b\xd0\xf3\x38\xdf\x7d\xe9\xa7\x7e\x8f\
\x56\x36\x2f\x5e\x3c\x55\x0e\x1f\xe8\xbc\x5a\xf1\x25\x5c\x93\x73\
\x30\x3d\xb7\x00\x73\x53\x61\xf8\xdc\x1c\x38\x12\xf0\xf5\xe3\x65\
\x38\x36\xca\xf2\xb4\xde\x0e\x84\xec\x6d\x42\xd3\x4a\xca\xfb\x97\
\x52\xd8\xd2\xd0\x37\x58\x68\x2d\x56\xc4\x45\xf1\xe6\x72\x47\xd0\
\xd5\x17\x83\x77\xb1\x21\xff\xe2\xa6\x0d\x30\x07\xf1\x9d\x8f\xc1\
\x3d\x9c\x7d\xc8\x4b\x33\x79\x74\x06\xe0\x97\xf6\xa0\x41\x00\xee\
\x6a\xd7\xfd\xd0\x32\x6d\x89\xcb\xc1\xd6\xb6\xcd\x22\x4a\xc0\x57\
\x3d\x0b\xfa\xda\x70\x29\xe2\x9b\x47\xd2\x36\xa3\x7a\x7d\xe2\x3b\
\x31\x62\x6d\x38\xca\x6b\xaa\xe4\x81\xf1\xb9\x71\x5d\xdd\x68\x3c\
\x80\xff\x48\xc6\xce\x0f\xe3\xfa\xba\x28\x51\x48\x7c\x75\x54\x81\
\xfc\x75\x6a\x13\x6a\xc7\xb6\x21\x8a\x61\x02\x93\xf9\x9b\x9e\xc5\
\xd0\xf3\x22\x2f\xf7\xa9\x71\xdf\x9b\x8d\xe9\x1b\x63\x48\x5f\x8f\
\x24\x64\x9a\xf8\xd2\x7b\x3f\x85\x1b\xd2\xbb\x7e\xe7\x5a\x87\xdc\
\xfa\x26\x7c\x28\xc2\x51\xfe\x5c\xb4\xf7\x23\xe7\x5f\x2f\xaf\x70\
\x34\xa6\x6d\xce\xd1\xcf\x74\x72\x55\xdb\x78\xfb\xc8\x26\xba\x67\
\x6a\xa3\x70\xbd\x7b\x11\x46\x67\xd0\xd2\x0d\xad\x28\xa2\xfe\xf9\
\x58\xfe\xe9\x47\x8a\xd7\x17\x08\x69\x6d\xd7\xed\x5e\x86\x5f\x24\
\x43\xe2\x5a\xd7\x02\x6c\x79\xd3\x70\xd9\xf8\xbb\x2c\x50\x0b\xbb\
\x0a\x9c\xa2\x23\x0a\x6e\xb8\x51\xc3\x9d\x9e\xf1\xc1\xed\xd6\x20\
\x0c\x85\x63\x90\x8c\xe8\xeb\x4e\xff\x69\xb5\x0a\x93\xd6\xe3\x06\
\x3d\x5b\xd0\x8e\xa3\xc2\x83\x9e\x30\x7c\x81\x0d\xf4\xed\x96\x90\
\xf6\x37\x5d\xbf\x29\xad\xdd\xbd\xdd\xa5\x2f\x86\xcb\xc7\x6f\xe9\
\xa5\x7b\x7a\xac\x30\x2f\x8b\xb0\x86\xd2\xc1\x34\xfc\xd8\xa2\x6e\
\x16\x08\xe4\x06\x94\x07\xe6\xbd\x09\x2d\x6f\x27\x1f\xdf\xfb\x38\
\xb5\xd5\x85\x97\xf2\xbe\x0b\xbf\xe4\x4d\x7f\x84\xf8\xfe\x03\x8f\
\x8d\x51\xbf\xf5\x71\x00\xbe\x97\x7d\xa5\x91\x0b\xcd\x3e\x65\x37\
\x54\x0b\xd7\x17\xc2\x06\x14\x85\xdb\xfd\x0b\x30\xe3\xd3\xc5\xd7\
\x2a\xa3\x7d\xa8\x35\x2c\x48\x82\x36\x03\x68\x0d\x5e\xdc\x97\xc5\
\x37\xbf\xc3\x11\xea\x60\x20\x5b\x2c\x6a\x3a\xf4\xfb\x33\xf8\x1d\
\xcb\x41\xee\x68\x76\x3e\xae\x53\xdf\x87\xac\x80\xc6\xe0\x9a\x32\
\x95\xa3\xb8\x88\x50\x24\x0a\xee\xc9\x79\x58\x59\xa5\x41\xd1\x26\
\xbe\xf1\x43\xf0\x44\x56\x8d\x5d\xee\x22\xc8\x56\x59\x23\xb6\x37\
\xe3\xba\xf0\x46\xa0\xfd\x89\x5f\x6d\x75\x71\xb1\x75\x19\x42\x38\
\x73\xd0\xde\x29\x7d\x1a\xf1\xd5\xc3\x89\xf7\xb1\x8b\x6f\x31\xbf\
\x71\x27\x3a\x7b\xc3\x52\xe7\x55\xc5\xd7\xda\x70\x0c\x29\x82\xf4\
\x6e\xfb\xa2\xb1\xd6\xea\x85\xa9\x79\x79\xa3\x51\x2e\x47\x75\x30\
\x15\xcb\x3c\x84\xd9\x16\xe8\x10\x0b\x5a\x66\x3d\x13\x19\xc9\xd5\
\xcc\x00\xcb\x73\x0a\xfb\x75\x2b\x4e\xa7\xeb\x86\xe3\x8e\x1b\xd2\
\x8e\x60\xd8\xee\xe9\x35\x18\xf2\xed\x1a\xa7\xbf\x6c\x96\xef\x30\
\xf6\x75\x63\x7d\xfe\x4f\x79\x99\x50\x88\xef\x8b\x1c\xfc\x2d\x19\
\x66\x55\xa8\x23\x2e\x79\xf9\xa5\x36\x0c\x03\x38\xcd\xd7\xf2\xaf\
\xd4\x83\x5e\x66\x47\x7b\xbb\x30\xee\xb2\x6d\xbc\xe1\x80\xfb\xef\
\x86\x30\xdc\xa1\x3e\x84\xe5\x46\xe5\x4a\x61\xb3\xd9\x2c\x34\x77\
\xc6\x94\x4d\xf0\x77\x06\xb7\x1d\x05\xd8\x7e\x2a\x95\x96\x1b\x66\
\xb1\x0d\xaf\x6f\xac\x2a\x75\x53\x0e\x67\xda\x57\x21\x65\x4b\x4b\
\x50\x50\x7c\x09\x5a\xff\x0c\x85\xf5\xdd\xc8\x72\x1c\xa9\x8b\xf1\
\xf3\xac\x75\x34\x96\x5e\xb8\x77\x00\x2d\x39\x87\x4e\x5e\x12\x4d\
\x31\x65\x27\x53\x88\x6f\x16\xa7\xa2\x64\x7d\x51\xdc\x37\x3a\x4b\
\xe3\xce\x48\x04\x16\x86\x13\x8a\xcf\x20\x71\xa6\x01\x05\x79\x6a\
\x11\x84\xfb\x8a\x9e\xef\x17\x86\x20\xc6\xe1\x1d\xb3\x53\xa2\x05\
\x38\x9f\x81\x68\x64\x07\xaa\x07\x92\xf0\x49\x41\x4b\x29\x61\xee\
\x86\xca\x3b\xa4\x74\xaf\xaa\x39\x01\x73\x5b\xb2\x3b\x5e\x4e\xf5\
\xad\x96\x96\x1b\x44\x98\x97\x11\x5f\x3b\x74\x5d\xde\x60\x91\x99\
\x9e\x0c\xc2\x6d\xcc\x9f\x3c\x1b\xb8\xd8\x18\x84\x3a\xd7\xac\x56\
\xde\x85\xe2\xdb\xc3\x8e\x42\xa7\xc3\x7c\x81\x0d\xf8\xca\x56\x26\
\x17\xfa\x57\xb5\x33\xf2\x79\xa7\x82\x4c\xb0\xd1\x4b\x6e\x49\x6f\
\xe0\x94\xf0\x67\x6d\x17\x7d\x1d\x5c\x38\x55\x3d\xdc\xde\xce\x13\
\x5e\xe2\x4a\x77\x50\x6b\xb3\x5a\x3e\x4a\x11\x5f\xb4\x50\x2c\x87\
\x7c\x22\xac\x6d\xcc\x59\xef\xa2\x8a\xef\x95\x9e\x90\x69\xd9\x95\
\x42\x78\x36\x51\x70\xc3\x8d\xf2\xa2\x09\x12\x5a\xe8\xf2\x54\xfc\
\xee\x68\x14\xda\x47\x32\xf0\x3e\xa6\x7b\xd5\x45\x33\x49\x11\xfe\
\xa9\x74\xc2\x14\xdb\xdc\xa2\x25\xbe\x4e\x87\x2f\xf6\x17\x32\xe6\
\xb5\x3c\x1a\x22\xf0\xf0\x65\x8c\x9f\xe6\x94\xb1\x56\xae\xb6\xb1\
\x82\x98\x96\x6f\x0e\x66\x06\xa5\xb6\x84\xe5\x7f\x51\x12\xb7\xb7\
\xda\x69\x16\x66\x6f\xa3\xc6\x77\x46\xd0\x88\x93\xfb\x7c\x15\xf9\
\x68\xb7\x06\xe0\xd1\xc0\x02\x8c\xcc\x04\x61\x29\xbc\x86\x6d\x4d\
\x17\x7e\x8d\xe9\x75\xf8\x1e\xc5\x5d\x39\xd4\x84\x38\x09\xf0\x06\
\x1a\x4f\xe6\x9e\x81\xb6\xdc\xb0\x64\x1a\x15\xb5\x6d\x09\x38\x8b\
\x6d\xe3\x72\xad\x35\xc0\x55\xa1\x36\xdc\xef\x59\x86\x07\xd2\xd2\
\x8a\x36\xfb\x1c\x09\xc0\x27\xd8\xa7\xcf\xd4\x61\xf9\x8e\xd3\xbb\
\xa8\xe9\x08\x8a\x8a\xef\x71\x6c\x0b\x9a\xbc\xbb\xda\x71\xc8\x72\
\xd7\x16\x0b\x61\xb7\xbc\xfc\xc1\x30\xcc\x3b\x74\xf6\x52\x98\x1b\
\x8b\x28\x9b\x52\xb2\xf8\x50\xe7\x6b\xe9\x54\xd3\x2e\xc6\x07\x83\
\x69\xcd\x4d\xc9\x5a\x53\x4e\xc0\xd5\xb6\x65\x18\x5d\xf4\x69\x3e\
\xbe\xc7\xfb\x47\xe6\xb1\x50\x4a\x83\x8e\x46\x9f\x6d\xf1\xc2\x43\
\x73\x04\x8f\xc3\x1f\xc3\x28\x48\x52\x9c\x44\x55\x75\x0c\xbe\xee\
\xf2\x40\x7b\x77\xc4\x3a\x58\x81\x15\xd8\xed\xdd\x80\x1f\x6c\x16\
\xf6\xbf\xea\xa3\x30\x98\x12\xa7\xb7\xb0\x6c\x66\x54\xdf\xea\x73\
\x0d\xfa\xb7\x21\xbe\x6b\x4d\xc1\xbb\x8d\x49\xb8\xbb\x74\xac\xd4\
\x4b\x39\xde\x0e\x7a\x1a\xf9\xe8\x9d\x43\x25\xb9\xbc\x06\x1f\x48\
\xeb\xe5\xb4\x96\x76\xbd\x67\x1e\xe6\x97\xf5\xb2\x71\x8a\x87\x4e\
\x9e\xd1\xf7\x41\xe4\xb4\xed\x90\xab\x99\xf5\xbd\x87\x72\xa0\x6f\
\x13\xe4\xe0\x09\x0a\x8b\xb2\x34\x64\xa0\x0c\x42\xa5\x88\x6f\x5d\
\x08\xba\x25\x87\x7c\x42\x2d\x23\x55\x7c\xcf\x37\x25\xb4\xc1\xe1\
\xde\xd0\xc9\x50\xb8\x5b\xd8\x0e\x2d\xc1\x50\xc5\x57\x30\xad\xb8\
\x10\x06\xc1\xb3\x92\xb6\x36\x74\x71\xd0\x99\x12\x47\x92\x9f\xab\
\x56\xa6\x3e\xdb\x2a\x2c\xbe\xe1\x29\x14\x36\x33\xbc\xc5\xd9\xba\
\x18\xd6\x61\x00\x85\x23\xff\x5e\xc9\x98\x47\xf2\xcb\x17\xdf\x44\
\x28\x09\x9f\xca\x6b\xf4\x26\x71\xb8\x3d\xee\xd7\xc2\xc8\xe5\x43\
\xcb\x58\x75\xca\x66\xfb\xcb\x73\x69\xc0\x12\x60\xfb\x9e\x01\xcd\
\xe0\xbb\xa6\x33\x50\x4b\x83\xfd\xec\x53\x6d\xbf\x6b\x76\xde\x03\
\xc3\xdd\xd6\x26\x31\x0d\xf2\x69\x9c\x81\xc9\x4b\x2b\x54\xee\xdb\
\x3b\x3b\xd0\x3d\xbc\x04\x2e\x0c\x4f\x83\xaf\xfd\x5d\x04\x05\xc5\
\x97\x1e\x18\x17\x1f\xcc\xa8\x49\xc2\xdb\xad\x3e\x18\x74\xd8\xb1\
\xa6\x75\x92\xde\xbe\xb0\xe6\x11\x40\x96\x50\xc3\xb8\x58\x6b\x54\
\xdd\x8f\xbe\xec\x99\x82\xb1\x89\x49\x6d\xba\x98\xf1\x1a\x3e\x78\
\x2f\x41\x77\x1c\x47\x42\xaf\xea\x4e\x26\x77\x3a\xaa\x64\x73\xcd\
\xb9\x36\x02\xbf\x92\x67\x83\x9d\x8e\xa8\xd9\x30\xe9\x59\x5a\xbf\
\x9e\x1a\xa1\x77\x89\xc1\xcd\xde\x79\x58\xc6\xe9\x2d\x89\xf8\x71\
\x16\x2d\x2c\x9c\xea\x89\xca\xa2\x34\x62\x13\x2b\x70\xdf\xbd\x04\
\x0d\x66\x83\x8f\xc3\xfd\xb9\x84\x16\x8e\x46\xf2\xb7\x68\x0a\xf4\
\x78\x01\x86\xc6\xbc\xf0\x08\x2d\x6b\xea\x7c\x67\xf0\xba\xc8\xab\
\x0a\x8a\x59\xef\x1c\x4e\x2f\x3d\x96\x15\x69\xfb\x98\x4e\x3e\x09\
\xb8\xb7\xb0\x5a\xf6\xa0\x68\x89\xaf\xfc\x95\xb1\xc2\x90\x98\xbf\
\x69\xcb\x07\x6d\x4a\xbc\x8d\xef\x59\x70\xc7\xbf\x67\x53\x5b\x4b\
\x54\x3d\x53\xf2\xf9\x00\xc5\x57\x6e\x23\xa5\x83\x02\x86\xe2\x9b\
\x89\xa7\xe0\x13\x87\xfb\xa7\x11\x5f\xdd\xcf\x57\x6f\x37\xe6\xb3\
\x26\xaf\x67\xcd\x57\x40\x4b\x09\xf7\xa4\x41\xe8\xc3\x6e\xaf\xd6\
\x16\xab\xa5\x25\xbe\x9b\xb3\xcf\xb4\xb0\xc7\x28\x12\xd6\x12\x46\
\x04\xba\x8d\x25\x28\xca\xb3\x5c\xde\x54\x06\x74\x5d\xb8\x5c\xd2\
\xc6\xad\x35\x10\xc6\xe1\x37\xd7\x32\x44\xe3\x09\xe8\xc7\xf6\x7e\
\xbf\x3b\x00\xbf\x75\x04\xe0\x9e\xf0\x0c\x42\xee\x75\x44\x2c\xd1\
\xa6\xfe\x23\xdd\x13\x90\x87\x50\x36\x4f\x7c\x55\x37\x4a\xcb\xbd\
\x12\x31\xc4\x57\xcf\xef\x31\xfc\xdd\x92\xdf\x1f\x68\xaa\xef\x2b\
\x20\x58\x8f\xbb\xa5\xb8\xca\x84\xac\x56\x7d\x56\x23\x97\xc3\x0a\
\x7c\x3a\xa9\x9f\xc6\x54\x06\x3f\x1b\x57\x1e\xeb\xde\x4f\xb4\xcf\
\x62\x5f\x57\xa7\xeb\xf6\x6b\x14\x9f\xb6\x44\x84\x3f\x9d\xde\x43\
\x50\x44\x7c\x8f\xe0\x2f\x69\xca\xf7\x7e\x7f\x02\x13\xda\x91\xdc\
\xab\xf4\x46\x94\xc3\x4e\xfc\x48\x9e\x1a\xd6\xa6\xa0\x41\xfb\x0c\
\xa5\xda\x60\x6f\xba\xf5\x53\x2f\x94\xd9\x49\x9c\x6a\x9b\xe1\x4f\
\x09\x89\x88\xdd\x97\xf7\xcb\x41\xcb\x4d\x4d\x11\x5f\x1c\xe5\xab\
\x1d\x8e\x4b\xd6\xe3\x3b\xc9\xe2\x4b\xcf\xd1\x48\xe5\x9a\x9c\xd5\
\x7e\x52\x5e\x73\xd9\x2c\xfc\x2e\x75\x0c\x12\xe0\x4d\x4c\x83\x06\
\x11\x2a\x60\xcb\xda\xd0\x37\x9e\xe6\xe6\xfc\x30\x30\x31\x03\x6e\
\x17\x36\x6a\xbc\x27\xbe\xa6\x74\xb1\x29\x00\x6d\xfd\x61\xdb\x09\
\x38\x6c\x6c\xc6\xef\xdf\x0c\xc7\xcc\x4d\x34\x82\x44\xb8\xde\x38\
\xf0\xe1\x08\x0e\x10\x1d\xe9\x7f\x4e\x2d\xbe\xd4\xe1\x4f\x67\x75\
\x96\x80\x66\x11\xe5\xa0\xbb\xcb\x6a\x94\x67\x6a\x70\x00\x92\xda\
\xce\x4f\xfd\x53\x10\x0c\x45\xa0\x7f\xd8\x03\x8f\xda\xe8\x88\x28\
\xb9\x2a\x2e\xe5\xad\x87\x77\x74\xe6\xbb\x36\xd2\x75\x9a\x85\xd0\
\x3b\xd0\x4c\xa5\x0a\x2d\xc5\x9b\xd2\x26\xd4\x69\xc4\xb7\x1c\x57\
\xb3\x97\xc3\x41\x7c\xe3\xeb\x52\xbb\x88\xc1\xc3\x45\x3d\xff\xcb\
\x23\x71\xcb\x62\xc6\x3e\x46\x6b\x87\xc1\x71\x35\xdf\x41\x11\x87\
\xdc\xde\x11\x72\x41\xa3\xeb\xe9\xd8\x2a\x74\x8c\xcc\x81\x7b\x36\
\xa8\x08\xa4\xf0\x76\x58\xdf\xd8\x80\xb8\x07\xfb\x37\x5d\xc7\xfa\
\x79\xab\x2f\x95\xbf\x54\x52\x8f\xf5\xe4\x70\x92\x35\xb6\x2a\xf6\
\x1e\x64\xf1\x8d\xc1\x1d\xb7\xdf\x58\xb3\x8f\x40\x57\x97\x2a\xbe\
\x47\x7b\xff\x68\x9e\x24\x94\xb6\x77\x22\x6e\x5b\x87\x4e\xc0\xf7\
\xfd\xf3\xda\x3d\x51\x36\x02\xba\xe6\x9b\x8c\xc1\xb5\x06\x63\xc9\
\x51\x7c\xa3\x81\x06\x02\xc3\xeb\xa1\x73\x38\x00\x9f\x9a\x71\x59\
\xc6\xa1\xb6\x91\x36\xbe\x08\x03\x73\x4b\x68\xbd\x2e\x42\xa3\x71\
\x66\xe1\x4a\xeb\x32\xc4\xb1\x9f\x91\x48\x16\x9a\x21\x10\xa2\x3d\
\xd1\x80\x21\x0f\x70\xc2\x2d\xb6\xf8\x46\x67\x61\x8a\x88\x6f\x16\
\xbe\x37\x2d\x9e\x38\xdc\x9d\x4d\xc1\xf6\xe6\x1a\x7c\x6e\x24\x22\
\x1a\x32\xb9\x7f\x4c\x4d\x2f\xc1\xdf\xd8\x81\x68\x44\xa9\xaa\x8b\
\xc2\x40\x62\x0b\x9f\xdf\x55\x1a\xac\xd5\xe9\xd5\xcc\x9e\x16\xf2\
\x0a\xb0\x9f\xa0\x12\x9e\x02\x7a\xfe\xd5\xc6\x78\x12\x56\x01\x8b\
\xe7\xf1\x77\x14\xde\x3b\x52\xa7\x26\xde\x6c\x8f\x6a\xe2\x2b\xc2\
\xca\xe2\xfb\x17\x8a\x6f\xdf\x30\x5a\x63\x72\x47\xc5\x29\xfa\xe7\
\x9d\x1e\x70\x4d\x84\x95\x0f\x93\x68\x8d\x63\xd0\x0b\x3f\x88\xb5\
\x28\x9c\xca\x86\x8c\xb2\x17\xf9\x9f\x9b\x88\xc0\xb5\xfa\x28\x7c\
\xd5\x12\x84\x3b\xdd\x3e\x9c\x02\x91\xf0\xcc\xc2\x08\x36\xa6\xc9\
\xe9\x59\x6d\x70\x90\xc5\xb7\x3c\x6f\x07\xd5\x37\xf7\x95\x62\x58\
\x92\x33\x2e\xec\x88\xd8\x31\xba\xc7\xa6\x60\x7a\xd6\x2b\x2d\xe9\
\xe8\x02\x44\xf9\x5f\x46\x31\xb1\xd6\xd9\xa5\xf5\x70\x03\xe5\x18\
\x30\x76\xbc\xc9\x8c\xee\x9f\xaa\xbf\xc3\x0b\x68\x7b\x1c\x81\xf6\
\x59\x4f\x9e\xd5\x47\xf7\xb5\xb2\x7c\x0d\xe2\x7b\xb1\x29\x98\x67\
\x05\x16\x43\xb1\x22\x8d\x77\xb7\xe2\x56\x0f\xeb\x54\x35\xe9\xfe\
\xdb\x5a\x1e\x33\x69\xc9\xff\x34\x01\xb5\xd1\x43\x65\xea\x7d\xae\
\xcd\x6f\xc6\x63\x6f\xef\xa2\x2f\x90\x9f\x2f\xb9\xe3\x1d\xdb\x5d\
\xcd\x8c\x3c\x50\x18\xd9\xdd\xf3\xa3\x01\xdd\x7b\xa2\x94\x43\x4a\
\x24\xe0\x7a\xfa\xb6\xa5\x10\x4f\x06\x32\x5b\xbb\x30\x6d\xdf\x70\
\xd3\xc8\x68\x75\x40\xcf\x45\x67\xd2\xb6\xd3\xa0\x09\xd3\x7b\x43\
\xbc\x97\x40\x2f\x8f\x55\x6d\xe3\xd1\x1f\x8c\x40\x0b\x0e\xec\x97\
\x50\x73\x26\x71\xf6\x23\xda\x4a\x38\x92\x70\x7c\xc7\xe3\xc3\x67\
\x5a\xd9\x9c\x69\xcc\x40\x7b\xfc\x1f\xf0\xfa\x43\x50\xdb\xbb\x0c\
\x7e\xb1\x29\x8b\x61\xd6\x37\x70\x46\xdd\x12\xd2\x2c\xfc\x07\x8f\
\x3d\xfa\xe0\x6f\x1c\x6a\xd1\xbd\x77\xa8\xbd\xc9\xb3\xd1\x38\xfc\
\xb1\x90\xd2\x9e\x75\x12\xdf\xb1\xa1\x14\x7c\x37\xba\x05\x8b\x9b\
\x85\xff\x09\x41\x41\xf1\xdd\x09\x64\xac\xe9\x4d\x75\x04\x46\x50\
\x64\xed\x15\x72\xc9\x98\x66\xbe\xd3\x98\x84\x4b\x75\xba\x65\x43\
\xa7\x43\xe8\x6f\xf5\x34\x16\xad\x31\xd1\x34\x55\xf7\xa3\x9d\x9b\
\x8e\x6b\xee\x42\xa6\x3b\x51\xd9\xf8\xa1\x6b\x0e\xc5\x57\xee\x40\
\x88\x5c\x71\xd4\x18\x69\x4a\x75\xaf\x23\x04\x37\x3b\x28\x2d\xb5\
\x13\x50\x07\xa2\x6b\x77\x5b\xc3\xf0\x1d\xde\x97\x5d\x97\x88\xc3\
\xb5\x2d\x9b\x58\xd2\x5a\x9f\x1f\x86\xbc\x96\x0b\x0c\xfd\x54\x2d\
\xdf\x34\x54\x4b\x9e\x09\x17\x1b\x43\x50\x83\x56\xc7\xf0\x50\xc2\
\x3c\x87\x7e\x5e\xf2\x21\xbc\x39\x91\x86\x16\xc3\xbf\x90\xf8\xd4\
\xa5\x6e\x46\x92\xc8\x2c\x2e\xd3\xd9\xf7\xb0\xb6\x7b\x4b\x0d\x6c\
\xdb\xdc\xf8\xcb\xc1\x91\x6d\x2d\xde\x79\xd4\x55\xd7\xe3\xe4\x41\
\xd0\x35\x85\xe5\x68\x58\x92\xc5\x90\x0f\xcb\xc8\xd6\x67\x41\xf0\
\x9d\xe9\xd4\x12\xe5\x9f\x9c\xcf\x69\xe3\x36\x87\x02\xa6\x78\x3b\
\x60\xc7\xa0\x3c\x44\x62\x71\xf8\x53\x72\x4e\x27\xeb\xab\x71\xe5\
\x1f\xed\x1e\x89\xb3\xe2\xed\x40\xbe\xc8\xc7\x7a\xde\x45\x19\x25\
\x53\x69\x6d\xdd\xd9\x69\xbd\x53\x7b\xff\xd7\x20\xbe\xaf\x72\xc3\
\xed\x28\x29\x1f\x02\x41\xf1\xc5\xf6\x21\x96\x6f\x2e\xd9\x36\x89\
\xce\x77\x24\x25\x77\xac\x15\xf8\x6e\x28\x20\x95\xc5\x73\xc5\xa5\
\x2a\xff\xb0\x52\x21\xf1\x3d\x56\x4e\x8d\xbe\xdf\x17\xd7\x3e\xd8\
\x74\xb2\xf8\x8a\x38\x0e\x60\x74\xdc\xc1\x93\xa2\x20\x7a\x1d\xe4\
\xf9\x65\x0b\xf0\x5a\x93\xed\x18\xbf\x80\xde\x27\x77\xf0\x0c\x9a\
\x3a\xad\xba\x3b\xd7\xb1\x01\xde\x03\xe3\xc8\x78\x26\xe5\xf0\x8e\
\xfb\xca\xa9\x34\x82\x4e\xed\x2e\x63\xbb\xa1\x67\xe4\xb8\x7d\x81\
\xa0\xee\xc2\x86\x75\x46\x6d\x37\xbb\xf5\x14\xd2\x1b\xbb\xe0\xf1\
\x3e\xd1\x66\x1d\xf4\xe1\x1d\x73\x26\x52\x13\x86\x41\x63\xc9\x27\
\x5f\x7c\x8f\x24\x6f\x0e\xf5\x2b\x76\x32\x8e\xe2\x4b\x19\x99\x1e\
\x12\x0f\x23\xcd\x61\xed\xb4\xc9\x49\x67\xf5\x4f\x46\xdf\x28\xa1\
\x17\x33\x5d\x89\x4e\x09\x15\xd0\x90\xe2\x23\x9c\x80\xdb\x33\xd6\
\x5a\x11\xfd\x8c\x85\xf1\x1a\x4d\xad\xb1\x41\xff\xee\x8a\xc0\x92\
\xdb\x3a\x35\xf6\x1e\x0a\xaf\x67\x32\x0e\xef\x63\x65\x57\xd5\xc5\
\xa1\x2d\x24\x9e\xcd\xc1\x9a\x6f\x4d\xf9\x68\x07\x21\x84\xd7\x5e\
\x61\xf6\x65\x87\x05\xb4\xd4\x68\xbd\xf7\xde\xc0\x2c\xb8\xdc\x21\
\x78\x88\xf7\xc5\xd2\xc2\x95\xf6\x25\x68\xea\xb0\x2c\xb9\x1b\x38\
\x58\x84\x16\x70\xba\x6d\xfc\x4d\x6b\xc5\x24\x3c\x22\xfe\xbd\x27\
\xe4\xc4\xfd\x14\xa6\x3c\xdb\xd0\xe7\xa6\xb5\xee\x0c\x7c\x81\x9d\
\x52\xfb\x7a\x3e\x5a\x10\x5d\xdb\x2f\xe7\xed\x40\x87\x13\xa8\x2e\
\x64\xa1\x70\x42\xd9\xe8\x30\xac\x4f\xa7\x70\x02\x8a\x93\xd2\x10\
\x50\x5a\xaa\xa5\x6d\x75\x7e\x2a\xcf\xa5\xa5\xb0\xe5\xa7\x8b\x33\
\x85\xdf\x67\xd6\x8d\x67\x70\xa0\x1e\xb4\x89\x2f\x0e\xaa\xfa\x7b\
\xe9\x88\x34\xfe\x9b\xe2\xab\x1d\x79\x46\xab\x8e\x8e\x39\x9f\x04\
\x85\x6b\x1d\x96\xfb\x8d\x2a\xbe\x01\x97\x7a\xc2\xb3\x64\x6a\x22\
\xd0\x19\xb5\x2c\x37\x9a\x69\xca\x9e\x1f\x37\x5c\x76\x57\x2d\x67\
\xf1\xa5\xbd\x05\x6b\x86\xab\xf3\xdb\xe2\x01\x24\x64\xf1\x75\x5c\
\xf3\xf5\x41\x68\x57\x4f\x57\x5e\xaf\x3e\x89\xaa\xea\x30\xb8\x1c\
\x0c\x1b\x85\x1a\x14\x2c\xb4\x50\xad\xbc\xeb\xec\xc5\x37\xe1\x5b\
\xdb\x6c\xad\xaa\x29\x0e\xf3\xc6\x51\x5e\x27\xf1\xa5\x25\x05\xf7\
\x78\x08\x3e\xb3\x0d\x64\x97\xba\x37\x60\xe1\x89\x88\x7b\x17\x67\
\xac\xd8\xbf\x8c\x0f\xb0\xbf\xdb\xa0\x1a\x75\xc4\x58\x76\x07\x7e\
\x90\xda\xc0\xd9\x16\xbf\x36\x48\x51\xba\xf9\xe2\x2b\xbb\x03\x46\
\xa1\x13\xdf\xd7\xfe\x2e\x44\x01\xf1\x3d\x52\xd6\x71\x3f\xe8\xd3\
\xa7\x30\xa1\x29\xcb\x2d\x4c\xf1\x8f\x35\x50\xaf\xc7\x94\x4f\xd8\
\xbd\xd7\x84\xd7\x5a\xb0\xe0\x51\x30\x28\xae\x93\x79\x0e\x63\x38\
\xa2\x3a\x6d\xb6\x69\xf4\xa6\x6c\x6e\x61\x31\xa8\x0d\x5a\x8e\xdf\
\x34\x42\xca\xfe\xb1\x1f\x0f\x65\x20\xb1\x88\xc2\x65\xfc\x7d\xb5\
\x2f\x02\x0b\xe3\x2b\x96\x07\x42\x7d\x1a\xba\x56\x0e\x60\xce\x95\
\x56\x5c\x59\x88\x8b\xcd\x7e\x70\xd9\x84\x57\x2f\x27\xfb\xb2\x03\
\x89\xcf\x1a\xb8\xc6\x42\xf0\x00\xad\x09\x2b\x1e\xfd\xd3\x92\x1e\
\x5f\x40\x39\x54\x42\x53\x43\x72\xc5\x52\x36\x1e\x0c\xcb\x6f\x67\
\xbe\x88\x8b\x90\x06\x4e\xbb\xb0\xa1\xa8\x5f\x48\x3b\xd9\xdb\x41\
\x9b\x81\xf4\x6c\x42\x4c\x7a\x87\x62\x1c\xee\x3e\x55\xd6\xbc\x65\
\xeb\xb3\x18\x72\x39\xe9\xe9\x14\xf8\x98\x3a\x42\x96\xeb\xcc\x64\
\x08\xbe\xc2\xb8\x1f\xa0\xd5\x9c\x4c\xe9\xfb\x03\xf4\xaf\xac\xe4\
\x53\x92\x94\x76\xd4\x26\xbe\x04\x85\xb5\x8b\xef\x31\xd6\x85\xf9\
\xdc\x69\x50\xfe\xb3\xc9\xeb\x59\xf3\xa5\x7c\x93\x87\x8d\xdc\xa9\
\x9d\xa0\xcd\xb2\x37\x6d\x56\xe2\x5b\xed\x7e\x18\x19\xb3\xdc\xf4\
\x7e\x6c\x53\x45\xfc\xd6\xa4\x35\xc8\x6a\x69\x1d\x6d\x4b\x4b\x86\
\x56\x1e\xc2\x13\xd2\x87\xfa\x25\xae\xb6\x4a\xdf\x36\x70\x18\x70\
\x63\x51\xfc\xb9\x79\x08\x7b\x36\x8b\x5b\xa0\x9d\x14\xab\x8f\xc2\
\x67\xb2\x9f\x7b\xb3\x0f\x46\x07\xc2\xf0\x99\xdd\xb0\x69\x0e\xc0\
\xef\xf2\xec\xc7\xe0\xba\x3b\x0b\xeb\xe4\xe5\x41\xff\xd8\x00\xa7\
\xf1\xf6\x7e\x79\xbe\x29\x00\x8f\x17\xf5\x99\x28\x11\xf5\xe4\x7f\
\x43\x83\xae\x53\x7e\x27\xdd\x5e\xf8\xa5\x31\xae\x0e\x74\xd8\xe7\
\x69\x19\x82\xc4\xb2\xf8\xfe\x47\x02\x2e\x2b\xf7\x2d\x8f\x0c\x42\
\x16\xdf\xf3\x38\x30\x7b\xe9\x93\x04\x22\x2c\x0e\xec\x62\x5d\xde\
\x8e\xb3\xf8\x1e\xc9\xff\x1a\x45\x5f\xef\xa5\xeb\x05\x2d\xd6\xe5\
\x18\xb4\xd8\x1c\xb1\x6b\x31\x43\xd6\x7a\x4e\x0c\xee\xcf\x46\xb4\
\x0d\x16\xca\xac\x3d\x3d\x27\x28\x5c\x39\xff\xe9\xa2\xaa\x21\x08\
\x3e\x63\x4a\x4e\x6b\xb5\xf7\xa4\x06\x71\x09\xa7\xff\x8f\xc6\x56\
\xe0\x2f\xc9\xf5\x8c\x3a\x28\x7d\xa6\xaf\xad\x33\x5a\xf4\x2b\x64\
\xb4\x28\xef\xf6\xe7\x0b\xaf\xc8\xa3\x22\xbe\x93\x29\xf8\x19\xc5\
\x4e\x89\x83\x2c\x6b\xec\x3c\x1f\xb6\x62\x39\x3e\x4e\x9b\x3e\xbd\
\x5a\xb9\x4e\xe9\xe5\x11\x58\x8c\x6b\x7e\x81\x74\xbd\xaa\x3e\x0c\
\x63\xf1\x24\x04\xa7\xe2\xa7\x3b\x55\x53\x0a\xd2\x47\xed\xed\x1c\
\xa0\x68\x15\x73\x0f\x7b\x03\x07\xd0\x43\x07\x01\x3c\x89\x62\xe2\
\x4b\xd0\x06\x23\x1d\x34\xf8\x03\xc3\x68\xff\x1b\x10\x07\x8e\xb7\
\x6d\xa2\xe4\xf4\x5f\x4b\x08\xb5\x1e\xf4\xba\xcd\x4c\xe6\x5b\x2f\
\x65\xa1\x58\xc3\xaf\x6f\xc3\x8d\xf2\x3e\x8c\xf9\xbd\xd2\x88\xd6\
\x7f\xa7\x4f\xf3\x1b\xd5\xbf\x8f\x32\x0f\xfd\x2e\xb1\x59\x14\x50\
\xbe\x81\x4b\x3e\xa8\x7f\x2f\x04\x94\x43\x15\x2a\x31\x78\xe4\xd5\
\xc5\x97\xbc\x23\x3e\xce\xbb\xaf\xcf\x00\x5e\x3c\xd9\x86\x2f\xcd\
\xf6\x98\x80\xcf\xda\x42\xea\x77\x4c\x4e\xa2\x69\x1d\x16\x31\x8d\
\x8e\xbe\x18\x5c\x6f\x0f\x18\x79\x9f\x83\x21\xcc\x33\x9d\xcc\x24\
\x97\xbd\xce\x4e\x75\xc3\xcd\x33\xaa\x0e\x12\x55\xf5\x21\xe8\x98\
\xf5\x80\xd7\x2b\xcd\x7e\x04\xb5\x71\x70\x3d\xdb\x87\x0d\x14\xfa\
\x2f\x15\xcb\x15\x8d\x99\x76\xea\x97\x11\xa8\x2e\x28\x9a\xea\x20\
\x47\x7e\xfa\xb3\x0b\x5e\xa8\x36\xf6\xa6\xf4\x30\x09\xf8\x79\x76\
\x1b\xef\x3b\x1d\x9a\xd2\xfb\xad\x72\xac\xdf\xe0\x7c\x8b\x57\xfb\
\xa0\x0e\xc5\xab\xd7\x5f\x61\x9d\x92\xd7\xe5\xed\x38\x8a\x6f\x6a\
\x46\x1a\x65\xaa\x23\x30\x6c\xfc\xf7\x06\x91\x98\x9d\x9d\xcd\x35\
\xb8\x59\xac\xd2\xea\xc2\xda\x47\x9b\x29\xac\x3d\xad\x42\x50\xd8\
\x80\xbb\xf0\x0e\xa4\x0c\x9d\x40\xab\x9e\x5a\xc2\x67\xf4\x67\xd7\
\xe3\x19\xf8\xc6\xa8\xac\xb7\xb0\xa0\xfa\xfa\xec\x5e\x03\x09\xb8\
\xe5\xd2\xdd\x44\x68\x8d\xa7\xb1\x3d\x0a\x9f\x74\x2e\x42\x83\xf8\
\x72\x1b\x61\x6c\x94\xf9\xf1\xbe\x93\xf0\x12\x94\x47\x59\x7c\xff\
\xc4\x91\xf7\x07\x73\x54\xc7\xd1\x12\x2d\xe6\x76\x57\x40\xb2\x38\
\x24\xb0\xd1\x4d\x1a\x15\x48\x9b\x96\x03\xbd\x38\x08\xe0\x54\xf2\
\xd1\xa4\x07\xf6\xf1\x6f\xb2\x88\xe8\x39\xcd\x82\xa8\x8b\xc2\xe7\
\xcd\x61\xb8\xd5\x25\x36\x03\x66\x61\xa8\x5b\xf2\x02\x28\x17\x87\
\xe9\xbb\x78\x9f\x95\x48\xd2\xd1\x7d\x4b\x27\x01\xd7\x07\xf3\x7d\
\x30\x4b\xe1\x24\xf1\xd5\xc3\x1c\xc3\x1f\xb6\x0d\x4e\x93\x6a\x1c\
\xc0\x67\xd4\x03\x26\xd6\x73\xf9\xe2\x6b\xdf\x0f\x28\x9b\x22\xe2\
\x2b\xbe\xb7\x51\x3a\xf2\xe1\x94\x7c\xf1\xa5\x75\x71\xf2\x23\x25\
\x43\x46\x2c\xdb\xc8\x9f\x22\x8c\x7b\x32\xf0\x8e\xd4\xbf\xae\x74\
\x2c\xc1\x0e\x1a\x18\x81\x71\xdd\x85\x51\x5c\x17\x88\x53\x90\x14\
\x77\x46\xf9\xa0\x8e\x81\xd6\x1f\x9f\x43\xb7\x7c\xc0\x02\xdb\x63\
\xbf\x3f\x00\x43\x8f\x83\x70\x4d\x3a\x48\x50\x8c\xaa\xd6\xa0\xb6\
\xb6\x4f\xf9\xa7\xbc\xd3\xbe\x84\xb9\xe4\x84\xf9\xa6\x03\x0a\xca\
\xe6\x3a\x8a\xef\x4a\x32\x09\x3f\x1b\x42\x57\x85\xf9\xa8\xc5\xf6\
\x4e\x33\x1f\x7a\x66\x61\x21\x08\xb7\x1b\x45\xf8\x04\x7c\xd3\xb7\
\xa0\xf5\x0d\x8a\x73\x74\xc0\x18\x18\x6a\xa2\xf0\x73\xbf\x47\x4b\
\x8b\xdc\xf1\xfe\x74\xb0\xba\x35\x50\xb7\xc6\x84\x6f\xb4\x01\xa5\
\x43\xe5\xdc\xdd\x13\x46\x23\x88\xbe\xd9\xeb\xd1\xfe\x6b\x0f\xa5\
\xdd\xde\x1f\xd1\x96\x52\xb4\x4d\xed\x11\xfd\x63\xec\x13\x93\xf8\
\x73\x28\x0c\x57\xa5\xb2\xa7\xc1\xa2\x4f\x9a\x05\xd3\xb3\x81\xf9\
\x38\x7c\xe0\xa4\x7f\xd8\x66\xef\x4c\x58\xeb\xf2\x76\xf2\xc4\x97\
\x02\xfa\xfd\x71\xa8\xed\x0a\xc1\xd7\x0d\x71\x38\x8b\x96\x4e\xd6\
\x16\xc6\xce\xc6\xe6\xa6\x72\xde\x5c\x40\x8d\xf4\x32\x5a\x9d\x2d\
\x33\xe5\x77\x58\x0a\x9f\xc6\x4a\xfd\xd6\xb1\x31\x13\xf4\xaf\x41\
\x50\x90\xba\x97\xa0\x7f\x46\x3f\xc7\x2f\x9e\xa5\xdf\xe9\x1b\xaa\
\xd7\x69\x74\xc4\xa9\x3e\xfd\x0b\x92\x8f\xa4\x67\xaf\xb5\x2d\x9b\
\x47\x74\xa9\x10\xa9\x42\xa8\x32\x03\xa1\x28\xfc\x41\xd3\x1f\xac\
\xe0\xdf\x06\xe6\xb5\x6b\x85\x84\x97\xa0\x3c\xca\xe2\x4b\x6b\xbe\
\x8d\x1d\x71\x9c\xea\x07\xa1\x06\x2b\x90\xe2\xdd\xdd\xcd\x3f\xfe\
\x7a\x16\xad\xdb\xea\x09\x8f\x59\x26\xda\xbb\x62\xa7\x1b\x75\xeb\
\x47\x98\xe9\x6f\xed\x1d\xdc\xba\x05\x41\x87\x50\xc8\x6d\x47\x6c\
\x06\x6c\x6f\xef\x40\xc0\x17\x55\x37\xb9\xca\x60\x70\xca\x57\xd0\
\x7a\xdd\xdb\xcf\x3a\x5a\x01\x67\x71\x00\xf8\xbe\xdb\x03\x91\x02\
\xc7\x3e\x4f\xa2\x34\xf1\x7d\x01\xbd\x76\x5f\x4e\x6c\x43\x6f\xd6\
\x47\xe0\x2e\xd6\x47\xb1\x93\x74\x79\x96\x2f\x76\x58\xf2\x2b\xd7\
\x3d\x3e\x4e\x01\x96\xbd\x95\x86\x2a\xbe\xf6\x6f\x0c\x9f\xc4\xcc\
\xa8\x7c\x18\x28\xff\xdd\x29\xff\x76\xe4\x7b\xb4\xa9\x38\xe9\xf2\
\xc1\x4f\x0d\x28\xe2\xf5\xf4\xe1\x77\xe1\x46\x96\x46\x8b\x58\xee\
\x0f\x11\xb8\xd9\xb9\xa4\x1d\x0c\x12\x71\x50\x7d\x0a\xb1\x13\x65\
\x79\x67\x48\x3f\x44\xe2\xf1\x04\x0c\x2f\xa5\x38\xdc\x1a\x5e\xd6\
\xda\x3a\xb5\xaf\xe9\x39\x0f\xf4\xf5\x7b\xe1\xf7\xb6\xb0\x75\x9a\
\xd4\x06\x2d\x2d\xfe\x2e\x7d\x51\x4d\x46\xce\xbb\x5d\x7c\x29\x8d\
\xe9\xe1\x28\xbc\xd3\x10\x82\x7a\x97\xfe\x1f\x47\x44\x78\x4d\x1c\
\xd1\x02\xa6\x13\x63\x67\x1b\xfd\xb0\x80\xfd\x8f\xe2\xa0\x67\xa8\
\x2f\x52\x9e\xba\x66\xf4\xef\xab\x68\x69\xe1\x33\x8a\x2b\x9b\xc1\
\x19\x2c\x8b\x9f\xfa\x97\xcc\x78\x65\x28\x2e\xea\x47\xe3\xee\x79\
\x48\x1b\x69\x53\x5c\xf4\xd1\x7d\x4a\x43\xeb\x5f\xd2\x69\x56\x5d\
\x4b\x8c\x73\x0c\xc6\x7f\xb4\xa1\x01\x41\xdc\x27\xc8\xaa\xee\xeb\
\x0f\xc2\x8d\x66\x9c\xc1\x50\x5d\x60\x5f\xf9\xbc\x39\x04\xf7\x07\
\x75\x97\x55\xb9\x4c\x64\x1c\x2d\x5f\x4a\x90\xce\xe5\xcf\x2e\x2c\
\x6a\x27\xd0\x0a\x3d\x2c\xa0\x42\x98\xc1\x0a\xb3\x37\x60\x12\x0e\
\x4d\x80\xb0\x50\x9d\x9e\x3b\x09\x2a\x28\xa7\xc6\x4c\x90\x20\x2d\
\xa3\xb0\xea\x23\xa0\x5a\x18\x04\xbd\x03\x7d\x1a\x92\xf2\x4e\x05\
\x40\x9d\x89\x4e\xa8\xd0\x73\xc2\x75\x44\x84\xa5\xdf\x09\x1a\xa9\
\xe7\xa6\xbd\x30\x38\xb3\x68\x56\xb0\x1c\xa7\x1d\xba\x2f\x3e\x4e\
\x23\x0e\x90\x90\x05\x40\xef\x2c\xbe\x05\x4c\x50\x7e\xe5\x72\x99\
\xc1\x7c\x50\xfc\xf6\xb8\x68\x24\x97\xaf\x69\xd7\xb5\x7b\x56\x1e\
\x09\xba\x4e\xee\x43\x94\x1e\xbd\x5b\x39\xd0\x33\xc5\x3e\xf0\x4c\
\xe9\x91\x2f\xa4\x9c\x5f\x91\x67\xfa\x6c\x23\xd5\x89\xd3\x73\x27\
\x41\xf9\x96\xbd\x2b\xec\xff\x44\x52\x84\x09\xfa\x69\x50\xd1\xdd\
\xe9\x44\xda\xe4\xf1\x61\x2f\x2f\x19\xed\x39\xa3\x1e\x08\xfa\xfd\
\xb4\xf9\x74\x26\x07\x03\x23\xd6\xe0\x35\x89\x02\x41\x6d\x45\xaf\
\x97\xe2\x50\x38\x3a\x46\xde\x3d\x2c\xbe\xf4\x35\xef\xf8\xee\xc5\
\xa0\xf7\xa3\x3e\x44\xdf\x79\x98\x40\xf1\x11\xfe\xe0\x24\x02\x72\
\x7f\xa0\x72\x22\x61\xb1\xbf\x3b\xb9\x25\xda\xcb\x92\xe2\xa4\x7e\
\x43\x6d\xb5\x6f\x74\x41\x11\x22\x8a\x5f\x58\xb3\x34\xe8\xd3\x33\
\xf6\x53\xa8\xf4\x3d\x0a\x0a\x43\xe1\xe5\xb4\x64\xec\xf5\x42\xcf\
\xd1\x75\x1a\x44\xe7\x50\x5b\x9c\x74\x81\xf2\x4e\xcf\x50\x5f\x95\
\xfd\xde\xe9\x3a\x0d\x42\xf2\x35\x8a\x9f\xf2\x26\xe2\x17\x38\xf5\
\x2f\x19\xfd\xdd\xd5\xb4\xe9\x9a\x40\xbe\x4e\x50\x5c\xa3\x13\x68\
\x04\x61\x5a\x4e\x79\xa6\x67\xa8\x5f\x91\x1e\x51\x39\x09\x6d\xa2\
\x6b\xc5\xda\xa1\xa3\xf8\x12\x5a\x46\x8c\x9f\x4e\xf7\xed\x50\x58\
\xa7\x6b\xa5\x3e\x5f\x08\x2d\x1f\x0e\x8d\x5a\xc7\xb9\xb0\x04\xe2\
\x9e\xf9\x53\xfb\xdd\xfa\xdb\x89\xec\x93\xa7\x8e\x62\x5e\x08\x39\
\x2e\xfa\x5d\x50\x28\x8c\xf6\xb7\xf4\xfb\xcb\x20\xa7\x57\x0e\x4e\
\x71\xc9\x50\x19\xe5\x5d\xd3\xae\x9f\xfc\x6c\x31\x84\x77\x05\x51\
\x28\x2e\xa7\xeb\xa5\xe5\xd9\x0a\xf3\xb2\xf9\xb4\x43\xf1\x51\x9e\
\xc5\xe0\x65\xff\x77\x58\x27\xf1\xaa\xf2\x43\xf1\x38\x8b\x06\xfd\
\x14\xbf\x17\x4f\xcb\x7e\x9f\xfe\x76\x7a\x1f\x11\x97\x85\x48\x43\
\xe6\xe4\xf7\x92\xc3\xa8\xbf\xab\xe1\x64\x44\x7a\x4e\xd7\x4b\xba\
\x66\xfb\xfb\x55\x40\xe5\xee\x94\x96\x40\xcf\xb3\x5c\x4e\xfa\xdf\
\x4e\x61\x05\x05\xc5\x97\x61\x5e\x07\xa5\x34\xca\xff\x8d\x88\x7c\
\xff\x5f\xcc\x3b\xf3\xbf\x13\x16\x5f\x86\x61\x98\x0a\xc0\xe2\xcb\
\x30\x0c\x53\x01\x58\x7c\x19\x86\x61\x2a\x00\x8b\x2f\xc3\x30\x4c\
\x05\x60\xf1\x65\x18\x86\xa9\x00\x2c\xbe\x0c\xc3\x30\x15\x80\xc5\
\x97\x61\x18\xa6\x02\xb0\xf8\x32\x0c\xc3\x54\x00\x16\x5f\x86\x61\
\x98\x0a\xc0\xe2\xcb\x30\x0c\x53\x01\x58\x7c\x19\x86\x61\x2a\x00\
\x8b\x2f\xc3\x30\x4c\x05\x60\xf1\x65\x18\x86\xa9\x00\x2c\xbe\x0c\
\xc3\x30\x15\x80\xc5\x97\x61\x18\xa6\x02\xb0\xf8\x32\x0c\xc3\x54\
\x00\x16\x5f\x86\x61\x98\x0a\xc0\xe2\xcb\x30\x0c\x53\x01\x58\x7c\
\x19\x86\x61\x2a\x00\x8b\x2f\xc3\x30\x4c\x05\x60\xf1\x65\x18\x86\
\xa9\x00\x2c\xbe\x0c\xc3\x30\x15\x80\xc5\x97\x61\x18\xa6\x02\xb0\
\xf8\x32\x0c\xc3\x54\x00\x16\x5f\x86\x61\x98\x0a\xc0\xe2\xcb\x30\
\x0c\x53\x01\x58\x7c\x19\x86\x61\x2a\x00\x8b\x2f\xc3\x30\x4c\x05\
\x60\xf1\x65\x18\x86\xa9\x00\x2c\xbe\x0c\xc3\x30\xff\x75\x5e\xc0\
\xff\x00\x24\x9d\x3b\xe6\x53\x00\xad\xc1\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = b"\
\x00\x05\
\x00\x6f\xa6\x12\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x32\
\x00\x04\
\x00\x06\xfa\x5e\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\
\x00\x08\
\x0a\x61\x5a\xa7\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x05\
\x00\x65\x57\x47\
\x00\x62\
\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\
\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x34\x00\x00\x00\x00\x00\x01\x00\x00\x9a\xab\
\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x34\x00\x00\x00\x00\x00\x01\x00\x00\x9a\xab\
\x00\x00\x01\x69\x6b\x74\x3a\x0c\
\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x67\xbf\xc1\xe4\x80\
"
qt_version = [int(v) for v in QtCore.qVersion().split('.')]
if qt_version < [5, 8, 0]:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
rcc_version = 2
qt_resource_struct = qt_resource_struct_v2
def qInitResources():
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
| 1.046875 | 1 |
D01/OP-pembagian2.py | shdx8/dtwrhs | 0 | 12767475 | print(10/3)
print(10//3)
print()
kue = 16
anak = 4
kuePerAnak = kue // anak
print ("Setiap anak akan mendapatkan kue sebanyak ", kuePerAnak)
| 3.234375 | 3 |
examples/tree_pretrain/utils/summary.py | jiakai0419/Curvature-Learning-Framework | 86 | 12767476 | <reponame>jiakai0419/Curvature-Learning-Framework
# Copyright (C) 2016-2021 Alibaba Group Holding Limited
#
# 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.
# ==============================================================================
"""Summary Util"""
import tensorflow as tf
def summary_tensor(name, sim):
"""Summary tensor.
Args:
name (str): The prefix name.
sim (tensor): The tensor to statistic.
"""
tf.summary.histogram(name + '_hist', sim)
tf.summary.scalar(name + '_min', tf.reduce_min(sim))
tf.summary.scalar(name + '_max', tf.reduce_max(sim))
tf.summary.scalar(name + '_mean', tf.reduce_mean(sim))
def summary_curvature(name, sim):
"""Summary curvature.
Args:
name (str): The prefix name.
sim (tensor): The tensor to statistic.
"""
tf.summary.scalar(name + '_min', tf.reduce_min(sim))
tf.summary.scalar(name + '_max', tf.reduce_max(sim))
tf.summary.scalar(name + '_mean', tf.reduce_mean(sim))
| 2.3125 | 2 |
Aula 06/[Exercicio 07] .py | IsaacPSilva/LetsCode | 0 | 12767477 | '''7. Faça uma função que sorteia 10 números aleatórios entre 0 e 100 e retorna o maior entre eles.'''
import random
def sorteio():
maior = 0
menor = 0
for i in range(10):
x = random.randint(0,100)
if i==1:
menor = x
if x<menor:
menor = x
if x>maior:
maior = x
print('Menor: ', menor)
print('Maior: ', maior)
sorteio() | 3.8125 | 4 |
ai_semiconductors/tests/test_uncertainty_rfr.py | xiaofx2/ai_semiconductors | 4 | 12767478 | import sys
import uncertainty_rfr
import pandas as pd
import numpy as np
from sklearn.ensemble import RandomForestRegressor
import pandas.api.types as ptypes
sys.path.append("../")
df_test = pd.read_csv('./xiaofeng_lasso/unittest_dummy.csv', nrows=5)
X_test, y_test = uncertainty_rfr.descriptors_outputs(df_test, d_start=5,
o=0)
def test_uncertainty_rfr_qfr():
'''
Test function for uncertainty_rfr_qfr. Checks values in actual are 0 when
true_y = False, and that the output df has the correct number of rows.
'''
df_test = pd.read_csv('./xiaofeng_lasso/unittest_dummy.csv')
X = df_test.iloc[range(3)]
err_df_test = \
uncertainty_rfr.uncertainty_rfr_qfr(df_test, X[X.columns[5:]],
Y='none', true_y=False, o=0,
d_start=5)
assert err_df_test['actual'][0] == err_df_test['actual'][1], \
'with true_y = False, all values in "actual" should be equal (0.0)'
assert len(err_df_test) == len(X), \
'length of predicting df should equal length of output df'
def test_descriptors_outputs():
'''
Test function for descriptors_outputs. Checks the shape of X, and checks
that the correct type of value (numeric) is in the columns.
'''
X_test, y_test = uncertainty_rfr.descriptors_outputs(df_test, d_start=5,
o=0)
assert X_test.shape[1] == 5, \
'array shape is incorrect. should be ({}, 7), got ({}, {})'\
.format(X_test.shape[0], X_test.shape[0], X_test.shape[1])
assert all(ptypes.is_numeric_dtype(X_test[col]) for col in
list(X_test[X_test.columns[:]])), \
'data type in columns is of incorrect type, must be numeric'
assert ptypes.is_numeric_dtype(y_test), \
'data type in columns is of incorrect type, must be numeric'
def test_traintest():
'''
Test function for traintest. Checks that the length of X_train and
y_train are the same.
'''
train_idx_test = np.array([0, 1, 2])
test_idx_test = np.array([3, 4])
X_train_test, y_train_test = \
uncertainty_rfr.traintest(X_test, y_test, train_idx_test,
test_idx_test)
assert X_train_test.shape[0] == y_train_test.shape[0], \
'X_train and y_train datapoints do not have the same num of values'
def test_predict_append():
'''
Test function for predict_append. Checks that the func appends one value
at a time, and that the output is a list.
'''
df_test2 = df_test[df_test.columns[:7]]
X_test, y_test = uncertainty_rfr.descriptors_outputs(df_test2, d_start=5,
o=0)
clf_test = RandomForestRegressor(random_state=130)
clf_test.fit(X_test, y_test)
N_arr_test = np.array([[3.98069889, 0.38048415],
[-0.78001682, 0.20058657]])
n_test = 0
preds_test = []
preds_test = uncertainty_rfr.predict_append(clf_test, N_arr_test, n_test,
preds_test)
assert len(preds_test) == 1, \
'preds_test needs to be length 1. Got {}'.format(len(preds_test))
assert isinstance(preds_test, list), \
'preds_test needs to be a list, got {}'.format(type(preds_test))
def test_dft_points():
'''
Test functino for dft_points. Checks that when true_y = True, the output
array is equal to Y_test, adn when true_y = False the output arry is the
same length as N_arr_test.
'''
Y_test = [3, 5]
N_arr_test = np.array([[3.98069889, 0.38048415],
[-0.78001682, 0.20058657]])
Y_arr_test = uncertainty_rfr.dft_points(True, Y_test, N_arr_test)
Y_arr_test2 = uncertainty_rfr.dft_points(False, Y_test, N_arr_test)
assert Y_arr_test[0] == Y_test[0], \
'Y_arr_test got unexpected result. Expected np.array([3,5]), got{}'.\
format(Y_arr_test)
assert len(Y_arr_test2) == N_arr_test.shape[0], \
'length of Y_arr_test2 should be equal to the number of rows of \
N_arr_test. Got Y_arr: {}, N_arr {}'.\
format(len(Y_arr_test2), N_arr_test.shape[0])
def test_uncert_table():
'''
Test function for uncert_table. Checks that the columns in the df are in
the correct place, the length of the output dataframe the correct
length, and that the last three columns in the output df are numeric.
'''
N_test = df_test[df_test.columns[5:]].iloc[[0, 1]]
X = df_test.iloc[[0, 1]]
Y_arr_test = np.array([3, 5])
pred_desc_test = pd.DataFrame(data={'mean': [1, 2], 'std': [3, 4]}).T
err_df = uncertainty_rfr.uncert_table(N_test, X, 1, 2, 3, 4,
Y_arr_test, pred_desc_test)
assert err_df.columns[0] == 'Type', \
'first column got unexpected value {}, should be Type'.\
format(err_df.columns[0])
assert len(err_df) == len(X), \
'arrays must all be the same length'
assert all(ptypes.is_numeric_dtype(err_df[col]) for col in
list(err_df[err_df.columns[4:]])), \
'columns "true val", "mean", and "std" are of wrong type, should be\
numeric values.'
def test_uncertainty_rfr_cv():
'''
Test function for undertainty_rfr_cv. Checks that the prediction df has
as many rows as folds in cv. In the output df it checks that "true val"
values are 0 when true_y = False, and checks that values in "AB" are of
type string.
'''
X = df_test.iloc[[0, 1]]
Y = 'none'
d_start, x_start = 5, 5
o = 0
folds_test = 2
pred_df_test, err_df_test = \
uncertainty_rfr.uncertainty_rfr_cv(df_test, X, Y, o, d_start, x_start,
folds=folds_test)
assert pred_df_test.shape[0] == folds_test, \
'Number of row in pred_df_test array should equal number of folds, \
expected {}, got {}'.format(folds_test, pred_df_test.shape[0])
assert err_df_test[err_df_test.columns[4]][0] == 0.0, \
'Expected 0.0 in "true val" with true_y set to false, instead got a \
different val'
assert isinstance(err_df_test['AB'][1], str), \
'Expected string in column "AB", got {}'.format(type(
err_df_test['AB'][1]))
def test_largest_uncertainty():
'''
test function for largest_uncertainty. checks that that length of the
df is equal to the num of values it was asked to return, and that the
output idx are a list.
'''
df = pd.DataFrame(data={'err_int': [1, 2, 3], 'std_dev': [4, 5, 6]})
num_vals = 2
larg, idx = uncertainty_rfr.largest_uncertainty(df, num_vals, 'std_dev')
assert len(larg) == num_vals, \
'number of rows in the output df should equal the number of values\
the func called to return'
assert isinstance(idx, list), \
'expected idx to be list, got {}'.format(type(idx))
| 2.8125 | 3 |
o_doh.py | Black-Blade/smartfon_no_ads | 0 | 12767479 | <reponame>Black-Blade/smartfon_no_ads
#!/usr/bin/env python3
#/***************************************************************************//**
# @file o_doh.py
#
# @author Black-Blade
# @brief o_doh.py
# @date 17.01.2021
# @version 0.0.1 Doxygen style eingebaut und erstellen dieser File
# @see https://tools.ietf.org/html/rfc8484
#*******************************************************************************/
#pip3 install requests
import urllib3
import base64
from urllib.request import urlretrieve
from urllib.parse import quote
# IMPORT MY STANDRT CLASS
from log import logging
from config import Config
if __name__ == "__main__":
quit()
class OUTPUT_DOH:
#/*******************************************************************************
# @author Black-Blade
# @brief Constructor of OUTPUT_DOH
# @date 10.03.2021
# @param [dohserver(String()]
# @return
# @version 0.0.1 Doxygen style eingebaut und erstellen dieser File
# @see
# *******************************************************************************/
def __init__(self,dohserver=None):
logging.debug ("")
if dohserver is None:
server = Config.O_DOHSERVER
else:
server = dohserver
if server=="cloudflare-dns-post":
self._url ="https://cloudflare-dns.com/dns-query"
self._method ="POST"
self._base64 =False
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="cloudflare-dns-get":
self._url= "https://cloudflare-dns.com/dns-query?ct=application/dns-udpwireformat&dns="
self._method ="GET"
self._base64 =True
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="cleanbrowsing-family-get":
self._url ="https://doh.cleanbrowsing.org/doh/family-filter/?ct&dns="
self._method="GET"
self._base64=True
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="cleanbrowsing-adult-get":
self._url ="https://doh.cleanbrowsing.org/doh/adult-filter/?ct&dns="
self._method="GET"
self._base64=True
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="cleanbrowsing-security-get":
self._url ="https://doh.cleanbrowsing.org/doh/security-filter/?ct&dns="
self._method="GET"
self._base64=True
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="ffmuc-post":
self._url ="https://doh.ffmuc.net/dns-query"
self._method="POST"
self._base64=False
self._headers={
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
if server=="google-post":
self._url ="https://dns.google/dns-query"
self._method="POST"
self._base64=False
self._headers = {
'Accept': 'application/dns-message',
'Content-type': 'application/dns-message'
}
if server=="google-get":
self._url ="https://dns.google/dns-query?ct/?ct&dns="
self._method="GET"
self._base64=True
self._headers = {
'Accept': 'application/dns-message',
'Content-type': 'application/dns-message'
}
if server=="digitale-gesellschaft-post":
self._url ="https://dns.digitale-gesellschaft.ch/dns-query"
self._method="POST"
self._base64=False
self._headers = {
'Accept': 'application/dns-udpwireformat',
'Content-type': 'application/dns-udpwireformat'
}
#/*******************************************************************************
# @author Black-Blade
# @brief Deconstructor of OUTPUT_DOH
# @date 06.03.2021
# @param
# @return
# @version 0.0.1 Doxygen style eingebaut und erstellen dieser File
# @see
# *******************************************************************************/
def __del__(self):
logging.debug ("")
#/*******************************************************************************
# @author Black-Blade
# @brief Send data to extern DNS DOH server
# @date 06.03.2021
# @param [txdata (data to dns server)]
# @return [rxdata (data from dns server)]
# @version 0.0.1 Doxygen style eingebaut und erstellen dieser File
# @see https://tools.ietf.org/html/rfc8484
# *******************************************************************************/
def send(self,txdata):
logging.debug ("")
rxdata =None
r= None
#Add 4 byte for DOH PROTOKOLL
transactionid= txdata[0:2]
txdata = b'\xab\xcd\x01\x00' +txdata[4:]
if self._base64==True:
txdata = base64.b64encode(txdata).decode("utf-8")
txdata = txdata.replace("=", "")
txdata = quote(txdata)
try:
http = urllib3.PoolManager()
if self._method=="POST":
r = http.request(self._method, self._url,
headers=self._headers,
body=txdata)
if self._method=="GET":
url= self._url+ txdata
r = http.request(self._method,url,
headers=self._headers)
if r.status == 200:
# clear the first 2 byte for DOH PROTOKLL
rxdata =r.data[2:]
rxdata = transactionid+rxdata
http.clear()
except OSError as err:
logging.error("OS error: {0}".format(err))
return rxdata
| 1.757813 | 2 |
frappe-bench/apps/erpnext/erpnext/accounts/doctype/c_form/c_form.py | Semicheche/foa_frappe_docker | 0 | 12767480 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
from frappe.utils import flt
from frappe import _
from frappe.model.document import Document
class CForm(Document):
def validate(self):
"""Validate invoice that c-form is applicable
and no other c-form is received for that"""
for d in self.get('invoices'):
if d.invoice_no:
inv = frappe.db.sql("""select c_form_applicable, c_form_no from
`tabSales Invoice` where name = %s and docstatus = 1""", d.invoice_no)
if inv and inv[0][0] != 'Yes':
frappe.throw(_("C-form is not applicable for Invoice: {0}".format(d.invoice_no)))
elif inv and inv[0][1] and inv[0][1] != self.name:
frappe.throw(_("""Invoice {0} is tagged in another C-form: {1}.
If you want to change C-form no for this invoice,
please remove invoice no from the previous c-form and then try again"""\
.format(d.invoice_no, inv[0][1])))
elif not inv:
frappe.throw(_("Row {0}: Invoice {1} is invalid, it might be cancelled / does not exist. \
Please enter a valid Invoice".format(d.idx, d.invoice_no)))
def on_update(self):
""" Update C-Form No on invoices"""
self.set_total_invoiced_amount()
def on_submit(self):
self.set_cform_in_sales_invoices()
def before_cancel(self):
# remove cform reference
frappe.db.sql("""update `tabSales Invoice` set c_form_no=null where c_form_no=%s""", self.name)
def set_cform_in_sales_invoices(self):
inv = [d.invoice_no for d in self.get('invoices')]
if inv:
frappe.db.sql("""update `tabSales Invoice` set c_form_no=%s, modified=%s where name in (%s)""" %
('%s', '%s', ', '.join(['%s'] * len(inv))), tuple([self.name, self.modified] + inv))
frappe.db.sql("""update `tabSales Invoice` set c_form_no = null, modified = %s
where name not in (%s) and ifnull(c_form_no, '') = %s""" %
('%s', ', '.join(['%s']*len(inv)), '%s'), tuple([self.modified] + inv + [self.name]))
else:
frappe.throw(_("Please enter atleast 1 invoice in the table"))
def set_total_invoiced_amount(self):
total = sum([flt(d.grand_total) for d in self.get('invoices')])
frappe.db.set(self, 'total_invoiced_amount', total)
def get_invoice_details(self, invoice_no):
""" Pull details from invoices for referrence """
if invoice_no:
inv = frappe.db.get_value("Sales Invoice", invoice_no,
["posting_date", "territory", "base_net_total", "base_grand_total"], as_dict=True)
return {
'invoice_date' : inv.posting_date,
'territory' : inv.territory,
'net_total' : inv.base_net_total,
'grand_total' : inv.base_grand_total
}
| 2.0625 | 2 |
stubs.min/Autodesk/Revit/DB/__init___parts/ExportUnit.py | hdm-dt-fb/ironpython-stubs | 1 | 12767481 | <gh_stars>1-10
class ExportUnit(Enum,IComparable,IFormattable,IConvertible):
"""
An enumerated type listing possible target units for CAD Export.
enum ExportUnit,values: Centimeter (4),Default (0),Foot (2),Inch (1),Meter (5),Millimeter (3)
"""
def __eq__(self,*args):
""" x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """
pass
def __format__(self,*args):
""" __format__(formattable: IFormattable,format: str) -> str """
pass
def __ge__(self,*args):
pass
def __gt__(self,*args):
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
def __le__(self,*args):
pass
def __lt__(self,*args):
pass
def __ne__(self,*args):
pass
def __reduce_ex__(self,*args):
pass
def __str__(self,*args):
pass
Centimeter=None
Default=None
Foot=None
Inch=None
Meter=None
Millimeter=None
value__=None
| 2.328125 | 2 |
art/estimators/classification/query_efficient_bb.py | h3yin/ART-with-amortized-attacks | 0 | 12767482 | # MIT License
#
# Copyright (C) The Adversarial Robustness Toolbox (ART) Authors 2018
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""
Provides black-box gradient estimation using NES.
"""
import logging
from typing import List, Optional, Tuple, Union, TYPE_CHECKING
import numpy as np
from scipy.stats import entropy
from art.estimators.estimator import BaseEstimator
from art.estimators.classification.classifier import ClassifierMixin, ClassifierLossGradients
from art.utils import clip_and_round
if TYPE_CHECKING:
from art.utils import CLASSIFIER_CLASS_LOSS_GRADIENTS_TYPE
logger = logging.getLogger(__name__)
import itertools
class QueryEfficientGradientEstimationClassifier(ClassifierLossGradients, ClassifierMixin, BaseEstimator):
"""
Implementation of Query-Efficient Black-box Adversarial Examples. The attack approximates the gradient by
maximizing the loss function over samples drawn from random Gaussian noise around the input.
| Paper link: https://arxiv.org/abs/1712.07113
"""
estimator_params = ["num_basis", "sigma", "round_samples"]
def __init__(
self,
classifier: "CLASSIFIER_CLASS_LOSS_GRADIENTS_TYPE",
num_basis: int,
sigma: float,
round_samples: float = 0.0,
) -> None:
"""
:param classifier: An instance of a classification estimator whose loss_gradient is being approximated.
:param num_basis: The number of samples to draw to approximate the gradient.
:param sigma: Scaling on the Gaussian noise N(0,1).
:param round_samples: The resolution of the input domain to round the data to, e.g., 1.0, or 1/255. Set to 0 to
disable.
"""
super().__init__(model=classifier.model, clip_values=classifier.clip_values)
# pylint: disable=E0203
self._classifier = classifier
self.num_basis = num_basis
self.sigma = sigma
self.round_samples = round_samples
self._nb_classes = self._classifier.nb_classes
@property
def input_shape(self) -> Tuple[int, ...]:
"""
Return the shape of one input sample.
:return: Shape of one input sample.
"""
return self._classifier.input_shape # type: ignore
def predict(self, x: np.ndarray, batch_size: int = 128, **kwargs) -> np.ndarray: # pylint: disable=W0221
"""
Perform prediction of the classifier for input `x`. Rounds results first.
:param x: Features in array of shape (nb_samples, nb_features) or (nb_samples, nb_pixels_1, nb_pixels_2,
nb_channels) or (nb_samples, nb_channels, nb_pixels_1, nb_pixels_2).
:param batch_size: Size of batches.
:return: Array of predictions of shape `(nb_inputs, nb_classes)`.
"""
return self._classifier.predict(clip_and_round(x, self.clip_values, self.round_samples), batch_size=batch_size)
def fit(self, x: np.ndarray, y: np.ndarray, **kwargs) -> None:
"""
Fit the classifier using the training data `(x, y)`.
:param x: Features in array of shape (nb_samples, nb_features) or (nb_samples, nb_pixels_1, nb_pixels_2,
nb_channels) or (nb_samples, nb_channels, nb_pixels_1, nb_pixels_2).
:param y: Target values (class labels in classification) in array of shape (nb_samples, nb_classes) in
one-hot encoding format.
:param kwargs: Dictionary of framework-specific arguments.
"""
raise NotImplementedError
def _generate_samples(self, x: np.ndarray, epsilon_map: np.ndarray) -> Tuple[np.ndarray, np.ndarray]:
"""
Generate samples around the current image.
:param x: Sample input with shape as expected by the model.
:param epsilon_map: Samples drawn from search space.
:return: Two arrays of new input samples to approximate gradient.
"""
minus = clip_and_round(
np.repeat(x, self.num_basis, axis=0) - epsilon_map,
self.clip_values,
self.round_samples,
)
plus = clip_and_round(
np.repeat(x, self.num_basis, axis=0) + epsilon_map,
self.clip_values,
self.round_samples,
)
return minus, plus
def class_gradient(self, x: np.ndarray, label: Union[int, List[int], None] = None, **kwargs) -> np.ndarray:
"""
Compute per-class derivatives w.r.t. `x`.
:param x: Input with shape as expected by the classifier's model.
:param label: Index of a specific per-class derivative. If an integer is provided, the gradient of that class
output is computed for all samples. If multiple values as provided, the first dimension should
match the batch size of `x`, and each value will be used as target for its corresponding sample in
`x`. If `None`, then gradients for all classes will be computed for each sample.
:return: Array of gradients of input features w.r.t. each class in the form
`(batch_size, nb_classes, input_shape)` when computing for all classes, otherwise shape becomes
`(batch_size, 1, input_shape)` when `label` parameter is specified.
"""
raise NotImplementedError
def _generate_sample_i(self, x: np.ndarray, epsilon_map: np.ndarray, i: int) -> Tuple[np.ndarray, np.ndarray]:
minus = clip_and_round(
x - epsilon_map[i],
self.clip_values,
self.round_samples,
)
plus = clip_and_round(
x + epsilon_map[i],
self.clip_values,
self.round_samples,
)
return minus, plus
def loss_gradient(self, x: np.ndarray, y: np.ndarray, **kwargs) -> np.ndarray:
if self.amortized_attack:
return self.loss_gradient_new_efficient(x, y)
#return self.loss_gradient_new(x, y)
else:
return self.loss_gradient_old(x, y)
#return self.loss_gradient_new(x, y)
#return self.loss_gradient_new_efficient(x, y)
def loss_gradient_new_efficient(self, x: np.ndarray, y: np.ndarray, **kwargs) -> np.ndarray:
"""
Compute the gradient of the loss function w.r.t. `x`.
:param x: Sample input with shape as expected by the model.
:param y: Correct labels, one-vs-rest encoding.
:return: Array of gradients of the same shape as `x`.
"""
epsilon_map = self.sigma * np.random.normal(size=([self.num_basis] + list(self.input_shape)))
#print(epsilon_map.shape)
#print(epsilon_map.reshape(self.num_basis, -1).shape)
grads = [0.0] * len(x)
#print('eps map shape', epsilon_map.shape)
#print('epsmap 11', epsilon_map[11])
#batch over multiple examples
reps_per_batch = 10
reps = epsilon_map.shape[0]
for jb in range(0, reps, reps_per_batch):
minus_preds = []
len_x = len(x)
pm_len = 2*len_x*reps_per_batch
minuses_pluses = [None]*pm_len
for b in range(reps_per_batch):
j = jb + b
#print('j', j, 'b', b)
if j >= reps:
b -= 1
#print('b after dec', b)
break
for i in range(len(x)):
minus, plus = self._generate_sample_i(x[i : i + 1], epsilon_map, j)
#print('j', j)
#print('minus i', i + b*2*len_x, 'plus i', i + len_x + b*2*len_x)
minuses_pluses[i + b*2*len_x] = minus
minuses_pluses[i + len_x + b*2*len_x] = plus
#print('b after loop', b)
if jb + reps_per_batch > reps:
#print(minuses_pluses[:(b+1)*2*len_x])
#print(minuses_pluses[(b+1)*2*len_x:])
minuses_pluses = minuses_pluses[:(b+1)*2*len_x]
#print('len(minuses_pluses)', len(minuses_pluses))
minuses_pluses = np.array(minuses_pluses)
minuses_pluses = np.squeeze(minuses_pluses, 1)
#print(minuses_pluses.shape)
pm_preds = self.predict(minuses_pluses, batch_size=4000)
#minus_preds, plus_preds = np.split(pm_preds, 2)
#print('num pm preds', pm_preds.shape)
#print('b', b+1)
rounds = np.split(pm_preds, b+1)
#print('len(rounds)', len(rounds))
for rn, r in enumerate(rounds):
minus_preds, plus_preds = np.split(r, 2)
#print(minus_preds.shape, plus_preds.shape)
j = jb + rn
for i, (mp, pp) in enumerate(zip(minus_preds, plus_preds)):
new_y_minus = entropy(y[i], mp)
new_y_plus = entropy(y[i], pp)
one_grad = epsilon_map[j] * (new_y_plus - new_y_minus)
grads[i] += one_grad
for i in range(len(grads)):
grads[i] = grads[i] / (self.num_basis * self.sigma)
grads = self._apply_preprocessing_gradient(x, np.array(grads))
return grads
def loss_gradient_new(self, x: np.ndarray, y: np.ndarray, **kwargs) -> np.ndarray:
"""
Compute the gradient of the loss function w.r.t. `x`.
:param x: Sample input with shape as expected by the model.
:param y: Correct labels, one-vs-rest encoding.
:return: Array of gradients of the same shape as `x`.
"""
epsilon_map = self.sigma * np.random.normal(size=([self.num_basis] + list(self.input_shape)))
#print(epsilon_map.shape)
#print(epsilon_map.reshape(self.num_basis, -1).shape)
grads = [0.0] * len(x)
for j in range(epsilon_map.shape[0]):
minus_preds = []
#plus_preds = []
pluses = []
minus = None
plus = None
for r in range(2):
for i in range(len(x)):
if r == 0:
minus, plus = self._generate_sample_i(x[i : i + 1], epsilon_map, j)
minus_preds.append(self.predict(minus)[0])
pluses.append(plus)
else:
plus_pred = self.predict(pluses[i])[0]
new_y_minus = entropy(y[i], minus_preds[i])
new_y_plus = entropy(y[i], plus_pred)
one_grad = epsilon_map[j] * (new_y_plus - new_y_minus)
grads[i] += one_grad
#for j in range(epsilon_map.shape[0]):
# for i in range(len(x)):
# minus, plus = self._generate_sample_i(x[i : i + 1], epsilon_map, j)
# pred = self.predict(np.concatenate((minus, plus)))
# new_y_minus = entropy(y[i], pred[0])
# new_y_plus = entropy(y[i], pred[1])
# one_grad = epsilon_map[j] * (new_y_plus - new_y_minus)
# grads[i] += one_grad
# #pluses = [self._generate_sample_i(x[i : i + 1], epsilon_map, j)[1][0] for i in range(len(x))]
# #plus_preds = self.predict(pluses)
# #print('plus_preds.shape', plus_preds.shape)
# #print(len(pluses))
# #minuses = [self._generate_sample_i(x[i : i + 1], epsilon_map, j)[0][0] for i in range(len(x))]
# #minus_preds = self.predict(minuses)
# #print('minus_preds.shape', minus_preds.shape)
# #for i in range(len(x)):
# # grads[i] += epsilon_map[j] * (plus_preds[i] - minus_preds[i])
for i in range(len(grads)):
grads[i] = grads[i]* 2/self.num_basis / (2 * self.sigma)
grads = self._apply_preprocessing_gradient(x, np.array(grads))
return grads
def loss_gradient_old(self, x: np.ndarray, y: np.ndarray, **kwargs) -> np.ndarray:
#new_grads = self.loss_gradient_new(x, y)
"""
Compute the gradient of the loss function w.r.t. `x`.
:param x: Sample input with shape as expected by the model.
:param y: Correct labels, one-vs-rest encoding.
:return: Array of gradients of the same shape as `x`.
"""
epsilon_map = self.sigma * np.random.normal(size=([self.num_basis] + list(self.input_shape)))
#print(epsilon_map.shape)
#print(epsilon_map.reshape(self.num_basis, -1).shape)
grads = []
for i in range(len(x)):
#print('i', i)
minus, plus = self._generate_samples(x[i : i + 1], epsilon_map)
#print('shape', minus.shape, plus.shape)
# Vectorized; small tests weren't faster
# ent_vec = np.vectorize(lambda p: entropy(y[i], p), signature='(n)->()')
# new_y_minus = ent_vec(self.predict(minus))
# new_y_plus = ent_vec(self.predict(plus))
# Vanilla
new_y_minus = np.array([entropy(y[i], p) for p in self.predict(minus, batch_size=4000)])
new_y_plus = np.array([entropy(y[i], p) for p in self.predict(plus, batch_size=4000)])
#print('term1 shape', epsilon_map.reshape(self.num_basis, -1).shape)
#print('term2 shape', ((new_y_plus - new_y_minus).reshape(self.num_basis, -1) / (2 * self.sigma)).shape)
query_efficient_grad = 2 * np.mean(
np.multiply(
epsilon_map.reshape(self.num_basis, -1),
(new_y_plus - new_y_minus).reshape(self.num_basis, -1) / (2 * self.sigma),
).reshape([-1] + list(self.input_shape)),
axis=0,
)
grads.append(query_efficient_grad)
grads = self._apply_preprocessing_gradient(x, np.array(grads))
#print('old grads', grads)
#print('new grads', new_grads)
#print('equal', grads == new_grads)
return grads
def get_activations(self, x: np.ndarray, layer: Union[int, str], batch_size: int) -> np.ndarray:
"""
Return the output of the specified layer for input `x`. `layer` is specified by layer index (between 0 and
`nb_layers - 1`) or by name. The number of layers can be determined by counting the results returned by
calling `layer_names`.
:param x: Input for computing the activations.
:param layer: Layer for computing the activations.
:param batch_size: Size of batches.
:return: The output of `layer`, where the first dimension is the batch size corresponding to `x`.
"""
raise NotImplementedError
def save(self, filename: str, path: Optional[str] = None) -> None:
"""
Save a model to file specific to the backend framework.
:param filename: Name of the file where to save the model.
:param path: Path of the directory where to save the model. If no path is specified, the model will be stored in
the default data location of ART at `ART_DATA_PATH`.
"""
raise NotImplementedError
| 1.546875 | 2 |
tests/scripts_question_utils_unittest.py | Chad-Ballay/devops-interview-questions | 1 | 12767483 | <gh_stars>1-10
import unittest
from pathlib import Path
from typing import List
from scripts.question_utils import get_answered_questions, get_question_list
def open_test_case_file(n: int) -> List[bytes]:
tests_path = Path(__file__).parent.joinpath()
with open(f'{tests_path}/testcases/testcase{n}.md', 'rb') as f:
file_list = [line.rstrip() for line in f.readlines()]
return file_list
class QuestionCount(unittest.TestCase):
def test_case_1(self):
raw_list = open_test_case_file(1)
question_list = get_question_list(raw_list)
answers = get_answered_questions(question_list)
self.assertEqual(len(question_list), 11)
self.assertEqual(len(answers), 3)
def test_case_2(self):
raw_list = open_test_case_file(2)
question_list = get_question_list(raw_list)
answers = get_answered_questions(question_list)
self.assertEqual(len(question_list), 16)
self.assertEqual(len(answers), 11)
| 2.84375 | 3 |
Exercicies/ex021.py | sthe-eduarda/Curso-de-python | 0 | 12767484 | <reponame>sthe-eduarda/Curso-de-python
import pygame
pygame.init()
pygame.mixer.music.load('nome do arquivo')
pygame.mix.music.play()
pygame.event.wait() | 2.515625 | 3 |
tests/pytests/functional/netapi/rest_cherrypy/test_out_formats.py | racooper/salt | 0 | 12767485 | import pytest
from salt.ext.tornado.httpclient import HTTPError
@pytest.fixture
def app(app):
app.wsgi_application.config["global"]["tools.hypermedia_out.on"] = True
return app
async def test_default_accept(http_client, content_type_map):
response = await http_client.fetch("/", method="GET")
assert response.headers["Content-Type"] == content_type_map["json"]
async def test_unsupported_accept(http_client):
with pytest.raises(HTTPError) as exc:
await http_client.fetch(
"/", method="GET", headers={"Accept": "application/ms-word"}
)
assert exc.value.code == 406
async def test_json_out(http_client, content_type_map):
response = await http_client.fetch(
"/", method="GET", headers={"Accept": content_type_map["json"]}
)
assert response.headers["Content-Type"] == content_type_map["json"]
async def test_yaml_out(http_client, content_type_map):
response = await http_client.fetch(
"/", method="GET", headers={"Accept": content_type_map["yaml"]}
)
assert response.headers["Content-Type"] == content_type_map["yaml"]
| 2.09375 | 2 |
taller 5/punto 7.py | 9juandromero7/controlrepeticion | 0 | 12767486 | while True:
X, M = map(int, input().split())
if X == 0 and M == 0:
break
Y = X * M
print(Y) | 3.359375 | 3 |
3.16.py | donghufeng/learn_mxnet | 0 | 12767487 | <reponame>donghufeng/learn_mxnet
# %%
import d2lzh as d2l
from mxnet import autograd, init, nd, gluon
from mxnet.gluon import data as gdata, loss as gloss, nn
import numpy as np
import pandas as pd
# %%
filename = './data/kaggle_house_pred_{}.csv'
train_data = pd.read_csv(filename.format('train'))
test_data = pd.read_csv(filename.format('test'))
# %%
all_feature = pd.concat((train_data.iloc[:, 1:-1], test_data.iloc[:, 1:]))
# %%
numeric_feature = all_feature.dtypes[all_feature.dtypes != 'object'].index
all_feature[numeric_feature] = all_feature[numeric_feature].apply(
lambda x: (x - x.mean()) / x.std())
all_feature[numeric_feature] = all_feature[numeric_feature].fillna(0)
# %%
all_feature = pd.get_dummies(all_feature, dummy_na=True)
# %%
n_train = train_data.shape[0]
train_features = nd.array(all_feature[:n_train].values)
test_features = nd.array(all_feature[n_train:].values)
train_labels = nd.array(train_data.SalePrice.values).reshape((-1, 1))
# %%
# Method 1
loss = gloss.L2Loss()
def get_net():
net = nn.Sequential()
net.add(nn.Dense(1))
net.initialize()
return net
def log_rmse(net, feature, labels):
clipped_preds = nd.clip(net(feature), 1, float('inf'))
rmse = nd.sqrt(2 * loss(clipped_preds.log(), labels.log()).mean())
return rmse.asscalar()
def train(net, train_features, train_labels, test_features, test_labels, num_epochs, learning_rate, weight_decay, batch_size):
train_ls, test_ls = [], []
train_iter = gdata.DataLoader(gdata.ArrayDataset(
train_features, train_labels), batch_size, shuffle=True)
trainer = gluon.Trainer(net.collect_params(), 'adam', {
'learning_rate': learning_rate, 'wd': weight_decay})
for epoch in range(num_epochs):
for X, y in train_iter:
with autograd.record():
l = loss(net(X), y)
l.backward()
trainer.step(batch_size)
train_ls.append(log_rmse(net, train_features, train_labels))
if test_labels is not None:
test_ls.append(log_rmse(net, test_features, test_labels))
return train_ls, test_ls
def get_k_fold_data(k, i, X, y):
assert k > 1
fold_size = X.shape[0] // k
X_train, y_train = None, None
for j in range(k):
idx = slice(j * fold_size, (j + 1) * fold_size)
X_part, y_part = X[idx, :], y[idx]
if j == i:
X_valid, y_valid = X_part, y_part
elif X_train is None:
X_train, y_train = X_part, y_part
else:
X_train = nd.concat(X_train, X_part, dim=0)
y_train = nd.concat(y_train, y_part, dim=0)
return X_train, y_train, X_valid, y_valid
def k_fold(k, X_train, y_train, num_epochs, learning_rate, weight_decay, batch_size):
train_l_sum, valid_l_sum = 0.0, 0.0
for i in range(k):
data = get_k_fold_data(k, i, X_train, y_train)
net = get_net()
train_ls, valid_ls = train(
net, *data, num_epochs, learning_rate, weight_decay, batch_size)
train_l_sum += train_ls[-1]
valid_l_sum += valid_ls[-1]
if i == 0:
d2l.semilogy(range(1, num_epochs + 1), train_ls, 'epochs', 'rmse',
range(1, num_epochs + 1), valid_ls, ['train', 'valid'])
print('fold %d, train rmse %f, valid rmse %f' %
(i, train_ls[-1], valid_ls[-1]))
return train_l_sum / k, valid_l_sum / k
k, num_epochs, lr, weight_decay, batch_size = 5, 100, 5, 0, 64
train_l, valid_l = k_fold(k, train_features, train_labels,
num_epochs, lr, weight_decay, batch_size)
print('%d-fold validation: avg train rmse %f, avg valid rmse %f' %
(k, train_l, valid_l))
# %%
def train_and_pred(train_features, test_features, train_labels, test_data, num_epochs, lr, weight_decay, batch_size):
net = get_net()
train_ls, _ = train(net, train_features, train_labels,
None, None, num_epochs, lr, weight_decay, batch_size)
d2l.semilogy(range(1, num_epochs + 1), train_ls, 'epochs', 'rmse')
print('train rmse %f' % train_ls[-1])
preds = net(test_features).asnumpy()
test_data['SalePrice'] = pd.Series(preds.reshape(1, -1)[0])
submission = pd.concat([test_data['Id'], test_data['SalePrice']], axis=1)
submission.to_csv('submission.csv', index=False)
train_and_pred(train_features, test_features, train_labels,
test_data, num_epochs, lr, weight_decay, batch_size)
# %%
| 2.46875 | 2 |
SVMToCoreML/venv/Lib/site-packages/coremltools/proto/DictVectorizer_pb2.py | blueXstar597/HandwritingRecognition | 1 | 12767488 | <filename>SVMToCoreML/venv/Lib/site-packages/coremltools/proto/DictVectorizer_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: DictVectorizer.proto
import sys
_b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1'))
from google.protobuf import descriptor as _descriptor
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
from google.protobuf import descriptor_pb2
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
import DataStructures_pb2 as DataStructures__pb2
FeatureTypes__pb2 = DataStructures__pb2.FeatureTypes__pb2
from DataStructures_pb2 import *
DESCRIPTOR = _descriptor.FileDescriptor(
name='DictVectorizer.proto',
package='CoreML.Specification',
syntax='proto3',
serialized_pb=_b('\n\x14\x44ictVectorizer.proto\x12\x14\x43oreML.Specification\x1a\x14\x44\x61taStructures.proto\"\x8f\x01\n\x0e\x44ictVectorizer\x12;\n\rstringToIndex\x18\x01 \x01(\x0b\x32\".CoreML.Specification.StringVectorH\x00\x12\x39\n\x0cint64ToIndex\x18\x02 \x01(\x0b\x32!.CoreML.Specification.Int64VectorH\x00\x42\x05\n\x03MapB\x02H\x03P\x00\x62\x06proto3')
,
dependencies=[DataStructures__pb2.DESCRIPTOR,],
public_dependencies=[DataStructures__pb2.DESCRIPTOR,])
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
_DICTVECTORIZER = _descriptor.Descriptor(
name='DictVectorizer',
full_name='CoreML.Specification.DictVectorizer',
filename=None,
file=DESCRIPTOR,
containing_type=None,
fields=[
_descriptor.FieldDescriptor(
name='stringToIndex', full_name='CoreML.Specification.DictVectorizer.stringToIndex', index=0,
number=1, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
_descriptor.FieldDescriptor(
name='int64ToIndex', full_name='CoreML.Specification.DictVectorizer.int64ToIndex', index=1,
number=2, type=11, cpp_type=10, label=1,
has_default_value=False, default_value=None,
message_type=None, enum_type=None, containing_type=None,
is_extension=False, extension_scope=None,
options=None),
],
extensions=[
],
nested_types=[],
enum_types=[
],
options=None,
is_extendable=False,
syntax='proto3',
extension_ranges=[],
oneofs=[
_descriptor.OneofDescriptor(
name='Map', full_name='CoreML.Specification.DictVectorizer.Map',
index=0, containing_type=None, fields=[]),
],
serialized_start=69,
serialized_end=212,
)
_DICTVECTORIZER.fields_by_name['stringToIndex'].message_type = DataStructures__pb2._STRINGVECTOR
_DICTVECTORIZER.fields_by_name['int64ToIndex'].message_type = DataStructures__pb2._INT64VECTOR
_DICTVECTORIZER.oneofs_by_name['Map'].fields.append(
_DICTVECTORIZER.fields_by_name['stringToIndex'])
_DICTVECTORIZER.fields_by_name['stringToIndex'].containing_oneof = _DICTVECTORIZER.oneofs_by_name['Map']
_DICTVECTORIZER.oneofs_by_name['Map'].fields.append(
_DICTVECTORIZER.fields_by_name['int64ToIndex'])
_DICTVECTORIZER.fields_by_name['int64ToIndex'].containing_oneof = _DICTVECTORIZER.oneofs_by_name['Map']
DESCRIPTOR.message_types_by_name['DictVectorizer'] = _DICTVECTORIZER
DictVectorizer = _reflection.GeneratedProtocolMessageType('DictVectorizer', (_message.Message,), dict(
DESCRIPTOR = _DICTVECTORIZER,
__module__ = 'DictVectorizer_pb2'
# @@protoc_insertion_point(class_scope:CoreML.Specification.DictVectorizer)
))
_sym_db.RegisterMessage(DictVectorizer)
DESCRIPTOR.has_options = True
DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('H\003'))
# @@protoc_insertion_point(module_scope)
| 1.429688 | 1 |
autodiff/examples/decorators.py | gwtaylor/pyautodiff | 59 | 12767489 | from autodiff import function, gradient
@function
def f(x):
return x ** 2
@gradient
def g(x):
return x ** 2
if __name__ == '__main__':
print 'x = 20'
print 'f(x) = {0}'.format(f(20.0))
print 'f\'(x) = {0}'.format(g(20.0))
| 3.359375 | 3 |
ciphey/basemods/Decoders/base64_url.py | AlexandruValeanu/Ciphey | 9,908 | 12767490 | import base64
from typing import Dict, Optional
from ciphey.iface import Config, Decoder, ParamSpec, T, U, registry
@registry.register
class Base64_url(Decoder[str]):
def decode(self, ctext: T) -> Optional[U]:
"""
Performs Base64 URL decoding
"""
ctext_padding = ctext + "=" * (4 - len(ctext) % 4)
try:
return base64.urlsafe_b64decode(ctext_padding).decode("utf-8")
except Exception:
return None
@staticmethod
def priority() -> float:
# Not expected to show up often, but also very fast to check.
return 0.05
def __init__(self, config: Config):
super().__init__(config)
@staticmethod
def getParams() -> Optional[Dict[str, ParamSpec]]:
return None
@staticmethod
def getTarget() -> str:
return "base64_url"
| 2.765625 | 3 |
tests/test_basics.py | chnlkx/straxen | 0 | 12767491 | import numpy as np
import straxen
import tempfile
import os
import unittest
import shutil
import uuid
test_run_id_1T = '180423_1021'
class TestBasics(unittest.TestCase):
@classmethod
def setUpClass(cls) -> None:
temp_folder = uuid.uuid4().hex
# Keep one temp dir because we don't want to download the data every time.
cls.tempdir = os.path.join(tempfile.gettempdir(), temp_folder)
assert not os.path.exists(cls.tempdir)
print("Downloading test data (if needed)")
st = straxen.contexts.demo()
cls.run_id = test_run_id_1T
cls.st = st
@classmethod
def tearDownClass(cls):
# Make sure to only cleanup this dir after we have done all the tests
if os.path.exists(cls.tempdir):
shutil.rmtree(cls.tempdir)
def test_run_selection(self):
st = self.st
# Ignore strax-internal warnings
st.set_context_config({'free_options': tuple(st.config.keys())})
run_df = st.select_runs(available='raw_records')
print(run_df)
run_id = run_df.iloc[0]['name']
assert run_id == test_run_id_1T
def test_processing(self):
st = self.st
df = st.get_df(self.run_id, 'event_info')
assert len(df) > 0
assert 'cs1' in df.columns
assert df['cs1'].sum() > 0
assert not np.all(np.isnan(df['x'].values))
def test_get_livetime_sec(self):
st = self.st
events = st.get_array(self.run_id, 'peaks')
straxen.get_livetime_sec(st, test_run_id_1T, things=events)
def test_mini_analysis(self):
@straxen.mini_analysis(requires=('raw_records',))
def count_rr(raw_records):
return len(raw_records)
n = self.st.count_rr(self.run_id)
assert n > 100
| 2.265625 | 2 |
spectrum.py | ttarhan/pixel-audio-visualizer | 0 | 12767492 | <reponame>ttarhan/pixel-audio-visualizer
import numpy as np
from matplotlib import pyplot as plt
from scipy import fftpack as fft
COLORS = [
(0, 0, 255),
(0, 255, 255),
(0, 255, 0),
(255, 255, 0),
(255, 128, 0),
(255, 0, 0),
(255, 0, 255)
]
class AudioSpectrum(object):
def __init__(self, sampleinfo, startchannel, ledcount, lowfreq, highfreq, energylow, energyhigh, reverse):
self.startchannel = startchannel
self.ledcount = ledcount
self.frequencies = fft.rfftfreq(sampleinfo.chunk, 1/sampleinfo.rate)
self.energylow = energylow
self.energyhigh = energyhigh
self.energyrange = self.energyhigh - self.energylow
self.reverse = reverse
bins = np.linspace(lowfreq, highfreq, self.ledcount)
binned = np.digitize(self.frequencies, bins)
# Digitize returns a bin after our last bin for out-of-range items; chop it off
self.binned = binned[binned < self.ledcount]
# How many unique bins did we end up with?
usable_bins = np.unique(self.binned).size
self.led_multiple = int(self.ledcount / usable_bins)
self.led_offset = int((self.ledcount - usable_bins * self.led_multiple) / 2)
self.ln = None
def frame(self, audio, audiofft, dmx):
# dBS = 10 * np.log10(audiofft)
newvalues = list(groupbins(self.binned, audiofft))
maxvalues = [max(m) if len(m) else 0 for m in newvalues]
# maxvalues = [sum(map(lambda x:x*x,m)) if len(m) else 0 for m in newvalues]
buffer = np.full((self.ledcount, 3), 0, dtype = np.uint8)
for (i,v) in enumerate(maxvalues):
if v < self.energylow:
continue
colorindex = (v - self.energylow) / self.energyrange * (len(COLORS) - 1)
colorindex = int(min(colorindex, len(COLORS) - 1))
chan = self.led_offset + i * self.led_multiple
endchan = chan + self.led_multiple - 1
buffer[chan:endchan + 1] = COLORS[colorindex]
dmx[self.startchannel:self.startchannel+self.ledcount] = np.flip(buffer, 0) if self.reverse else buffer
if self.ln is not None:
self.ln.remove()
# self.ln, = plt.plot(self.frequencies,audiofft)
# self.ln, = plt.plot(np.reshape(dmx,-1))
# plt.pause(0.005)
# print(f'Diff: {round(time.time()-lt,4)}')
def groupbins(bins, data):
current = []
curbin = bins[0]
for (i,d) in enumerate(bins):
if d != curbin:
yield current
current = []
curbin = d
current.append(data[i])
yield current | 2.625 | 3 |
rds/client/python/example_postgres/basic_examples/bytea_select.py | BigMountainTiger/aws-cdk-examples | 2 | 12767493 | <gh_stars>1-10
import os
import psycopg2
from pprint import pprint
CONSTR = 'postgres://postgres:<PASSWORD>@database-<EMAIL>-east-<EMAIL>:5432/StudentDB'
def save_to_file(file_id, file_content):
# Create the directory if not exists
directory = './images/files-from-db/'
if not os.path.exists(directory):
os.makedirs(directory)
with open(f'{directory}file-{file_id}.jpg', 'wb') as file:
file.write(file_content)
def connect():
sql = 'select * from public.image_test where id = %s'
try:
conn = psycopg2.connect(CONSTR)
cur = conn.cursor()
cur.execute(sql, [2])
row = cur.fetchone()
cur.close()
file_id = row[0]
file_content = row[1].tobytes()
save_to_file(file_id, file_content)
except (Exception) as error:
print(error)
finally:
if conn is not None:
conn.close()
if __name__ == '__main__':
connect()
print('Done') | 3.25 | 3 |
plugins/coral/src/main.py | ctso/scrypted | 0 | 12767494 | from __future__ import annotations
from asyncio.events import AbstractEventLoop, TimerHandle
from asyncio.futures import Future
from typing import Mapping
from safe_set_result import safe_set_result
import scrypted_sdk
import numpy as np
import re
import tflite_runtime.interpreter as tflite
from pycoral.utils.edgetpu import make_interpreter
from pycoral.utils.edgetpu import list_edge_tpus
from pycoral.utils.edgetpu import run_inference
from pycoral.adapters.common import input_size
from pycoral.adapters import detect
from PIL import Image
import common
import io
import gstreamer
import json
import asyncio
import time
import os
import binascii
from urllib.parse import urlparse
from gi.repository import Gst
import multiprocessing
from third_party.sort import Sort
from scrypted_sdk.types import FFMpegInput, Lock, MediaObject, ObjectDetection, ObjectDetectionModel, ObjectDetectionResult, ObjectDetectionSession, OnOff, ObjectsDetected, ScryptedInterface, ScryptedMimeTypes
def parse_label_contents(contents: str):
lines = contents.splitlines()
ret = {}
for row_number, content in enumerate(lines):
pair = re.split(r'[:\s]+', content.strip(), maxsplit=1)
if len(pair) == 2 and pair[0].strip().isdigit():
ret[int(pair[0])] = pair[1].strip()
else:
ret[row_number] = content.strip()
return ret
class DetectionSession:
id: str
timerHandle: TimerHandle
future: Future
loop: AbstractEventLoop
score_threshold: float
running: bool
def __init__(self) -> None:
self.timerHandle = None
self.future = Future()
self.tracker = Sort()
self.running = False
def cancel(self):
if self.timerHandle:
self.timerHandle.cancel()
self.timerHandle = None
def timedOut(self):
safe_set_result(self.future)
def setTimeout(self, duration: float):
self.cancel()
self.loop.call_later(duration, lambda: self.timedOut())
class CoralPlugin(scrypted_sdk.ScryptedDeviceBase, ObjectDetection):
detection_sessions: Mapping[str, DetectionSession] = {}
session_mutex = multiprocessing.Lock()
def __init__(self, nativeId: str | None = None):
super().__init__(nativeId=nativeId)
labels_contents = scrypted_sdk.zip.open(
'fs/coco_labels.txt').read().decode('utf8')
self.labels = parse_label_contents(labels_contents)
edge_tpus = list_edge_tpus()
if len(edge_tpus):
model = scrypted_sdk.zip.open(
'fs/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite').read()
self.interpreter = make_interpreter(model)
else:
model = scrypted_sdk.zip.open(
'fs/mobilenet_ssd_v2_coco_quant_postprocess.tflite').read()
self.interpreter = tflite.Interpreter(model_content=model)
self.interpreter.allocate_tensors()
self.mutex = multiprocessing.Lock()
async def getInferenceModels(self) -> list[ObjectDetectionModel]:
ret = list[ObjectDetectionModel]()
_, height, width, channels = self.interpreter.get_input_details()[
0]['shape']
d = {
'id': 'mobilenet_ssd_v2_coco_quant_postprocess_edgetpu',
'name': '<NAME>',
'classes': list(self.labels.values()),
'inputShape': [int(width), int(height), int(channels)],
}
ret.append(d)
return ret
def create_detection_result(self, objs, size, tracker: Sort = None):
detections = list[ObjectDetectionResult]()
detection_result: ObjectsDetected = {}
detection_result['detections'] = detections
detection_result['inputDimensions'] = size
tracker_detections = []
for obj in objs:
element = [] # np.array([])
element.append(obj.bbox.xmin)
element.append(obj.bbox.ymin)
element.append(obj.bbox.xmax)
element.append(obj.bbox.ymax)
element.append(obj.score) # print('element= ',element)
tracker_detections.append(element)
tracker_detections = np.array(tracker_detections)
trdata = []
trackerFlag = False
if tracker and tracker_detections.any():
trdata = tracker.update(tracker_detections)
trackerFlag = True
if trackerFlag and (np.array(trdata)).size:
for td in trdata:
x0, y0, x1, y1, trackID = td[0].item(), td[1].item(
), td[2].item(), td[3].item(), td[4].item()
overlap = 0
for ob in objs:
dx0, dy0, dx1, dy1 = ob.bbox.xmin, ob.bbox.ymin, ob.bbox.xmax, ob.bbox.ymax
area = (min(dx1, x1)-max(dx0, x0)) * \
(min(dy1, y1)-max(dy0, y0))
if (area > overlap):
overlap = area
obj = ob
detection: ObjectDetectionResult = {}
detection['id'] = str(trackID)
detection['boundingBox'] = (
obj.bbox.xmin, obj.bbox.ymin, obj.bbox.ymax, obj.bbox.ymax)
detection['className'] = self.labels.get(obj.id, obj.id)
detection['score'] = obj.score
detections.append(detection)
else:
for obj in objs:
detection: ObjectDetectionResult = {}
detection['boundingBox'] = (
obj.bbox.xmin, obj.bbox.ymin, obj.bbox.ymax, obj.bbox.ymax)
detection['className'] = self.labels.get(obj.id, obj.id)
detection['score'] = obj.score
detections.append(detection)
return detection_result
def detection_event(self, detection_session: DetectionSession, detection_result: ObjectsDetected, event_buffer: bytes = None):
detection_result['detectionId'] = detection_session.id
detection_result['timestamp'] = int(time.time() * 1000)
asyncio.run_coroutine_threadsafe(self.onDeviceEvent(
ScryptedInterface.ObjectDetection.value, detection_result), loop=detection_session.loop)
def end_session(self, detection_session: DetectionSession):
print('detection ended', detection_session.id)
detection_session.cancel()
with self.session_mutex:
self.detection_sessions.pop(detection_session.id, None)
detection_result: ObjectsDetected = {}
detection_result['running'] = False
self.detection_event(detection_session, detection_result)
async def detectObjects(self, mediaObject: MediaObject, session: ObjectDetectionSession = None) -> ObjectsDetected:
score_threshold = -float('inf')
duration = None
detection_id = None
if session:
detection_id = session.get('detectionId', -float('inf'))
duration = session.get('duration', None)
score_threshold = session.get('minScore', score_threshold)
is_image = mediaObject and mediaObject.mimeType.startswith('image/')
with self.session_mutex:
if not is_image and not detection_id:
detection_id = binascii.b2a_hex(os.urandom(15)).decode('utf8')
if detection_id:
detection_session = self.detection_sessions.get(detection_id, None)
if not duration and not is_image:
if detection_session:
self.end_session(detection_session)
return
elif detection_id and not detection_session:
if not mediaObject:
raise Exception(
'session %s inactive and no mediaObject provided' % detection_id)
detection_session = DetectionSession()
detection_session.id = detection_id
detection_session.score_threshold = score_threshold
loop = asyncio.get_event_loop()
detection_session.loop = loop
self.detection_sessions[detection_id] = detection_session
detection_session.future.add_done_callback(
lambda _: self.end_session(detection_session))
if is_image:
stream = io.BytesIO(bytes(await scrypted_sdk.mediaManager.convertMediaObjectToBuffer(mediaObject, 'image/jpeg')))
image = Image.open(stream)
_, scale = common.set_resized_input(
self.interpreter, image.size, lambda size: image.resize(size, Image.ANTIALIAS))
tracker = None
if detection_session:
tracker = detection_session.tracker
with self.mutex:
self.interpreter.invoke()
objs = detect.get_objects(
self.interpreter, score_threshold=score_threshold, image_scale=scale)
return self.create_detection_result(objs, image.size, tracker = tracker)
new_session = not detection_session.running
if new_session:
detection_session.running = True
detection_session.setTimeout(duration / 1000)
if not new_session:
return
print('detection starting', detection_id)
b = await scrypted_sdk.mediaManager.convertMediaObjectToBuffer(mediaObject, ScryptedMimeTypes.MediaStreamUrl.value)
s = b.decode('utf8')
j: FFMpegInput = json.loads(s)
container = j['container']
videofmt = 'raw'
videosrc = j['url']
if container == 'mpegts' and videosrc.startswith('tcp://'):
parsed_url = urlparse(videosrc)
videofmt = 'gst'
videosrc = 'tcpclientsrc port=%s host=%s ! tsdemux' % (
parsed_url.port, parsed_url.hostname)
size = j['mediaStreamOptions']['video']
inference_size = input_size(self.interpreter)
width, height = inference_size
w, h = (size['width'], size['height'])
scale = min(width / w, height / h)
def user_callback(input_tensor, src_size, inference_box):
with self.mutex:
run_inference(self.interpreter, input_tensor)
objs = detect.get_objects(
self.interpreter, score_threshold=score_threshold, image_scale=(scale, scale))
# (result, mapinfo) = input_tensor.map(Gst.MapFlags.READ)
try:
detection_result = self.create_detection_result(objs,
src_size, detection_session.tracker)
# self.detection_event(detection_session, detection_result, mapinfo.data.tobytes())
self.detection_event(detection_session, detection_result)
if not session or not duration:
safe_set_result(detection_session.future)
finally:
# input_tensor.unmap(mapinfo)
pass
pipeline = gstreamer.run_pipeline(detection_session.future, user_callback,
src_size=(
size['width'], size['height']),
appsink_size=inference_size,
videosrc=videosrc,
videofmt=videofmt)
task = pipeline.run()
asyncio.ensure_future(task)
detection_result: ObjectsDetected = {}
detection_result['detectionId'] = detection_id
detection_result['running'] = True
return detection_result
def create_scrypted_plugin():
return CoralPlugin()
#
| 1.9375 | 2 |
tests/test_utility.py | yahoo/pypirun | 2 | 12767495 | import os
import shutil
import unittest
from pypirun import utility
class TestUtility(unittest.TestCase):
test_key = 'OUROATH_UTILITY'
def tearDown(self):
try:
del os.environ[self.test_key]
except KeyError:
pass
def test__env_bool__default(self):
self.assertTrue(utility.env_bool(self.test_key, True))
self.assertFalse(utility.env_bool(self.test_key, False))
def test__env_bool__true(self):
os.environ[self.test_key] = 'True'
self.assertTrue(utility.env_bool(self.test_key, False))
def test__env_bool__false(self):
os.environ[self.test_key] = 'False'
self.assertFalse(utility.env_bool(self.test_key, True))
def test__which__allow_symlink(self):
result = utility.which('python3', allow_symlink=True)
self.assertEqual(result, shutil.which('python3'))
def test__which__allow_symlink__false(self):
result = utility.which('python3', allow_symlink=False)
| 2.75 | 3 |
app/utils.py | tradaviahe1982/labman-master | 10 | 12767496 | <reponame>tradaviahe1982/labman-master
import logging
import random
import string
from multiprocessing import Process
from flask import render_template
from flask_mail import Message
from log4mongo.handlers import MongoHandler
from PIL import Image
from app import CONFIG, mailer
from app.db import get_db
def rand_str(len, case='any'):
if case == 'any':
str_set = string.ascii_letters + string.digits
elif case == 'lower':
str_set = string.ascii_lowercase + string.digits
elif case == 'upper':
str_set = string.ascii_uppercase + string.digits
else:
raise ValueError('case must be "lower", "upper" or "any"')
return ''.join(random.choice(str_set) for i in range(len))
def get_next_uid():
db = get_db()
res = db.counters.find_one_and_update(
{'_id': 'uid'}, {'$inc': {'next_uid': 1}})
return res['next_uid']
def get_position_name(position_id):
for pid, pname in CONFIG['positions']:
if pid == position_id:
return pname
return None
def get_logger(name):
logging.basicConfig(level=CONFIG['log']['level'])
logger = logging.getLogger(name)
logger.addHandler(MongoHandler(host=CONFIG['db']['ip'],
capped=CONFIG['log']['capped']))
return logger
def crop_square(filename):
img = Image.open(filename)
w, h = img.size
if w == h:
return
elif w > h:
x = round((w - h) / 2)
region = img.crop((x, 0, x + h, h))
else:
y = round((h - w) / 2)
region = img.crop((0, y, w, y + w))
region.save(filename)
def send_mail(subject, member, content):
msg = Message(subject,
body='Hi {},\n\n{}'.format(member.en_name, content),
html=render_template('email.html', to_name=member.en_name, content=content),
recipients=[member.email])
mailer.send(msg)
def async_send_mail(subject, member, content):
p = Process(target=send_mail, args=(subject, member, content))
p.start()
| 1.9375 | 2 |
Lambda/send-telegram-message-2/lambda_function.py | wyutong1997/SmartMedicineDispenser | 5 | 12767497 | <reponame>wyutong1997/SmartMedicineDispenser
import json
import os
from botocore.vendored import requests
def executeCommand(command:str, chat_id:int, text:str)->str:
hyper_url = "http://ec544.hopto.org:7786/"
if command == "patients":
requests.post(hyper_url + "patients", data={"did": chat_id}).json()
#requests.post("https://1eb82cd0e02229fbc16e5923449d0dcf.m.pipedream.net", data={"did": chat_id}).json()
elif command == "prescriptions":
#requests.post(hyper_url + "medlist", data={"did": chat_id, "pid": text.replace('/prescriptions', '').strip()}).json()
requests.post("https://1eb82cd0e02229fbc16e5923449d0dcf.m.pipedream.net", data={"did": chat_id, "pid": text.replace('/prescriptions', '').strip()}).json()
elif command == "progress":
#requests.post(hyper_url + "progress", data={"did": chat_id, "pid": text.replace('/progress', '').strip()}).json()
requests.post("https://1eb82cd0e02229fbc16e5923449d0dcf.m.pipedream.net", data={"did": chat_id, "pid": text.replace('/progress', '').strip()}).json()
elif command == "meddetail":
#requests.post(hyper_url + "meddetail", data={"did": chat_id, "pid": text.replace('/meddetail', '').strip()}).json()
requests.post("https://1eb82cd0e02229fbc16e5923449d0dcf.m.pipedream.net", data={"did": chat_id, "pid": text.replace('/meddetail', '').strip()}).json()
else:
return "Valid bot commands:\n" \
"/patients - name & age of patients\n" \
"/progress - side effects or symptoms this week\n" \
"/prescriptions [patient ID] - list of medications\n" \
"/meddetail [med ID] - details of 1 medication {}".format(command)
return 'ok'
def lambda_handler(event, context):
field_errors = {}
command = ""
if 'message' in event:
message = event['message']
if 'from' in message:
chat_id = str(message['from']['id']).strip()
else:
field_errors['chat_id'] = "Dr's ID missing"
if 'text' in message:
text = message['text']
else:
field_errors['text'] = "Text missing"
if 'entities' in message:
entities = message['entities']
for entity in entities:
if entity['type'] == "bot_command":
command = text[entity['offset']+1:entity['offset']+entity['length']]
telegram_msg = executeCommand(command, chat_id, text)
if telegram_msg != 'ok':
params = {'chat_id': chat_id, 'text': telegram_msg}
telegram_token = os.environ['TELEGRAM_BOT_TOKEN']
api_url = "https://api.telegram.org/bot"+telegram_token+"/"
res = requests.post(api_url + "sendMessage", data=params).json()
if not res["ok"]:
print(res)
return{
"statusCode": 400,
"body": res
}
break
else:
field_errors['message'] = "Message missing"
if field_errors:
raise Exception(json.dumps({'field_errors': field_errors}))
return {
"statusCode": 200,
"body": "success"
}
| 2.234375 | 2 |
dao/control/db/migrate_repo/versions/003_add_port.py | Symantec/dao-control | 0 | 12767498 | from sqlalchemy import Column, Table, MetaData, Index
import logging
from sqlalchemy.dialects.mysql.base import DATETIME
from sqlalchemy.dialects.mysql.base import INTEGER
from sqlalchemy.dialects.mysql.base import VARCHAR
LOG = logging.getLogger(__name__)
def upgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
port = Table(
'port', meta,
Column('created_at', DATETIME),
Column('updated_at', DATETIME),
Column('deleted_at', DATETIME),
Column('deleted', INTEGER(display_width=11)),
Column('key', VARCHAR(length=128)),
Column('id', INTEGER(display_width=11),
primary_key=True, nullable=False),
Column('device_id', VARCHAR(length=32), nullable=False),
Column('rack_name', VARCHAR(length=32), nullable=False),
Column('vlan_tag', INTEGER(display_width=11), nullable=False),
Column('ip', VARCHAR(length=15)),
Column('mac', VARCHAR(length=31)),
)
try:
port.create()
except Exception:
LOG.info(repr(port))
LOG.exception('Exception while creating table.')
raise
indexes = [
Index('port_vlan_tag_idx', port.c.vlan_tag),
Index('port_rack_name_idx', port.c.rack_name)
]
for index in indexes:
index.create(migrate_engine)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
table = Table('port', meta, autoload=True)
table.drop()
| 2.234375 | 2 |
tushare_trader/datayes/idx.py | gorf/tushare-trader | 1 | 12767499 | # -*- coding:utf-8 -*-
"""
通联数据
Created on 2015/08/24
@author: <NAME>
@group : waditu
@contact: <EMAIL>
"""
from io import StringIO
import pandas as pd
from tushare.util import vars as vs
from tushare.util.common import Client
from tushare.util import upass as up
class Idx():
def __init__(self, client=None):
if client is None:
self.client = Client(up.get_token())
else:
self.client = client
def Idx(self, secID='', ticker='', field=''):
"""
获取国内外指数的基本要素信息,包括指数名称、指数代码、发布机构、发布日期、基日、基点等。
"""
code, result = self.client.getData(vs.IDX%(secID, ticker, field))
return _ret_data(code, result)
def IdxCons(self, secID='', ticker='', intoDate='', isNew='', field=''):
"""
获取国内外指数的成分构成情况,包括指数成分股名称、成分股代码、入选日期、剔除日期等。
"""
code, result = self.client.getData(vs.IDXCONS%(secID, ticker, intoDate,
intoDate, isNew, field))
return _ret_data(code, result)
def _ret_data(code, result):
if code==200:
result = result.decode('utf-8') if vs.PY3 else result
df = pd.read_csv(StringIO(result))
return df
else:
print(result)
return None
| 2.328125 | 2 |
continuous-umps/try_this_first.py | jemisjoky/Continuous-uMPS | 0 | 12767500 | import torch
# After running `make install` in the torchmps folder, this should work
from torchmps import ProbMPS
# Dummy parameters for the model and data
bond_dim = 13
input_dim = 2
batch_size = 55
sequence_len = 21
complex_params = True
# Verify that you can initialize the model
my_mps = ProbMPS(sequence_len, input_dim, bond_dim, complex_params)
# Verify that a Pytorch optimizer initializes properly
optimizer = torch.optim.Adam(my_mps.parameters())
# Create dummy discrete index data (has to be integer/long type!)
data = torch.randint(high=input_dim, size=(sequence_len, batch_size))
# Verify that the model forward function works on dummy data
log_probs = my_mps(data)
assert log_probs.shape == (batch_size,)
# Verify that backprop works fine, and that gradients are populated
loss = my_mps.loss(data) # <- Negative log likelihood loss
assert all(p.grad is None for p in my_mps.parameters())
# Normally we have to call optimizer.zero_grad before loss.backward, but
# this is just single training run so it doesn't matter
loss.backward()
optimizer.step()
assert all(p.grad is not None for p in my_mps.parameters())
# Congrats, you're ready to start writing the actual training script!
print("Yay, things seem to be working :)")
| 2.984375 | 3 |
examples/example_test/main.py | lcopey/node_editor | 1 | 12767501 | <reponame>lcopey/node_editor
import sys
import os
import inspect
from PyQt5.QtWidgets import *
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../..'))
from node_editor.node_editor_window import NodeEditorWindow
from node_editor.utils import loadStylessheet
if __name__ == '__main__':
app = QApplication(sys.argv)
wnd = NodeEditorWindow()
wnd.nodeEditor.addNodes()
module_path = os.path.dirname(inspect.getfile(wnd.__class__))
loadStylessheet(os.path.join(module_path, 'qss\\nodestyle.qss'))
sys.exit(app.exec_())
| 2.203125 | 2 |
tests/vtk_ui/test_vtk_ui_handle_interaction.py | scottwittenburg/vcs | 11 | 12767502 | """
Tests handle's interactivity.
"""
import vcs.vtk_ui
import vtk_ui_test
import decimal
class test_vtk_ui_handle_interaction(vtk_ui_test.vtk_ui_test):
def setUp(self):
super(test_vtk_ui_handle_interaction, self).setUp()
self.h = None
self.h2 = None
def do(self):
self.win.SetSize(100, 100)
self.h = vcs.vtk_ui.Handle(self.inter, (5, 5), clicked=self.clicked, dragged=self.dragged, released=self.released)
self.h.show()
self.mouse_down(5, 5)
self.mouse_move(10, 10)
self.mouse_up(10, 10)
# Test normalized drag provides normalized dx/dy
self.h2 = vcs.vtk_ui.Handle(self.inter, (.3, .3), dragged=self.norm_drag, normalize=True)
self.h2.show()
self.mouse_down(30, 30)
self.mouse_move(40, 40)
self.mouse_up(40, 40)
assert self.passed == 5, "Did not trigger drag on normalized"
self.passed = 0
def norm_drag(self, handle, dx, dy):
assert handle == self.h2, "Normalized passed wrong handle to drag"
assert decimal.Decimal("%f" % dx) == decimal.Decimal("%f" % .1), "DX normalized incorrectly; %f when expecting %f" % (dx, .1)
assert decimal.Decimal("%f" % dy) == decimal.Decimal("%f" % .1), "DY normalized incorrectly; %f when expecting %f" % (dy, .1)
assert self.passed == 4, "Did not trigger released"
self.passed = 5
def clicked(self, handle):
assert handle == self.h, "Clicked received argument that was not the handle"
self.passed = 2
def dragged(self, handle, dx, dy):
assert handle == self.h, "Dragged received argument that was not the handle"
assert dx == 5, "DX was different from expected value"
assert dy == 5, "DY was different from expected value"
assert self.passed == 2, "Did not trigger clicked before dragging"
self.passed = 3
def released(self, handle):
assert handle == self.h, "Released received argument that was not the handle"
assert self.passed == 3, "Did not trigger dragged before released"
self.passed = 4
if __name__ == "__main__":
t = test_vtk_ui_handle_interaction()
t.test()
| 2.46875 | 2 |
scrape-twitter-example.py | kemalcanbora/python-examples | 1 | 12767503 | #!/usr/bin/python3
# scrape twitter example going to web page for twitter profile
# author: <NAME>
# date: 2015 06 02
# Note: MUST USE PYTHON 3 from terminal
import json
import urllib.request, urllib.parse
import random
from bs4 import BeautifulSoup
useragents = ['Mozilla/5.0','Bandicout Broadway 2.4','Carls Crawler Critter 1.0','Dirty Dungeon Diksearch 69','Internet Explorer but better']
# function that returns one random value from a list only
def singlerando(listofterms):
randomed = random.choice(listofterms)
return randomed
def parseT(twitterpage):
soup = BeautifulSoup(twitterpage) # create a new bs4 object from the html data loaded
for script in soup(["script", "style"]): # remove all javascript and stylesheet code
script.extract()
# get text
text = soup.get_text()
tester = soup.find_all("p", class_="tweet-text")
print(tester[1].text)
exit()
def searchT(searchfor):
randomuseragent = singlerando(useragents) # select a random user agent from list
headers = { 'User-Agent' : randomuseragent } # get random header from above
url = 'https://twitter.com/%s' % searchfor # GOOGLE ajax API string
search_response_pre = urllib.request.Request(url,None,headers) # key to get the random headers to work
search_response = urllib.request.urlopen(search_response_pre)
search_results = search_response.read().decode("utf8")
#print(search_results)
parseT(search_results)
# global dictionary list of terms - do not change
diction = []
subset = []
twitteruser = input('Enter twitter user: ')
searchT(twitteruser)
exit()
| 3.5625 | 4 |
odoo_actions/utils.py | catalyst-cloud/adjutant-odoo | 1 | 12767504 | <reponame>catalyst-cloud/adjutant-odoo<filename>odoo_actions/utils.py<gh_stars>1-10
# Copyright (C) 2016 Catalyst IT Ltd
#
# 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.
from uuid import uuid4
from random import randint
def generate_short_id():
"""
Quick and dirty function to create a vaguely unique short id.
Mainly to be used to append to something to make it unique,
but unique enough to avoid a few subsequent calls making the
same id.
"""
length = 6
uuid = uuid4().hex
clip_range = randint(0, (31-length))
return uuid[clip_range:clip_range+length]
| 1.875 | 2 |
ML/ml.py | slav9n4ik/openhack2020 | 0 | 12767505 | <filename>ML/ml.py
#!/usr/bin/python
import sys
from random import seed
from random import randint
from time import sleep
#seed(1)
print('Argument List:', str(sys.argv))
sleep(15)
print('ID:', randint(0, 999999), ", Value: ", randint(0, 999999)) | 2.34375 | 2 |
module_scikit-learn/logistic_regression.py | robert-g-butler/python_reference_guide | 1 | 12767506 | '''
This script contains examples of Logistic Regression analysis, using the
SciKit-Learn library.
Logistic regression is useful when trying to classify data between 2 binary
groups / labels. For example, a logistic model would be useful to predict if
someone has a disease (1) or does not have a disease (0).
Logistic regression uses the sigmoid function, which can only output between
0 - 1.
'''
import pathlib2
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression
from sklearn import metrics
# Data is from here: https://www.kaggle.com/c/titanic/data
csv_url = ('https://raw.githubusercontent.com/robert-g-butler/python_reference'
'_guide/master/dummy_data/logistic_dummy_data.csv')
df = pd.read_csv(csv_url)
# Explore the data with graphs ------------------------------------------------
df.head()
df.info()
sns.set_style(style='whitegrid')
sns.heatmap(data=df.isna(), cmap='viridis') # yticklabels=False, cbar=False
plt.show()
sns.countplot(x='Survived', data=df, hue='Sex', palette='RdBu_r'); plt.show()
sns.countplot(x='Survived', data=df, hue='Pclass'); plt.show()
sns.distplot(df['Age'].dropna(), bins=30); plt.show() # kde=False
sns.countplot(x='SibSp', data=df); plt.show()
df['Fare'].hist(bins=40, figsize=(10, 4)); plt.show()
# Clean missing values --------------------------------------------------------
# Clean missing Age values. Impute Age by Pclass.
sns.boxplot(x='Pclass', y='Age', data=df); plt.show()
sns.heatmap(data=df.isna(), cmap='viridis'); plt.show()
def impute_age(cols):
age = cols['Age']
pclass = cols['Pclass']
if pd.isna(age):
if pclass == 1:
return 37
elif pclass == 2:
return 29
else:
return 24
else:
return age
df['Age'] = df[['Age', 'Pclass']].apply(func=impute_age, axis=1)
sns.heatmap(data=df.isna(), cmap='viridis'); plt.show()
# Drop the Cabin variable because there are too many missing values.
df.drop(columns='Cabin', axis=1, inplace=True)
sns.heatmap(data=df.isna(), cmap='viridis'); plt.show()
# Drop any remaining rows with missing values.
df.dropna(inplace=True)
sns.heatmap(data=df.isna(), cmap='viridis'); plt.show()
# Update text & categorical columns with numerical data -----------------------
# Get numerical values for each text column.
pd.get_dummies(df['Sex'])
# We must use 'drop_first' to avoid having 1 column perfectly the others.
# This problem is called 'multi-colinearity'.
sex = pd.get_dummies(df['Sex'], drop_first=True)
embarked = pd.get_dummies(df['Embarked'], drop_first=True)
df = pd.concat([df, sex, embarked], axis=1)
df.head()
# Drop columns that are text or aren't useful for prediction.
df.drop(['PassengerId', 'Sex', 'Embarked', 'Name', 'Ticket'], axis=1, inplace=True)
df.head()
# Create the model ------------------------------------------------------------
X = df.drop('Survived', axis=1)
y = df['Survived']
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=.25)
logmodel = LogisticRegression()
logmodel.fit(X=X_train, y=y_train)
predictions = logmodel.predict(X=X_test)
# Check the prediction accuracy with 'classification_report'
print(metrics.classification_report(y_true=y_test, y_pred=predictions))
# Check the prediction accuracy with a 'confusion_matrix'
metrics.confusion_matrix(y_true=y_test, y_pred=predictions)
| 3.890625 | 4 |
editor.py | Commander07/Magnitude | 6 | 12767507 | import editor
editor.start()
| 1.054688 | 1 |
common/world.py | FrostMiser/Frostica | 1 | 12767508 | from models.tile import Tile
# TILE REFERENCE
# 0 = show covered mountains
# 1 = flat snow
# 2 = water
# 3 = trees
# 4 = mountains
world = {
'x': 0,
'y': 0,
'tiles': []
}
def get_tile_id(x, y):
if y < 0 or x < 0:
tile_id = -1
else:
try:
world_y = world['tiles'][y]
tile_id = world_y[x]
except (ValueError, IndexError, KeyError):
tile_id = -1
return tile_id
def get_tile(tile_id, session):
return session.query(Tile).get(tile_id)
def get_tile_from(x, y, session):
tile_id = get_tile_id(x, y)
return get_tile(tile_id, session)
def get_local_area(pos_x, pos_y, limit=5):
negative_offset_x = pos_x - limit
negative_offset_y = pos_y - limit
positive_offset_x = pos_x + limit
positive_offset_y = pos_y + limit
local_area = {
'x': negative_offset_x,
'y': negative_offset_y,
'tiles': []
}
for y in range(negative_offset_y, positive_offset_y):
y_chunk = []
for x in range(negative_offset_x, positive_offset_x):
tile_id = get_tile_id(x, y)
y_chunk.append(tile_id)
local_area['tiles'].append(y_chunk)
return local_area
| 2.484375 | 2 |
Introduction.py | mudgalsaurabh/IEEE-Python_Workshop-2018 | 3 | 12767509 | <gh_stars>1-10
age = 5+(8%3)-3+(3*10)/2
greetings = "Welcome to IEEE Python Workshop 2018 edition. It's my pleasure to conduct today's workshop for you."
name = "<NAME>"
major = "mechanical engineering"
print(greetings)
print("My name is " + name + ".")
print("I am " + str(age) + " years old and am majoring in " + major + ".")
| 3.453125 | 3 |
glsl/sema.py | yoshou/ratchetwrench | 0 | 12767510 | <filename>glsl/sema.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from ast.node import *
from glsl.symtab import SymbolTable, Symbol
def register_function_proto(node, sym_table, is_constructor=False):
proto = node
ty = sym_table.find_type(proto.type.specifier)
params = []
for param in proto.params:
param_name = param.ident.val if param.ident is not None else None
param_ty = sym_table.find_type(param.type.specifier)
if isinstance(param.type, FullType):
param_quals = param.type.qualifiers
else:
param_quals = []
params.append((param_ty, param_quals, param_name))
name = proto.ident.val
if is_constructor:
name = FuncSignature(name, [param[0] for param in params])
sym = sym_table.register_func(name, ty, params)
return TypedFunctionProto(ty, sym, params, [])
def evaluate_constant_expr(expr):
if isinstance(expr, IntegerConstantExpr):
return expr.val
raise ValueError()
def register_variable(node, sym_table):
from ast.types import ArrayType
ty = sym_table.find_type(
node.type.specifier, node.type.array_specifier)
if isinstance(node.type, FullType):
quals = node.type.qualifiers
else:
quals = []
variables = []
for ident, arr_spec, initializer in node.idents:
ty2 = ty
if arr_spec:
ty2 = ty
for sz in arr_spec.sizes:
ty2 = ArrayType(ty2, evaluate_constant_expr(sz))
var = sym_table.register_var(ident.val, ty2, quals)
assert(ty2)
variables.append([TypedIdentExpr(var, ty2), initializer])
return TypedVariable(ty, variables, [])
def enter_node(node, depth, sym_table: SymbolTable):
from ast.types import ArrayType
if isinstance(node, Function):
proto = register_function_proto(node.proto, sym_table)
param_names = []
for param in node.proto.params:
param_name = param.ident.val if param.ident is not None else None
param_names.append(param_name)
sym_table.push_scope()
params = []
for param_names, (param_ty, param_quals, param_name) in zip(param_names, proto.params):
if param_names is not None:
params.append(sym_table.register_var(
param_names, param_ty, param_quals))
node = TypedFunction(proto, params, node.stmts)
if isinstance(node, FunctionProto):
node = register_function_proto(node, sym_table)
if isinstance(node, Variable):
register_variable(node, sym_table)
if isinstance(node, StructSpecifier):
fields = []
for decl in node.decls:
for declor in decl.declarators:
ty = sym_table.find_type(decl.type.specifier)
fields.append((ty, declor.ident, declor.arrspec))
sym_table.register_composite_type(node.ident, fields)
if isinstance(node, CompoundStmt):
sym_table.push_scope()
if isinstance(node, IfStmt):
sym_table.push_scope()
return node
def is_incr_func_type(t):
return t in ['int', 'uint']
scalar_convertable = [
# (to, from)
('int', 'uint'),
('int', 'bool'),
('int', 'float'),
('int', 'double'),
('uint', 'int'),
('uint', 'bool'),
('uint', 'float'),
('uint', 'double'),
('bool', 'int'),
('bool', 'uint'),
('bool', 'float'),
('bool', 'double'),
('float', 'int'),
('float', 'uint'),
('float', 'bool'),
('float', 'double'),
('double', 'int'),
('double', 'uint'),
('double', 'bool'),
('double', 'float'),
]
implicit_convertable = [
# (to, from)
('uint', 'int'),
('float', 'int'),
('float', 'uint'),
('double', 'int'),
('double', 'uint'),
('double', 'float'),
# TODO: Not implemented. Need additional items.
]
integer_types = [
'int', 'uint'
]
integer_vec_types = [
# TODO: Not implemented.
]
def compute_binary_op_type(op, lhs_type, rhs_type, sym_table):
from ast.types import PrimitiveType, VectorType
lhs_is_vec = isinstance(lhs_type, VectorType)
rhs_is_vec = isinstance(rhs_type, VectorType)
if lhs_is_vec or rhs_is_vec:
if lhs_is_vec and rhs_is_vec:
assert(lhs_type.size == rhs_type.size)
size = lhs_type.size
elif lhs_is_vec:
size = lhs_type.size
else:
size = rhs_type.size
if lhs_is_vec:
lhs_type = lhs_type.elem_ty
if rhs_is_vec:
rhs_type = rhs_type.elem_ty
# Arithematic operators
if op in ['+', '-', '*', '/']:
able_conv_lhs = [to_type for to_type,
from_type in implicit_convertable if from_type == lhs_type.name] + [lhs_type.name]
if rhs_type.name in able_conv_lhs:
if lhs_is_vec or rhs_is_vec:
return VectorType(rhs_type, size)
return rhs_type
able_conv_rhs = [to_type for to_type,
from_type in implicit_convertable if from_type == rhs_type.name] + [rhs_type.name]
if lhs_type.name in able_conv_rhs:
if lhs_is_vec or rhs_is_vec:
return VectorType(lhs_type, size)
return lhs_type
# Bitwise operators
if op in ['&', '^', '|']:
able_conv_lhs = [to_type for to_type,
from_type in implicit_convertable if from_type == lhs_type.name] + [lhs_type.name]
if rhs_type.name in able_conv_lhs:
return rhs_type
able_conv_rhs = [to_type for to_type,
from_type in implicit_convertable if from_type == rhs_type.name] + [rhs_type.name]
if lhs_type.name in able_conv_rhs:
return lhs_type
if op in ['==', '!=', '<', '>', '<=', '>=']:
able_conv_lhs = [to_type for to_type,
from_type in implicit_convertable if from_type == lhs_type.name] + [lhs_type.name]
if rhs_type.name in able_conv_lhs:
return sym_table.find_type('bool')
able_conv_rhs = [to_type for to_type,
from_type in implicit_convertable if from_type == rhs_type.name] + [rhs_type.name]
if lhs_type.name in able_conv_rhs:
return sym_table.find_type('bool')
if op in ['<<', '>>']:
if lhs_type.name in integer_types and rhs_type.name in integer_types:
return lhs_type
if lhs_type.name in integer_vec_types and rhs_type.name in integer_vec_types:
return lhs_type
# Logical operators
if op in ['&&', '^^', '||']:
if lhs_type.name == 'bool' and rhs_type.name == 'bool':
return lhs_type
if op in ['=', '+=', '-=', '*=', '/=']:
able_conv_rhs = [to_type for to_type,
from_type in implicit_convertable if from_type == rhs_type.name] + [rhs_type.name]
if lhs_type.name in able_conv_rhs:
return lhs_type
return None
def is_scalar_convertable(from_type: str, to_type: str):
return (to_type, from_type) in scalar_convertable
def is_implicit_convertable(from_type: str, to_type: str):
return (to_type, from_type) in implicit_convertable
def is_typed_expr(node):
return isinstance(node, (
TypedBinaryOp,
TypedIdentExpr,
IntegerConstantExpr,
FloatingConstantExpr,
TypedUnaryOp,
TypedPostOp,
TypedAccessorOp,
TypedArrayIndexerOp,
TypedFunctionCall))
def is_constructor(name):
return name in [
"float", "vec2", "vec3", "vec4"
]
def mangle_func_name(name):
if name in ["sin", "cos", "abs", "sqrt", "mod", "min", "max"]:
return "glsl_" + name
return name
def exit_node(node, depth, sym_table):
from ast.types import ArrayType
if isinstance(node, TypedFunction):
sym_table.pop_scope()
if isinstance(node, CompoundStmt):
sym_table.pop_scope()
if isinstance(node, IfStmt):
sym_table.pop_scope()
if isinstance(node, IntegerConstantExpr):
ty = sym_table.find_type(node.type.specifier)
assert(ty.name in ["int", "uint"])
node = IntegerConstantExpr(node.val, ty)
if isinstance(node, FloatingConstantExpr):
ty = sym_table.find_type(node.type.specifier)
assert(ty.name in ["float", "double"])
node = FloatingConstantExpr(node.val, ty)
if isinstance(node, Variable):
variables = []
ty = sym_table.find_type(node.type.specifier)
for ident, arr_spec, initializer in node.idents:
ty2 = ty
if arr_spec:
ty2 = ty
for sz in arr_spec.sizes:
ty2 = ArrayType(ty2, evaluate_constant_expr(sz))
var = sym_table.find_var(ident.val)
assert(ty2)
variables.append([TypedIdentExpr(var, ty2), initializer])
node = TypedVariable(ty, variables, [])
if isinstance(node, IdentExpr):
var = sym_table.find_var(node.val)
if var is not None:
assert(var.ty)
typed_node = TypedIdentExpr(var, var.ty)
func_name = mangle_func_name(node.val)
func = sym_table.find_func(func_name)
if func is not None:
typed_node = TypedIdentExpr(func, func.ty)
if typed_node is None:
raise RuntimeError(f"Error: Undefined identity \"{node.val}\"")
node = typed_node
if isinstance(node, BinaryOp):
from ast.types import PrimitiveType, VectorType
assert(is_typed_expr(node.lhs))
assert(is_typed_expr(node.rhs))
lhs = node.lhs
rhs = node.rhs
lhs_type = lhs.type
rhs_type = rhs.type
return_type = compute_binary_op_type(
node.op, lhs_type, rhs_type, sym_table)
if return_type is None:
raise RuntimeError(
f"Error: Undefined operation between types \"{lhs_typename}\" and \"{rhs_typename}\" with op \"{node.op}\"")
ty = sym_table.find_type(return_type.name)
# if lhs_typename != return_type:
# lhs = CastExpr(node.lhs, ty)
# if rhs_typename != return_type:
# rhs = CastExpr(node.rhs, ty)
node = TypedBinaryOp(node.op, lhs, rhs, ty)
if isinstance(node, ConditionalExpr):
assert(is_typed_expr(node.true_expr))
assert(is_typed_expr(node.false_expr))
assert(is_typed_expr(node.cond_expr))
true_expr = node.true_expr
false_expr = node.false_expr
cond_expr = node.cond_expr
assert(true_expr.type == false_expr.type)
assert(cond_expr.type.name == "bool")
ty = sym_table.find_type(true_expr.type.name)
node = TypedConditionalExpr(
node.cond_expr, node.true_expr, node.false_expr, ty)
if isinstance(node, UnaryOp):
assert(is_typed_expr(node.expr))
expr_typename = node.expr.type.name
if node.op in ["++", "--"]:
if not is_incr_func_type(expr_typename):
raise RuntimeError(
f"Error: Not supporting types with increment \"{expr_typename}\"")
node = TypedUnaryOp(node.op, node.expr, node.expr.type)
if isinstance(node, PostOp):
assert(is_typed_expr(node.expr))
expr_typename = node.expr.type.name
if not is_incr_func_type(expr_typename):
raise RuntimeError(
f"Error: Not supporting types with increment \"{expr_typename}\"")
node = TypedPostOp(node.op, node.expr, node.expr.type)
if isinstance(node, ArrayIndexerOp):
assert(is_typed_expr(node.arr))
arr_type = node.arr.type
assert(isinstance(arr_type, ArrayType))
node = TypedArrayIndexerOp(node.arr, node.idx, arr_type.elem_ty)
if isinstance(node, AccessorOp):
assert(is_typed_expr(node.obj))
obj_typename = node.obj.type.name
field_type = sym_table.find_type_and_field(
obj_typename, node.field.val)
if field_type is None:
raise RuntimeError(
f"Error: Invalid field access \"{node.field.val}\" in \"{obj_typename}\"")
node = TypedAccessorOp(node.obj, node.field, field_type[0])
if isinstance(node, FunctionCall):
if isinstance(node.ident, TypedIdentExpr):
func_name = node.ident.val.name
elif isinstance(node.ident, Type):
func_name = node.ident.specifier
else:
raise NotImplementedError()
func_name = mangle_func_name(func_name)
arg_tys = [arg.type for arg in node.params]
if is_constructor(func_name):
func_name = FuncSignature(func_name, arg_tys)
func_def = sym_table.find_func(func_name)
if func_def is None:
raise RuntimeError(
f"Error: The function \"{func_name}\" not defined.")
func_type = func_def.ty.return_ty
func_params = func_def.ty.params
# check parameter
pos = 0
for (param_type, param_quals, param_name), arg in zip(func_params, node.params):
if not (param_type.name == arg.type.name
or is_implicit_convertable(arg.type.name, param_type.name)):
raise RuntimeError(
f"Error: Invalid type \"{arg.type.name}\" found at position \"{pos}\" must be \"{param_type.name}\".")
pos += 1
node = TypedFunctionCall(func_def, node.params, func_type)
return node
class FuncSignature:
def __init__(self, name, param_types):
self.name = name
self.param_types = param_types
def __hash__(self):
return hash((self.name, *self.param_types))
def __eq__(self, other):
if not isinstance(other, FuncSignature):
return False
return self.name == other.name and self.param_types == other.param_types
def __ne__(self, other):
return not self.__eq__(other)
def __str__(self):
return self.name + "_" + str(len(self.param_types))
def setup_buildin_decls(sym_table):
# vec constructor
for i in range(1, 4):
size = i + 1
params = [FunctionParam(Type('float', None), None, None)] * size
proto = FunctionProto(
Type(f'vec{size}', None), Ident(f'vec{size}'), params)
yield register_function_proto(proto, sym_table, True)
params = [FunctionParam(Type('float', None), None, None)]
proto = FunctionProto(
Type(f'vec{size}', None), Ident(f'vec{size}'), params)
yield register_function_proto(proto, sym_table, True)
for i in range(2, 4):
size = i + 1
params = [FunctionParam(Type(f'vec{size-1}', None), None, None),
FunctionParam(Type('float', None), None, None)]
proto = FunctionProto(
Type(f'vec{size}', None), Ident(f'vec{size}'), params)
yield register_function_proto(proto, sym_table, True)
# dot
proto = FunctionProto(Type('float', None), Ident('dot'), [
FunctionParam(Type('vec3', None), None, None),
FunctionParam(Type('vec3', None), None, None)])
yield register_function_proto(proto, sym_table)
# normalize
proto = FunctionProto(Type('vec3', None), Ident('normalize'), [
FunctionParam(Type('vec3', None), None, None)])
yield register_function_proto(proto, sym_table)
# reflect
proto = FunctionProto(Type('vec3', None), Ident('reflect'), [
FunctionParam(Type('vec3', None), None, None),
FunctionParam(Type('vec3', None), None, None)])
yield register_function_proto(proto, sym_table)
# clamp
proto = FunctionProto(Type('float', None), Ident('clamp'), [
FunctionParam(Type('float', None), None, None),
FunctionParam(Type('float', None), None, None),
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# fract
proto = FunctionProto(Type('float', None), Ident('glsl_fract'), [
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# mod
proto = FunctionProto(Type('float', None), Ident('glsl_mod'), [
FunctionParam(Type('float', None), None, None),
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# min
proto = FunctionProto(Type('float', None), Ident('glsl_min'), [
FunctionParam(Type('float', None), None, None),
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# max
proto = FunctionProto(Type('float', None), Ident('glsl_max'), [
FunctionParam(Type('float', None), None, None),
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# sqrt
proto = FunctionProto(Type('float', None), Ident('glsl_sqrt'), [
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# abs
proto = FunctionProto(Type('float', None), Ident('glsl_abs'), [
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# sin
proto = FunctionProto(Type('float', None), Ident('glsl_sin'), [
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# cos
proto = FunctionProto(Type('float', None), Ident('glsl_cos'), [
FunctionParam(Type('float', None), None, None)])
yield register_function_proto(proto, sym_table)
# memoryBarrier
proto = FunctionProto(Type('void', None), Ident('memoryBarrier'), [])
yield register_function_proto(proto, sym_table)
variable = Variable(FullType(["uniform"], 'vec3', None), [
[IdentExpr('gl_FragCoord', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'vec4', None), [
[IdentExpr('gl_FragColor', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'uvec3', None), [
[IdentExpr('gl_NumWorkGroups', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'uvec3', None), [
[IdentExpr('gl_WorkGroupID', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'uvec3', None), [
[IdentExpr('gl_LocalInvocationID', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'uvec3', None), [
[IdentExpr('gl_GlobalInvocationID', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["uniform"], 'uint', None), [
[IdentExpr('gl_LocalInvocationIndex', ), None, None]])
yield register_variable(variable, sym_table)
variable = Variable(FullType(["const"], 'uvec3', None), [
[IdentExpr('gl_WorkGroupSize', ), None, None]])
yield register_variable(variable, sym_table)
def semantic_analysis(ast):
sym_table = SymbolTable()
buildin_decls = list(setup_buildin_decls(sym_table))
analyzed = buildin_decls + \
traverse_depth_update(ast, enter_node, exit_node, sym_table)
return (analyzed, sym_table)
| 2.203125 | 2 |
hashes/password-to-ntlm.py | r0kit/Pentesting-Templates | 0 | 12767511 | import argparse
import hashlib
import binascii
def run(args):
h = hashlib.new('md4', args.password.encode('utf-16le')).digest()
print(binascii.hexlify(h).decode('utf-8'))
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Make an NTLM hash from a password.')
parser.add_argument('--password', dest='password', type=str, help='the password to hash', required=True)
try:
args = parser.parse_args()
run(args)
except argparse.ArgumentError as e:
print("[!] {}".format(e))
parser.print_usage()
sys.exit(1)
| 3.1875 | 3 |
pyleecan/Functions/Optimization/tournamentDCD.py | IrakozeFD/pyleecan | 95 | 12767512 | <reponame>IrakozeFD/pyleecan
from random import sample, choice
def choseDCD(indiv_1, indiv_2):
"""Chose between two individuals
Parameters
----------
indiv_1 : individual
indiv_2 : individual
Returns
-------
individual selected
"""
if indiv_1.cstr_viol == 0 and indiv_2.cstr_viol > 0: # only indiv_1 feasible
return indiv_1
elif indiv_1.cstr_viol > 0 and indiv_2.cstr_viol == 0: # only indiv_2 feasible
return indiv_2
elif (
indiv_1.cstr_viol > 0 and indiv_2.cstr_viol > 0
): # indiv_1 and indiv_2 unfeasible
# Compare the number of constraint violations
if indiv_1.cstr_viol < indiv_2.cstr_viol:
return indiv_1
elif indiv_1.cstr_viol > indiv_2.cstr_viol:
return indiv_2
else:
return choice([indiv_1, indiv_2])
else: # Both indiv feasible
# Check domination, else check crowding distance, else random choice
if indiv_1.fitness.dominates(indiv_2.fitness):
return indiv_1
elif indiv_2.fitness.dominates(indiv_1.fitness):
return indiv_2
elif indiv_1.fitness.crowding_dist > indiv_2.fitness.crowding_dist:
return indiv_1
elif indiv_1.fitness.crowding_dist < indiv_2.fitness.crowding_dist:
return indiv_2
else:
return choice([indiv_1, indiv_2])
def tournamentDCD(pop, size):
"""Select individuals from the population with a tournament based on the domination and the crowding distance
This function is inspired by DEAP selTournamentDCD function at https://github.com/DEAP/deap/blob/master/deap/tools/emo.py
Parameters
----------
pop : list
list of individuals created with the DEAP toolbox
size : int
number of individual to select
Returns
-------
selection : list
list of individuals selected
"""
if len(pop) % 4 != 0:
raise ValueError("TournamentDCD: pop length must be a multiple of 4")
if size % 4 != 0:
raise ValueError(
"TournamentDCD: number of individuals to select must be a multiple of 4"
)
# Sample the population
indiv_1 = sample(pop, len(pop))
indiv_2 = sample(pop, len(pop))
selection = []
# Select individuals
for i in range(0, size, 4):
selection.append(choseDCD(indiv_1[i], indiv_1[i + 1]))
selection.append(choseDCD(indiv_2[i], indiv_2[i + 1]))
selection.append(choseDCD(indiv_1[i + 2], indiv_1[i + 3]))
selection.append(choseDCD(indiv_2[i + 2], indiv_2[i + 3]))
return selection
| 3.296875 | 3 |
lifelib/projects/savings_gallery/plot_option_value.py | fumitoh/lifelib | 77 | 12767513 | r"""
Monte Carlo vs Black-Scholes-Merton
===========================================
Time values of options and guarantees for various in-the-moneyness
are calculated using Monte Carlo simulations and the Black-Scholes-Merton
pricing formula for European put options.
The Black-Scholes-Merton pricing formula for European put options
can be expressed as below, where
:math:`X` and :math:`S_{0}` correspond to the sum assured
and the initial account value in this example.
.. math::
p=Xe^{-rT}N\left(-d_{2}\right)-S_{0}N\left(-d_{1}\right)
d_{1}=\frac{\ln\left(\frac{S_{0}}{X}\right)+\left(r+\frac{\sigma^{2}}{2}\right)T}{\sigma\sqrt{T}}
d_{2}=d_{1}-\sigma\sqrt{T}
The graph below shows the results obtained from
the Monte Carlo simulations with 10,000 risk neutral scenarios,
and from the Black-Scholes-Merton formula.
Reference: *Options, Futures, and Other Derivatives* by <NAME>
.. seealso::
* :doc:`/libraries/notebooks/savings/savings_example1` notebook in the :mod:`~savings` library
"""
import modelx as mx
import pandas as pd
import matplotlib.pyplot as plt
from scipy.stats import norm, lognorm
import numpy as np
model = mx.read_model("CashValue_ME_EX1")
proj = model.Projection
proj.model_point_table = proj.model_point_moneyness
monte_carlo = pd.Series(proj.pv_claims_over_av('MATURITY'), index=proj.model_point().index)
monte_carlo = list(np.average(monte_carlo[i]) for i in range(1, 10))
S0 = proj.model_point_table['premium_pp'] * proj.model_point_table['policy_count']
fig, ax = plt.subplots()
ax.scatter(S0, monte_carlo, s= 10, alpha=1, label='Monte Carlo')
ax.scatter(S0, proj.formula_option_put(120), alpha=0.5, label='Black-Scholes-Merton')
ax.legend()
ax.grid(True)
fig.suptitle('TVOG by ITM')
| 3.1875 | 3 |
src/codewars/7-kyu/uglify-word/uglify_word.py | nwthomas/code-challenges | 1 | 12767514 | """
Summary
In this kata, you have to make a function named uglify_word (uglifyWord in Java and Javascript). It accepts a string parameter.
What does the uglify_word do?
It checks the char in the given string from the front with an iteration, in the iteration it does these steps:
There is a flag and it will be started from 1.
Check the current char in the iteration index.
If it is an alphabet character [a-zA-Z] and the flag value is equal to 1, then change this character to upper case.
If it is an alphabet character [a-zA-Z] and the flag value is equal to 0, then change this character to lower case.
Otherwise, if it is not an alphabet character, then set the flag value to 1.
If the current char is an alphabet character, do a boolean not operation to the flag.
After the iteration has done, return the fixed string that might have been changed in such iteration.
Examples
uglify_word("aaa") === "AaA"
uglify_word("AAA") === "AaA"
uglify_word("BbB") === "BbB"
uglify_word("aaa-bbb-ccc") === "AaA-BbB-CcC"
uglify_word("AaA-BbB-CcC") === "AaA-BbB-CcC"
uglify_word("eeee-ffff-gggg") === "EeEe-FfFf-GgGg"
uglify_word("EeEe-FfFf-GgGg") === "EeEe-FfFf-GgGg"
uglify_word("qwe123asdf456zxc") === "QwE123AsDf456ZxC"
uglify_word("Hello World") === "HeLlO WoRlD"
"""
from re import match
def uglify_word(s):
flag = True
final = ""
for char in s:
if match("[a-zA-Z]", char):
final += char.upper() if flag else char.lower()
flag = False if flag else True
else:
final += char
flag = True
return final | 4.4375 | 4 |
flask-appointment-calendar/tests/test_models.py | codyhan94/PMA-scheduler | 1 | 12767515 | <filename>flask-appointment-calendar/tests/test_models.py
# -*- coding: utf-8 -*-
from fbone.user import User
from tests import TestCase
class TestUser(TestCase):
def test_get_current_time(self):
assert User.query.count() == 2
| 2.03125 | 2 |
lib/pylint/checkers/utils.py | willemneal/Docky | 0 | 12767516 | # pylint: disable=W0611
#
# Copyright (c) 2003-2013 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:<EMAIL>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""some functions that may be useful for various checkers
"""
import re
import sys
import string
import astroid
from astroid import scoped_nodes
from logilab.common.compat import builtins
BUILTINS_NAME = builtins.__name__
COMP_NODE_TYPES = astroid.ListComp, astroid.SetComp, astroid.DictComp, astroid.GenExpr
PY3K = sys.version_info[0] == 3
if not PY3K:
EXCEPTIONS_MODULE = "exceptions"
else:
EXCEPTIONS_MODULE = "builtins"
ABC_METHODS = set(('abc.abstractproperty', 'abc.abstractmethod',
'abc.abstractclassmethod', 'abc.abstractstaticmethod'))
class NoSuchArgumentError(Exception):
pass
def is_inside_except(node):
"""Returns true if node is inside the name of an except handler."""
current = node
while current and not isinstance(current.parent, astroid.ExceptHandler):
current = current.parent
return current and current is current.parent.name
def get_all_elements(node):
"""Recursively returns all atoms in nested lists and tuples."""
if isinstance(node, (astroid.Tuple, astroid.List)):
for child in node.elts:
for e in get_all_elements(child):
yield e
else:
yield node
def clobber_in_except(node):
"""Checks if an assignment node in an except handler clobbers an existing
variable.
Returns (True, args for W0623) if assignment clobbers an existing variable,
(False, None) otherwise.
"""
if isinstance(node, astroid.AssAttr):
return (True, (node.attrname, 'object %r' % (node.expr.as_string(),)))
elif isinstance(node, astroid.AssName):
name = node.name
if is_builtin(name):
return (True, (name, 'builtins'))
else:
stmts = node.lookup(name)[1]
if (stmts and not isinstance(stmts[0].ass_type(),
(astroid.Assign, astroid.AugAssign,
astroid.ExceptHandler))):
return (True, (name, 'outer scope (line %s)' % stmts[0].fromlineno))
return (False, None)
def safe_infer(node):
"""return the inferred value for the given node.
Return None if inference failed or if there is some ambiguity (more than
one node has been inferred)
"""
try:
inferit = node.infer()
value = next(inferit)
except astroid.InferenceError:
return
try:
next(inferit)
return # None if there is ambiguity on the inferred node
except astroid.InferenceError:
return # there is some kind of ambiguity
except StopIteration:
return value
def is_super(node):
"""return True if the node is referencing the "super" builtin function
"""
if getattr(node, 'name', None) == 'super' and \
node.root().name == BUILTINS_NAME:
return True
return False
def is_error(node):
"""return true if the function does nothing but raising an exception"""
for child_node in node.get_children():
if isinstance(child_node, astroid.Raise):
return True
return False
def is_raising(body):
"""return true if the given statement node raise an exception"""
for node in body:
if isinstance(node, astroid.Raise):
return True
return False
def is_empty(body):
"""return true if the given node does nothing but 'pass'"""
return len(body) == 1 and isinstance(body[0], astroid.Pass)
builtins = builtins.__dict__.copy()
SPECIAL_BUILTINS = ('__builtins__',) # '__path__', '__file__')
def is_builtin_object(node):
"""Returns True if the given node is an object from the __builtin__ module."""
return node and node.root().name == BUILTINS_NAME
def is_builtin(name): # was is_native_builtin
"""return true if <name> could be considered as a builtin defined by python
"""
if name in builtins:
return True
if name in SPECIAL_BUILTINS:
return True
return False
def is_defined_before(var_node):
"""return True if the variable node is defined by a parent node (list,
set, dict, or generator comprehension, lambda) or in a previous sibling
node on the same line (statement_defining ; statement_using)
"""
varname = var_node.name
_node = var_node.parent
while _node:
if isinstance(_node, COMP_NODE_TYPES):
for ass_node in _node.nodes_of_class(astroid.AssName):
if ass_node.name == varname:
return True
elif isinstance(_node, astroid.For):
for ass_node in _node.target.nodes_of_class(astroid.AssName):
if ass_node.name == varname:
return True
elif isinstance(_node, astroid.With):
for expr, ids in _node.items:
if expr.parent_of(var_node):
break
if (ids and
isinstance(ids, astroid.AssName) and
ids.name == varname):
return True
elif isinstance(_node, (astroid.Lambda, astroid.Function)):
if _node.args.is_argument(varname):
return True
if getattr(_node, 'name', None) == varname:
return True
break
elif isinstance(_node, astroid.ExceptHandler):
if isinstance(_node.name, astroid.AssName):
ass_node = _node.name
if ass_node.name == varname:
return True
_node = _node.parent
# possibly multiple statements on the same line using semi colon separator
stmt = var_node.statement()
_node = stmt.previous_sibling()
lineno = stmt.fromlineno
while _node and _node.fromlineno == lineno:
for ass_node in _node.nodes_of_class(astroid.AssName):
if ass_node.name == varname:
return True
for imp_node in _node.nodes_of_class((astroid.From, astroid.Import)):
if varname in [name[1] or name[0] for name in imp_node.names]:
return True
_node = _node.previous_sibling()
return False
def is_func_default(node):
"""return true if the given Name node is used in function default argument's
value
"""
parent = node.scope()
if isinstance(parent, astroid.Function):
for default_node in parent.args.defaults:
for default_name_node in default_node.nodes_of_class(astroid.Name):
if default_name_node is node:
return True
return False
def is_func_decorator(node):
"""return true if the name is used in function decorator"""
parent = node.parent
while parent is not None:
if isinstance(parent, astroid.Decorators):
return True
if (parent.is_statement or
isinstance(parent, astroid.Lambda) or
isinstance(parent, (scoped_nodes.ComprehensionScope,
scoped_nodes.ListComp))):
break
parent = parent.parent
return False
def is_ancestor_name(frame, node):
"""return True if `frame` is a astroid.Class node with `node` in the
subtree of its bases attribute
"""
try:
bases = frame.bases
except AttributeError:
return False
for base in bases:
if node in base.nodes_of_class(astroid.Name):
return True
return False
def assign_parent(node):
"""return the higher parent which is not an AssName, Tuple or List node
"""
while node and isinstance(node, (astroid.AssName,
astroid.Tuple,
astroid.List)):
node = node.parent
return node
def overrides_an_abstract_method(class_node, name):
"""return True if pnode is a parent of node"""
for ancestor in class_node.ancestors():
if name in ancestor and isinstance(ancestor[name], astroid.Function) and \
ancestor[name].is_abstract(pass_is_abstract=False):
return True
return False
def overrides_a_method(class_node, name):
"""return True if <name> is a method overridden from an ancestor"""
for ancestor in class_node.ancestors():
if name in ancestor and isinstance(ancestor[name], astroid.Function):
return True
return False
PYMETHODS = set(('__new__', '__init__', '__del__', '__hash__',
'__str__', '__repr__',
'__len__', '__iter__',
'__delete__', '__get__', '__set__',
'__getitem__', '__setitem__', '__delitem__', '__contains__',
'__getattribute__', '__getattr__', '__setattr__', '__delattr__',
'__call__',
'__enter__', '__exit__',
'__cmp__', '__ge__', '__gt__', '__le__', '__lt__', '__eq__',
'__nonzero__', '__neg__', '__invert__',
'__mul__', '__imul__', '__rmul__',
'__div__', '__idiv__', '__rdiv__',
'__add__', '__iadd__', '__radd__',
'__sub__', '__isub__', '__rsub__',
'__pow__', '__ipow__', '__rpow__',
'__mod__', '__imod__', '__rmod__',
'__and__', '__iand__', '__rand__',
'__or__', '__ior__', '__ror__',
'__xor__', '__ixor__', '__rxor__',
# XXX To be continued
))
def check_messages(*messages):
"""decorator to store messages that are handled by a checker method"""
def store_messages(func):
func.checks_msgs = messages
return func
return store_messages
class IncompleteFormatString(Exception):
"""A format string ended in the middle of a format specifier."""
pass
class UnsupportedFormatCharacter(Exception):
"""A format character in a format string is not one of the supported
format characters."""
def __init__(self, index):
Exception.__init__(self, index)
self.index = index
def parse_format_string(format_string):
"""Parses a format string, returning a tuple of (keys, num_args), where keys
is the set of mapping keys in the format string, and num_args is the number
of arguments required by the format string. Raises
IncompleteFormatString or UnsupportedFormatCharacter if a
parse error occurs."""
keys = set()
num_args = 0
def next_char(i):
i += 1
if i == len(format_string):
raise IncompleteFormatString
return (i, format_string[i])
i = 0
while i < len(format_string):
char = format_string[i]
if char == '%':
i, char = next_char(i)
# Parse the mapping key (optional).
key = None
if char == '(':
depth = 1
i, char = next_char(i)
key_start = i
while depth != 0:
if char == '(':
depth += 1
elif char == ')':
depth -= 1
i, char = next_char(i)
key_end = i - 1
key = format_string[key_start:key_end]
# Parse the conversion flags (optional).
while char in '#0- +':
i, char = next_char(i)
# Parse the minimum field width (optional).
if char == '*':
num_args += 1
i, char = next_char(i)
else:
while char in string.digits:
i, char = next_char(i)
# Parse the precision (optional).
if char == '.':
i, char = next_char(i)
if char == '*':
num_args += 1
i, char = next_char(i)
else:
while char in string.digits:
i, char = next_char(i)
# Parse the length modifier (optional).
if char in 'hlL':
i, char = next_char(i)
# Parse the conversion type (mandatory).
if PY3K:
flags = 'diouxXeEfFgGcrs%a'
else:
flags = 'diouxXeEfFgGcrs%'
if char not in flags:
raise UnsupportedFormatCharacter(i)
if key:
keys.add(key)
elif char != '%':
num_args += 1
i += 1
return keys, num_args
def is_attr_protected(attrname):
"""return True if attribute name is protected (start with _ and some other
details), False otherwise.
"""
return attrname[0] == '_' and not attrname == '_' and not (
attrname.startswith('__') and attrname.endswith('__'))
def node_frame_class(node):
"""return klass node for a method node (or a staticmethod or a
classmethod), return null otherwise
"""
klass = node.frame()
while klass is not None and not isinstance(klass, astroid.Class):
if klass.parent is None:
klass = None
else:
klass = klass.parent.frame()
return klass
def is_super_call(expr):
"""return True if expression node is a function call and if function name
is super. Check before that you're in a method.
"""
return (isinstance(expr, astroid.CallFunc) and
isinstance(expr.func, astroid.Name) and
expr.func.name == 'super')
def is_attr_private(attrname):
"""Check that attribute name is private (at least two leading underscores,
at most one trailing underscore)
"""
regex = re.compile('^_{2,}.*[^_]+_?$')
return regex.match(attrname)
def get_argument_from_call(callfunc_node, position=None, keyword=None):
"""Returns the specified argument from a function call.
:param callfunc_node: Node representing a function call to check.
:param int position: position of the argument.
:param str keyword: the keyword of the argument.
:returns: The node representing the argument, None if the argument is not found.
:raises ValueError: if both position and keyword are None.
:raises NoSuchArgumentError: if no argument at the provided position or with
the provided keyword.
"""
if position is None and keyword is None:
raise ValueError('Must specify at least one of: position or keyword.')
try:
if position is not None and not isinstance(callfunc_node.args[position], astroid.Keyword):
return callfunc_node.args[position]
except IndexError as error:
raise NoSuchArgumentError(error)
if keyword:
for arg in callfunc_node.args:
if isinstance(arg, astroid.Keyword) and arg.arg == keyword:
return arg.value
raise NoSuchArgumentError
def inherit_from_std_ex(node):
"""
Return true if the given class node is subclass of
exceptions.Exception.
"""
if node.name in ('Exception', 'BaseException') \
and node.root().name == EXCEPTIONS_MODULE:
return True
return any(inherit_from_std_ex(parent)
for parent in node.ancestors(recurs=False))
def is_import_error(handler):
"""
Check if the given exception handler catches
ImportError.
:param handler: A node, representing an ExceptHandler node.
:returns: True if the handler catches ImportError, False otherwise.
"""
names = None
if isinstance(handler.type, astroid.Tuple):
names = [name for name in handler.type.elts
if isinstance(name, astroid.Name)]
elif isinstance(handler.type, astroid.Name):
names = [handler.type]
else:
# Don't try to infer that.
return
for name in names:
try:
for infered in name.infer():
if (isinstance(infered, astroid.Class) and
inherit_from_std_ex(infered) and
infered.name == 'ImportError'):
return True
except astroid.InferenceError:
continue
def has_known_bases(klass):
"""Returns true if all base classes of a class could be inferred."""
try:
return klass._all_bases_known
except AttributeError:
pass
for base in klass.bases:
result = safe_infer(base)
# TODO: check for A->B->A->B pattern in class structure too?
if (not isinstance(result, astroid.Class) or
result is klass or
not has_known_bases(result)):
klass._all_bases_known = False
return False
klass._all_bases_known = True
return True
def decorated_with_property(node):
""" Detect if the given function node is decorated with a property. """
if not node.decorators:
return False
for decorator in node.decorators.nodes:
if not isinstance(decorator, astroid.Name):
continue
try:
for infered in decorator.infer():
if isinstance(infered, astroid.Class):
if (infered.root().name == BUILTINS_NAME and
infered.name == 'property'):
return True
for ancestor in infered.ancestors():
if (ancestor.name == 'property' and
ancestor.root().name == BUILTINS_NAME):
return True
except astroid.InferenceError:
pass
def decorated_with_abc(func):
"""Determine if the `func` node is decorated with `abc` decorators."""
if func.decorators:
for node in func.decorators.nodes:
try:
infered = next(node.infer())
except astroid.InferenceError:
continue
if infered and infered.qname() in ABC_METHODS:
return True
def unimplemented_abstract_methods(node, is_abstract_cb=decorated_with_abc):
"""
Get the unimplemented abstract methods for the given *node*.
A method can be considered abstract if the callback *is_abstract_cb*
returns a ``True`` value. The check defaults to verifying that
a method is decorated with abstract methods.
The function will work only for new-style classes. For old-style
classes, it will simply return an empty dictionary.
For the rest of them, it will return a dictionary of abstract method
names and their inferred objects.
"""
visited = {}
try:
mro = reversed(node.mro())
except NotImplementedError:
# Old style class, it will not have a mro.
return {}
for ancestor in mro:
for obj in ancestor.values():
infered = obj
if isinstance(obj, astroid.AssName):
infered = safe_infer(obj)
if not infered:
continue
if not isinstance(infered, astroid.Function):
if obj.name in visited:
del visited[obj.name]
if isinstance(infered, astroid.Function):
# It's critical to use the original name,
# since after inferring, an object can be something
# else than expected, as in the case of the
# following assignment.
#
# class A:
# def keys(self): pass
# __iter__ = keys
abstract = is_abstract_cb(infered)
if abstract:
visited[obj.name] = infered
elif not abstract and obj.name in visited:
del visited[obj.name]
return visited
| 2.046875 | 2 |
chapter_4/problem_2.py | misterwilliam/cracking-coding-interview | 0 | 12767517 | import unittest
class Node(object):
def __init__(self, data, children=None):
self.data = data
if children is None:
self.children = []
else:
self.children = children
def is_connected(a, b):
todo = [a]
seen = set(todo)
while len(todo) > 0:
current = todo.pop() # DFS
if current is b:
return True
for child in current.children:
if child not in seen:
seen.add(child)
todo.append(child)
return False
class IsConnectedTests(unittest.TestCase):
def test_is_connected(self):
a = Node("a")
b = Node("b")
c = Node("c")
a.children.append(b)
b.children.append(c)
c.children.append(a)
self.assertTrue(is_connected(a, c))
def test_is_not_connected(self):
a = Node("a")
b = Node("b")
self.assertFalse(is_connected(a, b))
def test_does_not_get_stuck_in_loops(self):
# Create loop
a = Node("a")
b = Node("b")
c = Node("c")
a.children.append(b)
b.children.append(c)
c.children.append(a)
d = Node("d")
self.assertFalse(is_connected(a, d))
if __name__ == "__main__":
unittest.main() | 3.71875 | 4 |
uninas/modules/modules/abstract.py | cogsys-tuebingen/uninas | 18 | 12767518 | import types
from collections.abc import Iterator
import torch
import torch.nn as nn
from uninas.register import Register
from uninas.utils.shape import Shape, ShapeList, ShapeOrList
from uninas.utils.args import ArgsInterface
from uninas.utils.paths import make_base_dirs
from uninas.utils.torch.misc import randomize_parameters
from typing import Union, List
tensor_type = Union[torch.Tensor, List[torch.Tensor]]
class AbstractModule(nn.Module):
"""
the basis for all .config() saving + restoring
"""
def __init__(self, *_, **__):
nn.Module.__init__(self)
if len(_) > 0:
print('unknown args (%s):' % self.__class__.__name__, __)
if len(__) > 0:
print('unknown kwargs (%s):' % self.__class__.__name__, __)
# dicts that contain the keys of everything that goes into a config and can be restored
self._kwargs = [] # saved, printed
self._np_kwargs = [] # saved, not printed
self._p_kwargs = [] # not saved, printed
self._submodules = []
self._submodule_lists = []
self._submodule_dicts = []
self._add_to_print_kwargs(**__)
self.dropout_rate = None
self.cached = dict(built=False) # some info about shapes in/out
def set(self, **kwargs):
""" set new value to a parameter and kwargs / misc_kwargs """
for k, v in kwargs.items():
self.__dict__[k] = v
def get_cached(self, k: str, default=None):
return self.cached.get(k, default)
def is_built(self) -> bool:
return self.cached.get("built", False)
def get_shape_in(self, may_be_none=False) -> ShapeOrList:
s_in = self.get_cached('shape_in')
if not may_be_none:
assert isinstance(s_in, ShapeOrList.__args__)
return s_in
def get_shape_out(self, may_be_none=False) -> ShapeOrList:
s_out = self.get_cached('shape_out')
if not may_be_none:
assert isinstance(s_out, ShapeOrList.__args__)
return s_out
# listing modules/kwargs to save+restore via configs ---------------------------------------------------------------
def _add(self, lst: list, are_modules=False, **kwargs):
for k, v in kwargs.items():
lst.append(k)
if are_modules:
self.add_module(k, v)
else:
self.__dict__[k] = v
def _add_to_kwargs(self, **kwargs):
""" store named values (not Modules, which need to have config stored and be rebuilt) """
self._add(self._kwargs, are_modules=False, **kwargs)
def _add_to_kwargs_np(self, **kwargs):
""" store named values (not Modules, which need to have config stored and be rebuilt) """
self._add(self._np_kwargs, are_modules=False, **kwargs)
def _add_to_print_kwargs(self, **kwargs):
""" store named values for printing only """
self._add(self._p_kwargs, are_modules=False, **kwargs)
def _add_to_submodules(self, **kwargs):
""" store named modules """
self._add(self._submodules, are_modules=True, **kwargs)
def _add_to_submodule_lists(self, **kwargs):
""" store named lists of modules (nn.ModuleList) """
self._add(self._submodule_lists, are_modules=True, **kwargs)
def _add_to_submodule_dict(self, **kwargs):
""" store named dicts of modules (nn.ModuleDict) """
self._add(self._submodule_dicts, are_modules=True, **kwargs)
def kwargs(self):
return {k: self.__dict__[k] for k in self._kwargs+self._np_kwargs}
def config(self, **_) -> dict:
"""
get a dictionary describing this module, so that a builder can assemble it correctly again
subclasses may receive specific instructions via kwargs, e.g. whether to finalize a search architecture
"""
cfg_keys = ['kwargs', 'submodules', 'submodule_lists', 'submodule_dicts']
cfg = dict(name=self.__class__.__name__)
cfg.update({k: {} for k in cfg_keys})
for k in self._kwargs+self._np_kwargs:
cfg['kwargs'][k] = self.__dict__[k]
for k in self._submodules:
cfg['submodules'][k] = self._modules[k].config(**_)
for k in self._submodule_lists:
lst = self._modules[k]
cfg['submodule_lists'][k] = [v.config(**_) if v is not None else None for v in iter(lst)]
for k in self._submodule_dicts:
dct = self._modules[k]
cfg['submodule_dicts'][k] = {dk: dv.config(**_) if dv is not None else None for dk, dv in dct.items()}
# remove empty dicts
for k in list(cfg_keys):
if len(cfg[k]) == 0:
cfg.pop(k)
return cfg
@classmethod
def from_config(cls, **kwargs):
""" upon receiving a dictionary as created in self.config(), reassemble this module properly """
kwargs_ = kwargs.pop('kwargs', {})
submodules_ = {k: Register.builder.from_config(v) if v is not None else None
for k, v in kwargs.pop('submodules', {}).items()}
submodule_lists_ = {k: nn.ModuleList([Register.builder.from_config(v) if v is not None else None for v in lst])
for k, lst in kwargs.pop('submodule_lists', {}).items()}
submodule_dicts_ = {k: {dk: Register.builder.from_config(dv) if dv is not None else None
for dk, dv in dct.items()}
for k, dct in kwargs.pop('submodule_dicts', {}).items()}
return cls(**kwargs_, **submodules_, **submodule_lists_, **submodule_dicts_, **kwargs)
# presenting as string ---------------------------------------------------------------------------------------------
def _str_kwargs(self) -> str:
lst = []
for k in self._kwargs+self._p_kwargs:
lst.append('%s=%s' % (k, str(self.__dict__[k])))
return ', '.join(lst)
@staticmethod
def _str_tuple_submodule(obj, depth: int, max_depth: int, name='') -> [(int, str)]:
""" describe this module via indentation instructions and strings """
ss = []
if obj is not None and len(obj) > 0:
if depth < max_depth:
if isinstance(obj, (dict, nn.ModuleDict)):
for n, m in obj.items():
if isinstance(m, AbstractModule):
ss += m.str_tuples(depth=depth+1, max_depth=max_depth, name=n)
else:
ss += AbstractModule._str_tuple_submodule(m, depth + 1, max_depth, name=n)
elif isinstance(obj, (list, nn.ModuleList)):
for i, m in enumerate(obj):
n = '(%d)' % i
if isinstance(m, AbstractModule):
ss += m.str_tuples(depth=depth+1, max_depth=max_depth, name=n)
else:
ss += AbstractModule._str_tuple_submodule(m, depth + 1, max_depth, name=n)
else:
ss.append((depth, '<%d entries>' % (len(obj))))
if len(ss) == 0:
return []
s0, s1 = '%s = [' % name, ']'
if len(ss) == 1:
return [(depth, s0 + ss[0][1] + s1)]
return [(depth, s0)] + ss + [(depth, s1)]
def str_tuples(self, depth=0, max_depth=5, name='', add_s=None, add_sl=None, add_sd=None) -> [(int, str)]:
""" describe this module via indentation instructions and strings """
add_s = {} if add_s is None else add_s.copy()
add_sl = {} if add_sl is None else add_sl.copy()
add_sd = {} if add_sd is None else add_sd.copy()
add_s['Modules'] = {k: self._modules[k] for k in self._submodules}
add_sl['Module Lists'] = {k: self._modules[k] for k in self._submodule_lists}
add_sd['Module Dicts'] = {k: self._modules[k] for k in self._submodule_dicts}
s0 = '{n}{cls}({k}) ['.format(**{
'n': ('%s = ' % name) if len(name) > 0 else '',
'cls': self.__class__.__name__,
'k': self._str_kwargs(),
})
s1 = ']'
if depth >= max_depth:
ss = [(depth, '<%d modules, %d module lists, %d module dicts>' % (len(add_s), len(add_sl), len(add_sd)))]
else:
ss = []
for k, v in add_s.copy().items():
ss.extend(self._str_tuple_submodule(v, depth+1, max_depth, name=k))
for k, v in add_sl.copy().items():
ss.extend(self._str_tuple_submodule(v, depth+1, max_depth, name=k))
for k, v in add_sd.copy().items():
ss.extend(self._str_tuple_submodule(v, depth+1, max_depth, name=k))
ss = [s for s in ss if s is not None]
if len(ss) == 0:
return [(depth, s0 + s1)]
if len(ss) == 1:
return [(depth, s0 + ss[0][1] + s1)]
return [(depth, s0)] + ss + [(depth, s1)]
def str(self, depth=0, max_depth=5, name='', add_s=None, add_sl=None, add_sd=None) -> str:
strings = self.str_tuples(depth, max_depth, name, add_s, add_sl, add_sd)
return ''.join('\n%s%s' % ('. '*d, s) for d, s in strings)
# (recursive) utility ----------------------------------------------------------------------------------------------
@classmethod
def _get_base_modules(cls, m) -> list:
base_modules = []
if isinstance(m, AbstractModule):
base_modules.append(m)
elif isinstance(m, nn.ModuleList):
for m2 in iter(m):
base_modules.extend(cls._get_base_modules(m2))
elif isinstance(m, nn.ModuleDict):
for m2 in m.values():
base_modules.extend(cls._get_base_modules(m2))
return base_modules
def base_modules(self, recursive=True) -> Iterator:
""" yield all base modules, therefore all layers/modules of this project """
fun = self.modules if recursive else self.children
for m in fun():
for m2 in self._get_base_modules(m):
yield m2
def base_modules_by_condition(self, condition, recursive=True) -> Iterator:
""" get list of all base modules that pass a condition, condition is a function that returns a boolean """
for m in self.base_modules(recursive=recursive):
if condition(m):
yield m
def hierarchical_base_modules(self) -> (type, ShapeOrList, ShapeOrList, list):
""" get a hierarchical/recursive representation of (class, shapes_in, shapes_out, submodules) """
submodules = list(self.base_modules(recursive=False))
r0 = self.get_shape_in(may_be_none=True)
r1 = self.get_shape_out(may_be_none=True)
r2 = [m.hierarchical_base_modules() for m in submodules]
return self, r0, r1, r2
def set_dropout_rate(self, p=None):
""" set the dropout rate of every dropout layer to p, no change for p=None """
for m in self.base_modules(recursive=False):
m.set_dropout_rate(p)
def get_device(self) -> torch.device:
""" get the device of one of the weights """
for w in self.parameters():
return w.device
def is_layer(self, cls) -> bool:
return isinstance(self, cls)
# building and running ---------------------------------------------------------------------------------------------
def probe_outputs(self, s_in: ShapeOrList, module: nn.Module = None, multiple_outputs=False) -> ShapeOrList:
""" returning the output shape of one forward pass using zero tensors """
with torch.no_grad():
if module is None:
module = self
x = s_in.random_tensor(batch_size=2)
s = module(x)
if multiple_outputs:
return ShapeList([Shape(list(sx.shape)[1:]) for sx in s])
return Shape(list(s.shape)[1:])
def build(self, *args, **kwargs) -> ShapeOrList:
""" build/compile this module, save input/output shape(s), return output shape """
assert not self.is_built(), "The module is already built"
for arg in list(args) + list(kwargs.values()):
if isinstance(arg, (Shape, ShapeList)):
self.cached['shape_in'] = arg.copy(copy_id=True)
break
s_out = self._build(*args, **kwargs)
self.cached['shape_out'] = s_out.copy(copy_id=True)
self.cached['built'] = True
return s_out
def _build(self, *args, **kwargs) -> ShapeOrList:
""" build/compile this module, return output shape """
raise NotImplementedError
def forward(self, x: tensor_type) -> tensor_type:
raise NotImplementedError
def export_onnx(self, save_path: str, **kwargs):
save_path = make_base_dirs(save_path)
x = self.get_shape_in(may_be_none=False).random_tensor(batch_size=2).to(self.get_device())
torch.onnx.export(model=self, args=x, f=save_path, **kwargs)
# can disable state dict
def disable_state_dict(self):
"""
makes the state_dict irreversibly disfunctional for this module and all children
this is used to prevent specific modules to save/load
"""
def state_dict(self_, *args, **kwargs):
return None
def _load_from_state_dict(self_, *args, **kwargs):
pass
def _disable_state_dict(module: nn.Module):
for name, child in module._modules.items():
if child is not None:
_disable_state_dict(child)
module.state_dict = types.MethodType(state_dict, self)
module._load_from_state_dict = types.MethodType(_load_from_state_dict, self)
_disable_state_dict(self)
_disable_state_dict = None
# misc -------------------------------------------------------------------------------------------------------------
def randomize_parameters(self):
""" set all parameters to normally distributed values """
randomize_parameters(self)
class AbstractArgsModule(AbstractModule, ArgsInterface):
"""
an AbstractModule that can easily store+reuse the parsed argparse arguments of previous times
"""
def __init__(self, *_, **kwargs_to_store):
AbstractModule.__init__(self, *_)
ArgsInterface.__init__(self)
self._add_to_kwargs(**kwargs_to_store)
def _build(self, *args) -> ShapeOrList:
raise NotImplementedError
def forward(self, x: tensor_type) -> tensor_type:
raise NotImplementedError
| 2.015625 | 2 |
exp_mixture_model/__version__.py | naokimas/exp_mixture_model | 2 | 12767519 | # -*- coding: utf-8 -*-
__title__ = 'exp_mixture_model'
__version__ = '1.0.0'
__description__ = 'Maximum likelihood estimation and model selection of EMMs'
__copyright__ = 'Copyright (C) 2019 <NAME> and <NAME>'
__license__ = 'MIT License'
__author__ = '<NAME>, <NAME> and <NAME>'
__author_email__ = '<EMAIL>'
__url__ = 'https://github.com/naokimas/exp_mixture_model'
| 1.085938 | 1 |
scratch/get_fisher_new.py | AdriJD/cmb_sst_ksw | 0 | 12767520 | import os
import numpy as np
from sst import Fisher
from sst import camb_tools as ct
from sst import plot_tools
opj = os.path.join
def get_cls(cls_path, lmax, A_lens=1):
'''
returns
-------
cls : array-like
Lensed Cls (shape (4,lmax-1) with BB lensing power
reduced depending on A_lens.
order: TT, EE, BB, TE
'''
cls_nolens, _ = ct.get_spectra(cls_path, tag='r0',
lensed=False, prim_type='tot')
cls_lensed, _ = ct.get_spectra(cls_path, tag='r0',
lensed=True, prim_type='tot')
# truncate to lmax
cls_nolens = cls_nolens[:,:lmax-1]
cls_lensed = cls_lensed[:,:lmax-1]
BB_nolens = cls_nolens[2]
BB_lensed = cls_lensed[2]
# difference BB (lensed - unlensed = lens_contribution)
BB_lens_contr = BB_lensed - BB_nolens
# depending on A_lens, remove lensing contribution
cls_lensed[2] -= (1. - A_lens) * BB_lens_contr
return cls_lensed
def get_nls(lat_path, lmax, sac_path=None,
deproj_level=0):
'''
Arguments
-----------------
lat_path : str
Path to folder containing LAT noise cuves
lmax : int
Keyword Arguments
-----------------
sac_path : str, None
Path to folder containing SAC noise cuves
deproj_level : int
Foreground cleaning assumption, 0 - 4
0 is most optimistic
Returns
-------
nls : array-like
Shape (6, lmax - 1), order: TT, EE, BB, TE, TB, EB
Notes
-----
Looks like SAC noise curves are only for pol, so use
SAT TT for TT.
'''
# Add option to skip SAT.
# SO V3 (deproj0, S2(goal) 16000 deg2
# init noise curves (fill with 1K^2 noise)
# truncate later
nls = np.ones((6, 20000)) * 1e12
# load up LAT
# lat_tt_file = 'S4_2LAT_T_default_noisecurves_'\
# 'deproj{}_SENS0_mask_16000_ell_TT_yy.txt'.format(deproj_level) # NOTE
lat_tt_file = 'SOV3_T_default1-4-2_noisecurves_'\
'deproj{}_SENS2_mask_16000_ell_TT_yy.txt'.format(deproj_level)
lat_pol_file = lat_tt_file.replace('_T_', '_pol_')
lat_pol_file = lat_pol_file.replace('_TT_yy', '_EE_BB')
lat_tt_file = opj(lat_path, lat_tt_file)
lat_pol_file = opj(lat_path, lat_pol_file)
# load lat
ells_tt, nl_tt, ells_pol, nl_ee, nl_bb = ct.get_so_noise(
tt_file=lat_tt_file, pol_file=lat_pol_file, sat_file=None)
lmin_tt = int(ells_tt[0])
lmax_tt = int(ells_tt[-1])
#lmin_pol = int(ells_pol[0])
lmin_pol = 30 # as suggested on wiki
lmax_pol = int(ells_pol[-1])
if sac_path is not None:
sac_file = 'Db_noise_04.00_ilc_bin3_av.dat'
sac_file = opj(sac_path, sac_file)
# load sac, note these are Dell bandpowers
ell, sac_ee, sac_bb = np.loadtxt(sac_file).transpose()
dell = ell * (ell + 1) / 2. / np.pi
sac_ee /= dell
sac_bb /= dell
# interpolate
lmin_sac = int(ell[0])
lmax_sac = int(ell[-1])
ell_f = np.arange(lmin_sac, lmax_sac+1)
sac_ee = np.interp(ell_f, ell, sac_ee)
sac_bb = np.interp(ell_f, ell, sac_bb)
# combine, first lat then (if needed )sac because lat has lower lmin
nls[0,lmin_tt - 2:lmax_tt - 1] = nl_tt
nls[1,lmin_pol - 2:lmax_pol - 1] = nl_ee[ells_pol >= lmin_pol]
nls[2,lmin_pol - 2:lmax_pol - 1] = nl_bb[ells_pol >= lmin_pol]
nls[3] *= 0.
nls[4] *= 0.
nls[5] *= 0.
if sac_path is not None:
nls[1,lmin_sac - 2:lmax_sac - 1] = sac_ee
nls[2,lmin_sac - 2:lmax_sac - 1] = sac_bb
# trunacte to lmax
nls = nls[:,:lmax - 1]
return nls
def get_fiducial_nls(noise_amp_temp, noise_amp_pol, lmax):
'''
Create N_{\ell} = noise_amp^2 noise arrays.
Arguments
-----------------
noise_amp_temp : float
Noise ampltidue in uK arcmin.
noise_amp_pol : float
lmax : int
Returns
-------
nls : array-like
Shape (6, lmax - 1), order: TT, EE, BB, TE, TB, EB
'''
# init noise curves (fill with 1K^2 noise)
# truncate later
nls = np.ones((6, 20000)) * 1e12
# N_{\ell} = uK^2 radians^2
arcmin2radians = np.pi / 180. / 60.
noise_amp_temp *= arcmin2radians
noise_amp_pol *= arcmin2radians
# combine, first lat then sac because lat has lower lmin
nls[0,:] = noise_amp_temp ** 2
nls[1,:] = noise_amp_pol ** 2
nls[2,:] = noise_amp_pol ** 2
nls[3] *= 0.
nls[4] *= 0.
nls[5] *= 0.
# trunacte to lmax
nls = nls[:,:lmax - 1]
return nls
def get_prim_amp(prim_template='local', scalar_amp=2.1e-9):
common_amp = 16 * np.pi**4 * scalar_amp**2
if prim_template == 'local':
return 2 * common_amp
elif prim_template == 'equilateral':
return 6 * common_amp
elif prim_template == 'orthogonal':
return 6 * common_amp
def get_totcov(cls, nls, no_ee=False, no_tt=False):
totcov = nls.copy()
totcov[:4,:] += cls
if no_ee:
totcov[1,:] = 1e12
if no_tt:
totcov[0,:] = 1e12
return totcov
def run_fisher(template, ana_dir, camb_dir, totcov, ells, lmin=2, lmax=4999,fsky=0.03,
plot_tag='', tag=None):
F = Fisher(ana_dir)
camb_opts = dict(camb_out_dir=camb_dir,
tag='r0',
lensed=False,
high_ell=True)
F.get_camb_output(**camb_opts)
radii = F.get_updated_radii()
radii = radii[::2]
F.get_bins(lmin=lmin, lmax=lmax, load=True, verbose=False,
parity='odd', tag=tag)
# F.get_beta(func='equilateral', load=True, verbose=False, radii=radii, tag=tag)
F.get_beta(func='equilateral', load=True, verbose=True, radii=radii, tag=tag,
interp_factor=10)
# F.get_binned_bispec(template, load=True, tag=tag)
F.get_binned_bispec(template, load=True, tag=tag)
bin_invcov, bin_cov = F.get_binned_invcov(ells, totcov, return_bin_cov=True)
# Plot invcov, cov
plot_opts = dict(lmin=2)
bins = F.bins['bins']
plot_tools.cls_matrix(plot_tag, bins, bin_invcov, log=False, plot_dell=False,
inv=True, **plot_opts)
plot_tools.cls_matrix(plot_tag.replace('invcov', 'cov_dell'),
bins, bin_cov, log=False, plot_dell=True,
**plot_opts)
print(lmin, lmax)
fisher = F.naive_fisher(bin_invcov, lmin=lmin, lmax=lmax, fsky=fsky)
sigma = 1/np.sqrt(fisher)
return fisher, sigma
###### OLD
amp = get_prim_amp(template)
F.bispec['bispec'] *= amp
F.get_binned_invcov(nls=totcov)
bin_invcov = F.bin_invcov
bin_cov = F.bin_cov
bin_size = F.bins['bins'].size
bins = F.bins['bins']
num_pass = F.bins['num_pass_full']
bispec = F.bispec['bispec']
# Plot invcov, cov
plot_opts = dict(lmin=2)
plot_tools.cls_matrix(plot_tag, bins, bin_invcov, log=False, plot_dell=False,
inv=True, **plot_opts)
plot_tools.cls_matrix(plot_tag.replace('invcov', 'cov_dell'),
bins, bin_cov, log=False, plot_dell=True,
**plot_opts)
plot_tools.cls_matrix(plot_tag.replace('invcov', 'cov'),
bins, bin_cov, log=False, plot_dell=False,
**plot_opts)
# allocate bin-sized fisher matrix (same size as outer loop)
fisher_per_bin = np.ones(bin_size) * np.nan
# allocate 12 x 12 cov for use in inner loop
invcov = np.zeros((F.bispec['pol_trpl'].size, F.bispec['pol_trpl'].size))
# create (binned) inverse cov matrix for each ell
# i.e. use the fact that 12x12 pol invcov can be factored
# as (Cl-1)_l1^ip (Cl-1)_l2^jq (Cl-1)_l3^kr
invcov1 = np.ones((bin_size, 12, 12))
invcov2 = np.ones((bin_size, 12, 12))
invcov3 = np.ones((bin_size, 12, 12))
f_check = 0
for tidx_a, ptrp_a in enumerate(F.bispec['pol_trpl']):
# ptrp_a = ijk
for tidx_b, ptrp_b in enumerate(F.bispec['pol_trpl']):
# ptrp_a = pqr
# a is first bispectrum, b second one
# ptrp = pol triplet
ptrp_a1 = ptrp_a[0]
ptrp_a2 = ptrp_a[1]
ptrp_a3 = ptrp_a[2]
ptrp_b1 = ptrp_b[0]
ptrp_b2 = ptrp_b[1]
ptrp_b3 = ptrp_b[2]
invcov1[:,tidx_a,tidx_b] = bin_invcov[:,ptrp_a1,ptrp_b1]
invcov2[:,tidx_a,tidx_b] = bin_invcov[:,ptrp_a2,ptrp_b2]
invcov3[:,tidx_a,tidx_b] = bin_invcov[:,ptrp_a3,ptrp_b3]
# Depending on lmin, start outer loop not at first bin.
start_bidx = np.where(bins >= lmin)[0][0]
end_bidx = np.where(bins >= min(lmax, bins[-1]))[0][0] + 1
# loop same loop as in binned_bispectrum
for idx1, i1 in enumerate(bins[start_bidx:end_bidx]):
idx1 += start_bidx
cl1 = invcov1[idx1,:,:] # 12x12
# init
fisher_per_bin[idx1] = 0.
for idx2, i2 in enumerate(bins[idx1:end_bidx]):
idx2 += idx1
cl2 = invcov2[idx1,:,:] # 12x12
cl12 = cl1 * cl2
for idx3, i3 in enumerate(bins[idx2:end_bidx]):
idx3 += idx2
num = num_pass[idx1,idx2,idx3]
if num == 0:
continue
cl123 = cl12 * invcov3[idx3,:,:] #12x12
B = bispec[idx1,idx2,idx3,:]
f = np.einsum("i,ij,j", B, cl123, B)
# f0 = np.einsum("i,i", B, B)
# b0 = np.einsum("ij,ij", cl123, cl123)
# both B's have num
f /= float(num)
if i1 == i2 == i3:
f /= 6.
elif i1 != i2 != i3:
pass
else:
f /= 2.
fisher_per_bin[idx1] += f
f_check += f
fisher_per_bin *= fsky
f_check *= fsky
min_f = []
# print 'fisher_check:', f_check * (4*np.pi / np.sqrt(8))**2
# print 'sigma:', 1/np.sqrt(f_check) * (np.sqrt(8)/4./np.pi)
fisher_check = f_check * (4*np.pi / np.sqrt(8))**2
sigma = 1/np.sqrt(f_check) * (np.sqrt(8)/4./np.pi)
return fisher_check, sigma
# for lidx, lmin in enumerate(range(2, 40)):
# f = np.sum(fisher_per_bin[lmin-2:])
# min_f.append(np.sqrt(f))
if __name__ == '__main__':
# ana_dir = '/mn/stornext/d8/ITA/spider/adri/analysis/20181112_sst/' # S5
# ana_dir = '/mn/stornext/d8/ITA/spider/adri/analysis/20181123_sst/'
ana_dir = '/mn/stornext/d8/ITA/spider/adri/analysis/20181214_sst_debug/'
out_dir = opj(ana_dir, 'fisher')
camb_base = '/mn/stornext/d8/ITA/spider/adri/analysis/20171217_sst'
camb_dir = opj(camb_base, 'camb_output/high_acy/sparse_5000')
noise_base = '/mn/stornext/u3/adriaand/cmb_sst_ksw/ancillary/noise_curves'
# noise_base = '/mn/stornext/u3/adriaand/cmb_sst_ksw/ancillary/noise_curves/so/v3/so'
# lat_path = opj(noise_base, 's4/S4_2LAT_Tpol_default_noisecurves')
lat_path = opj(noise_base, 'so/v3/so')
# sac_path = noise_base
sac_path = None
# fixed
lmin = 2
# lmax = 4999
lmax = 4000 # has to match beta etc
lmax_f = 3000 # for fisher
lmin_f = 250
# A_lens = 0.13
A_lens = 1.
noise_amp_temp = 6.
noise_amp_pol = 6 * np.sqrt(2)
# NOTE
# noise_amp_temp = .0
# noise_amp_pol = .0 * np.sqrt(2)
opts = {}
# opts['nominal'] = dict(fsky=0.03, no_ee=False, no_tt=False, no_noise=False)
# opts['no_ee'] = dict(fsky=0.03, no_ee=True, no_tt=False, no_noise=False)
# opts['no_tt'] = dict(fsky=0.03, no_ee=False, no_tt=True, no_noise=False)
opts['nominal'] = dict(fsky=1., no_ee=False, no_tt=False, no_noise=False)
opts['no_ee'] = dict(fsky=1., no_ee=True, no_tt=False, no_noise=False)
opts['no_tt'] = dict(fsky=1., no_ee=False, no_tt=True, no_noise=False)
opts['cv_lim'] = dict(fsky=1., no_ee=False, no_tt=False, no_noise=True)
opts['no_ee_cv_lim'] = dict(fsky=1., no_ee=True, no_tt=False, no_noise=True)
opts['no_tt_cv_lim'] = dict(fsky=1., no_ee=False, no_tt=True, no_noise=True)
# for template in ['local', 'equilateral']:
for template in ['local']:
# with open(opj(out_dir, 'fisher_{}.txt'.format(template)), 'w') as text_file:
with open(opj(out_dir, 'fisher_so_{}.txt'.format(template)), 'w') as text_file:
for key in opts:
opt = opts[key]
no_noise = opt.get('no_noise')
fsky = opt.get('fsky')
no_ee = opt.get('no_ee')
no_tt = opt.get('no_tt')
cls = get_cls(camb_dir, lmax, A_lens=A_lens)
nls = get_nls(lat_path, lmax, sac_path=sac_path)
#nls = get_fiducial_nls(noise_amp_temp, noise_amp_pol, lmax)
if no_noise:
nls *= 0.
totcov = get_totcov(cls, nls, no_ee=no_ee, no_tt=no_tt)
ells = np.arange(2, lmax+1)
# plot_name = opj(out_dir, 'b_invcov_{}.png'.format(key))
plot_name = opj(out_dir, 'b_so_invcov_{}.png'.format(key))
# for template in ['local', 'equilateral', 'orthogonal']:
text_file.write('template: {}\n'.format(template))
text_file.write('option: {}\n'.format(key))
text_file.write('no_noise: {}\n'.format(no_noise))
text_file.write('fsky: {}\n'.format(fsky))
text_file.write('A_lens: {}\n'.format(A_lens))
text_file.write('no_ee: {}\n'.format(no_ee))
text_file.write('no_tt: {}\n'.format(no_tt))
fisher_check, sigma = run_fisher(template,
ana_dir, camb_dir, totcov, ells,
lmin=lmin_f, lmax=lmax_f, fsky=fsky,
plot_tag=plot_name, tag='r1_i10_b4')
text_file.write('fisher: {}\n'.format(fisher_check))
text_file.write('sigma: {}\n'.format(sigma))
text_file.write('\n')
| 1.976563 | 2 |
xdufacool/collect_local.py | fredqi/xdufacool | 7 | 12767521 | <gh_stars>1-10
# -*- encoding: utf-8 -*-
# collect_local.py ---
#
# Filename: collect_local.py
# Author: <NAME>
# Created: 2017-01-03 20:35:44(+0800)
#
# Last-Updated: 2017-01-08 19:24:52(+0800) [by <NAME>]
# Update #: 473
#
# Commentary:
#
#
#
# Change Log:
#
#
#
from __future__ import print_function
import re
import os
import sys
import glob
import shutil
from zipfile import ZipFile
import subprocess as subproc
import csv
def temporal_func():
classid = sys.argv[1]
folders = glob.glob(classid + '-*')
for fld in folders:
if not os.path.isdir(fld):
continue
print(fld)
subfolders = os.listdir(fld)
for stu in subfolders:
if os.path.isdir(stu):
stu_id = stu
print(stu_id)
def move_file():
"""Move files out of sub-directories in the current working directory."""
# print("\n".join(os.listdir(filepath)))
# folders = [os.path.join(filepath, fld) for fld in os.listdir(filepath)]
# print(filepath + ":\n " + "\n ".join(folders))
folders = filter(os.path.isdir, os.listdir(u"."))
# print("Sub-folders: ", u"\n".join(folders))
for folder in folders:
files = [os.path.join(folder, fn) for fn in os.listdir(folder)]
files = filter(os.path.isfile, files)
for fn in files:
_, filename = os.path.split(fn)
shutil.move(fn, filename)
assert 0 == len(os.listdir(folder))
def extract_rar(filename):
"""Filename include path."""
cwd = os.getcwd()
filepath, filename = os.path.split(filename)
print(filepath, filename)
os.chdir(filepath)
subproc.call(["7z", "x", "-y", filename], stdout=subproc.PIPE)
move_file()
os.chdir(cwd)
def extract_zip(filename):
"""Filename include path."""
code_pages = [u"ascii", u"utf-8", u"GB18030", u"GBK", u"GB2312", u"hz"]
cwd = os.getcwdu()
filepath, filename = os.path.split(filename)
os.chdir(filepath)
zip_obj = ZipFile(filename, 'r')
names = zip_obj.namelist()
print(filepath, filename)
for name in names:
if name[-1] == "/" or os.path.isdir(name):
print(" Skipping: ", name)
continue
if name.find("__MACOSX") >= 0:
print(" Skipping: ", name)
continue
succeed = False
name_sys = name
for coding in code_pages:
try:
name_sys = name.decode(coding)
succeed = True
except:
succeed = False
if succeed:
break
_, name_sys = os.path.split(name_sys)
the_file = zip_obj.open(name, 'r')
contents = the_file.read()
the_file.close()
the_file = open(name_sys, 'w')
the_file.write(contents)
the_file.close()
zip_obj.close()
# move_file()
os.chdir(cwd)
def check_local_homeworks(folders, scores):
"""Check local homeworks."""
re_id = re.compile(r'(?P<stuid>[0-9]{10,11})')
for folder, sc in zip(folders, scores):
files = glob.glob(folder + "/*/*.py")
files += glob.glob(folder + "/*/*.ipynb")
homeworks = dict()
for filename in files:
m = re_id.search(filename)
if m is not None:
stu_id = m.group('stuid')
homeworks[stu_id] = [sc]
write_dict_to_csv(folder + ".csv", homeworks)
def find_duplication(homework):
"""Find duplications in submitted homework."""
re_id = re.compile(r'(?P<stuid>[0-9]{10,11})')
dup_check = dict()
with open(homework, 'r') as data:
lines = data.readlines()
for ln in lines:
dt = ln.split()
csum, right = dt[0], dt[1]
if csum not in dup_check:
dup_check[csum] = list()
m = re_id.search(right)
if m is not None:
stu_id = m.group('stuid')
dup_check[csum].append(stu_id)
dup_check = filter(lambda k, v: len(v) > 1, dup_check.items())
dup_check = [(key, sorted(val)) for key, val in dup_check]
return dup_check
def display_dup(dup_result):
"""Display the duplication check results."""
lines = [k + ": " + ", ".join(v) for k, v in dup_result]
return lines
def load_csv_to_dict(filename):
"""Load a CSV file into a dict with the first column as the key."""
row_len = list()
result = dict()
with open(filename, 'r') as csvfile:
reader = csv.reader(csvfile)
for row in reader:
key = row[0].strip()
values = [v.strip() for v in row[1:]]
result[key] = values
row_len.append(len(values))
return result, max(row_len)
def write_dict_to_csv(filename, data):
"""Write a dictionary to a CSV file with the key as the first column."""
with open(filename, 'w') as csvfile:
writer = csv.writer(csvfile)
keys = sorted(data.keys())
for key in keys:
value = data[key]
row = [str(key)] + [str(v) for v in value]
writer.writerow(row)
def merge_csv(csv_files):
"""Merge CSV files based on keywords."""
results = dict()
data_all = list()
keys = set()
for filename in csv_files:
data, row_len = load_csv_to_dict(filename)
keys |= set(data.keys())
data_all.append((data, row_len))
for key in keys:
values = list()
for value, row_len in data_all:
fill = ["0"]*row_len
dt = value[key] if key in value else fill
values.extend(dt)
results[key] = values
return results
if __name__ == "__main__":
# rar_files = glob.glob(u"HW1603/*/*.rar")
# for fn in rar_files:
# extract_rar(fn)
# zip_files = glob.glob(u"HW1603/*/*.zip")
# for fn in zip_files:
# extract_zip(fn)
homeworks = ["HW1601", "HW1602", "HW1603"]
for hw in homeworks:
ret = find_duplication(hw + ".md5")
lines = display_dup(ret)
print(hw, "with", len(lines), "duplications:")
print("\n".join(lines))
check_local_homeworks(homeworks, [30, 30, 40])
csv_files = [u"EE5184-2016.csv",
u"HW1601.csv", u"HW1602.csv", u"HW1603.csv"]
merged = merge_csv(csv_files)
write_dict_to_csv("EE5184-2016-all.csv", merged)
#
# collect_local.py ends here
| 2.6875 | 3 |
code/HiddenLayer.py | PPeltola/tiralabra | 0 | 12767522 | from Vector import Vector
from Neuron import Neuron
class HiddenLayer:
def __init__(self, size, input_size, weights, activation, activation_d, loss, loss_d, bias=1.0):
self.size = size
#self.input_layer = input_layer
self.input_size = input_size
#self.output_layer = output_layer
self.loss = loss
self.loss_d = loss_d
self._neurons = []
for w in weights:
if len(w) != self.input_size:
raise ValueError("Mismatched weight and input size!")
self._neurons.append(Neuron(w, activation, activation_d, bias))
@property
def neurons(self):
return self._neurons
@neurons.setter
def neurons(self, n):
self._neurons = n
def __getitem__(self, key):
return self._neurons[key]
def __len__(self):
return self.size
def generate_output(self, input):
if len(input) != self.input_size:
raise ValueError("Input is not of the defined length!")
op = []
lin = []
for n in self._neurons:
output = n.output(input)
op.append(output['op'])
lin.append(output['lin'])
return {'op':Vector(op), 'lin':Vector(lin)} | 3.59375 | 4 |
data_aug/aug_utils.py | Animadversio/Foveated_Saccade_SimCLR | 14 | 12767523 | <filename>data_aug/aug_utils.py
import torch
from typing import Tuple, List, Optional
from packaging import version
torchver = version.parse(torch.__version__)
OLD_DIV = torchver < version.parse("1.8.0")
def unravel_indices(
indices: torch.LongTensor,
shape: Tuple[int, ...],
) -> torch.LongTensor:
r"""Converts flat indices into unraveled coordinates in a target shape.
Args:
indices: A tensor of (flat) indices, (*, N).
shape: The targeted shape, (D,).
Returns:
The unraveled coordinates, (*, N, D).
"""
coord = []
for dim in reversed(shape):
coord.append(indices % dim)
if OLD_DIV:
indices = indices // dim
else:
# use this version to suppress the torch warning about changed behavior in newer torch.
indices = torch.div(indices, dim, rounding_mode="floor")
coord = torch.stack(coord[::-1], dim=-1)
return coord
def send_to_clipboard(image):
"""https://stackoverflow.com/questions/34322132/copy-image-to-clipboard"""
from io import BytesIO
import win32clipboard # this is not in minimal env.
output = BytesIO()
image.convert('RGB').save(output, 'BMP')
data = output.getvalue()[14:]
output.close()
win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
win32clipboard.SetClipboardData(win32clipboard.CF_DIB, data)
win32clipboard.CloseClipboard()
| 2.59375 | 3 |
code/python/qppMeasures/sARE.py | Zendelo/QPP-EnhancedEval | 3 | 12767524 | <filename>code/python/qppMeasures/sARE.py
import numpy as np
def sARESingle(qppColRanks, msrDFRanks, mapper):
refMsr = mapper(qppColRanks.name)
return (np.abs(qppColRanks - msrDFRanks[refMsr])/len(qppColRanks))
def sARE(msrDF, qppDF, rankType, mapper):
#convert to ranks
msrDFRanks = msrDF.rank(method=rankType)
qppDFRanks = qppDF.rank(method=rankType)
return qppDFRanks.apply(lambda x: sARESingle(x, msrDFRanks, mapper))
| 2.640625 | 3 |
MNIST-lightning/model.py | dadi-vardhan/Assurance-cases-for-LEC | 0 | 12767525 | <reponame>dadi-vardhan/Assurance-cases-for-LEC<gh_stars>0
import torch
import numpy as np
import pytorch_lightning as pl
from torchvision.models import resnet18,mobilenet_v2,vgg16,alexnet
import torch.nn.functional as F
from torchmetrics.functional.classification.accuracy import accuracy
from torchvision.models.squeezenet import squeezenet1_1
from eval_metrics import eval_metrics
from neptune.new.types import File
import neptune.new as neptune
class MnistModel(pl.LightningModule):
def __init__(self, channels=1, width=28, height=28,hidden_size=32, learning_rate=0.008317637711026709):
super().__init__()
# We take in input dimensions as parameters and use those to dynamically build model.
#self.hparams = hparam
self.channels = channels
self.width = width
self.height = height
self.classes = ('Zero', 'One', 'Two', 'Three', 'Four',
'Five', 'Six', 'Seven', 'Eight', 'Nine')
self.num_classes = len(self.classes)
self.learning_rate = learning_rate
self.hidden_size = hidden_size
#self.layer_1 = torch.nn.Conv2d(1,28*28,kernel_size=(3,3),stride=(1,1),bias=False)
self.model = squeezenet1_1()
#self.model.conv1 = torch.nn.Conv2d(1,64, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3), bias=False) # resnet
#self.model.fc = torch.nn.Linear(in_features=512,out_features=10,bias=True) #resnet
################################################################################################################
#self.model.features[0][0] = torch.nn.Conv2d(1,32, kernel_size=(3, 3), stride=(2, 2), padding=(1, 1), bias=False) #mobilenet
#self.model.classifier[1] = torch.nn.Linear(in_features=1280,out_features=10,bias=True) #mobilenet
################################################################################################################
self.model.features[0] = torch.nn.Conv2d(1, 64, kernel_size=(3, 3), stride=(2, 2)) #sqeezenet
self.model.classifier[1] = torch.nn.Conv2d(512, 10, kernel_size=(1, 1), stride=(1, 1)) #sqeezenet
################################################################################################################
#self.model.features[0] = torch.nn.Conv2d(1,64,kernel_size=(3,3),stride=(1,1),padding=(1,1))#vgg16
#self.model.classifier[6] = torch.nn.Linear(in_features=4096,out_features=10,bias=True)#vgg16
#self.model.features[0] = torch.nn.Conv2d(1,64,kernel_size=(11,11),stride=(4,4),padding=(2,2))#alexnet
self.loss_func = torch.nn.CrossEntropyLoss()
self.save_hyperparameters()
def forward(self,x):
#x = self.layer_1(x)
x = self.model(x)
#x = torch.nn.Linear(in_features=1000, out_features=512, bias=True,device='cuda')(x)
# x = torch.nn.functional.relu(x)
# x = torch.nn.Linear(in_features=512, out_features=128, bias=True,device='cuda')(x)
# x = torch.nn.functional.relu(x)
# x = torch.nn.Linear(in_features=128, out_features=64, bias=True,device='cuda')(x)
# x = torch.nn.functional.relu(x)
# x = torch.nn.Linear(in_features=64, out_features=10, bias=True,device='cuda')(x)
#x = torch.nn.functional.log_softmax(x,dim=1)
return x
def training_step(self, batch, batch_idx):
x, y = batch
y= y.long()
logits = self(x)
loss = self.loss_func(logits, y)
self.log("train_loss", loss, prog_bar=True)
self.logger.experiment.log_metric('train/Train_loss',loss)
return {'loss': loss}
def training_epoch_end(self, outputs):
epoch_avg_loss = torch.stack([output['loss'] for output in outputs]).mean()
self.log("train_loss", epoch_avg_loss)
self.logger.experiment.log_metric('train/Train_avg_loss',epoch_avg_loss)
def validation_step(self, batch, batch_idx):
x, y = batch
y= y.long()
logits = self(x)
loss = self.loss_func(logits, y)
preds = torch.argmax(logits, dim=1)
acc = accuracy(preds, y)
self.log("val_loss", loss, prog_bar=True)
self.log("val_acc", acc, prog_bar=True)
self.logger.experiment.log_metric('val/Val_loss',loss)
self.logger.experiment.log_metric('val/Val_acc',acc)
return {'val_loss': loss}
def validation_epoch_end(self, outputs):
epoch_avg_loss = torch.stack([output['val_loss'] for output in outputs]).mean()
self.log(f"val_loss", epoch_avg_loss)
self.logger.experiment.log_metric('val/Avg_val_loss',epoch_avg_loss)
return epoch_avg_loss
def test_step(self, batch, batch_idx):
x, y = batch
logits = self(x)
loss = self.loss_func(logits, y)
preds = torch.argmax(logits, dim=1)
acc = accuracy(preds,y)
self.log("test_loss", loss,on_epoch=True, prog_bar=True)
self.log("test_acc", acc,on_epoch=True, prog_bar=True)
trgts = y
preds = preds
eval = eval_metrics(trgts,preds,self.classes)
cm = eval.plot_conf_matx()
cm_norm = eval.plot_conf_matx(normalized=True)
self.logger.experiment.log_image('metrics/Confusion Matrix',cm)
self.logger.experiment.log_image('metrics/Normalized Confusion Matrix',cm_norm)
cls_report = eval.classify_report()
self.logger.experiment.log_text("metrics/classification-report",cls_report)
f1 = eval.f1_score_weighted()
self.logger.experiment.log_metric('metrics/F1_score',f1)
recall = eval.recall_weighted()
self.logger.experiment.log_metric('metrics/Recall',recall)
prec = eval.precision_weighted()
self.logger.experiment.log_metric('metrics/Precision',prec)
output = {
'test_loss': loss,
'test_acc': acc}
return output
def test_end(self, outputs):
"""[Logging all metrics at the end of the test phase]
Args:
outputs ([tensors]): [model predictions]
Returns:
[tensors]: [avg test loss]
"""
avg_loss = torch.stack([x['test_loss'] for x in outputs]).mean()
self.logger.experiment.log_metric('test/Avg_test_loss',avg_loss)
return avg_loss
# def predict_step(self, batch, batch_idx: int, dataloader_idx: int = None):
# return self(batch)
def configure_optimizers(self):
optimizer = torch.optim.Adam(self.parameters(), lr=self.learning_rate)
return optimizer | 2.28125 | 2 |
batch_folder/batch_generator.py | Ouwen/registration-magi | 3 | 12767526 | <reponame>Ouwen/registration-magi
#!/usr/bin/python
from medpy.io import load
import csv
import sys
import copy
output = open('/output/batch_script.sh', 'w')
output.write('#!/bin/bash')
filename_dictionary = {
'pre-contrast filepath': 'pre',
'post-contrast filepath': 'post',
'FLAIR filepath': 'FLAIR'
}
def format_docker_string(row, reference_image_key, input_image_key):
# 0 is the input image filepath
# 1 is the reference image filepath
# 2 is the output path
# 3 is the output base name
# 4 is the input shorthand ['pre', 'post', 'FLAIR']
# 5 is the reference shorthand ['pre', 'post', 'FLAIR']
docker_string = """
docker run --rm -it \\
-v {0}:/mount{0} \\
-v {1}:/mount{1} \\
-v {2}:/output \\
-e FSLOUTPUTTYPE=NIFTI \\
ouwen/registration-magi flirt \\
-in /mount{0} \\
-ref /mount{1} \\
-out /output/{3}_{4}_to_{5}_r
"""
return docker_string.format(
row[input_image_key],
row[reference_image_key],
row['output filepath'],
row['output base filename'],
filename_dictionary[input_image_key],
filename_dictionary[reference_image_key]
)
def get_min_slices_image_type(row):
image_slices_dictionary = copy.copy(filename_dictionary)
for image_type in filename_dictionary.keys():
image_type_data, image_type_header = load('/mount' + row[image_type])
x, y, slices = image_type_data.shape
image_slices_dictionary[image_type] = slices
return min(image_slices_dictionary, key=image_slices_dictionary.get)
with open(sys.argv[1], 'rb') as csv_file:
image_reader = csv.DictReader(csv_file, delimiter=',')
for row in image_reader:
reference_image_key = get_min_slices_image_type(row)
for image_type in filename_dictionary.keys():
if(image_type != reference_image_key):
output.write(format_docker_string(row, reference_image_key, image_type))
| 2.390625 | 2 |
lib/bridgedb/parse/networkstatus.py | wfn/bridgedb | 1 | 12767527 | # -*- coding: utf-8 -*-
#
# This file is part of BridgeDB, a Tor bridge distribution system.
#
# :authors: <NAME> 0xA3ADB67A2CDB8B35 <<EMAIL>>
# please also see AUTHORS file
# :copyright: (c) 2013 Isis Lovecruft
# (c) 2007-2013, The Tor Project, Inc.
# (c) 2007-2013, all entities within the AUTHORS file
# :license: 3-clause BSD, see included LICENSE for information
"""Parsers for ``@type bridge-network-status 1.0`` descriptors.
.. _descriptors: https://metrics.torproject.org/formats.html#descriptortypes
**Module Overview:**
..
parse
\_networkstatus
|_ isValidRouterNickname - Determine if a nickname is according to spec
|_ parseRLine - Parse an 'r'-line from a networkstatus document
|_ parseALine - Parse an 'a'-line from a networkstatus document
\_ parseSLine - Parse an 's'-line from a networkstatus document
"""
import binascii
import logging
import string
import time
import warnings
from twisted.python.log import showwarning
from bridgedb.parse import addr
from bridgedb.parse import parseUnpaddedBase64
from bridgedb.parse import InvalidBase64
class NetworkstatusParsingError(Exception):
"""Unable to parse networkstatus document line."""
class InvalidNetworkstatusRouterIdentity(ValueError):
"""The ID field of a networkstatus document 'r'-line is invalid."""
class InvalidRouterNickname(ValueError):
"""Router nickname doesn't follow tor-spec."""
def isValidRouterNickname(nickname):
"""Determine if a router's given nickname meets the specification.
:param string nickname: An OR's nickname.
"""
ALPHANUMERIC = string.letters + string.digits
if not (1 <= len(nickname) <= 19):
raise InvalidRouterNickname(
"Nicknames must be between 1 and 19 characters: %r" % nickname)
for letter in nickname:
if not letter in ALPHANUMERIC:
raise InvalidRouterNickname(
"Nicknames must only use [A-Za-z0-9]: %r" % nickname)
return True
def parseRLine(line):
"""Parse an 'r'-line from a networkstatus document.
From torspec.git/dir-spec.txt, commit 36761c7d553d L1499-1512:
|
|"r" SP nickname SP identity SP digest SP publication SP IP SP ORPort
| SP DirPort NL
|
| [At start, exactly once.]
|
| "Nickname" is the OR's nickname. "Identity" is a hash of its
| identity key, encoded in base64, with trailing equals sign(s)
| removed. "Digest" is a hash of its most recent descriptor as
| signed (that is, not including the signature), encoded in base64.
| "Publication" is the
| publication time of its most recent descriptor, in the form
| YYYY-MM-DD HH:MM:SS, in UTC. "IP" is its current IP address;
| ORPort is its current OR port, "DirPort" is its current directory
| port, or "0" for "none".
|
:param string line: An 'r'-line from an bridge-network-status descriptor.
"""
(nickname, ID, descDigest, timestamp,
ORaddr, ORport, dirport) = (None for x in xrange(7))
try:
if not line.startswith('r '):
raise NetworkstatusParsingError(
"Networkstatus parser received non 'r'-line: %r" % line)
line = line[2:] # Chop off the 'r '
fields = line.split()
if len(fields) != 8:
raise NetworkstatusParsingError(
"Wrong number of fields in networkstatus 'r'-line: %r" % line)
nickname, ID = fields[:2]
try:
ID = parseUnpaddedBase64(ID)
except InvalidBase64 as error:
raise InvalidNetworkstatusRouterIdentity(error)
# Check the nickname validity after parsing the ID, otherwise, if the
# nickname is invalid, we end up with the nickname being ``None`` and
# the ID being unparsed, unpadded (meaning it is technically invalid)
# base64.
isValidRouterNickname(nickname)
except NetworkstatusParsingError as error:
logging.error(error)
nickname, ID = None, None
except InvalidRouterNickname as error:
logging.error(error)
# Assume that we mostly care about obtaining the OR's ID, then it
# should be okay to set the nickname to ``None``, if it was invalid.
nickname = None
except InvalidNetworkstatusRouterIdentity as error:
logging.error(error)
ID = None
else:
try:
descDigest = parseUnpaddedBase64(fields[2])
timestamp = time.mktime(time.strptime(" ".join(fields[3:5]),
"%Y-%m-%d %H:%M:%S"))
ORaddr = fields[5]
ORport = int(fields[6])
dirport = fields[7]
except InvalidBase64 as error:
logging.error(error)
descDigest = None
except (AttributeError, ValueError, IndexError) as error:
logging.error(error)
timestamp = None
finally:
return (nickname, ID, descDigest, timestamp, ORaddr, ORport, dirport)
def parseALine(line, fingerprint=None):
"""Parse an 'a'-line of a bridge networkstatus document.
From torspec.git/dir-spec.txt, commit 36761c7d553d L1499-1512:
|
| "a" SP address ":" port NL
|
| [Any number.]
|
| Present only if the OR has at least one IPv6 address.
|
| Address and portlist are as for "or-address" as specified in
| 2.1.
|
| (Only included when the vote or consensus is generated with
| consensus-method 14 or later.)
:param string line: An 'a'-line from an bridge-network-status descriptor.
:type fingerprint: string or None
:param fingerprint: A string which identifies which OR the descriptor
we're parsing came from (since the 'a'-line doesn't tell us, this can
help make the log messages clearer).
:raises: :exc:`NetworkstatusParsingError`
:rtype: tuple
:returns: A 2-tuple of a string respresenting the IP address and a
:class:`bridgedb.parse.addr.PortList`.
"""
ip = None
portlist = None
if line.startswith('a '):
line = line[2:] # Chop off the 'a '
else:
logging.warn("Networkstatus parser received non 'a'-line for %r:"\
" %r" % (fingerprint or 'Unknown', line))
try:
ip, portlist = line.rsplit(':', 1)
except ValueError as error:
logging.error("Bad separator in networkstatus 'a'-line: %r" % line)
return (None, None)
if ip.startswith('[') and ip.endswith(']'):
ip = ip.strip('[]')
try:
if not addr.isIPAddress(ip):
raise NetworkstatusParsingError(
"Got invalid IP Address in networkstatus 'a'-line for %r: %r"
% (fingerprint or 'Unknown', line))
if addr.isIPv4(ip):
warnings.warn(FutureWarning(
"Got IPv4 address in networkstatus 'a'-line! "\
"Networkstatus document format may have changed!"))
except NetworkstatusParsingError as error:
logging.error(error)
ip, portlist = None, None
try:
portlist = addr.PortList(portlist)
if not portlist:
raise NetworkstatusParsingError(
"Got invalid portlist in 'a'-line for %r!\n Line: %r"
% (fingerprint or 'Unknown', line))
except (addr.InvalidPort, NetworkstatusParsingError) as error:
logging.error(error)
portlist = None
else:
logging.debug("Parsed networkstatus ORAddress line for %r:"\
"\n Address: %s \tPorts: %s"
% (fingerprint or 'Unknown', ip, portlist))
finally:
return (ip, portlist)
def parseSLine(line):
"""Parse an 's'-line from a bridge networkstatus document.
The 's'-line contains all flags assigned to a bridge. The flags which may
be assigned to a bridge are as follows:
From torspec.git/dir-spec.txt, commit 36761c7d553d L1526-1554:
|
| "s" SP Flags NL
|
| [Exactly once.]
|
| A series of space-separated status flags, in lexical order (as ASCII
| byte strings). Currently documented flags are:
|
| "BadDirectory" if the router is believed to be useless as a
| directory cache (because its directory port isn't working,
| its bandwidth is always throttled, or for some similar
| reason).
| "Fast" if the router is suitable for high-bandwidth circuits.
| "Guard" if the router is suitable for use as an entry guard.
| "HSDir" if the router is considered a v2 hidden service directory.
| "Named" if the router's identity-nickname mapping is canonical,
| and this authority binds names.
| "Stable" if the router is suitable for long-lived circuits.
| "Running" if the router is currently usable.
| "Valid" if the router has been 'validated'.
| "V2Dir" if the router implements the v2 directory protocol.
:param string line: An 's'-line from an bridge-network-status descriptor.
:rtype: tuple
:returns: A 2-tuple of booleans, the first is True if the bridge has the
"Running" flag, and the second is True if it has the "Stable" flag.
"""
line = line[2:]
flags = [x.capitalize() for x in line.split()]
fast = 'Fast' in flags
running = 'Running' in flags
stable = 'Stable' in flags
guard = 'Guard' in flags
valid = 'Valid' in flags
if (fast or running or stable or guard or valid):
logging.debug("Parsed Flags: %s%s%s%s%s"
% ('Fast ' if fast else '',
'Running ' if running else '',
'Stable ' if stable else '',
'Guard ' if guard else '',
'Valid ' if valid else ''))
# Right now, we only care about 'Running' and 'Stable'
return running, stable
| 2.28125 | 2 |
pymoo/util/nds/tree_based_non_dominated_sort.py | AIasd/pymoo | 5 | 12767528 | import weakref
import numpy as np
class Tree:
'''
Implementation of Nary-tree.
The source code is modified based on https://github.com/lianemeth/forest/blob/master/forest/NaryTree.py
Parameters
----------
key: object
key of the node
num_branch: int
how many branches in each node
children: Iterable[Tree]
reference of the children
parent: Tree
reference of the parent node
Returns
-------
an N-ary tree.
'''
def __init__(self, key, num_branch, children=None, parent=None):
self.key = key
self.children = children or [None for _ in range(num_branch)]
self._parent = weakref.ref(parent) if parent else None
@property
def parent(self):
if self._parent:
return self._parent()
def __getstate__(self):
self._parent = None
def __setstate__(self, state):
self.__dict__ = state
for child in self.children:
child._parent = weakref.ref(self)
def traversal(self, visit=None, *args, **kwargs):
if visit is not None:
visit(self, *args, **kwargs)
l = [self]
for child in self.children:
if child is not None:
l += child.traversal(visit, *args, **kwargs)
return l
def tree_based_non_dominated_sort(F):
"""
Tree-based efficient non-dominated sorting (T-ENS).
This algorithm is very efficient in many-objective optimization problems (MaOPs).
Parameters
----------
F: np.array
objective values for each individual.
Returns
-------
indices of the individuals in each front.
References
----------
<NAME>, <NAME>, <NAME>, and <NAME>,
A decision variable clustering based evolutionary algorithm for large-scale many-objective optimization,
IEEE Transactions on Evolutionary Computation, 2018, 22(1): 97-112.
"""
N, M = F.shape
# sort the rows in F
indices = np.lexsort(F.T[::-1])
F = F[indices]
obj_seq = np.argsort(F[:, :0:-1], axis=1) + 1
k = 0
forest = []
left = np.full(N, True)
while np.any(left):
forest.append(None)
for p, flag in enumerate(left):
if flag:
update_tree(F, p, forest, k, left, obj_seq)
k += 1
# convert forest to fronts
fronts = [[] for _ in range(k)]
for k, tree in enumerate(forest):
fronts[k].extend([indices[node.key] for node in tree.traversal()])
return fronts
def update_tree(F, p, forest, k, left, obj_seq):
_, M = F.shape
if forest[k] is None:
forest[k] = Tree(key=p, num_branch=M - 1)
left[p] = False
elif check_tree(F, p, forest[k], obj_seq, True):
left[p] = False
def check_tree(F, p, tree, obj_seq, add_pos):
if tree is None:
return True
N, M = F.shape
# find the minimal index m satisfying that p[obj_seq[tree.root][m]] < tree.root[obj_seq[tree.root][m]]
m = 0
while m < M - 1 and F[p, obj_seq[tree.key, m]] >= F[tree.key, obj_seq[tree.key, m]]:
m += 1
# if m not found
if m == M - 1:
# p is dominated by the solution at the root
return False
else:
for i in range(m + 1):
# p is dominated by a solution in the branch of the tree
if not check_tree(F, p, tree.children[i], obj_seq, i == m and add_pos):
return False
if tree.children[m] is None and add_pos:
# add p to the branch of the tree
tree.children[m] = Tree(key=p, num_branch=M - 1)
return True
| 2.953125 | 3 |
bayesiancoresets/coreset/__init__.py | trevorcampbell/hilbert-coresets | 118 | 12767529 | from .hilbert import HilbertCoreset
from .sampling import UniformSamplingCoreset
from .sparsevi import SparseVICoreset
from .bpsvi import BatchPSVICoreset
| 0.992188 | 1 |
gunicorn_config.py | ons-eq-team/eq-questionnaire-runner | 0 | 12767530 | import gunicorn
import os
workers = os.getenv("GUNICORN_WORKERS")
worker_class = "gevent"
keepalive = os.getenv("GUNICORN_KEEP_ALIVE")
bind = "0.0.0.0:5000"
gunicorn.SERVER_SOFTWARE = "None"
| 1.8125 | 2 |
ingestion/src/metadata/ingestion/models/json_serializable.py | rongfengliang/OpenMetadata | 0 | 12767531 | # 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 abc
import json
NODE_KEY = "KEY"
NODE_LABEL = "LABEL"
NODE_REQUIRED_HEADERS = {NODE_LABEL, NODE_KEY}
class JsonSerializable(object, metaclass=abc.ABCMeta):
def __init__(self) -> None:
pass
@staticmethod
def snake_to_camel(s):
a = s.split("_")
a[0] = a[0].lower()
if len(a) > 1:
a[1:] = [u.title() for u in a[1:]]
return "".join(a)
@staticmethod
def serialize(obj):
return {JsonSerializable.snake_to_camel(k): v for k, v in obj.__dict__.items()}
def to_json(self):
return json.dumps(
JsonSerializable.serialize(self),
indent=4,
default=JsonSerializable.serialize,
)
| 2.265625 | 2 |
tests/urls.py | ajbeach2/django-sqs-tasks | 0 | 12767532 | from django.conf.urls import include
from django.urls import path
urlpatterns = [
path("task", include("aws_pubsub.urls")),
]
| 1.492188 | 1 |
cities/urls.py | platypotomus/python-react-travel-app | 0 | 12767533 | <gh_stars>0
from django.conf.urls import url
from . import views
urlpatterns = [
url('api/cities/', views.CityListIndex.as_view(), name="cities_list"),
url('api/cities/(?P<pk>\d+)/$', views.CityElementShow.as_view(), name="cities_element")
# url(r'^city/$', views.CityListIndex.as_view(), name="cities_list"),
# url(r'^city/(?P<pk>\d+)/$', views.CityElementShow.as_view(), name="cities_element")
]
| 1.828125 | 2 |
HydrogenCpx/test.py | EFerriss/Hydrogen_Cpx | 0 | 12767534 | # -*- coding: utf-8 -*-
"""
Created on Thu Apr 07 11:41:07 2016
@author: Ferriss
"""
from pynams import experiments
reload(experiments)
experiments.convertH(110.,) | 1.507813 | 2 |
app/routes.py | hyattdrew11/Built-Budget-API | 0 | 12767535 | #!
'''
..%%%%...%%%%%%..%%%%%%..........%%%%%...%%..%%..%%%%%%..%%......%%%%%%.
.%%......%%........%%............%%..%%..%%..%%....%%....%%........%%...
.%%.%%%..%%%%......%%............%%%%%...%%..%%....%%....%%........%%...
.%%..%%..%%........%%............%%..%%..%%..%%....%%....%%........%%...
..%%%%...%%%%%%....%%............%%%%%....%%%%...%%%%%%..%%%%%%....%%...
........................................................................
'''
from flask import render_template, flash, redirect, url_for, jsonify, request, abort
from app import app, db
from app.models import Customer, BudgetItem, CustomerSchema, BudgetItemSchema
from marshmallow import validate, ValidationError
import json
from boto import kinesis
from flask_cors import CORS
CORS(app)
customer_schema = CustomerSchema()
budget_schema = BudgetItemSchema(many=True)
# kinesis = kinesis.connect_to_region(app.config['AWS_REGION'])
# kinesis.describe_stream(app.config['KINESIS_DATA_STREAM'])
@app.route('/')
@app.route('/index')
def index():
customers = Customer.query.all()
return render_template('index.html', title='Get Built', customers=customers)
@app.route('/customers')
def get_customers():
# STARTING TO BUILD OUT VUE FRONT END CONNECTION
customers = Customer.query.all()
many_customers = CustomerSchema(many=True)
res = many_customers.dumps(customers)
return res, 202
# ADD A NEW CUSTOMER
@app.route("/customer/details", methods=['POST',])
def create_customer():
data = request.get_json()
# VALIDATE POST DATA
try:
validate = customer_schema.load(data)
existing_customer = Customer.query.filter_by(name=data['name']).first()
if existing_customer is not None:
response = { 'message': 'customer already exists' }
return jsonify(response), 403
else:
# VALIDATION COMPLETE ADD NEW CUSTOMER
new_customer = Customer(**data)
db.session.add(new_customer)
db.session.commit()
try:
nc = customer_schema.dump(new_customer)
# kinesis.put_record(app.config['KINESIS_DATA_STREAM'], json.dumps(nc), "partitionkey")
except Exception as e:
print(e)
# CALL TO CLOUD WATCH OR OTHER ALERTING SYSTEM
response = { 'message': 'new customer registered', 'data': customer_schema.dump(new_customer) }
return jsonify(response), 202
except ValidationError as err:
errors = err.messages
validate = False
return jsonify(errors), 403
# GET CUSTOMER DETAILS
@app.route("/customer/details/<customer_id>", methods=['GET', 'DELETE'])
def get_customer(customer_id):
customer = Customer.query.filter_by(id=customer_id).first()
if customer is None:
response = { 'message': 'customer does not exist' }
return jsonify(response), 404
else:
if request.method == 'GET':
result = customer_schema.dump(customer)
response= { 'data': result }
return jsonify(response), 202
elif request.method == 'DELETE':
db.session.delete(customer)
db.session.commit()
response = { 'message': 'customer' + customer_id + ' deleted' }
return jsonify(response), 202
else:
return jsonify(response), 404
# GET ALL BUDGET ITEMS FOR A CUSTOMER
@app.route("/budget/details/<customer_id>", methods=['GET'])
def get_budget_items(customer_id):
items = BudgetItem.query.filter_by(customer_id=customer_id).all()
if items is None:
response = { 'message': 'customer does not exist' }
return jsonify(response), 404
else:
result = budget_schema.dump(items)
response = {'data': result, 'status_code' : 202 }
return jsonify(response)
# ADD OR UPDATE A NEW BUDGET ITEM
@app.route("/budget/details", methods=['POST', 'PUT'])
def create_budget_item():
data = request.get_json()
print(data)
print("Update a budget item")
try:
# VALIDATE JSON DATA
# AS WE HAVE ONE TO MANY RELATIONSHIP FROM CUSTOMER TO BUDGET ITEM DATA MUST BE ARRAY NOT OBJECT
validate = budget_schema.loads(json.dumps(data))
except ValidationError as err:
errors = err.messages
return jsonify(errors), 403
if request.method == 'POST':
# THERE IS A MORE ELEGANT WAY TO DO THIS, BUT WANT THE ABILITY TO ADD MANY BUDGET ITEMS AT ONCE
items = []
for x in data:
new_item = BudgetItem(**x)
db.session.add(new_item)
db.session.commit()
items.append(new_item)
items = budget_schema.dump(items)
response = { 'message': 'new budget item created','data': items }
return response, 202
elif request.method == 'PUT':
print("PUT")
# THERE IS A MORE ELEGANT WAY TO DO THIS, BUT WANT THE ABILITY TO ADD MANY BUDGET ITEMS AT ONCE
items = []
for x in data:
item = BudgetItem.query.filter_by(id=x['id']).update(dict(**x))
db.session.commit()
items.append(x)
items = budget_schema.dump(items)
response = { 'message': 'new budget item created', 'data' : items }
return jsonify(response), 202
else:
print("ELSE")
return abort(400)
# DELETE A BUDGET ITEM
@app.route("/budget/details/<item_id>", methods=['DELETE'])
def delete_budget_item(item_id):
item = BudgetItem.query.filter_by(id=item_id).first()
if item is None:
response = { 'message': 'budget item does not exist' }
return jsonify(response), 404
else:
db.session.delete(item)
db.session.commit()
response = { 'message': 'budget item ' + item_id + ' deleted' }
return jsonify(response), 202
'''
..%%%%...%%%%%%..%%%%%%..........%%%%%...%%..%%..%%%%%%..%%......%%%%%%.
.%%......%%........%%............%%..%%..%%..%%....%%....%%........%%...
.%%.%%%..%%%%......%%............%%%%%...%%..%%....%%....%%........%%...
.%%..%%..%%........%%............%%..%%..%%..%%....%%....%%........%%...
..%%%%...%%%%%%....%%............%%%%%....%%%%...%%%%%%..%%%%%%....%%...
........................................................................
''' | 2.015625 | 2 |
models/v0/net_definitions_tf.py | isl-org/adaptive-surface-reconstruction | 29 | 12767536 | #
# Copyright 2022 Intel (Autonomous Agents Lab)
#
# 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.
#
from models.common_tf import SpecialSparseConv, window_poly6
import open3d.ml.tf as ml3d
import tensorflow as tf
from collections import namedtuple
NNSResult = namedtuple(
"NNSResult",
["neighbors_index", "neighbors_distance", "neighbors_row_splits"])
class CConvAggregationBlock(tf.keras.Model):
"""The aggregation block is a single Continuous Convolution.
In addition to the features the block can return the importance information.
"""
def __init__(self, name, output_channels, return_importance=False):
super().__init__(name=name)
self._convs = []
self._return_importance = return_importance
conv_params = {
'kernel_size': [4, 4, 4],
'coordinate_mapping': 'ball_to_cube_radial',
'normalize': True,
}
def Conv(name, filters, activation, **kwargs):
conv = ml3d.layers.ContinuousConv(name=name,
filters=output_channels,
activation=activation,
**kwargs)
self._convs.append((name, conv))
setattr(self, name, conv)
activation = tf.keras.activations.relu
Conv(name='conv1',
filters=output_channels,
activation=activation,
**conv_params)
def call(self, feats, inp_points, out_points, out_extents, scale_compat,
nns):
"""Computes the features and optionally the importance.
Args:
feats: The point featurs.
inp_points: The input point positions.
out_points: These are the positions of the voxel centers of the
finest grid.
out_extents: This is the voxel size.
scale_compat: The scale compatibility between the input point radii
and the voxel sizes.
nns: tuple with
- neighbors_index: The indices to neighbor points for each voxel.
- neighbor_row_splits: Defines the start and end of each voxels
neighbors.
- neighbors_distance: The distance to each neighbor normalized with
respect to the voxel size.
"""
neighbors_importance = scale_compat * window_poly6(
nns.neighbors_distance)
feats = self.conv1(
feats,
inp_points,
out_points,
extents=out_extents,
user_neighbors_index=nns.neighbors_index,
user_neighbors_row_splits=nns.neighbors_row_splits,
user_neighbors_importance=neighbors_importance,
)
if self._return_importance:
return feats, neighbors_importance
else:
return feats
class SparseConvBlock(tf.keras.Model):
"""The convolution block for the adaptive grid.
Args:
input_channels: Number of input channels.
output_channels: The number of output channels.
normalized_channels: The number of channels that will be normalized
with respect to the importance values.
"""
def __init__(self, name, output_channels, normalized_channels=0):
super().__init__(name=name)
self._convs = []
self.output_channels = output_channels
self.normalized_channels = normalized_channels
conv_params = {
'kernel_size': 55,
}
def Conv(name, filters, activation, **kwargs):
conv = SpecialSparseConv(name=name,
filters=filters,
activation=activation,
**kwargs)
self._convs.append((name, conv))
setattr(self, name, conv)
activation = tf.keras.activations.relu
if normalized_channels == 'all':
Conv(name='conv1',
filters=output_channels,
activation=activation,
normalize=True,
**conv_params)
Conv(name='conv2',
filters=output_channels,
activation=activation,
normalize=True,
**conv_params)
Conv(name='conv3',
filters=output_channels,
activation=activation,
normalize=True,
**conv_params)
Conv(name='conv4',
filters=output_channels,
activation=activation,
normalize=True,
**conv_params)
elif normalized_channels and normalized_channels >= output_channels:
Conv(name='conv1',
filters=output_channels,
activation=activation,
normalize=True,
**conv_params)
Conv(name='conv2',
filters=output_channels,
activation=activation,
normalize=False,
**conv_params)
Conv(name='conv3',
filters=output_channels,
activation=activation,
normalize=False,
**conv_params)
Conv(name='conv4',
filters=output_channels,
activation=activation,
normalize=False,
**conv_params)
elif normalized_channels and normalized_channels < output_channels:
Conv(name='conv1a',
filters=output_channels - normalized_channels,
activation=activation,
**conv_params)
Conv(name='conv1b',
filters=normalized_channels,
activation=activation,
normalize=True,
**conv_params)
Conv(name='conv2',
filters=output_channels,
activation=activation,
**conv_params)
Conv(name='conv3',
filters=output_channels,
activation=activation,
**conv_params)
Conv(name='conv4',
filters=output_channels,
activation=activation,
**conv_params)
else:
Conv(name='conv1',
filters=output_channels,
activation=activation,
**conv_params)
Conv(name='conv2',
filters=output_channels,
activation=activation,
**conv_params)
Conv(name='conv3',
filters=output_channels,
activation=activation,
**conv_params)
Conv(name='conv4',
filters=output_channels,
activation=activation,
**conv_params)
def call(self, feats, points, neighbors, importance=None):
"""Computes the features and optionally the importance if there are
normalized channels.
Args:
feats: Input features.
neighbors: dict with the neighbor information.
importance: The per voxel importance value
"""
if self.normalized_channels == 'all':
feats1, out_importance = self.conv1(feats,
inp_importance=importance,
**neighbors)
feats2, _ = self.conv2(feats1,
inp_importance=importance,
**neighbors)
feats3, _ = self.conv3(feats2,
inp_importance=importance,
**neighbors)
feats4, _ = self.conv4(feats3,
inp_importance=importance,
**neighbors)
return feats4, out_importance
elif self.normalized_channels and self.normalized_channels < self.output_channels:
feats1a = self.conv1a(feats, **neighbors)
feats1b, out_importance = self.conv1b(feats,
inp_importance=importance,
**neighbors)
feats1 = tf.concat([feats1a, feats1b], axis=-1)
feats2 = self.conv2(feats1, **neighbors)
feats3 = self.conv3(feats2, **neighbors)
feats4 = self.conv4(feats3, **neighbors)
return feats4, out_importance
elif self.normalized_channels:
feats1, out_importance = self.conv1(feats,
inp_importance=importance,
**neighbors)
feats2 = self.conv2(feats1, **neighbors)
feats3 = self.conv3(feats2, **neighbors)
feats4 = self.conv4(feats3, **neighbors)
return feats4, out_importance
else:
feats1 = self.conv1(feats, **neighbors)
feats2 = self.conv2(feats1, **neighbors)
feats3 = self.conv3(feats2, **neighbors)
feats4 = self.conv4(feats3, **neighbors)
return feats4
class SparseConvTransitionBlock(tf.keras.Model):
"""The convolution block for transitions between grids (up- and downconvolutions).
Args:
input_channels: Number of input channels.
output_channels: The number of output channels.
normalized_channels: The number of channels that will be normalized
with respect to the importance values.
"""
def __init__(self, name, output_channels, normalized_channels=0):
super().__init__(name=name)
self._convs = []
self.output_channels = output_channels
self.normalized_channels = normalized_channels
conv_params = {
'kernel_size': 9,
'activation': tf.keras.activations.relu
}
def Conv(name, filters, activation, **kwargs):
conv = SpecialSparseConv(name=name,
filters=filters,
activation=activation,
**kwargs)
self._convs.append((name, conv))
setattr(self, name, conv)
if normalized_channels == 'all' or normalized_channels >= output_channels:
Conv(name='conv1',
filters=output_channels,
normalize=True,
**conv_params)
elif normalized_channels and normalized_channels < output_channels:
Conv(name='conv1a',
filters=output_channels - normalized_channels,
**conv_params)
Conv(name='conv1b',
filters=normalized_channels,
normalize=True,
**conv_params)
else:
Conv(name='conv1', filters=output_channels, **conv_params)
def call(self, feats, inp_points, out_points, neighbors, importance=None):
"""Computes the features and optionally the importance if there are
normalized channels.
Args:
feats: Input features.
neighbors: dict with the neighbor information.
importance: The per voxel importance value
"""
if self.normalized_channels == 'all':
feats1, out_importance = self.conv1(feats,
inp_importance=importance,
**neighbors)
return feats1, out_importance
elif self.normalized_channels and self.normalized_channels < self.output_channels:
feats1a = self.conv1a(feats, **neighbors)
feats1b, out_importance = self.conv1b(feats,
inp_importance=importance,
**neighbors)
feats1 = tf.concat([feats1a, feats1b], axis=-1)
return feats1, out_importance
elif self.normalized_channels:
feats1, out_importance = self.conv1(feats,
inp_importance=importance,
**neighbors)
return feats1, out_importance
else:
feats1 = self.conv1(feats, **neighbors)
return feats1
class UNet5(tf.keras.Model):
"""Unet for adaptive grids predicting the signed and unsigned distance field.
Args:
channel_div: Reduces the number of channels for each layer.
with_importance: Adds channels normalized with the importance values.
normalized_channels: How many channels should be normalized with the importance.
residual_skip_connection: If True uses a residual connection for the last skip
connection. If 'all' uses residual connction for every skip connection.
"""
octree_levels = 5
def __init__(self,
name=None,
channel_div=1,
with_importance=False,
normalized_channels=0,
deeper=0,
residual_skip_connection=False):
super().__init__(name=name, autocast=False)
if not with_importance in (False, True, 'all'):
raise Exception('invalid value for "with_importance" {}'.format(
with_importance))
self.with_importance = with_importance
self.residual_skip_connection = residual_skip_connection
def SparseConvTransition(name,
filters,
normalized_channels=0,
**kwargs):
return SparseConvTransitionBlock(name, filters, normalized_channels)
d = channel_div
self.cconv_block_in = CConvAggregationBlock(
name="cconv_block_in",
output_channels=32 // d,
return_importance=with_importance)
params = {}
if with_importance:
params.update({
'normalized_channels': normalized_channels,
})
self.sparseconv_encblock0 = SparseConvBlock(name="sparseconv_encblock0",
output_channels=64 // d,
**params)
self.sparseconv_down1 = SparseConvTransition(name="sparseconv_down1",
filters=128 // d,
**params)
self.sparseconv_encblock1 = SparseConvBlock(name="sparseconv_encblock1",
output_channels=128 // d,
**params)
self.sparseconv_down2 = SparseConvTransition(name="sparseconv_down2",
filters=256 // d,
**params)
self.sparseconv_encblock2 = SparseConvBlock(name="sparseconv_encblock2",
output_channels=256 // d,
**params)
self.sparseconv_down3 = SparseConvTransition(name="sparseconv_down3",
filters=256 // d,
**params)
self.sparseconv_encblock3 = SparseConvBlock(name="sparseconv_encblock3",
output_channels=256 // d,
**params)
self.sparseconv_down4 = SparseConvTransition(name="sparseconv_down4",
filters=256 // d,
**params)
self.sparseconv_encblock4 = SparseConvBlock(name="sparseconv_encblock4",
output_channels=256 // d,
**params)
params = {}
self.sparseconv_up3 = SparseConvTransition(name="sparseconv_up3",
filters=256 // d)
self.sparseconv_decblock3 = SparseConvBlock(name="sparseconv_decblock3",
output_channels=256 // d,
**params)
self.sparseconv_up2 = SparseConvTransition(name="sparseconv_up2",
filters=256 // d)
self.sparseconv_decblock2 = SparseConvBlock(name="sparseconv_decblock2",
output_channels=256 // d,
**params)
if self.residual_skip_connection == 'all':
self.sparseconv_up1 = SparseConvTransition(name="sparseconv_up1",
filters=128 // d)
else:
self.sparseconv_up1 = SparseConvTransition(name="sparseconv_up1",
filters=256 // d)
self.sparseconv_decblock1 = SparseConvBlock(name="sparseconv_decblock1",
output_channels=128 // d,
**params)
self.sparseconv_up0 = SparseConvTransition(name="sparseconv_up0",
filters=64 // d)
self.sparseconv_decblock0 = SparseConvBlock(name="sparseconv_decblock0",
output_channels=32 // d,
**params)
activation = tf.keras.activations.relu
self.dense_decoder1 = tf.keras.layers.Dense(32 // d,
name='dense_decoder1',
activation=activation,
use_bias=True)
self.dense_decoder2 = tf.keras.layers.Dense(32 // d,
name='dense_decoder2',
activation=activation,
use_bias=True)
self.dense_decoder3 = tf.keras.layers.Dense(2,
name='dense_decoder3',
activation=None,
use_bias=False)
self._all_layers = []
self._collect_layers(self.layers)
def _collect_layers(self, layers):
for x in layers:
if hasattr(x, 'layers'):
self._collect_layers(x.layers)
else:
self._all_layers.append(x)
@tf.function
def call(self, input_dict):
"""Does a forward pass with aggregation and decode suited for training.
"""
feats = input_dict['feats']
feats1 = self.aggregate(input_dict)
code = self.unet(feats1, input_dict)
value, shifts_grad = self.decode(input_dict['voxel_shifts0'], code)
result = {
'value': value,
'shifts_grad': shifts_grad,
# 'code': code,
}
debug_info = {}
return result, debug_info
@tf.function
def unet(self, feats1, input_dict, keep_threshold=1):
"""Forward pass through the unet. Excludes aggregation and decode."""
neighbors = []
for i in range(5):
neighbors.append({
'neighbors_index':
input_dict['neighbors_index{}'.format(i)],
'neighbors_kernel_index':
input_dict['neighbors_kernel_index{}'.format(i)],
'neighbors_row_splits':
input_dict['neighbors_row_splits{}'.format(i)],
})
neighbors_down = []
for i in range(4):
num_points = tf.shape(input_dict['voxel_centers{}'.format(i + 1)],
out_type=tf.int64)[0]
ans = ml3d.ops.invert_neighbors_list(
num_points, input_dict['up_neighbors_index{}'.format(i)],
input_dict['up_neighbors_row_splits{}'.format(i)],
tf.cast(input_dict['up_neighbors_kernel_index{}'.format(i)],
dtype=tf.int32))
neighbors_down.append({
'neighbors_index':
ans.neighbors_index,
'neighbors_kernel_index':
tf.cast(ans.neighbors_attributes, dtype=tf.int16),
'neighbors_row_splits':
ans.neighbors_row_splits,
})
neighbors_up = []
for i in range(4):
neighbors_up.append({
'neighbors_index':
input_dict['up_neighbors_index{}'.format(i)],
'neighbors_kernel_index':
input_dict['up_neighbors_kernel_index{}'.format(i)],
'neighbors_row_splits':
input_dict['up_neighbors_row_splits{}'.format(i)],
})
if self.with_importance and keep_threshold < 1:
feats1, importance = feats1
nonzero_count = tf.math.count_nonzero(importance > 1e-3)
threshold_idx = tf.cast(tf.cast(nonzero_count, dtype=tf.float32) *
keep_threshold,
dtype=tf.int32)
threshold_value = tf.sort(importance,
direction='DESCENDING')[threshold_idx]
feats1 = tf.where((importance < threshold_value)[:, None],
tf.zeros_like(feats1), feats1)
importance = tf.where(importance < threshold_value,
tf.zeros_like(importance), importance)
feats1 = (feats1, importance)
if self.with_importance:
feats1, importance = feats1
else:
importance = None
feats2 = self.sparseconv_encblock0(feats1,
input_dict['voxel_centers0'],
neighbors[0],
importance=importance)
if self.with_importance == 'all':
feats2, importance = feats2
feats3, importance = self.sparseconv_down1(
feats2,
input_dict['voxel_centers0'],
input_dict['voxel_centers1'],
neighbors_down[0],
importance=importance)
feats4, importance = self.sparseconv_encblock1(
feats3,
input_dict['voxel_centers1'],
neighbors[1],
importance=importance)
feats5, importance = self.sparseconv_down2(
feats4,
input_dict['voxel_centers1'],
input_dict['voxel_centers2'],
neighbors_down[1],
importance=importance)
feats6, importance = self.sparseconv_encblock2(
feats5,
input_dict['voxel_centers2'],
neighbors[2],
importance=importance)
feats7, importance = self.sparseconv_down3(
feats6,
input_dict['voxel_centers2'],
input_dict['voxel_centers3'],
neighbors_down[2],
importance=importance)
feats8, importance = self.sparseconv_encblock3(
feats7,
input_dict['voxel_centers3'],
neighbors[3],
importance=importance)
feats9, importance = self.sparseconv_down3(
feats8,
input_dict['voxel_centers3'],
input_dict['voxel_centers4'],
neighbors_down[3],
importance=importance)
feats10, importance = self.sparseconv_encblock4(
feats9,
input_dict['voxel_centers4'],
neighbors[4],
importance=importance)
else:
if self.with_importance:
feats2, _ = feats2
feats3 = self.sparseconv_down1(feats2, input_dict['voxel_centers0'],
input_dict['voxel_centers1'],
neighbors_down[0])
feats4 = self.sparseconv_encblock1(feats3,
input_dict['voxel_centers1'],
neighbors[1])
feats5 = self.sparseconv_down2(feats4, input_dict['voxel_centers1'],
input_dict['voxel_centers2'],
neighbors_down[1])
feats6 = self.sparseconv_encblock2(feats5,
input_dict['voxel_centers2'],
neighbors[2])
feats7 = self.sparseconv_down3(feats6, input_dict['voxel_centers2'],
input_dict['voxel_centers3'],
neighbors_down[2])
feats8 = self.sparseconv_encblock3(feats7,
input_dict['voxel_centers3'],
neighbors[3])
feats9 = self.sparseconv_down3(feats8, input_dict['voxel_centers3'],
input_dict['voxel_centers4'],
neighbors_down[3])
feats10 = self.sparseconv_encblock4(feats9,
input_dict['voxel_centers4'],
neighbors[4])
feats11 = self.sparseconv_up3(feats10, input_dict['voxel_centers4'],
input_dict['voxel_centers3'],
neighbors_up[3])
if self.residual_skip_connection == 'all':
feats12 = feats11 + feats8
else:
feats12 = tf.concat([feats11, feats8], axis=-1)
feats13 = self.sparseconv_decblock3(feats12,
input_dict['voxel_centers3'],
neighbors[3])
feats14 = self.sparseconv_up2(feats13, input_dict['voxel_centers3'],
input_dict['voxel_centers2'],
neighbors_up[2])
if self.residual_skip_connection == 'all':
feats15 = feats14 + feats6
else:
feats15 = tf.concat([feats14, feats6], axis=-1)
feats16 = self.sparseconv_decblock2(feats15,
input_dict['voxel_centers2'],
neighbors[2])
feats17 = self.sparseconv_up1(feats16, input_dict['voxel_centers2'],
input_dict['voxel_centers1'],
neighbors_up[1])
if self.residual_skip_connection == 'all':
feats18 = feats17 + feats4
else:
feats18 = tf.concat([feats17, feats4], axis=-1)
feats19 = self.sparseconv_decblock1(feats18,
input_dict['voxel_centers1'],
neighbors[1])
feats20 = self.sparseconv_up0(feats19, input_dict['voxel_centers1'],
input_dict['voxel_centers0'],
neighbors_up[0])
if self.residual_skip_connection:
feats21 = feats20 + feats2
else:
feats21 = tf.concat([feats20, feats2], axis=-1)
code = self.sparseconv_decblock0(feats21, input_dict['voxel_centers0'],
neighbors[0])
return code
@tf.function
def aggregate(self, input_dict):
"""Aggregation step."""
feats = input_dict['feats']
nns = NNSResult(input_dict['aggregation_neighbors_index'],
input_dict['aggregation_neighbors_dist'],
input_dict['aggregation_row_splits'])
feats1 = self.cconv_block_in(
feats,
input_dict['points'],
input_dict['voxel_centers0'],
input_dict['voxel_sizes0'],
scale_compat=input_dict['aggregation_scale_compat'],
nns=nns)
return feats1
@tf.function
def decode(self, shifts, code):
"""Decode step and returns the gradient with respect to the shift.
Args:
shifts: Positions inside the voxels.
code: Output features of the unet for each voxel.
"""
new_code_shape = tf.concat(
[tf.shape(shifts)[:-1], tf.shape(code)[-1:]], axis=0)
code = tf.broadcast_to(code, new_code_shape)
decoder_input = tf.concat([shifts, code], axis=-1)
feats1 = self.dense_decoder1(decoder_input)
feats2 = self.dense_decoder2(feats1)
value = self.dense_decoder3(feats2)
shifts_grad = tf.gradients(value[..., 0], shifts)[0]
return tf.dtypes.cast(value, dtype=tf.float32), tf.dtypes.cast(
shifts_grad, dtype=tf.float32)
| 2.015625 | 2 |
QCA4020_SDK/target/sectools/qdn/sectools/common/crypto/functions/utils/openssl.py | r8d8/lastlock | 0 | 12767537 | <reponame>r8d8/lastlock<filename>QCA4020_SDK/target/sectools/qdn/sectools/common/crypto/functions/utils/openssl.py
# ===============================================================================
#
# Copyright (c) 2013-2017 Qualcomm Technologies, Inc.
# All Rights Reserved.
# Confidential and Proprietary - Qualcomm Technologies, Inc.
#
# ===============================================================================
"""
Created on Oct 26, 2014
@author: hraghav
"""
import hashlib
from sectools.common.crypto.functions.utils import UtilsBase
class UtilsOpenSSLImpl(UtilsBase):
hash_algos_map = {
UtilsBase.HASH_ALGO_SHA1: hashlib.sha1,
UtilsBase.HASH_ALGO_SHA256: hashlib.sha256,
UtilsBase.HASH_ALGO_SHA384: hashlib.sha384
}
def __init__(self, module):
super(UtilsOpenSSLImpl, self).__init__(module)
self.openssl = module
def hash(self, message, hash_algo):
if hash_algo in self.hash_algos_map.keys():
return self.hash_algos_map[hash_algo](message).hexdigest()
else:
return hashlib.sha256(message).hexdigest()
| 1.898438 | 2 |
src/modeling/__init__.py | clazaro97chosen/American-Community-Survey-Project | 2 | 12767538 | <filename>src/modeling/__init__.py
from .model_tryout import *
from .prep_or_featureselection import *
from .train_and_predict import * | 1.085938 | 1 |
tests/conftest.py | amagge/flair | 3,957 | 12767539 | import pytest
from pathlib import Path
@pytest.fixture(scope="module")
def resources_path():
return Path(__file__).parent / "resources"
@pytest.fixture(scope="module")
def tasks_base_path(resources_path):
return resources_path / "tasks"
@pytest.fixture(scope="module")
def results_base_path(resources_path):
return resources_path / "results"
def pytest_addoption(parser):
parser.addoption(
"--runslow", action="store_true", default=False, help="run slow tests"
)
parser.addoption(
"--runintegration",
action="store_true",
default=False,
help="run integration tests",
)
def pytest_collection_modifyitems(config, items):
if config.getoption("--runslow") and config.getoption("--runintegration"):
return
if not config.getoption("--runslow"):
skip_slow = pytest.mark.skip(reason="need --runslow option to run")
for item in items:
if "slow" in item.keywords:
item.add_marker(skip_slow)
if not config.getoption("--runintegration"):
skip_integration = pytest.mark.skip(
reason="need --runintegration option to run"
)
for item in items:
if "integration" in item.keywords:
item.add_marker(skip_integration)
| 2.09375 | 2 |
users/migrations/0005_auto_20210609_0406.py | JoyMbugua/arifa | 1 | 12767540 | <filename>users/migrations/0005_auto_20210609_0406.py<gh_stars>1-10
# Generated by Django 3.2.4 on 2021-06-09 04:06
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('users', '0004_rename_experince_customuser_experience'),
]
operations = [
migrations.RemoveField(
model_name='customuser',
name='employer',
),
migrations.RemoveField(
model_name='customuser',
name='experience',
),
migrations.RemoveField(
model_name='customuser',
name='expertise',
),
]
| 1.484375 | 1 |
command_line/fqm_mopac.py | qrefine/qrefine | 17 | 12767541 | <reponame>qrefine/qrefine
from __future__ import division
# LIBTBX_SET_DISPATCHER_NAME qr.fqm_mopac
import sys
import time
import os.path
import libtbx
import iotbx.pdb
import cPickle as pickle
from qrefine.fragment import fragments
from qrefine.fragment import fragment_extracts
from qrefine.fragment import get_qm_file_name_and_pdb_hierarchy
from qrefine.fragment import charge
from qrefine.fragment import write_mm_charge_file
from qrefine.plugin.ase.mopac_qr import Mopac
from qrefine.plugin.ase.orca_qr import Orca
from qrefine.restraints import ase_atoms_from_pdb_hierarchy
qrefine_path = libtbx.env.find_in_repositories("qrefine")
qr_yoink_path =os.path.join(qrefine_path, "plugin","yoink","yoink")
log = sys.stdout
legend = """\
Cluster a system into many small pieces
"""
def print_time(s):
outl = ''
secs=None
if s>60:
secs = s%60
s = s//60
if secs:
return '%02dm:%0.1fs' % (int(s), secs)
return '%0.1fs' % s
def get_qm_energy(qm_engine, fragments_extracted, index):
qm_pdb_file, ph = get_qm_file_name_and_pdb_hierarchy(
fragment_extracts=fragments_extracted,
index=index)
qm_charge = charge(fragment_extracts=fragments_extracted,
index=index)
atoms = ase_atoms_from_pdb_hierarchy(ph)
qm_engine.label = qm_pdb_file[:-4]
print 'LABEL',qm_engine.label
print 'qm_charge',qm_charge
qm_engine.run_qr(atoms,
charge=qm_charge,
pointcharges=None,
coordinates=qm_pdb_file[:-4]+".xyz",
define_str=None)
energy = qm_engine.energy_free #*unit_convert
return energy
class qm_energy_manager (object) :
def __init__ (self, qm_engine, fragments_extracted) :
self.qm_engine = qm_engine
self.fragments_extracted = fragments_extracted
def __call__ (self, index) :
return get_qm_energy(self.qm_engine,
self.fragments_extracted,
index,
)
def run_all (qm_engine,
fragments_extracted,
indices,
method='multiprocessing',
processes=1,
qsub_command=None,
callback=None) :
qm_engine_object = qm_energy_manager(qm_engine, fragments_extracted)
from libtbx.easy_mp import parallel_map
return parallel_map(
func=qm_engine_object,
iterable=indices,
method=method,
processes=processes,
callback=callback,
qsub_command=qsub_command)
def run(pdb_file, log):
pdb_inp = iotbx.pdb.input(pdb_file)
ph = pdb_inp.construct_hierarchy()
cs = pdb_inp.crystal_symmetry()
print >> log, '\n\tfragmenting "%s"' % pdb_file
t0=time.time()
#
# use a pickle file of fragments so testing of parallel is snappy
#
fq_fn = '%s_fq.pickle' % pdb_file.replace('.pdb','')
if not os.path.exists(fq_fn):
fq = fragments(
pdb_hierarchy=ph,
crystal_symmetry=cs,
charge_embedding=True,
debug=False,
qm_engine_name="orca")
print >> log, '\n\tfragmenting took %0.1f\n' % (time.time()-t0)
print >> log, "Residue indices for each cluster:\n", fq.clusters
fq_ext = fragment_extracts(fq)
f=file(fq_fn, 'wb')
pickle.dump(fq_ext, f)
f.close()
else:
f=file(fq_fn, 'rb')
fq_ext = pickle.load(f)
f.close()
#
# get QM engine
#
qm_engine = Orca()
if 0:
#
# use parallel_map
#
#indices = range(len(fq.clusters))
indices = range(len(fq_ext.fragment_selections))
rc = run_all(qm_engine,
fq_ext,
indices,
processes=6,
)
print rc
elif 0:
#
# use multi_core_run
#
from libtbx import easy_mp
nproc=6
argss = []
results = []
#for i in xrange(len(fq.clusters)):
for i in range(len(fq_ext.fragment_selections)):
argss.append([qm_engine, fq_ext, i])
for args, res, err_str in easy_mp.multi_core_run(get_qm_energy,
argss,
nproc,
):
print '%sTotal time: %6.2f (s)' % (' '*7, time.time()-t0)
print args[-1], res
if err_str:
print 'Error output from %s' % args
print err_str
print '_'*80
results.append([args, res, err_str])
print '-'*80
for args, res, err_str in results:
print args[-1], res
else:
#
# serial
#
#for i in xrange(len(fq.clusters)):
for i in range(len(fq_ext.fragment_selections)):
# add capping for the cluster and buffer
print >> log, "capping frag:", i
energy = get_qm_energy(qm_engine, fq_ext, i)
print >> log, " frag:", i, " energy:", energy, ' time:', print_time(time.time()-t0)
time.sleep(10)
if (__name__ == "__main__"):
t0 = time.time()
args = sys.argv[1:]
del sys.argv[1:]
run(args[0], log)
print >> log, "Time: %s" % print_time(time.time() - t0)
| 1.90625 | 2 |
mojito/event/EventGenerator.py | PPACI/mojito | 2 | 12767542 | <reponame>PPACI/mojito<filename>mojito/event/EventGenerator.py
from abc import ABC, abstractmethod
from typing import Any, Dict, List
class EventGenerator(ABC):
@abstractmethod
def generate(self) -> Dict[str, Any]:
"""
Generate a random event
:return: a dict like {property_name: value}
"""
raise NotImplementedError
@abstractmethod
def keys(self) -> List[str]:
"""
Return the list of properties name contained in this event generator
:return: a list of properties name
"""
raise NotImplementedError
| 3.078125 | 3 |
Network/WireShark.py | Penmast/Chameleon | 16 | 12767543 | #from __future__ import print_function
import winreg as reg
from scapy.all import *
import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
ADAPTER_KEY = r'SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}'
OpenVpnPath = "C:\\Program Files\\OpenVPN\\bin\\openvpn.exe"
ConfigPath = os.environ['USERPROFILE']+"\\OpenVPN\\config"
ConfTcp= "C:\\Users\\quent\\Downloads\\ovpn\\ovpn_tcp\\uk298.nordvpn.com.tcp.ovpn"
ConfUdp= "C:\\Users\\quent\\Downloads\\ovpn\\ovpn_udp\\uk298.nordvpn.com.udp.ovpn"
ConnectionKey = "SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}"
interfaces = []
with reg.OpenKey(reg.HKEY_LOCAL_MACHINE, ADAPTER_KEY) as adapters:
try:
for i in range(10000):
key_name = reg.EnumKey(adapters, i)
with reg.OpenKey(adapters, key_name) as adapter:
try:
interfaces.append(reg.QueryValueEx(adapter, 'DriverDesc')[0])
except :
pass
except:
pass
print(interfaces[6])
#conf.color_theme=RastaTheme
#Description du nom de la carte wifi
conf.iface=interfaces[6]
"""
def packet_callback(packet):
if packet[TCP].payload:
pkt = str(packet[TCP].payload)
if packet[IP].dport == 80:
print("\n{} ----HTTP----> {}:{}:\n{}".format(packet[IP].src, packet[IP].dst, packet[IP].dport, str(bytes(packet[TCP].payload))))
sniff(filter="tcp", prn=packet_callback, store=0) """
pkt = []
#pkt = sniff(prn=lambda x: x.summary())
#print(pkt.summary())
packet = {}
cpt_pkt =0
def packet_callback(pkt):
global cpt_pkt
if pkt.haslayer(TCP):
packet[cpt_pkt]= {}
packet[cpt_pkt]["source_Port"] = pkt[TCP].sport
packet[cpt_pkt]["destination_Port"] = pkt[TCP].dport
print("Port Src:", packet[cpt_pkt]["source_Port"], "Port Dst:", packet[cpt_pkt]["destination_Port"])
if pkt.haslayer(IP):
packet[cpt_pkt]= {}
packet[cpt_pkt]["source_IP"] = pkt[IP].src
packet[cpt_pkt]["destination_IP"] = pkt[IP].dst
packet[cpt_pkt]["ttl"] = pkt.ttl
print("IP Src:", packet[cpt_pkt]["source_IP"], "Ip Dst:", packet[cpt_pkt]["destination_IP"])
packet[cpt_pkt] = {}
packet[cpt_pkt]["source_MAC"] = pkt.src
packet[cpt_pkt]["destination_MAC"] = pkt.dst
print("Mac Src:", packet[cpt_pkt]["source_MAC"], "Mac Dst:", packet[cpt_pkt]["destination_MAC"])
cpt_pkt += 1
#pkt.show()
pkt = sniff(count=10, prn=packet_callback, filter="tcp")
wrpcap('packets.pcap', pkt)
print(cpt_pkt)
i=0
print("boucle debut\n")
for cle, valeur in packet.items():
for key, value in packet[i].items():
print(key, value)
i =+1
print("boucle fin\n")
print("Packet 2\n")
print(packet[6])
print("Info packet 2 (IP:Port)\n")
print(packet[4]["source_IP"]+":"+packet[4]["source_Port"]+ "------>"+ packet[4]["destination_IP"]+":"+packet[4]["destination_Port"])
| 2.015625 | 2 |
PyFlow/Packages/CFRP/FunctionLibraries/ActionLibrary.py | yiwc/CFRP | 0 | 12767544 | from PyFlow.Core.Common import *
from PyFlow.Core import FunctionLibraryBase
from PyFlow.Core import IMPLEMENT_NODE
PIN_ALLOWS_ANYTHING = {PinSpecifires.ENABLED_OPTIONS: PinOptions.AllowAny | PinOptions.ArraySupported | PinOptions.DictSupported}
class ActionLibrary(FunctionLibraryBase):
'''doc string for DemoLib'''
def __init__(self, packageName):
super(ActionLibrary, self).__init__(packageName)
@staticmethod
@IMPLEMENT_NODE(returns=None, nodeType=NodeTypes.Callable, meta={NodeMeta.CATEGORY: 'ActionLibrary-L0', NodeMeta.KEYWORDS: []})
def Hi(robot=('AnyPin', "Robot", PIN_ALLOWS_ANYTHING.copy())):
print("Robot say: Hi!")
# @staticmethod
# @IMPLEMENT_NODE(returns=None, nodeType=NodeTypes.Callable, meta={NodeMeta.CATEGORY: 'ActionLibrary', NodeMeta.KEYWORDS: []})
# def set_grippers():
# print("Robot say: Hi!")
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L0', NodeMeta.KEYWORDS: []})
def set_grippers(robot=('AnyPin', "Robot", PIN_ALLOWS_ANYTHING.copy()),
value=('FloatPin', 'Value/0~1')
):
'''Returns attribute from object using "getattr(name)"'''
print("{} Gripper set to->{}".format(robot.name,value))
# return getattr(obj, name)
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L0', NodeMeta.KEYWORDS: []})
def arm_cart_move(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy()),
arm=('StringPin', "Arm (l/r)"),
pos=('AnyPin',"pos=[x,y,z]"),
orn=('AnyPin',"orn=[a,b,c,g]"),
maxforce=('AnyPin',"maxforce=[Fx,Fy,Fz,Fr,Fp,Fy]"),
wait=('BoolPin',"wait=True/False")
):
'''Returns attribute from object using "getattr(name)"'''
print("Robot {} execute arm_cart_move to pos={} orn ={} with maxforce ={}".format(
robot.name,arm,pos,orn,maxforce
))
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L0', NodeMeta.KEYWORDS: []})
def base_move(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy())
):
'''Returns attribute from object using "getattr(name)"'''
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L1', NodeMeta.KEYWORDS: []})
def Pick(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy()),
execute=('ExecPin', "Execute")
):
'''Returns attribute from object using "getattr(name)"'''
print("Do Pick")
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L1', NodeMeta.KEYWORDS: []})
def Place(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy()),
execute=('ExecPin', "Execute")
):
print("Do Place")
'''Returns attribute from object using "getattr(name)"'''
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L1', NodeMeta.KEYWORDS: []})
def Insert(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy())
):
'''Returns attribute from object using "getattr(name)"'''
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L1', NodeMeta.KEYWORDS: []})
def Screw(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy())
):
'''Returns attribute from object using "getattr(name)"'''
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L2', NodeMeta.KEYWORDS: []})
def PickInsertScrew(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy())
):
'''Returns attribute from object using "getattr(name)"'''
return True
@staticmethod
@IMPLEMENT_NODE(returns=('AnyPin', None, PIN_ALLOWS_ANYTHING.copy()), meta={NodeMeta.CATEGORY: 'ActionLibrary-L2', NodeMeta.KEYWORDS: []})
def PickInsert(robot=("AnyPin","Robot", PIN_ALLOWS_ANYTHING.copy())
):
'''Returns attribute from object using "getattr(name)"'''
return True
| 2.40625 | 2 |
geo_college/geocode_tests.py | codelucas/antchatter | 1 | 12767545 | import os
import pickle
import codecs
import json
PARENT_DIR = os.path.dirname(os.path.abspath(__file__))
GEO_FILE = os.path.join(PARENT_DIR, 'college_geocode.txt')
geo_dat_prev = str(codecs.open(GEO_FILE, 'r', 'utf8').read())
geo_json = pickle.loads(geo_dat_prev)
for geo in geo_json[:10]:
print 'loc_range', geo['loc_range']
print'univ_name', geo['univ_name']
print 'loc_exact', geo['loc_exact']
print len(geo_json) | 2.671875 | 3 |
data/test.py | thapashani6/ML-Digit-Detection- | 0 | 12767546 | <gh_stars>0
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 26 19:12:37 2019
@author: Shani
"""
#!/usr/bin/python
#!/usr/bin/python
from PIL import Image
import os, sys
path = "D:/thapa/Documents/Rowan/eighth_Semester/ML/Yolo-digit-detector-master/data"
dirs = os.listdir( path )
def resize():
for item in dirs:
if os.path.isfile(path+item):
im = Image.open(path+item)
f, e = os.path.splitext(path+item)
imResize = im.resize((200,200), Image.ANTIALIAS)
imResize.save(f + ' resized.jpg', 'JPEG', quality=90)
resize() | 2.765625 | 3 |
networks/__init__.py | xinxindefeiyu/S2VD-master_RESID | 48 | 12767547 | #!/usr/bin/env python
# -*- coding:utf-8 -*-
# Power by <NAME> 2020-09-15 13:00:15
| 1.203125 | 1 |
Part_2_intermediate/mod_2/lesson_5/homework_3/shop/product.py | Mikma03/InfoShareacademy_Python_Courses | 0 | 12767548 | class Product:
def __init__(self, name, category_name, unit_price):
self.name = name
self.category_name = category_name
self.unit_price = unit_price
def __str__(self):
return f"Nazwa: {self.name} | Kategoria: {self.category_name} | Cena: {self.unit_price} PLN/szt"
| 3.21875 | 3 |
build.py | ledocc/conan-turtle | 1 | 12767549 | from cpt.packager import ConanMultiPackager, tools
if __name__ == "__main__":
builder = ConanMultiPackager(
reference="turtle/{}".format( tools.load("version.txt") )
)
builder.add_common_builds()
builder.run()
| 1.554688 | 2 |
torchcde/__init__.py | jb-c/torchcde | 247 | 12767550 | <reponame>jb-c/torchcde
from .interpolation_base import InterpolationBase
from .interpolation_cubic import natural_cubic_spline_coeffs, natural_cubic_coeffs, CubicSpline
from .interpolation_linear import linear_interpolation_coeffs, LinearInterpolation
from .interpolation_hermite_cubic_bdiff import hermite_cubic_coefficients_with_backward_differences
from .log_ode import logsignature_windows, logsig_windows
from .misc import TupleControl
from .solver import cdeint
__version__ = "0.2.5"
| 0.898438 | 1 |