code stringlengths 1 25.8M | language stringclasses 18 values | source stringclasses 4 values | repo stringclasses 78 values | path stringlengths 0 268 |
|---|---|---|---|---|
#coding=utf-8
from uliweb.orm import *
from uliweb.utils.common import get_var
import datetime
def get_modified_user():
from uliweb import request
if request and request.user and request.user.id:
return request.user.id
else:
return None
class Workflow(Model):
"""
工作流实例表
"""
spec_name = Field(CHAR, verbose_name='工作流定义标识', max_length=255, required=True)
desc = Field(CHAR, verbose_name='工作流显示名称', max_length=255)
state = Field(int, verbose_name='工作流状态', default=1, choices=get_var('PARA/WF_STATUS'), index=True)
created_date = Field(datetime.datetime, verbose_name='创建时间', auto_now_add=True)
created_user = Reference('user', verbose_name='创建人', default=get_modified_user, auto_add=True)
modified_date = Field(datetime.datetime, verbose_name='修改时间', auto_now=True, auto_now_add=True)
modified_user = Reference('user', verbose_name='修改人', default=get_modified_user, auto=True, auto_add=True)
data = Field(PICKLE, verbose_name='工作流绑定数据')
ref_unique_id = Field(CHAR, verbose_name='关联数据标识', max_length=255)
class Workflow_Task(Model):
"""
工作流活动实例表
"""
workflow = Reference('workflow', verbose_name='所属工作流', collection_name="tasks", index=True)
spec_name = Field(CHAR, verbose_name='活动定义名称', max_length=255)
desc = Field(CHAR, verbose_name='活动显示名称', max_length=255)
alias_name = Field(CHAR, verbose_name='活动名称', max_length=255)
state = Field(int, verbose_name='活动状态', default=1, choices=get_var('PARA/WF_TASK_STATUS'))
created_date = Field(datetime.datetime, verbose_name='创建时间', auto_now_add=True)
created_user = Reference('user', verbose_name='创建人')
modified_date = Field(datetime.datetime, verbose_name='修改时间')
modified_user = Reference('user', verbose_name='修改人')
data = Field(PICKLE, verbose_name='工作流活动绑定数据')
uuid = Field(CHAR, verbose_name='UUID', max_length=255)
async_status = Field(int, default=0)
async_deliver_date = Field(datetime.datetime, auto_now=True, auto_now_add=True)
async_deliver_try_count = Field(int, default=0)
class Workflow_Trans(Model):
"""
工作流活动流向表
"""
workflow = Reference('workflow', verbose_name='所属工作流', collection_name="trans", index=True)
from_task = Reference('workflow_task', verbose_name='流出活动', collection_name="child_tasks")
to_task = Reference('workflow_task', verbose_name='流入活动', collection_name="parent_tasks")
from_name = Field(CHAR, verbose_name='前点名称', max_length=255)
to_name = Field(CHAR, verbose_name='终点名称', max_length=255)
created_date = Field(datetime.datetime, verbose_name='创建时间', auto_now_add=True)
created_user = Reference('user', verbose_name='创建人')
message = Field(CHAR, verbose_name='流转意见', max_length=255)
type = Field(int, verbose_name='流向类型', choices=get_var('PARA/WF_TRANS_TYPE'), default=2) | unknown | codeparrot/codeparrot-clean | ||
/*
* Copyright 2012-present the original author or authors.
*
* 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
*
* https://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.
*/
package org.springframework.boot.buildpack.platform.io;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
/**
* Tests for {@link Content}.
*
* @author Phillip Webb
*/
class ContentTests {
@Test
@SuppressWarnings("NullAway") // Test null check
void ofWhenSupplierIsNullThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> Content.of(1, (IOSupplier<InputStream>) null))
.withMessage("'supplier' must not be null");
}
@Test
void ofWhenStreamReturnsWritable() throws Exception {
byte[] bytes = { 1, 2, 3, 4 };
ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes);
Content writable = Content.of(4, () -> inputStream);
assertThat(writeToAndGetBytes(writable)).isEqualTo(bytes);
}
@Test
@SuppressWarnings("NullAway") // Test null check
void ofWhenStringIsNullThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> Content.of((String) null))
.withMessage("'string' must not be null");
}
@Test
void ofWhenStringReturnsWritable() throws Exception {
Content writable = Content.of("spring");
assertThat(writeToAndGetBytes(writable)).isEqualTo("spring".getBytes(StandardCharsets.UTF_8));
}
@Test
@SuppressWarnings("NullAway") // Test null check
void ofWhenBytesIsNullThrowsException() {
assertThatIllegalArgumentException().isThrownBy(() -> Content.of((byte[]) null))
.withMessage("'bytes' must not be null");
}
@Test
void ofWhenBytesReturnsWritable() throws Exception {
byte[] bytes = { 1, 2, 3, 4 };
Content writable = Content.of(bytes);
assertThat(writeToAndGetBytes(writable)).isEqualTo(bytes);
}
private byte[] writeToAndGetBytes(Content writable) throws IOException {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
writable.writeTo(outputStream);
return outputStream.toByteArray();
}
} | java | github | https://github.com/spring-projects/spring-boot | buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/io/ContentTests.java |
"""
Support for a generic MQTT vacuum.
For more details about this platform, please refer to the documentation
https://home-assistant.io/components/vacuum.mqtt/
"""
import asyncio
import logging
import voluptuous as vol
from homeassistant.components import mqtt
from homeassistant.components.mqtt import MqttAvailability
from homeassistant.components.vacuum import (
SUPPORT_BATTERY, SUPPORT_CLEAN_SPOT, SUPPORT_FAN_SPEED,
SUPPORT_LOCATE, SUPPORT_PAUSE, SUPPORT_RETURN_HOME, SUPPORT_SEND_COMMAND,
SUPPORT_STATUS, SUPPORT_STOP, SUPPORT_TURN_OFF, SUPPORT_TURN_ON,
VacuumDevice)
from homeassistant.const import ATTR_SUPPORTED_FEATURES, CONF_NAME
from homeassistant.core import callback
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.icon import icon_for_battery_level
_LOGGER = logging.getLogger(__name__)
DEPENDENCIES = ['mqtt']
SERVICE_TO_STRING = {
SUPPORT_TURN_ON: 'turn_on',
SUPPORT_TURN_OFF: 'turn_off',
SUPPORT_PAUSE: 'pause',
SUPPORT_STOP: 'stop',
SUPPORT_RETURN_HOME: 'return_home',
SUPPORT_FAN_SPEED: 'fan_speed',
SUPPORT_BATTERY: 'battery',
SUPPORT_STATUS: 'status',
SUPPORT_SEND_COMMAND: 'send_command',
SUPPORT_LOCATE: 'locate',
SUPPORT_CLEAN_SPOT: 'clean_spot',
}
STRING_TO_SERVICE = {v: k for k, v in SERVICE_TO_STRING.items()}
def services_to_strings(services):
"""Convert SUPPORT_* service bitmask to list of service strings."""
strings = []
for service in SERVICE_TO_STRING:
if service & services:
strings.append(SERVICE_TO_STRING[service])
return strings
def strings_to_services(strings):
"""Convert service strings to SUPPORT_* service bitmask."""
services = 0
for string in strings:
services |= STRING_TO_SERVICE[string]
return services
DEFAULT_SERVICES = SUPPORT_TURN_ON | SUPPORT_TURN_OFF | SUPPORT_STOP |\
SUPPORT_RETURN_HOME | SUPPORT_STATUS | SUPPORT_BATTERY |\
SUPPORT_CLEAN_SPOT
ALL_SERVICES = DEFAULT_SERVICES | SUPPORT_PAUSE | SUPPORT_LOCATE |\
SUPPORT_FAN_SPEED | SUPPORT_SEND_COMMAND
CONF_SUPPORTED_FEATURES = ATTR_SUPPORTED_FEATURES
CONF_PAYLOAD_TURN_ON = 'payload_turn_on'
CONF_PAYLOAD_TURN_OFF = 'payload_turn_off'
CONF_PAYLOAD_RETURN_TO_BASE = 'payload_return_to_base'
CONF_PAYLOAD_STOP = 'payload_stop'
CONF_PAYLOAD_CLEAN_SPOT = 'payload_clean_spot'
CONF_PAYLOAD_LOCATE = 'payload_locate'
CONF_PAYLOAD_START_PAUSE = 'payload_start_pause'
CONF_BATTERY_LEVEL_TOPIC = 'battery_level_topic'
CONF_BATTERY_LEVEL_TEMPLATE = 'battery_level_template'
CONF_CHARGING_TOPIC = 'charging_topic'
CONF_CHARGING_TEMPLATE = 'charging_template'
CONF_CLEANING_TOPIC = 'cleaning_topic'
CONF_CLEANING_TEMPLATE = 'cleaning_template'
CONF_DOCKED_TOPIC = 'docked_topic'
CONF_DOCKED_TEMPLATE = 'docked_template'
CONF_STATE_TOPIC = 'state_topic'
CONF_STATE_TEMPLATE = 'state_template'
CONF_FAN_SPEED_TOPIC = 'fan_speed_topic'
CONF_FAN_SPEED_TEMPLATE = 'fan_speed_template'
CONF_SET_FAN_SPEED_TOPIC = 'set_fan_speed_topic'
CONF_FAN_SPEED_LIST = 'fan_speed_list'
CONF_SEND_COMMAND_TOPIC = 'send_command_topic'
DEFAULT_NAME = 'MQTT Vacuum'
DEFAULT_RETAIN = False
DEFAULT_SERVICE_STRINGS = services_to_strings(DEFAULT_SERVICES)
DEFAULT_PAYLOAD_TURN_ON = 'turn_on'
DEFAULT_PAYLOAD_TURN_OFF = 'turn_off'
DEFAULT_PAYLOAD_RETURN_TO_BASE = 'return_to_base'
DEFAULT_PAYLOAD_STOP = 'stop'
DEFAULT_PAYLOAD_CLEAN_SPOT = 'clean_spot'
DEFAULT_PAYLOAD_LOCATE = 'locate'
DEFAULT_PAYLOAD_START_PAUSE = 'start_pause'
PLATFORM_SCHEMA = mqtt.MQTT_BASE_PLATFORM_SCHEMA.extend({
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
vol.Optional(CONF_SUPPORTED_FEATURES, default=DEFAULT_SERVICE_STRINGS):
vol.All(cv.ensure_list, [vol.In(STRING_TO_SERVICE.keys())]),
vol.Optional(mqtt.CONF_RETAIN, default=DEFAULT_RETAIN): cv.boolean,
vol.Optional(mqtt.CONF_COMMAND_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_PAYLOAD_TURN_ON,
default=DEFAULT_PAYLOAD_TURN_ON): cv.string,
vol.Optional(CONF_PAYLOAD_TURN_OFF,
default=DEFAULT_PAYLOAD_TURN_OFF): cv.string,
vol.Optional(CONF_PAYLOAD_RETURN_TO_BASE,
default=DEFAULT_PAYLOAD_RETURN_TO_BASE): cv.string,
vol.Optional(CONF_PAYLOAD_STOP,
default=DEFAULT_PAYLOAD_STOP): cv.string,
vol.Optional(CONF_PAYLOAD_CLEAN_SPOT,
default=DEFAULT_PAYLOAD_CLEAN_SPOT): cv.string,
vol.Optional(CONF_PAYLOAD_LOCATE,
default=DEFAULT_PAYLOAD_LOCATE): cv.string,
vol.Optional(CONF_PAYLOAD_START_PAUSE,
default=DEFAULT_PAYLOAD_START_PAUSE): cv.string,
vol.Optional(CONF_BATTERY_LEVEL_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_BATTERY_LEVEL_TEMPLATE): cv.template,
vol.Optional(CONF_CHARGING_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_CHARGING_TEMPLATE): cv.template,
vol.Optional(CONF_CLEANING_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_CLEANING_TEMPLATE): cv.template,
vol.Optional(CONF_DOCKED_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_DOCKED_TEMPLATE): cv.template,
vol.Optional(CONF_STATE_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_STATE_TEMPLATE): cv.template,
vol.Optional(CONF_FAN_SPEED_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_FAN_SPEED_TEMPLATE): cv.template,
vol.Optional(CONF_SET_FAN_SPEED_TOPIC): mqtt.valid_publish_topic,
vol.Optional(CONF_FAN_SPEED_LIST, default=[]):
vol.All(cv.ensure_list, [cv.string]),
vol.Optional(CONF_SEND_COMMAND_TOPIC): mqtt.valid_publish_topic,
}).extend(mqtt.MQTT_AVAILABILITY_SCHEMA.schema)
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_entities,
discovery_info=None):
"""Set up the vacuum."""
name = config.get(CONF_NAME)
supported_feature_strings = config.get(CONF_SUPPORTED_FEATURES)
supported_features = strings_to_services(supported_feature_strings)
qos = config.get(mqtt.CONF_QOS)
retain = config.get(mqtt.CONF_RETAIN)
command_topic = config.get(mqtt.CONF_COMMAND_TOPIC)
payload_turn_on = config.get(CONF_PAYLOAD_TURN_ON)
payload_turn_off = config.get(CONF_PAYLOAD_TURN_OFF)
payload_return_to_base = config.get(CONF_PAYLOAD_RETURN_TO_BASE)
payload_stop = config.get(CONF_PAYLOAD_STOP)
payload_clean_spot = config.get(CONF_PAYLOAD_CLEAN_SPOT)
payload_locate = config.get(CONF_PAYLOAD_LOCATE)
payload_start_pause = config.get(CONF_PAYLOAD_START_PAUSE)
battery_level_topic = config.get(CONF_BATTERY_LEVEL_TOPIC)
battery_level_template = config.get(CONF_BATTERY_LEVEL_TEMPLATE)
if battery_level_template:
battery_level_template.hass = hass
charging_topic = config.get(CONF_CHARGING_TOPIC)
charging_template = config.get(CONF_CHARGING_TEMPLATE)
if charging_template:
charging_template.hass = hass
cleaning_topic = config.get(CONF_CLEANING_TOPIC)
cleaning_template = config.get(CONF_CLEANING_TEMPLATE)
if cleaning_template:
cleaning_template.hass = hass
docked_topic = config.get(CONF_DOCKED_TOPIC)
docked_template = config.get(CONF_DOCKED_TEMPLATE)
if docked_template:
docked_template.hass = hass
fan_speed_topic = config.get(CONF_FAN_SPEED_TOPIC)
fan_speed_template = config.get(CONF_FAN_SPEED_TEMPLATE)
if fan_speed_template:
fan_speed_template.hass = hass
set_fan_speed_topic = config.get(CONF_SET_FAN_SPEED_TOPIC)
fan_speed_list = config.get(CONF_FAN_SPEED_LIST)
send_command_topic = config.get(CONF_SEND_COMMAND_TOPIC)
availability_topic = config.get(mqtt.CONF_AVAILABILITY_TOPIC)
payload_available = config.get(mqtt.CONF_PAYLOAD_AVAILABLE)
payload_not_available = config.get(mqtt.CONF_PAYLOAD_NOT_AVAILABLE)
async_add_entities([
MqttVacuum(
name, supported_features, qos, retain, command_topic,
payload_turn_on, payload_turn_off, payload_return_to_base,
payload_stop, payload_clean_spot, payload_locate,
payload_start_pause, battery_level_topic, battery_level_template,
charging_topic, charging_template, cleaning_topic,
cleaning_template, docked_topic, docked_template, fan_speed_topic,
fan_speed_template, set_fan_speed_topic, fan_speed_list,
send_command_topic, availability_topic, payload_available,
payload_not_available
),
])
class MqttVacuum(MqttAvailability, VacuumDevice):
"""Representation of a MQTT-controlled vacuum."""
def __init__(
self, name, supported_features, qos, retain, command_topic,
payload_turn_on, payload_turn_off, payload_return_to_base,
payload_stop, payload_clean_spot, payload_locate,
payload_start_pause, battery_level_topic, battery_level_template,
charging_topic, charging_template, cleaning_topic,
cleaning_template, docked_topic, docked_template, fan_speed_topic,
fan_speed_template, set_fan_speed_topic, fan_speed_list,
send_command_topic, availability_topic, payload_available,
payload_not_available):
"""Initialize the vacuum."""
super().__init__(availability_topic, qos, payload_available,
payload_not_available)
self._name = name
self._supported_features = supported_features
self._qos = qos
self._retain = retain
self._command_topic = command_topic
self._payload_turn_on = payload_turn_on
self._payload_turn_off = payload_turn_off
self._payload_return_to_base = payload_return_to_base
self._payload_stop = payload_stop
self._payload_clean_spot = payload_clean_spot
self._payload_locate = payload_locate
self._payload_start_pause = payload_start_pause
self._battery_level_topic = battery_level_topic
self._battery_level_template = battery_level_template
self._charging_topic = charging_topic
self._charging_template = charging_template
self._cleaning_topic = cleaning_topic
self._cleaning_template = cleaning_template
self._docked_topic = docked_topic
self._docked_template = docked_template
self._fan_speed_topic = fan_speed_topic
self._fan_speed_template = fan_speed_template
self._set_fan_speed_topic = set_fan_speed_topic
self._fan_speed_list = fan_speed_list
self._send_command_topic = send_command_topic
self._cleaning = False
self._charging = False
self._docked = False
self._status = 'Unknown'
self._battery_level = 0
self._fan_speed = 'unknown'
@asyncio.coroutine
def async_added_to_hass(self):
"""Subscribe MQTT events."""
yield from super().async_added_to_hass()
@callback
def message_received(topic, payload, qos):
"""Handle new MQTT message."""
if topic == self._battery_level_topic and \
self._battery_level_template:
battery_level = self._battery_level_template\
.async_render_with_possible_json_value(
payload,
error_value=None)
if battery_level is not None:
self._battery_level = int(battery_level)
if topic == self._charging_topic and self._charging_template:
charging = self._charging_template\
.async_render_with_possible_json_value(
payload,
error_value=None)
if charging is not None:
self._charging = cv.boolean(charging)
if topic == self._cleaning_topic and self._cleaning_template:
cleaning = self._cleaning_template \
.async_render_with_possible_json_value(
payload,
error_value=None)
if cleaning is not None:
self._cleaning = cv.boolean(cleaning)
if topic == self._docked_topic and self._docked_template:
docked = self._docked_template \
.async_render_with_possible_json_value(
payload,
error_value=None)
if docked is not None:
self._docked = cv.boolean(docked)
if self._docked:
if self._charging:
self._status = "Docked & Charging"
else:
self._status = "Docked"
elif self._cleaning:
self._status = "Cleaning"
else:
self._status = "Stopped"
if topic == self._fan_speed_topic and self._fan_speed_template:
fan_speed = self._fan_speed_template\
.async_render_with_possible_json_value(
payload,
error_value=None)
if fan_speed is not None:
self._fan_speed = fan_speed
self.async_schedule_update_ha_state()
topics_list = [topic for topic in (self._battery_level_topic,
self._charging_topic,
self._cleaning_topic,
self._docked_topic,
self._fan_speed_topic) if topic]
for topic in set(topics_list):
yield from self.hass.components.mqtt.async_subscribe(
topic, message_received, self._qos)
@property
def name(self):
"""Return the name of the vacuum."""
return self._name
@property
def should_poll(self):
"""No polling needed for an MQTT vacuum."""
return False
@property
def is_on(self):
"""Return true if vacuum is on."""
return self._cleaning
@property
def status(self):
"""Return a status string for the vacuum."""
if self.supported_features & SUPPORT_STATUS == 0:
return
return self._status
@property
def fan_speed(self):
"""Return the status of the vacuum."""
if self.supported_features & SUPPORT_FAN_SPEED == 0:
return
return self._fan_speed
@property
def fan_speed_list(self):
"""Return the status of the vacuum."""
if self.supported_features & SUPPORT_FAN_SPEED == 0:
return []
return self._fan_speed_list
@property
def battery_level(self):
"""Return the status of the vacuum."""
if self.supported_features & SUPPORT_BATTERY == 0:
return
return max(0, min(100, self._battery_level))
@property
def battery_icon(self):
"""Return the battery icon for the vacuum cleaner."""
if self.supported_features & SUPPORT_BATTERY == 0:
return
return icon_for_battery_level(
battery_level=self.battery_level, charging=self._charging)
@property
def supported_features(self):
"""Flag supported features."""
return self._supported_features
@asyncio.coroutine
def async_turn_on(self, **kwargs):
"""Turn the vacuum on."""
if self.supported_features & SUPPORT_TURN_ON == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_turn_on, self._qos, self._retain)
self._status = 'Cleaning'
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_turn_off(self, **kwargs):
"""Turn the vacuum off."""
if self.supported_features & SUPPORT_TURN_OFF == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_turn_off, self._qos, self._retain)
self._status = 'Turning Off'
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_stop(self, **kwargs):
"""Stop the vacuum."""
if self.supported_features & SUPPORT_STOP == 0:
return
mqtt.async_publish(self.hass, self._command_topic, self._payload_stop,
self._qos, self._retain)
self._status = 'Stopping the current task'
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_clean_spot(self, **kwargs):
"""Perform a spot clean-up."""
if self.supported_features & SUPPORT_CLEAN_SPOT == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_clean_spot, self._qos, self._retain)
self._status = "Cleaning spot"
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_locate(self, **kwargs):
"""Locate the vacuum (usually by playing a song)."""
if self.supported_features & SUPPORT_LOCATE == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_locate, self._qos, self._retain)
self._status = "Hi, I'm over here!"
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_start_pause(self, **kwargs):
"""Start, pause or resume the cleaning task."""
if self.supported_features & SUPPORT_PAUSE == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_start_pause, self._qos, self._retain)
self._status = 'Pausing/Resuming cleaning...'
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_return_to_base(self, **kwargs):
"""Tell the vacuum to return to its dock."""
if self.supported_features & SUPPORT_RETURN_HOME == 0:
return
mqtt.async_publish(self.hass, self._command_topic,
self._payload_return_to_base, self._qos,
self._retain)
self._status = 'Returning home...'
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_set_fan_speed(self, fan_speed, **kwargs):
"""Set fan speed."""
if self.supported_features & SUPPORT_FAN_SPEED == 0:
return
if not self._fan_speed_list or fan_speed not in self._fan_speed_list:
return
mqtt.async_publish(
self.hass, self._set_fan_speed_topic, fan_speed, self._qos,
self._retain)
self._status = "Setting fan to {}...".format(fan_speed)
self.async_schedule_update_ha_state()
@asyncio.coroutine
def async_send_command(self, command, params=None, **kwargs):
"""Send a command to a vacuum cleaner."""
if self.supported_features & SUPPORT_SEND_COMMAND == 0:
return
mqtt.async_publish(
self.hass, self._send_command_topic, command, self._qos,
self._retain)
self._status = "Sending command {}...".format(command)
self.async_schedule_update_ha_state() | unknown | codeparrot/codeparrot-clean | ||
import pytest
import struct
from functools import partial
from ..validators import validate_response_mbap
from umodbus.client.serial import rtu
from umodbus.client.serial.redundancy_check import (get_crc, validate_crc,
add_crc, CRCError)
def test_no_response_for_request_with_invalid_crc(rtu_server):
""" Test if server doesn't respond on a request with an invalid CRC. """
pdu = rtu.read_coils(1, 9, 2)
adu = struct.pack('>B', 1) + pdu + struct.pack('>BB', 0, 0)
rtu_server.serial_port.write(adu)
with pytest.raises(CRCError):
rtu_server.serve_once()
@pytest.mark.parametrize('function_code, quantity', [
(1, 0),
(2, 0),
(3, 0),
(4, 0),
(1, 0x07D0 + 1),
(2, 0x07D0 + 1),
(3, 0x007D + 1),
(4, 0x007D + 1),
])
def test_request_returning_invalid_data_value_error(rtu_server, function_code,
quantity):
""" Validate response PDU of request returning excepetion response with
error code 3.
"""
starting_address = 0
slave_id = 1
adu = add_crc(struct.pack('>BBHH', slave_id, function_code,
starting_address, quantity))
rtu_server.serial_port.write(adu)
rtu_server.serve_once()
resp = rtu_server.serial_port.read(rtu_server.serial_port.in_waiting)
validate_crc(resp)
assert struct.unpack('>BB', resp[1:-2]) == (0x80 + function_code, 3)
@pytest.mark.parametrize('function', [
(partial(rtu.read_coils, 1, 9, 2)),
(partial(rtu.read_discrete_inputs, 1, 9, 2)),
(partial(rtu.read_holding_registers, 1, 9, 2)),
(partial(rtu.read_input_registers, 1, 9, 2)),
(partial(rtu.write_single_coil, 1, 11, 0)),
(partial(rtu.write_single_register, 1, 11, 1337)),
(partial(rtu.write_multiple_coils, 1, 9, [1, 1])),
(partial(rtu.write_multiple_registers, 1, 9, [1337, 15])),
])
def test_request_returning_invalid_data_address_error(rtu_server, function):
""" Validate response PDU of request returning excepetion response with
error code 2.
"""
adu = function()
function_code = struct.unpack('>B', adu[1:2])[0]
rtu_server.serial_port.write(adu)
rtu_server.serve_once()
resp = rtu_server.serial_port.read(rtu_server.serial_port.in_waiting)
validate_crc(resp)
assert struct.unpack('>BB', resp[1:-2]) == (0x80 + function_code, 2)
@pytest.mark.parametrize('function', [
(partial(rtu.read_coils, 1, 666, 1)),
(partial(rtu.read_discrete_inputs, 1, 666, 1)),
(partial(rtu.read_holding_registers, 1, 666, 1)),
(partial(rtu.read_input_registers, 1, 666, 1)),
(partial(rtu.write_single_coil, 1, 666, 0)),
(partial(rtu.write_single_register, 1, 666, 1337)),
(partial(rtu.write_multiple_coils, 1, 666, [1])),
(partial(rtu.write_multiple_registers, 1, 666, [1337])),
])
def test_request_returning_server_device_failure_error(rtu_server, function):
""" Validate response PDU of request returning excepetion response with
error code 4.
"""
adu = function()
function_code = struct.unpack('>B', adu[1:2])[0]
rtu_server.serial_port.write(adu)
rtu_server.serve_once()
resp = rtu_server.serial_port.read(rtu_server.serial_port.in_waiting)
validate_crc(resp)
assert struct.unpack('>BB', resp[1:-2]) == (0x80 + function_code, 4) | unknown | codeparrot/codeparrot-clean | ||
import discord
from discord.ext import commands
import random
description = '''An example bot to showcase the discord.ext.commands extension
module.
There are a number of utility commands being showcased here.'''
bot = commands.Bot(command_prefix='?', description=description)
@bot.event
async def on_ready():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print('------')
@bot.command()
async def add(ctx, left: int, right: int):
"""Adds two numbers together."""
await ctx.send(left + right)
@bot.command()
async def roll(ctx, dice: str):
"""Rolls a dice in NdN format."""
try:
rolls, limit = map(int, dice.split('d'))
except Exception:
await ctx.send('Format has to be in NdN!')
return
result = ', '.join(str(random.randint(1, limit)) for r in range(rolls))
await ctx.send(result)
@bot.command(description='For when you wanna settle the score some other way')
async def choose(ctx, *choices: str):
"""Chooses between multiple choices."""
await ctx.send(random.choice(choices))
@bot.command()
async def repeat(ctx, times: int, content='repeating...'):
"""Repeats a message multiple times."""
for i in range(times):
await ctx.send(content)
@bot.command()
async def joined(ctx, member: discord.Member):
"""Says when a member joined."""
await ctx.send('{0.name} joined in {0.joined_at}'.format(member))
@bot.group()
async def cool(ctx):
"""Says if a user is cool.
In reality this just checks if a subcommand is being invoked.
"""
if ctx.invoked_subcommand is None:
await ctx.send('No, {0.subcommand_passed} is not cool'.format(ctx))
@cool.command(name='bot')
async def _bot(ctx):
"""Is the bot cool?"""
await ctx.send('Yes, the bot is cool.')
bot.run('token') | unknown | codeparrot/codeparrot-clean | ||
use rustc_hir::attrs::{CollapseMacroDebuginfo, MacroUseArgs};
use rustc_session::lint::builtin::INVALID_MACRO_EXPORT_ARGUMENTS;
use super::prelude::*;
pub(crate) struct MacroEscapeParser;
impl<S: Stage> NoArgsAttributeParser<S> for MacroEscapeParser {
const PATH: &[Symbol] = &[sym::macro_escape];
const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::Warn;
const ALLOWED_TARGETS: AllowedTargets = MACRO_USE_ALLOWED_TARGETS;
const CREATE: fn(Span) -> AttributeKind = AttributeKind::MacroEscape;
}
/// `#[macro_use]` attributes can either:
/// - Use all macros from a crate, if provided without arguments
/// - Use specific macros from a crate, if provided with arguments `#[macro_use(macro1, macro2)]`
/// A warning should be provided if an use all is combined with specific uses, or if multiple use-alls are used.
#[derive(Default)]
pub(crate) struct MacroUseParser {
state: MacroUseArgs,
/// Spans of all `#[macro_use]` arguments with arguments, used for linting
uses_attr_spans: ThinVec<Span>,
/// If `state` is `UseSpecific`, stores the span of the first `#[macro_use]` argument, used as the span for this attribute
/// If `state` is `UseAll`, stores the span of the first `#[macro_use]` arguments without arguments
first_span: Option<Span>,
}
const MACRO_USE_TEMPLATE: AttributeTemplate = template!(
Word, List: &["name1, name2, ..."],
"https://doc.rust-lang.org/reference/macros-by-example.html#the-macro_use-attribute"
);
const MACRO_USE_ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowListWarnRest(&[
Allow(Target::Mod),
Allow(Target::ExternCrate),
Allow(Target::Crate),
Error(Target::WherePredicate),
]);
impl<S: Stage> AttributeParser<S> for MacroUseParser {
const ATTRIBUTES: AcceptMapping<Self, S> = &[(
&[sym::macro_use],
MACRO_USE_TEMPLATE,
|group: &mut Self, cx: &mut AcceptContext<'_, '_, S>, args| {
let span = cx.attr_span;
group.first_span.get_or_insert(span);
match args {
ArgParser::NoArgs => {
match group.state {
MacroUseArgs::UseAll => {
let first_span = group.first_span.expect(
"State is UseAll is some so this is not the first attribute",
);
// Since there is a `#[macro_use]` import already, give a warning
cx.warn_unused_duplicate(first_span, span);
}
MacroUseArgs::UseSpecific(_) => {
group.state = MacroUseArgs::UseAll;
group.first_span = Some(span);
// If there is a `#[macro_use]` attribute, warn on all `#[macro_use(...)]` attributes since everything is already imported
for specific_use in group.uses_attr_spans.drain(..) {
cx.warn_unused_duplicate(span, specific_use);
}
}
}
}
ArgParser::List(list) => {
if list.is_empty() {
cx.warn_empty_attribute(list.span);
return;
}
match &mut group.state {
MacroUseArgs::UseAll => {
let first_span = group.first_span.expect(
"State is UseAll is some so this is not the first attribute",
);
cx.warn_unused_duplicate(first_span, span);
}
MacroUseArgs::UseSpecific(arguments) => {
// Store here so if we encounter a `UseAll` later we can still lint this attribute
group.uses_attr_spans.push(cx.attr_span);
for item in list.mixed() {
let Some(item) = item.meta_item() else {
cx.expected_identifier(item.span());
continue;
};
if let Err(err_span) = item.args().no_args() {
cx.expected_no_args(err_span);
continue;
}
let Some(item) = item.path().word() else {
cx.expected_identifier(item.span());
continue;
};
arguments.push(item);
}
}
}
}
ArgParser::NameValue(nv) => {
cx.expected_list_or_no_args(nv.args_span());
}
}
},
)];
const ALLOWED_TARGETS: AllowedTargets = MACRO_USE_ALLOWED_TARGETS;
fn finalize(self, _cx: &FinalizeContext<'_, '_, S>) -> Option<AttributeKind> {
Some(AttributeKind::MacroUse { span: self.first_span?, arguments: self.state })
}
}
pub(crate) struct AllowInternalUnsafeParser;
impl<S: Stage> NoArgsAttributeParser<S> for AllowInternalUnsafeParser {
const PATH: &[Symbol] = &[sym::allow_internal_unsafe];
const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::Ignore;
const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowList(&[
Allow(Target::Fn),
Allow(Target::MacroDef),
Warn(Target::Field),
Warn(Target::Arm),
]);
const CREATE: fn(Span) -> AttributeKind = |span| AttributeKind::AllowInternalUnsafe(span);
}
pub(crate) struct MacroExportParser;
impl<S: Stage> SingleAttributeParser<S> for MacroExportParser {
const PATH: &[Symbol] = &[sym::macro_export];
const ATTRIBUTE_ORDER: AttributeOrder = AttributeOrder::KeepOutermost;
const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::Warn;
const TEMPLATE: AttributeTemplate = template!(Word, List: &["local_inner_macros"]);
const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowListWarnRest(&[
Allow(Target::MacroDef),
Error(Target::WherePredicate),
Error(Target::Crate),
]);
fn convert(cx: &mut AcceptContext<'_, '_, S>, args: &ArgParser) -> Option<AttributeKind> {
let local_inner_macros = match args {
ArgParser::NoArgs => false,
ArgParser::List(list) => {
let Some(l) = list.single() else {
cx.warn_ill_formed_attribute_input(INVALID_MACRO_EXPORT_ARGUMENTS);
return None;
};
match l.meta_item().and_then(|i| i.path().word_sym()) {
Some(sym::local_inner_macros) => true,
_ => {
cx.warn_ill_formed_attribute_input(INVALID_MACRO_EXPORT_ARGUMENTS);
return None;
}
}
}
ArgParser::NameValue(nv) => {
cx.expected_list_or_no_args(nv.args_span());
return None;
}
};
Some(AttributeKind::MacroExport { span: cx.attr_span, local_inner_macros })
}
}
pub(crate) struct CollapseDebugInfoParser;
impl<S: Stage> SingleAttributeParser<S> for CollapseDebugInfoParser {
const PATH: &[Symbol] = &[sym::collapse_debuginfo];
const ATTRIBUTE_ORDER: AttributeOrder = AttributeOrder::KeepOutermost;
const ON_DUPLICATE: OnDuplicate<S> = OnDuplicate::Error;
const TEMPLATE: AttributeTemplate = template!(
List: &["no", "external", "yes"],
"https://doc.rust-lang.org/reference/attributes/debugger.html#the-collapse_debuginfo-attribute"
);
const ALLOWED_TARGETS: AllowedTargets = AllowedTargets::AllowList(&[Allow(Target::MacroDef)]);
fn convert(cx: &mut AcceptContext<'_, '_, S>, args: &ArgParser) -> Option<AttributeKind> {
let Some(list) = args.list() else {
cx.expected_list(cx.attr_span, args);
return None;
};
let Some(single) = list.single() else {
cx.expected_single_argument(list.span);
return None;
};
let Some(mi) = single.meta_item() else {
cx.unexpected_literal(single.span());
return None;
};
if let Err(err) = mi.args().no_args() {
cx.expected_no_args(err);
}
let path = mi.path().word_sym();
let info = match path {
Some(sym::yes) => CollapseMacroDebuginfo::Yes,
Some(sym::no) => CollapseMacroDebuginfo::No,
Some(sym::external) => CollapseMacroDebuginfo::External,
_ => {
cx.expected_specific_argument(mi.span(), &[sym::yes, sym::no, sym::external]);
return None;
}
};
Some(AttributeKind::CollapseDebugInfo(info))
}
} | rust | github | https://github.com/rust-lang/rust | compiler/rustc_attr_parsing/src/attributes/macro_attrs.rs |
html {
font-size: 62.5%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-bottom: 0px;
height: auto !important;
}
body {
@include opensans-font-stack();
position: relative;
overflow: auto;
color: $text-basic;
font-size: 16px;
line-height: 1.5;
background: $page-bg;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
height: auto !important;
&.on-page-editor {
background: $page-bg-editor !important;
}
}
a {
color: $text-basic;
cursor: pointer;
font-size: 0.85em;
&:hover {
color: $text-basic-active;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1em;
}
h5 {
font-size: 0.83em;
}
h6 {
font-size: 0.67em;
}
ul li {
list-style-type: none;
}
.xa-variable {
border: 0px;
padding: 1px;
margin: 0px;
background-color: #ebebe4;
color: #545454;
user-select: none;
pointer-events: none;
}
//Navigation Bar fix
#breadcrumbMenuSubcontrol_context_menu * {
box-sizing: initial;
}
//End navigation bar fix
.menu-mobile-navigate {
display: none;
}
#header,
#content,
#footer,
.sc-jss-empty-placeholder {
width: 100%;
display: flex;
flex-wrap: wrap;
}
.sc-jss-placeholder-error {
background: #ff0000;
outline: 5px solid #e36565;
padding: 10px;
color: #fff;
max-width: 500px;
} | unknown | github | https://github.com/vercel/next.js | examples/cms-sitecore-xmcloud/src/assets/sass/_app.scss |
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Copyright 2010 OpenStack Foundation
# Copyright 2013 IBM Corp.
#
# 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 __future__ import print_function
import os
import sys
import install_venv_common as install_venv
def print_help(venv, root):
help = """
Nova development environment setup is complete.
Nova development uses virtualenv to track and manage Python dependencies
while in development and testing.
To activate the Nova virtualenv for the extent of your current shell
session you can run:
$ source %s/bin/activate
Or, if you prefer, you can run commands in the virtualenv on a case by case
basis by running:
$ %s/tools/with_venv.sh <your command>
Also, make test will automatically use the virtualenv.
"""
print(help % (venv, root))
def main(argv):
root = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
if os.environ.get('tools_path'):
root = os.environ['tools_path']
venv = os.path.join(root, '.venv')
if os.environ.get('venv'):
venv = os.environ['venv']
pip_requires = os.path.join(root, 'requirements.txt')
test_requires = os.path.join(root, 'test-requirements.txt')
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'Nova'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,
py_version, project)
options = install.parse_args(argv)
install.check_python_version()
install.check_dependencies()
install.create_virtualenv(no_site_packages=options.no_site_packages)
install.install_dependencies()
print_help(venv, root)
if __name__ == '__main__':
main(sys.argv) | unknown | codeparrot/codeparrot-clean | ||
# -*- coding: utf-8 -*-
"""
pygments.lexers.console
~~~~~~~~~~~~~~~~~~~~~~~
Lexers for misc console output.
:copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from pygments.lexer import RegexLexer, include, bygroups
from pygments.token import Generic, Comment, String, Text, Keyword, Name, \
Punctuation, Number
__all__ = ['VCTreeStatusLexer', 'PyPyLogLexer']
class VCTreeStatusLexer(RegexLexer):
"""
For colorizing output of version control status commands, like "hg
status" or "svn status".
.. versionadded:: 2.0
"""
name = 'VCTreeStatus'
aliases = ['vctreestatus']
filenames = []
mimetypes = []
tokens = {
'root': [
(r'^A \+ C\s+', Generic.Error),
(r'^A\s+\+?\s+', String),
(r'^M\s+', Generic.Inserted),
(r'^C\s+', Generic.Error),
(r'^D\s+', Generic.Deleted),
(r'^[?!]\s+', Comment.Preproc),
(r' >\s+.*\n', Comment.Preproc),
(r'.*\n', Text)
]
}
class PyPyLogLexer(RegexLexer):
"""
Lexer for PyPy log files.
.. versionadded:: 1.5
"""
name = "PyPy Log"
aliases = ["pypylog", "pypy"]
filenames = ["*.pypylog"]
mimetypes = ['application/x-pypylog']
tokens = {
"root": [
(r"\[\w+\] \{jit-log-.*?$", Keyword, "jit-log"),
(r"\[\w+\] \{jit-backend-counts$", Keyword, "jit-backend-counts"),
include("extra-stuff"),
],
"jit-log": [
(r"\[\w+\] jit-log-.*?}$", Keyword, "#pop"),
(r"^\+\d+: ", Comment),
(r"--end of the loop--", Comment),
(r"[ifp]\d+", Name),
(r"ptr\d+", Name),
(r"(\()(\w+(?:\.\w+)?)(\))",
bygroups(Punctuation, Name.Builtin, Punctuation)),
(r"[\[\]=,()]", Punctuation),
(r"(\d+\.\d+|inf|-inf)", Number.Float),
(r"-?\d+", Number.Integer),
(r"'.*'", String),
(r"(None|descr|ConstClass|ConstPtr|TargetToken)", Name),
(r"<.*?>+", Name.Builtin),
(r"(label|debug_merge_point|jump|finish)", Name.Class),
(r"(int_add_ovf|int_add|int_sub_ovf|int_sub|int_mul_ovf|int_mul|"
r"int_floordiv|int_mod|int_lshift|int_rshift|int_and|int_or|"
r"int_xor|int_eq|int_ne|int_ge|int_gt|int_le|int_lt|int_is_zero|"
r"int_is_true|"
r"uint_floordiv|uint_ge|uint_lt|"
r"float_add|float_sub|float_mul|float_truediv|float_neg|"
r"float_eq|float_ne|float_ge|float_gt|float_le|float_lt|float_abs|"
r"ptr_eq|ptr_ne|instance_ptr_eq|instance_ptr_ne|"
r"cast_int_to_float|cast_float_to_int|"
r"force_token|quasiimmut_field|same_as|virtual_ref_finish|"
r"virtual_ref|mark_opaque_ptr|"
r"call_may_force|call_assembler|call_loopinvariant|"
r"call_release_gil|call_pure|call|"
r"new_with_vtable|new_array|newstr|newunicode|new|"
r"arraylen_gc|"
r"getarrayitem_gc_pure|getarrayitem_gc|setarrayitem_gc|"
r"getarrayitem_raw|setarrayitem_raw|getfield_gc_pure|"
r"getfield_gc|getinteriorfield_gc|setinteriorfield_gc|"
r"getfield_raw|setfield_gc|setfield_raw|"
r"strgetitem|strsetitem|strlen|copystrcontent|"
r"unicodegetitem|unicodesetitem|unicodelen|"
r"guard_true|guard_false|guard_value|guard_isnull|"
r"guard_nonnull_class|guard_nonnull|guard_class|guard_no_overflow|"
r"guard_not_forced|guard_no_exception|guard_not_invalidated)",
Name.Builtin),
include("extra-stuff"),
],
"jit-backend-counts": [
(r"\[\w+\] jit-backend-counts}$", Keyword, "#pop"),
(r":", Punctuation),
(r"\d+", Number),
include("extra-stuff"),
],
"extra-stuff": [
(r"\s+", Text),
(r"#.*?$", Comment),
],
} | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/env python
#
# Copyright 2008 The Closure Linter Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS-IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Linter error handler class that accumulates an array of errors."""
__author__ = ('robbyw@google.com (Robert Walker)',
'ajp@google.com (Andy Perelson)')
from closure_linter.common import errorhandler
class ErrorAccumulator(errorhandler.ErrorHandler):
"""Error handler object that accumulates errors in a list."""
def __init__(self):
self._errors = []
def HandleError(self, error):
"""Append the error to the list.
Args:
error: The error object
"""
self._errors.append(error)
def GetErrors(self):
"""Returns the accumulated errors.
Returns:
A sequence of errors.
"""
return self._errors | unknown | codeparrot/codeparrot-clean | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/input/mediatek,pmic-keys.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: MediaTek PMIC Keys
maintainers:
- Chen Zhong <chen.zhong@mediatek.com>
allOf:
- $ref: input.yaml#
description: |
There are two key functions provided by MT6397, MT6323 and other MediaTek
PMICs: pwrkey and homekey.
The key functions are defined as the subnode of the function node provided
by the PMIC that is defined as a Multi-Function Device (MFD).
For MediaTek MT6323/MT6397 PMIC bindings see
Documentation/devicetree/bindings/mfd/mediatek,mt6397.yaml
properties:
compatible:
enum:
- mediatek,mt6323-keys
- mediatek,mt6328-keys
- mediatek,mt6331-keys
- mediatek,mt6357-keys
- mediatek,mt6358-keys
- mediatek,mt6359-keys
- mediatek,mt6397-keys
power-off-time-sec: true
mediatek,long-press-mode:
description: |
Key long-press force shutdown setting
0 - disabled
1 - pwrkey
2 - pwrkey+homekey
$ref: /schemas/types.yaml#/definitions/uint32
default: 0
maximum: 2
patternProperties:
"^((power|home)|(key-[a-z0-9-]+|[a-z0-9-]+-key))$":
$ref: input.yaml#
properties:
interrupts:
minItems: 1
items:
- description: Key press interrupt
- description: Key release interrupt
interrupt-names: true
linux,keycodes:
maxItems: 1
wakeup-source: true
required:
- linux,keycodes
if:
properties:
interrupt-names:
contains:
const: powerkey
then:
properties:
interrupt-names:
minItems: 1
items:
- const: powerkey
- const: powerkey_r
else:
properties:
interrupt-names:
minItems: 1
items:
- const: homekey
- const: homekey_r
unevaluatedProperties: false
required:
- compatible
unevaluatedProperties: false
... | unknown | github | https://github.com/torvalds/linux | Documentation/devicetree/bindings/input/mediatek,pmic-keys.yaml |
# Registered listeners for event `event1` ordered by descending priority
## Listener 1
- Type: `function`
- Name: `var_dump`
- Priority: `255`
## Listener 2
- Type: `closure`
- Priority: `-1` | unknown | github | https://github.com/symfony/symfony | src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Descriptor/event_dispatcher_1_event1.md |
######################## BEGIN LICENSE BLOCK ########################
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is
# Netscape Communications Corporation.
# Portions created by the Initial Developer are Copyright (C) 1998
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Mark Pilgrim - port to Python
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA
######################### END LICENSE BLOCK #########################
from .mbcharsetprober import MultiByteCharSetProber
from .codingstatemachine import CodingStateMachine
from .chardistribution import SJISDistributionAnalysis
from .jpcntx import SJISContextAnalysis
from .mbcssm import SJIS_SM_MODEL
from .enums import ProbingState, MachineState
class SJISProber(MultiByteCharSetProber):
def __init__(self):
super(SJISProber, self).__init__()
self.coding_sm = CodingStateMachine(SJIS_SM_MODEL)
self.distribution_analyzer = SJISDistributionAnalysis()
self.context_analyzer = SJISContextAnalysis()
self.reset()
def reset(self):
super(SJISProber, self).reset()
self.context_analyzer.reset()
@property
def charset_name(self):
return self.context_analyzer.charset_name
@property
def language(self):
return "Japanese"
def feed(self, byte_str):
for i in range(len(byte_str)):
coding_state = self.coding_sm.next_state(byte_str[i])
if coding_state == MachineState.ERROR:
self.logger.debug('%s %s prober hit error at byte %s',
self.charset_name, self.language, i)
self._state = ProbingState.NOT_ME
break
elif coding_state == MachineState.ITS_ME:
self._state = ProbingState.FOUND_IT
break
elif coding_state == MachineState.START:
char_len = self.coding_sm.get_current_charlen()
if i == 0:
self._last_char[1] = byte_str[0]
self.context_analyzer.feed(self._last_char[2 - char_len:],
char_len)
self.distribution_analyzer.feed(self._last_char, char_len)
else:
self.context_analyzer.feed(byte_str[i + 1 - char_len:i + 3
- char_len], char_len)
self.distribution_analyzer.feed(byte_str[i - 1:i + 1],
char_len)
self._last_char[0] = byte_str[-1]
if self.state == ProbingState.DETECTING:
if (self.context_analyzer.got_enough_data() and
(self.get_confidence() > self.SHORTCUT_THRESHOLD)):
self._state = ProbingState.FOUND_IT
return self.state
def get_confidence(self):
context_conf = self.context_analyzer.get_confidence()
distrib_conf = self.distribution_analyzer.get_confidence()
return max(context_conf, distrib_conf) | unknown | codeparrot/codeparrot-clean | ||
/*
* Copyright 2002-present the original author or authors.
*
* 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
*
* https://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.
*/
package org.springframework.cache.jcache;
import java.util.Objects;
import java.util.concurrent.Callable;
import java.util.function.Function;
import javax.cache.Cache;
import javax.cache.processor.EntryProcessor;
import javax.cache.processor.EntryProcessorException;
import javax.cache.processor.MutableEntry;
import org.jspecify.annotations.Nullable;
import org.springframework.cache.support.AbstractValueAdaptingCache;
import org.springframework.util.Assert;
/**
* {@link org.springframework.cache.Cache} implementation on top of a
* {@link Cache javax.cache.Cache} instance.
*
* @author Juergen Hoeller
* @author Stephane Nicoll
* @since 3.2
* @see JCacheCacheManager
*/
public class JCacheCache extends AbstractValueAdaptingCache {
private final Cache<Object, Object> cache;
private final ValueLoaderEntryProcessor valueLoaderEntryProcessor;
/**
* Create a {@code JCacheCache} instance.
* @param jcache backing JCache Cache instance
*/
public JCacheCache(Cache<Object, Object> jcache) {
this(jcache, true);
}
/**
* Create a {@code JCacheCache} instance.
* @param jcache backing JCache Cache instance
* @param allowNullValues whether to accept and convert null values for this cache
*/
public JCacheCache(Cache<Object, Object> jcache, boolean allowNullValues) {
super(allowNullValues);
Assert.notNull(jcache, "Cache must not be null");
this.cache = jcache;
this.valueLoaderEntryProcessor = new ValueLoaderEntryProcessor(
this::fromStoreValue, this::toStoreValue);
}
@Override
public final String getName() {
return this.cache.getName();
}
@Override
public final Cache<Object, Object> getNativeCache() {
return this.cache;
}
@Override
protected @Nullable Object lookup(Object key) {
return this.cache.get(key);
}
@Override
@SuppressWarnings("unchecked")
public <T> @Nullable T get(Object key, Callable<T> valueLoader) {
try {
return (T) this.cache.invoke(key, this.valueLoaderEntryProcessor, valueLoader);
}
catch (EntryProcessorException ex) {
throw new ValueRetrievalException(key, valueLoader, ex.getCause());
}
}
@Override
public void put(Object key, @Nullable Object value) {
this.cache.put(key, toStoreValue(value));
}
@Override
public @Nullable ValueWrapper putIfAbsent(Object key, @Nullable Object value) {
Object previous = this.cache.invoke(key, PutIfAbsentEntryProcessor.INSTANCE, toStoreValue(value));
return (previous != null ? toValueWrapper(previous) : null);
}
@Override
public void evict(Object key) {
this.cache.remove(key);
}
@Override
public boolean evictIfPresent(Object key) {
return this.cache.remove(key);
}
@Override
public void clear() {
this.cache.removeAll();
}
@Override
public boolean invalidate() {
boolean notEmpty = this.cache.iterator().hasNext();
this.cache.removeAll();
return notEmpty;
}
private static class PutIfAbsentEntryProcessor implements EntryProcessor<Object, Object, Object> {
private static final PutIfAbsentEntryProcessor INSTANCE = new PutIfAbsentEntryProcessor();
@Override
@SuppressWarnings("NullAway") // Overridden method does not define nullness
public @Nullable Object process(MutableEntry<Object, @Nullable Object> entry, @Nullable Object... arguments) throws EntryProcessorException {
Object existingValue = entry.getValue();
if (existingValue == null) {
entry.setValue(arguments[0]);
}
return existingValue;
}
}
private static final class ValueLoaderEntryProcessor implements EntryProcessor<Object, Object, Object> {
private final Function<Object, @Nullable Object> fromStoreValue;
private final Function<Object, Object> toStoreValue;
private ValueLoaderEntryProcessor(Function<Object, @Nullable Object> fromStoreValue,
Function<Object, Object> toStoreValue) {
this.fromStoreValue = fromStoreValue;
this.toStoreValue = toStoreValue;
}
@Override
@SuppressWarnings({"unchecked","NullAway"}) // Overridden method does not define nullness
public @Nullable Object process(MutableEntry<Object, @Nullable Object> entry, @Nullable Object... arguments) throws EntryProcessorException {
Callable<Object> valueLoader = (Callable<Object>) arguments[0];
if (entry.exists()) {
return this.fromStoreValue.apply(Objects.requireNonNull(entry.getValue()));
}
else {
Object value;
try {
value = Objects.requireNonNull(valueLoader).call();
}
catch (Exception ex) {
throw new EntryProcessorException("Value loader '" + valueLoader + "' failed " +
"to compute value for key '" + entry.getKey() + "'", ex);
}
entry.setValue(this.toStoreValue.apply(value));
return value;
}
}
}
} | java | github | https://github.com/spring-projects/spring-framework | spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java |
# Copyright 2014 - Rackspace Hosting
#
# 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.
"""API for interfacing with Solum Worker."""
from oslo.config import cfg
from solum.common.rpc import service
class API(service.API):
def __init__(self, transport=None, context=None):
cfg.CONF.import_opt('topic', 'solum.worker.config',
group='worker')
super(API, self).__init__(transport, context,
topic=cfg.CONF.worker.topic)
def perform_action(self, verb, build_id, git_info, name, base_image_id,
source_format, image_format, assembly_id=None,
test_cmd=None, source_creds_ref=None):
self._cast(verb, build_id=build_id, git_info=git_info,
name=name, base_image_id=base_image_id,
source_format=source_format, image_format=image_format,
assembly_id=assembly_id, test_cmd=test_cmd,
source_creds_ref=source_creds_ref) | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/env python | python | github | https://github.com/ansible/ansible | test/integration/targets/ansible-test-sanity-shebang/ansible_collections/ns/col/scripts/env_python.py |
# AS @ KIT 04/2015
# modified JB 04/2016
# modified MP 05/2017 switch from pickle to JSON
# Sample Class to define all values necessary to measure a sample
import json, pickle
import logging
import os, copy
from qkit.measure.json_handler import QkitJSONEncoder, QkitJSONDecoder
from qkit.storage.hdf_DateTimeGenerator import DateTimeGenerator as dtg
import qkit
class Sample(object):
'''
Sample Class to define all values necessary to measure a sample
'''
def __init__(self, path=None):
self.name = 'Arbitrary Sample'
self.comment = ''
if path:
self.load(path)
def get(self,argname,default=None):
'''
Gets an argument of the sample and returns default, if it does not exist.
'''
return self.__dict__.get(argname,default)
def set_times(self,tpi):
'''
pass tpi to this function and it will update tpi as well as tpi2 = tpi/2
'''
self.tpi = tpi
self.tpi2 = tpi/2.
def get_all(self):
'''
return all keys and entries of sample instance
'''
msg = ""
copydict = copy.copy(self.__dict__)
for key in sorted(copydict):
msg+= str(key) + ": " + str(copydict[key])+"\n"
return msg
def save(self,filename=None):
'''
save sample object.
Filename can either be:
- a full (absolute) path to the sample file or
- any other string that is added to the filename in the data dir
- None (default), the the sample object is stored in the data dir.
returns the location of the sample file
'''
if filename is None or not(os.path.isabs(filename)):
d = dtg()
path = d.new_filename(filename)['_folder']
else:
path = filename
if not os.path.exists(os.path.split(path)[0]):
os.makedirs(os.path.split(path)[0])
if not os.path.splitext(path)[-1] == '.sample':
path = path + '.sample'
copydict = copy.copy(self.__dict__)
with open(path,'w+') as filehandler:
json.dump(obj=copydict, fp=filehandler, cls=QkitJSONEncoder, indent = 4, sort_keys=True)
return path
def load(self, filename):
'''
load sample keys and entries to current sample instance
'''
if not os.path.isabs(filename):
filename = os.path.join(qkit.cfg.get('datadir'),filename)
try:
with open(filename) as filehandle:
self._load_legacy_pickle(filehandle)
return
except: pass
with open(filename) as filehandle:
self.__dict__ = json.load(filehandle, cls = QkitJSONDecoder)
def _load_legacy_pickle(self, filehandle):
self.__dict__ = pickle.loads(filehandle.read().split('<PICKLE PACKET BEGINS HERE>')[1].strip().replace('\r\n', '\n'))
copydict = copy.copy(self.__dict__)
for key in sorted(copydict):
if ('xxxx'+str(copydict[key]))[-4:] == ' ins': #instrument
self.__dict__[key] = qkit.instruments.get(copydict[key][:-4]) | unknown | codeparrot/codeparrot-clean | ||
"""
A simple test script to check if all dependencies are installed
"""
print('---- Running Dependencies Test ----')
import time
import traceback
dep = ['PyAudio', 'pocketsphinx', 'SpeechRecognition', 'gTTS',
'pygame', 'WolframAlpha', 'HeyAthena']
passed = True
def test_case(case):
global passed
try:
if case is 0:
import pyaudio
elif case is 1:
from sphinxbase.sphinxbase import Config, Config_swigregister
from pocketsphinx.pocketsphinx import Decoder
elif case is 2:
import speech_recognition
elif case is 3:
from requests.exceptions import HTTPError
from gtts import gTTS
elif case is 4:
import pygame
elif case is 6:
import wolframalpha
elif case is 7:
import athena
import athena.brain
except:
print(traceback.format_exc())
print('~ Import failed for:', dep[case])
passed = False
for i in range(len(dep)):
test_case(i)
if passed:
print('---- TEST PASSED ---- \n')
else:
print('\n~ Requires: ' + str(dep)[1:-1] + '\n')
print('---- TEST FAILED :( ---- \n')
time.sleep(1) | unknown | codeparrot/codeparrot-clean | ||
@import "component-title"; | unknown | github | https://github.com/vercel/next.js | examples/cms-sitecore-xmcloud/src/assets/sass/components/title/index.scss |
from __future__ import print_function
import time
import subprocess
from .base import Browser, ExecutorBrowser, require_arg
from ..webdriver_server import EdgeDriverServer
from ..executors import executor_kwargs as base_executor_kwargs
from ..executors.executorselenium import (SeleniumTestharnessExecutor, # noqa: F401
SeleniumRefTestExecutor) # noqa: F401
from ..executors.executoredge import EdgeDriverWdspecExecutor # noqa: F401
__wptrunner__ = {"product": "edge",
"check_args": "check_args",
"browser": "EdgeBrowser",
"executor": {"testharness": "SeleniumTestharnessExecutor",
"reftest": "SeleniumRefTestExecutor",
"wdspec": "EdgeDriverWdspecExecutor"},
"browser_kwargs": "browser_kwargs",
"executor_kwargs": "executor_kwargs",
"env_extras": "env_extras",
"env_options": "env_options",
"run_info_extras": "run_info_extras",
"timeout_multiplier": "get_timeout_multiplier"}
def get_timeout_multiplier(test_type, run_info_data, **kwargs):
if kwargs["timeout_multiplier"] is not None:
return kwargs["timeout_multiplier"]
if test_type == "wdspec":
return 10
return 1
def check_args(**kwargs):
require_arg(kwargs, "webdriver_binary")
def browser_kwargs(test_type, run_info_data, config, **kwargs):
return {"webdriver_binary": kwargs["webdriver_binary"],
"webdriver_args": kwargs.get("webdriver_args"),
"timeout_multiplier": get_timeout_multiplier(test_type,
run_info_data,
**kwargs)}
def executor_kwargs(test_type, server_config, cache_manager, run_info_data,
**kwargs):
executor_kwargs = base_executor_kwargs(test_type, server_config,
cache_manager, run_info_data, **kwargs)
executor_kwargs["close_after_done"] = True
executor_kwargs["timeout_multiplier"] = get_timeout_multiplier(test_type,
run_info_data,
**kwargs)
executor_kwargs["capabilities"] = {}
if test_type == "testharness":
executor_kwargs["capabilities"]["pageLoadStrategy"] = "eager"
return executor_kwargs
def env_extras(**kwargs):
return []
def env_options():
return {"supports_debugger": False}
class EdgeBrowser(Browser):
used_ports = set()
init_timeout = 60
def __init__(self, logger, webdriver_binary, timeout_multiplier=None, webdriver_args=None):
Browser.__init__(self, logger)
self.server = EdgeDriverServer(self.logger,
binary=webdriver_binary,
args=webdriver_args)
self.webdriver_host = "localhost"
self.webdriver_port = self.server.port
if timeout_multiplier:
self.init_timeout = self.init_timeout * timeout_multiplier
def start(self, **kwargs):
print(self.server.url)
self.server.start()
def stop(self, force=False):
self.server.stop(force=force)
# Wait for Edge browser process to exit if driver process is found
edge_proc_name = 'MicrosoftEdge.exe'
for i in range(0,5):
procs = subprocess.check_output(['tasklist', '/fi', 'ImageName eq ' + edge_proc_name])
if 'MicrosoftWebDriver.exe' not in procs:
# Edge driver process already exited, don't wait for browser process to exit
break
elif edge_proc_name in procs:
time.sleep(0.5)
else:
break
if edge_proc_name in procs:
# close Edge process if it is still running
subprocess.call(['taskkill.exe', '/f', '/im', 'microsoftedge*'])
def pid(self):
return self.server.pid
def is_alive(self):
# TODO(ato): This only indicates the server is alive,
# and doesn't say anything about whether a browser session
# is active.
return self.server.is_alive()
def cleanup(self):
self.stop()
def executor_browser(self):
return ExecutorBrowser, {"webdriver_url": self.server.url}
def run_info_extras(**kwargs):
osReleaseCommand = r"(Get-ItemProperty 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion').ReleaseId"
osBuildCommand = r"(Get-ItemProperty 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion').BuildLabEx"
try:
os_release = subprocess.check_output(["powershell.exe", osReleaseCommand]).strip()
os_build = subprocess.check_output(["powershell.exe", osBuildCommand]).strip()
except (subprocess.CalledProcessError, OSError):
return {}
rv = {"os_build": os_build,
"os_release": os_release}
return rv | unknown | codeparrot/codeparrot-clean | ||
# 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 sys
from functools import wraps
from libcloud.common.types import LibcloudError
__all__ = [
'wrap_non_libcloud_exceptions'
]
def wrap_non_libcloud_exceptions(func):
"""
Decorators function which catches non LibcloudError exceptions, wraps them
in LibcloudError class and re-throws the wrapped exception.
Note: This function should only be used to wrap methods on the driver
classes.
"""
@wraps(func)
def decorated_function(*args, **kwargs):
try:
return func(*args, **kwargs)
except Exception:
e = sys.exc_info()[1]
if isinstance(e, LibcloudError):
raise e
if len(args) >= 1:
driver = args[0]
else:
driver = None
fault = getattr(e, 'fault', None)
if fault and getattr(fault, 'string', None):
message = fault.string
else:
message = str(e)
raise LibcloudError(value=message, driver=driver)
return decorated_function | unknown | codeparrot/codeparrot-clean | ||
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GOOGLE_PROTOBUF_STUBS_STATUS_H_
#define GOOGLE_PROTOBUF_STUBS_STATUS_H_
#include <string>
#include <google/protobuf/stubs/stringpiece.h>
#include <google/protobuf/port_def.inc>
namespace google {
namespace protobuf {
namespace util {
namespace status_internal {
// These values must match error codes defined in google/rpc/code.proto.
enum class StatusCode : int {
kOk = 0,
kCancelled = 1,
kUnknown = 2,
kInvalidArgument = 3,
kDeadlineExceeded = 4,
kNotFound = 5,
kAlreadyExists = 6,
kPermissionDenied = 7,
kUnauthenticated = 16,
kResourceExhausted = 8,
kFailedPrecondition = 9,
kAborted = 10,
kOutOfRange = 11,
kUnimplemented = 12,
kInternal = 13,
kUnavailable = 14,
kDataLoss = 15,
};
class PROTOBUF_EXPORT Status {
public:
// Creates a "successful" status.
Status();
// Create a status in the canonical error space with the specified
// code, and error message. If "code == 0", error_message is
// ignored and a Status object identical to Status::kOk is
// constructed.
Status(StatusCode error_code, StringPiece error_message);
Status(const Status&);
Status& operator=(const Status& x);
~Status() {}
// Accessor
bool ok() const { return error_code_ == StatusCode::kOk; }
StatusCode code() const { return error_code_; }
StringPiece message() const {
return error_message_;
}
bool operator==(const Status& x) const;
bool operator!=(const Status& x) const {
return !operator==(x);
}
// Return a combination of the error code name and message.
std::string ToString() const;
private:
StatusCode error_code_;
std::string error_message_;
};
// Returns an OK status, equivalent to a default constructed instance. Prefer
// usage of `OkStatus()` when constructing such an OK status.
PROTOBUF_EXPORT Status OkStatus();
// Prints a human-readable representation of 'x' to 'os'.
PROTOBUF_EXPORT std::ostream& operator<<(std::ostream& os, const Status& x);
// These convenience functions return `true` if a given status matches the
// `StatusCode` error code of its associated function.
PROTOBUF_EXPORT bool IsAborted(const Status& status);
PROTOBUF_EXPORT bool IsAlreadyExists(const Status& status);
PROTOBUF_EXPORT bool IsCancelled(const Status& status);
PROTOBUF_EXPORT bool IsDataLoss(const Status& status);
PROTOBUF_EXPORT bool IsDeadlineExceeded(const Status& status);
PROTOBUF_EXPORT bool IsFailedPrecondition(const Status& status);
PROTOBUF_EXPORT bool IsInternal(const Status& status);
PROTOBUF_EXPORT bool IsInvalidArgument(const Status& status);
PROTOBUF_EXPORT bool IsNotFound(const Status& status);
PROTOBUF_EXPORT bool IsOutOfRange(const Status& status);
PROTOBUF_EXPORT bool IsPermissionDenied(const Status& status);
PROTOBUF_EXPORT bool IsResourceExhausted(const Status& status);
PROTOBUF_EXPORT bool IsUnauthenticated(const Status& status);
PROTOBUF_EXPORT bool IsUnavailable(const Status& status);
PROTOBUF_EXPORT bool IsUnimplemented(const Status& status);
PROTOBUF_EXPORT bool IsUnknown(const Status& status);
// These convenience functions create an `Status` object with an error code as
// indicated by the associated function name, using the error message passed in
// `message`.
//
// These functions are intentionally named `*Error` rather than `*Status` to
// match the names from Abseil:
// https://github.com/abseil/abseil-cpp/blob/2e9532cc6c701a8323d0cffb468999ab804095ab/absl/status/status.h#L716
PROTOBUF_EXPORT Status AbortedError(StringPiece message);
PROTOBUF_EXPORT Status AlreadyExistsError(StringPiece message);
PROTOBUF_EXPORT Status CancelledError(StringPiece message);
PROTOBUF_EXPORT Status DataLossError(StringPiece message);
PROTOBUF_EXPORT Status DeadlineExceededError(StringPiece message);
PROTOBUF_EXPORT Status FailedPreconditionError(StringPiece message);
PROTOBUF_EXPORT Status InternalError(StringPiece message);
PROTOBUF_EXPORT Status InvalidArgumentError(StringPiece message);
PROTOBUF_EXPORT Status NotFoundError(StringPiece message);
PROTOBUF_EXPORT Status OutOfRangeError(StringPiece message);
PROTOBUF_EXPORT Status PermissionDeniedError(StringPiece message);
PROTOBUF_EXPORT Status ResourceExhaustedError(StringPiece message);
PROTOBUF_EXPORT Status UnauthenticatedError(StringPiece message);
PROTOBUF_EXPORT Status UnavailableError(StringPiece message);
PROTOBUF_EXPORT Status UnimplementedError(StringPiece message);
PROTOBUF_EXPORT Status UnknownError(StringPiece message);
} // namespace status_internal
using ::google::protobuf::util::status_internal::Status;
using ::google::protobuf::util::status_internal::StatusCode;
using ::google::protobuf::util::status_internal::IsAborted;
using ::google::protobuf::util::status_internal::IsAlreadyExists;
using ::google::protobuf::util::status_internal::IsCancelled;
using ::google::protobuf::util::status_internal::IsDataLoss;
using ::google::protobuf::util::status_internal::IsDeadlineExceeded;
using ::google::protobuf::util::status_internal::IsFailedPrecondition;
using ::google::protobuf::util::status_internal::IsInternal;
using ::google::protobuf::util::status_internal::IsInvalidArgument;
using ::google::protobuf::util::status_internal::IsNotFound;
using ::google::protobuf::util::status_internal::IsOutOfRange;
using ::google::protobuf::util::status_internal::IsPermissionDenied;
using ::google::protobuf::util::status_internal::IsResourceExhausted;
using ::google::protobuf::util::status_internal::IsUnauthenticated;
using ::google::protobuf::util::status_internal::IsUnavailable;
using ::google::protobuf::util::status_internal::IsUnimplemented;
using ::google::protobuf::util::status_internal::IsUnknown;
using ::google::protobuf::util::status_internal::AbortedError;
using ::google::protobuf::util::status_internal::AlreadyExistsError;
using ::google::protobuf::util::status_internal::CancelledError;
using ::google::protobuf::util::status_internal::DataLossError;
using ::google::protobuf::util::status_internal::DeadlineExceededError;
using ::google::protobuf::util::status_internal::FailedPreconditionError;
using ::google::protobuf::util::status_internal::InternalError;
using ::google::protobuf::util::status_internal::InvalidArgumentError;
using ::google::protobuf::util::status_internal::NotFoundError;
using ::google::protobuf::util::status_internal::OkStatus;
using ::google::protobuf::util::status_internal::OutOfRangeError;
using ::google::protobuf::util::status_internal::PermissionDeniedError;
using ::google::protobuf::util::status_internal::ResourceExhaustedError;
using ::google::protobuf::util::status_internal::UnauthenticatedError;
using ::google::protobuf::util::status_internal::UnavailableError;
using ::google::protobuf::util::status_internal::UnimplementedError;
using ::google::protobuf::util::status_internal::UnknownError;
} // namespace util
} // namespace protobuf
} // namespace google
#include <google/protobuf/port_undef.inc>
#endif // GOOGLE_PROTOBUF_STUBS_STATUS_H_ | c | github | https://github.com/opencv/opencv | 3rdparty/protobuf/src/google/protobuf/stubs/status.h |
// Copyright IBM Corp. 2016, 2025
// SPDX-License-Identifier: BUSL-1.1
package cockroachdb
import (
"context"
"database/sql"
"fmt"
"sync"
"time"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/vault/sdk/physical"
)
const (
// The lock TTL matches the default that Consul API uses, 15 seconds.
// Used as part of SQL commands to set/extend lock expiry time relative to
// database clock.
CockroachDBLockTTLSeconds = 15
// The amount of time to wait between the lock renewals
CockroachDBLockRenewInterval = 5 * time.Second
// CockroachDBLockRetryInterval is the amount of time to wait
// if a lock fails before trying again.
CockroachDBLockRetryInterval = time.Second
)
// Verify backend satisfies the correct interfaces.
var (
_ physical.HABackend = (*CockroachDBBackend)(nil)
_ physical.Lock = (*CockroachDBLock)(nil)
)
type CockroachDBLock struct {
backend *CockroachDBBackend
key string
value string
identity string
lock sync.Mutex
renewTicker *time.Ticker
// ttlSeconds is how long a lock is valid for.
ttlSeconds int
// renewInterval is how much time to wait between lock renewals. must be << ttl.
renewInterval time.Duration
// retryInterval is how much time to wait between attempts to grab the lock.
retryInterval time.Duration
}
func (c *CockroachDBBackend) HAEnabled() bool {
return c.haEnabled
}
func (c *CockroachDBBackend) LockWith(key, value string) (physical.Lock, error) {
identity, err := uuid.GenerateUUID()
if err != nil {
return nil, err
}
return &CockroachDBLock{
backend: c,
key: key,
value: value,
identity: identity,
ttlSeconds: CockroachDBLockTTLSeconds,
renewInterval: CockroachDBLockRenewInterval,
retryInterval: CockroachDBLockRetryInterval,
}, nil
}
// Lock tries to acquire the lock by repeatedly trying to create a record in the
// CockroachDB table. It will block until either the stop channel is closed or
// the lock could be acquired successfully. The returned channel will be closed
// once the lock in the CockroachDB table cannot be renewed, either due to an
// error speaking to CockroachDB or because someone else has taken it.
func (l *CockroachDBLock) Lock(stopCh <-chan struct{}) (<-chan struct{}, error) {
l.lock.Lock()
defer l.lock.Unlock()
var (
success = make(chan struct{})
errors = make(chan error, 1)
leader = make(chan struct{})
)
go l.tryToLock(stopCh, success, errors)
select {
case <-success:
// After acquiring it successfully, we must renew the lock periodically.
l.renewTicker = time.NewTicker(l.renewInterval)
go l.periodicallyRenewLock(leader)
case err := <-errors:
return nil, err
case <-stopCh:
return nil, nil
}
return leader, nil
}
// Unlock releases the lock by deleting the lock record from the
// CockroachDB table.
func (l *CockroachDBLock) Unlock() error {
c := l.backend
if err := c.permitPool.Acquire(context.Background()); err != nil {
return err
}
defer c.permitPool.Release()
if l.renewTicker != nil {
l.renewTicker.Stop()
}
_, err := c.haStatements["delete"].Exec(l.key)
return err
}
// Value checks whether or not the lock is held by any instance of CockroachDBLock,
// including this one, and returns the current value.
func (l *CockroachDBLock) Value() (bool, string, error) {
c := l.backend
if err := c.permitPool.Acquire(context.Background()); err != nil {
return false, "", err
}
defer c.permitPool.Release()
var result string
err := c.haStatements["get"].QueryRow(l.key).Scan(&result)
switch err {
case nil:
return true, result, nil
case sql.ErrNoRows:
return false, "", nil
default:
return false, "", err
}
}
// tryToLock tries to create a new item in CockroachDB every `retryInterval`.
// As long as the item cannot be created (because it already exists), it will
// be retried. If the operation fails due to an error, it is sent to the errors
// channel. When the lock could be acquired successfully, the success channel
// is closed.
func (l *CockroachDBLock) tryToLock(stop <-chan struct{}, success chan struct{}, errors chan error) {
ticker := time.NewTicker(l.retryInterval)
defer ticker.Stop()
for {
select {
case <-stop:
return
case <-ticker.C:
gotlock, err := l.writeItem()
switch {
case err != nil:
// Send to the error channel and don't block if full.
select {
case errors <- err:
default:
}
return
case gotlock:
close(success)
return
}
}
}
}
func (l *CockroachDBLock) periodicallyRenewLock(done chan struct{}) {
for range l.renewTicker.C {
gotlock, err := l.writeItem()
if err != nil || !gotlock {
close(done)
l.renewTicker.Stop()
return
}
}
}
// Attempts to put/update the CockroachDB item using condition expressions to
// evaluate the TTL. Returns true if the lock was obtained, false if not.
// If false error may be nil or non-nil: nil indicates simply that someone
// else has the lock, whereas non-nil means that something unexpected happened.
func (l *CockroachDBLock) writeItem() (bool, error) {
c := l.backend
if err := c.permitPool.Acquire(context.Background()); err != nil {
return false, err
}
defer c.permitPool.Release()
sqlResult, err := c.haStatements["upsert"].Exec(l.identity, l.key, l.value, fmt.Sprintf("%d seconds", l.ttlSeconds))
if err != nil {
return false, err
}
if sqlResult == nil {
return false, fmt.Errorf("empty SQL response received")
}
ar, err := sqlResult.RowsAffected()
if err != nil {
return false, err
}
return ar == 1, nil
} | go | github | https://github.com/hashicorp/vault | physical/cockroachdb/cockroachdb_ha.go |
# Glumol - An adventure game creator
# Copyright (C) 1998-2008 Sylvain Baubeau & Alexis Contour
# This file is part of Glumol.
# Glumol 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.
# Glumol 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 Glumol. If not, see <http://www.gnu.org/licenses/>.
import sys
from pypoujol import *
from new import instancemethod
from log import log
from behaviour import *
from script import get_full_name
class GlumolNamespace:
def __init__(self):
self.globals = dict(globals())
self.locals = { }
def clear(self):
# self.globals = dict(globals())
# self.locals = { }
pass
def get_value(self, name):
return self.globals[name]
def call(self, func, args):
self.locals["func"] = func
self.locals["args"] = args
exec "func(*args)" in self.locals, self.locals
del self.locals["func"]
del self.locals["args"]
def eval(self, listing):
return eval(listing, self.globals, self.locals)
def run(self, listing, module = __name__, globs = None, locs = None):
if not globs:
globs = self.globals
if not locs:
locs = self.globals
globs["__name__"] = module
exec listing in globs, locs
globs["__name__"] = "glumolnamespace"
def getattr(self, name, *defaults):
attrs = name.split('.')
try: o = self.globals[attrs[0]]
except:
if len(defaults):
try: o = self.locals[attrs[0]]
except: o = defaults[0]
else: o = self.locals[attrs[0]]
for i in attrs[1:]:
o = getattr(o, i, None)
return o
def create_object(self, classe, loc = None, args = tuple() ):
if loc == None:
loc = self.locals
loc["classe"] = classe
loc["args"] = args
s = "classe(*args)"
self.obj = newobj = eval(s, self.globals, self.locals)
del loc["args"]
del loc["classe"]
return newobj
def create_from_script(self, script, args = tuple() ):
self.run(script.listing)
try:
classe = self.getattr(script.realname)
if not classe: raise
except:
try:
classe = self.getattr(script.name)
if not classe: raise
except:
classe = self.getattr(get_full_name(script.name))
return self.create_object(classe, None, args) | unknown | codeparrot/codeparrot-clean | ||
'''
This function function used for training and cross-validating model using. The database is not
included in this repo, please download the CinC Challenge database and truncate/pad data into a
NxM matrix array, being N the number of recordings and M the window accepted by the network (i.e.
30 seconds).
For more information visit: https://github.com/fernandoandreotti/cinc-challenge2017
Referencing this work
Andreotti, F., Carr, O., Pimentel, M.A.F., Mahdi, A., & De Vos, M. (2017). Comparing Feature Based
Classifiers and Convolutional Neural Networks to Detect Arrhythmia from Short Segments of ECG. In
Computing in Cardiology. Rennes (France).
--
cinc-challenge2017, version 1.0, Sept 2017
Last updated : 27-09-2017
Released under the GNU General Public License
Copyright (C) 2017 Fernando Andreotti, Oliver Carr, Marco A.F. Pimentel, Adam Mahdi, Maarten De Vos
University of Oxford, Department of Engineering Science, Institute of Biomedical Engineering
fernando.andreotti@eng.ox.ac.uk
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 3 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, see <http://www.gnu.org/licenses/>.
'''
import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np
import scipy.io
import gc
import itertools
from sklearn.metrics import confusion_matrix
import sys
sys.path.insert(0, './preparation')
# Keras imports
import keras
from keras.models import Model
from keras.layers import Input, Conv1D, Dense, Flatten, Dropout,MaxPooling1D, Activation, BatchNormalization
from keras.callbacks import EarlyStopping, ModelCheckpoint
from keras.utils import plot_model
from keras import backend as K
from keras.callbacks import Callback,warnings
###################################################################
### Callback method for reducing learning rate during training ###
###################################################################
class AdvancedLearnignRateScheduler(Callback):
'''
# Arguments
monitor: quantity to be monitored.
patience: number of epochs with no improvement
after which training will be stopped.
verbose: verbosity mode.
mode: one of {auto, min, max}. In 'min' mode,
training will stop when the quantity
monitored has stopped decreasing; in 'max'
mode it will stop when the quantity
monitored has stopped increasing.
'''
def __init__(self, monitor='val_loss', patience=0,verbose=0, mode='auto', decayRatio=0.1):
super(Callback, self).__init__()
self.monitor = monitor
self.patience = patience
self.verbose = verbose
self.wait = 0
self.decayRatio = decayRatio
if mode not in ['auto', 'min', 'max']:
warnings.warn('Mode %s is unknown, '
'fallback to auto mode.'
% (self.mode), RuntimeWarning)
mode = 'auto'
if mode == 'min':
self.monitor_op = np.less
self.best = np.Inf
elif mode == 'max':
self.monitor_op = np.greater
self.best = -np.Inf
else:
if 'acc' in self.monitor:
self.monitor_op = np.greater
self.best = -np.Inf
else:
self.monitor_op = np.less
self.best = np.Inf
def on_epoch_end(self, epoch, logs={}):
current = logs.get(self.monitor)
current_lr = K.get_value(self.model.optimizer.lr)
print("\nLearning rate:", current_lr)
if current is None:
warnings.warn('AdvancedLearnignRateScheduler'
' requires %s available!' %
(self.monitor), RuntimeWarning)
if self.monitor_op(current, self.best):
self.best = current
self.wait = 0
else:
if self.wait >= self.patience:
if self.verbose > 0:
print('\nEpoch %05d: reducing learning rate' % (epoch))
assert hasattr(self.model.optimizer, 'lr'), \
'Optimizer must have a "lr" attribute.'
current_lr = K.get_value(self.model.optimizer.lr)
new_lr = current_lr * self.decayRatio
K.set_value(self.model.optimizer.lr, new_lr)
self.wait = 0
self.wait += 1
###########################################
## Function to plot confusion matrices ##
#########################################
def plot_confusion_matrix(cm, classes,
normalize=False,
title='Confusion matrix',
cmap=plt.cm.Blues):
"""
This function prints and plots the confusion matrix.
Normalization can be applied by setting `normalize=True`.
"""
if normalize:
cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis]
print("Normalized confusion matrix")
else:
print('Confusion matrix, without normalization')
cm = np.around(cm, decimals=3)
print(cm)
thresh = cm.max() / 2.
for i, j in itertools.product(range(cm.shape[0]), range(cm.shape[1])):
plt.text(j, i, cm[i, j],
horizontalalignment="center",
color="white" if cm[i, j] > thresh else "black")
plt.imshow(cm, interpolation='nearest', cmap=cmap)
plt.title(title)
plt.colorbar()
tick_marks = np.arange(len(classes))
plt.xticks(tick_marks, classes, rotation=45)
plt.yticks(tick_marks, classes)
plt.tight_layout()
plt.ylabel('True label')
plt.xlabel('Predicted label')
plt.savefig('confusion.eps', format='eps', dpi=1000)
#####################################
## Model definition ##
## ResNet based on Rajpurkar ##
##################################
def ResNet_model(WINDOW_SIZE):
# Add CNN layers left branch (higher frequencies)
# Parameters from paper
INPUT_FEAT = 1
OUTPUT_CLASS = 4 # output classes
k = 1 # increment every 4th residual block
p = True # pool toggle every other residual block (end with 2^8)
convfilt = 64
convstr = 1
ksize = 16
poolsize = 2
poolstr = 2
drop = 0.5
# Modelling with Functional API
#input1 = Input(shape=(None,1), name='input')
input1 = Input(shape=(WINDOW_SIZE,INPUT_FEAT), name='input')
## First convolutional block (conv,BN, relu)
x = Conv1D(filters=convfilt,
kernel_size=ksize,
padding='same',
strides=convstr,
kernel_initializer='he_normal')(input1)
x = BatchNormalization()(x)
x = Activation('relu')(x)
## Second convolutional block (conv, BN, relu, dropout, conv) with residual net
# Left branch (convolutions)
x1 = Conv1D(filters=convfilt,
kernel_size=ksize,
padding='same',
strides=convstr,
kernel_initializer='he_normal')(x)
x1 = BatchNormalization()(x1)
x1 = Activation('relu')(x1)
x1 = Dropout(drop)(x1)
x1 = Conv1D(filters=convfilt,
kernel_size=ksize,
padding='same',
strides=convstr,
kernel_initializer='he_normal')(x1)
x1 = MaxPooling1D(pool_size=poolsize,
strides=poolstr)(x1)
# Right branch, shortcut branch pooling
x2 = MaxPooling1D(pool_size=poolsize,
strides=poolstr)(x)
# Merge both branches
x = keras.layers.add([x1, x2])
del x1,x2
## Main loop
p = not p
for l in range(15):
if (l%4 == 0) and (l>0): # increment k on every fourth residual block
k += 1
# increase depth by 1x1 Convolution case dimension shall change
xshort = Conv1D(filters=convfilt*k,kernel_size=1)(x)
else:
xshort = x
# Left branch (convolutions)
# notice the ordering of the operations has changed
x1 = BatchNormalization()(x)
x1 = Activation('relu')(x1)
x1 = Dropout(drop)(x1)
x1 = Conv1D(filters=convfilt*k,
kernel_size=ksize,
padding='same',
strides=convstr,
kernel_initializer='he_normal')(x1)
x1 = BatchNormalization()(x1)
x1 = Activation('relu')(x1)
x1 = Dropout(drop)(x1)
x1 = Conv1D(filters=convfilt*k,
kernel_size=ksize,
padding='same',
strides=convstr,
kernel_initializer='he_normal')(x1)
if p:
x1 = MaxPooling1D(pool_size=poolsize,strides=poolstr)(x1)
# Right branch: shortcut connection
if p:
x2 = MaxPooling1D(pool_size=poolsize,strides=poolstr)(xshort)
else:
x2 = xshort # pool or identity
# Merging branches
x = keras.layers.add([x1, x2])
# change parameters
p = not p # toggle pooling
# Final bit
x = BatchNormalization()(x)
x = Activation('relu')(x)
x = Flatten()(x)
#x = Dense(1000)(x)
#x = Dense(1000)(x)
out = Dense(OUTPUT_CLASS, activation='softmax')(x)
model = Model(inputs=input1, outputs=out)
model.compile(optimizer='adam',
loss='categorical_crossentropy',
metrics=['accuracy'])
#model.summary()
#sequential_model_to_ascii_printout(model)
plot_model(model, to_file='model.png')
return model
###########################################################
## Function to perform K-fold Crossvalidation on model ##
##########################################################
def model_eval(X,y):
batch =64
epochs = 20
rep = 1 # K fold procedure can be repeated multiple times
Kfold = 5
Ntrain = 8528 # number of recordings on training set
Nsamp = int(Ntrain/Kfold) # number of recordings to take as validation
# Need to add dimension for training
X = np.expand_dims(X, axis=2)
classes = ['A', 'N', 'O', '~']
Nclass = len(classes)
cvconfusion = np.zeros((Nclass,Nclass,Kfold*rep))
cvscores = []
counter = 0
# repetitions of cross validation
for r in range(rep):
print("Rep %d"%(r+1))
# cross validation loop
for k in range(Kfold):
print("Cross-validation run %d"%(k+1))
# Callbacks definition
callbacks = [
# Early stopping definition
EarlyStopping(monitor='val_loss', patience=3, verbose=1),
# Decrease learning rate by 0.1 factor
AdvancedLearnignRateScheduler(monitor='val_loss', patience=1,verbose=1, mode='auto', decayRatio=0.1),
# Saving best model
ModelCheckpoint('weights-best_k{}_r{}.hdf5'.format(k,r), monitor='val_loss', save_best_only=True, verbose=1),
]
# Load model
model = ResNet_model(WINDOW_SIZE)
# split train and validation sets
idxval = np.random.choice(Ntrain, Nsamp,replace=False)
idxtrain = np.invert(np.in1d(range(X_train.shape[0]),idxval))
ytrain = y[np.asarray(idxtrain),:]
Xtrain = X[np.asarray(idxtrain),:,:]
Xval = X[np.asarray(idxval),:,:]
yval = y[np.asarray(idxval),:]
# Train model
model.fit(Xtrain, ytrain,
validation_data=(Xval, yval),
epochs=epochs, batch_size=batch,callbacks=callbacks)
# Evaluate best trained model
model.load_weights('weights-best_k{}_r{}.hdf5'.format(k,r))
ypred = model.predict(Xval)
ypred = np.argmax(ypred,axis=1)
ytrue = np.argmax(yval,axis=1)
cvconfusion[:,:,counter] = confusion_matrix(ytrue, ypred)
F1 = np.zeros((4,1))
for i in range(4):
F1[i]=2*cvconfusion[i,i,counter]/(np.sum(cvconfusion[i,:,counter])+np.sum(cvconfusion[:,i,counter]))
print("F1 measure for {} rhythm: {:1.4f}".format(classes[i],F1[i,0]))
cvscores.append(np.mean(F1)* 100)
print("Overall F1 measure: {:1.4f}".format(np.mean(F1)))
K.clear_session()
gc.collect()
config = tf.ConfigProto()
config.gpu_options.allow_growth=True
sess = tf.Session(config=config)
K.set_session(sess)
counter += 1
# Saving cross validation results
scipy.io.savemat('xval_results.mat',mdict={'cvconfusion': cvconfusion.tolist()})
return model
###########################
## Function to load data ##
###########################
def loaddata(WINDOW_SIZE):
'''
Load training/test data into workspace
This function assumes you have downloaded and padded/truncated the
training set into a local file named "trainingset.mat". This file should
contain the following structures:
- trainset: NxM matrix of N ECG segments with length M
- traintarget: Nx4 matrix of coded labels where each column contains
one in case it matches ['A', 'N', 'O', '~'].
'''
print("Loading data training set")
matfile = scipy.io.loadmat('trainingset.mat')
X = matfile['trainset']
y = matfile['traintarget']
# Merging datasets
# Case other sets are available, load them then concatenate
#y = np.concatenate((traintarget,augtarget),axis=0)
#X = np.concatenate((trainset,augset),axis=0)
X = X[:,0:WINDOW_SIZE]
return (X, y)
#####################
# Main function ##
###################
config = tf.ConfigProto(allow_soft_placement=True)
config.gpu_options.allow_growth = True
sess = tf.Session(config=config)
seed = 7
np.random.seed(seed)
# Parameters
FS = 300
WINDOW_SIZE = 30*FS # padding window for CNN
# Loading data
(X_train,y_train) = loaddata(WINDOW_SIZE)
# Training model
model = model_eval(X_train,y_train)
# Outputing results of cross validation
matfile = scipy.io.loadmat('xval_results.mat')
cv = matfile['cvconfusion']
F1mean = np.zeros(cv.shape[2])
for j in range(cv.shape[2]):
classes = ['A', 'N', 'O', '~']
F1 = np.zeros((4,1))
for i in range(4):
F1[i]=2*cv[i,i,j]/(np.sum(cv[i,:,j])+np.sum(cv[:,i,j]))
print("F1 measure for {} rhythm: {:1.4f}".format(classes[i],F1[i,0]))
F1mean[j] = np.mean(F1)
print("mean F1 measure for: {:1.4f}".format(F1mean[j]))
print("Overall F1 : {:1.4f}".format(np.mean(F1mean)))
# Plotting confusion matrix
cvsum = np.sum(cv,axis=2)
for i in range(4):
F1[i]=2*cvsum[i,i]/(np.sum(cvsum[i,:])+np.sum(cvsum[:,i]))
print("F1 measure for {} rhythm: {:1.4f}".format(classes[i],F1[i,0]))
F1mean = np.mean(F1)
print("mean F1 measure for: {:1.4f}".format(F1mean))
plot_confusion_matrix(cvsum, classes,normalize=True,title='Confusion matrix') | unknown | codeparrot/codeparrot-clean | ||
## Input
```javascript
function foo() {
const {'data-foo-bar': x, a: y, data: z} = {'data-foo-bar': 1, a: 2, data: 3};
return [x, y, z];
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: [],
isComponent: false,
};
```
## Code
```javascript
import { c as _c } from "react/compiler-runtime";
function foo() {
const $ = _c(2);
let t0;
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
t0 = { "data-foo-bar": 1, a: 2, data: 3 };
$[0] = t0;
} else {
t0 = $[0];
}
const { "data-foo-bar": x, a: y, data: z } = t0;
let t1;
if ($[1] === Symbol.for("react.memo_cache_sentinel")) {
t1 = [x, y, z];
$[1] = t1;
} else {
t1 = $[1];
}
return t1;
}
export const FIXTURE_ENTRYPOINT = {
fn: foo,
params: [],
isComponent: false,
};
```
### Eval output
(kind: ok) [1,2,3] | unknown | github | https://github.com/facebook/react | compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/destructure-mixed-property-key-types.expect.md |
// This file was automatically generated from flow.md by Knit tool. Do not edit.
package kotlinx.coroutines.guide.test
import kotlinx.coroutines.knit.*
import org.junit.Test
class FlowGuideTest {
@Test
fun testExampleFlow01() {
test("ExampleFlow01") { kotlinx.coroutines.guide.exampleFlow01.main() }.verifyLines(
"1",
"2",
"3"
)
}
@Test
fun testExampleFlow02() {
test("ExampleFlow02") { kotlinx.coroutines.guide.exampleFlow02.main() }.verifyLines(
"1",
"2",
"3"
)
}
@Test
fun testExampleFlow03() {
test("ExampleFlow03") { kotlinx.coroutines.guide.exampleFlow03.main() }.verifyLines(
"1",
"2",
"3"
)
}
@Test
fun testExampleFlow04() {
test("ExampleFlow04") { kotlinx.coroutines.guide.exampleFlow04.main() }.verifyLines(
"I'm not blocked 1",
"1",
"I'm not blocked 2",
"2",
"I'm not blocked 3",
"3"
)
}
@Test
fun testExampleFlow05() {
test("ExampleFlow05") { kotlinx.coroutines.guide.exampleFlow05.main() }.verifyLines(
"Calling simple function...",
"Calling collect...",
"Flow started",
"1",
"2",
"3",
"Calling collect again...",
"Flow started",
"1",
"2",
"3"
)
}
@Test
fun testExampleFlow06() {
test("ExampleFlow06") { kotlinx.coroutines.guide.exampleFlow06.main() }.verifyLines(
"Emitting 1",
"1",
"Emitting 2",
"2",
"Done"
)
}
@Test
fun testExampleFlow07() {
test("ExampleFlow07") { kotlinx.coroutines.guide.exampleFlow07.main() }.verifyLines(
"1",
"2",
"3"
)
}
@Test
fun testExampleFlow08() {
test("ExampleFlow08") { kotlinx.coroutines.guide.exampleFlow08.main() }.verifyLines(
"response 1",
"response 2",
"response 3"
)
}
@Test
fun testExampleFlow09() {
test("ExampleFlow09") { kotlinx.coroutines.guide.exampleFlow09.main() }.verifyLines(
"Making request 1",
"response 1",
"Making request 2",
"response 2",
"Making request 3",
"response 3"
)
}
@Test
fun testExampleFlow10() {
test("ExampleFlow10") { kotlinx.coroutines.guide.exampleFlow10.main() }.verifyLines(
"1",
"2",
"Finally in numbers"
)
}
@Test
fun testExampleFlow11() {
test("ExampleFlow11") { kotlinx.coroutines.guide.exampleFlow11.main() }.verifyLines(
"55"
)
}
@Test
fun testExampleFlow12() {
test("ExampleFlow12") { kotlinx.coroutines.guide.exampleFlow12.main() }.verifyLines(
"Filter 1",
"Filter 2",
"Map 2",
"Collect string 2",
"Filter 3",
"Filter 4",
"Map 4",
"Collect string 4",
"Filter 5"
)
}
@Test
fun testExampleFlow13() {
test("ExampleFlow13") { kotlinx.coroutines.guide.exampleFlow13.main() }.verifyLinesFlexibleThread(
"[main @coroutine#1] Started simple flow",
"[main @coroutine#1] Collected 1",
"[main @coroutine#1] Collected 2",
"[main @coroutine#1] Collected 3"
)
}
@Test
fun testExampleFlow14() {
test("ExampleFlow14") { kotlinx.coroutines.guide.exampleFlow14.main() }.verifyExceptions(
"Exception in thread \"main\" java.lang.IllegalStateException: Flow invariant is violated:",
"\t\tFlow was collected in [CoroutineId(1), \"coroutine#1\":BlockingCoroutine{Active}@5511c7f8, BlockingEventLoop@2eac3323],",
"\t\tbut emission happened in [CoroutineId(1), \"coroutine#1\":DispatchedCoroutine{Active}@2dae0000, Dispatchers.Default].",
"\t\tPlease refer to 'flow' documentation or use 'flowOn' instead",
"\tat ..."
)
}
@Test
fun testExampleFlow15() {
test("ExampleFlow15") { kotlinx.coroutines.guide.exampleFlow15.main() }.verifyLinesFlexibleThread(
"[DefaultDispatcher-worker-1 @coroutine#2] Emitting 1",
"[main @coroutine#1] Collected 1",
"[DefaultDispatcher-worker-1 @coroutine#2] Emitting 2",
"[main @coroutine#1] Collected 2",
"[DefaultDispatcher-worker-1 @coroutine#2] Emitting 3",
"[main @coroutine#1] Collected 3"
)
}
@Test
fun testExampleFlow16() {
test("ExampleFlow16") { kotlinx.coroutines.guide.exampleFlow16.main() }.verifyLinesArbitraryTime(
"1",
"2",
"3",
"Collected in 1220 ms"
)
}
@Test
fun testExampleFlow17() {
test("ExampleFlow17") { kotlinx.coroutines.guide.exampleFlow17.main() }.verifyLinesArbitraryTime(
"1",
"2",
"3",
"Collected in 1071 ms"
)
}
@Test
fun testExampleFlow18() {
test("ExampleFlow18") { kotlinx.coroutines.guide.exampleFlow18.main() }.verifyLinesArbitraryTime(
"1",
"3",
"Collected in 758 ms"
)
}
@Test
fun testExampleFlow19() {
test("ExampleFlow19") { kotlinx.coroutines.guide.exampleFlow19.main() }.verifyLinesArbitraryTime(
"Collecting 1",
"Collecting 2",
"Collecting 3",
"Done 3",
"Collected in 741 ms"
)
}
@Test
fun testExampleFlow20() {
test("ExampleFlow20") { kotlinx.coroutines.guide.exampleFlow20.main() }.verifyLines(
"1 -> one",
"2 -> two",
"3 -> three"
)
}
@Test
fun testExampleFlow21() {
test("ExampleFlow21") { kotlinx.coroutines.guide.exampleFlow21.main() }.verifyLinesArbitraryTime(
"1 -> one at 437 ms from start",
"2 -> two at 837 ms from start",
"3 -> three at 1243 ms from start"
)
}
@Test
fun testExampleFlow22() {
test("ExampleFlow22") { kotlinx.coroutines.guide.exampleFlow22.main() }.verifyLinesArbitraryTime(
"1 -> one at 452 ms from start",
"2 -> one at 651 ms from start",
"2 -> two at 854 ms from start",
"3 -> two at 952 ms from start",
"3 -> three at 1256 ms from start"
)
}
@Test
fun testExampleFlow23() {
test("ExampleFlow23") { kotlinx.coroutines.guide.exampleFlow23.main() }.verifyLinesArbitraryTime(
"1: First at 121 ms from start",
"1: Second at 622 ms from start",
"2: First at 727 ms from start",
"2: Second at 1227 ms from start",
"3: First at 1328 ms from start",
"3: Second at 1829 ms from start"
)
}
@Test
fun testExampleFlow24() {
test("ExampleFlow24") { kotlinx.coroutines.guide.exampleFlow24.main() }.verifyLinesArbitraryTime(
"1: First at 136 ms from start",
"2: First at 231 ms from start",
"3: First at 333 ms from start",
"1: Second at 639 ms from start",
"2: Second at 732 ms from start",
"3: Second at 833 ms from start"
)
}
@Test
fun testExampleFlow25() {
test("ExampleFlow25") { kotlinx.coroutines.guide.exampleFlow25.main() }.verifyLinesArbitraryTime(
"1: First at 142 ms from start",
"2: First at 322 ms from start",
"3: First at 425 ms from start",
"3: Second at 931 ms from start"
)
}
@Test
fun testExampleFlow26() {
test("ExampleFlow26") { kotlinx.coroutines.guide.exampleFlow26.main() }.verifyLines(
"Emitting 1",
"1",
"Emitting 2",
"2",
"Caught java.lang.IllegalStateException: Collected 2"
)
}
@Test
fun testExampleFlow27() {
test("ExampleFlow27") { kotlinx.coroutines.guide.exampleFlow27.main() }.verifyLines(
"Emitting 1",
"string 1",
"Emitting 2",
"Caught java.lang.IllegalStateException: Crashed on 2"
)
}
@Test
fun testExampleFlow28() {
test("ExampleFlow28") { kotlinx.coroutines.guide.exampleFlow28.main() }.verifyLines(
"Emitting 1",
"string 1",
"Emitting 2",
"Caught java.lang.IllegalStateException: Crashed on 2"
)
}
@Test
fun testExampleFlow29() {
test("ExampleFlow29") { kotlinx.coroutines.guide.exampleFlow29.main() }.verifyExceptions(
"Emitting 1",
"1",
"Emitting 2",
"Exception in thread \"main\" java.lang.IllegalStateException: Collected 2",
"\tat ..."
)
}
@Test
fun testExampleFlow30() {
test("ExampleFlow30") { kotlinx.coroutines.guide.exampleFlow30.main() }.verifyExceptions(
"Emitting 1",
"1",
"Emitting 2",
"Caught java.lang.IllegalStateException: Collected 2"
)
}
@Test
fun testExampleFlow31() {
test("ExampleFlow31") { kotlinx.coroutines.guide.exampleFlow31.main() }.verifyLines(
"1",
"2",
"3",
"Done"
)
}
@Test
fun testExampleFlow32() {
test("ExampleFlow32") { kotlinx.coroutines.guide.exampleFlow32.main() }.verifyLines(
"1",
"2",
"3",
"Done"
)
}
@Test
fun testExampleFlow33() {
test("ExampleFlow33") { kotlinx.coroutines.guide.exampleFlow33.main() }.verifyLines(
"1",
"Flow completed exceptionally",
"Caught exception"
)
}
@Test
fun testExampleFlow34() {
test("ExampleFlow34") { kotlinx.coroutines.guide.exampleFlow34.main() }.verifyExceptions(
"1",
"Flow completed with java.lang.IllegalStateException: Collected 2",
"Exception in thread \"main\" java.lang.IllegalStateException: Collected 2"
)
}
@Test
fun testExampleFlow35() {
test("ExampleFlow35") { kotlinx.coroutines.guide.exampleFlow35.main() }.verifyLines(
"Event: 1",
"Event: 2",
"Event: 3",
"Done"
)
}
@Test
fun testExampleFlow36() {
test("ExampleFlow36") { kotlinx.coroutines.guide.exampleFlow36.main() }.verifyLines(
"Done",
"Event: 1",
"Event: 2",
"Event: 3"
)
}
@Test
fun testExampleFlow37() {
test("ExampleFlow37") { kotlinx.coroutines.guide.exampleFlow37.main() }.verifyExceptions(
"Emitting 1",
"1",
"Emitting 2",
"2",
"Emitting 3",
"3",
"Emitting 4",
"Exception in thread \"main\" kotlinx.coroutines.JobCancellationException: BlockingCoroutine was cancelled; job=\"coroutine#1\":BlockingCoroutine{Cancelled}@6d7b4f4c"
)
}
@Test
fun testExampleFlow38() {
test("ExampleFlow38") { kotlinx.coroutines.guide.exampleFlow38.main() }.verifyExceptions(
"1",
"2",
"3",
"4",
"5",
"Exception in thread \"main\" kotlinx.coroutines.JobCancellationException: BlockingCoroutine was cancelled; job=\"coroutine#1\":BlockingCoroutine{Cancelled}@3327bd23"
)
}
@Test
fun testExampleFlow39() {
test("ExampleFlow39") { kotlinx.coroutines.guide.exampleFlow39.main() }.verifyExceptions(
"1",
"2",
"3",
"Exception in thread \"main\" kotlinx.coroutines.JobCancellationException: BlockingCoroutine was cancelled; job=\"coroutine#1\":BlockingCoroutine{Cancelled}@5ec0a365"
)
}
} | kotlin | github | https://github.com/Kotlin/kotlinx.coroutines | kotlinx-coroutines-core/jvm/test/guide/test/FlowGuideTest.kt |
"""Locations where we look for configs, install stuff, etc"""
# The following comment should be removed at some point in the future.
# mypy: strict-optional=False
from __future__ import absolute_import
import os
import os.path
import platform
import site
import sys
import sysconfig
from distutils import sysconfig as distutils_sysconfig
from distutils.command.install import SCHEME_KEYS # type: ignore
from distutils.command.install import install as distutils_install_command
from pip._internal.models.scheme import Scheme
from pip._internal.utils import appdirs
from pip._internal.utils.compat import WINDOWS
from pip._internal.utils.typing import MYPY_CHECK_RUNNING, cast
from pip._internal.utils.virtualenv import running_under_virtualenv
if MYPY_CHECK_RUNNING:
from typing import Dict, List, Optional, Union
from distutils.cmd import Command as DistutilsCommand
# Application Directories
USER_CACHE_DIR = appdirs.user_cache_dir("pip")
def get_major_minor_version():
# type: () -> str
"""
Return the major-minor version of the current Python as a string, e.g.
"3.7" or "3.10".
"""
return '{}.{}'.format(*sys.version_info)
def get_src_prefix():
# type: () -> str
if running_under_virtualenv():
src_prefix = os.path.join(sys.prefix, 'src')
else:
# FIXME: keep src in cwd for now (it is not a temporary folder)
try:
src_prefix = os.path.join(os.getcwd(), 'src')
except OSError:
# In case the current working directory has been renamed or deleted
sys.exit(
"The folder you are executing pip from can no longer be found."
)
# under macOS + virtualenv sys.prefix is not properly resolved
# it is something like /path/to/python/bin/..
return os.path.abspath(src_prefix)
# FIXME doesn't account for venv linked to global site-packages
site_packages = sysconfig.get_path("purelib") # type: Optional[str]
# This is because of a bug in PyPy's sysconfig module, see
# https://bitbucket.org/pypy/pypy/issues/2506/sysconfig-returns-incorrect-paths
# for more information.
if platform.python_implementation().lower() == "pypy":
site_packages = distutils_sysconfig.get_python_lib()
try:
# Use getusersitepackages if this is present, as it ensures that the
# value is initialised properly.
user_site = site.getusersitepackages()
except AttributeError:
user_site = site.USER_SITE
if WINDOWS:
bin_py = os.path.join(sys.prefix, 'Scripts')
bin_user = os.path.join(user_site, 'Scripts')
# buildout uses 'bin' on Windows too?
if not os.path.exists(bin_py):
bin_py = os.path.join(sys.prefix, 'bin')
bin_user = os.path.join(user_site, 'bin')
else:
bin_py = os.path.join(sys.prefix, 'bin')
bin_user = os.path.join(user_site, 'bin')
# Forcing to use /usr/local/bin for standard macOS framework installs
# Also log to ~/Library/Logs/ for use with the Console.app log viewer
if sys.platform[:6] == 'darwin' and sys.prefix[:16] == '/System/Library/':
bin_py = '/usr/local/bin'
def distutils_scheme(
dist_name, user=False, home=None, root=None, isolated=False, prefix=None
):
# type:(str, bool, str, str, bool, str) -> Dict[str, str]
"""
Return a distutils install scheme
"""
from distutils.dist import Distribution
dist_args = {'name': dist_name} # type: Dict[str, Union[str, List[str]]]
if isolated:
dist_args["script_args"] = ["--no-user-cfg"]
d = Distribution(dist_args)
d.parse_config_files()
obj = None # type: Optional[DistutilsCommand]
obj = d.get_command_obj('install', create=True)
assert obj is not None
i = cast(distutils_install_command, obj)
# NOTE: setting user or home has the side-effect of creating the home dir
# or user base for installations during finalize_options()
# ideally, we'd prefer a scheme class that has no side-effects.
assert not (user and prefix), "user={} prefix={}".format(user, prefix)
assert not (home and prefix), "home={} prefix={}".format(home, prefix)
i.user = user or i.user
if user or home:
i.prefix = ""
i.prefix = prefix or i.prefix
i.home = home or i.home
i.root = root or i.root
i.finalize_options()
scheme = {}
for key in SCHEME_KEYS:
scheme[key] = getattr(i, 'install_' + key)
# install_lib specified in setup.cfg should install *everything*
# into there (i.e. it takes precedence over both purelib and
# platlib). Note, i.install_lib is *always* set after
# finalize_options(); we only want to override here if the user
# has explicitly requested it hence going back to the config
if 'install_lib' in d.get_option_dict('install'):
scheme.update(dict(purelib=i.install_lib, platlib=i.install_lib))
if running_under_virtualenv():
scheme['headers'] = os.path.join(
i.prefix,
'include',
'site',
'python{}'.format(get_major_minor_version()),
dist_name,
)
if root is not None:
path_no_drive = os.path.splitdrive(
os.path.abspath(scheme["headers"]))[1]
scheme["headers"] = os.path.join(
root,
path_no_drive[1:],
)
return scheme
def get_scheme(
dist_name, # type: str
user=False, # type: bool
home=None, # type: Optional[str]
root=None, # type: Optional[str]
isolated=False, # type: bool
prefix=None, # type: Optional[str]
):
# type: (...) -> Scheme
"""
Get the "scheme" corresponding to the input parameters. The distutils
documentation provides the context for the available schemes:
https://docs.python.org/3/install/index.html#alternate-installation
:param dist_name: the name of the package to retrieve the scheme for, used
in the headers scheme path
:param user: indicates to use the "user" scheme
:param home: indicates to use the "home" scheme and provides the base
directory for the same
:param root: root under which other directories are re-based
:param isolated: equivalent to --no-user-cfg, i.e. do not consider
~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for
scheme paths
:param prefix: indicates to use the "prefix" scheme and provides the
base directory for the same
"""
scheme = distutils_scheme(
dist_name, user, home, root, isolated, prefix
)
return Scheme(
platlib=scheme["platlib"],
purelib=scheme["purelib"],
headers=scheme["headers"],
scripts=scheme["scripts"],
data=scheme["data"],
) | unknown | codeparrot/codeparrot-clean | ||
import types
from DIRAC import S_OK, S_ERROR
from DIRAC.Core.Utilities import DEncode, ThreadScheduler
from DIRAC.Core.Security import Properties
from DIRAC.Core.Base.ExecutorMindHandler import ExecutorMindHandler
from DIRAC.WorkloadManagementSystem.Client.JobState.JobState import JobState
from DIRAC.WorkloadManagementSystem.Client.JobState.CachedJobState import CachedJobState
from DIRAC.WorkloadManagementSystem.Client.JobState.OptimizationTask import OptimizationTask
class OptimizationMindHandler( ExecutorMindHandler ):
__jobDB = False
__optimizationStates = [ 'Received', 'Checking' ]
__loadTaskId = False
MSG_DEFINITIONS = { 'OptimizeJobs' : { 'jids' : ( types.ListType, types.TupleType ) } }
auth_msg_OptimizeJobs = [ 'all' ]
def msg_OptimizeJobs( self, msgObj ):
jids = msgObj.jids
for jid in jids:
try:
jid = int( jid )
except ValueError:
self.log.error( "Job ID %s has to be an integer" % jid )
#Forget and add task to ensure state is reset
self.forgetTask( jid )
result = self.executeTask( jid, OptimizationTask( jid ) )
if not result[ 'OK' ]:
self.log.error( "Could not add job %s to optimization: %s" % ( jid, result[ 'Value' ] ) )
else:
self.log.info( "Received new job %s" % jid )
return S_OK()
@classmethod
def __loadJobs( cls, eTypes = None ):
log = cls.log
if cls.__loadTaskId:
period = cls.srv_getCSOption( "LoadJobPeriod", 300 )
ThreadScheduler.gThreadScheduler.setTaskPeriod( cls.__loadTaskId, period )
if not eTypes:
eConn = cls.getExecutorsConnected()
eTypes = [ eType for eType in eConn if eConn[ eType ] > 0 ]
if not eTypes:
log.info( "No optimizer connected. Skipping load" )
return S_OK()
log.info( "Getting jobs for %s" % ",".join( eTypes ) )
checkingMinors = [ eType.split( "/" )[1] for eType in eTypes if eType != "WorkloadManagement/JobPath" ]
for opState in cls.__optimizationStates:
#For Received states
if opState == "Received":
if 'WorkloadManagement/JobPath' not in eTypes:
continue
jobCond = { 'Status' : opState }
#For checking states
if opState == "Checking":
if not checkingMinors:
continue
jobCond = { 'Status': opState, 'MinorStatus' : checkingMinors }
#Do the magic
jobTypeCondition = cls.srv_getCSOption( "JobTypeRestriction", [] )
if jobTypeCondition:
jobCond[ 'JobType' ] = jobTypeCondition
result = cls.__jobDB.selectJobs( jobCond, limit = cls.srv_getCSOption( "JobQueryLimit", 10000 ) )
if not result[ 'OK' ]:
return result
jidList = result[ 'Value' ]
knownJids = cls.getTaskIds()
added = 0
for jid in jidList:
jid = long( jid )
if jid not in knownJids:
#Same as before. Check that the state is ok.
cls.executeTask( jid, OptimizationTask( jid ) )
added += 1
log.info( "Added %s/%s jobs for %s state" % ( added, len( jidList ), opState ) )
return S_OK()
@classmethod
def initializeHandler( cls, serviceInfoDict ):
try:
from DIRAC.WorkloadManagementSystem.DB.JobDB import JobDB
cls.__jobDB = JobDB()
except Exception, excp:
return S_ERROR( "Could not connect to JobDB: %s" % str( excp ) )
cls.setFailedOnTooFrozen( False )
cls.setFreezeOnFailedDispatch( False )
cls.setFreezeOnUnknownExecutor( False )
cls.setAllowedClients( "JobManager" )
JobState.checkDBAccess()
JobState.cleanTaskQueues()
period = cls.srv_getCSOption( "LoadJobPeriod", 60 )
result = ThreadScheduler.gThreadScheduler.addPeriodicTask( period, cls.__loadJobs )
if not result[ 'OK' ]:
return result
cls.__loadTaskId = result[ 'Value' ]
return cls.__loadJobs()
@classmethod
def exec_executorConnected( cls, trid, eTypes ):
return cls.__loadJobs( eTypes )
@classmethod
def __failJob( cls, jid, minorStatus, appStatus = "" ):
cls.forgetTask( jid )
cls.__jobDB.setJobStatus( jid, "Failed", minorStatus, appStatus )
@classmethod
def __splitJob( cls, jid, manifests ):
cls.log.notice( "Splitting job %s" % jid )
try:
result = cls.__jobDB.insertSplittedManifests( jid, manifests )
if not result[ 'OK' ]:
cls.__failJob( jid, "Error while splitting", result[ 'Message' ] )
return S_ERROR( "Fail splitting" )
for jid in result[ 'Value' ]:
cls.forgetTask( jid )
cls.executeTask( jid, OptimizationTask( jid ) )
except Exception, excp:
cls.log.exception( "While splitting" )
cls.__failJob( jid, "Error while splitting", str( excp ) )
return S_OK()
@classmethod
def exec_taskProcessed( cls, jid, taskObj, eType ):
cjs = taskObj.jobState
cls.log.info( "Saving changes for job %s after %s" % ( jid, eType ) )
result = cjs.commitChanges()
if not result[ 'OK' ]:
cls.log.error( "Could not save changes for job", "%s: %s" % ( jid, result[ 'Message' ] ) )
return result
if taskObj.splitManifests:
return cls.__splitJob( jid, taskObj.splitManifests )
if taskObj.tqReady:
result = cjs.getManifest()
if not result[ 'OK' ]:
cls.log.error( "Could not get manifest before inserting into TQ", "%s: %s" % ( jid, result[ 'Message' ] ) )
return result
manifest = result[ 'Value' ]
result = cjs.jobState.insertIntoTQ( manifest )
if not result[ 'OK' ]:
cls.log.error( "Could not insert into TQ", "%s: %s" % ( jid, result[ 'Message' ] ) )
return result
return S_OK()
@classmethod
def exec_taskFreeze( cls, jid, taskObj, eType ):
jobState = taskObj.jobState
cls.log.info( "Saving changes for job %s before freezing from %s" % ( jid, eType ) )
result = jobState.commitChanges()
if not result[ 'OK' ]:
cls.log.error( "Could not save changes for job", "%s: %s" % ( jid, result[ 'Message' ] ) )
return result
@classmethod
def exec_dispatch( cls, jid, taskObj, pathExecuted ):
jobState = taskObj.jobState
result = jobState.getStatus()
if not result[ 'OK' ]:
cls.log.error( "Could not get status for job", "%s: %s" % ( jid, result[ 'Message' ] ) )
return S_ERROR( "Could not retrieve status: %s" % result[ 'Message' ] )
status, minorStatus = result[ 'Value' ]
#If not in proper state then end chain
if status not in cls.__optimizationStates:
cls.log.info( "Dispatching job %s out of optimization" % jid )
return S_OK()
#If received send to JobPath
if status == "Received":
cls.log.info( "Dispatching job %s to JobPath" % jid )
return S_OK( "WorkloadManagement/JobPath" )
result = jobState.getOptParameter( 'OptimizerChain' )
if not result[ 'OK' ]:
cls.log.error( "Could not get optimizer chain for job, auto resetting job", "%s: %s" % ( jid, result[ 'Message' ] ) )
result = jobState.resetJob()
if not result[ 'OK' ]:
cls.log.error( "Could not reset job", "%s: %s" % ( jid, result[ 'Message' ] ) )
return S_ERROR( "Cound not get OptimizationChain or reset job %s" % jid )
return S_OK( "WorkloadManagement/JobPath" )
optChain = result[ 'Value' ]
if minorStatus not in optChain:
cls.log.error( "Next optimizer is not in the chain for job", "%s: %s not in %s" % ( jid, minorStatus, optChain ) )
return S_ERROR( "Next optimizer %s not in chain %s" % ( minorStatus, optChain ) )
cls.log.info( "Dispatching job %s to %s" % ( jid, minorStatus ) )
return S_OK( "WorkloadManagement/%s" % minorStatus )
@classmethod
def exec_prepareToSend( cls, jid, taskObj, eId ):
return taskObj.jobState.recheckValidity()
@classmethod
def exec_serializeTask( cls, taskObj ):
return S_OK( taskObj.serialize() )
@classmethod
def exec_deserializeTask( cls, taskStub ):
return OptimizationTask.deserialize( taskStub )
@classmethod
def exec_taskError( cls, jid, taskObj, errorMsg ):
result = taskObj.jobState.commitChanges()
if not result[ 'OK' ]:
cls.log.error( "Cannot write changes to job %s: %s" % ( jid, result[ 'Message' ] ) )
jobState = JobState( jid )
result = jobState.getStatus()
if result[ 'OK' ]:
if result[ 'Value' ][0].lower() == "failed":
return S_OK()
else:
cls.log.error( "Could not get status of job %s: %s" % ( jid, result[ 'Message ' ] ) )
cls.log.notice( "Job %s: Setting to Failed|%s" % ( jid, errorMsg ) )
return jobState.setStatus( "Failed", errorMsg, source = 'OptimizationMindHandler' )
auth_stageCallback = [ Properties.OPERATOR ]
types_stageCallback = ( ( types.StringType, types.IntType, types.LongType ), types.StringType )
def export_stageCallback( self, jid, stageStatus ):
""" Simple call back method to be used by the stager. """
try:
jid = int( jid )
except ValueError:
return S_ERROR( "Job ID is not a number!" )
failed = False
if stageStatus == 'Done':
major = 'Checking'
minor = 'InputDataValidation'
elif stageStatus == 'Failed':
major = 'Failed'
minor = 'Staging input files failed'
failed = True
else:
return S_ERROR( "%s status not known." % stageStatus )
result = self.__jobDB.getJobAttributes( jid, ['Status'] )
if not result['OK']:
return result
data = result[ 'Value' ]
if not data:
return S_OK( 'No Matching Job' )
if data[ 'Status' ] != 'Staging':
return S_OK( 'Job %s is not in Staging' % jid )
jobState = JobState( jid )
result = jobState.setStatus( major, minor, source = "StagerSystem" )
if not result[ 'OK' ]:
return result
if failed:
return S_OK()
return self.executeTask( jid, OptimizationTask( jid ) ) | unknown | codeparrot/codeparrot-clean | ||
# Author: Mathieu Blondel <mathieu@mblondel.org>
# Arnaud Joly <a.joly@ulg.ac.be>
# Maheshakya Wijewardena <maheshakya.10@cse.mrt.ac.lk>
# License: BSD 3 clause
from __future__ import division
import warnings
import numpy as np
import scipy.sparse as sp
from .base import BaseEstimator, ClassifierMixin, RegressorMixin
from .utils import check_random_state
from .utils.validation import check_array
from .utils.validation import check_consistent_length
from .utils.validation import check_is_fitted
from .utils.random import random_choice_csc
from .utils.stats import _weighted_percentile
from .utils.multiclass import class_distribution
class DummyClassifier(BaseEstimator, ClassifierMixin):
"""
DummyClassifier is a classifier that makes predictions using simple rules.
This classifier is useful as a simple baseline to compare with other
(real) classifiers. Do not use it for real problems.
Read more in the :ref:`User Guide <dummy_estimators>`.
Parameters
----------
strategy : str, default="stratified"
Strategy to use to generate predictions.
* "stratified": generates predictions by respecting the training
set's class distribution.
* "most_frequent": always predicts the most frequent label in the
training set.
* "prior": always predicts the class that maximizes the class prior
(like "most_frequent") and ``predict_proba`` returns the class prior.
* "uniform": generates predictions uniformly at random.
* "constant": always predicts a constant label that is provided by
the user. This is useful for metrics that evaluate a non-majority
class
.. versionadded:: 0.17
Dummy Classifier now supports prior fitting strategy using
parameter *prior*.
random_state : int seed, RandomState instance, or None (default)
The seed of the pseudo random number generator to use.
constant : int or str or array of shape = [n_outputs]
The explicit constant as predicted by the "constant" strategy. This
parameter is useful only for the "constant" strategy.
Attributes
----------
classes_ : array or list of array of shape = [n_classes]
Class labels for each output.
n_classes_ : array or list of array of shape = [n_classes]
Number of label for each output.
class_prior_ : array or list of array of shape = [n_classes]
Probability of each class for each output.
n_outputs_ : int,
Number of outputs.
outputs_2d_ : bool,
True if the output at fit is 2d, else false.
sparse_output_ : bool,
True if the array returned from predict is to be in sparse CSC format.
Is automatically set to True if the input y is passed in sparse format.
"""
def __init__(self, strategy="stratified", random_state=None,
constant=None):
self.strategy = strategy
self.random_state = random_state
self.constant = constant
def fit(self, X, y, sample_weight=None):
"""Fit the random classifier.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Training vectors, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape = [n_samples] or [n_samples, n_outputs]
Target values.
sample_weight : array-like of shape = [n_samples], optional
Sample weights.
Returns
-------
self : object
Returns self.
"""
if self.strategy not in ("most_frequent", "stratified", "uniform",
"constant", "prior"):
raise ValueError("Unknown strategy type.")
if self.strategy == "uniform" and sp.issparse(y):
y = y.toarray()
warnings.warn('A local copy of the target data has been converted '
'to a numpy array. Predicting on sparse target data '
'with the uniform strategy would not save memory '
'and would be slower.',
UserWarning)
self.sparse_output_ = sp.issparse(y)
if not self.sparse_output_:
y = np.atleast_1d(y)
self.output_2d_ = y.ndim == 2
if y.ndim == 1:
y = np.reshape(y, (-1, 1))
self.n_outputs_ = y.shape[1]
if self.strategy == "constant":
if self.constant is None:
raise ValueError("Constant target value has to be specified "
"when the constant strategy is used.")
else:
constant = np.reshape(np.atleast_1d(self.constant), (-1, 1))
if constant.shape[0] != self.n_outputs_:
raise ValueError("Constant target value should have "
"shape (%d, 1)." % self.n_outputs_)
(self.classes_,
self.n_classes_,
self.class_prior_) = class_distribution(y, sample_weight)
if (self.strategy == "constant" and
any(constant[k] not in self.classes_[k]
for k in range(self.n_outputs_))):
# Checking in case of constant strategy if the constant
# provided by the user is in y.
raise ValueError("The constant target value must be "
"present in training data")
if self.n_outputs_ == 1 and not self.output_2d_:
self.n_classes_ = self.n_classes_[0]
self.classes_ = self.classes_[0]
self.class_prior_ = self.class_prior_[0]
return self
def predict(self, X):
"""Perform classification on test vectors X.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Input vectors, where n_samples is the number of samples
and n_features is the number of features.
Returns
-------
y : array, shape = [n_samples] or [n_samples, n_outputs]
Predicted target values for X.
"""
check_is_fitted(self, 'classes_')
X = check_array(X, accept_sparse=['csr', 'csc', 'coo'])
# numpy random_state expects Python int and not long as size argument
# under Windows
n_samples = int(X.shape[0])
rs = check_random_state(self.random_state)
n_classes_ = self.n_classes_
classes_ = self.classes_
class_prior_ = self.class_prior_
constant = self.constant
if self.n_outputs_ == 1:
# Get same type even for self.n_outputs_ == 1
n_classes_ = [n_classes_]
classes_ = [classes_]
class_prior_ = [class_prior_]
constant = [constant]
# Compute probability only once
if self.strategy == "stratified":
proba = self.predict_proba(X)
if self.n_outputs_ == 1:
proba = [proba]
if self.sparse_output_:
class_prob = None
if self.strategy in ("most_frequent", "prior"):
classes_ = [np.array([cp.argmax()]) for cp in class_prior_]
elif self.strategy == "stratified":
class_prob = class_prior_
elif self.strategy == "uniform":
raise ValueError("Sparse target prediction is not "
"supported with the uniform strategy")
elif self.strategy == "constant":
classes_ = [np.array([c]) for c in constant]
y = random_choice_csc(n_samples, classes_, class_prob,
self.random_state)
else:
if self.strategy in ("most_frequent", "prior"):
y = np.tile([classes_[k][class_prior_[k].argmax()] for
k in range(self.n_outputs_)], [n_samples, 1])
elif self.strategy == "stratified":
y = np.vstack(classes_[k][proba[k].argmax(axis=1)] for
k in range(self.n_outputs_)).T
elif self.strategy == "uniform":
ret = [classes_[k][rs.randint(n_classes_[k], size=n_samples)]
for k in range(self.n_outputs_)]
y = np.vstack(ret).T
elif self.strategy == "constant":
y = np.tile(self.constant, (n_samples, 1))
if self.n_outputs_ == 1 and not self.output_2d_:
y = np.ravel(y)
return y
def predict_proba(self, X):
"""
Return probability estimates for the test vectors X.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Input vectors, where n_samples is the number of samples
and n_features is the number of features.
Returns
-------
P : array-like or list of array-lke of shape = [n_samples, n_classes]
Returns the probability of the sample for each class in
the model, where classes are ordered arithmetically, for each
output.
"""
check_is_fitted(self, 'classes_')
X = check_array(X, accept_sparse=['csr', 'csc', 'coo'])
# numpy random_state expects Python int and not long as size argument
# under Windows
n_samples = int(X.shape[0])
rs = check_random_state(self.random_state)
n_classes_ = self.n_classes_
classes_ = self.classes_
class_prior_ = self.class_prior_
constant = self.constant
if self.n_outputs_ == 1 and not self.output_2d_:
# Get same type even for self.n_outputs_ == 1
n_classes_ = [n_classes_]
classes_ = [classes_]
class_prior_ = [class_prior_]
constant = [constant]
P = []
for k in range(self.n_outputs_):
if self.strategy == "most_frequent":
ind = class_prior_[k].argmax()
out = np.zeros((n_samples, n_classes_[k]), dtype=np.float64)
out[:, ind] = 1.0
elif self.strategy == "prior":
out = np.ones((n_samples, 1)) * class_prior_[k]
elif self.strategy == "stratified":
out = rs.multinomial(1, class_prior_[k], size=n_samples)
elif self.strategy == "uniform":
out = np.ones((n_samples, n_classes_[k]), dtype=np.float64)
out /= n_classes_[k]
elif self.strategy == "constant":
ind = np.where(classes_[k] == constant[k])
out = np.zeros((n_samples, n_classes_[k]), dtype=np.float64)
out[:, ind] = 1.0
P.append(out)
if self.n_outputs_ == 1 and not self.output_2d_:
P = P[0]
return P
def predict_log_proba(self, X):
"""
Return log probability estimates for the test vectors X.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Input vectors, where n_samples is the number of samples
and n_features is the number of features.
Returns
-------
P : array-like or list of array-like of shape = [n_samples, n_classes]
Returns the log probability of the sample for each class in
the model, where classes are ordered arithmetically for each
output.
"""
proba = self.predict_proba(X)
if self.n_outputs_ == 1:
return np.log(proba)
else:
return [np.log(p) for p in proba]
class DummyRegressor(BaseEstimator, RegressorMixin):
"""
DummyRegressor is a regressor that makes predictions using
simple rules.
This regressor is useful as a simple baseline to compare with other
(real) regressors. Do not use it for real problems.
Read more in the :ref:`User Guide <dummy_estimators>`.
Parameters
----------
strategy : str
Strategy to use to generate predictions.
* "mean": always predicts the mean of the training set
* "median": always predicts the median of the training set
* "quantile": always predicts a specified quantile of the training set,
provided with the quantile parameter.
* "constant": always predicts a constant value that is provided by
the user.
constant : int or float or array of shape = [n_outputs]
The explicit constant as predicted by the "constant" strategy. This
parameter is useful only for the "constant" strategy.
quantile : float in [0.0, 1.0]
The quantile to predict using the "quantile" strategy. A quantile of
0.5 corresponds to the median, while 0.0 to the minimum and 1.0 to the
maximum.
Attributes
----------
constant_ : float or array of shape [n_outputs]
Mean or median or quantile of the training targets or constant value
given by the user.
n_outputs_ : int,
Number of outputs.
outputs_2d_ : bool,
True if the output at fit is 2d, else false.
"""
def __init__(self, strategy="mean", constant=None, quantile=None):
self.strategy = strategy
self.constant = constant
self.quantile = quantile
def fit(self, X, y, sample_weight=None):
"""Fit the random regressor.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Training vectors, where n_samples is the number of samples
and n_features is the number of features.
y : array-like, shape = [n_samples] or [n_samples, n_outputs]
Target values.
sample_weight : array-like of shape = [n_samples], optional
Sample weights.
Returns
-------
self : object
Returns self.
"""
if self.strategy not in ("mean", "median", "quantile", "constant"):
raise ValueError("Unknown strategy type: %s, expected "
"'mean', 'median', 'quantile' or 'constant'"
% self.strategy)
y = check_array(y, ensure_2d=False)
if len(y) == 0:
raise ValueError("y must not be empty.")
self.output_2d_ = y.ndim == 2
if y.ndim == 1:
y = np.reshape(y, (-1, 1))
self.n_outputs_ = y.shape[1]
check_consistent_length(X, y, sample_weight)
if self.strategy == "mean":
self.constant_ = np.average(y, axis=0, weights=sample_weight)
elif self.strategy == "median":
if sample_weight is None:
self.constant_ = np.median(y, axis=0)
else:
self.constant_ = [_weighted_percentile(y[:, k], sample_weight,
percentile=50.)
for k in range(self.n_outputs_)]
elif self.strategy == "quantile":
if self.quantile is None or not np.isscalar(self.quantile):
raise ValueError("Quantile must be a scalar in the range "
"[0.0, 1.0], but got %s." % self.quantile)
percentile = self.quantile * 100.0
if sample_weight is None:
self.constant_ = np.percentile(y, axis=0, q=percentile)
else:
self.constant_ = [_weighted_percentile(y[:, k], sample_weight,
percentile=percentile)
for k in range(self.n_outputs_)]
elif self.strategy == "constant":
if self.constant is None:
raise TypeError("Constant target value has to be specified "
"when the constant strategy is used.")
self.constant = check_array(self.constant,
accept_sparse=['csr', 'csc', 'coo'],
ensure_2d=False, ensure_min_samples=0)
if self.output_2d_ and self.constant.shape[0] != y.shape[1]:
raise ValueError(
"Constant target value should have "
"shape (%d, 1)." % y.shape[1])
self.constant_ = self.constant
self.constant_ = np.reshape(self.constant_, (1, -1))
return self
def predict(self, X):
"""
Perform classification on test vectors X.
Parameters
----------
X : {array-like, sparse matrix}, shape = [n_samples, n_features]
Input vectors, where n_samples is the number of samples
and n_features is the number of features.
Returns
-------
y : array, shape = [n_samples] or [n_samples, n_outputs]
Predicted target values for X.
"""
check_is_fitted(self, "constant_")
X = check_array(X, accept_sparse=['csr', 'csc', 'coo'])
n_samples = X.shape[0]
y = np.ones((n_samples, 1)) * self.constant_
if self.n_outputs_ == 1 and not self.output_2d_:
y = np.ravel(y)
return y | unknown | codeparrot/codeparrot-clean | ||
# -*- coding: utf-8 -*-
# Copyright 2017 Dag Wieers <dag@wieers.com>
# Copyright 2017 Swetha Chunduri (@schunduri)
# This file is part of Ansible by Red Hat
#
# Ansible 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 3 of the License, or
# (at your option) any later version.
#
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
class ModuleDocFragment(object):
# Standard files documentation fragment
DOCUMENTATION = '''
options:
hostname:
description:
- IP Address or hostname of APIC resolvable by Ansible control host.
required: yes
aliases: [ host ]
username:
description:
- The username to use for authentication.
required: yes
default: admin
aliases: [ user ]
password:
description:
- The password to use for authentication.
required: yes
timeout:
description:
- The socket level timeout in seconds.
default: 30
use_proxy:
description:
- If C(no), it will not use a proxy, even if one is defined in an environment variable on the target hosts.
default: 'yes'
type: bool
use_ssl:
description:
- If C(no), an HTTP connection will be used instead of the default HTTPS connection.
type: bool
default: 'yes'
validate_certs:
description:
- If C(no), SSL certificates will not be validated.
- This should only set to C(no) used on personally controlled sites using self-signed certificates.
type: bool
default: 'yes'
notes:
- By default, if an environment variable C(<protocol>_proxy) is set on
the target host, requests will be sent through that proxy. This
behaviour can be overridden by setting a variable for this task
(see `setting the environment
<http://docs.ansible.com/playbooks_environment.html>`_),
or by using the C(use_proxy) option.
- HTTP redirects can redirect from HTTP to HTTPS so you should be sure that
your proxy environment for both protocols is correct.
''' | unknown | codeparrot/codeparrot-clean | ||
# 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 msgprint, _
def execute(filters=None):
return _execute(filters)
def _execute(filters=None, additional_table_columns=None, additional_query_columns=None):
if not filters: filters = {}
invoice_list = get_invoices(filters, additional_query_columns)
columns, expense_accounts, tax_accounts = get_columns(invoice_list, additional_table_columns)
if not invoice_list:
msgprint(_("No record found"))
return columns, invoice_list
invoice_expense_map = get_invoice_expense_map(invoice_list)
invoice_expense_map, invoice_tax_map = get_invoice_tax_map(invoice_list,
invoice_expense_map, expense_accounts)
invoice_po_pr_map = get_invoice_po_pr_map(invoice_list)
suppliers = list(set([d.supplier for d in invoice_list]))
supplier_details = get_supplier_details(suppliers)
company_currency = frappe.db.get_value("Company", filters.company, "default_currency")
data = []
for inv in invoice_list:
# invoice details
purchase_order = list(set(invoice_po_pr_map.get(inv.name, {}).get("purchase_order", [])))
purchase_receipt = list(set(invoice_po_pr_map.get(inv.name, {}).get("purchase_receipt", [])))
project = list(set(invoice_po_pr_map.get(inv.name, {}).get("project", [])))
row = [inv.name, inv.posting_date, inv.supplier, inv.supplier_name]
if additional_query_columns:
for col in additional_query_columns:
row.append(inv.get(col))
row += [
supplier_details.get(inv.supplier), # supplier_type
inv.credit_to, inv.mode_of_payment, ", ".join(project),
inv.bill_no, inv.bill_date, inv.remarks,
", ".join(purchase_order), ", ".join(purchase_receipt), company_currency
]
# map expense values
base_net_total = 0
for expense_acc in expense_accounts:
expense_amount = flt(invoice_expense_map.get(inv.name, {}).get(expense_acc))
base_net_total += expense_amount
row.append(expense_amount)
# net total
row.append(base_net_total or inv.base_net_total)
# tax account
total_tax = 0
for tax_acc in tax_accounts:
if tax_acc not in expense_accounts:
tax_amount = flt(invoice_tax_map.get(inv.name, {}).get(tax_acc))
total_tax += tax_amount
row.append(tax_amount)
# total tax, grand total, outstanding amount & rounded total
row += [total_tax, inv.base_grand_total, flt(inv.base_grand_total, 2), inv.outstanding_amount]
data.append(row)
return columns, data
def get_columns(invoice_list, additional_table_columns):
"""return columns based on filters"""
columns = [
_("Invoice") + ":Link/Purchase Invoice:120", _("Posting Date") + ":Date:80",
_("Supplier Id") + "::120", _("Supplier Name") + "::120"]
if additional_table_columns:
columns += additional_table_columns
columns += [
_("Supplier Type") + ":Link/Supplier Type:120", _("Payable Account") + ":Link/Account:120",
_("Mode of Payment") + ":Link/Mode of Payment:80", _("Project") + ":Link/Project:80",
_("Bill No") + "::120", _("Bill Date") + ":Date:80", _("Remarks") + "::150",
_("Purchase Order") + ":Link/Purchase Order:100",
_("Purchase Receipt") + ":Link/Purchase Receipt:100",
{
"fieldname": "currency",
"label": _("Currency"),
"fieldtype": "Data",
"width": 80
}
]
expense_accounts = tax_accounts = expense_columns = tax_columns = []
if invoice_list:
expense_accounts = frappe.db.sql_list("""select distinct expense_account
from `tabPurchase Invoice Item` where docstatus = 1
and (expense_account is not null and expense_account != '')
and parent in (%s) order by expense_account""" %
', '.join(['%s']*len(invoice_list)), tuple([inv.name for inv in invoice_list]))
tax_accounts = frappe.db.sql_list("""select distinct account_head
from `tabPurchase Taxes and Charges` where parenttype = 'Purchase Invoice'
and docstatus = 1 and (account_head is not null and account_head != '')
and category in ('Total', 'Valuation and Total')
and parent in (%s) order by account_head""" %
', '.join(['%s']*len(invoice_list)), tuple([inv.name for inv in invoice_list]))
expense_columns = [(account + ":Currency/currency:120") for account in expense_accounts]
for account in tax_accounts:
if account not in expense_accounts:
tax_columns.append(account + ":Currency/currency:120")
columns = columns + expense_columns + [_("Net Total") + ":Currency/currency:120"] + tax_columns + \
[_("Total Tax") + ":Currency/currency:120", _("Grand Total") + ":Currency/currency:120",
_("Rounded Total") + ":Currency/currency:120", _("Outstanding Amount") + ":Currency/currency:120"]
return columns, expense_accounts, tax_accounts
def get_conditions(filters):
conditions = ""
if filters.get("company"): conditions += " and company=%(company)s"
if filters.get("supplier"): conditions += " and supplier = %(supplier)s"
if filters.get("from_date"): conditions += " and posting_date>=%(from_date)s"
if filters.get("to_date"): conditions += " and posting_date<=%(to_date)s"
if filters.get("mode_of_payment"): conditions += " and ifnull(mode_of_payment, '') = %(mode_of_payment)s"
return conditions
def get_invoices(filters, additional_query_columns):
if additional_query_columns:
additional_query_columns = ', ' + ', '.join(additional_query_columns)
conditions = get_conditions(filters)
return frappe.db.sql("""
select
name, posting_date, credit_to, supplier, supplier_name, bill_no, bill_date,
remarks, base_net_total, base_grand_total, outstanding_amount,
mode_of_payment {0}
from `tabPurchase Invoice`
where docstatus = 1 %s
order by posting_date desc, name desc""".format(additional_query_columns or '') % conditions, filters, as_dict=1)
def get_invoice_expense_map(invoice_list):
expense_details = frappe.db.sql("""
select parent, expense_account, sum(base_net_amount) as amount
from `tabPurchase Invoice Item`
where parent in (%s)
group by parent, expense_account
""" % ', '.join(['%s']*len(invoice_list)), tuple([inv.name for inv in invoice_list]), as_dict=1)
invoice_expense_map = {}
for d in expense_details:
invoice_expense_map.setdefault(d.parent, frappe._dict()).setdefault(d.expense_account, [])
invoice_expense_map[d.parent][d.expense_account] = flt(d.amount)
return invoice_expense_map
def get_invoice_tax_map(invoice_list, invoice_expense_map, expense_accounts):
tax_details = frappe.db.sql("""
select parent, account_head, case add_deduct_tax when "Add" then sum(base_tax_amount_after_discount_amount)
else sum(base_tax_amount_after_discount_amount) * -1 end as tax_amount
from `tabPurchase Taxes and Charges`
where parent in (%s) and category in ('Total', 'Valuation and Total')
group by parent, account_head, add_deduct_tax
""" % ', '.join(['%s']*len(invoice_list)), tuple([inv.name for inv in invoice_list]), as_dict=1)
invoice_tax_map = {}
for d in tax_details:
if d.account_head in expense_accounts:
if invoice_expense_map[d.parent].has_key(d.account_head):
invoice_expense_map[d.parent][d.account_head] += flt(d.tax_amount)
else:
invoice_expense_map[d.parent][d.account_head] = flt(d.tax_amount)
else:
invoice_tax_map.setdefault(d.parent, frappe._dict()).setdefault(d.account_head, [])
invoice_tax_map[d.parent][d.account_head] = flt(d.tax_amount)
return invoice_expense_map, invoice_tax_map
def get_invoice_po_pr_map(invoice_list):
pi_items = frappe.db.sql("""
select parent, purchase_order, purchase_receipt, po_detail, project
from `tabPurchase Invoice Item`
where parent in (%s) and (ifnull(purchase_order, '') != '' or ifnull(purchase_receipt, '') != '')
""" % ', '.join(['%s']*len(invoice_list)), tuple([inv.name for inv in invoice_list]), as_dict=1)
invoice_po_pr_map = {}
for d in pi_items:
if d.purchase_order:
invoice_po_pr_map.setdefault(d.parent, frappe._dict()).setdefault(
"purchase_order", []).append(d.purchase_order)
pr_list = None
if d.purchase_receipt:
pr_list = [d.purchase_receipt]
elif d.po_detail:
pr_list = frappe.db.sql_list("""select distinct parent from `tabPurchase Receipt Item`
where docstatus=1 and purchase_order_item=%s""", d.po_detail)
if pr_list:
invoice_po_pr_map.setdefault(d.parent, frappe._dict()).setdefault("purchase_receipt", pr_list)
if d.project:
invoice_po_pr_map.setdefault(d.parent, frappe._dict()).setdefault(
"project", []).append(d.project)
return invoice_po_pr_map
def get_account_details(invoice_list):
account_map = {}
accounts = list(set([inv.credit_to for inv in invoice_list]))
for acc in frappe.db.sql("""select name, parent_account from tabAccount
where name in (%s)""" % ", ".join(["%s"]*len(accounts)), tuple(accounts), as_dict=1):
account_map[acc.name] = acc.parent_account
return account_map
def get_supplier_details(suppliers):
supplier_details = {}
for supp in frappe.db.sql("""select name, supplier_type from `tabSupplier`
where name in (%s)""" % ", ".join(["%s"]*len(suppliers)), tuple(suppliers), as_dict=1):
supplier_details.setdefault(supp.name, supp.supplier_type)
return supplier_details | unknown | codeparrot/codeparrot-clean | ||
from axolotl.state.sessionstore import SessionStore
from axolotl.state.sessionrecord import SessionRecord
class LiteSessionStore(SessionStore):
def __init__(self, dbConn):
"""
:type dbConn: Connection
"""
self.dbConn = dbConn
dbConn.execute("CREATE TABLE IF NOT EXISTS sessions (_id INTEGER PRIMARY KEY AUTOINCREMENT,"
"recipient_id INTEGER UNIQUE, device_id INTEGER, record BLOB, timestamp INTEGER);")
def loadSession(self, recipientId, deviceId):
q = "SELECT record FROM sessions WHERE recipient_id = ? AND device_id = ?"
c = self.dbConn.cursor()
c.execute(q, (recipientId, deviceId))
result = c.fetchone()
if result:
return SessionRecord(serialized=result[0])
else:
return SessionRecord()
def getSubDeviceSessions(self, recipientId):
q = "SELECT device_id from sessions WHERE recipient_id = ?"
c = self.dbConn.cursor()
c.execute(q, (recipientId,))
result = c.fetchall()
deviceIds = [r[0] for r in result]
return deviceIds
def storeSession(self, recipientId, deviceId, sessionRecord):
self.deleteSession(recipientId, deviceId)
q = "INSERT INTO sessions(recipient_id, device_id, record) VALUES(?,?,?)"
c = self.dbConn.cursor()
c.execute(q, (recipientId, deviceId, sessionRecord.serialize()))
self.dbConn.commit()
def containsSession(self, recipientId, deviceId):
q = "SELECT record FROM sessions WHERE recipient_id = ? AND device_id = ?"
c = self.dbConn.cursor()
c.execute(q, (recipientId, deviceId))
result = c.fetchone()
return result is not None
def deleteSession(self, recipientId, deviceId):
q = "DELETE FROM sessions WHERE recipient_id = ? AND device_id = ?"
self.dbConn.cursor().execute(q, (recipientId, deviceId))
self.dbConn.commit()
def deleteAllSessions(self, recipientId):
q = "DELETE FROM sessions WHERE recipient_id = ?"
self.dbConn.cursor().execute(q, (recipientId,))
self.dbConn.commit() | unknown | codeparrot/codeparrot-clean | ||
/* this file was generated by Tools/unicode/makeunicodedata.py 3.3 */
#define NAME_MAXLEN 256
/* name->code dictionary */
static const unsigned char packed_name_dawg[] = {
136, 135, 5, 254, 2, 65, 246, 145, 3, 66, 206, 160, 3, 67, 146, 251, 4,
68, 250, 135, 1, 69, 230, 157, 1, 70, 174, 55, 71, 214, 169, 1, 72, 138,
226, 1, 73, 138, 66, 74, 142, 23, 75, 250, 138, 1, 76, 150, 164, 3, 77,
198, 201, 3, 78, 246, 107, 79, 174, 131, 1, 80, 212, 159, 1, 2, 81, 85,
226, 7, 82, 158, 180, 1, 83, 210, 197, 4, 84, 146, 236, 2, 85, 246, 104,
86, 242, 84, 87, 246, 114, 88, 130, 5, 89, 211, 50, 90, 176, 41, 218, 2,
67, 238, 1, 68, 182, 10, 69, 172, 5, 4, 72, 79, 77, 32, 244, 6, 7, 73,
82, 80, 76, 65, 78, 69, 82, 76, 190, 36, 77, 242, 1, 78, 162, 26, 80,
162, 20, 82, 186, 150, 2, 83, 162, 3, 84, 70, 85, 214, 1, 86, 252, 197,
1, 8, 75, 84, 73, 69, 83, 69, 76, 83, 168, 203, 10, 4, 70, 71, 72, 65,
150, 239, 9, 66, 196, 170, 5, 2, 81, 85, 171, 215, 10, 88, 18, 132, 1, 2,
67, 79, 46, 75, 20, 5, 85, 84, 69, 32, 65, 160, 188, 17, 6, 84, 73, 86,
65, 84, 69, 213, 161, 23, 5, 32, 67, 85, 82, 82, 4, 186, 184, 26, 85,
221, 152, 14, 2, 82, 68, 5, 203, 215, 34, 78, 4, 142, 252, 35, 67, 199,
254, 3, 78, 188, 1, 232, 1, 4, 76, 65, 77, 32, 242, 7, 77, 252, 207, 13,
7, 72, 69, 83, 73, 86, 69, 32, 136, 172, 4, 19, 68, 82, 69, 83, 83, 69,
68, 32, 84, 79, 32, 84, 72, 69, 32, 83, 85, 66, 74, 174, 245, 13, 85,
233, 185, 1, 6, 73, 32, 83, 72, 65, 75, 176, 1, 218, 1, 67, 44, 4, 83,
77, 65, 76, 168, 4, 7, 71, 69, 77, 73, 78, 65, 84, 116, 8, 73, 78, 73,
84, 73, 65, 76, 32, 38, 78, 146, 228, 2, 72, 140, 225, 23, 4, 65, 76, 73,
70, 0, 5, 86, 79, 87, 69, 76, 155, 222, 12, 68, 70, 40, 5, 65, 80, 73,
84, 65, 215, 4, 79, 68, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 68,
142, 2, 68, 38, 71, 34, 74, 2, 77, 22, 75, 46, 78, 42, 83, 130, 176, 30,
81, 142, 228, 4, 76, 142, 45, 67, 158, 204, 4, 90, 240, 9, 2, 65, 76,
170, 2, 66, 2, 89, 154, 1, 87, 198, 89, 84, 150, 14, 80, 158, 20, 70, 2,
72, 2, 82, 2, 86, 186, 2, 69, 2, 73, 2, 79, 3, 85, 4, 150, 240, 5, 65,
239, 167, 35, 72, 4, 194, 131, 41, 66, 215, 22, 65, 2, 167, 151, 40, 73,
6, 190, 152, 40, 65, 178, 98, 80, 191, 28, 72, 6, 214, 201, 40, 85, 170,
77, 72, 3, 89, 4, 164, 200, 2, 6, 73, 78, 78, 89, 73, 73, 179, 206, 38,
72, 4, 40, 4, 69, 32, 67, 79, 155, 175, 40, 73, 2, 145, 141, 40, 13, 78,
83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73, 70, 4, 134, 252, 33, 69, 247,
198, 4, 81, 4, 186, 150, 26, 65, 143, 228, 10, 85, 4, 230, 220, 27, 69,
245, 177, 12, 12, 73, 83, 83, 73, 79, 78, 32, 84, 73, 67, 75, 69, 116,
80, 5, 71, 69, 65, 78, 32, 161, 183, 34, 9, 82, 73, 65, 76, 32, 84, 82,
65, 77, 114, 136, 1, 3, 68, 82, 89, 0, 6, 76, 73, 81, 85, 73, 68, 60, 8,
77, 69, 65, 83, 85, 82, 69, 32, 26, 87, 146, 190, 27, 78, 183, 144, 12,
67, 2, 153, 2, 11, 32, 77, 69, 65, 83, 85, 82, 69, 32, 70, 73, 4, 246, 1,
83, 31, 84, 14, 100, 6, 69, 73, 71, 72, 84, 32, 241, 1, 14, 79, 82, 68,
32, 83, 69, 80, 65, 82, 65, 84, 79, 82, 32, 10, 54, 70, 66, 83, 30, 84,
65, 5, 66, 65, 83, 69, 32, 4, 38, 73, 89, 5, 79, 85, 82, 84, 72, 2, 85,
3, 82, 83, 84, 2, 49, 4, 69, 67, 79, 78, 2, 21, 3, 72, 73, 82, 2, 11, 68,
2, 25, 4, 32, 83, 85, 66, 2, 153, 245, 40, 2, 85, 78, 4, 250, 245, 39,
76, 135, 75, 68, 130, 1, 140, 2, 22, 67, 79, 78, 83, 79, 78, 65, 78, 84,
32, 83, 73, 71, 78, 32, 77, 69, 68, 73, 65, 76, 32, 88, 7, 76, 69, 84,
84, 69, 82, 32, 242, 1, 83, 168, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73,
71, 78, 32, 196, 131, 33, 8, 78, 85, 77, 66, 69, 82, 32, 84, 203, 147, 6,
68, 6, 26, 76, 179, 140, 41, 82, 4, 140, 196, 40, 7, 73, 71, 65, 84, 73,
78, 71, 219, 74, 65, 68, 154, 1, 65, 194, 175, 37, 68, 114, 84, 198, 208,
1, 76, 226, 195, 1, 78, 126, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138,
69, 72, 2, 77, 2, 82, 3, 83, 9, 45, 9, 76, 84, 69, 82, 78, 65, 84, 69,
32, 6, 166, 138, 41, 66, 2, 71, 3, 84, 10, 60, 4, 73, 71, 78, 32, 241,
190, 23, 5, 89, 77, 66, 79, 76, 8, 50, 83, 182, 129, 26, 75, 197, 150,
10, 2, 82, 85, 4, 160, 137, 38, 4, 77, 65, 76, 76, 203, 177, 2, 69, 22,
66, 65, 214, 179, 37, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 11,
206, 138, 41, 65, 2, 73, 2, 77, 3, 87, 7, 11, 32, 4, 180, 235, 35, 3, 68,
69, 80, 221, 205, 4, 5, 65, 82, 82, 73, 86, 152, 2, 212, 1, 4, 65, 82,
77, 32, 48, 20, 67, 72, 69, 77, 73, 67, 65, 76, 32, 83, 89, 77, 66, 79,
76, 32, 70, 79, 82, 32, 166, 28, 69, 60, 4, 73, 69, 78, 32, 208, 3, 2,
76, 32, 82, 77, 109, 6, 84, 69, 82, 78, 65, 84, 4, 136, 140, 14, 3, 66,
69, 76, 227, 137, 24, 67, 232, 1, 158, 2, 65, 246, 2, 66, 210, 1, 67,
138, 3, 68, 98, 71, 38, 72, 132, 1, 4, 73, 82, 79, 78, 82, 76, 74, 77,
144, 1, 2, 78, 73, 34, 80, 176, 2, 3, 81, 85, 73, 74, 82, 146, 2, 83,
210, 5, 84, 166, 1, 86, 200, 1, 2, 87, 65, 198, 162, 35, 85, 154, 220, 1,
69, 194, 212, 1, 70, 219, 56, 79, 30, 194, 1, 76, 72, 3, 81, 85, 65, 204,
8, 7, 78, 84, 73, 77, 79, 78, 89, 224, 157, 3, 3, 77, 65, 76, 240, 200,
21, 3, 82, 83, 69, 204, 245, 13, 5, 85, 82, 73, 80, 73, 162, 136, 1, 83,
183, 93, 73, 8, 224, 24, 2, 69, 77, 188, 213, 26, 4, 75, 65, 76, 73, 235,
132, 14, 85, 10, 38, 32, 233, 136, 25, 3, 70, 79, 82, 8, 216, 7, 4, 86,
73, 84, 65, 189, 191, 23, 4, 82, 69, 71, 73, 16, 148, 1, 7, 65, 84, 72,
32, 79, 70, 32, 204, 6, 6, 73, 83, 77, 85, 84, 72, 144, 1, 4, 79, 82, 65,
88, 164, 1, 4, 76, 65, 67, 75, 139, 198, 39, 82, 4, 218, 140, 17, 77,
205, 227, 22, 5, 86, 65, 80, 79, 85, 28, 82, 65, 92, 6, 79, 80, 80, 69,
82, 32, 34, 82, 201, 219, 39, 4, 73, 78, 78, 65, 6, 216, 143, 6, 2, 68,
85, 140, 197, 33, 9, 80, 85, 84, 32, 77, 79, 82, 84, 85, 231, 28, 76, 4,
230, 13, 65, 143, 207, 39, 79, 16, 72, 8, 79, 67, 85, 83, 32, 79, 70, 32,
53, 6, 85, 67, 73, 66, 76, 69, 6, 228, 16, 5, 67, 79, 80, 80, 69, 171,
198, 39, 73, 11, 11, 45, 8, 130, 254, 40, 50, 2, 51, 2, 52, 3, 53, 8, 44,
2, 73, 83, 197, 255, 37, 3, 65, 89, 45, 6, 144, 2, 4, 83, 79, 76, 86,
195, 255, 37, 84, 4, 170, 205, 30, 79, 247, 158, 10, 85, 8, 32, 4, 65,
76, 70, 32, 47, 79, 4, 144, 236, 35, 2, 79, 85, 131, 211, 3, 68, 4, 200,
137, 3, 4, 82, 83, 69, 32, 223, 185, 37, 85, 6, 56, 3, 32, 79, 82, 73, 7,
45, 67, 79, 80, 80, 69, 82, 4, 211, 229, 26, 69, 4, 48, 3, 69, 65, 68,
209, 233, 13, 3, 79, 68, 69, 2, 187, 141, 36, 32, 10, 120, 16, 69, 82,
67, 85, 82, 89, 32, 83, 85, 66, 76, 73, 77, 65, 84, 69, 252, 217, 16, 4,
65, 82, 67, 65, 191, 154, 22, 79, 7, 199, 248, 40, 45, 4, 234, 214, 39,
84, 135, 120, 71, 14, 108, 11, 72, 73, 76, 79, 83, 79, 80, 72, 69, 82,
83, 34, 79, 98, 85, 153, 177, 30, 6, 82, 69, 67, 73, 80, 73, 2, 209, 9,
4, 32, 83, 85, 76, 6, 52, 4, 87, 68, 69, 82, 133, 189, 36, 3, 84, 32, 65,
5, 173, 197, 39, 5, 69, 68, 32, 66, 82, 4, 252, 182, 34, 4, 84, 82, 69,
70, 209, 174, 6, 3, 82, 73, 70, 4, 164, 229, 35, 5, 78, 84, 69, 83, 83,
181, 247, 3, 4, 67, 75, 32, 76, 24, 58, 69, 149, 224, 26, 8, 79, 67, 75,
32, 83, 65, 76, 84, 20, 68, 5, 71, 85, 76, 85, 83, 164, 7, 3, 65, 76, 71,
163, 171, 26, 84, 15, 32, 4, 32, 79, 70, 32, 71, 45, 6, 164, 223, 26, 8,
65, 78, 84, 73, 77, 79, 78, 89, 143, 238, 12, 73, 6, 162, 244, 40, 50, 2,
51, 3, 52, 34, 164, 1, 2, 65, 76, 194, 1, 84, 142, 1, 85, 180, 226, 17,
2, 80, 73, 156, 186, 12, 2, 73, 76, 182, 192, 9, 79, 169, 22, 11, 67, 69,
80, 84, 69, 82, 32, 79, 70, 32, 74, 8, 58, 84, 141, 200, 39, 8, 45, 65,
77, 77, 79, 78, 73, 65, 7, 25, 4, 32, 79, 70, 32, 4, 52, 8, 67, 79, 80,
80, 69, 82, 32, 65, 231, 5, 65, 2, 209, 171, 30, 7, 78, 84, 73, 77, 79,
78, 73, 6, 236, 3, 8, 65, 82, 82, 69, 68, 32, 84, 82, 233, 215, 26, 19,
82, 65, 84, 85, 77, 32, 83, 85, 80, 69, 82, 32, 83, 84, 82, 65, 84, 85,
77, 12, 44, 6, 66, 76, 73, 77, 65, 84, 155, 1, 76, 10, 44, 5, 69, 32, 79,
70, 32, 195, 159, 40, 73, 8, 68, 8, 83, 65, 76, 84, 32, 79, 70, 32, 130,
3, 65, 231, 214, 27, 67, 4, 254, 2, 65, 231, 214, 27, 67, 2, 239, 245,
39, 70, 12, 68, 3, 65, 82, 84, 32, 2, 73, 78, 34, 82, 201, 253, 38, 2,
85, 84, 4, 11, 65, 4, 155, 216, 26, 82, 4, 254, 206, 35, 67, 187, 49, 32,
2, 253, 169, 40, 2, 73, 68, 14, 50, 73, 209, 197, 38, 6, 69, 82, 68, 73,
71, 82, 12, 64, 5, 78, 69, 71, 65, 82, 213, 214, 26, 5, 84, 82, 73, 79,
76, 9, 44, 5, 32, 79, 70, 32, 65, 243, 234, 40, 45, 2, 141, 186, 24, 3,
78, 84, 73, 4, 214, 173, 40, 84, 239, 61, 88, 6, 38, 77, 186, 213, 39,
70, 155, 121, 82, 2, 223, 192, 39, 66, 22, 104, 7, 77, 79, 78, 83, 84,
69, 82, 138, 1, 83, 205, 129, 36, 10, 67, 82, 65, 66, 32, 83, 84, 69, 80,
80, 11, 11, 32, 8, 88, 6, 67, 76, 79, 83, 69, 68, 0, 4, 79, 80, 69, 78,
173, 227, 36, 4, 83, 84, 69, 80, 2, 145, 138, 38, 3, 32, 74, 65, 8, 60,
6, 80, 73, 68, 69, 82, 32, 57, 5, 81, 85, 73, 68, 32, 4, 196, 195, 29, 5,
67, 82, 79, 85, 67, 175, 250, 1, 83, 4, 56, 6, 67, 76, 79, 83, 69, 68, 1,
4, 79, 80, 69, 78, 2, 197, 249, 27, 5, 32, 84, 69, 78, 84, 4, 210, 133,
34, 69, 253, 184, 4, 11, 65, 82, 79, 85, 78, 68, 45, 80, 82, 79, 70, 9,
49, 10, 79, 83, 84, 32, 69, 81, 85, 65, 76, 32, 6, 32, 2, 84, 79, 247,
198, 32, 79, 5, 219, 255, 6, 32, 4, 136, 247, 10, 3, 73, 86, 69, 221,
195, 28, 5, 69, 32, 79, 78, 69, 12, 162, 1, 80, 128, 208, 29, 6, 69, 82,
73, 67, 65, 78, 204, 131, 6, 3, 66, 85, 76, 245, 254, 3, 16, 65, 76, 71,
65, 77, 65, 84, 73, 79, 78, 32, 79, 82, 32, 67, 79, 6, 26, 72, 251, 144,
37, 69, 4, 204, 254, 24, 3, 73, 84, 82, 203, 160, 15, 79, 194, 9, 92, 3,
65, 84, 79, 182, 20, 71, 174, 1, 84, 190, 161, 25, 67, 190, 155, 12, 68,
223, 142, 3, 75, 144, 9, 112, 17, 76, 73, 65, 78, 32, 72, 73, 69, 82, 79,
71, 76, 89, 80, 72, 32, 65, 145, 218, 39, 5, 77, 73, 67, 65, 76, 142, 9,
70, 48, 138, 4, 49, 198, 2, 50, 162, 3, 51, 174, 5, 52, 163, 3, 53, 222,
1, 106, 50, 102, 52, 110, 54, 102, 57, 182, 7, 51, 254, 246, 11, 49, 142,
159, 23, 48, 130, 2, 53, 2, 55, 3, 56, 22, 158, 206, 36, 54, 242, 145, 4,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 28, 202, 191,
12, 54, 242, 141, 24, 49, 2, 53, 242, 145, 4, 48, 2, 50, 2, 51, 2, 52, 2,
55, 2, 56, 3, 57, 26, 162, 166, 12, 54, 158, 184, 28, 48, 2, 49, 2, 50,
2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 24, 234, 203, 36, 55, 2, 56,
242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 57, 232, 1,
98, 48, 114, 49, 206, 170, 12, 50, 2, 51, 182, 242, 22, 52, 2, 53, 2, 54,
2, 55, 2, 56, 3, 57, 42, 242, 163, 12, 52, 2, 55, 190, 24, 53, 242, 141,
24, 48, 2, 49, 2, 50, 242, 145, 4, 51, 2, 54, 2, 56, 3, 57, 26, 190, 187,
12, 48, 242, 141, 24, 53, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2,
55, 2, 56, 3, 57, 222, 1, 102, 48, 110, 49, 102, 57, 210, 1, 56, 250,
152, 12, 50, 2, 54, 146, 255, 22, 51, 2, 52, 2, 53, 3, 55, 28, 230, 185,
12, 50, 242, 141, 24, 55, 2, 57, 242, 145, 4, 48, 2, 49, 2, 51, 2, 52, 2,
53, 2, 54, 3, 56, 24, 234, 198, 36, 53, 2, 54, 242, 145, 4, 48, 2, 49, 2,
50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 24, 134, 198, 36, 52, 2, 57, 242,
145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 53, 2, 54, 2, 55, 3, 56, 228, 1, 102,
48, 2, 50, 2, 53, 102, 51, 110, 54, 102, 56, 162, 1, 57, 174, 129, 12,
55, 138, 147, 23, 49, 3, 52, 22, 182, 196, 36, 57, 242, 145, 4, 48, 2,
49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 30, 166, 157, 12,
54, 226, 204, 8, 50, 190, 235, 19, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 55,
2, 56, 3, 57, 24, 230, 194, 36, 52, 2, 56, 242, 145, 4, 48, 2, 49, 2, 50,
2, 51, 2, 53, 2, 54, 2, 55, 3, 57, 26, 98, 51, 162, 193, 36, 49, 2, 54,
242, 145, 4, 48, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 4, 196, 154,
21, 6, 32, 82, 65, 32, 79, 82, 203, 184, 19, 65, 20, 128, 168, 40, 3, 51,
32, 69, 210, 42, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3,
57, 202, 1, 102, 49, 210, 1, 53, 178, 241, 20, 57, 222, 159, 14, 48, 2,
50, 2, 51, 2, 52, 2, 54, 2, 55, 3, 56, 22, 90, 48, 162, 208, 40, 49, 2,
50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 4, 60, 6, 32, 66,
69, 71, 73, 78, 1, 5, 65, 32, 69, 78, 68, 2, 241, 201, 16, 8, 32, 76, 79,
71, 79, 71, 82, 65, 24, 186, 189, 36, 48, 2, 55, 242, 145, 4, 49, 2, 50,
2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 60, 226, 167, 33, 51, 198, 230,
1, 48, 130, 2, 49, 3, 50, 14, 96, 2, 76, 69, 182, 176, 2, 85, 128, 200,
32, 2, 83, 84, 130, 239, 3, 69, 217, 168, 1, 2, 82, 89, 7, 33, 6, 32, 87,
73, 84, 72, 32, 4, 254, 154, 32, 83, 135, 195, 4, 85, 31, 76, 4, 69, 78,
78, 65, 41, 11, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 32, 5, 253, 159,
37, 5, 32, 87, 73, 84, 72, 24, 90, 84, 162, 143, 7, 67, 58, 68, 122, 71,
138, 4, 79, 233, 163, 28, 5, 73, 78, 84, 69, 71, 12, 84, 15, 82, 73, 65,
78, 71, 76, 69, 45, 72, 69, 65, 68, 69, 68, 32, 223, 147, 7, 79, 10, 112,
3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 12, 6, 66, 79, 84, 84, 79, 77, 0, 3,
84, 79, 80, 131, 147, 7, 79, 2, 11, 84, 2, 209, 235, 37, 7, 32, 85, 45,
83, 72, 65, 80, 160, 1, 128, 1, 20, 76, 32, 70, 85, 78, 67, 84, 73, 79,
78, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 206, 15, 79, 38, 80, 147,
184, 40, 67, 140, 1, 222, 2, 67, 186, 1, 68, 190, 2, 73, 44, 4, 65, 76,
80, 72, 0, 4, 79, 77, 69, 71, 32, 4, 74, 79, 84, 32, 36, 4, 76, 69, 70,
84, 68, 2, 81, 85, 218, 3, 82, 54, 83, 92, 4, 69, 80, 83, 73, 32, 6, 66,
65, 67, 75, 83, 76, 76, 2, 85, 80, 172, 170, 16, 12, 71, 82, 69, 65, 84,
69, 82, 45, 84, 72, 65, 78, 0, 5, 84, 73, 76, 68, 69, 163, 168, 20, 90,
14, 64, 6, 73, 82, 67, 76, 69, 32, 133, 161, 39, 4, 79, 77, 77, 65, 12,
80, 2, 83, 84, 166, 242, 19, 68, 226, 137, 6, 66, 254, 216, 10, 85, 207,
158, 3, 74, 4, 198, 157, 39, 73, 227, 109, 65, 22, 76, 2, 69, 76, 120, 3,
79, 87, 78, 201, 162, 32, 6, 73, 65, 77, 79, 78, 68, 10, 30, 32, 53, 3,
84, 65, 32, 6, 146, 241, 19, 68, 142, 234, 16, 84, 131, 191, 1, 83, 4,
186, 211, 36, 85, 179, 198, 1, 83, 10, 22, 32, 167, 9, 87, 8, 52, 5, 84,
65, 67, 75, 32, 182, 1, 83, 227, 6, 67, 4, 198, 210, 36, 85, 207, 158, 3,
74, 6, 40, 2, 79, 84, 185, 176, 32, 2, 45, 66, 4, 11, 65, 5, 167, 161,
32, 32, 4, 250, 238, 19, 68, 223, 226, 16, 85, 4, 28, 2, 32, 83, 187, 7,
87, 2, 181, 151, 38, 4, 72, 79, 69, 32, 46, 44, 2, 65, 68, 133, 3, 4, 79,
84, 69, 32, 43, 11, 32, 40, 178, 1, 67, 38, 68, 92, 2, 85, 80, 36, 2, 76,
69, 210, 208, 6, 81, 228, 229, 13, 3, 78, 79, 84, 22, 69, 154, 190, 5,
66, 174, 163, 7, 83, 226, 142, 5, 71, 250, 115, 82, 199, 81, 74, 4, 246,
233, 38, 73, 151, 132, 1, 79, 12, 54, 73, 36, 3, 79, 87, 78, 225, 128,
37, 2, 69, 76, 4, 202, 139, 32, 86, 255, 242, 6, 65, 4, 230, 138, 4, 32,
211, 144, 35, 87, 4, 166, 167, 38, 83, 215, 115, 70, 4, 154, 181, 12, 81,
163, 152, 24, 85, 4, 184, 3, 5, 73, 71, 72, 84, 87, 239, 153, 40, 72, 10,
88, 5, 69, 77, 73, 67, 79, 34, 76, 34, 84, 169, 179, 12, 7, 81, 85, 73,
83, 72, 32, 81, 2, 181, 155, 32, 3, 76, 79, 78, 2, 149, 151, 39, 3, 65,
83, 72, 4, 212, 170, 16, 2, 65, 82, 175, 173, 7, 73, 12, 22, 32, 171, 1,
87, 10, 78, 67, 36, 5, 84, 65, 67, 75, 32, 221, 232, 39, 6, 83, 72, 79,
69, 32, 74, 2, 129, 215, 23, 4, 65, 82, 69, 84, 6, 178, 231, 19, 68, 234,
159, 17, 79, 195, 225, 2, 74, 2, 221, 151, 37, 6, 65, 82, 68, 83, 32, 86,
4, 182, 145, 34, 83, 135, 215, 5, 76, 14, 26, 76, 93, 2, 82, 79, 4, 164,
201, 26, 14, 73, 67, 65, 84, 73, 79, 78, 32, 80, 82, 79, 71, 82, 65, 139,
217, 12, 69, 10, 112, 9, 88, 73, 77, 65, 84, 69, 76, 89, 32, 237, 153,
40, 13, 65, 67, 72, 69, 83, 32, 84, 72, 69, 32, 76, 73, 77, 8, 76, 6, 69,
81, 85, 65, 76, 32, 137, 156, 25, 7, 66, 85, 84, 32, 78, 79, 84, 6, 32,
2, 84, 79, 183, 150, 32, 79, 5, 237, 201, 26, 13, 32, 79, 82, 32, 84, 72,
69, 32, 73, 77, 65, 71, 69, 192, 23, 148, 1, 4, 65, 66, 73, 67, 240, 131,
2, 7, 77, 69, 78, 73, 65, 78, 32, 224, 12, 3, 82, 79, 87, 228, 3, 2, 84,
73, 150, 137, 37, 73, 135, 150, 1, 67, 238, 21, 54, 32, 173, 130, 2, 7,
45, 73, 78, 68, 73, 67, 32, 210, 21, 150, 3, 66, 134, 1, 67, 238, 1, 68,
138, 3, 69, 186, 1, 70, 212, 1, 2, 72, 65, 104, 5, 75, 65, 83, 82, 65,
86, 76, 212, 180, 1, 2, 77, 65, 204, 18, 7, 78, 85, 77, 66, 69, 82, 32,
36, 5, 79, 80, 69, 78, 32, 82, 80, 238, 1, 82, 208, 2, 6, 73, 78, 86, 69,
82, 84, 98, 83, 146, 33, 84, 202, 4, 86, 228, 206, 17, 9, 87, 65, 86, 89,
32, 72, 65, 77, 90, 230, 142, 18, 81, 197, 198, 1, 6, 90, 87, 65, 82, 65,
75, 4, 216, 214, 1, 7, 65, 83, 69, 76, 73, 78, 69, 233, 205, 37, 17, 73,
66, 76, 73, 67, 65, 76, 32, 69, 78, 68, 32, 79, 70, 32, 86, 69, 16, 44,
2, 79, 77, 81, 5, 85, 82, 76, 89, 32, 4, 192, 193, 19, 11, 66, 73, 78,
73, 78, 71, 32, 65, 76, 69, 70, 199, 234, 20, 77, 12, 72, 4, 68, 65, 77,
77, 0, 4, 70, 65, 84, 72, 1, 4, 75, 65, 83, 82, 4, 11, 65, 5, 251, 224,
38, 84, 26, 158, 1, 65, 108, 5, 79, 85, 66, 76, 69, 216, 246, 23, 5, 69,
67, 73, 77, 65, 149, 198, 9, 16, 73, 83, 80, 85, 84, 69, 68, 32, 69, 78,
68, 32, 79, 70, 32, 65, 14, 36, 3, 77, 77, 65, 231, 223, 33, 84, 13, 22,
32, 219, 5, 84, 6, 242, 238, 1, 73, 54, 77, 251, 149, 37, 87, 8, 22, 32,
191, 4, 68, 6, 184, 210, 1, 17, 82, 73, 71, 72, 84, 32, 65, 82, 82, 79,
87, 72, 69, 65, 68, 32, 65, 191, 30, 86, 8, 88, 12, 77, 80, 84, 89, 32,
67, 69, 78, 84, 82, 69, 32, 57, 6, 78, 68, 32, 79, 70, 32, 4, 140, 212,
37, 4, 72, 73, 71, 72, 1, 3, 76, 79, 87, 4, 210, 139, 30, 84, 139, 175,
3, 65, 22, 84, 4, 65, 84, 72, 65, 166, 222, 1, 79, 148, 232, 4, 3, 73,
86, 69, 143, 140, 31, 85, 17, 22, 32, 139, 2, 84, 10, 52, 5, 87, 73, 84,
72, 32, 238, 234, 1, 73, 55, 77, 6, 170, 212, 38, 84, 166, 82, 68, 203,
47, 82, 6, 72, 13, 76, 70, 32, 77, 65, 68, 68, 65, 32, 79, 86, 69, 82,
235, 16, 77, 2, 221, 238, 17, 2, 32, 77, 13, 18, 32, 43, 84, 6, 166, 72,
87, 158, 161, 1, 73, 55, 77, 4, 253, 82, 2, 65, 78, 174, 16, 84, 5, 65,
82, 71, 69, 32, 146, 1, 69, 133, 91, 8, 73, 71, 65, 84, 85, 82, 69, 32,
8, 64, 10, 82, 79, 85, 78, 68, 32, 68, 79, 84, 32, 179, 143, 11, 67, 6,
148, 143, 11, 6, 73, 78, 83, 73, 68, 69, 146, 243, 26, 66, 131, 165, 1,
65, 136, 8, 80, 5, 84, 84, 69, 82, 32, 137, 174, 7, 9, 70, 84, 32, 65,
82, 82, 79, 87, 72, 132, 8, 210, 2, 65, 240, 10, 2, 66, 69, 150, 4, 68,
186, 5, 70, 246, 4, 71, 226, 2, 72, 156, 9, 2, 74, 69, 158, 1, 75, 138,
5, 76, 226, 2, 77, 154, 1, 78, 160, 3, 3, 80, 69, 72, 176, 1, 3, 81, 65,
70, 214, 1, 82, 234, 3, 83, 162, 9, 84, 214, 8, 85, 148, 2, 2, 86, 69,
28, 3, 87, 65, 87, 202, 1, 89, 246, 3, 79, 140, 3, 2, 90, 65, 31, 69,
112, 92, 7, 70, 82, 73, 67, 65, 78, 32, 92, 2, 73, 78, 144, 2, 3, 76, 69,
70, 207, 156, 40, 69, 8, 52, 3, 81, 65, 70, 166, 169, 33, 70, 183, 203,
3, 78, 5, 153, 64, 5, 32, 87, 73, 84, 72, 21, 11, 32, 18, 72, 6, 87, 73,
84, 72, 32, 84, 242, 172, 1, 70, 202, 43, 73, 211, 9, 77, 10, 60, 10, 72,
82, 69, 69, 32, 68, 79, 84, 83, 32, 187, 54, 87, 6, 220, 154, 15, 17, 80,
79, 73, 78, 84, 73, 78, 71, 32, 68, 79, 87, 78, 87, 65, 82, 68, 250, 224,
22, 66, 131, 165, 1, 65, 83, 11, 32, 80, 70, 87, 228, 44, 6, 77, 65, 75,
83, 85, 82, 130, 126, 70, 231, 52, 73, 70, 48, 4, 73, 84, 72, 32, 177,
44, 3, 65, 83, 76, 64, 192, 2, 9, 65, 84, 84, 65, 67, 72, 69, 68, 32,
220, 1, 19, 82, 73, 71, 72, 84, 32, 77, 73, 68, 68, 76, 69, 32, 83, 84,
82, 79, 75, 69, 188, 1, 6, 72, 65, 77, 90, 65, 32, 44, 8, 87, 65, 86, 89,
32, 72, 65, 77, 214, 70, 69, 204, 1, 4, 77, 65, 68, 68, 180, 220, 36, 9,
76, 69, 70, 84, 32, 77, 73, 68, 68, 159, 240, 1, 68, 28, 204, 1, 17, 66,
79, 84, 84, 79, 77, 32, 82, 73, 71, 72, 84, 32, 75, 65, 83, 82, 0, 14,
84, 79, 80, 32, 82, 73, 71, 72, 84, 32, 70, 65, 84, 72, 94, 82, 56, 3,
76, 69, 70, 130, 214, 1, 75, 143, 182, 32, 70, 6, 11, 65, 7, 29, 5, 32,
65, 78, 68, 32, 4, 196, 205, 19, 3, 76, 69, 70, 243, 200, 19, 68, 8, 52,
3, 73, 71, 72, 213, 227, 1, 4, 79, 85, 78, 68, 4, 17, 2, 84, 32, 4, 130,
189, 1, 82, 219, 37, 72, 12, 234, 72, 65, 37, 5, 66, 69, 76, 79, 87, 4,
171, 224, 37, 90, 50, 22, 72, 179, 64, 69, 41, 22, 32, 155, 64, 69, 28,
68, 5, 87, 73, 84, 72, 32, 158, 163, 1, 70, 202, 43, 73, 211, 9, 77, 20,
116, 6, 83, 77, 65, 76, 76, 32, 34, 84, 254, 18, 73, 160, 33, 10, 68, 79,
84, 32, 66, 69, 76, 79, 87, 32, 135, 21, 72, 6, 150, 39, 77, 231, 224,
23, 86, 8, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 233, 48, 7,
87, 79, 32, 68, 79, 84, 83, 6, 144, 1, 22, 80, 79, 73, 78, 84, 73, 78,
71, 32, 85, 80, 87, 65, 82, 68, 83, 32, 66, 69, 76, 79, 87, 201, 54, 8,
72, 79, 82, 73, 90, 79, 78, 84, 5, 231, 141, 15, 32, 78, 90, 65, 136, 4,
2, 68, 65, 40, 7, 79, 84, 76, 69, 83, 83, 32, 250, 27, 89, 147, 26, 85,
44, 34, 76, 254, 3, 72, 147, 46, 68, 27, 11, 32, 24, 56, 5, 87, 73, 84,
72, 32, 186, 158, 1, 70, 231, 52, 73, 20, 108, 9, 73, 78, 86, 69, 82, 84,
69, 68, 32, 34, 84, 168, 1, 3, 68, 79, 84, 146, 145, 12, 70, 131, 171,
27, 82, 4, 238, 14, 83, 239, 255, 39, 86, 8, 132, 1, 10, 72, 82, 69, 69,
32, 68, 79, 84, 83, 32, 33, 18, 87, 79, 32, 68, 79, 84, 83, 32, 86, 69,
82, 84, 73, 67, 65, 76, 76, 89, 4, 226, 54, 65, 231, 180, 37, 66, 4, 33,
6, 32, 66, 69, 76, 79, 87, 5, 141, 187, 15, 11, 32, 65, 78, 68, 32, 83,
77, 65, 76, 76, 32, 12, 22, 72, 195, 63, 76, 6, 151, 54, 65, 6, 170, 150,
33, 66, 2, 70, 175, 244, 5, 81, 44, 60, 8, 65, 82, 83, 73, 32, 89, 69,
72, 169, 2, 2, 69, 72, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72, 32, 182,
153, 1, 70, 202, 43, 73, 211, 9, 77, 12, 144, 1, 28, 69, 88, 84, 69, 78,
68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68,
73, 71, 73, 84, 32, 30, 84, 247, 39, 73, 6, 250, 8, 70, 207, 50, 84, 4,
190, 169, 7, 72, 199, 220, 7, 87, 23, 11, 32, 20, 68, 5, 87, 73, 84, 72,
32, 142, 151, 1, 70, 202, 43, 73, 211, 9, 77, 12, 32, 4, 68, 79, 84, 32,
51, 84, 6, 214, 40, 66, 197, 223, 15, 4, 77, 79, 86, 69, 6, 64, 10, 72,
82, 69, 69, 32, 68, 79, 84, 83, 32, 191, 213, 37, 87, 4, 210, 17, 80,
203, 211, 37, 66, 44, 72, 2, 65, 70, 160, 1, 4, 72, 65, 73, 78, 238, 20,
85, 227, 238, 38, 82, 19, 11, 32, 16, 68, 5, 87, 73, 84, 72, 32, 182,
148, 1, 70, 202, 43, 73, 211, 9, 77, 8, 242, 23, 84, 210, 156, 39, 82,
241, 32, 8, 73, 78, 86, 69, 82, 84, 69, 68, 15, 11, 32, 12, 68, 5, 87,
73, 84, 72, 32, 150, 147, 1, 70, 202, 43, 73, 211, 9, 77, 4, 214, 37, 84,
135, 140, 27, 68, 82, 78, 65, 236, 5, 2, 69, 72, 161, 2, 9, 73, 71, 72,
32, 72, 65, 77, 90, 65, 34, 34, 72, 201, 48, 3, 77, 90, 65, 31, 11, 32,
28, 68, 5, 87, 73, 84, 72, 32, 174, 145, 1, 70, 202, 43, 73, 211, 9, 77,
20, 132, 2, 29, 69, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73,
67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, 32, 70, 30, 73, 92,
24, 83, 77, 65, 76, 76, 32, 65, 82, 65, 66, 73, 67, 32, 76, 69, 84, 84,
69, 82, 32, 84, 65, 72, 32, 62, 84, 143, 53, 72, 2, 129, 199, 1, 2, 79,
85, 2, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32, 83, 2, 209, 206, 37, 6, 77,
65, 76, 76, 32, 86, 6, 26, 65, 187, 221, 37, 66, 4, 134, 31, 78, 191,
227, 38, 66, 8, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 33, 8,
87, 79, 32, 68, 79, 84, 83, 32, 4, 242, 8, 80, 203, 248, 38, 65, 4, 128,
129, 39, 8, 86, 69, 82, 84, 73, 67, 65, 76, 27, 65, 41, 11, 32, 38, 144,
1, 4, 71, 79, 65, 76, 88, 5, 87, 73, 84, 72, 32, 240, 47, 10, 68, 79, 65,
67, 72, 65, 83, 72, 77, 69, 210, 90, 70, 202, 43, 73, 211, 9, 77, 13, 11,
32, 10, 164, 50, 6, 87, 73, 84, 72, 32, 72, 230, 88, 70, 202, 43, 73,
211, 9, 77, 8, 174, 26, 73, 149, 20, 3, 89, 69, 72, 9, 11, 32, 6, 174,
246, 23, 65, 150, 143, 9, 89, 179, 247, 5, 87, 22, 28, 2, 69, 77, 247,
45, 72, 17, 11, 32, 14, 72, 6, 87, 73, 84, 72, 32, 84, 226, 136, 1, 70,
202, 43, 73, 211, 9, 77, 6, 222, 246, 14, 87, 227, 213, 18, 72, 70, 98,
65, 208, 1, 4, 69, 72, 69, 72, 180, 2, 7, 73, 82, 71, 72, 73, 90, 32,
137, 32, 2, 72, 65, 24, 46, 70, 229, 174, 1, 5, 83, 72, 77, 73, 82, 23,
11, 32, 20, 68, 5, 87, 73, 84, 72, 32, 214, 134, 1, 70, 202, 43, 73, 211,
9, 77, 12, 42, 84, 166, 211, 35, 68, 151, 211, 3, 82, 6, 254, 27, 87,
203, 169, 37, 72, 25, 11, 32, 22, 68, 5, 87, 73, 84, 72, 32, 182, 133, 1,
70, 202, 43, 73, 211, 9, 77, 14, 38, 84, 206, 42, 83, 139, 203, 38, 68,
10, 60, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32, 167, 26, 87, 6, 42,
80, 202, 211, 37, 66, 131, 165, 1, 65, 2, 141, 196, 37, 14, 79, 73, 78,
84, 73, 78, 71, 32, 85, 80, 87, 65, 82, 68, 12, 130, 40, 79, 13, 2, 89,
85, 26, 40, 2, 65, 77, 161, 183, 1, 2, 79, 87, 25, 11, 32, 22, 68, 5, 87,
73, 84, 72, 32, 182, 130, 1, 70, 202, 43, 73, 211, 9, 77, 14, 88, 2, 68,
79, 36, 6, 83, 77, 65, 76, 76, 32, 148, 197, 33, 2, 84, 72, 251, 137, 5,
66, 4, 146, 135, 18, 85, 215, 238, 20, 84, 4, 224, 27, 16, 65, 82, 65,
66, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 84, 65, 231, 214, 39, 86, 18,
36, 3, 69, 69, 77, 163, 176, 39, 65, 17, 11, 32, 14, 64, 5, 87, 73, 84,
72, 32, 222, 127, 70, 202, 43, 73, 211, 9, 77, 6, 158, 18, 84, 187, 186,
35, 68, 62, 38, 71, 26, 89, 17, 3, 79, 79, 78, 21, 22, 79, 183, 122, 32,
10, 175, 27, 69, 33, 11, 32, 30, 92, 5, 71, 72, 85, 78, 78, 16, 5, 87,
73, 84, 72, 32, 242, 125, 70, 202, 43, 73, 211, 9, 77, 6, 187, 34, 65,
16, 136, 1, 6, 83, 77, 65, 76, 76, 32, 38, 84, 220, 24, 8, 73, 78, 86,
69, 82, 84, 69, 68, 132, 151, 24, 4, 82, 73, 78, 71, 171, 235, 2, 68, 4,
246, 255, 32, 84, 131, 238, 6, 86, 4, 250, 141, 7, 72, 143, 174, 30, 87,
25, 22, 32, 187, 24, 69, 12, 88, 11, 87, 73, 84, 72, 32, 83, 77, 65, 76,
76, 32, 170, 123, 70, 202, 43, 73, 211, 9, 77, 4, 26, 77, 163, 236, 39,
86, 2, 153, 239, 38, 3, 69, 69, 77, 19, 11, 32, 16, 64, 5, 87, 73, 84,
72, 32, 158, 122, 70, 202, 43, 73, 211, 9, 77, 8, 36, 4, 68, 79, 84, 32,
187, 12, 84, 6, 44, 5, 66, 69, 76, 79, 87, 239, 237, 38, 65, 5, 193, 231,
14, 6, 32, 65, 78, 68, 32, 78, 52, 112, 2, 69, 72, 224, 28, 3, 82, 69,
72, 156, 3, 4, 78, 79, 79, 78, 149, 130, 1, 7, 79, 72, 73, 78, 71, 89,
65, 35, 11, 32, 32, 52, 5, 87, 73, 84, 72, 32, 226, 119, 70, 231, 52, 73,
28, 134, 1, 83, 96, 2, 84, 87, 234, 5, 73, 174, 23, 72, 246, 205, 11, 70,
204, 141, 7, 5, 68, 79, 84, 32, 66, 234, 39, 76, 207, 245, 19, 82, 10,
44, 5, 77, 65, 76, 76, 32, 207, 183, 39, 84, 8, 198, 6, 65, 166, 250, 6,
78, 151, 219, 16, 86, 4, 37, 7, 79, 32, 68, 79, 84, 83, 32, 4, 166, 8,
86, 211, 225, 38, 65, 60, 184, 1, 2, 65, 68, 120, 3, 69, 69, 78, 136, 6,
4, 72, 69, 69, 78, 232, 160, 1, 4, 85, 80, 69, 82, 160, 181, 4, 7, 84,
82, 65, 73, 71, 72, 84, 209, 134, 33, 6, 87, 65, 83, 72, 32, 75, 17, 11,
32, 14, 68, 6, 87, 73, 84, 72, 32, 84, 162, 115, 70, 202, 43, 73, 211, 9,
77, 6, 254, 182, 33, 72, 235, 251, 3, 87, 27, 11, 32, 24, 64, 5, 87, 73,
84, 72, 32, 174, 114, 70, 202, 43, 73, 211, 9, 77, 16, 232, 1, 3, 68, 79,
84, 50, 73, 48, 7, 83, 77, 65, 76, 76, 32, 65, 110, 84, 134, 228, 11, 70,
241, 159, 5, 31, 69, 88, 84, 69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73,
67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84, 32, 70, 79, 85, 2,
193, 243, 18, 7, 32, 66, 69, 76, 79, 87, 32, 2, 213, 219, 17, 7, 78, 86,
69, 82, 84, 69, 68, 2, 85, 19, 82, 65, 66, 73, 67, 32, 76, 69, 84, 84,
69, 82, 32, 84, 65, 72, 32, 65, 78, 2, 147, 159, 23, 68, 6, 96, 11, 72,
82, 69, 69, 32, 68, 79, 84, 83, 32, 66, 105, 9, 87, 79, 32, 68, 79, 84,
83, 32, 86, 4, 25, 4, 69, 76, 79, 87, 5, 11, 32, 2, 21, 3, 65, 78, 68, 2,
17, 2, 32, 84, 2, 247, 254, 6, 72, 2, 221, 224, 11, 8, 69, 82, 84, 73,
67, 65, 76, 76, 13, 11, 32, 10, 46, 87, 186, 108, 70, 202, 43, 73, 211,
9, 77, 2, 253, 138, 27, 5, 73, 84, 72, 32, 68, 122, 92, 2, 65, 72, 136,
2, 4, 67, 72, 69, 72, 124, 2, 69, 72, 150, 3, 72, 97, 3, 84, 69, 72, 21,
11, 32, 18, 64, 5, 87, 73, 84, 72, 32, 226, 106, 70, 202, 43, 73, 211, 9,
77, 10, 26, 84, 143, 137, 27, 68, 8, 26, 87, 139, 174, 33, 72, 4, 37, 7,
79, 32, 68, 79, 84, 83, 32, 4, 48, 6, 86, 69, 82, 84, 73, 67, 247, 221,
38, 65, 2, 197, 169, 37, 4, 65, 76, 76, 89, 25, 22, 32, 199, 5, 69, 12,
64, 5, 87, 73, 84, 72, 32, 206, 104, 70, 202, 43, 73, 211, 9, 77, 4, 138,
14, 83, 139, 203, 38, 68, 37, 22, 32, 203, 4, 69, 24, 62, 77, 116, 5, 87,
73, 84, 72, 32, 226, 102, 70, 203, 43, 73, 10, 48, 6, 65, 82, 66, 85, 84,
65, 199, 156, 1, 69, 9, 11, 32, 6, 146, 103, 70, 230, 52, 73, 213, 176,
37, 2, 71, 79, 8, 104, 6, 83, 77, 65, 76, 76, 32, 56, 12, 84, 72, 82, 69,
69, 32, 68, 79, 84, 83, 32, 65, 207, 133, 39, 82, 4, 32, 2, 84, 69, 231,
214, 39, 86, 2, 223, 217, 38, 72, 2, 153, 146, 28, 4, 66, 79, 86, 69, 20,
42, 65, 16, 3, 73, 78, 32, 147, 1, 69, 6, 167, 9, 76, 4, 146, 224, 32,
89, 183, 203, 3, 78, 23, 18, 32, 91, 69, 10, 60, 4, 87, 73, 84, 72, 230,
99, 70, 202, 43, 73, 211, 9, 77, 2, 161, 9, 2, 32, 83, 10, 163, 11, 72,
15, 158, 1, 32, 181, 92, 33, 73, 71, 72, 85, 82, 32, 75, 65, 90, 65, 75,
72, 32, 75, 73, 82, 71, 72, 73, 90, 32, 65, 76, 69, 70, 32, 77, 65, 75,
83, 85, 82, 65, 8, 96, 16, 87, 73, 84, 72, 32, 72, 65, 77, 90, 65, 32,
65, 66, 79, 86, 69, 186, 97, 70, 231, 52, 73, 5, 155, 87, 32, 17, 254, 8,
72, 147, 88, 32, 25, 11, 32, 22, 52, 5, 87, 73, 84, 72, 32, 202, 96, 70,
231, 52, 73, 18, 80, 4, 68, 79, 84, 32, 162, 2, 69, 182, 1, 72, 150, 202,
14, 84, 159, 178, 24, 82, 4, 152, 197, 31, 3, 87, 73, 84, 131, 143, 7,
65, 56, 28, 2, 69, 72, 227, 3, 85, 51, 11, 32, 48, 100, 6, 66, 65, 82,
82, 69, 69, 252, 2, 5, 87, 73, 84, 72, 32, 182, 91, 70, 202, 43, 73, 211,
9, 77, 17, 11, 32, 14, 52, 5, 87, 73, 84, 72, 32, 238, 93, 70, 231, 52,
73, 10, 22, 69, 183, 1, 72, 4, 121, 28, 88, 84, 69, 78, 68, 69, 68, 32,
65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67, 32, 68, 73, 71, 73, 84,
32, 84, 4, 224, 166, 36, 3, 72, 82, 69, 133, 170, 2, 2, 87, 79, 6, 21, 3,
65, 77, 90, 6, 11, 65, 6, 17, 2, 32, 65, 6, 21, 3, 66, 79, 86, 6, 11, 69,
7, 171, 91, 32, 24, 96, 10, 72, 65, 77, 90, 65, 32, 65, 66, 79, 86, 18,
83, 38, 84, 241, 153, 37, 4, 70, 79, 85, 82, 10, 167, 2, 69, 2, 133, 198,
17, 4, 77, 65, 76, 76, 10, 108, 18, 87, 79, 32, 68, 79, 84, 83, 32, 66,
69, 76, 79, 87, 32, 65, 78, 68, 32, 206, 152, 37, 72, 167, 82, 65, 6, 70,
72, 168, 227, 6, 7, 83, 77, 65, 76, 76, 32, 78, 135, 230, 31, 68, 2, 185,
158, 34, 3, 65, 77, 90, 18, 26, 72, 17, 2, 73, 78, 11, 223, 83, 32, 9,
11, 32, 6, 138, 88, 70, 230, 52, 73, 177, 11, 13, 87, 73, 84, 72, 32, 73,
78, 86, 69, 82, 84, 69, 68, 158, 8, 166, 5, 65, 178, 7, 66, 176, 2, 2,
68, 65, 184, 1, 9, 70, 69, 72, 32, 87, 73, 84, 72, 32, 72, 11, 71, 72,
65, 73, 78, 32, 87, 73, 84, 72, 32, 154, 1, 72, 150, 4, 74, 234, 2, 75,
216, 2, 9, 76, 65, 77, 32, 87, 73, 84, 72, 32, 226, 4, 77, 154, 4, 78,
202, 3, 81, 146, 4, 82, 186, 5, 83, 186, 17, 84, 196, 9, 7, 87, 65, 83,
65, 76, 76, 65, 40, 9, 89, 69, 72, 32, 87, 73, 84, 72, 32, 216, 3, 53,
85, 73, 71, 72, 85, 82, 32, 75, 73, 82, 71, 72, 73, 90, 32, 89, 69, 72,
32, 87, 73, 84, 72, 32, 72, 65, 77, 90, 65, 32, 65, 66, 79, 86, 69, 32,
87, 73, 84, 72, 32, 65, 76, 69, 70, 32, 77, 65, 75, 83, 85, 82, 65, 205,
6, 14, 90, 65, 72, 32, 87, 73, 84, 72, 32, 77, 69, 69, 77, 32, 66, 192,
1, 8, 73, 78, 32, 87, 73, 84, 72, 32, 68, 13, 74, 74, 65, 76, 32, 65, 76,
76, 65, 65, 72, 85, 32, 146, 1, 76, 196, 68, 4, 75, 66, 65, 82, 137, 241,
36, 8, 90, 90, 65, 32, 87, 65, 32, 74, 28, 236, 23, 4, 77, 69, 69, 77,
130, 22, 74, 154, 25, 65, 255, 8, 89, 4, 54, 70, 1, 9, 84, 65, 65, 65,
76, 65, 65, 32, 70, 2, 209, 223, 28, 17, 65, 82, 65, 74, 65, 72, 85, 32,
65, 83, 72, 45, 83, 72, 65, 82, 69, 30, 56, 3, 65, 89, 72, 156, 2, 3, 69,
70, 32, 207, 16, 76, 20, 30, 73, 102, 65, 135, 67, 69, 14, 24, 2, 32, 65,
55, 77, 6, 110, 83, 153, 208, 32, 6, 82, 45, 82, 65, 72, 77, 8, 18, 65,
23, 32, 4, 17, 2, 65, 32, 4, 17, 2, 65, 83, 4, 33, 6, 45, 83, 65, 76, 65,
65, 4, 236, 184, 33, 10, 84, 85, 32, 87, 65, 83, 45, 83, 65, 76, 135,
133, 6, 77, 8, 236, 75, 29, 77, 65, 75, 83, 85, 82, 65, 32, 87, 73, 84,
72, 32, 83, 85, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70,
1, 13, 87, 73, 84, 72, 32, 70, 65, 84, 72, 65, 84, 65, 78, 44, 160, 1, 8,
69, 72, 32, 87, 73, 84, 72, 32, 241, 131, 26, 25, 73, 83, 77, 73, 76, 76,
65, 72, 32, 65, 82, 45, 82, 65, 72, 77, 65, 78, 32, 65, 82, 45, 82, 65,
72, 42, 98, 72, 24, 3, 75, 72, 65, 254, 62, 65, 250, 3, 74, 78, 77, 86,
78, 78, 90, 242, 2, 82, 43, 89, 10, 22, 65, 195, 66, 69, 6, 155, 69, 72,
38, 100, 7, 68, 32, 87, 73, 84, 72, 32, 185, 28, 13, 65, 77, 65, 84, 32,
66, 65, 82, 65, 75, 65, 65, 84, 36, 154, 8, 72, 250, 7, 75, 242, 45, 65,
250, 3, 74, 2, 77, 134, 5, 82, 3, 89, 30, 194, 15, 75, 242, 45, 65, 250,
3, 74, 146, 2, 77, 110, 72, 139, 2, 89, 22, 64, 5, 77, 69, 69, 77, 32,
170, 60, 65, 250, 3, 74, 135, 5, 89, 10, 40, 5, 87, 73, 84, 72, 32, 255,
112, 73, 6, 158, 25, 77, 234, 30, 65, 203, 12, 89, 48, 54, 65, 241, 1, 8,
69, 72, 32, 87, 73, 84, 72, 32, 30, 68, 6, 70, 73, 90, 65, 72, 85, 101,
7, 72, 32, 87, 73, 84, 72, 32, 8, 22, 77, 247, 28, 32, 4, 30, 32, 1, 3,
65, 65, 32, 2, 201, 47, 7, 65, 76, 76, 65, 65, 72, 85, 22, 152, 4, 4, 77,
69, 69, 77, 214, 53, 65, 138, 6, 74, 247, 2, 89, 18, 164, 1, 5, 77, 69,
69, 77, 32, 204, 12, 6, 65, 76, 69, 70, 32, 77, 150, 2, 89, 158, 45, 74,
53, 16, 83, 85, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70,
8, 40, 5, 87, 73, 84, 72, 32, 219, 108, 73, 4, 158, 52, 74, 3, 77, 32,
68, 4, 65, 76, 76, 65, 81, 9, 69, 69, 77, 32, 87, 73, 84, 72, 32, 4, 168,
145, 4, 7, 74, 65, 76, 65, 76, 79, 85, 189, 190, 24, 4, 32, 87, 65, 45,
28, 62, 72, 60, 5, 77, 69, 69, 77, 32, 174, 53, 65, 255, 8, 89, 8, 17, 2,
65, 72, 8, 11, 32, 8, 150, 37, 87, 179, 69, 73, 12, 40, 5, 87, 73, 84,
72, 32, 131, 106, 73, 8, 154, 45, 72, 242, 3, 65, 203, 12, 89, 66, 58,
65, 213, 1, 9, 72, 65, 72, 32, 87, 73, 84, 72, 32, 48, 116, 7, 70, 32,
87, 73, 84, 72, 32, 221, 99, 17, 82, 82, 65, 77, 65, 32, 65, 76, 76, 65,
65, 72, 85, 32, 87, 65, 74, 46, 192, 53, 2, 65, 76, 218, 1, 74, 96, 2,
76, 65, 146, 2, 75, 14, 72, 30, 77, 239, 1, 89, 18, 54, 72, 146, 50, 65,
250, 3, 74, 2, 77, 135, 5, 89, 2, 247, 8, 65, 74, 116, 5, 65, 76, 69, 70,
32, 210, 1, 72, 124, 5, 74, 69, 69, 77, 32, 78, 75, 28, 5, 77, 69, 69,
77, 32, 211, 54, 89, 20, 64, 5, 87, 73, 84, 72, 32, 162, 51, 77, 222, 6,
70, 231, 52, 73, 12, 68, 6, 72, 65, 77, 90, 65, 32, 41, 7, 77, 65, 68,
68, 65, 32, 65, 8, 38, 65, 145, 53, 4, 66, 69, 76, 79, 4, 253, 52, 3, 66,
79, 86, 14, 28, 2, 65, 72, 187, 51, 69, 12, 11, 32, 12, 40, 5, 87, 73,
84, 72, 32, 227, 99, 73, 8, 234, 42, 65, 130, 12, 77, 75, 89, 14, 40, 5,
87, 73, 84, 72, 32, 147, 99, 73, 10, 154, 54, 74, 2, 77, 75, 89, 8, 237,
20, 3, 72, 65, 72, 14, 130, 20, 87, 138, 35, 70, 202, 43, 73, 211, 9, 77,
48, 84, 9, 69, 69, 77, 32, 87, 73, 84, 72, 32, 217, 43, 7, 79, 72, 65,
77, 77, 65, 68, 46, 116, 5, 65, 76, 69, 70, 32, 66, 72, 0, 2, 75, 72,
104, 5, 74, 69, 69, 77, 32, 92, 5, 77, 69, 69, 77, 32, 43, 89, 4, 22, 77,
243, 52, 70, 2, 197, 42, 6, 65, 75, 83, 85, 82, 65, 10, 21, 3, 65, 72,
32, 10, 40, 5, 87, 73, 84, 72, 32, 207, 95, 73, 6, 146, 39, 74, 2, 77,
143, 12, 89, 12, 40, 5, 87, 73, 84, 72, 32, 255, 94, 73, 8, 194, 38, 77,
194, 7, 75, 14, 72, 195, 4, 89, 8, 142, 48, 87, 246, 2, 70, 203, 43, 73,
2, 11, 69, 2, 167, 40, 72, 62, 144, 1, 9, 79, 79, 78, 32, 87, 73, 84, 72,
32, 205, 159, 13, 20, 65, 87, 87, 65, 82, 65, 32, 65, 76, 76, 65, 65, 72,
85, 32, 77, 65, 82, 81, 65, 60, 134, 1, 72, 28, 5, 74, 69, 69, 77, 32,
92, 5, 77, 69, 69, 77, 32, 246, 37, 65, 154, 5, 78, 78, 90, 134, 1, 75,
238, 1, 82, 43, 89, 14, 150, 33, 65, 155, 9, 69, 16, 40, 5, 87, 73, 84,
72, 32, 167, 91, 73, 12, 190, 30, 72, 242, 3, 65, 130, 12, 77, 75, 89,
12, 194, 21, 87, 234, 25, 70, 202, 43, 73, 211, 9, 77, 36, 46, 65, 209,
2, 6, 85, 68, 68, 73, 83, 65, 28, 156, 1, 7, 70, 32, 87, 73, 84, 72, 32,
212, 12, 4, 76, 65, 32, 85, 233, 163, 32, 18, 68, 68, 65, 83, 65, 32, 65,
76, 76, 65, 65, 72, 85, 32, 83, 73, 82, 82, 24, 64, 5, 77, 69, 69, 77,
32, 174, 35, 65, 246, 6, 72, 139, 2, 89, 12, 40, 5, 87, 73, 84, 72, 32,
131, 88, 73, 8, 34, 77, 250, 26, 72, 187, 16, 89, 2, 193, 43, 3, 69, 69,
77, 8, 68, 5, 32, 83, 73, 82, 82, 45, 8, 84, 32, 65, 83, 82, 65, 65, 82,
6, 220, 5, 3, 85, 72, 85, 215, 149, 39, 65, 2, 241, 240, 37, 2, 85, 72,
44, 30, 65, 177, 30, 2, 69, 72, 42, 92, 11, 68, 73, 32, 65, 76, 76, 65,
65, 72, 85, 32, 170, 1, 72, 153, 30, 4, 83, 79, 85, 76, 18, 72, 3, 65,
78, 72, 61, 11, 84, 65, 65, 65, 76, 65, 65, 32, 65, 78, 72, 11, 26, 85,
223, 151, 39, 65, 6, 186, 3, 77, 195, 216, 37, 78, 9, 142, 3, 85, 175,
148, 39, 65, 22, 92, 5, 73, 77, 65, 72, 85, 149, 1, 13, 77, 65, 84, 85,
32, 65, 76, 76, 65, 65, 72, 73, 32, 12, 44, 7, 32, 65, 76, 76, 65, 65,
72, 19, 77, 5, 215, 20, 32, 8, 30, 32, 1, 3, 65, 65, 32, 4, 33, 6, 65,
76, 76, 65, 65, 72, 5, 211, 18, 85, 10, 92, 5, 65, 76, 65, 89, 72, 241,
149, 39, 12, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 9, 26, 73,
175, 148, 39, 65, 4, 11, 77, 5, 159, 148, 39, 65, 194, 1, 134, 1, 65,
220, 7, 9, 69, 69, 78, 32, 87, 73, 84, 72, 32, 250, 3, 72, 201, 4, 12,
85, 66, 72, 65, 65, 78, 65, 72, 85, 32, 87, 65, 50, 48, 7, 68, 32, 87,
73, 84, 72, 32, 251, 1, 76, 32, 76, 4, 72, 65, 72, 32, 82, 77, 154, 25,
65, 138, 4, 75, 246, 4, 82, 3, 89, 10, 22, 87, 211, 78, 73, 6, 25, 4, 73,
84, 72, 32, 6, 206, 17, 72, 187, 16, 89, 8, 21, 3, 69, 69, 77, 8, 11, 32,
8, 252, 32, 6, 87, 73, 84, 72, 32, 77, 247, 44, 73, 18, 26, 65, 77, 2,
76, 65, 4, 178, 23, 77, 137, 134, 37, 11, 65, 77, 85, 72, 85, 32, 65, 76,
65, 89, 78, 14, 34, 32, 133, 1, 3, 76, 76, 65, 4, 22, 85, 187, 85, 73, 2,
245, 9, 23, 83, 69, 68, 32, 65, 83, 32, 75, 79, 82, 65, 78, 73, 67, 32,
83, 84, 79, 80, 32, 83, 73, 71, 10, 36, 4, 65, 72, 85, 32, 147, 1, 72, 4,
212, 2, 14, 84, 65, 65, 65, 76, 65, 65, 32, 65, 76, 65, 89, 72, 73, 237,
140, 39, 14, 65, 76, 65, 89, 72, 73, 32, 87, 65, 45, 65, 65, 76, 73, 6,
112, 11, 85, 32, 65, 76, 65, 89, 72, 73, 32, 87, 65, 205, 63, 12, 79, 85,
32, 65, 76, 65, 89, 72, 69, 32, 87, 65, 4, 44, 7, 45, 65, 76, 65, 65, 32,
65, 3, 65, 2, 33, 6, 65, 76, 73, 72, 69, 69, 2, 245, 62, 4, 32, 87, 65,
45, 60, 130, 1, 72, 100, 5, 74, 69, 69, 77, 32, 84, 5, 75, 72, 65, 72,
32, 92, 5, 77, 69, 69, 77, 32, 250, 15, 65, 254, 8, 82, 3, 89, 12, 32, 3,
65, 72, 32, 175, 21, 69, 8, 172, 14, 6, 87, 73, 84, 72, 32, 74, 186, 56,
73, 211, 9, 77, 10, 52, 5, 87, 73, 84, 72, 32, 242, 69, 73, 211, 9, 77,
4, 250, 12, 65, 139, 8, 72, 10, 34, 87, 178, 69, 73, 211, 9, 77, 4, 25,
4, 73, 84, 72, 32, 4, 158, 12, 65, 203, 12, 89, 16, 52, 5, 87, 73, 84,
72, 32, 194, 68, 73, 211, 9, 77, 10, 218, 7, 72, 174, 4, 74, 199, 11, 77,
82, 96, 10, 65, 68, 68, 65, 32, 87, 73, 84, 72, 32, 161, 1, 9, 69, 69,
78, 32, 87, 73, 84, 72, 32, 18, 96, 4, 68, 65, 77, 77, 0, 4, 75, 65, 83,
82, 154, 11, 83, 245, 41, 6, 70, 65, 84, 72, 65, 32, 6, 11, 65, 6, 28, 2,
84, 65, 227, 52, 32, 2, 179, 12, 78, 64, 130, 1, 72, 36, 5, 74, 69, 69,
77, 32, 52, 5, 77, 69, 69, 77, 32, 186, 11, 65, 228, 4, 4, 75, 72, 65,
72, 154, 4, 82, 3, 89, 18, 210, 15, 69, 229, 3, 2, 65, 72, 10, 174, 18,
87, 246, 2, 70, 202, 43, 73, 211, 9, 77, 16, 64, 5, 87, 73, 84, 72, 32,
174, 20, 70, 202, 43, 73, 211, 9, 77, 8, 140, 3, 2, 75, 72, 243, 15, 77,
2, 175, 1, 32, 122, 66, 65, 176, 2, 8, 69, 72, 32, 87, 73, 84, 72, 32,
179, 4, 72, 28, 88, 11, 66, 65, 65, 82, 65, 75, 65, 32, 87, 65, 45, 29,
7, 72, 32, 87, 73, 84, 72, 32, 2, 129, 162, 28, 2, 84, 65, 26, 64, 5, 77,
69, 69, 77, 32, 194, 8, 65, 246, 6, 72, 139, 2, 89, 14, 52, 5, 87, 73,
84, 72, 32, 138, 61, 73, 211, 9, 77, 8, 34, 72, 174, 4, 77, 143, 12, 89,
4, 133, 16, 2, 65, 72, 66, 138, 1, 72, 108, 3, 75, 72, 65, 12, 4, 74, 69,
69, 77, 92, 5, 77, 69, 69, 77, 32, 238, 4, 65, 154, 5, 78, 78, 90, 242,
2, 82, 43, 89, 14, 32, 3, 65, 72, 32, 227, 9, 69, 10, 40, 5, 87, 73, 84,
72, 32, 243, 58, 73, 6, 182, 2, 77, 199, 11, 74, 10, 11, 72, 10, 11, 32,
10, 40, 5, 87, 73, 84, 72, 32, 147, 58, 73, 6, 154, 1, 65, 62, 77, 143,
12, 89, 18, 64, 5, 87, 73, 84, 72, 32, 226, 13, 70, 202, 43, 73, 211, 9,
77, 10, 50, 65, 62, 74, 194, 7, 75, 14, 72, 195, 4, 89, 2, 217, 12, 11,
76, 69, 70, 32, 77, 65, 75, 83, 85, 82, 65, 2, 225, 7, 3, 69, 69, 77, 28,
56, 2, 65, 76, 117, 8, 69, 72, 32, 87, 73, 84, 72, 32, 2, 37, 7, 32, 87,
73, 84, 72, 32, 83, 2, 197, 1, 15, 85, 80, 69, 82, 83, 67, 82, 73, 80,
84, 32, 65, 76, 69, 70, 26, 108, 3, 74, 69, 69, 126, 65, 198, 4, 77, 86,
78, 78, 90, 242, 2, 82, 42, 89, 213, 53, 5, 72, 69, 72, 32, 77, 2, 11,
77, 2, 11, 32, 2, 255, 62, 73, 114, 82, 65, 38, 72, 246, 4, 78, 78, 90,
38, 74, 98, 75, 42, 77, 198, 1, 82, 43, 89, 4, 217, 2, 5, 76, 69, 70, 32,
77, 76, 22, 65, 139, 3, 69, 72, 80, 15, 77, 90, 65, 32, 65, 66, 79, 86,
69, 32, 87, 73, 84, 72, 32, 147, 5, 72, 66, 118, 65, 126, 69, 42, 72, 78,
74, 18, 75, 62, 77, 86, 78, 22, 79, 16, 2, 87, 65, 18, 89, 26, 90, 242,
2, 82, 67, 85, 12, 22, 76, 247, 6, 69, 8, 21, 3, 69, 70, 32, 8, 34, 77,
222, 6, 70, 231, 52, 73, 4, 181, 6, 6, 65, 75, 83, 85, 82, 65, 6, 11, 32,
6, 166, 6, 70, 203, 43, 73, 8, 22, 69, 191, 3, 65, 4, 11, 72, 4, 11, 32,
4, 230, 4, 73, 143, 54, 77, 4, 223, 48, 69, 2, 11, 72, 2, 11, 65, 2, 11,
72, 2, 149, 4, 2, 32, 73, 8, 17, 2, 69, 69, 8, 11, 77, 8, 11, 32, 8, 198,
4, 70, 202, 43, 73, 211, 9, 77, 2, 93, 2, 79, 79, 4, 231, 3, 69, 4, 215,
3, 87, 8, 186, 3, 69, 15, 85, 2, 17, 2, 65, 73, 2, 239, 2, 78, 6, 21, 3,
69, 69, 77, 6, 11, 32, 6, 22, 87, 191, 46, 73, 2, 141, 2, 5, 73, 84, 72,
32, 89, 4, 11, 72, 4, 11, 65, 4, 235, 45, 72, 14, 21, 3, 69, 69, 77, 14,
11, 32, 14, 64, 5, 87, 73, 84, 72, 32, 194, 1, 70, 202, 43, 73, 211, 9,
77, 6, 18, 77, 75, 89, 4, 21, 3, 69, 69, 77, 4, 11, 32, 4, 18, 73, 119,
70, 2, 211, 44, 78, 2, 17, 2, 69, 72, 2, 77, 2, 32, 70, 4, 11, 69, 4, 11,
72, 4, 11, 32, 4, 22, 70, 231, 52, 73, 2, 185, 53, 2, 73, 78, 6, 174, 43,
73, 211, 9, 77, 166, 2, 92, 3, 68, 68, 65, 52, 3, 82, 75, 32, 109, 11,
84, 72, 69, 77, 65, 84, 73, 67, 65, 76, 32, 4, 244, 177, 37, 5, 32, 87,
65, 65, 74, 131, 65, 72, 4, 58, 78, 1, 10, 83, 73, 68, 69, 87, 65, 89,
83, 32, 78, 2, 201, 180, 35, 7, 79, 79, 78, 32, 71, 72, 85, 158, 2, 174,
2, 68, 140, 3, 8, 73, 78, 73, 84, 73, 65, 76, 32, 222, 1, 76, 132, 2, 9,
79, 80, 69, 82, 65, 84, 79, 82, 32, 166, 1, 83, 142, 3, 84, 130, 190, 24,
65, 102, 75, 110, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 82,
2, 89, 222, 7, 72, 222, 58, 71, 254, 136, 3, 78, 250, 168, 2, 81, 135, 3,
87, 62, 26, 79, 219, 233, 37, 65, 58, 88, 6, 84, 76, 69, 83, 83, 32, 61,
12, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 75, 32, 8, 210, 245, 31, 66,
2, 70, 182, 203, 3, 78, 251, 168, 2, 81, 50, 178, 12, 83, 174, 20, 75,
146, 168, 24, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2,
82, 2, 89, 222, 7, 72, 222, 58, 71, 254, 136, 3, 78, 154, 237, 1, 76,
210, 58, 68, 146, 1, 81, 222, 1, 65, 171, 1, 87, 40, 182, 1, 84, 166, 9,
83, 254, 187, 24, 72, 30, 75, 214, 107, 74, 2, 77, 250, 192, 6, 66, 2,
70, 2, 89, 186, 66, 71, 254, 136, 3, 78, 154, 237, 1, 76, 226, 59, 81,
222, 1, 65, 171, 57, 68, 4, 134, 242, 31, 72, 207, 244, 6, 69, 56, 48, 6,
79, 79, 80, 69, 68, 32, 183, 214, 38, 65, 54, 202, 8, 83, 174, 20, 75,
138, 167, 24, 65, 74, 72, 66, 84, 74, 90, 234, 106, 74, 2, 77, 250, 192,
6, 66, 2, 70, 2, 82, 2, 89, 186, 66, 71, 254, 136, 3, 78, 154, 237, 1,
76, 210, 58, 68, 146, 1, 81, 135, 3, 87, 4, 148, 161, 29, 23, 77, 69, 69,
77, 32, 87, 73, 84, 72, 32, 72, 65, 72, 32, 87, 73, 84, 72, 32, 84, 65,
84, 87, 197, 174, 8, 9, 72, 65, 72, 32, 87, 73, 84, 72, 32, 52, 84, 9,
84, 82, 69, 84, 67, 72, 69, 68, 32, 178, 141, 37, 72, 14, 69, 231, 143,
1, 65, 46, 178, 1, 68, 86, 84, 250, 2, 83, 254, 187, 24, 72, 30, 75, 214,
107, 74, 2, 77, 250, 192, 6, 66, 2, 70, 2, 89, 222, 7, 90, 222, 58, 71,
254, 136, 3, 78, 250, 168, 2, 81, 223, 1, 65, 6, 52, 7, 79, 84, 76, 69,
83, 83, 32, 183, 155, 38, 65, 4, 246, 235, 31, 66, 3, 70, 6, 218, 235,
31, 72, 206, 244, 6, 65, 3, 69, 38, 42, 65, 130, 191, 24, 72, 211, 160,
14, 69, 32, 44, 5, 73, 76, 69, 68, 32, 179, 224, 38, 72, 30, 146, 1, 68,
94, 83, 174, 20, 75, 194, 147, 25, 74, 250, 192, 6, 89, 222, 7, 72, 222,
58, 71, 254, 136, 3, 78, 154, 237, 1, 76, 226, 59, 81, 223, 1, 65, 6, 52,
7, 79, 84, 76, 69, 83, 83, 32, 199, 152, 38, 65, 4, 186, 180, 35, 78,
251, 168, 2, 81, 6, 174, 136, 37, 72, 14, 69, 231, 143, 1, 65, 4, 250,
219, 18, 77, 179, 251, 18, 83, 6, 192, 135, 25, 3, 75, 65, 83, 12, 4, 68,
65, 77, 77, 1, 4, 70, 65, 84, 72, 12, 118, 69, 38, 79, 144, 217, 12, 11,
76, 65, 67, 69, 32, 79, 70, 32, 83, 65, 74, 201, 128, 6, 6, 73, 65, 83,
84, 82, 69, 4, 202, 189, 32, 82, 199, 233, 5, 80, 4, 224, 201, 12, 8, 69,
84, 73, 67, 32, 86, 69, 82, 245, 143, 6, 3, 85, 78, 68, 14, 238, 1, 65,
96, 5, 69, 86, 69, 82, 83, 36, 15, 73, 71, 72, 84, 32, 65, 82, 82, 79,
87, 72, 69, 65, 68, 32, 157, 186, 23, 28, 79, 85, 78, 68, 69, 68, 32, 72,
73, 71, 72, 32, 83, 84, 79, 80, 32, 87, 73, 84, 72, 32, 70, 73, 76, 76,
69, 68, 4, 40, 4, 73, 83, 69, 68, 155, 217, 38, 89, 2, 17, 2, 32, 82, 2,
233, 138, 37, 3, 79, 85, 78, 2, 225, 241, 21, 4, 69, 68, 32, 68, 6, 26,
65, 187, 182, 36, 66, 4, 249, 177, 37, 3, 66, 79, 86, 206, 1, 238, 1, 69,
244, 2, 5, 72, 65, 68, 68, 65, 36, 4, 73, 71, 78, 32, 240, 4, 5, 77, 65,
76, 76, 32, 222, 15, 85, 240, 2, 6, 89, 77, 66, 79, 76, 32, 197, 253, 36,
18, 84, 65, 82, 84, 32, 79, 70, 32, 82, 85, 66, 32, 69, 76, 32, 72, 73,
90, 20, 52, 7, 81, 85, 69, 78, 67, 69, 32, 215, 134, 35, 77, 18, 184, 1,
26, 89, 69, 72, 32, 87, 73, 84, 72, 32, 72, 65, 77, 90, 65, 32, 65, 66,
79, 86, 69, 32, 87, 73, 84, 72, 32, 193, 222, 31, 13, 78, 79, 79, 78, 32,
87, 73, 84, 72, 32, 75, 69, 72, 16, 70, 65, 170, 213, 37, 87, 198, 89,
89, 150, 14, 79, 214, 22, 69, 3, 85, 6, 36, 3, 76, 69, 70, 175, 211, 38,
69, 5, 251, 12, 32, 7, 11, 32, 4, 222, 22, 73, 55, 77, 22, 132, 1, 2, 82,
65, 158, 1, 83, 188, 1, 7, 65, 76, 65, 89, 72, 69, 32, 136, 15, 2, 77,
73, 133, 181, 34, 6, 84, 65, 75, 72, 65, 76, 4, 132, 1, 13, 72, 77, 65,
84, 85, 76, 76, 65, 72, 32, 65, 76, 65, 161, 218, 33, 13, 68, 73, 32, 65,
76, 76, 65, 72, 79, 85, 32, 65, 78, 2, 219, 163, 38, 89, 12, 46, 65, 193,
1, 6, 73, 78, 68, 72, 73, 32, 8, 136, 1, 18, 76, 76, 65, 76, 76, 65, 72,
79, 85, 32, 65, 76, 65, 89, 72, 69, 32, 87, 154, 225, 31, 78, 218, 240,
4, 70, 249, 115, 2, 77, 86, 2, 17, 2, 65, 83, 2, 141, 242, 15, 3, 83, 65,
76, 4, 160, 227, 20, 12, 80, 79, 83, 84, 80, 79, 83, 73, 84, 73, 79, 78,
205, 152, 14, 2, 65, 77, 110, 120, 2, 70, 65, 32, 5, 72, 73, 71, 72, 32,
134, 11, 89, 88, 4, 76, 79, 87, 32, 118, 75, 158, 217, 21, 68, 215, 232,
15, 87, 4, 166, 3, 82, 191, 204, 36, 84, 74, 212, 2, 17, 68, 79, 84, 76,
69, 83, 83, 32, 72, 69, 65, 68, 32, 79, 70, 32, 75, 22, 70, 102, 76, 142,
3, 77, 118, 83, 78, 84, 38, 87, 198, 2, 89, 142, 1, 78, 180, 195, 14, 18,
85, 80, 82, 73, 71, 72, 84, 32, 82, 69, 67, 84, 65, 78, 71, 85, 76, 65,
252, 220, 8, 7, 82, 79, 85, 78, 68, 69, 68, 242, 126, 90, 234, 106, 74,
166, 181, 12, 81, 223, 1, 65, 2, 147, 220, 31, 72, 4, 24, 2, 65, 82, 31,
79, 2, 11, 83, 2, 175, 2, 73, 2, 233, 209, 26, 6, 79, 84, 78, 79, 84, 69,
10, 60, 8, 73, 71, 65, 84, 85, 82, 69, 32, 225, 11, 2, 65, 77, 8, 88, 10,
65, 76, 69, 70, 32, 87, 73, 84, 72, 32, 116, 3, 81, 65, 70, 1, 3, 83, 65,
68, 4, 84, 8, 76, 65, 77, 32, 87, 73, 84, 72, 253, 212, 36, 7, 89, 69,
72, 32, 66, 65, 82, 2, 201, 209, 31, 2, 32, 89, 2, 89, 20, 32, 87, 73,
84, 72, 32, 76, 65, 77, 32, 87, 73, 84, 72, 32, 65, 76, 69, 70, 32, 2,
133, 173, 22, 3, 77, 65, 75, 6, 26, 69, 191, 142, 16, 65, 4, 17, 2, 69,
77, 4, 17, 2, 32, 73, 4, 22, 78, 147, 9, 83, 2, 205, 9, 2, 73, 84, 6,
240, 199, 36, 7, 73, 71, 78, 32, 83, 65, 70, 166, 39, 69, 231, 143, 1,
65, 4, 166, 224, 23, 72, 155, 227, 14, 65, 20, 40, 4, 79, 82, 68, 32,
227, 197, 37, 65, 18, 74, 65, 172, 1, 2, 83, 65, 168, 201, 25, 3, 87, 65,
81, 247, 246, 11, 81, 10, 244, 137, 7, 3, 76, 45, 74, 188, 200, 18, 3,
82, 45, 82, 240, 230, 6, 7, 84, 72, 45, 84, 72, 65, 76, 236, 136, 5, 5,
78, 45, 78, 73, 83, 161, 92, 5, 83, 45, 83, 65, 74, 4, 186, 157, 38, 75,
207, 36, 72, 4, 17, 2, 69, 72, 5, 157, 196, 10, 12, 32, 66, 65, 82, 82,
69, 69, 32, 87, 73, 84, 72, 22, 50, 78, 98, 87, 170, 137, 25, 77, 199,
224, 11, 83, 4, 21, 3, 79, 79, 78, 5, 37, 7, 32, 87, 73, 84, 72, 32, 75,
2, 11, 65, 2, 207, 251, 37, 83, 14, 40, 4, 79, 82, 68, 32, 179, 193, 37,
65, 12, 106, 73, 162, 135, 16, 77, 128, 182, 9, 3, 84, 65, 83, 208, 228,
8, 2, 83, 65, 153, 228, 3, 3, 81, 65, 83, 4, 168, 168, 13, 2, 77, 65,
181, 145, 19, 3, 83, 72, 77, 12, 138, 1, 66, 64, 3, 75, 85, 78, 141, 139,
25, 22, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65, 76, 69, 70, 32, 77,
79, 75, 72, 65, 83, 83, 2, 33, 6, 83, 67, 82, 73, 80, 84, 2, 137, 184,
22, 2, 32, 65, 9, 11, 32, 6, 34, 73, 54, 77, 147, 154, 36, 66, 2, 11, 83,
2, 209, 237, 31, 5, 79, 76, 65, 84, 69, 2, 11, 69, 2, 11, 68, 2, 11, 73,
2, 245, 188, 37, 2, 65, 76, 34, 156, 1, 2, 68, 79, 126, 84, 188, 183, 5,
8, 83, 77, 65, 76, 76, 32, 84, 65, 200, 212, 26, 4, 70, 79, 85, 82, 224,
129, 1, 4, 87, 65, 83, 76, 187, 218, 4, 82, 6, 48, 6, 85, 66, 76, 69, 32,
86, 215, 151, 36, 84, 2, 49, 10, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65,
2, 155, 136, 36, 82, 16, 88, 10, 72, 82, 69, 69, 32, 68, 79, 84, 83, 32,
121, 8, 87, 79, 32, 68, 79, 84, 83, 32, 8, 192, 139, 32, 17, 80, 79, 73,
78, 84, 73, 78, 71, 32, 68, 79, 87, 78, 87, 65, 82, 68, 150, 139, 4, 66,
131, 165, 1, 65, 8, 128, 186, 10, 9, 86, 69, 82, 84, 73, 67, 65, 76, 76,
222, 219, 25, 66, 131, 165, 1, 65, 30, 202, 1, 65, 152, 2, 4, 79, 78, 69,
32, 164, 130, 11, 12, 82, 73, 80, 76, 69, 32, 68, 79, 84, 32, 80, 85,
144, 205, 6, 8, 85, 82, 78, 69, 68, 32, 68, 65, 197, 154, 14, 8, 72, 79,
85, 83, 65, 78, 68, 83, 12, 68, 5, 84, 87, 69, 69, 76, 177, 150, 36, 6,
73, 76, 32, 70, 82, 65, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 112, 11,
79, 86, 69, 82, 83, 84, 82, 85, 67, 75, 32, 140, 205, 5, 7, 70, 65, 84,
72, 65, 84, 65, 159, 233, 4, 84, 4, 26, 72, 131, 181, 37, 87, 2, 133,
133, 30, 2, 65, 77, 12, 68, 3, 79, 78, 69, 194, 166, 30, 84, 245, 233, 5,
4, 76, 79, 79, 80, 4, 173, 142, 34, 2, 32, 68, 8, 64, 10, 79, 87, 69, 76,
32, 83, 73, 71, 78, 32, 255, 164, 24, 69, 6, 72, 10, 73, 78, 86, 69, 82,
84, 69, 68, 32, 83, 2, 83, 211, 222, 25, 68, 2, 25, 4, 77, 65, 76, 76, 2,
249, 179, 37, 2, 32, 86, 28, 104, 4, 80, 69, 82, 32, 236, 253, 5, 3, 67,
85, 66, 204, 138, 5, 5, 70, 79, 85, 82, 84, 187, 179, 25, 68, 4, 234,
169, 25, 77, 31, 84, 188, 1, 222, 1, 65, 34, 67, 138, 3, 69, 60, 7, 83,
77, 65, 76, 76, 32, 76, 200, 155, 21, 17, 77, 79, 68, 73, 70, 73, 69, 82,
32, 76, 69, 84, 84, 69, 82, 32, 76, 222, 253, 8, 72, 140, 188, 2, 3, 68,
82, 65, 178, 255, 2, 70, 83, 81, 4, 218, 236, 31, 66, 143, 26, 80, 78,
80, 14, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 191, 215,
35, 79, 76, 250, 1, 84, 36, 2, 89, 73, 150, 3, 67, 38, 82, 34, 69, 42,
71, 34, 74, 38, 75, 22, 80, 38, 83, 106, 65, 22, 86, 158, 1, 76, 246,
173, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2, 77, 222, 57, 78,
230, 28, 90, 210, 96, 72, 190, 28, 68, 171, 1, 79, 4, 214, 212, 36, 73,
179, 214, 1, 79, 5, 131, 219, 37, 87, 4, 162, 134, 32, 88, 233, 210, 4,
6, 77, 80, 72, 65, 83, 73, 92, 76, 6, 69, 84, 84, 69, 82, 32, 157, 5, 8,
73, 71, 65, 84, 85, 82, 69, 32, 80, 242, 1, 67, 38, 82, 34, 69, 42, 71,
34, 74, 38, 75, 22, 80, 38, 83, 34, 84, 74, 65, 22, 86, 32, 2, 89, 73,
126, 76, 246, 173, 31, 70, 2, 88, 134, 241, 1, 73, 214, 174, 3, 66, 2,
77, 222, 57, 78, 230, 28, 90, 210, 96, 72, 190, 28, 68, 171, 1, 79, 8,
34, 72, 174, 167, 38, 65, 3, 79, 4, 154, 166, 38, 69, 147, 1, 65, 6, 250,
165, 38, 67, 146, 1, 72, 3, 84, 4, 182, 224, 37, 72, 215, 53, 73, 4, 230,
176, 31, 72, 223, 245, 6, 65, 4, 223, 250, 33, 69, 4, 214, 251, 3, 73,
167, 169, 34, 69, 4, 174, 163, 38, 72, 171, 1, 69, 6, 68, 7, 85, 82, 78,
69, 68, 32, 65, 210, 206, 36, 73, 179, 214, 1, 79, 2, 135, 231, 36, 89,
4, 202, 166, 37, 69, 163, 126, 79, 7, 194, 195, 21, 32, 171, 145, 16, 87,
12, 84, 5, 69, 67, 72, 32, 89, 20, 4, 77, 69, 78, 32, 221, 142, 30, 4,
86, 69, 87, 32, 2, 159, 205, 36, 73, 8, 222, 173, 31, 88, 134, 241, 1,
73, 178, 232, 3, 78, 131, 122, 69, 14, 108, 10, 32, 80, 79, 73, 78, 84,
73, 78, 71, 32, 137, 226, 36, 11, 72, 69, 65, 68, 45, 83, 72, 65, 80, 69,
68, 12, 156, 2, 24, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 84, 72,
69, 78, 32, 67, 85, 82, 86, 73, 78, 71, 32, 48, 16, 85, 80, 87, 65, 82,
68, 83, 32, 84, 72, 69, 78, 32, 78, 79, 82, 197, 189, 35, 22, 68, 79, 87,
78, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 67, 85, 82, 86, 73, 78,
71, 6, 44, 3, 83, 79, 85, 222, 237, 26, 68, 35, 85, 2, 153, 173, 34, 4,
84, 72, 32, 87, 4, 176, 217, 31, 11, 67, 85, 76, 65, 84, 69, 68, 32, 76,
79, 82, 189, 252, 4, 6, 83, 84, 32, 80, 65, 76, 24, 58, 67, 38, 84, 206,
180, 23, 89, 145, 202, 9, 2, 83, 69, 4, 242, 181, 8, 69, 167, 194, 11,
73, 16, 48, 4, 69, 82, 73, 83, 36, 2, 79, 78, 31, 82, 6, 174, 227, 2, 75,
239, 185, 35, 77, 2, 237, 138, 14, 2, 73, 83, 8, 104, 20, 79, 78, 79, 77,
73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 211, 138,
14, 65, 4, 164, 227, 25, 13, 65, 83, 84, 69, 82, 79, 73, 68, 32, 80, 82,
79, 83, 205, 175, 10, 2, 85, 82, 4, 164, 197, 19, 6, 72, 76, 69, 84, 73,
67, 165, 192, 17, 2, 79, 77, 10, 68, 2, 84, 79, 160, 249, 21, 2, 83, 84,
209, 169, 2, 3, 66, 69, 82, 6, 54, 77, 161, 155, 37, 7, 32, 82, 73, 67,
75, 83, 72, 4, 162, 162, 24, 79, 209, 202, 5, 12, 65, 84, 69, 68, 32, 84,
69, 76, 76, 69, 82, 32, 112, 56, 6, 69, 83, 84, 65, 78, 32, 169, 231, 4,
2, 79, 67, 110, 52, 7, 76, 69, 84, 84, 69, 82, 32, 223, 214, 31, 65, 108,
234, 1, 65, 58, 71, 42, 72, 34, 78, 50, 88, 42, 83, 42, 89, 34, 84, 254,
188, 34, 85, 206, 141, 1, 79, 238, 60, 73, 166, 140, 1, 66, 2, 68, 2, 90,
130, 64, 69, 206, 41, 67, 2, 70, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2,
82, 3, 86, 17, 182, 198, 35, 65, 194, 143, 2, 69, 162, 64, 78, 3, 79, 6,
138, 255, 37, 71, 2, 72, 215, 22, 69, 4, 226, 254, 37, 77, 215, 22, 69,
12, 46, 71, 150, 254, 37, 78, 2, 89, 215, 22, 69, 6, 146, 254, 37, 86, 2,
89, 215, 22, 69, 8, 38, 72, 142, 231, 37, 83, 143, 45, 69, 4, 194, 253,
37, 89, 215, 22, 69, 6, 162, 253, 37, 72, 2, 84, 215, 22, 69, 178, 42,
178, 1, 65, 194, 171, 1, 69, 244, 21, 9, 72, 65, 73, 75, 83, 85, 75, 73,
32, 202, 6, 73, 130, 3, 76, 182, 45, 79, 138, 70, 82, 246, 18, 85, 138,
8, 89, 214, 183, 35, 80, 147, 1, 83, 198, 14, 132, 1, 2, 66, 89, 94, 67,
206, 2, 68, 146, 1, 71, 106, 76, 192, 29, 4, 77, 85, 77, 32, 190, 115,
78, 178, 1, 82, 98, 83, 223, 6, 84, 11, 11, 32, 8, 226, 253, 12, 67, 222,
248, 5, 66, 144, 133, 14, 3, 65, 78, 71, 135, 128, 4, 83, 16, 62, 75,
244, 135, 9, 5, 84, 82, 73, 65, 78, 159, 184, 28, 79, 12, 42, 32, 46, 83,
145, 236, 10, 2, 45, 84, 4, 214, 137, 10, 87, 253, 237, 20, 2, 79, 70, 6,
132, 1, 26, 76, 65, 78, 84, 69, 68, 32, 83, 79, 85, 84, 72, 32, 65, 82,
82, 79, 87, 32, 87, 73, 84, 72, 32, 72, 79, 139, 209, 37, 80, 4, 138,
221, 29, 82, 165, 193, 5, 2, 79, 75, 4, 224, 155, 35, 27, 77, 73, 78, 84,
79, 78, 32, 82, 65, 67, 81, 85, 69, 84, 32, 65, 78, 68, 32, 83, 72, 85,
84, 84, 76, 69, 67, 151, 180, 2, 71, 6, 224, 130, 31, 6, 85, 69, 84, 84,
69, 32, 162, 254, 5, 69, 129, 9, 8, 71, 65, 71, 69, 32, 67, 76, 65, 156,
2, 44, 6, 73, 78, 69, 83, 69, 32, 183, 25, 76, 254, 1, 132, 3, 6, 67, 65,
82, 73, 75, 32, 84, 15, 73, 78, 86, 69, 82, 84, 69, 68, 32, 67, 65, 82,
73, 75, 32, 68, 7, 76, 69, 84, 84, 69, 82, 32, 224, 8, 15, 77, 85, 83,
73, 67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 196, 6, 2, 80, 65, 184,
1, 5, 83, 73, 71, 78, 32, 176, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71,
78, 32, 220, 184, 14, 5, 65, 68, 69, 71, 32, 130, 159, 19, 87, 167, 169,
2, 68, 6, 32, 2, 80, 65, 167, 136, 3, 83, 4, 86, 82, 177, 153, 31, 5, 77,
85, 78, 71, 75, 4, 36, 3, 80, 65, 82, 207, 135, 3, 83, 2, 169, 177, 36,
2, 69, 82, 110, 166, 2, 65, 112, 2, 66, 65, 32, 2, 67, 65, 32, 2, 68, 65,
110, 69, 32, 2, 71, 65, 30, 73, 2, 79, 2, 85, 36, 2, 74, 65, 30, 75, 68,
2, 76, 65, 18, 78, 72, 2, 80, 65, 36, 2, 82, 65, 16, 2, 83, 65, 54, 84,
128, 1, 2, 86, 69, 0, 3, 90, 65, 76, 154, 252, 37, 72, 2, 77, 2, 87, 3,
89, 10, 226, 2, 75, 184, 3, 5, 83, 89, 85, 82, 65, 184, 182, 15, 8, 82,
67, 72, 65, 73, 67, 32, 74, 187, 255, 3, 73, 5, 197, 142, 19, 3, 32, 75,
69, 5, 161, 152, 31, 3, 32, 76, 65, 9, 17, 2, 32, 77, 6, 44, 5, 85, 82,
68, 65, 32, 231, 229, 33, 65, 4, 254, 195, 14, 77, 25, 3, 65, 76, 80, 4,
254, 3, 70, 135, 186, 37, 75, 5, 217, 141, 35, 2, 32, 71, 4, 11, 75, 4,
161, 15, 2, 65, 82, 5, 249, 239, 35, 2, 32, 74, 8, 34, 65, 225, 2, 3, 72,
79, 84, 7, 222, 2, 70, 207, 191, 14, 32, 7, 131, 13, 32, 8, 34, 65, 166,
254, 37, 71, 3, 89, 5, 233, 151, 27, 4, 32, 82, 65, 77, 5, 217, 244, 36,
4, 32, 75, 65, 80, 7, 167, 12, 32, 7, 21, 3, 32, 83, 65, 4, 178, 253, 37,
71, 3, 80, 10, 30, 65, 97, 3, 90, 73, 82, 9, 11, 32, 6, 156, 192, 14, 6,
77, 85, 82, 68, 65, 32, 212, 7, 3, 76, 65, 84, 203, 189, 18, 84, 2, 189,
188, 14, 2, 32, 83, 56, 168, 1, 10, 67, 79, 77, 66, 73, 78, 73, 78, 71,
32, 246, 1, 68, 172, 1, 10, 76, 69, 70, 84, 45, 72, 65, 78, 68, 32, 117,
11, 82, 73, 71, 72, 84, 45, 72, 65, 78, 68, 32, 18, 132, 1, 4, 75, 69,
77, 80, 78, 74, 168, 158, 20, 2, 66, 69, 168, 187, 7, 3, 69, 78, 68, 136,
172, 3, 3, 84, 69, 71, 207, 174, 4, 71, 8, 32, 2, 76, 73, 1, 2, 85, 76,
5, 37, 7, 32, 87, 73, 84, 72, 32, 74, 2, 185, 182, 14, 3, 69, 71, 79, 20,
50, 65, 90, 69, 146, 169, 37, 73, 2, 79, 3, 85, 10, 40, 2, 78, 71, 190,
169, 37, 69, 3, 73, 7, 11, 32, 4, 218, 4, 83, 171, 135, 11, 71, 4, 142,
169, 37, 85, 167, 80, 78, 10, 76, 6, 79, 80, 69, 78, 32, 80, 113, 9, 67,
76, 79, 83, 69, 68, 32, 80, 76, 6, 158, 168, 37, 65, 2, 73, 3, 85, 8, 72,
8, 67, 76, 79, 83, 69, 68, 32, 84, 29, 6, 79, 80, 69, 78, 32, 68, 4, 142,
245, 37, 65, 3, 85, 4, 182, 247, 37, 65, 3, 85, 12, 30, 77, 69, 3, 78,
84, 73, 6, 44, 3, 65, 68, 65, 193, 176, 35, 2, 69, 78, 5, 69, 2, 32, 76,
7, 11, 32, 4, 38, 76, 209, 189, 35, 3, 66, 65, 87, 2, 129, 158, 37, 3,
65, 78, 84, 12, 106, 83, 20, 4, 85, 76, 85, 32, 202, 128, 31, 67, 240, 6,
3, 66, 73, 83, 133, 255, 1, 4, 82, 69, 82, 69, 2, 171, 131, 25, 85, 4,
210, 221, 20, 67, 185, 133, 17, 3, 82, 73, 67, 30, 120, 3, 76, 65, 32,
32, 3, 82, 65, 32, 12, 4, 83, 85, 75, 85, 34, 84, 104, 5, 80, 69, 80, 69,
84, 53, 3, 85, 76, 85, 4, 165, 1, 4, 76, 69, 78, 71, 4, 115, 82, 5, 141,
250, 36, 3, 32, 73, 76, 10, 36, 5, 65, 76, 73, 78, 71, 99, 69, 9, 11, 32,
6, 18, 82, 55, 84, 4, 17, 2, 69, 80, 4, 11, 65, 5, 17, 2, 32, 84, 2, 11,
69, 2, 251, 254, 30, 68, 5, 213, 134, 31, 3, 32, 83, 65, 30, 86, 79, 208,
174, 23, 5, 32, 79, 70, 32, 89, 217, 172, 13, 6, 69, 84, 32, 83, 72, 79,
26, 32, 2, 79, 78, 21, 2, 84, 32, 5, 135, 217, 35, 45, 22, 44, 2, 66, 79,
246, 1, 83, 211, 238, 37, 88, 18, 38, 88, 205, 1, 4, 76, 68, 32, 83, 17,
33, 6, 32, 87, 73, 84, 72, 32, 14, 82, 66, 86, 83, 184, 230, 12, 4, 76,
73, 71, 72, 134, 189, 10, 67, 151, 203, 14, 88, 6, 52, 4, 79, 76, 68, 32,
181, 158, 37, 3, 65, 76, 76, 4, 26, 83, 191, 163, 23, 67, 2, 181, 230,
12, 4, 67, 82, 73, 80, 172, 10, 120, 2, 67, 79, 180, 1, 7, 76, 69, 84,
84, 69, 82, 32, 208, 92, 3, 78, 74, 65, 194, 238, 28, 83, 182, 203, 5,
70, 83, 81, 8, 26, 77, 167, 157, 37, 76, 6, 72, 12, 66, 73, 78, 73, 78,
71, 32, 77, 65, 82, 75, 32, 143, 234, 37, 77, 4, 184, 242, 21, 6, 84, 85,
75, 87, 69, 78, 217, 173, 3, 4, 75, 79, 81, 78, 156, 10, 170, 1, 70, 58,
75, 170, 1, 76, 66, 77, 102, 78, 234, 1, 80, 166, 104, 82, 102, 83, 134,
1, 84, 54, 89, 162, 225, 2, 87, 170, 131, 34, 69, 214, 22, 65, 2, 73, 2,
79, 3, 85, 8, 170, 80, 65, 202, 131, 37, 69, 254, 5, 79, 219, 16, 85, 22,
78, 69, 46, 79, 246, 246, 35, 89, 234, 239, 1, 80, 186, 2, 65, 2, 73, 3,
85, 6, 254, 218, 36, 85, 194, 142, 1, 78, 3, 84, 7, 162, 244, 35, 86,
141, 228, 1, 2, 71, 72, 10, 154, 103, 69, 182, 158, 26, 79, 154, 227, 10,
65, 2, 73, 3, 85, 19, 62, 69, 254, 101, 66, 238, 129, 37, 65, 2, 73, 2,
79, 3, 85, 4, 198, 245, 35, 69, 163, 242, 1, 78, 30, 102, 71, 50, 74, 50,
84, 238, 101, 85, 234, 130, 35, 83, 246, 7, 68, 222, 225, 1, 89, 218, 19,
65, 3, 73, 6, 134, 247, 32, 75, 158, 237, 4, 71, 187, 2, 65, 6, 182, 233,
26, 85, 162, 230, 10, 69, 171, 4, 65, 4, 146, 193, 37, 85, 151, 14, 69,
136, 9, 76, 5, 72, 65, 83, 69, 45, 170, 101, 69, 138, 2, 85, 218, 253,
36, 65, 3, 73, 252, 8, 116, 2, 65, 32, 168, 18, 2, 66, 32, 180, 13, 2,
67, 32, 180, 20, 2, 68, 32, 172, 18, 2, 69, 32, 153, 25, 2, 70, 32, 176,
1, 158, 1, 71, 106, 75, 130, 1, 76, 102, 77, 198, 3, 78, 210, 4, 80, 146,
2, 83, 190, 2, 84, 154, 1, 85, 216, 230, 30, 2, 70, 73, 174, 249, 4, 86,
191, 225, 1, 82, 6, 60, 5, 72, 69, 85, 65, 69, 153, 47, 5, 66, 73, 69,
69, 32, 4, 220, 27, 2, 71, 72, 215, 201, 26, 82, 12, 38, 65, 34, 69, 214,
67, 80, 3, 85, 4, 158, 223, 37, 70, 187, 2, 81, 4, 188, 129, 34, 5, 85,
75, 69, 85, 84, 251, 223, 3, 84, 10, 78, 85, 166, 66, 79, 232, 186, 26,
2, 65, 80, 213, 233, 9, 4, 69, 84, 32, 75, 5, 203, 190, 27, 65, 36, 142,
1, 65, 176, 1, 2, 66, 65, 38, 79, 76, 6, 86, 69, 85, 65, 69, 78, 180, 71,
8, 69, 85, 78, 74, 79, 77, 78, 68, 229, 217, 34, 2, 71, 66, 20, 62, 69,
236, 49, 2, 78, 83, 169, 148, 32, 4, 80, 32, 80, 73, 16, 58, 77, 142,
190, 12, 75, 138, 176, 7, 78, 167, 220, 17, 83, 11, 230, 24, 66, 14, 71,
214, 44, 86, 203, 252, 27, 75, 4, 222, 237, 19, 78, 255, 239, 17, 81, 6,
36, 2, 79, 77, 237, 1, 2, 78, 32, 4, 242, 143, 13, 80, 207, 211, 23, 69,
2, 219, 159, 36, 71, 48, 122, 65, 32, 2, 68, 65, 54, 71, 98, 75, 32, 2,
83, 72, 38, 84, 102, 89, 74, 90, 170, 155, 36, 74, 178, 109, 69, 251, 70,
73, 4, 250, 8, 65, 227, 210, 37, 81, 4, 22, 65, 203, 22, 32, 2, 217, 44,
3, 78, 71, 71, 8, 52, 3, 75, 85, 69, 170, 226, 32, 65, 167, 162, 3, 71,
4, 250, 7, 32, 201, 174, 12, 2, 78, 90, 4, 166, 26, 65, 143, 229, 19, 73,
4, 230, 231, 35, 73, 163, 242, 1, 65, 8, 40, 2, 65, 80, 185, 189, 28, 2,
79, 81, 7, 11, 32, 4, 244, 227, 35, 2, 77, 70, 1, 2, 78, 84, 6, 26, 73,
187, 188, 37, 69, 5, 193, 13, 7, 84, 32, 77, 79, 78, 71, 75, 4, 214, 5,
65, 137, 179, 12, 4, 85, 78, 32, 77, 22, 58, 65, 80, 3, 79, 78, 32, 210,
186, 37, 69, 163, 28, 85, 10, 42, 65, 198, 18, 32, 142, 18, 77, 15, 83,
4, 170, 218, 26, 82, 247, 252, 10, 77, 8, 56, 4, 77, 70, 79, 78, 1, 6,
80, 65, 32, 78, 74, 73, 4, 37, 7, 32, 80, 73, 80, 65, 69, 77, 4, 250, 16,
71, 231, 194, 37, 66, 22, 70, 72, 194, 1, 79, 144, 67, 2, 69, 85, 250,
235, 36, 85, 167, 34, 73, 10, 74, 73, 70, 85, 253, 168, 36, 10, 79, 81,
32, 78, 83, 72, 85, 84, 32, 89, 4, 238, 215, 26, 82, 237, 220, 6, 8, 78,
68, 65, 32, 80, 65, 32, 78, 4, 204, 11, 4, 69, 78, 83, 72, 211, 200, 37,
77, 6, 220, 150, 36, 2, 78, 74, 146, 189, 1, 81, 3, 84, 10, 44, 2, 69,
85, 44, 3, 73, 84, 65, 31, 85, 4, 134, 253, 35, 65, 1, 4, 84, 69, 85, 87,
2, 11, 32, 2, 195, 31, 77, 4, 234, 26, 32, 247, 149, 27, 65, 4, 228, 3,
5, 32, 89, 85, 81, 32, 245, 134, 28, 3, 78, 75, 78, 116, 164, 1, 7, 71,
72, 69, 85, 71, 72, 69, 34, 75, 126, 76, 122, 77, 154, 3, 78, 250, 2, 80,
118, 83, 178, 1, 84, 106, 89, 210, 22, 87, 220, 46, 2, 70, 69, 215, 219,
11, 86, 4, 134, 57, 85, 183, 151, 37, 78, 12, 40, 2, 69, 85, 50, 73, 235,
190, 37, 65, 6, 166, 55, 89, 174, 203, 12, 80, 243, 186, 24, 65, 4, 146,
189, 37, 69, 175, 18, 81, 8, 46, 65, 192, 70, 2, 79, 77, 135, 236, 36,
69, 4, 50, 65, 209, 61, 7, 77, 32, 78, 83, 72, 85, 84, 2, 199, 209, 26,
78, 26, 70, 65, 74, 66, 140, 1, 2, 69, 85, 58, 70, 193, 23, 3, 79, 78,
84, 7, 21, 3, 32, 78, 74, 4, 210, 238, 18, 85, 209, 160, 17, 3, 69, 85,
65, 10, 90, 65, 218, 46, 85, 152, 178, 30, 2, 69, 85, 133, 153, 6, 7, 73,
84, 32, 77, 66, 65, 65, 4, 198, 12, 65, 213, 218, 19, 4, 32, 77, 65, 69,
4, 208, 179, 32, 5, 84, 32, 78, 71, 71, 187, 152, 5, 81, 4, 48, 4, 79,
78, 32, 84, 253, 231, 26, 2, 73, 89, 2, 243, 65, 69, 26, 110, 71, 182, 1,
83, 50, 89, 200, 23, 8, 84, 73, 69, 69, 32, 83, 72, 69, 193, 187, 35, 5,
68, 85, 32, 78, 74, 14, 70, 71, 196, 208, 36, 8, 75, 73, 78, 68, 73, 32,
77, 86, 191, 104, 79, 10, 76, 3, 85, 79, 81, 244, 237, 19, 2, 69, 85,
134, 158, 16, 65, 187, 172, 1, 79, 5, 205, 212, 28, 2, 32, 76, 4, 26, 72,
243, 248, 36, 69, 2, 183, 147, 37, 85, 4, 168, 46, 2, 65, 69, 227, 17,
73, 10, 76, 3, 85, 78, 71, 252, 213, 10, 2, 69, 69, 178, 177, 12, 65,
243, 163, 14, 73, 4, 194, 194, 31, 71, 247, 199, 4, 65, 12, 88, 2, 65,
75, 16, 2, 72, 69, 156, 212, 19, 2, 69, 84, 254, 255, 15, 73, 207, 219,
1, 85, 2, 231, 25, 69, 4, 144, 227, 26, 4, 84, 32, 78, 74, 221, 138, 5,
4, 85, 65, 69, 81, 6, 32, 2, 85, 32, 195, 136, 36, 65, 4, 36, 4, 77, 65,
69, 77, 143, 7, 78, 2, 11, 71, 2, 139, 7, 66, 4, 44, 4, 65, 70, 85, 32,
233, 4, 2, 69, 85, 2, 253, 202, 32, 6, 76, 69, 69, 82, 65, 69, 198, 1,
174, 1, 71, 82, 75, 206, 2, 76, 50, 77, 250, 3, 78, 238, 6, 80, 78, 83,
134, 1, 84, 176, 1, 3, 86, 69, 85, 46, 87, 62, 89, 170, 189, 30, 66, 226,
227, 2, 70, 247, 234, 3, 82, 6, 40, 2, 72, 65, 213, 210, 19, 2, 66, 65,
4, 218, 197, 26, 82, 247, 252, 10, 80, 22, 66, 69, 182, 1, 85, 144, 221,
26, 3, 80, 65, 82, 239, 224, 10, 65, 14, 40, 2, 78, 32, 54, 85, 139, 193,
37, 84, 4, 208, 177, 33, 4, 70, 65, 84, 73, 191, 145, 3, 76, 8, 42, 83,
186, 221, 26, 75, 167, 227, 10, 77, 4, 248, 14, 3, 72, 69, 85, 255, 53,
69, 4, 48, 6, 79, 80, 32, 78, 75, 65, 131, 192, 37, 84, 2, 11, 65, 2,
255, 194, 26, 82, 8, 234, 47, 65, 222, 172, 26, 73, 155, 227, 10, 85, 38,
82, 65, 130, 1, 66, 234, 192, 26, 85, 208, 25, 4, 71, 66, 65, 83, 135,
241, 8, 73, 8, 18, 32, 79, 69, 4, 42, 78, 141, 252, 17, 4, 75, 69, 85,
65, 2, 11, 83, 2, 239, 203, 35, 73, 4, 210, 144, 37, 77, 211, 25, 83, 24,
34, 65, 114, 69, 82, 73, 35, 85, 6, 32, 2, 65, 32, 155, 205, 19, 78, 4,
192, 243, 31, 8, 67, 65, 66, 66, 65, 71, 69, 45, 253, 246, 4, 2, 80, 73,
8, 50, 85, 162, 191, 26, 82, 189, 228, 5, 2, 69, 75, 4, 146, 188, 37, 77,
3, 88, 7, 226, 7, 82, 151, 180, 37, 84, 4, 170, 169, 37, 65, 175, 18, 69,
72, 130, 1, 65, 54, 68, 110, 71, 222, 1, 74, 102, 83, 130, 1, 84, 102,
90, 253, 7, 12, 89, 73, 82, 32, 77, 75, 80, 65, 82, 65, 81, 32, 4, 140,
215, 26, 4, 78, 83, 65, 78, 167, 227, 10, 81, 12, 60, 2, 69, 85, 206, 41,
65, 238, 180, 19, 79, 135, 182, 17, 73, 4, 144, 199, 35, 2, 65, 69, 175,
242, 1, 84, 20, 50, 71, 98, 75, 234, 212, 26, 65, 195, 210, 10, 79, 12,
26, 85, 231, 232, 36, 69, 11, 212, 39, 3, 65, 69, 78, 142, 193, 36, 79,
202, 26, 69, 155, 53, 77, 4, 36, 3, 85, 69, 32, 195, 212, 26, 65, 2, 249,
205, 19, 3, 77, 65, 69, 10, 34, 65, 34, 69, 199, 233, 12, 85, 4, 186,
166, 37, 69, 219, 16, 77, 4, 210, 196, 35, 69, 227, 99, 85, 12, 78, 85,
226, 210, 26, 72, 220, 243, 5, 2, 69, 85, 242, 222, 4, 79, 219, 16, 65,
4, 208, 162, 37, 4, 79, 84, 32, 78, 179, 19, 78, 8, 54, 69, 228, 152, 37,
4, 85, 32, 77, 66, 131, 26, 65, 4, 176, 201, 19, 2, 85, 78, 235, 235, 17,
78, 4, 202, 137, 36, 69, 167, 171, 1, 65, 6, 26, 73, 211, 228, 36, 69, 4,
26, 82, 151, 180, 37, 78, 2, 131, 222, 35, 73, 12, 30, 69, 30, 72, 163,
7, 85, 4, 78, 84, 211, 164, 36, 85, 6, 48, 2, 69, 84, 226, 229, 12, 85,
155, 234, 13, 73, 2, 163, 227, 36, 70, 10, 40, 2, 65, 65, 34, 69, 41, 2,
73, 84, 2, 11, 83, 2, 207, 181, 26, 72, 4, 228, 25, 2, 85, 84, 203, 152,
37, 84, 4, 38, 85, 133, 162, 33, 3, 65, 32, 89, 2, 251, 143, 27, 65, 4,
200, 149, 28, 2, 65, 69, 131, 156, 9, 88, 4, 40, 4, 65, 78, 71, 75, 235,
176, 37, 85, 2, 143, 19, 85, 10, 42, 85, 158, 227, 12, 69, 231, 202, 24,
65, 6, 210, 18, 87, 212, 3, 4, 32, 77, 85, 79, 147, 154, 37, 77, 234, 1,
134, 1, 70, 68, 2, 71, 72, 34, 75, 254, 1, 76, 142, 1, 77, 130, 3, 78,
130, 5, 80, 122, 82, 90, 83, 190, 1, 84, 158, 1, 87, 39, 89, 4, 36, 3,
69, 85, 70, 147, 172, 37, 65, 2, 11, 69, 2, 151, 2, 85, 4, 202, 1, 69,
171, 170, 37, 65, 22, 46, 69, 146, 1, 85, 42, 87, 135, 186, 35, 89, 10,
26, 85, 195, 173, 37, 84, 8, 72, 3, 65, 69, 84, 20, 5, 79, 84, 32, 77,
66, 226, 172, 37, 77, 3, 80, 2, 207, 140, 12, 77, 2, 235, 175, 26, 85, 9,
242, 155, 37, 79, 218, 16, 78, 3, 81, 2, 139, 247, 36, 65, 14, 58, 69,
190, 200, 26, 79, 250, 240, 8, 73, 203, 225, 1, 85, 8, 42, 85, 138, 185,
35, 69, 163, 242, 1, 84, 4, 194, 137, 27, 65, 231, 161, 10, 77, 41, 94,
65, 58, 66, 66, 69, 38, 70, 80, 2, 71, 66, 226, 163, 32, 79, 198, 139, 4,
86, 151, 121, 85, 4, 144, 232, 17, 2, 76, 69, 249, 140, 19, 3, 69, 78,
74, 6, 32, 2, 65, 65, 215, 138, 37, 85, 5, 133, 135, 29, 2, 32, 83, 6,
202, 202, 18, 85, 195, 236, 16, 69, 10, 44, 2, 69, 85, 238, 170, 35, 79,
207, 11, 73, 4, 130, 146, 37, 65, 215, 22, 84, 6, 150, 182, 35, 73, 252,
70, 2, 79, 70, 247, 42, 69, 72, 78, 68, 46, 71, 226, 1, 74, 98, 83, 110,
84, 34, 89, 190, 163, 37, 73, 3, 85, 8, 210, 39, 69, 130, 176, 36, 79,
139, 63, 65, 24, 18, 71, 99, 75, 12, 54, 65, 218, 42, 69, 158, 140, 32,
87, 231, 222, 4, 85, 6, 168, 38, 2, 65, 77, 147, 128, 37, 80, 12, 68, 2,
69, 85, 174, 179, 35, 73, 2, 89, 194, 162, 1, 85, 215, 79, 65, 4, 154,
216, 12, 65, 219, 185, 24, 82, 12, 60, 2, 69, 85, 230, 15, 73, 214, 199,
12, 85, 167, 205, 24, 65, 4, 186, 146, 37, 65, 175, 18, 84, 10, 46, 72,
32, 3, 73, 69, 69, 163, 147, 37, 85, 4, 234, 135, 37, 85, 219, 5, 69, 4,
246, 163, 37, 80, 3, 84, 6, 130, 14, 69, 243, 240, 36, 85, 8, 142, 135,
37, 69, 218, 5, 85, 254, 5, 65, 219, 16, 73, 12, 42, 69, 46, 85, 162,
162, 37, 65, 3, 73, 4, 224, 165, 26, 2, 85, 84, 247, 252, 10, 69, 4, 254,
133, 37, 85, 175, 28, 81, 8, 48, 3, 69, 78, 32, 130, 142, 37, 73, 175, 1,
65, 4, 138, 242, 26, 79, 155, 141, 10, 77, 26, 58, 72, 90, 85, 202, 16,
65, 174, 6, 69, 131, 237, 36, 79, 12, 54, 69, 170, 189, 26, 79, 194, 207,
10, 73, 219, 19, 85, 6, 214, 7, 85, 235, 152, 37, 69, 6, 202, 137, 37,
65, 214, 22, 69, 3, 85, 18, 62, 69, 74, 85, 218, 187, 26, 79, 198, 204,
10, 65, 215, 22, 73, 8, 26, 85, 255, 172, 35, 69, 6, 150, 201, 35, 65,
134, 214, 1, 78, 3, 84, 5, 195, 130, 37, 79, 4, 146, 175, 32, 85, 191,
239, 4, 65, 10, 40, 2, 65, 69, 18, 85, 159, 206, 36, 69, 2, 251, 3, 77,
6, 22, 87, 243, 13, 79, 2, 203, 186, 26, 79, 188, 2, 178, 1, 70, 154, 1,
71, 202, 1, 75, 170, 1, 76, 158, 1, 77, 134, 2, 78, 206, 7, 80, 166, 2,
82, 78, 83, 166, 1, 84, 246, 1, 86, 66, 87, 34, 89, 190, 134, 37, 65, 2,
73, 3, 79, 18, 54, 85, 158, 156, 23, 65, 242, 232, 13, 69, 255, 5, 79,
10, 26, 32, 239, 178, 31, 69, 6, 156, 255, 23, 4, 82, 69, 77, 69, 242,
145, 11, 67, 183, 138, 2, 73, 16, 24, 2, 66, 69, 39, 72, 4, 162, 140, 36,
85, 195, 142, 1, 84, 12, 34, 65, 34, 69, 167, 137, 37, 79, 2, 11, 65, 2,
155, 157, 26, 77, 8, 26, 85, 227, 153, 37, 84, 6, 138, 131, 37, 65, 214,
22, 78, 3, 88, 18, 50, 69, 62, 80, 18, 85, 186, 152, 37, 73, 3, 79, 6,
26, 85, 235, 152, 37, 84, 4, 146, 130, 37, 65, 215, 22, 88, 2, 227, 28,
69, 6, 138, 252, 36, 69, 162, 28, 79, 15, 84, 18, 50, 65, 40, 2, 69, 85,
22, 79, 163, 151, 37, 85, 6, 130, 135, 37, 65, 218, 16, 80, 3, 81, 2,
135, 133, 37, 65, 8, 190, 184, 18, 79, 226, 222, 18, 77, 3, 81, 32, 110,
65, 44, 2, 66, 69, 34, 70, 20, 2, 71, 66, 34, 73, 146, 152, 26, 85, 150,
173, 10, 69, 2, 79, 139, 60, 86, 11, 218, 140, 18, 69, 170, 137, 19, 80,
3, 81, 4, 254, 132, 37, 85, 219, 16, 69, 2, 155, 200, 12, 69, 4, 194,
197, 36, 69, 227, 79, 65, 5, 175, 254, 36, 69, 82, 114, 68, 170, 1, 71,
154, 3, 74, 112, 2, 83, 72, 58, 84, 32, 3, 89, 73, 32, 54, 90, 162, 205,
36, 65, 191, 47, 75, 12, 34, 65, 98, 73, 155, 195, 36, 85, 6, 32, 2, 65,
32, 183, 147, 37, 80, 4, 208, 190, 18, 3, 77, 89, 32, 189, 188, 13, 3,
83, 79, 70, 4, 222, 175, 26, 65, 155, 227, 10, 81, 38, 78, 71, 66, 85,
122, 75, 118, 79, 128, 240, 11, 3, 69, 85, 82, 219, 159, 25, 65, 14, 34,
69, 50, 85, 167, 145, 37, 79, 6, 26, 85, 167, 159, 35, 69, 4, 167, 171,
24, 65, 6, 64, 6, 65, 69, 83, 72, 65, 69, 250, 147, 26, 82, 247, 252, 10,
80, 2, 11, 32, 2, 191, 215, 23, 78, 12, 34, 65, 20, 2, 69, 85, 35, 85, 5,
195, 252, 36, 65, 4, 230, 253, 36, 65, 175, 18, 88, 4, 242, 143, 37, 77,
3, 80, 4, 214, 143, 37, 80, 3, 81, 8, 18, 65, 31, 69, 2, 197, 139, 32, 2,
69, 77, 6, 26, 69, 179, 128, 36, 85, 5, 197, 236, 36, 4, 32, 69, 80, 79,
6, 26, 85, 147, 156, 35, 73, 4, 162, 142, 37, 79, 15, 69, 4, 186, 253,
36, 85, 207, 16, 65, 4, 180, 186, 26, 4, 67, 76, 69, 65, 167, 248, 1, 66,
4, 166, 170, 26, 65, 3, 85, 34, 42, 65, 90, 69, 58, 73, 50, 79, 23, 85,
8, 32, 2, 32, 80, 175, 131, 18, 65, 4, 252, 179, 28, 2, 69, 79, 237, 204,
7, 2, 76, 85, 6, 26, 85, 175, 251, 36, 69, 4, 130, 140, 37, 84, 3, 88, 7,
11, 69, 4, 194, 168, 26, 69, 155, 227, 10, 84, 5, 215, 187, 36, 79, 11,
82, 65, 210, 138, 37, 69, 3, 77, 8, 46, 65, 238, 14, 69, 253, 143, 19, 2,
73, 77, 4, 206, 138, 37, 69, 3, 81, 18, 62, 69, 30, 72, 146, 154, 32, 85,
242, 222, 4, 79, 163, 14, 65, 4, 242, 137, 37, 69, 3, 84, 8, 42, 69, 234,
137, 23, 79, 175, 156, 3, 73, 2, 249, 187, 12, 2, 85, 65, 28, 34, 65, 94,
69, 50, 79, 39, 85, 10, 56, 2, 69, 78, 238, 136, 23, 65, 198, 255, 13,
77, 3, 81, 2, 161, 228, 11, 3, 32, 78, 84, 6, 26, 85, 247, 135, 37, 78,
5, 195, 186, 12, 65, 6, 242, 137, 35, 79, 239, 253, 1, 81, 6, 170, 7, 77,
191, 233, 36, 65, 6, 26, 69, 171, 246, 36, 79, 4, 138, 138, 26, 85, 247,
252, 10, 69, 6, 246, 10, 69, 255, 223, 32, 85, 26, 68, 2, 69, 85, 46, 73,
32, 3, 79, 81, 32, 54, 85, 235, 132, 37, 65, 8, 214, 159, 24, 65, 158,
230, 12, 77, 3, 88, 4, 242, 238, 36, 69, 215, 22, 84, 4, 168, 214, 12, 4,
83, 87, 73, 77, 143, 205, 9, 67, 8, 218, 161, 26, 69, 150, 141, 9, 65,
134, 214, 1, 78, 3, 81, 108, 162, 1, 75, 82, 76, 46, 77, 98, 78, 190, 1,
80, 66, 82, 50, 83, 110, 84, 38, 89, 130, 228, 2, 87, 204, 204, 9, 2, 86,
85, 222, 182, 24, 69, 242, 5, 70, 231, 16, 85, 14, 178, 164, 18, 69, 194,
236, 16, 89, 234, 239, 1, 80, 186, 2, 65, 2, 79, 3, 85, 6, 170, 159, 26,
79, 154, 227, 10, 65, 3, 73, 13, 42, 66, 34, 69, 206, 129, 37, 65, 3, 79,
4, 138, 178, 36, 69, 171, 77, 65, 2, 171, 143, 35, 69, 22, 94, 71, 38,
74, 38, 85, 234, 130, 35, 83, 246, 7, 68, 150, 3, 84, 202, 222, 1, 89,
219, 19, 73, 4, 130, 145, 32, 75, 159, 237, 4, 71, 4, 190, 131, 26, 85,
203, 234, 10, 65, 5, 187, 233, 36, 65, 6, 26, 69, 239, 130, 26, 85, 4,
158, 241, 35, 85, 195, 142, 1, 69, 12, 186, 2, 69, 178, 146, 9, 73, 211,
234, 27, 85, 14, 66, 72, 230, 2, 69, 138, 146, 19, 65, 246, 196, 17, 85,
235, 36, 73, 6, 238, 234, 36, 73, 218, 19, 79, 3, 85, 6, 214, 167, 21,
65, 159, 186, 15, 69, 4, 226, 154, 26, 79, 155, 227, 10, 65, 4, 130, 231,
36, 65, 215, 22, 69, 14, 54, 69, 178, 146, 9, 73, 254, 211, 27, 65, 215,
22, 85, 6, 190, 238, 35, 85, 194, 142, 1, 69, 3, 78, 16, 62, 72, 50, 69,
138, 146, 19, 65, 246, 196, 17, 85, 235, 36, 73, 8, 46, 69, 142, 232, 36,
73, 218, 19, 79, 3, 85, 2, 163, 237, 35, 85, 10, 238, 156, 18, 69, 154,
136, 3, 65, 203, 214, 15, 73, 6, 130, 152, 26, 79, 2, 85, 155, 227, 10,
65, 14, 42, 75, 174, 188, 35, 65, 167, 159, 1, 74, 11, 49, 10, 78, 79,
84, 69, 32, 87, 73, 84, 72, 32, 8, 224, 220, 9, 2, 80, 79, 198, 1, 89,
148, 190, 12, 2, 69, 85, 187, 182, 6, 68, 6, 38, 32, 149, 137, 17, 3, 66,
69, 82, 4, 198, 233, 29, 67, 201, 252, 5, 5, 79, 70, 32, 83, 79, 78, 72,
3, 75, 69, 84, 60, 7, 83, 65, 32, 86, 65, 72, 32, 155, 237, 34, 69, 5,
193, 177, 16, 10, 66, 65, 76, 76, 32, 65, 78, 68, 32, 72, 72, 104, 10,
67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 164, 1, 7, 76, 69, 84, 84, 69,
82, 32, 151, 160, 34, 70, 10, 52, 4, 72, 73, 71, 72, 44, 3, 76, 79, 87,
39, 77, 4, 136, 246, 21, 2, 45, 76, 255, 138, 11, 32, 4, 32, 2, 45, 77,
187, 128, 33, 32, 2, 169, 128, 33, 2, 73, 68, 60, 238, 1, 68, 38, 69, 38,
71, 34, 75, 38, 85, 20, 2, 87, 65, 22, 89, 164, 132, 30, 2, 72, 87, 154,
197, 1, 77, 186, 223, 2, 79, 202, 164, 2, 86, 246, 5, 74, 2, 84, 2, 90,
162, 8, 67, 2, 83, 158, 20, 66, 2, 70, 2, 80, 186, 2, 65, 3, 73, 4, 138,
173, 34, 72, 207, 198, 2, 79, 7, 218, 238, 31, 78, 219, 132, 5, 69, 4,
166, 206, 36, 66, 219, 35, 65, 4, 238, 132, 30, 80, 131, 238, 6, 65, 5,
227, 205, 36, 87, 5, 179, 205, 36, 68, 4, 206, 242, 35, 69, 131, 105, 73,
121, 48, 3, 65, 75, 32, 230, 10, 72, 179, 200, 22, 84, 112, 196, 1, 15,
67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 28, 7, 76,
69, 84, 84, 69, 82, 32, 248, 4, 3, 80, 65, 78, 50, 83, 141, 2, 11, 86,
79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 4, 178, 239, 36, 78, 87, 72, 76,
194, 1, 77, 114, 78, 68, 2, 80, 65, 38, 83, 192, 248, 18, 4, 75, 65, 82,
79, 218, 241, 17, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 76, 2, 82, 2,
87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 10, 26, 65, 215, 235, 36, 66, 9, 45,
9, 78, 68, 65, 73, 76, 73, 78, 71, 32, 6, 162, 235, 36, 72, 2, 78, 3, 83,
10, 152, 2, 2, 79, 82, 230, 232, 36, 68, 2, 71, 2, 89, 187, 2, 65, 5,
221, 142, 21, 4, 75, 80, 65, 75, 24, 80, 10, 73, 77, 65, 76, 85, 78, 71,
85, 78, 32, 96, 2, 79, 85, 159, 235, 36, 65, 20, 194, 233, 36, 71, 2, 72,
2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 87, 2, 89, 187, 2, 65, 2, 233, 248,
18, 5, 84, 72, 69, 82, 78, 4, 166, 2, 71, 249, 248, 18, 4, 79, 78, 71,
79, 10, 96, 12, 89, 77, 66, 79, 76, 32, 66, 73, 78, 68, 85, 32, 189, 198,
10, 6, 73, 71, 78, 32, 84, 79, 8, 78, 80, 220, 177, 11, 3, 74, 85, 68,
145, 180, 25, 6, 78, 65, 32, 77, 69, 84, 4, 64, 3, 65, 78, 71, 249, 182,
23, 7, 73, 78, 65, 82, 66, 79, 82, 2, 131, 255, 25, 79, 18, 122, 85, 136,
175, 26, 6, 80, 65, 75, 80, 65, 75, 152, 254, 2, 5, 75, 65, 82, 79, 32,
254, 249, 6, 69, 162, 64, 73, 3, 79, 5, 249, 218, 30, 15, 32, 70, 79, 82,
32, 83, 73, 77, 65, 76, 85, 78, 71, 85, 78, 5, 235, 245, 23, 84, 228, 2,
182, 1, 65, 230, 2, 69, 50, 76, 146, 1, 78, 188, 10, 9, 82, 73, 65, 32,
69, 82, 70, 69, 32, 186, 5, 84, 228, 136, 33, 2, 67, 65, 176, 185, 2, 5,
86, 69, 82, 65, 71, 243, 142, 1, 68, 20, 136, 1, 4, 77, 69, 68, 32, 170,
1, 82, 140, 176, 3, 10, 67, 72, 32, 87, 73, 84, 72, 32, 85, 77, 194, 169,
7, 84, 178, 203, 25, 86, 19, 78, 8, 86, 65, 0, 2, 68, 69, 52, 4, 69, 73,
71, 72, 1, 7, 83, 73, 88, 84, 69, 69, 78, 2, 169, 190, 20, 8, 83, 67, 69,
78, 68, 73, 78, 71, 2, 161, 190, 20, 2, 84, 72, 4, 168, 222, 32, 3, 68,
69, 68, 171, 199, 3, 32, 4, 152, 209, 8, 3, 82, 32, 77, 227, 234, 26, 84,
15, 11, 76, 13, 54, 32, 200, 182, 25, 3, 72, 79, 80, 231, 236, 9, 79, 6,
162, 204, 12, 80, 236, 172, 16, 6, 87, 73, 84, 72, 32, 67, 139, 211, 6,
83, 208, 1, 84, 5, 71, 65, 76, 73, 32, 158, 9, 84, 37, 9, 90, 69, 78, 69,
32, 82, 73, 78, 71, 200, 1, 210, 1, 65, 40, 9, 67, 85, 82, 82, 69, 78,
67, 89, 32, 148, 2, 7, 76, 69, 84, 84, 69, 82, 32, 204, 3, 6, 82, 85, 80,
69, 69, 32, 34, 83, 246, 239, 22, 73, 134, 4, 86, 158, 240, 11, 68, 225,
110, 3, 71, 65, 78, 6, 138, 190, 32, 66, 50, 78, 135, 63, 85, 12, 120,
10, 78, 85, 77, 69, 82, 65, 84, 79, 82, 32, 153, 196, 23, 14, 68, 69, 78,
79, 77, 73, 78, 65, 84, 79, 82, 32, 83, 73, 10, 52, 3, 79, 78, 69, 158,
193, 31, 70, 135, 169, 3, 84, 5, 173, 208, 29, 19, 32, 76, 69, 83, 83,
32, 84, 72, 65, 78, 32, 84, 72, 69, 32, 68, 69, 78, 79, 108, 226, 1, 75,
90, 82, 238, 209, 21, 86, 190, 143, 8, 89, 178, 154, 3, 65, 38, 68, 114,
84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67,
2, 71, 2, 74, 2, 80, 138, 69, 72, 2, 76, 2, 77, 186, 2, 69, 3, 79, 8, 26,
72, 139, 218, 36, 65, 6, 26, 65, 215, 145, 14, 73, 5, 185, 231, 18, 3,
78, 68, 65, 10, 34, 65, 242, 214, 36, 72, 3, 82, 7, 33, 6, 32, 87, 73,
84, 72, 32, 4, 232, 174, 25, 5, 76, 79, 87, 69, 82, 1, 6, 77, 73, 68, 68,
76, 69, 4, 210, 209, 35, 83, 191, 69, 77, 20, 116, 19, 69, 81, 85, 69,
78, 67, 69, 32, 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 158, 154, 26,
65, 227, 158, 6, 73, 6, 154, 242, 22, 82, 175, 226, 13, 89, 4, 134, 174,
26, 32, 151, 154, 9, 79, 5, 197, 220, 33, 3, 32, 87, 73, 100, 56, 6, 67,
65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 50, 45, 9, 76, 32, 76, 69, 84,
84, 69, 82, 32, 50, 182, 2, 65, 50, 68, 42, 69, 82, 71, 38, 78, 38, 83,
154, 143, 17, 77, 136, 235, 1, 6, 72, 73, 82, 68, 69, 65, 0, 2, 75, 79,
172, 199, 13, 6, 84, 65, 84, 65, 83, 79, 196, 209, 2, 5, 66, 65, 83, 73,
71, 244, 50, 3, 87, 65, 83, 164, 108, 3, 70, 73, 84, 0, 3, 76, 65, 75,
170, 11, 79, 2, 80, 2, 85, 219, 19, 73, 4, 26, 82, 255, 210, 36, 89, 2,
215, 157, 23, 75, 4, 160, 223, 31, 3, 65, 82, 66, 3, 74, 6, 40, 4, 82,
73, 71, 79, 151, 210, 36, 72, 5, 245, 184, 20, 4, 32, 84, 65, 77, 4, 158,
243, 29, 79, 155, 220, 6, 78, 4, 242, 204, 31, 73, 187, 246, 3, 71, 4,
194, 175, 26, 72, 155, 182, 3, 69, 4, 242, 250, 34, 87, 219, 64, 32, 194,
1, 184, 2, 7, 76, 69, 84, 84, 69, 82, 32, 244, 1, 7, 78, 85, 77, 66, 69,
82, 32, 72, 5, 83, 73, 71, 78, 32, 48, 11, 86, 79, 87, 69, 76, 32, 83,
73, 71, 78, 32, 190, 138, 26, 68, 198, 247, 3, 87, 208, 195, 2, 10, 71,
65, 80, 32, 70, 73, 76, 76, 69, 82, 161, 187, 3, 12, 72, 85, 78, 68, 82,
69, 68, 83, 32, 85, 78, 73, 92, 210, 1, 86, 222, 238, 32, 65, 38, 68,
114, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2,
67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 89,
186, 2, 69, 3, 79, 8, 234, 1, 79, 231, 202, 36, 65, 36, 142, 126, 69, 38,
70, 66, 78, 26, 83, 182, 193, 21, 84, 195, 240, 12, 79, 10, 134, 174, 32,
67, 158, 67, 65, 187, 151, 3, 86, 24, 80, 2, 86, 79, 198, 243, 32, 65,
38, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 6, 33, 6, 67, 65, 76,
73, 67, 32, 6, 162, 244, 32, 82, 159, 214, 3, 76, 26, 148, 1, 4, 67, 89,
67, 76, 36, 2, 71, 32, 28, 2, 76, 76, 46, 82, 66, 84, 224, 186, 19, 4,
79, 72, 65, 90, 160, 136, 12, 2, 75, 73, 239, 180, 4, 83, 4, 142, 219,
32, 73, 247, 237, 3, 69, 4, 174, 175, 34, 82, 67, 83, 4, 164, 228, 9, 2,
69, 68, 131, 131, 24, 73, 4, 236, 219, 32, 7, 84, 72, 68, 65, 89, 32, 67,
171, 236, 3, 68, 4, 244, 224, 13, 2, 67, 79, 169, 229, 22, 4, 73, 78, 71,
32, 196, 7, 42, 65, 174, 33, 79, 165, 11, 2, 85, 69, 246, 2, 32, 2, 67,
75, 207, 128, 18, 78, 244, 2, 22, 32, 223, 31, 45, 228, 2, 210, 1, 67,
254, 4, 68, 174, 2, 70, 102, 72, 82, 76, 186, 4, 77, 250, 2, 78, 38, 80,
46, 82, 150, 4, 83, 154, 4, 84, 82, 85, 248, 2, 3, 86, 69, 82, 210, 141,
12, 79, 164, 228, 20, 3, 66, 79, 87, 187, 249, 1, 81, 102, 196, 1, 5, 73,
82, 67, 76, 69, 200, 1, 6, 85, 82, 86, 69, 68, 32, 244, 145, 26, 12, 82,
79, 83, 83, 32, 79, 78, 32, 83, 72, 73, 69, 248, 161, 3, 5, 69, 78, 84,
82, 69, 254, 172, 5, 72, 159, 14, 76, 11, 11, 32, 8, 72, 5, 87, 73, 84,
72, 32, 189, 250, 16, 7, 70, 79, 82, 32, 82, 69, 67, 6, 140, 69, 8, 87,
72, 73, 84, 69, 32, 68, 79, 218, 134, 19, 68, 181, 146, 2, 8, 84, 87, 79,
32, 87, 72, 73, 84, 16, 84, 4, 68, 79, 87, 78, 0, 2, 85, 80, 56, 3, 76,
69, 70, 1, 4, 82, 73, 71, 72, 4, 153, 155, 32, 9, 87, 65, 82, 68, 83, 32,
65, 78, 68, 4, 53, 11, 84, 87, 65, 82, 68, 83, 32, 65, 78, 68, 32, 4,
194, 163, 21, 85, 203, 170, 12, 68, 30, 64, 6, 73, 65, 77, 79, 78, 68,
152, 1, 3, 79, 87, 78, 43, 82, 13, 11, 32, 10, 154, 19, 67, 172, 136, 13,
10, 77, 73, 78, 85, 83, 32, 87, 72, 73, 84, 244, 172, 6, 6, 87, 73, 84,
72, 32, 68, 254, 178, 15, 79, 135, 13, 83, 12, 214, 19, 32, 62, 45, 151,
199, 31, 87, 6, 196, 219, 34, 2, 79, 80, 179, 21, 65, 8, 18, 76, 39, 79,
4, 142, 132, 28, 79, 179, 184, 8, 65, 4, 184, 219, 2, 2, 85, 82, 223,
189, 31, 76, 12, 38, 69, 158, 244, 34, 65, 251, 2, 79, 6, 228, 245, 34,
2, 65, 82, 247, 11, 88, 40, 64, 5, 65, 82, 71, 69, 32, 140, 2, 3, 69, 70,
84, 203, 1, 79, 12, 48, 6, 67, 73, 82, 67, 76, 69, 159, 152, 35, 83, 11,
37, 7, 32, 77, 73, 78, 85, 83, 32, 8, 54, 76, 36, 4, 82, 73, 71, 72, 13,
3, 85, 80, 80, 4, 32, 2, 69, 70, 13, 2, 79, 87, 2, 31, 84, 2, 17, 2, 69,
82, 2, 177, 183, 33, 8, 32, 81, 85, 65, 82, 84, 69, 82, 22, 96, 10, 45,
80, 79, 73, 78, 84, 73, 78, 71, 32, 64, 6, 87, 65, 82, 68, 83, 32, 175,
245, 34, 32, 12, 146, 7, 68, 190, 8, 73, 130, 233, 34, 80, 206, 24, 83,
51, 84, 4, 250, 200, 33, 69, 231, 140, 1, 66, 6, 158, 15, 87, 243, 240,
34, 90, 30, 76, 6, 69, 68, 73, 85, 77, 32, 153, 243, 21, 7, 79, 79, 78,
32, 76, 73, 76, 28, 66, 68, 42, 76, 36, 4, 82, 73, 71, 72, 12, 2, 85, 80,
111, 83, 6, 84, 3, 79, 87, 78, 231, 246, 34, 73, 6, 32, 2, 69, 70, 135,
254, 34, 79, 4, 11, 84, 4, 81, 18, 45, 80, 79, 73, 78, 84, 73, 78, 71,
32, 84, 82, 73, 65, 78, 71, 76, 69, 5, 145, 9, 2, 32, 67, 8, 198, 13, 77,
203, 132, 35, 81, 4, 194, 165, 17, 69, 139, 209, 17, 73, 8, 234, 156, 25,
85, 230, 217, 9, 65, 87, 69, 34, 52, 4, 73, 71, 72, 84, 238, 161, 34, 79,
239, 85, 69, 30, 94, 32, 84, 10, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32,
245, 1, 6, 87, 65, 82, 68, 83, 32, 6, 60, 9, 84, 82, 73, 65, 78, 71, 76,
69, 32, 239, 136, 35, 80, 2, 243, 210, 6, 67, 16, 90, 68, 88, 8, 84, 82,
73, 65, 78, 71, 76, 69, 230, 7, 73, 134, 238, 34, 80, 203, 19, 83, 4, 65,
14, 79, 85, 66, 76, 69, 32, 84, 82, 73, 65, 78, 71, 76, 69, 5, 227, 202,
12, 32, 5, 241, 249, 20, 11, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76,
8, 250, 178, 19, 65, 150, 142, 14, 69, 231, 140, 1, 66, 40, 158, 2, 77,
148, 1, 5, 81, 85, 65, 82, 69, 128, 150, 26, 3, 85, 78, 32, 160, 224, 1,
5, 75, 85, 76, 76, 32, 228, 183, 3, 3, 78, 79, 87, 168, 228, 1, 5, 65,
70, 69, 84, 89, 184, 131, 1, 13, 76, 73, 71, 72, 84, 76, 89, 32, 83, 77,
65, 76, 76, 198, 93, 67, 50, 72, 222, 1, 80, 191, 19, 84, 12, 40, 4, 65,
76, 76, 32, 143, 246, 34, 73, 10, 154, 238, 34, 68, 150, 7, 76, 70, 83,
213, 15, 13, 85, 80, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 67, 9, 11,
32, 6, 54, 67, 216, 214, 33, 3, 70, 79, 82, 223, 159, 1, 66, 2, 193, 151,
31, 3, 69, 78, 84, 14, 192, 4, 3, 73, 78, 89, 162, 195, 23, 82, 174, 182,
11, 79, 54, 69, 135, 2, 87, 18, 38, 80, 233, 249, 32, 3, 78, 73, 86, 16,
46, 32, 62, 45, 170, 1, 80, 239, 197, 31, 87, 2, 173, 129, 35, 10, 80,
79, 73, 78, 84, 73, 78, 71, 32, 66, 8, 45, 9, 80, 79, 73, 78, 84, 73, 78,
71, 32, 8, 66, 73, 224, 253, 34, 5, 68, 79, 85, 66, 76, 238, 3, 83, 51,
84, 2, 217, 254, 33, 8, 83, 79, 83, 67, 69, 76, 69, 83, 4, 21, 3, 69, 82,
32, 4, 130, 204, 24, 76, 163, 178, 9, 82, 10, 56, 6, 84, 73, 67, 65, 76,
32, 41, 4, 89, 32, 83, 77, 4, 220, 235, 34, 2, 82, 69, 235, 22, 69, 6,
21, 3, 65, 76, 76, 6, 11, 32, 6, 254, 231, 34, 68, 150, 7, 76, 135, 21,
83, 16, 84, 15, 76, 69, 84, 84, 69, 82, 32, 67, 65, 80, 73, 84, 65, 76,
32, 171, 159, 11, 70, 10, 242, 165, 36, 67, 2, 72, 2, 73, 2, 82, 3, 90,
200, 4, 52, 3, 67, 75, 32, 186, 151, 2, 83, 219, 214, 10, 87, 196, 4, 80,
7, 79, 67, 84, 65, 78, 84, 45, 149, 7, 8, 83, 69, 88, 84, 65, 78, 84, 45,
204, 3, 58, 49, 130, 3, 50, 114, 53, 50, 54, 18, 51, 215, 1, 52, 234, 1,
74, 50, 246, 1, 51, 174, 91, 52, 46, 53, 38, 54, 30, 55, 147, 197, 35,
56, 116, 62, 51, 226, 92, 52, 46, 53, 38, 54, 30, 55, 147, 197, 35, 56,
55, 54, 52, 214, 92, 53, 38, 54, 30, 55, 147, 197, 35, 56, 22, 50, 53,
166, 2, 54, 190, 90, 55, 147, 197, 35, 56, 11, 42, 54, 150, 246, 28, 55,
179, 171, 7, 56, 4, 194, 161, 36, 55, 3, 56, 56, 170, 1, 53, 50, 54, 210,
89, 52, 110, 55, 147, 197, 35, 56, 118, 62, 52, 254, 89, 51, 98, 53, 38,
54, 30, 55, 147, 197, 35, 56, 24, 46, 53, 50, 54, 190, 90, 55, 147, 197,
35, 56, 13, 206, 1, 54, 254, 242, 28, 55, 179, 171, 7, 56, 7, 187, 90,
55, 61, 54, 52, 118, 53, 230, 88, 54, 30, 55, 147, 197, 35, 56, 31, 46,
53, 170, 89, 54, 30, 55, 147, 197, 35, 56, 15, 38, 54, 158, 89, 55, 147,
197, 35, 56, 7, 170, 158, 36, 55, 3, 56, 14, 226, 88, 54, 30, 55, 147,
197, 35, 56, 31, 46, 54, 234, 87, 53, 66, 55, 147, 197, 35, 56, 6, 166,
88, 55, 147, 197, 35, 56, 120, 70, 49, 238, 1, 50, 238, 209, 25, 51, 38,
52, 30, 53, 187, 200, 10, 54, 61, 58, 50, 126, 51, 198, 210, 25, 52, 30,
53, 187, 200, 10, 54, 31, 50, 51, 142, 211, 25, 52, 30, 53, 187, 200, 10,
54, 15, 42, 52, 254, 210, 25, 53, 187, 200, 10, 54, 7, 178, 155, 36, 53,
3, 54, 15, 194, 210, 25, 52, 186, 157, 3, 53, 159, 171, 7, 54, 31, 50,
52, 186, 209, 25, 51, 66, 53, 187, 200, 10, 54, 7, 247, 209, 25, 53, 6,
226, 173, 22, 32, 213, 206, 8, 4, 66, 69, 82, 82, 232, 4, 200, 1, 3, 76,
68, 32, 78, 79, 104, 7, 80, 79, 77, 79, 70, 79, 32, 188, 6, 2, 84, 84,
216, 6, 5, 85, 81, 85, 69, 84, 54, 87, 198, 1, 88, 182, 221, 5, 77, 146,
175, 3, 89, 186, 194, 26, 65, 139, 34, 78, 14, 190, 197, 8, 83, 190, 212,
7, 69, 202, 228, 17, 70, 234, 2, 87, 203, 11, 71, 10, 26, 75, 135, 165,
23, 77, 9, 40, 4, 77, 65, 82, 75, 135, 151, 36, 83, 5, 189, 191, 23, 3,
32, 84, 65, 150, 1, 96, 13, 70, 73, 78, 65, 76, 32, 76, 69, 84, 84, 69,
82, 32, 53, 7, 76, 69, 84, 84, 69, 82, 32, 10, 250, 149, 36, 71, 2, 72,
2, 75, 2, 80, 3, 84, 140, 1, 234, 1, 65, 54, 85, 22, 69, 82, 71, 46, 73,
70, 78, 38, 79, 98, 90, 190, 160, 7, 75, 178, 223, 24, 67, 2, 76, 2, 83,
230, 57, 66, 186, 202, 1, 74, 198, 140, 2, 68, 2, 70, 2, 72, 2, 77, 2,
80, 2, 81, 2, 82, 2, 84, 2, 86, 3, 88, 21, 50, 73, 2, 85, 74, 78, 222,
146, 36, 72, 3, 77, 5, 195, 195, 35, 78, 17, 50, 78, 222, 146, 36, 69, 2,
72, 2, 73, 3, 82, 7, 218, 146, 36, 71, 3, 78, 11, 190, 146, 36, 72, 2,
78, 2, 85, 3, 87, 15, 164, 148, 34, 2, 78, 78, 238, 253, 1, 72, 2, 77, 2,
82, 3, 85, 9, 206, 147, 34, 71, 131, 254, 1, 78, 17, 66, 78, 230, 143,
35, 32, 134, 129, 1, 69, 2, 77, 2, 79, 3, 85, 4, 230, 144, 36, 71, 3, 78,
9, 202, 144, 36, 72, 2, 73, 3, 89, 66, 104, 3, 79, 77, 32, 221, 199, 21,
17, 76, 69, 32, 87, 73, 84, 72, 32, 80, 79, 80, 80, 73, 78, 71, 32, 67,
64, 152, 2, 5, 72, 65, 76, 70, 32, 232, 1, 5, 76, 69, 70, 84, 32, 88, 6,
82, 73, 71, 72, 84, 32, 88, 14, 83, 81, 85, 65, 82, 69, 32, 66, 82, 65,
67, 75, 69, 84, 210, 228, 15, 65, 226, 154, 16, 67, 210, 3, 80, 140, 3,
13, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 85, 80, 80, 135, 5, 84, 32,
148, 1, 16, 70, 79, 82, 87, 65, 82, 68, 45, 70, 65, 67, 73, 78, 71, 32,
82, 134, 132, 32, 76, 22, 82, 252, 2, 2, 83, 84, 174, 5, 66, 211, 245, 1,
73, 10, 196, 179, 29, 11, 85, 78, 78, 69, 82, 32, 70, 82, 65, 77, 69,
155, 210, 2, 79, 8, 196, 137, 32, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68,
32, 85, 80, 80, 126, 67, 51, 72, 8, 234, 137, 32, 67, 50, 72, 33, 13, 74,
85, 83, 84, 73, 70, 73, 69, 68, 32, 85, 80, 80, 5, 129, 236, 23, 9, 32,
79, 86, 69, 82, 32, 84, 79, 80, 5, 209, 248, 34, 8, 32, 79, 70, 32, 70,
76, 79, 87, 14, 58, 76, 116, 3, 84, 73, 69, 149, 170, 33, 3, 32, 65, 78,
6, 26, 32, 207, 183, 35, 73, 4, 224, 195, 9, 7, 79, 70, 32, 72, 89, 71,
73, 173, 154, 23, 6, 87, 73, 84, 72, 32, 83, 7, 211, 231, 32, 32, 218, 2,
88, 10, 32, 68, 82, 65, 87, 73, 78, 71, 83, 32, 153, 138, 35, 6, 73, 78,
71, 32, 71, 76, 216, 2, 176, 1, 2, 68, 79, 228, 6, 6, 72, 69, 65, 86, 89,
32, 254, 2, 76, 204, 25, 6, 82, 73, 71, 72, 84, 32, 144, 4, 3, 85, 80,
32, 245, 3, 9, 86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 52, 5, 85, 66, 76,
69, 32, 165, 3, 3, 87, 78, 32, 30, 58, 68, 216, 2, 2, 85, 80, 234, 5, 86,
203, 188, 29, 72, 14, 64, 8, 73, 65, 71, 79, 78, 65, 76, 32, 149, 2, 3,
79, 87, 78, 8, 104, 6, 85, 80, 80, 69, 82, 32, 205, 14, 15, 76, 79, 87,
69, 82, 32, 76, 69, 70, 84, 32, 84, 79, 32, 77, 6, 76, 8, 76, 69, 70, 84,
32, 84, 79, 32, 237, 24, 6, 82, 73, 71, 72, 84, 32, 4, 204, 23, 14, 77,
73, 68, 68, 76, 69, 32, 67, 69, 78, 84, 82, 69, 32, 191, 194, 23, 76, 6,
199, 26, 32, 36, 128, 1, 10, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 132,
1, 10, 76, 73, 71, 72, 84, 32, 65, 78, 68, 32, 210, 38, 68, 131, 4, 83,
12, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 228, 35, 2, 85, 80, 151, 5,
72, 4, 17, 2, 84, 32, 4, 230, 32, 85, 199, 180, 35, 76, 12, 76, 3, 76,
69, 70, 0, 4, 82, 73, 71, 72, 156, 36, 2, 85, 80, 235, 4, 72, 4, 17, 2,
84, 32, 4, 198, 32, 85, 135, 9, 72, 46, 136, 1, 4, 76, 69, 70, 84, 68, 2,
85, 80, 130, 1, 86, 172, 20, 2, 68, 79, 170, 2, 81, 100, 2, 84, 82, 146,
165, 29, 72, 247, 148, 6, 82, 5, 45, 9, 32, 65, 78, 68, 32, 76, 73, 71,
72, 2, 255, 169, 34, 84, 11, 29, 5, 32, 65, 78, 68, 32, 8, 42, 76, 254,
188, 29, 72, 247, 148, 6, 82, 4, 220, 195, 24, 4, 73, 71, 72, 84, 131,
142, 11, 69, 8, 209, 20, 7, 69, 82, 84, 73, 67, 65, 76, 156, 1, 56, 4,
69, 70, 84, 32, 169, 2, 5, 73, 71, 72, 84, 32, 16, 160, 27, 19, 68, 79,
87, 78, 32, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 82, 73, 71, 72, 24,
14, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 82, 73, 71, 72, 100, 14, 76,
73, 71, 72, 84, 32, 65, 78, 68, 32, 82, 73, 71, 72, 97, 17, 85, 80, 32,
72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 82, 73, 71, 72, 140, 1, 248, 1,
4, 65, 82, 67, 32, 30, 68, 248, 15, 10, 72, 79, 82, 73, 90, 79, 78, 84,
65, 76, 112, 4, 76, 69, 70, 84, 62, 81, 34, 84, 172, 1, 2, 85, 80, 120,
8, 86, 69, 82, 84, 73, 67, 65, 76, 156, 211, 13, 7, 66, 79, 84, 84, 79,
77, 32, 139, 229, 21, 82, 8, 166, 222, 17, 68, 67, 85, 80, 52, 8, 73, 65,
71, 79, 78, 65, 76, 32, 199, 14, 79, 68, 168, 1, 14, 76, 79, 87, 69, 82,
32, 76, 69, 70, 84, 32, 84, 79, 32, 96, 7, 77, 73, 68, 68, 76, 69, 32,
136, 3, 6, 85, 80, 80, 69, 82, 32, 230, 173, 34, 67, 183, 4, 68, 4, 38,
77, 33, 5, 85, 80, 80, 69, 82, 2, 29, 5, 73, 68, 68, 76, 69, 2, 129, 12,
2, 32, 67, 16, 88, 8, 76, 69, 70, 84, 32, 84, 79, 32, 213, 1, 9, 82, 73,
71, 72, 84, 32, 84, 79, 32, 10, 156, 1, 6, 76, 79, 87, 69, 82, 32, 33,
28, 85, 80, 80, 69, 82, 32, 67, 69, 78, 84, 82, 69, 32, 84, 79, 32, 77,
73, 68, 68, 76, 69, 32, 82, 73, 71, 72, 84, 6, 246, 3, 67, 215, 195, 35,
82, 5, 171, 211, 20, 32, 6, 232, 4, 15, 85, 80, 80, 69, 82, 32, 67, 69,
78, 84, 82, 69, 32, 84, 79, 235, 3, 76, 44, 144, 1, 10, 67, 69, 78, 84,
82, 69, 32, 84, 79, 32, 248, 3, 8, 76, 69, 70, 84, 32, 84, 79, 32, 193,
2, 9, 82, 73, 71, 72, 84, 32, 84, 79, 32, 20, 52, 7, 77, 73, 68, 68, 76,
69, 32, 203, 197, 23, 76, 16, 56, 4, 76, 69, 70, 84, 165, 1, 5, 82, 73,
71, 72, 84, 9, 11, 32, 6, 84, 10, 84, 79, 32, 76, 79, 87, 69, 82, 32, 67,
141, 207, 20, 5, 65, 78, 68, 32, 77, 4, 29, 5, 69, 78, 84, 82, 69, 5,
137, 232, 32, 3, 32, 84, 79, 9, 11, 32, 6, 88, 3, 65, 78, 68, 65, 15, 84,
79, 32, 76, 79, 87, 69, 82, 32, 67, 69, 78, 84, 82, 69, 2, 149, 206, 20,
11, 32, 77, 73, 68, 68, 76, 69, 32, 76, 69, 70, 5, 133, 224, 10, 9, 32,
84, 79, 32, 77, 73, 68, 68, 76, 14, 68, 6, 76, 79, 87, 69, 82, 32, 97, 7,
77, 73, 68, 68, 76, 69, 32, 6, 48, 6, 67, 69, 78, 84, 82, 69, 187, 192,
35, 82, 5, 11, 32, 2, 233, 4, 4, 84, 79, 32, 85, 8, 76, 10, 67, 69, 78,
84, 82, 69, 32, 84, 79, 32, 33, 5, 82, 73, 71, 72, 84, 4, 250, 3, 85,
231, 214, 13, 76, 5, 11, 32, 2, 157, 218, 13, 2, 84, 79, 10, 46, 76, 69,
7, 77, 73, 68, 68, 76, 69, 32, 4, 29, 5, 79, 87, 69, 82, 32, 4, 202, 227,
32, 67, 191, 218, 2, 76, 6, 34, 67, 37, 4, 76, 69, 70, 84, 2, 45, 6, 69,
78, 84, 82, 69, 32, 5, 11, 32, 2, 165, 191, 23, 2, 84, 79, 12, 36, 2, 87,
78, 253, 2, 2, 85, 66, 9, 11, 32, 6, 25, 4, 65, 78, 68, 32, 6, 202, 167,
29, 72, 218, 148, 6, 76, 31, 82, 9, 11, 32, 6, 40, 4, 65, 78, 68, 32,
187, 181, 35, 87, 4, 26, 85, 211, 189, 23, 76, 2, 225, 189, 23, 2, 80,
80, 5, 209, 146, 34, 10, 32, 65, 78, 68, 32, 72, 69, 65, 86, 89, 4, 109,
5, 85, 65, 68, 82, 85, 6, 66, 82, 189, 213, 13, 10, 79, 80, 32, 65, 78,
68, 32, 85, 80, 80, 4, 11, 73, 4, 11, 80, 4, 41, 8, 76, 69, 32, 68, 65,
83, 72, 32, 4, 166, 193, 16, 86, 167, 227, 12, 72, 11, 29, 5, 32, 65, 78,
68, 32, 8, 34, 72, 190, 184, 35, 76, 31, 82, 4, 196, 170, 24, 4, 69, 65,
86, 89, 171, 249, 4, 79, 17, 29, 5, 32, 65, 78, 68, 32, 14, 230, 168, 28,
66, 42, 84, 130, 122, 72, 218, 148, 6, 76, 31, 82, 16, 148, 2, 18, 68,
79, 87, 78, 32, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 24,
13, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 100, 13, 76, 73,
71, 72, 84, 32, 65, 78, 68, 32, 76, 69, 70, 97, 16, 85, 80, 32, 72, 69,
65, 86, 89, 32, 65, 78, 68, 32, 76, 69, 70, 2, 101, 3, 84, 32, 85, 6, 17,
2, 84, 32, 6, 58, 85, 178, 3, 68, 245, 4, 6, 86, 69, 82, 84, 73, 67, 2,
179, 194, 33, 80, 6, 17, 2, 84, 32, 6, 58, 85, 134, 4, 68, 205, 4, 6, 86,
69, 82, 84, 73, 67, 2, 239, 8, 80, 2, 185, 2, 3, 84, 32, 68, 36, 128, 1,
10, 72, 69, 65, 86, 89, 32, 65, 78, 68, 32, 188, 1, 10, 76, 73, 71, 72,
84, 32, 65, 78, 68, 32, 186, 2, 68, 131, 4, 83, 12, 80, 4, 68, 79, 87,
78, 24, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 255, 4, 72, 2, 145, 5, 2,
32, 72, 4, 17, 2, 84, 32, 4, 26, 68, 151, 177, 35, 76, 2, 129, 191, 33,
3, 79, 87, 78, 12, 80, 4, 68, 79, 87, 78, 24, 3, 76, 69, 70, 0, 4, 82,
73, 71, 72, 211, 4, 72, 2, 229, 4, 2, 32, 72, 4, 17, 2, 84, 32, 4, 22,
68, 131, 5, 72, 2, 233, 4, 3, 79, 87, 78, 24, 130, 1, 68, 188, 1, 10, 72,
69, 65, 86, 89, 32, 65, 78, 68, 32, 144, 1, 10, 76, 73, 71, 72, 84, 32,
65, 78, 68, 32, 183, 1, 83, 6, 49, 10, 79, 85, 66, 76, 69, 32, 65, 78,
68, 32, 6, 92, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 13, 10, 72, 79, 82,
73, 90, 79, 78, 84, 65, 76, 2, 11, 84, 2, 169, 129, 27, 2, 32, 83, 6, 54,
72, 68, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 37, 7, 79, 82, 73, 90,
79, 78, 84, 2, 141, 186, 33, 2, 65, 76, 2, 243, 185, 33, 84, 6, 54, 72,
60, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 37, 7, 79, 82, 73, 90, 79,
78, 84, 2, 29, 2, 65, 76, 2, 11, 84, 2, 17, 2, 32, 72, 2, 225, 195, 35,
3, 69, 65, 86, 6, 49, 10, 73, 78, 71, 76, 69, 32, 65, 78, 68, 32, 6, 96,
3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 177, 197, 26, 9, 72, 79, 82, 73, 90,
79, 78, 84, 65, 2, 187, 197, 26, 84, 134, 6, 46, 65, 178, 14, 69, 150, 1,
73, 179, 1, 79, 232, 5, 36, 4, 72, 77, 73, 32, 247, 9, 73, 230, 1, 192,
1, 7, 76, 69, 84, 84, 69, 82, 32, 196, 2, 7, 78, 85, 77, 66, 69, 82, 32,
144, 2, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 84, 5, 83,
73, 71, 78, 32, 122, 86, 159, 138, 25, 68, 108, 210, 1, 79, 242, 241, 31,
65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, 42, 76, 226,
195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69,
72, 2, 77, 2, 82, 2, 89, 187, 2, 69, 15, 45, 9, 76, 68, 32, 84, 65, 77,
73, 76, 32, 12, 150, 152, 29, 76, 142, 155, 2, 83, 210, 97, 78, 131, 246,
2, 82, 42, 82, 69, 38, 70, 66, 78, 26, 83, 182, 193, 21, 84, 130, 234, 5,
79, 227, 227, 7, 74, 4, 129, 189, 31, 4, 73, 71, 72, 84, 8, 26, 79, 143,
168, 21, 73, 4, 254, 221, 33, 82, 135, 183, 1, 85, 4, 65, 3, 73, 78, 69,
8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 175, 187, 35, 84, 10, 46, 76,
130, 222, 12, 68, 177, 16, 2, 67, 82, 4, 242, 210, 19, 79, 147, 222, 14,
73, 12, 174, 174, 31, 67, 228, 67, 9, 79, 76, 68, 32, 84, 65, 77, 73, 76,
246, 157, 1, 74, 158, 2, 86, 122, 85, 255, 243, 1, 65, 34, 64, 10, 79,
87, 69, 76, 32, 83, 73, 71, 78, 32, 187, 142, 33, 73, 32, 138, 1, 79,
228, 199, 29, 11, 66, 72, 65, 84, 84, 73, 80, 82, 79, 76, 85, 198, 170,
2, 65, 38, 85, 22, 86, 166, 202, 1, 73, 199, 140, 2, 69, 7, 181, 173, 31,
10, 76, 68, 32, 84, 65, 77, 73, 76, 32, 83, 130, 4, 72, 12, 76, 76, 69,
32, 80, 65, 84, 84, 69, 82, 78, 32, 191, 200, 35, 78, 128, 4, 44, 5, 68,
79, 84, 83, 45, 207, 250, 6, 66, 254, 3, 74, 49, 74, 50, 66, 51, 54, 52,
46, 53, 38, 54, 30, 55, 147, 197, 35, 56, 129, 2, 66, 50, 66, 51, 54, 52,
46, 53, 38, 54, 30, 55, 147, 197, 35, 56, 129, 1, 58, 51, 54, 52, 46, 53,
38, 54, 30, 55, 147, 197, 35, 56, 65, 50, 52, 46, 53, 38, 54, 30, 55,
147, 197, 35, 56, 33, 42, 53, 38, 54, 30, 55, 147, 197, 35, 56, 17, 34,
54, 30, 55, 147, 197, 35, 56, 9, 26, 55, 147, 197, 35, 56, 5, 143, 197,
35, 56, 8, 26, 65, 143, 174, 35, 86, 6, 196, 205, 20, 11, 75, 32, 80, 69,
82, 77, 73, 84, 84, 69, 68, 228, 176, 8, 6, 83, 84, 45, 70, 69, 69, 183,
198, 6, 68, 10, 42, 68, 96, 2, 69, 70, 199, 191, 35, 67, 4, 212, 197, 32,
6, 71, 69, 32, 65, 84, 32, 149, 158, 1, 9, 69, 32, 87, 73, 84, 72, 32,
86, 69, 4, 190, 153, 32, 67, 159, 169, 3, 83, 12, 84, 4, 75, 69, 78, 32,
244, 204, 8, 2, 67, 67, 176, 237, 25, 2, 87, 78, 231, 118, 79, 6, 196,
199, 27, 17, 67, 73, 82, 67, 76, 69, 32, 87, 73, 84, 72, 32, 78, 79, 82,
84, 72, 222, 214, 6, 66, 151, 28, 72, 134, 1, 208, 1, 4, 66, 66, 76, 69,
46, 71, 156, 4, 4, 72, 73, 68, 32, 36, 2, 76, 76, 122, 83, 56, 4, 84, 84,
69, 82, 164, 134, 11, 10, 73, 76, 68, 73, 78, 71, 32, 67, 79, 78, 144,
226, 16, 2, 82, 82, 255, 253, 6, 67, 4, 144, 171, 28, 2, 32, 84, 131,
148, 7, 83, 63, 33, 6, 73, 78, 69, 83, 69, 32, 60, 144, 1, 7, 76, 69, 84,
84, 69, 82, 32, 172, 2, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32,
146, 196, 16, 69, 141, 253, 13, 4, 80, 65, 76, 76, 46, 154, 1, 77, 34,
78, 190, 185, 35, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2,
80, 2, 82, 2, 83, 2, 84, 2, 86, 2, 89, 187, 2, 65, 4, 218, 185, 35, 80,
187, 2, 65, 12, 46, 71, 34, 89, 238, 184, 35, 82, 187, 2, 65, 4, 138,
185, 35, 75, 187, 2, 65, 4, 234, 184, 35, 67, 187, 2, 65, 10, 174, 164,
35, 65, 214, 22, 69, 2, 73, 2, 79, 3, 85, 40, 230, 164, 10, 76, 167, 253,
18, 86, 10, 56, 2, 69, 84, 20, 4, 72, 79, 82, 78, 175, 175, 9, 83, 5,
179, 246, 31, 32, 5, 189, 210, 27, 5, 32, 87, 73, 84, 72, 9, 26, 84, 147,
228, 32, 32, 4, 182, 210, 27, 83, 15, 32, 5, 199, 149, 35, 70, 240, 3,
140, 1, 23, 90, 65, 78, 84, 73, 78, 69, 32, 77, 85, 83, 73, 67, 65, 76,
32, 83, 89, 77, 66, 79, 76, 32, 153, 200, 20, 5, 84, 69, 32, 79, 82, 238,
3, 154, 2, 65, 128, 7, 2, 67, 72, 170, 1, 68, 158, 5, 69, 206, 2, 70,
166, 8, 71, 202, 3, 73, 162, 2, 75, 142, 5, 76, 190, 2, 77, 250, 4, 79,
114, 80, 174, 4, 82, 42, 83, 194, 5, 84, 196, 5, 2, 86, 65, 250, 1, 89,
178, 196, 32, 78, 201, 146, 2, 9, 88, 73, 82, 79, 78, 32, 75, 76, 65, 62,
60, 5, 71, 79, 71, 73, 32, 222, 1, 78, 118, 80, 199, 2, 82, 16, 70, 65,
0, 2, 71, 79, 64, 2, 77, 69, 37, 5, 80, 79, 76, 73, 32, 4, 17, 2, 82, 71,
4, 128, 242, 15, 2, 79, 84, 147, 194, 19, 73, 4, 158, 164, 9, 84, 243,
251, 25, 83, 4, 26, 65, 1, 2, 71, 79, 2, 239, 222, 17, 82, 6, 72, 6, 84,
73, 75, 69, 78, 79, 161, 145, 35, 6, 65, 84, 82, 73, 67, 72, 4, 168, 32,
2, 75, 89, 231, 143, 35, 77, 22, 52, 5, 69, 83, 79, 32, 69, 38, 79, 239,
157, 35, 76, 4, 204, 1, 2, 88, 79, 147, 55, 75, 16, 80, 6, 83, 84, 82,
79, 70, 79, 188, 40, 3, 68, 69, 82, 237, 129, 1, 2, 84, 72, 10, 24, 2,
73, 32, 79, 83, 4, 56, 9, 83, 89, 78, 68, 69, 83, 77, 79, 83, 195, 24,
84, 2, 143, 44, 32, 7, 11, 32, 4, 214, 60, 68, 183, 166, 22, 78, 18, 48,
2, 71, 79, 33, 6, 75, 84, 73, 75, 79, 32, 4, 170, 21, 83, 255, 153, 35,
78, 14, 130, 216, 27, 86, 146, 184, 7, 90, 162, 8, 75, 254, 2, 68, 2, 78,
162, 17, 71, 3, 80, 14, 80, 4, 82, 79, 65, 32, 168, 37, 4, 79, 82, 69,
86, 221, 2, 4, 65, 77, 73, 76, 6, 132, 235, 19, 2, 83, 80, 232, 192, 3,
3, 90, 89, 71, 205, 204, 10, 3, 75, 76, 73, 42, 50, 73, 244, 231, 8, 2,
65, 83, 239, 165, 26, 89, 38, 122, 65, 200, 1, 5, 69, 83, 73, 83, 32, 70,
71, 208, 1, 3, 80, 76, 73, 249, 208, 27, 8, 70, 84, 79, 71, 71, 79, 83,
32, 10, 48, 6, 83, 84, 79, 76, 73, 32, 243, 240, 33, 82, 8, 80, 6, 65,
80, 76, 73, 32, 77, 174, 55, 68, 185, 241, 22, 5, 84, 72, 69, 83, 69, 4,
40, 2, 69, 71, 217, 190, 28, 2, 73, 75, 2, 195, 166, 30, 65, 12, 38, 84,
246, 50, 65, 42, 68, 63, 77, 6, 194, 10, 69, 239, 41, 82, 10, 72, 5, 79,
82, 71, 79, 78, 173, 168, 35, 7, 82, 65, 77, 77, 65, 32, 71, 9, 69, 15,
32, 80, 65, 82, 69, 83, 84, 73, 71, 77, 69, 78, 79, 78, 32, 6, 222, 38,
68, 137, 10, 8, 65, 82, 73, 83, 84, 69, 82, 65, 5, 175, 47, 32, 16, 166,
1, 78, 116, 6, 84, 69, 82, 79, 78, 32, 188, 44, 4, 88, 79, 32, 69, 136,
147, 33, 4, 80, 69, 71, 69, 236, 48, 6, 75, 83, 84, 82, 69, 80, 237, 13,
3, 76, 65, 70, 4, 224, 22, 3, 68, 79, 70, 221, 184, 27, 18, 65, 82, 88,
73, 83, 32, 75, 65, 73, 32, 70, 84, 72, 79, 82, 65, 32, 86, 4, 208, 11,
5, 65, 82, 71, 79, 83, 151, 20, 80, 44, 180, 1, 9, 65, 78, 69, 82, 79,
83, 73, 83, 32, 52, 6, 84, 72, 79, 82, 65, 32, 165, 6, 22, 72, 84, 79,
82, 65, 32, 83, 75, 76, 73, 82, 79, 78, 32, 67, 72, 82, 79, 77, 65, 32,
86, 6, 246, 4, 68, 14, 77, 25, 5, 84, 69, 84, 82, 65, 36, 220, 2, 8, 65,
82, 67, 72, 65, 73, 79, 78, 80, 10, 68, 73, 65, 84, 79, 78, 73, 75, 73,
32, 96, 11, 73, 32, 89, 70, 69, 83, 73, 83, 32, 84, 69, 32, 15, 77, 65,
76, 65, 75, 79, 78, 32, 67, 72, 82, 79, 77, 65, 32, 74, 78, 40, 8, 83,
75, 76, 73, 82, 79, 78, 32, 157, 229, 18, 18, 69, 78, 65, 82, 77, 79, 78,
73, 79, 83, 32, 65, 78, 84, 73, 70, 79, 78, 5, 57, 12, 32, 68, 69, 89,
84, 69, 82, 79, 85, 32, 73, 67, 2, 147, 201, 27, 72, 14, 62, 78, 210,
128, 35, 90, 162, 8, 75, 254, 2, 68, 163, 17, 80, 6, 242, 39, 73, 187,
185, 33, 65, 2, 237, 42, 4, 84, 65, 82, 84, 4, 18, 68, 15, 77, 2, 35, 73,
2, 21, 3, 79, 78, 79, 2, 151, 19, 70, 4, 166, 19, 65, 193, 128, 33, 2,
69, 78, 6, 84, 7, 67, 72, 82, 79, 77, 65, 32, 193, 169, 17, 8, 68, 73,
65, 84, 79, 78, 79, 78, 4, 42, 86, 169, 173, 17, 4, 83, 89, 78, 65, 2,
251, 245, 32, 65, 22, 80, 6, 69, 78, 73, 75, 73, 32, 44, 2, 79, 82, 185,
26, 5, 82, 79, 78, 84, 72, 4, 192, 149, 31, 2, 68, 73, 1, 2, 89, 70, 16,
68, 2, 71, 79, 225, 1, 10, 84, 72, 77, 73, 75, 79, 78, 32, 78, 32, 12,
28, 2, 78, 32, 155, 1, 83, 10, 96, 14, 80, 65, 82, 69, 83, 84, 73, 71,
77, 69, 78, 79, 78, 32, 242, 33, 65, 113, 3, 78, 69, 79, 4, 214, 24, 68,
229, 239, 32, 5, 65, 82, 73, 83, 84, 2, 217, 228, 33, 5, 89, 78, 84, 72,
69, 4, 142, 28, 65, 1, 2, 68, 73, 16, 56, 2, 77, 73, 114, 83, 181, 152,
34, 4, 67, 72, 65, 68, 8, 34, 70, 169, 28, 3, 68, 73, 65, 6, 40, 4, 84,
72, 79, 82, 251, 139, 34, 79, 4, 198, 200, 34, 79, 227, 79, 65, 6, 44, 6,
65, 75, 73, 65, 32, 84, 231, 13, 79, 2, 165, 221, 21, 12, 69, 76, 79, 85,
83, 32, 73, 67, 72, 73, 77, 65, 54, 108, 2, 65, 84, 96, 6, 69, 78, 84,
73, 77, 65, 140, 1, 5, 76, 65, 83, 77, 65, 18, 79, 98, 82, 175, 1, 89, 6,
40, 3, 65, 86, 65, 201, 3, 2, 72, 73, 4, 140, 29, 5, 32, 84, 82, 79, 77,
219, 215, 34, 83, 18, 24, 2, 84, 65, 15, 32, 11, 11, 32, 8, 36, 4, 78,
69, 79, 32, 183, 28, 65, 6, 208, 166, 28, 2, 77, 69, 170, 222, 2, 75,
235, 230, 3, 65, 7, 243, 28, 32, 8, 64, 6, 78, 84, 69, 86, 77, 65, 146,
225, 8, 82, 163, 145, 26, 85, 5, 145, 181, 14, 2, 32, 65, 14, 44, 4, 65,
84, 73, 77, 105, 3, 69, 77, 65, 12, 18, 65, 35, 79, 8, 182, 23, 32, 151,
249, 34, 84, 4, 134, 12, 75, 181, 220, 31, 5, 89, 80, 79, 82, 82, 2, 175,
166, 27, 83, 2, 243, 240, 34, 76, 14, 22, 69, 147, 22, 89, 12, 44, 5, 73,
77, 77, 65, 32, 191, 154, 30, 77, 10, 72, 2, 69, 78, 0, 5, 73, 77, 73,
83, 69, 54, 84, 69, 3, 68, 89, 79, 2, 237, 185, 27, 8, 79, 83, 32, 67,
72, 82, 79, 78, 4, 44, 5, 69, 83, 83, 65, 82, 1, 2, 82, 73, 2, 17, 2, 79,
78, 2, 25, 4, 32, 67, 72, 82, 2, 175, 131, 34, 79, 28, 84, 8, 65, 82, 84,
89, 82, 73, 65, 32, 229, 138, 31, 7, 73, 75, 82, 79, 78, 32, 73, 26, 72,
5, 65, 76, 76, 73, 32, 38, 68, 38, 80, 134, 1, 86, 30, 84, 87, 76, 4, 34,
68, 177, 2, 3, 80, 82, 79, 2, 237, 2, 5, 69, 89, 84, 69, 82, 8, 60, 7,
76, 65, 71, 73, 79, 83, 32, 45, 4, 82, 79, 84, 79, 4, 200, 1, 5, 84, 69,
84, 65, 82, 111, 73, 4, 22, 86, 227, 1, 83, 2, 209, 1, 3, 65, 82, 89, 8,
56, 8, 69, 84, 65, 82, 84, 79, 83, 32, 61, 2, 82, 73, 4, 22, 76, 135, 1,
73, 2, 21, 3, 69, 71, 69, 2, 63, 84, 4, 18, 70, 35, 84, 2, 221, 217, 21,
3, 79, 78, 73, 2, 11, 79, 2, 11, 83, 2, 17, 2, 32, 73, 2, 199, 132, 23,
67, 18, 92, 4, 76, 73, 71, 79, 180, 1, 5, 89, 82, 65, 78, 73, 210, 14,
88, 249, 169, 34, 2, 77, 65, 4, 211, 1, 78, 42, 60, 2, 65, 82, 100, 2,
73, 65, 90, 69, 169, 1, 2, 83, 73, 12, 40, 2, 65, 75, 161, 190, 17, 2,
73, 67, 10, 52, 3, 65, 76, 69, 45, 6, 76, 73, 84, 73, 75, 73, 4, 11, 83,
4, 17, 2, 77, 65, 4, 23, 32, 7, 11, 32, 4, 198, 15, 65, 211, 171, 22, 78,
12, 72, 3, 84, 65, 83, 136, 3, 6, 76, 65, 83, 84, 79, 78, 135, 229, 8,
82, 6, 26, 84, 203, 132, 35, 77, 4, 32, 2, 79, 75, 223, 134, 35, 73, 2,
165, 229, 34, 2, 79, 85, 14, 36, 5, 70, 73, 83, 84, 79, 67, 76, 10, 46,
80, 214, 1, 78, 170, 8, 76, 187, 1, 83, 2, 135, 11, 65, 4, 246, 181, 34,
79, 227, 79, 73, 4, 178, 5, 69, 221, 222, 34, 2, 65, 80, 42, 120, 5, 69,
73, 83, 77, 65, 32, 8, 73, 77, 65, 78, 83, 73, 83, 32, 182, 1, 84, 154,
1, 89, 229, 243, 1, 3, 65, 88, 73, 5, 11, 32, 2, 151, 183, 22, 78, 16,
36, 2, 65, 82, 1, 3, 84, 72, 69, 8, 25, 4, 83, 69, 79, 83, 9, 11, 32, 6,
18, 84, 39, 68, 4, 34, 82, 13, 4, 69, 84, 82, 65, 2, 11, 73, 2, 217, 171,
27, 3, 83, 73, 77, 8, 68, 5, 65, 86, 82, 79, 83, 52, 4, 82, 65, 71, 71,
251, 218, 16, 73, 5, 29, 5, 32, 65, 80, 79, 68, 2, 199, 232, 8, 69, 2,
253, 243, 1, 2, 73, 83, 12, 34, 78, 149, 1, 3, 82, 77, 65, 8, 36, 5, 65,
71, 77, 65, 32, 91, 69, 6, 154, 8, 65, 210, 171, 22, 78, 237, 245, 4, 10,
77, 69, 84, 65, 32, 83, 84, 65, 86, 82, 2, 243, 222, 34, 86, 5, 11, 84,
2, 243, 137, 17, 73, 40, 42, 69, 70, 72, 218, 1, 82, 227, 2, 73, 6, 136,
12, 3, 84, 82, 65, 186, 174, 8, 76, 237, 178, 24, 2, 83, 83, 12, 26, 69,
251, 217, 34, 73, 10, 64, 2, 77, 65, 217, 231, 33, 8, 83, 32, 75, 65, 73,
32, 65, 80, 9, 56, 2, 32, 65, 33, 8, 84, 73, 83, 77, 79, 83, 32, 69, 2,
145, 253, 33, 3, 80, 76, 79, 4, 174, 222, 34, 83, 3, 88, 20, 38, 73, 73,
5, 79, 77, 73, 75, 79, 6, 48, 2, 71, 79, 206, 248, 29, 80, 227, 131, 5,
65, 2, 247, 193, 33, 82, 14, 42, 76, 32, 2, 78, 32, 62, 80, 95, 83, 2,
11, 89, 2, 183, 218, 34, 71, 6, 26, 65, 195, 174, 22, 78, 4, 250, 2, 82,
231, 213, 34, 76, 4, 46, 65, 193, 197, 33, 5, 83, 73, 70, 73, 83, 2, 193,
217, 34, 6, 82, 65, 75, 65, 76, 69, 2, 11, 89, 2, 217, 211, 16, 2, 78,
65, 10, 26, 82, 175, 216, 34, 84, 8, 21, 3, 69, 73, 65, 8, 26, 32, 113,
2, 73, 32, 6, 38, 69, 242, 5, 68, 183, 166, 22, 78, 2, 11, 75, 2, 29, 5,
70, 79, 78, 73, 84, 2, 249, 168, 34, 2, 73, 75, 2, 11, 65, 2, 11, 82, 2,
237, 167, 34, 3, 67, 72, 65, 22, 28, 2, 70, 69, 231, 3, 80, 14, 34, 78,
49, 4, 83, 73, 83, 32, 4, 11, 32, 4, 202, 231, 30, 75, 235, 230, 3, 65,
10, 42, 65, 42, 68, 62, 77, 89, 2, 84, 82, 2, 133, 2, 6, 80, 76, 73, 32,
68, 89, 2, 233, 1, 11, 73, 71, 82, 65, 77, 77, 79, 83, 32, 69, 88, 2,
173, 1, 18, 79, 78, 79, 71, 82, 65, 77, 77, 79, 83, 32, 84, 69, 83, 83,
69, 82, 65, 4, 11, 73, 4, 60, 11, 71, 82, 65, 77, 77, 79, 83, 32, 79, 75,
84, 59, 84, 2, 11, 79, 2, 153, 180, 2, 6, 32, 68, 79, 68, 69, 75, 2, 237,
163, 34, 4, 73, 77, 79, 82, 8, 26, 79, 139, 240, 29, 83, 6, 56, 6, 75,
82, 73, 83, 73, 83, 181, 252, 29, 2, 82, 82, 5, 17, 2, 32, 68, 2, 11, 73,
2, 183, 239, 29, 80, 232, 82, 182, 1, 65, 250, 71, 69, 230, 1, 72, 222,
32, 73, 208, 41, 3, 74, 75, 32, 138, 26, 76, 186, 18, 79, 238, 117, 82,
234, 7, 85, 150, 128, 2, 89, 134, 180, 19, 71, 190, 235, 10, 83, 203, 18,
67, 198, 13, 110, 68, 58, 76, 50, 77, 90, 78, 174, 51, 80, 62, 82, 198,
7, 84, 138, 1, 85, 162, 185, 18, 67, 227, 208, 6, 83, 4, 34, 85, 205,
164, 27, 2, 65, 32, 2, 147, 229, 7, 67, 4, 248, 219, 9, 3, 76, 32, 77,
231, 218, 19, 69, 6, 36, 3, 69, 82, 65, 195, 158, 34, 80, 5, 237, 202,
27, 7, 32, 87, 73, 84, 72, 32, 70, 193, 11, 148, 1, 16, 65, 68, 73, 65,
78, 32, 83, 89, 76, 76, 65, 66, 73, 67, 83, 32, 148, 49, 2, 67, 69, 94,
68, 140, 249, 23, 3, 78, 69, 68, 171, 172, 10, 79, 172, 11, 226, 1, 65,
190, 1, 66, 162, 2, 67, 242, 8, 69, 50, 70, 198, 4, 72, 38, 73, 30, 75,
134, 1, 76, 82, 77, 174, 1, 78, 202, 4, 81, 178, 1, 79, 194, 1, 80, 70,
82, 142, 1, 83, 194, 4, 84, 246, 3, 87, 254, 5, 89, 143, 225, 17, 71, 21,
90, 65, 30, 73, 40, 10, 84, 72, 65, 80, 65, 83, 67, 65, 78, 32, 242, 234,
34, 78, 3, 89, 7, 178, 235, 34, 73, 3, 89, 5, 169, 242, 23, 5, 86, 73,
76, 73, 75, 4, 238, 234, 34, 77, 3, 83, 42, 156, 1, 9, 76, 65, 67, 75,
70, 79, 79, 84, 32, 212, 171, 19, 9, 73, 66, 76, 69, 45, 67, 82, 69, 69,
137, 208, 7, 10, 69, 65, 86, 69, 82, 32, 68, 69, 78, 69, 36, 82, 87, 162,
242, 11, 75, 2, 78, 194, 246, 22, 65, 2, 69, 2, 73, 2, 79, 3, 83, 11,
222, 232, 34, 65, 2, 69, 2, 73, 3, 79, 141, 3, 82, 65, 186, 42, 87, 222,
181, 8, 72, 154, 190, 23, 79, 238, 60, 73, 199, 140, 2, 69, 241, 2, 48,
6, 82, 82, 73, 69, 82, 32, 227, 218, 32, 65, 234, 2, 170, 1, 68, 122, 71,
94, 72, 46, 73, 46, 74, 82, 75, 30, 78, 66, 83, 66, 80, 2, 90, 58, 84,
38, 76, 132, 1, 2, 67, 72, 2, 77, 2, 82, 2, 87, 2, 89, 171, 201, 34, 69,
32, 46, 69, 202, 5, 76, 2, 90, 255, 223, 34, 73, 6, 26, 78, 171, 229, 34,
69, 4, 134, 154, 17, 69, 249, 211, 6, 2, 84, 65, 30, 254, 4, 72, 202,
186, 21, 87, 198, 147, 9, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85,
19, 162, 4, 87, 170, 201, 34, 69, 215, 22, 73, 5, 197, 150, 14, 6, 78,
73, 84, 73, 65, 76, 26, 202, 3, 74, 222, 159, 34, 69, 234, 61, 87, 186,
2, 65, 2, 73, 2, 79, 3, 85, 26, 154, 1, 75, 227, 1, 72, 14, 186, 162, 34,
69, 162, 64, 65, 2, 71, 2, 73, 2, 79, 3, 85, 26, 62, 72, 190, 161, 34,
69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 15, 186, 161, 34, 69, 162, 64, 65,
2, 73, 2, 79, 3, 85, 72, 34, 76, 70, 84, 66, 72, 3, 83, 24, 130, 1, 72,
222, 159, 34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 24, 62, 83, 222, 159,
34, 69, 162, 64, 65, 2, 73, 2, 79, 3, 85, 12, 218, 159, 34, 69, 162, 64,
65, 2, 73, 2, 79, 3, 85, 7, 236, 29, 4, 65, 83, 84, 69, 215, 193, 34, 78,
51, 74, 65, 22, 73, 142, 137, 32, 85, 250, 11, 79, 254, 83, 87, 183, 245,
1, 69, 7, 131, 210, 32, 65, 33, 40, 4, 78, 65, 76, 32, 139, 222, 34, 73,
28, 160, 1, 2, 68, 79, 134, 1, 82, 78, 83, 138, 148, 14, 71, 186, 2, 65,
180, 182, 3, 6, 66, 79, 84, 84, 79, 77, 0, 3, 84, 79, 80, 150, 131, 13,
80, 175, 247, 2, 77, 6, 44, 5, 85, 66, 76, 69, 32, 235, 184, 24, 87, 4,
164, 205, 6, 12, 83, 72, 79, 82, 84, 32, 86, 69, 82, 84, 73, 67, 187,
202, 7, 65, 6, 38, 73, 149, 141, 33, 3, 65, 73, 83, 4, 254, 204, 17, 71,
231, 141, 17, 78, 4, 240, 171, 25, 4, 77, 65, 76, 76, 133, 135, 7, 4, 72,
79, 82, 84, 4, 234, 201, 26, 89, 231, 144, 8, 75, 7, 170, 218, 34, 73, 3,
78, 39, 66, 87, 234, 27, 65, 182, 244, 31, 79, 238, 60, 73, 199, 140, 2,
69, 19, 210, 156, 12, 65, 202, 243, 19, 79, 238, 60, 73, 199, 140, 2, 69,
49, 142, 7, 72, 154, 20, 65, 66, 87, 246, 243, 31, 79, 238, 60, 73, 199,
140, 2, 69, 43, 70, 69, 38, 79, 238, 25, 65, 66, 87, 226, 176, 32, 73,
199, 140, 2, 72, 7, 153, 234, 26, 4, 68, 73, 65, 76, 7, 11, 79, 5, 193,
144, 33, 8, 83, 69, 45, 67, 82, 69, 69, 32, 149, 1, 164, 1, 8, 45, 67,
82, 69, 69, 32, 84, 72, 38, 65, 250, 2, 71, 76, 2, 78, 71, 48, 4, 85, 78,
65, 86, 142, 20, 79, 30, 87, 226, 176, 32, 73, 198, 140, 2, 69, 3, 72, 6,
158, 201, 32, 73, 199, 140, 2, 69, 63, 104, 6, 83, 75, 65, 80, 73, 32,
188, 1, 7, 84, 84, 73, 76, 73, 75, 32, 214, 198, 32, 65, 199, 140, 2, 89,
30, 70, 83, 86, 87, 210, 17, 67, 2, 75, 2, 77, 2, 78, 2, 84, 3, 89, 14,
174, 218, 29, 67, 2, 80, 2, 84, 236, 103, 2, 75, 87, 190, 156, 2, 87,
151, 119, 45, 4, 194, 180, 34, 79, 191, 28, 65, 24, 30, 72, 1, 3, 83, 72,
82, 12, 134, 193, 30, 65, 194, 200, 1, 79, 239, 60, 73, 19, 38, 65, 242,
136, 32, 79, 239, 60, 73, 9, 218, 197, 32, 65, 199, 140, 2, 73, 15, 138,
192, 30, 65, 194, 200, 1, 79, 239, 60, 73, 18, 224, 9, 3, 73, 75, 32,
185, 207, 23, 2, 85, 84, 33, 68, 7, 74, 73, 66, 87, 65, 89, 32, 210, 208,
34, 78, 2, 79, 3, 89, 24, 74, 78, 166, 191, 30, 83, 226, 144, 4, 67, 2,
75, 2, 77, 2, 80, 3, 84, 11, 11, 87, 8, 198, 134, 32, 79, 239, 60, 73,
39, 206, 4, 87, 166, 13, 65, 38, 79, 254, 176, 32, 73, 199, 140, 2, 69,
39, 104, 7, 45, 67, 82, 69, 69, 32, 82, 146, 14, 87, 182, 2, 65, 182,
244, 31, 79, 238, 60, 73, 199, 140, 2, 69, 4, 210, 183, 34, 87, 215, 22,
69, 125, 94, 65, 218, 1, 72, 138, 1, 79, 238, 2, 87, 158, 209, 11, 80,
254, 233, 20, 73, 199, 140, 2, 69, 43, 26, 89, 203, 192, 32, 65, 37, 25,
4, 73, 83, 73, 32, 34, 70, 72, 54, 74, 218, 4, 83, 198, 179, 34, 89, 202,
18, 84, 147, 1, 77, 10, 246, 130, 32, 79, 178, 201, 2, 65, 2, 69, 3, 73,
6, 246, 244, 30, 85, 255, 214, 3, 73, 37, 70, 87, 202, 13, 79, 202, 128,
12, 65, 182, 176, 20, 73, 199, 140, 2, 69, 16, 198, 13, 79, 210, 171, 30,
65, 174, 133, 2, 73, 199, 140, 2, 69, 15, 80, 12, 85, 84, 72, 45, 83, 76,
65, 86, 69, 89, 32, 75, 246, 201, 34, 79, 3, 89, 8, 226, 200, 34, 65, 2,
69, 2, 73, 3, 79, 117, 110, 72, 190, 1, 76, 78, 84, 238, 8, 65, 66, 87,
230, 198, 11, 89, 146, 173, 20, 79, 238, 60, 73, 199, 140, 2, 69, 39,
108, 7, 45, 67, 82, 69, 69, 32, 84, 226, 4, 87, 154, 177, 30, 65, 194,
200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 16, 11, 72, 17, 234, 181, 30,
65, 194, 200, 1, 79, 238, 60, 73, 199, 140, 2, 69, 12, 11, 72, 12, 222,
253, 31, 79, 222, 178, 2, 87, 214, 22, 65, 2, 69, 3, 73, 24, 50, 72, 158,
198, 34, 65, 2, 69, 2, 73, 3, 79, 17, 170, 180, 30, 65, 194, 200, 1, 79,
222, 178, 2, 87, 214, 22, 69, 3, 73, 224, 1, 54, 69, 218, 3, 79, 202,
132, 12, 65, 183, 176, 20, 73, 185, 1, 17, 2, 83, 84, 182, 1, 44, 6, 45,
67, 82, 69, 69, 32, 251, 2, 69, 180, 1, 110, 76, 66, 77, 2, 80, 2, 89,
16, 2, 78, 87, 38, 82, 62, 83, 26, 67, 2, 75, 18, 84, 26, 70, 199, 4, 87,
27, 178, 6, 87, 182, 171, 30, 65, 194, 200, 1, 79, 179, 201, 2, 69, 17,
243, 5, 87, 6, 150, 177, 30, 65, 243, 145, 4, 69, 13, 174, 205, 32, 87,
182, 245, 1, 65, 2, 69, 2, 73, 3, 79, 28, 22, 72, 239, 4, 87, 14, 235, 4,
87, 16, 22, 72, 199, 4, 87, 2, 179, 204, 32, 87, 2, 171, 204, 23, 82, 31,
11, 79, 29, 41, 8, 68, 83, 45, 67, 82, 69, 69, 32, 26, 56, 2, 84, 72,
213, 187, 32, 6, 70, 73, 78, 65, 76, 32, 25, 50, 87, 154, 192, 34, 65, 2,
69, 2, 73, 3, 79, 14, 166, 174, 30, 65, 194, 200, 1, 79, 238, 60, 73,
243, 245, 1, 69, 61, 92, 6, 45, 67, 82, 69, 69, 32, 150, 1, 65, 38, 79,
30, 87, 226, 176, 32, 73, 199, 140, 2, 69, 24, 110, 80, 146, 243, 31, 67,
2, 75, 2, 76, 2, 77, 2, 78, 2, 83, 2, 84, 2, 89, 134, 172, 2, 79, 247,
30, 87, 4, 210, 200, 32, 87, 195, 214, 1, 79, 9, 158, 177, 32, 65, 199,
140, 2, 89, 7, 190, 189, 34, 79, 3, 89, 14, 178, 171, 30, 65, 194, 200,
1, 79, 238, 60, 73, 199, 140, 2, 69, 10, 26, 76, 203, 188, 34, 82, 9, 26,
32, 231, 193, 9, 76, 4, 218, 171, 22, 67, 231, 164, 10, 84, 4, 178, 165,
34, 76, 215, 22, 89, 4, 180, 191, 15, 3, 73, 84, 85, 161, 134, 8, 3, 82,
73, 67, 124, 140, 1, 2, 68, 32, 102, 69, 72, 11, 73, 65, 78, 32, 76, 69,
84, 84, 69, 82, 32, 210, 3, 79, 62, 80, 90, 82, 217, 237, 27, 4, 32, 83,
76, 73, 6, 52, 5, 73, 78, 68, 69, 88, 233, 170, 33, 2, 70, 73, 5, 229,
168, 33, 6, 32, 68, 73, 86, 73, 68, 6, 26, 84, 151, 211, 21, 32, 5, 193,
169, 10, 6, 32, 73, 78, 83, 69, 82, 98, 196, 1, 2, 67, 45, 38, 76, 22,
77, 50, 78, 38, 83, 46, 84, 22, 85, 166, 219, 3, 65, 2, 68, 2, 69, 2, 71,
2, 75, 2, 80, 158, 132, 27, 82, 218, 201, 1, 73, 198, 140, 2, 66, 2, 79,
2, 81, 3, 88, 4, 246, 139, 27, 49, 155, 177, 3, 51, 7, 203, 220, 3, 68,
11, 11, 66, 9, 226, 182, 34, 50, 2, 51, 3, 52, 9, 190, 182, 34, 68, 2,
71, 3, 78, 13, 226, 219, 3, 72, 2, 84, 187, 218, 30, 83, 7, 183, 219, 3,
84, 13, 11, 85, 11, 11, 85, 9, 194, 181, 34, 50, 2, 51, 3, 85, 4, 224,
169, 33, 6, 85, 83, 69, 76, 32, 72, 191, 139, 1, 78, 4, 172, 215, 27, 6,
32, 83, 84, 82, 69, 65, 137, 223, 5, 7, 69, 78, 84, 82, 89, 32, 83, 4,
218, 225, 27, 73, 135, 182, 6, 79, 9, 29, 5, 32, 70, 65, 67, 69, 7, 33,
6, 32, 87, 73, 84, 72, 32, 4, 148, 242, 6, 2, 84, 69, 197, 152, 25, 6,
87, 82, 89, 32, 83, 77, 108, 88, 16, 67, 65, 83, 73, 65, 78, 32, 65, 76,
66, 65, 78, 73, 65, 78, 32, 243, 172, 30, 84, 106, 60, 7, 76, 69, 84, 84,
69, 82, 32, 161, 147, 28, 2, 67, 73, 104, 170, 2, 65, 34, 67, 146, 1, 68,
78, 69, 34, 71, 46, 73, 46, 74, 34, 75, 34, 76, 34, 80, 34, 83, 74, 84,
62, 89, 46, 90, 148, 133, 17, 2, 81, 65, 190, 193, 6, 77, 252, 132, 9, 3,
86, 69, 89, 154, 33, 70, 128, 19, 3, 78, 79, 87, 226, 32, 82, 186, 11,
88, 154, 46, 79, 202, 26, 66, 237, 24, 3, 72, 69, 89, 4, 186, 246, 33,
79, 179, 28, 76, 16, 34, 65, 34, 72, 49, 2, 89, 65, 4, 242, 222, 33, 89,
227, 79, 82, 8, 218, 197, 28, 65, 146, 215, 5, 79, 203, 17, 73, 4, 130,
174, 34, 87, 3, 89, 8, 42, 90, 162, 225, 32, 89, 243, 175, 1, 65, 4, 154,
159, 33, 89, 219, 124, 65, 4, 186, 221, 33, 89, 227, 79, 66, 4, 212, 254,
32, 2, 72, 69, 207, 157, 1, 73, 6, 214, 238, 32, 82, 154, 110, 87, 135,
77, 78, 4, 214, 157, 33, 72, 227, 16, 65, 4, 226, 173, 33, 73, 199, 69,
65, 4, 130, 220, 33, 65, 171, 51, 89, 4, 142, 1, 73, 215, 218, 33, 69, 8,
34, 72, 233, 167, 34, 2, 69, 89, 6, 234, 171, 20, 65, 207, 237, 13, 79,
6, 38, 73, 150, 156, 33, 89, 199, 80, 65, 2, 215, 241, 33, 87, 4, 252,
227, 33, 2, 65, 89, 1, 2, 79, 87, 6, 242, 166, 16, 72, 131, 186, 4, 65,
16, 72, 2, 68, 73, 32, 2, 78, 84, 204, 193, 32, 3, 76, 84, 73, 151, 81,
82, 4, 142, 162, 33, 32, 223, 100, 76, 8, 32, 2, 82, 69, 207, 161, 33,
32, 6, 44, 5, 76, 73, 78, 69, 32, 167, 232, 4, 32, 4, 246, 234, 21, 76,
207, 210, 10, 79, 130, 6, 102, 65, 170, 17, 69, 162, 8, 73, 190, 2, 79,
188, 205, 13, 6, 82, 73, 83, 84, 77, 65, 155, 137, 10, 85, 198, 2, 66,
73, 32, 4, 75, 77, 65, 32, 148, 6, 2, 77, 32, 131, 8, 82, 4, 218, 232,
33, 78, 223, 61, 82, 142, 1, 156, 1, 7, 76, 69, 84, 84, 69, 82, 32, 142,
3, 83, 98, 86, 142, 224, 23, 68, 154, 236, 7, 81, 176, 95, 5, 77, 65, 65,
89, 89, 240, 179, 1, 2, 65, 85, 3, 79, 76, 202, 1, 68, 54, 78, 54, 84,
54, 89, 178, 153, 29, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 76, 2, 80, 170,
147, 3, 72, 2, 77, 2, 82, 2, 83, 2, 86, 2, 87, 254, 242, 1, 65, 186, 2,
69, 2, 73, 3, 85, 8, 202, 154, 29, 68, 170, 147, 3, 72, 255, 242, 1, 65,
8, 190, 173, 32, 71, 2, 78, 2, 89, 255, 242, 1, 65, 8, 226, 153, 29, 84,
170, 147, 3, 72, 255, 242, 1, 65, 4, 214, 172, 32, 89, 255, 242, 1, 65,
8, 40, 4, 73, 71, 78, 32, 195, 142, 22, 69, 6, 218, 131, 30, 67, 246,
227, 1, 86, 247, 244, 1, 65, 26, 64, 10, 79, 87, 69, 76, 32, 83, 73, 71,
78, 32, 171, 228, 31, 73, 24, 206, 194, 30, 65, 250, 6, 85, 186, 202, 1,
69, 2, 73, 3, 79, 166, 1, 236, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84,
32, 83, 73, 71, 78, 32, 112, 7, 76, 69, 84, 84, 69, 82, 32, 152, 4, 12,
80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 60, 11, 86, 79, 87, 69,
76, 32, 83, 73, 71, 78, 32, 199, 164, 32, 68, 14, 72, 6, 70, 73, 78, 65,
76, 32, 142, 155, 34, 76, 2, 82, 2, 87, 3, 89, 6, 238, 156, 34, 78, 86,
72, 3, 77, 104, 132, 2, 6, 70, 73, 78, 65, 76, 32, 110, 78, 50, 77, 78,
80, 174, 229, 11, 66, 226, 141, 6, 68, 158, 145, 12, 83, 198, 136, 2, 65,
132, 197, 1, 2, 67, 72, 2, 71, 2, 74, 2, 75, 2, 84, 138, 69, 72, 2, 76,
2, 82, 2, 86, 2, 89, 186, 2, 69, 2, 73, 2, 79, 3, 85, 22, 150, 157, 32,
78, 166, 192, 1, 83, 206, 60, 67, 146, 1, 71, 2, 75, 2, 76, 2, 80, 2, 82,
2, 84, 3, 89, 14, 46, 71, 34, 72, 138, 131, 34, 85, 215, 22, 65, 4, 166,
131, 34, 85, 215, 22, 65, 6, 134, 131, 34, 85, 158, 20, 74, 187, 2, 65,
6, 246, 150, 34, 72, 2, 80, 187, 2, 65, 8, 182, 170, 11, 83, 134, 142,
19, 68, 45, 4, 84, 82, 73, 80, 20, 170, 193, 30, 65, 222, 202, 1, 73,
166, 204, 1, 79, 2, 85, 203, 44, 69, 14, 72, 7, 65, 67, 84, 69, 82, 32,
84, 49, 7, 84, 32, 87, 73, 84, 72, 32, 8, 244, 255, 9, 3, 65, 66, 85,
239, 128, 24, 73, 6, 128, 1, 13, 85, 80, 87, 65, 82, 68, 83, 32, 84, 82,
69, 78, 68, 161, 186, 25, 12, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84,
82, 5, 153, 250, 6, 6, 32, 65, 78, 68, 32, 89, 236, 2, 80, 2, 67, 75, 82,
69, 90, 82, 176, 253, 4, 2, 83, 84, 133, 166, 15, 2, 81, 85, 6, 56, 8,
69, 82, 32, 66, 79, 65, 82, 68, 143, 211, 33, 32, 5, 227, 152, 31, 32, 4,
224, 202, 27, 4, 83, 69, 32, 87, 221, 156, 5, 9, 82, 73, 78, 71, 32, 77,
69, 71, 65, 222, 2, 40, 5, 79, 75, 69, 69, 32, 143, 5, 82, 216, 2, 46,
76, 1, 7, 83, 77, 65, 76, 76, 32, 76, 172, 1, 33, 6, 69, 84, 84, 69, 82,
32, 172, 1, 170, 1, 68, 74, 72, 74, 78, 70, 83, 62, 84, 54, 71, 2, 76, 2,
77, 0, 2, 81, 85, 2, 87, 2, 89, 162, 140, 34, 75, 186, 2, 65, 2, 69, 2,
73, 2, 79, 2, 85, 3, 86, 14, 226, 142, 34, 76, 186, 2, 65, 2, 69, 2, 73,
2, 79, 2, 85, 3, 86, 14, 154, 142, 34, 78, 186, 2, 65, 2, 69, 2, 73, 2,
79, 2, 85, 3, 86, 14, 170, 255, 29, 65, 226, 144, 4, 69, 2, 73, 2, 79, 2,
85, 3, 86, 15, 198, 143, 34, 65, 2, 69, 2, 73, 2, 79, 2, 85, 3, 86, 30,
50, 76, 2, 83, 218, 142, 34, 65, 2, 69, 3, 73, 12, 214, 142, 34, 65, 2,
69, 2, 73, 2, 79, 2, 85, 3, 86, 6, 32, 2, 89, 32, 247, 247, 32, 73, 4,
40, 4, 66, 76, 79, 83, 163, 248, 32, 83, 2, 231, 252, 33, 83, 16, 152, 1,
2, 76, 68, 48, 11, 78, 69, 83, 69, 32, 83, 77, 65, 76, 76, 32, 206, 247,
7, 32, 184, 247, 2, 2, 80, 77, 228, 198, 21, 2, 67, 75, 155, 134, 1, 82,
5, 173, 247, 28, 7, 82, 69, 78, 32, 67, 82, 79, 4, 248, 224, 19, 10, 83,
73, 77, 80, 76, 73, 70, 73, 69, 68, 1, 11, 84, 82, 65, 68, 73, 84, 73,
79, 78, 65, 76, 60, 92, 8, 82, 65, 83, 77, 73, 65, 78, 32, 254, 130, 5,
80, 197, 141, 12, 5, 67, 79, 76, 65, 84, 56, 52, 7, 76, 69, 84, 84, 69,
82, 32, 199, 214, 21, 78, 42, 224, 1, 6, 67, 85, 82, 76, 69, 68, 30, 83,
158, 211, 21, 68, 34, 76, 134, 206, 1, 82, 142, 220, 2, 65, 50, 71, 90,
90, 98, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78,
134, 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 2, 209, 137, 33, 2, 32, 87,
6, 132, 211, 21, 6, 77, 65, 76, 76, 32, 65, 232, 243, 5, 2, 65, 77, 163,
193, 5, 72, 232, 4, 66, 78, 20, 2, 82, 67, 201, 40, 7, 84, 89, 83, 67,
65, 80, 69, 2, 183, 229, 33, 69, 226, 4, 28, 2, 76, 69, 207, 39, 85, 220,
4, 30, 32, 185, 6, 2, 68, 32, 24, 244, 1, 5, 87, 73, 84, 72, 32, 161,
205, 18, 49, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 32, 72, 79, 82, 73,
90, 79, 78, 84, 65, 76, 32, 66, 65, 82, 32, 65, 78, 68, 32, 84, 79, 80,
32, 72, 65, 76, 70, 32, 68, 73, 86, 73, 68, 69, 68, 32, 66, 89, 22, 146,
2, 76, 46, 83, 108, 22, 84, 87, 79, 32, 72, 79, 82, 73, 90, 79, 78, 84,
65, 76, 32, 83, 84, 82, 79, 75, 69, 83, 44, 6, 85, 80, 80, 69, 82, 32,
44, 17, 65, 76, 76, 32, 66, 85, 84, 32, 85, 80, 80, 69, 82, 32, 76, 69,
70, 190, 205, 26, 86, 242, 146, 4, 82, 183, 251, 1, 72, 4, 142, 226, 30,
69, 49, 4, 79, 87, 69, 82, 4, 104, 11, 77, 65, 76, 76, 32, 67, 73, 82,
67, 76, 69, 221, 5, 10, 85, 80, 69, 82, 73, 77, 80, 79, 83, 69, 2, 225,
251, 30, 6, 32, 84, 79, 32, 84, 72, 4, 40, 4, 82, 73, 71, 72, 231, 224,
30, 72, 2, 249, 224, 30, 10, 84, 32, 81, 85, 65, 68, 82, 65, 78, 84, 196,
4, 230, 2, 65, 186, 1, 66, 58, 67, 230, 1, 68, 246, 1, 72, 230, 2, 73,
194, 10, 75, 190, 2, 76, 38, 77, 136, 1, 7, 78, 85, 77, 66, 69, 82, 32,
192, 4, 17, 79, 80, 69, 78, 32, 67, 69, 78, 84, 82, 69, 32, 69, 73, 71,
72, 84, 54, 80, 114, 82, 50, 84, 78, 87, 192, 132, 10, 4, 90, 69, 82, 79,
158, 196, 16, 69, 182, 188, 4, 86, 146, 68, 71, 150, 115, 83, 227, 162,
1, 88, 6, 100, 12, 78, 84, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 157,
184, 30, 7, 83, 84, 69, 82, 73, 83, 75, 4, 212, 249, 8, 11, 45, 82, 79,
84, 65, 84, 69, 68, 32, 68, 73, 191, 229, 23, 32, 4, 32, 2, 79, 76, 219,
152, 32, 85, 2, 223, 221, 14, 68, 16, 60, 4, 82, 79, 83, 83, 210, 2, 32,
202, 247, 33, 67, 3, 68, 10, 26, 32, 199, 197, 1, 73, 8, 64, 6, 70, 79,
82, 77, 69, 69, 153, 135, 32, 4, 80, 79, 77, 77, 7, 33, 6, 32, 87, 73,
84, 72, 32, 4, 158, 210, 31, 70, 135, 84, 84, 30, 34, 73, 70, 79, 135,
141, 32, 65, 24, 168, 192, 4, 8, 86, 73, 83, 73, 79, 78, 32, 83, 183,
196, 27, 71, 4, 64, 10, 76, 76, 65, 82, 32, 83, 73, 71, 78, 32, 135, 180,
30, 84, 2, 173, 175, 19, 13, 87, 73, 84, 72, 32, 79, 86, 69, 82, 76, 65,
73, 68, 64, 192, 1, 6, 65, 78, 71, 85, 76, 32, 252, 203, 12, 20, 79, 82,
73, 90, 79, 78, 84, 65, 76, 32, 66, 65, 82, 32, 87, 73, 84, 72, 32, 78,
204, 217, 9, 4, 85, 77, 65, 78, 145, 1, 4, 69, 65, 86, 89, 58, 110, 67,
140, 207, 20, 5, 73, 69, 85, 78, 71, 42, 72, 30, 75, 66, 77, 34, 78, 34,
80, 62, 82, 30, 83, 27, 84, 8, 234, 206, 20, 72, 157, 3, 4, 73, 69, 85,
67, 116, 220, 1, 9, 68, 69, 79, 71, 82, 65, 80, 72, 32, 196, 8, 27, 84,
65, 76, 73, 67, 32, 76, 65, 84, 73, 78, 32, 67, 65, 80, 73, 84, 65, 76,
32, 76, 69, 84, 84, 69, 82, 32, 169, 162, 27, 9, 78, 70, 79, 82, 77, 65,
84, 73, 79, 110, 174, 1, 65, 110, 67, 90, 69, 86, 70, 62, 72, 38, 75, 70,
76, 50, 77, 86, 78, 62, 81, 30, 82, 74, 83, 198, 178, 6, 80, 162, 157,
14, 84, 50, 87, 202, 215, 1, 73, 163, 168, 10, 79, 8, 242, 207, 20, 76,
200, 134, 1, 3, 67, 67, 69, 184, 249, 6, 3, 84, 84, 69, 249, 17, 5, 68,
86, 65, 78, 84, 8, 26, 79, 235, 234, 30, 69, 6, 236, 212, 10, 2, 82, 82,
190, 250, 9, 78, 147, 143, 13, 80, 8, 190, 207, 20, 78, 174, 179, 9, 65,
180, 169, 3, 5, 88, 67, 69, 76, 76, 231, 24, 73, 10, 202, 207, 20, 73,
144, 190, 5, 2, 69, 77, 199, 232, 6, 79, 4, 146, 193, 29, 73, 211, 176,
3, 65, 4, 228, 166, 7, 8, 73, 78, 68, 69, 82, 71, 65, 82, 167, 212, 22,
79, 6, 218, 206, 20, 65, 214, 160, 12, 79, 195, 83, 69, 8, 38, 69, 190,
198, 32, 65, 211, 86, 79, 4, 184, 209, 32, 3, 68, 73, 67, 227, 15, 84, 6,
26, 73, 195, 210, 32, 65, 4, 246, 193, 33, 71, 231, 19, 78, 2, 233, 208,
28, 2, 85, 69, 8, 26, 69, 151, 193, 33, 73, 6, 226, 205, 20, 83, 217,
136, 8, 2, 76, 73, 22, 90, 69, 38, 85, 184, 161, 14, 2, 67, 72, 130, 172,
6, 79, 22, 80, 34, 84, 131, 142, 12, 73, 4, 238, 164, 10, 67, 223, 239,
21, 86, 6, 182, 206, 20, 80, 146, 128, 2, 73, 231, 155, 11, 78, 4, 246,
233, 33, 67, 3, 82, 98, 116, 8, 65, 84, 65, 75, 65, 78, 65, 32, 133, 1,
16, 79, 82, 69, 65, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 94,
166, 241, 10, 72, 2, 75, 2, 77, 2, 78, 2, 82, 2, 83, 2, 84, 126, 87, 46,
89, 150, 246, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 152, 157, 16, 3, 74,
85, 69, 197, 171, 17, 4, 67, 72, 65, 77, 106, 222, 196, 27, 65, 255, 140,
4, 69, 4, 100, 19, 85, 76, 84, 73, 80, 76, 73, 67, 65, 84, 73, 79, 78,
32, 83, 73, 71, 78, 32, 167, 221, 31, 73, 2, 209, 85, 4, 87, 73, 84, 72,
98, 50, 69, 46, 70, 98, 83, 94, 84, 147, 202, 20, 78, 6, 180, 1, 3, 73,
71, 72, 203, 193, 25, 76, 30, 28, 3, 73, 70, 84, 35, 79, 6, 214, 1, 89,
155, 141, 32, 69, 24, 142, 2, 82, 251, 201, 20, 85, 8, 40, 4, 69, 86, 69,
78, 1, 2, 73, 88, 4, 11, 84, 4, 104, 2, 89, 32, 143, 141, 32, 69, 52, 56,
2, 69, 78, 32, 4, 72, 73, 82, 84, 29, 2, 87, 69, 5, 11, 32, 2, 139, 223,
25, 79, 24, 74, 89, 175, 140, 32, 69, 24, 26, 78, 243, 229, 32, 76, 22,
17, 2, 84, 89, 23, 11, 32, 20, 72, 2, 79, 78, 206, 238, 31, 70, 30, 83,
42, 84, 142, 87, 78, 239, 112, 69, 4, 230, 221, 25, 32, 243, 131, 8, 69,
2, 193, 199, 31, 8, 32, 80, 79, 73, 78, 84, 69, 68, 8, 248, 217, 17, 3,
79, 83, 84, 190, 251, 6, 65, 228, 203, 2, 8, 69, 82, 80, 69, 78, 68, 73,
67, 131, 183, 4, 76, 4, 200, 156, 30, 3, 73, 78, 71, 163, 170, 1, 69, 6,
52, 7, 82, 73, 65, 78, 71, 76, 69, 143, 199, 26, 73, 5, 211, 166, 22, 32,
6, 44, 5, 72, 73, 84, 69, 32, 231, 222, 33, 90, 4, 194, 252, 31, 66, 215,
25, 83, 6, 154, 184, 27, 77, 184, 190, 4, 6, 76, 65, 84, 73, 79, 78, 201,
164, 1, 3, 83, 32, 84, 5, 233, 150, 32, 6, 32, 65, 84, 32, 68, 85, 158,
18, 192, 1, 24, 67, 79, 77, 80, 65, 84, 73, 66, 73, 76, 73, 84, 89, 32,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 144, 3, 8, 82, 65, 68, 73, 67,
65, 76, 32, 245, 17, 7, 83, 84, 82, 79, 75, 69, 32, 236, 15, 24, 2, 50,
70, 75, 70, 188, 8, 34, 65, 170, 130, 11, 56, 3, 57, 60, 202, 1, 49, 243,
254, 18, 48, 176, 7, 26, 65, 235, 129, 11, 57, 176, 3, 134, 1, 54, 242,
254, 18, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 2, 57, 2,
65, 2, 66, 2, 67, 215, 156, 9, 68, 28, 226, 217, 33, 48, 2, 49, 2, 50, 2,
51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 3, 68,
230, 1, 210, 1, 66, 126, 67, 226, 4, 68, 62, 69, 50, 70, 34, 71, 50, 72,
86, 74, 154, 1, 76, 62, 77, 130, 1, 80, 46, 82, 78, 83, 182, 3, 84, 82,
87, 164, 230, 10, 2, 78, 69, 156, 17, 4, 75, 78, 73, 70, 203, 160, 12,
79, 14, 74, 79, 188, 134, 11, 4, 82, 85, 83, 72, 162, 240, 4, 65, 143,
208, 13, 76, 6, 182, 173, 10, 76, 186, 146, 23, 78, 215, 22, 88, 56, 104,
12, 45, 83, 73, 77, 80, 76, 73, 70, 73, 69, 68, 32, 162, 3, 73, 50, 76,
186, 211, 32, 79, 191, 78, 72, 44, 114, 69, 38, 70, 50, 71, 38, 76, 34,
83, 94, 84, 182, 217, 14, 87, 42, 68, 130, 244, 16, 66, 170, 121, 72,
163, 4, 67, 4, 174, 254, 31, 86, 219, 185, 1, 65, 6, 134, 233, 31, 73,
194, 217, 1, 76, 235, 16, 82, 4, 146, 164, 23, 79, 187, 230, 8, 65, 4,
138, 210, 32, 69, 187, 48, 79, 10, 162, 230, 6, 73, 146, 199, 17, 65,
194, 194, 1, 72, 128, 193, 7, 3, 80, 69, 69, 215, 11, 69, 6, 214, 10, 85,
148, 188, 10, 2, 65, 78, 235, 164, 4, 79, 4, 128, 229, 20, 3, 86, 73, 76,
191, 219, 12, 84, 4, 150, 233, 17, 73, 167, 210, 14, 79, 6, 240, 172, 24,
2, 73, 86, 222, 240, 2, 69, 147, 179, 6, 79, 10, 196, 6, 2, 65, 84, 222,
179, 33, 87, 3, 89, 4, 138, 174, 32, 73, 135, 82, 79, 8, 244, 5, 4, 82,
65, 83, 83, 179, 220, 29, 72, 10, 48, 2, 69, 65, 226, 188, 28, 79, 211,
130, 4, 65, 6, 186, 8, 82, 139, 199, 33, 68, 10, 72, 12, 45, 83, 73, 77,
80, 76, 73, 70, 73, 69, 68, 32, 231, 187, 31, 65, 8, 42, 84, 202, 213,
14, 68, 143, 134, 17, 69, 4, 194, 6, 85, 255, 224, 14, 79, 12, 128, 254,
10, 3, 79, 78, 71, 205, 129, 16, 3, 65, 77, 69, 14, 18, 69, 35, 79, 4,
142, 177, 33, 65, 159, 27, 83, 10, 144, 253, 10, 3, 85, 78, 68, 182, 174,
13, 84, 138, 217, 7, 82, 239, 120, 79, 6, 196, 252, 10, 2, 65, 87, 239,
203, 18, 69, 8, 34, 65, 197, 194, 32, 2, 69, 80, 6, 158, 252, 32, 73,
226, 79, 77, 3, 80, 38, 122, 69, 90, 73, 186, 1, 78, 196, 1, 4, 80, 73,
82, 73, 128, 247, 10, 4, 77, 65, 76, 76, 166, 158, 12, 72, 135, 226, 9,
85, 8, 40, 4, 67, 79, 78, 68, 227, 190, 32, 65, 6, 11, 32, 6, 218, 215,
31, 84, 155, 87, 79, 12, 60, 9, 77, 80, 76, 73, 70, 73, 69, 68, 32, 175,
198, 33, 76, 10, 34, 72, 50, 87, 131, 194, 10, 89, 4, 136, 172, 10, 3,
65, 76, 70, 179, 138, 18, 79, 4, 246, 219, 6, 65, 191, 227, 25, 72, 6,
192, 1, 2, 79, 85, 179, 151, 33, 65, 8, 58, 85, 150, 241, 24, 65, 242,
204, 1, 72, 191, 184, 3, 73, 2, 135, 159, 24, 82, 12, 26, 65, 49, 2, 69,
83, 8, 172, 247, 10, 2, 76, 75, 1, 3, 84, 69, 82, 4, 255, 246, 10, 84,
76, 110, 72, 182, 1, 80, 38, 83, 194, 198, 31, 84, 152, 253, 1, 2, 66,
88, 2, 87, 2, 88, 86, 68, 2, 78, 3, 81, 31, 42, 80, 22, 88, 30, 90, 171,
197, 33, 71, 5, 131, 197, 33, 87, 4, 238, 196, 33, 87, 87, 71, 19, 50,
90, 246, 198, 31, 87, 130, 254, 1, 71, 3, 84, 9, 242, 198, 31, 90, 131,
254, 1, 80, 9, 206, 196, 33, 68, 2, 71, 3, 90, 23, 50, 87, 30, 90, 222,
195, 33, 71, 2, 80, 3, 84, 7, 246, 195, 33, 71, 3, 90, 9, 134, 195, 33,
87, 86, 80, 3, 90, 124, 62, 65, 194, 1, 73, 114, 79, 181, 132, 21, 4, 69,
65, 82, 32, 8, 132, 1, 2, 80, 80, 128, 217, 3, 6, 83, 83, 73, 67, 65, 76,
129, 188, 28, 14, 77, 83, 72, 69, 76, 76, 32, 77, 79, 66, 73, 76, 69, 32,
4, 180, 208, 19, 5, 73, 78, 71, 32, 72, 227, 228, 1, 69, 6, 48, 6, 78,
75, 73, 78, 71, 32, 247, 167, 32, 80, 4, 194, 169, 25, 71, 149, 189, 3,
6, 66, 69, 69, 82, 32, 77, 108, 72, 2, 67, 75, 140, 10, 2, 83, 69, 236,
3, 2, 85, 68, 207, 187, 30, 87, 70, 64, 6, 32, 70, 65, 67, 69, 32, 237,
2, 5, 87, 73, 83, 69, 32, 48, 58, 69, 46, 70, 36, 2, 78, 73, 2, 79, 18,
83, 51, 84, 8, 120, 2, 76, 69, 125, 4, 73, 71, 72, 84, 8, 178, 1, 73, 25,
3, 79, 85, 82, 4, 155, 1, 78, 8, 26, 69, 125, 2, 73, 88, 4, 57, 2, 86,
69, 16, 38, 69, 14, 87, 41, 3, 72, 82, 69, 4, 63, 78, 8, 24, 2, 69, 76,
27, 79, 4, 11, 86, 4, 11, 69, 4, 176, 153, 29, 2, 32, 79, 193, 179, 2, 3,
45, 84, 72, 22, 90, 67, 58, 68, 122, 71, 48, 5, 82, 73, 71, 72, 84, 226,
2, 84, 122, 79, 195, 172, 31, 73, 4, 196, 1, 3, 76, 79, 83, 181, 103, 4,
79, 78, 84, 79, 2, 141, 3, 26, 79, 87, 78, 87, 65, 82, 68, 83, 32, 65,
78, 68, 32, 85, 80, 87, 65, 82, 68, 83, 32, 79, 80, 69, 78, 32, 2, 21, 3,
65, 80, 80, 2, 133, 4, 2, 69, 68, 6, 228, 1, 14, 32, 65, 78, 68, 32, 76,
69, 70, 84, 32, 83, 69, 77, 73, 45, 38, 87, 65, 82, 68, 83, 32, 65, 78,
68, 32, 76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 80, 69, 78, 32, 67,
73, 82, 67, 76, 69, 32, 65, 82, 82, 79, 87, 83, 2, 133, 217, 30, 6, 67,
73, 82, 67, 76, 69, 5, 253, 85, 15, 32, 87, 73, 84, 72, 32, 67, 73, 82,
67, 76, 69, 68, 32, 79, 4, 82, 79, 37, 16, 82, 73, 65, 78, 71, 76, 69,
45, 72, 69, 65, 68, 69, 68, 32, 79, 2, 69, 6, 80, 32, 83, 69, 77, 73, 2,
21, 3, 80, 69, 78, 2, 11, 32, 2, 165, 215, 30, 4, 67, 73, 82, 67, 26, 32,
2, 68, 32, 219, 191, 32, 32, 24, 216, 1, 2, 83, 85, 66, 85, 162, 194, 19,
77, 180, 3, 9, 76, 79, 67, 75, 32, 87, 73, 84, 72, 238, 151, 12, 66, 149,
152, 1, 23, 73, 78, 84, 69, 82, 83, 69, 67, 84, 73, 79, 78, 32, 87, 73,
84, 72, 32, 83, 69, 82, 73, 70, 8, 30, 66, 1, 3, 80, 69, 82, 4, 185, 148,
25, 3, 83, 69, 84, 6, 82, 77, 33, 16, 78, 73, 79, 78, 32, 87, 73, 84, 72,
32, 83, 69, 82, 73, 70, 83, 2, 149, 247, 24, 3, 66, 82, 69, 5, 237, 160,
32, 9, 32, 65, 78, 68, 32, 83, 77, 65, 83, 11, 33, 6, 32, 87, 73, 84, 72,
32, 8, 72, 4, 84, 79, 82, 78, 190, 172, 5, 76, 250, 239, 19, 83, 251,
229, 6, 82, 2, 211, 241, 25, 65, 152, 10, 158, 1, 67, 82, 76, 98, 77,
202, 86, 78, 220, 5, 2, 79, 75, 58, 80, 154, 19, 82, 138, 1, 85, 246,
149, 28, 87, 232, 167, 3, 2, 70, 70, 246, 47, 73, 183, 51, 65, 6, 26, 75,
155, 153, 4, 79, 4, 202, 244, 8, 82, 153, 161, 23, 4, 84, 65, 73, 76, 8,
44, 2, 79, 78, 185, 158, 25, 3, 76, 73, 83, 7, 11, 32, 4, 150, 152, 26,
69, 211, 143, 6, 83, 212, 6, 72, 7, 66, 73, 78, 73, 78, 71, 32, 206, 84,
77, 94, 80, 139, 188, 32, 69, 196, 6, 210, 2, 65, 186, 2, 66, 118, 67,
246, 12, 68, 226, 10, 69, 142, 2, 70, 70, 71, 156, 9, 2, 72, 79, 82, 73,
248, 1, 2, 75, 65, 162, 1, 76, 158, 14, 77, 178, 2, 78, 78, 79, 138, 2,
80, 182, 1, 82, 248, 4, 5, 90, 73, 71, 90, 65, 138, 2, 83, 162, 4, 84,
238, 2, 85, 168, 1, 8, 86, 69, 82, 84, 73, 67, 65, 76, 204, 1, 2, 87, 73,
171, 1, 88, 26, 148, 1, 4, 67, 85, 84, 69, 98, 78, 136, 156, 25, 6, 83,
84, 69, 82, 73, 83, 241, 234, 5, 14, 76, 77, 79, 83, 84, 32, 69, 81, 85,
65, 76, 32, 84, 79, 12, 22, 45, 231, 34, 32, 6, 186, 57, 86, 184, 160,
12, 6, 71, 82, 65, 86, 69, 45, 251, 210, 3, 77, 6, 228, 2, 4, 84, 73, 67,
76, 237, 183, 3, 4, 78, 85, 73, 84, 12, 42, 82, 137, 247, 30, 4, 73, 78,
68, 85, 10, 32, 3, 69, 86, 69, 243, 37, 73, 7, 210, 177, 12, 45, 159,
197, 18, 32, 142, 1, 142, 1, 65, 34, 76, 98, 79, 116, 8, 89, 82, 73, 76,
76, 73, 67, 32, 252, 29, 11, 73, 82, 67, 85, 77, 70, 76, 69, 88, 32, 65,
171, 162, 12, 69, 6, 222, 19, 82, 159, 245, 28, 78, 4, 41, 8, 79, 67, 75,
87, 73, 83, 69, 32, 4, 248, 184, 12, 4, 82, 73, 78, 71, 139, 239, 16, 65,
10, 76, 4, 77, 77, 65, 32, 249, 17, 10, 78, 74, 79, 73, 78, 73, 78, 71,
32, 77, 6, 142, 161, 13, 65, 251, 225, 17, 66, 116, 252, 1, 8, 72, 85,
78, 68, 82, 69, 68, 32, 32, 7, 76, 69, 84, 84, 69, 82, 32, 166, 5, 80,
116, 5, 68, 65, 83, 73, 65, 38, 84, 106, 77, 230, 247, 2, 75, 220, 152,
13, 15, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 66, 89, 169,
213, 16, 2, 86, 90, 4, 194, 7, 77, 247, 162, 3, 84, 84, 238, 1, 66, 38,
68, 50, 69, 82, 73, 106, 79, 22, 83, 66, 85, 30, 89, 238, 141, 3, 76,
140, 5, 5, 77, 79, 78, 79, 71, 150, 18, 72, 154, 241, 12, 84, 130, 135,
16, 90, 150, 83, 67, 2, 71, 182, 8, 70, 134, 14, 80, 2, 86, 158, 20, 75,
187, 2, 65, 4, 142, 173, 6, 73, 179, 243, 26, 69, 4, 136, 130, 26, 3, 74,
69, 82, 147, 158, 7, 69, 14, 58, 83, 178, 159, 33, 70, 2, 76, 2, 77, 2,
78, 3, 82, 5, 155, 214, 31, 45, 11, 56, 8, 79, 84, 73, 70, 73, 69, 68,
32, 227, 158, 33, 69, 6, 162, 171, 6, 66, 190, 243, 26, 65, 3, 69, 5,
175, 217, 25, 77, 6, 26, 72, 139, 152, 16, 79, 4, 218, 160, 31, 67, 171,
253, 1, 65, 5, 225, 157, 3, 2, 75, 82, 8, 198, 219, 28, 69, 210, 165, 4,
65, 174, 28, 73, 3, 85, 8, 66, 65, 48, 4, 83, 73, 76, 73, 141, 230, 29,
4, 79, 75, 82, 89, 4, 194, 250, 2, 89, 169, 242, 12, 3, 76, 65, 84, 2,
209, 14, 5, 32, 80, 78, 69, 85, 10, 80, 2, 69, 78, 0, 7, 72, 79, 85, 83,
65, 78, 68, 237, 9, 4, 73, 84, 76, 79, 2, 17, 2, 32, 77, 2, 201, 254, 21,
5, 73, 76, 76, 73, 79, 124, 66, 69, 244, 1, 8, 73, 65, 69, 82, 69, 83,
73, 83, 131, 1, 79, 38, 68, 9, 86, 65, 78, 65, 71, 65, 82, 73, 32, 177,
176, 32, 2, 76, 69, 36, 92, 7, 76, 69, 84, 84, 69, 82, 32, 248, 155, 26,
6, 83, 73, 71, 78, 32, 65, 251, 136, 5, 68, 14, 158, 133, 33, 86, 162,
17, 75, 2, 78, 2, 80, 2, 82, 186, 2, 65, 3, 85, 9, 26, 32, 207, 130, 28,
45, 4, 162, 246, 30, 66, 189, 142, 1, 16, 87, 73, 84, 72, 32, 82, 65, 73,
83, 69, 68, 32, 76, 69, 70, 84, 78, 58, 84, 164, 1, 4, 85, 66, 76, 69,
169, 5, 2, 87, 78, 16, 74, 32, 232, 186, 10, 5, 45, 65, 78, 68, 45, 161,
226, 5, 3, 84, 69, 68, 10, 64, 5, 65, 66, 79, 86, 69, 217, 189, 6, 5, 66,
69, 76, 79, 87, 7, 223, 234, 32, 32, 56, 22, 32, 247, 4, 68, 54, 222, 1,
65, 34, 66, 0, 10, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 26, 67, 34,
77, 54, 79, 34, 80, 68, 2, 82, 73, 48, 5, 84, 73, 76, 68, 69, 80, 9, 86,
69, 82, 84, 73, 67, 65, 76, 32, 146, 152, 16, 71, 191, 187, 4, 76, 6,
226, 17, 82, 131, 137, 16, 67, 4, 145, 17, 2, 82, 69, 4, 230, 235, 31,
65, 135, 42, 73, 4, 21, 3, 65, 67, 82, 4, 165, 135, 17, 2, 79, 78, 4,
138, 37, 80, 255, 130, 31, 86, 6, 146, 38, 76, 177, 233, 7, 9, 65, 82,
69, 78, 84, 72, 69, 83, 69, 6, 240, 52, 4, 71, 72, 84, 87, 207, 129, 10,
78, 7, 11, 32, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 219, 236,
30, 84, 6, 182, 163, 12, 83, 175, 187, 14, 76, 2, 201, 146, 16, 2, 32,
67, 6, 138, 51, 32, 207, 187, 31, 87, 18, 72, 9, 78, 67, 76, 79, 83, 73,
78, 71, 32, 177, 35, 4, 81, 85, 65, 76, 14, 132, 1, 6, 67, 73, 82, 67,
76, 69, 22, 83, 140, 170, 6, 3, 75, 69, 89, 240, 216, 19, 7, 85, 80, 87,
65, 82, 68, 32, 171, 204, 5, 68, 5, 163, 198, 18, 32, 4, 182, 239, 25,
67, 147, 252, 5, 81, 6, 48, 2, 69, 82, 206, 145, 5, 79, 251, 134, 12, 76,
2, 255, 76, 77, 128, 1, 88, 17, 76, 65, 71, 79, 76, 73, 84, 73, 67, 32,
76, 69, 84, 84, 69, 82, 32, 143, 3, 82, 76, 238, 1, 68, 30, 73, 46, 83,
50, 84, 210, 146, 6, 65, 22, 66, 94, 67, 134, 1, 70, 38, 71, 238, 2, 77,
32, 2, 76, 74, 34, 78, 88, 2, 80, 79, 30, 82, 194, 2, 86, 22, 89, 90, 90,
234, 145, 19, 72, 190, 133, 2, 85, 162, 177, 5, 79, 235, 5, 75, 4, 138,
149, 6, 74, 31, 79, 11, 150, 150, 6, 78, 54, 79, 243, 198, 26, 90, 8,
246, 150, 6, 77, 130, 4, 76, 247, 218, 22, 72, 4, 170, 155, 6, 86, 235,
218, 26, 83, 52, 38, 65, 185, 3, 4, 69, 69, 75, 32, 38, 84, 5, 78, 84,
72, 65, 32, 196, 1, 2, 86, 69, 137, 216, 28, 5, 80, 72, 69, 77, 69, 24,
68, 6, 68, 73, 71, 73, 84, 32, 65, 7, 76, 69, 84, 84, 69, 82, 32, 14,
170, 247, 16, 83, 202, 157, 14, 70, 70, 84, 62, 90, 223, 86, 79, 10, 230,
243, 32, 86, 162, 17, 75, 2, 78, 2, 80, 187, 2, 65, 12, 18, 32, 67, 45,
6, 26, 65, 131, 184, 16, 84, 4, 237, 147, 4, 4, 67, 67, 69, 78, 6, 150,
22, 86, 168, 250, 11, 6, 65, 67, 85, 84, 69, 45, 139, 249, 3, 77, 14,
148, 1, 8, 77, 85, 83, 73, 67, 65, 76, 32, 130, 155, 4, 75, 170, 202, 2,
80, 174, 4, 89, 217, 239, 3, 11, 68, 73, 65, 76, 89, 84, 73, 75, 65, 32,
84, 6, 26, 84, 255, 203, 15, 80, 4, 214, 204, 15, 69, 35, 82, 6, 146,
130, 13, 79, 128, 133, 19, 8, 77, 79, 84, 72, 69, 84, 73, 67, 167, 45,
82, 16, 26, 78, 151, 210, 30, 83, 14, 52, 7, 86, 69, 82, 84, 69, 68, 32,
243, 209, 28, 70, 12, 60, 2, 66, 82, 69, 9, 68, 79, 85, 66, 76, 69, 32,
65, 82, 8, 18, 69, 23, 73, 4, 203, 232, 11, 86, 4, 233, 223, 30, 2, 68,
71, 4, 11, 67, 4, 207, 223, 30, 72, 8, 128, 1, 16, 84, 65, 75, 65, 78,
65, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 229, 250, 17, 9, 86, 89, 75,
65, 32, 65, 66, 79, 86, 4, 242, 139, 10, 83, 35, 86, 162, 1, 80, 5, 65,
84, 73, 78, 32, 164, 8, 3, 69, 70, 84, 232, 3, 2, 73, 71, 83, 79, 106,
156, 1, 21, 76, 69, 84, 84, 69, 82, 32, 83, 77, 65, 76, 76, 32, 67, 65,
80, 73, 84, 65, 76, 32, 53, 13, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84,
69, 82, 32, 10, 182, 254, 32, 71, 2, 76, 2, 77, 2, 78, 3, 82, 96, 226, 1,
65, 70, 67, 34, 69, 30, 70, 78, 73, 86, 76, 106, 79, 2, 85, 134, 1, 82,
50, 84, 158, 183, 12, 83, 162, 151, 2, 66, 238, 157, 2, 87, 190, 139, 16,
68, 2, 71, 2, 72, 2, 75, 2, 77, 2, 78, 2, 80, 2, 86, 2, 88, 3, 90, 13,
182, 246, 2, 32, 226, 169, 26, 76, 138, 220, 3, 69, 2, 79, 3, 86, 5, 173,
151, 12, 3, 32, 67, 69, 7, 170, 250, 32, 83, 3, 84, 5, 225, 207, 27, 14,
76, 65, 84, 84, 69, 78, 69, 68, 32, 79, 80, 69, 78, 32, 11, 37, 7, 78,
83, 85, 76, 65, 82, 32, 8, 170, 250, 32, 68, 2, 71, 2, 82, 3, 84, 7, 148,
151, 16, 14, 32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 69, 32, 77, 133,
233, 12, 3, 79, 78, 71, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 146, 167,
12, 68, 209, 233, 12, 15, 76, 73, 71, 72, 84, 32, 67, 69, 78, 84, 82, 65,
76, 73, 90, 7, 11, 32, 4, 210, 133, 12, 82, 203, 208, 18, 66, 5, 201,
198, 30, 7, 85, 82, 78, 69, 68, 32, 87, 36, 46, 32, 133, 3, 6, 87, 65,
82, 68, 83, 32, 32, 122, 65, 192, 1, 12, 80, 65, 82, 69, 78, 84, 72, 69,
83, 73, 83, 32, 166, 13, 72, 154, 10, 84, 57, 5, 82, 73, 71, 72, 84, 14,
52, 5, 78, 71, 76, 69, 32, 77, 4, 82, 82, 79, 87, 6, 140, 253, 3, 6, 67,
69, 78, 84, 82, 69, 214, 214, 26, 66, 131, 165, 1, 65, 8, 26, 72, 227,
210, 30, 32, 4, 209, 210, 30, 3, 69, 65, 68, 4, 144, 232, 7, 4, 65, 66,
79, 86, 241, 217, 24, 5, 66, 69, 76, 79, 87, 4, 142, 14, 72, 245, 248,
11, 5, 65, 82, 82, 79, 87, 10, 52, 6, 65, 84, 85, 82, 69, 32, 129, 18, 2,
72, 84, 8, 234, 1, 76, 23, 82, 10, 36, 3, 78, 71, 32, 131, 215, 31, 87,
8, 236, 7, 7, 68, 79, 85, 66, 76, 69, 32, 242, 7, 83, 71, 86, 26, 48, 5,
65, 67, 82, 79, 78, 205, 5, 2, 73, 78, 23, 18, 32, 127, 45, 10, 34, 76,
22, 82, 171, 207, 30, 66, 4, 41, 2, 69, 70, 4, 21, 3, 73, 71, 72, 4, 189,
229, 16, 6, 84, 32, 72, 65, 76, 70, 10, 54, 86, 250, 20, 65, 150, 148,
12, 71, 235, 176, 3, 66, 2, 205, 212, 31, 8, 69, 82, 84, 73, 67, 65, 76,
45, 4, 164, 9, 9, 85, 77, 66, 69, 82, 32, 83, 73, 71, 129, 223, 11, 2,
79, 84, 18, 136, 1, 17, 76, 68, 32, 80, 69, 82, 77, 73, 67, 32, 76, 69,
84, 84, 69, 82, 32, 82, 80, 216, 166, 12, 4, 71, 79, 78, 69, 167, 220,
18, 86, 10, 198, 45, 90, 142, 163, 18, 78, 182, 166, 9, 68, 186, 176, 2,
83, 239, 246, 1, 65, 2, 229, 224, 24, 6, 69, 78, 32, 77, 65, 82, 12, 18,
65, 107, 76, 8, 220, 7, 9, 82, 69, 78, 84, 72, 69, 83, 69, 83, 173, 216,
24, 9, 76, 65, 84, 65, 76, 73, 90, 69, 68, 4, 11, 85, 4, 241, 201, 30, 6,
83, 32, 83, 73, 71, 78, 40, 18, 69, 127, 73, 6, 72, 5, 86, 69, 82, 83,
69, 141, 222, 24, 7, 84, 82, 79, 70, 76, 69, 88, 4, 22, 32, 251, 12, 68,
2, 137, 8, 2, 83, 79, 34, 40, 3, 71, 72, 84, 133, 5, 2, 78, 71, 28, 50,
32, 253, 3, 7, 87, 65, 82, 68, 83, 32, 72, 26, 108, 5, 65, 82, 82, 79,
87, 218, 1, 72, 124, 12, 80, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 32,
159, 9, 84, 12, 44, 5, 72, 69, 65, 68, 32, 199, 198, 30, 32, 8, 26, 65,
199, 198, 30, 66, 6, 36, 3, 78, 68, 32, 171, 235, 31, 66, 4, 40, 4, 68,
79, 87, 78, 1, 2, 85, 80, 2, 249, 231, 8, 9, 32, 65, 82, 82, 79, 87, 72,
69, 65, 6, 11, 65, 6, 48, 6, 76, 70, 32, 82, 73, 78, 21, 2, 82, 80, 4,
207, 196, 30, 71, 2, 17, 2, 79, 79, 2, 183, 233, 31, 78, 4, 146, 228, 9,
65, 245, 174, 21, 5, 66, 69, 76, 79, 87, 2, 185, 161, 21, 16, 65, 82, 80,
79, 79, 78, 32, 87, 73, 84, 72, 32, 66, 65, 82, 66, 6, 11, 32, 6, 166,
248, 11, 79, 254, 202, 18, 66, 131, 165, 1, 65, 24, 166, 1, 72, 204, 1,
6, 81, 85, 65, 82, 69, 32, 84, 5, 84, 82, 79, 78, 71, 128, 195, 3, 2, 85,
83, 236, 145, 21, 2, 78, 65, 149, 234, 5, 6, 69, 65, 71, 85, 76, 76, 8,
40, 4, 79, 82, 84, 32, 187, 194, 16, 65, 6, 18, 83, 71, 86, 4, 26, 79,
187, 245, 11, 84, 2, 217, 245, 11, 5, 76, 73, 68, 85, 83, 2, 49, 10, 69,
82, 84, 73, 67, 65, 76, 32, 76, 73, 2, 243, 244, 11, 78, 6, 26, 66, 227,
228, 31, 65, 4, 216, 222, 7, 5, 82, 65, 67, 75, 69, 147, 225, 22, 69, 2,
209, 212, 24, 17, 32, 67, 69, 78, 84, 82, 65, 76, 73, 90, 65, 84, 73, 79,
78, 32, 83, 20, 98, 72, 32, 4, 73, 76, 68, 69, 136, 1, 6, 82, 73, 80, 76,
69, 32, 69, 5, 85, 82, 78, 69, 68, 2, 205, 220, 7, 3, 82, 69, 69, 11, 11,
32, 8, 76, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 246, 241, 11, 79, 255,
202, 18, 66, 2, 193, 173, 30, 6, 84, 32, 72, 65, 76, 70, 6, 178, 229, 15,
65, 216, 229, 15, 5, 85, 78, 68, 69, 82, 239, 66, 68, 2, 249, 191, 15, 2,
32, 67, 12, 34, 80, 170, 224, 31, 82, 3, 83, 8, 18, 32, 43, 87, 4, 11,
84, 4, 133, 208, 24, 2, 65, 67, 4, 25, 4, 65, 82, 68, 83, 4, 189, 186,
30, 6, 32, 65, 82, 82, 79, 87, 16, 42, 32, 37, 6, 45, 76, 73, 78, 69, 45,
6, 250, 169, 26, 76, 175, 202, 2, 84, 10, 54, 65, 48, 5, 71, 82, 65, 86,
69, 139, 222, 15, 77, 4, 25, 4, 67, 85, 84, 69, 5, 147, 229, 11, 45, 5,
143, 139, 12, 45, 6, 52, 3, 68, 69, 32, 137, 238, 11, 4, 71, 71, 76, 89,
4, 132, 206, 24, 14, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 82, 73, 68,
71, 149, 229, 4, 5, 66, 82, 73, 68, 71, 6, 194, 245, 11, 45, 235, 193,
18, 32, 6, 52, 7, 69, 82, 67, 73, 65, 76, 32, 219, 216, 32, 65, 4, 166,
166, 29, 77, 135, 150, 3, 65, 8, 158, 166, 8, 82, 228, 161, 16, 3, 79,
83, 73, 250, 244, 2, 76, 231, 130, 4, 65, 38, 214, 1, 70, 84, 10, 83, 84,
82, 85, 67, 84, 73, 79, 78, 32, 46, 84, 252, 235, 2, 8, 86, 69, 78, 73,
69, 78, 67, 69, 204, 195, 18, 6, 73, 67, 65, 76, 32, 84, 234, 189, 9, 74,
217, 102, 7, 71, 82, 85, 69, 78, 84, 32, 6, 140, 173, 27, 4, 69, 84, 84,
73, 150, 242, 1, 85, 245, 163, 2, 4, 79, 85, 78, 68, 4, 240, 221, 20, 2,
87, 79, 223, 240, 10, 83, 20, 80, 5, 65, 73, 78, 83, 32, 198, 1, 79, 28,
4, 82, 79, 76, 32, 183, 146, 3, 73, 12, 48, 3, 65, 83, 32, 93, 5, 87, 73,
84, 72, 32, 6, 186, 172, 24, 77, 181, 8, 15, 78, 79, 82, 77, 65, 76, 32,
83, 85, 66, 71, 82, 79, 85, 80, 6, 250, 195, 4, 76, 202, 233, 19, 86,
239, 243, 4, 79, 2, 229, 200, 30, 2, 85, 82, 4, 144, 251, 19, 3, 75, 78,
79, 173, 134, 4, 8, 83, 69, 81, 85, 69, 78, 67, 69, 6, 26, 73, 147, 158,
2, 69, 4, 150, 209, 32, 78, 87, 69, 206, 2, 36, 4, 84, 73, 67, 32, 175,
18, 89, 202, 2, 186, 1, 67, 204, 1, 6, 69, 80, 65, 67, 84, 32, 86, 70,
36, 11, 79, 76, 68, 32, 78, 85, 66, 73, 65, 78, 32, 110, 83, 213, 146,
29, 13, 77, 79, 82, 80, 72, 79, 76, 79, 71, 73, 67, 65, 76, 126, 76, 9,
79, 77, 66, 73, 78, 73, 78, 71, 32, 161, 3, 5, 65, 80, 73, 84, 65, 6, 68,
9, 83, 80, 73, 82, 73, 84, 85, 83, 32, 201, 209, 31, 2, 78, 73, 4, 128,
156, 6, 2, 76, 69, 181, 144, 17, 2, 65, 83, 56, 158, 188, 21, 78, 170,
198, 2, 68, 141, 250, 6, 8, 84, 72, 79, 85, 83, 65, 78, 68, 4, 218, 187,
18, 82, 195, 188, 11, 85, 8, 58, 68, 0, 3, 73, 78, 68, 146, 15, 86, 163,
232, 29, 70, 2, 253, 247, 29, 7, 73, 82, 69, 67, 84, 32, 81, 134, 1, 56,
3, 77, 65, 76, 197, 11, 6, 89, 77, 66, 79, 76, 32, 120, 45, 9, 76, 32,
76, 69, 84, 84, 69, 82, 32, 120, 138, 2, 65, 48, 6, 66, 79, 72, 65, 73,
82, 32, 2, 67, 82, 170, 1, 68, 160, 1, 2, 71, 65, 34, 72, 38, 75, 46, 70,
34, 76, 66, 79, 138, 3, 83, 90, 84, 46, 90, 202, 218, 5, 86, 214, 54, 80,
170, 211, 3, 73, 142, 189, 22, 82, 198, 3, 69, 218, 7, 77, 2, 78, 163,
17, 85, 4, 44, 5, 75, 72, 77, 73, 77, 171, 208, 19, 76, 2, 177, 1, 4, 73,
67, 32, 75, 10, 92, 12, 89, 80, 84, 79, 71, 82, 65, 77, 77, 73, 67, 32,
53, 7, 79, 83, 83, 69, 68, 32, 83, 8, 50, 83, 226, 4, 71, 198, 167, 32,
69, 219, 7, 78, 2, 187, 240, 24, 72, 12, 80, 9, 73, 65, 76, 69, 67, 84,
45, 80, 32, 232, 161, 32, 2, 65, 76, 175, 17, 69, 8, 206, 163, 8, 72,
174, 158, 8, 65, 200, 199, 12, 2, 75, 65, 211, 169, 3, 78, 4, 190, 3, 78,
211, 161, 32, 77, 4, 178, 218, 25, 79, 187, 162, 5, 65, 8, 42, 72, 138,
136, 29, 65, 211, 169, 3, 83, 4, 214, 177, 32, 69, 219, 19, 73, 4, 252,
205, 19, 7, 45, 83, 72, 65, 80, 69, 68, 239, 251, 7, 65, 35, 36, 3, 76,
68, 32, 195, 159, 32, 79, 30, 76, 7, 67, 79, 80, 84, 73, 67, 32, 193, 1,
7, 78, 85, 66, 73, 65, 78, 32, 22, 98, 71, 42, 72, 188, 1, 2, 83, 72,
162, 236, 14, 68, 238, 253, 9, 79, 254, 235, 5, 69, 183, 107, 65, 2, 17,
2, 65, 78, 2, 231, 137, 16, 71, 8, 254, 214, 25, 79, 246, 130, 1, 65,
131, 213, 5, 69, 8, 50, 78, 172, 192, 16, 2, 83, 72, 223, 158, 5, 87, 4,
138, 174, 32, 71, 3, 89, 10, 54, 72, 238, 157, 6, 65, 190, 254, 25, 79,
219, 3, 73, 4, 254, 159, 32, 73, 187, 13, 69, 4, 224, 147, 32, 3, 72, 69,
84, 167, 8, 65, 2, 247, 155, 32, 65, 14, 62, 75, 30, 77, 2, 80, 22, 83,
133, 132, 28, 3, 84, 65, 85, 4, 26, 72, 255, 171, 32, 65, 2, 151, 132,
28, 73, 4, 132, 190, 16, 6, 72, 73, 77, 65, 32, 83, 193, 255, 3, 3, 84,
65, 85, 4, 164, 220, 24, 3, 76, 69, 70, 133, 151, 2, 4, 82, 73, 71, 72,
6, 96, 6, 78, 73, 83, 72, 32, 86, 188, 220, 25, 8, 82, 69, 83, 80, 79,
78, 68, 83, 203, 213, 5, 65, 2, 241, 131, 29, 4, 69, 82, 83, 69, 44, 104,
2, 78, 84, 192, 132, 3, 6, 67, 72, 32, 65, 78, 68, 201, 176, 28, 8, 80,
76, 69, 32, 87, 73, 84, 72, 40, 56, 2, 69, 82, 37, 8, 73, 78, 71, 32, 82,
79, 68, 32, 4, 246, 206, 27, 66, 167, 136, 1, 83, 36, 48, 4, 84, 69, 78,
83, 1, 4, 85, 78, 73, 84, 18, 221, 239, 23, 2, 32, 68, 51, 82, 69, 76, 5,
73, 67, 75, 69, 84, 34, 79, 198, 5, 85, 50, 89, 235, 245, 30, 65, 4, 240,
175, 8, 3, 68, 73, 84, 165, 224, 20, 7, 83, 67, 69, 78, 84, 32, 77, 5,
205, 144, 27, 3, 32, 66, 65, 28, 84, 2, 83, 83, 180, 144, 30, 3, 67, 79,
68, 208, 156, 1, 3, 73, 83, 83, 155, 60, 87, 22, 46, 32, 184, 2, 3, 69,
68, 32, 223, 1, 73, 14, 44, 3, 79, 70, 32, 82, 80, 163, 246, 31, 77, 4,
216, 202, 28, 6, 74, 69, 82, 85, 83, 65, 133, 210, 2, 5, 76, 79, 82, 82,
65, 8, 76, 10, 65, 84, 84, 89, 32, 87, 73, 84, 72, 32, 41, 5, 79, 77, 77,
69, 69, 4, 206, 173, 10, 82, 25, 3, 76, 69, 70, 5, 225, 161, 3, 11, 32,
87, 73, 84, 72, 32, 72, 65, 76, 70, 45, 6, 168, 152, 25, 37, 78, 69, 71,
65, 84, 73, 86, 69, 32, 83, 81, 85, 65, 82, 69, 68, 32, 76, 65, 84, 73,
78, 32, 67, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 248, 226,
2, 2, 70, 76, 177, 216, 2, 3, 83, 87, 79, 2, 233, 254, 23, 5, 78, 71, 32,
76, 65, 4, 184, 214, 17, 3, 90, 69, 73, 175, 187, 14, 84, 6, 214, 234,
19, 73, 141, 160, 7, 4, 83, 84, 65, 76, 206, 19, 154, 1, 66, 20, 8, 78,
69, 73, 70, 79, 82, 77, 32, 154, 250, 1, 80, 114, 82, 180, 3, 2, 83, 84,
226, 234, 15, 67, 161, 191, 13, 6, 84, 32, 79, 70, 32, 77, 2, 179, 182,
5, 69, 170, 19, 176, 1, 13, 78, 85, 77, 69, 82, 73, 67, 32, 83, 73, 71,
78, 32, 184, 20, 17, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 83,
73, 71, 78, 32, 233, 1, 5, 83, 73, 71, 78, 32, 222, 1, 78, 69, 166, 2,
70, 152, 3, 2, 78, 73, 154, 2, 79, 130, 3, 83, 151, 4, 84, 24, 68, 5, 73,
71, 72, 84, 32, 153, 1, 7, 76, 65, 77, 73, 84, 69, 32, 16, 142, 14, 83,
230, 113, 85, 238, 50, 71, 136, 56, 17, 86, 65, 82, 73, 65, 78, 84, 32,
70, 79, 82, 77, 32, 85, 83, 83, 85, 242, 223, 26, 68, 199, 249, 1, 65, 8,
252, 155, 21, 5, 79, 78, 69, 32, 84, 234, 160, 9, 70, 175, 14, 84, 58,
48, 4, 73, 86, 69, 32, 125, 4, 79, 85, 82, 32, 26, 70, 83, 206, 1, 66,
250, 12, 65, 82, 71, 138, 110, 85, 231, 202, 27, 68, 6, 182, 15, 72, 245,
158, 19, 5, 73, 88, 84, 72, 83, 32, 150, 1, 66, 44, 18, 86, 65, 82, 73,
65, 78, 84, 32, 70, 79, 82, 77, 32, 76, 73, 77, 77, 85, 206, 12, 65, 82,
71, 26, 83, 242, 109, 85, 231, 202, 27, 68, 6, 204, 123, 3, 65, 78, 50,
183, 237, 26, 85, 9, 206, 211, 12, 32, 135, 215, 19, 52, 24, 44, 4, 71,
73, 68, 65, 33, 3, 78, 69, 32, 4, 246, 190, 30, 69, 183, 107, 77, 20,
156, 1, 19, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 73, 76,
73, 77, 77, 85, 174, 7, 83, 230, 113, 85, 238, 50, 71, 250, 151, 27, 68,
199, 249, 1, 65, 9, 134, 166, 32, 32, 186, 2, 51, 3, 52, 28, 92, 16, 76,
68, 32, 65, 83, 83, 89, 82, 73, 65, 78, 32, 79, 78, 69, 32, 37, 3, 78,
69, 32, 4, 246, 208, 18, 83, 219, 208, 11, 81, 24, 166, 1, 69, 52, 8, 81,
85, 65, 82, 84, 69, 82, 32, 206, 7, 66, 54, 71, 84, 5, 84, 72, 73, 82,
68, 164, 214, 24, 2, 83, 72, 237, 205, 6, 6, 72, 65, 76, 70, 32, 71, 4,
158, 8, 83, 205, 164, 1, 5, 73, 71, 72, 84, 72, 4, 174, 186, 30, 65, 183,
114, 71, 38, 144, 1, 5, 69, 86, 69, 78, 32, 188, 1, 20, 72, 65, 82, 50,
32, 84, 73, 77, 69, 83, 32, 71, 65, 76, 32, 80, 76, 85, 83, 32, 37, 3,
73, 88, 32, 18, 148, 1, 17, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82,
77, 32, 73, 77, 73, 78, 218, 1, 83, 230, 113, 85, 238, 50, 71, 250, 151,
27, 68, 199, 249, 1, 65, 6, 230, 203, 12, 32, 135, 215, 19, 51, 4, 250,
189, 28, 68, 251, 228, 2, 77, 16, 142, 1, 83, 142, 3, 65, 218, 110, 85,
238, 50, 71, 172, 130, 27, 16, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79,
82, 77, 32, 65, 83, 72, 207, 21, 68, 2, 227, 61, 72, 50, 52, 5, 72, 82,
69, 69, 32, 241, 1, 3, 87, 79, 32, 28, 142, 1, 66, 40, 4, 83, 72, 65, 82,
24, 16, 86, 65, 82, 73, 65, 78, 84, 32, 70, 79, 82, 77, 32, 69, 83, 72,
118, 65, 82, 71, 239, 184, 28, 68, 6, 136, 112, 3, 85, 82, 85, 199, 10,
65, 8, 226, 111, 50, 3, 85, 4, 222, 243, 24, 49, 203, 3, 50, 22, 82, 65,
30, 66, 32, 2, 69, 83, 22, 71, 26, 83, 61, 6, 84, 72, 73, 82, 68, 83, 4,
225, 184, 1, 2, 83, 72, 4, 254, 120, 65, 243, 226, 26, 85, 2, 211, 246,
24, 72, 4, 53, 3, 69, 83, 72, 4, 11, 72, 4, 17, 2, 65, 82, 4, 254, 156,
32, 50, 3, 85, 4, 11, 32, 4, 216, 211, 27, 12, 86, 65, 82, 73, 65, 78,
84, 32, 70, 79, 82, 77, 179, 100, 68, 10, 160, 1, 9, 68, 73, 65, 71, 79,
78, 65, 76, 32, 220, 222, 25, 6, 86, 69, 82, 84, 73, 67, 145, 130, 3, 14,
79, 76, 68, 32, 65, 83, 83, 89, 82, 73, 65, 78, 32, 87, 6, 220, 203, 28,
2, 84, 82, 244, 254, 2, 4, 81, 85, 65, 68, 15, 67, 194, 17, 202, 1, 65,
186, 15, 66, 170, 5, 68, 190, 15, 69, 202, 10, 71, 182, 30, 72, 238, 3,
73, 238, 4, 75, 154, 20, 76, 134, 37, 77, 134, 6, 78, 226, 17, 80, 210,
3, 82, 42, 83, 238, 19, 84, 186, 8, 85, 207, 20, 90, 141, 1, 160, 1, 7,
32, 84, 73, 77, 69, 83, 32, 142, 1, 66, 250, 3, 68, 38, 75, 90, 76, 212,
1, 3, 77, 65, 82, 78, 78, 134, 2, 82, 42, 83, 138, 141, 31, 80, 215, 127,
50, 16, 144, 173, 1, 5, 76, 65, 71, 65, 82, 226, 23, 71, 254, 253, 12,
73, 174, 197, 13, 77, 162, 163, 2, 83, 194, 165, 1, 66, 246, 67, 72, 187,
2, 65, 45, 22, 32, 219, 2, 50, 28, 48, 6, 84, 73, 77, 69, 83, 32, 139,
203, 1, 71, 26, 180, 1, 2, 71, 65, 38, 73, 36, 2, 83, 72, 128, 113, 8,
85, 32, 80, 76, 85, 83, 32, 85, 188, 56, 4, 68, 85, 78, 51, 166, 2, 65,
204, 2, 3, 78, 85, 78, 242, 27, 76, 255, 198, 30, 72, 4, 194, 210, 1, 78,
215, 193, 30, 76, 4, 210, 169, 1, 71, 207, 234, 29, 77, 4, 142, 236, 24,
85, 187, 188, 5, 69, 15, 37, 7, 32, 84, 73, 77, 69, 83, 32, 12, 206, 133,
1, 77, 130, 59, 71, 194, 9, 83, 234, 10, 84, 148, 210, 28, 2, 66, 65,
251, 235, 1, 65, 5, 249, 51, 5, 32, 84, 73, 77, 69, 7, 37, 7, 32, 84, 73,
77, 69, 83, 32, 4, 252, 27, 5, 83, 72, 73, 84, 65, 215, 80, 69, 23, 68,
7, 32, 84, 73, 77, 69, 83, 32, 234, 221, 25, 69, 155, 227, 5, 65, 16,
102, 75, 156, 173, 1, 2, 68, 73, 146, 254, 26, 71, 198, 249, 1, 85, 186,
95, 65, 198, 94, 83, 215, 42, 72, 4, 130, 158, 1, 65, 247, 241, 30, 73,
7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 142, 254, 3, 75, 147, 228, 27,
83, 13, 26, 32, 227, 225, 31, 83, 8, 128, 1, 10, 80, 76, 85, 83, 32, 78,
65, 71, 65, 32, 172, 192, 8, 7, 84, 72, 82, 69, 69, 32, 84, 141, 131, 6,
4, 79, 86, 69, 82, 4, 144, 140, 1, 16, 79, 80, 80, 79, 83, 73, 78, 71,
32, 65, 78, 32, 80, 76, 85, 83, 215, 195, 23, 83, 6, 200, 49, 2, 65, 68,
151, 166, 18, 75, 18, 26, 72, 139, 173, 12, 65, 17, 42, 32, 242, 214, 18,
71, 167, 181, 13, 50, 10, 68, 9, 79, 86, 69, 82, 32, 65, 83, 72, 32, 174,
97, 90, 135, 112, 75, 6, 176, 1, 8, 79, 86, 69, 82, 32, 65, 83, 72, 157,
143, 1, 29, 84, 85, 71, 50, 32, 79, 86, 69, 82, 32, 84, 85, 71, 50, 32,
84, 85, 71, 50, 32, 79, 86, 69, 82, 32, 84, 85, 71, 50, 5, 149, 145, 1,
27, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 65, 83, 72, 32, 79, 86, 69,
82, 32, 65, 83, 72, 32, 79, 86, 69, 82, 52, 30, 65, 158, 2, 73, 95, 85,
27, 66, 68, 44, 4, 72, 65, 82, 50, 90, 76, 66, 82, 151, 140, 28, 71, 5,
145, 208, 1, 6, 32, 84, 73, 77, 69, 83, 9, 37, 7, 32, 84, 73, 77, 69, 83,
32, 6, 238, 164, 1, 65, 154, 207, 30, 78, 163, 17, 90, 7, 208, 251, 30,
7, 32, 79, 86, 69, 82, 32, 66, 139, 139, 1, 65, 5, 175, 223, 24, 65, 9,
37, 7, 32, 84, 73, 77, 69, 83, 32, 6, 134, 156, 1, 73, 242, 198, 29, 71,
191, 163, 1, 65, 19, 50, 32, 168, 1, 3, 76, 85, 71, 239, 169, 1, 82, 8,
88, 8, 79, 86, 69, 82, 32, 66, 85, 32, 149, 208, 27, 8, 67, 82, 79, 83,
83, 73, 78, 71, 6, 160, 207, 12, 7, 84, 73, 77, 69, 83, 32, 78, 214, 247,
17, 65, 155, 110, 85, 5, 249, 242, 3, 8, 32, 79, 86, 69, 82, 32, 66, 85,
180, 1, 34, 65, 222, 5, 73, 195, 2, 85, 67, 50, 71, 150, 5, 82, 146, 49,
32, 243, 204, 31, 77, 55, 26, 32, 251, 130, 32, 51, 50, 76, 13, 75, 73,
83, 73, 77, 53, 32, 84, 73, 77, 69, 83, 32, 227, 198, 1, 84, 48, 146, 1,
65, 30, 66, 38, 71, 112, 2, 73, 82, 42, 76, 94, 85, 182, 131, 1, 80, 162,
61, 84, 134, 133, 28, 75, 182, 162, 2, 78, 254, 2, 83, 163, 17, 72, 4,
110, 32, 235, 220, 30, 77, 4, 254, 148, 30, 65, 251, 235, 1, 73, 10, 34,
65, 58, 73, 219, 185, 31, 85, 5, 11, 32, 2, 141, 149, 30, 6, 80, 76, 85,
83, 32, 77, 5, 183, 216, 24, 82, 5, 129, 142, 14, 5, 32, 80, 76, 85, 83,
8, 26, 85, 163, 255, 31, 65, 7, 160, 151, 1, 7, 32, 80, 76, 85, 83, 32,
77, 255, 231, 30, 77, 6, 52, 7, 50, 32, 80, 76, 85, 83, 32, 155, 253, 31,
83, 4, 128, 27, 2, 71, 73, 147, 248, 29, 77, 7, 187, 202, 12, 65, 25, 54,
77, 150, 1, 78, 76, 2, 83, 72, 215, 251, 31, 66, 13, 44, 7, 32, 84, 73,
77, 69, 83, 32, 59, 50, 6, 220, 69, 2, 85, 32, 238, 226, 13, 73, 175,
167, 17, 83, 5, 205, 166, 13, 6, 32, 84, 73, 77, 69, 83, 5, 253, 253, 18,
14, 32, 75, 65, 83, 75, 65, 76, 32, 85, 32, 71, 85, 78, 85, 5, 245, 157,
1, 5, 32, 80, 76, 85, 83, 91, 70, 32, 66, 66, 94, 71, 234, 4, 78, 162,
205, 24, 82, 195, 167, 7, 72, 6, 154, 176, 1, 71, 170, 3, 83, 181, 211,
12, 4, 79, 86, 69, 82, 9, 52, 7, 32, 84, 73, 77, 69, 83, 32, 239, 249,
31, 50, 4, 250, 145, 1, 69, 231, 186, 30, 83, 61, 52, 7, 32, 84, 73, 77,
69, 83, 32, 243, 178, 31, 85, 56, 122, 65, 58, 68, 30, 71, 74, 75, 90,
76, 110, 77, 50, 83, 130, 80, 69, 218, 58, 73, 130, 213, 16, 72, 214,
129, 14, 78, 3, 80, 6, 32, 2, 83, 72, 219, 202, 31, 78, 5, 251, 220, 14,
32, 4, 250, 167, 31, 73, 3, 85, 8, 26, 73, 167, 247, 31, 65, 7, 140, 141,
1, 2, 82, 50, 135, 233, 30, 83, 8, 26, 85, 211, 185, 1, 65, 6, 40, 4, 83,
72, 85, 50, 179, 246, 31, 82, 5, 175, 26, 32, 8, 26, 65, 45, 2, 85, 72,
6, 202, 26, 77, 169, 178, 24, 3, 75, 45, 48, 2, 225, 57, 5, 32, 80, 76,
85, 83, 6, 170, 138, 30, 65, 174, 173, 1, 69, 223, 61, 73, 4, 238, 138,
1, 73, 195, 211, 30, 72, 11, 26, 51, 199, 244, 31, 52, 7, 143, 9, 32,
117, 130, 1, 32, 90, 50, 210, 1, 78, 202, 1, 82, 60, 3, 83, 72, 50, 52,
3, 90, 69, 78, 242, 239, 18, 71, 142, 255, 11, 68, 215, 127, 76, 4, 168,
25, 11, 79, 86, 69, 82, 32, 69, 32, 78, 85, 78, 32, 253, 94, 4, 84, 73,
77, 69, 19, 37, 7, 32, 84, 73, 77, 69, 83, 32, 16, 134, 1, 83, 144, 168,
1, 10, 65, 32, 80, 76, 85, 83, 32, 72, 65, 32, 222, 165, 29, 71, 182, 16,
80, 182, 26, 75, 254, 100, 77, 219, 19, 85, 4, 214, 229, 30, 65, 255,
116, 72, 15, 11, 32, 12, 96, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 36,
6, 84, 73, 77, 69, 83, 32, 247, 177, 24, 83, 2, 245, 160, 14, 4, 83, 73,
78, 71, 6, 204, 138, 1, 4, 71, 65, 78, 50, 211, 206, 30, 77, 6, 36, 3,
73, 78, 50, 187, 159, 31, 69, 5, 215, 224, 30, 32, 5, 229, 16, 9, 32, 67,
82, 79, 83, 83, 73, 78, 71, 63, 11, 32, 60, 96, 14, 83, 72, 69, 83, 72,
73, 71, 32, 84, 73, 77, 69, 83, 32, 97, 6, 84, 73, 77, 69, 83, 32, 16,
178, 131, 1, 73, 254, 224, 2, 77, 170, 158, 26, 65, 220, 110, 2, 76, 65,
198, 87, 83, 147, 17, 72, 44, 134, 1, 65, 68, 5, 68, 85, 78, 51, 32, 26,
75, 58, 76, 62, 83, 34, 85, 222, 127, 73, 204, 31, 2, 72, 65, 242, 156,
29, 71, 199, 103, 66, 9, 244, 86, 9, 32, 80, 76, 85, 83, 32, 76, 65, 76,
131, 149, 31, 78, 4, 217, 32, 2, 71, 85, 6, 132, 173, 24, 5, 65, 83, 75,
65, 76, 187, 195, 3, 85, 8, 34, 65, 194, 234, 31, 73, 3, 85, 5, 201, 85,
2, 76, 32, 4, 210, 211, 31, 72, 215, 22, 85, 4, 134, 234, 31, 50, 3, 68,
160, 2, 42, 65, 166, 19, 69, 122, 73, 135, 5, 85, 191, 1, 114, 50, 144,
16, 2, 66, 65, 94, 68, 22, 76, 38, 78, 206, 140, 1, 32, 154, 6, 82, 166,
175, 28, 83, 155, 149, 2, 77, 153, 1, 11, 32, 150, 1, 68, 6, 84, 73, 77,
69, 83, 32, 153, 128, 1, 5, 79, 86, 69, 82, 32, 148, 1, 202, 1, 65, 162,
2, 66, 154, 1, 68, 178, 1, 69, 58, 71, 178, 1, 72, 230, 1, 73, 70, 75,
194, 1, 76, 62, 77, 50, 78, 130, 1, 83, 142, 1, 85, 222, 154, 1, 84, 204,
150, 23, 3, 90, 73, 90, 139, 165, 7, 80, 18, 132, 1, 6, 32, 80, 76, 85,
83, 32, 50, 78, 52, 2, 83, 72, 137, 175, 18, 14, 66, 50, 32, 84, 69, 78,
85, 32, 80, 76, 85, 83, 32, 84, 6, 202, 58, 68, 142, 214, 13, 73, 131,
210, 17, 72, 5, 185, 61, 9, 32, 80, 76, 85, 83, 32, 75, 65, 75, 7, 11,
50, 5, 133, 90, 6, 32, 80, 76, 85, 83, 32, 10, 26, 65, 77, 2, 85, 82, 6,
42, 72, 44, 2, 82, 32, 135, 227, 31, 68, 2, 11, 65, 2, 227, 187, 24, 82,
5, 11, 32, 2, 169, 152, 31, 4, 80, 76, 85, 83, 14, 34, 73, 54, 85, 139,
226, 31, 65, 7, 17, 2, 77, 32, 4, 146, 22, 84, 207, 129, 1, 71, 6, 56, 8,
71, 32, 84, 73, 77, 69, 83, 32, 207, 225, 31, 66, 4, 158, 119, 73, 151,
45, 75, 10, 38, 78, 254, 2, 76, 139, 136, 30, 82, 5, 243, 28, 32, 18, 18,
65, 99, 73, 11, 26, 82, 247, 158, 1, 78, 7, 33, 6, 32, 80, 76, 85, 83,
32, 4, 206, 201, 31, 78, 255, 2, 68, 9, 174, 122, 52, 253, 242, 12, 7,
82, 50, 32, 80, 76, 85, 83, 12, 62, 65, 154, 124, 85, 233, 240, 12, 6,
73, 32, 80, 76, 85, 83, 8, 40, 6, 32, 80, 76, 85, 83, 32, 83, 76, 4, 48,
6, 76, 85, 32, 80, 76, 85, 171, 222, 31, 65, 2, 11, 83, 2, 215, 97, 32,
5, 149, 236, 13, 5, 32, 80, 76, 85, 83, 4, 176, 100, 10, 83, 72, 32, 80,
76, 85, 83, 32, 72, 85, 147, 15, 71, 12, 34, 65, 36, 2, 73, 68, 27, 85,
4, 234, 224, 24, 83, 147, 252, 6, 75, 5, 225, 77, 2, 32, 80, 4, 60, 5,
83, 72, 85, 50, 32, 197, 127, 5, 51, 32, 80, 76, 85, 2, 205, 158, 1, 3,
80, 76, 85, 8, 26, 65, 183, 218, 31, 85, 7, 11, 77, 5, 227, 159, 1, 32,
6, 250, 77, 69, 162, 162, 29, 85, 139, 235, 1, 73, 10, 26, 69, 73, 2, 85,
78, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 242, 178, 24, 69, 235, 147, 7,
71, 5, 11, 32, 2, 187, 101, 79, 14, 42, 72, 254, 235, 23, 65, 247, 220,
7, 85, 8, 18, 69, 51, 73, 5, 221, 224, 30, 7, 32, 80, 76, 85, 83, 32, 84,
4, 130, 217, 31, 68, 3, 77, 7, 11, 68, 5, 237, 228, 13, 5, 32, 80, 76,
85, 83, 7, 11, 32, 4, 206, 249, 29, 82, 177, 177, 1, 11, 67, 82, 79, 83,
83, 73, 78, 71, 32, 71, 65, 5, 191, 131, 1, 32, 7, 134, 131, 1, 32, 231,
195, 30, 65, 11, 11, 50, 9, 11, 32, 6, 80, 8, 67, 82, 79, 83, 83, 73, 78,
71, 0, 4, 79, 86, 69, 82, 239, 207, 26, 84, 2, 197, 49, 3, 32, 71, 65, 8,
44, 5, 83, 72, 84, 73, 78, 171, 174, 24, 50, 7, 37, 7, 32, 84, 73, 77,
69, 83, 32, 4, 234, 220, 30, 75, 215, 120, 85, 49, 70, 32, 94, 52, 114,
82, 190, 1, 83, 130, 207, 30, 68, 211, 130, 1, 71, 6, 152, 133, 9, 6, 84,
73, 77, 69, 83, 32, 249, 250, 4, 8, 67, 82, 79, 83, 83, 73, 78, 71, 7,
11, 32, 4, 64, 8, 67, 82, 79, 83, 83, 73, 78, 71, 1, 4, 79, 86, 69, 82,
2, 197, 170, 24, 3, 32, 71, 73, 16, 26, 51, 147, 136, 1, 50, 13, 37, 7,
32, 84, 73, 77, 69, 83, 32, 10, 70, 65, 0, 2, 76, 85, 206, 127, 71, 254,
253, 12, 73, 131, 210, 17, 80, 2, 197, 253, 13, 7, 32, 80, 76, 85, 83,
32, 73, 14, 26, 72, 231, 197, 30, 65, 13, 11, 32, 10, 22, 84, 247, 20,
67, 8, 44, 5, 73, 77, 69, 83, 32, 239, 171, 31, 69, 6, 192, 20, 6, 71,
73, 83, 72, 32, 67, 146, 126, 84, 227, 247, 29, 66, 43, 110, 50, 174, 1,
68, 218, 1, 77, 54, 82, 152, 250, 13, 9, 32, 67, 82, 79, 83, 83, 73, 78,
71, 223, 209, 17, 76, 15, 11, 32, 12, 48, 6, 84, 73, 77, 69, 83, 32, 167,
132, 1, 71, 10, 252, 24, 3, 75, 65, 75, 194, 75, 73, 152, 20, 10, 83, 65,
76, 32, 80, 76, 85, 83, 32, 84, 231, 213, 29, 78, 11, 11, 32, 8, 128, 1,
10, 80, 76, 85, 83, 32, 71, 73, 83, 72, 32, 16, 6, 84, 73, 77, 69, 83,
32, 177, 66, 8, 79, 86, 69, 82, 32, 71, 85, 68, 2, 135, 121, 84, 4, 172,
145, 1, 5, 65, 32, 80, 76, 85, 223, 194, 29, 75, 5, 17, 2, 32, 84, 2,
241, 42, 4, 73, 77, 69, 83, 9, 26, 85, 219, 203, 31, 55, 4, 198, 202, 31,
83, 147, 1, 78, 50, 30, 65, 82, 73, 215, 1, 85, 11, 26, 32, 255, 202, 31,
76, 6, 32, 2, 84, 69, 147, 128, 1, 71, 4, 235, 127, 78, 23, 37, 7, 32,
84, 73, 77, 69, 83, 32, 20, 104, 3, 65, 83, 72, 234, 228, 27, 68, 158,
228, 2, 78, 94, 75, 170, 57, 66, 2, 71, 162, 25, 83, 143, 45, 85, 7, 224,
55, 8, 32, 79, 86, 69, 82, 32, 72, 73, 211, 145, 31, 50, 19, 48, 2, 66,
50, 130, 161, 24, 76, 179, 166, 7, 83, 13, 37, 7, 32, 84, 73, 77, 69, 83,
32, 10, 254, 138, 1, 75, 206, 216, 26, 76, 242, 216, 2, 72, 254, 59, 65,
195, 9, 85, 49, 104, 3, 68, 73, 77, 94, 71, 214, 1, 76, 62, 77, 190, 193,
31, 32, 170, 1, 83, 146, 1, 66, 2, 78, 3, 82, 7, 53, 11, 32, 79, 86, 69,
82, 32, 73, 68, 73, 77, 32, 4, 166, 136, 24, 83, 175, 197, 6, 66, 13, 11,
73, 11, 11, 32, 8, 162, 123, 71, 204, 244, 11, 31, 79, 86, 69, 82, 32,
73, 71, 73, 32, 83, 72, 73, 82, 32, 79, 86, 69, 82, 32, 83, 72, 73, 82,
32, 85, 68, 32, 79, 86, 69, 82, 250, 151, 17, 68, 175, 170, 1, 82, 7, 26,
32, 151, 196, 31, 50, 2, 169, 72, 4, 84, 73, 77, 69, 13, 26, 32, 251,
243, 30, 73, 8, 76, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 162, 111,
84, 235, 149, 23, 83, 2, 181, 192, 30, 5, 83, 73, 78, 71, 32, 224, 1, 78,
65, 146, 15, 73, 242, 1, 85, 158, 73, 69, 193, 188, 23, 4, 87, 85, 51,
49, 177, 1, 164, 1, 7, 32, 84, 73, 77, 69, 83, 32, 210, 9, 50, 66, 68,
102, 75, 50, 76, 98, 77, 28, 4, 83, 75, 65, 76, 184, 207, 15, 6, 80, 32,
69, 76, 65, 77, 139, 229, 15, 66, 134, 1, 170, 1, 65, 94, 66, 82, 69, 30,
71, 182, 2, 73, 34, 75, 34, 76, 38, 77, 170, 1, 83, 118, 84, 34, 85, 214,
8, 72, 246, 51, 78, 162, 230, 16, 80, 198, 240, 13, 82, 147, 17, 90, 13,
46, 68, 234, 145, 31, 78, 165, 44, 2, 83, 72, 5, 229, 50, 7, 32, 80, 76,
85, 83, 32, 75, 10, 34, 65, 178, 190, 31, 73, 3, 85, 6, 194, 210, 29, 76,
238, 235, 1, 68, 3, 82, 4, 138, 25, 82, 151, 61, 83, 26, 30, 65, 98, 73,
147, 1, 85, 11, 38, 82, 206, 123, 78, 215, 193, 30, 76, 5, 249, 21, 10,
32, 80, 76, 85, 83, 32, 83, 72, 65, 51, 11, 32, 2, 83, 72, 135, 149, 24,
82, 7, 11, 32, 4, 26, 67, 255, 130, 1, 80, 2, 37, 7, 82, 79, 83, 83, 73,
78, 71, 2, 165, 215, 27, 2, 32, 71, 7, 210, 193, 27, 82, 135, 250, 3, 68,
4, 218, 167, 31, 71, 219, 19, 77, 8, 250, 8, 73, 135, 179, 17, 65, 6,
202, 177, 12, 85, 171, 137, 19, 73, 12, 18, 69, 83, 73, 9, 33, 6, 32, 80,
76, 85, 83, 32, 6, 174, 149, 31, 68, 150, 14, 84, 255, 2, 71, 5, 45, 9,
32, 80, 76, 85, 83, 32, 78, 85, 78, 2, 147, 219, 29, 85, 18, 62, 72, 206,
226, 27, 65, 200, 221, 2, 2, 85, 72, 131, 120, 73, 10, 186, 188, 30, 85,
142, 54, 73, 162, 70, 65, 3, 69, 4, 214, 255, 30, 65, 223, 56, 85, 17,
110, 32, 238, 92, 82, 200, 167, 26, 9, 77, 85, 77, 32, 84, 73, 77, 69,
83, 226, 177, 4, 83, 146, 1, 50, 3, 68, 2, 207, 156, 21, 85, 5, 193, 129,
12, 11, 32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 75, 10, 42, 53, 166, 182,
31, 50, 2, 51, 3, 52, 5, 221, 140, 24, 9, 32, 79, 86, 69, 82, 32, 75, 65,
68, 5, 189, 75, 8, 32, 84, 73, 77, 69, 83, 32, 73, 9, 26, 32, 203, 164,
31, 65, 4, 166, 105, 84, 233, 207, 23, 9, 67, 82, 79, 83, 83, 73, 78, 71,
32, 4, 218, 180, 31, 50, 3, 52, 7, 11, 32, 4, 70, 76, 1, 13, 79, 86, 69,
82, 32, 75, 65, 83, 75, 65, 76, 32, 76, 2, 173, 116, 24, 65, 71, 65, 66,
32, 84, 73, 77, 69, 83, 32, 85, 32, 79, 86, 69, 82, 32, 76, 65, 71, 65,
66, 32, 21, 68, 7, 32, 84, 73, 77, 69, 83, 32, 50, 83, 134, 178, 31, 68,
3, 78, 6, 26, 85, 239, 235, 30, 66, 5, 151, 178, 31, 68, 8, 52, 3, 73,
77, 53, 254, 165, 30, 65, 211, 139, 1, 72, 5, 133, 136, 24, 11, 32, 79,
86, 69, 82, 32, 75, 73, 83, 73, 77, 25, 200, 1, 29, 32, 79, 86, 69, 82,
32, 72, 73, 32, 84, 73, 77, 69, 83, 32, 65, 83, 72, 50, 32, 75, 85, 32,
79, 86, 69, 82, 32, 72, 18, 52, 54, 82, 186, 98, 83, 230, 1, 76, 226,
202, 30, 51, 2, 55, 3, 78, 2, 155, 71, 73, 5, 205, 176, 30, 8, 32, 86,
65, 82, 73, 65, 78, 84, 5, 213, 115, 9, 32, 79, 80, 80, 79, 83, 73, 78,
71, 240, 2, 30, 65, 174, 26, 73, 59, 85, 141, 2, 68, 2, 71, 65, 252, 12,
2, 75, 45, 222, 11, 76, 46, 77, 135, 55, 72, 118, 22, 66, 131, 11, 82,
109, 11, 32, 106, 48, 6, 84, 73, 77, 69, 83, 32, 131, 239, 23, 83, 104,
190, 1, 65, 186, 1, 66, 34, 71, 70, 72, 66, 73, 94, 75, 118, 76, 46, 77,
46, 83, 138, 2, 84, 126, 85, 156, 172, 4, 8, 90, 85, 32, 79, 86, 69, 82,
32, 226, 211, 25, 68, 222, 83, 69, 143, 57, 78, 15, 80, 6, 32, 80, 76,
85, 83, 32, 76, 4, 83, 72, 32, 90, 162, 170, 31, 76, 3, 78, 6, 38, 68,
138, 135, 30, 71, 227, 23, 76, 2, 201, 62, 5, 65, 32, 80, 76, 85, 2, 149,
112, 2, 73, 68, 4, 230, 227, 30, 65, 163, 70, 73, 10, 48, 2, 85, 68, 154,
211, 27, 65, 159, 214, 3, 73, 5, 191, 105, 32, 6, 204, 252, 17, 7, 73,
32, 84, 73, 77, 69, 83, 171, 176, 12, 65, 8, 22, 77, 175, 62, 71, 7, 33,
6, 32, 80, 76, 85, 83, 32, 4, 190, 131, 31, 76, 179, 34, 72, 10, 26, 85,
131, 170, 29, 73, 6, 26, 76, 211, 167, 31, 51, 5, 41, 8, 32, 80, 76, 85,
83, 32, 72, 73, 2, 219, 65, 32, 8, 198, 100, 65, 198, 215, 28, 73, 223,
110, 85, 6, 26, 69, 199, 187, 29, 85, 5, 175, 25, 32, 12, 26, 72, 203,
149, 31, 85, 10, 100, 14, 73, 84, 65, 32, 80, 76, 85, 83, 32, 71, 73, 83,
72, 32, 96, 2, 85, 50, 217, 3, 2, 69, 32, 4, 48, 6, 80, 76, 85, 83, 32,
69, 191, 158, 26, 84, 2, 11, 82, 2, 11, 73, 2, 171, 253, 23, 78, 5, 189,
73, 5, 32, 80, 76, 85, 83, 6, 86, 65, 189, 30, 16, 69, 32, 80, 76, 85,
83, 32, 65, 32, 80, 76, 85, 83, 32, 83, 85, 4, 246, 250, 23, 75, 231,
168, 7, 71, 13, 72, 6, 32, 80, 76, 85, 83, 32, 190, 41, 50, 162, 248, 30,
83, 147, 1, 68, 4, 26, 85, 211, 162, 31, 65, 2, 255, 40, 32, 11, 11, 32,
8, 68, 4, 71, 85, 78, 85, 97, 9, 84, 73, 77, 69, 83, 32, 83, 72, 69, 5,
73, 16, 32, 79, 86, 69, 82, 32, 76, 65, 71, 65, 82, 32, 71, 85, 78, 85,
2, 135, 244, 30, 32, 5, 11, 32, 2, 201, 210, 14, 4, 80, 76, 85, 83, 136,
1, 82, 48, 146, 2, 49, 30, 50, 114, 51, 82, 52, 222, 2, 54, 154, 4, 55,
243, 24, 53, 22, 158, 1, 50, 30, 56, 180, 52, 15, 55, 57, 32, 79, 86, 69,
82, 32, 76, 65, 75, 45, 48, 55, 57, 254, 254, 10, 53, 218, 195, 12, 54,
2, 57, 94, 51, 139, 172, 3, 48, 4, 226, 158, 31, 49, 3, 53, 4, 228, 246,
23, 12, 49, 32, 79, 86, 69, 82, 32, 76, 65, 75, 45, 48, 227, 167, 7, 48,
4, 178, 246, 23, 52, 95, 51, 16, 46, 50, 38, 54, 186, 239, 23, 49, 159,
2, 51, 6, 166, 157, 31, 48, 2, 53, 3, 56, 4, 130, 157, 31, 53, 3, 54, 12,
42, 52, 250, 232, 11, 56, 227, 140, 12, 57, 6, 186, 156, 31, 51, 2, 55,
3, 56, 30, 62, 52, 214, 1, 53, 30, 57, 134, 243, 23, 55, 139, 172, 3, 56,
14, 26, 57, 191, 155, 31, 49, 13, 37, 7, 32, 84, 73, 77, 69, 83, 32, 10,
116, 9, 80, 65, 80, 32, 80, 76, 85, 83, 32, 140, 166, 13, 7, 85, 50, 32,
80, 76, 85, 83, 218, 31, 73, 211, 175, 17, 71, 4, 210, 13, 80, 51, 76, 4,
130, 154, 31, 48, 3, 55, 8, 230, 153, 31, 48, 2, 50, 2, 51, 3, 53, 46,
60, 2, 49, 55, 240, 1, 2, 52, 56, 222, 235, 23, 48, 23, 51, 23, 37, 7,
32, 84, 73, 77, 69, 83, 32, 20, 122, 84, 34, 85, 162, 11, 75, 132, 34, 9,
68, 85, 78, 51, 32, 71, 85, 78, 85, 142, 255, 28, 65, 222, 164, 1, 66,
247, 67, 76, 4, 250, 222, 30, 65, 223, 56, 69, 6, 222, 213, 14, 82, 218,
193, 16, 50, 3, 68, 21, 37, 7, 32, 84, 73, 77, 69, 83, 32, 18, 154, 1,
85, 220, 8, 4, 80, 65, 80, 32, 146, 45, 73, 224, 233, 12, 10, 83, 72, 69,
83, 72, 32, 80, 76, 85, 83, 254, 132, 5, 68, 170, 221, 12, 78, 163, 17,
71, 4, 238, 211, 14, 82, 219, 193, 16, 68, 4, 190, 236, 23, 50, 207, 174,
3, 52, 5, 11, 32, 2, 145, 6, 4, 84, 73, 77, 69, 7, 49, 10, 32, 84, 73,
77, 69, 83, 32, 75, 85, 82, 5, 221, 215, 11, 5, 32, 80, 76, 85, 83, 9,
200, 215, 11, 2, 77, 77, 158, 187, 19, 83, 147, 1, 76, 93, 90, 50, 212,
7, 3, 71, 65, 76, 142, 1, 77, 130, 62, 32, 134, 204, 30, 51, 2, 72, 3,
76, 69, 11, 32, 66, 88, 4, 67, 82, 79, 83, 0, 4, 79, 80, 80, 79, 44, 4,
71, 85, 78, 85, 38, 83, 35, 84, 2, 205, 213, 11, 6, 83, 73, 78, 71, 32,
76, 2, 193, 24, 5, 32, 84, 73, 77, 69, 6, 250, 68, 72, 191, 142, 23, 81,
54, 44, 5, 73, 77, 69, 83, 32, 235, 235, 30, 69, 52, 188, 1, 4, 69, 83,
72, 50, 94, 72, 42, 75, 68, 2, 76, 65, 34, 77, 60, 3, 80, 65, 80, 118,
83, 90, 84, 250, 56, 71, 250, 130, 8, 78, 242, 234, 18, 68, 254, 216, 2,
65, 166, 69, 66, 215, 53, 73, 7, 11, 32, 4, 26, 80, 175, 136, 26, 84, 2,
17, 2, 76, 85, 2, 129, 131, 30, 3, 83, 32, 76, 4, 184, 66, 2, 73, 32,
183, 192, 29, 65, 8, 32, 2, 65, 68, 247, 141, 31, 73, 6, 226, 19, 51,
147, 250, 30, 50, 4, 174, 20, 32, 131, 196, 17, 71, 2, 11, 69, 2, 11, 32,
2, 249, 189, 13, 4, 80, 76, 85, 83, 5, 11, 32, 2, 33, 6, 80, 76, 85, 83,
32, 80, 2, 45, 9, 65, 80, 32, 80, 76, 85, 83, 32, 76, 2, 187, 145, 27,
85, 6, 26, 73, 131, 231, 30, 72, 4, 194, 18, 32, 201, 196, 26, 7, 75, 50,
32, 80, 76, 85, 83, 4, 162, 53, 85, 139, 24, 65, 9, 11, 32, 6, 22, 79,
207, 67, 83, 4, 56, 7, 80, 80, 79, 83, 73, 78, 71, 1, 3, 86, 69, 82, 2,
21, 3, 32, 76, 85, 2, 187, 254, 29, 71, 7, 45, 9, 32, 79, 86, 69, 82, 32,
76, 85, 77, 5, 187, 59, 32, 70, 34, 65, 70, 69, 22, 73, 71, 85, 17, 170,
45, 32, 188, 1, 2, 83, 72, 186, 218, 30, 50, 2, 72, 3, 82, 7, 251, 247,
26, 83, 7, 192, 142, 27, 8, 32, 80, 76, 85, 83, 32, 90, 65, 135, 250, 3,
78, 43, 104, 2, 83, 72, 186, 60, 71, 140, 142, 11, 5, 32, 79, 86, 69, 82,
40, 2, 82, 71, 173, 203, 6, 2, 78, 83, 31, 22, 32, 183, 2, 51, 16, 136,
1, 9, 79, 86, 69, 82, 32, 77, 85, 83, 72, 124, 6, 84, 73, 77, 69, 83, 32,
237, 245, 26, 10, 67, 82, 79, 83, 83, 73, 78, 71, 32, 77, 9, 37, 7, 32,
84, 73, 77, 69, 83, 32, 6, 42, 65, 154, 204, 28, 75, 211, 182, 2, 71, 2,
237, 197, 11, 5, 32, 80, 76, 85, 83, 6, 162, 140, 30, 75, 158, 118, 90,
187, 2, 65, 13, 11, 32, 10, 44, 6, 84, 73, 77, 69, 83, 32, 203, 57, 71,
8, 38, 65, 146, 240, 30, 68, 163, 17, 90, 5, 233, 143, 13, 5, 32, 80, 76,
85, 83, 158, 1, 42, 65, 134, 2, 69, 94, 73, 199, 7, 85, 23, 52, 2, 71,
65, 166, 1, 77, 182, 129, 31, 50, 3, 52, 11, 26, 32, 191, 130, 31, 82, 6,
100, 8, 79, 80, 80, 79, 83, 73, 78, 71, 146, 59, 73, 197, 14, 9, 84, 73,
77, 69, 83, 32, 83, 72, 85, 2, 141, 191, 30, 3, 32, 78, 65, 7, 204, 21,
2, 32, 78, 231, 235, 30, 50, 9, 11, 32, 6, 44, 6, 84, 73, 77, 69, 83, 32,
179, 57, 83, 4, 174, 186, 30, 85, 163, 70, 65, 73, 90, 77, 78, 78, 212,
198, 20, 6, 32, 84, 73, 77, 69, 83, 202, 204, 8, 83, 239, 235, 1, 50, 7,
45, 9, 32, 84, 73, 77, 69, 83, 32, 71, 65, 4, 158, 3, 82, 179, 58, 78,
59, 36, 3, 68, 65, 50, 227, 254, 30, 57, 55, 37, 7, 32, 84, 73, 77, 69,
83, 32, 52, 162, 1, 65, 34, 71, 50, 75, 16, 5, 76, 65, 75, 45, 48, 22,
77, 86, 78, 34, 80, 76, 3, 83, 72, 69, 94, 85, 240, 15, 3, 68, 73, 77,
186, 222, 29, 66, 135, 120, 72, 6, 246, 2, 83, 159, 250, 30, 78, 8, 26,
73, 167, 250, 29, 85, 5, 199, 251, 30, 83, 2, 211, 20, 69, 2, 207, 213,
23, 53, 4, 26, 69, 255, 144, 29, 65, 2, 25, 4, 32, 80, 76, 85, 2, 177,
41, 3, 83, 32, 71, 4, 234, 171, 30, 85, 227, 79, 69, 2, 33, 6, 65, 80,
32, 80, 76, 85, 2, 11, 83, 2, 241, 231, 29, 2, 32, 80, 9, 37, 7, 32, 80,
76, 85, 83, 32, 65, 6, 26, 83, 131, 174, 29, 32, 4, 11, 72, 5, 107, 32,
11, 50, 32, 34, 50, 218, 183, 14, 82, 203, 192, 16, 83, 2, 217, 156, 14,
3, 80, 76, 85, 2, 11, 32, 2, 21, 3, 80, 76, 85, 2, 11, 83, 2, 235, 141,
29, 32, 57, 24, 2, 49, 49, 99, 78, 9, 11, 32, 6, 200, 25, 9, 79, 86, 69,
82, 32, 78, 85, 49, 49, 178, 216, 25, 84, 243, 167, 3, 82, 47, 30, 32,
169, 3, 2, 85, 90, 18, 144, 1, 12, 67, 82, 79, 83, 83, 73, 78, 71, 32,
78, 85, 78, 72, 12, 76, 65, 71, 65, 82, 32, 84, 73, 77, 69, 83, 32, 174,
1, 79, 131, 238, 25, 84, 5, 209, 40, 14, 32, 76, 65, 71, 65, 82, 32, 79,
86, 69, 82, 32, 76, 65, 10, 56, 3, 83, 65, 76, 166, 138, 29, 77, 14, 85,
207, 71, 71, 5, 217, 233, 29, 23, 32, 79, 86, 69, 82, 32, 78, 85, 78, 32,
76, 65, 71, 65, 82, 32, 84, 73, 77, 69, 83, 32, 83, 2, 241, 199, 17, 3,
86, 69, 82, 27, 11, 32, 24, 120, 10, 65, 66, 50, 32, 84, 73, 77, 69, 83,
32, 205, 37, 15, 75, 73, 83, 73, 77, 53, 32, 84, 73, 77, 69, 83, 32, 66,
73, 20, 168, 1, 2, 75, 65, 202, 7, 73, 212, 39, 2, 65, 83, 190, 177, 2,
68, 168, 215, 8, 3, 83, 73, 76, 182, 146, 12, 85, 210, 249, 5, 71, 158,
151, 1, 78, 254, 2, 66, 163, 17, 76, 2, 151, 247, 26, 68, 46, 42, 65, 36,
4, 69, 83, 72, 50, 23, 73, 9, 178, 241, 30, 68, 2, 78, 3, 80, 5, 211,
217, 28, 32, 35, 22, 32, 151, 1, 82, 20, 80, 6, 84, 73, 77, 69, 83, 32,
141, 146, 18, 8, 67, 82, 79, 83, 83, 73, 78, 71, 18, 214, 21, 85, 150,
48, 65, 2, 73, 238, 233, 29, 66, 187, 64, 69, 12, 32, 2, 73, 71, 175,
239, 30, 50, 11, 11, 32, 8, 96, 6, 84, 73, 77, 69, 83, 32, 217, 178, 26,
12, 79, 80, 80, 79, 83, 73, 78, 71, 32, 80, 73, 82, 6, 222, 226, 29, 75,
190, 69, 85, 235, 67, 90, 8, 234, 67, 65, 166, 170, 30, 73, 3, 85, 202,
1, 46, 65, 250, 5, 72, 150, 11, 73, 163, 1, 85, 63, 46, 71, 190, 4, 76,
122, 78, 211, 231, 30, 82, 53, 11, 32, 50, 92, 4, 71, 85, 78, 85, 54, 78,
32, 6, 84, 73, 77, 69, 83, 32, 241, 21, 4, 79, 86, 69, 82, 5, 29, 5, 32,
84, 73, 77, 69, 2, 231, 244, 17, 83, 2, 185, 189, 25, 3, 85, 84, 73, 42,
150, 1, 73, 42, 75, 34, 83, 64, 2, 84, 65, 38, 85, 220, 62, 2, 68, 85,
130, 255, 28, 76, 246, 42, 78, 210, 48, 69, 138, 60, 77, 162, 17, 72,
187, 2, 65, 2, 11, 71, 2, 11, 73, 2, 191, 31, 32, 4, 166, 177, 30, 85,
199, 53, 65, 6, 26, 72, 251, 221, 29, 65, 4, 198, 206, 13, 69, 227, 212,
16, 73, 4, 190, 192, 23, 75, 231, 168, 7, 66, 10, 238, 231, 30, 83, 146,
1, 50, 2, 66, 2, 77, 3, 82, 5, 33, 6, 32, 76, 65, 71, 65, 66, 2, 37, 7,
32, 84, 73, 77, 69, 83, 32, 2, 11, 65, 2, 11, 83, 2, 163, 192, 23, 72, 2,
131, 178, 11, 71, 106, 46, 65, 250, 1, 69, 242, 2, 73, 239, 3, 85, 29,
50, 51, 182, 1, 54, 138, 186, 23, 66, 223, 3, 82, 19, 37, 7, 32, 84, 73,
77, 69, 83, 32, 16, 90, 85, 146, 25, 83, 250, 231, 26, 71, 250, 235, 2,
84, 170, 50, 66, 218, 47, 78, 215, 22, 65, 5, 11, 32, 2, 201, 156, 26, 4,
80, 76, 85, 83, 5, 175, 45, 32, 27, 62, 32, 140, 2, 2, 83, 72, 178, 232,
26, 71, 155, 250, 3, 78, 14, 84, 8, 79, 86, 69, 82, 32, 83, 72, 69, 88,
5, 80, 76, 85, 83, 32, 191, 190, 30, 72, 7, 11, 32, 4, 190, 15, 71, 141,
6, 12, 84, 65, 66, 32, 79, 86, 69, 82, 32, 84, 65, 66, 6, 48, 2, 72, 85,
20, 2, 78, 65, 163, 191, 29, 83, 2, 175, 187, 23, 66, 2, 155, 187, 23,
77, 7, 182, 165, 29, 76, 147, 189, 1, 50, 40, 62, 68, 74, 77, 218, 1, 82,
226, 163, 26, 78, 175, 185, 4, 84, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32,
4, 226, 208, 30, 73, 219, 16, 65, 25, 37, 7, 32, 84, 73, 77, 69, 83, 32,
22, 114, 66, 38, 73, 130, 19, 75, 194, 187, 2, 77, 234, 217, 2, 76, 250,
147, 24, 71, 226, 23, 83, 138, 12, 68, 215, 127, 65, 4, 214, 206, 2, 85,
219, 133, 27, 65, 4, 249, 20, 2, 71, 73, 7, 11, 32, 4, 60, 9, 79, 86, 69,
82, 32, 83, 72, 73, 82, 179, 216, 25, 84, 2, 161, 230, 29, 11, 32, 66,
85, 82, 32, 79, 86, 69, 82, 32, 66, 13, 88, 14, 32, 79, 86, 69, 82, 32,
73, 78, 86, 69, 82, 84, 69, 68, 34, 50, 235, 228, 29, 66, 2, 11, 32, 2,
135, 231, 25, 83, 7, 33, 6, 32, 80, 76, 85, 83, 32, 4, 88, 7, 69, 50, 32,
84, 73, 77, 69, 173, 161, 11, 9, 68, 85, 71, 32, 84, 73, 77, 69, 83, 2,
139, 146, 13, 83, 17, 50, 32, 30, 71, 230, 161, 11, 76, 183, 146, 12, 75,
4, 138, 8, 84, 163, 9, 71, 7, 11, 52, 5, 49, 10, 32, 79, 86, 69, 82, 32,
83, 73, 71, 52, 2, 199, 14, 32, 19, 78, 68, 22, 77, 22, 82, 184, 231, 12,
5, 32, 79, 86, 69, 82, 135, 250, 16, 72, 5, 183, 218, 30, 50, 5, 155,
239, 28, 65, 5, 143, 218, 30, 57, 72, 46, 65, 150, 4, 73, 250, 1, 85,
227, 8, 69, 37, 66, 32, 94, 66, 166, 1, 71, 148, 1, 2, 75, 52, 247, 213,
30, 82, 8, 60, 6, 84, 73, 77, 69, 83, 32, 130, 14, 71, 155, 179, 28, 65,
4, 238, 196, 30, 72, 3, 77, 7, 11, 32, 4, 252, 217, 17, 29, 79, 86, 69,
82, 32, 84, 65, 66, 32, 78, 73, 32, 79, 86, 69, 82, 32, 78, 73, 32, 68,
73, 83, 72, 32, 79, 86, 69, 82, 163, 192, 5, 83, 15, 37, 7, 32, 84, 73,
77, 69, 83, 32, 12, 74, 84, 216, 134, 8, 2, 83, 72, 206, 161, 21, 71,
210, 103, 85, 203, 50, 66, 2, 11, 85, 2, 199, 174, 23, 71, 5, 29, 5, 32,
80, 76, 85, 83, 2, 229, 233, 28, 2, 32, 83, 17, 46, 82, 150, 29, 32, 246,
183, 30, 50, 3, 76, 9, 11, 32, 6, 48, 8, 79, 86, 69, 82, 32, 84, 73, 82,
99, 84, 5, 11, 32, 2, 11, 71, 2, 21, 3, 65, 68, 32, 2, 241, 5, 8, 79, 86,
69, 82, 32, 71, 65, 68, 2, 217, 21, 6, 73, 77, 69, 83, 32, 84, 17, 50,
77, 114, 82, 222, 170, 23, 71, 195, 167, 7, 75, 7, 37, 7, 32, 84, 73, 77,
69, 83, 32, 4, 46, 71, 149, 212, 17, 5, 84, 72, 82, 69, 69, 2, 221, 16,
2, 65, 78, 5, 137, 148, 11, 17, 32, 79, 86, 69, 82, 32, 84, 85, 82, 32,
90, 65, 32, 79, 86, 69, 82, 179, 1, 138, 1, 32, 246, 2, 68, 226, 2, 78,
46, 77, 158, 2, 82, 128, 9, 2, 83, 72, 174, 1, 90, 252, 199, 12, 2, 84,
85, 242, 245, 17, 50, 3, 66, 12, 64, 7, 79, 86, 69, 82, 32, 85, 32, 158,
2, 85, 231, 159, 29, 71, 6, 200, 1, 10, 80, 65, 32, 79, 86, 69, 82, 32,
80, 65, 220, 167, 9, 19, 85, 32, 82, 69, 86, 69, 82, 83, 69, 68, 32, 79,
86, 69, 82, 32, 85, 32, 82, 245, 173, 20, 10, 83, 85, 82, 32, 79, 86, 69,
82, 32, 83, 2, 11, 32, 2, 45, 9, 71, 65, 82, 32, 79, 86, 69, 82, 32, 2,
171, 170, 29, 71, 5, 235, 168, 30, 32, 21, 26, 32, 211, 204, 30, 85, 16,
70, 75, 44, 2, 83, 72, 100, 6, 84, 73, 77, 69, 83, 32, 135, 1, 71, 2, 11,
85, 2, 11, 83, 2, 151, 144, 11, 72, 4, 29, 5, 69, 83, 72, 73, 71, 5, 11,
32, 2, 11, 84, 2, 201, 133, 30, 6, 73, 77, 69, 83, 32, 66, 8, 92, 14, 85,
32, 80, 76, 85, 83, 32, 85, 32, 80, 76, 85, 83, 32, 194, 132, 30, 66,
215, 50, 77, 4, 11, 85, 5, 11, 32, 2, 11, 71, 2, 211, 165, 30, 85, 21,
72, 7, 32, 84, 73, 77, 69, 83, 32, 136, 1, 2, 85, 77, 143, 201, 29, 66,
10, 50, 76, 16, 2, 77, 69, 50, 83, 247, 200, 30, 85, 2, 231, 6, 65, 5,
11, 32, 2, 221, 138, 26, 4, 80, 76, 85, 83, 2, 255, 142, 11, 72, 7, 37,
7, 32, 84, 73, 77, 69, 83, 32, 4, 158, 11, 75, 227, 186, 30, 80, 93, 54,
32, 102, 50, 194, 2, 73, 22, 85, 171, 196, 30, 52, 4, 62, 83, 205, 206,
29, 9, 67, 82, 79, 83, 83, 73, 78, 71, 32, 2, 185, 139, 26, 4, 72, 69,
83, 72, 23, 11, 32, 20, 42, 73, 37, 6, 84, 73, 77, 69, 83, 32, 2, 181,
149, 24, 4, 78, 86, 69, 82, 18, 46, 65, 82, 85, 242, 196, 29, 78, 251,
125, 72, 6, 48, 6, 32, 80, 76, 85, 83, 32, 191, 197, 30, 76, 4, 130, 195,
30, 72, 3, 78, 8, 26, 50, 135, 197, 30, 68, 7, 33, 6, 32, 80, 76, 85, 83,
32, 4, 214, 217, 28, 65, 179, 215, 1, 66, 5, 187, 196, 30, 51, 59, 56, 7,
32, 84, 73, 77, 69, 83, 32, 165, 4, 2, 68, 65, 52, 134, 1, 65, 46, 68,
38, 71, 82, 73, 46, 76, 78, 83, 46, 85, 230, 156, 29, 66, 234, 35, 77,
238, 90, 84, 146, 17, 75, 162, 17, 72, 3, 80, 5, 11, 83, 2, 11, 72, 2,
167, 141, 17, 71, 4, 186, 135, 11, 65, 159, 235, 18, 85, 10, 26, 65, 251,
193, 30, 85, 9, 34, 78, 214, 193, 30, 76, 3, 82, 2, 211, 9, 50, 6, 234,
173, 30, 71, 202, 18, 83, 147, 1, 77, 6, 46, 85, 185, 149, 23, 5, 65, 75,
45, 54, 54, 4, 230, 192, 30, 51, 3, 77, 4, 228, 151, 23, 2, 73, 71, 147,
146, 7, 72, 6, 42, 32, 158, 254, 13, 82, 219, 193, 16, 68, 2, 129, 146,
29, 6, 80, 76, 85, 83, 32, 71, 5, 11, 32, 2, 197, 226, 13, 4, 84, 73, 77,
69, 17, 84, 7, 32, 84, 73, 77, 69, 83, 32, 128, 176, 29, 2, 85, 77, 194,
142, 1, 50, 3, 88, 8, 50, 84, 240, 231, 26, 2, 75, 85, 159, 214, 3, 65,
2, 11, 65, 2, 155, 149, 23, 75, 6, 26, 51, 211, 189, 30, 85, 5, 29, 5,
32, 84, 73, 77, 69, 2, 21, 3, 83, 32, 75, 2, 11, 65, 2, 251, 192, 23, 83,
42, 50, 65, 190, 1, 73, 146, 1, 85, 187, 146, 23, 69, 13, 50, 32, 210,
173, 29, 77, 194, 142, 1, 55, 3, 71, 4, 56, 8, 83, 81, 85, 65, 82, 69,
68, 32, 143, 181, 25, 84, 2, 11, 84, 2, 21, 3, 73, 77, 69, 2, 11, 83, 2,
205, 194, 29, 2, 32, 75, 15, 86, 66, 184, 249, 22, 6, 32, 79, 86, 69, 82,
32, 186, 25, 90, 194, 167, 7, 51, 3, 71, 5, 17, 2, 32, 75, 2, 17, 2, 65,
66, 2, 135, 2, 65, 15, 84, 10, 32, 79, 86, 69, 82, 32, 90, 85, 32, 80,
42, 53, 166, 192, 29, 66, 215, 120, 77, 2, 225, 149, 29, 5, 76, 85, 83,
32, 83, 7, 37, 7, 32, 84, 73, 77, 69, 83, 32, 4, 44, 5, 84, 72, 82, 69,
69, 163, 184, 30, 65, 2, 29, 5, 32, 68, 73, 83, 72, 2, 11, 32, 2, 171,
177, 25, 84, 8, 42, 32, 246, 247, 22, 73, 155, 211, 3, 67, 4, 174, 179,
22, 79, 217, 133, 7, 8, 87, 73, 84, 72, 32, 83, 84, 82, 18, 134, 1, 76,
162, 1, 82, 233, 240, 29, 23, 86, 69, 68, 32, 83, 84, 69, 77, 32, 80, 65,
82, 65, 71, 82, 65, 80, 72, 32, 83, 73, 71, 78, 10, 48, 2, 89, 32, 185,
164, 3, 4, 73, 78, 71, 32, 8, 68, 2, 76, 79, 221, 145, 28, 9, 66, 82, 65,
67, 75, 69, 84, 32, 69, 6, 242, 239, 26, 71, 239, 196, 3, 79, 6, 52, 5,
69, 78, 67, 89, 32, 53, 4, 89, 32, 65, 78, 4, 248, 144, 25, 4, 69, 88,
67, 72, 175, 156, 4, 83, 2, 133, 252, 19, 3, 68, 32, 82, 4, 234, 132, 3,
79, 227, 149, 26, 65, 240, 8, 128, 1, 2, 80, 82, 140, 9, 7, 82, 73, 76,
76, 73, 67, 32, 152, 248, 25, 7, 76, 73, 78, 68, 82, 73, 67, 149, 132, 3,
2, 67, 76, 180, 2, 140, 1, 13, 73, 79, 84, 32, 83, 89, 76, 76, 65, 66,
76, 69, 32, 169, 1, 16, 79, 45, 77, 73, 78, 79, 65, 78, 32, 83, 73, 71,
78, 32, 67, 77, 110, 190, 185, 7, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 82,
2, 83, 2, 84, 126, 87, 150, 42, 74, 2, 90, 230, 245, 6, 88, 202, 214, 15,
65, 2, 69, 2, 73, 2, 79, 3, 85, 198, 1, 46, 48, 146, 5, 49, 181, 164, 26,
2, 51, 48, 170, 1, 102, 48, 78, 49, 74, 50, 78, 51, 78, 52, 62, 53, 86,
55, 198, 195, 10, 57, 190, 3, 54, 219, 165, 14, 56, 16, 178, 174, 30, 49,
2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 194, 3, 50, 166,
170, 30, 48, 2, 49, 2, 51, 2, 53, 2, 55, 3, 57, 16, 158, 173, 30, 49, 2,
51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 16, 210, 172, 30, 48, 2,
51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 134, 172, 30, 48, 2,
49, 2, 52, 2, 54, 2, 55, 3, 57, 18, 202, 171, 30, 48, 2, 49, 2, 50, 2,
51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 20, 82, 53, 166, 170, 30, 48, 2,
49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 5, 163, 170, 30, 66, 24,
18, 48, 87, 49, 18, 250, 169, 30, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53,
2, 55, 2, 56, 3, 57, 6, 166, 169, 30, 48, 2, 50, 3, 52, 184, 6, 140, 1,
9, 67, 65, 80, 73, 84, 65, 76, 32, 76, 202, 4, 75, 32, 7, 76, 69, 84, 84,
69, 82, 32, 132, 1, 3, 80, 65, 89, 30, 83, 211, 41, 84, 242, 2, 44, 6,
69, 84, 84, 69, 82, 32, 175, 43, 73, 236, 2, 150, 2, 76, 46, 78, 34, 80,
34, 82, 58, 84, 62, 85, 190, 5, 65, 214, 1, 66, 242, 1, 67, 150, 1, 68,
254, 1, 69, 206, 2, 71, 130, 1, 72, 134, 1, 73, 230, 3, 75, 226, 3, 77,
218, 1, 79, 226, 2, 83, 218, 7, 89, 166, 1, 90, 146, 217, 29, 70, 134,
14, 74, 2, 86, 2, 87, 159, 20, 81, 6, 222, 25, 73, 238, 244, 29, 74, 159,
20, 72, 4, 134, 27, 69, 155, 243, 29, 74, 8, 134, 34, 69, 247, 238, 29,
83, 12, 220, 9, 3, 79, 85, 78, 226, 18, 69, 191, 133, 30, 72, 20, 174,
33, 69, 106, 83, 218, 212, 29, 67, 186, 22, 74, 3, 87, 13, 198, 34, 32,
115, 75, 2, 189, 154, 30, 3, 65, 86, 89, 6, 248, 10, 5, 77, 85, 76, 84,
73, 244, 143, 13, 2, 80, 65, 233, 242, 11, 14, 83, 77, 65, 76, 76, 32,
67, 65, 80, 73, 84, 65, 76, 32, 2, 161, 248, 29, 2, 69, 82, 186, 3, 136,
1, 6, 77, 65, 76, 76, 32, 76, 201, 37, 22, 85, 66, 83, 67, 82, 73, 80,
84, 32, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 134, 3, 44,
6, 69, 84, 84, 69, 82, 32, 151, 36, 73, 128, 3, 154, 2, 65, 214, 1, 66,
242, 1, 67, 150, 1, 68, 254, 1, 69, 206, 2, 71, 130, 1, 72, 134, 1, 73,
230, 3, 75, 222, 2, 76, 134, 1, 77, 114, 78, 106, 79, 110, 80, 50, 82,
198, 1, 83, 218, 2, 84, 218, 2, 85, 246, 1, 87, 54, 89, 166, 1, 90, 146,
217, 29, 70, 134, 14, 74, 2, 86, 159, 20, 81, 17, 108, 6, 32, 87, 73, 84,
72, 32, 36, 9, 66, 75, 72, 65, 83, 73, 65, 78, 32, 149, 167, 12, 4, 76,
69, 85, 84, 4, 178, 203, 9, 68, 191, 187, 3, 66, 8, 216, 147, 13, 3, 67,
72, 69, 158, 215, 6, 68, 195, 175, 10, 72, 18, 110, 65, 78, 73, 32, 3,
82, 79, 65, 200, 167, 3, 6, 76, 69, 78, 68, 69, 68, 194, 232, 9, 89, 207,
138, 17, 69, 6, 200, 21, 6, 82, 82, 69, 68, 32, 79, 153, 144, 12, 5, 83,
72, 75, 73, 82, 4, 230, 2, 78, 131, 165, 3, 71, 2, 163, 188, 10, 68, 14,
76, 2, 72, 69, 246, 9, 76, 136, 161, 13, 4, 82, 79, 83, 83, 235, 193, 16,
67, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 150, 29, 68, 239, 203, 29, 86,
26, 96, 2, 74, 69, 20, 6, 79, 85, 66, 76, 69, 32, 66, 90, 234, 234, 29,
67, 186, 22, 87, 215, 22, 69, 5, 183, 250, 22, 82, 4, 36, 3, 77, 79, 78,
143, 152, 30, 79, 2, 153, 13, 2, 79, 67, 12, 46, 69, 166, 151, 29, 90,
206, 105, 72, 3, 87, 5, 207, 248, 29, 76, 41, 86, 76, 98, 78, 110, 82,
166, 15, 32, 214, 252, 12, 83, 178, 209, 14, 77, 231, 183, 2, 70, 11, 33,
6, 32, 87, 73, 84, 72, 32, 8, 166, 20, 77, 174, 249, 12, 68, 190, 209,
14, 84, 183, 97, 72, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 198, 19, 77,
174, 249, 12, 68, 202, 52, 76, 246, 156, 14, 84, 183, 97, 72, 5, 225,
226, 28, 5, 32, 87, 73, 84, 72, 14, 32, 2, 72, 69, 239, 253, 29, 74, 13,
33, 6, 32, 87, 73, 84, 72, 32, 10, 142, 18, 77, 146, 15, 85, 158, 234,
12, 68, 155, 31, 83, 12, 26, 65, 247, 252, 29, 87, 11, 48, 6, 32, 87, 73,
84, 72, 32, 215, 167, 28, 82, 6, 178, 138, 13, 68, 242, 178, 15, 72, 247,
165, 1, 83, 35, 84, 6, 32, 87, 73, 84, 72, 32, 50, 69, 74, 79, 201, 1, 6,
90, 72, 73, 84, 83, 65, 6, 166, 192, 9, 68, 214, 10, 71, 167, 202, 3, 77,
7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 166, 202, 9, 71, 235, 176, 3, 66,
17, 11, 84, 14, 48, 6, 73, 70, 73, 69, 68, 32, 211, 144, 30, 65, 12, 80,
2, 67, 76, 38, 76, 158, 156, 3, 66, 142, 234, 25, 89, 178, 137, 1, 65, 3,
69, 2, 33, 6, 79, 83, 69, 68, 32, 76, 2, 151, 4, 73, 5, 241, 150, 13, 14,
32, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 69, 32, 71, 34, 102, 65, 98,
79, 180, 219, 17, 10, 72, 65, 75, 65, 83, 83, 73, 65, 78, 32, 174, 155,
12, 74, 255, 2, 83, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 142, 133, 13,
68, 242, 178, 15, 72, 170, 165, 1, 86, 79, 83, 18, 36, 3, 77, 73, 32,
231, 207, 26, 80, 16, 58, 68, 254, 174, 12, 76, 2, 78, 2, 83, 2, 84, 3,
90, 6, 250, 174, 12, 90, 130, 199, 17, 74, 215, 22, 69, 8, 94, 73, 224,
209, 10, 10, 79, 78, 71, 45, 76, 69, 71, 71, 69, 68, 142, 163, 19, 74,
159, 20, 72, 2, 177, 152, 3, 4, 84, 84, 76, 69, 4, 21, 3, 79, 78, 79, 4,
18, 67, 39, 71, 2, 165, 147, 19, 4, 85, 76, 65, 82, 2, 245, 10, 4, 82,
65, 80, 72, 6, 62, 69, 164, 146, 19, 5, 65, 82, 82, 79, 87, 247, 224, 10,
74, 2, 209, 131, 13, 5, 85, 84, 82, 65, 76, 11, 52, 4, 77, 69, 71, 65,
166, 3, 32, 235, 133, 30, 84, 5, 157, 224, 29, 8, 32, 87, 73, 84, 72, 32,
84, 73, 10, 138, 6, 69, 182, 250, 12, 65, 195, 244, 16, 83, 14, 50, 69,
100, 4, 79, 85, 78, 68, 219, 132, 30, 72, 8, 37, 7, 86, 69, 82, 83, 69,
68, 32, 8, 210, 213, 19, 68, 214, 166, 9, 84, 190, 102, 89, 151, 14, 90,
4, 234, 168, 10, 32, 153, 249, 1, 2, 69, 68, 34, 108, 4, 67, 72, 87, 65,
34, 72, 132, 1, 4, 79, 70, 84, 32, 130, 253, 12, 84, 213, 1, 5, 69, 77,
73, 83, 79, 5, 11, 32, 2, 219, 245, 5, 87, 16, 92, 4, 79, 82, 84, 32,
224, 251, 12, 2, 72, 65, 238, 139, 15, 67, 214, 230, 1, 87, 215, 22, 65,
6, 142, 205, 27, 73, 231, 183, 2, 85, 8, 38, 69, 194, 253, 28, 83, 151,
112, 68, 4, 166, 132, 30, 76, 3, 77, 28, 140, 1, 4, 65, 76, 76, 32, 50,
69, 106, 83, 232, 149, 12, 11, 72, 82, 69, 69, 45, 76, 69, 71, 71, 69,
68, 242, 190, 17, 67, 186, 22, 74, 3, 87, 6, 130, 246, 12, 72, 202, 131,
16, 89, 223, 114, 84, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 26, 77, 175,
249, 12, 68, 2, 165, 136, 22, 5, 73, 68, 68, 76, 69, 8, 142, 235, 29, 72,
2, 83, 2, 87, 215, 22, 69, 15, 58, 32, 114, 75, 53, 8, 78, 66, 76, 69,
78, 68, 69, 68, 6, 29, 5, 87, 73, 84, 72, 32, 6, 26, 68, 215, 131, 13,
77, 4, 204, 176, 9, 5, 79, 85, 66, 76, 69, 187, 8, 73, 5, 11, 82, 2, 213,
4, 6, 65, 73, 78, 73, 65, 78, 2, 235, 129, 25, 32, 4, 184, 233, 28, 4,
73, 68, 69, 32, 135, 150, 1, 69, 18, 62, 65, 28, 3, 69, 82, 85, 178, 254,
29, 73, 2, 78, 3, 85, 7, 202, 254, 29, 69, 3, 84, 7, 33, 6, 32, 87, 73,
84, 72, 32, 4, 170, 172, 9, 68, 179, 203, 3, 66, 18, 18, 69, 71, 72, 9,
156, 1, 7, 32, 87, 73, 84, 72, 32, 68, 217, 249, 29, 2, 77, 76, 10, 26,
69, 163, 230, 29, 87, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 68, 147,
230, 12, 66, 4, 254, 180, 9, 73, 227, 190, 3, 69, 6, 37, 7, 71, 65, 84,
85, 82, 69, 32, 6, 66, 65, 128, 213, 15, 2, 84, 69, 153, 249, 13, 4, 69,
78, 32, 71, 2, 243, 223, 29, 32, 52, 198, 1, 66, 38, 68, 38, 69, 36, 3,
71, 72, 69, 38, 72, 234, 156, 22, 89, 170, 222, 5, 83, 134, 114, 84, 134,
11, 90, 130, 64, 73, 150, 19, 67, 186, 22, 80, 2, 86, 158, 20, 75, 186,
2, 65, 2, 79, 3, 85, 4, 250, 238, 12, 89, 207, 138, 17, 69, 6, 130, 249,
28, 90, 163, 128, 1, 69, 6, 254, 248, 29, 70, 2, 76, 3, 83, 5, 201, 5, 5,
32, 87, 73, 84, 72, 4, 11, 65, 5, 235, 140, 28, 82, 2, 221, 134, 16, 4,
72, 79, 85, 83, 214, 15, 178, 1, 65, 138, 4, 67, 54, 69, 154, 35, 73,
166, 23, 79, 154, 45, 82, 174, 3, 85, 172, 246, 12, 13, 78, 65, 32, 68,
79, 85, 66, 76, 69, 32, 72, 69, 76, 182, 202, 15, 86, 207, 47, 76, 30,
116, 4, 71, 71, 69, 82, 146, 1, 78, 32, 4, 82, 75, 32, 83, 36, 2, 83, 72,
160, 145, 22, 2, 76, 69, 131, 145, 1, 84, 9, 11, 32, 6, 44, 5, 87, 73,
84, 72, 32, 171, 218, 6, 75, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72,
2, 217, 219, 28, 4, 84, 32, 71, 85, 4, 198, 182, 29, 67, 251, 30, 71, 4,
190, 220, 21, 85, 155, 157, 5, 72, 10, 30, 32, 105, 3, 69, 68, 32, 4, 60,
9, 87, 73, 84, 72, 32, 76, 69, 70, 84, 231, 221, 28, 83, 2, 17, 2, 32,
85, 2, 239, 160, 23, 80, 6, 206, 240, 4, 84, 130, 197, 12, 76, 207, 210,
10, 79, 10, 178, 242, 29, 49, 2, 50, 2, 51, 2, 52, 3, 83, 180, 4, 222, 1,
67, 248, 1, 5, 71, 82, 69, 69, 32, 98, 76, 82, 78, 228, 3, 8, 80, 65, 82,
84, 77, 69, 78, 84, 32, 12, 82, 69, 76, 73, 67, 84, 32, 72, 79, 85, 83,
69, 42, 83, 174, 6, 86, 224, 221, 25, 2, 65, 70, 227, 203, 3, 69, 8, 50,
73, 225, 129, 6, 6, 82, 69, 65, 83, 69, 32, 6, 56, 4, 77, 65, 76, 32,
237, 177, 9, 4, 68, 85, 79, 85, 4, 88, 9, 83, 69, 80, 65, 82, 65, 84, 79,
82, 129, 140, 22, 7, 69, 88, 80, 79, 78, 69, 78, 2, 21, 3, 32, 75, 69, 2,
243, 216, 28, 89, 6, 240, 213, 22, 4, 67, 69, 76, 83, 202, 145, 6, 83,
177, 106, 8, 70, 65, 72, 82, 69, 78, 72, 69, 9, 196, 137, 17, 5, 73, 86,
69, 82, 89, 160, 130, 6, 2, 84, 65, 203, 152, 5, 69, 34, 104, 20, 84, 73,
83, 84, 82, 89, 32, 83, 89, 77, 66, 79, 76, 32, 76, 73, 71, 72, 84, 32,
243, 128, 22, 83, 30, 88, 4, 68, 79, 87, 78, 0, 2, 85, 80, 153, 1, 9, 86,
69, 82, 84, 73, 67, 65, 76, 32, 8, 69, 15, 32, 65, 78, 68, 32, 72, 79,
82, 73, 90, 79, 78, 84, 65, 76, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 162,
252, 27, 87, 134, 26, 67, 167, 45, 84, 14, 52, 4, 65, 78, 68, 32, 45, 5,
87, 73, 84, 72, 32, 10, 238, 175, 22, 66, 42, 84, 171, 203, 5, 87, 4,
150, 149, 28, 67, 167, 45, 84, 2, 253, 251, 24, 3, 32, 83, 84, 2, 185,
162, 23, 5, 32, 66, 85, 73, 76, 170, 1, 64, 2, 67, 69, 48, 2, 69, 82,
129, 5, 5, 75, 84, 79, 80, 32, 2, 253, 212, 27, 7, 78, 68, 73, 78, 71,
32, 78, 164, 1, 32, 3, 69, 84, 32, 183, 4, 84, 160, 1, 56, 6, 67, 65, 80,
73, 84, 65, 1, 4, 83, 77, 65, 76, 80, 45, 9, 76, 32, 76, 69, 84, 84, 69,
82, 32, 80, 218, 1, 69, 96, 4, 76, 79, 78, 71, 0, 5, 83, 72, 79, 82, 84,
74, 79, 30, 84, 2, 90, 158, 245, 11, 67, 222, 251, 15, 66, 2, 68, 2, 74,
2, 80, 2, 86, 2, 89, 130, 100, 71, 2, 75, 186, 105, 87, 162, 19, 65, 203,
17, 72, 20, 250, 211, 25, 83, 226, 146, 2, 78, 242, 252, 1, 84, 146, 1,
70, 2, 76, 2, 77, 2, 82, 3, 87, 12, 11, 32, 12, 142, 211, 25, 65, 178,
199, 1, 79, 178, 201, 2, 69, 3, 73, 4, 178, 227, 29, 73, 3, 87, 4, 246,
240, 27, 72, 207, 219, 1, 69, 5, 209, 210, 28, 4, 32, 73, 83, 76, 4, 154,
228, 26, 67, 141, 226, 1, 4, 87, 73, 78, 68, 202, 2, 100, 8, 65, 78, 65,
71, 65, 82, 73, 32, 133, 18, 12, 73, 67, 69, 32, 67, 79, 78, 84, 82, 79,
76, 32, 192, 2, 222, 1, 65, 38, 67, 22, 71, 36, 4, 72, 69, 65, 68, 96, 7,
76, 69, 84, 84, 69, 82, 32, 202, 5, 83, 148, 7, 11, 86, 79, 87, 69, 76,
32, 83, 73, 71, 78, 32, 186, 144, 19, 68, 160, 139, 6, 4, 74, 65, 73, 78,
135, 165, 4, 79, 4, 218, 230, 12, 67, 187, 216, 12, 66, 2, 199, 153, 6,
65, 4, 202, 230, 12, 82, 151, 238, 1, 65, 6, 44, 5, 32, 77, 65, 82, 75,
199, 174, 29, 83, 5, 217, 158, 19, 7, 32, 87, 73, 84, 72, 32, 72, 158, 1,
162, 2, 65, 54, 67, 62, 68, 50, 71, 62, 72, 52, 2, 77, 65, 46, 83, 170,
165, 7, 66, 150, 131, 5, 75, 206, 202, 3, 82, 150, 173, 3, 79, 238, 192,
3, 89, 214, 118, 85, 250, 35, 78, 138, 199, 1, 74, 174, 57, 76, 70, 84,
46, 86, 242, 207, 1, 73, 134, 197, 1, 80, 2, 90, 138, 69, 70, 2, 81, 187,
2, 69, 13, 230, 219, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 10, 26, 65, 227,
216, 29, 72, 9, 185, 2, 4, 78, 68, 82, 65, 12, 166, 253, 25, 68, 154,
219, 3, 72, 187, 2, 65, 10, 134, 252, 12, 76, 130, 151, 16, 72, 138, 69,
71, 187, 2, 65, 4, 136, 225, 16, 4, 69, 65, 86, 89, 131, 249, 12, 65, 5,
157, 162, 7, 6, 82, 87, 65, 82, 73, 32, 12, 38, 72, 206, 214, 29, 83,
187, 2, 65, 8, 36, 3, 79, 82, 84, 223, 216, 29, 65, 6, 167, 150, 12, 32,
68, 168, 1, 19, 69, 81, 85, 69, 78, 67, 69, 32, 70, 79, 82, 32, 76, 69,
84, 84, 69, 82, 32, 104, 4, 73, 71, 78, 32, 137, 156, 27, 10, 84, 82, 69,
83, 83, 32, 83, 73, 71, 78, 16, 210, 223, 3, 71, 2, 75, 160, 250, 23, 3,
68, 68, 68, 2, 82, 206, 250, 1, 89, 38, 70, 2, 81, 3, 90, 48, 178, 3, 66,
0, 10, 69, 88, 84, 69, 78, 68, 69, 68, 32, 66, 36, 11, 67, 65, 78, 68,
82, 65, 66, 73, 78, 68, 85, 64, 8, 87, 69, 83, 84, 69, 82, 78, 32, 32,
10, 82, 69, 86, 69, 82, 83, 69, 68, 32, 78, 138, 208, 6, 83, 182, 198,
12, 73, 150, 158, 6, 77, 46, 78, 190, 66, 65, 72, 18, 68, 79, 85, 66, 76,
69, 32, 67, 65, 78, 68, 82, 65, 66, 73, 78, 68, 85, 62, 80, 144, 198, 2,
12, 72, 73, 71, 72, 32, 83, 80, 65, 67, 73, 78, 71, 167, 80, 86, 4, 245,
236, 12, 4, 72, 65, 76, 69, 11, 11, 32, 8, 206, 213, 22, 65, 154, 163, 3,
86, 163, 231, 1, 84, 4, 30, 78, 21, 3, 70, 73, 86, 2, 17, 2, 73, 78, 2,
193, 240, 21, 8, 69, 45, 76, 73, 75, 69, 32, 66, 50, 150, 1, 65, 52, 7,
67, 65, 78, 68, 82, 65, 32, 218, 150, 19, 79, 34, 80, 162, 183, 4, 85,
194, 229, 1, 83, 170, 69, 86, 166, 202, 1, 73, 199, 140, 2, 69, 10, 154,
208, 29, 65, 2, 73, 2, 85, 2, 87, 3, 89, 6, 176, 151, 19, 4, 76, 79, 78,
71, 182, 184, 10, 69, 3, 79, 10, 222, 179, 24, 70, 136, 6, 2, 83, 84,
254, 162, 3, 84, 155, 87, 79, 232, 2, 182, 2, 65, 150, 2, 69, 74, 71,
224, 4, 6, 78, 71, 66, 65, 84, 32, 248, 1, 5, 82, 69, 67, 84, 32, 98, 83,
206, 2, 86, 200, 7, 2, 89, 65, 32, 4, 90, 90, 89, 32, 232, 179, 5, 2, 84,
84, 228, 168, 15, 10, 70, 70, 69, 82, 69, 78, 67, 69, 32, 66, 197, 219,
7, 12, 77, 69, 78, 83, 73, 79, 78, 32, 79, 82, 73, 71, 20, 42, 77, 226,
132, 9, 69, 155, 145, 13, 71, 16, 40, 4, 79, 78, 68, 32, 171, 159, 3, 69,
14, 128, 1, 5, 87, 73, 84, 72, 32, 198, 179, 18, 84, 232, 228, 2, 12, 83,
72, 65, 80, 69, 32, 87, 73, 84, 72, 32, 65, 251, 238, 4, 79, 8, 146, 148,
22, 66, 182, 2, 84, 174, 148, 4, 76, 27, 82, 14, 184, 138, 5, 5, 32, 70,
65, 67, 69, 213, 173, 17, 4, 83, 69, 76, 32, 78, 64, 3, 73, 84, 32, 149,
2, 8, 82, 65, 77, 32, 70, 79, 82, 32, 60, 98, 70, 44, 2, 78, 73, 2, 79,
14, 83, 46, 84, 44, 3, 90, 69, 82, 13, 5, 69, 73, 71, 72, 84, 12, 128, 1,
2, 73, 86, 25, 3, 79, 85, 82, 6, 87, 78, 12, 96, 4, 69, 86, 69, 78, 1, 2,
73, 88, 12, 28, 3, 72, 82, 69, 15, 87, 6, 23, 69, 6, 11, 79, 7, 219, 133,
17, 32, 18, 88, 5, 69, 65, 82, 84, 72, 64, 5, 71, 82, 69, 65, 84, 0, 4,
76, 69, 83, 83, 39, 72, 7, 25, 4, 76, 89, 32, 72, 4, 214, 199, 24, 85,
239, 145, 1, 69, 4, 193, 146, 13, 4, 69, 82, 32, 89, 4, 200, 155, 5, 7,
69, 65, 86, 69, 78, 76, 89, 1, 4, 85, 77, 65, 78, 64, 120, 17, 78, 69,
71, 65, 84, 73, 86, 69, 32, 67, 73, 82, 67, 76, 69, 68, 32, 41, 9, 67,
73, 82, 67, 76, 69, 68, 32, 83, 42, 38, 83, 182, 32, 78, 203, 215, 20,
68, 22, 49, 10, 65, 78, 83, 45, 83, 69, 82, 73, 70, 32, 22, 254, 31, 78,
147, 175, 27, 68, 4, 132, 174, 27, 15, 67, 85, 82, 82, 69, 78, 84, 32,
83, 89, 77, 66, 79, 76, 32, 187, 248, 1, 72, 12, 98, 65, 144, 1, 5, 67,
79, 78, 84, 73, 192, 240, 15, 3, 84, 79, 82, 253, 152, 10, 3, 71, 85, 73,
6, 76, 9, 80, 80, 79, 73, 78, 84, 69, 68, 32, 245, 161, 27, 4, 66, 76,
69, 68, 4, 144, 175, 17, 7, 66, 85, 84, 32, 82, 69, 76, 203, 212, 11, 70,
2, 53, 11, 78, 85, 79, 85, 83, 32, 85, 78, 68, 69, 82, 2, 157, 145, 17,
3, 76, 73, 78, 156, 1, 80, 9, 69, 83, 32, 65, 75, 85, 82, 85, 32, 238, 5,
73, 177, 138, 17, 2, 79, 82, 144, 1, 142, 2, 68, 36, 7, 76, 69, 84, 84,
69, 82, 32, 236, 1, 5, 83, 73, 71, 78, 32, 58, 86, 240, 170, 9, 6, 77,
69, 68, 73, 65, 76, 234, 132, 5, 71, 134, 237, 4, 69, 148, 209, 4, 12,
80, 82, 69, 70, 73, 88, 69, 68, 32, 78, 65, 83, 209, 129, 5, 7, 73, 78,
73, 84, 73, 65, 76, 22, 166, 220, 25, 79, 191, 236, 1, 73, 84, 218, 208,
10, 84, 190, 243, 11, 89, 182, 230, 2, 65, 162, 52, 68, 214, 6, 85, 186,
202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 75,
2, 80, 138, 69, 72, 2, 74, 2, 77, 2, 82, 2, 86, 2, 90, 186, 2, 69, 3, 79,
8, 158, 242, 24, 72, 210, 42, 67, 98, 78, 139, 216, 3, 65, 18, 64, 10,
79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 187, 253, 26, 73, 16, 166, 164,
15, 65, 178, 190, 10, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 10,
68, 5, 83, 73, 79, 78, 32, 136, 242, 1, 2, 78, 71, 183, 176, 26, 68, 6,
26, 83, 235, 234, 5, 84, 4, 142, 205, 27, 76, 187, 100, 73, 2, 253, 150,
19, 3, 32, 76, 65, 4, 182, 162, 28, 83, 167, 88, 70, 212, 5, 188, 2, 6,
67, 85, 77, 69, 78, 84, 124, 7, 69, 83, 32, 78, 79, 84, 32, 194, 3, 71,
202, 3, 76, 36, 10, 77, 73, 78, 79, 32, 84, 73, 76, 69, 32, 226, 1, 78,
38, 84, 246, 2, 85, 204, 17, 2, 87, 78, 212, 203, 16, 8, 32, 78, 79, 84,
32, 76, 73, 84, 184, 141, 12, 8, 86, 69, 32, 79, 70, 32, 80, 69, 174, 4,
79, 235, 25, 68, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 40, 4, 84, 69, 88,
84, 175, 143, 2, 80, 5, 169, 143, 2, 6, 32, 65, 78, 68, 32, 80, 22, 164,
1, 11, 67, 79, 78, 84, 65, 73, 78, 32, 65, 83, 32, 92, 6, 68, 73, 86, 73,
68, 69, 112, 2, 80, 82, 48, 7, 83, 85, 67, 67, 69, 69, 68, 185, 233, 22,
2, 70, 79, 6, 248, 1, 15, 78, 79, 82, 77, 65, 76, 32, 83, 85, 66, 71, 82,
79, 85, 80, 155, 137, 21, 77, 5, 145, 141, 22, 23, 32, 87, 73, 84, 72,
32, 82, 69, 86, 69, 82, 83, 69, 68, 32, 78, 69, 71, 65, 84, 73, 79, 78,
6, 44, 5, 69, 67, 69, 68, 69, 143, 180, 28, 79, 5, 205, 167, 9, 2, 32,
79, 125, 36, 3, 82, 65, 32, 139, 243, 28, 32, 120, 120, 7, 76, 69, 84,
84, 69, 82, 32, 208, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32,
254, 185, 23, 65, 187, 2, 83, 88, 170, 209, 25, 65, 38, 68, 82, 82, 34,
84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67,
2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186,
2, 69, 3, 79, 22, 130, 159, 19, 86, 174, 183, 6, 65, 38, 85, 186, 202, 1,
73, 198, 140, 2, 69, 3, 79, 4, 142, 161, 21, 80, 199, 193, 2, 76, 200, 1,
72, 8, 72, 79, 82, 73, 90, 79, 78, 84, 1, 6, 86, 69, 82, 84, 73, 67, 100,
17, 2, 65, 76, 100, 32, 2, 45, 48, 155, 148, 24, 32, 98, 58, 48, 2, 49,
2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 14, 149, 186, 20, 2, 45, 48, 4, 158,
141, 27, 75, 219, 150, 1, 71, 26, 34, 32, 57, 4, 84, 69, 68, 32, 8, 162,
159, 25, 80, 34, 77, 194, 71, 79, 195, 198, 2, 65, 18, 214, 1, 67, 34,
83, 128, 160, 16, 3, 76, 73, 78, 148, 134, 1, 4, 79, 66, 69, 76, 244, 9,
9, 84, 82, 65, 78, 83, 80, 79, 83, 73, 202, 230, 6, 70, 161, 41, 14, 82,
73, 71, 72, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 4, 146, 212, 27, 73,
239, 16, 82, 4, 246, 144, 27, 79, 183, 116, 81, 162, 1, 40, 3, 66, 76,
69, 137, 17, 2, 71, 72, 160, 1, 42, 32, 190, 10, 45, 241, 5, 2, 68, 32,
106, 226, 2, 67, 174, 1, 68, 38, 72, 32, 4, 73, 78, 84, 69, 38, 76, 144,
1, 7, 78, 69, 83, 84, 69, 68, 32, 74, 80, 66, 83, 130, 2, 85, 36, 9, 86,
69, 82, 84, 73, 67, 65, 76, 32, 188, 168, 6, 6, 79, 66, 76, 73, 81, 85,
144, 191, 2, 9, 82, 73, 71, 72, 84, 32, 65, 82, 67, 134, 189, 3, 65, 166,
221, 9, 69, 246, 198, 4, 81, 153, 106, 6, 87, 65, 86, 89, 32, 79, 24,
100, 7, 73, 82, 67, 76, 69, 68, 32, 140, 215, 7, 4, 85, 82, 76, 89, 253,
197, 1, 4, 79, 76, 79, 78, 20, 26, 78, 203, 215, 20, 68, 2, 221, 219, 2,
5, 85, 77, 66, 69, 82, 4, 150, 255, 18, 79, 167, 210, 6, 65, 4, 250, 209,
20, 73, 239, 63, 89, 4, 146, 160, 26, 82, 179, 246, 1, 71, 12, 54, 79,
165, 171, 17, 7, 69, 70, 84, 32, 65, 82, 67, 10, 26, 87, 191, 220, 25,
71, 6, 26, 45, 211, 133, 28, 32, 4, 226, 208, 20, 82, 211, 1, 57, 6, 132,
153, 17, 9, 76, 69, 83, 83, 45, 84, 72, 65, 78, 255, 241, 9, 71, 8, 26,
82, 179, 151, 27, 76, 6, 138, 158, 1, 69, 219, 250, 15, 73, 18, 80, 6,
81, 85, 65, 82, 69, 32, 30, 84, 50, 85, 173, 229, 13, 4, 79, 76, 73, 68,
4, 222, 235, 25, 73, 55, 85, 4, 212, 205, 12, 3, 65, 67, 75, 163, 202, 4,
82, 8, 58, 83, 170, 156, 1, 67, 146, 156, 21, 80, 175, 247, 4, 66, 2,
245, 180, 28, 4, 80, 69, 78, 83, 4, 174, 250, 18, 80, 255, 210, 9, 78,
10, 36, 3, 66, 65, 82, 235, 129, 28, 76, 9, 11, 32, 6, 52, 7, 68, 79, 85,
66, 76, 69, 32, 143, 243, 26, 76, 4, 138, 243, 26, 76, 51, 82, 48, 112,
5, 76, 73, 78, 69, 32, 220, 1, 7, 83, 84, 82, 85, 67, 75, 32, 133, 235,
8, 7, 69, 78, 68, 69, 68, 32, 77, 12, 48, 8, 83, 76, 65, 78, 84, 69, 68,
32, 75, 69, 8, 70, 69, 56, 7, 71, 82, 69, 65, 84, 69, 82, 1, 4, 76, 69,
83, 83, 4, 237, 198, 20, 9, 81, 85, 65, 76, 32, 84, 79, 32, 79, 2, 249,
179, 14, 5, 45, 84, 72, 65, 78, 34, 160, 1, 8, 67, 65, 80, 73, 84, 65,
76, 32, 92, 7, 73, 84, 65, 76, 73, 67, 32, 124, 6, 83, 77, 65, 76, 76,
32, 141, 223, 13, 8, 78, 45, 65, 82, 89, 32, 83, 85, 18, 206, 177, 12,
71, 190, 218, 14, 80, 198, 140, 2, 67, 2, 72, 2, 78, 2, 81, 2, 82, 3, 90,
10, 76, 6, 83, 77, 65, 76, 76, 32, 129, 250, 21, 7, 67, 65, 80, 73, 84,
65, 76, 8, 162, 151, 29, 68, 2, 69, 2, 73, 3, 74, 4, 246, 175, 12, 71,
171, 211, 16, 80, 6, 166, 175, 10, 70, 26, 77, 235, 209, 17, 83, 2, 215,
156, 28, 78, 166, 1, 50, 32, 158, 1, 45, 189, 1, 4, 87, 65, 82, 68, 10,
60, 4, 84, 65, 67, 75, 218, 236, 25, 70, 30, 82, 195, 79, 65, 5, 29, 5,
32, 87, 73, 84, 72, 2, 11, 32, 2, 11, 67, 2, 197, 136, 21, 4, 73, 82, 67,
76, 28, 60, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32, 203, 237, 25, 70, 24,
62, 83, 238, 239, 25, 65, 86, 69, 62, 70, 46, 82, 207, 1, 84, 4, 178,
195, 17, 84, 161, 175, 8, 6, 77, 65, 76, 76, 32, 82, 128, 1, 56, 8, 32,
70, 65, 67, 73, 78, 71, 32, 89, 2, 83, 32, 8, 54, 72, 1, 9, 78, 79, 84,
67, 72, 69, 68, 32, 72, 4, 237, 235, 27, 3, 79, 79, 75, 120, 178, 1, 65,
200, 2, 6, 66, 76, 65, 67, 75, 32, 38, 84, 144, 246, 8, 2, 87, 72, 214,
160, 8, 90, 178, 137, 9, 68, 50, 70, 82, 72, 150, 4, 67, 46, 81, 42, 82,
22, 83, 247, 7, 80, 34, 40, 4, 82, 82, 79, 87, 175, 155, 26, 78, 33, 11,
32, 30, 144, 1, 5, 87, 73, 84, 72, 32, 184, 242, 13, 14, 76, 69, 70, 84,
87, 65, 82, 68, 83, 32, 79, 70, 32, 85, 138, 169, 12, 65, 178, 10, 70,
179, 5, 84, 22, 192, 190, 5, 6, 67, 79, 82, 78, 69, 82, 170, 223, 20, 68,
58, 76, 42, 77, 38, 78, 58, 83, 66, 69, 250, 12, 84, 135, 58, 72, 6, 246,
149, 21, 65, 231, 137, 5, 67, 36, 36, 2, 82, 73, 161, 2, 2, 87, 79, 32,
44, 5, 65, 78, 71, 76, 69, 139, 174, 26, 80, 30, 56, 8, 45, 72, 69, 65,
68, 69, 68, 32, 199, 179, 26, 32, 28, 68, 5, 65, 82, 82, 79, 87, 138,
149, 17, 90, 254, 150, 9, 68, 39, 80, 23, 11, 32, 20, 180, 167, 26, 15,
76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 70, 32, 85, 80, 98, 84, 23,
87, 4, 130, 173, 26, 32, 105, 15, 45, 72, 69, 65, 68, 69, 68, 32, 65, 82,
82, 79, 87, 32, 87, 22, 138, 1, 65, 106, 79, 152, 1, 12, 85, 77, 32, 87,
73, 84, 72, 32, 68, 82, 85, 77, 196, 129, 17, 6, 73, 86, 69, 32, 83, 76,
139, 237, 10, 69, 8, 174, 209, 2, 67, 128, 150, 6, 10, 70, 84, 73, 78,
71, 32, 80, 79, 73, 78, 181, 250, 15, 3, 71, 79, 78, 8, 56, 6, 77, 69,
68, 65, 82, 89, 34, 80, 215, 208, 27, 79, 2, 157, 254, 20, 3, 32, 67, 65,
4, 240, 196, 18, 6, 32, 79, 70, 32, 66, 76, 211, 141, 10, 76, 2, 213,
231, 12, 3, 83, 84, 73, 162, 2, 76, 7, 80, 76, 79, 89, 65, 78, 32, 188,
152, 20, 2, 77, 80, 219, 234, 8, 67, 158, 2, 212, 2, 6, 65, 70, 70, 73,
88, 32, 160, 7, 7, 76, 69, 84, 84, 69, 82, 32, 232, 194, 1, 16, 84, 72,
73, 67, 75, 32, 76, 69, 84, 84, 69, 82, 32, 83, 69, 76, 232, 180, 3, 4,
68, 79, 85, 66, 144, 243, 16, 19, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79,
78, 32, 67, 72, 73, 78, 79, 79, 75, 145, 206, 5, 11, 83, 73, 71, 78, 32,
79, 32, 87, 73, 84, 72, 64, 140, 1, 9, 65, 84, 84, 65, 67, 72, 69, 68,
32, 184, 1, 5, 72, 73, 71, 72, 32, 106, 76, 40, 4, 82, 73, 71, 72, 173,
2, 4, 77, 73, 68, 32, 14, 112, 2, 84, 65, 232, 4, 13, 76, 69, 70, 84, 45,
84, 79, 45, 82, 73, 71, 72, 84, 26, 83, 234, 130, 21, 69, 3, 73, 6, 44,
5, 78, 71, 69, 78, 84, 207, 245, 27, 73, 5, 195, 135, 21, 32, 20, 174, 2,
76, 50, 84, 38, 86, 250, 182, 8, 71, 186, 2, 65, 186, 214, 18, 87, 134,
26, 67, 227, 131, 1, 68, 24, 36, 2, 69, 70, 29, 3, 79, 87, 32, 2, 213, 2,
3, 84, 32, 72, 22, 94, 65, 38, 76, 50, 84, 38, 86, 250, 182, 8, 71, 242,
216, 18, 87, 134, 26, 67, 227, 131, 1, 68, 4, 134, 249, 21, 67, 195, 233,
5, 82, 4, 216, 136, 8, 3, 79, 78, 71, 207, 218, 19, 73, 2, 185, 174, 8,
4, 73, 71, 72, 84, 4, 37, 7, 69, 82, 84, 73, 67, 65, 76, 5, 131, 1, 32,
4, 42, 72, 41, 6, 86, 69, 82, 84, 73, 67, 2, 37, 7, 79, 82, 73, 90, 79,
78, 84, 2, 17, 2, 65, 76, 2, 11, 32, 2, 11, 83, 2, 209, 240, 27, 2, 69,
67, 214, 1, 222, 1, 65, 22, 68, 34, 69, 30, 70, 22, 71, 22, 74, 170, 1,
75, 66, 76, 50, 77, 62, 78, 134, 1, 79, 50, 80, 86, 82, 74, 83, 210, 2,
84, 66, 85, 42, 86, 38, 87, 70, 88, 230, 243, 27, 72, 142, 60, 73, 206,
41, 89, 215, 22, 66, 5, 227, 213, 28, 79, 7, 218, 188, 28, 32, 223, 61,
72, 7, 150, 250, 28, 69, 3, 85, 5, 155, 170, 28, 32, 5, 247, 255, 24, 32,
19, 11, 32, 16, 76, 8, 87, 73, 84, 72, 32, 68, 79, 84, 238, 5, 77, 2, 78,
243, 204, 27, 83, 5, 53, 11, 83, 32, 73, 78, 83, 73, 68, 69, 32, 65, 78,
2, 187, 251, 27, 68, 9, 26, 32, 147, 248, 28, 75, 4, 170, 254, 24, 82,
231, 249, 3, 77, 9, 224, 223, 22, 3, 79, 78, 71, 139, 152, 6, 72, 11, 11,
32, 8, 162, 4, 78, 138, 205, 27, 87, 135, 166, 1, 83, 19, 38, 32, 49, 5,
65, 83, 65, 76, 32, 8, 202, 3, 77, 138, 205, 27, 87, 135, 166, 1, 83, 8,
166, 246, 28, 65, 2, 73, 2, 79, 3, 85, 11, 234, 244, 28, 79, 146, 1, 65,
2, 85, 3, 87, 9, 52, 7, 69, 82, 78, 73, 78, 32, 65, 183, 165, 28, 32, 4,
146, 245, 28, 77, 3, 78, 11, 224, 220, 22, 6, 79, 77, 65, 78, 73, 65,
186, 218, 5, 32, 223, 61, 72, 49, 58, 32, 164, 1, 5, 76, 79, 65, 78, 32,
239, 185, 6, 72, 26, 102, 74, 22, 75, 2, 80, 2, 84, 20, 7, 87, 73, 84,
72, 32, 68, 79, 230, 242, 28, 77, 2, 78, 3, 83, 5, 175, 181, 28, 32, 5,
155, 186, 28, 32, 4, 167, 231, 12, 84, 18, 74, 69, 138, 203, 5, 79, 158,
215, 22, 65, 210, 78, 68, 146, 1, 74, 3, 85, 6, 130, 242, 28, 69, 2, 72,
3, 78, 9, 26, 32, 199, 241, 28, 72, 4, 222, 247, 24, 82, 231, 249, 3, 83,
9, 190, 161, 28, 32, 226, 79, 72, 3, 73, 5, 137, 157, 7, 4, 79, 67, 65,
76, 17, 66, 79, 182, 183, 28, 32, 134, 37, 69, 218, 19, 65, 2, 72, 3, 73,
5, 143, 240, 28, 87, 194, 91, 234, 2, 65, 188, 3, 10, 68, 73, 84, 79, 82,
73, 65, 76, 32, 67, 22, 71, 240, 79, 4, 73, 71, 72, 84, 146, 2, 76, 194,
9, 77, 214, 5, 78, 246, 3, 79, 36, 2, 81, 85, 182, 8, 82, 222, 1, 83,
118, 84, 242, 31, 85, 226, 1, 88, 128, 5, 2, 89, 69, 208, 86, 4, 45, 77,
65, 73, 156, 153, 19, 3, 74, 69, 67, 244, 152, 2, 8, 86, 69, 82, 71, 82,
69, 69, 78, 167, 199, 5, 80, 22, 38, 82, 166, 133, 27, 83, 135, 65, 71,
19, 30, 32, 137, 1, 2, 84, 72, 6, 88, 3, 79, 70, 32, 233, 236, 4, 13, 87,
73, 84, 72, 32, 72, 69, 65, 82, 73, 78, 71, 32, 4, 132, 204, 11, 2, 77,
65, 143, 232, 6, 82, 11, 17, 2, 32, 71, 8, 44, 5, 76, 79, 66, 69, 32,
187, 178, 25, 82, 6, 70, 65, 249, 254, 21, 11, 69, 85, 82, 79, 80, 69,
45, 65, 70, 82, 73, 4, 244, 150, 10, 4, 77, 69, 82, 73, 193, 154, 2, 11,
83, 73, 65, 45, 65, 85, 83, 84, 82, 65, 76, 2, 239, 182, 2, 79, 230, 79,
108, 17, 89, 80, 84, 73, 65, 78, 32, 72, 73, 69, 82, 79, 71, 76, 89, 80,
72, 130, 217, 2, 69, 203, 143, 26, 71, 226, 79, 30, 32, 197, 74, 2, 45,
49, 172, 17, 146, 3, 65, 178, 4, 66, 52, 2, 67, 48, 224, 1, 2, 68, 48,
170, 4, 69, 178, 3, 70, 164, 4, 2, 71, 48, 210, 3, 72, 214, 1, 73, 238,
2, 76, 122, 77, 222, 8, 78, 210, 5, 79, 140, 5, 2, 80, 48, 120, 2, 82,
48, 232, 1, 2, 83, 48, 190, 3, 84, 220, 2, 2, 85, 48, 250, 2, 86, 134, 5,
87, 236, 2, 3, 88, 48, 48, 88, 3, 89, 48, 48, 84, 2, 90, 48, 208, 221, 3,
3, 75, 48, 48, 153, 159, 15, 3, 81, 48, 48, 228, 1, 30, 48, 133, 3, 2,
65, 48, 160, 1, 86, 48, 98, 49, 102, 52, 166, 55, 51, 194, 132, 21, 55,
198, 232, 1, 50, 2, 53, 3, 54, 24, 170, 68, 54, 242, 141, 24, 53, 242,
145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 24, 186, 209, 24,
52, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 3,
57, 28, 214, 208, 24, 48, 2, 50, 2, 51, 2, 53, 242, 145, 4, 49, 2, 52, 2,
54, 2, 55, 2, 56, 3, 57, 68, 46, 48, 246, 54, 51, 162, 236, 22, 49, 3,
50, 22, 210, 65, 55, 226, 159, 28, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54,
2, 56, 3, 57, 26, 148, 9, 4, 69, 71, 73, 78, 185, 25, 2, 48, 48, 56, 34,
48, 90, 49, 251, 252, 8, 50, 24, 230, 39, 50, 158, 184, 28, 49, 2, 51, 2,
52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 22, 186, 205, 24, 48, 242, 145, 4,
49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 184, 1, 70,
48, 94, 51, 102, 52, 102, 53, 106, 54, 194, 29, 50, 147, 255, 22, 49, 20,
138, 204, 24, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2,
55, 3, 57, 24, 174, 203, 24, 49, 2, 52, 242, 145, 4, 48, 2, 50, 2, 51, 2,
53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 202, 202, 24, 54, 2, 56, 242, 145, 4,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 57, 42, 214, 60, 48,
146, 141, 24, 50, 2, 52, 242, 145, 4, 49, 2, 51, 2, 53, 2, 54, 2, 55, 2,
56, 3, 57, 32, 194, 60, 55, 174, 158, 28, 48, 2, 49, 2, 50, 2, 51, 2, 52,
2, 53, 3, 54, 94, 30, 48, 189, 2, 2, 78, 68, 88, 38, 48, 94, 50, 102, 51,
215, 7, 49, 22, 230, 199, 24, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2, 51,
2, 52, 2, 53, 2, 54, 3, 55, 24, 138, 199, 24, 48, 2, 56, 242, 145, 4, 49,
2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 18, 166, 198, 24, 52,
242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 54, 2, 55, 3, 56, 6, 11, 32, 6,
156, 187, 5, 6, 87, 65, 76, 76, 69, 68, 210, 19, 69, 143, 234, 20, 83,
132, 1, 42, 48, 133, 9, 5, 85, 76, 76, 32, 66, 130, 1, 54, 48, 94, 49,
102, 51, 102, 52, 102, 53, 215, 1, 50, 20, 146, 196, 24, 49, 242, 145, 4,
50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 22, 182, 195, 24,
51, 242, 145, 4, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3,
57, 26, 210, 194, 24, 49, 2, 55, 2, 56, 242, 145, 4, 48, 2, 50, 2, 51, 2,
52, 2, 53, 2, 54, 3, 57, 26, 238, 193, 24, 53, 2, 54, 2, 55, 242, 145, 4,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 56, 3, 57, 14, 222, 26, 49, 158, 184,
28, 48, 2, 50, 3, 51, 128, 1, 62, 48, 98, 49, 102, 51, 102, 52, 210, 27,
50, 223, 209, 8, 53, 24, 166, 50, 55, 242, 141, 24, 54, 242, 145, 4, 49,
2, 50, 2, 51, 2, 52, 2, 53, 2, 56, 3, 57, 22, 182, 191, 24, 49, 242, 145,
4, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 24, 210,
190, 24, 54, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53,
2, 56, 3, 57, 24, 238, 189, 24, 51, 2, 53, 242, 145, 4, 48, 2, 49, 2, 50,
2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 24, 80, 2, 48, 48, 84, 4, 65, 76, 70,
32, 161, 40, 7, 79, 82, 73, 90, 79, 78, 84, 18, 182, 188, 24, 54, 242,
145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 4, 22, 66, 255, 42,
76, 2, 235, 253, 16, 76, 52, 58, 48, 181, 1, 9, 78, 83, 69, 82, 84, 32,
65, 84, 32, 38, 18, 48, 95, 49, 22, 230, 186, 24, 53, 2, 57, 242, 145, 4,
49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 3, 56, 16, 138, 186, 24, 48, 2,
49, 242, 145, 4, 50, 2, 51, 2, 52, 3, 53, 14, 68, 6, 66, 79, 84, 84, 79,
77, 0, 3, 84, 79, 80, 243, 231, 19, 77, 7, 11, 32, 4, 206, 186, 27, 69,
249, 8, 2, 83, 84, 22, 32, 2, 48, 48, 211, 235, 15, 79, 20, 166, 184, 24,
50, 2, 54, 242, 145, 4, 49, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 164, 1,
118, 48, 128, 4, 15, 79, 68, 73, 70, 73, 69, 82, 32, 68, 65, 77, 65, 71,
69, 68, 173, 130, 25, 5, 73, 82, 82, 79, 82, 132, 1, 42, 48, 98, 49, 106,
50, 102, 51, 107, 52, 24, 182, 40, 49, 242, 141, 24, 51, 242, 145, 4, 50,
2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 44, 138, 41, 50, 190, 140, 24,
48, 2, 53, 2, 54, 2, 55, 242, 145, 4, 49, 2, 51, 2, 52, 2, 56, 3, 57, 26,
222, 180, 24, 50, 2, 52, 2, 56, 242, 145, 4, 48, 2, 49, 2, 51, 2, 53, 2,
54, 2, 55, 3, 57, 26, 138, 38, 51, 242, 141, 24, 49, 242, 145, 4, 48, 2,
50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 146, 179, 24, 48, 242,
145, 4, 49, 2, 50, 2, 51, 3, 52, 31, 25, 4, 32, 65, 84, 32, 28, 96, 6,
66, 79, 84, 84, 79, 77, 120, 5, 83, 84, 65, 82, 84, 68, 3, 84, 79, 80,
251, 177, 27, 69, 11, 11, 32, 8, 56, 5, 83, 84, 65, 82, 84, 186, 1, 65,
183, 177, 27, 69, 5, 129, 2, 8, 32, 65, 78, 68, 32, 84, 79, 80, 7, 29, 5,
32, 65, 78, 68, 32, 4, 138, 211, 24, 66, 147, 246, 2, 84, 11, 11, 32, 8,
54, 65, 20, 5, 83, 84, 65, 82, 84, 163, 177, 27, 69, 2, 73, 2, 78, 68, 5,
53, 11, 32, 65, 78, 68, 32, 66, 79, 84, 84, 79, 77, 2, 151, 229, 19, 32,
194, 1, 50, 48, 128, 2, 2, 76, 48, 229, 1, 2, 85, 48, 98, 58, 49, 98, 51,
194, 14, 50, 150, 6, 52, 163, 234, 22, 48, 24, 146, 32, 56, 226, 159, 28,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 28, 162, 173,
24, 51, 2, 52, 2, 53, 2, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 54, 2, 56,
3, 57, 44, 34, 48, 94, 49, 207, 150, 21, 50, 20, 154, 172, 24, 53, 242,
145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 22, 190,
171, 24, 55, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54,
2, 56, 3, 57, 52, 34, 49, 102, 50, 167, 251, 22, 48, 26, 182, 170, 24,
48, 2, 49, 2, 56, 242, 145, 4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3,
57, 8, 210, 169, 24, 50, 242, 145, 4, 48, 3, 49, 152, 1, 50, 48, 193,
138, 19, 6, 86, 69, 82, 76, 65, 89, 150, 1, 66, 48, 154, 1, 49, 138, 1,
50, 102, 51, 106, 53, 143, 248, 22, 52, 34, 90, 54, 206, 167, 24, 49, 2,
53, 242, 145, 4, 50, 2, 51, 2, 52, 2, 55, 2, 56, 3, 57, 15, 186, 185, 28,
65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70, 28, 98, 48, 174, 166, 24, 57, 242,
145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 9, 154, 184,
28, 65, 2, 66, 3, 67, 28, 134, 166, 24, 48, 2, 52, 2, 53, 2, 57, 242,
145, 4, 49, 2, 50, 2, 51, 2, 54, 2, 55, 3, 56, 32, 134, 23, 54, 158, 142,
24, 48, 2, 51, 242, 145, 4, 49, 2, 50, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57,
8, 202, 22, 48, 227, 159, 28, 49, 26, 26, 48, 219, 202, 8, 49, 22, 254,
163, 24, 49, 2, 51, 242, 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56,
3, 57, 68, 34, 48, 98, 49, 243, 245, 22, 50, 24, 142, 21, 51, 242, 141,
24, 50, 242, 145, 4, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 24,
158, 162, 24, 48, 2, 54, 242, 145, 4, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2,
55, 2, 56, 3, 57, 108, 50, 48, 94, 49, 106, 50, 98, 51, 219, 191, 19, 52,
22, 134, 161, 24, 50, 2, 54, 242, 145, 4, 49, 2, 51, 2, 52, 2, 53, 2, 55,
2, 56, 3, 57, 26, 186, 18, 52, 242, 141, 24, 55, 242, 145, 4, 48, 2, 49,
2, 50, 2, 51, 2, 53, 2, 54, 2, 56, 3, 57, 24, 210, 17, 54, 226, 159, 28,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 22, 226, 158,
24, 53, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56,
3, 57, 90, 34, 48, 249, 12, 3, 65, 76, 76, 88, 42, 48, 94, 49, 102, 51,
195, 239, 22, 50, 26, 174, 157, 24, 51, 2, 55, 2, 56, 2, 57, 242, 145, 4,
49, 2, 50, 2, 52, 2, 53, 3, 54, 24, 210, 156, 24, 49, 2, 54, 242, 145, 4,
48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 18, 238, 155, 24,
50, 2, 51, 242, 145, 4, 48, 2, 49, 2, 52, 2, 53, 3, 54, 94, 50, 48, 90,
50, 102, 51, 102, 52, 163, 236, 22, 49, 22, 254, 12, 54, 226, 159, 28,
49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 55, 2, 56, 3, 57, 24, 150, 154, 24,
51, 2, 57, 242, 145, 4, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 3,
56, 22, 178, 153, 24, 50, 242, 145, 4, 48, 2, 49, 2, 51, 2, 52, 2, 53, 2,
54, 2, 55, 2, 56, 3, 57, 6, 190, 170, 28, 48, 2, 49, 3, 50, 158, 1, 42,
48, 185, 4, 5, 69, 82, 84, 73, 67, 156, 1, 62, 48, 98, 49, 98, 50, 210,
1, 51, 169, 148, 24, 2, 52, 48, 42, 198, 9, 55, 98, 49, 146, 141, 24, 50,
242, 145, 4, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 32, 186, 8, 49, 46,
50, 226, 159, 28, 48, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57,
50, 98, 48, 150, 149, 24, 51, 2, 56, 2, 57, 242, 145, 4, 49, 2, 50, 2,
52, 2, 53, 2, 54, 3, 55, 27, 130, 167, 28, 65, 2, 66, 2, 67, 2, 68, 2,
69, 2, 70, 2, 71, 2, 72, 2, 73, 2, 74, 2, 75, 3, 76, 28, 166, 148, 24,
48, 2, 49, 2, 51, 2, 55, 242, 145, 4, 50, 2, 52, 2, 53, 2, 54, 2, 56, 3,
57, 2, 181, 246, 23, 2, 65, 76, 66, 34, 48, 161, 2, 3, 73, 68, 69, 64,
26, 48, 94, 49, 103, 50, 22, 230, 146, 24, 51, 2, 57, 242, 145, 4, 49, 2,
50, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 28, 138, 146, 24, 48, 2, 52, 2,
55, 2, 56, 242, 145, 4, 49, 2, 50, 2, 51, 2, 53, 2, 54, 3, 57, 14, 166,
145, 24, 52, 242, 145, 4, 48, 2, 49, 2, 50, 2, 51, 3, 53, 2, 17, 2, 32,
76, 2, 247, 195, 15, 79, 24, 202, 2, 52, 242, 141, 24, 54, 2, 56, 242,
145, 4, 49, 2, 50, 2, 51, 2, 53, 3, 55, 18, 226, 143, 24, 49, 242, 145,
4, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 82, 22, 48, 167, 1, 49,
34, 90, 50, 46, 51, 242, 141, 24, 52, 2, 53, 242, 145, 4, 49, 2, 54, 2,
55, 2, 56, 3, 57, 11, 138, 160, 28, 65, 2, 66, 2, 67, 3, 68, 7, 222, 159,
28, 65, 3, 66, 48, 66, 53, 86, 54, 174, 158, 28, 48, 2, 49, 2, 50, 2, 51,
3, 52, 21, 254, 158, 28, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2,
72, 3, 73, 19, 170, 158, 28, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2,
71, 3, 72, 182, 62, 22, 51, 211, 1, 52, 192, 46, 106, 52, 206, 195, 5,
53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70,
192, 2, 218, 193, 13, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2,
68, 2, 69, 3, 70, 246, 15, 42, 51, 190, 194, 5, 48, 2, 49, 3, 50, 246, 3,
142, 1, 70, 190, 191, 13, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54,
2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 3, 69, 22, 174, 154, 28,
48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 3, 65,
18, 26, 32, 235, 241, 15, 72, 16, 70, 80, 124, 5, 82, 65, 89, 83, 32,
226, 152, 3, 84, 155, 231, 22, 83, 8, 222, 152, 3, 79, 233, 198, 16, 22,
69, 84, 65, 76, 76, 69, 68, 32, 79, 85, 84, 76, 73, 78, 69, 68, 32, 66,
76, 65, 67, 75, 4, 148, 254, 18, 2, 73, 78, 1, 3, 79, 85, 84, 160, 1,
132, 1, 13, 66, 65, 83, 65, 78, 32, 76, 69, 84, 84, 69, 82, 32, 166, 3,
69, 176, 4, 7, 89, 77, 65, 73, 67, 32, 76, 223, 142, 28, 70, 80, 230, 1,
71, 78, 76, 34, 78, 50, 82, 234, 134, 26, 69, 166, 140, 1, 67, 2, 68, 2,
75, 2, 83, 2, 84, 2, 90, 206, 105, 66, 2, 70, 2, 72, 2, 74, 2, 77, 2, 80,
2, 81, 2, 86, 2, 88, 214, 22, 65, 2, 73, 2, 79, 2, 85, 3, 89, 8, 38, 72,
206, 253, 27, 74, 215, 22, 69, 4, 214, 190, 25, 65, 203, 213, 2, 69, 4,
166, 253, 27, 76, 215, 22, 69, 8, 134, 253, 27, 68, 2, 74, 214, 22, 65,
3, 69, 4, 214, 252, 27, 82, 215, 22, 69, 32, 96, 5, 67, 84, 82, 73, 67,
160, 1, 7, 77, 69, 78, 84, 32, 79, 70, 134, 133, 27, 80, 135, 83, 86, 10,
26, 32, 155, 159, 24, 65, 8, 98, 80, 128, 221, 17, 2, 84, 79, 176, 246,
8, 9, 76, 73, 71, 72, 84, 32, 66, 85, 76, 187, 33, 65, 2, 11, 76, 2, 199,
144, 28, 85, 19, 11, 32, 16, 72, 5, 87, 73, 84, 72, 32, 177, 222, 16, 7,
79, 80, 69, 78, 73, 78, 71, 12, 130, 1, 76, 32, 12, 84, 87, 79, 32, 72,
79, 82, 73, 90, 79, 78, 84, 170, 233, 19, 86, 226, 182, 4, 85, 142, 61,
79, 175, 177, 2, 68, 2, 141, 231, 25, 3, 79, 78, 71, 2, 197, 227, 14, 7,
65, 76, 32, 83, 84, 82, 79, 46, 238, 175, 4, 69, 189, 214, 15, 15, 73,
71, 65, 84, 85, 82, 69, 32, 90, 65, 89, 73, 78, 45, 89, 53, 48, 4, 79,
74, 73, 32, 218, 2, 80, 163, 3, 32, 18, 164, 1, 10, 67, 79, 77, 80, 79,
78, 69, 78, 84, 32, 109, 26, 77, 79, 68, 73, 70, 73, 69, 82, 32, 70, 73,
84, 90, 80, 65, 84, 82, 73, 67, 75, 32, 84, 89, 80, 69, 45, 8, 140, 141,
15, 2, 82, 69, 12, 5, 67, 85, 82, 76, 89, 0, 5, 87, 72, 73, 84, 69, 185,
207, 2, 2, 66, 65, 10, 240, 227, 20, 2, 49, 45, 194, 167, 7, 51, 2, 52,
2, 53, 3, 54, 26, 44, 3, 84, 89, 32, 149, 251, 3, 2, 72, 65, 24, 82, 78,
60, 3, 80, 65, 71, 20, 3, 83, 69, 84, 233, 197, 27, 4, 68, 79, 67, 85, 8,
36, 3, 79, 84, 69, 211, 155, 24, 69, 7, 203, 166, 13, 32, 4, 215, 255,
25, 69, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 138, 144, 14, 82, 24, 3,
76, 69, 70, 224, 166, 1, 2, 83, 77, 255, 159, 9, 79, 38, 86, 32, 64, 2,
68, 32, 214, 1, 81, 20, 6, 86, 69, 76, 79, 80, 69, 223, 235, 15, 84, 6,
42, 81, 146, 156, 26, 68, 235, 172, 1, 83, 2, 247, 192, 27, 85, 20, 32,
3, 79, 70, 32, 131, 1, 87, 18, 88, 3, 80, 82, 79, 150, 241, 20, 71, 56,
2, 83, 69, 166, 71, 77, 30, 84, 203, 177, 5, 76, 4, 214, 241, 20, 84,
151, 147, 6, 79, 2, 217, 130, 20, 7, 73, 84, 72, 32, 76, 69, 70, 5, 143,
185, 21, 85, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 42, 76, 177, 134, 24,
4, 68, 79, 87, 78, 2, 185, 228, 22, 4, 73, 71, 72, 84, 6, 178, 132, 28,
76, 2, 77, 3, 84, 46, 28, 2, 65, 76, 231, 6, 73, 40, 30, 32, 133, 2, 2,
83, 32, 12, 56, 3, 84, 79, 32, 181, 155, 13, 5, 65, 78, 68, 32, 80, 10,
68, 3, 79, 82, 32, 145, 177, 27, 8, 66, 89, 32, 68, 69, 70, 73, 78, 8,
64, 3, 80, 82, 69, 28, 3, 83, 85, 67, 250, 235, 25, 71, 39, 76, 2, 213,
170, 15, 2, 67, 69, 2, 181, 159, 26, 3, 67, 69, 69, 28, 72, 4, 83, 73,
71, 78, 184, 233, 25, 4, 87, 73, 84, 72, 199, 199, 1, 67, 25, 11, 32, 22,
42, 65, 201, 1, 5, 87, 73, 84, 72, 32, 12, 112, 5, 66, 79, 86, 69, 32,
65, 19, 78, 68, 32, 83, 76, 65, 78, 84, 69, 68, 32, 80, 65, 82, 65, 76,
76, 69, 76, 8, 206, 151, 21, 80, 210, 5, 84, 146, 189, 2, 76, 171, 131,
3, 82, 5, 187, 247, 6, 32, 10, 160, 1, 4, 66, 85, 77, 80, 20, 7, 73, 78,
70, 73, 78, 73, 84, 20, 18, 84, 87, 79, 32, 68, 79, 84, 83, 32, 65, 66,
79, 86, 69, 32, 65, 78, 68, 235, 170, 15, 68, 2, 215, 128, 27, 89, 4,
179, 219, 25, 89, 2, 17, 2, 32, 84, 2, 211, 203, 25, 87, 6, 80, 7, 86,
65, 76, 69, 78, 84, 32, 161, 155, 21, 7, 65, 78, 71, 85, 76, 65, 82, 4,
48, 6, 87, 73, 84, 72, 32, 70, 147, 221, 27, 84, 2, 11, 79, 2, 237, 248,
2, 2, 85, 82, 20, 152, 1, 11, 82, 79, 82, 45, 66, 65, 82, 82, 69, 68, 32,
184, 170, 5, 7, 73, 83, 32, 70, 79, 82, 77, 161, 202, 7, 9, 65, 83, 69,
32, 84, 79, 32, 84, 72, 12, 216, 227, 5, 4, 87, 72, 73, 84, 13, 5, 66,
76, 65, 67, 75, 10, 58, 67, 20, 6, 84, 73, 77, 65, 84, 69, 179, 249, 27,
65, 5, 235, 175, 26, 65, 4, 234, 227, 26, 68, 199, 149, 1, 83, 154, 8,
60, 7, 72, 73, 79, 80, 73, 67, 32, 202, 248, 27, 66, 3, 88, 150, 8, 204,
1, 2, 67, 79, 232, 1, 7, 78, 85, 77, 66, 69, 82, 32, 114, 80, 54, 83,
156, 24, 11, 84, 79, 78, 65, 76, 32, 77, 65, 82, 75, 32, 254, 143, 19,
68, 158, 246, 5, 70, 82, 81, 173, 150, 2, 4, 87, 79, 82, 68, 10, 26, 77,
239, 166, 27, 76, 8, 52, 7, 66, 73, 78, 73, 78, 71, 32, 235, 243, 27, 77,
6, 60, 11, 71, 69, 77, 73, 78, 65, 84, 73, 79, 78, 32, 51, 86, 4, 44, 5,
65, 78, 68, 32, 86, 135, 180, 27, 77, 2, 169, 148, 24, 4, 79, 87, 69, 76,
22, 66, 84, 158, 152, 22, 72, 238, 234, 3, 69, 30, 70, 42, 78, 39, 83, 8,
154, 214, 16, 69, 158, 174, 9, 72, 27, 87, 4, 202, 119, 65, 169, 172, 26,
5, 82, 69, 70, 65, 67, 198, 7, 50, 69, 37, 8, 89, 76, 76, 65, 66, 76, 69,
32, 4, 170, 164, 24, 77, 223, 229, 2, 67, 194, 7, 210, 1, 66, 90, 67,
246, 1, 68, 186, 1, 70, 90, 71, 214, 2, 72, 162, 1, 75, 102, 77, 90, 78,
90, 80, 138, 2, 81, 174, 1, 82, 86, 83, 210, 1, 84, 122, 74, 2, 76, 138,
1, 87, 2, 89, 66, 88, 134, 1, 90, 95, 86, 38, 194, 12, 87, 230, 8, 66,
158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 78, 94, 67,
254, 15, 72, 146, 206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186,
2, 73, 3, 85, 42, 70, 72, 198, 221, 23, 65, 210, 209, 3, 69, 162, 64, 73,
2, 79, 3, 85, 28, 166, 19, 72, 158, 202, 23, 65, 210, 209, 3, 69, 162,
64, 73, 2, 79, 3, 85, 60, 94, 68, 214, 14, 90, 198, 205, 23, 65, 2, 79,
210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 30, 210, 14, 72, 198,
205, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 24,
190, 8, 87, 130, 211, 23, 65, 210, 209, 3, 69, 234, 61, 89, 186, 2, 73,
2, 79, 3, 85, 118, 142, 1, 85, 226, 7, 71, 232, 3, 7, 76, 79, 84, 84, 65,
76, 32, 158, 2, 87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69,
163, 64, 73, 39, 29, 5, 82, 65, 71, 69, 32, 36, 74, 66, 2, 70, 2, 77, 2,
80, 46, 71, 2, 75, 2, 81, 195, 144, 12, 72, 4, 11, 87, 4, 250, 211, 27,
69, 215, 22, 73, 6, 11, 87, 6, 130, 170, 27, 69, 163, 64, 73, 52, 70, 72,
206, 215, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 36, 202, 4,
87, 230, 8, 89, 158, 202, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3,
85, 64, 250, 4, 88, 134, 6, 87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210,
209, 3, 69, 162, 64, 73, 3, 85, 26, 142, 3, 87, 130, 211, 23, 65, 2, 79,
210, 209, 3, 69, 234, 61, 89, 186, 2, 73, 3, 85, 36, 166, 7, 89, 146,
206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 56,
82, 72, 142, 1, 87, 130, 211, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64,
73, 3, 85, 32, 74, 65, 194, 211, 23, 79, 210, 209, 3, 69, 234, 61, 87,
186, 2, 73, 3, 85, 19, 160, 9, 8, 82, 89, 78, 71, 69, 65, 76, 32, 143,
220, 27, 65, 8, 206, 164, 27, 69, 162, 64, 65, 3, 73, 64, 94, 72, 134, 6,
87, 218, 1, 89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3,
85, 24, 130, 6, 87, 246, 203, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2,
79, 3, 85, 20, 170, 209, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 2,
89, 186, 2, 73, 3, 85, 74, 102, 69, 226, 1, 72, 170, 3, 90, 78, 83, 158,
202, 23, 65, 2, 79, 186, 143, 4, 87, 186, 2, 73, 3, 85, 13, 56, 8, 66,
65, 84, 66, 69, 73, 84, 32, 167, 225, 27, 69, 8, 198, 231, 22, 66, 2, 70,
2, 77, 3, 80, 80, 118, 72, 76, 2, 84, 72, 62, 90, 162, 2, 83, 234, 202,
23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 18, 142,
206, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 12,
146, 159, 27, 69, 234, 61, 65, 186, 2, 73, 2, 79, 3, 85, 16, 134, 205,
23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 40, 82, 87, 218, 1,
89, 158, 202, 23, 65, 2, 79, 210, 209, 3, 69, 162, 64, 73, 3, 85, 10,
242, 203, 23, 65, 210, 209, 3, 69, 163, 64, 73, 48, 90, 72, 78, 90, 158,
202, 23, 65, 2, 79, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 3, 85, 16,
230, 202, 23, 65, 210, 209, 3, 69, 234, 61, 87, 186, 2, 73, 2, 79, 3, 85,
14, 154, 202, 23, 65, 210, 209, 3, 69, 162, 64, 73, 2, 79, 3, 85, 20,
130, 1, 68, 74, 72, 30, 75, 42, 82, 0, 7, 83, 72, 79, 82, 84, 32, 82,
220, 147, 4, 3, 67, 72, 73, 201, 144, 23, 3, 89, 73, 90, 6, 48, 4, 69,
82, 69, 84, 229, 208, 26, 2, 73, 70, 5, 17, 2, 45, 72, 2, 229, 164, 27,
2, 73, 68, 4, 176, 208, 26, 2, 69, 78, 163, 2, 85, 2, 137, 162, 4, 3, 73,
75, 82, 12, 96, 2, 82, 79, 192, 159, 11, 3, 78, 79, 77, 129, 173, 15, 9,
76, 69, 82, 32, 67, 79, 78, 83, 84, 8, 92, 5, 80, 69, 65, 78, 32, 144,
161, 24, 8, 45, 67, 85, 82, 82, 69, 78, 67, 215, 175, 2, 32, 4, 202, 142,
4, 67, 19, 80, 50, 30, 67, 102, 80, 187, 1, 84, 6, 60, 9, 76, 65, 77, 65,
84, 73, 79, 78, 32, 139, 190, 26, 69, 4, 246, 129, 25, 81, 187, 147, 2,
77, 10, 96, 7, 76, 79, 83, 73, 79, 78, 32, 181, 152, 27, 11, 82, 69, 83,
83, 73, 79, 78, 76, 69, 83, 83, 8, 212, 223, 11, 4, 70, 82, 65, 77, 145,
166, 15, 8, 65, 84, 32, 72, 79, 82, 73, 90, 34, 98, 82, 233, 197, 21, 18,
69, 78, 68, 69, 68, 32, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 67,
14, 140, 1, 12, 69, 77, 69, 76, 89, 32, 72, 69, 65, 86, 89, 32, 137, 253,
25, 16, 65, 84, 69, 82, 82, 69, 83, 84, 82, 73, 65, 76, 32, 65, 76, 73,
12, 50, 83, 134, 185, 25, 70, 234, 2, 87, 203, 11, 71, 4, 150, 186, 25,
65, 43, 73, 7, 250, 186, 19, 71, 195, 151, 8, 83, 152, 4, 142, 1, 65,
130, 19, 69, 190, 1, 73, 134, 8, 76, 138, 6, 79, 142, 7, 82, 130, 5, 85,
252, 201, 20, 2, 86, 83, 242, 203, 4, 83, 199, 140, 2, 70, 92, 122, 67,
178, 15, 76, 176, 2, 2, 88, 32, 170, 148, 3, 77, 252, 253, 5, 2, 82, 83,
140, 251, 1, 2, 84, 72, 151, 235, 9, 73, 70, 72, 2, 69, 32, 180, 187, 16,
4, 83, 73, 77, 73, 165, 206, 4, 2, 84, 79, 66, 226, 1, 83, 160, 1, 4, 87,
73, 84, 72, 196, 136, 13, 2, 80, 65, 252, 136, 2, 2, 77, 65, 164, 162,
11, 13, 84, 72, 82, 79, 87, 73, 78, 71, 32, 65, 32, 75, 73, 201, 1, 14,
72, 79, 76, 68, 73, 78, 71, 32, 66, 65, 67, 75, 32, 84, 4, 216, 138, 17,
18, 65, 86, 79, 85, 82, 73, 78, 71, 32, 68, 69, 76, 73, 67, 73, 79, 85,
83, 141, 138, 5, 13, 67, 82, 69, 65, 77, 73, 78, 71, 32, 73, 78, 32, 70,
54, 38, 32, 141, 167, 24, 3, 79, 85, 84, 52, 196, 4, 2, 67, 79, 44, 5,
72, 69, 65, 68, 45, 38, 77, 98, 79, 92, 7, 78, 79, 32, 71, 79, 79, 68,
238, 1, 80, 164, 1, 16, 83, 84, 85, 67, 75, 45, 79, 85, 84, 32, 84, 79,
78, 71, 85, 69, 110, 84, 204, 183, 1, 9, 66, 65, 71, 83, 32, 85, 78, 68,
69, 212, 171, 17, 22, 70, 73, 78, 71, 69, 82, 32, 67, 79, 86, 69, 82, 73,
78, 71, 32, 67, 76, 79, 83, 69, 68, 244, 67, 3, 82, 79, 76, 180, 231, 1,
13, 76, 79, 79, 75, 32, 79, 70, 32, 84, 82, 73, 85, 77, 244, 141, 3, 8,
68, 73, 65, 71, 79, 78, 65, 76, 1, 20, 85, 78, 69, 86, 69, 78, 32, 69,
89, 69, 83, 32, 65, 78, 68, 32, 87, 65, 86, 89, 4, 252, 4, 3, 87, 66, 79,
227, 167, 19, 76, 2, 249, 183, 22, 4, 66, 65, 78, 68, 4, 60, 6, 69, 68,
73, 67, 65, 76, 185, 242, 25, 3, 79, 78, 79, 2, 181, 255, 25, 3, 32, 77,
65, 12, 90, 75, 36, 4, 80, 69, 78, 32, 213, 180, 20, 10, 78, 69, 32, 69,
89, 69, 66, 82, 79, 87, 2, 241, 166, 22, 4, 32, 71, 69, 83, 8, 116, 5,
77, 79, 85, 84, 72, 157, 159, 24, 18, 69, 89, 69, 83, 32, 65, 78, 68, 32,
72, 65, 78, 68, 32, 79, 86, 69, 82, 7, 11, 32, 4, 184, 137, 10, 3, 86,
79, 77, 221, 159, 9, 5, 65, 78, 68, 32, 67, 6, 132, 1, 18, 65, 82, 84,
89, 32, 72, 79, 82, 78, 32, 65, 78, 68, 32, 80, 65, 82, 84, 100, 2, 69,
69, 197, 167, 19, 4, 76, 69, 65, 68, 2, 229, 208, 22, 2, 89, 32, 7, 29,
5, 32, 65, 78, 68, 32, 4, 36, 3, 87, 73, 78, 231, 167, 19, 84, 2, 169,
183, 1, 4, 75, 73, 78, 71, 4, 50, 69, 193, 212, 22, 6, 72, 69, 82, 77,
79, 77, 2, 181, 175, 27, 8, 65, 82, 83, 32, 79, 70, 32, 74, 10, 34, 76,
133, 171, 22, 2, 65, 70, 8, 84, 13, 73, 78, 71, 32, 68, 73, 65, 71, 79,
78, 65, 76, 32, 129, 242, 23, 2, 69, 78, 6, 128, 1, 9, 67, 82, 79, 83,
83, 73, 78, 71, 32, 201, 186, 19, 16, 73, 78, 32, 87, 72, 73, 84, 69, 32,
67, 73, 82, 67, 76, 69, 32, 4, 164, 148, 16, 3, 82, 73, 83, 227, 173, 3,
78, 4, 218, 130, 15, 73, 131, 143, 4, 77, 14, 50, 65, 50, 77, 44, 2, 82,
82, 147, 236, 18, 78, 4, 232, 174, 8, 3, 82, 70, 85, 147, 237, 9, 84, 4,
228, 246, 8, 2, 73, 78, 179, 178, 7, 65, 4, 220, 246, 7, 2, 73, 83, 151,
198, 19, 89, 58, 138, 1, 71, 90, 76, 178, 1, 78, 98, 82, 182, 2, 83, 164,
14, 4, 86, 69, 32, 68, 217, 255, 4, 10, 69, 76, 68, 32, 72, 79, 67, 75,
69, 89, 6, 48, 4, 85, 82, 69, 32, 245, 140, 26, 2, 72, 84, 4, 242, 207,
25, 68, 235, 172, 1, 83, 10, 32, 2, 69, 32, 65, 2, 77, 32, 6, 242, 200,
13, 70, 140, 155, 2, 3, 67, 65, 66, 147, 165, 8, 83, 4, 52, 4, 80, 82,
79, 74, 173, 161, 20, 3, 70, 82, 65, 2, 251, 217, 15, 69, 4, 72, 4, 71,
69, 82, 80, 221, 174, 25, 8, 73, 84, 69, 32, 80, 65, 82, 84, 2, 195, 141,
16, 82, 22, 34, 69, 189, 1, 3, 83, 84, 32, 13, 56, 2, 32, 69, 68, 4, 87,
79, 82, 75, 251, 184, 15, 67, 4, 222, 192, 13, 78, 193, 213, 4, 8, 88,
84, 73, 78, 71, 85, 73, 83, 4, 216, 201, 23, 6, 32, 83, 80, 65, 82, 75,
215, 237, 3, 83, 10, 186, 177, 5, 81, 172, 184, 10, 8, 83, 84, 82, 79,
78, 71, 32, 73, 223, 225, 6, 80, 10, 38, 72, 165, 229, 23, 3, 84, 69, 68,
9, 128, 255, 3, 13, 73, 78, 71, 32, 80, 79, 76, 69, 32, 65, 78, 68, 32,
174, 209, 5, 69, 213, 222, 16, 19, 32, 67, 65, 75, 69, 32, 87, 73, 84,
72, 32, 83, 87, 73, 82, 76, 32, 68, 69, 46, 50, 65, 170, 1, 69, 98, 79,
194, 1, 85, 39, 89, 12, 114, 84, 236, 163, 4, 5, 80, 80, 73, 78, 71, 192,
159, 3, 6, 71, 32, 73, 78, 32, 72, 161, 224, 17, 3, 77, 73, 78, 6, 190,
221, 8, 32, 250, 203, 11, 66, 135, 241, 5, 78, 4, 196, 250, 23, 8, 88,
69, 68, 32, 66, 73, 67, 69, 153, 145, 1, 7, 85, 82, 45, 68, 69, 45, 76,
12, 52, 2, 82, 65, 20, 3, 87, 69, 82, 139, 234, 25, 80, 5, 147, 170, 26,
76, 7, 17, 2, 32, 80, 4, 58, 85, 209, 207, 24, 8, 76, 65, 89, 73, 78, 71,
32, 67, 2, 181, 199, 26, 4, 78, 67, 84, 85, 4, 190, 158, 3, 83, 183, 251,
23, 84, 15, 25, 4, 73, 78, 71, 32, 12, 64, 6, 83, 65, 85, 67, 69, 82,
210, 143, 10, 68, 155, 136, 10, 69, 9, 11, 32, 6, 40, 4, 87, 73, 84, 72,
227, 153, 26, 83, 4, 34, 32, 1, 4, 79, 85, 84, 32, 2, 21, 3, 66, 69, 65,
2, 243, 240, 26, 77, 56, 102, 71, 20, 2, 76, 68, 68, 2, 79, 84, 22, 82,
142, 2, 85, 128, 155, 23, 2, 78, 68, 191, 210, 3, 88, 5, 139, 156, 27,
71, 4, 156, 205, 9, 8, 73, 78, 71, 32, 72, 65, 78, 68, 199, 167, 17, 69,
5, 195, 161, 14, 80, 18, 78, 75, 132, 1, 3, 84, 85, 78, 134, 224, 20, 77,
222, 192, 4, 32, 179, 116, 67, 8, 80, 10, 32, 65, 78, 68, 32, 75, 78, 73,
70, 69, 242, 164, 15, 69, 223, 181, 11, 73, 5, 201, 222, 15, 7, 32, 87,
73, 84, 72, 32, 80, 4, 224, 143, 27, 6, 69, 32, 67, 79, 79, 75, 179, 27,
65, 22, 26, 82, 199, 190, 23, 78, 20, 38, 32, 218, 2, 84, 223, 239, 18,
45, 16, 110, 67, 174, 1, 68, 182, 170, 2, 66, 216, 155, 10, 7, 76, 69,
65, 70, 32, 67, 76, 186, 111, 84, 235, 215, 11, 80, 4, 148, 183, 13, 3,
76, 85, 66, 181, 86, 32, 79, 82, 78, 69, 82, 32, 65, 82, 82, 79, 87, 83,
32, 67, 73, 82, 67, 76, 73, 78, 71, 32, 65, 78, 84, 73, 67, 76, 79, 67,
75, 87, 4, 21, 3, 79, 84, 32, 4, 246, 225, 23, 80, 195, 132, 3, 77, 2,
231, 43, 72, 30, 78, 65, 250, 1, 69, 98, 79, 133, 131, 17, 8, 73, 69, 68,
32, 83, 72, 82, 73, 12, 96, 6, 67, 84, 73, 79, 78, 32, 68, 8, 77, 69, 32,
87, 73, 84, 72, 32, 193, 242, 10, 2, 71, 73, 4, 166, 129, 20, 83, 177, 6,
9, 78, 85, 77, 69, 82, 65, 84, 79, 82, 6, 50, 80, 218, 170, 2, 65, 149,
185, 21, 2, 84, 73, 2, 185, 134, 22, 2, 73, 67, 6, 48, 6, 78, 67, 72, 32,
70, 82, 139, 142, 19, 69, 4, 174, 142, 26, 73, 133, 15, 3, 65, 78, 67,
10, 52, 3, 78, 84, 45, 116, 2, 87, 78, 191, 229, 26, 71, 4, 70, 84, 217,
143, 2, 11, 70, 65, 67, 73, 78, 71, 32, 66, 65, 66, 89, 2, 189, 191, 12,
6, 73, 76, 84, 69, 68, 32, 5, 185, 147, 8, 6, 73, 78, 71, 32, 70, 65,
226, 1, 80, 2, 76, 76, 134, 6, 78, 208, 250, 16, 5, 69, 76, 32, 80, 85,
179, 138, 10, 83, 216, 1, 42, 32, 73, 6, 87, 73, 68, 84, 72, 32, 10, 234,
140, 12, 77, 136, 171, 3, 2, 79, 85, 170, 247, 8, 66, 151, 29, 83, 206,
1, 242, 1, 67, 42, 76, 78, 78, 30, 80, 66, 82, 142, 1, 83, 38, 89, 130,
159, 10, 77, 174, 213, 10, 65, 158, 2, 68, 58, 69, 98, 71, 118, 72, 202,
4, 81, 198, 153, 2, 87, 182, 29, 84, 162, 146, 1, 70, 224, 177, 1, 6, 66,
82, 79, 75, 69, 78, 211, 7, 86, 10, 162, 248, 20, 73, 62, 79, 131, 81,
69, 116, 42, 69, 214, 251, 20, 65, 231, 183, 4, 79, 10, 162, 1, 70, 199,
253, 20, 83, 4, 166, 210, 21, 79, 35, 85, 6, 42, 79, 198, 254, 20, 69,
211, 236, 2, 76, 2, 223, 177, 25, 85, 10, 36, 3, 73, 71, 72, 207, 131,
25, 69, 8, 17, 2, 84, 32, 8, 140, 181, 20, 5, 87, 72, 73, 84, 69, 246,
220, 2, 67, 210, 3, 80, 239, 7, 83, 4, 250, 204, 23, 69, 139, 184, 1, 79,
2, 223, 159, 25, 69, 6, 128, 205, 11, 8, 67, 84, 73, 79, 78, 32, 65, 80,
208, 252, 8, 5, 69, 82, 65, 76, 32, 211, 188, 1, 78, 130, 21, 114, 65,
250, 6, 69, 222, 22, 73, 162, 1, 76, 134, 15, 79, 198, 6, 82, 178, 92,
85, 138, 155, 22, 72, 131, 238, 3, 83, 142, 1, 42, 82, 149, 254, 26, 4,
77, 69, 32, 68, 140, 1, 36, 3, 65, 89, 32, 255, 238, 25, 76, 138, 1, 166,
1, 67, 210, 1, 83, 192, 2, 6, 86, 79, 87, 69, 76, 32, 172, 178, 8, 6, 82,
69, 68, 85, 80, 76, 194, 208, 10, 72, 238, 168, 1, 80, 214, 181, 3, 77,
171, 190, 1, 68, 52, 42, 79, 205, 1, 5, 65, 80, 73, 84, 65, 8, 88, 10,
77, 66, 73, 78, 73, 78, 71, 32, 68, 79, 37, 8, 78, 83, 79, 78, 65, 78,
84, 32, 4, 234, 148, 12, 85, 247, 132, 14, 84, 4, 178, 149, 12, 78, 171,
161, 11, 71, 46, 36, 3, 77, 65, 76, 171, 146, 22, 85, 44, 45, 9, 76, 32,
76, 69, 84, 84, 69, 82, 32, 44, 200, 1, 4, 79, 76, 68, 32, 214, 155, 20,
78, 238, 245, 6, 66, 2, 67, 2, 68, 2, 70, 2, 71, 2, 72, 2, 74, 2, 75, 2,
76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, 88, 2, 89, 187, 2, 65,
4, 190, 145, 27, 75, 3, 78, 12, 44, 5, 83, 73, 71, 78, 32, 179, 209, 26,
76, 10, 138, 211, 26, 69, 162, 64, 65, 2, 73, 3, 79, 146, 3, 112, 2, 65,
82, 110, 77, 50, 79, 160, 218, 23, 9, 82, 77, 65, 78, 32, 80, 69, 78, 78,
174, 177, 2, 84, 239, 105, 78, 7, 29, 5, 32, 87, 73, 84, 72, 4, 224, 160,
14, 5, 79, 85, 84, 32, 72, 233, 175, 9, 5, 32, 72, 65, 78, 68, 4, 26, 32,
167, 140, 22, 73, 2, 207, 155, 23, 83, 130, 3, 46, 77, 245, 5, 6, 82, 71,
73, 65, 78, 32, 38, 92, 13, 65, 78, 84, 73, 67, 32, 70, 73, 71, 85, 82,
69, 32, 205, 4, 5, 69, 84, 82, 73, 67, 32, 158, 1, 65, 82, 67, 172, 1, 9,
70, 79, 82, 84, 85, 78, 65, 32, 77, 44, 3, 76, 65, 69, 0, 4, 84, 82, 73,
83, 34, 80, 80, 3, 82, 85, 66, 167, 210, 10, 86, 6, 216, 1, 6, 67, 81,
85, 73, 83, 73, 12, 4, 77, 73, 83, 83, 235, 166, 23, 76, 8, 42, 65, 97,
6, 79, 78, 74, 85, 78, 67, 6, 56, 3, 80, 85, 84, 0, 3, 85, 68, 65, 155,
188, 18, 82, 2, 165, 90, 5, 32, 68, 82, 65, 67, 2, 11, 84, 2, 215, 237,
26, 73, 4, 206, 167, 2, 73, 129, 172, 24, 2, 65, 74, 2, 145, 211, 10, 3,
84, 73, 84, 6, 44, 2, 85, 69, 177, 128, 23, 3, 79, 80, 85, 4, 162, 233,
26, 76, 155, 34, 82, 2, 183, 130, 25, 69, 6, 252, 135, 20, 4, 65, 76, 76,
89, 137, 228, 1, 5, 32, 80, 82, 79, 80, 220, 2, 228, 1, 6, 67, 65, 80,
73, 84, 65, 0, 4, 83, 77, 65, 76, 172, 3, 7, 76, 69, 84, 84, 69, 82, 32,
180, 2, 24, 77, 84, 65, 86, 82, 85, 76, 73, 32, 67, 65, 80, 73, 84, 65,
76, 32, 76, 69, 84, 84, 69, 82, 32, 165, 6, 2, 80, 65, 80, 45, 9, 76, 32,
76, 69, 84, 84, 69, 82, 32, 80, 142, 2, 65, 34, 72, 166, 5, 67, 118, 71,
130, 1, 74, 34, 75, 82, 80, 34, 83, 94, 90, 252, 181, 5, 2, 84, 65, 162,
149, 8, 76, 226, 180, 2, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226, 40, 78,
2, 81, 234, 35, 86, 234, 47, 68, 14, 69, 2, 73, 2, 79, 2, 85, 2, 89, 143,
57, 87, 4, 178, 182, 26, 69, 227, 79, 78, 10, 46, 65, 242, 238, 26, 73,
2, 79, 215, 22, 69, 4, 194, 133, 27, 69, 3, 82, 94, 254, 1, 85, 178, 2,
65, 42, 67, 74, 69, 46, 71, 34, 72, 98, 74, 34, 75, 34, 76, 50, 80, 34,
83, 34, 84, 62, 90, 254, 255, 15, 82, 218, 176, 9, 66, 2, 77, 2, 88, 226,
40, 78, 2, 81, 234, 35, 86, 234, 47, 68, 14, 73, 2, 79, 2, 89, 142, 57,
87, 255, 2, 70, 4, 136, 139, 22, 4, 45, 66, 82, 74, 159, 248, 4, 78, 92,
250, 1, 65, 42, 67, 74, 69, 46, 71, 34, 72, 98, 74, 34, 75, 34, 76, 50,
80, 34, 83, 34, 84, 62, 90, 254, 255, 15, 82, 218, 176, 9, 66, 2, 77, 2,
88, 226, 40, 78, 2, 81, 234, 35, 86, 234, 47, 68, 14, 73, 2, 79, 2, 85,
2, 89, 142, 57, 87, 255, 2, 70, 6, 150, 177, 26, 69, 2, 73, 227, 79, 78,
8, 38, 72, 218, 244, 25, 73, 243, 59, 65, 4, 198, 176, 26, 73, 135, 23,
65, 4, 156, 144, 9, 2, 76, 73, 235, 239, 17, 78, 4, 190, 179, 25, 72,
191, 124, 65, 12, 46, 65, 186, 232, 26, 73, 2, 79, 215, 22, 69, 6, 26,
82, 243, 254, 26, 69, 5, 239, 247, 25, 68, 4, 190, 178, 25, 72, 207, 64,
73, 4, 254, 218, 25, 72, 223, 83, 65, 4, 11, 65, 4, 198, 218, 15, 66,
203, 163, 11, 83, 4, 174, 218, 25, 72, 227, 106, 65, 4, 246, 253, 25, 72,
247, 47, 65, 6, 176, 184, 3, 6, 85, 82, 78, 69, 68, 32, 135, 254, 1, 65,
4, 178, 217, 25, 72, 223, 83, 69, 2, 181, 179, 20, 7, 82, 65, 71, 82, 65,
80, 72, 10, 48, 2, 77, 69, 20, 4, 78, 71, 69, 82, 31, 82, 2, 167, 230,
25, 76, 2, 133, 197, 18, 2, 32, 82, 6, 38, 76, 149, 243, 13, 3, 65, 70,
70, 5, 207, 229, 25, 83, 202, 1, 66, 65, 214, 13, 79, 185, 171, 26, 7,
69, 73, 67, 72, 32, 83, 84, 194, 1, 84, 8, 71, 79, 76, 73, 84, 73, 67,
32, 229, 12, 8, 83, 83, 32, 79, 70, 32, 77, 73, 192, 1, 56, 6, 67, 65,
80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 96, 45, 9, 76, 32, 76, 69, 84, 84,
69, 82, 32, 96, 206, 1, 65, 22, 66, 42, 67, 94, 68, 94, 70, 38, 71, 46,
73, 138, 2, 76, 58, 77, 66, 78, 34, 79, 30, 80, 58, 82, 30, 83, 186, 1,
84, 110, 86, 22, 89, 90, 90, 234, 145, 19, 72, 190, 133, 2, 85, 139, 183,
5, 75, 2, 179, 210, 26, 90, 4, 214, 3, 73, 233, 225, 26, 2, 85, 75, 4,
48, 8, 65, 85, 68, 65, 84, 69, 32, 67, 15, 72, 2, 11, 72, 2, 233, 135,
20, 2, 82, 73, 6, 42, 74, 30, 79, 237, 210, 26, 2, 90, 69, 2, 161, 135,
20, 2, 69, 82, 2, 187, 131, 25, 66, 4, 210, 156, 21, 82, 139, 180, 5, 73,
2, 21, 3, 76, 65, 71, 2, 139, 241, 21, 79, 13, 38, 78, 54, 79, 141, 1, 2,
90, 72, 2, 161, 199, 26, 8, 73, 84, 73, 65, 76, 32, 73, 90, 4, 33, 6, 84,
65, 84, 69, 68, 32, 4, 26, 66, 25, 2, 83, 77, 2, 11, 73, 2, 35, 71, 2,
21, 3, 65, 76, 76, 2, 165, 234, 24, 2, 32, 89, 4, 158, 240, 26, 73, 211,
2, 69, 4, 52, 9, 65, 84, 73, 78, 65, 84, 69, 32, 77, 35, 74, 2, 141, 141,
11, 3, 89, 83, 76, 2, 161, 148, 9, 3, 85, 68, 73, 2, 11, 65, 2, 211, 153,
21, 83, 4, 206, 204, 26, 78, 3, 84, 4, 26, 79, 131, 241, 26, 69, 2, 245,
208, 22, 2, 75, 79, 2, 237, 253, 21, 2, 73, 84, 14, 106, 72, 58, 76, 148,
248, 13, 6, 80, 73, 68, 69, 82, 89, 173, 191, 10, 8, 77, 65, 76, 76, 32,
89, 85, 83, 6, 32, 2, 84, 65, 187, 239, 26, 65, 5, 155, 197, 25, 80, 2,
255, 131, 20, 79, 6, 78, 86, 196, 165, 22, 9, 82, 79, 75, 85, 84, 65, 83,
84, 73, 167, 181, 4, 83, 2, 253, 174, 19, 2, 82, 73, 2, 175, 219, 24, 69,
12, 50, 69, 222, 129, 19, 65, 130, 236, 7, 79, 3, 85, 6, 146, 149, 21,
83, 147, 152, 5, 82, 4, 196, 152, 9, 3, 69, 77, 76, 221, 139, 16, 4, 72,
73, 86, 69, 2, 223, 233, 26, 76, 6, 196, 246, 11, 13, 66, 69, 32, 87, 73,
84, 72, 32, 77, 69, 82, 73, 68, 230, 200, 4, 87, 183, 151, 9, 86, 68,
162, 1, 65, 44, 12, 84, 72, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 222,
174, 18, 82, 222, 102, 71, 228, 141, 5, 3, 78, 71, 71, 238, 187, 1, 79,
185, 77, 2, 76, 70, 4, 196, 191, 15, 2, 76, 32, 147, 171, 11, 84, 54,
210, 2, 65, 50, 72, 46, 73, 46, 78, 46, 80, 2, 81, 40, 2, 82, 65, 22, 84,
236, 144, 9, 2, 87, 73, 194, 152, 12, 85, 244, 69, 3, 70, 65, 73, 204, 7,
4, 66, 65, 73, 82, 248, 21, 2, 79, 84, 150, 30, 68, 166, 128, 1, 77, 198,
147, 1, 69, 164, 30, 3, 76, 65, 71, 148, 41, 3, 83, 65, 85, 230, 161, 1,
74, 196, 16, 2, 71, 73, 141, 12, 2, 75, 85, 4, 240, 222, 24, 3, 73, 72,
86, 163, 134, 2, 72, 4, 186, 232, 13, 87, 157, 243, 11, 2, 65, 71, 4,
138, 146, 9, 85, 241, 245, 14, 2, 71, 71, 6, 202, 214, 15, 73, 241, 140,
9, 2, 65, 85, 2, 225, 161, 26, 5, 65, 73, 82, 84, 72, 2, 247, 192, 26,
73, 4, 248, 192, 23, 2, 72, 73, 237, 69, 2, 69, 73, 234, 9, 46, 65, 198,
5, 69, 206, 82, 73, 151, 3, 79, 152, 1, 96, 7, 68, 85, 65, 84, 73, 79,
78, 32, 5, 78, 84, 72, 65, 32, 162, 192, 20, 86, 219, 141, 5, 80, 2, 11,
32, 2, 135, 209, 25, 67, 146, 1, 120, 7, 76, 69, 84, 84, 69, 82, 32, 212,
2, 5, 83, 73, 71, 78, 32, 154, 255, 22, 65, 248, 8, 2, 86, 79, 195, 199,
3, 79, 100, 214, 1, 86, 178, 131, 23, 65, 38, 68, 114, 84, 230, 5, 85,
186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71,
2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8, 69, 158, 20, 72, 2, 77, 2, 82,
3, 89, 14, 60, 5, 69, 68, 73, 67, 32, 138, 138, 23, 79, 223, 214, 3, 65,
4, 188, 167, 24, 6, 68, 79, 85, 66, 76, 69, 175, 244, 1, 65, 16, 66, 67,
230, 194, 22, 78, 190, 66, 65, 182, 1, 80, 135, 150, 3, 86, 4, 238, 245,
7, 79, 163, 204, 14, 65, 192, 8, 76, 10, 65, 84, 69, 82, 45, 84, 72, 65,
78, 32, 206, 7, 69, 231, 207, 25, 89, 56, 134, 1, 65, 150, 3, 66, 62, 79,
216, 2, 11, 69, 81, 85, 65, 76, 32, 84, 79, 32, 79, 82, 130, 208, 6, 67,
138, 4, 87, 207, 252, 18, 83, 16, 44, 5, 66, 79, 86, 69, 32, 223, 212, 6,
78, 12, 150, 1, 83, 180, 1, 19, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78,
69, 32, 69, 81, 85, 65, 76, 32, 65, 132, 207, 6, 4, 76, 69, 83, 83, 235,
233, 18, 82, 6, 148, 1, 7, 73, 77, 73, 76, 65, 82, 32, 133, 210, 6, 23,
76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 65, 66, 79, 86, 69,
32, 76, 69, 83, 83, 4, 26, 65, 219, 209, 6, 79, 2, 65, 3, 66, 79, 86, 6,
40, 4, 69, 83, 73, 68, 195, 210, 6, 85, 2, 231, 2, 69, 20, 40, 2, 82, 32,
245, 1, 3, 86, 69, 82, 16, 120, 16, 83, 76, 65, 78, 84, 69, 68, 32, 69,
81, 85, 65, 76, 32, 84, 79, 138, 212, 6, 65, 242, 129, 13, 69, 167, 237,
4, 76, 9, 49, 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 44, 5, 65,
66, 79, 86, 69, 151, 166, 18, 73, 5, 207, 165, 26, 32, 4, 52, 7, 76, 65,
80, 80, 73, 78, 71, 239, 245, 19, 32, 2, 233, 193, 24, 2, 32, 76, 134, 8,
36, 2, 75, 32, 185, 73, 2, 78, 32, 254, 7, 130, 3, 65, 216, 15, 8, 67,
65, 80, 73, 84, 65, 76, 32, 182, 11, 68, 134, 1, 70, 68, 2, 73, 78, 222,
3, 75, 138, 1, 76, 174, 3, 78, 66, 77, 84, 3, 88, 69, 83, 22, 79, 202, 1,
80, 90, 82, 182, 1, 83, 130, 22, 84, 200, 2, 13, 85, 80, 83, 73, 76, 79,
78, 32, 87, 73, 84, 72, 32, 150, 1, 86, 142, 2, 89, 178, 232, 7, 66, 212,
176, 3, 4, 71, 82, 65, 77, 204, 23, 2, 90, 69, 243, 136, 12, 81, 112, 92,
10, 67, 82, 79, 80, 72, 79, 78, 73, 67, 32, 172, 14, 6, 78, 79, 32, 84,
69, 76, 23, 82, 106, 188, 2, 6, 65, 84, 84, 73, 67, 32, 222, 5, 67, 92,
3, 78, 65, 88, 32, 12, 68, 69, 76, 80, 72, 73, 67, 32, 70, 73, 86, 69, 0,
14, 83, 84, 82, 65, 84, 73, 65, 78, 32, 70, 73, 70, 84, 89, 40, 11, 69,
80, 73, 68, 65, 85, 82, 69, 65, 78, 32, 112, 3, 72, 69, 82, 164, 1, 9,
77, 69, 83, 83, 69, 78, 73, 65, 78, 35, 84, 48, 72, 2, 70, 73, 180, 2, 4,
79, 78, 69, 32, 205, 1, 4, 84, 69, 78, 32, 26, 36, 3, 70, 84, 89, 105, 2,
86, 69, 11, 11, 32, 8, 22, 84, 171, 4, 83, 6, 48, 7, 72, 79, 85, 83, 65,
78, 68, 215, 3, 65, 5, 231, 3, 32, 17, 11, 32, 14, 56, 7, 72, 85, 78, 68,
82, 69, 68, 18, 84, 143, 3, 83, 7, 131, 2, 32, 6, 48, 7, 72, 79, 85, 83,
65, 78, 68, 187, 2, 65, 5, 213, 1, 2, 32, 84, 14, 98, 72, 48, 7, 84, 72,
79, 85, 83, 65, 78, 210, 198, 24, 81, 217, 228, 1, 5, 68, 82, 65, 67, 72,
6, 44, 5, 85, 78, 68, 82, 69, 179, 198, 24, 65, 4, 17, 2, 68, 32, 4, 22,
84, 131, 1, 83, 2, 95, 65, 8, 30, 84, 86, 83, 175, 1, 77, 4, 50, 65, 21,
8, 72, 79, 85, 83, 65, 78, 68, 32, 2, 187, 186, 16, 76, 2, 11, 83, 2,
181, 199, 24, 2, 84, 65, 4, 88, 5, 65, 82, 89, 83, 84, 145, 1, 12, 89,
82, 69, 78, 65, 73, 67, 32, 84, 87, 79, 32, 2, 101, 5, 73, 65, 78, 32,
70, 2, 17, 2, 32, 77, 2, 139, 152, 13, 78, 6, 30, 70, 29, 3, 84, 87, 79,
2, 225, 186, 15, 2, 73, 86, 5, 11, 32, 2, 185, 152, 10, 5, 68, 82, 65,
67, 72, 8, 112, 8, 77, 73, 79, 78, 73, 65, 78, 32, 181, 160, 25, 14, 65,
69, 85, 77, 32, 79, 78, 69, 32, 80, 76, 69, 84, 72, 6, 206, 193, 12, 70,
150, 176, 12, 84, 215, 58, 79, 2, 11, 32, 2, 167, 241, 24, 84, 32, 92, 8,
72, 69, 83, 80, 73, 65, 78, 32, 129, 1, 10, 82, 79, 69, 90, 69, 78, 73,
65, 78, 32, 20, 40, 2, 70, 73, 38, 84, 251, 163, 18, 79, 6, 182, 233, 20,
86, 247, 236, 3, 70, 8, 250, 182, 15, 72, 142, 191, 10, 69, 239, 48, 87,
12, 36, 2, 70, 73, 209, 24, 2, 84, 69, 8, 146, 189, 18, 86, 213, 136, 7,
3, 70, 84, 89, 2, 231, 139, 10, 69, 4, 168, 239, 22, 2, 79, 85, 153, 181,
1, 3, 84, 65, 66, 154, 2, 66, 76, 174, 45, 82, 66, 68, 220, 233, 7, 2,
75, 65, 135, 6, 84, 144, 2, 44, 6, 69, 84, 84, 69, 82, 32, 239, 45, 85,
142, 2, 198, 2, 65, 190, 1, 69, 28, 4, 73, 79, 84, 65, 128, 1, 2, 79, 77,
156, 3, 3, 82, 72, 79, 46, 83, 48, 7, 85, 80, 83, 73, 76, 79, 78, 146,
33, 80, 170, 2, 84, 222, 185, 5, 68, 252, 180, 2, 2, 75, 65, 238, 192, 1,
71, 138, 143, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90, 166, 1, 76, 186,
235, 2, 89, 210, 43, 77, 2, 78, 147, 17, 88, 48, 68, 4, 76, 80, 72, 65,
213, 28, 8, 82, 67, 72, 65, 73, 67, 32, 83, 47, 33, 6, 32, 87, 73, 84,
72, 32, 44, 242, 2, 68, 30, 80, 226, 29, 86, 226, 5, 79, 238, 237, 3, 84,
191, 174, 5, 77, 62, 186, 1, 84, 131, 27, 80, 31, 33, 6, 32, 87, 73, 84,
72, 32, 28, 186, 5, 68, 136, 25, 2, 80, 83, 158, 1, 86, 226, 5, 79, 238,
237, 3, 84, 191, 174, 5, 77, 62, 28, 2, 69, 71, 235, 34, 73, 42, 11, 65,
43, 33, 6, 32, 87, 73, 84, 72, 32, 40, 54, 68, 30, 80, 194, 35, 79, 22,
86, 219, 237, 3, 84, 16, 65, 4, 65, 83, 73, 65, 18, 36, 4, 83, 73, 76,
73, 211, 16, 82, 17, 29, 5, 32, 65, 78, 68, 32, 14, 44, 2, 79, 88, 0, 3,
86, 65, 82, 23, 80, 4, 81, 2, 73, 65, 6, 60, 10, 69, 82, 73, 83, 80, 79,
77, 69, 78, 73, 175, 15, 82, 5, 169, 15, 7, 32, 65, 78, 68, 32, 80, 82,
5, 161, 35, 7, 32, 87, 73, 84, 72, 32, 68, 6, 222, 147, 8, 73, 238, 214,
17, 65, 239, 48, 72, 23, 33, 6, 32, 87, 73, 84, 72, 32, 20, 66, 68, 166,
26, 86, 226, 5, 79, 238, 237, 3, 84, 191, 174, 5, 77, 10, 130, 24, 65,
237, 199, 22, 5, 73, 65, 76, 89, 84, 18, 76, 9, 73, 65, 76, 89, 84, 73,
75, 65, 32, 32, 3, 82, 65, 67, 227, 22, 65, 8, 174, 24, 65, 191, 244, 3,
84, 2, 207, 194, 11, 72, 4, 40, 3, 73, 86, 69, 1, 3, 79, 85, 82, 2, 205,
37, 2, 32, 79, 76, 144, 1, 27, 83, 84, 82, 85, 77, 69, 78, 84, 65, 76,
32, 78, 79, 84, 65, 84, 73, 79, 78, 32, 83, 89, 77, 66, 79, 76, 45, 217,
176, 22, 2, 68, 73, 74, 70, 49, 70, 50, 62, 51, 62, 52, 170, 37, 53, 218,
142, 26, 55, 3, 56, 17, 186, 181, 26, 49, 2, 50, 2, 51, 2, 52, 2, 55, 2,
56, 3, 57, 15, 246, 180, 26, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12,
186, 180, 26, 48, 2, 50, 2, 54, 2, 55, 2, 56, 3, 57, 17, 254, 179, 26,
48, 2, 50, 2, 51, 2, 53, 2, 55, 2, 56, 3, 57, 8, 54, 65, 38, 79, 169, 32,
6, 89, 65, 84, 72, 79, 83, 4, 134, 134, 8, 80, 187, 151, 17, 73, 2, 11,
82, 2, 11, 79, 2, 191, 139, 24, 78, 32, 128, 1, 6, 69, 84, 84, 69, 82,
32, 168, 2, 6, 79, 87, 69, 82, 32, 78, 32, 6, 85, 78, 65, 84, 69, 32,
201, 217, 22, 2, 73, 84, 24, 94, 83, 140, 13, 9, 65, 82, 67, 72, 65, 73,
67, 32, 75, 2, 75, 182, 11, 68, 219, 199, 25, 89, 16, 88, 13, 77, 65, 76,
76, 32, 67, 65, 80, 73, 84, 65, 76, 32, 210, 12, 65, 247, 250, 7, 84, 12,
74, 80, 170, 200, 9, 71, 242, 161, 9, 79, 154, 212, 2, 82, 139, 181, 1,
76, 4, 206, 155, 26, 83, 219, 19, 73, 2, 161, 142, 10, 3, 85, 77, 69, 4,
222, 25, 83, 215, 231, 7, 69, 4, 80, 4, 69, 84, 82, 69, 173, 216, 23, 10,
85, 83, 73, 67, 65, 76, 32, 76, 69, 73, 2, 235, 212, 2, 84, 12, 88, 3,
78, 69, 32, 142, 244, 9, 88, 252, 155, 5, 3, 85, 78, 75, 225, 208, 5, 2,
66, 79, 6, 64, 8, 72, 65, 76, 70, 32, 83, 73, 71, 21, 4, 81, 85, 65, 82,
4, 151, 173, 25, 78, 2, 147, 225, 20, 84, 16, 62, 82, 206, 11, 83, 114,
69, 154, 243, 7, 72, 195, 150, 17, 73, 2, 217, 29, 2, 79, 83, 6, 100, 3,
72, 79, 32, 165, 253, 7, 16, 69, 86, 69, 82, 83, 69, 68, 32, 76, 85, 78,
65, 84, 69, 32, 69, 4, 136, 252, 13, 10, 87, 73, 84, 72, 32, 83, 84, 82,
79, 75, 163, 153, 11, 83, 226, 2, 220, 1, 5, 77, 65, 76, 76, 32, 192, 19,
22, 85, 66, 83, 67, 82, 73, 80, 84, 32, 83, 77, 65, 76, 76, 32, 76, 69,
84, 84, 69, 82, 32, 72, 10, 89, 77, 66, 79, 76, 32, 84, 65, 85, 32, 225,
168, 24, 6, 73, 78, 85, 83, 79, 73, 212, 2, 56, 7, 76, 69, 84, 84, 69,
82, 32, 202, 17, 82, 67, 68, 206, 2, 178, 2, 65, 162, 2, 68, 38, 69, 52,
4, 73, 79, 84, 65, 0, 7, 85, 80, 83, 73, 76, 79, 78, 254, 3, 75, 28, 2,
79, 77, 182, 5, 80, 112, 3, 82, 72, 79, 94, 83, 94, 84, 244, 237, 7, 2,
70, 73, 210, 193, 1, 71, 138, 143, 11, 67, 230, 154, 2, 66, 2, 72, 2, 90,
166, 1, 76, 138, 151, 3, 77, 2, 78, 147, 17, 88, 58, 64, 4, 76, 80, 72,
65, 149, 1, 7, 82, 67, 72, 65, 73, 67, 32, 55, 33, 6, 32, 87, 73, 84, 72,
32, 52, 82, 86, 226, 6, 68, 30, 80, 114, 79, 142, 1, 89, 218, 239, 3, 84,
191, 174, 5, 77, 6, 154, 5, 82, 155, 3, 65, 4, 18, 75, 23, 83, 2, 215,
251, 7, 79, 2, 11, 65, 2, 171, 197, 13, 77, 4, 150, 230, 7, 73, 151, 128,
15, 69, 70, 22, 80, 215, 4, 84, 20, 249, 7, 3, 83, 73, 76, 41, 33, 6, 32,
87, 73, 84, 72, 32, 38, 78, 68, 166, 1, 80, 178, 1, 86, 226, 5, 79, 238,
237, 3, 84, 191, 174, 5, 77, 18, 50, 65, 29, 8, 73, 65, 76, 89, 84, 73,
75, 65, 8, 153, 1, 3, 83, 73, 65, 11, 29, 5, 32, 65, 78, 68, 32, 8, 170,
1, 80, 154, 6, 79, 22, 86, 219, 237, 3, 84, 10, 18, 83, 115, 69, 8, 21,
3, 73, 76, 73, 9, 17, 2, 32, 65, 6, 21, 3, 78, 68, 32, 6, 30, 80, 154, 6,
79, 23, 86, 2, 11, 69, 2, 11, 82, 2, 181, 17, 4, 73, 83, 80, 79, 4, 22,
82, 147, 15, 65, 2, 145, 253, 25, 2, 65, 67, 4, 206, 246, 7, 65, 3, 79,
70, 28, 2, 69, 71, 151, 3, 73, 50, 11, 65, 51, 33, 6, 32, 87, 73, 84, 72,
32, 48, 58, 68, 30, 80, 114, 79, 62, 86, 82, 89, 219, 239, 3, 84, 16, 61,
4, 65, 83, 73, 65, 20, 32, 4, 83, 73, 76, 73, 91, 69, 17, 29, 5, 32, 65,
78, 68, 32, 14, 42, 79, 12, 2, 80, 69, 50, 86, 83, 89, 4, 83, 88, 4, 89,
9, 82, 73, 83, 80, 79, 77, 69, 78, 73, 4, 11, 65, 4, 11, 82, 4, 17, 2,
73, 65, 5, 33, 6, 32, 65, 78, 68, 32, 89, 2, 243, 12, 80, 20, 17, 2, 67,
82, 20, 17, 2, 79, 78, 21, 33, 6, 32, 87, 73, 84, 72, 32, 18, 88, 5, 68,
65, 83, 73, 65, 0, 5, 80, 83, 73, 76, 73, 54, 79, 22, 86, 219, 237, 3,
84, 7, 29, 5, 32, 65, 78, 68, 32, 4, 18, 79, 23, 86, 2, 151, 224, 9, 88,
2, 179, 9, 65, 8, 88, 11, 65, 77, 80, 72, 89, 76, 73, 65, 78, 32, 68,
186, 132, 26, 72, 2, 83, 219, 19, 73, 2, 151, 219, 7, 73, 7, 33, 6, 32,
87, 73, 84, 72, 32, 4, 34, 68, 201, 147, 21, 2, 80, 83, 2, 151, 205, 8,
65, 10, 54, 65, 186, 238, 7, 84, 230, 1, 73, 219, 135, 18, 72, 4, 238,
184, 13, 77, 251, 221, 12, 78, 4, 174, 217, 22, 72, 175, 152, 3, 65, 4,
41, 8, 69, 86, 69, 82, 83, 69, 68, 32, 4, 18, 68, 43, 76, 2, 37, 7, 79,
84, 84, 69, 68, 32, 76, 2, 11, 85, 2, 33, 6, 78, 65, 84, 69, 32, 83, 2,
169, 239, 7, 3, 73, 71, 77, 10, 230, 173, 9, 71, 138, 143, 11, 67, 2, 80,
130, 103, 82, 231, 179, 1, 66, 2, 167, 163, 21, 82, 16, 106, 72, 104, 7,
82, 89, 66, 76, 73, 79, 78, 44, 3, 87, 79, 32, 246, 230, 3, 79, 133, 214,
16, 2, 65, 76, 6, 40, 4, 82, 69, 69, 32, 143, 237, 7, 69, 4, 146, 1, 79,
213, 223, 22, 7, 81, 85, 65, 82, 84, 69, 82, 2, 21, 3, 32, 66, 65, 2,
151, 242, 23, 83, 4, 42, 79, 189, 160, 12, 4, 84, 72, 73, 82, 2, 157,
237, 19, 2, 66, 79, 6, 80, 5, 65, 67, 85, 84, 69, 0, 9, 68, 73, 65, 69,
82, 69, 83, 73, 83, 39, 72, 2, 33, 6, 32, 65, 78, 68, 32, 72, 2, 209,
202, 7, 2, 79, 79, 60, 102, 65, 21, 21, 79, 67, 65, 76, 32, 78, 79, 84,
65, 84, 73, 79, 78, 32, 83, 89, 77, 66, 79, 76, 45, 2, 207, 214, 9, 82,
58, 90, 50, 2, 53, 214, 202, 23, 49, 134, 196, 2, 51, 2, 52, 2, 54, 2,
55, 2, 56, 3, 57, 13, 214, 142, 26, 48, 2, 49, 2, 50, 2, 51, 3, 52, 4,
26, 80, 227, 195, 20, 69, 2, 11, 79, 2, 33, 6, 71, 69, 71, 82, 65, 77, 2,
253, 136, 21, 2, 77, 69, 8, 254, 245, 13, 65, 206, 193, 10, 66, 202, 78,
72, 253, 64, 3, 83, 65, 76, 12, 60, 6, 78, 78, 73, 78, 71, 32, 149, 132,
25, 3, 77, 65, 67, 10, 100, 4, 70, 65, 67, 69, 137, 241, 17, 15, 67, 65,
84, 32, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 83, 9, 33, 6, 32, 87, 73,
84, 72, 32, 6, 108, 23, 79, 78, 69, 32, 76, 65, 82, 71, 69, 32, 65, 78,
68, 32, 79, 78, 69, 32, 83, 77, 65, 76, 76, 35, 83, 2, 11, 32, 2, 227,
164, 8, 69, 4, 32, 2, 84, 65, 191, 239, 17, 77, 2, 247, 138, 23, 82, 6,
28, 3, 85, 80, 32, 39, 87, 4, 142, 216, 22, 83, 135, 240, 2, 77, 2, 231,
157, 18, 73, 220, 4, 136, 1, 2, 65, 82, 70, 73, 52, 7, 74, 65, 82, 65,
84, 73, 32, 184, 6, 12, 78, 74, 65, 76, 65, 32, 71, 79, 78, 68, 73, 32,
143, 3, 82, 4, 34, 65, 173, 137, 21, 2, 68, 83, 2, 11, 78, 2, 199, 128,
25, 73, 4, 246, 227, 24, 84, 221, 162, 1, 4, 68, 69, 32, 68, 182, 1, 168,
1, 7, 76, 69, 84, 84, 69, 82, 32, 220, 1, 5, 83, 73, 71, 78, 32, 160, 2,
6, 86, 79, 87, 69, 76, 32, 130, 142, 20, 65, 154, 24, 82, 182, 231, 3,
68, 179, 227, 1, 79, 98, 218, 167, 22, 65, 38, 68, 114, 84, 46, 86, 186,
5, 85, 186, 202, 1, 73, 42, 76, 246, 14, 90, 238, 180, 1, 78, 46, 83, 82,
66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89,
186, 2, 69, 3, 79, 24, 98, 67, 28, 3, 77, 65, 68, 22, 84, 130, 203, 3,
83, 226, 154, 18, 78, 190, 66, 65, 187, 151, 3, 86, 4, 118, 73, 199, 228,
21, 65, 2, 243, 148, 19, 68, 4, 68, 5, 87, 79, 45, 67, 73, 29, 8, 72, 82,
69, 69, 45, 68, 79, 84, 2, 25, 4, 82, 67, 76, 69, 2, 189, 214, 20, 5, 32,
78, 85, 75, 84, 34, 44, 5, 83, 73, 71, 78, 32, 239, 199, 15, 67, 30, 234,
199, 15, 67, 154, 226, 6, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140,
2, 69, 3, 79, 126, 108, 7, 76, 69, 84, 84, 69, 82, 32, 216, 1, 5, 83, 73,
71, 78, 32, 38, 86, 214, 137, 24, 68, 179, 227, 1, 79, 80, 210, 137, 22,
78, 146, 24, 65, 38, 68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76,
222, 196, 1, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8,
69, 158, 20, 72, 2, 77, 2, 82, 2, 83, 2, 86, 3, 89, 4, 146, 196, 23, 86,
247, 244, 1, 65, 20, 190, 7, 79, 131, 186, 23, 73, 160, 2, 84, 6, 77, 85,
75, 72, 73, 32, 189, 7, 10, 85, 78, 71, 32, 75, 72, 69, 77, 65, 32, 172,
1, 194, 1, 65, 44, 7, 76, 69, 84, 84, 69, 82, 32, 238, 1, 83, 228, 2, 2,
86, 79, 164, 152, 13, 3, 84, 73, 80, 174, 242, 5, 73, 252, 175, 2, 5, 69,
75, 32, 79, 78, 202, 199, 2, 68, 203, 175, 1, 85, 4, 222, 218, 21, 66,
177, 231, 1, 2, 68, 68, 96, 250, 201, 8, 71, 2, 75, 254, 210, 13, 65, 38,
68, 82, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78,
126, 66, 2, 67, 2, 74, 2, 80, 2, 83, 206, 40, 79, 162, 8, 69, 158, 20,
70, 2, 72, 2, 77, 2, 86, 2, 89, 3, 90, 26, 108, 19, 69, 81, 85, 69, 78,
67, 69, 32, 70, 79, 82, 32, 76, 69, 84, 84, 69, 82, 32, 93, 4, 73, 71,
78, 32, 12, 70, 71, 2, 75, 162, 250, 23, 83, 146, 219, 1, 76, 226, 31,
70, 3, 90, 2, 159, 250, 23, 72, 14, 128, 1, 6, 65, 68, 65, 75, 32, 66, 2,
66, 244, 148, 15, 2, 85, 68, 190, 196, 6, 78, 236, 177, 2, 3, 89, 65, 75,
139, 168, 1, 86, 2, 187, 155, 8, 73, 18, 45, 9, 87, 69, 76, 32, 83, 73,
71, 78, 32, 18, 202, 158, 22, 65, 38, 85, 186, 202, 1, 73, 210, 237, 1,
79, 163, 8, 69, 116, 216, 1, 22, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32,
83, 73, 71, 78, 32, 77, 69, 68, 73, 65, 76, 32, 44, 7, 76, 69, 84, 84,
69, 82, 32, 168, 1, 5, 83, 73, 71, 78, 32, 56, 6, 86, 79, 87, 69, 76, 32,
183, 253, 23, 68, 8, 142, 241, 25, 72, 2, 82, 2, 86, 3, 89, 60, 150, 253,
21, 78, 182, 24, 68, 114, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 74, 2,
75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 83, 2, 86, 2, 89, 187, 2,
65, 4, 250, 172, 25, 65, 233, 35, 6, 84, 72, 79, 76, 72, 79, 24, 174,
166, 20, 83, 147, 137, 5, 76, 168, 23, 110, 65, 214, 95, 69, 150, 104,
73, 146, 9, 79, 158, 12, 84, 30, 85, 130, 1, 89, 249, 244, 12, 4, 82, 89,
86, 78, 140, 11, 236, 1, 2, 73, 82, 100, 8, 76, 70, 87, 73, 68, 84, 72,
32, 242, 10, 77, 210, 1, 78, 236, 76, 21, 80, 80, 89, 32, 80, 69, 82, 83,
79, 78, 32, 82, 65, 73, 83, 73, 78, 71, 32, 79, 78, 22, 82, 38, 84, 232,
255, 17, 2, 85, 77, 255, 253, 5, 68, 8, 66, 32, 164, 207, 20, 6, 89, 32,
67, 82, 69, 65, 251, 164, 4, 67, 4, 218, 187, 24, 80, 231, 115, 83, 244,
1, 140, 2, 7, 72, 65, 78, 71, 85, 76, 32, 216, 4, 8, 75, 65, 84, 65, 75,
65, 78, 65, 204, 3, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 152, 192, 6, 11,
70, 79, 82, 77, 83, 32, 76, 73, 71, 72, 84, 202, 134, 4, 85, 198, 218, 2,
73, 142, 190, 4, 66, 166, 238, 4, 87, 215, 35, 68, 104, 52, 7, 76, 69,
84, 84, 69, 82, 32, 239, 224, 10, 70, 102, 206, 1, 75, 28, 5, 78, 73, 69,
85, 78, 42, 80, 24, 5, 82, 73, 69, 85, 76, 86, 83, 98, 89, 202, 61, 67,
54, 69, 30, 73, 242, 4, 77, 138, 1, 84, 206, 3, 87, 198, 1, 72, 226, 221,
24, 65, 2, 79, 163, 64, 85, 6, 222, 65, 72, 155, 3, 73, 7, 11, 45, 4,
134, 72, 67, 131, 3, 72, 6, 146, 69, 72, 35, 73, 17, 11, 45, 14, 206, 49,
84, 226, 14, 80, 130, 4, 77, 194, 3, 75, 218, 2, 72, 99, 83, 12, 40, 4,
83, 65, 78, 71, 235, 229, 13, 73, 10, 210, 70, 67, 42, 75, 74, 80, 34,
84, 211, 2, 83, 14, 238, 157, 23, 69, 146, 137, 2, 65, 162, 64, 73, 2,
79, 3, 85, 118, 70, 32, 157, 241, 2, 11, 45, 72, 73, 82, 65, 71, 65, 78,
65, 32, 80, 116, 76, 7, 76, 69, 84, 84, 69, 82, 32, 242, 240, 2, 83, 34,
86, 219, 224, 21, 77, 110, 146, 1, 83, 230, 234, 2, 78, 150, 2, 72, 2,
75, 2, 77, 2, 82, 2, 84, 170, 1, 89, 234, 41, 87, 174, 204, 22, 65, 2,
69, 2, 73, 2, 79, 3, 85, 28, 76, 5, 77, 65, 76, 76, 32, 230, 227, 25, 65,
2, 69, 2, 73, 2, 79, 3, 85, 18, 206, 237, 2, 89, 174, 209, 22, 84, 234,
36, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 11, 84, 4, 180, 165, 13, 2, 32,
67, 135, 156, 11, 87, 14, 56, 3, 77, 69, 82, 106, 83, 145, 144, 22, 3,
66, 85, 82, 9, 29, 5, 32, 65, 78, 68, 32, 6, 220, 177, 12, 3, 87, 82, 69,
212, 233, 3, 2, 83, 73, 191, 148, 8, 80, 4, 148, 164, 25, 3, 84, 69, 82,
163, 61, 65, 194, 8, 118, 68, 202, 2, 71, 128, 66, 13, 73, 70, 73, 32,
82, 79, 72, 73, 78, 71, 89, 65, 32, 165, 5, 5, 85, 78, 79, 79, 32, 10,
100, 12, 32, 87, 73, 84, 72, 32, 73, 78, 68, 69, 88, 32, 188, 1, 2, 66,
65, 197, 241, 21, 2, 83, 72, 4, 156, 1, 18, 65, 78, 68, 32, 77, 73, 68,
68, 76, 69, 32, 70, 73, 78, 71, 69, 82, 83, 1, 16, 70, 73, 78, 71, 69,
82, 32, 65, 78, 68, 32, 84, 72, 85, 77, 66, 2, 225, 147, 16, 2, 32, 67,
4, 154, 210, 24, 76, 211, 139, 1, 71, 170, 7, 84, 3, 85, 76, 32, 217, 64,
13, 90, 72, 79, 85, 32, 78, 85, 77, 69, 82, 65, 76, 32, 146, 7, 164, 1,
9, 67, 72, 79, 83, 69, 79, 78, 71, 32, 244, 15, 4, 68, 79, 85, 66, 0, 4,
83, 73, 78, 71, 46, 74, 180, 31, 7, 76, 69, 84, 84, 69, 82, 32, 219, 161,
10, 70, 250, 1, 246, 1, 67, 172, 2, 5, 73, 69, 85, 78, 71, 146, 1, 75,
132, 1, 5, 77, 73, 69, 85, 77, 56, 5, 78, 73, 69, 85, 78, 74, 80, 172, 2,
5, 82, 73, 69, 85, 76, 210, 1, 83, 166, 3, 84, 124, 2, 89, 69, 200, 40,
5, 72, 73, 69, 85, 72, 143, 153, 10, 70, 30, 76, 2, 72, 73, 84, 7, 69,
79, 78, 71, 67, 72, 73, 121, 4, 73, 69, 85, 67, 16, 40, 4, 69, 85, 67,
72, 41, 2, 84, 85, 7, 11, 45, 4, 202, 31, 75, 243, 26, 72, 10, 21, 3, 69,
85, 77, 10, 22, 83, 155, 46, 67, 6, 40, 4, 83, 65, 78, 71, 219, 213, 13,
73, 4, 194, 54, 67, 227, 3, 83, 5, 215, 30, 45, 27, 11, 45, 24, 90, 80,
234, 30, 82, 242, 13, 67, 194, 5, 77, 138, 1, 84, 186, 2, 75, 218, 2, 72,
99, 83, 6, 214, 50, 72, 214, 3, 73, 207, 2, 65, 16, 80, 7, 65, 80, 89,
69, 79, 85, 78, 228, 20, 5, 73, 89, 69, 79, 75, 131, 25, 72, 10, 234, 29,
82, 178, 15, 80, 30, 83, 231, 3, 77, 11, 11, 45, 8, 158, 52, 75, 74, 80,
34, 84, 211, 2, 83, 15, 11, 45, 12, 190, 51, 67, 42, 75, 74, 80, 34, 84,
242, 1, 72, 99, 83, 42, 68, 6, 72, 73, 69, 85, 80, 72, 40, 4, 73, 69, 85,
80, 223, 53, 65, 7, 11, 45, 4, 158, 51, 80, 147, 2, 72, 35, 11, 45, 32,
82, 83, 234, 20, 80, 214, 7, 75, 162, 12, 67, 202, 6, 84, 226, 2, 78,
179, 2, 72, 14, 32, 3, 73, 79, 83, 251, 3, 83, 13, 11, 45, 10, 242, 46,
84, 146, 2, 67, 42, 75, 75, 80, 29, 11, 45, 26, 78, 75, 42, 83, 190, 44,
77, 154, 3, 67, 82, 78, 34, 80, 34, 84, 243, 1, 72, 6, 170, 22, 65, 130,
19, 72, 135, 7, 73, 8, 40, 4, 83, 65, 78, 71, 191, 206, 13, 73, 6, 206,
47, 75, 74, 80, 35, 84, 58, 48, 3, 73, 79, 83, 217, 1, 4, 83, 65, 78, 71,
33, 11, 45, 30, 130, 1, 80, 44, 2, 83, 83, 210, 22, 82, 210, 1, 75, 162,
12, 67, 194, 5, 77, 138, 1, 84, 226, 2, 78, 178, 2, 72, 187, 170, 18, 73,
6, 184, 23, 4, 73, 69, 85, 80, 179, 19, 72, 2, 233, 48, 3, 65, 78, 71,
26, 236, 17, 5, 67, 73, 69, 85, 67, 172, 3, 4, 83, 73, 79, 83, 154, 1,
82, 186, 20, 84, 54, 89, 134, 2, 75, 42, 78, 34, 80, 146, 2, 72, 187,
170, 18, 73, 16, 40, 5, 73, 75, 69, 85, 84, 195, 41, 72, 15, 11, 45, 12,
226, 20, 82, 178, 19, 77, 154, 3, 67, 42, 75, 74, 80, 243, 2, 83, 4, 150,
19, 83, 139, 22, 79, 2, 225, 252, 8, 6, 76, 69, 32, 68, 79, 84, 216, 3,
92, 9, 79, 78, 71, 83, 69, 79, 78, 71, 32, 165, 21, 9, 85, 78, 71, 83,
69, 79, 78, 71, 32, 154, 2, 226, 1, 67, 80, 5, 72, 73, 69, 85, 72, 60, 5,
73, 69, 85, 78, 71, 46, 75, 220, 1, 5, 77, 73, 69, 85, 77, 188, 1, 5, 78,
73, 69, 85, 78, 94, 80, 240, 2, 5, 82, 73, 69, 85, 76, 190, 4, 83, 194,
3, 84, 213, 1, 2, 89, 69, 8, 36, 4, 73, 69, 85, 67, 239, 30, 72, 7, 11,
45, 4, 162, 32, 83, 239, 7, 80, 11, 11, 45, 8, 174, 16, 82, 178, 19, 77,
234, 3, 78, 35, 80, 9, 11, 45, 6, 194, 17, 75, 57, 2, 83, 83, 28, 76, 7,
65, 80, 89, 69, 79, 85, 78, 40, 5, 73, 89, 69, 79, 75, 215, 30, 72, 8,
130, 15, 82, 178, 15, 80, 131, 4, 77, 19, 11, 45, 16, 166, 13, 75, 170,
1, 82, 42, 83, 224, 13, 2, 67, 72, 146, 9, 78, 34, 80, 147, 2, 72, 27,
11, 45, 24, 74, 80, 30, 83, 134, 13, 82, 242, 13, 67, 130, 9, 75, 42, 78,
179, 2, 72, 6, 174, 33, 73, 131, 6, 65, 6, 40, 4, 83, 65, 78, 71, 183,
194, 13, 73, 4, 238, 35, 78, 147, 3, 83, 21, 11, 45, 18, 174, 12, 82,
242, 13, 67, 202, 6, 84, 186, 2, 75, 218, 2, 72, 62, 80, 39, 83, 36, 88,
6, 65, 78, 83, 73, 79, 83, 48, 6, 72, 73, 69, 85, 80, 72, 53, 4, 73, 69,
85, 80, 7, 11, 45, 4, 236, 7, 2, 75, 65, 195, 26, 80, 9, 11, 45, 6, 150,
11, 84, 234, 22, 80, 243, 2, 83, 23, 11, 45, 20, 112, 5, 82, 73, 69, 85,
76, 24, 4, 83, 73, 79, 83, 134, 3, 80, 246, 19, 67, 194, 5, 77, 170, 4,
84, 243, 1, 72, 5, 153, 3, 2, 45, 80, 5, 221, 32, 2, 45, 84, 57, 11, 45,
54, 102, 75, 92, 5, 77, 73, 69, 85, 77, 50, 80, 126, 83, 74, 84, 44, 2,
89, 69, 154, 28, 78, 179, 2, 72, 10, 52, 5, 73, 89, 69, 79, 75, 190, 4,
65, 131, 19, 72, 7, 11, 45, 4, 254, 32, 72, 99, 83, 9, 11, 45, 6, 130,
30, 75, 218, 2, 72, 99, 83, 14, 48, 4, 73, 69, 85, 80, 174, 26, 72, 163,
6, 65, 11, 11, 45, 8, 42, 80, 222, 29, 84, 242, 1, 72, 99, 83, 2, 243,
25, 72, 6, 40, 4, 83, 65, 78, 71, 167, 187, 13, 73, 4, 182, 28, 75, 187,
3, 83, 6, 100, 5, 73, 75, 69, 85, 84, 151, 25, 72, 6, 56, 9, 79, 82, 73,
78, 72, 73, 69, 85, 72, 191, 3, 83, 5, 255, 29, 45, 52, 48, 3, 73, 79,
83, 161, 1, 4, 83, 65, 78, 71, 25, 11, 45, 22, 82, 75, 162, 3, 82, 242,
13, 67, 198, 2, 80, 254, 2, 77, 138, 1, 84, 147, 5, 72, 4, 22, 65, 135,
26, 73, 2, 237, 18, 6, 80, 89, 69, 79, 85, 78, 28, 160, 1, 5, 82, 73, 69,
85, 76, 36, 6, 84, 73, 75, 69, 85, 84, 16, 3, 89, 69, 83, 138, 19, 83,
178, 1, 77, 154, 3, 67, 42, 75, 42, 78, 34, 80, 203, 172, 18, 73, 5, 17,
2, 45, 75, 2, 159, 17, 72, 5, 255, 16, 45, 2, 135, 197, 18, 73, 20, 40,
5, 73, 75, 69, 85, 84, 155, 21, 72, 19, 11, 45, 16, 58, 82, 42, 83, 42,
84, 162, 13, 67, 130, 9, 75, 75, 80, 2, 17, 2, 73, 69, 2, 227, 171, 24,
85, 4, 21, 3, 73, 79, 83, 5, 223, 1, 45, 2, 255, 19, 72, 18, 44, 6, 83,
73, 69, 85, 78, 71, 243, 19, 79, 17, 11, 45, 14, 50, 75, 30, 83, 198, 17,
77, 154, 6, 72, 63, 80, 4, 166, 14, 72, 135, 7, 73, 4, 26, 83, 215, 179,
13, 73, 2, 21, 3, 65, 78, 71, 2, 207, 20, 75, 190, 1, 122, 65, 118, 69,
134, 1, 73, 92, 7, 83, 83, 65, 78, 71, 65, 82, 106, 79, 138, 1, 85, 102,
89, 174, 15, 87, 179, 149, 10, 70, 23, 48, 4, 82, 65, 69, 65, 98, 45,
135, 179, 25, 69, 13, 11, 45, 10, 166, 234, 22, 69, 178, 201, 2, 65, 2,
73, 3, 85, 25, 18, 79, 55, 85, 9, 11, 45, 6, 154, 142, 25, 69, 234, 36,
79, 3, 85, 15, 11, 45, 12, 170, 9, 69, 166, 169, 25, 65, 2, 79, 3, 85,
31, 11, 45, 28, 66, 65, 34, 89, 166, 1, 79, 166, 139, 25, 69, 234, 36,
73, 3, 85, 5, 11, 82, 2, 195, 157, 18, 65, 14, 50, 65, 206, 231, 22, 69,
178, 201, 2, 79, 3, 85, 7, 134, 146, 25, 45, 247, 30, 69, 23, 26, 45,
195, 176, 25, 69, 18, 50, 79, 22, 89, 202, 230, 22, 69, 179, 201, 2, 85,
5, 179, 156, 25, 45, 8, 198, 230, 22, 69, 147, 137, 2, 65, 17, 11, 45,
14, 158, 19, 89, 206, 166, 5, 73, 128, 137, 13, 3, 69, 79, 45, 190, 172,
6, 65, 163, 64, 85, 62, 42, 65, 70, 69, 66, 73, 22, 79, 107, 85, 11, 26,
45, 171, 174, 25, 69, 6, 178, 143, 25, 89, 246, 30, 79, 3, 85, 11, 11,
79, 9, 11, 45, 6, 174, 171, 25, 89, 186, 2, 79, 3, 85, 5, 215, 136, 25,
45, 19, 11, 45, 16, 58, 89, 198, 236, 24, 65, 174, 33, 69, 246, 30, 73,
3, 79, 6, 194, 236, 24, 65, 175, 33, 69, 21, 11, 45, 18, 142, 16, 89,
250, 210, 22, 69, 146, 137, 2, 65, 162, 64, 73, 2, 79, 3, 85, 186, 1,
226, 1, 65, 46, 67, 54, 69, 30, 73, 22, 75, 188, 1, 5, 77, 73, 69, 85,
77, 64, 5, 78, 73, 69, 85, 78, 70, 80, 168, 1, 5, 82, 73, 69, 85, 76,
254, 1, 84, 90, 83, 246, 2, 87, 50, 89, 150, 1, 72, 226, 221, 24, 79,
163, 64, 85, 9, 156, 13, 3, 82, 65, 69, 231, 156, 25, 69, 4, 22, 72, 207,
8, 73, 2, 137, 135, 25, 2, 73, 69, 7, 162, 169, 25, 79, 3, 85, 5, 203,
181, 18, 69, 14, 56, 7, 65, 80, 89, 69, 79, 85, 78, 106, 72, 155, 3, 73,
8, 30, 80, 30, 83, 231, 3, 77, 4, 190, 4, 72, 215, 3, 73, 2, 25, 4, 83,
65, 78, 71, 2, 207, 7, 80, 2, 241, 60, 2, 73, 69, 9, 11, 45, 6, 22, 80,
247, 9, 83, 4, 142, 7, 73, 207, 2, 65, 13, 11, 45, 10, 234, 5, 67, 146,
1, 84, 242, 1, 72, 62, 80, 39, 83, 20, 48, 4, 73, 69, 85, 80, 170, 2, 72,
163, 6, 65, 17, 11, 45, 14, 42, 83, 186, 2, 84, 146, 2, 67, 43, 75, 6,
21, 3, 73, 79, 83, 7, 11, 45, 4, 202, 4, 75, 107, 84, 27, 11, 45, 24, 68,
2, 75, 73, 34, 77, 34, 80, 106, 84, 54, 89, 222, 4, 72, 99, 83, 4, 149,
1, 4, 89, 69, 79, 75, 2, 11, 73, 2, 231, 248, 23, 69, 8, 30, 72, 34, 73,
131, 6, 65, 2, 221, 240, 18, 3, 73, 69, 85, 4, 21, 3, 69, 85, 80, 5, 243,
5, 45, 4, 22, 72, 151, 3, 73, 2, 137, 254, 21, 2, 73, 69, 2, 17, 2, 69,
79, 2, 167, 4, 82, 28, 44, 3, 73, 79, 83, 57, 4, 83, 65, 78, 71, 13, 11,
45, 10, 122, 67, 42, 75, 42, 78, 34, 80, 35, 84, 16, 78, 67, 42, 75, 42,
78, 34, 80, 34, 84, 242, 1, 72, 98, 83, 219, 169, 18, 73, 2, 11, 73, 2,
225, 246, 23, 2, 69, 85, 2, 11, 73, 2, 233, 246, 24, 2, 89, 69, 2, 11,
73, 2, 243, 159, 24, 69, 2, 11, 73, 2, 143, 170, 24, 69, 2, 11, 73, 2,
11, 75, 2, 135, 166, 24, 69, 10, 146, 214, 22, 69, 146, 137, 2, 65, 163,
64, 73, 34, 58, 69, 206, 1, 79, 62, 85, 178, 220, 24, 65, 163, 64, 73,
13, 42, 79, 73, 6, 83, 73, 69, 85, 78, 71, 5, 11, 82, 2, 17, 2, 73, 78,
2, 11, 72, 2, 233, 242, 9, 2, 73, 69, 7, 11, 45, 4, 18, 80, 39, 83, 2,
11, 65, 2, 11, 78, 2, 11, 83, 2, 179, 155, 13, 73, 9, 11, 45, 6, 26, 89,
231, 156, 25, 73, 4, 195, 220, 24, 65, 9, 11, 45, 6, 26, 89, 171, 156,
25, 73, 4, 247, 210, 22, 69, 24, 162, 144, 11, 84, 230, 152, 12, 70, 30,
83, 182, 87, 78, 14, 79, 227, 112, 69, 100, 156, 1, 7, 76, 69, 84, 84,
69, 82, 32, 196, 2, 5, 77, 65, 82, 75, 32, 72, 5, 83, 73, 71, 78, 32,
224, 159, 2, 6, 86, 79, 87, 69, 76, 32, 183, 131, 21, 68, 58, 202, 1, 68,
34, 75, 142, 132, 21, 84, 178, 55, 82, 238, 223, 1, 78, 214, 181, 1, 83,
138, 69, 66, 2, 67, 2, 70, 2, 71, 2, 72, 2, 74, 2, 76, 2, 77, 2, 80, 2,
86, 2, 87, 2, 89, 2, 90, 187, 2, 65, 4, 162, 150, 25, 68, 187, 2, 65, 8,
56, 5, 73, 78, 78, 65, 32, 202, 149, 25, 72, 187, 2, 65, 4, 198, 149, 25,
87, 3, 89, 4, 160, 221, 21, 6, 78, 65, 32, 75, 72, 79, 237, 186, 2, 3,
83, 65, 75, 8, 52, 2, 84, 65, 237, 134, 23, 5, 72, 65, 82, 66, 65, 6, 42,
72, 198, 163, 20, 83, 191, 240, 4, 78, 2, 159, 244, 24, 65, 42, 62, 76,
176, 251, 18, 6, 83, 73, 71, 78, 32, 80, 247, 1, 86, 36, 33, 6, 69, 84,
84, 69, 82, 32, 36, 186, 159, 21, 78, 206, 243, 3, 66, 2, 68, 2, 71, 2,
72, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87, 2, 89, 186,
2, 65, 2, 73, 3, 85, 2, 235, 131, 24, 69, 4, 234, 204, 23, 68, 163, 199,
1, 80, 54, 52, 5, 67, 72, 73, 78, 71, 41, 4, 82, 65, 78, 32, 2, 17, 2,
32, 67, 2, 139, 225, 23, 72, 52, 52, 7, 76, 69, 84, 84, 69, 82, 32, 171,
186, 6, 78, 42, 218, 1, 65, 210, 181, 11, 90, 238, 46, 84, 146, 120, 76,
50, 81, 60, 6, 68, 65, 76, 69, 84, 72, 214, 169, 4, 71, 122, 83, 66, 89,
198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87,
218, 103, 80, 171, 4, 77, 4, 246, 134, 17, 76, 159, 186, 7, 89, 174, 9,
210, 1, 65, 242, 32, 66, 130, 33, 76, 200, 1, 16, 78, 84, 65, 73, 71, 65,
78, 65, 32, 76, 69, 84, 84, 69, 82, 32, 174, 12, 82, 120, 11, 88, 65, 71,
82, 65, 77, 32, 70, 79, 82, 32, 189, 189, 24, 4, 68, 71, 69, 72, 214, 1,
42, 68, 98, 82, 201, 1, 3, 86, 89, 32, 6, 44, 5, 83, 84, 79, 78, 69, 183,
225, 23, 80, 5, 213, 226, 2, 7, 32, 71, 82, 65, 86, 69, 89, 12, 32, 2,
84, 32, 147, 164, 17, 45, 10, 60, 5, 87, 73, 84, 72, 32, 222, 171, 12,
68, 239, 158, 9, 72, 6, 76, 9, 84, 73, 80, 32, 79, 78, 32, 84, 72, 134,
251, 12, 82, 243, 244, 10, 65, 2, 239, 217, 24, 69, 196, 1, 134, 2, 65,
202, 1, 66, 230, 2, 67, 154, 3, 68, 162, 1, 69, 186, 3, 70, 94, 72, 62,
76, 222, 1, 77, 110, 79, 162, 1, 82, 142, 2, 83, 228, 1, 3, 78, 79, 82,
198, 1, 84, 128, 2, 2, 85, 80, 174, 1, 87, 186, 148, 14, 73, 222, 243, 3,
80, 130, 142, 4, 86, 227, 78, 71, 12, 108, 17, 82, 82, 79, 87, 32, 83,
72, 65, 70, 84, 32, 87, 73, 68, 84, 72, 32, 182, 171, 18, 77, 207, 198,
4, 83, 8, 36, 3, 79, 78, 69, 135, 166, 23, 84, 7, 11, 32, 4, 226, 246,
13, 84, 251, 139, 9, 72, 14, 48, 4, 65, 76, 76, 79, 21, 4, 76, 65, 67,
75, 2, 139, 235, 5, 84, 12, 30, 32, 153, 1, 2, 45, 70, 6, 52, 7, 67, 85,
82, 86, 69, 68, 32, 135, 128, 24, 72, 4, 40, 4, 68, 79, 87, 78, 1, 2, 85,
80, 2, 225, 228, 23, 8, 87, 65, 82, 68, 83, 32, 65, 78, 6, 45, 9, 69, 65,
84, 72, 69, 82, 69, 68, 32, 6, 158, 220, 13, 83, 174, 173, 3, 78, 215,
218, 6, 82, 14, 116, 2, 72, 69, 52, 5, 73, 82, 67, 76, 69, 149, 233, 17,
14, 79, 78, 67, 65, 86, 69, 45, 80, 79, 73, 78, 84, 69, 68, 4, 196, 221,
20, 4, 86, 82, 79, 78, 255, 225, 2, 67, 9, 64, 6, 32, 87, 73, 84, 72, 32,
185, 235, 22, 4, 68, 32, 83, 65, 4, 52, 7, 83, 84, 82, 79, 75, 69, 32,
239, 128, 5, 67, 2, 29, 5, 65, 78, 68, 32, 84, 2, 11, 87, 2, 11, 79, 2,
21, 3, 32, 68, 79, 2, 11, 84, 2, 223, 133, 24, 83, 14, 52, 7, 65, 83, 72,
69, 68, 32, 84, 18, 73, 31, 79, 2, 175, 16, 82, 2, 161, 162, 19, 2, 86,
73, 10, 192, 16, 3, 87, 78, 87, 246, 147, 14, 85, 191, 184, 4, 76, 16,
120, 5, 73, 71, 72, 84, 32, 156, 2, 16, 88, 67, 76, 65, 77, 65, 84, 73,
79, 78, 32, 77, 65, 82, 75, 32, 199, 217, 18, 81, 10, 40, 2, 80, 79, 126,
84, 155, 231, 22, 83, 6, 33, 6, 73, 78, 84, 69, 68, 32, 6, 194, 199, 16,
80, 128, 158, 6, 11, 82, 69, 67, 84, 73, 76, 73, 78, 69, 65, 82, 23, 66,
2, 193, 231, 22, 24, 69, 65, 82, 68, 82, 79, 80, 45, 83, 80, 79, 75, 69,
68, 32, 80, 82, 79, 80, 69, 76, 76, 69, 82, 4, 234, 232, 23, 83, 227, 81,
79, 6, 44, 5, 79, 85, 82, 32, 66, 179, 128, 5, 73, 2, 181, 139, 11, 6,
65, 76, 76, 79, 79, 78, 4, 238, 199, 17, 79, 161, 233, 5, 6, 69, 65, 82,
84, 32, 69, 20, 74, 65, 44, 3, 69, 70, 84, 28, 2, 79, 87, 189, 251, 4, 3,
73, 71, 65, 4, 232, 230, 21, 2, 82, 71, 211, 209, 1, 84, 8, 254, 3, 45,
195, 6, 87, 6, 26, 32, 191, 151, 10, 69, 4, 202, 158, 14, 68, 25, 4, 83,
73, 78, 71, 4, 56, 8, 85, 76, 84, 73, 80, 76, 73, 67, 167, 200, 21, 73,
2, 25, 4, 65, 84, 73, 79, 2, 159, 221, 5, 78, 6, 148, 147, 6, 9, 80, 69,
78, 32, 67, 69, 78, 84, 82, 248, 180, 10, 13, 86, 65, 76, 32, 87, 73, 84,
72, 32, 79, 86, 65, 76, 213, 151, 6, 5, 85, 84, 76, 73, 78, 12, 76, 4,
73, 71, 72, 84, 129, 214, 23, 9, 79, 85, 78, 68, 45, 84, 73, 80, 80, 10,
62, 45, 109, 11, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 4, 69, 15,
80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 78, 71, 76, 69, 32, 4, 214, 236,
6, 66, 203, 174, 7, 81, 7, 139, 6, 32, 26, 106, 65, 78, 73, 44, 2, 79,
85, 136, 163, 14, 7, 67, 82, 73, 80, 84, 32, 76, 193, 139, 1, 3, 80, 65,
82, 4, 156, 154, 14, 10, 78, 83, 45, 83, 69, 82, 73, 70, 32, 73, 175,
195, 8, 76, 8, 136, 152, 14, 2, 78, 71, 183, 194, 8, 88, 10, 21, 3, 84,
72, 32, 10, 60, 5, 69, 65, 83, 84, 32, 29, 6, 87, 69, 83, 84, 32, 80, 6,
26, 80, 215, 215, 23, 65, 4, 41, 8, 79, 73, 78, 84, 73, 78, 71, 32, 4,
250, 250, 16, 86, 255, 202, 6, 66, 12, 88, 9, 69, 65, 82, 68, 82, 79, 80,
45, 83, 130, 1, 82, 145, 233, 6, 4, 87, 69, 76, 86, 6, 64, 6, 80, 79, 75,
69, 68, 32, 253, 207, 23, 4, 72, 65, 78, 75, 4, 216, 218, 22, 8, 80, 73,
78, 87, 72, 69, 69, 76, 27, 65, 2, 193, 3, 5, 73, 65, 78, 71, 76, 6, 26,
87, 171, 141, 10, 80, 4, 53, 11, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87,
32, 4, 29, 5, 87, 73, 84, 72, 32, 4, 152, 142, 20, 5, 76, 65, 82, 71, 69,
179, 243, 1, 69, 12, 76, 5, 72, 73, 84, 69, 32, 164, 1, 2, 73, 68, 149,
133, 23, 3, 69, 68, 71, 8, 64, 6, 83, 81, 85, 65, 82, 69, 182, 227, 17,
68, 187, 183, 5, 67, 5, 169, 186, 23, 19, 32, 67, 79, 78, 84, 65, 73, 78,
73, 78, 71, 32, 66, 76, 65, 67, 75, 32, 86, 2, 181, 255, 20, 2, 69, 45,
142, 2, 40, 4, 82, 69, 87, 32, 219, 237, 24, 69, 140, 2, 112, 7, 65, 67,
67, 69, 78, 84, 32, 142, 8, 76, 164, 14, 5, 77, 65, 82, 75, 32, 114, 80,
225, 180, 21, 2, 89, 79, 60, 128, 2, 9, 65, 84, 78, 65, 72, 32, 72, 65,
70, 22, 68, 36, 3, 71, 69, 82, 74, 77, 124, 2, 80, 65, 28, 4, 69, 84, 78,
65, 20, 2, 81, 65, 58, 83, 58, 84, 156, 1, 2, 89, 69, 78, 90, 224, 172,
8, 3, 82, 69, 86, 190, 146, 15, 79, 245, 148, 1, 3, 73, 76, 85, 2, 243,
169, 18, 85, 4, 206, 146, 19, 69, 171, 149, 5, 65, 6, 32, 3, 69, 83, 72,
179, 28, 83, 5, 241, 227, 6, 4, 32, 77, 85, 81, 8, 84, 5, 69, 82, 75, 72,
65, 132, 251, 17, 2, 85, 78, 153, 45, 5, 65, 72, 65, 80, 65, 5, 221, 237,
19, 4, 32, 75, 69, 70, 4, 26, 83, 219, 170, 24, 90, 2, 247, 195, 24, 72,
4, 224, 163, 24, 6, 82, 78, 69, 89, 32, 80, 191, 35, 68, 4, 182, 24, 69,
185, 237, 22, 6, 72, 65, 76, 83, 72, 69, 8, 38, 69, 241, 233, 22, 3, 73,
80, 69, 6, 48, 6, 76, 73, 83, 72, 65, 32, 135, 232, 11, 86, 4, 252, 178,
22, 3, 81, 69, 84, 205, 145, 2, 4, 71, 69, 68, 79, 4, 176, 212, 8, 10,
82, 65, 72, 32, 66, 69, 78, 32, 89, 79, 231, 221, 2, 84, 8, 18, 65, 95,
73, 6, 40, 4, 81, 69, 70, 32, 167, 134, 6, 82, 4, 246, 142, 11, 81, 149,
193, 12, 3, 71, 65, 68, 2, 255, 171, 24, 78, 150, 1, 76, 6, 69, 84, 84,
69, 82, 32, 201, 11, 8, 73, 71, 65, 84, 85, 82, 69, 32, 140, 1, 134, 3,
65, 204, 1, 3, 66, 69, 84, 0, 3, 75, 65, 70, 0, 2, 80, 69, 68, 6, 70, 73,
78, 65, 76, 32, 92, 2, 81, 79, 16, 2, 72, 69, 52, 2, 78, 85, 0, 4, 90,
65, 89, 73, 18, 83, 48, 3, 82, 69, 83, 170, 1, 84, 52, 4, 68, 65, 76, 69,
12, 5, 71, 73, 77, 69, 76, 0, 5, 76, 65, 77, 69, 68, 0, 3, 77, 69, 77,
48, 3, 86, 65, 86, 80, 5, 87, 73, 68, 69, 32, 153, 1, 3, 89, 79, 68, 14,
26, 76, 135, 225, 23, 89, 12, 64, 2, 69, 70, 73, 10, 84, 69, 82, 78, 65,
84, 73, 86, 69, 32, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 130, 13, 77,
130, 1, 80, 35, 81, 4, 198, 214, 16, 65, 131, 161, 1, 80, 7, 33, 6, 32,
87, 73, 84, 72, 32, 4, 138, 15, 82, 195, 233, 13, 68, 14, 88, 2, 75, 65,
236, 2, 2, 80, 69, 148, 154, 1, 2, 84, 83, 218, 192, 22, 78, 135, 110,
77, 4, 235, 2, 70, 7, 244, 10, 5, 32, 87, 73, 84, 72, 131, 211, 24, 84,
4, 167, 2, 78, 16, 44, 4, 65, 77, 69, 75, 17, 3, 72, 73, 78, 4, 231, 1,
72, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 40, 6, 68, 65, 71, 69, 83, 72,
39, 83, 7, 33, 6, 32, 65, 78, 68, 32, 83, 4, 218, 133, 6, 72, 155, 193,
2, 73, 12, 50, 69, 12, 2, 65, 86, 1, 4, 83, 65, 68, 73, 4, 11, 84, 5,
225, 244, 13, 7, 32, 87, 73, 84, 72, 32, 68, 7, 33, 6, 32, 87, 73, 84,
72, 32, 4, 208, 253, 1, 2, 72, 79, 191, 246, 11, 68, 16, 174, 2, 76, 254,
210, 8, 65, 178, 196, 2, 84, 158, 218, 2, 82, 156, 132, 9, 2, 68, 65,
218, 96, 75, 222, 106, 72, 169, 4, 7, 70, 73, 78, 65, 76, 32, 77, 7, 33,
6, 32, 87, 73, 84, 72, 32, 4, 172, 7, 2, 72, 73, 251, 234, 13, 68, 10,
72, 6, 65, 76, 69, 70, 32, 76, 29, 8, 89, 73, 68, 68, 73, 83, 72, 32, 2,
209, 195, 19, 2, 65, 77, 8, 120, 7, 68, 79, 85, 66, 76, 69, 32, 232, 4,
9, 89, 79, 68, 32, 89, 79, 68, 32, 80, 193, 151, 21, 5, 86, 65, 86, 32,
89, 4, 146, 150, 11, 86, 151, 134, 10, 89, 6, 80, 3, 76, 79, 87, 0, 3,
85, 80, 80, 173, 129, 23, 6, 77, 65, 83, 79, 82, 65, 2, 169, 194, 23, 2,
69, 82, 50, 84, 5, 79, 73, 78, 84, 32, 225, 5, 11, 85, 78, 67, 84, 85,
65, 84, 73, 79, 78, 32, 38, 228, 1, 9, 68, 65, 71, 69, 83, 72, 32, 79,
82, 46, 72, 106, 80, 162, 1, 81, 86, 82, 22, 83, 224, 216, 9, 2, 84, 83,
224, 157, 11, 17, 74, 85, 68, 69, 79, 45, 83, 80, 65, 78, 73, 83, 72, 32,
86, 65, 82, 189, 147, 3, 3, 77, 69, 84, 2, 17, 2, 32, 77, 2, 197, 1, 2,
65, 80, 12, 60, 5, 65, 84, 65, 70, 32, 102, 73, 33, 4, 79, 76, 65, 77, 6,
38, 80, 34, 81, 141, 2, 2, 83, 69, 2, 11, 65, 2, 223, 227, 17, 84, 2,
129, 201, 23, 2, 65, 77, 2, 11, 82, 2, 139, 238, 13, 73, 5, 205, 144, 11,
12, 32, 72, 65, 83, 69, 82, 32, 70, 79, 82, 32, 86, 6, 52, 5, 65, 77, 65,
84, 83, 245, 198, 11, 2, 85, 66, 5, 241, 249, 10, 2, 32, 81, 2, 159, 232,
6, 65, 8, 34, 69, 22, 72, 163, 186, 8, 73, 2, 179, 186, 23, 71, 4, 158,
186, 8, 73, 223, 214, 7, 69, 12, 152, 1, 3, 71, 69, 82, 60, 3, 80, 65,
83, 20, 7, 83, 79, 70, 32, 80, 65, 83, 240, 144, 22, 7, 78, 85, 78, 32,
72, 65, 70, 253, 186, 1, 3, 77, 65, 81, 4, 26, 83, 203, 226, 22, 69, 2,
253, 202, 23, 3, 72, 65, 89, 2, 151, 234, 13, 69, 2, 131, 234, 13, 85, 8,
114, 77, 200, 157, 12, 15, 76, 83, 67, 72, 82, 69, 73, 66, 69, 82, 32,
80, 65, 85, 83, 229, 227, 5, 3, 73, 67, 79, 4, 144, 229, 5, 12, 69, 84,
32, 87, 73, 84, 72, 32, 87, 72, 73, 84, 203, 209, 17, 32, 188, 4, 164, 1,
2, 65, 45, 50, 72, 70, 75, 230, 1, 77, 114, 78, 146, 2, 82, 66, 83, 154,
1, 84, 226, 1, 87, 62, 89, 110, 69, 182, 248, 8, 85, 226, 174, 5, 79,
139, 192, 3, 73, 8, 158, 171, 24, 87, 246, 30, 49, 2, 50, 3, 51, 72, 166,
6, 79, 198, 198, 8, 65, 178, 228, 5, 85, 166, 116, 69, 3, 73, 74, 72, 2,
65, 45, 104, 2, 79, 45, 178, 4, 73, 226, 3, 69, 187, 155, 15, 85, 24,
146, 242, 11, 49, 238, 191, 12, 75, 214, 22, 50, 2, 51, 2, 52, 2, 53, 2,
54, 2, 55, 2, 56, 3, 57, 8, 146, 180, 24, 75, 218, 19, 49, 2, 50, 3, 51,
54, 68, 2, 69, 45, 154, 7, 79, 186, 155, 15, 65, 2, 73, 231, 203, 2, 85,
6, 186, 196, 24, 77, 186, 2, 49, 3, 50, 68, 116, 2, 69, 45, 72, 2, 73,
45, 246, 2, 65, 242, 250, 8, 79, 226, 174, 5, 85, 225, 146, 6, 6, 45, 77,
85, 45, 77, 79, 14, 222, 166, 24, 75, 246, 30, 49, 2, 50, 2, 51, 2, 52,
2, 53, 3, 54, 16, 182, 174, 24, 84, 214, 22, 49, 2, 50, 2, 51, 2, 52, 2,
53, 2, 54, 3, 55, 54, 222, 4, 79, 2, 85, 186, 155, 15, 73, 230, 203, 2,
65, 3, 69, 68, 62, 65, 2, 85, 226, 3, 73, 182, 248, 8, 69, 135, 163, 6,
79, 16, 11, 45, 16, 174, 195, 24, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54,
2, 55, 3, 56, 64, 74, 69, 20, 2, 79, 45, 72, 2, 85, 45, 154, 157, 15, 73,
231, 203, 2, 65, 18, 247, 129, 19, 45, 14, 202, 191, 24, 82, 186, 2, 49,
2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 10, 198, 162, 24, 84, 246, 30, 49, 2,
50, 2, 51, 3, 52, 42, 218, 249, 8, 65, 2, 73, 134, 163, 6, 79, 231, 203,
2, 69, 32, 40, 2, 65, 45, 66, 79, 159, 231, 17, 85, 12, 166, 161, 24, 89,
246, 30, 49, 2, 50, 2, 51, 2, 52, 3, 53, 12, 11, 45, 12, 206, 191, 24,
49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 4, 188, 174, 8, 21, 77, 73, 84,
73, 65, 78, 32, 67, 79, 78, 74, 85, 71, 65, 84, 69, 32, 77, 65, 84, 82,
215, 144, 16, 66, 128, 1, 210, 2, 65, 110, 66, 144, 1, 2, 67, 79, 94, 68,
198, 2, 70, 66, 71, 40, 4, 72, 79, 76, 68, 164, 1, 2, 73, 78, 116, 2, 77,
79, 58, 79, 122, 80, 100, 2, 82, 69, 66, 83, 238, 1, 84, 210, 5, 87, 172,
168, 15, 4, 76, 73, 77, 73, 140, 191, 5, 11, 89, 79, 85, 84, 72, 70, 85,
76, 32, 70, 79, 137, 177, 3, 9, 69, 78, 84, 72, 85, 83, 73, 65, 83, 6,
76, 3, 80, 80, 82, 124, 4, 70, 84, 69, 82, 209, 169, 19, 4, 66, 85, 78,
68, 2, 201, 152, 24, 2, 79, 65, 6, 92, 5, 69, 70, 79, 82, 69, 232, 216,
3, 6, 73, 84, 73, 78, 71, 32, 1, 4, 82, 69, 65, 75, 2, 165, 233, 23, 7,
32, 67, 79, 77, 80, 76, 69, 6, 26, 78, 203, 160, 19, 77, 4, 204, 210, 20,
4, 84, 69, 77, 80, 209, 213, 2, 3, 70, 76, 73, 14, 110, 69, 78, 73, 226,
164, 19, 85, 241, 245, 2, 15, 65, 82, 75, 69, 78, 73, 78, 71, 32, 79, 70,
32, 84, 72, 69, 6, 242, 160, 19, 67, 192, 6, 2, 76, 73, 149, 205, 4, 5,
86, 69, 76, 79, 80, 4, 144, 151, 19, 21, 70, 70, 73, 67, 85, 76, 84, 89,
32, 65, 84, 32, 84, 72, 69, 32, 66, 69, 71, 73, 78, 169, 253, 2, 4, 83,
80, 69, 82, 4, 240, 155, 19, 2, 79, 76, 165, 197, 4, 5, 69, 76, 76, 79,
87, 12, 36, 5, 65, 84, 72, 69, 82, 35, 82, 2, 189, 147, 15, 3, 73, 78,
71, 10, 40, 4, 69, 65, 84, 32, 251, 247, 23, 65, 8, 22, 80, 215, 5, 84,
6, 22, 79, 151, 5, 82, 4, 172, 2, 2, 83, 83, 171, 244, 23, 87, 8, 50, 78,
226, 156, 19, 67, 217, 5, 3, 70, 76, 85, 4, 180, 162, 19, 2, 79, 67, 197,
236, 1, 5, 69, 82, 32, 84, 82, 4, 196, 195, 22, 3, 68, 69, 83, 145, 62,
3, 85, 84, 72, 6, 26, 66, 37, 2, 80, 80, 2, 245, 225, 23, 4, 83, 84, 82,
85, 4, 26, 82, 207, 224, 23, 79, 2, 157, 143, 22, 2, 69, 83, 6, 160, 152,
15, 9, 85, 83, 72, 73, 78, 71, 32, 85, 80, 192, 137, 2, 3, 82, 79, 71,
143, 211, 6, 69, 6, 26, 84, 227, 140, 19, 86, 4, 146, 158, 19, 85, 171,
137, 4, 82, 8, 132, 1, 5, 77, 65, 76, 76, 32, 248, 179, 21, 6, 84, 65,
78, 68, 83, 84, 185, 244, 1, 11, 80, 76, 73, 84, 84, 73, 78, 71, 32, 65,
80, 4, 24, 2, 80, 82, 43, 84, 2, 241, 158, 19, 5, 69, 80, 79, 78, 68, 2,
11, 65, 2, 247, 221, 23, 77, 30, 36, 3, 72, 69, 32, 251, 231, 17, 82, 28,
186, 2, 65, 130, 1, 67, 132, 1, 3, 70, 65, 77, 20, 9, 82, 69, 67, 69, 80,
84, 73, 86, 69, 30, 87, 172, 22, 12, 77, 65, 82, 82, 89, 73, 78, 71, 32,
77, 65, 73, 132, 154, 5, 6, 71, 69, 78, 84, 76, 69, 240, 227, 10, 13, 75,
69, 69, 80, 73, 78, 71, 32, 83, 84, 73, 76, 76, 173, 238, 3, 7, 74, 79,
89, 79, 85, 83, 32, 6, 58, 82, 185, 188, 11, 8, 66, 89, 83, 77, 65, 76,
32, 87, 4, 220, 191, 20, 8, 79, 85, 83, 73, 78, 71, 32, 84, 163, 218, 3,
77, 6, 188, 131, 1, 2, 65, 85, 252, 186, 19, 9, 82, 69, 65, 84, 73, 86,
69, 32, 72, 161, 212, 1, 9, 76, 73, 78, 71, 73, 78, 71, 32, 70, 2, 207,
134, 24, 73, 2, 129, 189, 20, 2, 32, 69, 4, 166, 159, 22, 69, 189, 204,
1, 5, 65, 78, 68, 69, 82, 4, 190, 238, 6, 65, 153, 167, 6, 14, 79, 82,
75, 32, 79, 78, 32, 84, 72, 69, 32, 68, 69, 67, 222, 1, 236, 1, 2, 71,
72, 180, 2, 7, 82, 65, 71, 65, 78, 65, 32, 212, 4, 7, 83, 84, 79, 82, 73,
67, 32, 236, 198, 15, 7, 78, 68, 85, 32, 84, 69, 77, 240, 33, 4, 75, 73,
78, 71, 218, 249, 1, 66, 169, 180, 4, 8, 80, 80, 79, 80, 79, 84, 65, 77,
12, 18, 32, 119, 45, 6, 164, 142, 5, 2, 66, 82, 132, 248, 16, 6, 86, 79,
76, 84, 65, 71, 217, 49, 9, 79, 67, 84, 69, 84, 32, 80, 82, 69, 6, 92,
11, 83, 80, 69, 69, 68, 32, 84, 82, 65, 73, 78, 249, 206, 5, 6, 72, 69,
69, 76, 69, 68, 5, 181, 193, 11, 14, 32, 87, 73, 84, 72, 32, 66, 85, 76,
76, 69, 84, 32, 78, 200, 1, 112, 9, 68, 73, 71, 82, 65, 80, 72, 32, 89,
20, 7, 76, 69, 84, 84, 69, 82, 32, 154, 173, 1, 86, 215, 207, 20, 73, 2,
207, 183, 17, 79, 194, 1, 194, 1, 65, 74, 83, 138, 164, 1, 66, 162, 3,
78, 150, 2, 68, 2, 71, 2, 72, 2, 75, 2, 77, 2, 80, 2, 82, 2, 84, 2, 90,
126, 87, 46, 89, 174, 209, 22, 86, 234, 36, 69, 2, 73, 2, 79, 3, 85, 7,
37, 7, 82, 67, 72, 65, 73, 67, 32, 4, 174, 252, 23, 87, 151, 14, 89, 42,
76, 5, 77, 65, 76, 76, 32, 170, 160, 24, 65, 2, 69, 2, 73, 2, 79, 3, 85,
32, 230, 169, 1, 87, 46, 89, 226, 179, 5, 75, 206, 157, 17, 84, 234, 36,
65, 2, 69, 2, 73, 2, 79, 3, 85, 2, 183, 186, 8, 83, 108, 166, 1, 76, 52,
3, 78, 69, 89, 46, 82, 146, 7, 84, 138, 1, 85, 230, 200, 16, 83, 178,
219, 2, 67, 220, 198, 3, 6, 77, 79, 84, 72, 69, 84, 134, 167, 1, 79, 155,
3, 80, 6, 132, 153, 16, 4, 76, 79, 87, 32, 255, 132, 8, 69, 4, 174, 171,
22, 66, 233, 161, 1, 2, 32, 80, 66, 60, 8, 73, 90, 79, 78, 84, 65, 76,
32, 153, 6, 2, 83, 69, 60, 218, 1, 66, 110, 76, 152, 1, 17, 79, 78, 69,
32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75, 45, 88, 10, 83, 67,
65, 78, 32, 76, 73, 78, 69, 45, 46, 84, 170, 240, 21, 67, 42, 69, 230, 6,
77, 150, 1, 82, 247, 2, 90, 6, 44, 5, 76, 65, 67, 75, 32, 255, 225, 23,
65, 4, 38, 79, 241, 223, 22, 3, 72, 69, 88, 2, 227, 223, 22, 67, 10, 40,
4, 73, 78, 69, 32, 143, 246, 21, 65, 8, 44, 5, 87, 73, 84, 72, 32, 179,
246, 21, 69, 6, 26, 84, 219, 247, 21, 70, 4, 250, 247, 21, 72, 243, 91,
73, 14, 208, 237, 16, 3, 49, 51, 53, 178, 171, 7, 50, 2, 51, 2, 52, 2,
53, 2, 54, 3, 55, 8, 170, 152, 24, 49, 2, 51, 2, 55, 3, 57, 10, 32, 2,
65, 66, 223, 250, 21, 82, 8, 26, 85, 223, 249, 21, 32, 6, 33, 6, 76, 65,
84, 73, 79, 78, 7, 11, 32, 4, 152, 205, 9, 8, 87, 73, 84, 72, 32, 74, 85,
83, 223, 148, 14, 83, 7, 11, 32, 4, 204, 198, 7, 2, 82, 65, 235, 146, 16,
70, 10, 26, 32, 171, 138, 23, 69, 8, 86, 80, 128, 134, 19, 5, 66, 69, 86,
69, 82, 144, 80, 3, 83, 80, 82, 179, 190, 4, 68, 2, 255, 242, 14, 69, 12,
48, 6, 82, 71, 76, 65, 83, 83, 77, 2, 83, 69, 5, 129, 194, 20, 14, 32,
87, 73, 84, 72, 32, 70, 76, 79, 87, 73, 78, 71, 32, 9, 11, 32, 6, 88, 8,
87, 73, 84, 72, 32, 71, 65, 82, 205, 137, 22, 8, 66, 85, 73, 76, 68, 73,
78, 71, 2, 159, 189, 22, 68, 7, 142, 147, 24, 74, 3, 83, 8, 106, 83, 184,
252, 22, 11, 78, 68, 82, 69, 68, 32, 80, 79, 73, 78, 84, 176, 13, 2, 71,
71, 163, 136, 1, 84, 2, 147, 255, 22, 72, 20, 80, 2, 71, 73, 22, 80, 224,
1, 5, 83, 84, 69, 82, 69, 185, 137, 22, 2, 65, 67, 4, 151, 252, 21, 69,
12, 60, 3, 72, 69, 78, 221, 160, 4, 6, 79, 68, 73, 65, 83, 84, 11, 34,
32, 82, 65, 227, 132, 20, 45, 4, 26, 87, 239, 173, 22, 66, 2, 21, 3, 73,
84, 72, 2, 145, 190, 3, 2, 32, 68, 2, 165, 228, 12, 6, 84, 73, 79, 78,
32, 80, 2, 217, 249, 22, 2, 83, 73, 210, 5, 172, 1, 3, 67, 69, 32, 152,
1, 2, 68, 69, 222, 24, 77, 222, 2, 78, 230, 35, 82, 132, 2, 7, 90, 65,
75, 65, 89, 65, 32, 209, 250, 19, 9, 32, 76, 79, 86, 69, 32, 89, 79, 85,
8, 114, 67, 132, 169, 11, 18, 72, 79, 67, 75, 69, 89, 32, 83, 84, 73, 67,
75, 32, 65, 78, 68, 32, 80, 235, 190, 1, 83, 4, 162, 252, 15, 82, 223,
231, 2, 85, 246, 1, 68, 3, 78, 84, 73, 201, 1, 9, 79, 71, 82, 65, 80, 72,
73, 67, 32, 8, 64, 4, 67, 65, 76, 32, 105, 8, 70, 73, 67, 65, 84, 73, 79,
78, 6, 32, 2, 84, 79, 155, 138, 23, 87, 5, 173, 255, 14, 12, 32, 65, 78,
68, 32, 83, 76, 65, 78, 84, 69, 68, 2, 205, 241, 22, 2, 32, 67, 238, 1,
208, 2, 11, 65, 78, 78, 79, 84, 65, 84, 73, 79, 78, 32, 242, 3, 67, 72,
2, 68, 69, 248, 5, 5, 78, 85, 77, 66, 69, 22, 84, 172, 243, 5, 8, 72, 65,
76, 70, 32, 70, 73, 76, 232, 186, 1, 5, 69, 78, 84, 69, 82, 0, 3, 82, 73,
83, 24, 5, 76, 69, 86, 69, 76, 188, 143, 9, 5, 86, 65, 82, 73, 65, 250,
233, 4, 70, 154, 47, 73, 243, 231, 1, 83, 32, 232, 1, 5, 66, 79, 84, 84,
79, 22, 70, 82, 77, 62, 84, 140, 1, 4, 76, 73, 78, 75, 196, 143, 1, 4,
83, 69, 67, 79, 182, 165, 6, 79, 172, 135, 6, 6, 82, 69, 86, 69, 82, 83,
152, 222, 9, 5, 72, 69, 65, 86, 69, 169, 39, 3, 69, 65, 82, 2, 167, 196,
23, 77, 6, 48, 3, 79, 85, 82, 221, 186, 23, 3, 73, 82, 83, 4, 210, 195,
23, 84, 27, 32, 4, 36, 3, 73, 68, 68, 223, 155, 23, 65, 2, 195, 189, 13,
76, 8, 34, 72, 46, 87, 227, 137, 8, 79, 4, 214, 149, 9, 82, 181, 162, 14,
2, 73, 82, 2, 183, 194, 23, 79, 4, 36, 3, 76, 79, 83, 251, 173, 21, 79,
2, 249, 193, 23, 3, 73, 78, 71, 36, 104, 20, 83, 67, 82, 73, 80, 84, 73,
79, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 159, 179, 7, 80, 34,
144, 2, 9, 65, 66, 79, 86, 69, 32, 84, 79, 32, 84, 8, 76, 69, 70, 84, 32,
84, 79, 32, 76, 5, 79, 86, 69, 82, 76, 20, 2, 83, 85, 246, 253, 14, 82,
172, 200, 5, 8, 70, 85, 76, 76, 32, 83, 85, 82, 229, 231, 2, 15, 72, 79,
82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 69, 70, 76, 4, 60, 9, 77, 73, 68,
68, 76, 69, 32, 65, 78, 247, 221, 21, 66, 2, 199, 206, 21, 68, 4, 168,
172, 22, 10, 77, 73, 68, 68, 76, 69, 32, 65, 78, 68, 211, 168, 1, 82, 2,
171, 233, 16, 65, 18, 72, 12, 82, 82, 79, 85, 78, 68, 32, 70, 82, 79, 77,
32, 247, 189, 17, 66, 16, 82, 76, 232, 211, 11, 3, 85, 80, 80, 250, 135,
10, 66, 130, 165, 1, 65, 159, 82, 82, 6, 218, 211, 11, 79, 147, 255, 11,
69, 2, 251, 220, 8, 82, 148, 1, 92, 10, 65, 76, 76, 89, 32, 77, 65, 82,
75, 32, 41, 9, 69, 76, 69, 71, 82, 65, 80, 72, 32, 10, 162, 137, 22, 70,
70, 84, 155, 87, 79, 138, 1, 140, 1, 11, 83, 89, 77, 66, 79, 76, 32, 70,
79, 82, 32, 245, 238, 12, 17, 76, 73, 78, 69, 32, 70, 69, 69, 68, 32, 83,
69, 80, 65, 82, 65, 84, 136, 1, 182, 1, 65, 58, 68, 200, 2, 5, 72, 79,
85, 82, 32, 214, 1, 74, 28, 4, 70, 69, 66, 82, 64, 2, 77, 65, 192, 204,
15, 3, 78, 79, 86, 0, 4, 83, 69, 80, 84, 25, 4, 79, 67, 84, 79, 4, 192,
139, 20, 3, 85, 71, 85, 165, 142, 2, 2, 80, 82, 64, 44, 3, 65, 89, 32,
137, 209, 15, 2, 69, 67, 62, 66, 84, 218, 215, 5, 69, 66, 70, 70, 78, 26,
83, 235, 131, 17, 79, 34, 34, 72, 90, 87, 179, 167, 23, 69, 8, 36, 3, 73,
82, 84, 163, 133, 22, 82, 6, 26, 89, 163, 161, 22, 69, 5, 203, 202, 22,
45, 24, 26, 69, 247, 246, 23, 79, 22, 36, 3, 78, 84, 89, 251, 249, 22,
76, 21, 163, 171, 15, 45, 50, 78, 84, 182, 213, 5, 69, 66, 70, 70, 78,
26, 83, 142, 173, 16, 90, 223, 86, 79, 20, 42, 87, 146, 215, 5, 72, 207,
206, 17, 69, 14, 26, 69, 163, 245, 23, 79, 12, 36, 3, 78, 84, 89, 167,
248, 22, 76, 11, 199, 166, 17, 45, 6, 24, 2, 65, 78, 35, 85, 2, 11, 85,
2, 215, 174, 17, 65, 4, 210, 221, 23, 78, 143, 5, 76, 4, 222, 209, 23,
82, 171, 34, 89, 68, 40, 6, 65, 71, 69, 32, 79, 70, 83, 80, 5, 241, 138,
9, 15, 32, 79, 82, 32, 65, 80, 80, 82, 79, 88, 73, 77, 65, 84, 69, 65,
65, 14, 69, 82, 73, 65, 76, 32, 65, 82, 65, 77, 65, 73, 67, 32, 62, 72,
7, 78, 85, 77, 66, 69, 82, 32, 230, 18, 76, 205, 217, 19, 2, 83, 69, 16,
26, 84, 211, 207, 15, 79, 10, 154, 191, 11, 87, 250, 147, 1, 69, 131,
172, 9, 72, 136, 3, 202, 1, 67, 234, 1, 68, 214, 6, 70, 132, 2, 5, 72,
73, 66, 73, 84, 156, 1, 15, 80, 85, 84, 32, 83, 89, 77, 66, 79, 76, 32,
70, 79, 82, 32, 206, 1, 83, 236, 5, 2, 84, 69, 206, 8, 86, 171, 130, 10,
66, 10, 32, 2, 79, 77, 69, 2, 82, 69, 4, 164, 215, 16, 3, 73, 78, 71,
209, 230, 2, 5, 80, 76, 69, 84, 69, 6, 36, 3, 65, 83, 69, 135, 171, 23,
77, 4, 34, 32, 181, 188, 10, 2, 83, 32, 2, 185, 191, 11, 8, 70, 79, 78,
84, 32, 83, 73, 90, 145, 1, 24, 2, 69, 88, 103, 73, 5, 173, 210, 22, 20,
32, 80, 79, 73, 78, 84, 73, 78, 71, 32, 65, 84, 32, 84, 72, 69, 32, 86,
73, 69, 138, 1, 72, 8, 67, 32, 83, 73, 89, 65, 81, 32, 197, 144, 18, 4,
65, 78, 32, 82, 136, 1, 196, 1, 11, 65, 76, 84, 69, 82, 78, 65, 84, 69,
32, 76, 2, 76, 28, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 100, 7, 78, 85,
77, 66, 69, 82, 32, 210, 250, 8, 82, 153, 125, 6, 80, 76, 65, 67, 69, 72,
2, 225, 168, 23, 2, 65, 75, 6, 68, 4, 79, 78, 69, 32, 229, 229, 21, 7,
84, 72, 82, 69, 69, 32, 81, 4, 186, 227, 21, 72, 47, 81, 122, 212, 1, 10,
65, 76, 84, 69, 82, 78, 65, 84, 69, 32, 72, 5, 75, 65, 82, 79, 82, 0, 4,
76, 65, 75, 72, 246, 145, 10, 69, 66, 70, 94, 78, 26, 83, 78, 84, 236,
135, 5, 8, 80, 82, 69, 70, 73, 88, 69, 68, 199, 41, 79, 6, 26, 84, 147,
204, 22, 79, 4, 208, 167, 6, 2, 69, 78, 251, 160, 17, 87, 5, 179, 151,
23, 65, 16, 72, 5, 73, 78, 73, 84, 89, 85, 9, 79, 82, 77, 65, 84, 73, 79,
78, 32, 5, 45, 9, 32, 78, 69, 71, 65, 84, 69, 68, 32, 2, 173, 175, 8, 4,
87, 73, 84, 72, 12, 42, 83, 249, 224, 19, 4, 68, 69, 83, 75, 10, 192,
156, 7, 5, 69, 80, 65, 82, 65, 191, 129, 10, 79, 4, 11, 32, 4, 220, 147,
23, 15, 65, 82, 65, 66, 73, 67, 32, 70, 79, 82, 77, 32, 83, 72, 65, 1,
14, 83, 89, 77, 77, 69, 84, 82, 73, 67, 32, 83, 87, 65, 80, 10, 80, 6,
76, 65, 84, 73, 78, 32, 242, 252, 14, 83, 161, 213, 7, 4, 78, 85, 77, 66,
6, 64, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76, 27, 76, 2, 21, 3,
76, 32, 76, 2, 217, 222, 21, 2, 69, 84, 116, 84, 13, 67, 82, 73, 80, 84,
73, 79, 78, 65, 76, 32, 80, 65, 141, 209, 15, 2, 69, 82, 114, 72, 6, 72,
76, 65, 86, 73, 32, 225, 1, 7, 82, 84, 72, 73, 65, 78, 32, 54, 48, 7, 76,
69, 84, 84, 69, 82, 32, 191, 3, 78, 38, 130, 180, 10, 84, 222, 119, 65,
22, 68, 34, 76, 22, 77, 50, 87, 254, 169, 4, 71, 90, 90, 34, 83, 66, 89,
198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 223, 105, 80,
60, 22, 76, 251, 1, 78, 44, 11, 69, 44, 29, 5, 84, 84, 69, 82, 32, 44,
146, 178, 10, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, 142,
220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75,
174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, 16,
33, 6, 85, 77, 66, 69, 82, 32, 16, 138, 170, 11, 84, 226, 144, 4, 79,
167, 134, 3, 70, 50, 36, 4, 71, 82, 65, 76, 179, 3, 82, 23, 11, 32, 20,
58, 65, 140, 1, 5, 87, 73, 84, 72, 32, 159, 183, 21, 69, 4, 96, 6, 86,
69, 82, 65, 71, 69, 193, 180, 16, 12, 82, 79, 85, 78, 68, 32, 65, 32, 80,
79, 73, 78, 2, 229, 181, 16, 5, 32, 87, 73, 84, 72, 14, 160, 1, 3, 84,
73, 77, 20, 2, 85, 78, 248, 242, 6, 16, 76, 69, 70, 84, 87, 65, 82, 68,
83, 32, 65, 82, 82, 79, 87, 32, 194, 178, 13, 73, 198, 1, 79, 251, 64,
68, 2, 251, 166, 20, 69, 4, 134, 167, 20, 68, 131, 226, 2, 73, 28, 94,
76, 232, 1, 7, 83, 69, 67, 84, 73, 79, 78, 146, 7, 82, 128, 130, 12, 2,
67, 65, 43, 73, 8, 164, 1, 17, 73, 78, 69, 65, 82, 32, 65, 78, 78, 79,
84, 65, 84, 73, 79, 78, 32, 169, 239, 4, 17, 79, 67, 75, 69, 68, 32, 70,
69, 77, 65, 76, 69, 32, 65, 78, 68, 32, 6, 156, 171, 8, 3, 65, 78, 67,
222, 158, 8, 84, 159, 219, 3, 83, 15, 11, 32, 12, 168, 1, 6, 65, 66, 79,
86, 69, 32, 64, 5, 87, 73, 84, 72, 32, 193, 160, 20, 22, 66, 69, 83, 73,
68, 69, 32, 65, 78, 68, 32, 74, 79, 73, 78, 69, 68, 32, 87, 73, 84, 72,
4, 176, 161, 20, 9, 66, 65, 82, 32, 65, 66, 79, 86, 69, 23, 85, 6, 154,
173, 4, 76, 254, 244, 15, 79, 195, 225, 2, 68, 40, 56, 2, 69, 82, 189, 5,
7, 73, 83, 73, 66, 76, 69, 32, 34, 48, 3, 83, 69, 32, 225, 2, 4, 84, 69,
68, 32, 16, 174, 1, 66, 80, 5, 67, 72, 69, 67, 75, 68, 24, 68, 79, 87,
78, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 87, 73, 84, 72, 32,
84, 73, 80, 234, 186, 20, 87, 219, 26, 77, 6, 44, 5, 76, 65, 67, 75, 32,
251, 238, 21, 85, 4, 146, 146, 22, 68, 227, 27, 83, 4, 252, 212, 20, 8,
69, 82, 32, 66, 79, 65, 82, 68, 183, 186, 2, 32, 2, 221, 238, 20, 2, 32,
76, 18, 144, 1, 6, 73, 78, 84, 69, 82, 82, 22, 76, 170, 250, 11, 80, 230,
184, 4, 69, 244, 198, 1, 2, 79, 72, 204, 158, 2, 4, 85, 78, 68, 69, 183,
97, 81, 2, 207, 217, 4, 79, 6, 60, 9, 79, 87, 32, 75, 65, 86, 89, 75, 65,
163, 235, 6, 65, 5, 229, 162, 18, 11, 32, 87, 73, 84, 72, 32, 75, 65, 86,
89, 75, 6, 38, 84, 178, 194, 19, 80, 223, 89, 83, 2, 159, 181, 16, 73, 4,
246, 177, 22, 69, 215, 93, 73, 218, 1, 94, 65, 138, 21, 69, 62, 79, 42,
85, 157, 195, 11, 10, 73, 71, 83, 65, 87, 32, 80, 85, 90, 90, 202, 1,
120, 5, 67, 75, 45, 79, 45, 32, 7, 80, 65, 78, 69, 83, 69, 32, 184, 2, 7,
86, 65, 78, 69, 83, 69, 32, 207, 200, 23, 82, 2, 169, 184, 18, 3, 76, 65,
78, 16, 246, 1, 67, 18, 80, 152, 157, 1, 10, 73, 78, 68, 85, 83, 84, 82,
73, 65, 76, 236, 229, 3, 3, 66, 65, 78, 134, 174, 3, 68, 220, 143, 11,
15, 83, 89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 66, 69, 71, 73, 180, 248,
1, 3, 71, 79, 66, 169, 109, 2, 79, 71, 2, 207, 32, 65, 2, 165, 145, 13,
7, 79, 83, 84, 32, 79, 70, 70, 182, 1, 172, 2, 15, 67, 79, 78, 83, 79,
78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 76, 2, 76, 69, 40, 4, 82, 73, 71,
72, 224, 6, 2, 80, 65, 176, 3, 14, 84, 85, 82, 78, 69, 68, 32, 80, 65,
68, 65, 32, 80, 73, 88, 5, 83, 73, 71, 78, 32, 144, 1, 11, 86, 79, 87,
69, 76, 32, 83, 73, 71, 78, 32, 167, 197, 21, 68, 6, 52, 2, 75, 69, 188,
201, 16, 2, 80, 69, 175, 5, 67, 2, 199, 144, 23, 82, 96, 38, 70, 65, 5,
84, 84, 69, 82, 32, 2, 41, 8, 84, 32, 82, 69, 82, 69, 78, 71, 2, 219,
248, 21, 71, 94, 230, 1, 68, 26, 73, 48, 2, 75, 65, 66, 78, 130, 1, 66,
2, 67, 2, 71, 16, 2, 80, 65, 56, 2, 82, 65, 32, 2, 83, 65, 42, 84, 74,
74, 218, 178, 21, 65, 142, 138, 2, 72, 2, 76, 2, 77, 2, 87, 2, 89, 186,
2, 69, 2, 79, 3, 85, 8, 222, 3, 68, 15, 65, 7, 184, 205, 5, 3, 32, 75,
65, 171, 245, 17, 73, 7, 11, 32, 4, 22, 83, 215, 2, 77, 2, 133, 137, 21,
2, 65, 83, 14, 36, 2, 71, 65, 90, 89, 167, 1, 65, 7, 33, 6, 32, 76, 69,
76, 69, 84, 5, 29, 5, 32, 82, 65, 83, 87, 2, 159, 230, 5, 65, 4, 163, 1,
65, 7, 11, 32, 4, 154, 1, 77, 153, 188, 23, 3, 67, 69, 82, 5, 237, 204,
16, 3, 32, 65, 71, 7, 17, 2, 32, 77, 4, 70, 85, 71, 65, 8, 18, 65, 55,
84, 5, 17, 2, 32, 77, 2, 11, 85, 2, 171, 154, 23, 82, 4, 11, 65, 5, 11,
32, 2, 11, 77, 2, 11, 65, 2, 11, 72, 2, 237, 185, 17, 2, 65, 80, 28, 40,
3, 68, 65, 32, 165, 3, 2, 78, 71, 24, 174, 1, 65, 90, 76, 86, 80, 244,
150, 7, 10, 84, 73, 82, 84, 65, 32, 84, 85, 77, 69, 158, 135, 12, 87,
168, 199, 2, 7, 73, 83, 69, 78, 45, 73, 83, 169, 211, 1, 3, 77, 65, 68,
6, 44, 3, 68, 69, 71, 177, 169, 22, 2, 78, 68, 5, 11, 32, 2, 193, 246,
22, 2, 65, 68, 6, 38, 85, 165, 185, 23, 3, 73, 78, 71, 4, 240, 200, 18,
2, 78, 71, 163, 250, 3, 72, 4, 38, 73, 205, 193, 18, 3, 65, 78, 71, 2,
181, 197, 16, 3, 83, 69, 76, 4, 140, 153, 13, 5, 82, 65, 78, 71, 75, 251,
209, 9, 75, 10, 108, 5, 67, 69, 67, 65, 75, 248, 205, 5, 3, 87, 73, 71,
202, 246, 10, 76, 249, 228, 2, 5, 80, 65, 78, 89, 65, 5, 157, 176, 18, 3,
32, 84, 69, 18, 116, 4, 83, 85, 75, 85, 42, 84, 64, 4, 87, 85, 76, 85,
142, 195, 16, 80, 137, 224, 1, 7, 68, 73, 82, 71, 65, 32, 77, 5, 225,
190, 22, 5, 32, 77, 69, 78, 68, 6, 26, 65, 203, 196, 16, 79, 4, 178, 196,
16, 82, 187, 162, 6, 76, 5, 25, 4, 32, 77, 69, 76, 2, 151, 180, 23, 73,
4, 36, 3, 76, 76, 89, 203, 239, 19, 65, 2, 167, 210, 19, 70, 4, 192, 132,
22, 2, 89, 83, 191, 98, 73, 6, 196, 200, 14, 2, 71, 71, 194, 135, 5, 80,
191, 199, 3, 78, 188, 25, 74, 65, 178, 78, 69, 218, 1, 72, 162, 50, 73,
198, 6, 78, 50, 79, 111, 82, 202, 10, 200, 1, 5, 73, 84, 72, 73, 32, 234,
4, 78, 188, 45, 6, 84, 65, 75, 65, 78, 65, 208, 13, 3, 87, 73, 32, 220,
8, 7, 89, 65, 72, 32, 76, 73, 32, 224, 201, 4, 6, 75, 84, 79, 86, 73, 75,
135, 244, 17, 65, 136, 1, 204, 1, 7, 76, 69, 84, 84, 69, 82, 32, 178, 2,
83, 150, 116, 68, 228, 243, 3, 2, 86, 79, 236, 137, 3, 11, 78, 85, 77,
66, 69, 82, 32, 83, 73, 71, 78, 162, 202, 9, 65, 189, 211, 1, 6, 69, 78,
85, 77, 69, 82, 90, 214, 1, 68, 190, 210, 19, 65, 150, 1, 84, 230, 5, 85,
186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2,
75, 2, 80, 2, 82, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, 2, 69, 3,
79, 10, 38, 68, 210, 173, 23, 72, 187, 2, 65, 6, 222, 178, 21, 68, 242,
250, 1, 72, 187, 2, 65, 12, 40, 4, 73, 71, 78, 32, 179, 156, 11, 69, 10,
202, 145, 19, 67, 98, 78, 138, 216, 3, 65, 239, 1, 86, 232, 4, 42, 71,
241, 39, 5, 78, 65, 68, 65, 32, 174, 3, 76, 11, 88, 73, 32, 82, 65, 68,
73, 67, 65, 76, 32, 249, 226, 20, 2, 65, 82, 172, 3, 130, 2, 65, 94, 66,
230, 2, 67, 150, 2, 68, 158, 3, 69, 198, 1, 70, 138, 2, 71, 146, 1, 72,
210, 2, 73, 76, 2, 74, 65, 34, 75, 30, 76, 230, 1, 77, 254, 1, 78, 62,
79, 102, 80, 110, 82, 166, 1, 83, 230, 6, 84, 226, 2, 86, 50, 87, 210, 2,
89, 207, 251, 21, 85, 10, 56, 2, 82, 82, 198, 252, 21, 71, 202, 104, 78,
207, 47, 88, 4, 138, 173, 22, 79, 207, 1, 73, 34, 58, 65, 38, 73, 46, 76,
54, 79, 102, 82, 207, 220, 21, 69, 4, 242, 202, 5, 77, 183, 142, 14, 68,
6, 158, 240, 21, 84, 238, 115, 82, 163, 70, 71, 6, 210, 239, 19, 79, 170,
136, 2, 65, 179, 155, 1, 85, 10, 62, 76, 226, 140, 23, 65, 218, 5, 78,
142, 5, 68, 203, 17, 87, 2, 253, 219, 3, 4, 84, 32, 79, 70, 6, 42, 73,
158, 248, 9, 65, 155, 197, 11, 85, 2, 219, 255, 13, 83, 28, 58, 65, 70,
76, 74, 79, 206, 181, 10, 72, 183, 129, 11, 73, 6, 38, 85, 154, 139, 23,
82, 219, 5, 86, 2, 141, 128, 22, 2, 76, 68, 8, 42, 65, 190, 190, 7, 73,
167, 210, 14, 79, 4, 250, 166, 23, 78, 3, 87, 10, 130, 130, 22, 82, 148,
2, 2, 77, 80, 222, 100, 86, 134, 5, 76, 235, 56, 87, 34, 38, 69, 38, 73,
98, 79, 195, 1, 82, 4, 242, 160, 21, 65, 159, 204, 1, 69, 8, 38, 83, 226,
128, 14, 86, 175, 2, 80, 4, 208, 192, 19, 5, 84, 73, 78, 71, 85, 207,
228, 3, 72, 16, 94, 84, 76, 3, 85, 66, 76, 138, 130, 13, 87, 252, 208, 9,
2, 32, 78, 222, 23, 79, 223, 56, 71, 7, 25, 4, 84, 69, 68, 32, 4, 168,
187, 7, 3, 67, 76, 73, 155, 165, 15, 84, 2, 175, 134, 4, 69, 6, 242, 232,
21, 65, 222, 169, 1, 85, 219, 16, 89, 20, 106, 65, 38, 78, 32, 3, 86, 69,
78, 140, 131, 9, 6, 77, 66, 82, 79, 73, 68, 250, 243, 13, 73, 243, 19,
89, 6, 170, 233, 16, 82, 227, 184, 6, 84, 4, 178, 25, 67, 203, 202, 22,
84, 5, 207, 208, 22, 73, 28, 74, 65, 50, 73, 62, 76, 38, 82, 170, 20, 69,
250, 186, 22, 79, 223, 23, 85, 6, 146, 255, 13, 84, 130, 139, 9, 67, 131,
22, 78, 8, 234, 240, 12, 69, 150, 133, 10, 71, 230, 19, 82, 199, 21, 83,
4, 230, 214, 21, 85, 151, 201, 1, 89, 4, 180, 239, 21, 2, 65, 71, 207,
175, 1, 79, 14, 58, 79, 52, 2, 82, 65, 190, 176, 19, 72, 239, 164, 2, 65,
7, 206, 216, 22, 76, 241, 34, 5, 32, 83, 76, 79, 87, 4, 218, 206, 22, 73,
135, 18, 83, 22, 58, 65, 142, 1, 69, 60, 5, 73, 68, 73, 78, 71, 19, 79,
8, 38, 76, 154, 215, 22, 78, 199, 13, 73, 4, 34, 70, 165, 132, 22, 2, 66,
69, 2, 41, 8, 32, 84, 82, 69, 69, 32, 84, 82, 2, 135, 184, 19, 85, 6, 26,
65, 175, 156, 23, 77, 4, 138, 128, 23, 82, 175, 28, 68, 2, 195, 19, 32,
6, 26, 82, 215, 152, 23, 79, 4, 150, 133, 23, 83, 215, 22, 78, 6, 26, 78,
223, 132, 23, 67, 4, 26, 83, 135, 154, 23, 67, 2, 135, 138, 22, 69, 4,
170, 132, 23, 68, 215, 22, 82, 2, 133, 179, 5, 2, 78, 73, 22, 46, 65, 34,
69, 78, 73, 41, 3, 79, 78, 71, 4, 190, 131, 23, 77, 191, 19, 67, 8, 38,
65, 242, 219, 22, 71, 199, 58, 69, 4, 246, 247, 13, 84, 215, 161, 9, 70,
6, 210, 130, 23, 70, 2, 78, 215, 22, 68, 5, 153, 204, 11, 3, 32, 83, 84,
22, 42, 69, 34, 73, 46, 79, 139, 200, 22, 65, 4, 198, 200, 22, 76, 195,
51, 65, 4, 128, 243, 11, 2, 78, 73, 139, 195, 9, 76, 12, 34, 82, 34, 85,
199, 199, 22, 79, 4, 134, 244, 21, 84, 187, 82, 78, 6, 26, 78, 251, 149,
23, 84, 4, 158, 232, 21, 84, 235, 174, 1, 68, 6, 26, 79, 159, 250, 22,
69, 4, 242, 255, 22, 83, 215, 22, 84, 10, 40, 2, 78, 69, 22, 80, 203,
207, 22, 76, 5, 199, 157, 6, 83, 4, 190, 178, 10, 80, 247, 193, 2, 69,
10, 54, 82, 230, 248, 21, 76, 166, 1, 79, 179, 154, 1, 73, 4, 148, 207,
12, 2, 73, 86, 181, 141, 7, 2, 79, 70, 18, 62, 65, 42, 73, 234, 173, 10,
79, 170, 150, 12, 85, 195, 9, 69, 6, 182, 196, 22, 73, 226, 79, 80, 3,
84, 6, 156, 242, 12, 3, 71, 72, 84, 230, 227, 9, 86, 155, 39, 67, 74,
170, 1, 65, 86, 67, 54, 69, 62, 72, 178, 1, 73, 46, 76, 62, 80, 106, 84,
142, 245, 17, 87, 158, 159, 1, 78, 234, 64, 79, 130, 174, 1, 77, 226,
103, 81, 130, 35, 75, 247, 47, 85, 6, 144, 195, 3, 9, 67, 82, 73, 70, 73,
67, 73, 65, 76, 202, 178, 19, 76, 175, 28, 89, 4, 224, 246, 10, 2, 82,
73, 249, 218, 5, 2, 72, 79, 8, 170, 210, 21, 67, 134, 51, 65, 174, 10,
76, 167, 129, 1, 69, 10, 18, 69, 39, 79, 4, 222, 132, 22, 76, 199, 139,
1, 69, 6, 40, 4, 82, 84, 32, 84, 183, 243, 22, 79, 4, 44, 5, 65, 73, 76,
69, 68, 207, 133, 16, 72, 2, 201, 138, 21, 2, 32, 66, 4, 184, 247, 17, 2,
67, 75, 195, 148, 5, 76, 6, 26, 65, 211, 209, 22, 73, 4, 246, 247, 22,
86, 199, 21, 83, 10, 50, 69, 34, 73, 190, 148, 19, 82, 179, 169, 3, 79,
4, 154, 213, 22, 65, 183, 22, 69, 2, 159, 241, 22, 82, 12, 34, 69, 34,
79, 239, 252, 21, 65, 4, 198, 252, 22, 65, 219, 16, 80, 6, 26, 80, 147,
246, 22, 78, 5, 223, 187, 22, 80, 30, 82, 65, 98, 73, 34, 79, 38, 82, 52,
2, 85, 82, 32, 2, 87, 79, 167, 186, 22, 69, 6, 38, 78, 154, 229, 21, 66,
239, 26, 76, 2, 33, 6, 78, 69, 68, 32, 76, 69, 2, 207, 233, 13, 65, 4,
174, 205, 22, 71, 155, 39, 76, 4, 146, 251, 18, 78, 243, 138, 2, 79, 6,
190, 240, 16, 73, 150, 232, 4, 65, 179, 155, 1, 69, 4, 134, 190, 21, 66,
227, 37, 84, 5, 187, 199, 19, 32, 4, 254, 220, 12, 65, 209, 157, 5, 3,
73, 76, 76, 26, 58, 65, 110, 69, 42, 72, 32, 2, 73, 78, 30, 79, 39, 82,
6, 32, 2, 76, 75, 247, 202, 22, 84, 5, 11, 32, 2, 11, 69, 2, 17, 2, 78,
67, 2, 237, 243, 17, 2, 76, 79, 4, 168, 184, 22, 2, 65, 80, 195, 51, 83,
4, 218, 190, 21, 73, 231, 63, 69, 4, 206, 135, 23, 68, 3, 69, 4, 150,
187, 21, 77, 135, 201, 1, 82, 4, 150, 182, 22, 79, 239, 80, 65, 2, 141,
229, 20, 2, 69, 76, 186, 1, 92, 2, 76, 69, 148, 2, 5, 83, 73, 71, 78, 32,
170, 207, 17, 65, 186, 9, 86, 247, 182, 3, 68, 110, 44, 5, 84, 84, 69,
82, 32, 219, 195, 22, 78, 108, 190, 214, 17, 78, 142, 209, 1, 65, 38, 68,
46, 76, 38, 82, 34, 84, 46, 86, 186, 5, 85, 206, 141, 1, 79, 238, 60, 73,
182, 196, 1, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 162, 7, 69,
234, 61, 70, 2, 72, 2, 77, 3, 89, 22, 94, 67, 138, 1, 83, 246, 228, 18,
78, 190, 66, 65, 190, 158, 1, 74, 150, 3, 85, 235, 245, 1, 86, 4, 100,
19, 79, 77, 66, 73, 78, 73, 78, 71, 32, 65, 78, 85, 83, 86, 65, 82, 65,
32, 65, 195, 228, 18, 65, 2, 173, 253, 19, 3, 66, 79, 86, 4, 216, 198,
12, 6, 80, 65, 67, 73, 78, 71, 255, 143, 5, 73, 162, 2, 62, 32, 173, 11,
10, 45, 72, 73, 82, 65, 71, 65, 78, 65, 32, 154, 2, 140, 1, 7, 76, 69,
84, 84, 69, 82, 32, 242, 9, 86, 232, 130, 19, 10, 68, 73, 71, 82, 65, 80,
72, 32, 75, 79, 238, 204, 1, 73, 191, 146, 1, 77, 146, 2, 186, 1, 65,
178, 1, 66, 106, 77, 186, 2, 78, 54, 83, 226, 1, 68, 2, 71, 2, 72, 2, 75,
2, 80, 2, 82, 2, 84, 2, 86, 2, 90, 126, 87, 46, 89, 150, 246, 22, 69, 2,
73, 2, 79, 3, 85, 19, 60, 4, 73, 78, 85, 32, 45, 7, 82, 67, 72, 65, 73,
67, 32, 8, 130, 7, 84, 138, 224, 22, 67, 215, 22, 80, 8, 38, 89, 166,
216, 22, 87, 235, 36, 69, 4, 138, 253, 22, 69, 3, 73, 20, 50, 73, 190,
252, 22, 65, 2, 69, 2, 79, 3, 85, 13, 253, 4, 9, 68, 65, 75, 85, 79, 78,
32, 78, 71, 36, 50, 73, 214, 251, 22, 65, 2, 69, 2, 79, 3, 85, 29, 29, 5,
78, 78, 65, 78, 32, 26, 96, 15, 78, 65, 83, 65, 76, 73, 90, 69, 68, 32,
84, 79, 78, 69, 45, 69, 5, 84, 79, 78, 69, 45, 14, 206, 250, 22, 49, 2,
50, 2, 51, 2, 52, 2, 53, 2, 55, 3, 56, 12, 138, 250, 22, 50, 2, 51, 2,
52, 2, 53, 2, 55, 3, 56, 13, 206, 249, 22, 65, 2, 69, 2, 73, 2, 79, 3,
85, 76, 76, 5, 77, 65, 76, 76, 32, 206, 248, 22, 65, 2, 69, 2, 73, 2, 79,
3, 85, 66, 142, 1, 72, 2, 82, 54, 75, 46, 84, 30, 87, 46, 89, 154, 159,
19, 78, 198, 150, 3, 83, 210, 27, 77, 234, 36, 65, 2, 69, 2, 73, 2, 79,
3, 85, 10, 186, 247, 22, 65, 2, 69, 2, 73, 2, 79, 3, 85, 8, 134, 247, 22,
65, 2, 69, 2, 79, 3, 85, 4, 218, 246, 22, 79, 3, 85, 8, 190, 246, 22, 65,
2, 69, 2, 73, 3, 79, 6, 146, 246, 22, 65, 2, 79, 3, 85, 2, 189, 207, 20,
5, 79, 73, 67, 69, 68, 8, 52, 5, 68, 79, 85, 66, 76, 22, 80, 38, 83, 35,
86, 2, 251, 128, 8, 69, 2, 89, 6, 82, 79, 76, 79, 78, 71, 2, 29, 5, 69,
77, 73, 45, 86, 2, 21, 3, 79, 73, 67, 2, 33, 6, 69, 68, 32, 83, 79, 85,
2, 223, 167, 22, 78, 174, 1, 216, 1, 7, 76, 69, 84, 84, 69, 82, 32, 128,
2, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 148, 3, 5, 83, 73,
71, 78, 32, 88, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 162, 171,
12, 68, 151, 224, 6, 67, 94, 226, 1, 65, 198, 166, 4, 74, 146, 236, 14,
68, 114, 84, 230, 5, 85, 22, 86, 166, 202, 1, 73, 138, 196, 1, 78, 46,
83, 82, 66, 2, 67, 2, 71, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82,
2, 87, 2, 89, 186, 2, 69, 3, 79, 7, 162, 240, 22, 65, 3, 73, 22, 122, 67,
90, 68, 58, 70, 54, 83, 20, 12, 65, 76, 84, 69, 82, 78, 65, 84, 69, 32,
83, 69, 237, 217, 21, 4, 84, 82, 73, 80, 4, 56, 8, 76, 79, 83, 73, 78,
71, 32, 83, 199, 154, 21, 73, 2, 229, 226, 21, 2, 80, 73, 4, 11, 79, 4,
220, 218, 21, 2, 85, 66, 203, 147, 1, 84, 4, 200, 153, 21, 5, 73, 76, 76,
69, 68, 163, 57, 76, 6, 18, 69, 23, 80, 2, 187, 245, 10, 67, 4, 140, 151,
4, 2, 65, 67, 171, 202, 17, 73, 12, 222, 226, 7, 75, 182, 236, 10, 67,
98, 78, 238, 64, 82, 170, 162, 1, 86, 247, 244, 1, 65, 20, 66, 65, 246,
164, 4, 86, 234, 239, 14, 69, 2, 85, 187, 202, 1, 73, 6, 240, 233, 16, 8,
76, 84, 69, 82, 78, 65, 84, 69, 230, 129, 6, 65, 3, 73, 96, 148, 1, 7,
76, 69, 84, 84, 69, 82, 32, 200, 1, 5, 83, 73, 71, 78, 32, 44, 5, 84, 79,
78, 69, 32, 92, 6, 86, 79, 87, 69, 76, 32, 159, 243, 20, 68, 56, 138,
206, 18, 79, 186, 7, 72, 158, 151, 2, 78, 214, 181, 1, 75, 2, 80, 2, 83,
2, 84, 138, 69, 66, 2, 67, 2, 68, 2, 71, 2, 76, 2, 77, 2, 82, 2, 86, 2,
87, 2, 89, 2, 90, 186, 2, 65, 3, 73, 4, 130, 243, 4, 67, 205, 242, 17, 2,
83, 72, 6, 36, 5, 67, 65, 76, 89, 65, 23, 80, 5, 17, 2, 32, 80, 2, 249,
240, 17, 3, 76, 79, 80, 10, 130, 167, 22, 69, 2, 85, 163, 64, 79, 36, 24,
2, 76, 86, 23, 89, 2, 215, 234, 20, 73, 35, 68, 5, 66, 79, 65, 82, 68,
36, 4, 67, 65, 80, 32, 243, 245, 2, 72, 5, 193, 157, 19, 4, 32, 65, 78,
68, 26, 166, 154, 17, 78, 138, 180, 3, 65, 170, 35, 68, 135, 30, 84, 188,
13, 202, 1, 65, 224, 9, 18, 73, 84, 65, 78, 32, 83, 77, 65, 76, 76, 32,
83, 67, 82, 73, 80, 84, 32, 204, 3, 4, 77, 69, 82, 32, 204, 25, 5, 79,
74, 75, 73, 32, 141, 6, 8, 85, 68, 65, 87, 65, 68, 73, 32, 138, 1, 56, 8,
82, 79, 83, 72, 84, 72, 73, 32, 147, 190, 22, 78, 136, 1, 220, 1, 4, 68,
73, 71, 73, 20, 7, 76, 69, 84, 84, 69, 82, 32, 144, 2, 7, 78, 85, 77, 66,
69, 82, 32, 36, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 136,
2, 5, 83, 73, 71, 78, 32, 210, 1, 86, 159, 201, 8, 70, 8, 243, 146, 16,
84, 74, 182, 1, 75, 42, 84, 218, 140, 7, 78, 150, 245, 11, 68, 194, 149,
3, 83, 82, 66, 2, 67, 2, 71, 2, 80, 2, 86, 138, 69, 72, 2, 74, 2, 76, 2,
77, 2, 82, 2, 89, 2, 90, 187, 2, 65, 6, 170, 221, 22, 72, 2, 75, 187, 2,
65, 12, 218, 130, 19, 84, 170, 218, 3, 72, 187, 2, 65, 8, 186, 215, 14,
84, 243, 170, 2, 79, 18, 70, 67, 74, 68, 66, 76, 36, 5, 77, 65, 78, 71,
65, 163, 136, 21, 83, 4, 26, 82, 251, 137, 21, 73, 2, 173, 186, 21, 6,
69, 83, 67, 69, 78, 84, 6, 26, 79, 199, 253, 18, 65, 4, 142, 253, 18, 85,
175, 224, 3, 84, 4, 214, 227, 6, 79, 247, 195, 7, 73, 2, 227, 159, 21,
76, 12, 72, 2, 66, 65, 22, 67, 20, 2, 68, 79, 130, 162, 20, 86, 247, 244,
1, 65, 2, 143, 223, 21, 82, 2, 167, 154, 6, 65, 4, 44, 5, 85, 66, 76, 69,
32, 167, 170, 20, 84, 2, 21, 3, 82, 73, 78, 2, 139, 170, 20, 71, 14, 44,
5, 79, 87, 69, 76, 32, 199, 158, 20, 73, 12, 44, 5, 83, 73, 71, 78, 32,
183, 152, 22, 76, 10, 202, 147, 4, 86, 230, 198, 18, 69, 2, 73, 2, 79, 3,
85, 176, 7, 72, 12, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 147,
207, 7, 70, 174, 7, 22, 66, 147, 1, 67, 128, 4, 142, 254, 7, 48, 2, 49,
2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2,
67, 2, 68, 2, 69, 3, 70, 174, 3, 142, 1, 68, 242, 251, 7, 48, 2, 49, 2,
50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67,
211, 217, 13, 70, 12, 226, 214, 22, 48, 2, 49, 2, 50, 2, 51, 2, 52, 3,
53, 246, 2, 202, 1, 67, 240, 2, 18, 73, 78, 68, 69, 80, 69, 78, 68, 69,
78, 84, 32, 86, 79, 87, 69, 76, 32, 220, 2, 7, 76, 69, 84, 84, 69, 82,
32, 254, 2, 83, 208, 12, 6, 86, 79, 87, 69, 76, 32, 187, 203, 20, 68, 70,
176, 1, 20, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 67,
79, 69, 78, 71, 32, 245, 189, 17, 17, 85, 82, 82, 69, 78, 67, 89, 32, 83,
89, 77, 66, 79, 76, 32, 82, 73, 68, 138, 1, 78, 154, 4, 67, 2, 75, 90,
80, 74, 84, 54, 68, 2, 76, 158, 132, 22, 83, 158, 41, 77, 2, 82, 2, 86,
2, 89, 190, 28, 66, 3, 72, 8, 162, 179, 22, 71, 2, 89, 246, 30, 65, 3,
79, 42, 82, 81, 196, 1, 11, 83, 73, 71, 78, 32, 67, 79, 69, 78, 71, 32,
50, 76, 3, 82, 26, 82, 65, 44, 6, 79, 79, 32, 84, 89, 80, 34, 85, 178,
195, 20, 73, 199, 140, 2, 69, 8, 190, 208, 22, 65, 2, 73, 2, 81, 3, 85,
4, 11, 69, 4, 199, 149, 10, 32, 9, 166, 192, 7, 85, 207, 143, 15, 75, 8,
18, 81, 31, 82, 4, 186, 207, 22, 69, 3, 85, 4, 131, 190, 18, 89, 70, 138,
1, 67, 2, 75, 42, 78, 50, 80, 30, 83, 46, 84, 54, 68, 2, 76, 186, 173,
22, 77, 2, 82, 2, 86, 2, 89, 190, 28, 66, 2, 72, 3, 81, 8, 210, 1, 72,
174, 204, 22, 65, 3, 79, 8, 226, 174, 22, 71, 2, 78, 2, 89, 247, 30, 79,
6, 122, 72, 175, 204, 22, 79, 6, 150, 174, 22, 83, 190, 28, 72, 187, 2,
65, 12, 50, 72, 0, 2, 84, 72, 174, 204, 22, 65, 3, 79, 4, 170, 204, 22,
65, 3, 79, 130, 1, 60, 4, 73, 71, 78, 32, 221, 6, 6, 89, 77, 66, 79, 76,
32, 46, 202, 2, 65, 104, 10, 83, 65, 77, 89, 79, 75, 32, 83, 65, 78, 22,
66, 118, 67, 86, 75, 74, 82, 54, 84, 188, 229, 4, 3, 76, 69, 75, 168, 11,
6, 80, 72, 78, 65, 69, 75, 224, 232, 10, 10, 89, 85, 85, 75, 65, 76, 69,
65, 80, 73, 244, 243, 1, 3, 78, 73, 75, 236, 171, 3, 9, 77, 85, 85, 83,
73, 75, 65, 84, 79, 141, 15, 4, 86, 73, 82, 73, 6, 100, 9, 86, 65, 75,
82, 65, 72, 65, 83, 65, 232, 145, 18, 4, 84, 84, 72, 65, 173, 145, 4, 2,
72, 83, 2, 187, 197, 22, 78, 8, 38, 65, 129, 188, 21, 3, 69, 89, 89, 6,
174, 6, 84, 216, 1, 2, 78, 84, 185, 243, 20, 6, 82, 73, 89, 79, 79, 83,
4, 248, 155, 7, 12, 65, 77, 78, 85, 67, 32, 80, 73, 73, 32, 75, 85, 183,
228, 12, 79, 6, 188, 221, 11, 2, 65, 75, 226, 156, 9, 72, 205, 82, 4, 79,
79, 77, 85, 4, 130, 221, 11, 79, 137, 235, 5, 4, 69, 65, 72, 77, 4, 180,
178, 21, 4, 82, 73, 73, 83, 217, 9, 8, 79, 65, 78, 68, 65, 75, 72, 73,
84, 128, 1, 3, 68, 65, 80, 92, 10, 76, 69, 75, 32, 65, 84, 84, 65, 75,
32, 182, 1, 80, 72, 5, 84, 85, 84, 69, 89, 78, 66, 47, 77, 24, 22, 45,
223, 3, 32, 20, 30, 80, 238, 2, 66, 47, 77, 8, 138, 3, 73, 37, 3, 82, 65,
77, 20, 50, 80, 98, 66, 186, 150, 11, 77, 219, 219, 10, 83, 12, 36, 3,
82, 65, 77, 223, 174, 22, 73, 11, 11, 45, 8, 42, 66, 186, 150, 11, 77,
251, 228, 8, 80, 4, 142, 242, 21, 85, 151, 60, 69, 26, 44, 2, 65, 84, 44,
3, 82, 65, 77, 91, 73, 2, 21, 3, 72, 65, 77, 2, 175, 190, 16, 65, 20, 18,
45, 119, 32, 16, 34, 66, 32, 2, 80, 73, 15, 77, 8, 30, 69, 37, 3, 85, 79,
78, 4, 35, 73, 4, 21, 3, 85, 79, 89, 4, 11, 32, 4, 34, 82, 189, 138, 22,
2, 75, 79, 2, 195, 149, 21, 79, 42, 76, 10, 73, 78, 72, 69, 82, 69, 78,
84, 32, 65, 29, 5, 83, 73, 71, 78, 32, 4, 238, 190, 22, 65, 3, 81, 38,
102, 65, 54, 73, 30, 79, 38, 89, 216, 254, 2, 5, 67, 79, 69, 78, 71, 182,
172, 7, 85, 239, 145, 12, 69, 10, 194, 180, 3, 65, 170, 137, 19, 69, 2,
73, 3, 85, 7, 182, 189, 22, 69, 3, 73, 6, 154, 189, 22, 69, 2, 77, 3, 79,
7, 246, 188, 22, 65, 3, 89, 130, 1, 146, 1, 68, 88, 7, 76, 69, 84, 84,
69, 82, 32, 170, 2, 83, 160, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71,
78, 32, 238, 237, 15, 87, 231, 85, 65, 6, 48, 6, 79, 85, 66, 76, 69, 32,
155, 219, 18, 65, 4, 134, 168, 10, 83, 135, 179, 8, 68, 90, 234, 1, 83,
254, 4, 66, 42, 71, 146, 141, 6, 68, 166, 145, 12, 74, 182, 55, 65, 150,
1, 84, 198, 208, 1, 76, 226, 195, 1, 78, 126, 67, 2, 75, 2, 80, 138, 69,
72, 2, 77, 2, 81, 2, 82, 2, 86, 2, 89, 186, 2, 69, 2, 73, 2, 79, 3, 85,
4, 26, 72, 231, 184, 22, 65, 2, 209, 248, 21, 3, 79, 82, 84, 12, 40, 4,
73, 71, 78, 32, 159, 165, 10, 69, 10, 54, 83, 226, 154, 18, 78, 154, 67,
86, 243, 148, 3, 65, 4, 26, 72, 251, 179, 17, 85, 2, 11, 65, 2, 179, 146,
22, 68, 18, 190, 240, 3, 86, 198, 239, 14, 65, 222, 202, 1, 73, 198, 140,
2, 69, 2, 79, 3, 85, 138, 1, 100, 7, 76, 69, 84, 84, 69, 82, 32, 176, 2,
5, 83, 73, 71, 78, 32, 230, 194, 16, 86, 203, 252, 3, 68, 94, 222, 1, 66,
42, 71, 146, 141, 6, 68, 254, 143, 12, 74, 222, 56, 65, 118, 82, 34, 84,
230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 126, 67, 2, 75, 2, 80, 2,
83, 138, 69, 72, 2, 76, 2, 77, 2, 86, 2, 89, 186, 2, 69, 3, 79, 6, 202,
177, 22, 66, 2, 72, 187, 2, 65, 6, 162, 177, 22, 71, 2, 72, 187, 2, 65,
6, 178, 150, 18, 78, 154, 67, 86, 243, 148, 3, 65, 136, 1, 140, 1, 8, 82,
65, 84, 32, 82, 65, 73, 32, 216, 3, 2, 83, 83, 208, 247, 20, 4, 87, 73,
70, 82, 202, 47, 80, 240, 93, 2, 77, 79, 191, 18, 84, 116, 140, 1, 7, 76,
69, 84, 84, 69, 82, 32, 172, 1, 5, 83, 73, 71, 78, 32, 92, 11, 86, 79,
87, 69, 76, 32, 83, 73, 71, 78, 32, 223, 237, 11, 68, 64, 142, 211, 18,
68, 114, 84, 206, 223, 1, 78, 214, 181, 1, 66, 2, 67, 2, 71, 2, 74, 2,
75, 2, 80, 2, 83, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 86, 2, 89, 187, 2,
65, 12, 184, 209, 9, 3, 84, 79, 78, 0, 2, 89, 85, 190, 252, 1, 83, 198,
156, 10, 65, 239, 1, 86, 16, 182, 215, 18, 65, 130, 151, 3, 85, 162, 64,
69, 2, 73, 3, 79, 13, 40, 4, 73, 78, 71, 32, 183, 236, 21, 32, 8, 96, 4,
70, 65, 67, 69, 177, 147, 14, 14, 67, 65, 84, 32, 70, 65, 67, 69, 32, 87,
73, 84, 72, 32, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 158, 146, 14, 83,
159, 155, 5, 67, 4, 232, 167, 18, 3, 69, 69, 76, 171, 232, 3, 79, 4, 40,
4, 82, 69, 65, 78, 207, 137, 22, 65, 2, 33, 6, 32, 83, 84, 65, 78, 68, 2,
193, 250, 18, 2, 65, 82, 2, 11, 79, 2, 171, 169, 10, 78, 200, 43, 154, 1,
65, 178, 233, 1, 69, 198, 62, 73, 226, 83, 79, 206, 33, 85, 94, 89, 138,
226, 7, 82, 232, 195, 9, 5, 32, 66, 32, 66, 65, 142, 163, 1, 76, 239, 66,
70, 134, 23, 142, 1, 66, 44, 6, 67, 82, 79, 83, 83, 69, 46, 68, 58, 78,
64, 2, 79, 32, 222, 11, 82, 236, 21, 4, 83, 84, 32, 81, 77, 4, 84, 73,
78, 32, 4, 228, 194, 14, 2, 32, 67, 155, 218, 6, 69, 2, 137, 255, 16, 6,
32, 83, 84, 73, 67, 75, 4, 148, 255, 12, 5, 89, 32, 66, 69, 69, 247, 234,
8, 68, 4, 178, 202, 9, 68, 161, 241, 10, 7, 71, 85, 65, 71, 69, 32, 84,
174, 1, 200, 2, 3, 72, 79, 32, 28, 7, 76, 69, 84, 84, 69, 82, 32, 214, 5,
83, 148, 1, 9, 84, 79, 78, 69, 32, 77, 65, 73, 32, 84, 11, 86, 79, 87,
69, 76, 32, 83, 73, 71, 78, 32, 228, 170, 4, 2, 75, 79, 224, 130, 13, 2,
89, 65, 230, 199, 2, 69, 170, 51, 68, 212, 138, 1, 7, 67, 65, 78, 67, 69,
76, 76, 221, 68, 6, 78, 73, 71, 71, 65, 72, 4, 186, 133, 22, 77, 3, 78,
94, 176, 1, 3, 70, 79, 32, 78, 75, 96, 2, 76, 79, 50, 80, 154, 1, 83, 86,
84, 30, 72, 162, 161, 16, 78, 234, 222, 5, 66, 2, 67, 2, 68, 2, 77, 2,
82, 2, 87, 2, 89, 247, 30, 79, 8, 42, 70, 250, 174, 15, 83, 175, 182, 5,
84, 4, 210, 210, 21, 79, 155, 62, 65, 10, 26, 72, 251, 161, 22, 79, 8,
32, 3, 77, 85, 32, 231, 2, 79, 4, 142, 201, 21, 78, 211, 57, 71, 7, 17,
2, 32, 76, 4, 166, 208, 21, 73, 67, 79, 30, 52, 4, 65, 76, 73, 32, 210,
1, 72, 255, 158, 22, 79, 24, 230, 200, 6, 68, 34, 84, 206, 6, 78, 210,
211, 13, 66, 2, 67, 2, 71, 2, 74, 147, 219, 1, 76, 8, 52, 9, 65, 78, 83,
75, 82, 73, 84, 32, 83, 71, 79, 4, 250, 156, 22, 72, 3, 83, 6, 26, 72,
255, 158, 22, 79, 4, 11, 79, 4, 11, 32, 4, 166, 171, 15, 83, 175, 182, 5,
84, 6, 112, 14, 69, 77, 73, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32,
209, 195, 18, 8, 73, 71, 78, 32, 80, 65, 76, 73, 4, 134, 197, 21, 78,
211, 57, 76, 8, 50, 84, 132, 163, 17, 2, 67, 65, 223, 246, 4, 69, 4, 130,
254, 21, 72, 247, 30, 73, 32, 106, 65, 44, 5, 77, 65, 73, 32, 75, 166,
138, 18, 89, 162, 58, 85, 186, 202, 1, 69, 2, 73, 199, 140, 2, 79, 11,
234, 155, 22, 65, 2, 73, 2, 77, 3, 89, 4, 222, 203, 21, 65, 3, 79, 166,
1, 32, 2, 71, 69, 255, 147, 21, 73, 164, 1, 26, 32, 171, 251, 13, 82,
160, 1, 254, 1, 66, 44, 4, 71, 82, 69, 69, 22, 79, 250, 1, 84, 190, 242,
11, 68, 36, 2, 85, 80, 164, 193, 3, 12, 76, 69, 70, 84, 32, 84, 82, 73,
65, 78, 71, 76, 200, 203, 4, 5, 80, 85, 82, 80, 76, 12, 3, 82, 69, 68, 0,
6, 89, 69, 76, 76, 79, 87, 179, 66, 67, 10, 40, 3, 82, 79, 87, 201, 1, 2,
76, 85, 4, 227, 129, 20, 78, 10, 48, 3, 78, 69, 32, 129, 1, 4, 82, 65,
78, 71, 4, 240, 161, 8, 5, 68, 79, 84, 32, 79, 133, 234, 2, 18, 82, 73,
78, 71, 32, 79, 86, 69, 82, 32, 84, 87, 79, 32, 82, 73, 78, 71, 6, 11,
69, 6, 11, 32, 6, 178, 194, 20, 67, 162, 21, 68, 155, 28, 83, 116, 156,
1, 3, 87, 79, 32, 108, 10, 89, 80, 69, 32, 80, 73, 69, 67, 69, 32, 197,
208, 18, 17, 82, 73, 80, 76, 69, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32,
66, 65, 4, 242, 241, 17, 68, 141, 93, 19, 82, 73, 78, 71, 83, 32, 79, 86,
69, 82, 32, 79, 78, 69, 32, 82, 73, 78, 71, 110, 182, 1, 67, 136, 2, 9,
68, 73, 65, 71, 79, 78, 65, 76, 32, 218, 1, 76, 186, 2, 82, 158, 1, 83,
204, 3, 6, 85, 80, 80, 69, 82, 32, 145, 2, 9, 86, 69, 82, 84, 69, 88, 32,
79, 70, 14, 80, 9, 69, 78, 84, 82, 69, 32, 79, 70, 32, 73, 7, 82, 79, 83,
83, 66, 65, 82, 8, 252, 8, 6, 90, 32, 87, 73, 84, 72, 138, 137, 22, 75,
2, 88, 3, 89, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 40, 3, 76, 79, 87, 1,
3, 85, 80, 80, 2, 137, 205, 10, 2, 69, 82, 12, 48, 6, 85, 80, 80, 69, 82,
32, 167, 230, 9, 76, 8, 56, 4, 76, 69, 70, 84, 225, 230, 9, 4, 82, 73,
71, 72, 5, 11, 32, 2, 21, 3, 65, 78, 68, 2, 17, 2, 32, 76, 2, 17, 2, 79,
87, 2, 209, 220, 21, 2, 69, 82, 26, 48, 5, 79, 87, 69, 82, 32, 129, 3, 2,
69, 70, 24, 84, 5, 76, 69, 70, 84, 32, 56, 6, 82, 73, 71, 72, 84, 32,
158, 6, 72, 179, 1, 84, 8, 22, 65, 207, 7, 67, 4, 194, 1, 78, 135, 226,
20, 82, 10, 22, 65, 151, 7, 67, 6, 192, 1, 13, 78, 68, 32, 85, 80, 80,
69, 82, 32, 82, 73, 71, 72, 249, 211, 19, 2, 82, 67, 4, 44, 4, 65, 73,
83, 69, 77, 3, 73, 71, 72, 2, 53, 11, 68, 32, 85, 80, 80, 69, 82, 32, 76,
69, 70, 2, 231, 139, 19, 84, 2, 137, 141, 21, 3, 84, 32, 65, 34, 48, 5,
72, 79, 82, 84, 32, 77, 3, 84, 69, 77, 4, 40, 3, 76, 79, 87, 1, 3, 85,
80, 80, 2, 217, 4, 4, 69, 82, 32, 84, 31, 44, 6, 32, 87, 73, 84, 72, 32,
171, 1, 45, 8, 44, 5, 76, 69, 70, 84, 32, 30, 82, 59, 67, 4, 82, 67, 199,
221, 10, 74, 2, 21, 3, 73, 71, 72, 2, 11, 84, 2, 17, 2, 32, 67, 2, 169,
229, 20, 4, 82, 79, 83, 83, 20, 48, 2, 49, 50, 22, 50, 26, 52, 203, 189,
11, 51, 5, 183, 223, 14, 51, 9, 11, 51, 7, 11, 52, 5, 239, 135, 22, 53,
18, 62, 72, 96, 3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 83, 84, 4, 65, 14,
65, 76, 70, 32, 86, 69, 82, 84, 69, 88, 32, 79, 70, 32, 4, 214, 134, 22,
77, 3, 87, 6, 17, 2, 84, 32, 6, 26, 67, 175, 134, 19, 65, 4, 202, 92, 82,
235, 168, 17, 79, 2, 157, 250, 8, 3, 69, 82, 77, 2, 187, 231, 14, 32, 6,
53, 11, 85, 65, 82, 84, 69, 82, 32, 77, 79, 79, 78, 7, 223, 240, 6, 32,
158, 20, 150, 1, 67, 224, 46, 18, 69, 80, 73, 71, 82, 65, 80, 72, 73, 67,
32, 76, 69, 84, 84, 69, 82, 32, 252, 1, 7, 76, 69, 84, 84, 69, 82, 32,
247, 12, 83, 206, 7, 56, 8, 65, 80, 73, 84, 65, 76, 32, 76, 243, 191, 20,
82, 204, 7, 76, 6, 69, 84, 84, 69, 82, 32, 169, 45, 8, 73, 71, 65, 84,
85, 82, 69, 32, 200, 7, 154, 2, 65, 158, 3, 66, 154, 1, 67, 254, 1, 68,
186, 2, 69, 174, 2, 70, 82, 71, 194, 1, 72, 146, 1, 73, 154, 2, 74, 118,
75, 126, 76, 234, 2, 77, 114, 78, 134, 2, 79, 198, 2, 80, 114, 81, 62,
82, 190, 2, 83, 130, 3, 84, 142, 3, 85, 234, 1, 86, 146, 1, 87, 118, 88,
50, 89, 167, 1, 90, 93, 172, 1, 6, 32, 87, 73, 84, 72, 32, 166, 1, 69,
246, 65, 78, 176, 158, 14, 6, 70, 82, 73, 67, 65, 78, 158, 193, 3, 76,
210, 183, 2, 86, 186, 164, 1, 65, 2, 79, 2, 85, 3, 89, 66, 246, 64, 66,
34, 68, 108, 3, 82, 73, 78, 242, 33, 77, 250, 21, 67, 150, 50, 72, 158,
1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 142, 175, 13, 84, 219,
183, 3, 83, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 206, 184, 1, 65, 239,
199, 3, 77, 21, 60, 6, 32, 87, 73, 84, 72, 32, 190, 68, 82, 187, 147, 21,
69, 14, 154, 67, 84, 138, 60, 70, 210, 57, 76, 182, 159, 16, 68, 170,
206, 2, 72, 247, 165, 1, 83, 33, 108, 6, 32, 87, 73, 84, 72, 32, 204, 70,
7, 76, 79, 83, 69, 68, 32, 73, 54, 85, 154, 228, 20, 79, 139, 60, 72, 20,
94, 67, 198, 181, 1, 65, 154, 233, 3, 80, 206, 133, 15, 72, 182, 50, 66,
242, 34, 68, 211, 80, 83, 8, 198, 68, 69, 190, 113, 73, 227, 156, 19, 65,
35, 76, 6, 32, 87, 73, 84, 72, 32, 178, 1, 90, 25, 6, 79, 85, 66, 76, 69,
32, 24, 78, 83, 226, 15, 67, 202, 47, 84, 218, 117, 76, 182, 159, 16, 68,
171, 206, 2, 72, 8, 92, 13, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82,
32, 90, 150, 138, 1, 72, 235, 189, 20, 84, 5, 209, 72, 2, 32, 87, 4, 254,
71, 87, 187, 185, 10, 84, 91, 104, 6, 32, 87, 73, 84, 72, 32, 152, 1, 2,
90, 72, 134, 76, 71, 206, 152, 17, 84, 210, 143, 4, 83, 63, 78, 70, 254,
73, 67, 158, 2, 68, 194, 16, 84, 158, 23, 77, 250, 1, 86, 238, 45, 72,
158, 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 171, 230,
16, 83, 7, 11, 32, 4, 138, 70, 87, 211, 8, 82, 9, 33, 6, 32, 87, 73, 84,
72, 32, 6, 242, 158, 20, 72, 166, 85, 68, 211, 80, 83, 35, 76, 6, 32, 87,
73, 84, 72, 32, 190, 81, 76, 230, 204, 18, 65, 147, 211, 2, 72, 20, 154,
84, 67, 250, 90, 65, 178, 174, 3, 66, 190, 25, 77, 226, 140, 4, 79, 154,
154, 11, 72, 166, 85, 68, 211, 80, 83, 29, 76, 6, 32, 87, 73, 84, 72, 32,
250, 126, 65, 198, 244, 7, 87, 247, 173, 12, 69, 20, 186, 82, 66, 34, 67,
46, 68, 178, 201, 19, 72, 247, 165, 1, 83, 59, 80, 6, 32, 87, 73, 84, 72,
32, 132, 88, 2, 78, 83, 198, 244, 20, 79, 207, 36, 83, 40, 138, 1, 68,
162, 83, 67, 242, 1, 77, 142, 1, 84, 130, 71, 72, 158, 1, 79, 198, 10,
71, 186, 2, 65, 246, 173, 3, 73, 62, 66, 171, 230, 16, 83, 10, 22, 79,
191, 83, 73, 6, 218, 121, 85, 131, 212, 18, 84, 11, 33, 6, 32, 87, 73,
84, 72, 32, 8, 42, 67, 174, 135, 18, 84, 219, 183, 3, 83, 4, 234, 170, 1,
73, 131, 223, 3, 82, 25, 33, 6, 32, 87, 73, 84, 72, 32, 22, 182, 89, 67,
34, 68, 50, 83, 222, 79, 65, 138, 1, 76, 198, 211, 7, 79, 155, 154, 11,
72, 41, 60, 6, 32, 87, 73, 84, 72, 32, 190, 94, 65, 231, 142, 21, 74, 32,
138, 1, 66, 36, 2, 68, 79, 52, 7, 77, 73, 68, 68, 76, 69, 32, 38, 83,
174, 2, 67, 182, 91, 72, 230, 72, 65, 138, 1, 76, 251, 219, 16, 84, 4,
170, 198, 12, 69, 143, 237, 8, 65, 6, 22, 85, 231, 91, 84, 2, 249, 241,
4, 2, 66, 76, 4, 230, 131, 18, 84, 159, 151, 3, 68, 4, 214, 2, 77, 211,
184, 21, 84, 19, 44, 6, 32, 87, 73, 84, 72, 32, 207, 94, 73, 10, 242,
165, 1, 65, 190, 160, 16, 68, 198, 60, 84, 231, 145, 2, 72, 33, 48, 6,
32, 87, 73, 84, 72, 32, 215, 233, 21, 74, 28, 102, 67, 44, 2, 83, 77,
178, 96, 76, 134, 65, 71, 186, 2, 65, 102, 68, 234, 211, 7, 79, 183, 136,
9, 84, 6, 190, 132, 1, 69, 22, 73, 231, 188, 19, 65, 2, 157, 233, 10, 10,
65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 101, 108, 6, 32, 87, 73, 84, 72,
32, 178, 103, 76, 138, 159, 4, 80, 218, 155, 9, 77, 134, 197, 7, 73, 2,
79, 3, 85, 84, 144, 1, 2, 76, 79, 34, 77, 226, 96, 67, 70, 68, 154, 2,
79, 38, 83, 66, 84, 106, 86, 222, 44, 72, 242, 12, 71, 186, 2, 65, 246,
173, 3, 73, 63, 66, 4, 158, 99, 78, 215, 130, 21, 79, 8, 154, 99, 65,
235, 159, 4, 73, 19, 44, 6, 32, 87, 73, 84, 72, 32, 155, 23, 72, 14, 242,
103, 70, 34, 83, 170, 56, 65, 230, 238, 18, 72, 167, 85, 68, 7, 33, 6,
32, 87, 73, 84, 72, 32, 4, 190, 105, 68, 39, 83, 43, 94, 32, 156, 1, 8,
69, 86, 69, 82, 83, 69, 68, 32, 216, 111, 3, 85, 77, 32, 167, 147, 4, 65,
28, 40, 5, 87, 73, 84, 72, 32, 215, 112, 82, 26, 134, 78, 67, 218, 29,
68, 170, 2, 84, 174, 48, 65, 138, 1, 76, 238, 172, 3, 73, 218, 166, 4,
79, 143, 192, 12, 83, 8, 218, 110, 72, 154, 156, 4, 79, 186, 199, 13, 67,
239, 143, 3, 69, 49, 136, 1, 6, 32, 87, 73, 84, 72, 32, 136, 1, 5, 77,
65, 76, 76, 32, 240, 115, 2, 65, 76, 234, 1, 72, 152, 2, 2, 73, 71, 167,
138, 4, 67, 32, 86, 67, 138, 112, 65, 118, 68, 138, 1, 83, 174, 1, 86,
190, 252, 7, 79, 155, 154, 11, 72, 10, 226, 112, 65, 230, 10, 69, 82, 79,
203, 31, 73, 4, 132, 168, 19, 11, 81, 32, 87, 73, 84, 72, 32, 72, 79, 79,
75, 173, 247, 1, 7, 67, 65, 80, 73, 84, 65, 76, 59, 136, 1, 6, 32, 87,
73, 84, 72, 32, 168, 1, 6, 85, 82, 78, 69, 68, 32, 188, 123, 2, 72, 79,
176, 1, 2, 79, 78, 74, 82, 243, 222, 20, 90, 22, 82, 67, 50, 68, 254,
152, 1, 76, 234, 237, 3, 82, 246, 255, 14, 72, 247, 165, 1, 83, 8, 202,
120, 69, 22, 73, 62, 79, 171, 188, 19, 65, 6, 190, 142, 1, 73, 255, 169,
16, 79, 18, 246, 39, 73, 242, 138, 3, 65, 190, 169, 18, 72, 2, 75, 2, 76,
2, 77, 2, 84, 3, 86, 79, 26, 32, 183, 135, 5, 80, 74, 44, 5, 87, 73, 84,
72, 32, 199, 183, 20, 66, 72, 166, 132, 1, 67, 74, 68, 150, 2, 72, 170,
1, 77, 134, 1, 79, 142, 1, 84, 186, 9, 71, 186, 2, 65, 246, 173, 3, 73,
62, 66, 234, 225, 14, 82, 195, 132, 2, 83, 23, 88, 6, 32, 87, 73, 84, 72,
32, 178, 139, 1, 73, 66, 79, 134, 189, 19, 69, 151, 144, 1, 89, 8, 226,
138, 1, 68, 210, 230, 16, 84, 231, 145, 2, 72, 19, 48, 6, 32, 87, 73, 84,
72, 32, 243, 151, 7, 89, 14, 190, 144, 1, 67, 18, 68, 70, 71, 186, 2, 65,
231, 238, 18, 72, 7, 201, 140, 1, 7, 32, 87, 73, 84, 72, 32, 68, 29, 48,
6, 32, 87, 73, 84, 72, 32, 219, 169, 17, 79, 24, 154, 143, 1, 67, 18, 68,
70, 71, 22, 72, 42, 76, 254, 1, 65, 238, 199, 3, 77, 150, 149, 13, 84,
219, 183, 3, 83, 25, 33, 6, 32, 87, 73, 84, 72, 32, 22, 254, 56, 67, 150,
88, 65, 102, 68, 38, 76, 34, 83, 242, 231, 3, 80, 207, 133, 15, 72, 4,
254, 213, 10, 73, 195, 232, 10, 79, 12, 128, 1, 5, 65, 82, 67, 72, 65,
30, 73, 64, 9, 82, 69, 86, 69, 82, 83, 69, 68, 32, 201, 211, 10, 7, 83,
73, 68, 69, 87, 65, 89, 2, 217, 246, 13, 2, 73, 67, 4, 220, 107, 5, 78,
86, 69, 82, 84, 149, 216, 14, 3, 32, 76, 79, 4, 142, 211, 21, 70, 3, 80,
138, 1, 242, 2, 65, 36, 2, 66, 73, 152, 1, 21, 73, 78, 86, 69, 82, 84,
69, 68, 32, 71, 76, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 72, 2, 80,
72, 16, 2, 82, 69, 222, 1, 83, 132, 8, 3, 84, 87, 79, 182, 20, 87, 128,
170, 4, 2, 68, 69, 148, 5, 2, 76, 65, 206, 11, 71, 212, 196, 15, 20, 86,
79, 73, 67, 69, 68, 32, 76, 65, 82, 89, 78, 71, 69, 65, 76, 32, 83, 80,
73, 199, 119, 89, 4, 230, 187, 4, 76, 183, 196, 16, 73, 6, 76, 7, 76, 65,
66, 73, 65, 76, 32, 29, 8, 68, 69, 78, 84, 65, 76, 32, 80, 4, 26, 80,
239, 206, 4, 67, 2, 153, 146, 16, 6, 69, 82, 67, 85, 83, 83, 7, 33, 6,
32, 87, 73, 84, 72, 32, 4, 234, 243, 4, 67, 183, 170, 16, 83, 2, 207, 81,
65, 8, 104, 7, 86, 69, 82, 83, 69, 68, 32, 233, 243, 4, 13, 84, 82, 79,
70, 76, 69, 88, 32, 67, 76, 73, 67, 75, 4, 80, 3, 69, 83, 72, 161, 8, 12,
71, 76, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 2, 213, 133, 1, 2, 32,
76, 96, 172, 1, 13, 77, 65, 76, 76, 32, 67, 65, 80, 73, 84, 65, 76, 32,
244, 112, 10, 84, 82, 69, 84, 67, 72, 69, 68, 32, 67, 185, 198, 19, 10,
73, 78, 79, 76, 79, 71, 73, 67, 65, 76, 90, 230, 1, 69, 30, 73, 22, 76,
74, 79, 42, 82, 126, 84, 254, 182, 4, 66, 214, 41, 71, 234, 165, 16, 65,
162, 64, 67, 2, 68, 2, 70, 2, 72, 2, 74, 2, 75, 2, 77, 2, 78, 2, 80, 2,
81, 2, 83, 2, 85, 2, 86, 2, 87, 2, 89, 3, 90, 7, 226, 199, 21, 84, 3, 90,
5, 147, 220, 4, 78, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 238, 225, 8, 66,
183, 182, 12, 83, 9, 238, 95, 80, 142, 232, 20, 69, 3, 85, 11, 92, 8, 69,
86, 69, 82, 83, 69, 68, 32, 236, 128, 1, 5, 32, 87, 73, 84, 72, 179, 181,
20, 85, 4, 242, 198, 21, 78, 3, 82, 13, 33, 6, 85, 82, 78, 69, 68, 32,
10, 178, 198, 21, 69, 2, 71, 2, 75, 2, 77, 3, 82, 186, 11, 136, 1, 5, 77,
65, 76, 76, 32, 145, 131, 1, 22, 85, 66, 83, 67, 82, 73, 80, 84, 32, 83,
77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 150, 11, 76, 15, 67, 65,
80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 43, 76, 4, 18, 73, 3,
85, 2, 255, 226, 4, 32, 146, 11, 80, 6, 69, 84, 84, 69, 82, 32, 161, 128,
1, 8, 73, 71, 65, 84, 85, 82, 69, 32, 128, 11, 182, 2, 65, 190, 5, 66,
198, 3, 67, 186, 4, 68, 182, 4, 69, 174, 9, 70, 214, 1, 71, 162, 2, 72,
230, 2, 73, 166, 7, 74, 182, 1, 75, 178, 2, 76, 206, 6, 77, 178, 2, 78,
218, 3, 79, 242, 8, 80, 218, 2, 81, 174, 1, 82, 142, 8, 83, 250, 10, 84,
246, 13, 85, 218, 9, 86, 130, 3, 87, 110, 88, 226, 2, 89, 171, 3, 90,
101, 118, 32, 198, 3, 69, 82, 78, 192, 226, 4, 4, 76, 80, 72, 65, 222,
180, 15, 86, 186, 164, 1, 65, 2, 79, 2, 85, 3, 89, 72, 88, 5, 87, 73, 84,
72, 32, 157, 229, 5, 11, 82, 69, 86, 69, 82, 83, 69, 68, 45, 83, 67, 70,
150, 1, 66, 34, 68, 54, 82, 170, 34, 77, 250, 21, 67, 150, 50, 72, 158,
1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73, 142, 175, 13, 84, 219,
183, 3, 83, 12, 161, 106, 4, 82, 69, 86, 69, 12, 22, 79, 151, 57, 73, 8,
214, 57, 84, 211, 13, 85, 10, 26, 73, 175, 231, 4, 69, 8, 26, 78, 179,
174, 4, 71, 6, 17, 2, 71, 32, 6, 236, 58, 4, 65, 66, 79, 86, 251, 223,
18, 66, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 242, 116, 71, 186, 2, 65,
239, 199, 3, 77, 2, 181, 198, 10, 7, 71, 76, 73, 67, 65, 78, 65, 41, 140,
1, 6, 32, 87, 73, 84, 72, 32, 130, 1, 65, 108, 11, 76, 65, 67, 75, 76,
69, 84, 84, 69, 82, 32, 38, 82, 174, 201, 4, 79, 143, 202, 16, 69, 18,
110, 84, 138, 60, 70, 210, 57, 76, 230, 224, 3, 77, 174, 7, 80, 166, 183,
12, 68, 170, 206, 2, 72, 247, 165, 1, 83, 2, 255, 7, 79, 8, 64, 5, 82,
82, 69, 68, 32, 161, 81, 6, 83, 69, 76, 73, 78, 69, 6, 182, 32, 65, 154,
152, 21, 69, 3, 79, 6, 242, 195, 4, 79, 183, 244, 16, 69, 2, 181, 186,
10, 4, 79, 75, 69, 78, 47, 108, 6, 32, 87, 73, 84, 72, 32, 196, 1, 2, 72,
73, 92, 6, 76, 79, 83, 69, 68, 32, 90, 85, 155, 228, 20, 79, 24, 102, 67,
182, 113, 65, 154, 233, 3, 80, 218, 5, 82, 246, 255, 14, 72, 182, 50, 66,
242, 34, 68, 211, 80, 83, 10, 54, 69, 190, 113, 73, 150, 251, 6, 85, 207,
161, 12, 65, 4, 245, 51, 5, 68, 73, 76, 76, 65, 7, 49, 10, 32, 87, 73,
84, 72, 32, 76, 79, 87, 32, 4, 162, 107, 82, 45, 4, 76, 69, 70, 84, 8,
34, 73, 18, 79, 159, 200, 4, 82, 2, 163, 88, 78, 4, 130, 221, 4, 80, 151,
146, 9, 77, 4, 37, 7, 65, 84, 82, 73, 76, 76, 79, 5, 209, 142, 13, 5, 32,
87, 73, 84, 72, 73, 96, 6, 32, 87, 73, 84, 72, 32, 182, 1, 69, 34, 79,
178, 1, 90, 178, 213, 4, 66, 187, 201, 16, 85, 32, 98, 83, 34, 84, 238,
32, 67, 226, 45, 77, 170, 31, 76, 138, 217, 3, 72, 138, 15, 80, 167, 183,
12, 68, 4, 134, 68, 72, 235, 189, 20, 84, 4, 26, 79, 215, 209, 19, 65, 2,
219, 141, 20, 80, 8, 246, 78, 90, 207, 189, 20, 76, 16, 60, 6, 84, 76,
69, 83, 83, 32, 49, 5, 85, 66, 76, 69, 32, 8, 26, 74, 151, 176, 21, 73,
7, 167, 198, 4, 32, 8, 42, 87, 142, 202, 4, 82, 175, 239, 5, 84, 2, 163,
239, 6, 89, 11, 11, 32, 8, 26, 87, 151, 198, 4, 68, 2, 169, 90, 5, 73,
84, 72, 32, 67, 119, 112, 6, 32, 87, 73, 84, 72, 32, 214, 4, 71, 72, 2,
78, 71, 68, 2, 83, 72, 164, 1, 2, 90, 72, 159, 150, 17, 84, 76, 182, 1,
67, 158, 2, 68, 110, 78, 214, 15, 84, 158, 23, 77, 250, 1, 86, 190, 3,
70, 178, 42, 72, 158, 1, 79, 198, 10, 71, 186, 2, 65, 246, 173, 3, 73,
62, 66, 194, 64, 82, 235, 165, 16, 83, 24, 92, 6, 69, 68, 73, 76, 76, 65,
32, 9, 73, 82, 67, 85, 77, 70, 76, 69, 88, 151, 132, 20, 65, 5, 169, 149,
4, 3, 32, 65, 78, 19, 11, 32, 16, 40, 4, 65, 78, 68, 32, 167, 137, 19,
66, 14, 162, 86, 67, 130, 2, 72, 226, 11, 71, 186, 2, 65, 238, 199, 3,
77, 158, 170, 4, 68, 251, 234, 8, 84, 12, 22, 79, 227, 98, 73, 10, 28, 2,
84, 32, 227, 51, 85, 8, 192, 88, 5, 65, 66, 79, 86, 69, 199, 175, 18, 66,
2, 131, 154, 14, 79, 4, 157, 134, 7, 13, 89, 80, 84, 79, 76, 79, 71, 73,
67, 65, 76, 32, 65, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 158, 195, 4, 67,
231, 9, 80, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 88, 10, 68, 79, 85,
66, 76, 69, 32, 66, 65, 82, 230, 203, 4, 80, 142, 1, 67, 207, 4, 82, 5,
217, 204, 4, 4, 32, 65, 78, 68, 15, 11, 32, 12, 38, 82, 37, 5, 87, 73,
84, 72, 32, 2, 157, 150, 14, 4, 69, 86, 69, 82, 10, 54, 67, 178, 202, 4,
80, 218, 5, 82, 195, 158, 14, 84, 4, 234, 220, 7, 85, 207, 161, 12, 65,
17, 84, 6, 32, 87, 73, 84, 72, 32, 73, 11, 69, 78, 71, 32, 68, 73, 71,
82, 65, 80, 72, 10, 134, 194, 4, 77, 174, 7, 80, 206, 133, 15, 72, 166,
85, 68, 211, 80, 83, 5, 209, 168, 18, 8, 32, 87, 73, 84, 72, 32, 84, 82,
37, 72, 6, 32, 87, 73, 84, 72, 32, 126, 76, 230, 204, 18, 65, 147, 211,
2, 72, 22, 218, 3, 67, 250, 90, 65, 178, 174, 3, 66, 190, 25, 77, 174,
33, 80, 182, 235, 3, 79, 154, 154, 11, 72, 166, 85, 68, 211, 80, 83, 8,
33, 6, 79, 84, 84, 65, 76, 32, 8, 142, 205, 18, 83, 250, 212, 2, 65, 2,
73, 3, 85, 39, 140, 1, 6, 32, 87, 73, 84, 72, 32, 150, 45, 65, 232, 25,
12, 79, 79, 75, 69, 68, 32, 83, 67, 72, 87, 65, 32, 174, 243, 3, 69, 159,
230, 16, 86, 24, 86, 66, 34, 67, 46, 68, 214, 91, 76, 146, 232, 3, 80,
206, 133, 15, 72, 247, 165, 1, 83, 2, 205, 147, 13, 3, 82, 69, 86, 6,
158, 59, 69, 154, 32, 73, 227, 156, 19, 65, 8, 234, 87, 73, 226, 190, 3,
69, 203, 228, 12, 79, 75, 80, 6, 32, 87, 73, 84, 72, 32, 222, 4, 78, 188,
1, 2, 79, 84, 135, 152, 21, 83, 48, 178, 1, 67, 34, 68, 210, 1, 77, 64,
6, 79, 71, 79, 78, 69, 75, 78, 84, 130, 71, 72, 226, 11, 71, 186, 2, 65,
246, 173, 3, 73, 62, 66, 144, 64, 6, 83, 84, 82, 79, 75, 69, 51, 82, 4,
210, 88, 73, 227, 156, 19, 65, 14, 18, 73, 47, 79, 4, 217, 26, 7, 65, 69,
82, 69, 83, 73, 83, 10, 28, 2, 84, 32, 215, 37, 85, 8, 64, 10, 65, 66,
79, 86, 69, 32, 65, 78, 68, 32, 187, 249, 18, 66, 6, 150, 84, 71, 186, 2,
65, 131, 221, 16, 84, 4, 29, 5, 65, 67, 82, 79, 78, 5, 217, 36, 4, 32,
65, 78, 68, 7, 145, 73, 15, 32, 65, 78, 68, 32, 68, 79, 84, 32, 65, 66,
79, 86, 69, 32, 4, 21, 3, 73, 76, 68, 4, 151, 142, 5, 69, 16, 46, 83, 93,
7, 86, 69, 82, 84, 69, 68, 32, 12, 29, 5, 85, 76, 65, 82, 32, 12, 238,
152, 21, 68, 2, 70, 2, 71, 2, 82, 2, 83, 3, 84, 4, 26, 65, 199, 129, 21,
79, 2, 143, 188, 17, 76, 6, 206, 163, 4, 65, 129, 188, 6, 5, 73, 70, 73,
69, 68, 13, 33, 6, 32, 87, 73, 84, 72, 32, 10, 94, 67, 148, 180, 4, 13,
68, 79, 84, 32, 65, 66, 79, 86, 69, 32, 65, 78, 68, 187, 178, 16, 83, 6,
178, 82, 73, 130, 223, 3, 82, 227, 189, 15, 65, 29, 48, 6, 32, 87, 73,
84, 72, 32, 175, 147, 21, 82, 24, 98, 67, 34, 68, 50, 83, 222, 79, 65,
138, 1, 76, 146, 232, 3, 80, 182, 235, 3, 79, 155, 154, 11, 72, 4, 210,
48, 69, 251, 188, 19, 65, 6, 214, 70, 73, 182, 197, 3, 69, 151, 182, 4,
79, 4, 29, 5, 84, 82, 79, 75, 69, 5, 161, 25, 6, 32, 65, 78, 68, 32, 68,
79, 136, 1, 6, 32, 87, 73, 84, 72, 32, 250, 3, 65, 38, 69, 48, 5, 79, 78,
71, 32, 83, 130, 180, 4, 83, 2, 90, 186, 201, 16, 85, 219, 16, 74, 50,
178, 1, 66, 86, 67, 56, 2, 68, 79, 100, 3, 77, 73, 68, 130, 2, 72, 230,
72, 65, 138, 1, 76, 150, 224, 3, 73, 162, 1, 82, 222, 2, 70, 130, 4, 80,
234, 243, 12, 84, 219, 183, 3, 83, 6, 36, 3, 69, 76, 84, 167, 216, 20,
65, 5, 193, 181, 4, 6, 32, 65, 78, 68, 32, 80, 8, 166, 44, 69, 22, 73,
154, 155, 7, 85, 207, 161, 12, 65, 8, 38, 84, 25, 5, 85, 66, 76, 69, 32,
4, 141, 25, 2, 32, 66, 4, 242, 172, 4, 77, 175, 191, 15, 66, 8, 36, 4,
68, 76, 69, 32, 207, 44, 45, 6, 186, 167, 17, 84, 210, 150, 3, 82, 79,
68, 4, 173, 154, 4, 4, 77, 66, 68, 65, 6, 158, 181, 4, 90, 189, 138, 13,
3, 78, 73, 83, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 18, 68, 35, 72, 4,
206, 63, 73, 203, 205, 19, 79, 2, 197, 172, 4, 2, 73, 71, 27, 56, 6, 32,
87, 73, 84, 72, 32, 102, 73, 167, 251, 20, 85, 16, 138, 72, 65, 182, 223,
3, 67, 186, 2, 77, 174, 7, 80, 166, 183, 12, 68, 198, 60, 84, 231, 145,
2, 72, 6, 25, 4, 68, 68, 76, 69, 6, 76, 7, 45, 87, 69, 76, 83, 72, 32,
173, 145, 17, 6, 32, 83, 67, 79, 84, 83, 4, 190, 255, 19, 76, 211, 139,
1, 86, 49, 58, 32, 216, 2, 2, 71, 32, 130, 247, 20, 85, 219, 16, 74, 40,
88, 5, 87, 73, 84, 72, 32, 209, 142, 6, 11, 80, 82, 69, 67, 69, 68, 69,
68, 32, 66, 89, 38, 122, 67, 74, 76, 158, 37, 77, 234, 27, 71, 186, 2,
65, 102, 68, 182, 232, 3, 80, 218, 5, 82, 222, 229, 3, 79, 183, 136, 9,
84, 10, 170, 36, 69, 22, 73, 134, 255, 3, 82, 150, 156, 3, 85, 207, 161,
12, 65, 6, 132, 66, 3, 79, 78, 71, 202, 2, 73, 183, 239, 3, 69, 2, 25, 4,
87, 73, 84, 72, 2, 177, 224, 17, 5, 32, 84, 73, 76, 68, 115, 116, 6, 32,
87, 73, 84, 72, 32, 186, 6, 76, 52, 4, 80, 69, 78, 32, 174, 186, 13, 77,
134, 197, 7, 73, 2, 79, 3, 85, 86, 154, 1, 67, 70, 68, 152, 1, 2, 76, 79,
86, 77, 46, 79, 38, 83, 66, 84, 106, 86, 222, 44, 72, 242, 12, 71, 186,
2, 65, 246, 173, 3, 73, 62, 66, 195, 64, 82, 14, 172, 49, 9, 73, 82, 67,
85, 77, 70, 76, 69, 88, 159, 172, 19, 65, 14, 18, 73, 47, 79, 4, 221, 13,
7, 65, 69, 82, 69, 83, 73, 83, 10, 22, 84, 171, 47, 85, 6, 11, 32, 6,
140, 13, 5, 65, 66, 79, 86, 69, 223, 212, 18, 66, 6, 66, 78, 216, 208,
12, 6, 87, 32, 82, 73, 78, 71, 255, 177, 8, 79, 2, 159, 21, 71, 6, 11,
65, 6, 189, 2, 4, 67, 82, 79, 78, 4, 217, 11, 5, 71, 79, 78, 69, 75, 4,
25, 4, 84, 82, 79, 75, 4, 11, 69, 5, 213, 49, 2, 32, 65, 8, 25, 4, 73,
76, 68, 69, 9, 29, 5, 32, 65, 78, 68, 32, 6, 162, 47, 68, 142, 13, 65,
239, 199, 3, 77, 6, 81, 18, 69, 82, 84, 73, 67, 65, 76, 32, 76, 73, 78,
69, 32, 66, 69, 76, 79, 87, 7, 221, 43, 4, 32, 65, 78, 68, 2, 153, 136,
10, 8, 68, 32, 80, 79, 76, 73, 83, 72, 16, 26, 79, 131, 166, 4, 69, 13,
48, 6, 32, 87, 73, 84, 72, 32, 227, 254, 20, 69, 8, 210, 55, 71, 186, 2,
65, 242, 238, 3, 82, 235, 165, 16, 83, 25, 44, 6, 32, 87, 73, 84, 72, 32,
179, 1, 72, 18, 86, 70, 34, 83, 170, 56, 65, 238, 225, 3, 77, 174, 7, 80,
206, 133, 15, 72, 167, 85, 68, 2, 153, 196, 14, 3, 76, 79, 85, 6, 210,
28, 84, 209, 175, 12, 6, 81, 85, 73, 82, 82, 69, 4, 26, 65, 171, 252, 20,
73, 2, 193, 183, 5, 18, 82, 89, 78, 71, 69, 65, 76, 32, 86, 79, 73, 67,
69, 68, 32, 70, 82, 73, 13, 48, 6, 32, 87, 73, 84, 72, 32, 139, 161, 4,
80, 8, 42, 68, 16, 4, 72, 79, 79, 75, 23, 83, 2, 227, 44, 73, 5, 171,
195, 18, 32, 2, 197, 26, 6, 84, 82, 79, 75, 69, 32, 77, 90, 32, 228, 4,
8, 69, 86, 69, 82, 83, 69, 68, 32, 148, 2, 2, 85, 77, 179, 147, 4, 65,
46, 36, 4, 87, 73, 84, 72, 235, 6, 82, 44, 26, 32, 195, 190, 15, 79, 42,
166, 1, 67, 50, 68, 200, 1, 8, 70, 73, 83, 72, 72, 79, 79, 75, 66, 76,
34, 84, 142, 18, 77, 162, 30, 65, 246, 173, 3, 73, 166, 59, 80, 182, 235,
3, 79, 143, 192, 12, 83, 6, 170, 19, 69, 154, 255, 3, 82, 227, 189, 15,
65, 8, 11, 79, 8, 24, 2, 84, 32, 111, 85, 6, 26, 66, 251, 249, 19, 65, 4,
25, 4, 69, 76, 79, 87, 5, 29, 5, 32, 65, 78, 68, 32, 2, 191, 249, 3, 77,
2, 21, 3, 66, 76, 69, 2, 11, 32, 2, 227, 46, 71, 7, 29, 5, 32, 65, 78,
68, 32, 4, 214, 146, 4, 77, 175, 7, 80, 4, 222, 49, 73, 131, 236, 3, 79,
4, 238, 215, 18, 73, 195, 61, 65, 22, 162, 1, 72, 40, 6, 79, 80, 69, 78,
32, 69, 216, 147, 4, 8, 82, 32, 87, 73, 84, 72, 32, 70, 168, 2, 3, 83,
67, 82, 190, 223, 14, 69, 190, 87, 67, 159, 166, 1, 75, 2, 11, 65, 2,
253, 250, 9, 2, 76, 70, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 157, 4,
82, 247, 255, 14, 72, 5, 11, 32, 2, 11, 82, 2, 185, 146, 17, 3, 79, 84,
85, 85, 180, 1, 6, 32, 87, 73, 84, 72, 32, 218, 4, 65, 66, 67, 218, 1,
72, 34, 73, 156, 2, 13, 81, 85, 65, 84, 32, 82, 69, 86, 69, 82, 83, 69,
68, 221, 235, 9, 6, 84, 73, 82, 82, 85, 80, 40, 110, 65, 34, 67, 86, 68,
138, 1, 83, 174, 1, 86, 210, 9, 77, 186, 135, 4, 80, 182, 235, 3, 79,
155, 154, 11, 72, 4, 205, 1, 4, 67, 85, 84, 69, 12, 58, 65, 230, 10, 69,
82, 79, 202, 31, 73, 151, 251, 6, 85, 4, 113, 3, 82, 79, 78, 8, 32, 3,
79, 84, 32, 207, 32, 73, 6, 26, 66, 207, 241, 19, 65, 4, 25, 4, 69, 76,
79, 87, 5, 11, 32, 2, 173, 237, 19, 3, 65, 78, 68, 4, 22, 72, 203, 42,
87, 2, 21, 3, 79, 82, 84, 2, 17, 2, 32, 83, 2, 11, 84, 2, 21, 3, 82, 79,
75, 2, 11, 69, 2, 17, 2, 32, 79, 2, 197, 222, 19, 4, 86, 69, 82, 76, 2,
37, 7, 69, 82, 84, 73, 67, 65, 76, 2, 205, 40, 2, 32, 76, 4, 46, 76, 165,
226, 19, 5, 75, 72, 65, 32, 89, 2, 247, 12, 84, 18, 48, 3, 72, 87, 65,
97, 5, 82, 73, 80, 84, 32, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 222, 35,
71, 186, 2, 65, 242, 238, 3, 82, 247, 255, 14, 72, 8, 26, 82, 207, 132,
4, 71, 5, 241, 186, 11, 5, 32, 87, 73, 84, 72, 2, 133, 240, 16, 3, 65,
82, 80, 14, 48, 7, 68, 69, 87, 65, 89, 83, 32, 199, 1, 71, 12, 110, 79,
56, 4, 84, 85, 82, 78, 156, 205, 10, 11, 68, 73, 65, 69, 82, 69, 83, 73,
90, 69, 68, 215, 154, 10, 85, 7, 26, 80, 135, 135, 4, 32, 2, 193, 240, 9,
2, 69, 78, 2, 221, 138, 13, 2, 69, 68, 2, 237, 237, 16, 4, 77, 79, 73,
68, 2, 139, 129, 10, 32, 147, 1, 188, 1, 6, 32, 87, 73, 84, 72, 32, 192,
3, 2, 69, 83, 70, 72, 130, 2, 79, 102, 82, 54, 85, 174, 131, 4, 67, 202,
1, 83, 208, 129, 11, 9, 65, 73, 76, 76, 69, 83, 83, 32, 80, 251, 215, 5,
90, 34, 110, 67, 182, 1, 68, 66, 77, 170, 31, 76, 146, 232, 3, 80, 168,
5, 4, 72, 79, 79, 75, 50, 82, 235, 165, 16, 83, 10, 58, 69, 22, 73, 62,
79, 222, 154, 7, 85, 207, 161, 12, 65, 2, 219, 168, 12, 68, 2, 37, 7, 82,
67, 85, 77, 70, 76, 69, 2, 215, 178, 18, 88, 2, 17, 2, 77, 77, 2, 175,
178, 18, 65, 8, 32, 2, 73, 65, 135, 191, 16, 79, 4, 154, 21, 71, 215, 6,
69, 4, 17, 2, 73, 68, 4, 26, 45, 255, 255, 3, 68, 2, 149, 142, 4, 6, 72,
69, 73, 71, 72, 84, 6, 45, 9, 72, 32, 68, 73, 71, 82, 65, 80, 72, 7, 243,
133, 4, 32, 8, 64, 12, 32, 87, 73, 84, 72, 32, 83, 84, 82, 73, 75, 69,
43, 79, 2, 233, 179, 16, 5, 84, 72, 82, 79, 85, 6, 17, 2, 82, 78, 7, 41,
8, 32, 87, 73, 84, 72, 32, 83, 84, 4, 25, 4, 82, 79, 75, 69, 5, 11, 32,
2, 133, 215, 3, 6, 84, 72, 82, 79, 85, 71, 8, 26, 78, 203, 133, 4, 80, 6,
17, 2, 69, 32, 6, 206, 206, 4, 83, 134, 212, 10, 70, 155, 168, 3, 84, 2,
17, 2, 69, 83, 2, 11, 73, 2, 255, 187, 20, 76, 76, 44, 5, 82, 78, 69, 68,
32, 143, 222, 20, 77, 74, 162, 1, 68, 22, 72, 66, 73, 54, 79, 142, 1, 82,
110, 84, 22, 86, 198, 129, 4, 65, 38, 77, 198, 2, 89, 210, 193, 16, 85,
218, 19, 69, 2, 71, 2, 75, 2, 76, 3, 87, 2, 131, 160, 17, 69, 7, 141,
242, 3, 11, 32, 87, 73, 84, 72, 32, 70, 73, 83, 72, 72, 5, 11, 78, 2,
197, 218, 9, 5, 83, 85, 76, 65, 82, 12, 66, 69, 232, 230, 3, 7, 32, 79,
80, 69, 78, 45, 79, 159, 29, 80, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4,
238, 178, 18, 72, 143, 248, 1, 83, 15, 33, 6, 32, 87, 73, 84, 72, 32, 12,
198, 247, 3, 77, 174, 7, 80, 130, 5, 76, 154, 159, 14, 84, 183, 97, 72,
5, 135, 255, 3, 32, 7, 11, 32, 4, 161, 5, 4, 87, 73, 84, 72, 97, 90, 32,
152, 228, 3, 6, 80, 83, 73, 76, 79, 78, 182, 244, 16, 69, 2, 73, 2, 77,
3, 79, 82, 48, 3, 66, 65, 82, 49, 5, 87, 73, 84, 72, 32, 5, 245, 17, 8,
32, 87, 73, 84, 72, 32, 83, 72, 78, 142, 1, 67, 74, 68, 150, 2, 72, 170,
1, 77, 134, 1, 79, 106, 82, 38, 84, 186, 9, 71, 82, 83, 234, 1, 65, 246,
173, 3, 73, 62, 66, 143, 66, 76, 6, 152, 203, 4, 9, 73, 82, 67, 85, 77,
70, 76, 69, 88, 139, 228, 14, 65, 18, 52, 8, 73, 65, 69, 82, 69, 83, 73,
83, 131, 1, 79, 13, 11, 32, 10, 40, 4, 65, 78, 68, 32, 183, 179, 18, 66,
8, 50, 67, 226, 13, 71, 186, 2, 65, 239, 199, 3, 77, 2, 183, 173, 19, 65,
6, 26, 85, 167, 163, 18, 84, 4, 21, 3, 66, 76, 69, 4, 11, 32, 4, 138, 13,
71, 187, 2, 65, 14, 11, 79, 14, 28, 2, 82, 78, 207, 81, 79, 13, 29, 5,
32, 65, 78, 68, 32, 10, 66, 72, 226, 11, 71, 186, 2, 65, 138, 242, 7, 68,
251, 234, 8, 84, 2, 229, 80, 2, 79, 79, 10, 29, 5, 65, 67, 82, 79, 78,
11, 29, 5, 32, 65, 78, 68, 32, 8, 50, 68, 214, 10, 71, 186, 2, 65, 131,
221, 16, 84, 2, 171, 10, 73, 6, 29, 5, 71, 79, 78, 69, 75, 7, 11, 32, 4,
25, 4, 65, 78, 68, 32, 4, 178, 12, 65, 131, 221, 16, 84, 4, 142, 251, 3,
69, 171, 161, 14, 73, 6, 25, 4, 73, 76, 68, 69, 7, 11, 32, 4, 26, 65,
151, 174, 18, 66, 2, 17, 2, 78, 68, 2, 11, 32, 2, 139, 11, 65, 29, 84, 6,
32, 87, 73, 84, 72, 32, 162, 1, 73, 66, 79, 134, 189, 19, 69, 151, 144,
1, 89, 14, 82, 68, 234, 242, 3, 80, 142, 1, 67, 146, 7, 82, 206, 235, 12,
84, 231, 145, 2, 72, 4, 26, 73, 203, 251, 7, 79, 2, 17, 2, 65, 71, 2,
201, 157, 20, 2, 79, 78, 2, 41, 8, 83, 73, 71, 79, 84, 72, 73, 67, 2,
131, 239, 18, 32, 6, 33, 6, 76, 65, 80, 85, 75, 32, 6, 158, 182, 20, 65,
2, 79, 3, 85, 19, 33, 6, 32, 87, 73, 84, 72, 32, 16, 202, 4, 67, 18, 68,
70, 71, 186, 2, 65, 154, 144, 18, 82, 207, 94, 72, 17, 33, 6, 32, 87, 73,
84, 72, 32, 14, 42, 68, 32, 2, 76, 79, 187, 239, 3, 80, 4, 222, 3, 73,
247, 198, 19, 79, 8, 60, 11, 78, 71, 32, 76, 69, 70, 84, 32, 76, 69, 71,
79, 87, 7, 11, 32, 4, 60, 7, 65, 78, 68, 32, 76, 79, 87, 65, 4, 87, 73,
84, 72, 2, 17, 2, 32, 82, 2, 21, 3, 73, 71, 72, 2, 155, 154, 11, 84, 2,
185, 199, 19, 4, 32, 83, 69, 82, 33, 48, 6, 32, 87, 73, 84, 72, 32, 175,
155, 16, 79, 28, 110, 67, 18, 68, 70, 71, 22, 72, 42, 76, 22, 83, 234, 1,
65, 238, 199, 3, 77, 150, 149, 13, 84, 155, 179, 1, 82, 2, 203, 3, 73, 6,
26, 73, 171, 163, 16, 79, 2, 17, 2, 65, 69, 2, 187, 192, 16, 82, 2, 239,
216, 18, 82, 4, 17, 2, 79, 79, 4, 239, 136, 5, 75, 2, 187, 205, 19, 79,
4, 26, 72, 179, 150, 20, 84, 2, 21, 3, 79, 82, 84, 2, 197, 252, 7, 6, 32,
82, 73, 71, 72, 84, 31, 33, 6, 32, 87, 73, 84, 72, 32, 28, 98, 65, 22,
67, 82, 68, 38, 76, 34, 83, 198, 224, 3, 77, 174, 7, 80, 218, 5, 82, 247,
255, 14, 72, 2, 223, 190, 13, 67, 6, 42, 73, 150, 251, 6, 85, 207, 161,
12, 65, 2, 229, 203, 11, 4, 82, 67, 85, 77, 6, 154, 187, 3, 69, 203, 228,
12, 79, 2, 11, 73, 2, 163, 183, 12, 78, 4, 26, 87, 163, 147, 20, 84, 2,
215, 154, 17, 65, 18, 90, 70, 142, 195, 9, 73, 172, 9, 6, 76, 79, 78, 71,
32, 83, 190, 217, 10, 83, 219, 5, 79, 10, 34, 70, 254, 193, 20, 73, 3,
76, 7, 250, 193, 20, 73, 3, 76, 36, 150, 1, 83, 202, 192, 20, 65, 2, 69,
2, 72, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 79, 2, 80, 2, 82, 2,
84, 2, 85, 2, 86, 3, 88, 5, 215, 230, 4, 67, 226, 5, 240, 1, 2, 65, 70,
144, 1, 2, 70, 84, 190, 38, 79, 20, 5, 80, 67, 72, 65, 32, 164, 8, 8, 83,
83, 45, 84, 72, 65, 78, 32, 184, 250, 12, 5, 85, 75, 79, 84, 72, 218,
194, 3, 68, 228, 23, 6, 86, 69, 76, 32, 83, 76, 218, 233, 2, 77, 239, 79,
71, 6, 120, 3, 76, 69, 83, 160, 196, 1, 14, 32, 70, 76, 85, 84, 84, 69,
82, 73, 78, 71, 32, 73, 78, 189, 218, 11, 3, 89, 32, 71, 2, 227, 243, 14,
83, 134, 4, 58, 32, 250, 20, 45, 217, 2, 6, 87, 65, 82, 68, 83, 32, 246,
1, 166, 2, 65, 234, 4, 66, 202, 1, 67, 96, 2, 68, 79, 112, 2, 72, 65,
166, 3, 76, 46, 77, 38, 79, 102, 82, 146, 3, 83, 82, 84, 222, 1, 87, 158,
183, 8, 70, 236, 5, 14, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 82, 73,
71, 72, 86, 78, 202, 1, 80, 153, 13, 10, 86, 69, 82, 84, 73, 67, 65, 76,
32, 66, 28, 22, 78, 143, 4, 82, 22, 28, 2, 68, 32, 191, 3, 71, 16, 96, 6,
76, 79, 87, 69, 82, 32, 32, 6, 82, 73, 71, 72, 84, 32, 89, 6, 85, 80, 80,
69, 82, 32, 4, 202, 1, 65, 239, 196, 17, 79, 6, 50, 84, 209, 143, 18, 6,
68, 79, 85, 66, 76, 69, 4, 250, 157, 17, 82, 211, 232, 1, 65, 6, 82, 65,
53, 16, 79, 78, 69, 32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75,
2, 237, 155, 17, 8, 78, 68, 32, 82, 73, 71, 72, 84, 5, 245, 147, 19, 17,
32, 67, 79, 78, 84, 65, 73, 78, 73, 78, 71, 32, 66, 76, 65, 67, 75, 6,
198, 188, 8, 69, 185, 1, 4, 76, 69, 32, 66, 6, 26, 67, 163, 192, 8, 82,
2, 253, 191, 8, 5, 32, 76, 69, 83, 83, 12, 40, 4, 65, 82, 66, 32, 187,
192, 8, 76, 8, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 4, 57, 12, 32, 82,
73, 71, 72, 84, 32, 66, 65, 82, 66, 32, 4, 240, 137, 17, 4, 68, 79, 87,
78, 1, 2, 85, 80, 14, 254, 191, 8, 85, 166, 26, 79, 242, 235, 2, 69, 141,
168, 2, 8, 76, 79, 83, 69, 68, 32, 69, 78, 10, 44, 5, 85, 66, 76, 69, 32,
171, 192, 8, 84, 8, 222, 193, 8, 87, 190, 30, 65, 154, 132, 3, 81, 199,
199, 4, 80, 38, 36, 3, 76, 70, 32, 163, 198, 8, 78, 36, 132, 2, 6, 67,
73, 82, 67, 76, 69, 162, 193, 8, 66, 90, 70, 82, 72, 50, 82, 58, 84, 70,
87, 246, 13, 76, 22, 85, 176, 200, 8, 30, 73, 78, 86, 69, 82, 83, 69, 32,
77, 69, 68, 73, 85, 77, 32, 83, 72, 65, 68, 69, 32, 65, 78, 68, 32, 82,
73, 71, 72, 84, 255, 26, 77, 11, 33, 6, 32, 87, 73, 84, 72, 32, 8, 42,
84, 206, 136, 18, 70, 191, 214, 1, 68, 4, 150, 203, 5, 72, 199, 145, 13,
87, 4, 232, 162, 1, 2, 85, 71, 163, 161, 7, 79, 2, 217, 155, 19, 4, 85,
76, 84, 73, 8, 36, 3, 78, 69, 32, 243, 196, 8, 85, 6, 194, 183, 17, 81,
146, 4, 69, 45, 5, 84, 72, 73, 82, 68, 30, 44, 5, 73, 71, 72, 84, 32,
199, 197, 8, 65, 28, 152, 1, 5, 65, 82, 82, 79, 87, 132, 1, 12, 68, 79,
85, 66, 76, 69, 32, 65, 82, 82, 79, 87, 30, 87, 214, 242, 8, 79, 162,
143, 8, 66, 54, 83, 211, 68, 84, 11, 11, 32, 8, 72, 5, 87, 73, 84, 72,
32, 221, 214, 18, 7, 84, 72, 82, 79, 85, 71, 72, 6, 146, 195, 16, 68,
234, 183, 3, 86, 79, 83, 7, 245, 234, 8, 2, 32, 87, 4, 202, 253, 8, 65,
227, 191, 8, 72, 34, 218, 195, 8, 45, 70, 69, 78, 73, 168, 1, 3, 80, 69,
69, 26, 81, 227, 2, 85, 26, 106, 82, 178, 200, 8, 72, 130, 226, 7, 79,
212, 134, 1, 8, 87, 79, 32, 84, 72, 73, 82, 68, 151, 198, 1, 65, 6, 40,
4, 73, 65, 78, 71, 171, 203, 8, 65, 4, 140, 242, 4, 8, 76, 69, 32, 66,
69, 83, 73, 68, 179, 191, 12, 85, 16, 206, 205, 8, 72, 202, 1, 73, 181,
200, 10, 2, 82, 73, 62, 128, 1, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32,
138, 1, 83, 250, 205, 8, 70, 226, 2, 72, 153, 7, 7, 84, 79, 45, 82, 73,
71, 72, 30, 86, 65, 130, 211, 8, 67, 94, 68, 58, 77, 58, 82, 182, 1, 83,
74, 84, 211, 172, 8, 69, 6, 190, 211, 8, 78, 158, 175, 8, 84, 159, 2, 73,
4, 44, 5, 73, 68, 69, 32, 65, 175, 214, 8, 72, 2, 205, 147, 1, 2, 82, 67,
210, 1, 172, 1, 5, 65, 82, 82, 79, 87, 174, 5, 66, 70, 72, 242, 3, 84,
178, 2, 87, 162, 214, 8, 68, 210, 1, 70, 170, 7, 76, 26, 79, 34, 80, 50,
82, 70, 83, 242, 206, 8, 67, 47, 81, 73, 26, 32, 159, 236, 17, 45, 68,
102, 65, 138, 1, 84, 132, 2, 5, 87, 73, 84, 72, 32, 242, 215, 8, 70, 217,
165, 10, 4, 79, 86, 69, 82, 12, 44, 5, 66, 79, 86, 69, 32, 223, 217, 8,
78, 10, 64, 4, 83, 72, 79, 82, 214, 216, 8, 82, 182, 230, 4, 65, 55, 84,
2, 223, 255, 18, 84, 12, 56, 7, 72, 82, 79, 85, 71, 72, 32, 53, 3, 79,
32, 66, 6, 226, 188, 13, 83, 238, 206, 4, 76, 211, 149, 2, 88, 6, 32, 2,
65, 82, 231, 218, 8, 76, 5, 245, 168, 12, 23, 32, 79, 86, 69, 82, 32, 82,
73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 65, 82, 82, 79, 87, 32, 36, 118,
76, 198, 218, 8, 68, 182, 1, 80, 30, 83, 38, 84, 138, 210, 8, 77, 38, 78,
122, 69, 150, 153, 1, 72, 171, 165, 1, 86, 4, 162, 174, 17, 65, 171, 247,
1, 79, 8, 234, 220, 8, 65, 172, 10, 5, 79, 84, 84, 79, 77, 219, 200, 8,
76, 30, 26, 65, 131, 181, 17, 69, 26, 48, 6, 82, 80, 79, 79, 78, 32, 139,
215, 19, 78, 24, 80, 10, 87, 73, 84, 72, 32, 66, 65, 82, 66, 32, 249,
245, 9, 4, 79, 86, 69, 82, 22, 40, 4, 68, 79, 87, 78, 117, 2, 85, 80, 10,
26, 32, 243, 186, 17, 87, 8, 234, 223, 8, 66, 188, 2, 7, 65, 66, 79, 86,
69, 32, 82, 234, 208, 8, 70, 179, 5, 84, 12, 26, 32, 255, 185, 17, 87,
10, 60, 6, 65, 66, 79, 86, 69, 32, 222, 177, 17, 70, 179, 5, 84, 6, 42,
76, 213, 223, 8, 4, 82, 73, 71, 72, 4, 250, 221, 8, 69, 147, 223, 4, 79,
54, 44, 2, 82, 73, 202, 227, 8, 79, 159, 5, 87, 34, 44, 5, 65, 78, 71,
76, 69, 255, 231, 8, 80, 30, 56, 8, 45, 72, 69, 65, 68, 69, 68, 32, 251,
191, 17, 32, 28, 52, 5, 65, 82, 82, 79, 87, 202, 184, 17, 68, 39, 80, 25,
11, 32, 22, 192, 228, 8, 9, 79, 86, 69, 82, 32, 82, 73, 71, 72, 22, 87,
135, 208, 8, 84, 6, 26, 72, 143, 234, 8, 65, 4, 45, 9, 73, 84, 69, 32,
65, 82, 82, 79, 87, 5, 173, 189, 17, 2, 32, 87, 5, 243, 253, 18, 80, 148,
1, 252, 1, 15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78,
32, 124, 7, 76, 69, 84, 84, 69, 82, 32, 236, 1, 12, 80, 85, 78, 67, 84,
85, 65, 84, 73, 79, 78, 32, 198, 1, 83, 172, 1, 11, 86, 79, 87, 69, 76,
32, 83, 73, 71, 78, 32, 251, 154, 18, 68, 18, 66, 75, 22, 78, 130, 148,
20, 76, 2, 77, 2, 80, 2, 82, 3, 84, 5, 155, 195, 19, 65, 5, 189, 212, 12,
4, 89, 73, 78, 45, 78, 194, 1, 75, 2, 80, 254, 153, 7, 68, 130, 236, 10,
66, 2, 70, 2, 71, 2, 72, 2, 77, 138, 15, 78, 170, 181, 1, 84, 46, 67, 2,
83, 138, 69, 74, 2, 76, 2, 82, 2, 86, 2, 87, 2, 89, 187, 2, 65, 6, 222,
143, 20, 72, 2, 76, 187, 2, 65, 10, 82, 84, 40, 14, 78, 89, 69, 84, 32,
84, 72, 89, 79, 79, 77, 32, 84, 65, 43, 67, 6, 38, 65, 21, 5, 83, 72, 79,
79, 75, 2, 247, 253, 6, 45, 5, 17, 2, 32, 67, 2, 237, 150, 15, 3, 69, 82,
45, 8, 92, 4, 73, 71, 78, 32, 37, 15, 85, 66, 74, 79, 73, 78, 69, 68, 32,
76, 69, 84, 84, 69, 82, 4, 202, 242, 15, 78, 231, 208, 2, 82, 4, 11, 32,
4, 226, 140, 20, 82, 3, 89, 14, 130, 184, 16, 85, 206, 141, 1, 79, 250,
198, 2, 65, 186, 2, 69, 3, 73, 52, 138, 1, 65, 128, 4, 11, 69, 81, 85,
65, 76, 32, 84, 79, 32, 79, 82, 200, 1, 2, 66, 85, 42, 67, 186, 1, 79,
210, 2, 87, 207, 252, 18, 83, 16, 40, 5, 66, 79, 86, 69, 32, 171, 4, 78,
12, 152, 1, 7, 71, 82, 69, 65, 84, 69, 82, 110, 83, 176, 1, 19, 68, 79,
85, 66, 76, 69, 45, 76, 73, 78, 69, 32, 69, 81, 85, 65, 76, 32, 65, 167,
228, 15, 76, 2, 181, 5, 23, 45, 84, 72, 65, 78, 32, 65, 66, 79, 86, 69,
32, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78, 69, 6, 152, 1, 7, 73, 77, 73,
76, 65, 82, 32, 93, 26, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76,
32, 65, 66, 79, 86, 69, 32, 71, 82, 69, 65, 84, 69, 82, 4, 18, 65, 59,
79, 2, 25, 4, 66, 79, 86, 69, 2, 181, 243, 17, 2, 32, 71, 2, 227, 2, 82,
2, 145, 2, 6, 45, 84, 72, 65, 78, 32, 4, 17, 2, 68, 32, 4, 220, 3, 5, 78,
79, 84, 32, 65, 221, 162, 13, 11, 83, 73, 78, 71, 76, 69, 45, 76, 73, 78,
69, 4, 217, 132, 13, 5, 84, 32, 78, 79, 84, 4, 65, 14, 76, 79, 83, 69,
68, 32, 66, 89, 32, 67, 85, 82, 86, 69, 5, 11, 32, 2, 61, 13, 65, 66, 79,
86, 69, 32, 83, 76, 65, 78, 84, 69, 68, 2, 17, 2, 32, 69, 2, 151, 245,
14, 81, 18, 40, 2, 82, 32, 221, 230, 11, 2, 86, 69, 16, 114, 65, 48, 16,
83, 76, 65, 78, 84, 69, 68, 32, 69, 81, 85, 65, 76, 32, 84, 79, 194, 129,
13, 69, 131, 237, 4, 71, 2, 237, 190, 9, 7, 80, 80, 82, 79, 88, 73, 77,
9, 49, 10, 32, 87, 73, 84, 72, 32, 68, 79, 84, 32, 6, 26, 65, 243, 209,
11, 73, 4, 25, 4, 66, 79, 86, 69, 5, 179, 176, 18, 32, 6, 25, 4, 73, 84,
72, 32, 6, 66, 67, 40, 8, 81, 85, 69, 83, 84, 73, 79, 78, 247, 177, 19,
68, 2, 201, 208, 11, 5, 73, 82, 67, 76, 69, 2, 17, 2, 32, 77, 2, 17, 2,
65, 82, 2, 255, 132, 19, 75, 136, 11, 190, 1, 71, 186, 5, 77, 166, 7, 78,
156, 65, 2, 80, 83, 20, 3, 83, 85, 32, 142, 221, 15, 82, 136, 35, 11, 86,
82, 69, 32, 84, 79, 85, 82, 78, 79, 73, 214, 59, 79, 190, 221, 1, 90,
191, 84, 66, 44, 26, 65, 57, 2, 72, 84, 2, 181, 174, 9, 9, 84, 85, 82,
69, 32, 79, 80, 69, 78, 42, 38, 32, 137, 4, 4, 78, 73, 78, 71, 36, 146,
1, 69, 38, 70, 126, 82, 40, 3, 76, 69, 70, 86, 83, 42, 84, 236, 204, 7,
3, 66, 76, 85, 238, 170, 9, 87, 254, 41, 86, 226, 78, 71, 219, 69, 67, 2,
141, 230, 17, 4, 73, 71, 72, 84, 8, 94, 73, 153, 180, 18, 17, 79, 85, 82,
32, 80, 79, 73, 78, 84, 69, 68, 32, 66, 76, 65, 67, 75, 4, 161, 226, 17,
2, 86, 69, 4, 36, 3, 73, 71, 72, 135, 157, 18, 65, 2, 245, 241, 1, 16,
84, 32, 84, 79, 82, 84, 79, 73, 83, 69, 32, 83, 72, 69, 76, 76, 6, 194,
129, 17, 72, 254, 97, 65, 43, 73, 4, 220, 174, 16, 2, 87, 69, 21, 3, 72,
82, 69, 7, 29, 5, 32, 77, 79, 79, 68, 5, 219, 155, 8, 32, 138, 1, 80, 3,
66, 85, 32, 201, 163, 8, 11, 73, 84, 69, 68, 32, 76, 73, 65, 66, 73, 76,
136, 1, 128, 1, 7, 76, 69, 84, 84, 69, 82, 32, 222, 1, 83, 200, 2, 5, 86,
79, 87, 69, 76, 154, 217, 12, 69, 246, 198, 4, 81, 223, 96, 68, 60, 170,
1, 71, 198, 145, 6, 84, 234, 231, 8, 89, 186, 136, 1, 78, 246, 173, 3,
83, 82, 66, 2, 67, 2, 68, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77,
2, 82, 3, 87, 6, 202, 171, 18, 89, 230, 201, 1, 72, 187, 2, 65, 32, 108,
4, 73, 71, 78, 32, 128, 1, 12, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69,
82, 32, 245, 255, 6, 2, 85, 66, 8, 72, 3, 75, 69, 77, 0, 3, 77, 85, 75,
32, 2, 83, 65, 231, 170, 17, 76, 2, 153, 175, 17, 3, 80, 72, 82, 2, 131,
226, 19, 45, 18, 194, 255, 15, 78, 142, 177, 3, 65, 194, 66, 75, 2, 76,
2, 77, 2, 80, 2, 82, 3, 84, 20, 84, 6, 32, 83, 73, 71, 78, 32, 149, 90,
10, 45, 67, 65, 82, 82, 73, 69, 82, 32, 76, 18, 230, 216, 5, 65, 130,
210, 11, 79, 146, 137, 2, 69, 162, 64, 73, 3, 85, 226, 8, 22, 69, 187,
64, 75, 222, 8, 34, 32, 177, 3, 3, 65, 82, 32, 14, 120, 12, 73, 78, 84,
69, 71, 82, 65, 84, 73, 79, 78, 32, 150, 167, 13, 70, 206, 153, 3, 83,
237, 147, 1, 4, 84, 65, 66, 85, 6, 108, 5, 87, 73, 84, 72, 32, 157, 1,
17, 78, 79, 84, 32, 73, 78, 67, 76, 85, 68, 73, 78, 71, 32, 84, 72, 69,
4, 76, 7, 82, 69, 67, 84, 65, 78, 71, 1, 8, 83, 69, 77, 73, 67, 73, 82,
67, 2, 73, 16, 85, 76, 65, 82, 32, 80, 65, 84, 72, 32, 65, 82, 79, 85,
78, 68, 2, 17, 2, 32, 80, 2, 179, 201, 18, 79, 208, 8, 60, 8, 65, 32, 83,
73, 71, 78, 32, 65, 205, 24, 2, 66, 32, 170, 5, 122, 49, 86, 51, 202, 2,
52, 214, 1, 53, 158, 4, 54, 142, 3, 55, 132, 4, 2, 56, 48, 78, 66, 185,
159, 18, 3, 48, 50, 56, 6, 212, 198, 12, 5, 48, 48, 45, 49, 48, 200, 233,
5, 2, 50, 48, 233, 19, 2, 51, 49, 150, 1, 78, 48, 90, 49, 130, 1, 55,
250, 172, 14, 50, 2, 51, 2, 52, 2, 53, 3, 54, 22, 178, 1, 57, 190, 235,
19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 24, 90, 51, 190,
235, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 6,
186, 235, 19, 65, 2, 66, 3, 67, 4, 150, 235, 19, 48, 3, 49, 38, 18, 48,
91, 49, 20, 162, 1, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55,
2, 56, 3, 57, 18, 74, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2,
55, 3, 56, 2, 237, 183, 6, 2, 45, 86, 160, 1, 102, 48, 78, 49, 62, 51,
86, 52, 70, 53, 86, 54, 190, 11, 50, 194, 171, 2, 57, 174, 240, 11, 55,
3, 56, 16, 186, 232, 19, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3,
57, 12, 238, 231, 19, 48, 2, 49, 2, 50, 2, 51, 2, 53, 3, 54, 18, 178,
231, 19, 48, 2, 49, 2, 50, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 14,
222, 230, 19, 48, 2, 49, 2, 50, 2, 53, 2, 55, 2, 56, 3, 57, 18, 154, 230,
19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 57, 12, 198,
229, 19, 51, 2, 52, 2, 53, 2, 54, 2, 56, 3, 57, 104, 70, 48, 78, 50, 86,
51, 38, 52, 78, 54, 150, 162, 14, 53, 131, 2, 49, 16, 194, 228, 19, 48,
2, 49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 56, 3, 57, 18, 246, 227, 19, 48, 2,
49, 2, 50, 2, 51, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 6, 162, 227, 19, 52,
2, 55, 3, 56, 16, 254, 226, 19, 48, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2,
56, 3, 57, 10, 178, 226, 19, 48, 2, 49, 2, 50, 2, 51, 3, 52, 44, 86, 48,
134, 2, 49, 196, 129, 2, 2, 51, 50, 153, 204, 17, 6, 50, 54, 32, 69, 89,
89, 26, 110, 57, 154, 225, 8, 55, 182, 6, 50, 62, 54, 254, 63, 52, 146,
155, 3, 51, 114, 56, 186, 211, 2, 49, 155, 122, 53, 10, 26, 45, 207, 212,
18, 32, 8, 96, 2, 50, 32, 156, 180, 12, 3, 54, 32, 76, 184, 2, 3, 52, 32,
76, 137, 174, 3, 3, 51, 32, 76, 2, 247, 183, 12, 76, 14, 114, 51, 32, 3,
52, 32, 65, 0, 2, 53, 32, 134, 65, 49, 174, 223, 3, 50, 198, 200, 4, 48,
249, 249, 6, 2, 55, 32, 2, 11, 32, 2, 147, 153, 12, 79, 2, 151, 160, 18,
66, 16, 250, 221, 19, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 3,
55, 162, 1, 22, 48, 155, 5, 49, 140, 1, 82, 49, 54, 50, 118, 51, 62, 52,
78, 53, 86, 54, 62, 55, 70, 56, 155, 152, 14, 48, 10, 186, 220, 19, 48,
2, 49, 2, 51, 2, 54, 3, 55, 28, 86, 49, 2, 50, 138, 82, 51, 170, 137, 19,
48, 2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 7, 174, 219, 19, 70, 3, 77, 12,
146, 219, 19, 48, 2, 49, 2, 52, 2, 55, 2, 56, 3, 57, 16, 214, 218, 19,
48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 138, 218, 19,
48, 2, 49, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 12, 182, 217,
19, 48, 2, 49, 2, 53, 2, 54, 2, 55, 3, 57, 14, 250, 216, 19, 48, 2, 51,
2, 52, 2, 54, 2, 55, 2, 56, 3, 57, 12, 182, 216, 19, 48, 2, 49, 2, 50, 2,
53, 2, 54, 3, 55, 22, 82, 50, 36, 2, 51, 49, 30, 56, 186, 171, 12, 49,
206, 2, 54, 146, 1, 55, 3, 57, 6, 166, 215, 19, 48, 2, 50, 3, 51, 4, 130,
215, 19, 65, 3, 66, 4, 230, 214, 19, 48, 3, 56, 166, 3, 116, 9, 73, 68,
69, 79, 71, 82, 65, 77, 32, 220, 17, 10, 77, 79, 78, 79, 71, 82, 65, 77,
32, 66, 249, 1, 2, 83, 89, 234, 1, 54, 66, 253, 15, 8, 86, 69, 83, 83,
69, 76, 32, 66, 176, 1, 22, 49, 131, 11, 50, 126, 86, 48, 210, 3, 50,
166, 1, 51, 86, 52, 122, 53, 114, 54, 146, 1, 55, 118, 56, 71, 57, 28,
114, 53, 98, 54, 58, 55, 78, 56, 62, 57, 156, 139, 7, 3, 50, 32, 87, 254,
88, 48, 137, 175, 11, 4, 52, 32, 68, 69, 6, 132, 138, 7, 2, 32, 69, 220,
166, 11, 3, 70, 32, 77, 133, 82, 7, 77, 32, 83, 84, 65, 76, 76, 4, 168,
245, 1, 3, 70, 32, 69, 133, 160, 16, 2, 77, 32, 4, 36, 3, 70, 32, 83, 1,
2, 77, 32, 2, 129, 236, 11, 4, 72, 69, 45, 71, 4, 240, 159, 9, 3, 77, 32,
66, 173, 149, 9, 3, 70, 32, 83, 4, 224, 198, 17, 4, 77, 32, 66, 85, 129,
110, 3, 70, 32, 67, 10, 248, 152, 9, 4, 51, 32, 83, 80, 240, 10, 5, 49,
32, 66, 65, 82, 148, 240, 4, 4, 50, 32, 79, 76, 20, 6, 53, 32, 67, 89,
80, 69, 129, 179, 4, 4, 48, 32, 87, 72, 6, 54, 49, 164, 239, 17, 3, 48,
32, 79, 211, 223, 1, 50, 2, 181, 179, 18, 2, 32, 87, 10, 224, 5, 3, 53,
32, 87, 252, 150, 9, 6, 48, 32, 66, 82, 79, 78, 172, 2, 4, 49, 32, 71,
79, 206, 175, 10, 50, 3, 54, 16, 82, 57, 134, 238, 2, 49, 138, 223, 16,
48, 2, 50, 2, 51, 2, 52, 2, 55, 3, 56, 2, 157, 102, 3, 32, 67, 76, 20,
160, 177, 14, 5, 51, 32, 65, 82, 77, 152, 216, 4, 5, 50, 32, 71, 65, 82,
182, 67, 48, 2, 49, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 18, 130,
130, 14, 54, 216, 196, 3, 4, 51, 32, 77, 79, 134, 133, 2, 48, 2, 49, 2,
50, 2, 52, 2, 55, 2, 56, 3, 57, 14, 234, 202, 19, 48, 2, 49, 2, 50, 2,
51, 2, 52, 2, 53, 3, 57, 4, 204, 169, 2, 3, 49, 32, 72, 219, 160, 17, 48,
50, 42, 50, 110, 51, 130, 1, 52, 227, 1, 53, 4, 84, 8, 48, 32, 70, 79,
79, 84, 83, 84, 245, 215, 6, 7, 53, 32, 66, 65, 84, 72, 84, 2, 231, 179,
18, 79, 12, 104, 4, 51, 32, 83, 87, 132, 143, 14, 4, 48, 32, 83, 80, 154,
156, 4, 49, 218, 156, 1, 50, 2, 52, 3, 54, 2, 131, 175, 18, 79, 16, 168,
1, 9, 48, 32, 87, 72, 69, 69, 76, 69, 68, 2, 49, 34, 51, 180, 180, 17,
12, 50, 32, 67, 72, 65, 82, 73, 79, 84, 32, 70, 82, 226, 145, 2, 53, 2,
54, 2, 56, 3, 57, 2, 145, 186, 18, 3, 32, 67, 72, 2, 195, 196, 6, 32, 18,
224, 190, 18, 3, 52, 32, 68, 158, 135, 1, 49, 2, 50, 2, 51, 2, 53, 2, 54,
2, 55, 2, 56, 3, 57, 58, 50, 50, 160, 155, 12, 2, 49, 53, 1, 2, 51, 48,
54, 50, 50, 206, 157, 12, 53, 198, 232, 1, 48, 3, 49, 12, 174, 196, 19,
49, 2, 50, 2, 54, 2, 55, 2, 56, 3, 57, 12, 46, 49, 153, 12, 6, 50, 52,
55, 32, 68, 73, 10, 50, 50, 70, 51, 181, 11, 5, 53, 54, 32, 84, 85, 4,
148, 180, 3, 3, 55, 32, 75, 237, 239, 15, 5, 56, 32, 75, 65, 78, 4, 56,
3, 53, 32, 77, 233, 132, 16, 5, 51, 32, 65, 82, 69, 2, 195, 214, 12, 69,
176, 1, 84, 9, 76, 76, 65, 66, 76, 69, 32, 66, 48, 229, 12, 7, 77, 66,
79, 76, 32, 66, 48, 148, 1, 114, 48, 142, 1, 49, 162, 1, 50, 230, 1, 51,
174, 1, 52, 162, 1, 53, 154, 1, 54, 186, 1, 55, 198, 1, 56, 87, 57, 18,
118, 54, 182, 203, 1, 55, 130, 8, 52, 190, 14, 57, 170, 252, 10, 53, 158,
152, 2, 56, 198, 10, 49, 254, 2, 50, 207, 8, 51, 2, 151, 129, 18, 32, 16,
122, 54, 18, 55, 202, 212, 1, 49, 134, 2, 50, 166, 26, 52, 176, 187, 1,
2, 53, 32, 158, 247, 5, 48, 229, 128, 9, 2, 51, 32, 2, 171, 95, 32, 2,
235, 143, 11, 32, 18, 166, 1, 51, 22, 54, 20, 3, 57, 32, 80, 224, 6, 2,
53, 32, 168, 180, 3, 2, 48, 32, 232, 222, 14, 2, 55, 32, 140, 7, 2, 52,
32, 162, 91, 56, 185, 44, 3, 49, 32, 81, 2, 247, 180, 14, 32, 2, 195,
250, 14, 32, 2, 235, 148, 12, 85, 16, 134, 1, 48, 20, 2, 51, 32, 186,
200, 1, 55, 234, 34, 54, 218, 241, 4, 57, 210, 165, 2, 56, 246, 171, 4,
49, 205, 237, 5, 3, 50, 32, 81, 2, 183, 182, 14, 32, 2, 135, 1, 82, 16,
116, 2, 51, 32, 22, 53, 174, 196, 1, 48, 222, 1, 49, 242, 5, 50, 218, 10,
52, 178, 5, 54, 133, 228, 12, 3, 56, 32, 78, 2, 151, 191, 15, 65, 2, 235,
166, 17, 32, 18, 130, 1, 51, 222, 196, 1, 49, 150, 1, 56, 42, 57, 102,
55, 194, 5, 48, 250, 141, 2, 52, 132, 181, 15, 2, 50, 32, 157, 4, 2, 53,
32, 2, 251, 204, 12, 32, 16, 132, 1, 2, 50, 32, 20, 2, 56, 32, 204, 1, 3,
54, 32, 84, 210, 191, 1, 55, 226, 3, 57, 146, 2, 53, 198, 248, 6, 49,
243, 172, 10, 48, 2, 151, 238, 17, 80, 2, 213, 143, 12, 2, 82, 79, 18,
172, 1, 3, 54, 32, 82, 242, 191, 1, 55, 138, 8, 48, 170, 16, 53, 12, 3,
49, 32, 68, 168, 171, 7, 2, 52, 32, 222, 252, 3, 50, 200, 158, 6, 3, 56,
32, 81, 241, 2, 2, 51, 32, 2, 139, 142, 12, 65, 8, 238, 191, 1, 49, 168,
24, 3, 55, 32, 84, 196, 250, 6, 2, 53, 32, 191, 156, 6, 48, 4, 150, 160,
17, 49, 21, 3, 48, 32, 68, 28, 90, 52, 30, 54, 30, 56, 142, 136, 12, 53,
158, 2, 49, 30, 51, 166, 1, 50, 171, 173, 3, 55, 4, 222, 179, 19, 55, 3,
57, 4, 194, 179, 19, 51, 3, 52, 8, 166, 179, 19, 50, 2, 51, 2, 54, 3, 57,
4, 228, 212, 10, 9, 69, 68, 32, 80, 65, 80, 69, 82, 67, 223, 200, 7, 32,
5, 163, 128, 18, 84, 98, 96, 7, 76, 69, 84, 84, 69, 82, 32, 129, 240, 6,
11, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 94, 238, 1, 84, 150, 246,
2, 68, 182, 164, 10, 85, 130, 159, 2, 78, 138, 31, 69, 190, 143, 3, 67,
2, 71, 2, 72, 2, 75, 2, 80, 2, 83, 2, 89, 2, 90, 162, 7, 65, 2, 79, 234,
61, 66, 2, 70, 2, 74, 2, 76, 2, 77, 2, 87, 2, 88, 187, 2, 73, 20, 64, 4,
79, 78, 69, 32, 202, 231, 18, 83, 138, 69, 72, 187, 2, 65, 12, 48, 4, 77,
89, 65, 32, 141, 197, 1, 2, 78, 65, 10, 246, 193, 12, 74, 234, 205, 6,
66, 158, 11, 84, 254, 16, 67, 39, 78, 210, 2, 232, 1, 2, 67, 75, 132, 1,
3, 71, 73, 67, 176, 6, 3, 78, 71, 32, 206, 9, 84, 116, 3, 86, 69, 32, 70,
87, 172, 12, 5, 90, 69, 78, 71, 69, 174, 232, 7, 66, 240, 156, 10, 8, 85,
68, 76, 89, 32, 67, 82, 89, 141, 15, 4, 76, 76, 73, 80, 9, 96, 10, 73,
78, 71, 45, 83, 72, 73, 70, 84, 32, 137, 25, 9, 32, 87, 73, 84, 72, 32,
73, 78, 75, 4, 174, 185, 17, 90, 223, 86, 79, 40, 56, 6, 32, 71, 65, 84,
69, 32, 137, 2, 3, 65, 76, 32, 12, 104, 6, 66, 85, 70, 70, 69, 82, 84, 9,
73, 78, 86, 69, 82, 84, 69, 68, 32, 142, 153, 18, 65, 187, 87, 79, 5,
133, 1, 17, 32, 87, 73, 84, 72, 32, 73, 78, 86, 69, 82, 84, 69, 68, 32,
73, 78, 4, 48, 3, 79, 85, 84, 205, 159, 6, 3, 73, 78, 80, 2, 155, 175,
18, 80, 28, 36, 3, 65, 78, 68, 85, 2, 79, 82, 15, 33, 6, 32, 87, 73, 84,
72, 32, 12, 226, 1, 68, 94, 72, 58, 77, 147, 182, 15, 85, 15, 11, 32, 12,
88, 13, 79, 86, 69, 82, 76, 65, 80, 80, 73, 78, 71, 32, 76, 49, 5, 87,
73, 84, 72, 32, 2, 209, 150, 18, 7, 79, 71, 73, 67, 65, 76, 32, 10, 26,
68, 94, 72, 59, 77, 6, 11, 79, 6, 44, 5, 85, 66, 76, 69, 32, 235, 168,
18, 84, 4, 230, 182, 15, 85, 143, 61, 79, 2, 209, 228, 15, 9, 79, 82, 73,
90, 79, 78, 84, 65, 76, 2, 173, 225, 7, 5, 73, 68, 68, 76, 69, 48, 70,
68, 228, 1, 4, 76, 69, 70, 84, 241, 2, 5, 82, 73, 71, 72, 84, 6, 164, 1,
30, 65, 83, 72, 32, 70, 82, 79, 77, 32, 76, 69, 70, 84, 32, 77, 69, 77,
66, 69, 82, 32, 79, 70, 32, 68, 79, 85, 66, 76, 69, 198, 165, 16, 73,
151, 210, 1, 82, 2, 17, 2, 32, 86, 2, 137, 151, 18, 5, 69, 82, 84, 73,
67, 20, 46, 32, 193, 1, 6, 87, 65, 82, 68, 83, 32, 8, 48, 6, 82, 73, 71,
72, 84, 32, 139, 131, 16, 84, 6, 44, 5, 65, 82, 82, 79, 87, 203, 248, 15,
68, 5, 193, 248, 13, 18, 32, 87, 73, 84, 72, 32, 68, 69, 80, 69, 78, 68,
69, 78, 84, 32, 76, 79, 12, 214, 3, 68, 42, 65, 146, 1, 83, 229, 244, 8,
19, 72, 65, 82, 80, 79, 79, 78, 32, 65, 66, 79, 86, 69, 32, 83, 72, 79,
82, 84, 22, 48, 6, 87, 65, 82, 68, 83, 32, 235, 251, 8, 32, 20, 88, 5,
65, 82, 82, 79, 87, 202, 1, 68, 96, 8, 72, 65, 82, 80, 79, 79, 78, 32,
91, 83, 11, 11, 32, 8, 164, 1, 7, 84, 72, 82, 79, 85, 71, 72, 132, 143,
3, 10, 87, 73, 84, 72, 32, 68, 79, 85, 66, 76, 196, 232, 5, 9, 79, 86,
69, 82, 32, 76, 79, 78, 71, 203, 188, 7, 70, 2, 203, 142, 18, 32, 4, 37,
7, 79, 85, 66, 76, 69, 32, 65, 4, 25, 4, 82, 82, 79, 87, 5, 181, 179, 16,
2, 32, 70, 4, 236, 246, 8, 4, 79, 86, 69, 82, 33, 11, 65, 66, 79, 86, 69,
32, 83, 72, 79, 82, 84, 2, 233, 228, 7, 3, 81, 85, 73, 6, 92, 5, 73, 79,
78, 32, 66, 144, 255, 17, 9, 32, 79, 70, 32, 70, 79, 82, 84, 85, 215, 93,
85, 2, 211, 241, 9, 79, 4, 38, 76, 213, 132, 14, 3, 72, 79, 84, 2, 245,
223, 17, 2, 69, 84, 222, 1, 34, 32, 229, 1, 3, 69, 82, 32, 14, 138, 1,
66, 176, 201, 10, 11, 68, 79, 85, 66, 76, 69, 32, 80, 82, 73, 77, 214,
183, 6, 65, 148, 113, 6, 75, 65, 86, 89, 75, 65, 227, 10, 76, 4, 38, 82,
209, 249, 4, 3, 65, 84, 84, 2, 185, 130, 18, 7, 73, 71, 72, 84, 78, 69,
83, 208, 1, 158, 1, 72, 140, 2, 5, 76, 69, 70, 84, 32, 236, 2, 6, 82, 73,
71, 72, 84, 32, 154, 247, 15, 66, 74, 67, 74, 70, 234, 10, 77, 150, 2,
79, 170, 18, 83, 67, 84, 20, 84, 4, 65, 76, 70, 32, 205, 186, 7, 11, 79,
82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 18, 176, 166, 7, 9, 65, 78, 68,
32, 85, 80, 80, 69, 82, 32, 7, 73, 78, 86, 69, 82, 83, 69, 150, 216, 8,
72, 230, 1, 86, 174, 26, 77, 130, 3, 76, 22, 82, 202, 5, 66, 247, 157, 1,
67, 72, 186, 1, 66, 60, 8, 70, 79, 85, 78, 84, 65, 73, 78, 22, 80, 56,
12, 83, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 82, 154, 1, 81, 246, 2,
84, 232, 197, 11, 3, 67, 82, 65, 203, 187, 4, 79, 24, 56, 8, 65, 76, 76,
80, 79, 73, 78, 84, 175, 135, 16, 76, 2, 179, 246, 9, 32, 4, 132, 131,
15, 5, 65, 73, 78, 84, 66, 163, 141, 1, 69, 2, 185, 195, 7, 5, 32, 65,
78, 84, 73, 74, 110, 81, 166, 2, 83, 82, 84, 202, 178, 7, 82, 158, 199,
8, 66, 238, 3, 67, 226, 3, 79, 222, 7, 68, 207, 2, 80, 30, 17, 2, 85, 65,
30, 48, 6, 68, 82, 65, 78, 84, 32, 239, 146, 16, 82, 28, 74, 70, 60, 2,
78, 69, 50, 83, 150, 142, 16, 67, 226, 1, 77, 143, 1, 84, 4, 26, 65, 231,
198, 17, 82, 2, 149, 185, 7, 3, 67, 69, 32, 2, 25, 4, 85, 84, 82, 65, 2,
195, 209, 18, 76, 4, 234, 224, 10, 77, 215, 175, 5, 84, 6, 240, 191, 7,
11, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 82, 191, 209, 8, 72, 6, 150,
146, 16, 82, 155, 1, 87, 5, 253, 230, 17, 25, 32, 68, 73, 86, 73, 68, 69,
68, 32, 66, 89, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 82, 85,
6, 18, 71, 23, 78, 2, 143, 253, 13, 71, 4, 168, 231, 17, 5, 65, 82, 32,
69, 67, 151, 103, 71, 114, 104, 12, 67, 73, 65, 78, 32, 76, 69, 84, 84,
69, 82, 32, 232, 1, 5, 68, 73, 65, 78, 32, 131, 129, 18, 73, 58, 210, 1,
77, 150, 138, 5, 75, 154, 214, 9, 84, 158, 24, 66, 246, 146, 2, 65, 2,
69, 2, 78, 238, 253, 1, 68, 2, 71, 2, 72, 2, 73, 2, 74, 2, 76, 2, 80, 2,
81, 2, 82, 2, 83, 2, 85, 2, 87, 2, 88, 3, 90, 5, 167, 137, 19, 77, 54,
88, 7, 76, 69, 84, 84, 69, 82, 32, 153, 224, 14, 9, 84, 82, 73, 65, 78,
71, 85, 76, 65, 52, 222, 159, 13, 84, 190, 215, 1, 76, 198, 135, 2, 83,
238, 11, 65, 2, 69, 2, 78, 238, 253, 1, 66, 2, 67, 2, 68, 2, 70, 2, 71,
2, 73, 2, 75, 2, 77, 2, 79, 2, 81, 2, 82, 2, 85, 2, 86, 3, 89, 128, 54,
162, 1, 65, 194, 103, 69, 182, 103, 73, 154, 25, 79, 164, 112, 3, 82, 79,
32, 234, 3, 85, 204, 70, 7, 89, 65, 78, 77, 65, 82, 32, 138, 165, 15, 86,
198, 61, 77, 27, 87, 204, 23, 186, 1, 71, 62, 72, 254, 10, 75, 234, 3,
76, 252, 13, 2, 77, 77, 22, 78, 154, 17, 80, 118, 82, 174, 7, 83, 190, 7,
84, 184, 36, 3, 89, 65, 78, 204, 129, 1, 3, 88, 73, 77, 175, 248, 15, 67,
6, 228, 243, 17, 4, 73, 67, 32, 87, 138, 91, 78, 155, 53, 69, 166, 1, 84,
6, 65, 74, 65, 78, 73, 32, 129, 3, 10, 74, 79, 78, 71, 32, 84, 73, 76,
69, 32, 78, 38, 76, 162, 2, 83, 215, 140, 13, 65, 72, 88, 6, 69, 84, 84,
69, 82, 32, 161, 150, 12, 10, 73, 71, 65, 84, 85, 82, 69, 32, 83, 72, 70,
134, 175, 3, 78, 150, 245, 11, 68, 82, 82, 34, 84, 162, 149, 3, 66, 2,
67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 83, 2, 86,
186, 2, 65, 2, 69, 2, 73, 2, 79, 3, 85, 4, 170, 237, 6, 69, 253, 245, 7,
5, 73, 71, 78, 32, 78, 88, 236, 1, 2, 66, 65, 38, 69, 46, 70, 46, 78, 42,
79, 46, 80, 22, 83, 118, 84, 194, 1, 87, 112, 5, 71, 82, 69, 69, 78, 0,
3, 82, 69, 68, 168, 136, 6, 3, 65, 85, 84, 222, 21, 74, 209, 175, 11, 11,
67, 72, 82, 89, 83, 65, 78, 84, 72, 69, 77, 4, 162, 158, 1, 77, 199, 220,
17, 67, 8, 228, 2, 4, 73, 71, 72, 84, 195, 1, 65, 12, 172, 2, 2, 73, 86,
13, 3, 79, 85, 82, 8, 192, 1, 2, 79, 82, 65, 2, 73, 78, 8, 218, 1, 78,
173, 229, 11, 3, 82, 67, 72, 2, 139, 209, 17, 76, 18, 88, 2, 79, 85, 76,
4, 69, 86, 69, 78, 0, 2, 73, 88, 182, 157, 12, 85, 255, 199, 1, 80, 2,
157, 2, 2, 84, 72, 12, 36, 3, 72, 82, 69, 13, 2, 87, 79, 6, 11, 69, 6,
25, 4, 32, 79, 70, 32, 6, 46, 67, 189, 248, 6, 5, 66, 65, 77, 66, 79, 4,
184, 140, 6, 2, 73, 82, 153, 234, 10, 5, 72, 65, 82, 65, 67, 6, 50, 69,
60, 4, 72, 73, 84, 69, 227, 190, 17, 73, 2, 17, 2, 83, 84, 2, 17, 2, 32,
87, 2, 247, 232, 17, 73, 2, 17, 2, 32, 68, 2, 163, 190, 17, 82, 52, 52,
5, 65, 83, 65, 82, 32, 241, 139, 15, 2, 69, 77, 50, 162, 1, 69, 40, 7,
76, 69, 84, 84, 69, 82, 32, 152, 1, 5, 80, 65, 83, 83, 73, 32, 11, 86,
79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 173, 236, 18, 3, 65, 78, 71, 2,
205, 244, 15, 5, 78, 68, 32, 79, 70, 36, 182, 249, 16, 78, 222, 250, 1,
66, 2, 67, 2, 68, 2, 71, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 2, 83,
2, 84, 2, 86, 2, 89, 187, 2, 65, 2, 11, 77, 2, 211, 156, 18, 66, 8, 146,
245, 18, 69, 2, 73, 2, 79, 3, 85, 246, 1, 80, 7, 65, 89, 65, 76, 65, 77,
32, 176, 11, 2, 69, 32, 225, 1, 3, 84, 69, 83, 236, 1, 198, 1, 68, 44, 9,
70, 82, 65, 67, 84, 73, 79, 78, 32, 240, 1, 7, 76, 69, 84, 84, 69, 82,
32, 164, 5, 7, 78, 85, 77, 66, 69, 82, 32, 36, 5, 83, 73, 71, 78, 32,
230, 191, 13, 86, 239, 201, 1, 65, 22, 164, 171, 8, 2, 65, 84, 163, 211,
8, 73, 26, 56, 4, 79, 78, 69, 32, 121, 6, 84, 72, 82, 69, 69, 32, 18, 82,
84, 254, 135, 5, 83, 130, 132, 8, 70, 62, 79, 146, 222, 3, 69, 46, 72,
47, 81, 4, 134, 143, 13, 87, 255, 220, 3, 69, 8, 150, 136, 5, 83, 198,
135, 8, 69, 110, 84, 179, 220, 3, 81, 132, 1, 226, 1, 65, 82, 67, 158, 1,
68, 78, 84, 82, 86, 226, 141, 13, 78, 182, 128, 2, 76, 38, 82, 134, 6,
85, 206, 141, 1, 79, 238, 60, 73, 182, 196, 1, 83, 82, 66, 2, 71, 2, 74,
2, 75, 2, 80, 162, 7, 69, 234, 61, 72, 2, 77, 3, 89, 11, 240, 167, 16, 7,
82, 67, 72, 65, 73, 67, 32, 206, 198, 2, 65, 2, 73, 3, 85, 22, 26, 72,
215, 237, 18, 65, 20, 44, 5, 73, 76, 76, 85, 32, 167, 237, 18, 65, 18,
138, 132, 13, 76, 174, 235, 3, 78, 146, 197, 1, 82, 222, 56, 75, 2, 77,
3, 89, 10, 212, 226, 10, 4, 79, 84, 32, 82, 190, 194, 7, 68, 138, 69, 72,
187, 2, 65, 10, 38, 84, 170, 233, 18, 72, 187, 2, 65, 6, 166, 233, 18,
72, 2, 84, 187, 2, 65, 12, 242, 227, 3, 69, 234, 176, 11, 79, 223, 214,
3, 65, 6, 162, 142, 13, 79, 223, 134, 4, 84, 18, 50, 67, 114, 86, 250,
142, 15, 65, 251, 149, 3, 80, 6, 54, 79, 120, 5, 73, 82, 67, 85, 76, 171,
203, 14, 65, 2, 145, 190, 13, 9, 77, 66, 73, 78, 73, 78, 71, 32, 65, 6,
60, 9, 69, 82, 84, 73, 67, 65, 76, 32, 66, 255, 165, 18, 73, 2, 253, 142,
15, 2, 65, 82, 8, 80, 12, 87, 73, 84, 72, 32, 83, 84, 82, 79, 75, 69, 32,
70, 65, 227, 224, 17, 83, 4, 64, 10, 65, 78, 68, 32, 77, 65, 76, 69, 32,
65, 227, 224, 17, 83, 2, 25, 4, 78, 68, 32, 70, 2, 11, 69, 2, 11, 77, 2,
139, 211, 7, 65, 2, 191, 163, 17, 69, 2, 243, 225, 16, 79, 185, 1, 210,
1, 32, 220, 2, 5, 68, 65, 73, 67, 32, 224, 3, 8, 73, 67, 72, 65, 69, 65,
78, 32, 222, 8, 83, 156, 166, 2, 3, 85, 65, 76, 130, 228, 10, 65, 240,
167, 1, 8, 84, 69, 76, 80, 73, 69, 67, 69, 235, 132, 4, 71, 12, 132, 1,
3, 73, 78, 32, 128, 1, 5, 87, 73, 84, 72, 32, 136, 147, 2, 3, 68, 65, 78,
237, 140, 13, 8, 65, 78, 68, 32, 87, 79, 77, 65, 4, 248, 140, 10, 19, 66,
85, 83, 73, 78, 69, 83, 83, 32, 83, 85, 73, 84, 32, 76, 69, 86, 73, 84,
189, 151, 1, 4, 84, 85, 88, 69, 4, 140, 243, 13, 8, 71, 85, 65, 32, 80,
73, 32, 77, 205, 163, 3, 4, 84, 85, 82, 66, 58, 112, 4, 65, 70, 70, 82,
28, 7, 76, 69, 84, 84, 69, 82, 32, 208, 184, 14, 3, 86, 79, 67, 226, 72,
71, 251, 25, 80, 2, 249, 247, 17, 2, 73, 67, 50, 82, 65, 176, 1, 2, 68,
85, 2, 85, 28, 3, 72, 65, 76, 22, 73, 183, 152, 18, 75, 38, 154, 1, 75,
206, 246, 12, 84, 250, 191, 1, 83, 130, 217, 3, 73, 226, 79, 66, 2, 68,
2, 71, 2, 72, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 82, 3, 90, 5, 235,
220, 18, 83, 2, 185, 132, 8, 2, 83, 72, 2, 187, 220, 18, 81, 4, 222, 222,
18, 78, 3, 84, 102, 216, 1, 7, 76, 69, 84, 84, 69, 82, 32, 194, 4, 78,
80, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 220, 1, 4, 83,
73, 71, 78, 249, 200, 10, 16, 65, 66, 66, 82, 69, 86, 73, 65, 84, 73, 79,
78, 32, 77, 65, 82, 72, 218, 1, 65, 46, 66, 38, 68, 30, 71, 30, 74, 2,
90, 30, 75, 30, 81, 38, 83, 50, 84, 54, 88, 158, 164, 6, 76, 134, 206, 1,
82, 246, 221, 2, 89, 198, 207, 1, 72, 190, 184, 5, 78, 134, 2, 87, 218,
103, 70, 2, 80, 171, 4, 77, 6, 142, 209, 10, 76, 122, 65, 179, 137, 7,
89, 4, 134, 249, 12, 72, 227, 220, 3, 69, 4, 254, 165, 6, 65, 23, 72, 4,
182, 208, 10, 72, 15, 73, 4, 242, 208, 10, 72, 15, 65, 4, 226, 166, 12,
72, 15, 65, 4, 210, 165, 6, 72, 131, 129, 6, 79, 8, 186, 205, 10, 83,
154, 3, 65, 131, 137, 7, 72, 6, 206, 164, 6, 72, 178, 175, 10, 69, 219,
134, 1, 65, 4, 202, 165, 12, 65, 3, 79, 10, 33, 6, 85, 77, 66, 69, 82,
32, 10, 250, 207, 10, 79, 58, 84, 131, 203, 2, 70, 14, 80, 2, 68, 79,
116, 3, 76, 73, 78, 190, 167, 5, 70, 230, 219, 11, 84, 167, 10, 83, 6,
54, 84, 13, 9, 85, 66, 76, 69, 32, 68, 79, 84, 32, 5, 11, 32, 2, 25, 4,
87, 73, 84, 72, 2, 151, 193, 2, 73, 2, 231, 203, 3, 69, 2, 139, 168, 17,
32, 2, 11, 32, 2, 249, 190, 18, 2, 83, 72, 4, 92, 17, 32, 83, 89, 77, 66,
79, 76, 32, 70, 79, 82, 32, 76, 73, 71, 72, 84, 139, 220, 10, 76, 2, 179,
140, 15, 72, 142, 1, 142, 1, 65, 20, 5, 67, 72, 69, 78, 32, 216, 164, 6,
4, 82, 73, 65, 71, 249, 175, 11, 13, 84, 73, 65, 76, 32, 65, 82, 84, 83,
32, 85, 78, 73, 2, 227, 161, 5, 67, 136, 1, 152, 1, 7, 76, 69, 84, 84,
69, 82, 32, 194, 1, 83, 236, 2, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71,
78, 32, 170, 129, 18, 72, 225, 5, 4, 77, 65, 82, 75, 60, 254, 3, 84, 206,
148, 2, 68, 166, 188, 14, 78, 214, 181, 1, 67, 2, 75, 2, 80, 2, 83, 2,
90, 138, 69, 45, 2, 66, 2, 71, 2, 72, 2, 74, 2, 76, 2, 77, 2, 82, 2, 87,
2, 89, 187, 2, 65, 62, 96, 4, 73, 71, 78, 32, 37, 16, 85, 66, 74, 79, 73,
78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 32, 4, 254, 177, 14, 67, 235,
216, 3, 65, 58, 182, 1, 84, 206, 148, 2, 68, 166, 188, 14, 78, 214, 181,
1, 67, 2, 75, 2, 80, 2, 83, 2, 90, 138, 69, 66, 2, 71, 2, 72, 2, 74, 2,
76, 2, 77, 2, 82, 2, 87, 2, 89, 187, 2, 65, 8, 194, 134, 18, 83, 138, 69,
72, 187, 2, 65, 10, 158, 203, 18, 65, 186, 2, 69, 2, 73, 2, 79, 3, 85,
156, 1, 120, 11, 65, 82, 65, 77, 32, 71, 79, 78, 68, 73, 32, 232, 5, 3,
67, 85, 76, 64, 5, 75, 32, 87, 79, 82, 183, 132, 18, 85, 150, 1, 100, 7,
76, 69, 84, 84, 69, 82, 32, 178, 2, 82, 56, 5, 83, 73, 71, 78, 32, 82,
86, 247, 211, 16, 68, 94, 210, 1, 74, 42, 84, 198, 235, 14, 65, 38, 68,
214, 6, 85, 186, 202, 1, 73, 42, 76, 190, 195, 1, 75, 38, 78, 46, 83, 82,
66, 2, 67, 2, 71, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 86, 2, 89, 186, 2,
69, 3, 79, 6, 130, 199, 18, 78, 38, 72, 187, 2, 65, 10, 246, 129, 18, 84,
138, 69, 72, 2, 82, 187, 2, 65, 4, 32, 2, 65, 45, 219, 236, 14, 69, 2,
147, 132, 18, 75, 10, 230, 176, 1, 67, 182, 207, 12, 72, 178, 43, 78,
150, 227, 1, 86, 247, 244, 1, 65, 22, 26, 79, 199, 139, 16, 73, 20, 45,
9, 87, 69, 76, 32, 83, 73, 71, 78, 32, 20, 74, 86, 198, 239, 14, 65, 38,
85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 2, 141, 203, 7, 6, 79, 67,
65, 76, 73, 67, 2, 145, 141, 18, 11, 73, 78, 69, 32, 79, 82, 68, 73, 78,
65, 76, 2, 179, 176, 17, 75, 226, 15, 76, 10, 72, 69, 77, 65, 84, 73, 67,
65, 76, 32, 153, 224, 14, 3, 69, 32, 68, 224, 15, 252, 1, 5, 66, 79, 76,
68, 32, 168, 6, 14, 68, 79, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 75,
32, 238, 1, 70, 164, 2, 7, 73, 84, 65, 76, 73, 67, 32, 180, 3, 10, 77,
79, 78, 79, 83, 80, 65, 67, 69, 32, 40, 2, 82, 73, 36, 3, 76, 69, 70,
167, 1, 83, 160, 5, 176, 1, 8, 67, 65, 80, 73, 84, 65, 76, 32, 130, 2,
83, 210, 14, 73, 210, 3, 69, 38, 75, 38, 78, 30, 80, 98, 82, 242, 5, 84,
56, 7, 70, 82, 65, 75, 84, 85, 82, 195, 177, 16, 68, 104, 190, 4, 68,
174, 15, 84, 174, 4, 65, 22, 66, 2, 90, 42, 69, 98, 71, 22, 73, 22, 75,
34, 76, 22, 79, 50, 80, 42, 82, 22, 83, 70, 85, 214, 197, 1, 67, 198,
137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72, 2, 74, 2,
81, 2, 86, 2, 87, 3, 89, 208, 1, 60, 5, 77, 65, 76, 76, 32, 201, 25, 5,
67, 82, 73, 80, 84, 104, 250, 1, 68, 218, 19, 65, 22, 66, 2, 90, 42, 69,
38, 70, 62, 71, 22, 73, 22, 75, 34, 76, 22, 79, 50, 80, 42, 82, 22, 83,
34, 84, 38, 85, 214, 197, 1, 67, 198, 137, 13, 77, 2, 78, 186, 202, 1,
88, 198, 140, 2, 72, 2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 7, 26, 73, 151,
128, 15, 69, 2, 247, 213, 1, 71, 110, 68, 8, 67, 65, 80, 73, 84, 65, 76,
32, 150, 23, 83, 131, 177, 16, 68, 38, 154, 188, 18, 65, 2, 66, 2, 68, 2,
69, 2, 70, 2, 71, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 79, 2, 83, 2, 84,
2, 85, 2, 86, 2, 87, 2, 88, 3, 89, 96, 52, 7, 82, 65, 75, 84, 85, 82, 32,
255, 143, 7, 65, 94, 52, 8, 67, 65, 80, 73, 84, 65, 76, 32, 131, 21, 83,
42, 134, 186, 18, 65, 2, 66, 2, 68, 2, 69, 2, 70, 2, 71, 2, 74, 2, 75, 2,
76, 2, 77, 2, 78, 2, 79, 2, 80, 2, 81, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87,
2, 88, 3, 89, 222, 1, 100, 6, 83, 77, 65, 76, 76, 32, 222, 7, 67, 218, 2,
69, 38, 75, 38, 78, 30, 80, 98, 82, 243, 5, 84, 104, 242, 1, 68, 186, 12,
65, 22, 66, 2, 90, 42, 69, 38, 70, 62, 71, 22, 73, 22, 75, 34, 76, 22,
79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 198, 137,
13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 74, 2, 81, 2, 86, 2, 87, 3,
89, 9, 52, 7, 79, 84, 76, 69, 83, 83, 32, 219, 248, 14, 69, 4, 186, 181,
18, 73, 3, 74, 124, 246, 15, 67, 34, 83, 131, 177, 16, 68, 12, 32, 2, 71,
72, 167, 138, 7, 83, 10, 17, 2, 84, 32, 10, 112, 6, 87, 72, 73, 84, 69,
32, 142, 245, 5, 68, 222, 107, 65, 153, 235, 4, 9, 70, 76, 65, 84, 84,
69, 78, 69, 68, 4, 174, 180, 14, 83, 39, 84, 130, 6, 84, 10, 65, 78, 83,
45, 83, 69, 82, 73, 70, 32, 249, 13, 6, 67, 82, 73, 80, 84, 32, 176, 5,
96, 5, 66, 79, 76, 68, 32, 164, 12, 6, 73, 84, 65, 76, 73, 67, 34, 67,
34, 83, 131, 177, 16, 68, 204, 3, 98, 73, 122, 67, 218, 2, 69, 38, 75,
38, 78, 30, 80, 98, 82, 30, 83, 214, 5, 84, 251, 177, 16, 68, 220, 1, 33,
6, 84, 65, 76, 73, 67, 32, 220, 1, 74, 67, 218, 2, 69, 38, 75, 38, 78,
30, 80, 98, 82, 30, 83, 215, 5, 84, 102, 37, 7, 65, 80, 73, 84, 65, 76,
32, 102, 250, 1, 84, 174, 4, 65, 22, 66, 2, 90, 22, 68, 22, 69, 98, 71,
22, 73, 22, 75, 34, 76, 22, 79, 50, 80, 42, 82, 22, 83, 70, 85, 214, 197,
1, 67, 198, 137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 70, 2, 72,
2, 74, 2, 81, 2, 86, 2, 87, 3, 89, 9, 232, 159, 11, 4, 72, 69, 84, 65,
151, 233, 6, 65, 2, 249, 178, 16, 4, 80, 83, 73, 76, 2, 17, 2, 65, 80, 2,
159, 7, 80, 2, 209, 138, 18, 2, 65, 66, 6, 74, 72, 148, 150, 5, 8, 65,
82, 84, 73, 65, 76, 32, 68, 175, 128, 12, 73, 2, 191, 150, 17, 73, 2,
169, 150, 17, 2, 72, 79, 102, 29, 5, 77, 65, 76, 76, 32, 102, 246, 1, 65,
22, 66, 2, 90, 22, 68, 22, 69, 38, 70, 62, 71, 22, 73, 22, 75, 34, 76,
22, 79, 50, 80, 42, 82, 22, 83, 34, 84, 38, 85, 214, 197, 1, 67, 198,
137, 13, 77, 2, 78, 186, 202, 1, 88, 198, 140, 2, 72, 2, 74, 2, 81, 2,
86, 2, 87, 3, 89, 5, 179, 205, 14, 76, 5, 219, 132, 18, 69, 5, 175, 236,
14, 69, 7, 130, 213, 1, 80, 199, 209, 16, 84, 5, 11, 73, 2, 29, 5, 78,
65, 76, 32, 83, 2, 227, 1, 73, 5, 215, 210, 15, 65, 5, 191, 131, 18, 79,
5, 11, 65, 2, 195, 234, 14, 80, 5, 243, 235, 14, 65, 7, 11, 77, 4, 190,
171, 1, 73, 183, 185, 16, 69, 9, 186, 147, 18, 72, 2, 83, 219, 19, 73, 5,
247, 135, 18, 72, 5, 11, 73, 2, 187, 133, 18, 71, 7, 162, 233, 14, 72,
175, 152, 3, 65, 5, 151, 210, 1, 80, 2, 11, 72, 2, 11, 69, 2, 11, 84, 2,
151, 144, 17, 65, 104, 11, 32, 104, 18, 67, 35, 83, 52, 53, 5, 65, 80,
73, 84, 65, 52, 21, 3, 77, 65, 76, 52, 195, 131, 12, 76, 82, 76, 8, 67,
65, 80, 73, 84, 65, 76, 32, 157, 1, 6, 83, 77, 65, 76, 76, 32, 36, 138,
164, 18, 65, 2, 67, 2, 68, 2, 71, 2, 74, 2, 75, 2, 78, 2, 79, 2, 80, 2,
81, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 2, 89, 3, 90, 46, 238, 162,
18, 65, 2, 66, 2, 67, 2, 68, 2, 70, 2, 72, 2, 73, 2, 74, 2, 75, 2, 76, 2,
77, 2, 78, 2, 80, 2, 81, 2, 82, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88,
2, 89, 3, 90, 40, 45, 9, 32, 78, 85, 77, 69, 82, 65, 76, 32, 40, 70, 69,
66, 70, 70, 78, 26, 83, 66, 84, 206, 172, 16, 90, 223, 86, 79, 6, 40, 4,
73, 71, 72, 84, 203, 253, 9, 76, 5, 131, 202, 16, 69, 8, 30, 73, 105, 3,
79, 85, 82, 4, 146, 135, 5, 70, 239, 129, 13, 86, 4, 65, 3, 73, 78, 69,
8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 5, 219, 200, 16, 84, 10, 42, 72,
150, 253, 9, 87, 187, 209, 7, 69, 4, 222, 133, 5, 73, 175, 166, 11, 82,
130, 9, 226, 1, 65, 188, 4, 9, 67, 72, 65, 78, 73, 67, 65, 76, 32, 34,
68, 204, 15, 11, 69, 84, 69, 73, 32, 77, 65, 89, 69, 75, 32, 178, 11, 76,
62, 78, 134, 50, 82, 176, 15, 8, 83, 83, 65, 71, 69, 32, 87, 65, 22, 84,
211, 155, 17, 77, 26, 68, 6, 83, 85, 82, 69, 68, 32, 137, 182, 14, 5, 84,
32, 79, 78, 32, 24, 96, 5, 65, 78, 71, 76, 69, 164, 148, 10, 9, 82, 73,
71, 72, 84, 32, 65, 78, 71, 139, 245, 7, 66, 21, 11, 32, 18, 212, 1, 39,
87, 73, 84, 72, 32, 79, 80, 69, 78, 32, 65, 82, 77, 32, 69, 78, 68, 73,
78, 71, 32, 73, 78, 32, 65, 82, 82, 79, 87, 32, 80, 79, 73, 78, 84, 73,
78, 71, 32, 205, 230, 17, 7, 79, 80, 69, 78, 73, 78, 71, 16, 62, 68, 24,
3, 76, 69, 70, 0, 4, 82, 73, 71, 72, 43, 85, 4, 73, 3, 79, 87, 78, 4,
157, 150, 8, 5, 84, 32, 65, 78, 68, 4, 11, 80, 4, 153, 233, 11, 3, 32,
65, 78, 4, 166, 153, 17, 65, 215, 56, 76, 252, 1, 56, 9, 69, 70, 65, 73,
68, 82, 73, 78, 32, 159, 7, 73, 190, 1, 174, 1, 67, 52, 6, 68, 73, 71,
73, 84, 32, 152, 1, 7, 78, 85, 77, 66, 69, 82, 32, 114, 83, 224, 147, 7,
12, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79, 78, 32, 131, 170, 8, 70, 70,
128, 3, 5, 65, 80, 73, 84, 65, 135, 189, 15, 79, 26, 82, 84, 48, 2, 79,
78, 142, 161, 16, 70, 30, 83, 102, 90, 210, 86, 78, 239, 112, 69, 8, 44,
3, 72, 82, 69, 241, 148, 17, 2, 87, 79, 4, 239, 148, 17, 69, 20, 50, 84,
182, 249, 4, 69, 46, 70, 42, 78, 31, 83, 6, 246, 250, 4, 72, 220, 247, 4,
2, 87, 69, 159, 209, 7, 69, 70, 68, 3, 77, 65, 76, 157, 212, 9, 8, 89,
77, 66, 79, 76, 32, 65, 73, 68, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82,
32, 68, 242, 1, 65, 38, 78, 218, 227, 3, 72, 2, 75, 178, 213, 10, 89,
222, 150, 3, 79, 162, 64, 66, 2, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, 73,
2, 74, 2, 76, 2, 77, 2, 80, 2, 81, 2, 82, 2, 83, 2, 84, 2, 85, 2, 86, 2,
87, 2, 88, 3, 90, 7, 254, 243, 3, 84, 171, 156, 14, 73, 7, 130, 144, 18,
71, 3, 89, 62, 48, 5, 69, 86, 65, 76, 32, 45, 3, 85, 77, 32, 6, 218, 243,
10, 69, 134, 198, 4, 67, 115, 81, 56, 210, 1, 66, 50, 70, 164, 1, 3, 76,
69, 70, 0, 4, 82, 73, 71, 72, 248, 1, 11, 77, 65, 84, 72, 69, 77, 65, 84,
73, 67, 65, 22, 83, 124, 4, 84, 72, 82, 69, 214, 174, 15, 86, 246, 62,
69, 166, 4, 87, 203, 11, 71, 4, 164, 158, 6, 3, 79, 76, 68, 211, 239, 7,
76, 10, 84, 9, 76, 65, 84, 84, 69, 78, 69, 68, 32, 224, 3, 3, 79, 85, 82,
135, 239, 15, 73, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 213, 1,
3, 84, 32, 80, 6, 11, 84, 6, 78, 32, 41, 15, 45, 80, 79, 73, 78, 84, 73,
78, 71, 32, 65, 78, 71, 76, 69, 4, 36, 5, 67, 85, 82, 76, 89, 59, 80, 2,
17, 2, 32, 66, 2, 249, 184, 7, 4, 82, 65, 67, 75, 2, 193, 198, 17, 10,
65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 2, 163, 203, 17, 76, 12, 150,
143, 15, 72, 200, 95, 2, 73, 88, 182, 2, 65, 245, 115, 15, 77, 65, 76,
76, 32, 87, 72, 73, 84, 69, 32, 67, 73, 82, 67, 4, 11, 69, 4, 45, 9, 32,
80, 79, 73, 78, 84, 69, 68, 32, 4, 250, 207, 9, 80, 151, 158, 6, 66, 158,
1, 146, 1, 65, 104, 6, 67, 72, 69, 73, 75, 72, 34, 76, 144, 6, 8, 83, 89,
76, 76, 65, 66, 76, 69, 0, 4, 87, 79, 82, 68, 50, 86, 147, 139, 16, 68,
6, 80, 8, 72, 65, 78, 71, 32, 75, 72, 85, 164, 6, 3, 80, 85, 78, 227,
223, 13, 78, 2, 251, 200, 16, 68, 4, 150, 182, 17, 65, 139, 60, 69, 94,
52, 6, 69, 84, 84, 69, 82, 32, 185, 5, 2, 85, 77, 92, 250, 1, 66, 36, 2,
67, 72, 38, 68, 50, 71, 38, 74, 34, 75, 42, 78, 62, 80, 30, 83, 42, 84,
54, 73, 0, 3, 76, 65, 73, 0, 3, 77, 73, 84, 166, 130, 13, 72, 166, 10,
82, 2, 87, 248, 186, 2, 2, 65, 84, 250, 223, 1, 89, 246, 8, 85, 226, 79,
69, 3, 79, 4, 146, 198, 16, 72, 147, 189, 1, 65, 4, 174, 247, 16, 73,
211, 139, 1, 65, 8, 214, 171, 10, 72, 182, 203, 6, 73, 147, 68, 68, 4,
166, 171, 10, 72, 239, 211, 7, 79, 4, 246, 196, 16, 72, 195, 49, 73, 6,
216, 1, 2, 79, 75, 139, 169, 10, 72, 12, 178, 1, 65, 0, 3, 71, 79, 85,
214, 253, 17, 78, 3, 89, 6, 118, 65, 255, 194, 16, 72, 6, 142, 240, 17,
65, 162, 14, 72, 3, 83, 10, 48, 2, 73, 76, 138, 169, 10, 72, 199, 143, 7,
84, 5, 225, 177, 1, 4, 32, 76, 79, 78, 2, 193, 252, 17, 3, 32, 73, 89, 2,
157, 150, 17, 7, 32, 82, 69, 80, 69, 84, 73, 30, 64, 10, 79, 87, 69, 76,
32, 83, 73, 71, 78, 32, 187, 194, 15, 73, 28, 130, 1, 65, 44, 4, 67, 72,
69, 73, 2, 79, 0, 3, 83, 79, 85, 0, 2, 89, 69, 22, 73, 38, 85, 178, 137,
11, 78, 211, 185, 4, 86, 8, 198, 234, 16, 78, 210, 82, 65, 187, 64, 85,
2, 155, 234, 16, 78, 4, 134, 234, 16, 78, 139, 147, 1, 73, 4, 226, 233,
16, 78, 139, 147, 1, 85, 6, 148, 225, 16, 4, 80, 79, 77, 69, 146, 19, 84,
195, 56, 79, 178, 3, 160, 1, 11, 68, 69, 32, 75, 73, 75, 65, 75, 85, 73,
32, 212, 228, 16, 20, 79, 82, 65, 72, 32, 87, 73, 84, 72, 32, 78, 73, 78,
69, 32, 66, 82, 65, 78, 67, 79, 83, 174, 3, 148, 1, 17, 67, 79, 77, 66,
73, 78, 73, 78, 71, 32, 78, 85, 77, 66, 69, 82, 32, 164, 1, 10, 83, 89,
76, 76, 65, 66, 76, 69, 32, 77, 215, 172, 9, 68, 14, 62, 84, 56, 7, 72,
85, 78, 68, 82, 69, 68, 147, 186, 4, 77, 8, 26, 69, 219, 186, 4, 72, 6,
26, 78, 167, 177, 14, 69, 4, 172, 186, 4, 2, 32, 84, 163, 190, 13, 83,
142, 3, 22, 48, 143, 21, 49, 198, 1, 118, 48, 250, 1, 49, 210, 1, 50,
138, 2, 51, 254, 1, 52, 130, 2, 53, 158, 2, 54, 242, 1, 55, 134, 2, 56,
187, 2, 57, 18, 142, 1, 49, 34, 50, 22, 51, 22, 52, 162, 151, 2, 53, 162,
241, 3, 56, 196, 236, 10, 3, 57, 32, 77, 92, 3, 55, 32, 77, 237, 90, 3,
54, 32, 87, 2, 11, 32, 2, 151, 226, 17, 75, 2, 243, 236, 17, 32, 2, 179,
159, 12, 32, 2, 11, 32, 2, 207, 225, 17, 87, 20, 130, 1, 49, 22, 54, 18,
56, 22, 57, 228, 28, 2, 48, 32, 162, 188, 7, 53, 218, 209, 5, 52, 198,
10, 55, 222, 9, 50, 207, 244, 3, 51, 2, 231, 198, 17, 32, 2, 147, 25, 32,
2, 215, 214, 13, 32, 2, 227, 128, 13, 32, 20, 106, 49, 22, 50, 22, 51,
22, 52, 22, 53, 22, 54, 22, 55, 22, 57, 142, 229, 11, 48, 185, 236, 1, 2,
56, 32, 2, 147, 175, 10, 32, 2, 195, 134, 10, 32, 2, 227, 205, 17, 32, 2,
211, 153, 12, 32, 2, 167, 238, 12, 32, 2, 219, 207, 17, 32, 2, 179, 232,
12, 32, 2, 219, 28, 32, 20, 174, 1, 48, 16, 2, 49, 32, 20, 2, 52, 32, 20,
2, 56, 32, 130, 195, 4, 57, 214, 51, 50, 22, 53, 220, 240, 7, 2, 54, 32,
188, 136, 4, 3, 55, 32, 78, 237, 90, 3, 51, 32, 89, 2, 159, 37, 32, 2,
163, 220, 17, 89, 2, 143, 220, 17, 70, 2, 183, 163, 16, 78, 20, 192, 1,
2, 48, 32, 22, 53, 22, 56, 160, 8, 3, 52, 32, 75, 128, 22, 3, 54, 32, 72,
222, 2, 55, 202, 213, 4, 49, 224, 184, 4, 3, 57, 32, 87, 156, 174, 4, 2,
51, 32, 157, 197, 1, 3, 50, 32, 72, 2, 219, 251, 15, 72, 2, 175, 217, 15,
32, 2, 211, 206, 17, 32, 20, 178, 1, 48, 18, 53, 20, 2, 54, 32, 20, 2,
56, 32, 22, 57, 232, 218, 9, 2, 50, 32, 236, 4, 2, 51, 32, 210, 214, 1,
49, 164, 234, 3, 3, 52, 32, 76, 197, 144, 1, 3, 55, 32, 78, 2, 159, 4,
32, 2, 231, 162, 16, 32, 2, 191, 190, 17, 71, 2, 131, 156, 13, 78, 2,
185, 149, 16, 2, 32, 77, 20, 196, 1, 2, 50, 32, 22, 54, 238, 25, 51, 168,
2, 3, 55, 32, 78, 200, 216, 1, 2, 52, 32, 234, 150, 3, 56, 144, 150, 5,
3, 48, 32, 78, 192, 89, 3, 49, 32, 87, 158, 13, 57, 249, 238, 4, 3, 53,
32, 75, 2, 179, 188, 17, 77, 2, 207, 157, 10, 32, 20, 196, 1, 3, 52, 32,
75, 20, 2, 53, 32, 22, 57, 232, 7, 3, 49, 32, 71, 234, 1, 51, 236, 6, 3,
48, 32, 71, 146, 5, 50, 212, 230, 10, 2, 55, 32, 172, 160, 4, 3, 54, 32,
75, 217, 88, 3, 56, 32, 70, 2, 131, 195, 17, 80, 2, 131, 209, 17, 70, 2,
163, 249, 10, 32, 20, 228, 1, 2, 48, 32, 20, 2, 49, 32, 20, 2, 52, 32,
22, 53, 172, 14, 6, 54, 32, 76, 79, 78, 71, 224, 11, 2, 57, 32, 228, 173,
3, 3, 51, 32, 72, 128, 165, 9, 4, 50, 32, 78, 71, 236, 247, 3, 3, 55, 32,
72, 189, 97, 3, 56, 32, 70, 2, 243, 206, 17, 89, 2, 147, 243, 15, 80, 2,
255, 242, 15, 76, 2, 183, 232, 16, 32, 20, 230, 1, 53, 216, 14, 4, 48,
32, 78, 71, 244, 7, 3, 51, 32, 71, 220, 163, 12, 2, 55, 32, 250, 117, 57,
200, 117, 3, 50, 32, 75, 136, 203, 1, 3, 49, 32, 84, 156, 28, 4, 56, 32,
78, 89, 152, 134, 1, 3, 52, 32, 77, 225, 34, 2, 54, 32, 2, 183, 179, 17,
32, 200, 1, 118, 48, 186, 2, 49, 210, 2, 50, 166, 2, 51, 222, 1, 52, 186,
2, 53, 214, 2, 54, 166, 2, 55, 190, 2, 56, 223, 2, 57, 20, 222, 1, 49,
30, 52, 28, 7, 53, 32, 76, 79, 78, 71, 32, 12, 2, 51, 32, 184, 11, 6, 54,
32, 76, 79, 78, 71, 202, 241, 4, 50, 170, 170, 2, 48, 204, 143, 5, 3, 55,
32, 71, 200, 182, 3, 3, 57, 32, 89, 201, 40, 3, 56, 32, 75, 2, 129, 148,
16, 2, 32, 70, 2, 137, 149, 15, 2, 32, 84, 2, 11, 77, 2, 227, 148, 15,
66, 20, 208, 1, 6, 48, 32, 76, 79, 78, 71, 22, 51, 34, 54, 22, 56, 32, 2,
57, 32, 248, 17, 4, 53, 32, 78, 71, 128, 209, 2, 2, 55, 32, 196, 151, 2,
3, 50, 32, 75, 216, 151, 10, 3, 52, 32, 87, 181, 136, 2, 2, 49, 32, 2,
183, 183, 16, 32, 2, 11, 32, 2, 255, 198, 17, 74, 2, 155, 210, 16, 32, 2,
11, 32, 2, 203, 198, 17, 87, 2, 151, 202, 15, 78, 20, 226, 1, 50, 32, 2,
51, 32, 128, 4, 3, 52, 32, 71, 254, 9, 48, 244, 245, 9, 4, 56, 32, 72,
79, 208, 225, 2, 5, 55, 32, 78, 71, 71, 148, 88, 2, 53, 32, 168, 61, 2,
57, 32, 216, 237, 1, 3, 54, 32, 87, 221, 153, 1, 2, 49, 32, 2, 11, 32, 2,
183, 166, 13, 77, 2, 11, 78, 2, 143, 199, 17, 68, 20, 200, 3, 2, 56, 32,
252, 4, 3, 52, 32, 78, 148, 244, 4, 3, 50, 32, 75, 250, 215, 2, 49, 2,
53, 232, 174, 2, 2, 55, 32, 160, 140, 5, 3, 51, 32, 70, 0, 3, 54, 32, 83,
224, 53, 2, 48, 32, 197, 152, 1, 3, 57, 32, 87, 20, 236, 1, 8, 50, 32,
76, 79, 78, 71, 32, 77, 20, 3, 53, 32, 77, 22, 54, 224, 2, 3, 57, 32, 78,
186, 220, 6, 55, 176, 160, 3, 3, 51, 32, 87, 160, 230, 2, 2, 48, 32, 168,
60, 3, 56, 32, 71, 216, 233, 1, 3, 49, 32, 89, 1, 3, 52, 32, 86, 2, 147,
184, 17, 66, 2, 155, 195, 17, 66, 2, 169, 159, 16, 3, 32, 78, 71, 20,
192, 1, 2, 50, 32, 34, 52, 26, 53, 34, 54, 36, 2, 55, 32, 188, 7, 2, 48,
32, 204, 128, 10, 3, 56, 32, 75, 188, 198, 2, 2, 49, 32, 136, 144, 3, 5,
57, 32, 78, 71, 71, 229, 210, 1, 2, 51, 32, 2, 11, 78, 2, 183, 210, 17,
74, 2, 165, 5, 2, 32, 77, 2, 11, 32, 2, 223, 192, 17, 71, 2, 169, 137,
15, 4, 32, 78, 71, 71, 2, 223, 225, 15, 74, 20, 220, 1, 2, 48, 32, 20, 6,
49, 32, 76, 79, 78, 71, 30, 56, 156, 2, 2, 55, 32, 188, 198, 9, 3, 52,
32, 78, 236, 49, 4, 54, 32, 71, 85, 160, 140, 5, 2, 53, 32, 216, 88, 3,
50, 32, 83, 0, 2, 51, 32, 241, 101, 2, 57, 32, 2, 147, 135, 15, 74, 2,
141, 169, 12, 2, 32, 77, 2, 191, 217, 12, 32, 24, 198, 1, 50, 2, 52, 36,
6, 53, 32, 76, 79, 78, 71, 28, 3, 55, 32, 78, 34, 56, 168, 247, 11, 2,
54, 32, 196, 98, 3, 57, 32, 75, 148, 131, 3, 3, 51, 32, 86, 240, 113, 4,
48, 32, 78, 89, 219, 53, 49, 4, 205, 134, 15, 4, 32, 77, 66, 79, 2, 229,
176, 17, 2, 32, 74, 2, 11, 71, 2, 151, 131, 16, 85, 2, 155, 249, 15, 32,
20, 212, 1, 2, 48, 32, 22, 49, 22, 50, 20, 6, 51, 32, 76, 79, 78, 71, 34,
56, 168, 142, 9, 2, 53, 32, 128, 129, 1, 3, 52, 32, 78, 232, 198, 2, 2,
54, 32, 216, 129, 3, 4, 55, 32, 77, 66, 237, 30, 4, 57, 32, 77, 85, 2,
187, 130, 15, 68, 2, 223, 141, 10, 32, 2, 215, 222, 10, 32, 2, 165, 189,
15, 3, 32, 78, 71, 2, 17, 2, 32, 77, 2, 163, 218, 15, 66, 16, 142, 1, 48,
32, 3, 49, 32, 78, 20, 3, 50, 32, 78, 20, 2, 51, 32, 20, 3, 52, 32, 87,
22, 53, 20, 2, 54, 32, 233, 212, 12, 3, 55, 32, 70, 2, 11, 32, 2, 243,
216, 15, 71, 2, 223, 216, 15, 68, 2, 131, 166, 17, 74, 2, 235, 250, 16,
72, 2, 235, 182, 17, 85, 2, 147, 254, 15, 32, 2, 163, 145, 1, 83, 248, 1,
72, 6, 79, 73, 84, 73, 67, 32, 212, 131, 11, 2, 67, 85, 191, 193, 2, 80,
244, 1, 104, 8, 67, 85, 82, 83, 73, 86, 69, 32, 221, 10, 13, 72, 73, 69,
82, 79, 71, 76, 89, 80, 72, 73, 67, 32, 180, 1, 96, 9, 70, 82, 65, 67,
84, 73, 79, 78, 32, 250, 2, 76, 133, 3, 7, 78, 85, 77, 66, 69, 82, 32,
24, 78, 69, 50, 70, 44, 4, 79, 78, 69, 32, 46, 83, 50, 84, 61, 3, 78, 73,
78, 4, 160, 1, 2, 76, 69, 93, 4, 73, 71, 72, 84, 4, 192, 1, 2, 73, 86,
13, 3, 79, 85, 82, 4, 140, 192, 15, 4, 84, 87, 69, 76, 19, 72, 4, 26, 69,
93, 2, 73, 88, 2, 65, 2, 86, 69, 6, 46, 69, 12, 3, 72, 82, 69, 13, 2, 87,
79, 2, 23, 78, 2, 11, 69, 2, 237, 193, 15, 5, 32, 84, 87, 69, 76, 52, 76,
6, 69, 84, 84, 69, 82, 32, 137, 2, 8, 79, 71, 79, 71, 82, 65, 77, 32, 48,
182, 1, 65, 46, 84, 238, 235, 1, 78, 2, 83, 162, 217, 13, 72, 234, 181,
1, 75, 138, 69, 66, 2, 68, 2, 76, 2, 77, 2, 80, 2, 81, 2, 82, 2, 87, 2,
89, 186, 2, 69, 2, 73, 3, 79, 5, 157, 182, 11, 6, 82, 67, 72, 65, 73, 67,
6, 178, 194, 17, 65, 2, 69, 3, 79, 4, 202, 209, 4, 73, 153, 212, 12, 2,
82, 77, 104, 92, 5, 69, 73, 71, 72, 84, 30, 70, 92, 4, 78, 73, 78, 69,
54, 83, 78, 84, 73, 2, 79, 78, 11, 150, 1, 89, 223, 1, 32, 24, 18, 73,
35, 79, 12, 142, 2, 86, 163, 236, 3, 70, 12, 148, 2, 2, 85, 82, 251, 235,
3, 82, 11, 28, 2, 84, 89, 223, 1, 32, 2, 215, 161, 6, 32, 24, 40, 4, 69,
86, 69, 78, 1, 2, 73, 88, 13, 154, 1, 32, 251, 235, 3, 84, 28, 34, 72,
50, 87, 143, 160, 6, 69, 12, 32, 2, 82, 69, 239, 235, 3, 73, 8, 39, 69,
12, 26, 79, 239, 235, 3, 69, 9, 11, 32, 6, 178, 158, 6, 72, 207, 195, 5,
84, 64, 96, 7, 76, 69, 84, 84, 69, 82, 32, 201, 167, 3, 11, 83, 89, 77,
66, 79, 76, 32, 86, 73, 68, 74, 60, 174, 1, 66, 2, 82, 22, 78, 30, 83,
38, 84, 222, 189, 15, 72, 234, 181, 1, 75, 138, 69, 68, 2, 76, 2, 77, 2,
80, 2, 81, 2, 87, 2, 89, 186, 2, 65, 2, 69, 2, 73, 3, 79, 4, 151, 166, 3,
65, 8, 130, 166, 3, 65, 3, 69, 6, 230, 165, 3, 65, 195, 149, 14, 69, 10,
194, 165, 3, 65, 2, 69, 195, 149, 14, 79, 2, 243, 171, 12, 73, 22, 26,
82, 207, 252, 16, 73, 20, 44, 5, 73, 67, 65, 76, 32, 251, 185, 17, 79,
18, 116, 10, 76, 79, 78, 71, 32, 79, 86, 69, 82, 32, 74, 80, 26, 84, 168,
1, 7, 83, 72, 79, 82, 84, 32, 79, 215, 32, 66, 4, 180, 246, 2, 2, 83, 72,
169, 253, 10, 7, 84, 87, 79, 32, 83, 72, 79, 2, 109, 3, 69, 78, 84, 8,
66, 69, 34, 82, 41, 10, 87, 79, 32, 83, 72, 79, 82, 84, 83, 32, 2, 17, 2,
84, 82, 2, 23, 65, 2, 11, 73, 2, 189, 157, 16, 2, 83, 69, 4, 26, 79, 235,
131, 8, 74, 2, 205, 195, 10, 4, 86, 69, 82, 32, 230, 2, 104, 3, 65, 79,
32, 136, 18, 2, 67, 82, 142, 1, 68, 142, 1, 76, 130, 1, 78, 245, 2, 4,
82, 82, 79, 82, 170, 2, 156, 1, 7, 76, 69, 84, 84, 69, 82, 32, 180, 10,
5, 83, 73, 71, 78, 32, 212, 1, 5, 84, 79, 78, 69, 32, 69, 11, 86, 79, 87,
69, 76, 32, 83, 73, 71, 78, 32, 178, 1, 214, 1, 65, 110, 66, 34, 68, 106,
71, 34, 76, 50, 78, 106, 82, 170, 1, 83, 54, 84, 218, 1, 86, 32, 3, 89,
73, 32, 118, 90, 238, 180, 13, 81, 234, 233, 1, 80, 222, 196, 1, 72, 2,
77, 138, 69, 70, 2, 75, 2, 87, 3, 88, 10, 52, 7, 82, 67, 72, 65, 73, 67,
32, 175, 178, 17, 72, 8, 134, 132, 9, 90, 162, 184, 4, 78, 207, 243, 3,
77, 4, 158, 158, 17, 82, 219, 19, 65, 16, 50, 90, 154, 4, 76, 214, 170,
17, 68, 187, 2, 65, 8, 202, 157, 17, 89, 162, 17, 72, 2, 90, 187, 2, 65,
6, 174, 233, 16, 72, 195, 71, 65, 8, 170, 184, 10, 72, 238, 245, 6, 89,
187, 2, 65, 18, 54, 65, 170, 232, 16, 71, 2, 78, 2, 89, 139, 69, 72, 5,
11, 83, 2, 141, 234, 13, 4, 65, 76, 73, 90, 16, 60, 9, 69, 70, 79, 82,
77, 69, 68, 32, 84, 167, 152, 17, 84, 14, 40, 4, 79, 78, 69, 45, 167,
177, 15, 83, 12, 202, 174, 17, 49, 2, 50, 2, 52, 2, 53, 2, 54, 3, 56, 8,
182, 154, 17, 89, 162, 17, 72, 2, 83, 187, 2, 65, 32, 78, 76, 20, 4, 79,
78, 69, 45, 70, 83, 254, 169, 17, 84, 186, 2, 65, 3, 69, 4, 231, 180, 10,
72, 14, 246, 172, 17, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 3, 56, 8,
250, 169, 17, 72, 2, 83, 186, 2, 65, 3, 69, 4, 202, 169, 17, 70, 187, 2,
65, 16, 70, 84, 244, 173, 15, 2, 68, 90, 146, 63, 78, 226, 187, 1, 75, 3,
80, 8, 218, 227, 16, 83, 138, 69, 84, 187, 2, 65, 16, 50, 90, 254, 226,
16, 83, 138, 69, 72, 187, 2, 65, 8, 150, 178, 10, 83, 238, 245, 6, 89,
187, 2, 65, 8, 144, 1, 9, 82, 69, 70, 79, 82, 77, 69, 68, 32, 34, 65,
133, 133, 16, 18, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 77, 79, 68, 73,
70, 73, 69, 82, 4, 30, 65, 221, 88, 2, 86, 79, 2, 133, 150, 12, 3, 83,
80, 73, 8, 202, 134, 15, 66, 204, 78, 3, 84, 79, 80, 182, 86, 65, 159,
82, 82, 104, 146, 1, 65, 78, 69, 62, 73, 78, 79, 74, 85, 74, 89, 224,
149, 7, 9, 82, 79, 85, 78, 68, 69, 68, 32, 69, 238, 196, 7, 87, 178, 75,
78, 227, 127, 86, 19, 222, 168, 15, 78, 226, 189, 1, 69, 146, 63, 72,
146, 1, 65, 2, 73, 3, 85, 15, 246, 207, 13, 82, 158, 216, 1, 78, 130,
254, 1, 65, 3, 73, 23, 202, 167, 15, 65, 54, 79, 134, 253, 1, 78, 86, 69,
2, 71, 2, 73, 3, 85, 13, 42, 69, 226, 164, 17, 71, 2, 79, 3, 85, 4, 222,
164, 17, 82, 3, 89, 19, 182, 166, 15, 65, 182, 234, 1, 69, 134, 19, 78,
2, 79, 86, 73, 3, 85, 7, 162, 144, 17, 85, 219, 19, 73, 12, 18, 32, 63,
79, 4, 244, 141, 16, 4, 79, 78, 32, 85, 13, 4, 68, 65, 83, 72, 8, 142,
237, 11, 83, 154, 137, 4, 80, 242, 37, 32, 163, 112, 66, 12, 64, 4, 68,
76, 69, 32, 237, 223, 4, 6, 76, 73, 78, 69, 32, 72, 10, 220, 193, 5, 3,
84, 72, 73, 198, 232, 8, 76, 22, 82, 159, 167, 2, 68, 8, 76, 6, 73, 84,
65, 82, 89, 32, 164, 194, 10, 3, 75, 89, 32, 211, 215, 5, 76, 4, 26, 72,
219, 181, 12, 77, 2, 135, 178, 4, 69, 24, 42, 73, 76, 2, 85, 83, 207,
159, 17, 89, 6, 34, 68, 22, 77, 255, 150, 15, 66, 2, 203, 157, 6, 73, 2,
231, 237, 6, 73, 16, 46, 32, 153, 183, 10, 5, 45, 79, 82, 45, 80, 14, 40,
4, 83, 73, 71, 78, 159, 183, 13, 84, 13, 11, 32, 10, 44, 5, 87, 73, 84,
72, 32, 247, 173, 6, 73, 8, 66, 67, 166, 203, 4, 68, 230, 173, 8, 82, 21,
4, 70, 65, 76, 76, 2, 177, 242, 11, 3, 79, 77, 77, 5, 143, 147, 15, 32,
186, 9, 184, 1, 10, 66, 73, 76, 69, 32, 80, 72, 79, 78, 69, 166, 1, 68,
198, 76, 78, 178, 27, 79, 172, 1, 3, 83, 81, 85, 38, 84, 250, 1, 85, 218,
187, 11, 89, 189, 225, 2, 5, 86, 73, 69, 32, 67, 7, 11, 32, 4, 108, 21,
87, 73, 84, 72, 32, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 65, 82,
82, 79, 87, 195, 178, 1, 79, 2, 11, 32, 2, 173, 232, 16, 2, 65, 84, 156,
6, 58, 69, 74, 73, 157, 75, 7, 85, 76, 79, 32, 84, 87, 79, 4, 156, 202,
16, 10, 82, 78, 32, 80, 69, 78, 84, 65, 84, 72, 159, 18, 76, 150, 6, 42,
32, 221, 1, 5, 70, 73, 69, 82, 32, 158, 1, 88, 5, 83, 73, 71, 78, 32,
158, 180, 3, 86, 170, 163, 3, 68, 186, 1, 76, 243, 203, 4, 65, 10, 42,
65, 218, 217, 8, 72, 179, 251, 7, 86, 4, 44, 5, 82, 68, 72, 65, 67, 251,
210, 16, 78, 2, 161, 211, 16, 3, 65, 78, 68, 248, 4, 92, 12, 66, 82, 69,
86, 69, 32, 87, 73, 84, 72, 32, 73, 89, 7, 76, 69, 84, 84, 69, 82, 32, 2,
33, 6, 78, 86, 69, 82, 84, 69, 2, 21, 3, 68, 32, 66, 2, 205, 153, 16, 2,
82, 69, 246, 4, 198, 1, 65, 82, 66, 66, 67, 198, 13, 68, 202, 1, 69, 182,
2, 71, 82, 72, 46, 76, 230, 4, 77, 216, 3, 7, 79, 80, 69, 78, 32, 83, 72,
22, 80, 38, 82, 182, 4, 83, 206, 33, 84, 114, 85, 118, 86, 63, 89, 6, 38,
76, 166, 27, 67, 227, 209, 10, 80, 2, 253, 19, 6, 86, 69, 79, 76, 65, 82,
6, 192, 19, 5, 73, 76, 65, 66, 73, 193, 45, 4, 69, 71, 73, 78, 162, 1,
240, 1, 7, 65, 80, 73, 84, 65, 76, 32, 200, 2, 7, 69, 78, 84, 82, 69, 68,
32, 100, 13, 72, 73, 78, 69, 83, 69, 32, 84, 79, 78, 69, 32, 89, 108, 8,
89, 82, 73, 76, 76, 73, 67, 32, 218, 230, 10, 73, 244, 2, 4, 82, 79, 83,
83, 219, 211, 5, 79, 58, 214, 1, 66, 42, 82, 130, 27, 72, 186, 157, 13,
79, 222, 150, 3, 65, 162, 64, 67, 2, 68, 2, 69, 2, 70, 2, 71, 2, 73, 2,
74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 80, 2, 81, 2, 83, 2, 84, 2, 85, 2, 86,
3, 87, 5, 237, 150, 6, 5, 65, 82, 82, 69, 68, 7, 41, 8, 69, 86, 69, 82,
83, 69, 68, 32, 4, 134, 143, 17, 69, 3, 78, 4, 30, 76, 21, 3, 82, 73, 71,
2, 29, 2, 69, 70, 2, 11, 72, 2, 11, 84, 2, 181, 26, 2, 32, 72, 16, 36, 3,
65, 78, 71, 1, 2, 73, 78, 8, 11, 32, 8, 166, 145, 12, 83, 170, 171, 4,
80, 158, 44, 81, 3, 82, 78, 34, 72, 30, 83, 255, 188, 16, 69, 2, 181,
161, 15, 2, 65, 82, 74, 40, 5, 77, 65, 76, 76, 32, 183, 6, 79, 72, 186,
1, 66, 138, 1, 68, 38, 69, 150, 1, 80, 58, 83, 94, 84, 34, 89, 226, 134,
16, 90, 130, 64, 73, 150, 19, 67, 2, 71, 186, 22, 74, 2, 86, 158, 20, 72,
2, 75, 186, 2, 65, 2, 79, 3, 85, 6, 38, 89, 198, 27, 65, 139, 239, 16,
69, 2, 237, 202, 1, 19, 69, 76, 79, 82, 85, 83, 83, 73, 65, 78, 45, 85,
75, 82, 65, 73, 78, 73, 65, 4, 242, 215, 6, 90, 251, 177, 10, 69, 15, 50,
83, 150, 137, 17, 70, 2, 76, 2, 77, 3, 82, 5, 25, 4, 32, 87, 73, 84, 2,
21, 3, 72, 32, 68, 2, 11, 69, 2, 253, 156, 13, 3, 83, 67, 69, 4, 26, 65,
155, 136, 17, 69, 2, 205, 219, 16, 2, 76, 79, 8, 42, 84, 226, 173, 1, 67,
187, 215, 15, 72, 4, 153, 19, 8, 82, 65, 73, 71, 72, 84, 32, 85, 4, 202,
240, 16, 83, 215, 22, 69, 6, 36, 3, 69, 82, 85, 219, 134, 17, 85, 5, 37,
7, 32, 87, 73, 84, 72, 32, 66, 2, 21, 3, 65, 67, 75, 2, 169, 200, 16, 2,
32, 89, 2, 175, 186, 11, 70, 16, 18, 69, 27, 79, 2, 169, 5, 2, 78, 84,
14, 64, 2, 84, 32, 52, 5, 85, 66, 76, 69, 32, 129, 52, 2, 87, 78, 6, 162,
224, 9, 83, 210, 202, 4, 86, 247, 181, 1, 72, 4, 210, 137, 2, 65, 231,
248, 2, 80, 24, 40, 5, 88, 84, 82, 65, 45, 131, 49, 78, 20, 52, 5, 72,
73, 71, 72, 32, 81, 4, 76, 79, 87, 32, 10, 156, 1, 9, 69, 88, 84, 82, 65,
45, 76, 79, 87, 154, 7, 68, 70, 76, 79, 84, 10, 76, 10, 69, 88, 84, 82,
65, 45, 72, 73, 71, 72, 154, 7, 68, 70, 76, 79, 84, 2, 145, 8, 8, 32, 67,
79, 78, 84, 79, 85, 82, 8, 162, 9, 82, 226, 3, 76, 173, 209, 15, 9, 69,
79, 82, 71, 73, 65, 78, 32, 78, 10, 248, 5, 4, 73, 71, 72, 32, 255, 40,
65, 44, 46, 65, 84, 2, 79, 87, 201, 11, 2, 69, 70, 2, 21, 3, 84, 69, 82,
2, 17, 2, 65, 76, 2, 17, 2, 32, 67, 2, 239, 205, 15, 76, 36, 86, 32, 133,
151, 12, 15, 69, 82, 32, 82, 73, 71, 72, 84, 32, 67, 79, 82, 78, 69, 82,
34, 158, 1, 67, 20, 2, 68, 79, 40, 4, 76, 69, 70, 84, 82, 77, 12, 2, 82,
73, 50, 84, 178, 3, 65, 42, 71, 170, 2, 73, 172, 157, 14, 2, 85, 80, 255,
188, 1, 86, 2, 175, 215, 10, 73, 6, 238, 2, 84, 241, 161, 14, 2, 87, 78,
6, 28, 2, 32, 65, 247, 2, 45, 4, 25, 4, 82, 82, 79, 87, 5, 187, 164, 14,
72, 2, 111, 65, 4, 216, 163, 14, 3, 71, 72, 84, 175, 216, 2, 78, 4, 194,
2, 79, 219, 220, 14, 73, 18, 18, 65, 23, 73, 2, 195, 212, 15, 67, 16, 26,
68, 179, 201, 13, 78, 14, 38, 32, 217, 1, 4, 68, 76, 69, 32, 8, 26, 68,
70, 76, 79, 84, 4, 17, 2, 79, 84, 4, 25, 4, 84, 69, 68, 32, 4, 18, 76,
79, 84, 2, 25, 4, 69, 70, 84, 45, 2, 25, 4, 83, 84, 69, 77, 2, 17, 2, 32,
84, 2, 11, 79, 2, 11, 78, 2, 135, 214, 15, 69, 6, 40, 6, 68, 79, 85, 66,
76, 69, 75, 71, 4, 11, 32, 4, 18, 65, 43, 71, 2, 11, 67, 2, 145, 213, 10,
2, 85, 84, 2, 11, 82, 2, 223, 212, 10, 65, 2, 171, 242, 14, 69, 4, 134,
198, 13, 76, 159, 152, 2, 82, 26, 104, 6, 65, 73, 83, 69, 68, 32, 150, 1,
69, 216, 1, 3, 73, 71, 72, 193, 250, 8, 5, 72, 79, 84, 73, 67, 10, 70,
68, 30, 73, 214, 218, 9, 69, 128, 255, 5, 2, 85, 80, 215, 76, 67, 2, 197,
163, 15, 2, 79, 87, 2, 189, 218, 9, 7, 78, 86, 69, 82, 84, 69, 68, 8,
104, 7, 86, 69, 82, 83, 69, 68, 32, 137, 28, 14, 84, 82, 79, 70, 76, 69,
88, 32, 67, 76, 73, 67, 75, 32, 6, 26, 71, 163, 159, 14, 67, 4, 11, 76,
4, 49, 10, 79, 84, 84, 65, 76, 32, 83, 84, 79, 80, 5, 171, 19, 32, 6, 17,
2, 84, 32, 6, 38, 72, 150, 213, 13, 84, 239, 69, 65, 2, 197, 196, 7, 3,
65, 76, 70, 156, 2, 138, 1, 72, 48, 5, 77, 65, 76, 76, 32, 148, 31, 8,
84, 82, 69, 83, 83, 32, 65, 78, 53, 11, 85, 80, 69, 82, 83, 67, 82, 73,
80, 84, 32, 4, 180, 158, 8, 3, 79, 82, 84, 251, 205, 6, 69, 144, 2, 154,
2, 65, 50, 66, 130, 1, 67, 238, 2, 68, 238, 2, 90, 66, 69, 46, 70, 30,
71, 110, 72, 102, 77, 34, 73, 34, 74, 98, 76, 176, 3, 7, 78, 32, 87, 73,
84, 72, 32, 30, 79, 94, 80, 22, 82, 146, 2, 83, 190, 1, 84, 246, 7, 85,
142, 1, 86, 226, 211, 16, 75, 2, 81, 2, 87, 2, 88, 3, 89, 9, 222, 147,
13, 76, 170, 140, 3, 73, 227, 79, 69, 11, 46, 65, 50, 79, 222, 8, 32,
179, 193, 16, 69, 2, 17, 2, 82, 82, 2, 169, 247, 5, 2, 69, 68, 2, 229,
20, 4, 84, 84, 79, 77, 41, 100, 7, 65, 80, 73, 84, 65, 76, 32, 180, 1, 6,
76, 79, 83, 69, 68, 32, 190, 17, 32, 139, 199, 16, 72, 30, 114, 73, 214,
6, 71, 226, 16, 76, 214, 190, 16, 79, 158, 20, 65, 186, 2, 66, 2, 72, 2,
78, 2, 82, 2, 85, 3, 89, 7, 22, 78, 191, 11, 32, 2, 225, 240, 5, 5, 86,
69, 82, 84, 69, 4, 26, 82, 243, 166, 9, 79, 2, 217, 20, 9, 69, 86, 69,
82, 83, 69, 68, 32, 79, 23, 104, 6, 32, 87, 73, 84, 72, 32, 86, 69, 32,
9, 79, 84, 76, 69, 83, 83, 32, 74, 32, 105, 3, 90, 32, 68, 6, 26, 72,
163, 179, 14, 84, 4, 21, 3, 79, 79, 75, 5, 213, 250, 13, 3, 32, 65, 78,
4, 238, 15, 90, 211, 181, 16, 76, 4, 33, 6, 87, 73, 84, 72, 32, 83, 4,
29, 5, 84, 82, 79, 75, 69, 5, 193, 239, 8, 4, 32, 65, 78, 68, 6, 33, 6,
73, 71, 82, 65, 80, 72, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 138, 14, 67,
207, 4, 82, 11, 142, 231, 16, 83, 2, 84, 2, 90, 63, 78, 5, 225, 13, 3,
69, 78, 71, 11, 56, 5, 82, 69, 69, 75, 32, 162, 1, 32, 183, 144, 14, 65,
4, 26, 71, 139, 143, 11, 80, 2, 183, 145, 14, 65, 11, 40, 6, 32, 87, 73,
84, 72, 32, 39, 69, 4, 206, 144, 15, 72, 247, 165, 1, 83, 4, 17, 2, 78,
71, 5, 11, 32, 2, 255, 235, 8, 87, 4, 222, 4, 32, 191, 188, 16, 79, 5,
37, 7, 32, 87, 73, 84, 72, 32, 67, 2, 11, 82, 2, 225, 173, 14, 6, 79, 83,
83, 69, 68, 45, 25, 116, 6, 32, 87, 73, 84, 72, 32, 226, 9, 83, 2, 90,
112, 2, 69, 90, 193, 194, 16, 8, 73, 71, 65, 84, 85, 82, 69, 32, 12, 54,
73, 82, 77, 82, 82, 222, 6, 80, 143, 245, 3, 66, 2, 49, 10, 78, 86, 69,
82, 84, 69, 68, 32, 76, 65, 2, 157, 233, 12, 2, 90, 89, 2, 11, 73, 2, 17,
2, 68, 68, 2, 17, 2, 76, 69, 2, 221, 250, 12, 2, 32, 84, 4, 61, 13, 69,
84, 82, 79, 70, 76, 69, 88, 32, 72, 79, 79, 75, 5, 205, 12, 4, 32, 65,
78, 68, 4, 210, 11, 82, 207, 1, 76, 9, 18, 32, 47, 80, 2, 21, 3, 87, 73,
84, 2, 219, 176, 16, 72, 4, 229, 196, 12, 2, 69, 78, 5, 231, 204, 16, 72,
15, 80, 6, 32, 87, 73, 84, 72, 32, 62, 65, 41, 8, 69, 86, 69, 82, 83, 69,
68, 32, 4, 26, 70, 155, 168, 14, 84, 2, 225, 229, 8, 3, 73, 83, 72, 2,
17, 2, 77, 83, 2, 235, 232, 5, 32, 6, 38, 71, 170, 7, 79, 167, 215, 16,
69, 2, 11, 76, 2, 161, 137, 14, 4, 79, 84, 84, 65, 13, 72, 6, 32, 87, 73,
84, 72, 32, 34, 67, 61, 6, 73, 68, 69, 87, 65, 89, 4, 158, 3, 67, 195,
132, 15, 72, 4, 26, 82, 187, 227, 11, 72, 2, 209, 219, 5, 3, 73, 80, 84,
2, 159, 194, 6, 83, 51, 106, 32, 102, 67, 116, 2, 69, 83, 44, 2, 79, 80,
42, 83, 96, 6, 85, 82, 78, 69, 68, 32, 215, 155, 13, 72, 4, 29, 5, 87,
73, 84, 72, 32, 4, 22, 80, 219, 5, 82, 2, 213, 225, 8, 6, 65, 76, 65, 84,
65, 76, 2, 45, 9, 32, 68, 73, 71, 82, 65, 80, 72, 32, 2, 25, 4, 87, 73,
84, 72, 2, 17, 2, 32, 67, 2, 175, 145, 3, 85, 2, 11, 72, 2, 189, 155, 10,
3, 32, 68, 73, 2, 165, 226, 5, 5, 32, 72, 65, 76, 70, 4, 37, 7, 32, 68,
73, 71, 82, 65, 80, 4, 11, 72, 5, 11, 32, 2, 141, 3, 4, 87, 73, 84, 72,
32, 86, 65, 38, 77, 74, 79, 42, 82, 214, 1, 89, 170, 213, 16, 72, 2, 73,
2, 86, 3, 87, 7, 134, 252, 12, 76, 139, 220, 3, 69, 5, 41, 8, 32, 87, 73,
84, 72, 32, 76, 79, 2, 253, 141, 4, 2, 78, 71, 2, 11, 80, 2, 225, 158, 6,
2, 69, 78, 9, 33, 6, 32, 87, 73, 84, 72, 32, 6, 26, 76, 207, 128, 15, 72,
4, 37, 7, 79, 78, 71, 32, 76, 69, 71, 5, 25, 4, 32, 65, 78, 68, 2, 17, 2,
32, 82, 2, 11, 69, 2, 241, 219, 8, 7, 84, 82, 79, 70, 76, 69, 88, 5, 29,
5, 32, 87, 73, 84, 72, 2, 213, 238, 3, 2, 32, 66, 9, 18, 32, 95, 80, 4,
40, 4, 87, 73, 84, 72, 243, 176, 15, 66, 2, 17, 2, 32, 76, 2, 11, 69, 2,
131, 1, 70, 2, 129, 132, 16, 2, 83, 73, 7, 33, 6, 32, 87, 73, 84, 72, 32,
4, 26, 82, 179, 253, 14, 72, 2, 21, 3, 73, 71, 72, 2, 163, 217, 8, 84, 4,
11, 68, 4, 11, 32, 4, 146, 210, 1, 72, 35, 76, 4, 24, 2, 72, 65, 31, 84,
2, 25, 4, 76, 70, 32, 84, 2, 43, 82, 4, 30, 82, 53, 3, 85, 82, 78, 2,
189, 129, 16, 8, 73, 65, 78, 71, 85, 76, 65, 82, 2, 169, 172, 8, 2, 69,
68, 8, 70, 80, 184, 159, 10, 7, 78, 65, 83, 80, 73, 82, 65, 143, 177, 6,
83, 4, 11, 32, 4, 226, 177, 13, 84, 239, 69, 65, 4, 26, 79, 135, 180, 15,
69, 2, 11, 73, 2, 235, 254, 15, 67, 4, 36, 3, 65, 78, 71, 1, 2, 73, 78,
2, 25, 4, 32, 68, 69, 80, 2, 21, 3, 65, 82, 84, 2, 21, 3, 73, 78, 71, 2,
17, 2, 32, 84, 2, 11, 79, 2, 171, 135, 6, 78, 2, 11, 32, 2, 131, 163, 15,
83, 234, 2, 92, 2, 69, 89, 88, 7, 71, 79, 76, 73, 65, 78, 32, 206, 24,
79, 209, 140, 12, 3, 75, 69, 89, 6, 26, 32, 203, 143, 16, 45, 4, 128,
142, 12, 6, 87, 73, 84, 72, 32, 87, 167, 211, 2, 66, 214, 2, 194, 2, 68,
46, 70, 148, 1, 14, 73, 78, 86, 69, 82, 84, 69, 68, 32, 66, 73, 82, 71,
65, 16, 7, 76, 69, 84, 84, 69, 82, 32, 138, 16, 83, 132, 1, 7, 82, 79,
84, 65, 84, 69, 68, 22, 66, 98, 84, 160, 2, 4, 86, 79, 87, 69, 194, 241,
3, 67, 164, 1, 6, 77, 65, 78, 67, 72, 85, 160, 201, 7, 4, 78, 73, 82, 85,
239, 208, 2, 69, 22, 232, 20, 3, 79, 85, 66, 171, 193, 14, 73, 12, 112,
19, 82, 69, 69, 32, 86, 65, 82, 73, 65, 84, 73, 79, 78, 32, 83, 69, 76,
69, 67, 202, 243, 13, 85, 195, 46, 79, 8, 177, 250, 9, 3, 84, 79, 82, 5,
227, 19, 32, 136, 2, 130, 2, 65, 244, 4, 2, 67, 72, 88, 2, 77, 65, 174,
2, 83, 246, 1, 84, 234, 3, 90, 178, 195, 14, 72, 246, 173, 1, 75, 2, 76,
162, 7, 69, 2, 79, 2, 85, 234, 61, 66, 2, 68, 2, 70, 2, 71, 2, 74, 2, 78,
2, 80, 2, 81, 2, 82, 2, 87, 2, 89, 187, 2, 73, 59, 56, 8, 76, 73, 32, 71,
65, 76, 73, 32, 171, 197, 16, 78, 54, 174, 1, 65, 52, 6, 86, 73, 83, 65,
82, 71, 22, 68, 76, 5, 72, 65, 76, 70, 32, 34, 73, 50, 85, 34, 78, 30,
84, 66, 66, 174, 250, 15, 80, 2, 90, 254, 68, 83, 14, 67, 3, 75, 7, 48,
6, 78, 85, 83, 86, 65, 82, 155, 196, 16, 72, 2, 243, 165, 9, 65, 8, 26,
65, 179, 193, 16, 68, 7, 166, 253, 8, 77, 253, 131, 7, 3, 71, 65, 76, 4,
254, 192, 16, 89, 187, 2, 85, 5, 45, 9, 78, 86, 69, 82, 84, 69, 68, 32,
85, 2, 249, 255, 15, 3, 66, 65, 68, 4, 142, 192, 16, 71, 3, 78, 8, 60, 6,
72, 82, 69, 69, 32, 66, 174, 250, 15, 84, 195, 71, 65, 2, 17, 2, 65, 76,
2, 211, 156, 16, 85, 6, 26, 65, 171, 193, 16, 73, 5, 29, 5, 32, 87, 73,
84, 72, 2, 149, 238, 14, 2, 32, 84, 41, 29, 5, 78, 67, 72, 85, 32, 38,
104, 9, 65, 76, 73, 32, 71, 65, 76, 73, 32, 186, 194, 14, 90, 242, 250,
1, 70, 2, 75, 2, 82, 187, 2, 73, 28, 122, 68, 194, 198, 9, 67, 246, 227,
2, 84, 138, 151, 2, 66, 2, 71, 2, 74, 2, 76, 234, 181, 1, 90, 254, 4, 78,
131, 64, 83, 4, 186, 193, 14, 68, 243, 250, 1, 72, 48, 52, 4, 73, 66, 69,
32, 210, 187, 16, 72, 187, 2, 65, 44, 214, 222, 5, 71, 2, 72, 170, 202,
6, 84, 238, 3, 73, 246, 147, 2, 67, 2, 83, 246, 7, 82, 190, 164, 1, 65,
186, 9, 90, 162, 7, 85, 234, 61, 68, 2, 70, 2, 74, 2, 75, 2, 80, 187, 2,
69, 60, 52, 4, 79, 68, 79, 32, 222, 185, 16, 83, 187, 2, 65, 56, 250, 1,
65, 98, 68, 34, 74, 34, 78, 252, 164, 1, 8, 76, 79, 78, 71, 32, 86, 79,
87, 206, 180, 4, 71, 170, 202, 6, 84, 226, 151, 2, 67, 246, 7, 72, 150,
181, 1, 79, 2, 85, 234, 61, 66, 2, 75, 2, 77, 2, 80, 2, 81, 2, 87, 2, 89,
186, 2, 69, 3, 73, 6, 56, 8, 76, 73, 32, 71, 65, 76, 73, 32, 139, 185,
16, 78, 4, 178, 188, 14, 90, 243, 250, 1, 84, 4, 254, 182, 16, 90, 187,
2, 65, 4, 222, 182, 16, 73, 187, 2, 65, 2, 191, 182, 16, 73, 6, 138, 165,
16, 72, 162, 17, 82, 187, 2, 65, 8, 128, 1, 4, 87, 73, 82, 76, 217, 191,
4, 21, 73, 66, 69, 32, 83, 89, 76, 76, 65, 66, 76, 69, 32, 66, 79, 85,
78, 68, 65, 82, 89, 6, 17, 2, 32, 66, 6, 25, 4, 73, 82, 71, 65, 7, 33, 6,
32, 87, 73, 84, 72, 32, 4, 150, 2, 68, 255, 240, 15, 79, 6, 152, 1, 3,
82, 73, 80, 56, 18, 85, 82, 78, 69, 68, 32, 83, 87, 73, 82, 76, 32, 66,
73, 82, 71, 65, 32, 217, 192, 1, 8, 79, 68, 79, 32, 83, 79, 70, 84, 2,
165, 241, 15, 9, 76, 69, 32, 66, 73, 82, 71, 65, 32, 2, 33, 6, 87, 73,
84, 72, 32, 68, 2, 229, 240, 15, 5, 79, 85, 66, 76, 69, 2, 135, 235, 9,
76, 10, 84, 9, 71, 82, 65, 77, 32, 70, 79, 82, 32, 60, 4, 83, 84, 65, 66,
215, 251, 13, 82, 6, 26, 89, 179, 198, 12, 69, 4, 158, 226, 15, 65, 155,
1, 73, 2, 171, 132, 4, 76, 10, 48, 2, 78, 32, 250, 210, 4, 68, 231, 200,
11, 83, 6, 88, 12, 86, 73, 69, 87, 73, 78, 71, 32, 67, 69, 82, 69, 174,
197, 12, 67, 85, 2, 76, 65, 2, 249, 145, 16, 2, 77, 79, 4, 174, 190, 12,
73, 139, 243, 3, 69, 10, 26, 72, 69, 2, 79, 82, 2, 45, 9, 69, 82, 32, 67,
72, 82, 73, 83, 84, 2, 243, 254, 2, 77, 8, 50, 32, 52, 4, 73, 90, 69, 68,
175, 161, 15, 87, 4, 150, 202, 8, 66, 221, 171, 6, 4, 83, 67, 79, 79, 2,
209, 176, 3, 7, 32, 87, 72, 69, 69, 76, 67, 18, 52, 2, 78, 84, 152, 1, 2,
83, 69, 191, 172, 16, 84, 10, 48, 3, 65, 73, 78, 169, 142, 12, 3, 32, 70,
85, 9, 11, 32, 6, 186, 207, 9, 82, 24, 5, 67, 65, 66, 76, 69, 177, 241,
1, 6, 66, 73, 67, 89, 67, 76, 7, 11, 32, 4, 180, 154, 15, 2, 84, 82, 131,
86, 70, 86, 52, 7, 76, 69, 84, 84, 69, 82, 32, 231, 235, 5, 68, 62, 198,
1, 75, 62, 77, 34, 78, 34, 79, 30, 80, 34, 84, 242, 105, 68, 212, 133, 8,
2, 72, 65, 2, 82, 166, 226, 1, 83, 190, 89, 76, 246, 7, 67, 218, 100, 69,
254, 242, 3, 89, 190, 28, 66, 2, 87, 187, 2, 65, 6, 160, 174, 5, 2, 69,
65, 178, 137, 6, 72, 199, 243, 4, 79, 4, 174, 152, 16, 65, 215, 1, 73, 4,
218, 218, 15, 73, 139, 60, 71, 7, 154, 170, 16, 76, 3, 79, 4, 166, 150,
16, 72, 219, 19, 65, 6, 222, 149, 9, 72, 234, 144, 7, 69, 155, 3, 65,
206, 4, 44, 2, 76, 84, 234, 6, 83, 247, 139, 14, 67, 102, 36, 4, 65, 78,
73, 32, 219, 2, 73, 76, 52, 7, 76, 69, 84, 84, 69, 82, 32, 151, 149, 4,
83, 74, 206, 1, 68, 234, 83, 78, 194, 236, 1, 82, 254, 208, 9, 74, 202,
56, 84, 162, 149, 3, 66, 2, 67, 2, 71, 2, 75, 2, 80, 138, 69, 72, 2, 76,
2, 77, 2, 83, 2, 86, 2, 89, 186, 2, 65, 2, 69, 2, 73, 3, 85, 10, 38, 68,
238, 163, 16, 72, 187, 2, 65, 6, 234, 163, 16, 68, 2, 72, 187, 2, 65, 26,
56, 2, 80, 76, 236, 2, 3, 83, 69, 84, 207, 143, 15, 77, 18, 50, 69, 89,
8, 73, 67, 65, 84, 73, 79, 78, 32, 2, 41, 8, 32, 77, 85, 83, 73, 67, 65,
76, 2, 21, 3, 32, 78, 79, 2, 195, 142, 15, 84, 16, 40, 4, 83, 73, 71, 78,
139, 164, 16, 88, 15, 11, 32, 12, 48, 3, 73, 78, 32, 81, 5, 87, 73, 84,
72, 32, 8, 254, 206, 3, 76, 22, 82, 140, 191, 9, 5, 68, 79, 85, 66, 76,
183, 238, 1, 84, 4, 242, 179, 12, 85, 187, 238, 2, 68, 7, 11, 32, 4, 244,
83, 5, 77, 85, 76, 84, 73, 203, 155, 12, 85, 228, 3, 44, 5, 72, 82, 79,
79, 77, 21, 2, 73, 67, 5, 215, 243, 14, 32, 224, 3, 30, 32, 109, 3, 65,
76, 32, 6, 64, 4, 78, 65, 84, 85, 20, 3, 83, 72, 65, 209, 43, 2, 70, 76,
2, 187, 212, 10, 82, 2, 227, 191, 11, 82, 218, 3, 64, 8, 75, 69, 89, 66,
79, 65, 82, 68, 66, 83, 131, 248, 3, 78, 5, 41, 8, 32, 87, 73, 84, 72,
32, 74, 65, 2, 231, 254, 13, 67, 212, 3, 48, 6, 89, 77, 66, 79, 76, 32,
239, 177, 11, 67, 210, 3, 230, 2, 66, 238, 1, 67, 230, 9, 68, 250, 2, 69,
162, 1, 70, 166, 2, 71, 112, 9, 65, 82, 80, 69, 71, 71, 73, 65, 84, 168,
1, 2, 72, 65, 126, 75, 198, 3, 76, 138, 1, 77, 186, 2, 78, 162, 1, 79,
218, 2, 80, 200, 2, 2, 81, 85, 146, 2, 82, 198, 2, 83, 226, 5, 84, 182,
10, 86, 42, 88, 42, 87, 232, 145, 9, 9, 73, 78, 86, 69, 82, 84, 69, 68,
32, 143, 210, 6, 90, 20, 36, 5, 69, 71, 73, 78, 32, 59, 82, 8, 142, 15,
80, 30, 83, 250, 251, 7, 66, 151, 245, 7, 84, 12, 24, 2, 65, 67, 35, 69,
4, 250, 229, 15, 75, 155, 53, 69, 8, 26, 86, 255, 216, 15, 65, 6, 32, 2,
73, 83, 183, 154, 16, 69, 5, 179, 26, 32, 84, 120, 2, 65, 69, 34, 76, 94,
79, 194, 7, 82, 242, 11, 32, 224, 32, 7, 73, 82, 67, 76, 69, 32, 88, 233,
227, 5, 2, 85, 84, 2, 11, 83, 2, 219, 212, 15, 85, 8, 42, 73, 249, 23, 5,
85, 83, 84, 69, 82, 4, 26, 77, 187, 241, 13, 86, 2, 199, 219, 9, 65, 64,
26, 77, 219, 149, 16, 68, 62, 64, 7, 66, 73, 78, 73, 78, 71, 32, 153,
151, 6, 3, 77, 79, 78, 60, 202, 1, 65, 80, 7, 77, 65, 82, 67, 65, 84, 79,
56, 2, 68, 79, 56, 2, 85, 80, 28, 2, 70, 76, 40, 5, 72, 65, 82, 77, 79,
22, 83, 142, 2, 84, 250, 181, 7, 66, 172, 199, 3, 2, 76, 79, 143, 147, 5,
82, 6, 76, 5, 67, 67, 69, 78, 84, 37, 10, 85, 71, 77, 69, 78, 84, 65, 84,
73, 79, 5, 205, 2, 5, 45, 83, 84, 65, 67, 2, 219, 129, 15, 78, 6, 52, 2,
87, 78, 168, 3, 2, 85, 66, 239, 244, 15, 73, 2, 149, 248, 14, 2, 32, 66,
12, 248, 76, 2, 65, 71, 159, 199, 15, 73, 2, 223, 233, 14, 78, 12, 132,
1, 9, 78, 65, 80, 32, 80, 73, 90, 90, 73, 22, 84, 232, 206, 4, 11, 80,
82, 69, 67, 72, 71, 69, 83, 65, 78, 71, 247, 138, 6, 77, 2, 231, 130, 12,
67, 6, 44, 5, 65, 67, 67, 65, 84, 199, 129, 16, 69, 4, 40, 4, 73, 83, 83,
73, 243, 145, 16, 79, 2, 251, 242, 15, 77, 10, 34, 82, 165, 158, 12, 2,
69, 78, 8, 28, 2, 73, 80, 199, 6, 69, 2, 173, 129, 12, 6, 76, 69, 32, 84,
79, 78, 4, 22, 79, 179, 2, 69, 2, 147, 130, 15, 73, 24, 98, 65, 142, 1,
69, 92, 6, 79, 85, 66, 76, 69, 32, 145, 169, 10, 7, 82, 85, 77, 32, 67,
76, 69, 10, 96, 2, 32, 67, 20, 2, 77, 80, 204, 29, 4, 83, 72, 69, 68,
137, 200, 15, 5, 76, 32, 83, 69, 71, 2, 255, 194, 8, 65, 5, 175, 132, 14,
32, 4, 40, 3, 67, 82, 69, 29, 3, 71, 82, 69, 2, 181, 25, 3, 83, 67, 69,
2, 155, 233, 8, 69, 6, 242, 21, 83, 254, 6, 66, 191, 135, 5, 70, 14, 32,
3, 78, 68, 32, 151, 16, 73, 10, 74, 80, 30, 83, 204, 13, 3, 79, 70, 32,
174, 238, 7, 66, 151, 245, 7, 84, 2, 185, 227, 12, 2, 72, 82, 2, 231,
147, 15, 76, 34, 104, 6, 69, 82, 77, 65, 84, 65, 22, 73, 122, 79, 102,
32, 144, 36, 3, 85, 83, 65, 213, 230, 3, 2, 76, 65, 5, 175, 218, 13, 32,
10, 22, 78, 135, 34, 86, 8, 56, 9, 71, 69, 82, 69, 68, 32, 84, 82, 69,
239, 20, 65, 6, 137, 242, 5, 4, 77, 79, 76, 79, 6, 208, 25, 3, 85, 82,
45, 203, 167, 14, 82, 18, 54, 32, 56, 7, 76, 73, 83, 83, 65, 78, 68, 23,
82, 6, 25, 4, 67, 76, 69, 70, 7, 157, 13, 3, 32, 79, 84, 4, 251, 134, 6,
79, 8, 84, 9, 65, 67, 69, 32, 78, 79, 84, 69, 32, 37, 8, 69, 71, 79, 82,
73, 65, 78, 32, 4, 184, 227, 8, 2, 78, 79, 27, 83, 4, 250, 2, 67, 3, 70,
8, 44, 3, 76, 70, 32, 205, 8, 3, 85, 80, 84, 6, 52, 3, 80, 69, 68, 210,
223, 3, 78, 151, 181, 8, 82, 2, 139, 199, 5, 65, 24, 48, 6, 73, 69, 86,
65, 78, 32, 139, 223, 14, 79, 22, 178, 1, 67, 46, 69, 68, 7, 81, 85, 65,
82, 84, 69, 82, 62, 70, 148, 220, 3, 4, 72, 65, 76, 70, 0, 5, 87, 72, 79,
76, 69, 173, 224, 1, 9, 82, 69, 67, 73, 84, 65, 84, 73, 86, 2, 11, 32, 2,
11, 67, 2, 235, 163, 5, 76, 6, 64, 5, 73, 71, 72, 84, 72, 221, 203, 14,
5, 78, 68, 32, 79, 70, 4, 253, 129, 6, 10, 32, 78, 79, 84, 69, 32, 83,
84, 69, 77, 4, 218, 14, 76, 185, 205, 3, 4, 73, 78, 65, 76, 8, 44, 4, 79,
78, 71, 65, 217, 13, 2, 69, 70, 7, 11, 32, 4, 28, 3, 73, 77, 80, 3, 80,
2, 193, 2, 7, 69, 82, 70, 69, 67, 84, 65, 18, 104, 2, 65, 88, 20, 2, 69,
90, 20, 5, 73, 78, 73, 77, 65, 44, 3, 79, 79, 78, 25, 4, 85, 76, 84, 73,
2, 167, 224, 15, 73, 2, 175, 226, 15, 90, 7, 11, 32, 4, 226, 142, 12, 82,
195, 83, 66, 4, 189, 17, 2, 32, 78, 4, 60, 11, 80, 76, 69, 32, 77, 69,
65, 83, 85, 82, 69, 15, 32, 2, 11, 32, 2, 223, 141, 12, 82, 10, 120, 4,
69, 66, 69, 78, 212, 26, 3, 85, 76, 76, 236, 225, 5, 3, 65, 84, 85, 189,
227, 6, 7, 79, 84, 69, 72, 69, 65, 68, 2, 253, 228, 14, 4, 83, 84, 73,
77, 32, 88, 2, 78, 69, 120, 14, 82, 78, 65, 77, 69, 78, 84, 32, 83, 84,
82, 79, 75, 69, 107, 84, 6, 92, 18, 32, 72, 85, 78, 68, 82, 69, 68, 32,
84, 87, 69, 78, 84, 89, 45, 69, 73, 159, 20, 45, 4, 181, 13, 2, 71, 72,
22, 11, 45, 22, 170, 166, 3, 49, 194, 214, 12, 50, 2, 51, 2, 52, 2, 53,
2, 54, 2, 55, 2, 56, 3, 57, 4, 173, 4, 3, 84, 65, 86, 18, 96, 9, 65, 82,
69, 78, 84, 72, 69, 83, 73, 0, 2, 76, 85, 18, 69, 142, 1, 79, 163, 239,
13, 73, 2, 243, 22, 83, 6, 68, 4, 68, 65, 76, 32, 49, 9, 83, 32, 83, 85,
66, 80, 85, 78, 67, 4, 26, 85, 243, 184, 15, 77, 2, 215, 184, 15, 80, 2,
255, 210, 13, 84, 6, 48, 2, 68, 65, 245, 5, 5, 82, 82, 69, 67, 84, 2,
219, 240, 13, 84, 12, 76, 6, 65, 82, 84, 69, 82, 32, 125, 9, 73, 78, 68,
73, 67, 69, 83, 73, 77, 8, 60, 5, 84, 79, 78, 69, 32, 234, 208, 3, 78,
151, 181, 8, 82, 4, 26, 83, 187, 142, 5, 70, 2, 241, 247, 15, 3, 72, 65,
82, 4, 17, 2, 65, 32, 4, 230, 186, 12, 65, 161, 186, 3, 3, 66, 65, 83,
14, 22, 69, 175, 1, 73, 10, 72, 4, 80, 69, 65, 84, 81, 10, 86, 69, 82,
83, 69, 32, 70, 73, 78, 65, 8, 56, 8, 69, 68, 32, 70, 73, 71, 85, 82,
179, 163, 14, 32, 6, 179, 221, 5, 69, 2, 207, 4, 76, 4, 48, 2, 71, 72,
57, 6, 78, 70, 79, 82, 90, 65, 2, 33, 6, 84, 32, 82, 69, 80, 69, 2, 179,
169, 10, 65, 2, 171, 181, 8, 78, 48, 136, 1, 6, 67, 65, 78, 68, 73, 67,
62, 69, 162, 1, 72, 54, 73, 252, 1, 6, 81, 85, 65, 82, 69, 32, 252, 158,
8, 2, 85, 66, 251, 100, 79, 4, 17, 2, 85, 83, 5, 209, 234, 13, 5, 32, 70,
76, 69, 88, 14, 32, 2, 77, 73, 223, 201, 15, 71, 12, 64, 6, 66, 82, 69,
86, 73, 83, 1, 6, 77, 73, 78, 73, 77, 65, 6, 11, 32, 6, 134, 13, 87, 246,
242, 11, 82, 195, 83, 66, 6, 84, 3, 79, 82, 84, 129, 239, 5, 3, 65, 82,
80, 14, 32, 4, 78, 71, 76, 69, 43, 88, 2, 17, 2, 32, 66, 2, 207, 134, 14,
65, 12, 18, 45, 79, 84, 4, 242, 7, 76, 217, 207, 14, 11, 83, 84, 82, 73,
78, 71, 32, 70, 82, 69, 84, 8, 52, 3, 69, 69, 78, 1, 6, 89, 45, 70, 79,
85, 82, 4, 193, 12, 2, 84, 72, 6, 26, 78, 167, 239, 15, 66, 4, 229, 9, 7,
79, 84, 69, 72, 69, 65, 68, 60, 132, 1, 6, 69, 77, 80, 85, 83, 32, 154,
4, 72, 88, 2, 87, 79, 84, 7, 79, 82, 67, 85, 76, 85, 83, 46, 82, 141, 3,
3, 85, 82, 78, 16, 232, 1, 27, 73, 77, 80, 69, 82, 70, 69, 67, 84, 85,
77, 32, 67, 85, 77, 32, 80, 82, 79, 76, 65, 84, 73, 79, 78, 69, 32, 129,
1, 25, 80, 69, 82, 70, 69, 67, 84, 85, 77, 32, 67, 85, 77, 32, 80, 82,
79, 76, 65, 84, 73, 79, 78, 69, 32, 10, 60, 10, 73, 77, 80, 69, 82, 70,
69, 67, 84, 65, 131, 1, 80, 9, 249, 210, 5, 11, 32, 68, 73, 77, 73, 78,
85, 84, 73, 79, 78, 6, 60, 3, 73, 77, 80, 41, 8, 80, 69, 82, 70, 69, 67,
84, 65, 2, 245, 197, 15, 5, 69, 82, 70, 69, 67, 5, 197, 194, 8, 12, 32,
68, 73, 77, 73, 78, 85, 84, 73, 79, 78, 45, 6, 72, 2, 82, 69, 249, 5, 11,
73, 82, 84, 89, 45, 83, 69, 67, 79, 78, 68, 2, 11, 69, 2, 11, 45, 2, 11,
76, 2, 37, 7, 73, 78, 69, 32, 83, 84, 65, 2, 155, 231, 14, 70, 5, 189,
221, 11, 6, 32, 82, 69, 83, 85, 80, 27, 33, 6, 73, 65, 78, 71, 76, 69,
24, 128, 1, 10, 32, 78, 79, 84, 69, 72, 69, 65, 68, 32, 61, 17, 45, 82,
79, 85, 78, 68, 32, 78, 79, 84, 69, 72, 69, 65, 68, 32, 68, 20, 58, 68,
24, 3, 85, 80, 32, 38, 82, 25, 3, 76, 69, 70, 4, 93, 3, 79, 87, 78, 8,
34, 82, 78, 87, 183, 198, 12, 66, 4, 21, 3, 73, 71, 72, 4, 11, 84, 4, 11,
32, 4, 26, 87, 183, 198, 12, 66, 2, 11, 72, 2, 243, 155, 14, 73, 7, 11,
32, 4, 146, 192, 8, 83, 203, 164, 7, 85, 4, 36, 3, 79, 73, 68, 207, 161,
15, 73, 2, 205, 139, 13, 5, 32, 78, 79, 84, 69, 6, 92, 4, 72, 79, 76, 69,
253, 204, 8, 13, 73, 84, 72, 32, 70, 73, 78, 71, 69, 82, 78, 65, 73, 4,
11, 32, 4, 210, 187, 3, 78, 151, 181, 8, 82, 232, 3, 224, 2, 15, 67, 79,
78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 254, 1, 76, 212, 14,
16, 77, 79, 68, 73, 70, 73, 69, 82, 32, 76, 69, 84, 84, 69, 82, 32, 122,
83, 80, 16, 69, 65, 83, 84, 69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82,
69, 218, 9, 84, 204, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32,
140, 180, 9, 3, 80, 65, 79, 175, 154, 4, 68, 16, 66, 77, 165, 1, 11, 83,
72, 65, 78, 32, 77, 69, 68, 73, 65, 76, 14, 80, 6, 69, 68, 73, 65, 76,
32, 45, 10, 79, 78, 32, 77, 69, 68, 73, 65, 76, 32, 8, 170, 220, 15, 72,
2, 82, 2, 87, 3, 89, 6, 254, 219, 15, 76, 2, 77, 3, 78, 2, 183, 228, 10,
32, 238, 1, 104, 6, 69, 84, 84, 69, 82, 32, 185, 13, 15, 79, 71, 79, 71,
82, 65, 77, 32, 75, 72, 65, 77, 84, 73, 32, 232, 1, 238, 1, 65, 50, 69,
146, 1, 71, 50, 75, 254, 1, 77, 134, 1, 78, 58, 82, 86, 83, 130, 3, 84,
198, 1, 87, 142, 243, 11, 68, 214, 6, 85, 22, 86, 166, 202, 1, 73, 42,
76, 222, 196, 1, 66, 2, 67, 2, 74, 2, 80, 138, 69, 72, 2, 89, 187, 2, 79,
7, 192, 144, 15, 4, 73, 84, 79, 78, 219, 74, 85, 9, 77, 17, 65, 83, 84,
69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 6, 42, 71, 150,
224, 10, 89, 199, 187, 3, 78, 2, 147, 224, 10, 72, 6, 130, 205, 9, 82,
162, 138, 6, 72, 187, 2, 65, 44, 32, 2, 72, 65, 139, 217, 15, 65, 43, 25,
4, 77, 84, 73, 32, 40, 134, 1, 68, 34, 84, 162, 223, 8, 78, 230, 176, 6,
67, 2, 72, 2, 74, 170, 37, 76, 226, 31, 70, 2, 71, 2, 82, 2, 83, 2, 88,
3, 90, 6, 162, 144, 15, 68, 139, 69, 72, 4, 131, 144, 15, 84, 12, 36, 3,
79, 78, 32, 139, 215, 15, 65, 10, 60, 2, 66, 66, 162, 217, 13, 74, 230,
186, 1, 78, 199, 66, 69, 4, 198, 214, 15, 65, 3, 69, 10, 134, 222, 8, 78,
238, 245, 6, 71, 2, 89, 187, 2, 65, 4, 132, 221, 2, 12, 85, 77, 65, 73,
32, 80, 65, 76, 65, 85, 78, 71, 239, 248, 12, 65, 50, 90, 72, 200, 221,
2, 9, 71, 65, 87, 32, 75, 65, 82, 69, 78, 198, 244, 12, 83, 187, 2, 65,
44, 66, 65, 197, 1, 11, 87, 69, 32, 80, 65, 76, 65, 85, 78, 71, 32, 41,
17, 2, 78, 32, 38, 134, 1, 78, 190, 213, 13, 74, 2, 80, 2, 84, 234, 181,
1, 66, 2, 67, 2, 71, 2, 75, 138, 69, 68, 2, 70, 2, 72, 2, 90, 187, 2, 65,
6, 170, 208, 15, 78, 2, 89, 187, 2, 65, 4, 146, 213, 13, 67, 3, 83, 36,
38, 65, 186, 138, 15, 84, 139, 69, 72, 31, 41, 8, 73, 32, 76, 65, 73, 78,
71, 32, 28, 82, 78, 170, 243, 11, 68, 146, 150, 3, 66, 2, 71, 2, 74, 170,
37, 76, 227, 31, 70, 4, 190, 206, 15, 78, 3, 89, 6, 92, 17, 69, 83, 84,
69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 255, 207, 15, 65,
4, 158, 214, 10, 80, 183, 252, 2, 84, 6, 182, 193, 14, 79, 194, 62, 81,
139, 63, 72, 4, 56, 6, 75, 72, 65, 77, 84, 73, 1, 4, 83, 72, 65, 78, 2,
29, 5, 32, 82, 69, 68, 85, 2, 241, 132, 1, 2, 80, 76, 90, 76, 2, 72, 65,
20, 4, 73, 71, 78, 32, 233, 6, 6, 89, 77, 66, 79, 76, 32, 20, 175, 191,
9, 78, 52, 202, 3, 65, 32, 12, 75, 72, 65, 77, 84, 73, 32, 84, 79, 78,
69, 45, 30, 83, 132, 2, 15, 84, 65, 73, 32, 76, 65, 73, 78, 71, 32, 84,
79, 78, 69, 45, 28, 22, 87, 69, 83, 84, 69, 82, 78, 32, 80, 87, 79, 32,
75, 65, 82, 69, 78, 32, 84, 79, 78, 69, 222, 244, 2, 68, 136, 169, 5, 19,
82, 85, 77, 65, 73, 32, 80, 65, 76, 65, 85, 78, 71, 32, 84, 79, 78, 69,
45, 140, 180, 3, 9, 80, 65, 79, 32, 75, 65, 82, 69, 78, 148, 115, 6, 76,
73, 84, 84, 76, 69, 155, 191, 2, 86, 4, 210, 192, 14, 83, 199, 68, 78, 4,
226, 201, 15, 49, 3, 51, 18, 40, 4, 72, 65, 78, 32, 195, 248, 14, 69, 16,
84, 8, 67, 79, 85, 78, 67, 73, 76, 32, 84, 5, 84, 79, 78, 69, 45, 199,
201, 14, 83, 6, 136, 211, 11, 8, 69, 77, 80, 72, 65, 84, 73, 67, 185,
244, 3, 4, 84, 79, 78, 69, 8, 238, 199, 15, 50, 2, 51, 2, 53, 3, 54, 4,
194, 199, 15, 50, 3, 53, 10, 11, 45, 10, 154, 199, 15, 49, 2, 50, 2, 51,
2, 52, 3, 53, 18, 130, 1, 65, 128, 1, 2, 76, 79, 28, 5, 83, 72, 65, 78,
32, 228, 178, 8, 4, 71, 69, 78, 73, 217, 96, 6, 67, 79, 77, 80, 76, 69,
8, 84, 5, 73, 84, 79, 78, 32, 185, 179, 6, 10, 70, 79, 82, 69, 77, 69,
78, 84, 73, 79, 6, 94, 69, 246, 175, 13, 84, 139, 121, 79, 2, 253, 178,
8, 2, 67, 65, 4, 26, 69, 255, 168, 14, 79, 2, 201, 12, 4, 88, 67, 76, 65,
24, 140, 1, 20, 79, 78, 69, 32, 77, 65, 82, 75, 32, 83, 71, 65, 87, 32,
75, 65, 82, 69, 78, 32, 201, 180, 9, 8, 65, 73, 32, 76, 65, 73, 78, 71,
4, 38, 72, 181, 211, 8, 3, 75, 69, 32, 2, 191, 213, 8, 65, 56, 150, 2,
65, 76, 9, 71, 69, 66, 65, 32, 75, 65, 82, 69, 20, 6, 75, 65, 89, 65, 72,
32, 40, 4, 77, 79, 78, 32, 34, 83, 142, 1, 69, 40, 18, 87, 69, 83, 84,
69, 82, 78, 32, 80, 87, 79, 32, 75, 65, 82, 69, 78, 32, 212, 187, 9, 2,
84, 65, 254, 170, 2, 85, 22, 86, 167, 202, 1, 73, 8, 26, 73, 143, 192,
15, 65, 7, 25, 4, 84, 79, 78, 32, 4, 171, 179, 13, 65, 2, 203, 255, 14,
78, 6, 242, 168, 15, 69, 2, 79, 215, 22, 85, 4, 198, 171, 15, 73, 219,
19, 79, 10, 80, 4, 72, 65, 78, 32, 209, 209, 8, 10, 71, 65, 87, 32, 75,
65, 82, 69, 78, 32, 8, 54, 69, 20, 5, 70, 73, 78, 65, 76, 171, 187, 15,
65, 5, 251, 192, 14, 32, 2, 151, 172, 15, 32, 4, 226, 152, 15, 69, 151,
14, 85, 232, 17, 152, 2, 5, 45, 65, 82, 89, 32, 214, 4, 65, 222, 16, 66,
30, 69, 146, 32, 73, 136, 1, 3, 75, 79, 32, 170, 10, 79, 166, 24, 85,
224, 8, 22, 89, 73, 65, 75, 69, 78, 71, 32, 80, 85, 65, 67, 72, 85, 69,
32, 72, 77, 79, 78, 71, 32, 232, 135, 2, 2, 80, 78, 252, 208, 12, 2, 78,
66, 27, 76, 32, 130, 1, 67, 114, 84, 46, 83, 160, 1, 5, 85, 78, 73, 79,
78, 108, 4, 87, 72, 73, 84, 214, 241, 11, 76, 210, 17, 73, 151, 162, 2,
80, 8, 52, 7, 73, 82, 67, 76, 69, 68, 32, 159, 168, 14, 79, 6, 40, 2, 80,
76, 14, 84, 251, 146, 8, 68, 2, 35, 85, 2, 21, 3, 73, 77, 69, 2, 187,
245, 11, 83, 6, 40, 6, 81, 85, 65, 82, 69, 32, 87, 85, 4, 60, 9, 73, 78,
84, 69, 82, 83, 69, 67, 84, 1, 2, 85, 78, 2, 147, 207, 11, 73, 2, 11, 77,
2, 147, 242, 11, 77, 7, 69, 15, 32, 79, 80, 69, 82, 65, 84, 79, 82, 32,
87, 73, 84, 72, 32, 4, 246, 171, 11, 80, 215, 186, 3, 68, 2, 11, 69, 2,
205, 220, 12, 2, 32, 86, 188, 2, 170, 2, 66, 252, 4, 10, 71, 32, 77, 85,
78, 68, 65, 82, 73, 32, 142, 4, 73, 52, 2, 78, 68, 208, 4, 7, 84, 73, 79,
78, 65, 76, 32, 132, 214, 1, 2, 85, 83, 148, 147, 8, 5, 77, 69, 32, 66,
65, 220, 218, 3, 7, 90, 65, 82, 32, 65, 77, 85, 164, 163, 1, 8, 82, 82,
79, 87, 32, 78, 79, 45, 231, 62, 75, 82, 52, 7, 65, 84, 65, 69, 65, 78,
32, 155, 177, 15, 76, 80, 160, 1, 7, 76, 69, 84, 84, 69, 82, 32, 236, 2,
7, 78, 85, 77, 66, 69, 82, 32, 237, 253, 9, 16, 67, 82, 85, 67, 73, 70,
79, 82, 77, 32, 78, 85, 77, 66, 69, 82, 62, 236, 1, 6, 70, 73, 78, 65,
76, 32, 134, 132, 2, 84, 242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82,
142, 220, 2, 65, 50, 71, 90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5,
75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77,
18, 222, 251, 2, 65, 54, 76, 190, 168, 4, 83, 190, 3, 89, 174, 213, 1,
75, 174, 81, 66, 170, 225, 4, 78, 222, 105, 72, 171, 4, 77, 16, 238, 252,
2, 84, 202, 170, 4, 79, 255, 148, 6, 70, 84, 84, 7, 76, 69, 84, 84, 69,
82, 32, 164, 2, 5, 83, 73, 71, 78, 32, 139, 184, 13, 68, 54, 42, 65, 50,
69, 66, 73, 50, 79, 47, 85, 11, 190, 156, 15, 78, 202, 17, 66, 2, 72, 3,
74, 15, 234, 175, 13, 78, 158, 114, 76, 166, 111, 84, 174, 28, 71, 3, 77,
11, 246, 230, 14, 68, 162, 70, 72, 2, 83, 3, 84, 11, 146, 172, 15, 78,
86, 76, 2, 80, 3, 89, 11, 186, 172, 15, 67, 2, 68, 2, 75, 3, 82, 10, 100,
2, 77, 85, 20, 3, 83, 85, 84, 178, 118, 73, 184, 250, 10, 2, 79, 74, 197,
129, 3, 3, 84, 79, 89, 2, 191, 242, 14, 72, 2, 131, 170, 15, 85, 4, 176,
198, 11, 5, 76, 32, 80, 79, 76, 187, 15, 82, 133, 1, 41, 8, 73, 78, 65,
71, 65, 82, 73, 32, 130, 1, 140, 1, 7, 76, 69, 84, 84, 69, 82, 32, 248,
1, 5, 83, 73, 71, 78, 32, 52, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78,
32, 251, 230, 4, 72, 94, 210, 1, 86, 194, 201, 11, 65, 38, 68, 82, 82,
34, 84, 230, 5, 85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82,
66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 89, 186, 2,
69, 3, 79, 6, 242, 152, 5, 79, 195, 142, 10, 65, 10, 230, 251, 9, 83,
230, 208, 1, 65, 187, 151, 3, 86, 24, 234, 237, 4, 80, 166, 42, 86, 174,
183, 6, 65, 38, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 4, 162, 48,
68, 175, 180, 14, 80, 4, 206, 165, 15, 83, 15, 72, 254, 4, 216, 1, 3, 71,
65, 84, 192, 7, 6, 73, 84, 72, 69, 82, 32, 194, 3, 83, 136, 1, 2, 85, 84,
242, 1, 87, 148, 16, 3, 88, 84, 32, 180, 191, 8, 4, 80, 84, 85, 78, 148,
144, 3, 2, 67, 75, 166, 163, 2, 82, 235, 146, 1, 76, 162, 1, 152, 1, 4,
73, 86, 69, 32, 129, 249, 12, 27, 69, 68, 32, 68, 79, 85, 66, 76, 69, 32,
86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65, 82, 32, 68, 79, 85, 66, 160,
1, 152, 1, 8, 67, 73, 82, 67, 76, 69, 68, 32, 224, 1, 9, 68, 73, 65, 71,
79, 78, 65, 76, 32, 184, 1, 8, 83, 81, 85, 65, 82, 69, 68, 32, 143, 212,
8, 65, 78, 112, 5, 68, 73, 71, 73, 84, 28, 7, 78, 85, 77, 66, 69, 82, 32,
180, 3, 2, 76, 65, 234, 245, 13, 84, 151, 4, 83, 2, 157, 174, 13, 2, 32,
90, 20, 50, 84, 194, 133, 2, 69, 46, 70, 42, 78, 31, 83, 6, 130, 135, 2,
72, 47, 87, 6, 38, 77, 238, 219, 13, 67, 183, 4, 68, 2, 49, 10, 73, 68,
68, 76, 69, 32, 82, 73, 71, 72, 2, 17, 2, 84, 32, 2, 41, 8, 84, 79, 32,
76, 79, 87, 69, 82, 2, 249, 152, 12, 2, 32, 67, 74, 142, 1, 76, 70, 85,
202, 170, 12, 68, 138, 29, 81, 140, 131, 1, 2, 67, 82, 226, 19, 65, 234,
19, 73, 2, 87, 150, 8, 82, 198, 159, 1, 80, 3, 83, 54, 26, 65, 199, 247,
10, 69, 52, 217, 250, 8, 5, 84, 73, 78, 32, 67, 2, 219, 250, 13, 80, 18,
158, 1, 65, 216, 1, 17, 71, 82, 69, 65, 84, 69, 82, 45, 84, 72, 65, 78,
32, 78, 79, 82, 32, 37, 14, 76, 69, 83, 83, 45, 84, 72, 65, 78, 32, 78,
79, 82, 32, 6, 92, 3, 32, 83, 85, 85, 16, 80, 80, 82, 79, 88, 73, 77, 65,
84, 69, 76, 89, 32, 78, 79, 82, 4, 30, 66, 1, 3, 80, 69, 82, 2, 245, 250,
6, 8, 83, 69, 84, 32, 79, 70, 32, 78, 2, 237, 48, 5, 32, 65, 67, 84, 85,
6, 178, 150, 8, 69, 167, 237, 4, 76, 6, 142, 150, 8, 69, 131, 237, 4, 71,
6, 26, 84, 227, 143, 13, 83, 4, 76, 5, 73, 78, 71, 32, 68, 145, 221, 10,
8, 32, 87, 73, 84, 72, 32, 69, 71, 2, 217, 129, 8, 2, 79, 76, 64, 40, 4,
82, 65, 76, 32, 211, 222, 14, 69, 62, 48, 6, 67, 72, 69, 83, 83, 32, 243,
217, 14, 70, 60, 74, 75, 238, 182, 13, 66, 38, 69, 150, 5, 80, 22, 81,
38, 82, 131, 2, 84, 20, 44, 5, 78, 73, 71, 72, 84, 147, 184, 13, 73, 15,
191, 184, 13, 32, 246, 2, 70, 32, 184, 8, 2, 65, 32, 252, 6, 3, 76, 73,
78, 155, 224, 3, 83, 174, 1, 90, 77, 64, 4, 83, 72, 69, 81, 20, 8, 84,
65, 73, 32, 76, 85, 69, 32, 175, 248, 13, 76, 4, 25, 4, 79, 79, 78, 32,
4, 190, 148, 8, 87, 183, 234, 5, 83, 2, 223, 199, 9, 69, 166, 1, 160, 1,
7, 76, 69, 84, 84, 69, 82, 32, 244, 2, 8, 83, 73, 71, 78, 32, 76, 65, 69,
22, 84, 76, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 231, 154, 13,
68, 102, 76, 6, 70, 73, 78, 65, 76, 32, 68, 4, 72, 73, 71, 72, 1, 3, 76,
79, 87, 14, 238, 147, 13, 78, 130, 254, 1, 66, 2, 68, 2, 75, 2, 77, 3,
86, 44, 11, 32, 44, 146, 1, 75, 2, 88, 34, 83, 234, 153, 11, 78, 246,
173, 3, 84, 82, 80, 138, 69, 66, 2, 68, 2, 70, 2, 72, 2, 76, 2, 77, 2,
81, 2, 86, 3, 89, 4, 210, 141, 15, 86, 187, 2, 65, 4, 178, 141, 15, 85,
187, 2, 65, 5, 203, 143, 15, 86, 6, 168, 160, 7, 3, 79, 78, 69, 221, 80,
8, 72, 65, 77, 32, 68, 73, 71, 73, 34, 110, 65, 46, 73, 30, 79, 38, 85,
188, 191, 12, 11, 86, 79, 87, 69, 76, 32, 83, 72, 79, 82, 84, 215, 205,
2, 69, 8, 222, 252, 10, 65, 158, 145, 4, 69, 3, 89, 4, 206, 141, 15, 73,
3, 89, 9, 150, 252, 10, 65, 159, 145, 4, 89, 11, 242, 251, 10, 69, 158,
145, 4, 85, 3, 89, 194, 1, 182, 1, 68, 106, 71, 72, 7, 76, 69, 84, 84,
69, 82, 32, 214, 2, 83, 198, 23, 80, 190, 139, 1, 86, 210, 240, 7, 65,
180, 238, 1, 5, 73, 78, 83, 69, 82, 206, 175, 1, 67, 255, 196, 2, 79, 26,
64, 6, 79, 85, 66, 76, 69, 32, 238, 170, 11, 65, 255, 235, 1, 73, 4, 222,
170, 11, 68, 179, 138, 1, 67, 2, 11, 65, 2, 11, 80, 2, 17, 2, 32, 70, 2,
189, 156, 11, 2, 73, 76, 108, 218, 1, 78, 62, 86, 238, 169, 11, 65, 38,
68, 114, 84, 230, 5, 85, 186, 202, 1, 73, 182, 196, 1, 83, 82, 66, 2, 67,
2, 71, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80, 2, 82, 138, 69, 72, 2, 87, 2,
89, 186, 2, 69, 3, 79, 14, 218, 192, 14, 71, 2, 89, 138, 69, 72, 2, 78,
187, 2, 65, 10, 26, 69, 235, 176, 11, 79, 2, 157, 206, 12, 3, 68, 73, 67,
22, 26, 73, 131, 202, 4, 65, 20, 44, 3, 71, 78, 32, 225, 174, 9, 2, 68,
68, 18, 246, 232, 10, 67, 98, 78, 190, 66, 65, 190, 158, 1, 74, 228, 2,
5, 70, 73, 78, 65, 76, 50, 85, 235, 245, 1, 86, 4, 219, 218, 14, 69, 4,
178, 246, 9, 80, 231, 243, 3, 76, 6, 70, 78, 233, 237, 13, 11, 71, 72,
84, 32, 87, 73, 84, 72, 32, 83, 84, 4, 252, 246, 7, 7, 69, 32, 80, 79,
73, 78, 84, 179, 139, 7, 74, 124, 152, 1, 3, 67, 79, 77, 130, 3, 68, 78,
76, 156, 4, 4, 72, 73, 71, 72, 72, 7, 83, 89, 77, 66, 79, 76, 32, 134,
223, 7, 69, 229, 193, 1, 3, 84, 65, 77, 20, 52, 7, 66, 73, 78, 73, 78,
71, 32, 159, 128, 15, 77, 18, 88, 3, 68, 79, 85, 32, 5, 76, 79, 78, 71,
32, 78, 78, 33, 6, 83, 72, 79, 82, 84, 32, 2, 149, 129, 14, 3, 66, 76,
69, 8, 142, 1, 72, 34, 76, 198, 138, 11, 82, 21, 7, 68, 69, 83, 67, 69,
78, 68, 2, 11, 65, 2, 187, 216, 10, 83, 6, 34, 72, 34, 76, 199, 138, 11,
82, 2, 141, 139, 11, 3, 73, 71, 72, 2, 237, 138, 11, 2, 79, 87, 24, 152,
1, 4, 65, 78, 84, 65, 232, 222, 12, 4, 79, 82, 79, 77, 143, 44, 73, 70,
76, 4, 65, 74, 65, 78, 32, 6, 69, 84, 84, 69, 82, 32, 173, 3, 2, 79, 87,
2, 209, 178, 13, 3, 89, 65, 76, 66, 228, 1, 2, 68, 65, 42, 74, 90, 78,
234, 158, 11, 82, 210, 147, 1, 79, 138, 76, 67, 138, 189, 1, 69, 250, 18,
71, 242, 42, 66, 2, 70, 2, 72, 2, 75, 2, 76, 2, 77, 2, 80, 2, 83, 2, 84,
2, 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 5, 165, 194, 11, 5, 71, 66, 65,
83, 73, 8, 40, 4, 79, 78, 65, 32, 151, 252, 14, 65, 6, 234, 254, 12, 67,
242, 250, 1, 74, 3, 82, 11, 26, 65, 1, 2, 89, 65, 5, 169, 141, 8, 5, 32,
87, 79, 76, 79, 2, 29, 5, 32, 84, 79, 78, 69, 2, 17, 2, 32, 65, 2, 223,
211, 8, 80, 4, 68, 7, 71, 66, 65, 75, 85, 82, 85, 1, 6, 79, 79, 32, 68,
69, 78, 2, 143, 164, 13, 78, 186, 1, 94, 32, 156, 3, 2, 77, 73, 118, 78,
150, 1, 82, 238, 7, 84, 206, 213, 6, 83, 223, 215, 7, 45, 18, 202, 1, 66,
96, 5, 69, 78, 84, 82, 89, 22, 80, 224, 186, 2, 15, 79, 78, 69, 32, 85,
78, 68, 69, 82, 32, 69, 73, 71, 72, 84, 164, 134, 4, 9, 77, 79, 66, 73,
76, 69, 32, 80, 72, 189, 30, 3, 83, 77, 79, 4, 52, 4, 82, 69, 65, 75,
173, 137, 2, 3, 73, 67, 89, 2, 17, 2, 32, 72, 2, 199, 212, 13, 69, 5,
251, 239, 13, 32, 4, 60, 6, 69, 68, 69, 83, 84, 82, 193, 212, 9, 3, 73,
82, 65, 2, 237, 174, 11, 2, 73, 65, 4, 36, 5, 78, 65, 76, 32, 68, 59, 83,
2, 209, 223, 13, 9, 73, 71, 73, 84, 32, 83, 72, 65, 80, 2, 139, 160, 11,
77, 6, 38, 45, 221, 228, 9, 3, 70, 79, 82, 4, 76, 8, 66, 82, 69, 65, 75,
73, 78, 71, 181, 169, 2, 5, 80, 79, 84, 65, 66, 2, 161, 227, 6, 2, 32,
72, 97, 56, 2, 84, 72, 146, 11, 77, 181, 244, 10, 3, 68, 73, 67, 88, 42,
32, 225, 210, 6, 4, 69, 65, 83, 84, 86, 96, 5, 69, 65, 83, 84, 32, 148,
2, 6, 73, 78, 68, 73, 67, 32, 221, 1, 5, 87, 69, 83, 84, 32, 32, 82, 65,
150, 248, 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58,
87, 14, 40, 4, 82, 82, 79, 87, 255, 243, 6, 78, 13, 11, 32, 10, 96, 9,
67, 82, 79, 83, 83, 73, 78, 71, 32, 248, 2, 2, 65, 78, 202, 243, 6, 87,
131, 145, 5, 70, 4, 190, 198, 3, 83, 187, 175, 3, 78, 20, 54, 80, 60, 3,
81, 85, 65, 66, 82, 199, 132, 1, 70, 2, 37, 7, 76, 65, 67, 69, 72, 79,
76, 2, 251, 180, 4, 68, 4, 228, 180, 4, 2, 82, 84, 249, 248, 9, 5, 78,
84, 73, 84, 89, 2, 17, 2, 85, 80, 2, 179, 167, 4, 69, 34, 82, 65, 166,
244, 6, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83, 251, 58, 87, 16,
34, 78, 33, 4, 82, 82, 79, 87, 2, 197, 195, 3, 3, 68, 32, 83, 15, 11, 32,
12, 84, 3, 84, 79, 32, 182, 239, 6, 67, 40, 3, 65, 78, 68, 234, 2, 87,
131, 145, 5, 70, 4, 190, 240, 6, 67, 173, 216, 6, 4, 76, 79, 78, 71, 56,
54, 32, 236, 5, 5, 67, 72, 69, 68, 32, 207, 2, 69, 38, 162, 1, 65, 132,
2, 4, 78, 79, 82, 77, 78, 80, 46, 83, 170, 1, 84, 154, 227, 7, 69, 196,
33, 7, 73, 68, 69, 78, 84, 73, 67, 190, 203, 4, 71, 38, 76, 135, 80, 67,
10, 88, 3, 32, 83, 85, 52, 7, 78, 32, 69, 76, 69, 77, 69, 28, 2, 83, 89,
171, 134, 8, 76, 4, 30, 66, 1, 3, 80, 69, 82, 2, 29, 2, 83, 69, 2, 11,
78, 2, 211, 125, 84, 2, 37, 7, 77, 80, 84, 79, 84, 73, 67, 2, 17, 2, 65,
76, 2, 233, 134, 8, 2, 76, 89, 4, 149, 201, 6, 14, 65, 76, 32, 83, 85,
66, 71, 82, 79, 85, 80, 32, 79, 70, 2, 185, 134, 8, 6, 65, 82, 65, 76,
76, 69, 6, 48, 6, 81, 85, 65, 82, 69, 32, 167, 224, 13, 73, 4, 68, 5, 73,
77, 65, 71, 69, 1, 8, 79, 82, 73, 71, 73, 78, 65, 76, 2, 21, 3, 32, 79,
70, 2, 151, 199, 6, 32, 4, 174, 214, 10, 82, 207, 242, 1, 73, 8, 58, 76,
40, 4, 82, 73, 71, 72, 133, 1, 3, 85, 80, 80, 4, 36, 2, 69, 70, 133, 1,
2, 79, 87, 2, 89, 20, 84, 32, 83, 69, 77, 73, 67, 73, 82, 67, 76, 69, 32,
87, 73, 84, 72, 32, 84, 72, 2, 17, 2, 82, 69, 2, 187, 145, 13, 69, 2, 11,
69, 2, 41, 8, 82, 32, 82, 73, 71, 72, 84, 45, 2, 205, 148, 3, 6, 83, 72,
65, 68, 79, 87, 11, 34, 32, 53, 4, 66, 79, 79, 75, 4, 17, 2, 80, 65, 4,
142, 204, 14, 71, 215, 22, 68, 5, 81, 18, 32, 87, 73, 84, 72, 32, 68, 69,
67, 79, 82, 65, 84, 73, 86, 69, 32, 67, 2, 179, 142, 4, 79, 186, 6, 102,
77, 176, 3, 4, 83, 72, 85, 32, 216, 183, 5, 8, 84, 32, 65, 78, 68, 32,
66, 79, 191, 169, 8, 76, 26, 36, 4, 66, 69, 82, 32, 247, 2, 69, 24, 58,
69, 50, 70, 42, 83, 66, 84, 57, 4, 78, 73, 78, 69, 4, 204, 1, 3, 73, 71,
72, 21, 3, 76, 69, 86, 4, 144, 1, 2, 79, 85, 13, 2, 73, 70, 6, 34, 73,
85, 4, 69, 86, 69, 78, 4, 82, 88, 223, 142, 14, 71, 8, 40, 2, 72, 73, 46,
69, 21, 2, 87, 69, 2, 11, 82, 2, 17, 2, 84, 69, 2, 11, 69, 2, 203, 204,
7, 78, 4, 180, 204, 7, 3, 76, 86, 69, 1, 3, 78, 84, 89, 2, 255, 247, 6,
82, 154, 6, 72, 12, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 215,
182, 12, 73, 152, 6, 18, 49, 87, 50, 160, 2, 222, 1, 55, 2, 56, 2, 57, 2,
65, 2, 66, 2, 67, 2, 68, 2, 69, 3, 70, 248, 3, 138, 1, 48, 2, 49, 2, 50,
2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2,
68, 2, 69, 143, 1, 70, 32, 242, 218, 14, 48, 2, 49, 2, 50, 2, 51, 2, 52,
2, 53, 2, 54, 2, 55, 2, 56, 2, 57, 2, 65, 2, 66, 2, 67, 2, 68, 2, 69, 3,
70, 24, 230, 217, 14, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2,
55, 2, 56, 2, 57, 2, 65, 3, 66, 142, 1, 118, 76, 226, 3, 83, 164, 2, 5,
84, 79, 78, 69, 45, 196, 230, 7, 8, 67, 73, 82, 67, 76, 69, 68, 32, 179,
247, 4, 68, 92, 88, 6, 69, 84, 84, 69, 82, 32, 173, 163, 1, 10, 79, 71,
79, 71, 82, 65, 77, 32, 78, 89, 90, 130, 2, 78, 90, 84, 166, 220, 7, 88,
182, 230, 2, 65, 144, 1, 2, 72, 65, 226, 51, 82, 210, 147, 1, 79, 150,
61, 68, 2, 77, 2, 80, 254, 203, 1, 69, 234, 61, 67, 2, 70, 2, 71, 2, 75,
2, 76, 2, 81, 2, 83, 2, 86, 2, 89, 2, 90, 186, 2, 73, 2, 85, 3, 87, 22,
86, 84, 174, 200, 12, 80, 230, 137, 2, 67, 2, 75, 2, 81, 2, 82, 2, 89,
187, 2, 65, 6, 142, 210, 14, 83, 2, 88, 187, 2, 65, 14, 64, 4, 73, 71,
78, 32, 189, 1, 7, 89, 76, 76, 65, 66, 76, 69, 12, 56, 4, 70, 79, 82, 32,
129, 213, 13, 4, 88, 87, 32, 88, 10, 204, 9, 2, 76, 79, 230, 164, 3, 84,
156, 94, 8, 73, 78, 86, 69, 82, 84, 69, 66, 232, 144, 4, 3, 65, 78, 73,
195, 177, 2, 80, 2, 177, 132, 12, 4, 32, 76, 69, 78, 14, 250, 209, 14,
66, 2, 68, 2, 71, 2, 74, 2, 77, 2, 83, 3, 86, 254, 14, 226, 2, 66, 226,
1, 67, 226, 5, 71, 244, 6, 4, 73, 76, 32, 68, 22, 76, 198, 69, 78, 150,
5, 80, 234, 7, 82, 242, 10, 83, 188, 8, 2, 84, 84, 154, 8, 85, 248, 1, 3,
86, 69, 82, 254, 170, 2, 89, 148, 151, 4, 14, 70, 70, 73, 67, 69, 32, 66,
85, 73, 76, 68, 73, 78, 71, 154, 185, 1, 72, 146, 132, 2, 75, 210, 250,
1, 68, 194, 64, 77, 246, 9, 87, 211, 139, 1, 88, 10, 132, 1, 6, 76, 73,
81, 85, 69, 32, 252, 158, 2, 9, 83, 69, 82, 86, 69, 82, 32, 69, 89, 189,
29, 8, 74, 69, 67, 84, 32, 82, 69, 80, 6, 172, 203, 4, 13, 65, 78, 71,
76, 69, 32, 79, 80, 69, 78, 73, 78, 71, 171, 241, 1, 72, 28, 56, 2, 82,
32, 234, 4, 84, 225, 198, 5, 3, 67, 85, 76, 22, 156, 1, 11, 65, 77, 79,
85, 78, 84, 32, 79, 70, 32, 67, 22, 66, 198, 1, 67, 118, 68, 106, 70, 0,
10, 73, 78, 86, 69, 82, 84, 69, 68, 32, 70, 243, 241, 12, 72, 2, 203,
184, 5, 72, 6, 136, 1, 15, 82, 65, 78, 67, 72, 32, 66, 65, 78, 75, 32,
73, 68, 69, 78, 156, 131, 5, 5, 69, 76, 84, 32, 66, 205, 144, 6, 3, 79,
87, 32, 2, 21, 3, 84, 73, 70, 2, 11, 73, 2, 131, 132, 11, 67, 4, 92, 17,
85, 83, 84, 79, 77, 69, 82, 32, 65, 67, 67, 79, 85, 78, 84, 32, 78, 243,
201, 1, 72, 2, 159, 161, 6, 85, 4, 44, 5, 79, 85, 66, 76, 69, 147, 221,
12, 65, 2, 11, 32, 2, 11, 66, 2, 157, 163, 7, 3, 65, 67, 75, 2, 191, 134,
14, 79, 4, 160, 251, 8, 4, 65, 71, 79, 78, 197, 195, 3, 2, 79, 80, 60,
48, 4, 72, 65, 77, 32, 185, 195, 14, 2, 79, 78, 58, 122, 70, 0, 10, 82,
69, 86, 69, 82, 83, 69, 68, 32, 70, 36, 7, 76, 69, 84, 84, 69, 82, 32,
149, 254, 3, 3, 83, 80, 65, 2, 161, 139, 4, 4, 69, 65, 84, 72, 52, 196,
1, 2, 65, 73, 22, 66, 2, 80, 34, 67, 36, 2, 69, 65, 64, 2, 70, 69, 22,
71, 22, 73, 58, 76, 2, 82, 22, 78, 46, 79, 34, 83, 46, 85, 222, 184, 1,
77, 170, 9, 68, 189, 227, 11, 3, 84, 73, 78, 2, 155, 179, 14, 76, 2, 11,
69, 2, 219, 190, 12, 73, 4, 226, 151, 8, 69, 183, 161, 4, 79, 6, 138, 1,
66, 2, 68, 153, 143, 4, 6, 77, 72, 65, 78, 67, 72, 2, 247, 175, 9, 65, 2,
183, 187, 13, 79, 4, 32, 2, 79, 68, 191, 194, 13, 70, 2, 195, 137, 8, 72,
2, 243, 154, 12, 85, 4, 132, 172, 13, 3, 71, 69, 65, 247, 69, 73, 4, 218,
241, 13, 78, 227, 79, 82, 4, 202, 225, 12, 65, 229, 93, 3, 84, 82, 65, 6,
60, 5, 73, 76, 76, 69, 65, 186, 187, 12, 65, 251, 132, 2, 82, 2, 207,
240, 13, 78, 2, 247, 148, 13, 82, 182, 8, 38, 32, 142, 11, 68, 255, 183,
13, 73, 184, 1, 64, 6, 67, 72, 73, 75, 73, 32, 205, 6, 5, 79, 78, 65, 76,
32, 96, 132, 1, 7, 76, 69, 84, 84, 69, 82, 32, 148, 3, 2, 77, 85, 62, 71,
74, 80, 164, 216, 3, 2, 82, 69, 202, 237, 8, 68, 211, 173, 1, 65, 60, 50,
65, 98, 69, 54, 73, 50, 76, 62, 79, 51, 85, 16, 50, 65, 210, 188, 14, 78,
86, 71, 2, 76, 3, 84, 8, 162, 189, 14, 74, 2, 75, 2, 77, 3, 87, 8, 214,
246, 13, 68, 198, 13, 82, 222, 56, 78, 3, 80, 8, 250, 170, 14, 78, 202,
17, 72, 2, 82, 3, 83, 12, 162, 170, 10, 65, 242, 145, 4, 69, 2, 73, 2,
79, 3, 85, 8, 170, 159, 14, 84, 174, 28, 66, 2, 72, 3, 86, 8, 198, 235,
13, 78, 226, 79, 67, 2, 68, 3, 89, 4, 56, 2, 45, 71, 209, 206, 12, 6, 32,
84, 84, 85, 68, 68, 2, 205, 206, 12, 13, 65, 65, 72, 76, 65, 65, 32, 84,
84, 85, 68, 68, 65, 6, 84, 11, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78,
32, 177, 224, 6, 4, 72, 65, 65, 82, 4, 48, 8, 68, 79, 85, 66, 76, 69, 32,
77, 3, 77, 2, 185, 242, 13, 3, 85, 67, 65, 88, 100, 7, 76, 69, 84, 84,
69, 82, 32, 192, 2, 5, 83, 73, 71, 78, 32, 206, 193, 8, 65, 207, 255, 3,
68, 60, 42, 65, 54, 69, 58, 73, 54, 79, 59, 85, 13, 178, 183, 14, 66, 2,
68, 2, 72, 2, 76, 3, 87, 13, 158, 231, 13, 78, 226, 79, 67, 2, 71, 2, 72,
3, 83, 13, 238, 205, 8, 84, 218, 232, 5, 68, 2, 78, 3, 80, 13, 182, 253,
13, 82, 138, 56, 78, 86, 77, 2, 79, 3, 89, 13, 186, 239, 13, 68, 218, 52,
78, 202, 17, 74, 2, 75, 3, 82, 6, 58, 73, 144, 246, 12, 4, 72, 79, 68,
68, 239, 153, 1, 77, 2, 131, 182, 1, 75, 252, 6, 34, 32, 165, 57, 3, 69,
82, 32, 246, 6, 240, 2, 8, 67, 72, 73, 78, 69, 83, 69, 32, 44, 10, 72,
85, 78, 71, 65, 82, 73, 65, 78, 32, 128, 7, 7, 73, 84, 65, 76, 73, 67,
32, 212, 4, 14, 78, 79, 82, 84, 72, 32, 65, 82, 65, 66, 73, 65, 78, 32,
196, 4, 3, 80, 69, 82, 216, 13, 2, 83, 79, 144, 13, 14, 84, 85, 82, 75,
73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 132, 7, 7, 85, 89, 71, 72, 85,
82, 32, 171, 225, 11, 75, 4, 146, 139, 12, 73, 241, 96, 3, 72, 79, 79,
216, 1, 96, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76, 233, 5, 7,
78, 85, 77, 66, 69, 82, 32, 102, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82,
32, 102, 214, 1, 65, 54, 69, 168, 2, 10, 78, 73, 75, 79, 76, 83, 66, 85,
82, 71, 0, 9, 82, 85, 68, 73, 77, 69, 78, 84, 65, 42, 79, 32, 5, 83, 72,
79, 82, 84, 22, 85, 168, 242, 3, 5, 67, 76, 79, 83, 69, 243, 171, 8, 73,
11, 154, 240, 12, 77, 218, 119, 78, 162, 70, 65, 3, 75, 63, 178, 1, 77,
22, 78, 78, 83, 182, 130, 10, 67, 254, 23, 71, 2, 76, 2, 84, 198, 135, 2,
90, 218, 137, 2, 66, 2, 68, 2, 69, 2, 70, 2, 72, 2, 74, 2, 75, 2, 80, 2,
82, 3, 86, 5, 171, 172, 14, 80, 11, 34, 84, 246, 171, 14, 67, 3, 89, 5,
197, 149, 2, 5, 45, 83, 72, 65, 80, 5, 203, 171, 14, 90, 4, 11, 32, 4,
214, 148, 14, 79, 3, 85, 7, 186, 148, 14, 69, 215, 22, 79, 2, 131, 237,
13, 32, 9, 194, 167, 14, 78, 154, 3, 83, 3, 85, 12, 210, 4, 70, 242, 131,
6, 79, 239, 203, 6, 84, 78, 80, 7, 76, 69, 84, 84, 69, 82, 32, 169, 3, 8,
78, 85, 77, 69, 82, 65, 76, 32, 70, 190, 1, 69, 90, 75, 50, 83, 36, 3,
78, 79, 82, 202, 207, 10, 85, 186, 202, 1, 73, 166, 140, 1, 80, 2, 84,
150, 83, 67, 186, 22, 66, 2, 68, 2, 72, 2, 86, 2, 89, 2, 90, 214, 22, 65,
3, 79, 23, 214, 254, 9, 83, 194, 159, 2, 82, 254, 203, 1, 75, 222, 61,
70, 2, 76, 2, 77, 3, 78, 8, 194, 144, 14, 72, 214, 22, 65, 2, 69, 3, 85,
4, 32, 2, 79, 85, 243, 143, 14, 72, 2, 29, 5, 84, 72, 69, 82, 78, 2, 253,
154, 13, 2, 32, 84, 8, 38, 70, 222, 207, 12, 84, 215, 58, 79, 4, 11, 73,
4, 242, 181, 12, 70, 143, 217, 1, 86, 64, 76, 7, 76, 69, 84, 84, 69, 82,
32, 209, 3, 7, 78, 85, 77, 66, 69, 82, 32, 58, 210, 1, 65, 38, 71, 38,
72, 30, 75, 38, 84, 74, 90, 234, 106, 77, 140, 158, 3, 2, 69, 83, 238,
162, 3, 66, 2, 70, 2, 82, 2, 89, 182, 203, 3, 78, 154, 237, 1, 76, 210,
58, 68, 146, 1, 81, 134, 3, 87, 131, 56, 83, 4, 134, 194, 3, 76, 167,
145, 10, 73, 4, 254, 243, 12, 72, 191, 156, 1, 69, 4, 178, 161, 14, 65,
3, 69, 4, 166, 180, 7, 72, 223, 236, 5, 65, 8, 34, 72, 210, 160, 14, 65,
3, 69, 4, 142, 150, 13, 65, 195, 138, 1, 69, 4, 11, 65, 4, 206, 209, 13,
73, 227, 79, 72, 6, 190, 153, 6, 84, 163, 236, 6, 79, 180, 1, 64, 11, 77,
73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 183, 5, 83, 76, 228, 1, 2, 67,
72, 22, 68, 66, 69, 22, 73, 30, 77, 2, 78, 30, 80, 22, 83, 70, 84, 50,
86, 38, 89, 94, 90, 254, 195, 6, 76, 2, 82, 214, 227, 2, 71, 150, 170, 2,
79, 222, 208, 1, 66, 246, 40, 65, 254, 31, 75, 174, 45, 72, 187, 2, 85,
2, 215, 216, 7, 69, 6, 26, 90, 183, 138, 14, 79, 4, 134, 167, 9, 72, 187,
210, 4, 73, 5, 231, 157, 14, 70, 7, 210, 157, 14, 65, 3, 69, 2, 213, 134,
14, 2, 69, 78, 2, 131, 198, 6, 69, 6, 26, 72, 151, 137, 14, 73, 4, 228,
165, 9, 3, 67, 72, 79, 3, 79, 4, 26, 83, 211, 136, 14, 65, 2, 191, 247,
13, 73, 4, 142, 165, 9, 79, 171, 190, 4, 69, 14, 60, 2, 69, 82, 218, 178,
8, 65, 146, 215, 5, 82, 203, 17, 85, 7, 174, 155, 14, 73, 3, 85, 4, 142,
164, 9, 72, 187, 210, 4, 65, 104, 88, 4, 73, 65, 78, 32, 241, 5, 13, 79,
78, 65, 76, 32, 67, 79, 77, 80, 85, 84, 69, 82, 100, 80, 7, 78, 85, 77,
66, 69, 82, 32, 80, 5, 83, 73, 71, 78, 32, 251, 222, 10, 87, 10, 42, 84,
234, 188, 8, 72, 255, 192, 4, 79, 6, 238, 230, 1, 87, 199, 226, 11, 69,
88, 210, 1, 65, 86, 66, 62, 68, 98, 74, 2, 86, 30, 84, 42, 88, 182, 111,
71, 2, 75, 2, 78, 2, 82, 150, 206, 9, 77, 146, 143, 3, 83, 218, 69, 67,
2, 70, 2, 72, 2, 76, 2, 80, 2, 89, 2, 90, 186, 2, 73, 3, 85, 9, 45, 9,
85, 82, 65, 77, 65, 90, 68, 65, 65, 7, 170, 239, 6, 45, 139, 165, 7, 72,
6, 38, 65, 213, 177, 10, 3, 85, 85, 77, 5, 231, 147, 14, 71, 10, 34, 65,
234, 149, 14, 73, 3, 85, 7, 37, 7, 72, 89, 65, 65, 85, 83, 72, 5, 255,
237, 6, 45, 4, 170, 149, 14, 65, 3, 73, 6, 214, 146, 14, 72, 186, 2, 65,
3, 85, 4, 152, 220, 11, 8, 83, 72, 65, 65, 89, 65, 84, 72, 207, 184, 2,
65, 5, 181, 147, 5, 31, 32, 87, 73, 84, 72, 32, 77, 79, 78, 73, 84, 79,
82, 32, 73, 78, 32, 80, 79, 82, 84, 82, 65, 73, 84, 32, 79, 82, 73, 69,
78, 144, 1, 92, 6, 71, 68, 73, 65, 78, 32, 141, 7, 12, 85, 84, 72, 32,
65, 82, 65, 66, 73, 65, 78, 32, 80, 58, 70, 74, 76, 145, 5, 7, 78, 85,
77, 66, 69, 82, 32, 2, 11, 82, 2, 201, 237, 11, 10, 65, 67, 84, 73, 79,
78, 32, 79, 78, 69, 60, 76, 6, 69, 84, 84, 69, 82, 32, 149, 4, 8, 73, 71,
65, 84, 85, 82, 69, 32, 58, 234, 1, 65, 96, 6, 70, 73, 78, 65, 76, 32,
200, 1, 5, 82, 69, 83, 72, 45, 162, 216, 1, 76, 194, 170, 4, 71, 90, 90,
34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4,
78, 134, 2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 6, 26, 76, 131, 143, 13,
89, 4, 192, 133, 6, 8, 84, 69, 82, 78, 65, 84, 69, 32, 155, 214, 1, 69,
18, 116, 3, 78, 85, 78, 0, 5, 83, 65, 68, 72, 69, 0, 3, 84, 65, 87, 190,
216, 1, 65, 134, 211, 6, 66, 135, 203, 5, 72, 5, 41, 8, 32, 87, 73, 84,
72, 32, 86, 69, 2, 133, 220, 5, 4, 82, 84, 73, 67, 2, 253, 215, 1, 6, 65,
89, 73, 78, 45, 68, 18, 42, 84, 234, 131, 6, 79, 255, 148, 6, 70, 10, 42,
72, 162, 217, 1, 87, 199, 226, 11, 69, 4, 162, 153, 12, 82, 159, 2, 73,
64, 60, 7, 76, 69, 84, 84, 69, 82, 32, 245, 3, 3, 78, 85, 77, 58, 202, 1,
65, 38, 68, 74, 71, 34, 75, 34, 83, 78, 84, 254, 43, 90, 254, 166, 1, 76,
50, 81, 214, 205, 1, 82, 246, 221, 2, 89, 198, 207, 1, 72, 150, 87, 66,
170, 225, 4, 78, 134, 2, 87, 218, 103, 70, 171, 4, 77, 4, 146, 168, 3,
76, 167, 145, 10, 89, 6, 32, 2, 72, 65, 151, 212, 1, 65, 4, 246, 166, 8,
76, 207, 180, 5, 68, 4, 134, 45, 72, 203, 209, 5, 73, 4, 146, 213, 7, 65,
163, 81, 72, 8, 26, 65, 255, 135, 13, 72, 6, 218, 198, 7, 77, 234, 147,
6, 68, 143, 45, 84, 8, 230, 90, 72, 194, 167, 11, 69, 219, 134, 1, 65, 6,
56, 4, 66, 69, 82, 32, 145, 205, 13, 4, 69, 82, 73, 67, 4, 26, 70, 235,
234, 12, 79, 2, 139, 149, 12, 73, 146, 1, 80, 7, 79, 82, 75, 72, 79, 78,
32, 197, 3, 8, 89, 69, 78, 73, 83, 69, 73, 32, 84, 54, 65, 202, 1, 69,
122, 73, 30, 79, 135, 151, 12, 66, 45, 106, 69, 170, 243, 9, 83, 226,
144, 4, 66, 2, 68, 2, 71, 2, 76, 2, 78, 2, 81, 2, 82, 2, 84, 3, 89, 20,
134, 132, 14, 66, 2, 68, 2, 71, 2, 75, 2, 76, 2, 78, 2, 82, 2, 83, 2, 84,
3, 89, 20, 74, 78, 182, 230, 13, 76, 158, 27, 83, 146, 1, 67, 2, 77, 2,
80, 3, 90, 8, 222, 130, 14, 67, 2, 71, 2, 84, 3, 89, 7, 178, 130, 14, 67,
3, 81, 13, 130, 3, 69, 150, 255, 13, 80, 2, 81, 3, 84, 62, 38, 65, 170,
1, 69, 86, 73, 23, 79, 39, 98, 69, 206, 255, 13, 83, 62, 78, 86, 66, 2,
68, 2, 71, 2, 76, 2, 81, 2, 82, 2, 84, 3, 89, 17, 218, 130, 12, 78, 130,
254, 1, 66, 2, 71, 2, 75, 2, 84, 3, 89, 15, 46, 78, 218, 254, 13, 83,
146, 1, 67, 3, 90, 6, 230, 255, 13, 67, 2, 84, 3, 89, 5, 195, 255, 13,
81, 6, 26, 69, 151, 255, 13, 81, 5, 147, 255, 13, 75, 52, 148, 1, 10, 67,
79, 77, 66, 73, 78, 73, 78, 71, 32, 36, 7, 76, 69, 84, 84, 69, 82, 32,
233, 1, 12, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 8, 222, 241,
5, 84, 243, 231, 3, 68, 36, 230, 200, 1, 65, 186, 206, 1, 82, 222, 220,
2, 76, 58, 90, 34, 83, 66, 89, 168, 210, 1, 6, 70, 73, 78, 65, 76, 32, 0,
6, 71, 73, 77, 69, 76, 45, 134, 3, 75, 174, 81, 66, 170, 225, 4, 78, 134,
2, 84, 2, 87, 218, 103, 80, 171, 4, 77, 8, 56, 4, 84, 87, 79, 32, 174,
212, 11, 70, 187, 131, 1, 66, 4, 158, 228, 12, 66, 75, 68, 6, 146, 181,
1, 87, 136, 160, 3, 3, 65, 68, 85, 207, 217, 7, 77, 22, 212, 1, 34, 32,
87, 73, 84, 72, 32, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79, 78, 32, 77,
65, 82, 75, 32, 87, 73, 84, 72, 32, 76, 69, 70, 84, 32, 82, 44, 7, 67,
79, 77, 73, 78, 71, 32, 194, 1, 69, 151, 167, 13, 73, 2, 21, 3, 73, 71,
72, 2, 203, 250, 9, 84, 10, 148, 1, 6, 65, 85, 84, 79, 77, 79, 20, 7, 70,
73, 82, 69, 32, 69, 78, 144, 225, 2, 2, 84, 65, 148, 247, 8, 6, 80, 79,
76, 73, 67, 69, 143, 22, 66, 2, 223, 206, 11, 66, 2, 215, 219, 12, 71, 8,
70, 32, 229, 191, 12, 11, 45, 80, 73, 69, 67, 69, 32, 83, 87, 73, 77, 6,
40, 4, 68, 79, 84, 32, 175, 173, 10, 66, 4, 26, 79, 135, 175, 10, 76, 2,
129, 234, 2, 11, 86, 69, 82, 32, 84, 87, 79, 32, 68, 79, 84, 46, 82, 69,
188, 6, 2, 84, 73, 188, 229, 11, 5, 72, 73, 85, 67, 72, 147, 183, 1, 80,
36, 70, 78, 201, 5, 12, 82, 65, 84, 73, 78, 71, 32, 83, 89, 83, 84, 69,
34, 22, 32, 139, 4, 45, 28, 108, 2, 66, 79, 32, 7, 67, 69, 78, 84, 82,
69, 32, 114, 70, 70, 72, 42, 77, 142, 139, 7, 83, 135, 244, 3, 76, 4,
242, 239, 13, 79, 155, 3, 88, 8, 50, 84, 174, 216, 11, 66, 222, 2, 65,
135, 84, 67, 2, 37, 7, 69, 65, 82, 68, 82, 79, 80, 2, 143, 218, 11, 45,
4, 44, 5, 73, 76, 69, 32, 70, 243, 131, 2, 79, 2, 239, 131, 2, 79, 2, 17,
2, 65, 78, 2, 151, 191, 10, 68, 4, 57, 12, 65, 73, 76, 66, 79, 88, 32,
87, 73, 84, 72, 32, 4, 44, 3, 76, 79, 87, 21, 4, 82, 65, 73, 83, 2, 17,
2, 69, 82, 2, 129, 132, 12, 2, 69, 68, 6, 108, 15, 67, 73, 82, 67, 85,
73, 84, 45, 79, 85, 84, 80, 85, 84, 32, 221, 204, 12, 6, 79, 85, 84, 76,
73, 78, 4, 18, 72, 3, 76, 2, 161, 192, 1, 4, 45, 84, 89, 80, 2, 169, 222,
12, 6, 77, 32, 67, 79, 77, 77, 6, 64, 2, 79, 78, 253, 177, 1, 8, 67, 65,
76, 32, 68, 73, 83, 67, 2, 247, 207, 11, 32, 208, 1, 104, 3, 65, 78, 71,
66, 67, 34, 73, 212, 8, 5, 78, 65, 84, 69, 32, 32, 3, 84, 72, 79, 199,
176, 5, 32, 6, 28, 2, 69, 32, 167, 22, 85, 4, 198, 150, 12, 66, 203, 78,
72, 4, 186, 174, 13, 85, 223, 61, 65, 188, 1, 48, 5, 71, 73, 78, 65, 76,
21, 3, 89, 65, 32, 2, 183, 133, 1, 32, 186, 1, 106, 65, 30, 70, 250, 1,
73, 32, 7, 76, 69, 84, 84, 69, 82, 32, 142, 2, 83, 218, 1, 86, 159, 240,
11, 68, 4, 182, 137, 10, 73, 3, 85, 12, 41, 8, 82, 65, 67, 84, 73, 79,
78, 32, 12, 56, 4, 79, 78, 69, 32, 81, 6, 84, 72, 82, 69, 69, 32, 8, 42,
83, 206, 226, 11, 69, 46, 72, 47, 81, 2, 217, 227, 11, 4, 73, 88, 84, 69,
4, 26, 83, 227, 228, 11, 81, 2, 145, 136, 8, 4, 73, 88, 84, 69, 2, 233,
196, 12, 3, 83, 83, 72, 104, 226, 1, 82, 130, 238, 6, 89, 178, 154, 3,
65, 38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, 42, 76, 226,
195, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69,
72, 2, 77, 2, 87, 186, 2, 69, 3, 79, 6, 234, 227, 13, 72, 2, 82, 187, 2,
65, 18, 112, 20, 69, 81, 85, 69, 78, 67, 69, 32, 70, 79, 82, 32, 76, 69,
84, 84, 69, 82, 32, 82, 29, 4, 73, 71, 78, 32, 4, 206, 226, 13, 72, 3,
82, 14, 138, 199, 9, 67, 98, 78, 190, 66, 65, 250, 239, 1, 79, 195, 167,
1, 86, 26, 49, 10, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 26, 206, 140,
10, 65, 38, 85, 22, 86, 166, 202, 1, 73, 198, 140, 2, 69, 3, 79, 4, 194,
220, 6, 76, 243, 30, 82, 4, 240, 245, 3, 2, 68, 79, 139, 183, 2, 71, 226,
1, 76, 4, 65, 71, 69, 32, 140, 4, 6, 77, 65, 78, 89, 65, 32, 251, 221,
13, 67, 144, 1, 56, 6, 67, 65, 80, 73, 84, 65, 1, 4, 83, 77, 65, 76, 72,
45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 72, 194, 1, 65, 38, 69, 90,
75, 42, 79, 22, 84, 246, 229, 6, 72, 254, 250, 4, 67, 2, 68, 2, 71, 234,
181, 1, 83, 2, 90, 130, 3, 66, 138, 66, 76, 2, 77, 2, 78, 2, 80, 2, 87,
186, 2, 73, 3, 85, 9, 226, 225, 11, 73, 239, 253, 1, 72, 15, 26, 72, 179,
143, 13, 73, 10, 134, 202, 9, 84, 226, 151, 2, 67, 242, 250, 1, 75, 3,
80, 6, 154, 220, 13, 72, 2, 89, 187, 2, 65, 5, 203, 142, 13, 73, 6, 214,
150, 13, 83, 195, 71, 65, 80, 52, 7, 76, 69, 84, 84, 69, 82, 32, 187,
233, 11, 68, 60, 246, 1, 65, 38, 67, 22, 68, 38, 75, 34, 83, 30, 77, 162,
241, 2, 81, 226, 159, 8, 79, 148, 125, 2, 76, 65, 236, 75, 2, 78, 85,
134, 2, 87, 142, 62, 69, 234, 61, 66, 2, 70, 2, 71, 2, 72, 2, 74, 2, 82,
2, 84, 2, 88, 2, 89, 186, 2, 73, 3, 85, 7, 194, 250, 2, 76, 135, 225, 10,
65, 2, 183, 221, 12, 65, 4, 222, 197, 8, 69, 251, 146, 5, 72, 4, 186,
217, 12, 65, 251, 126, 72, 4, 26, 72, 179, 218, 13, 65, 2, 219, 218, 12,
73, 124, 68, 11, 79, 77, 65, 78, 32, 83, 73, 89, 65, 81, 32, 251, 160,
13, 69, 122, 172, 1, 17, 65, 76, 84, 69, 82, 78, 65, 84, 69, 32, 78, 85,
77, 66, 69, 82, 32, 200, 1, 13, 70, 82, 65, 67, 84, 73, 79, 78, 32, 79,
78, 69, 32, 48, 3, 77, 65, 82, 47, 78, 26, 54, 70, 50, 83, 46, 84, 214,
187, 12, 78, 239, 112, 69, 6, 248, 207, 5, 3, 79, 85, 82, 159, 139, 7,
73, 6, 200, 207, 5, 2, 73, 88, 155, 149, 6, 69, 10, 226, 184, 2, 69, 12,
2, 87, 79, 247, 171, 9, 72, 4, 26, 83, 175, 208, 11, 72, 2, 155, 209, 11,
73, 2, 11, 82, 2, 11, 65, 2, 247, 137, 12, 84, 90, 33, 6, 85, 77, 66, 69,
82, 32, 90, 58, 69, 66, 70, 94, 78, 26, 83, 78, 84, 179, 177, 5, 79, 10,
25, 4, 73, 71, 72, 84, 11, 226, 182, 2, 89, 227, 193, 5, 32, 20, 18, 73,
35, 79, 10, 166, 2, 70, 195, 176, 5, 86, 10, 134, 2, 82, 205, 176, 5, 2,
85, 82, 10, 65, 3, 73, 78, 69, 20, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88,
11, 166, 1, 84, 219, 245, 7, 32, 24, 34, 72, 50, 87, 163, 180, 2, 69, 10,
34, 73, 245, 176, 5, 2, 82, 69, 4, 51, 82, 10, 26, 69, 219, 176, 5, 79,
4, 11, 78, 4, 11, 84, 4, 247, 179, 2, 89, 84, 34, 84, 217, 177, 11, 2,
78, 67, 82, 42, 66, 37, 6, 76, 73, 78, 69, 68, 32, 2, 133, 195, 12, 4,
79, 88, 32, 84, 80, 92, 7, 76, 65, 84, 73, 78, 32, 67, 242, 194, 6, 87,
182, 243, 4, 66, 234, 14, 71, 159, 23, 68, 54, 186, 174, 7, 65, 215, 222,
4, 82, 12, 18, 72, 43, 76, 2, 17, 2, 69, 65, 2, 239, 188, 12, 84, 10, 32,
2, 65, 80, 255, 179, 12, 73, 9, 29, 5, 80, 73, 78, 71, 32, 6, 40, 6, 87,
72, 73, 84, 69, 32, 51, 66, 4, 44, 5, 65, 78, 68, 32, 66, 151, 138, 10,
83, 2, 253, 137, 10, 4, 76, 65, 67, 75, 152, 13, 150, 1, 65, 206, 65, 68,
30, 69, 134, 13, 72, 138, 25, 73, 202, 4, 76, 160, 15, 2, 78, 80, 54, 79,
238, 8, 82, 210, 15, 83, 186, 6, 85, 239, 177, 12, 77, 158, 6, 134, 2,
68, 38, 71, 212, 1, 11, 72, 65, 87, 72, 32, 72, 77, 79, 78, 71, 32, 134,
23, 76, 130, 6, 78, 58, 82, 196, 22, 2, 83, 83, 132, 2, 10, 85, 32, 67,
73, 78, 32, 72, 65, 85, 32, 176, 7, 3, 87, 32, 80, 152, 252, 7, 2, 67,
75, 233, 141, 5, 4, 80, 69, 82, 67, 5, 253, 185, 1, 4, 68, 73, 78, 71,
14, 26, 69, 163, 165, 13, 79, 13, 34, 32, 130, 202, 13, 82, 3, 83, 6, 72,
6, 87, 73, 84, 72, 32, 67, 181, 159, 4, 6, 70, 65, 67, 73, 78, 71, 4, 50,
85, 145, 237, 7, 6, 73, 82, 67, 76, 69, 68, 2, 175, 189, 12, 82, 254, 1,
190, 1, 67, 160, 6, 9, 77, 65, 82, 75, 32, 67, 73, 77, 32, 160, 1, 7, 78,
85, 77, 66, 69, 82, 32, 244, 1, 5, 83, 73, 71, 78, 32, 144, 10, 7, 86,
79, 87, 69, 76, 32, 75, 223, 191, 11, 68, 78, 92, 9, 76, 65, 78, 32, 83,
73, 71, 78, 32, 137, 3, 9, 79, 78, 83, 79, 78, 65, 78, 84, 32, 38, 132,
1, 2, 72, 65, 38, 75, 46, 76, 34, 84, 82, 86, 30, 89, 148, 9, 2, 88, 89,
172, 5, 2, 80, 72, 174, 1, 70, 165, 2, 2, 77, 85, 4, 170, 198, 2, 87,
151, 255, 10, 77, 6, 246, 15, 72, 178, 150, 13, 79, 159, 14, 87, 4, 210,
12, 65, 195, 250, 12, 73, 8, 22, 83, 247, 9, 72, 6, 160, 197, 2, 3, 72,
69, 69, 158, 193, 9, 65, 3, 87, 4, 234, 196, 2, 65, 3, 87, 4, 206, 196,
2, 65, 175, 185, 10, 69, 40, 122, 67, 38, 72, 46, 78, 60, 2, 80, 76, 2,
81, 222, 222, 2, 76, 2, 77, 2, 82, 2, 86, 2, 88, 2, 89, 247, 189, 10, 65,
4, 230, 223, 2, 72, 247, 189, 10, 65, 6, 194, 223, 2, 76, 2, 78, 247,
189, 10, 65, 12, 58, 67, 22, 84, 202, 222, 2, 75, 2, 76, 247, 189, 10,
65, 2, 219, 222, 2, 72, 4, 198, 222, 2, 72, 3, 83, 14, 42, 75, 50, 83,
38, 84, 167, 175, 13, 72, 4, 26, 72, 231, 130, 13, 69, 2, 175, 162, 6,
65, 4, 154, 131, 12, 85, 147, 189, 1, 79, 4, 142, 130, 12, 85, 215, 18,
65, 14, 52, 7, 72, 85, 78, 68, 82, 69, 68, 38, 84, 79, 77, 4, 108, 2, 32,
77, 195, 190, 13, 83, 8, 24, 2, 69, 78, 51, 82, 6, 26, 32, 215, 190, 13,
83, 4, 18, 66, 35, 84, 2, 253, 213, 4, 3, 73, 76, 76, 2, 11, 72, 2, 213,
251, 9, 3, 79, 85, 83, 72, 188, 1, 4, 67, 73, 77, 32, 246, 2, 72, 32, 3,
73, 66, 32, 22, 77, 86, 78, 50, 84, 124, 4, 86, 79, 83, 32, 198, 1, 88,
208, 1, 6, 90, 87, 74, 32, 84, 72, 142, 178, 1, 76, 223, 227, 4, 65, 16,
174, 1, 67, 84, 5, 78, 82, 69, 83, 32, 22, 84, 164, 252, 11, 7, 80, 85,
66, 32, 68, 65, 87, 153, 189, 1, 16, 72, 65, 73, 83, 32, 76, 85, 83, 32,
78, 84, 79, 71, 32, 78, 84, 4, 48, 7, 85, 65, 77, 32, 84, 83, 72, 255, 3,
72, 2, 11, 79, 2, 175, 187, 2, 79, 2, 195, 184, 1, 84, 6, 52, 3, 88, 87,
86, 161, 151, 10, 4, 83, 79, 86, 32, 5, 209, 155, 6, 4, 32, 67, 72, 87,
4, 190, 72, 78, 171, 221, 12, 76, 2, 143, 252, 11, 89, 6, 40, 4, 69, 69,
74, 32, 135, 251, 12, 85, 4, 128, 3, 2, 84, 83, 57, 2, 83, 85, 4, 26, 84,
187, 252, 8, 81, 2, 135, 185, 2, 85, 6, 196, 1, 7, 88, 72, 69, 69, 74,
32, 67, 224, 178, 8, 12, 72, 73, 82, 68, 45, 83, 84, 65, 71, 69, 32, 72,
251, 222, 4, 65, 14, 54, 70, 22, 83, 30, 84, 166, 69, 76, 195, 251, 7,
78, 2, 167, 164, 13, 69, 2, 173, 152, 6, 2, 69, 69, 6, 42, 72, 29, 6, 83,
72, 65, 66, 32, 67, 4, 82, 73, 207, 164, 13, 79, 2, 175, 209, 5, 69, 14,
34, 73, 22, 89, 175, 172, 11, 65, 2, 171, 247, 11, 65, 10, 40, 4, 69, 69,
77, 32, 243, 149, 13, 79, 8, 84, 3, 78, 84, 88, 252, 149, 6, 2, 84, 79,
154, 173, 2, 82, 245, 178, 3, 2, 70, 65, 2, 251, 149, 6, 73, 2, 227, 180,
2, 65, 56, 50, 65, 66, 69, 38, 73, 2, 85, 38, 79, 39, 87, 20, 170, 1, 65,
2, 73, 2, 85, 2, 87, 134, 178, 13, 66, 3, 86, 8, 106, 69, 134, 178, 13,
66, 3, 86, 8, 70, 65, 134, 178, 13, 66, 3, 86, 8, 34, 79, 134, 178, 13,
66, 3, 86, 4, 130, 178, 13, 66, 3, 86, 76, 18, 76, 23, 77, 2, 247, 243,
12, 65, 74, 74, 32, 104, 6, 89, 82, 69, 78, 69, 32, 141, 142, 4, 4, 83,
32, 85, 80, 8, 80, 3, 66, 82, 65, 246, 189, 11, 84, 248, 97, 4, 68, 79,
87, 78, 1, 2, 85, 80, 2, 247, 141, 13, 78, 64, 80, 2, 76, 69, 40, 4, 82,
73, 71, 72, 253, 2, 7, 78, 85, 77, 66, 69, 82, 32, 48, 38, 70, 89, 5, 84,
84, 69, 82, 32, 2, 57, 12, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32,
70, 2, 229, 231, 5, 2, 76, 69, 46, 224, 1, 5, 70, 73, 78, 65, 76, 30, 84,
242, 119, 68, 34, 76, 50, 81, 214, 205, 1, 82, 142, 220, 2, 65, 50, 71,
90, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234, 5, 75, 174, 81, 66, 170,
225, 4, 78, 134, 2, 87, 218, 103, 80, 171, 4, 77, 2, 161, 172, 12, 2, 32,
78, 4, 190, 167, 11, 69, 219, 134, 1, 65, 14, 194, 121, 84, 198, 191, 10,
70, 223, 87, 79, 4, 32, 2, 67, 65, 147, 236, 12, 68, 2, 191, 149, 12, 75,
188, 2, 94, 65, 220, 1, 11, 69, 78, 84, 72, 69, 83, 73, 90, 69, 68, 32,
242, 16, 84, 203, 199, 12, 82, 14, 80, 5, 71, 82, 65, 80, 72, 52, 5, 76,
76, 69, 76, 32, 209, 163, 6, 2, 67, 72, 6, 186, 248, 9, 32, 250, 223, 1,
85, 235, 147, 1, 79, 6, 44, 5, 87, 73, 84, 72, 32, 163, 138, 13, 84, 4,
222, 198, 6, 84, 175, 186, 4, 72, 150, 2, 252, 1, 7, 72, 65, 78, 71, 85,
76, 32, 188, 4, 10, 73, 68, 69, 79, 71, 82, 65, 80, 72, 32, 188, 7, 18,
75, 79, 82, 69, 65, 78, 32, 67, 72, 65, 82, 65, 67, 84, 69, 82, 32, 79,
44, 7, 78, 85, 77, 66, 69, 82, 32, 250, 206, 4, 68, 145, 169, 2, 2, 76,
65, 58, 102, 67, 110, 72, 30, 75, 66, 77, 34, 78, 34, 80, 62, 82, 30, 83,
26, 84, 73, 5, 73, 69, 85, 78, 71, 10, 34, 72, 33, 4, 73, 69, 85, 67, 4,
141, 3, 4, 73, 69, 85, 67, 7, 11, 32, 4, 178, 165, 13, 65, 3, 85, 4, 197,
2, 3, 73, 69, 85, 8, 168, 2, 5, 72, 73, 69, 85, 75, 13, 5, 73, 89, 69,
79, 75, 4, 245, 1, 4, 73, 69, 85, 77, 4, 213, 1, 4, 73, 69, 85, 78, 8,
168, 1, 5, 72, 73, 69, 85, 80, 13, 4, 73, 69, 85, 80, 4, 121, 4, 73, 69,
85, 76, 4, 93, 3, 73, 79, 83, 8, 56, 5, 72, 73, 69, 85, 84, 13, 5, 73,
75, 69, 85, 84, 4, 11, 72, 5, 139, 160, 13, 32, 72, 148, 1, 2, 65, 76,
30, 67, 74, 69, 82, 70, 112, 2, 76, 65, 22, 77, 38, 78, 32, 2, 82, 69,
78, 83, 138, 2, 84, 50, 87, 254, 172, 11, 72, 239, 82, 79, 2, 237, 144,
8, 2, 76, 73, 4, 32, 2, 79, 78, 179, 150, 11, 65, 2, 181, 251, 7, 4, 71,
82, 65, 84, 6, 42, 78, 174, 179, 9, 65, 155, 194, 3, 73, 2, 169, 4, 5,
84, 69, 82, 80, 82, 10, 58, 73, 204, 147, 12, 5, 69, 83, 84, 73, 86, 139,
19, 79, 6, 208, 2, 3, 78, 65, 78, 130, 134, 13, 82, 3, 86, 2, 139, 230,
12, 66, 4, 226, 198, 10, 69, 147, 136, 2, 79, 4, 138, 131, 12, 73, 195,
1, 65, 8, 38, 83, 218, 139, 12, 80, 247, 111, 65, 4, 190, 214, 6, 79,
183, 199, 6, 84, 18, 58, 69, 34, 79, 22, 80, 34, 84, 50, 85, 211, 141,
12, 73, 4, 142, 199, 11, 86, 227, 84, 76, 2, 239, 251, 7, 67, 2, 11, 69,
2, 227, 181, 4, 67, 4, 26, 85, 163, 234, 11, 79, 2, 219, 138, 13, 68, 4,
26, 80, 247, 155, 13, 78, 2, 21, 3, 69, 82, 86, 2, 183, 144, 12, 73, 6,
154, 169, 11, 72, 206, 162, 1, 69, 239, 48, 87, 4, 234, 224, 9, 79, 163,
128, 2, 65, 4, 170, 164, 8, 32, 221, 166, 4, 2, 74, 69, 22, 42, 69, 46,
70, 42, 78, 30, 83, 51, 84, 4, 216, 1, 3, 73, 71, 72, 131, 246, 4, 76, 4,
160, 1, 2, 79, 85, 13, 2, 73, 70, 2, 133, 1, 3, 73, 78, 69, 4, 34, 73,
73, 4, 69, 86, 69, 78, 2, 71, 88, 8, 34, 72, 46, 87, 207, 200, 12, 69, 2,
11, 73, 2, 11, 82, 2, 175, 194, 11, 84, 4, 11, 69, 4, 190, 168, 11, 78,
143, 115, 76, 22, 164, 1, 3, 73, 65, 76, 216, 1, 3, 89, 32, 80, 224, 206,
6, 5, 72, 69, 78, 79, 80, 180, 229, 1, 6, 78, 69, 82, 83, 72, 73, 225,
219, 3, 6, 32, 65, 76, 84, 69, 82, 12, 62, 32, 173, 124, 10, 76, 89, 45,
82, 69, 67, 89, 67, 76, 69, 10, 38, 68, 41, 5, 76, 73, 78, 69, 32, 2,
229, 174, 4, 5, 73, 70, 70, 69, 82, 8, 254, 205, 3, 68, 226, 45, 70, 20,
4, 66, 65, 67, 75, 203, 153, 9, 85, 2, 223, 242, 3, 79, 10, 98, 69, 52,
9, 73, 86, 69, 45, 80, 85, 76, 76, 45, 89, 9, 80, 79, 82, 84, 32, 67, 79,
78, 84, 4, 176, 242, 9, 4, 78, 71, 69, 82, 147, 140, 2, 68, 4, 40, 4, 68,
79, 87, 78, 1, 2, 85, 80, 2, 213, 176, 5, 6, 45, 79, 85, 84, 80, 85, 2,
239, 253, 11, 82, 114, 192, 1, 12, 71, 76, 79, 84, 84, 65, 76, 32, 83,
84, 79, 80, 62, 76, 156, 3, 3, 82, 73, 83, 36, 14, 77, 73, 68, 45, 76,
69, 86, 69, 76, 32, 84, 79, 78, 69, 57, 7, 83, 65, 78, 68, 72, 73, 32, 7,
11, 32, 4, 202, 5, 70, 213, 255, 11, 4, 86, 65, 82, 73, 82, 72, 6, 69,
84, 84, 69, 82, 32, 209, 2, 7, 79, 87, 45, 70, 65, 76, 76, 74, 202, 1,
70, 226, 252, 8, 73, 2, 85, 238, 27, 78, 198, 174, 3, 67, 2, 75, 2, 80,
2, 84, 138, 69, 66, 2, 68, 2, 71, 2, 72, 2, 76, 2, 77, 2, 82, 2, 83, 2,
86, 2, 90, 186, 2, 65, 2, 69, 3, 79, 20, 44, 5, 73, 78, 65, 76, 32, 163,
142, 13, 65, 18, 158, 144, 11, 78, 130, 254, 1, 75, 2, 76, 2, 77, 2, 80,
2, 84, 2, 87, 3, 89, 8, 157, 1, 5, 73, 78, 71, 32, 84, 7, 11, 32, 4, 192,
1, 5, 76, 79, 78, 71, 32, 15, 70, 12, 66, 84, 73, 12, 71, 76, 79, 84, 84,
65, 76, 32, 83, 84, 79, 80, 8, 21, 3, 79, 78, 69, 9, 11, 32, 6, 32, 4,
76, 79, 78, 71, 27, 70, 5, 11, 32, 2, 11, 70, 2, 131, 201, 3, 73, 2, 171,
181, 4, 82, 4, 162, 139, 13, 70, 3, 73, 80, 130, 1, 65, 122, 78, 162, 1,
82, 162, 9, 83, 44, 3, 84, 82, 73, 130, 17, 68, 157, 156, 12, 9, 79, 80,
76, 69, 32, 72, 85, 71, 71, 12, 50, 67, 50, 78, 138, 239, 6, 32, 155,
154, 6, 82, 6, 202, 215, 11, 79, 194, 28, 69, 199, 149, 1, 72, 2, 227,
128, 12, 85, 10, 118, 71, 20, 3, 83, 73, 86, 222, 179, 1, 84, 156, 188,
4, 10, 32, 79, 86, 69, 82, 32, 83, 84, 65, 77, 187, 184, 5, 67, 2, 191,
136, 12, 85, 2, 223, 202, 12, 69, 48, 186, 1, 32, 116, 10, 80, 69, 78,
68, 73, 67, 85, 76, 65, 82, 42, 83, 130, 176, 7, 67, 252, 9, 10, 77, 65,
78, 69, 78, 84, 32, 80, 65, 80, 237, 133, 2, 8, 70, 79, 82, 77, 73, 78,
71, 32, 6, 34, 77, 30, 84, 139, 255, 11, 83, 2, 129, 242, 1, 2, 73, 76,
2, 149, 154, 11, 8, 69, 78, 32, 84, 72, 79, 85, 83, 5, 213, 139, 9, 5,
32, 87, 73, 84, 72, 32, 60, 2, 79, 78, 154, 75, 80, 157, 177, 11, 4, 69,
86, 69, 82, 28, 38, 32, 237, 133, 10, 3, 65, 76, 32, 26, 216, 2, 10, 68,
79, 73, 78, 71, 32, 67, 65, 82, 84, 32, 3, 73, 78, 32, 92, 5, 87, 73, 84,
72, 32, 184, 224, 7, 4, 70, 82, 79, 87, 204, 13, 27, 82, 65, 73, 83, 73,
78, 71, 32, 66, 79, 84, 72, 32, 72, 65, 78, 68, 83, 32, 73, 78, 32, 67,
69, 76, 69, 66, 204, 193, 4, 5, 67, 76, 73, 77, 66, 213, 45, 11, 66, 79,
87, 73, 78, 71, 32, 68, 69, 69, 80, 2, 11, 87, 2, 159, 189, 3, 72, 4,
204, 175, 12, 6, 76, 79, 84, 85, 83, 32, 253, 64, 9, 83, 84, 69, 65, 77,
89, 32, 82, 79, 12, 154, 1, 66, 180, 146, 2, 3, 80, 79, 85, 188, 165, 1,
2, 67, 82, 244, 132, 6, 6, 70, 79, 76, 68, 69, 68, 177, 193, 2, 8, 72,
69, 65, 68, 83, 67, 65, 82, 4, 36, 3, 76, 79, 78, 235, 244, 10, 65, 2,
11, 68, 2, 11, 32, 2, 11, 72, 2, 11, 65, 2, 131, 198, 12, 73, 4, 180,
169, 9, 2, 69, 84, 151, 206, 2, 79, 2, 209, 153, 9, 2, 32, 68, 140, 2,
66, 65, 184, 19, 9, 73, 76, 73, 80, 80, 73, 78, 69, 32, 47, 79, 204, 1,
108, 6, 71, 83, 45, 80, 65, 32, 189, 7, 16, 73, 83, 84, 79, 83, 32, 68,
73, 83, 67, 32, 83, 73, 71, 78, 32, 112, 100, 7, 76, 69, 84, 84, 69, 82,
32, 248, 4, 5, 77, 65, 82, 75, 32, 30, 83, 33, 4, 68, 79, 85, 66, 96,
138, 2, 65, 138, 1, 67, 50, 68, 42, 83, 64, 5, 86, 79, 73, 67, 69, 178,
129, 9, 71, 202, 173, 3, 78, 82, 84, 46, 75, 2, 80, 2, 90, 162, 7, 69,
234, 61, 66, 2, 70, 2, 72, 2, 74, 2, 76, 2, 77, 2, 81, 2, 82, 2, 87, 2,
88, 2, 89, 186, 2, 73, 2, 79, 3, 85, 7, 80, 8, 76, 84, 69, 82, 78, 65,
84, 69, 21, 8, 83, 80, 73, 82, 65, 84, 69, 68, 2, 163, 246, 12, 32, 2,
11, 32, 2, 167, 246, 12, 70, 6, 26, 65, 251, 245, 12, 72, 5, 231, 218, 8,
78, 6, 226, 245, 12, 68, 2, 90, 187, 2, 65, 6, 244, 174, 8, 4, 77, 65,
76, 76, 198, 198, 4, 72, 187, 2, 65, 4, 34, 68, 21, 4, 76, 69, 83, 83, 2,
231, 249, 10, 32, 2, 171, 187, 9, 32, 4, 246, 175, 12, 68, 59, 83, 10,
28, 3, 73, 78, 71, 31, 85, 2, 229, 169, 12, 2, 76, 69, 8, 58, 66, 213,
170, 12, 8, 80, 69, 82, 70, 73, 88, 69, 68, 6, 209, 189, 8, 13, 74, 79,
73, 78, 69, 68, 32, 76, 69, 84, 84, 69, 82, 92, 238, 1, 66, 146, 1, 67,
172, 2, 2, 68, 79, 38, 71, 66, 72, 64, 2, 76, 73, 32, 2, 77, 65, 70, 80,
162, 1, 82, 38, 83, 150, 1, 84, 70, 87, 200, 228, 5, 2, 70, 76, 176, 238,
1, 2, 79, 88, 252, 240, 3, 2, 69, 65, 138, 10, 65, 135, 1, 86, 10, 52, 2,
69, 69, 22, 79, 145, 41, 4, 85, 76, 76, 83, 5, 147, 182, 7, 72, 4, 32, 2,
79, 77, 175, 242, 12, 87, 2, 11, 69, 2, 203, 153, 12, 82, 16, 34, 65, 86,
72, 22, 76, 23, 79, 6, 130, 224, 5, 80, 208, 240, 3, 8, 82, 80, 69, 78,
84, 82, 89, 32, 151, 161, 3, 84, 2, 199, 193, 2, 73, 2, 135, 179, 11, 85,
6, 26, 76, 33, 2, 77, 66, 2, 11, 85, 2, 227, 160, 12, 77, 5, 37, 7, 73,
78, 73, 78, 71, 32, 79, 2, 169, 255, 9, 5, 66, 76, 73, 81, 85, 4, 174,
196, 11, 76, 223, 148, 1, 86, 4, 42, 82, 137, 141, 11, 4, 65, 85, 78, 84,
2, 131, 181, 11, 65, 6, 42, 69, 238, 219, 7, 79, 243, 255, 2, 73, 2, 171,
185, 12, 76, 4, 242, 220, 12, 76, 203, 17, 68, 4, 34, 78, 249, 251, 9, 2,
84, 84, 2, 11, 65, 2, 211, 172, 9, 67, 8, 52, 2, 69, 68, 50, 76, 181,
176, 7, 3, 65, 80, 89, 2, 25, 4, 69, 83, 84, 82, 2, 231, 160, 11, 73, 4,
192, 187, 4, 2, 85, 77, 209, 231, 2, 3, 65, 78, 69, 4, 230, 218, 10, 79,
251, 128, 2, 65, 12, 108, 2, 72, 73, 134, 237, 11, 65, 158, 45, 76, 128,
19, 3, 84, 82, 65, 177, 39, 7, 77, 65, 76, 76, 32, 65, 88, 4, 214, 187,
2, 69, 207, 175, 10, 80, 6, 208, 185, 4, 5, 65, 84, 84, 79, 79, 226, 236,
7, 73, 207, 36, 85, 4, 146, 236, 7, 79, 137, 238, 3, 5, 65, 86, 89, 32,
66, 4, 250, 244, 1, 83, 25, 4, 68, 79, 85, 66, 60, 56, 8, 69, 78, 73, 67,
73, 65, 78, 32, 187, 224, 10, 76, 58, 92, 7, 76, 69, 84, 84, 69, 82, 32,
160, 3, 7, 78, 85, 77, 66, 69, 82, 32, 231, 155, 6, 87, 44, 234, 1, 65,
34, 68, 22, 72, 22, 81, 22, 83, 58, 84, 226, 130, 2, 87, 154, 239, 5, 90,
154, 185, 1, 89, 164, 207, 1, 2, 82, 79, 184, 95, 3, 71, 65, 77, 162, 10,
75, 130, 1, 78, 144, 58, 3, 76, 65, 77, 138, 17, 66, 198, 30, 80, 171, 4,
77, 4, 170, 229, 11, 76, 199, 49, 73, 2, 199, 192, 3, 69, 4, 195, 253, 6,
69, 2, 227, 228, 11, 79, 6, 254, 210, 10, 65, 162, 147, 1, 72, 189, 124,
2, 69, 77, 4, 210, 192, 12, 65, 191, 8, 69, 12, 202, 50, 84, 203, 170, 4,
79, 40, 104, 2, 67, 75, 66, 71, 62, 76, 90, 78, 178, 1, 83, 28, 7, 84,
67, 72, 70, 79, 82, 75, 243, 224, 12, 69, 5, 17, 2, 85, 80, 2, 21, 3, 32,
84, 82, 2, 223, 177, 11, 85, 7, 11, 32, 4, 26, 78, 163, 166, 12, 70, 2,
131, 216, 11, 79, 6, 52, 4, 69, 32, 79, 70, 246, 92, 67, 235, 133, 12,
76, 2, 11, 32, 2, 215, 151, 10, 80, 14, 68, 2, 67, 72, 46, 69, 194, 169,
4, 87, 206, 176, 7, 75, 243, 98, 65, 4, 196, 160, 3, 2, 69, 68, 231, 176,
8, 73, 4, 28, 2, 32, 68, 239, 73, 65, 2, 253, 134, 5, 2, 69, 67, 4, 134,
203, 11, 67, 123, 84, 5, 245, 139, 10, 10, 32, 87, 73, 84, 72, 32, 84,
69, 69, 32, 218, 1, 38, 65, 230, 9, 85, 167, 214, 12, 68, 176, 1, 78, 67,
128, 1, 12, 78, 67, 75, 32, 67, 79, 78, 83, 84, 65, 78, 84, 83, 89, 6,
44, 5, 69, 32, 79, 70, 32, 151, 198, 11, 65, 4, 56, 6, 73, 78, 84, 69,
82, 69, 173, 137, 12, 2, 87, 79, 2, 251, 146, 7, 83, 5, 45, 9, 32, 79,
86, 69, 82, 32, 84, 87, 79, 2, 11, 32, 2, 159, 202, 12, 80, 166, 1, 80,
7, 71, 82, 79, 85, 78, 68, 32, 29, 9, 73, 78, 71, 32, 67, 65, 82, 68, 32,
2, 173, 171, 4, 2, 83, 76, 164, 1, 182, 1, 66, 44, 3, 82, 69, 68, 0, 5,
87, 72, 73, 84, 69, 42, 70, 74, 75, 38, 69, 34, 83, 36, 3, 81, 85, 69,
14, 84, 92, 2, 65, 67, 0, 3, 78, 73, 78, 13, 4, 74, 65, 67, 75, 4, 40, 4,
76, 65, 67, 75, 135, 169, 11, 65, 2, 17, 2, 32, 74, 2, 219, 237, 1, 79,
18, 30, 79, 249, 1, 2, 73, 86, 10, 128, 2, 2, 85, 82, 239, 204, 11, 79,
16, 34, 78, 185, 1, 3, 73, 78, 71, 8, 181, 1, 4, 73, 71, 72, 84, 16, 32,
2, 69, 86, 117, 2, 73, 88, 8, 91, 69, 66, 78, 69, 12, 3, 72, 82, 69, 12,
2, 87, 79, 161, 1, 5, 82, 85, 77, 80, 45, 8, 23, 78, 8, 11, 69, 8, 25, 4,
32, 79, 70, 32, 8, 88, 3, 67, 76, 85, 20, 3, 83, 80, 65, 250, 145, 9, 72,
137, 3, 5, 68, 73, 65, 77, 79, 2, 231, 153, 12, 66, 2, 171, 193, 11, 68,
42, 90, 50, 190, 146, 10, 49, 134, 196, 2, 51, 2, 52, 2, 53, 2, 54, 2,
55, 2, 56, 3, 57, 7, 190, 214, 12, 48, 3, 49, 41, 46, 83, 160, 4, 2, 84,
79, 175, 128, 9, 78, 26, 52, 5, 32, 83, 73, 71, 78, 141, 163, 9, 2, 45,
77, 25, 11, 32, 22, 64, 3, 73, 78, 32, 124, 5, 87, 73, 84, 72, 32, 215,
255, 3, 65, 6, 34, 76, 22, 82, 195, 173, 11, 84, 2, 41, 2, 69, 70, 2, 21,
3, 73, 71, 72, 2, 233, 255, 10, 6, 84, 32, 72, 65, 76, 70, 14, 162, 1,
68, 34, 83, 140, 176, 10, 4, 84, 73, 76, 68, 152, 123, 5, 66, 76, 65, 67,
75, 201, 38, 16, 67, 73, 82, 67, 85, 77, 70, 76, 69, 88, 32, 65, 67, 67,
69, 78, 2, 11, 79, 2, 167, 161, 10, 84, 4, 54, 77, 173, 181, 5, 7, 85,
66, 83, 67, 82, 73, 80, 2, 197, 170, 9, 3, 65, 76, 76, 11, 33, 6, 32, 70,
79, 82, 77, 32, 8, 162, 222, 10, 70, 71, 84, 2, 157, 152, 12, 8, 32, 84,
82, 65, 78, 83, 73, 83, 58, 232, 1, 5, 76, 73, 67, 69, 32, 122, 80, 140,
1, 11, 82, 84, 65, 66, 76, 69, 32, 83, 84, 69, 82, 22, 83, 158, 1, 84,
146, 1, 85, 196, 1, 4, 87, 69, 82, 32, 210, 142, 7, 79, 157, 129, 5, 11,
67, 75, 69, 84, 32, 67, 65, 76, 67, 85, 76, 6, 52, 3, 67, 65, 82, 217,
253, 3, 4, 79, 70, 70, 73, 5, 217, 177, 10, 11, 83, 32, 82, 69, 86, 79,
76, 86, 73, 78, 71, 6, 76, 13, 32, 68, 73, 82, 69, 67, 84, 73, 79, 78,
65, 76, 32, 159, 215, 1, 67, 4, 158, 128, 1, 73, 169, 190, 6, 6, 70, 79,
82, 77, 65, 84, 2, 251, 173, 12, 69, 12, 40, 2, 69, 73, 22, 84, 243, 140,
5, 73, 2, 195, 252, 11, 68, 8, 36, 3, 65, 76, 32, 171, 189, 11, 66, 6,
226, 213, 1, 72, 213, 206, 6, 4, 77, 65, 82, 75, 8, 66, 65, 238, 135, 2,
32, 153, 183, 9, 6, 84, 69, 68, 32, 80, 76, 4, 26, 66, 239, 171, 12, 84,
2, 29, 5, 76, 69, 32, 87, 65, 2, 243, 48, 84, 12, 108, 4, 76, 84, 82, 89,
28, 7, 82, 73, 78, 71, 32, 76, 73, 28, 2, 84, 73, 202, 221, 10, 78, 179,
234, 1, 67, 2, 213, 131, 12, 2, 32, 76, 2, 205, 179, 5, 2, 81, 85, 4,
149, 223, 10, 2, 78, 71, 8, 24, 2, 79, 78, 47, 83, 4, 136, 179, 11, 4,
45, 79, 70, 70, 15, 32, 4, 156, 152, 9, 3, 76, 69, 69, 231, 154, 2, 89,
140, 1, 74, 69, 162, 10, 73, 230, 2, 79, 237, 221, 9, 6, 65, 89, 69, 82,
32, 66, 102, 132, 1, 6, 71, 78, 65, 78, 84, 32, 66, 83, 252, 191, 5, 4,
67, 69, 68, 69, 192, 207, 1, 5, 86, 73, 79, 85, 83, 241, 32, 2, 84, 90,
6, 42, 87, 202, 193, 8, 80, 143, 184, 2, 77, 2, 199, 199, 7, 79, 70, 176,
1, 27, 69, 78, 84, 65, 84, 73, 79, 78, 32, 70, 79, 82, 77, 32, 70, 79,
82, 32, 86, 69, 82, 84, 73, 67, 65, 76, 32, 129, 216, 8, 10, 67, 82, 73,
80, 84, 73, 79, 78, 32, 84, 68, 198, 1, 67, 22, 69, 46, 72, 50, 73, 94,
76, 188, 1, 6, 82, 73, 71, 72, 84, 32, 192, 2, 6, 87, 65, 86, 89, 32, 76,
178, 156, 4, 83, 252, 217, 4, 9, 84, 87, 79, 32, 68, 79, 84, 32, 76, 139,
114, 81, 4, 191, 190, 2, 79, 6, 158, 158, 6, 88, 182, 227, 2, 77, 3, 78,
2, 173, 154, 9, 7, 79, 82, 73, 90, 79, 78, 84, 4, 49, 10, 68, 69, 79, 71,
82, 65, 80, 72, 73, 67, 4, 11, 32, 4, 218, 235, 9, 67, 35, 70, 22, 40, 4,
69, 70, 84, 32, 143, 214, 10, 79, 20, 112, 6, 87, 72, 73, 84, 69, 32,
142, 1, 66, 42, 68, 186, 100, 67, 166, 7, 65, 222, 203, 7, 80, 238, 7,
83, 39, 84, 4, 162, 2, 67, 255, 99, 76, 22, 110, 66, 42, 68, 36, 6, 87,
72, 73, 84, 69, 32, 150, 100, 67, 166, 7, 65, 222, 203, 7, 80, 238, 7,
83, 39, 84, 2, 145, 101, 6, 76, 65, 67, 75, 32, 76, 2, 197, 107, 5, 79,
85, 66, 76, 69, 6, 74, 67, 17, 14, 76, 69, 78, 84, 73, 67, 85, 76, 65,
82, 32, 66, 82, 65, 2, 227, 99, 79, 4, 246, 234, 11, 67, 177, 29, 2, 75,
67, 2, 187, 210, 10, 79, 22, 46, 78, 156, 1, 2, 86, 65, 231, 164, 12, 77,
10, 34, 84, 133, 211, 6, 2, 67, 69, 6, 26, 32, 53, 2, 69, 82, 2, 21, 3,
83, 67, 82, 2, 205, 193, 10, 2, 69, 69, 5, 17, 2, 32, 73, 2, 223, 235,
11, 67, 10, 60, 5, 67, 89, 32, 77, 69, 29, 6, 84, 69, 32, 85, 83, 69, 2,
213, 171, 7, 2, 83, 83, 8, 26, 32, 231, 180, 8, 45, 4, 134, 166, 10, 84,
139, 121, 79, 14, 98, 74, 30, 80, 90, 83, 156, 34, 5, 72, 73, 66, 73, 84,
173, 245, 8, 6, 66, 73, 78, 71, 32, 67, 2, 213, 167, 5, 2, 69, 67, 6, 64,
6, 79, 82, 84, 73, 79, 78, 137, 157, 11, 4, 69, 82, 84, 89, 5, 183, 215,
5, 65, 2, 173, 250, 10, 4, 69, 82, 80, 73, 60, 76, 14, 65, 76, 84, 69,
82, 32, 80, 65, 72, 76, 65, 86, 73, 32, 215, 5, 89, 58, 172, 1, 15, 70,
79, 85, 82, 32, 68, 79, 84, 83, 32, 87, 73, 84, 72, 32, 32, 7, 76, 69,
84, 84, 69, 82, 32, 230, 2, 78, 154, 32, 83, 1, 8, 84, 85, 82, 78, 69,
68, 32, 83, 4, 246, 242, 10, 67, 247, 114, 68, 36, 166, 1, 65, 22, 68,
34, 76, 22, 77, 50, 87, 254, 169, 4, 71, 90, 90, 34, 83, 66, 89, 198,
207, 1, 72, 234, 5, 75, 174, 81, 66, 170, 225, 4, 78, 134, 2, 84, 219,
103, 80, 2, 223, 170, 4, 76, 2, 11, 65, 2, 227, 210, 6, 76, 2, 251, 170,
4, 65, 2, 25, 4, 69, 77, 45, 81, 2, 255, 128, 6, 79, 2, 37, 7, 65, 87,
45, 65, 89, 73, 78, 2, 149, 205, 1, 2, 45, 82, 14, 33, 6, 85, 77, 66, 69,
82, 32, 14, 42, 84, 202, 170, 4, 79, 191, 236, 2, 70, 8, 42, 87, 250,
191, 10, 72, 207, 162, 1, 69, 4, 182, 194, 10, 69, 239, 239, 1, 79, 2,
243, 132, 12, 67, 18, 252, 1, 4, 78, 67, 84, 85, 94, 82, 56, 19, 84, 32,
76, 73, 84, 84, 69, 82, 32, 73, 78, 32, 73, 84, 83, 32, 80, 76, 65, 178,
151, 1, 83, 132, 42, 20, 66, 76, 73, 67, 32, 65, 68, 68, 82, 69, 83, 83,
32, 76, 79, 85, 68, 83, 80, 69, 166, 237, 10, 49, 3, 50, 4, 164, 222, 10,
9, 83, 32, 69, 76, 69, 86, 65, 84, 85, 129, 147, 1, 5, 65, 84, 73, 79,
78, 4, 32, 2, 80, 76, 155, 152, 12, 83, 2, 175, 167, 11, 69, 2, 11, 67,
2, 135, 153, 11, 69, 40, 98, 65, 180, 6, 6, 69, 83, 84, 73, 79, 78, 254,
136, 6, 79, 229, 143, 5, 5, 73, 78, 67, 85, 78, 30, 104, 2, 68, 82, 240,
4, 9, 84, 69, 82, 78, 73, 79, 78, 32, 73, 48, 4, 82, 84, 69, 82, 143,
132, 11, 79, 24, 56, 4, 65, 78, 84, 32, 157, 4, 5, 85, 80, 76, 69, 32,
20, 44, 6, 85, 80, 80, 69, 82, 32, 131, 2, 76, 16, 56, 4, 76, 69, 70, 84,
249, 1, 5, 82, 73, 71, 72, 84, 11, 29, 5, 32, 65, 78, 68, 32, 8, 108, 6,
76, 79, 87, 69, 82, 32, 53, 17, 85, 80, 80, 69, 82, 32, 82, 73, 71, 72,
84, 32, 65, 78, 68, 32, 76, 4, 192, 1, 5, 76, 69, 70, 84, 32, 159, 254,
11, 82, 4, 11, 79, 4, 11, 87, 4, 213, 254, 11, 2, 69, 82, 7, 65, 14, 32,
65, 78, 68, 32, 76, 79, 87, 69, 82, 32, 76, 69, 70, 4, 11, 84, 5, 11, 32,
2, 21, 3, 65, 78, 68, 2, 17, 2, 32, 76, 2, 17, 2, 79, 87, 2, 137, 213,
10, 2, 69, 82, 4, 22, 73, 239, 37, 80, 2, 177, 228, 8, 7, 78, 84, 69, 71,
82, 65, 76, 2, 17, 2, 32, 78, 2, 159, 222, 10, 79, 6, 34, 32, 161, 197,
5, 2, 69, 68, 4, 162, 139, 5, 69, 175, 218, 6, 77, 220, 9, 114, 65, 142,
8, 69, 220, 27, 6, 72, 73, 78, 79, 67, 69, 34, 73, 250, 87, 76, 46, 79,
198, 19, 85, 243, 149, 11, 83, 62, 110, 67, 104, 2, 68, 73, 130, 1, 73,
162, 5, 84, 172, 246, 7, 4, 66, 66, 73, 84, 214, 238, 3, 90, 235, 56, 77,
6, 40, 4, 73, 78, 71, 32, 159, 250, 8, 67, 4, 192, 208, 10, 7, 77, 79,
84, 79, 82, 67, 89, 199, 48, 67, 8, 66, 79, 141, 180, 8, 10, 67, 65, 76,
32, 83, 89, 77, 66, 79, 76, 7, 168, 184, 6, 4, 65, 67, 84, 73, 229, 181,
4, 2, 32, 66, 36, 60, 5, 76, 87, 65, 89, 32, 46, 78, 21, 4, 83, 69, 68,
32, 4, 240, 131, 9, 2, 84, 82, 155, 251, 1, 67, 5, 243, 133, 11, 66, 28,
152, 1, 3, 68, 79, 84, 34, 73, 48, 4, 72, 65, 78, 68, 182, 1, 77, 38, 83,
166, 177, 7, 70, 206, 151, 2, 67, 161, 197, 1, 7, 66, 65, 67, 75, 32, 79,
70, 5, 29, 5, 84, 69, 68, 32, 73, 2, 209, 40, 8, 78, 84, 69, 82, 80, 79,
76, 65, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 214, 27, 70, 245, 194, 2,
28, 80, 65, 82, 84, 32, 66, 69, 84, 87, 69, 69, 78, 32, 77, 73, 68, 68,
76, 69, 32, 65, 78, 68, 32, 82, 73, 78, 71, 6, 230, 151, 11, 67, 2, 68,
3, 82, 4, 60, 9, 77, 65, 76, 76, 32, 76, 69, 70, 84, 179, 251, 10, 81, 2,
229, 158, 8, 2, 32, 83, 5, 243, 254, 11, 73, 250, 1, 226, 1, 67, 132, 4,
2, 68, 32, 64, 2, 71, 73, 144, 1, 5, 74, 65, 78, 71, 32, 202, 4, 76, 32,
8, 77, 73, 78, 68, 69, 82, 32, 82, 34, 80, 106, 83, 136, 1, 5, 84, 85,
82, 78, 32, 42, 86, 209, 199, 1, 5, 70, 69, 82, 69, 78, 26, 114, 69, 60,
3, 89, 67, 76, 146, 209, 5, 79, 205, 155, 4, 13, 82, 69, 65, 84, 73, 79,
78, 65, 76, 32, 86, 69, 72, 4, 38, 73, 209, 198, 10, 3, 80, 84, 65, 2,
163, 254, 11, 80, 18, 78, 69, 53, 15, 73, 78, 71, 32, 83, 89, 77, 66, 79,
76, 32, 70, 79, 82, 32, 2, 29, 5, 68, 32, 80, 65, 80, 2, 211, 179, 10,
69, 16, 100, 5, 84, 89, 80, 69, 45, 173, 130, 5, 14, 71, 69, 78, 69, 82,
73, 67, 32, 77, 65, 84, 69, 82, 73, 14, 58, 49, 2, 50, 2, 51, 2, 52, 2,
53, 2, 54, 3, 55, 2, 133, 210, 5, 6, 32, 80, 76, 65, 83, 84, 4, 42, 65,
205, 255, 4, 4, 71, 73, 70, 84, 2, 231, 190, 3, 80, 54, 120, 4, 83, 84,
69, 82, 213, 244, 5, 20, 79, 78, 65, 76, 32, 73, 78, 68, 73, 67, 65, 84,
79, 82, 32, 83, 89, 77, 66, 79, 2, 235, 170, 10, 69, 74, 128, 1, 15, 67,
79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 44, 7, 76, 69,
84, 84, 69, 82, 32, 226, 1, 83, 35, 86, 8, 146, 151, 10, 78, 130, 254, 1,
72, 3, 82, 46, 162, 1, 78, 186, 253, 7, 77, 214, 147, 4, 66, 2, 67, 2,
68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, 80, 2, 82, 2, 83, 2, 84, 2, 87,
2, 89, 187, 2, 65, 12, 154, 254, 7, 89, 166, 31, 71, 206, 243, 3, 68,
187, 2, 65, 2, 11, 69, 2, 211, 169, 11, 67, 18, 64, 10, 79, 87, 69, 76,
32, 83, 73, 71, 78, 32, 139, 214, 9, 73, 16, 54, 69, 182, 209, 11, 65,
186, 64, 73, 2, 79, 3, 85, 7, 234, 145, 12, 65, 3, 85, 2, 217, 254, 10,
3, 73, 69, 86, 2, 193, 193, 11, 3, 73, 66, 66, 2, 41, 8, 76, 65, 67, 69,
77, 69, 78, 84, 2, 17, 2, 32, 67, 2, 193, 214, 10, 5, 72, 65, 82, 65, 67,
8, 32, 2, 84, 82, 231, 254, 6, 80, 6, 152, 138, 8, 16, 73, 67, 84, 69,
68, 32, 76, 69, 70, 84, 32, 69, 78, 84, 82, 89, 135, 245, 3, 79, 6, 242,
249, 10, 83, 194, 106, 76, 31, 82, 70, 64, 4, 69, 82, 83, 69, 197, 246,
3, 6, 79, 76, 86, 73, 78, 71, 68, 30, 32, 169, 3, 2, 68, 32, 20, 184, 1,
6, 67, 72, 69, 67, 75, 69, 28, 2, 76, 73, 108, 7, 83, 79, 76, 73, 68, 85,
83, 232, 229, 7, 16, 84, 73, 76, 68, 69, 32, 79, 80, 69, 82, 65, 84, 79,
82, 32, 65, 195, 253, 2, 73, 2, 197, 243, 10, 2, 82, 32, 4, 152, 212, 3,
18, 71, 72, 84, 32, 70, 79, 85, 82, 32, 80, 79, 73, 78, 84, 69, 68, 32,
80, 135, 237, 1, 78, 9, 11, 32, 6, 240, 166, 5, 9, 80, 82, 69, 67, 69,
68, 73, 78, 71, 166, 161, 3, 79, 251, 154, 1, 87, 48, 248, 2, 5, 65, 78,
71, 76, 69, 20, 7, 68, 79, 85, 66, 76, 69, 32, 118, 78, 20, 5, 70, 79,
82, 75, 69, 70, 80, 82, 82, 214, 1, 83, 106, 84, 236, 238, 6, 30, 72, 65,
78, 68, 32, 87, 73, 84, 72, 32, 77, 73, 68, 68, 76, 69, 32, 70, 73, 78,
71, 69, 82, 32, 69, 88, 84, 69, 78, 68, 198, 190, 2, 67, 114, 81, 180,
102, 6, 69, 77, 80, 84, 89, 32, 253, 93, 7, 86, 73, 67, 84, 79, 82, 89,
5, 247, 231, 3, 32, 6, 40, 3, 80, 82, 73, 41, 3, 83, 84, 82, 4, 17, 2,
77, 69, 5, 195, 184, 3, 32, 2, 29, 5, 79, 75, 69, 32, 78, 2, 155, 187, 6,
79, 2, 49, 10, 68, 32, 80, 65, 82, 65, 71, 82, 65, 80, 2, 179, 4, 72, 4,
36, 3, 73, 76, 67, 239, 235, 10, 82, 2, 11, 82, 2, 217, 254, 10, 2, 79,
87, 6, 156, 1, 17, 65, 73, 83, 69, 68, 32, 72, 65, 78, 68, 32, 87, 73,
84, 72, 32, 70, 148, 107, 8, 79, 84, 65, 84, 69, 68, 32, 70, 253, 176, 6,
4, 73, 71, 72, 84, 2, 209, 112, 9, 73, 78, 71, 69, 82, 83, 32, 83, 80, 4,
156, 134, 1, 17, 65, 78, 83, 45, 83, 69, 82, 73, 70, 32, 67, 65, 80, 73,
84, 65, 76, 191, 174, 7, 69, 10, 88, 4, 73, 76, 68, 69, 28, 7, 82, 73,
80, 76, 69, 32, 80, 225, 160, 7, 3, 72, 85, 77, 5, 237, 235, 4, 2, 32,
69, 2, 143, 232, 10, 82, 2, 11, 82, 2, 143, 196, 11, 79, 147, 4, 228, 1,
4, 66, 66, 79, 78, 152, 1, 3, 67, 69, 32, 60, 3, 71, 72, 84, 188, 81, 2,
78, 71, 252, 1, 23, 83, 73, 78, 71, 32, 68, 73, 65, 71, 79, 78, 65, 76,
32, 67, 82, 79, 83, 83, 73, 78, 71, 32, 198, 222, 5, 65, 227, 165, 4, 70,
19, 37, 7, 32, 65, 82, 82, 79, 87, 32, 16, 88, 3, 76, 69, 70, 0, 4, 82,
73, 71, 72, 178, 197, 4, 85, 161, 142, 7, 3, 68, 79, 87, 4, 207, 252, 1,
84, 4, 26, 67, 135, 244, 9, 66, 2, 157, 145, 1, 3, 82, 65, 67, 224, 3,
110, 32, 190, 36, 45, 152, 12, 11, 72, 65, 78, 68, 32, 73, 78, 84, 69,
82, 73, 29, 6, 87, 65, 82, 68, 83, 32, 202, 1, 166, 2, 65, 132, 6, 2, 66,
76, 62, 67, 184, 1, 2, 68, 79, 242, 1, 70, 60, 2, 72, 65, 176, 5, 13, 74,
85, 83, 84, 73, 70, 73, 69, 68, 32, 76, 69, 70, 20, 2, 76, 79, 66, 78,
82, 79, 122, 80, 148, 1, 2, 82, 65, 58, 83, 154, 6, 84, 160, 5, 9, 86,
69, 82, 84, 73, 67, 65, 76, 32, 147, 1, 87, 28, 22, 78, 163, 4, 82, 22,
24, 2, 68, 32, 39, 71, 4, 170, 50, 76, 21, 3, 85, 80, 80, 18, 26, 69, 17,
2, 76, 69, 2, 203, 26, 82, 17, 11, 32, 14, 154, 1, 66, 44, 8, 68, 79, 84,
84, 69, 68, 32, 83, 2, 83, 112, 5, 87, 73, 84, 72, 32, 189, 212, 10, 12,
86, 65, 82, 73, 65, 78, 84, 32, 87, 73, 84, 72, 4, 173, 210, 10, 6, 82,
65, 67, 75, 69, 84, 2, 37, 7, 85, 66, 83, 84, 73, 84, 85, 2, 25, 4, 84,
73, 79, 78, 2, 21, 3, 32, 77, 65, 2, 171, 138, 1, 82, 4, 68, 11, 68, 79,
87, 78, 87, 65, 82, 68, 83, 32, 90, 139, 247, 8, 65, 2, 141, 218, 10, 5,
73, 71, 90, 65, 71, 6, 18, 67, 79, 82, 2, 41, 8, 32, 71, 82, 69, 65, 84,
69, 82, 2, 249, 24, 4, 45, 84, 72, 65, 4, 41, 8, 79, 87, 32, 87, 73, 84,
72, 32, 4, 144, 234, 7, 7, 67, 73, 82, 67, 76, 69, 68, 207, 182, 2, 83,
4, 25, 4, 65, 67, 75, 32, 4, 130, 27, 76, 223, 218, 7, 84, 12, 38, 85,
166, 26, 79, 243, 235, 2, 69, 8, 53, 11, 82, 76, 89, 32, 66, 82, 65, 67,
75, 69, 84, 9, 11, 32, 6, 44, 4, 77, 73, 68, 68, 250, 10, 76, 27, 85, 2,
221, 186, 10, 2, 76, 69, 12, 38, 84, 41, 5, 85, 66, 76, 69, 32, 2, 137,
17, 6, 84, 69, 68, 32, 83, 85, 10, 50, 65, 94, 87, 214, 162, 3, 81, 199,
199, 4, 80, 4, 162, 31, 78, 173, 161, 3, 15, 82, 82, 79, 87, 32, 87, 73,
84, 72, 32, 82, 79, 85, 78, 68, 2, 139, 24, 73, 6, 26, 73, 155, 131, 3,
76, 4, 238, 215, 8, 86, 191, 97, 83, 28, 32, 3, 76, 70, 32, 187, 4, 78,
26, 128, 1, 8, 65, 78, 68, 32, 76, 69, 70, 84, 62, 66, 90, 70, 82, 72,
50, 82, 58, 84, 70, 87, 246, 13, 76, 22, 85, 175, 227, 8, 77, 2, 29, 5,
32, 72, 65, 76, 70, 2, 201, 217, 8, 2, 32, 87, 6, 11, 76, 6, 40, 4, 65,
67, 75, 32, 183, 188, 10, 79, 4, 158, 154, 10, 67, 207, 11, 83, 4, 58,
79, 237, 156, 3, 8, 76, 89, 73, 78, 71, 32, 83, 65, 2, 131, 202, 9, 76,
2, 209, 216, 8, 7, 79, 82, 73, 90, 79, 78, 84, 2, 33, 6, 85, 78, 78, 73,
78, 71, 2, 203, 238, 6, 32, 2, 153, 173, 5, 12, 82, 73, 80, 76, 69, 32,
68, 65, 83, 72, 32, 72, 2, 209, 167, 10, 4, 72, 73, 84, 69, 2, 173, 152,
1, 16, 68, 32, 84, 69, 76, 69, 80, 72, 79, 78, 69, 32, 82, 69, 67, 69, 4,
187, 231, 7, 84, 2, 145, 152, 11, 11, 87, 32, 80, 65, 82, 65, 80, 72, 82,
65, 83, 2, 177, 4, 16, 79, 82, 77, 65, 76, 32, 70, 65, 67, 84, 79, 82,
32, 83, 69, 77, 8, 74, 85, 166, 221, 8, 78, 225, 189, 1, 8, 80, 69, 78,
32, 83, 81, 85, 65, 2, 221, 233, 10, 6, 84, 69, 82, 32, 74, 79, 8, 49,
10, 65, 82, 69, 78, 84, 72, 69, 83, 73, 83, 9, 11, 32, 6, 34, 76, 26, 85,
255, 196, 9, 69, 2, 157, 37, 2, 79, 87, 2, 133, 37, 2, 80, 80, 2, 217,
10, 10, 73, 83, 69, 68, 32, 79, 77, 73, 83, 83, 40, 62, 45, 70, 69, 78,
73, 68, 2, 80, 69, 126, 81, 227, 2, 85, 2, 173, 128, 8, 12, 83, 72, 65,
80, 69, 68, 32, 66, 65, 71, 32, 68, 4, 26, 77, 191, 236, 8, 86, 2, 217,
212, 10, 7, 73, 68, 73, 82, 69, 67, 84, 4, 210, 150, 3, 78, 169, 252, 7,
8, 68, 69, 87, 65, 89, 83, 32, 85, 8, 32, 4, 65, 75, 69, 82, 67, 69, 7,
33, 6, 32, 87, 73, 84, 72, 32, 4, 246, 252, 3, 79, 55, 84, 2, 137, 5, 2,
67, 72, 20, 57, 12, 85, 65, 82, 69, 32, 66, 82, 65, 67, 75, 69, 84, 21,
11, 32, 18, 84, 3, 76, 79, 87, 0, 3, 85, 80, 80, 28, 5, 87, 73, 84, 72,
32, 227, 191, 9, 69, 2, 245, 230, 3, 2, 69, 82, 12, 96, 8, 84, 73, 67,
75, 32, 73, 78, 32, 230, 6, 81, 166, 236, 7, 85, 134, 126, 68, 135, 193,
2, 83, 4, 244, 229, 3, 6, 66, 79, 84, 84, 79, 77, 1, 3, 84, 79, 80, 2,
165, 4, 6, 66, 83, 84, 73, 84, 85, 26, 54, 72, 130, 3, 82, 130, 223, 7,
79, 235, 204, 2, 65, 14, 62, 73, 116, 5, 79, 85, 71, 72, 84, 45, 4, 82,
69, 69, 32, 4, 21, 3, 82, 68, 32, 4, 68, 4, 73, 78, 68, 85, 221, 211, 1,
7, 87, 72, 73, 84, 69, 32, 82, 2, 215, 166, 11, 67, 2, 11, 32, 2, 213,
136, 3, 3, 66, 85, 66, 8, 60, 9, 81, 85, 65, 82, 84, 69, 82, 83, 32, 151,
230, 8, 69, 6, 34, 76, 22, 85, 139, 236, 8, 66, 2, 37, 2, 79, 87, 2, 17,
2, 80, 80, 2, 227, 230, 8, 69, 8, 34, 65, 89, 4, 73, 65, 78, 71, 2, 33,
6, 78, 83, 80, 79, 83, 73, 2, 11, 84, 2, 17, 2, 73, 79, 2, 147, 138, 11,
78, 6, 32, 2, 76, 69, 159, 229, 8, 85, 5, 41, 8, 32, 65, 66, 79, 86, 69,
32, 76, 2, 181, 178, 9, 2, 69, 70, 6, 18, 66, 95, 82, 4, 68, 9, 65, 82,
32, 87, 73, 84, 72, 32, 81, 213, 191, 10, 2, 79, 88, 2, 211, 223, 8, 85,
2, 189, 188, 9, 3, 85, 76, 69, 14, 22, 72, 203, 1, 73, 12, 25, 4, 73, 84,
69, 32, 12, 54, 67, 54, 76, 206, 210, 7, 80, 238, 7, 83, 39, 84, 4, 26,
79, 163, 207, 7, 85, 2, 65, 3, 82, 78, 69, 2, 41, 8, 69, 78, 84, 73, 67,
85, 76, 65, 2, 183, 134, 11, 82, 2, 225, 199, 6, 6, 71, 71, 76, 89, 32,
70, 62, 118, 70, 226, 2, 72, 128, 1, 9, 80, 79, 73, 78, 84, 73, 78, 71,
32, 214, 4, 83, 197, 1, 6, 84, 79, 45, 76, 69, 70, 18, 33, 6, 65, 67, 73,
78, 71, 32, 18, 116, 14, 65, 82, 77, 69, 78, 73, 65, 78, 32, 69, 84, 69,
82, 78, 20, 4, 66, 65, 83, 83, 16, 3, 70, 73, 83, 87, 83, 2, 255, 159, 8,
73, 2, 175, 43, 73, 6, 26, 72, 151, 214, 11, 84, 5, 11, 32, 2, 233, 176,
8, 6, 87, 73, 84, 72, 32, 79, 8, 140, 208, 3, 10, 86, 65, 83, 84, 73, 32,
83, 73, 71, 78, 195, 223, 4, 78, 2, 81, 18, 65, 78, 68, 69, 68, 32, 73,
78, 84, 69, 82, 76, 65, 67, 69, 68, 32, 80, 2, 21, 3, 69, 78, 84, 2, 251,
150, 10, 65, 30, 90, 65, 30, 67, 94, 68, 58, 77, 58, 82, 182, 1, 83, 74,
84, 210, 172, 8, 69, 179, 124, 71, 4, 90, 78, 159, 175, 8, 84, 2, 29, 5,
85, 82, 86, 69, 68, 2, 17, 2, 32, 65, 2, 11, 78, 2, 217, 255, 10, 2, 71,
76, 4, 136, 131, 3, 5, 79, 85, 66, 76, 69, 179, 188, 6, 73, 2, 165, 184,
10, 9, 65, 71, 78, 73, 70, 89, 73, 78, 71, 10, 38, 79, 154, 178, 9, 65,
235, 29, 73, 6, 92, 5, 67, 75, 69, 84, 32, 213, 177, 9, 12, 76, 76, 69,
82, 32, 67, 79, 65, 83, 84, 69, 82, 4, 176, 43, 3, 66, 79, 79, 143, 208,
10, 83, 2, 11, 84, 2, 21, 3, 73, 67, 75, 2, 185, 187, 6, 4, 32, 70, 73,
71, 2, 239, 234, 7, 65, 4, 46, 72, 85, 7, 73, 68, 69, 32, 65, 82, 67, 2,
17, 2, 65, 68, 2, 17, 2, 69, 68, 2, 209, 172, 10, 6, 32, 87, 72, 73, 84,
69, 2, 11, 32, 2, 201, 239, 8, 8, 67, 76, 79, 67, 75, 87, 73, 83, 8, 17,
2, 84, 32, 8, 86, 73, 40, 4, 79, 86, 69, 82, 176, 134, 5, 5, 69, 77, 66,
69, 68, 139, 133, 6, 77, 2, 17, 2, 83, 79, 2, 131, 135, 1, 76, 2, 135,
155, 3, 82, 2, 141, 187, 10, 2, 79, 82, 214, 1, 160, 1, 5, 65, 82, 82,
79, 87, 130, 9, 66, 86, 68, 210, 1, 70, 122, 72, 178, 6, 76, 26, 79, 34,
80, 50, 82, 70, 83, 94, 84, 206, 8, 87, 202, 197, 8, 67, 47, 81, 75, 26,
32, 195, 147, 9, 45, 70, 94, 65, 170, 2, 70, 110, 84, 184, 1, 5, 87, 73,
84, 72, 32, 129, 160, 1, 4, 79, 86, 69, 82, 12, 40, 5, 66, 79, 86, 69,
32, 143, 1, 78, 10, 70, 82, 216, 163, 1, 5, 83, 72, 79, 82, 84, 222, 194,
3, 65, 55, 84, 4, 37, 7, 69, 86, 69, 82, 83, 69, 32, 4, 138, 230, 4, 65,
55, 84, 2, 61, 13, 68, 32, 85, 80, 80, 69, 82, 32, 65, 78, 68, 32, 76, 2,
17, 2, 79, 87, 2, 129, 213, 8, 2, 69, 82, 6, 25, 4, 82, 79, 77, 32, 6,
36, 3, 66, 65, 82, 187, 213, 8, 68, 5, 189, 1, 6, 32, 84, 79, 32, 66, 76,
10, 56, 7, 72, 82, 79, 85, 71, 72, 32, 65, 3, 79, 32, 66, 6, 224, 224, 4,
3, 83, 85, 80, 234, 207, 4, 71, 247, 149, 2, 88, 4, 26, 76, 139, 141, 11,
65, 2, 153, 247, 9, 3, 65, 67, 75, 40, 140, 1, 6, 67, 79, 82, 78, 69, 82,
26, 68, 98, 76, 86, 80, 30, 83, 38, 84, 138, 210, 8, 77, 38, 78, 122, 69,
150, 153, 1, 72, 171, 165, 1, 86, 2, 209, 18, 2, 32, 68, 4, 11, 79, 4,
40, 4, 84, 84, 69, 68, 203, 219, 7, 85, 2, 17, 2, 32, 83, 2, 163, 177,
11, 84, 6, 26, 79, 231, 210, 8, 65, 4, 26, 87, 251, 194, 11, 79, 2, 157,
201, 3, 2, 69, 82, 2, 193, 145, 9, 2, 76, 85, 6, 146, 211, 8, 77, 203,
191, 2, 84, 10, 154, 16, 73, 171, 3, 65, 8, 58, 65, 204, 11, 5, 79, 84,
84, 79, 77, 187, 199, 8, 76, 2, 145, 2, 2, 67, 75, 14, 48, 6, 79, 85, 66,
76, 69, 32, 167, 225, 8, 65, 12, 40, 5, 65, 82, 82, 79, 87, 211, 18, 68,
11, 26, 32, 143, 137, 9, 45, 6, 26, 87, 167, 215, 8, 70, 4, 25, 4, 73,
84, 72, 32, 4, 186, 143, 11, 86, 79, 83, 4, 40, 4, 82, 79, 78, 84, 195,
210, 8, 73, 2, 193, 209, 8, 14, 45, 84, 73, 76, 84, 69, 68, 32, 83, 72,
65, 68, 79, 87, 30, 26, 65, 251, 213, 8, 69, 26, 48, 6, 82, 80, 79, 79,
78, 32, 131, 248, 10, 78, 24, 80, 10, 87, 73, 84, 72, 32, 66, 65, 82, 66,
32, 197, 152, 1, 4, 79, 86, 69, 82, 22, 44, 4, 68, 79, 87, 78, 173, 1, 2,
85, 80, 10, 26, 32, 231, 219, 8, 87, 8, 76, 8, 65, 66, 79, 86, 69, 32,
76, 69, 18, 66, 166, 211, 8, 70, 179, 5, 84, 2, 227, 2, 70, 2, 253, 222,
4, 7, 69, 76, 79, 87, 32, 76, 79, 12, 26, 32, 187, 218, 8, 87, 10, 60, 6,
65, 66, 79, 86, 69, 32, 154, 210, 8, 70, 179, 5, 84, 6, 22, 76, 155, 1,
82, 4, 32, 2, 69, 70, 187, 221, 4, 79, 2, 213, 144, 2, 24, 84, 87, 65,
82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32, 66,
65, 82, 66, 2, 21, 3, 73, 71, 72, 2, 105, 24, 84, 87, 65, 82, 68, 83, 32,
72, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32, 66, 65, 82, 66, 2,
11, 32, 2, 139, 241, 1, 68, 2, 141, 1, 2, 69, 70, 2, 201, 212, 8, 3, 80,
69, 78, 4, 202, 216, 8, 65, 233, 206, 1, 3, 85, 83, 72, 4, 36, 3, 73, 71,
72, 223, 228, 10, 79, 2, 11, 84, 2, 171, 1, 45, 6, 32, 2, 81, 85, 215,
207, 8, 65, 4, 26, 73, 239, 207, 8, 65, 2, 229, 215, 8, 2, 71, 71, 54,
38, 79, 60, 2, 82, 73, 227, 4, 87, 2, 11, 80, 2, 11, 32, 2, 253, 199, 8,
4, 83, 72, 65, 68, 34, 40, 5, 65, 78, 71, 76, 69, 255, 3, 80, 30, 56, 8,
45, 72, 69, 65, 68, 69, 68, 32, 251, 219, 8, 32, 28, 52, 5, 65, 82, 82,
79, 87, 202, 212, 8, 68, 39, 80, 25, 11, 32, 22, 64, 8, 79, 86, 69, 82,
32, 76, 69, 70, 22, 87, 135, 208, 8, 84, 2, 183, 207, 8, 84, 18, 25, 4,
73, 84, 72, 32, 18, 128, 1, 7, 68, 79, 85, 66, 76, 69, 32, 36, 7, 76, 79,
78, 71, 32, 84, 73, 230, 207, 8, 66, 158, 1, 77, 34, 78, 34, 86, 35, 72,
4, 166, 138, 9, 72, 195, 247, 1, 86, 4, 11, 80, 4, 11, 32, 4, 18, 68, 35,
85, 2, 181, 208, 8, 3, 79, 87, 78, 2, 151, 208, 8, 80, 4, 21, 3, 76, 69,
32, 4, 138, 3, 68, 203, 145, 10, 65, 18, 11, 79, 18, 56, 8, 45, 72, 69,
65, 68, 69, 68, 32, 175, 210, 8, 32, 16, 76, 6, 65, 82, 82, 79, 87, 32,
213, 1, 8, 84, 82, 73, 80, 76, 69, 32, 68, 14, 44, 5, 87, 73, 84, 72, 32,
179, 198, 8, 70, 12, 42, 84, 210, 198, 7, 68, 235, 183, 3, 86, 8, 26, 65,
243, 209, 8, 82, 6, 17, 2, 73, 76, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4,
250, 197, 7, 68, 235, 183, 3, 86, 2, 249, 132, 1, 2, 65, 83, 8, 58, 65,
21, 10, 72, 73, 84, 69, 32, 65, 82, 82, 79, 87, 2, 207, 206, 8, 86, 7,
11, 32, 4, 216, 193, 2, 4, 70, 82, 79, 77, 219, 145, 6, 87, 19, 66, 32,
136, 1, 6, 69, 68, 32, 80, 76, 65, 21, 3, 73, 78, 71, 12, 82, 66, 22, 80,
212, 201, 4, 2, 73, 78, 26, 69, 154, 158, 3, 79, 195, 198, 2, 65, 2, 239,
153, 11, 85, 2, 11, 79, 2, 135, 232, 10, 73, 2, 247, 245, 10, 78, 2, 209,
199, 3, 2, 32, 66, 4, 24, 2, 70, 65, 75, 83, 2, 17, 2, 76, 76, 2, 21, 3,
73, 78, 71, 2, 177, 231, 1, 2, 32, 68, 2, 189, 173, 3, 2, 79, 85, 8, 222,
169, 11, 69, 2, 73, 2, 77, 3, 79, 126, 136, 2, 2, 67, 75, 20, 2, 76, 76,
188, 2, 4, 77, 65, 78, 32, 194, 8, 79, 80, 2, 83, 69, 20, 6, 84, 65, 84,
69, 68, 32, 152, 3, 3, 85, 78, 68, 170, 178, 3, 87, 252, 213, 3, 15, 65,
83, 84, 69, 68, 32, 83, 87, 69, 69, 84, 32, 80, 79, 84, 185, 166, 2, 2,
66, 79, 5, 251, 138, 11, 69, 10, 130, 1, 69, 64, 4, 32, 79, 70, 32, 101,
21, 73, 78, 71, 32, 79, 78, 32, 84, 72, 69, 32, 70, 76, 79, 79, 82, 32,
76, 65, 85, 71, 6, 60, 9, 68, 45, 85, 80, 32, 78, 69, 87, 83, 33, 2, 82,
32, 2, 11, 80, 2, 175, 131, 2, 65, 4, 28, 3, 67, 79, 65, 23, 83, 2, 131,
235, 9, 83, 2, 135, 95, 75, 2, 231, 211, 10, 72, 72, 140, 1, 6, 67, 69,
78, 84, 85, 82, 22, 68, 100, 3, 81, 85, 73, 28, 8, 78, 85, 77, 69, 82,
65, 76, 32, 182, 4, 83, 114, 85, 135, 235, 7, 65, 2, 159, 215, 5, 73, 6,
98, 69, 232, 5, 5, 85, 80, 79, 78, 68, 61, 12, 73, 77, 73, 68, 73, 65,
32, 83, 69, 88, 84, 85, 2, 229, 5, 3, 78, 65, 82, 48, 142, 1, 70, 136, 1,
3, 79, 78, 69, 134, 1, 83, 66, 84, 232, 14, 10, 82, 69, 86, 69, 82, 83,
69, 68, 32, 79, 150, 237, 2, 69, 163, 135, 7, 78, 14, 26, 73, 183, 168,
10, 79, 12, 36, 3, 70, 84, 89, 255, 254, 2, 86, 7, 11, 32, 4, 194, 196,
5, 84, 177, 221, 4, 5, 69, 65, 82, 76, 89, 11, 11, 32, 8, 50, 72, 41, 8,
84, 72, 79, 85, 83, 65, 78, 68, 4, 185, 1, 6, 85, 78, 68, 82, 69, 68, 5,
141, 130, 4, 2, 32, 67, 6, 32, 2, 73, 88, 159, 172, 9, 69, 5, 241, 159,
10, 2, 32, 76, 10, 42, 69, 150, 253, 2, 87, 239, 174, 6, 72, 4, 11, 78,
5, 11, 32, 2, 131, 194, 5, 84, 10, 46, 69, 189, 200, 7, 5, 73, 76, 73,
81, 85, 8, 60, 2, 77, 85, 40, 5, 83, 84, 69, 82, 84, 21, 2, 88, 84, 2,
17, 2, 78, 67, 2, 231, 199, 7, 73, 2, 207, 234, 7, 73, 4, 18, 65, 23, 85,
2, 179, 234, 7, 78, 2, 151, 199, 7, 76, 4, 48, 6, 84, 32, 86, 69, 71, 69,
219, 225, 9, 83, 2, 141, 197, 2, 2, 84, 65, 5, 179, 210, 9, 84, 10, 166,
2, 70, 32, 11, 72, 69, 65, 86, 89, 32, 66, 76, 65, 67, 75, 52, 24, 76,
73, 71, 72, 84, 32, 70, 79, 85, 82, 32, 80, 79, 73, 78, 84, 69, 68, 32,
66, 76, 65, 67, 75, 0, 18, 87, 72, 73, 84, 69, 32, 70, 79, 85, 82, 32,
80, 79, 73, 78, 84, 69, 68, 161, 53, 8, 67, 65, 80, 73, 84, 65, 76, 32,
2, 29, 5, 76, 79, 82, 65, 76, 2, 201, 182, 9, 8, 32, 72, 69, 65, 82, 84,
32, 66, 2, 213, 207, 9, 2, 32, 67, 16, 74, 32, 89, 14, 69, 68, 32, 83,
89, 77, 66, 79, 76, 32, 70, 79, 82, 32, 4, 24, 2, 80, 85, 43, 84, 2, 11,
83, 2, 209, 151, 10, 2, 72, 80, 2, 147, 222, 3, 65, 12, 68, 2, 83, 72,
238, 162, 6, 67, 222, 206, 4, 70, 2, 76, 147, 17, 88, 4, 40, 4, 85, 65,
78, 71, 159, 241, 10, 79, 2, 171, 130, 11, 88, 136, 2, 226, 1, 66, 20, 3,
71, 66, 89, 40, 5, 76, 69, 45, 68, 69, 40, 3, 77, 73, 32, 154, 5, 78,
156, 26, 26, 83, 83, 73, 65, 78, 32, 65, 83, 84, 82, 79, 76, 79, 71, 73,
67, 65, 76, 32, 83, 89, 77, 66, 79, 76, 32, 203, 152, 5, 80, 2, 255, 243,
8, 76, 2, 177, 137, 9, 5, 32, 70, 79, 79, 84, 2, 11, 76, 2, 165, 255, 5,
2, 65, 89, 62, 68, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 102, 78, 171,
198, 2, 68, 8, 40, 4, 79, 78, 69, 32, 187, 175, 9, 84, 6, 34, 84, 250,
139, 9, 72, 47, 81, 2, 167, 141, 9, 72, 36, 33, 6, 85, 77, 66, 69, 82,
32, 36, 76, 5, 69, 73, 71, 72, 84, 38, 70, 92, 2, 78, 73, 22, 79, 18, 83,
83, 84, 4, 158, 137, 3, 32, 231, 135, 8, 89, 8, 18, 73, 35, 79, 4, 130,
2, 86, 235, 158, 9, 70, 4, 136, 2, 2, 85, 82, 195, 158, 9, 82, 4, 77, 2,
78, 69, 2, 167, 1, 78, 8, 40, 4, 69, 86, 69, 78, 1, 2, 73, 88, 4, 206,
135, 3, 32, 159, 246, 7, 84, 10, 34, 72, 50, 87, 223, 190, 10, 69, 4, 32,
2, 82, 69, 199, 158, 9, 73, 2, 39, 69, 4, 26, 79, 183, 158, 9, 69, 2,
187, 134, 3, 32, 182, 1, 32, 3, 73, 67, 32, 147, 25, 78, 178, 1, 220, 1,
6, 66, 69, 76, 71, 84, 72, 20, 4, 67, 82, 79, 83, 20, 7, 76, 69, 84, 84,
69, 82, 32, 210, 22, 83, 24, 6, 77, 85, 76, 84, 73, 80, 216, 196, 7, 5,
65, 82, 76, 65, 85, 161, 202, 1, 7, 84, 86, 73, 77, 65, 68, 85, 2, 135,
166, 9, 79, 2, 235, 197, 7, 83, 166, 1, 202, 4, 65, 110, 67, 98, 68, 126,
69, 82, 70, 222, 1, 71, 104, 2, 72, 65, 50, 73, 220, 1, 5, 74, 69, 82,
65, 78, 34, 75, 58, 76, 234, 1, 79, 128, 1, 13, 82, 65, 73, 68, 79, 32,
82, 65, 68, 32, 82, 69, 73, 34, 83, 176, 2, 16, 66, 69, 82, 75, 65, 78,
65, 78, 32, 66, 69, 79, 82, 67, 32, 66, 144, 1, 12, 78, 65, 85, 68, 73,
90, 32, 78, 89, 68, 32, 78, 110, 84, 194, 1, 87, 128, 91, 7, 85, 82, 85,
90, 32, 85, 82, 196, 189, 2, 10, 77, 65, 78, 78, 65, 90, 32, 77, 65, 78,
168, 63, 13, 80, 69, 82, 84, 72, 79, 32, 80, 69, 79, 82, 84, 72, 206,
199, 3, 89, 158, 214, 3, 81, 2, 86, 2, 88, 3, 90, 8, 222, 4, 69, 174,
185, 6, 67, 0, 4, 78, 83, 85, 90, 189, 186, 3, 9, 76, 71, 73, 90, 32, 69,
79, 76, 72, 11, 46, 69, 30, 65, 245, 152, 7, 3, 87, 69, 79, 4, 26, 65,
211, 133, 11, 78, 2, 191, 219, 9, 76, 11, 84, 6, 79, 84, 84, 69, 68, 45,
193, 231, 3, 9, 65, 71, 65, 90, 32, 68, 65, 69, 71, 6, 226, 132, 11, 76,
2, 78, 3, 80, 11, 136, 76, 7, 72, 87, 65, 90, 32, 69, 72, 218, 255, 9,
65, 206, 55, 84, 63, 78, 12, 120, 13, 82, 65, 78, 75, 83, 32, 67, 65, 83,
75, 69, 84, 32, 145, 180, 7, 11, 69, 72, 85, 32, 70, 69, 79, 72, 32, 70,
69, 10, 46, 65, 234, 196, 10, 73, 2, 79, 207, 60, 69, 4, 26, 69, 171,
130, 11, 67, 2, 151, 216, 9, 83, 9, 26, 69, 159, 201, 10, 65, 4, 52, 7,
66, 79, 32, 71, 89, 70, 85, 195, 129, 11, 82, 2, 235, 128, 11, 32, 4,
236, 8, 2, 69, 71, 13, 4, 71, 76, 65, 90, 12, 156, 1, 2, 78, 71, 20, 9,
83, 65, 90, 32, 73, 83, 32, 73, 83, 20, 5, 87, 65, 90, 32, 69, 216, 198,
10, 10, 67, 69, 76, 65, 78, 68, 73, 67, 45, 89, 3, 79, 5, 199, 211, 6,
87, 2, 183, 191, 10, 83, 2, 163, 254, 10, 79, 2, 11, 32, 2, 147, 255, 10,
74, 7, 21, 3, 65, 85, 78, 4, 206, 251, 10, 32, 155, 3, 65, 12, 120, 15,
65, 85, 75, 65, 90, 32, 76, 65, 71, 85, 32, 76, 79, 71, 82, 21, 11, 79,
78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 2, 251, 241, 9, 32, 10, 64, 3,
65, 82, 32, 158, 4, 72, 62, 77, 66, 79, 131, 191, 10, 89, 2, 159, 230,
10, 65, 15, 150, 5, 83, 0, 12, 84, 72, 65, 76, 65, 78, 32, 69, 84, 72,
69, 76, 188, 247, 10, 4, 80, 69, 78, 45, 14, 69, 2, 78, 3, 79, 2, 11, 68,
2, 247, 194, 10, 32, 26, 150, 1, 72, 244, 2, 18, 73, 71, 69, 76, 32, 76,
79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 83, 208, 253, 6, 5, 79, 87,
73, 76, 79, 203, 173, 2, 84, 21, 45, 9, 79, 82, 84, 45, 84, 87, 73, 71,
45, 18, 102, 66, 58, 72, 62, 77, 30, 78, 38, 79, 42, 83, 186, 1, 84, 128,
173, 6, 2, 65, 82, 163, 144, 4, 89, 2, 33, 6, 74, 65, 82, 75, 65, 78, 2,
243, 186, 9, 32, 2, 25, 4, 65, 71, 65, 76, 2, 11, 76, 2, 159, 247, 10,
32, 2, 253, 154, 3, 2, 65, 68, 2, 157, 168, 10, 4, 65, 85, 68, 32, 2, 17,
2, 83, 83, 2, 211, 216, 10, 32, 2, 11, 79, 2, 195, 253, 6, 76, 4, 116,
15, 72, 85, 82, 73, 83, 65, 90, 32, 84, 72, 85, 82, 83, 32, 84, 33, 10,
73, 87, 65, 90, 32, 84, 73, 82, 32, 84, 2, 11, 72, 2, 171, 227, 5, 79, 2,
17, 2, 89, 82, 2, 187, 217, 10, 32, 5, 41, 8, 85, 78, 74, 79, 32, 87, 89,
78, 2, 11, 78, 2, 251, 246, 9, 32, 2, 21, 3, 73, 78, 71, 2, 237, 174, 7,
2, 76, 69, 4, 188, 137, 9, 16, 73, 78, 71, 32, 83, 72, 73, 82, 84, 32,
87, 73, 84, 72, 32, 83, 187, 178, 1, 69, 12, 120, 3, 66, 73, 78, 2, 78,
28, 2, 81, 85, 0, 3, 86, 73, 71, 174, 160, 7, 83, 229, 169, 1, 6, 84, 82,
69, 68, 69, 67, 2, 169, 202, 8, 2, 79, 86, 2, 129, 202, 8, 2, 73, 78,
200, 40, 244, 1, 2, 32, 73, 22, 65, 162, 26, 67, 138, 5, 69, 166, 11, 72,
242, 36, 73, 162, 233, 1, 75, 154, 2, 76, 142, 9, 77, 166, 21, 78, 190,
2, 79, 158, 39, 80, 172, 12, 2, 81, 85, 138, 70, 83, 38, 84, 138, 17, 85,
150, 43, 87, 186, 1, 89, 247, 178, 5, 71, 2, 183, 201, 9, 78, 198, 2,
132, 2, 5, 70, 69, 84, 89, 32, 36, 4, 71, 73, 84, 84, 30, 76, 112, 8, 77,
65, 82, 73, 84, 65, 78, 32, 146, 14, 78, 190, 3, 84, 102, 85, 204, 244,
2, 2, 73, 76, 242, 91, 88, 144, 148, 6, 15, 75, 69, 32, 66, 79, 84, 84,
76, 69, 32, 65, 78, 68, 32, 67, 159, 98, 82, 4, 254, 251, 6, 86, 207,
242, 2, 80, 2, 201, 213, 3, 2, 65, 82, 6, 18, 84, 75, 85, 4, 36, 3, 32,
83, 72, 235, 202, 9, 73, 2, 11, 65, 2, 171, 175, 10, 75, 2, 227, 228, 9,
84, 122, 184, 1, 7, 76, 69, 84, 84, 69, 82, 32, 198, 3, 77, 248, 2, 12,
80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 136, 4, 11, 86, 79, 87,
69, 76, 32, 83, 73, 71, 78, 32, 203, 159, 4, 65, 44, 202, 1, 66, 32, 2,
68, 65, 22, 73, 38, 75, 22, 76, 34, 83, 46, 84, 182, 2, 65, 212, 231, 5,
2, 71, 65, 222, 153, 1, 82, 202, 142, 2, 90, 182, 83, 77, 172, 1, 2, 81,
85, 118, 78, 226, 6, 89, 251, 101, 70, 4, 186, 205, 10, 73, 247, 25, 65,
2, 151, 224, 9, 76, 6, 178, 233, 10, 78, 2, 84, 3, 89, 2, 223, 231, 9,
65, 2, 11, 65, 2, 191, 223, 9, 66, 4, 156, 7, 3, 73, 78, 71, 163, 149, 9,
72, 6, 254, 230, 9, 65, 134, 101, 73, 229, 10, 5, 83, 65, 65, 68, 73, 18,
96, 4, 65, 82, 75, 32, 165, 1, 15, 79, 68, 73, 70, 73, 69, 82, 32, 76,
69, 84, 84, 69, 82, 32, 12, 82, 68, 40, 2, 73, 78, 90, 69, 242, 2, 78,
213, 191, 8, 5, 79, 67, 67, 76, 85, 2, 17, 2, 65, 71, 2, 155, 251, 8, 69,
5, 17, 2, 45, 65, 2, 203, 228, 9, 76, 6, 46, 69, 184, 6, 2, 83, 72, 131,
223, 10, 73, 2, 229, 235, 9, 11, 80, 69, 78, 84, 72, 69, 84, 73, 67, 32,
89, 28, 130, 1, 65, 154, 1, 66, 22, 78, 30, 83, 134, 1, 90, 250, 166, 3,
84, 156, 149, 7, 9, 77, 69, 76, 79, 68, 73, 67, 32, 81, 3, 81, 10, 76, 3,
70, 83, 65, 34, 78, 28, 2, 84, 77, 245, 189, 10, 4, 82, 75, 65, 65, 2,
11, 65, 2, 151, 227, 10, 81, 4, 26, 78, 211, 206, 5, 71, 2, 11, 65, 2,
243, 189, 10, 65, 2, 165, 143, 3, 2, 69, 81, 4, 64, 4, 72, 73, 89, 89,
45, 8, 79, 70, 32, 77, 65, 83, 72, 70, 2, 11, 65, 2, 11, 65, 2, 155, 236,
8, 76, 2, 139, 216, 9, 65, 4, 34, 65, 209, 235, 8, 2, 73, 81, 2, 223,
223, 9, 69, 30, 92, 5, 76, 79, 78, 71, 32, 54, 79, 66, 83, 174, 205, 6,
65, 242, 145, 4, 69, 2, 73, 3, 85, 10, 158, 206, 6, 65, 242, 145, 4, 69,
2, 73, 3, 85, 7, 41, 8, 86, 69, 82, 76, 79, 78, 71, 32, 4, 191, 205, 6,
65, 4, 26, 72, 183, 219, 5, 85, 2, 129, 150, 6, 3, 79, 82, 84, 10, 68, 8,
83, 45, 83, 69, 82, 73, 70, 32, 241, 187, 10, 3, 68, 87, 73, 8, 44, 6,
72, 69, 65, 86, 89, 32, 139, 2, 73, 6, 48, 3, 68, 79, 85, 81, 5, 76, 79,
87, 32, 68, 4, 11, 66, 4, 21, 3, 76, 69, 32, 4, 84, 6, 84, 85, 82, 78,
69, 68, 23, 67, 2, 21, 3, 79, 85, 66, 2, 17, 2, 76, 69, 2, 17, 2, 32, 67,
2, 33, 6, 79, 77, 77, 65, 32, 81, 2, 145, 144, 9, 3, 85, 79, 84, 2, 253,
151, 10, 10, 78, 84, 69, 82, 82, 79, 66, 65, 78, 71, 6, 48, 6, 69, 76,
76, 73, 84, 69, 143, 200, 5, 85, 5, 25, 4, 32, 65, 78, 84, 2, 147, 160,
7, 69, 168, 1, 50, 82, 225, 141, 5, 6, 68, 73, 32, 82, 73, 89, 166, 1,
52, 7, 65, 83, 72, 84, 82, 65, 32, 183, 191, 4, 79, 164, 1, 180, 1, 7,
76, 69, 84, 84, 69, 82, 32, 212, 1, 5, 83, 73, 71, 78, 32, 194, 21, 68,
176, 250, 2, 16, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78,
32, 72, 211, 155, 2, 86, 100, 154, 250, 6, 65, 38, 68, 114, 84, 46, 86,
186, 5, 85, 206, 141, 1, 79, 238, 60, 73, 42, 76, 226, 195, 1, 78, 46,
83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 162, 7, 69, 234, 61, 72,
2, 77, 2, 82, 3, 89, 8, 218, 184, 6, 67, 234, 216, 3, 65, 239, 1, 86, 52,
66, 65, 32, 4, 72, 79, 79, 76, 46, 79, 74, 82, 183, 212, 10, 73, 4, 194,
191, 9, 76, 227, 20, 82, 5, 245, 191, 5, 6, 32, 83, 65, 84, 67, 72, 6,
36, 3, 82, 80, 73, 203, 154, 9, 79, 4, 242, 132, 10, 79, 135, 18, 85, 36,
66, 69, 72, 4, 73, 80, 84, 32, 214, 250, 1, 85, 175, 206, 6, 79, 4, 36,
3, 87, 68, 82, 235, 131, 10, 69, 2, 11, 73, 2, 207, 149, 10, 86, 28, 80,
8, 67, 65, 80, 73, 84, 65, 76, 32, 86, 76, 81, 6, 83, 77, 65, 76, 76, 32,
18, 210, 210, 10, 66, 2, 69, 2, 70, 2, 72, 2, 73, 2, 76, 2, 77, 2, 80, 3,
82, 2, 37, 7, 73, 71, 65, 84, 85, 82, 69, 2, 11, 32, 2, 233, 141, 10, 2,
69, 84, 8, 174, 209, 10, 69, 2, 71, 2, 76, 3, 79, 220, 1, 130, 2, 65, 30,
67, 74, 69, 36, 5, 71, 77, 69, 78, 84, 28, 2, 77, 73, 172, 1, 8, 80, 65,
82, 65, 84, 69, 68, 32, 138, 4, 82, 158, 1, 83, 68, 2, 84, 32, 168, 140,
5, 8, 87, 73, 78, 71, 32, 78, 69, 69, 202, 145, 3, 88, 190, 106, 68, 233,
162, 1, 2, 76, 70, 4, 250, 206, 10, 76, 3, 84, 6, 34, 84, 245, 226, 5, 2,
79, 78, 4, 178, 201, 6, 73, 175, 204, 3, 79, 4, 166, 224, 1, 68, 191,
132, 1, 45, 23, 189, 191, 4, 2, 69, 68, 6, 212, 84, 28, 68, 73, 82, 69,
67, 84, 32, 80, 82, 79, 68, 85, 67, 84, 32, 87, 73, 84, 72, 32, 66, 79,
84, 84, 79, 77, 32, 67, 172, 208, 7, 3, 83, 69, 88, 211, 216, 1, 67, 158,
1, 48, 6, 66, 76, 79, 67, 75, 32, 203, 182, 9, 83, 156, 1, 88, 9, 81, 85,
65, 68, 82, 65, 78, 84, 45, 129, 1, 8, 83, 69, 88, 84, 65, 78, 84, 45,
30, 42, 49, 38, 50, 30, 51, 171, 202, 10, 52, 17, 34, 50, 30, 51, 171,
202, 10, 52, 9, 26, 51, 171, 202, 10, 52, 5, 167, 202, 10, 52, 126, 58,
49, 54, 50, 46, 51, 38, 52, 30, 53, 187, 200, 10, 54, 65, 50, 50, 46, 51,
38, 52, 30, 53, 187, 200, 10, 54, 33, 42, 51, 38, 52, 30, 53, 187, 200,
10, 54, 17, 34, 52, 30, 53, 187, 200, 10, 54, 9, 26, 53, 187, 200, 10,
54, 5, 183, 200, 10, 54, 4, 120, 2, 86, 73, 129, 175, 2, 22, 73, 79, 85,
83, 32, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 83, 89, 77, 66, 79, 76,
83, 2, 11, 67, 2, 215, 133, 10, 69, 4, 52, 7, 81, 85, 73, 81, 85, 65, 68,
239, 141, 9, 65, 2, 91, 82, 4, 64, 10, 84, 82, 65, 78, 83, 77, 73, 84,
32, 83, 151, 187, 6, 77, 2, 11, 84, 2, 223, 252, 8, 65, 134, 3, 102, 65,
218, 20, 73, 102, 79, 214, 13, 69, 70, 82, 224, 143, 9, 5, 85, 70, 70,
76, 69, 195, 145, 1, 89, 192, 2, 164, 1, 12, 68, 79, 87, 69, 68, 32, 87,
72, 73, 84, 69, 32, 56, 9, 76, 76, 79, 87, 32, 80, 65, 78, 32, 62, 82,
182, 10, 86, 160, 198, 7, 2, 77, 82, 227, 233, 1, 75, 6, 174, 239, 8, 67,
206, 11, 83, 245, 4, 3, 76, 65, 84, 2, 17, 2, 79, 70, 2, 17, 2, 32, 70,
2, 187, 136, 7, 79, 210, 1, 40, 4, 65, 68, 65, 32, 167, 194, 10, 75, 208,
1, 162, 1, 68, 46, 69, 110, 72, 34, 76, 246, 1, 83, 212, 2, 6, 86, 79,
87, 69, 76, 32, 170, 199, 4, 65, 188, 211, 1, 7, 67, 79, 78, 84, 73, 78,
85, 195, 143, 4, 79, 24, 194, 224, 6, 79, 66, 65, 255, 235, 1, 73, 4, 84,
15, 88, 84, 82, 65, 32, 83, 72, 79, 82, 84, 32, 86, 79, 87, 69, 235, 130,
9, 75, 2, 179, 254, 9, 76, 2, 217, 143, 10, 3, 69, 65, 68, 96, 33, 6, 69,
84, 84, 69, 82, 32, 96, 170, 225, 6, 65, 38, 68, 114, 84, 46, 86, 186, 5,
85, 186, 202, 1, 73, 42, 76, 226, 195, 1, 78, 46, 83, 82, 66, 2, 67, 2,
71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3,
79, 30, 70, 65, 38, 69, 56, 4, 73, 71, 78, 32, 145, 183, 9, 3, 85, 84,
82, 2, 193, 251, 9, 4, 78, 68, 72, 73, 6, 212, 205, 2, 5, 67, 84, 73, 79,
78, 243, 189, 4, 80, 20, 106, 73, 154, 144, 5, 83, 202, 141, 1, 67, 98,
78, 190, 66, 65, 190, 158, 1, 74, 150, 3, 85, 235, 245, 1, 86, 2, 37, 7,
78, 86, 69, 82, 84, 69, 68, 2, 181, 157, 6, 2, 32, 67, 46, 60, 6, 77, 79,
68, 73, 70, 73, 21, 5, 83, 73, 71, 78, 32, 2, 155, 146, 6, 69, 44, 110,
67, 42, 79, 34, 80, 162, 183, 4, 85, 194, 229, 1, 83, 242, 68, 65, 58,
86, 166, 202, 1, 73, 199, 140, 2, 69, 4, 193, 157, 6, 5, 65, 78, 68, 82,
65, 7, 186, 162, 10, 79, 215, 22, 69, 2, 57, 12, 82, 73, 83, 72, 84, 72,
65, 77, 65, 84, 82, 65, 2, 223, 161, 10, 32, 98, 72, 3, 69, 68, 32, 21,
11, 73, 65, 78, 32, 76, 69, 84, 84, 69, 82, 32, 2, 215, 250, 9, 73, 96,
158, 2, 65, 120, 3, 67, 72, 85, 22, 69, 70, 72, 46, 73, 46, 76, 22, 77,
38, 79, 94, 80, 18, 82, 22, 83, 38, 84, 64, 2, 87, 79, 36, 2, 89, 69,
212, 243, 4, 2, 74, 85, 166, 228, 2, 68, 202, 13, 90, 218, 88, 70, 182,
6, 71, 234, 45, 66, 246, 11, 75, 234, 21, 86, 250, 27, 78, 167, 128, 1,
85, 16, 82, 82, 242, 251, 9, 73, 234, 25, 68, 162, 8, 71, 2, 87, 198, 21,
83, 147, 1, 72, 4, 170, 166, 9, 82, 163, 142, 1, 69, 2, 255, 145, 10, 82,
8, 38, 65, 146, 251, 9, 82, 139, 56, 71, 4, 234, 179, 10, 82, 3, 84, 4,
164, 182, 8, 2, 65, 45, 179, 172, 1, 85, 6, 194, 227, 9, 65, 142, 57, 67,
215, 22, 70, 2, 207, 168, 8, 79, 4, 146, 158, 5, 69, 227, 250, 3, 73, 12,
70, 79, 170, 166, 9, 73, 166, 111, 85, 150, 25, 65, 154, 3, 78, 3, 82, 2,
163, 155, 10, 90, 2, 255, 15, 69, 2, 151, 142, 9, 79, 4, 130, 143, 9, 85,
191, 162, 1, 79, 6, 26, 72, 215, 148, 10, 79, 4, 218, 131, 6, 73, 223,
155, 4, 69, 4, 138, 165, 9, 79, 211, 139, 1, 69, 4, 182, 176, 10, 65, 3,
87, 10, 78, 69, 186, 232, 3, 70, 148, 126, 6, 78, 84, 79, 32, 83, 72,
131, 201, 5, 80, 2, 171, 233, 9, 76, 50, 252, 1, 2, 79, 84, 32, 6, 80,
80, 73, 78, 71, 32, 72, 2, 82, 84, 128, 11, 7, 85, 76, 68, 69, 82, 69,
68, 184, 240, 1, 24, 67, 75, 69, 68, 32, 70, 65, 67, 69, 32, 87, 73, 84,
72, 32, 69, 88, 80, 76, 79, 68, 73, 78, 71, 234, 155, 3, 86, 199, 215, 4,
87, 2, 197, 147, 8, 3, 73, 78, 71, 4, 36, 3, 84, 82, 79, 131, 242, 5, 66,
2, 11, 76, 2, 139, 143, 8, 76, 36, 102, 32, 200, 8, 12, 72, 65, 78, 68,
32, 70, 79, 82, 77, 65, 84, 32, 250, 182, 6, 67, 171, 236, 3, 83, 24,
242, 1, 66, 92, 11, 83, 76, 65, 78, 84, 69, 68, 32, 78, 79, 82, 196, 1,
4, 76, 69, 70, 84, 156, 1, 11, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83,
32, 248, 1, 7, 85, 80, 32, 84, 65, 67, 75, 129, 161, 2, 9, 68, 79, 87,
78, 32, 84, 65, 67, 75, 4, 88, 14, 65, 67, 75, 83, 76, 65, 78, 84, 69,
68, 32, 83, 79, 85, 33, 4, 69, 78, 84, 32, 2, 11, 84, 2, 179, 140, 9, 72,
2, 221, 40, 37, 65, 82, 82, 79, 87, 32, 80, 79, 73, 78, 84, 73, 78, 71,
32, 68, 79, 87, 78, 87, 65, 82, 68, 83, 32, 84, 72, 69, 78, 32, 78, 79,
82, 84, 72, 32, 69, 4, 116, 24, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80,
79, 79, 78, 32, 65, 66, 79, 86, 69, 32, 76, 79, 78, 71, 171, 3, 32, 2,
237, 1, 5, 32, 82, 73, 71, 72, 4, 112, 11, 65, 82, 82, 79, 87, 32, 65,
66, 79, 86, 69, 29, 13, 72, 65, 82, 80, 79, 79, 78, 32, 65, 66, 79, 86,
69, 2, 157, 128, 6, 2, 32, 76, 2, 29, 5, 32, 76, 79, 78, 71, 2, 25, 4,
32, 76, 69, 70, 2, 153, 250, 6, 6, 84, 87, 65, 82, 68, 83, 7, 11, 32, 4,
76, 13, 65, 66, 79, 86, 69, 32, 83, 72, 79, 82, 84, 32, 68, 251, 131, 2,
87, 2, 11, 79, 2, 11, 87, 2, 11, 78, 2, 11, 32, 2, 223, 132, 7, 84, 8,
120, 10, 67, 79, 78, 84, 73, 78, 85, 73, 78, 71, 0, 6, 76, 69, 84, 84,
69, 82, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 193, 179, 3, 5, 32, 79,
86, 69, 82, 2, 21, 3, 32, 83, 84, 2, 215, 161, 10, 69, 2, 25, 4, 32, 79,
80, 69, 2, 207, 146, 9, 78, 4, 26, 73, 179, 160, 10, 85, 2, 247, 160, 10,
77, 211, 14, 174, 1, 68, 152, 20, 2, 71, 78, 184, 181, 1, 6, 77, 73, 76,
65, 82, 32, 158, 2, 78, 202, 24, 88, 237, 238, 6, 15, 76, 72, 79, 85, 69,
84, 84, 69, 32, 79, 70, 32, 74, 65, 80, 252, 1, 40, 5, 68, 72, 65, 77,
32, 135, 17, 69, 184, 1, 202, 1, 69, 68, 7, 76, 69, 84, 84, 69, 82, 32,
176, 4, 15, 82, 69, 80, 69, 84, 73, 84, 73, 79, 78, 32, 77, 65, 82, 75,
50, 83, 164, 8, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 171, 175,
6, 68, 2, 37, 7, 78, 68, 32, 79, 70, 32, 84, 2, 201, 210, 9, 2, 69, 88,
102, 214, 1, 65, 98, 84, 242, 188, 6, 68, 158, 1, 86, 186, 5, 85, 186,
202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75,
2, 80, 138, 69, 72, 2, 76, 2, 77, 2, 82, 2, 89, 186, 2, 69, 3, 79, 11,
72, 8, 76, 84, 69, 82, 78, 65, 84, 69, 214, 154, 10, 65, 2, 73, 3, 85, 2,
235, 245, 9, 32, 14, 134, 1, 72, 252, 231, 5, 19, 87, 79, 45, 67, 73, 82,
67, 76, 69, 32, 65, 76, 84, 69, 82, 78, 65, 84, 69, 254, 233, 3, 84, 195,
71, 65, 4, 164, 217, 9, 20, 82, 69, 69, 45, 67, 73, 82, 67, 76, 69, 32,
65, 76, 84, 69, 82, 78, 65, 84, 69, 147, 64, 65, 6, 11, 45, 6, 186, 152,
10, 49, 2, 50, 3, 51, 44, 38, 69, 181, 7, 4, 73, 71, 78, 32, 32, 96, 11,
67, 84, 73, 79, 78, 32, 77, 65, 82, 75, 32, 177, 6, 8, 80, 65, 82, 65,
84, 79, 82, 32, 28, 80, 11, 68, 79, 85, 66, 76, 69, 32, 82, 73, 78, 71,
57, 5, 87, 73, 84, 72, 32, 5, 11, 32, 2, 249, 231, 8, 6, 87, 73, 84, 72,
32, 82, 24, 212, 1, 12, 67, 73, 82, 67, 76, 69, 83, 32, 65, 78, 68, 32,
116, 5, 81, 85, 65, 68, 82, 0, 4, 83, 69, 80, 84, 12, 16, 82, 65, 89, 83,
32, 65, 78, 68, 32, 68, 79, 84, 84, 69, 68, 32, 46, 68, 45, 3, 84, 82,
73, 6, 60, 4, 70, 79, 85, 82, 0, 3, 84, 87, 79, 187, 229, 8, 82, 2, 225,
207, 6, 8, 32, 69, 78, 67, 76, 79, 83, 85, 2, 83, 85, 6, 42, 68, 28, 3,
84, 82, 73, 215, 1, 67, 2, 197, 1, 3, 79, 85, 66, 2, 171, 1, 80, 6, 52,
9, 68, 69, 78, 84, 32, 65, 78, 68, 32, 103, 80, 4, 116, 6, 68, 79, 84,
84, 69, 68, 49, 14, 85, 45, 83, 72, 65, 80, 69, 68, 32, 79, 82, 78, 65,
77, 2, 17, 2, 76, 69, 2, 17, 2, 32, 67, 2, 25, 4, 82, 69, 83, 67, 2, 239,
186, 1, 69, 4, 158, 237, 8, 66, 135, 83, 68, 12, 146, 229, 4, 83, 202,
141, 1, 67, 98, 78, 138, 216, 3, 65, 239, 1, 86, 26, 74, 65, 94, 86, 210,
183, 6, 85, 186, 202, 1, 73, 198, 140, 2, 69, 3, 79, 10, 168, 184, 6, 10,
76, 84, 69, 82, 78, 65, 84, 69, 32, 85, 254, 214, 3, 65, 2, 73, 3, 85, 4,
11, 79, 4, 33, 6, 67, 65, 76, 73, 67, 32, 4, 255, 183, 6, 82, 68, 84, 12,
84, 73, 67, 32, 76, 69, 84, 84, 69, 82, 32, 78, 49, 5, 87, 65, 89, 83,
32, 52, 178, 156, 1, 50, 222, 176, 3, 48, 131, 2, 49, 16, 56, 5, 66, 76,
65, 67, 75, 1, 5, 87, 72, 73, 84, 69, 8, 11, 32, 8, 70, 82, 24, 3, 76,
69, 70, 12, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2, 21, 3, 73, 71, 72, 2, 11,
84, 2, 225, 92, 6, 32, 80, 79, 73, 78, 84, 194, 10, 96, 8, 87, 82, 73,
84, 73, 78, 71, 32, 241, 238, 1, 10, 32, 79, 70, 32, 84, 72, 69, 32, 72,
79, 192, 10, 136, 3, 4, 65, 73, 82, 32, 192, 1, 2, 66, 82, 102, 67, 138,
1, 68, 218, 4, 69, 242, 6, 70, 244, 3, 4, 87, 65, 76, 76, 138, 1, 72,
234, 77, 76, 212, 6, 2, 77, 79, 222, 42, 78, 218, 1, 82, 182, 7, 83, 162,
5, 84, 180, 10, 5, 71, 82, 65, 83, 80, 184, 5, 30, 85, 80, 80, 69, 82,
32, 66, 79, 68, 89, 32, 84, 73, 76, 84, 73, 78, 71, 32, 70, 82, 79, 77,
32, 72, 73, 80, 32, 74, 79, 135, 207, 4, 80, 8, 48, 4, 66, 76, 79, 87,
29, 4, 83, 85, 67, 75, 4, 58, 32, 211, 226, 4, 73, 4, 30, 32, 61, 3, 73,
78, 71, 2, 237, 157, 1, 10, 83, 77, 65, 76, 76, 32, 82, 79, 84, 65, 2,
171, 134, 9, 32, 10, 52, 5, 69, 65, 84, 72, 32, 229, 169, 1, 2, 85, 83,
4, 140, 164, 2, 2, 69, 88, 1, 2, 73, 78, 10, 40, 6, 72, 69, 69, 75, 83,
32, 63, 79, 6, 154, 107, 83, 146, 38, 78, 153, 223, 3, 4, 80, 85, 70, 70,
4, 178, 180, 9, 76, 223, 46, 77, 28, 108, 15, 82, 69, 65, 77, 89, 32, 69,
89, 69, 66, 82, 79, 87, 83, 32, 165, 1, 7, 89, 78, 65, 77, 73, 67, 32, 8,
64, 4, 68, 79, 87, 78, 0, 2, 85, 80, 29, 4, 78, 69, 85, 84, 2, 153, 143,
1, 2, 32, 78, 4, 21, 3, 82, 65, 76, 4, 11, 32, 4, 194, 58, 68, 191, 199,
9, 85, 20, 180, 1, 11, 69, 86, 69, 82, 89, 32, 79, 84, 72, 69, 82, 30,
70, 22, 83, 128, 122, 9, 65, 82, 82, 79, 87, 72, 69, 65, 68, 234, 38, 82,
136, 206, 3, 2, 84, 69, 21, 4, 71, 82, 65, 68, 2, 181, 230, 8, 2, 32, 84,
2, 163, 146, 6, 65, 6, 68, 11, 73, 77, 85, 76, 84, 65, 78, 69, 79, 85,
83, 151, 227, 8, 76, 5, 203, 151, 1, 32, 54, 64, 2, 89, 69, 172, 227, 4,
4, 88, 67, 73, 84, 203, 138, 4, 65, 50, 166, 1, 32, 56, 15, 66, 82, 79,
87, 83, 32, 83, 84, 82, 65, 73, 71, 72, 84, 32, 44, 5, 71, 65, 90, 69,
45, 140, 2, 7, 76, 65, 83, 72, 69, 83, 32, 65, 2, 83, 32, 6, 220, 150, 1,
5, 66, 76, 73, 78, 75, 243, 129, 5, 87, 6, 186, 53, 68, 154, 84, 78, 167,
243, 8, 85, 18, 100, 11, 70, 76, 79, 79, 82, 80, 76, 65, 78, 69, 32, 25,
10, 87, 65, 76, 76, 80, 76, 65, 78, 69, 32, 8, 82, 83, 207, 45, 67, 10,
18, 67, 43, 83, 4, 254, 45, 85, 213, 95, 3, 73, 82, 67, 6, 37, 7, 84, 82,
65, 73, 71, 72, 84, 7, 11, 32, 4, 202, 163, 1, 65, 55, 68, 6, 130, 51,
68, 180, 173, 4, 4, 70, 76, 85, 84, 139, 154, 5, 85, 14, 112, 5, 72, 65,
76, 70, 32, 26, 67, 28, 4, 87, 73, 68, 69, 230, 92, 79, 233, 135, 4, 6,
83, 81, 85, 69, 69, 90, 4, 22, 67, 131, 93, 79, 2, 213, 232, 2, 2, 76,
79, 4, 162, 67, 32, 217, 61, 4, 78, 73, 78, 71, 38, 204, 1, 28, 65, 67,
69, 32, 68, 73, 82, 69, 67, 84, 73, 79, 78, 32, 80, 79, 83, 73, 84, 73,
79, 78, 32, 78, 79, 83, 69, 32, 138, 1, 73, 82, 76, 176, 1, 8, 79, 82,
69, 72, 69, 65, 68, 32, 187, 158, 7, 85, 6, 88, 10, 85, 80, 32, 79, 82,
32, 68, 79, 87, 78, 13, 8, 70, 79, 82, 87, 65, 82, 68, 32, 5, 11, 32, 2,
153, 231, 4, 3, 84, 73, 76, 12, 180, 225, 3, 11, 76, 76, 32, 77, 79, 68,
73, 70, 73, 69, 82, 131, 195, 2, 78, 12, 44, 4, 73, 67, 75, 32, 29, 3,
79, 79, 82, 10, 254, 140, 1, 76, 35, 83, 2, 225, 247, 8, 20, 80, 76, 65,
78, 69, 32, 83, 72, 79, 85, 76, 68, 69, 82, 32, 72, 73, 80, 32, 77, 6,
166, 89, 87, 222, 38, 67, 47, 78, 156, 4, 34, 65, 133, 75, 3, 69, 65, 68,
140, 4, 36, 3, 78, 68, 45, 143, 186, 9, 73, 138, 4, 92, 5, 65, 78, 71,
76, 69, 138, 5, 67, 150, 10, 70, 186, 42, 72, 241, 12, 4, 79, 86, 65, 76,
37, 11, 32, 34, 188, 1, 5, 73, 78, 68, 69, 88, 176, 1, 7, 76, 73, 84, 84,
76, 69, 32, 136, 1, 5, 82, 73, 78, 71, 32, 173, 66, 18, 77, 73, 68, 68,
76, 69, 32, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 17, 11, 32, 14,
128, 1, 7, 77, 73, 68, 68, 76, 69, 32, 228, 24, 11, 82, 73, 78, 71, 32,
76, 73, 84, 84, 76, 69, 241, 42, 5, 84, 72, 85, 77, 66, 4, 174, 70, 76,
247, 215, 8, 82, 8, 44, 5, 73, 78, 68, 69, 88, 207, 238, 9, 85, 7, 145,
24, 18, 32, 84, 72, 85, 77, 66, 32, 73, 78, 68, 69, 88, 32, 84, 72, 85,
77, 66, 4, 108, 22, 68, 79, 87, 78, 32, 77, 73, 68, 68, 76, 69, 32, 84,
72, 85, 77, 66, 32, 73, 78, 68, 69, 155, 68, 76, 2, 207, 169, 8, 88, 88,
64, 5, 73, 82, 67, 76, 69, 184, 3, 3, 76, 65, 87, 183, 2, 85, 35, 11, 32,
32, 116, 5, 73, 78, 68, 69, 88, 200, 1, 7, 76, 73, 84, 84, 76, 69, 32,
36, 7, 77, 73, 68, 68, 76, 69, 32, 163, 64, 82, 21, 11, 32, 18, 72, 6,
77, 73, 68, 68, 76, 69, 198, 26, 72, 242, 38, 82, 131, 230, 8, 66, 13,
11, 32, 10, 64, 5, 67, 82, 79, 83, 83, 198, 64, 84, 82, 76, 247, 215, 8,
82, 4, 134, 65, 32, 231, 226, 8, 69, 4, 194, 193, 8, 73, 159, 168, 1, 85,
6, 252, 47, 10, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 191, 185, 9, 85,
17, 11, 32, 14, 144, 2, 28, 77, 73, 68, 68, 76, 69, 32, 82, 73, 78, 71,
32, 76, 73, 84, 84, 76, 69, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 176,
49, 2, 70, 79, 198, 11, 78, 162, 1, 84, 197, 118, 23, 73, 78, 68, 69, 88,
32, 84, 72, 85, 77, 66, 32, 67, 85, 82, 86, 69, 32, 84, 72, 85, 77, 66,
5, 247, 180, 1, 32, 38, 46, 80, 149, 2, 6, 82, 76, 73, 67, 85, 69, 31,
11, 32, 28, 188, 1, 5, 73, 78, 68, 69, 88, 56, 19, 70, 73, 86, 69, 32,
70, 73, 78, 71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 196, 50, 7, 77,
73, 68, 68, 76, 69, 32, 18, 79, 218, 7, 78, 163, 1, 84, 9, 11, 32, 6, 40,
5, 84, 72, 85, 77, 66, 243, 58, 82, 5, 215, 46, 32, 9, 11, 32, 6, 72, 5,
73, 78, 68, 69, 88, 0, 6, 77, 73, 68, 68, 76, 69, 179, 71, 79, 2, 193,
147, 9, 13, 32, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69, 32, 172, 2,
44, 3, 73, 83, 84, 177, 33, 3, 76, 65, 84, 247, 1, 11, 32, 244, 1, 160,
2, 5, 73, 78, 68, 69, 88, 192, 16, 7, 76, 73, 84, 84, 76, 69, 32, 196, 2,
7, 77, 73, 68, 68, 76, 69, 32, 200, 4, 5, 82, 73, 78, 71, 32, 132, 2, 5,
84, 72, 85, 77, 66, 138, 2, 72, 205, 9, 22, 70, 79, 85, 82, 32, 70, 73,
78, 71, 69, 82, 83, 32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 137, 1, 11,
32, 134, 1, 232, 1, 4, 66, 69, 78, 84, 36, 6, 72, 73, 78, 71, 69, 68, 76,
6, 77, 73, 68, 68, 76, 69, 168, 7, 2, 67, 85, 64, 6, 84, 72, 85, 77, 66,
32, 160, 5, 16, 85, 80, 32, 77, 73, 68, 68, 76, 69, 32, 72, 73, 78, 71,
69, 68, 151, 4, 82, 5, 217, 45, 5, 32, 79, 86, 69, 82, 9, 11, 32, 6, 252,
20, 8, 77, 73, 68, 68, 76, 69, 32, 85, 167, 172, 8, 76, 71, 11, 32, 68,
236, 1, 4, 66, 69, 78, 84, 42, 67, 244, 1, 10, 85, 80, 32, 83, 80, 82,
69, 65, 68, 32, 100, 6, 72, 73, 78, 71, 69, 68, 46, 82, 80, 5, 84, 72,
85, 77, 66, 188, 28, 14, 83, 84, 82, 65, 73, 71, 72, 84, 32, 84, 72, 85,
77, 66, 227, 17, 76, 5, 213, 92, 6, 32, 84, 72, 85, 77, 66, 28, 68, 8,
79, 78, 74, 79, 73, 78, 69, 68, 233, 1, 4, 82, 79, 83, 83, 23, 11, 32,
20, 144, 1, 6, 67, 85, 80, 80, 69, 68, 28, 6, 84, 72, 85, 77, 66, 32, 68,
5, 72, 73, 78, 71, 69, 166, 22, 73, 165, 7, 6, 77, 73, 68, 68, 76, 69, 5,
11, 32, 2, 203, 27, 84, 8, 160, 1, 4, 83, 73, 68, 69, 219, 61, 70, 6, 22,
69, 159, 47, 32, 4, 223, 15, 68, 5, 241, 30, 7, 32, 83, 80, 82, 69, 65,
68, 8, 32, 3, 73, 78, 71, 247, 19, 65, 7, 11, 32, 4, 138, 36, 67, 131,
240, 8, 66, 19, 11, 32, 16, 64, 6, 65, 78, 71, 76, 69, 68, 22, 67, 106,
72, 163, 146, 9, 66, 5, 167, 221, 5, 32, 6, 74, 85, 230, 7, 73, 241, 25,
10, 79, 78, 74, 79, 73, 78, 69, 68, 32, 72, 2, 201, 193, 4, 2, 80, 80, 4,
194, 33, 73, 217, 26, 2, 79, 79, 40, 164, 1, 7, 65, 78, 71, 76, 69, 68,
32, 46, 67, 220, 1, 14, 70, 79, 82, 87, 65, 82, 68, 32, 73, 78, 68, 69,
88, 32, 32, 4, 72, 79, 79, 75, 53, 4, 83, 73, 68, 69, 4, 128, 1, 2, 73,
78, 1, 3, 79, 85, 84, 12, 36, 5, 73, 82, 67, 76, 69, 15, 85, 5, 47, 68,
8, 32, 4, 80, 80, 69, 68, 39, 82, 2, 225, 40, 5, 32, 77, 73, 68, 68, 6,
56, 9, 86, 69, 32, 84, 72, 85, 77, 66, 32, 143, 37, 76, 4, 162, 160, 1,
73, 163, 198, 4, 85, 4, 202, 84, 83, 131, 186, 8, 66, 7, 157, 8, 9, 69,
68, 32, 77, 73, 68, 68, 76, 69, 15, 11, 32, 12, 92, 6, 73, 78, 68, 69,
88, 32, 156, 13, 5, 84, 72, 85, 77, 66, 193, 8, 4, 66, 79, 84, 72, 4, 26,
72, 243, 140, 9, 66, 2, 215, 152, 8, 73, 7, 37, 7, 32, 84, 72, 85, 77,
66, 32, 4, 178, 28, 67, 207, 129, 1, 83, 22, 88, 4, 68, 79, 87, 78, 186,
1, 84, 158, 6, 82, 130, 21, 73, 230, 238, 8, 66, 159, 67, 85, 9, 11, 32,
6, 80, 9, 79, 84, 72, 69, 82, 83, 32, 67, 73, 25, 7, 82, 73, 80, 80, 76,
69, 32, 2, 225, 51, 2, 82, 67, 4, 22, 67, 171, 80, 83, 2, 11, 85, 2, 169,
185, 4, 2, 82, 86, 4, 196, 35, 6, 79, 85, 67, 72, 69, 83, 39, 72, 30,
134, 1, 82, 28, 6, 84, 72, 85, 77, 66, 32, 138, 3, 85, 134, 1, 68, 210,
30, 76, 189, 128, 8, 9, 66, 69, 78, 84, 32, 79, 86, 69, 82, 4, 238, 4,
65, 231, 29, 73, 16, 80, 7, 65, 78, 71, 76, 69, 68, 32, 126, 67, 124, 4,
72, 79, 79, 75, 147, 32, 76, 6, 60, 10, 79, 85, 84, 32, 73, 78, 68, 69,
88, 32, 215, 1, 73, 4, 26, 67, 155, 202, 9, 85, 2, 249, 185, 2, 3, 82,
79, 83, 6, 76, 12, 73, 82, 67, 76, 69, 68, 32, 73, 78, 68, 69, 88, 45, 3,
85, 80, 80, 4, 11, 32, 4, 150, 21, 72, 135, 180, 9, 85, 2, 25, 4, 69, 68,
32, 73, 2, 233, 30, 4, 78, 68, 69, 88, 4, 11, 80, 5, 175, 15, 32, 18,
102, 68, 20, 6, 77, 73, 68, 68, 76, 69, 42, 82, 198, 29, 84, 82, 76, 210,
128, 8, 73, 159, 168, 1, 85, 2, 151, 241, 7, 79, 7, 11, 32, 4, 206, 3,
82, 179, 16, 67, 2, 11, 65, 2, 37, 7, 73, 83, 69, 68, 32, 75, 78, 2, 11,
85, 2, 11, 67, 2, 131, 160, 8, 75, 35, 11, 32, 32, 148, 1, 8, 66, 69, 84,
87, 69, 69, 78, 32, 102, 72, 20, 5, 79, 86, 69, 82, 32, 120, 4, 83, 73,
68, 69, 100, 6, 85, 78, 68, 69, 82, 32, 207, 40, 70, 8, 80, 12, 73, 78,
68, 69, 88, 32, 77, 73, 68, 68, 76, 69, 246, 20, 77, 155, 6, 82, 5, 135,
70, 32, 2, 243, 174, 4, 69, 4, 52, 6, 70, 79, 85, 82, 32, 82, 161, 2, 2,
84, 87, 2, 11, 65, 2, 233, 80, 9, 73, 83, 69, 68, 32, 75, 78, 85, 67, 6,
11, 32, 6, 38, 68, 190, 15, 67, 131, 240, 8, 66, 2, 25, 4, 73, 65, 71,
79, 2, 235, 182, 8, 78, 10, 54, 73, 34, 84, 48, 4, 70, 79, 85, 82, 131,
23, 76, 2, 161, 7, 4, 78, 68, 69, 88, 4, 34, 87, 13, 4, 72, 82, 69, 69,
2, 11, 79, 2, 173, 176, 8, 5, 32, 70, 73, 78, 71, 55, 11, 32, 52, 194, 1,
70, 172, 3, 4, 72, 69, 69, 76, 192, 1, 6, 83, 80, 76, 73, 84, 32, 236, 1,
6, 84, 72, 85, 77, 66, 32, 205, 249, 4, 16, 66, 69, 84, 87, 69, 69, 78,
32, 80, 65, 76, 77, 32, 70, 65, 67, 24, 140, 1, 18, 73, 86, 69, 32, 70,
73, 78, 71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 165, 1, 11, 79, 85,
82, 32, 70, 73, 78, 71, 69, 82, 83, 15, 11, 32, 12, 68, 6, 72, 73, 78,
71, 69, 68, 42, 84, 186, 2, 70, 203, 247, 8, 66, 7, 11, 32, 4, 190, 4,
84, 155, 15, 78, 2, 189, 35, 6, 72, 85, 77, 66, 32, 70, 11, 11, 32, 8,
72, 9, 67, 79, 78, 74, 79, 73, 78, 69, 68, 154, 8, 72, 235, 240, 8, 66,
5, 225, 159, 9, 3, 32, 83, 80, 11, 11, 32, 8, 96, 19, 70, 73, 86, 69, 32,
70, 73, 78, 71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 151, 2, 84, 7,
11, 32, 4, 26, 70, 203, 247, 8, 66, 2, 21, 3, 79, 85, 82, 2, 167, 1, 32,
10, 72, 6, 67, 69, 78, 84, 82, 69, 96, 5, 73, 78, 68, 69, 88, 167, 16,
76, 7, 49, 10, 32, 84, 72, 85, 77, 66, 32, 83, 73, 68, 4, 11, 69, 5, 11,
32, 2, 135, 246, 8, 66, 2, 11, 32, 2, 11, 84, 2, 153, 135, 1, 5, 72, 85,
77, 66, 32, 6, 242, 30, 70, 142, 104, 83, 183, 238, 7, 66, 82, 48, 4, 73,
78, 71, 69, 181, 9, 3, 79, 79, 75, 63, 11, 32, 60, 206, 1, 70, 172, 1, 5,
73, 78, 68, 69, 88, 196, 2, 6, 76, 73, 84, 84, 76, 69, 80, 6, 77, 73, 68,
68, 76, 69, 30, 79, 64, 4, 82, 73, 78, 71, 124, 6, 84, 72, 85, 77, 66,
32, 158, 6, 78, 195, 147, 4, 83, 4, 92, 19, 73, 86, 69, 32, 70, 73, 78,
71, 69, 82, 83, 32, 83, 80, 82, 69, 65, 68, 32, 19, 79, 2, 191, 25, 79,
2, 249, 1, 11, 85, 82, 32, 70, 73, 78, 71, 69, 82, 83, 32, 23, 11, 32,
20, 86, 72, 40, 7, 77, 73, 68, 68, 76, 69, 32, 104, 5, 84, 72, 85, 77,
66, 219, 9, 82, 2, 11, 73, 2, 233, 159, 4, 2, 78, 71, 6, 36, 4, 82, 73,
78, 71, 203, 10, 76, 5, 11, 32, 2, 11, 67, 2, 21, 3, 79, 78, 74, 2, 175,
33, 79, 11, 11, 32, 8, 34, 83, 210, 22, 79, 203, 39, 76, 4, 218, 159, 7,
73, 195, 8, 77, 9, 11, 32, 6, 22, 73, 199, 8, 84, 4, 25, 4, 78, 68, 69,
88, 5, 155, 8, 32, 5, 11, 32, 2, 171, 8, 82, 8, 21, 3, 80, 69, 78, 9, 11,
32, 6, 178, 7, 78, 163, 1, 84, 5, 97, 22, 32, 68, 79, 87, 78, 32, 73, 78,
68, 69, 88, 32, 84, 72, 85, 77, 66, 32, 72, 79, 79, 75, 2, 157, 77, 2,
32, 77, 6, 68, 9, 66, 69, 84, 87, 69, 69, 78, 32, 77, 53, 4, 83, 73, 68,
69, 2, 29, 5, 73, 68, 68, 76, 69, 2, 219, 153, 4, 32, 5, 33, 6, 32, 84,
79, 85, 67, 72, 2, 169, 134, 8, 3, 73, 78, 71, 21, 11, 32, 18, 172, 1, 4,
67, 85, 82, 76, 28, 18, 73, 78, 68, 69, 88, 32, 82, 73, 78, 71, 32, 76,
73, 84, 84, 76, 69, 32, 48, 7, 77, 73, 68, 68, 76, 69, 32, 225, 2, 4, 82,
73, 78, 71, 2, 173, 157, 5, 2, 73, 67, 6, 154, 193, 5, 85, 134, 242, 2,
79, 243, 41, 73, 8, 104, 21, 82, 73, 78, 71, 32, 76, 73, 84, 84, 76, 69,
32, 67, 79, 78, 74, 79, 73, 78, 69, 68, 143, 2, 84, 7, 211, 228, 2, 32,
17, 11, 32, 14, 112, 14, 70, 73, 86, 69, 32, 70, 73, 78, 71, 69, 82, 83,
32, 83, 22, 76, 66, 78, 70, 82, 94, 84, 167, 128, 8, 73, 2, 219, 160, 2,
80, 2, 21, 3, 73, 84, 84, 2, 17, 2, 76, 69, 2, 139, 180, 8, 32, 2, 11,
79, 2, 11, 32, 2, 11, 84, 2, 11, 72, 2, 167, 134, 6, 85, 2, 11, 73, 2,
21, 3, 78, 71, 32, 2, 11, 76, 2, 11, 73, 2, 11, 84, 2, 163, 130, 8, 84,
4, 29, 5, 72, 85, 77, 66, 32, 4, 194, 14, 70, 143, 104, 83, 17, 11, 32,
14, 56, 8, 77, 79, 86, 69, 77, 69, 78, 84, 251, 164, 8, 82, 12, 26, 45,
139, 211, 7, 32, 10, 100, 11, 70, 76, 79, 79, 82, 80, 76, 65, 78, 69, 32,
25, 10, 87, 65, 76, 76, 80, 76, 65, 78, 69, 32, 4, 62, 67, 223, 40, 83,
6, 38, 67, 28, 2, 84, 73, 195, 40, 83, 2, 173, 169, 8, 2, 85, 82, 2, 187,
137, 9, 76, 38, 50, 73, 225, 3, 7, 79, 67, 65, 84, 73, 79, 78, 22, 32, 3,
77, 66, 32, 171, 1, 80, 16, 56, 4, 67, 79, 77, 66, 29, 6, 76, 69, 78, 71,
84, 72, 2, 241, 222, 5, 2, 73, 78, 14, 11, 45, 14, 150, 164, 9, 49, 2,
50, 2, 51, 2, 52, 2, 53, 2, 54, 3, 55, 6, 58, 32, 153, 1, 9, 83, 32, 80,
82, 69, 83, 83, 69, 68, 4, 116, 12, 76, 79, 87, 69, 82, 32, 79, 86, 69,
82, 32, 85, 133, 135, 8, 11, 85, 80, 80, 69, 82, 32, 79, 86, 69, 82, 32,
2, 11, 80, 2, 167, 228, 8, 80, 2, 29, 5, 32, 84, 79, 71, 69, 2, 11, 84,
2, 231, 227, 8, 72, 16, 22, 32, 203, 1, 45, 12, 148, 1, 2, 72, 69, 240,
177, 2, 3, 84, 79, 82, 168, 233, 4, 3, 68, 69, 80, 0, 3, 87, 73, 68, 189,
124, 10, 76, 73, 77, 66, 83, 32, 68, 73, 71, 73, 4, 196, 13, 4, 65, 68,
32, 78, 135, 232, 8, 73, 4, 52, 5, 70, 76, 79, 79, 82, 1, 4, 87, 65, 76,
76, 2, 225, 224, 8, 5, 80, 76, 65, 78, 69, 156, 3, 64, 4, 85, 84, 72, 32,
161, 5, 7, 86, 69, 77, 69, 78, 84, 45, 54, 186, 1, 67, 88, 5, 70, 82, 79,
87, 78, 0, 5, 83, 77, 73, 76, 69, 56, 4, 75, 73, 83, 83, 36, 5, 79, 80,
69, 78, 32, 192, 1, 5, 84, 69, 78, 83, 69, 165, 29, 5, 87, 82, 73, 78,
75, 8, 48, 6, 76, 79, 83, 69, 68, 32, 147, 235, 7, 79, 6, 222, 2, 70,
142, 38, 67, 47, 78, 7, 11, 32, 4, 22, 79, 203, 1, 87, 2, 251, 197, 7,
80, 7, 11, 32, 4, 166, 1, 87, 83, 70, 18, 100, 4, 79, 86, 65, 76, 0, 9,
82, 69, 67, 84, 65, 78, 71, 76, 69, 42, 87, 82, 70, 211, 197, 7, 67, 7,
11, 32, 4, 26, 87, 255, 195, 7, 89, 2, 25, 4, 82, 73, 78, 75, 2, 131,
134, 4, 76, 7, 11, 32, 4, 18, 70, 43, 83, 2, 17, 2, 79, 82, 2, 215, 128,
8, 87, 2, 17, 2, 85, 67, 2, 147, 133, 4, 75, 230, 2, 192, 1, 9, 68, 73,
65, 71, 79, 78, 65, 76, 32, 148, 1, 11, 70, 76, 79, 79, 82, 80, 76, 65,
78, 69, 32, 184, 14, 6, 72, 73, 78, 71, 69, 32, 189, 2, 10, 87, 65, 76,
76, 80, 76, 65, 78, 69, 32, 32, 56, 8, 66, 69, 84, 87, 69, 69, 78, 32,
22, 65, 31, 84, 16, 18, 65, 31, 84, 8, 229, 28, 3, 87, 65, 89, 8, 201,
28, 6, 79, 87, 65, 82, 68, 83, 150, 1, 208, 2, 24, 65, 82, 77, 32, 67,
73, 82, 67, 76, 69, 32, 72, 73, 84, 84, 73, 78, 71, 32, 87, 65, 76, 76,
32, 38, 66, 34, 67, 224, 1, 8, 70, 73, 78, 71, 69, 82, 32, 67, 52, 5, 72,
85, 77, 80, 32, 184, 3, 5, 76, 79, 79, 80, 32, 198, 1, 83, 108, 7, 84,
82, 73, 80, 76, 69, 32, 110, 87, 206, 12, 68, 198, 2, 80, 154, 6, 90,
231, 246, 7, 74, 12, 178, 7, 76, 154, 9, 77, 39, 83, 8, 150, 17, 79, 151,
242, 7, 69, 28, 86, 72, 20, 5, 85, 82, 86, 69, 32, 196, 29, 5, 79, 82,
78, 69, 82, 211, 177, 7, 82, 2, 195, 224, 7, 69, 18, 80, 4, 67, 79, 77,
66, 158, 8, 72, 230, 15, 76, 194, 172, 2, 77, 247, 182, 1, 83, 2, 11, 73,
2, 187, 253, 3, 78, 6, 128, 9, 6, 73, 82, 67, 76, 69, 83, 239, 20, 79,
18, 56, 8, 72, 73, 84, 84, 73, 78, 71, 32, 167, 250, 3, 83, 16, 72, 8,
67, 69, 73, 76, 73, 78, 71, 32, 101, 6, 70, 76, 79, 79, 82, 32, 8, 56, 5,
76, 65, 82, 71, 69, 1, 5, 83, 77, 65, 76, 76, 4, 11, 32, 4, 206, 54, 84,
135, 2, 68, 8, 88, 4, 83, 77, 65, 76, 12, 5, 76, 65, 82, 71, 69, 17, 7,
84, 82, 73, 80, 76, 69, 32, 2, 11, 76, 2, 255, 18, 32, 4, 56, 5, 76, 65,
82, 71, 69, 1, 5, 83, 77, 65, 76, 76, 2, 253, 52, 2, 32, 84, 18, 56, 8,
72, 73, 84, 84, 73, 78, 71, 32, 239, 246, 3, 83, 16, 64, 7, 67, 69, 73,
76, 73, 78, 71, 1, 5, 70, 76, 79, 79, 82, 8, 11, 32, 8, 22, 76, 191, 9,
83, 4, 249, 22, 4, 65, 82, 71, 69, 12, 44, 6, 72, 65, 75, 73, 78, 71,
243, 16, 73, 2, 21, 3, 32, 80, 65, 2, 149, 246, 3, 4, 82, 65, 76, 76, 8,
76, 12, 65, 76, 84, 69, 82, 78, 65, 84, 73, 78, 71, 32, 138, 18, 87, 63,
83, 4, 134, 18, 87, 255, 20, 77, 18, 80, 4, 65, 86, 69, 32, 169, 1, 11,
82, 73, 83, 84, 32, 67, 73, 82, 67, 76, 69, 14, 30, 72, 102, 83, 171, 20,
76, 8, 37, 7, 73, 84, 84, 73, 78, 71, 32, 8, 252, 2, 4, 67, 69, 73, 76,
25, 5, 70, 76, 79, 79, 82, 4, 182, 156, 5, 78, 247, 225, 1, 77, 4, 209,
5, 10, 32, 72, 73, 84, 84, 73, 78, 71, 32, 87, 14, 112, 3, 85, 80, 32,
184, 1, 6, 68, 79, 87, 78, 32, 83, 197, 235, 5, 10, 83, 73, 68, 69, 32,
84, 79, 32, 83, 73, 10, 40, 5, 68, 79, 87, 78, 32, 143, 1, 83, 8, 68, 8,
65, 76, 84, 69, 82, 78, 65, 84, 230, 17, 76, 143, 222, 3, 83, 4, 21, 3,
73, 78, 71, 4, 11, 32, 4, 190, 17, 76, 143, 222, 3, 83, 2, 187, 30, 69,
162, 1, 148, 2, 11, 65, 82, 77, 32, 67, 73, 82, 67, 76, 69, 32, 98, 66,
54, 67, 174, 4, 68, 100, 8, 70, 73, 78, 71, 69, 82, 32, 67, 64, 5, 72,
85, 77, 80, 32, 60, 5, 76, 79, 79, 80, 32, 102, 80, 34, 83, 216, 1, 7,
84, 82, 73, 80, 76, 69, 32, 218, 1, 87, 202, 2, 90, 231, 246, 7, 74, 8,
18, 77, 39, 83, 4, 225, 13, 5, 69, 68, 73, 85, 77, 4, 11, 77, 4, 177, 13,
3, 65, 76, 76, 12, 34, 79, 185, 13, 3, 69, 78, 68, 6, 183, 13, 88, 46,
100, 6, 79, 82, 78, 69, 82, 32, 88, 4, 85, 82, 86, 69, 232, 11, 4, 72,
69, 67, 75, 211, 177, 7, 82, 8, 54, 82, 194, 12, 76, 154, 167, 2, 77,
247, 182, 1, 83, 2, 11, 79, 2, 159, 187, 5, 84, 30, 50, 32, 137, 2, 7,
68, 32, 67, 82, 79, 83, 83, 26, 66, 72, 68, 2, 84, 72, 133, 5, 7, 81, 85,
65, 82, 84, 69, 82, 12, 196, 5, 10, 65, 76, 70, 45, 67, 73, 82, 67, 76,
69, 147, 14, 73, 6, 96, 2, 69, 78, 29, 18, 82, 69, 69, 45, 81, 85, 65,
82, 84, 69, 82, 32, 67, 73, 82, 67, 76, 69, 2, 11, 32, 2, 131, 1, 83, 4,
11, 32, 4, 238, 176, 2, 77, 247, 182, 1, 83, 8, 33, 6, 79, 85, 66, 76,
69, 32, 8, 30, 83, 150, 4, 65, 75, 87, 2, 213, 210, 8, 3, 84, 82, 65, 6,
32, 3, 73, 82, 67, 151, 9, 79, 4, 173, 7, 3, 76, 69, 83, 10, 142, 8, 76,
166, 8, 72, 246, 158, 2, 77, 247, 182, 1, 83, 12, 68, 5, 83, 77, 65, 76,
76, 142, 7, 76, 166, 8, 72, 247, 158, 2, 77, 5, 11, 32, 2, 207, 36, 68,
6, 181, 6, 4, 69, 65, 75, 83, 12, 22, 73, 211, 36, 72, 10, 29, 5, 78, 71,
76, 69, 32, 10, 52, 8, 83, 84, 82, 65, 73, 71, 72, 84, 207, 1, 87, 8, 11,
32, 8, 42, 76, 194, 172, 2, 77, 247, 182, 1, 83, 4, 25, 4, 65, 82, 71,
69, 5, 151, 221, 8, 83, 8, 26, 65, 74, 87, 63, 83, 4, 49, 10, 76, 84, 69,
82, 78, 65, 84, 73, 78, 71, 5, 17, 2, 32, 87, 2, 29, 5, 82, 73, 83, 84,
32, 2, 149, 208, 7, 2, 70, 76, 2, 37, 7, 84, 82, 65, 73, 71, 72, 84, 2,
139, 20, 32, 26, 104, 4, 65, 86, 69, 32, 185, 1, 17, 82, 73, 83, 84, 32,
67, 73, 82, 67, 76, 69, 32, 70, 82, 79, 78, 84, 22, 108, 6, 67, 85, 82,
86, 69, 32, 140, 1, 13, 68, 73, 65, 71, 79, 78, 65, 76, 32, 80, 65, 84,
72, 223, 8, 72, 12, 48, 4, 68, 79, 85, 66, 1, 4, 84, 82, 73, 80, 6, 85,
2, 76, 69, 4, 11, 32, 4, 190, 30, 68, 43, 83, 6, 29, 5, 73, 71, 90, 65,
71, 6, 11, 32, 6, 42, 76, 154, 167, 2, 77, 247, 182, 1, 83, 2, 159, 178,
7, 65, 10, 40, 4, 79, 83, 69, 32, 247, 193, 7, 69, 8, 26, 67, 46, 78, 35,
87, 2, 11, 79, 2, 193, 226, 7, 3, 78, 84, 65, 2, 197, 231, 7, 3, 69, 85,
84, 4, 44, 3, 82, 73, 78, 237, 157, 1, 2, 73, 71, 2, 199, 177, 5, 75, 72,
56, 7, 79, 84, 65, 84, 73, 79, 78, 205, 22, 2, 85, 66, 66, 60, 10, 32,
77, 79, 68, 73, 70, 73, 69, 82, 45, 155, 1, 45, 30, 82, 49, 254, 240, 8,
50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 14, 250, 240, 8, 48,
2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 36, 104, 11, 70, 76, 79, 79,
82, 80, 76, 65, 78, 69, 32, 133, 2, 10, 87, 65, 76, 76, 80, 76, 65, 78,
69, 32, 18, 100, 4, 68, 79, 85, 66, 0, 4, 83, 73, 78, 71, 21, 11, 65, 76,
84, 69, 82, 78, 65, 84, 73, 78, 71, 6, 17, 2, 76, 69, 7, 45, 9, 32, 72,
73, 84, 84, 73, 78, 71, 32, 4, 32, 2, 67, 69, 33, 2, 70, 76, 2, 11, 73,
2, 235, 156, 8, 76, 2, 243, 180, 8, 79, 18, 88, 8, 65, 76, 84, 69, 82,
78, 65, 84, 44, 4, 68, 79, 85, 66, 1, 4, 83, 73, 78, 71, 6, 72, 4, 73,
78, 71, 32, 163, 236, 8, 69, 6, 17, 2, 76, 69, 7, 11, 32, 4, 11, 72, 4,
11, 73, 4, 33, 6, 84, 84, 73, 78, 71, 32, 4, 44, 5, 70, 82, 79, 78, 84,
139, 249, 4, 67, 2, 253, 224, 6, 2, 32, 87, 30, 172, 1, 8, 72, 79, 85,
76, 68, 69, 82, 32, 196, 1, 7, 81, 85, 69, 69, 90, 69, 32, 240, 1, 7, 85,
82, 70, 65, 67, 69, 32, 240, 10, 5, 84, 82, 73, 75, 69, 183, 140, 5, 69,
6, 100, 4, 72, 73, 80, 32, 225, 251, 3, 15, 84, 73, 76, 84, 73, 78, 71,
32, 70, 82, 79, 77, 32, 87, 65, 4, 48, 4, 80, 79, 83, 73, 145, 205, 7, 2,
83, 80, 2, 11, 84, 2, 145, 161, 5, 2, 73, 79, 12, 48, 6, 70, 76, 73, 67,
75, 32, 18, 76, 35, 83, 2, 211, 16, 65, 4, 129, 1, 4, 65, 82, 71, 69, 6,
34, 69, 65, 4, 77, 65, 76, 76, 2, 17, 2, 81, 85, 2, 21, 3, 69, 78, 84, 2,
147, 219, 7, 73, 4, 11, 32, 4, 214, 11, 77, 187, 4, 83, 4, 22, 83, 135,
11, 66, 2, 129, 208, 1, 4, 89, 77, 66, 79, 82, 58, 69, 218, 2, 79, 137,
8, 6, 82, 65, 86, 69, 76, 45, 20, 76, 3, 69, 84, 72, 185, 1, 11, 78, 83,
69, 32, 67, 72, 69, 69, 75, 83, 32, 15, 11, 32, 12, 56, 3, 79, 78, 32,
86, 77, 177, 5, 4, 66, 73, 84, 69, 8, 56, 4, 76, 73, 80, 83, 1, 6, 84,
79, 78, 71, 85, 69, 5, 11, 32, 2, 11, 77, 2, 149, 200, 3, 2, 79, 86, 6,
50, 77, 220, 181, 4, 2, 72, 73, 255, 144, 3, 76, 2, 225, 168, 3, 2, 73,
68, 28, 76, 5, 78, 71, 85, 69, 32, 196, 4, 4, 82, 83, 79, 45, 129, 2, 2,
85, 67, 16, 192, 2, 7, 67, 69, 78, 84, 82, 69, 32, 52, 14, 73, 78, 83,
73, 68, 69, 32, 77, 79, 85, 84, 72, 32, 82, 36, 4, 84, 73, 80, 32, 88, 7,
76, 73, 67, 75, 73, 78, 71, 228, 186, 7, 14, 83, 84, 73, 67, 75, 73, 78,
71, 32, 79, 85, 84, 32, 70, 153, 160, 1, 17, 77, 79, 86, 69, 83, 32, 65,
71, 65, 73, 78, 83, 84, 32, 67, 72, 69, 4, 214, 1, 73, 129, 186, 3, 5,
83, 84, 73, 67, 75, 2, 129, 203, 3, 4, 69, 76, 65, 88, 4, 84, 7, 66, 69,
84, 87, 69, 69, 78, 41, 10, 84, 79, 85, 67, 72, 73, 78, 71, 32, 73, 2,
11, 32, 2, 241, 165, 5, 2, 76, 73, 2, 241, 184, 5, 5, 78, 83, 73, 68, 69,
6, 120, 10, 87, 65, 76, 76, 80, 76, 65, 78, 69, 32, 201, 205, 3, 14, 70,
76, 79, 79, 82, 80, 76, 65, 78, 69, 32, 84, 87, 73, 4, 108, 8, 67, 85,
82, 86, 69, 68, 32, 66, 169, 204, 1, 13, 83, 84, 82, 65, 73, 71, 72, 84,
32, 83, 84, 82, 69, 2, 207, 203, 7, 69, 6, 11, 72, 6, 11, 32, 6, 30, 66,
34, 77, 187, 4, 83, 2, 133, 133, 7, 3, 69, 84, 87, 2, 149, 2, 3, 85, 76,
84, 34, 100, 11, 70, 76, 79, 79, 82, 80, 76, 65, 78, 69, 32, 29, 10, 87,
65, 76, 76, 80, 76, 65, 78, 69, 32, 14, 178, 1, 82, 151, 2, 83, 20, 72,
11, 65, 82, 77, 32, 83, 80, 73, 82, 65, 76, 32, 78, 82, 151, 2, 83, 6,
30, 84, 134, 2, 68, 43, 83, 2, 11, 82, 2, 11, 73, 2, 151, 178, 7, 80, 12,
41, 8, 79, 84, 65, 84, 73, 79, 78, 45, 12, 52, 5, 70, 76, 79, 79, 82, 1,
4, 87, 65, 76, 76, 6, 33, 6, 80, 76, 65, 78, 69, 32, 6, 26, 65, 54, 68,
43, 83, 2, 29, 5, 76, 84, 69, 82, 78, 2, 151, 200, 3, 65, 2, 17, 2, 79,
85, 2, 151, 176, 7, 66, 2, 235, 175, 7, 73, 2, 11, 72, 2, 151, 198, 3,
65, 2, 11, 73, 2, 195, 205, 7, 78, 10, 100, 6, 65, 66, 79, 86, 69, 32,
162, 1, 79, 141, 148, 2, 10, 77, 73, 78, 85, 83, 32, 83, 73, 77, 73, 4,
60, 7, 71, 82, 69, 65, 84, 69, 82, 1, 4, 76, 69, 83, 83, 2, 37, 7, 45,
84, 72, 65, 78, 32, 65, 2, 25, 4, 66, 79, 86, 69, 2, 185, 241, 1, 2, 32,
69, 4, 207, 189, 6, 82, 250, 1, 68, 3, 71, 76, 69, 212, 4, 5, 72, 65, 76,
65, 32, 211, 171, 5, 69, 20, 50, 32, 209, 209, 8, 6, 45, 83, 72, 73, 70,
84, 16, 138, 1, 67, 0, 9, 71, 82, 65, 80, 72, 73, 67, 32, 67, 116, 2, 72,
73, 74, 76, 36, 4, 82, 73, 71, 72, 209, 254, 4, 4, 83, 72, 73, 70, 2, 41,
8, 72, 65, 82, 65, 67, 84, 69, 82, 2, 37, 7, 32, 73, 78, 84, 82, 79, 68,
2, 11, 85, 2, 247, 146, 8, 67, 2, 25, 4, 71, 72, 45, 82, 2, 185, 1, 7,
69, 86, 69, 82, 83, 69, 68, 4, 32, 2, 69, 70, 109, 2, 79, 87, 2, 49, 10,
84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 2, 21, 3, 32, 65, 78, 2, 17, 2,
71, 76, 2, 31, 69, 2, 17, 2, 45, 57, 2, 11, 32, 2, 11, 81, 2, 165, 176,
2, 2, 85, 79, 228, 1, 168, 2, 8, 65, 82, 67, 72, 65, 73, 67, 32, 224, 1,
15, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 114, 76,
188, 8, 5, 83, 73, 71, 78, 32, 144, 1, 11, 86, 79, 87, 69, 76, 32, 83,
73, 71, 78, 32, 209, 232, 2, 17, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79,
78, 32, 75, 85, 78, 68, 68, 40, 46, 68, 109, 7, 78, 85, 77, 66, 69, 82,
32, 18, 25, 4, 73, 71, 73, 84, 18, 11, 32, 18, 154, 216, 6, 70, 30, 83,
42, 84, 142, 87, 78, 14, 79, 227, 112, 69, 22, 130, 238, 2, 79, 162, 235,
3, 69, 30, 70, 42, 78, 38, 83, 39, 84, 6, 18, 82, 63, 89, 4, 56, 6, 65,
75, 65, 65, 82, 65, 233, 198, 8, 2, 69, 80, 2, 229, 198, 8, 3, 65, 78,
83, 138, 1, 60, 6, 69, 84, 84, 69, 82, 32, 185, 186, 2, 3, 73, 84, 72,
118, 246, 1, 65, 106, 69, 34, 73, 62, 85, 34, 77, 220, 1, 4, 68, 65, 78,
84, 58, 79, 28, 8, 83, 65, 78, 89, 65, 75, 65, 32, 50, 70, 2, 72, 2, 82,
2, 86, 2, 89, 32, 8, 84, 65, 65, 76, 85, 74, 65, 32, 29, 9, 75, 65, 78,
84, 65, 74, 65, 32, 78, 34, 102, 69, 204, 1, 2, 76, 80, 144, 2, 5, 77,
66, 65, 32, 66, 14, 65, 2, 73, 2, 85, 219, 135, 5, 89, 4, 230, 3, 69,
219, 135, 5, 89, 12, 46, 76, 2, 82, 154, 3, 73, 219, 135, 5, 89, 4, 11,
85, 4, 138, 3, 85, 219, 135, 5, 89, 28, 42, 65, 177, 1, 5, 85, 85, 82,
68, 72, 22, 32, 2, 72, 65, 247, 137, 5, 89, 20, 41, 8, 65, 80, 82, 65,
65, 78, 65, 32, 20, 70, 84, 138, 1, 68, 22, 66, 2, 67, 2, 71, 2, 74, 2,
75, 3, 80, 4, 154, 1, 84, 15, 65, 6, 25, 4, 65, 74, 65, 32, 6, 102, 76,
2, 78, 3, 83, 4, 86, 79, 219, 135, 5, 89, 8, 26, 68, 22, 71, 3, 74, 4,
18, 68, 15, 65, 2, 11, 65, 2, 215, 135, 5, 89, 6, 26, 78, 21, 2, 83, 65,
2, 89, 2, 65, 65, 4, 68, 11, 78, 89, 79, 79, 71, 65, 32, 78, 65, 65, 75,
207, 134, 5, 89, 2, 173, 190, 8, 4, 83, 73, 75, 89, 8, 66, 65, 210, 162,
4, 67, 249, 154, 4, 6, 86, 73, 83, 65, 82, 71, 4, 200, 116, 5, 76, 45,
76, 65, 75, 253, 200, 7, 6, 78, 85, 83, 86, 65, 82, 34, 56, 5, 68, 73,
71, 65, 32, 62, 71, 82, 75, 155, 2, 65, 12, 58, 71, 48, 4, 75, 79, 77,
66, 118, 65, 26, 73, 19, 80, 4, 11, 65, 4, 236, 2, 3, 69, 84, 84, 67, 89,
2, 11, 85, 2, 247, 187, 8, 86, 16, 52, 5, 69, 84, 84, 73, 32, 85, 4, 79,
77, 66, 85, 6, 26, 65, 26, 73, 19, 80, 2, 213, 1, 2, 69, 68, 2, 203, 1,
83, 2, 175, 1, 65, 10, 40, 2, 86, 65, 161, 142, 8, 2, 32, 68, 9, 29, 5,
32, 72, 65, 65, 32, 6, 62, 65, 0, 6, 68, 73, 71, 65, 32, 65, 85, 3, 71,
65, 89, 2, 17, 2, 69, 76, 2, 11, 65, 2, 17, 2, 45, 80, 2, 11, 73, 2, 171,
153, 8, 76, 2, 129, 136, 6, 5, 65, 78, 85, 75, 73, 12, 84, 2, 32, 80,
206, 2, 45, 137, 160, 6, 10, 84, 69, 69, 78, 32, 80, 79, 73, 78, 84, 8,
140, 1, 23, 69, 84, 65, 76, 76, 69, 68, 32, 66, 76, 65, 67, 75, 32, 65,
78, 68, 32, 87, 72, 73, 84, 69, 49, 7, 79, 73, 78, 84, 69, 68, 32, 2, 25,
4, 32, 70, 76, 79, 2, 219, 239, 6, 82, 6, 78, 80, 150, 158, 6, 66, 153,
134, 1, 9, 83, 84, 65, 82, 32, 87, 73, 84, 72, 2, 21, 3, 73, 78, 87, 2,
149, 158, 6, 4, 72, 69, 69, 76, 2, 235, 213, 3, 80, 12, 46, 73, 102, 85,
173, 157, 7, 3, 65, 84, 69, 4, 56, 8, 32, 65, 78, 68, 32, 83, 75, 73,
139, 254, 7, 69, 2, 17, 2, 32, 66, 2, 151, 230, 7, 79, 6, 32, 2, 76, 76,
131, 179, 8, 78, 5, 11, 32, 2, 49, 10, 65, 78, 68, 32, 67, 82, 79, 83,
83, 66, 2, 11, 79, 2, 199, 159, 7, 78, 42, 46, 65, 198, 4, 69, 210, 1,
73, 167, 1, 79, 14, 64, 5, 78, 84, 69, 68, 32, 253, 156, 6, 5, 86, 79,
78, 73, 67, 12, 148, 1, 12, 69, 81, 85, 65, 76, 32, 84, 79, 32, 79, 82,
32, 229, 1, 19, 78, 79, 82, 84, 72, 32, 65, 82, 82, 79, 87, 32, 87, 73,
84, 72, 32, 72, 79, 8, 60, 7, 71, 82, 69, 65, 84, 69, 82, 1, 4, 76, 69,
83, 83, 4, 29, 5, 45, 84, 72, 65, 78, 5, 11, 32, 2, 25, 4, 87, 73, 84,
72, 2, 25, 4, 32, 68, 79, 84, 2, 17, 2, 32, 73, 2, 11, 78, 2, 11, 83, 2,
231, 158, 6, 73, 4, 24, 2, 79, 75, 43, 82, 2, 17, 2, 69, 68, 2, 203, 216,
5, 32, 2, 29, 5, 73, 90, 79, 78, 84, 2, 11, 65, 2, 155, 249, 5, 76, 12,
80, 2, 69, 80, 168, 158, 8, 9, 85, 84, 72, 32, 79, 82, 32, 83, 80, 203,
17, 68, 8, 40, 4, 73, 78, 71, 32, 167, 242, 7, 89, 6, 244, 233, 4, 8, 65,
67, 67, 79, 77, 77, 79, 68, 162, 176, 2, 83, 167, 88, 70, 6, 76, 9, 67,
69, 32, 79, 70, 32, 80, 73, 90, 21, 6, 71, 72, 84, 76, 89, 32, 2, 235,
171, 8, 90, 4, 40, 2, 83, 77, 169, 229, 6, 2, 70, 82, 2, 219, 246, 6, 73,
10, 18, 80, 75, 84, 6, 220, 232, 4, 9, 73, 78, 71, 32, 76, 65, 82, 71,
69, 223, 196, 3, 69, 4, 26, 32, 219, 172, 8, 72, 2, 11, 77, 2, 141, 145,
7, 3, 65, 67, 72, 150, 1, 34, 65, 158, 13, 73, 207, 7, 79, 116, 32, 2,
76, 76, 151, 154, 7, 83, 114, 30, 32, 141, 12, 2, 69, 82, 110, 194, 2,
65, 48, 3, 66, 76, 85, 0, 5, 79, 82, 65, 78, 71, 20, 2, 67, 79, 158, 1,
68, 22, 69, 140, 2, 11, 73, 68, 69, 79, 71, 82, 65, 80, 72, 73, 67, 28,
2, 76, 69, 34, 82, 218, 3, 83, 22, 84, 36, 2, 85, 80, 56, 4, 86, 69, 69,
32, 196, 252, 1, 3, 71, 82, 69, 34, 72, 146, 4, 80, 206, 83, 78, 134,
246, 2, 70, 83, 81, 6, 134, 214, 4, 77, 214, 49, 73, 255, 137, 1, 83, 2,
131, 218, 6, 69, 12, 68, 7, 78, 84, 65, 73, 78, 83, 32, 134, 130, 2, 77,
131, 214, 5, 76, 6, 36, 4, 65, 83, 32, 77, 175, 1, 87, 2, 11, 69, 2, 11,
77, 2, 195, 233, 7, 66, 2, 151, 130, 2, 79, 12, 84, 9, 76, 69, 77, 69,
78, 84, 32, 79, 70, 222, 129, 2, 81, 42, 88, 183, 227, 2, 77, 7, 17, 2,
32, 87, 4, 25, 4, 73, 84, 72, 32, 4, 26, 86, 239, 243, 4, 79, 2, 197,
253, 5, 21, 69, 82, 84, 73, 67, 65, 76, 32, 66, 65, 82, 32, 65, 84, 32,
69, 78, 68, 32, 79, 70, 2, 165, 207, 5, 2, 32, 67, 8, 130, 1, 70, 179,
132, 2, 83, 40, 96, 3, 73, 71, 72, 64, 13, 79, 77, 65, 78, 32, 78, 85,
77, 69, 82, 65, 76, 32, 251, 137, 6, 69, 6, 17, 2, 84, 32, 6, 238, 152,
4, 67, 210, 3, 80, 147, 8, 84, 32, 62, 69, 50, 70, 62, 79, 46, 84, 214,
174, 6, 83, 183, 87, 78, 4, 26, 76, 255, 247, 7, 73, 2, 231, 175, 6, 69,
8, 26, 73, 191, 169, 7, 79, 6, 146, 26, 86, 159, 152, 6, 70, 6, 11, 78,
6, 11, 69, 7, 151, 197, 2, 32, 8, 42, 87, 238, 174, 6, 72, 207, 162, 1,
69, 4, 26, 69, 255, 160, 8, 79, 2, 167, 164, 7, 76, 2, 215, 209, 4, 69,
4, 174, 253, 3, 87, 151, 134, 2, 73, 2, 253, 253, 4, 9, 45, 80, 79, 73,
78, 84, 73, 78, 71, 2, 11, 87, 2, 21, 3, 73, 84, 72, 2, 11, 32, 2, 195,
176, 4, 85, 4, 29, 5, 32, 84, 72, 65, 78, 5, 11, 32, 2, 11, 79, 2, 159,
189, 1, 82, 32, 34, 76, 165, 150, 7, 2, 82, 75, 30, 40, 4, 73, 78, 71,
32, 155, 158, 8, 69, 28, 112, 14, 67, 65, 84, 32, 70, 65, 67, 69, 32, 87,
73, 84, 72, 32, 41, 10, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 4, 160,
1, 2, 72, 69, 231, 246, 4, 79, 24, 86, 72, 108, 10, 79, 80, 69, 78, 32,
77, 79, 85, 84, 72, 246, 1, 83, 215, 224, 2, 84, 6, 34, 69, 54, 79, 255,
248, 7, 65, 2, 237, 156, 5, 8, 65, 82, 84, 45, 83, 72, 65, 80, 2, 159,
212, 4, 82, 9, 29, 5, 32, 65, 78, 68, 32, 6, 26, 67, 58, 83, 71, 84, 2,
17, 2, 79, 76, 2, 169, 145, 7, 4, 68, 32, 83, 87, 2, 11, 77, 2, 11, 73,
2, 11, 76, 2, 161, 155, 5, 3, 73, 78, 71, 2, 37, 7, 73, 71, 72, 84, 76,
89, 45, 2, 175, 154, 5, 67, 8, 64, 11, 77, 73, 76, 73, 78, 71, 32, 69,
89, 69, 83, 175, 1, 85, 7, 29, 5, 32, 65, 78, 68, 32, 4, 52, 4, 72, 65,
78, 68, 57, 5, 84, 72, 82, 69, 69, 2, 161, 243, 4, 9, 32, 67, 79, 86, 69,
82, 73, 78, 71, 2, 181, 210, 4, 2, 32, 72, 2, 17, 2, 78, 71, 2, 185, 129,
7, 4, 76, 65, 83, 83, 2, 239, 230, 4, 75, 18, 42, 65, 48, 2, 69, 69, 21,
2, 79, 87, 6, 26, 75, 243, 138, 7, 73, 4, 195, 136, 1, 69, 2, 139, 142,
7, 90, 10, 100, 7, 32, 67, 65, 80, 80, 69, 68, 28, 3, 77, 65, 78, 132,
223, 2, 3, 66, 79, 65, 143, 143, 1, 70, 2, 153, 169, 4, 2, 32, 77, 5, 49,
10, 32, 87, 73, 84, 72, 79, 85, 84, 32, 83, 2, 183, 248, 6, 78, 155, 3,
162, 2, 67, 48, 2, 70, 84, 228, 1, 6, 71, 68, 73, 65, 78, 32, 244, 10, 3,
76, 73, 68, 140, 2, 12, 79, 78, 32, 87, 73, 84, 72, 32, 82, 73, 71, 72,
20, 11, 82, 65, 32, 83, 79, 77, 80, 69, 78, 71, 32, 234, 2, 85, 216, 8,
6, 89, 79, 77, 66, 79, 32, 190, 240, 6, 77, 130, 135, 1, 72, 3, 83, 4,
164, 233, 2, 3, 67, 69, 82, 163, 235, 4, 75, 10, 70, 32, 124, 9, 87, 65,
82, 69, 45, 70, 85, 78, 67, 255, 133, 6, 66, 6, 58, 72, 44, 6, 73, 67,
69, 32, 67, 82, 227, 200, 6, 83, 2, 11, 89, 2, 11, 80, 2, 211, 186, 6,
72, 2, 179, 211, 6, 69, 2, 11, 84, 2, 235, 149, 6, 73, 84, 248, 1, 10,
67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 168, 2, 13, 73, 78, 68, 69, 80,
69, 78, 68, 69, 78, 84, 32, 83, 20, 7, 76, 69, 84, 84, 69, 82, 32, 188,
3, 7, 78, 85, 77, 66, 69, 82, 32, 113, 12, 80, 85, 78, 67, 84, 85, 65,
84, 73, 79, 78, 32, 22, 140, 1, 3, 72, 79, 79, 20, 4, 76, 79, 78, 71, 50,
83, 58, 84, 242, 231, 3, 68, 128, 243, 1, 4, 82, 69, 83, 72, 249, 14, 4,
67, 85, 82, 86, 4, 239, 234, 5, 75, 2, 25, 4, 32, 72, 79, 79, 2, 187,
219, 5, 75, 2, 21, 3, 84, 82, 79, 2, 11, 75, 2, 131, 219, 5, 69, 4, 233,
222, 1, 2, 87, 79, 2, 151, 140, 7, 72, 42, 190, 1, 65, 50, 71, 34, 76,
56, 5, 82, 69, 83, 72, 45, 2, 90, 34, 83, 66, 89, 198, 207, 1, 72, 234,
5, 75, 174, 81, 66, 2, 70, 170, 225, 4, 78, 134, 2, 84, 2, 87, 218, 103,
80, 171, 4, 77, 4, 26, 76, 171, 138, 7, 89, 2, 131, 215, 1, 69, 2, 11,
73, 2, 171, 244, 2, 77, 4, 26, 65, 167, 158, 6, 69, 2, 233, 208, 1, 2,
77, 69, 2, 11, 65, 2, 175, 137, 7, 89, 6, 26, 65, 131, 137, 7, 72, 4,
222, 199, 1, 77, 235, 147, 6, 68, 2, 239, 207, 1, 79, 8, 18, 79, 59, 84,
4, 11, 78, 4, 11, 69, 5, 11, 32, 2, 183, 171, 2, 72, 4, 214, 151, 6, 87,
155, 160, 1, 69, 10, 66, 67, 0, 6, 72, 65, 76, 70, 32, 67, 53, 4, 84, 87,
79, 32, 2, 21, 3, 73, 82, 67, 2, 225, 246, 4, 2, 76, 69, 6, 100, 13, 86,
69, 82, 84, 73, 67, 65, 76, 32, 66, 65, 82, 83, 13, 8, 67, 73, 82, 67,
76, 69, 83, 32, 5, 11, 32, 2, 229, 178, 6, 4, 87, 73, 84, 72, 8, 30, 32,
189, 1, 2, 85, 83, 4, 93, 21, 81, 85, 73, 76, 84, 32, 83, 81, 85, 65, 82,
69, 32, 79, 82, 78, 65, 77, 69, 78, 84, 5, 11, 32, 2, 11, 73, 2, 17, 2,
78, 32, 2, 11, 66, 2, 237, 224, 6, 4, 76, 65, 67, 75, 5, 197, 209, 4, 7,
32, 87, 73, 84, 72, 32, 79, 2, 231, 132, 4, 84, 70, 52, 7, 76, 69, 84,
84, 69, 82, 32, 191, 142, 6, 68, 50, 198, 1, 69, 32, 2, 77, 65, 30, 78,
194, 146, 1, 66, 2, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, 80,
2, 82, 2, 83, 2, 84, 2, 86, 2, 89, 242, 236, 6, 65, 2, 73, 2, 79, 3, 85,
4, 234, 255, 7, 69, 147, 1, 72, 4, 218, 128, 8, 69, 3, 72, 6, 190, 146,
1, 71, 2, 89, 243, 236, 6, 65, 58, 104, 3, 84, 72, 32, 149, 172, 6, 17,
78, 68, 32, 82, 69, 67, 79, 82, 68, 73, 78, 71, 32, 67, 79, 80, 89, 56,
60, 5, 69, 65, 83, 84, 32, 253, 2, 5, 87, 69, 83, 84, 32, 30, 96, 5, 65,
82, 82, 79, 87, 194, 4, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68, 18, 83,
251, 58, 87, 13, 11, 32, 10, 68, 2, 65, 78, 38, 67, 120, 2, 84, 79, 154,
2, 87, 131, 145, 5, 70, 2, 253, 2, 5, 68, 32, 83, 79, 85, 2, 37, 7, 82,
79, 83, 83, 73, 78, 71, 2, 17, 2, 32, 78, 2, 17, 2, 79, 82, 2, 229, 143,
5, 5, 84, 72, 32, 69, 65, 2, 17, 2, 32, 67, 2, 167, 251, 3, 79, 26, 96,
5, 65, 82, 82, 79, 87, 198, 1, 80, 130, 1, 84, 190, 207, 4, 66, 38, 68,
18, 83, 251, 58, 87, 9, 11, 32, 6, 52, 5, 65, 78, 68, 32, 78, 74, 87,
131, 145, 5, 70, 2, 17, 2, 79, 82, 2, 21, 3, 84, 72, 32, 2, 193, 141, 5,
2, 87, 69, 2, 21, 3, 73, 84, 72, 2, 11, 32, 2, 231, 163, 6, 72, 6, 41, 8,
79, 73, 78, 84, 73, 78, 71, 32, 6, 42, 86, 166, 171, 4, 76, 219, 159, 2,
66, 2, 17, 2, 73, 78, 2, 251, 170, 4, 69, 4, 73, 16, 82, 73, 65, 78, 71,
76, 69, 45, 72, 69, 65, 68, 69, 68, 32, 65, 4, 25, 4, 82, 82, 79, 87, 5,
11, 32, 2, 131, 148, 5, 84, 166, 1, 220, 3, 23, 67, 76, 85, 83, 84, 69,
82, 45, 73, 78, 73, 84, 73, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 40,
21, 70, 73, 78, 65, 76, 32, 67, 79, 78, 83, 79, 78, 65, 78, 84, 32, 83,
73, 71, 78, 32, 112, 27, 72, 69, 65, 68, 32, 77, 65, 82, 75, 32, 87, 73,
84, 72, 32, 77, 79, 79, 78, 32, 65, 78, 68, 32, 83, 85, 78, 104, 7, 76,
69, 84, 84, 69, 82, 32, 180, 1, 5, 77, 65, 82, 75, 32, 54, 83, 100, 8,
84, 69, 82, 77, 73, 78, 65, 76, 40, 6, 86, 79, 87, 69, 76, 32, 131, 143,
4, 71, 8, 150, 172, 7, 83, 138, 69, 76, 3, 82, 24, 206, 226, 3, 83, 226,
146, 2, 78, 202, 251, 1, 45, 186, 2, 66, 2, 68, 2, 71, 2, 75, 2, 76, 2,
77, 3, 82, 7, 29, 5, 32, 65, 78, 68, 32, 4, 50, 70, 1, 8, 84, 82, 73, 80,
76, 69, 32, 70, 2, 139, 224, 5, 76, 82, 162, 194, 2, 68, 214, 230, 4, 75,
38, 78, 46, 83, 38, 84, 46, 66, 2, 67, 2, 71, 2, 74, 2, 80, 2, 90, 138,
69, 45, 2, 72, 2, 76, 2, 77, 2, 82, 2, 86, 2, 89, 187, 2, 65, 8, 146,
151, 4, 80, 162, 146, 3, 68, 58, 83, 63, 84, 10, 40, 4, 73, 71, 78, 32,
147, 173, 7, 85, 8, 186, 179, 5, 74, 158, 2, 86, 122, 85, 255, 243, 1,
65, 4, 161, 233, 3, 5, 32, 77, 65, 82, 75, 22, 44, 5, 83, 73, 71, 78, 32,
187, 172, 7, 76, 20, 88, 7, 86, 79, 67, 65, 76, 73, 67, 162, 173, 7, 65,
26, 79, 2, 85, 162, 64, 69, 3, 73, 4, 11, 32, 4, 202, 237, 7, 76, 3, 82,
71, 122, 65, 206, 1, 69, 168, 5, 13, 72, 69, 82, 73, 67, 65, 76, 32, 65,
78, 71, 76, 69, 82, 73, 220, 1, 2, 76, 65, 91, 79, 17, 48, 4, 71, 72, 69,
84, 22, 82, 155, 213, 7, 67, 2, 167, 216, 7, 84, 10, 24, 2, 75, 76, 59,
83, 6, 26, 73, 223, 225, 5, 69, 2, 245, 227, 6, 2, 78, 71, 4, 17, 2, 69,
32, 4, 202, 53, 72, 135, 3, 86, 22, 104, 2, 65, 75, 230, 3, 69, 68, 4,
83, 77, 73, 76, 193, 223, 3, 9, 67, 75, 76, 69, 32, 70, 73, 76, 76, 12,
70, 45, 64, 2, 69, 82, 153, 2, 8, 73, 78, 71, 32, 72, 69, 65, 68, 2, 205,
203, 5, 11, 78, 79, 45, 69, 86, 73, 76, 32, 77, 79, 78, 9, 33, 6, 32, 87,
73, 84, 72, 32, 6, 26, 67, 78, 79, 55, 84, 2, 33, 6, 65, 78, 67, 69, 76,
76, 2, 249, 183, 7, 5, 65, 84, 73, 79, 78, 2, 133, 197, 4, 8, 78, 69, 32,
83, 79, 85, 78, 68, 2, 25, 4, 72, 82, 69, 69, 2, 145, 209, 6, 10, 32, 83,
79, 85, 78, 68, 32, 87, 65, 86, 2, 11, 32, 2, 165, 157, 6, 9, 73, 78, 32,
83, 73, 76, 72, 79, 85, 4, 34, 68, 197, 251, 2, 2, 67, 72, 2, 11, 66, 2,
183, 220, 6, 79, 2, 211, 222, 6, 79, 7, 45, 9, 32, 79, 80, 69, 78, 73,
78, 71, 32, 4, 162, 186, 7, 76, 227, 42, 85, 10, 44, 3, 68, 69, 82, 41,
4, 82, 65, 76, 32, 5, 17, 2, 32, 87, 2, 179, 166, 6, 69, 6, 80, 8, 67,
65, 76, 69, 78, 68, 65, 82, 0, 4, 78, 79, 84, 69, 29, 2, 83, 72, 2, 149,
157, 7, 2, 32, 80, 2, 255, 216, 5, 69, 4, 64, 10, 83, 72, 73, 78, 71, 32,
83, 87, 69, 65, 199, 168, 6, 84, 2, 139, 205, 6, 84, 10, 90, 79, 60, 7,
85, 84, 73, 78, 71, 32, 87, 144, 246, 2, 3, 82, 84, 83, 227, 179, 3, 78,
4, 248, 87, 7, 76, 32, 79, 70, 32, 84, 72, 231, 137, 7, 78, 2, 11, 72, 2,
219, 186, 6, 65, 222, 5, 26, 65, 199, 154, 7, 73, 220, 5, 28, 2, 82, 69,
155, 69, 84, 218, 5, 30, 32, 233, 46, 2, 68, 32, 234, 3, 250, 1, 65, 104,
2, 86, 32, 94, 66, 158, 1, 67, 170, 1, 68, 102, 69, 194, 2, 70, 146, 2,
71, 222, 1, 72, 214, 2, 73, 94, 75, 182, 4, 76, 102, 77, 206, 5, 78, 94,
79, 178, 1, 80, 222, 3, 82, 154, 3, 83, 206, 2, 84, 74, 87, 230, 6, 89,
143, 226, 6, 85, 16, 102, 32, 58, 80, 252, 72, 2, 78, 80, 204, 158, 2, 3,
82, 85, 72, 186, 51, 65, 254, 193, 4, 77, 3, 85, 2, 21, 3, 79, 86, 69, 2,
11, 82, 2, 183, 204, 7, 32, 4, 166, 190, 2, 69, 223, 142, 1, 65, 14, 98,
65, 36, 4, 85, 83, 83, 89, 214, 153, 3, 73, 232, 78, 2, 79, 82, 130, 54,
69, 151, 189, 3, 81, 4, 32, 2, 65, 82, 211, 219, 7, 82, 2, 211, 153, 3,
69, 22, 98, 65, 30, 79, 146, 20, 77, 216, 197, 7, 7, 32, 79, 86, 69, 82,
32, 75, 74, 85, 14, 67, 3, 68, 4, 214, 218, 7, 76, 3, 80, 5, 17, 2, 82,
80, 2, 215, 199, 2, 79, 20, 82, 65, 150, 19, 77, 186, 211, 2, 69, 250,
48, 79, 254, 193, 4, 66, 2, 74, 3, 76, 5, 251, 21, 65, 18, 66, 69, 22,
82, 152, 25, 5, 83, 85, 75, 85, 85, 195, 191, 7, 86, 2, 183, 227, 5, 75,
12, 52, 7, 65, 32, 78, 65, 77, 69, 32, 163, 216, 7, 71, 10, 132, 1, 4,
72, 69, 73, 83, 20, 5, 84, 65, 73, 83, 89, 140, 22, 3, 77, 69, 73, 156,
199, 2, 3, 82, 69, 73, 1, 4, 83, 89, 79, 85, 2, 191, 195, 7, 69, 2, 155,
178, 7, 79, 12, 26, 79, 215, 214, 7, 77, 10, 60, 9, 85, 82, 32, 67, 79,
82, 78, 69, 82, 235, 185, 7, 79, 8, 26, 32, 251, 213, 7, 83, 6, 128, 1,
11, 66, 76, 65, 67, 75, 32, 84, 82, 73, 65, 78, 208, 62, 6, 68, 73, 65,
71, 79, 78, 161, 210, 3, 5, 83, 65, 76, 84, 73, 2, 219, 147, 4, 71, 24,
102, 65, 46, 73, 160, 12, 5, 85, 82, 65, 77, 85, 134, 233, 5, 72, 242,
219, 1, 80, 186, 2, 66, 3, 89, 6, 138, 132, 7, 82, 222, 46, 78, 147, 33,
76, 6, 42, 82, 214, 140, 5, 78, 151, 196, 2, 71, 2, 233, 221, 5, 2, 85,
68, 30, 130, 1, 65, 22, 69, 54, 79, 62, 85, 142, 191, 3, 80, 136, 137, 4,
10, 73, 82, 65, 71, 65, 78, 65, 32, 72, 79, 234, 8, 71, 3, 90, 5, 183,
249, 1, 73, 4, 156, 11, 3, 75, 85, 84, 133, 238, 1, 2, 82, 85, 6, 26, 79,
159, 209, 7, 78, 4, 178, 172, 7, 82, 235, 36, 78, 6, 54, 73, 132, 17, 4,
65, 82, 65, 68, 167, 243, 5, 82, 2, 187, 221, 3, 73, 14, 54, 78, 200, 12,
4, 77, 65, 71, 69, 179, 195, 7, 85, 7, 206, 215, 2, 73, 211, 228, 4, 84,
58, 234, 1, 65, 56, 3, 73, 82, 79, 78, 77, 90, 79, 60, 2, 85, 82, 140, 8,
2, 69, 69, 208, 143, 2, 2, 89, 85, 206, 213, 3, 72, 206, 82, 67, 132,
123, 3, 32, 79, 72, 162, 14, 80, 186, 2, 66, 2, 71, 2, 75, 2, 76, 2, 84,
2, 86, 3, 87, 9, 22, 82, 135, 98, 73, 4, 166, 21, 65, 183, 132, 2, 79, 9,
248, 16, 3, 77, 69, 69, 140, 4, 2, 87, 65, 193, 176, 2, 3, 71, 85, 82, 9,
11, 32, 6, 22, 67, 195, 14, 83, 4, 22, 65, 175, 6, 85, 2, 169, 244, 4, 2,
80, 73, 4, 18, 79, 23, 82, 2, 131, 173, 7, 80, 2, 203, 141, 6, 85, 4,
204, 217, 5, 4, 85, 90, 69, 73, 171, 69, 79, 12, 62, 79, 240, 13, 2, 69,
70, 242, 188, 7, 77, 2, 78, 3, 88, 4, 146, 147, 6, 90, 207, 183, 1, 71,
82, 158, 1, 32, 70, 65, 122, 66, 22, 69, 54, 73, 110, 77, 68, 2, 85, 32,
78, 86, 2, 87, 246, 230, 5, 72, 218, 82, 79, 154, 137, 1, 80, 186, 2, 71,
2, 76, 3, 83, 10, 34, 79, 242, 2, 67, 139, 8, 83, 6, 198, 10, 86, 219,
173, 7, 72, 13, 54, 73, 44, 2, 78, 83, 226, 84, 82, 239, 245, 4, 72, 4,
156, 214, 5, 2, 75, 85, 155, 205, 1, 82, 2, 135, 248, 6, 89, 5, 167, 177,
2, 32, 6, 28, 2, 71, 65, 251, 10, 69, 5, 191, 247, 6, 84, 8, 42, 75, 20,
2, 82, 73, 219, 198, 7, 76, 2, 183, 159, 6, 85, 5, 11, 66, 2, 11, 65, 2,
195, 132, 3, 65, 7, 11, 32, 4, 22, 67, 139, 8, 83, 2, 11, 85, 2, 227,
177, 2, 66, 16, 230, 197, 7, 65, 2, 70, 2, 71, 2, 76, 2, 77, 2, 83, 2,
86, 3, 87, 5, 11, 32, 2, 11, 77, 2, 191, 130, 7, 69, 16, 70, 65, 130, 12,
79, 170, 184, 7, 70, 2, 77, 2, 83, 2, 86, 3, 87, 5, 179, 165, 7, 78, 12,
78, 78, 20, 7, 82, 73, 71, 73, 78, 65, 76, 214, 187, 2, 79, 223, 135, 5,
86, 2, 219, 158, 7, 83, 6, 21, 3, 32, 79, 70, 7, 25, 4, 32, 79, 82, 32,
4, 134, 97, 78, 51, 69, 46, 118, 65, 82, 69, 94, 73, 74, 79, 162, 175, 7,
80, 218, 16, 67, 2, 70, 2, 72, 2, 77, 2, 82, 2, 83, 2, 86, 3, 87, 9, 38,
65, 165, 137, 4, 3, 32, 65, 77, 4, 236, 1, 2, 83, 69, 239, 154, 7, 84, 8,
34, 69, 22, 78, 243, 161, 7, 83, 2, 159, 173, 7, 90, 4, 234, 232, 1, 73,
147, 179, 5, 83, 6, 34, 75, 233, 3, 3, 65, 83, 85, 4, 158, 254, 2, 85,
255, 193, 4, 79, 6, 34, 73, 22, 78, 21, 2, 83, 73, 2, 203, 204, 3, 78, 2,
203, 160, 7, 68, 2, 133, 134, 7, 4, 84, 73, 79, 78, 22, 60, 2, 65, 68,
114, 69, 62, 73, 134, 1, 85, 227, 235, 6, 79, 7, 21, 3, 32, 79, 86, 4,
25, 4, 69, 82, 32, 83, 5, 17, 2, 32, 83, 2, 11, 81, 2, 205, 169, 2, 2,
85, 65, 4, 36, 3, 78, 84, 79, 203, 152, 7, 77, 2, 171, 231, 5, 71, 6, 40,
2, 71, 72, 62, 84, 255, 185, 7, 82, 2, 169, 249, 3, 10, 84, 32, 79, 80,
69, 78, 32, 66, 79, 88, 2, 181, 250, 2, 2, 84, 79, 4, 228, 1, 2, 85, 66,
231, 243, 4, 80, 22, 138, 1, 65, 72, 3, 69, 78, 84, 28, 11, 80, 73, 82,
65, 76, 32, 70, 82, 79, 77, 32, 216, 193, 2, 3, 73, 82, 73, 170, 248, 4,
82, 3, 86, 4, 48, 2, 73, 75, 213, 178, 2, 4, 78, 84, 73, 73, 2, 179, 248,
2, 85, 4, 154, 186, 7, 73, 3, 79, 8, 18, 66, 43, 84, 4, 221, 142, 7, 5,
79, 84, 84, 79, 77, 4, 11, 79, 4, 171, 142, 7, 80, 6, 42, 65, 210, 218,
5, 72, 203, 142, 1, 79, 2, 221, 131, 7, 2, 82, 71, 34, 50, 65, 20, 4, 73,
84, 72, 32, 151, 184, 7, 66, 2, 159, 197, 3, 84, 30, 214, 1, 66, 40, 3,
68, 73, 65, 0, 5, 79, 82, 84, 72, 79, 94, 72, 54, 76, 126, 84, 28, 6, 85,
80, 80, 69, 82, 32, 186, 1, 86, 242, 146, 4, 82, 253, 131, 2, 13, 67, 79,
78, 84, 79, 85, 82, 69, 68, 32, 79, 85, 84, 2, 153, 151, 4, 5, 79, 84,
84, 79, 77, 2, 11, 71, 2, 153, 186, 4, 15, 79, 78, 65, 76, 32, 67, 82,
79, 83, 83, 72, 65, 84, 67, 72, 2, 11, 79, 2, 149, 3, 6, 82, 73, 90, 79,
78, 84, 6, 44, 5, 79, 87, 69, 82, 32, 135, 149, 4, 69, 4, 44, 3, 76, 69,
70, 1, 4, 82, 73, 71, 72, 2, 189, 1, 3, 84, 32, 68, 2, 229, 148, 4, 2,
79, 80, 8, 60, 5, 76, 69, 70, 84, 32, 37, 6, 82, 73, 71, 72, 84, 32, 4,
70, 68, 249, 163, 4, 2, 84, 79, 4, 34, 68, 185, 182, 4, 2, 84, 79, 2,
193, 147, 4, 7, 73, 65, 71, 79, 78, 65, 76, 2, 29, 5, 69, 82, 84, 73, 67,
2, 165, 182, 4, 2, 65, 76, 6, 32, 2, 65, 65, 187, 229, 5, 85, 4, 234,
140, 7, 82, 247, 5, 68, 240, 1, 226, 1, 67, 174, 9, 68, 34, 70, 88, 3,
82, 73, 83, 142, 1, 72, 66, 75, 106, 76, 166, 1, 77, 38, 78, 34, 79, 94,
80, 34, 83, 190, 2, 84, 160, 1, 5, 69, 73, 71, 72, 84, 22, 85, 90, 86,
154, 132, 5, 65, 162, 109, 87, 243, 99, 73, 90, 128, 1, 21, 74, 75, 32,
85, 78, 73, 70, 73, 69, 68, 32, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45,
190, 153, 6, 79, 143, 149, 1, 76, 86, 68, 2, 52, 69, 82, 53, 206, 2, 54,
150, 2, 55, 166, 1, 56, 95, 57, 10, 50, 48, 234, 4, 65, 214, 254, 5, 56,
243, 99, 50, 4, 202, 173, 7, 48, 3, 57, 30, 150, 1, 50, 42, 51, 38, 52,
48, 2, 53, 66, 0, 2, 68, 69, 22, 57, 164, 4, 2, 56, 70, 158, 172, 3, 66,
184, 208, 2, 2, 70, 56, 241, 99, 2, 49, 56, 6, 214, 4, 55, 162, 225, 6,
49, 3, 52, 4, 146, 177, 3, 70, 207, 208, 2, 67, 4, 26, 48, 155, 177, 3,
51, 2, 175, 171, 7, 56, 2, 155, 171, 7, 54, 4, 238, 176, 3, 50, 227, 247,
3, 49, 24, 86, 50, 46, 51, 50, 53, 34, 54, 16, 2, 55, 48, 28, 2, 70, 49,
129, 2, 2, 69, 56, 6, 70, 57, 234, 174, 3, 53, 231, 188, 2, 52, 4, 26,
53, 195, 175, 3, 48, 2, 195, 169, 7, 53, 4, 202, 2, 66, 207, 172, 3, 57,
2, 171, 2, 50, 4, 254, 168, 7, 56, 3, 57, 2, 227, 168, 7, 52, 12, 74, 53,
38, 57, 12, 2, 49, 50, 20, 2, 68, 52, 137, 165, 7, 2, 65, 55, 4, 166,
173, 3, 51, 187, 249, 2, 49, 2, 11, 56, 2, 211, 167, 7, 49, 2, 191, 167,
7, 50, 6, 50, 57, 20, 2, 68, 55, 205, 172, 3, 2, 67, 65, 2, 155, 172, 3,
69, 2, 227, 166, 7, 48, 4, 172, 224, 6, 2, 49, 52, 233, 67, 2, 48, 52, 2,
11, 79, 2, 207, 226, 3, 84, 10, 84, 3, 65, 76, 76, 104, 4, 79, 85, 82,
32, 240, 5, 3, 73, 86, 69, 179, 172, 5, 82, 2, 57, 12, 73, 78, 71, 32,
68, 73, 65, 71, 79, 78, 65, 76, 2, 11, 32, 2, 11, 83, 2, 191, 185, 5, 76,
4, 166, 222, 3, 68, 155, 198, 3, 75, 8, 148, 224, 3, 2, 73, 45, 170, 139,
3, 68, 222, 56, 67, 3, 86, 8, 56, 8, 65, 84, 65, 75, 65, 78, 65, 32, 219,
145, 7, 69, 6, 246, 239, 6, 75, 214, 28, 68, 159, 20, 83, 60, 36, 5, 65,
84, 73, 78, 32, 79, 79, 54, 164, 5, 12, 83, 77, 65, 76, 76, 32, 76, 69,
84, 84, 69, 82, 167, 123, 67, 6, 134, 221, 3, 71, 153, 172, 2, 3, 83, 83,
76, 4, 222, 152, 5, 73, 243, 136, 2, 86, 4, 138, 163, 6, 69, 163, 126,
71, 4, 140, 3, 15, 78, 69, 32, 72, 85, 78, 68, 82, 69, 68, 32, 84, 87,
69, 78, 255, 157, 7, 75, 4, 158, 2, 80, 175, 149, 5, 76, 20, 110, 69,
146, 1, 72, 20, 2, 73, 88, 190, 133, 5, 65, 250, 67, 77, 246, 49, 81,
250, 100, 79, 222, 61, 68, 3, 83, 4, 56, 7, 67, 79, 78, 68, 32, 83, 67,
21, 3, 86, 69, 78, 2, 211, 200, 5, 82, 2, 29, 5, 32, 80, 79, 73, 78, 2,
11, 84, 2, 203, 241, 5, 32, 2, 143, 158, 7, 86, 2, 17, 2, 84, 89, 2, 219,
157, 7, 32, 8, 44, 4, 72, 82, 69, 69, 22, 87, 247, 4, 73, 2, 131, 215, 6,
32, 4, 68, 13, 69, 78, 84, 89, 45, 84, 87, 79, 32, 80, 79, 73, 78, 23,
79, 2, 251, 135, 5, 84, 2, 155, 153, 7, 32, 4, 48, 6, 80, 32, 87, 73, 84,
72, 207, 213, 6, 72, 2, 17, 2, 32, 69, 2, 171, 119, 88, 4, 166, 213, 6,
79, 163, 70, 83, 2, 149, 249, 5, 6, 32, 66, 76, 65, 67, 75, 6, 250, 154,
7, 50, 2, 51, 3, 65, 95, 134, 1, 65, 178, 6, 69, 236, 1, 10, 73, 67, 75,
32, 70, 73, 71, 85, 82, 69, 182, 1, 79, 90, 82, 190, 4, 85, 238, 138, 7,
83, 3, 88, 38, 92, 6, 70, 70, 32, 79, 70, 32, 106, 77, 82, 82, 206, 3,
84, 142, 143, 3, 78, 179, 217, 2, 68, 4, 60, 8, 65, 69, 83, 67, 85, 76,
65, 80, 21, 3, 72, 69, 82, 2, 203, 143, 5, 73, 2, 151, 130, 6, 77, 2, 21,
3, 80, 69, 68, 2, 17, 2, 32, 69, 2, 233, 225, 1, 4, 78, 86, 69, 76, 24,
42, 32, 205, 1, 5, 84, 32, 79, 70, 32, 12, 82, 69, 54, 79, 248, 240, 1,
8, 65, 78, 68, 32, 67, 82, 69, 83, 131, 133, 2, 87, 2, 17, 2, 81, 85, 2,
11, 65, 2, 187, 216, 6, 76, 4, 44, 5, 70, 32, 68, 65, 86, 183, 210, 3,
80, 2, 179, 207, 6, 73, 12, 66, 71, 30, 83, 40, 4, 80, 82, 79, 84, 242,
77, 72, 239, 106, 84, 2, 89, 4, 85, 65, 82, 68, 4, 26, 69, 131, 255, 1,
84, 2, 11, 76, 2, 21, 3, 69, 67, 84, 2, 29, 5, 69, 68, 32, 65, 82, 2,
199, 145, 7, 69, 4, 228, 163, 5, 10, 85, 69, 32, 79, 70, 32, 76, 73, 66,
69, 155, 160, 1, 73, 8, 92, 2, 65, 77, 112, 9, 78, 79, 71, 82, 65, 80,
72, 73, 67, 213, 219, 1, 4, 84, 72, 79, 83, 4, 54, 32, 185, 134, 6, 7,
73, 78, 71, 32, 66, 79, 87, 2, 33, 6, 76, 79, 67, 79, 77, 79, 2, 147,
213, 1, 84, 2, 153, 188, 4, 2, 32, 70, 11, 11, 32, 8, 60, 5, 87, 73, 84,
72, 32, 193, 169, 2, 4, 76, 69, 65, 78, 4, 32, 4, 65, 82, 77, 83, 51, 68,
2, 25, 4, 32, 82, 65, 73, 2, 143, 252, 1, 83, 2, 179, 247, 5, 82, 4, 44,
4, 67, 75, 32, 67, 21, 3, 80, 87, 65, 2, 179, 136, 6, 72, 2, 147, 237, 6,
84, 22, 66, 65, 124, 10, 69, 83, 83, 32, 79, 85, 84, 76, 73, 78, 79, 73,
8, 56, 4, 73, 71, 72, 84, 45, 6, 87, 66, 69, 82, 82, 89, 4, 196, 160, 3,
2, 32, 82, 131, 213, 2, 78, 5, 195, 248, 5, 32, 2, 17, 2, 69, 68, 2, 17,
2, 32, 87, 2, 205, 243, 4, 4, 72, 73, 84, 69, 12, 76, 4, 78, 71, 32, 84,
52, 4, 80, 69, 68, 32, 241, 8, 4, 67, 84, 76, 89, 2, 17, 2, 69, 82, 2,
181, 211, 6, 3, 77, 73, 78, 8, 70, 68, 24, 3, 76, 69, 70, 0, 4, 82, 73,
71, 72, 13, 2, 85, 80, 2, 33, 3, 79, 87, 78, 2, 11, 84, 2, 11, 45, 2,
149, 228, 5, 8, 80, 79, 73, 78, 84, 73, 78, 71, 6, 100, 8, 68, 73, 79,
32, 77, 73, 67, 82, 20, 9, 70, 70, 69, 68, 32, 70, 76, 65, 84, 187, 135,
7, 80, 2, 147, 221, 5, 79, 2, 11, 66, 2, 163, 177, 4, 82, 162, 3, 150, 1,
66, 212, 2, 5, 67, 67, 69, 69, 68, 192, 3, 8, 77, 77, 65, 84, 73, 79, 78,
32, 70, 78, 204, 22, 3, 80, 69, 82, 188, 11, 2, 82, 70, 47, 83, 63, 11,
83, 60, 76, 6, 67, 82, 73, 80, 84, 32, 136, 1, 3, 69, 84, 32, 93, 3, 84,
73, 84, 30, 118, 76, 186, 29, 69, 166, 1, 80, 22, 82, 134, 221, 2, 77,
226, 151, 2, 70, 30, 83, 42, 84, 62, 90, 210, 86, 78, 15, 79, 2, 207, 30,
69, 28, 56, 6, 65, 66, 79, 86, 69, 32, 246, 33, 79, 159, 3, 87, 6, 142,
32, 83, 139, 196, 5, 82, 2, 223, 188, 5, 85, 22, 11, 83, 23, 11, 32, 20,
128, 1, 6, 65, 66, 79, 86, 69, 32, 156, 1, 7, 66, 85, 84, 32, 78, 79, 84,
32, 2, 79, 82, 149, 156, 3, 5, 85, 78, 68, 69, 82, 12, 100, 4, 78, 79,
84, 32, 28, 12, 83, 73, 78, 71, 76, 69, 45, 76, 73, 78, 69, 32, 218, 32,
65, 39, 69, 4, 242, 32, 65, 167, 1, 69, 4, 250, 32, 69, 83, 78, 2, 93, 5,
32, 69, 81, 85, 73, 4, 17, 2, 32, 69, 4, 17, 2, 81, 85, 4, 22, 73, 167,
33, 65, 2, 173, 33, 6, 86, 65, 76, 69, 78, 84, 6, 250, 146, 3, 66, 152,
229, 1, 4, 87, 73, 84, 72, 251, 144, 1, 84, 249, 1, 194, 1, 32, 72, 7,
68, 65, 78, 69, 83, 69, 32, 204, 12, 4, 82, 73, 83, 69, 72, 5, 85, 87,
65, 82, 32, 168, 179, 2, 14, 83, 69, 84, 32, 79, 86, 69, 82, 32, 66, 85,
73, 76, 68, 247, 163, 3, 70, 4, 50, 87, 205, 209, 5, 6, 66, 69, 72, 73,
78, 68, 2, 171, 194, 6, 73, 146, 1, 198, 2, 65, 20, 17, 67, 79, 78, 83,
79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 80, 65, 172, 1, 7, 76, 69,
84, 84, 69, 82, 32, 188, 3, 18, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79,
78, 32, 66, 73, 78, 68, 85, 32, 228, 1, 5, 83, 73, 71, 78, 32, 204, 1,
13, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 80, 65, 207, 128, 5, 68,
2, 215, 162, 3, 86, 10, 68, 2, 77, 73, 40, 2, 78, 89, 33, 7, 83, 65, 78,
71, 65, 78, 32, 2, 17, 2, 78, 71, 2, 179, 240, 5, 75, 4, 142, 5, 65, 219,
160, 1, 73, 4, 162, 249, 6, 77, 3, 87, 76, 246, 1, 65, 58, 70, 78, 76, 2,
82, 34, 83, 170, 161, 3, 69, 234, 217, 1, 78, 214, 181, 1, 66, 2, 75,
138, 69, 67, 2, 68, 2, 71, 2, 72, 2, 74, 2, 77, 2, 80, 2, 81, 2, 84, 2,
86, 2, 87, 2, 88, 2, 89, 2, 90, 186, 2, 73, 2, 79, 3, 85, 7, 180, 185, 6,
6, 82, 67, 72, 65, 73, 67, 147, 64, 69, 6, 44, 5, 73, 78, 65, 76, 32,
227, 248, 6, 65, 4, 222, 248, 6, 75, 3, 77, 4, 218, 211, 6, 69, 235, 36,
65, 4, 234, 245, 6, 89, 187, 2, 65, 16, 90, 66, 2, 68, 2, 75, 12, 3, 76,
69, 85, 38, 67, 34, 80, 253, 243, 6, 3, 83, 85, 82, 2, 11, 65, 2, 189,
103, 5, 32, 83, 65, 84, 65, 2, 11, 65, 2, 171, 178, 6, 75, 4, 172, 3, 3,
65, 78, 71, 189, 176, 6, 3, 85, 82, 78, 10, 32, 2, 80, 65, 151, 156, 3,
86, 8, 28, 3, 77, 65, 65, 23, 78, 2, 203, 244, 6, 69, 6, 18, 71, 71, 89,
4, 38, 76, 225, 174, 6, 3, 87, 73, 83, 2, 205, 209, 5, 2, 65, 89, 2, 201,
241, 6, 2, 69, 67, 12, 18, 77, 23, 78, 2, 231, 144, 3, 69, 10, 96, 3, 69,
85, 76, 34, 79, 22, 89, 232, 233, 1, 3, 71, 72, 85, 205, 194, 2, 4, 65,
69, 76, 65, 2, 11, 69, 2, 195, 162, 6, 85, 2, 151, 172, 4, 76, 2, 255,
156, 1, 85, 5, 209, 171, 3, 13, 32, 79, 86, 69, 82, 32, 77, 79, 85, 78,
84, 65, 73, 88, 88, 7, 76, 69, 84, 84, 69, 82, 32, 184, 6, 6, 83, 73, 71,
78, 32, 80, 159, 247, 4, 68, 66, 142, 2, 65, 66, 67, 66, 68, 44, 3, 72,
65, 77, 22, 74, 34, 75, 42, 78, 38, 79, 2, 85, 34, 80, 38, 82, 20, 4, 83,
72, 89, 69, 34, 84, 112, 3, 86, 65, 82, 144, 238, 4, 4, 76, 79, 65, 67,
218, 29, 71, 148, 60, 2, 73, 77, 142, 26, 89, 222, 16, 66, 214, 89, 69,
203, 28, 77, 6, 42, 80, 210, 227, 5, 65, 155, 137, 1, 86, 2, 167, 254, 1,
80, 4, 40, 2, 72, 69, 253, 218, 6, 2, 65, 82, 2, 215, 219, 5, 76, 4, 22,
69, 219, 94, 79, 2, 219, 218, 6, 86, 2, 171, 207, 6, 83, 2, 11, 89, 2,
239, 236, 6, 65, 6, 194, 186, 6, 76, 146, 48, 73, 99, 72, 4, 134, 202, 5,
71, 175, 162, 1, 65, 2, 11, 84, 2, 155, 149, 1, 84, 4, 194, 201, 5, 72,
179, 163, 1, 73, 2, 243, 199, 6, 69, 4, 242, 213, 6, 76, 215, 22, 82, 8,
42, 69, 22, 72, 209, 201, 6, 2, 65, 83, 2, 179, 147, 1, 78, 4, 26, 65,
147, 197, 5, 69, 2, 243, 215, 6, 82, 2, 255, 232, 6, 67, 2, 175, 204, 6,
86, 72, 54, 83, 206, 248, 4, 72, 165, 67, 4, 86, 73, 76, 76, 68, 56, 6,
67, 82, 73, 80, 84, 32, 229, 2, 3, 69, 84, 32, 34, 114, 69, 34, 76, 134,
1, 80, 22, 82, 134, 221, 2, 77, 226, 151, 2, 70, 30, 83, 42, 84, 62, 90,
210, 86, 78, 15, 79, 4, 210, 68, 81, 147, 250, 5, 73, 6, 88, 18, 65, 84,
73, 78, 32, 83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 31, 69,
4, 170, 232, 6, 73, 3, 78, 2, 55, 70, 2, 235, 181, 3, 76, 2, 21, 3, 73,
71, 72, 2, 11, 84, 2, 183, 224, 2, 32, 34, 148, 1, 6, 65, 66, 79, 86, 69,
32, 96, 7, 66, 69, 83, 73, 68, 69, 32, 162, 1, 79, 158, 3, 87, 129, 200,
4, 9, 80, 82, 69, 67, 69, 68, 73, 78, 71, 6, 26, 83, 227, 192, 2, 76, 4,
11, 85, 4, 26, 80, 175, 247, 4, 66, 2, 169, 247, 4, 2, 69, 82, 4, 108,
23, 65, 78, 68, 32, 74, 79, 73, 78, 69, 68, 32, 66, 89, 32, 68, 65, 83,
72, 32, 87, 73, 84, 72, 23, 83, 2, 17, 2, 32, 83, 2, 137, 246, 4, 2, 85,
66, 16, 11, 70, 17, 11, 32, 14, 120, 6, 65, 66, 79, 86, 69, 32, 132, 1,
4, 87, 73, 84, 72, 249, 224, 5, 11, 79, 82, 32, 69, 81, 85, 65, 76, 32,
84, 79, 8, 34, 65, 38, 69, 18, 84, 67, 78, 2, 11, 76, 2, 113, 3, 77, 79,
83, 2, 239, 61, 81, 2, 21, 3, 73, 76, 68, 2, 215, 158, 3, 69, 2, 17, 2,
32, 78, 2, 11, 79, 2, 11, 84, 2, 11, 32, 2, 11, 69, 2, 17, 2, 81, 85, 2,
11, 65, 2, 11, 76, 2, 143, 238, 2, 32, 6, 25, 4, 73, 84, 72, 32, 6, 104,
14, 77, 85, 76, 84, 73, 80, 76, 73, 67, 65, 84, 73, 79, 78, 0, 4, 80, 76,
85, 83, 199, 143, 6, 68, 2, 225, 174, 4, 5, 32, 83, 73, 71, 78, 4, 184,
213, 4, 2, 65, 67, 191, 209, 1, 69, 4, 60, 9, 80, 69, 78, 83, 73, 79, 78,
32, 82, 147, 203, 6, 72, 2, 21, 3, 65, 73, 76, 2, 175, 208, 5, 87, 8, 26,
65, 98, 73, 35, 85, 4, 44, 5, 83, 72, 32, 65, 77, 243, 221, 6, 78, 2,
141, 154, 6, 7, 80, 69, 82, 83, 65, 78, 68, 2, 11, 77, 2, 199, 159, 6,
77, 2, 165, 156, 3, 2, 78, 71, 236, 2, 92, 11, 76, 79, 84, 73, 32, 78,
65, 71, 82, 73, 32, 226, 5, 77, 242, 16, 78, 97, 2, 82, 73, 90, 180, 1,
7, 76, 69, 84, 84, 69, 82, 32, 168, 2, 11, 80, 79, 69, 84, 82, 89, 32,
77, 65, 82, 75, 56, 5, 83, 73, 71, 78, 32, 145, 1, 11, 86, 79, 87, 69,
76, 32, 83, 73, 71, 78, 32, 64, 174, 1, 68, 46, 82, 34, 84, 242, 90, 66,
2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 223, 5, 72, 2, 76, 2, 77, 2, 78,
2, 83, 246, 30, 65, 2, 69, 2, 73, 2, 79, 3, 85, 8, 186, 91, 68, 138, 223,
5, 72, 247, 30, 79, 4, 150, 186, 6, 82, 247, 30, 79, 8, 238, 90, 84, 138,
223, 5, 72, 247, 30, 79, 8, 11, 45, 8, 178, 216, 6, 49, 2, 50, 2, 51, 3,
52, 8, 46, 65, 70, 72, 181, 146, 6, 3, 68, 86, 73, 4, 64, 10, 76, 84, 69,
82, 78, 65, 84, 69, 32, 72, 171, 146, 6, 78, 2, 245, 142, 2, 2, 65, 83,
10, 130, 184, 6, 79, 246, 30, 65, 2, 69, 2, 73, 3, 85, 88, 60, 8, 66, 79,
76, 32, 70, 79, 82, 32, 145, 16, 2, 77, 69, 86, 238, 2, 66, 48, 2, 67,
65, 118, 68, 238, 3, 69, 130, 2, 70, 56, 8, 72, 79, 82, 73, 90, 79, 78,
84, 0, 6, 86, 69, 82, 84, 73, 67, 44, 3, 76, 73, 78, 52, 9, 77, 65, 82,
75, 83, 32, 67, 72, 65, 22, 78, 90, 65, 68, 3, 82, 69, 67, 32, 5, 71, 82,
79, 85, 80, 0, 4, 85, 78, 73, 84, 22, 83, 249, 2, 15, 84, 89, 80, 69, 32,
65, 32, 69, 76, 69, 67, 84, 82, 79, 78, 4, 230, 200, 4, 69, 241, 203, 1,
3, 65, 67, 75, 4, 44, 3, 82, 82, 73, 129, 189, 1, 2, 78, 67, 2, 33, 6,
65, 71, 69, 32, 82, 69, 2, 11, 84, 2, 155, 191, 1, 85, 20, 24, 2, 65, 84,
55, 69, 2, 177, 5, 9, 65, 32, 76, 73, 78, 75, 32, 69, 83, 18, 84, 4, 76,
69, 84, 69, 137, 2, 12, 86, 73, 67, 69, 32, 67, 79, 78, 84, 82, 79, 76,
11, 11, 32, 8, 164, 1, 11, 82, 69, 67, 84, 65, 78, 71, 85, 76, 65, 82, 0,
6, 83, 81, 85, 65, 82, 69, 174, 186, 4, 70, 249, 149, 1, 11, 77, 69, 68,
73, 85, 77, 32, 83, 72, 65, 68, 2, 61, 13, 32, 67, 72, 69, 67, 75, 69,
82, 32, 66, 79, 65, 82, 2, 239, 207, 5, 68, 8, 11, 32, 8, 226, 178, 1,
70, 134, 169, 3, 84, 155, 87, 79, 12, 22, 78, 207, 1, 83, 10, 48, 5, 68,
32, 79, 70, 32, 137, 1, 2, 81, 85, 8, 18, 77, 31, 84, 2, 237, 161, 5, 2,
69, 68, 6, 64, 11, 82, 65, 78, 83, 77, 73, 83, 83, 73, 79, 78, 243, 112,
69, 5, 167, 218, 3, 32, 2, 199, 6, 73, 2, 193, 130, 5, 2, 67, 65, 4, 36,
2, 73, 76, 73, 3, 79, 82, 77, 2, 191, 2, 69, 2, 165, 166, 1, 6, 65, 76,
32, 84, 65, 66, 2, 11, 69, 2, 17, 2, 32, 70, 2, 227, 182, 1, 69, 2, 219,
144, 5, 80, 6, 26, 69, 147, 192, 4, 85, 4, 56, 8, 71, 65, 84, 73, 86, 69,
32, 65, 183, 174, 5, 87, 2, 21, 3, 67, 75, 78, 2, 21, 3, 79, 87, 76, 2,
231, 140, 1, 69, 2, 11, 79, 2, 17, 2, 82, 68, 2, 219, 151, 3, 32, 18,
176, 1, 7, 65, 77, 65, 82, 73, 84, 65, 60, 3, 72, 73, 70, 52, 8, 84, 65,
82, 84, 32, 79, 70, 32, 64, 8, 85, 66, 83, 84, 73, 84, 85, 84, 120, 3,
89, 78, 67, 163, 136, 6, 80, 2, 25, 4, 78, 32, 83, 79, 2, 11, 85, 2, 171,
138, 6, 82, 4, 17, 2, 84, 32, 4, 174, 205, 5, 79, 243, 41, 73, 4, 22, 72,
239, 106, 84, 2, 17, 2, 69, 65, 2, 175, 245, 5, 68, 4, 163, 177, 4, 69,
2, 173, 136, 6, 2, 73, 67, 2, 11, 84, 2, 155, 180, 6, 82, 7, 38, 67, 193,
181, 2, 3, 65, 71, 79, 2, 137, 139, 1, 9, 72, 82, 79, 78, 79, 85, 83, 32,
73, 180, 1, 36, 3, 65, 67, 32, 147, 141, 5, 78, 178, 1, 150, 3, 65, 52,
4, 66, 65, 82, 82, 32, 2, 67, 79, 80, 13, 68, 79, 84, 84, 69, 68, 32, 90,
76, 65, 77, 65, 32, 118, 69, 90, 72, 204, 2, 7, 76, 69, 84, 84, 69, 82,
32, 236, 9, 9, 79, 66, 76, 73, 81, 85, 69, 32, 76, 28, 4, 80, 84, 72, 65,
0, 4, 90, 81, 65, 80, 110, 82, 88, 2, 83, 85, 174, 2, 84, 216, 131, 5, 3,
77, 85, 83, 224, 22, 7, 70, 69, 77, 73, 78, 73, 78, 153, 139, 1, 5, 81,
85, 83, 72, 83, 2, 11, 66, 2, 229, 215, 5, 5, 66, 82, 69, 86, 73, 2, 11,
69, 2, 215, 191, 6, 75, 6, 38, 78, 165, 17, 4, 76, 79, 78, 32, 2, 17, 2,
84, 82, 2, 187, 239, 5, 65, 4, 28, 3, 65, 78, 71, 35, 72, 2, 11, 85, 2,
155, 156, 5, 76, 2, 11, 79, 2, 185, 231, 3, 5, 82, 73, 90, 79, 78, 6, 60,
10, 78, 68, 32, 79, 70, 32, 80, 65, 82, 65, 151, 14, 83, 2, 201, 11, 2,
71, 82, 14, 104, 8, 65, 82, 75, 76, 69, 65, 78, 32, 132, 1, 4, 66, 65,
83, 65, 65, 7, 79, 82, 73, 90, 79, 78, 84, 6, 60, 5, 65, 83, 84, 69, 82,
40, 4, 77, 69, 84, 79, 3, 79, 2, 17, 2, 73, 83, 2, 147, 180, 4, 67, 2,
213, 177, 2, 2, 66, 69, 6, 164, 11, 8, 45, 69, 83, 65, 83, 65, 32, 68,
155, 143, 4, 32, 2, 233, 235, 5, 2, 65, 76, 92, 154, 2, 68, 102, 72, 32,
3, 76, 65, 77, 34, 77, 204, 1, 2, 80, 69, 142, 1, 82, 78, 83, 144, 1, 8,
70, 73, 78, 65, 76, 32, 83, 69, 106, 65, 14, 75, 2, 81, 34, 84, 40, 5,
71, 65, 77, 65, 76, 40, 4, 89, 85, 68, 72, 190, 80, 66, 242, 178, 4, 90,
186, 46, 78, 134, 2, 87, 175, 126, 69, 4, 76, 14, 79, 84, 76, 69, 83, 83,
32, 68, 65, 76, 65, 84, 72, 32, 139, 3, 65, 2, 179, 212, 2, 82, 4, 11,
69, 5, 207, 183, 6, 84, 2, 11, 65, 2, 175, 183, 6, 68, 24, 60, 9, 65, 76,
65, 89, 65, 76, 65, 77, 32, 151, 167, 6, 73, 22, 78, 76, 22, 78, 226,
185, 4, 66, 222, 216, 1, 84, 138, 34, 83, 14, 74, 3, 82, 4, 255, 170, 4,
76, 8, 222, 89, 78, 242, 218, 5, 71, 3, 89, 9, 33, 6, 82, 83, 73, 65, 78,
32, 6, 50, 66, 16, 3, 68, 72, 65, 17, 3, 71, 72, 65, 2, 175, 84, 72, 2,
147, 2, 76, 2, 139, 170, 5, 77, 4, 52, 7, 69, 86, 69, 82, 83, 69, 68,
151, 202, 4, 73, 2, 195, 235, 4, 32, 14, 142, 1, 69, 40, 7, 79, 71, 68,
73, 65, 78, 32, 64, 12, 85, 80, 69, 82, 83, 67, 82, 73, 80, 84, 32, 65,
190, 179, 5, 72, 201, 82, 2, 65, 68, 2, 17, 2, 77, 75, 2, 235, 174, 4,
65, 6, 42, 90, 32, 2, 75, 72, 179, 156, 6, 70, 2, 187, 132, 5, 72, 2, 11,
76, 2, 11, 65, 2, 231, 177, 6, 80, 6, 36, 3, 69, 84, 72, 159, 180, 5, 65,
5, 149, 91, 6, 32, 71, 65, 82, 83, 72, 5, 135, 133, 6, 32, 4, 221, 143,
4, 2, 73, 78, 6, 21, 3, 72, 65, 32, 6, 42, 68, 182, 143, 4, 66, 131, 165,
1, 65, 2, 17, 2, 79, 84, 2, 243, 156, 1, 84, 8, 58, 66, 174, 214, 2, 87,
249, 166, 1, 4, 85, 75, 75, 65, 4, 169, 251, 3, 2, 65, 83, 14, 88, 8, 66,
76, 73, 78, 69, 65, 82, 32, 113, 10, 80, 82, 65, 76, 73, 78, 69, 65, 82,
32, 8, 44, 5, 67, 79, 76, 79, 78, 227, 217, 3, 70, 7, 11, 32, 4, 29, 5,
83, 75, 69, 87, 69, 4, 219, 131, 6, 68, 6, 44, 5, 67, 79, 76, 79, 78,
243, 216, 3, 70, 5, 221, 251, 5, 7, 32, 83, 75, 69, 87, 69, 68, 8, 62,
72, 25, 11, 87, 79, 32, 86, 69, 82, 84, 73, 67, 65, 76, 4, 21, 3, 82, 69,
69, 4, 25, 4, 32, 68, 79, 84, 4, 235, 138, 4, 83, 136, 47, 102, 45, 58,
65, 162, 111, 69, 218, 45, 72, 202, 46, 73, 254, 68, 79, 246, 37, 82,
214, 17, 85, 147, 22, 87, 4, 32, 2, 83, 72, 203, 131, 5, 82, 2, 203, 164,
5, 73, 200, 29, 182, 1, 66, 86, 71, 196, 17, 2, 73, 32, 142, 35, 75, 144,
5, 9, 76, 76, 89, 32, 77, 65, 82, 75, 32, 34, 77, 178, 37, 78, 240, 12,
3, 80, 69, 32, 94, 85, 202, 157, 5, 67, 159, 11, 88, 5, 241, 128, 1, 16,
76, 69, 32, 84, 69, 78, 78, 73, 83, 32, 80, 65, 68, 68, 76, 69, 144, 2,
78, 32, 240, 11, 5, 65, 76, 79, 71, 32, 241, 2, 6, 66, 65, 78, 87, 65,
32, 190, 1, 162, 1, 65, 102, 67, 186, 1, 68, 58, 69, 98, 71, 118, 72, 46,
76, 230, 3, 80, 58, 81, 62, 82, 106, 83, 242, 81, 78, 230, 227, 1, 84,
162, 146, 1, 70, 179, 185, 1, 86, 6, 42, 80, 158, 212, 2, 77, 211, 187,
1, 83, 2, 17, 2, 79, 83, 2, 237, 249, 5, 4, 84, 82, 79, 80, 8, 18, 73,
63, 79, 2, 25, 4, 82, 67, 85, 77, 2, 213, 2, 4, 70, 76, 69, 88, 6, 26,
77, 131, 214, 5, 76, 4, 11, 77, 4, 172, 156, 5, 7, 69, 82, 67, 73, 65,
76, 32, 179, 137, 1, 65, 22, 26, 79, 139, 177, 4, 73, 2, 11, 76, 2, 207,
90, 76, 4, 18, 81, 43, 88, 2, 17, 2, 85, 65, 2, 179, 242, 2, 76, 2, 245,
186, 5, 4, 67, 76, 65, 77, 4, 11, 82, 4, 18, 65, 55, 69, 2, 11, 86, 2,
11, 69, 2, 193, 126, 3, 32, 65, 67, 2, 145, 4, 4, 65, 84, 69, 82, 2, 153,
152, 2, 6, 89, 80, 72, 69, 78, 45, 114, 38, 65, 254, 2, 69, 235, 180, 4,
79, 104, 25, 4, 84, 73, 78, 32, 104, 34, 67, 41, 4, 83, 77, 65, 76, 52,
11, 65, 52, 25, 4, 80, 73, 84, 65, 52, 41, 8, 76, 32, 76, 69, 84, 84, 69,
82, 52, 11, 32, 52, 158, 161, 6, 65, 2, 66, 2, 67, 2, 68, 2, 69, 2, 70,
2, 71, 2, 72, 2, 73, 2, 74, 2, 75, 2, 76, 2, 77, 2, 78, 2, 79, 2, 80, 2,
81, 2, 82, 2, 83, 2, 84, 2, 85, 2, 86, 2, 87, 2, 88, 2, 89, 3, 90, 8, 22,
83, 199, 1, 70, 2, 11, 83, 2, 169, 69, 3, 45, 84, 72, 4, 26, 69, 211,
236, 2, 76, 2, 11, 82, 2, 199, 73, 67, 4, 11, 85, 4, 26, 79, 215, 201, 3,
69, 2, 239, 180, 5, 84, 8, 36, 3, 73, 71, 72, 199, 132, 4, 69, 6, 17, 2,
84, 32, 6, 250, 146, 2, 67, 210, 3, 80, 239, 7, 83, 6, 150, 206, 2, 69,
138, 184, 1, 79, 131, 218, 1, 80, 46, 80, 7, 76, 69, 84, 84, 69, 82, 32,
208, 1, 5, 83, 73, 71, 78, 32, 147, 2, 86, 38, 162, 1, 65, 250, 164, 2,
78, 206, 243, 3, 66, 2, 68, 2, 71, 2, 72, 2, 75, 2, 76, 2, 77, 2, 80, 2,
82, 2, 83, 2, 84, 2, 87, 2, 89, 186, 2, 73, 3, 85, 5, 161, 208, 5, 6, 82,
67, 72, 65, 73, 67, 4, 26, 80, 207, 192, 2, 86, 2, 25, 4, 65, 77, 85, 68,
2, 235, 223, 2, 80, 36, 48, 7, 76, 69, 84, 84, 69, 82, 32, 147, 1, 86,
32, 202, 163, 2, 78, 206, 243, 3, 66, 2, 68, 2, 71, 2, 75, 2, 76, 2, 77,
2, 80, 2, 83, 2, 84, 2, 87, 2, 89, 186, 2, 65, 2, 73, 3, 85, 4, 41, 8,
79, 87, 69, 76, 32, 83, 73, 71, 4, 11, 78, 4, 207, 215, 5, 32, 194, 4,
140, 1, 10, 76, 69, 32, 76, 69, 84, 84, 69, 82, 32, 248, 2, 5, 84, 72,
65, 77, 32, 184, 18, 5, 86, 73, 69, 84, 32, 225, 6, 3, 89, 79, 32, 70,
186, 1, 65, 34, 69, 30, 84, 230, 158, 2, 78, 214, 172, 1, 79, 242, 129,
2, 75, 2, 80, 162, 7, 85, 234, 61, 70, 2, 72, 2, 76, 2, 77, 2, 81, 2, 83,
2, 86, 2, 88, 2, 89, 187, 2, 73, 7, 206, 254, 5, 85, 215, 22, 73, 7, 130,
149, 6, 69, 3, 72, 18, 60, 3, 79, 78, 69, 234, 204, 5, 83, 138, 69, 72,
187, 2, 65, 10, 11, 45, 10, 154, 148, 6, 50, 2, 51, 2, 52, 2, 53, 3, 54,
254, 1, 196, 1, 2, 67, 79, 232, 3, 4, 72, 79, 82, 65, 0, 4, 84, 72, 65,
77, 28, 7, 76, 69, 84, 84, 69, 82, 32, 220, 4, 5, 83, 73, 71, 78, 32,
217, 5, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 20, 164, 1, 13,
78, 83, 79, 78, 65, 78, 84, 32, 83, 73, 71, 78, 32, 197, 253, 4, 21, 77,
66, 73, 78, 73, 78, 71, 32, 67, 82, 89, 80, 84, 79, 71, 82, 65, 77, 77,
73, 67, 18, 148, 1, 6, 70, 73, 78, 65, 76, 32, 22, 76, 48, 16, 72, 73,
71, 72, 32, 82, 65, 84, 72, 65, 32, 79, 82, 32, 76, 79, 22, 77, 206, 140,
6, 66, 3, 83, 2, 151, 205, 5, 78, 4, 46, 79, 157, 26, 6, 65, 32, 84, 65,
78, 71, 2, 167, 220, 1, 87, 6, 48, 6, 69, 68, 73, 65, 76, 32, 211, 142,
6, 65, 4, 150, 140, 6, 76, 3, 82, 20, 169, 154, 4, 2, 32, 68, 106, 188,
1, 2, 71, 82, 44, 5, 72, 73, 71, 72, 32, 94, 76, 222, 1, 82, 250, 178, 2,
85, 186, 202, 1, 73, 178, 15, 78, 162, 222, 1, 79, 162, 8, 69, 158, 20,
66, 2, 68, 2, 77, 2, 87, 187, 2, 65, 2, 21, 3, 69, 65, 84, 2, 251, 137,
6, 32, 32, 242, 1, 75, 42, 82, 130, 194, 5, 83, 82, 67, 2, 80, 2, 84,
138, 69, 70, 2, 72, 3, 89, 36, 60, 3, 79, 87, 32, 242, 202, 5, 65, 206,
41, 85, 159, 20, 76, 28, 86, 75, 42, 82, 210, 194, 5, 67, 2, 80, 2, 84,
138, 69, 70, 2, 72, 2, 83, 3, 89, 6, 254, 135, 6, 72, 2, 88, 187, 2, 65,
2, 229, 140, 4, 2, 65, 84, 8, 26, 65, 135, 243, 5, 85, 7, 158, 135, 6,
78, 3, 84, 50, 182, 1, 72, 34, 75, 176, 1, 4, 77, 65, 73, 32, 82, 82,
136, 1, 2, 83, 65, 92, 5, 87, 73, 65, 78, 71, 172, 132, 1, 3, 68, 79, 75,
224, 121, 3, 84, 79, 78, 161, 173, 3, 2, 67, 65, 4, 138, 183, 5, 65, 179,
63, 79, 14, 52, 4, 72, 85, 69, 78, 134, 3, 65, 131, 232, 4, 69, 8, 80, 6,
32, 84, 79, 78, 69, 45, 189, 186, 4, 8, 45, 76, 85, 69, 32, 75, 65, 82,
6, 214, 134, 6, 51, 2, 52, 3, 53, 8, 56, 4, 75, 65, 78, 71, 246, 140, 1,
89, 247, 187, 3, 83, 5, 167, 146, 1, 32, 4, 92, 3, 65, 32, 72, 21, 16,
69, 86, 69, 82, 83, 69, 68, 32, 82, 79, 84, 65, 84, 69, 68, 32, 2, 243,
199, 4, 65, 2, 139, 209, 3, 82, 8, 48, 3, 84, 75, 65, 142, 184, 4, 87,
231, 123, 75, 4, 17, 2, 65, 78, 5, 163, 143, 4, 75, 5, 245, 202, 3, 2,
87, 65, 38, 90, 65, 36, 4, 77, 65, 73, 32, 22, 79, 46, 84, 86, 85, 142,
245, 3, 73, 199, 140, 2, 69, 9, 134, 131, 6, 65, 2, 69, 3, 73, 2, 179,
249, 4, 83, 11, 186, 224, 3, 65, 150, 162, 2, 79, 3, 89, 4, 42, 65, 181,
142, 1, 4, 72, 65, 77, 32, 2, 17, 2, 76, 76, 2, 175, 140, 4, 32, 9, 174,
193, 5, 85, 163, 64, 69, 144, 1, 184, 1, 7, 76, 69, 84, 84, 69, 82, 32,
188, 2, 5, 77, 65, 73, 32, 75, 32, 7, 83, 89, 77, 66, 79, 76, 32, 124, 9,
84, 79, 78, 69, 32, 77, 65, 73, 32, 81, 6, 86, 79, 87, 69, 76, 32, 96,
44, 4, 72, 73, 71, 72, 1, 3, 76, 79, 87, 48, 11, 32, 48, 154, 1, 75, 30,
67, 2, 80, 2, 84, 34, 78, 234, 222, 5, 66, 2, 68, 2, 70, 2, 71, 2, 72, 2,
76, 2, 77, 2, 82, 2, 83, 2, 86, 2, 89, 247, 30, 79, 6, 26, 72, 255, 253,
5, 79, 4, 134, 223, 5, 72, 247, 30, 79, 6, 230, 222, 5, 71, 2, 89, 247,
30, 79, 4, 186, 172, 5, 65, 195, 52, 72, 10, 72, 2, 75, 79, 110, 78, 216,
132, 1, 4, 72, 79, 32, 72, 247, 185, 3, 83, 4, 192, 133, 1, 3, 73, 32,
75, 135, 247, 4, 78, 8, 58, 78, 230, 138, 1, 84, 234, 169, 2, 83, 251,
195, 2, 69, 2, 251, 180, 3, 85, 26, 62, 65, 206, 4, 85, 206, 228, 1, 73,
242, 145, 4, 69, 3, 79, 10, 178, 228, 5, 85, 214, 22, 65, 2, 77, 2, 78,
3, 89, 110, 72, 7, 76, 69, 84, 84, 69, 82, 32, 238, 3, 83, 157, 1, 3, 88,
65, 77, 96, 206, 1, 65, 80, 2, 76, 79, 12, 4, 72, 73, 71, 72, 126, 78,
34, 85, 198, 133, 1, 80, 2, 84, 138, 95, 73, 194, 200, 1, 79, 190, 170,
2, 66, 2, 67, 2, 68, 2, 71, 2, 77, 2, 81, 2, 86, 2, 89, 247, 30, 69, 16,
222, 225, 5, 85, 214, 22, 65, 2, 69, 2, 75, 2, 77, 2, 78, 2, 80, 3, 84,
21, 11, 87, 18, 11, 32, 18, 70, 75, 194, 158, 5, 78, 210, 57, 70, 2, 72,
2, 80, 2, 84, 3, 88, 6, 142, 216, 5, 72, 2, 86, 247, 30, 79, 4, 230, 215,
5, 71, 247, 30, 79, 9, 202, 228, 1, 69, 243, 145, 4, 65, 12, 76, 4, 73,
71, 78, 32, 245, 156, 5, 9, 89, 77, 66, 79, 76, 32, 77, 85, 69, 10, 38,
65, 206, 222, 5, 85, 255, 5, 79, 6, 202, 244, 5, 78, 86, 85, 3, 89, 2,
171, 129, 1, 32, 138, 1, 52, 3, 82, 73, 32, 201, 229, 4, 4, 69, 79, 85,
84, 136, 1, 82, 65, 20, 7, 76, 69, 84, 84, 69, 82, 32, 166, 2, 83, 78,
86, 203, 252, 3, 68, 2, 155, 211, 1, 66, 88, 210, 1, 65, 158, 148, 2, 68,
82, 82, 34, 84, 230, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 126, 66, 2,
67, 2, 71, 2, 74, 2, 75, 2, 80, 2, 83, 138, 69, 72, 2, 76, 2, 77, 2, 86,
2, 89, 186, 2, 69, 3, 79, 11, 208, 190, 3, 7, 82, 67, 72, 65, 73, 67, 32,
154, 179, 2, 65, 2, 73, 3, 85, 8, 25, 4, 73, 71, 78, 32, 8, 254, 211, 1,
78, 138, 216, 3, 65, 239, 1, 86, 18, 49, 10, 79, 87, 69, 76, 32, 83, 73,
71, 78, 32, 18, 250, 152, 2, 65, 38, 85, 186, 202, 1, 73, 198, 140, 2,
69, 3, 79, 4, 134, 51, 70, 163, 161, 4, 79, 188, 6, 36, 3, 73, 76, 32,
211, 200, 4, 65, 186, 6, 154, 3, 65, 106, 67, 194, 2, 68, 72, 3, 87, 69,
84, 48, 9, 70, 82, 65, 67, 84, 73, 79, 78, 32, 232, 7, 9, 73, 78, 32, 80,
79, 83, 83, 69, 83, 22, 76, 200, 2, 7, 78, 85, 77, 66, 69, 82, 32, 152,
1, 18, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 32, 69, 78, 68, 32,
79, 70, 54, 82, 42, 83, 166, 14, 84, 228, 1, 7, 86, 79, 87, 69, 76, 32,
83, 100, 2, 89, 69, 168, 195, 4, 5, 77, 79, 78, 84, 72, 171, 118, 79, 6,
80, 5, 83, 32, 65, 66, 79, 150, 138, 2, 85, 197, 245, 1, 5, 78, 68, 32,
79, 68, 2, 143, 203, 3, 86, 52, 80, 9, 79, 78, 83, 79, 78, 65, 78, 84,
32, 156, 21, 3, 85, 82, 82, 171, 9, 82, 48, 130, 1, 75, 22, 76, 22, 78,
46, 84, 194, 191, 1, 83, 254, 82, 82, 158, 214, 3, 67, 2, 72, 2, 74, 2,
77, 2, 80, 2, 86, 3, 89, 5, 207, 171, 5, 83, 7, 235, 236, 4, 76, 11, 150,
235, 3, 78, 238, 253, 1, 71, 3, 89, 5, 215, 232, 5, 84, 26, 68, 2, 82,
89, 164, 28, 2, 69, 66, 146, 149, 2, 65, 207, 194, 1, 73, 2, 225, 199, 1,
7, 32, 67, 85, 76, 84, 73, 86, 42, 168, 1, 4, 79, 78, 69, 32, 220, 4, 6,
84, 72, 82, 69, 69, 32, 169, 224, 5, 22, 68, 79, 87, 78, 83, 67, 65, 76,
73, 78, 71, 32, 70, 65, 67, 84, 79, 82, 32, 75, 73, 73, 30, 112, 5, 69,
73, 71, 72, 84, 34, 70, 40, 3, 72, 65, 76, 22, 79, 88, 4, 83, 73, 88, 84,
74, 84, 203, 221, 3, 81, 4, 210, 3, 73, 219, 225, 5, 72, 4, 156, 3, 2,
79, 82, 203, 219, 3, 73, 4, 251, 222, 1, 70, 2, 225, 2, 18, 78, 69, 45,
72, 85, 78, 68, 82, 69, 68, 45, 65, 78, 68, 45, 83, 73, 88, 6, 140, 222,
1, 5, 69, 69, 78, 84, 72, 141, 25, 5, 89, 45, 70, 79, 85, 8, 38, 72, 138,
1, 87, 255, 220, 3, 69, 4, 132, 1, 18, 82, 69, 69, 45, 72, 85, 78, 68,
82, 69, 68, 45, 65, 78, 68, 45, 84, 87, 173, 163, 4, 8, 73, 82, 84, 89,
45, 83, 69, 67, 2, 17, 2, 69, 78, 2, 17, 2, 84, 73, 2, 223, 220, 3, 69,
10, 58, 69, 28, 4, 83, 73, 88, 84, 82, 84, 179, 220, 3, 81, 2, 129, 1, 3,
73, 71, 72, 4, 50, 69, 165, 221, 3, 6, 89, 45, 70, 79, 85, 82, 2, 161,
221, 3, 2, 69, 78, 2, 21, 3, 87, 69, 78, 2, 237, 220, 3, 3, 84, 73, 69,
2, 207, 218, 1, 83, 72, 48, 6, 69, 84, 84, 69, 82, 32, 211, 243, 3, 65,
70, 194, 1, 78, 170, 201, 1, 84, 190, 54, 65, 82, 76, 38, 82, 134, 6, 85,
206, 141, 1, 79, 238, 60, 73, 182, 196, 1, 83, 242, 7, 69, 234, 61, 67,
2, 72, 2, 74, 2, 75, 2, 77, 2, 80, 2, 86, 3, 89, 10, 46, 78, 242, 218, 5,
71, 2, 89, 187, 2, 65, 4, 238, 218, 5, 78, 187, 2, 65, 8, 38, 79, 222,
134, 4, 84, 159, 79, 83, 4, 11, 78, 4, 17, 2, 69, 32, 4, 18, 72, 31, 84,
2, 133, 72, 3, 85, 78, 68, 2, 185, 137, 2, 3, 72, 79, 85, 2, 17, 2, 32,
84, 2, 11, 69, 2, 163, 191, 5, 88, 2, 17, 2, 85, 80, 2, 159, 187, 3, 69,
194, 4, 152, 1, 5, 65, 76, 84, 32, 80, 20, 4, 73, 71, 78, 32, 206, 4, 80,
28, 9, 84, 65, 82, 84, 73, 78, 71, 32, 70, 41, 8, 89, 76, 76, 65, 66, 76,
69, 32, 2, 235, 221, 3, 65, 40, 90, 65, 48, 3, 67, 69, 86, 34, 75, 80, 2,
77, 85, 102, 85, 14, 80, 118, 86, 211, 64, 78, 4, 216, 2, 4, 65, 90, 72,
65, 191, 145, 5, 78, 2, 11, 73, 2, 223, 179, 5, 84, 6, 38, 85, 165, 179,
5, 3, 65, 65, 67, 4, 18, 90, 87, 82, 2, 159, 196, 5, 72, 6, 60, 4, 75,
75, 85, 82, 16, 2, 84, 72, 21, 3, 85, 86, 85, 2, 203, 82, 85, 2, 175,
155, 3, 65, 2, 75, 90, 8, 26, 65, 251, 134, 5, 79, 6, 34, 84, 154, 153,
4, 65, 15, 78, 2, 11, 72, 2, 17, 2, 65, 75, 2, 171, 177, 5, 75, 10, 38,
65, 250, 81, 69, 227, 192, 4, 73, 4, 216, 102, 3, 82, 65, 65, 201, 249,
2, 6, 75, 65, 73, 89, 65, 82, 2, 11, 69, 2, 187, 9, 78, 2, 17, 2, 82, 79,
2, 227, 205, 4, 77, 148, 4, 130, 1, 75, 166, 1, 76, 166, 1, 78, 186, 1,
82, 86, 83, 178, 1, 84, 214, 2, 67, 2, 72, 2, 74, 2, 77, 2, 80, 2, 86, 3,
89, 46, 84, 2, 83, 83, 210, 251, 1, 65, 38, 85, 206, 141, 1, 79, 238, 60,
73, 167, 204, 1, 69, 24, 250, 244, 1, 65, 250, 6, 85, 206, 141, 1, 79,
238, 60, 73, 167, 204, 1, 69, 66, 78, 76, 182, 250, 1, 65, 38, 85, 206,
141, 1, 79, 238, 60, 73, 167, 204, 1, 69, 44, 226, 6, 76, 210, 243, 1,
65, 38, 85, 206, 141, 1, 79, 238, 60, 73, 167, 204, 1, 69, 110, 98, 78,
174, 5, 71, 2, 89, 210, 243, 1, 65, 38, 85, 206, 141, 1, 79, 238, 60, 73,
167, 204, 1, 69, 44, 170, 5, 78, 210, 243, 1, 65, 38, 85, 206, 141, 1,
79, 238, 60, 73, 167, 204, 1, 69, 44, 214, 4, 82, 210, 243, 1, 65, 38,
85, 206, 141, 1, 79, 238, 60, 73, 167, 204, 1, 69, 68, 90, 72, 170, 3,
83, 210, 243, 1, 65, 38, 85, 206, 141, 1, 79, 238, 60, 73, 167, 204, 1,
69, 24, 246, 246, 1, 65, 38, 85, 206, 141, 1, 79, 230, 2, 82, 138, 58,
73, 167, 204, 1, 69, 44, 210, 2, 84, 210, 243, 1, 65, 38, 85, 206, 141,
1, 79, 238, 60, 73, 167, 204, 1, 69, 6, 68, 2, 79, 84, 33, 11, 82, 65,
68, 73, 84, 73, 79, 78, 65, 76, 32, 2, 11, 65, 2, 155, 197, 4, 76, 4, 24,
2, 67, 82, 55, 78, 2, 17, 2, 69, 68, 2, 11, 73, 2, 203, 196, 4, 84, 2,
11, 85, 2, 17, 2, 77, 66, 2, 123, 69, 22, 25, 4, 73, 71, 78, 32, 22, 206,
243, 1, 65, 38, 85, 206, 141, 1, 79, 238, 60, 73, 167, 204, 1, 69, 2, 11,
65, 2, 155, 195, 4, 82, 158, 15, 36, 5, 65, 66, 65, 84, 65, 35, 71, 2,
11, 32, 2, 163, 215, 3, 84, 156, 15, 54, 69, 20, 3, 83, 65, 32, 213, 6,
3, 85, 84, 32, 2, 195, 173, 4, 82, 178, 1, 52, 7, 76, 69, 84, 84, 69, 82,
32, 171, 212, 3, 68, 158, 1, 210, 1, 65, 58, 70, 54, 72, 38, 76, 58, 77,
54, 78, 50, 83, 122, 85, 114, 69, 2, 73, 2, 79, 2, 86, 182, 250, 4, 84,
82, 67, 2, 68, 2, 71, 2, 75, 2, 80, 138, 69, 66, 2, 82, 2, 87, 2, 88, 2,
89, 3, 90, 16, 146, 4, 87, 198, 194, 5, 67, 2, 81, 2, 88, 3, 90, 4, 164,
245, 4, 5, 73, 78, 65, 76, 32, 251, 80, 65, 6, 186, 177, 1, 84, 179, 148,
4, 65, 4, 176, 157, 4, 5, 79, 78, 71, 32, 85, 151, 168, 1, 65, 10, 142,
197, 5, 65, 2, 67, 2, 81, 2, 88, 3, 90, 8, 162, 194, 5, 71, 2, 72, 2, 89,
187, 2, 65, 8, 26, 72, 147, 196, 5, 65, 6, 40, 4, 79, 82, 84, 32, 231,
195, 5, 65, 4, 184, 229, 3, 2, 85, 69, 233, 79, 2, 65, 87, 32, 58, 73,
54, 69, 198, 194, 5, 67, 2, 81, 2, 88, 3, 90, 16, 50, 85, 198, 194, 5,
67, 2, 81, 2, 88, 3, 90, 8, 194, 194, 5, 67, 2, 81, 2, 88, 3, 90, 232,
13, 64, 10, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 183, 155, 3, 73, 230,
13, 78, 48, 178, 1, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 95, 56,
198, 1, 86, 48, 130, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2,
56, 3, 57, 18, 158, 192, 5, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55,
2, 56, 3, 57, 200, 1, 166, 1, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2,
54, 2, 55, 2, 56, 3, 57, 168, 1, 74, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2,
53, 2, 54, 2, 55, 95, 56, 20, 158, 190, 5, 48, 2, 49, 2, 50, 2, 51, 2,
52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 8, 194, 189, 5, 48, 2, 49, 2, 50,
3, 51, 4, 48, 6, 67, 65, 82, 84, 82, 73, 21, 2, 68, 82, 2, 175, 133, 4,
68, 2, 251, 191, 4, 73, 2, 215, 179, 3, 82, 144, 3, 154, 1, 65, 152, 2,
5, 68, 68, 89, 32, 66, 22, 76, 230, 14, 78, 144, 1, 5, 83, 84, 32, 84,
85, 21, 12, 84, 82, 65, 71, 82, 65, 77, 32, 70, 79, 82, 32, 10, 68, 9,
67, 85, 80, 32, 87, 73, 84, 72, 79, 58, 82, 211, 233, 4, 80, 2, 33, 6,
85, 84, 32, 72, 65, 78, 2, 223, 147, 4, 68, 6, 72, 9, 45, 79, 70, 70, 32,
67, 65, 76, 69, 29, 5, 68, 82, 79, 80, 45, 2, 253, 149, 4, 2, 78, 68, 4,
170, 161, 3, 83, 205, 117, 4, 66, 65, 82, 66, 2, 179, 149, 4, 69, 218, 1,
38, 69, 213, 2, 4, 85, 71, 85, 32, 16, 60, 6, 80, 72, 79, 78, 69, 32,
246, 1, 83, 211, 184, 2, 86, 12, 132, 1, 3, 82, 69, 67, 208, 150, 1, 3,
76, 79, 67, 178, 153, 3, 83, 189, 116, 13, 79, 78, 32, 84, 79, 80, 32,
79, 70, 32, 77, 79, 68, 6, 36, 5, 69, 73, 86, 69, 82, 51, 79, 5, 29, 5,
32, 87, 73, 84, 72, 2, 243, 38, 32, 2, 183, 146, 3, 82, 2, 11, 67, 2,
151, 236, 3, 79, 202, 1, 162, 1, 65, 84, 15, 70, 82, 65, 67, 84, 73, 79,
78, 32, 68, 73, 71, 73, 84, 32, 164, 2, 2, 76, 69, 252, 3, 5, 83, 73, 71,
78, 32, 198, 2, 86, 247, 182, 3, 68, 4, 60, 9, 82, 67, 72, 65, 73, 67,
32, 83, 72, 243, 210, 1, 73, 2, 167, 237, 2, 82, 14, 74, 84, 40, 2, 79,
78, 81, 10, 90, 69, 82, 79, 32, 70, 79, 82, 32, 79, 8, 36, 3, 72, 82, 69,
13, 2, 87, 79, 4, 11, 69, 4, 29, 5, 32, 70, 79, 82, 32, 4, 34, 79, 21, 4,
69, 86, 69, 78, 2, 17, 2, 68, 68, 2, 49, 10, 32, 80, 79, 87, 69, 82, 83,
32, 79, 70, 2, 133, 22, 2, 32, 70, 114, 44, 5, 84, 84, 69, 82, 32, 167,
239, 4, 78, 112, 214, 1, 68, 54, 78, 106, 82, 38, 84, 130, 208, 1, 65,
82, 76, 114, 86, 186, 5, 85, 206, 141, 1, 79, 238, 60, 73, 182, 196, 1,
83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 162, 7, 69, 234, 61, 72,
2, 77, 3, 89, 10, 242, 231, 4, 68, 138, 69, 72, 2, 90, 187, 2, 65, 10,
42, 65, 158, 172, 5, 71, 2, 78, 3, 89, 5, 41, 8, 75, 65, 65, 82, 65, 32,
80, 79, 2, 251, 36, 76, 6, 150, 209, 1, 82, 131, 221, 3, 65, 10, 178,
230, 4, 84, 138, 69, 72, 2, 83, 187, 2, 65, 20, 86, 67, 194, 1, 83, 204,
35, 3, 84, 85, 85, 222, 106, 78, 190, 66, 65, 187, 151, 3, 86, 6, 60, 9,
79, 77, 66, 73, 78, 73, 78, 71, 32, 215, 142, 1, 65, 4, 70, 65, 221, 174,
4, 11, 67, 65, 78, 68, 82, 65, 66, 73, 78, 68, 85, 2, 33, 6, 78, 85, 83,
86, 65, 82, 2, 183, 174, 4, 65, 2, 11, 73, 2, 137, 238, 3, 3, 68, 68, 72,
30, 49, 10, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 30, 166, 211, 1, 65,
38, 85, 22, 86, 186, 141, 1, 79, 238, 60, 73, 167, 204, 1, 69, 6, 80, 10,
78, 73, 83, 32, 82, 65, 67, 81, 85, 69, 158, 137, 3, 71, 139, 160, 2, 84,
2, 11, 84, 2, 25, 4, 32, 65, 78, 68, 2, 187, 158, 3, 32, 2, 147, 146, 5,
66, 162, 1, 210, 2, 65, 134, 1, 66, 174, 1, 67, 222, 2, 68, 202, 3, 69,
154, 2, 70, 182, 1, 71, 198, 1, 72, 64, 8, 89, 79, 85, 84, 72, 70, 85,
76, 52, 2, 73, 78, 46, 75, 98, 76, 146, 1, 77, 134, 1, 79, 62, 80, 142,
1, 82, 210, 1, 83, 224, 1, 14, 86, 65, 83, 84, 78, 69, 83, 83, 32, 79,
82, 32, 87, 65, 12, 2, 87, 65, 138, 94, 85, 167, 159, 4, 74, 8, 88, 4,
67, 67, 85, 77, 22, 83, 228, 20, 2, 68, 86, 221, 202, 1, 5, 71, 71, 82,
65, 86, 2, 195, 190, 1, 85, 2, 227, 225, 4, 67, 6, 92, 7, 79, 76, 68, 32,
82, 69, 83, 32, 5, 82, 65, 78, 67, 72, 229, 152, 4, 3, 65, 82, 82, 2,
197, 211, 4, 3, 79, 76, 85, 2, 11, 73, 2, 205, 170, 1, 3, 78, 71, 32, 22,
54, 72, 20, 3, 76, 79, 83, 66, 79, 167, 157, 2, 69, 2, 211, 235, 3, 65,
6, 26, 69, 171, 128, 4, 85, 4, 222, 253, 1, 68, 167, 140, 2, 78, 12, 28,
3, 77, 80, 76, 35, 78, 4, 246, 17, 73, 219, 191, 4, 69, 8, 32, 4, 83, 84,
65, 78, 23, 84, 2, 147, 144, 5, 67, 6, 46, 69, 20, 3, 82, 65, 82, 251,
143, 4, 65, 2, 199, 208, 4, 78, 2, 155, 176, 3, 73, 20, 80, 4, 65, 82,
75, 69, 22, 69, 210, 1, 73, 74, 85, 197, 129, 5, 3, 79, 85, 66, 2, 151,
207, 4, 78, 6, 132, 1, 19, 70, 69, 67, 84, 73, 86, 69, 78, 69, 83, 83,
32, 79, 82, 32, 68, 73, 83, 84, 34, 80, 137, 7, 6, 67, 73, 83, 73, 86,
69, 2, 11, 79, 2, 163, 206, 4, 82, 2, 11, 65, 2, 11, 82, 2, 143, 10, 84,
8, 68, 6, 70, 70, 73, 67, 85, 76, 34, 77, 161, 12, 4, 86, 69, 82, 71, 2,
11, 84, 2, 223, 135, 4, 73, 4, 140, 1, 2, 73, 78, 191, 203, 4, 77, 14,
100, 5, 77, 66, 69, 76, 76, 34, 78, 124, 4, 88, 72, 65, 85, 172, 106, 3,
84, 69, 82, 215, 165, 3, 65, 2, 137, 217, 4, 3, 73, 83, 72, 6, 80, 4, 68,
69, 65, 86, 20, 4, 76, 65, 82, 71, 229, 151, 3, 4, 67, 79, 85, 78, 2,
247, 162, 4, 79, 2, 131, 216, 4, 69, 2, 211, 202, 4, 83, 12, 70, 79, 76,
3, 85, 76, 76, 196, 5, 3, 65, 73, 76, 235, 233, 4, 76, 4, 18, 76, 35, 83,
2, 173, 201, 4, 3, 76, 79, 87, 2, 205, 4, 2, 84, 69, 4, 214, 197, 3, 32,
199, 59, 78, 10, 96, 8, 65, 84, 72, 69, 82, 73, 78, 71, 22, 79, 64, 3,
82, 69, 65, 65, 5, 85, 65, 82, 68, 69, 5, 163, 153, 4, 32, 2, 41, 8, 73,
78, 71, 32, 84, 79, 32, 77, 2, 159, 227, 4, 69, 2, 75, 84, 4, 48, 2, 65,
82, 33, 6, 79, 76, 68, 73, 78, 71, 2, 11, 68, 2, 247, 254, 3, 78, 2, 11,
32, 2, 227, 248, 1, 66, 4, 26, 67, 159, 217, 4, 78, 2, 143, 5, 82, 4, 60,
7, 69, 69, 80, 73, 78, 71, 32, 169, 193, 4, 2, 73, 78, 2, 11, 83, 2, 247,
139, 3, 77, 6, 18, 65, 107, 69, 4, 60, 3, 66, 79, 85, 21, 8, 87, 32, 79,
82, 32, 77, 79, 68, 2, 191, 196, 4, 82, 2, 223, 137, 4, 69, 2, 215, 196,
4, 71, 6, 26, 65, 30, 69, 47, 73, 2, 229, 195, 4, 2, 83, 83, 2, 11, 65,
2, 11, 83, 2, 251, 241, 3, 85, 2, 11, 82, 2, 247, 205, 4, 69, 4, 220,
209, 3, 7, 78, 32, 84, 72, 69, 32, 86, 199, 112, 80, 8, 54, 65, 64, 4,
69, 78, 69, 84, 229, 97, 2, 85, 82, 4, 22, 84, 243, 2, 67, 2, 17, 2, 84,
69, 2, 131, 195, 4, 82, 2, 131, 205, 1, 82, 12, 30, 69, 157, 1, 2, 73,
84, 10, 34, 76, 22, 83, 191, 239, 4, 65, 2, 219, 232, 1, 69, 6, 18, 73,
51, 80, 4, 30, 68, 137, 1, 2, 83, 84, 2, 147, 1, 69, 2, 11, 79, 2, 239,
133, 4, 78, 2, 163, 133, 4, 85, 10, 34, 69, 64, 2, 73, 78, 23, 84, 2, 11,
86, 2, 17, 2, 69, 82, 2, 11, 65, 2, 159, 211, 4, 78, 2, 131, 191, 4, 75,
6, 42, 79, 209, 138, 3, 4, 82, 69, 78, 71, 4, 26, 80, 219, 248, 4, 86, 2,
11, 80, 2, 235, 215, 3, 65, 2, 39, 83, 4, 26, 73, 191, 236, 4, 84, 2,
223, 189, 4, 84, 226, 2, 78, 65, 182, 31, 69, 146, 2, 73, 206, 1, 79,
100, 3, 82, 69, 69, 187, 8, 85, 146, 2, 44, 4, 65, 78, 65, 32, 145, 10,
2, 73, 32, 100, 122, 65, 38, 69, 76, 7, 76, 69, 84, 84, 69, 82, 32, 154,
7, 79, 76, 3, 73, 66, 73, 0, 3, 85, 66, 85, 45, 2, 83, 85, 4, 184, 8, 3,
65, 66, 65, 3, 66, 6, 58, 66, 0, 3, 69, 66, 69, 245, 7, 4, 89, 66, 69,
89, 2, 243, 7, 69, 78, 202, 1, 65, 42, 68, 82, 70, 2, 81, 14, 71, 50, 72,
38, 75, 62, 76, 32, 3, 77, 69, 69, 20, 2, 67, 72, 2, 74, 2, 80, 18, 78,
42, 83, 94, 84, 102, 86, 2, 87, 42, 90, 246, 143, 3, 66, 2, 82, 3, 89, 4,
252, 1, 2, 76, 73, 159, 227, 4, 73, 6, 30, 65, 29, 3, 72, 65, 65, 4, 218,
2, 65, 255, 1, 86, 2, 195, 228, 4, 76, 2, 123, 65, 6, 110, 65, 86, 78,
213, 226, 4, 3, 72, 65, 73, 4, 166, 147, 3, 72, 255, 242, 1, 65, 4, 26,
65, 235, 146, 3, 72, 2, 11, 65, 2, 167, 227, 4, 70, 4, 18, 65, 35, 72, 2,
11, 65, 2, 243, 226, 4, 77, 2, 211, 1, 65, 4, 192, 226, 4, 2, 79, 79,
191, 34, 65, 8, 32, 2, 65, 65, 18, 72, 23, 69, 2, 163, 16, 68, 4, 18, 69,
87, 65, 2, 211, 225, 4, 69, 10, 62, 65, 16, 3, 72, 65, 65, 178, 144, 3,
84, 183, 245, 1, 79, 2, 131, 1, 86, 5, 251, 224, 4, 76, 2, 17, 2, 65, 65,
2, 211, 224, 4, 86, 6, 26, 65, 143, 133, 5, 79, 4, 26, 86, 243, 132, 5,
65, 2, 21, 3, 73, 89, 65, 2, 255, 240, 4, 78, 6, 48, 3, 65, 66, 79, 14,
66, 1, 3, 79, 66, 79, 2, 23, 65, 2, 11, 79, 2, 11, 70, 2, 11, 73, 2, 135,
240, 4, 76, 2, 155, 131, 4, 75, 174, 1, 26, 67, 147, 143, 3, 68, 154, 1,
132, 1, 9, 72, 65, 82, 65, 67, 84, 69, 82, 32, 213, 215, 4, 17, 85, 82,
82, 69, 78, 67, 89, 32, 83, 89, 77, 66, 79, 76, 32, 66, 65, 152, 1, 176,
2, 6, 66, 79, 32, 66, 65, 73, 16, 6, 67, 72, 79, 32, 67, 72, 56, 3, 68,
79, 32, 44, 2, 70, 79, 76, 3, 72, 79, 32, 66, 75, 190, 1, 76, 138, 1, 77,
252, 1, 7, 65, 78, 71, 75, 72, 65, 78, 46, 78, 158, 1, 80, 234, 1, 82,
70, 83, 238, 2, 84, 224, 2, 3, 87, 79, 32, 34, 89, 225, 150, 4, 2, 79,
32, 2, 143, 12, 77, 8, 192, 129, 3, 2, 65, 78, 138, 173, 1, 73, 167, 58,
79, 4, 132, 218, 4, 3, 67, 72, 65, 227, 33, 68, 6, 32, 2, 32, 70, 21, 2,
78, 71, 4, 207, 128, 3, 65, 2, 139, 178, 3, 77, 4, 40, 4, 78, 79, 75, 72,
191, 252, 4, 72, 2, 207, 250, 4, 85, 14, 40, 2, 72, 79, 229, 9, 3, 79,
32, 75, 12, 26, 32, 191, 131, 4, 77, 10, 36, 2, 75, 72, 57, 3, 82, 65,
75, 8, 158, 9, 87, 150, 234, 3, 85, 210, 57, 79, 139, 60, 65, 2, 215,
163, 4, 72, 8, 76, 2, 79, 32, 224, 11, 8, 65, 75, 75, 72, 65, 78, 71, 89,
235, 239, 4, 85, 4, 32, 2, 67, 72, 163, 170, 4, 76, 2, 139, 217, 4, 85,
16, 28, 2, 65, 73, 211, 52, 79, 14, 42, 32, 176, 1, 3, 84, 65, 73, 19,
89, 10, 76, 4, 67, 72, 65, 84, 44, 5, 72, 65, 78, 45, 65, 22, 84, 159,
246, 4, 69, 2, 11, 84, 2, 11, 65, 2, 163, 247, 4, 87, 2, 151, 240, 3, 75,
4, 190, 218, 4, 72, 159, 11, 82, 2, 203, 2, 75, 2, 161, 207, 4, 2, 65,
77, 8, 60, 3, 71, 79, 32, 32, 3, 73, 75, 72, 29, 3, 79, 32, 78, 2, 11,
78, 2, 179, 211, 4, 71, 2, 205, 219, 4, 2, 65, 72, 4, 138, 168, 4, 69,
227, 79, 85, 12, 68, 6, 65, 73, 89, 65, 78, 78, 22, 72, 217, 212, 4, 3,
79, 32, 80, 2, 171, 227, 4, 79, 8, 36, 3, 73, 78, 84, 21, 2, 79, 32, 2,
223, 209, 4, 72, 6, 44, 2, 80, 72, 161, 5, 4, 83, 65, 77, 80, 4, 138,
165, 4, 85, 155, 1, 65, 4, 32, 2, 79, 32, 195, 245, 4, 85, 2, 11, 82, 2,
251, 242, 4, 85, 36, 44, 4, 65, 82, 65, 32, 225, 1, 2, 79, 32, 28, 62,
65, 130, 1, 85, 238, 230, 2, 73, 198, 140, 2, 69, 3, 79, 13, 64, 6, 73,
32, 77, 65, 73, 77, 238, 243, 4, 65, 2, 69, 3, 77, 4, 26, 65, 183, 167,
3, 85, 2, 11, 76, 2, 235, 223, 4, 65, 9, 142, 179, 4, 69, 163, 64, 85, 8,
24, 2, 82, 85, 23, 83, 2, 155, 223, 4, 83, 6, 198, 208, 4, 65, 226, 31,
85, 187, 2, 79, 18, 30, 72, 133, 2, 2, 79, 32, 14, 48, 6, 65, 78, 84, 72,
65, 75, 21, 2, 79, 32, 2, 175, 232, 3, 72, 12, 80, 8, 78, 65, 78, 71, 77,
79, 78, 84, 20, 4, 80, 72, 85, 84, 13, 2, 84, 72, 2, 131, 210, 4, 72, 2,
123, 72, 8, 34, 65, 190, 159, 4, 79, 3, 85, 4, 150, 164, 3, 72, 159, 204,
1, 78, 4, 38, 84, 225, 182, 2, 3, 80, 65, 84, 2, 243, 208, 4, 65, 2, 11,
87, 2, 195, 153, 3, 65, 6, 30, 65, 45, 3, 79, 32, 89, 2, 21, 3, 77, 65,
75, 2, 223, 162, 3, 75, 4, 238, 157, 4, 73, 227, 77, 65, 12, 26, 82, 167,
199, 2, 84, 10, 30, 69, 145, 1, 2, 77, 79, 6, 18, 32, 107, 70, 4, 84, 11,
68, 79, 69, 83, 32, 78, 79, 84, 32, 69, 88, 229, 228, 3, 4, 69, 88, 73,
83, 2, 171, 127, 73, 2, 211, 202, 3, 79, 4, 46, 77, 177, 194, 3, 5, 68,
89, 78, 65, 77, 2, 191, 178, 3, 69, 10, 18, 78, 95, 82, 8, 26, 32, 235,
227, 3, 75, 6, 26, 83, 203, 224, 2, 71, 4, 170, 211, 2, 65, 187, 219, 1,
80, 2, 21, 3, 68, 32, 80, 2, 25, 4, 76, 65, 67, 69, 2, 17, 2, 32, 77, 2,
159, 213, 3, 69, 4, 56, 4, 85, 71, 72, 84, 189, 212, 3, 4, 78, 71, 32,
83, 2, 133, 192, 1, 5, 32, 66, 65, 76, 76, 46, 22, 32, 207, 3, 45, 30,
154, 1, 68, 90, 76, 118, 82, 170, 158, 1, 66, 86, 67, 194, 6, 83, 254,
166, 1, 80, 253, 22, 15, 78, 69, 84, 87, 79, 82, 75, 69, 68, 32, 67, 79,
77, 80, 85, 4, 64, 10, 73, 77, 69, 78, 83, 73, 79, 78, 65, 76, 135, 162,
1, 79, 2, 175, 193, 3, 32, 6, 80, 12, 73, 78, 69, 83, 32, 67, 79, 78, 86,
69, 82, 71, 249, 154, 1, 2, 69, 70, 4, 153, 188, 4, 3, 73, 78, 71, 10,
40, 4, 65, 89, 83, 32, 155, 154, 1, 73, 8, 238, 196, 2, 66, 130, 165, 1,
65, 130, 82, 76, 31, 82, 16, 44, 2, 68, 32, 254, 3, 80, 247, 160, 1, 69,
12, 196, 2, 12, 84, 79, 80, 45, 76, 73, 71, 72, 84, 69, 68, 32, 80, 17,
76, 69, 70, 84, 45, 76, 73, 71, 72, 84, 69, 68, 32, 68, 79, 87, 78, 0,
16, 82, 73, 71, 72, 84, 45, 76, 73, 71, 72, 84, 69, 68, 32, 85, 80, 221,
137, 2, 25, 66, 79, 84, 84, 79, 77, 45, 76, 73, 71, 72, 84, 69, 68, 32,
82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 6, 76, 4, 76, 69, 70, 84, 69, 11,
82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 32, 2, 11, 87, 2, 25, 4, 65, 82,
68, 83, 2, 173, 243, 1, 2, 32, 69, 4, 146, 243, 1, 69, 159, 22, 65, 2,
177, 163, 4, 5, 69, 82, 45, 69, 77, 8, 34, 77, 85, 4, 78, 68, 69, 82, 4,
21, 3, 66, 83, 32, 4, 38, 85, 229, 228, 2, 3, 68, 79, 87, 2, 235, 217, 3,
80, 4, 216, 177, 3, 10, 32, 67, 76, 79, 85, 68, 32, 65, 78, 68, 181, 48,
2, 83, 84, 230, 5, 204, 1, 6, 66, 69, 84, 65, 78, 32, 148, 45, 6, 69, 32,
79, 86, 69, 82, 72, 7, 70, 73, 78, 65, 71, 72, 32, 206, 8, 71, 152, 1, 3,
76, 68, 69, 252, 2, 2, 77, 69, 60, 2, 78, 89, 78, 82, 171, 208, 3, 67,
160, 3, 228, 2, 18, 65, 83, 84, 82, 79, 76, 79, 71, 73, 67, 65, 76, 32,
83, 73, 71, 78, 32, 172, 1, 18, 67, 65, 78, 84, 73, 76, 76, 65, 84, 73,
79, 78, 32, 83, 73, 71, 78, 32, 172, 1, 6, 68, 73, 71, 73, 84, 32, 100,
9, 75, 85, 32, 82, 85, 32, 75, 72, 65, 26, 76, 176, 3, 5, 77, 65, 82, 75,
32, 222, 18, 83, 181, 15, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32,
6, 46, 83, 169, 40, 6, 45, 75, 72, 89, 85, 68, 4, 104, 8, 68, 79, 78, 71,
32, 84, 83, 72, 169, 21, 13, 71, 82, 65, 32, 71, 67, 65, 78, 32, 45, 67,
72, 65, 2, 199, 31, 85, 8, 148, 1, 7, 83, 66, 85, 66, 32, 45, 67, 180,
207, 3, 5, 72, 69, 65, 86, 89, 0, 5, 76, 73, 71, 72, 84, 233, 100, 8, 67,
65, 78, 71, 32, 84, 69, 45, 2, 167, 205, 3, 72, 40, 144, 229, 2, 4, 72,
65, 76, 70, 82, 70, 30, 83, 42, 84, 62, 90, 210, 86, 78, 14, 79, 227,
112, 69, 5, 221, 10, 2, 32, 66, 92, 96, 6, 69, 84, 84, 69, 82, 32, 153,
2, 13, 79, 71, 79, 84, 89, 80, 69, 32, 83, 73, 71, 78, 32, 88, 230, 1,
75, 170, 120, 82, 168, 146, 3, 10, 70, 73, 88, 69, 68, 45, 70, 79, 82,
77, 202, 1, 68, 86, 78, 46, 83, 38, 84, 46, 66, 2, 67, 2, 71, 2, 80, 2,
90, 138, 69, 45, 2, 72, 2, 74, 2, 76, 2, 77, 2, 87, 2, 89, 187, 2, 65, 8,
226, 210, 4, 83, 14, 72, 2, 75, 187, 2, 65, 4, 224, 25, 3, 76, 72, 65,
13, 4, 67, 72, 65, 68, 80, 254, 2, 66, 176, 1, 8, 77, 78, 89, 65, 77, 32,
89, 73, 114, 67, 172, 2, 13, 89, 73, 71, 32, 77, 71, 79, 32, 84, 83, 72,
69, 71, 190, 1, 71, 212, 2, 9, 65, 78, 71, 32, 75, 72, 65, 78, 71, 58,
72, 48, 2, 73, 78, 246, 1, 78, 222, 1, 82, 118, 83, 46, 84, 36, 4, 76,
69, 65, 68, 220, 105, 2, 80, 65, 173, 191, 1, 17, 68, 69, 76, 73, 77, 73,
84, 69, 82, 32, 84, 83, 72, 69, 71, 32, 66, 10, 52, 9, 75, 65, 45, 32,
83, 72, 79, 71, 32, 27, 83, 4, 142, 1, 71, 67, 89, 6, 34, 75, 201, 21, 3,
68, 85, 83, 4, 56, 6, 65, 45, 32, 83, 72, 79, 89, 4, 85, 82, 32, 89, 2,
21, 3, 71, 32, 71, 2, 41, 8, 73, 32, 77, 71, 79, 32, 82, 71, 2, 179, 131,
3, 89, 2, 221, 2, 2, 73, 71, 12, 84, 5, 65, 82, 69, 84, 32, 240, 1, 2,
72, 69, 29, 7, 76, 79, 83, 73, 78, 71, 32, 6, 112, 12, 45, 68, 90, 85,
68, 32, 82, 84, 65, 71, 83, 32, 97, 12, 89, 73, 71, 32, 77, 71, 79, 32,
80, 72, 85, 82, 4, 42, 66, 37, 6, 77, 69, 32, 76, 79, 78, 2, 33, 6, 90,
72, 73, 32, 77, 73, 2, 203, 22, 71, 2, 225, 3, 3, 32, 83, 72, 2, 137,
189, 2, 2, 32, 77, 4, 68, 13, 66, 82, 68, 65, 32, 82, 78, 89, 73, 78, 71,
32, 89, 3, 89, 2, 213, 5, 11, 73, 71, 32, 77, 71, 79, 32, 83, 71, 65, 66,
12, 68, 4, 84, 69, 82, 32, 141, 2, 8, 85, 71, 32, 82, 84, 65, 71, 83, 8,
56, 8, 89, 73, 71, 32, 77, 71, 79, 32, 191, 132, 4, 84, 6, 68, 4, 45, 85,
77, 32, 117, 9, 84, 82, 85, 78, 67, 65, 84, 69, 68, 4, 88, 7, 82, 78, 65,
77, 32, 66, 67, 245, 2, 10, 71, 84, 69, 82, 32, 84, 83, 72, 69, 71, 2,
241, 2, 2, 65, 68, 2, 195, 198, 4, 32, 4, 21, 3, 32, 71, 89, 4, 238, 248,
3, 79, 135, 18, 65, 2, 17, 2, 65, 76, 2, 205, 163, 4, 2, 65, 78, 6, 92,
6, 73, 84, 73, 65, 76, 32, 145, 129, 4, 11, 84, 69, 82, 83, 89, 76, 76,
65, 66, 73, 67, 4, 68, 13, 66, 82, 68, 65, 32, 82, 78, 89, 73, 78, 71,
32, 89, 3, 89, 2, 53, 11, 73, 71, 32, 77, 71, 79, 32, 77, 68, 85, 78, 2,
143, 165, 4, 32, 10, 72, 10, 71, 65, 83, 32, 66, 90, 85, 78, 71, 32, 77,
4, 89, 73, 83, 32, 4, 56, 3, 83, 71, 79, 237, 162, 4, 5, 78, 89, 73, 32,
90, 2, 251, 9, 82, 6, 44, 5, 84, 83, 72, 69, 71, 143, 254, 3, 83, 5, 255,
253, 3, 32, 4, 220, 253, 3, 8, 71, 89, 65, 32, 71, 82, 65, 77, 1, 14, 73,
78, 32, 67, 72, 69, 78, 32, 83, 80, 85, 78, 71, 83, 4, 232, 252, 3, 4,
66, 82, 85, 76, 39, 72, 6, 32, 4, 82, 65, 73, 76, 55, 83, 2, 225, 7, 9,
73, 78, 71, 32, 77, 67, 72, 65, 78, 4, 56, 5, 65, 32, 45, 80, 72, 173,
251, 3, 3, 72, 69, 71, 2, 147, 157, 4, 82, 156, 1, 84, 4, 73, 71, 78, 32,
228, 6, 9, 85, 66, 74, 79, 73, 78, 69, 68, 32, 143, 4, 89, 42, 176, 1, 4,
71, 82, 85, 32, 96, 2, 76, 67, 30, 77, 36, 11, 78, 89, 73, 32, 90, 76,
65, 32, 78, 65, 65, 22, 82, 252, 2, 2, 89, 65, 130, 4, 73, 165, 4, 5, 83,
78, 65, 32, 76, 4, 40, 3, 67, 65, 78, 1, 3, 77, 69, 68, 2, 25, 4, 32, 82,
71, 89, 2, 169, 4, 2, 73, 78, 4, 238, 3, 73, 179, 4, 69, 4, 136, 4, 2,
65, 82, 231, 3, 67, 2, 179, 153, 4, 32, 20, 116, 4, 68, 69, 76, 32, 240,
1, 10, 74, 69, 83, 32, 83, 85, 32, 78, 71, 65, 145, 245, 3, 6, 78, 65,
77, 32, 66, 67, 16, 52, 5, 68, 75, 65, 82, 32, 53, 4, 78, 65, 71, 32, 8,
94, 71, 169, 208, 2, 6, 82, 68, 69, 76, 32, 78, 8, 42, 71, 69, 6, 82, 68,
69, 76, 32, 68, 6, 46, 67, 220, 148, 2, 2, 78, 89, 231, 123, 83, 2, 143,
187, 4, 73, 2, 147, 152, 3, 75, 2, 187, 201, 2, 32, 4, 18, 78, 71, 82, 2,
11, 71, 2, 21, 3, 32, 82, 84, 2, 11, 65, 2, 135, 253, 3, 71, 2, 17, 2,
32, 84, 2, 171, 164, 3, 83, 94, 68, 7, 76, 69, 84, 84, 69, 82, 32, 145,
2, 5, 83, 73, 71, 78, 32, 88, 220, 1, 10, 70, 73, 88, 69, 68, 45, 70, 79,
82, 77, 242, 238, 3, 68, 50, 75, 38, 78, 46, 83, 38, 84, 46, 66, 2, 67,
2, 71, 2, 80, 2, 90, 138, 69, 45, 2, 72, 2, 74, 2, 76, 2, 77, 2, 82, 2,
87, 2, 89, 187, 2, 65, 6, 11, 32, 6, 186, 181, 4, 82, 2, 87, 3, 89, 6,
38, 73, 50, 77, 33, 3, 76, 67, 69, 2, 45, 9, 78, 86, 69, 82, 84, 69, 68,
32, 77, 2, 11, 67, 2, 45, 2, 72, 85, 2, 25, 4, 32, 84, 83, 65, 2, 11, 32,
2, 147, 234, 2, 67, 20, 60, 6, 76, 76, 65, 66, 76, 69, 21, 5, 77, 66, 79,
76, 32, 2, 247, 164, 4, 32, 18, 104, 4, 68, 82, 73, 76, 32, 6, 78, 79,
82, 32, 66, 85, 130, 1, 80, 93, 7, 82, 68, 79, 32, 82, 74, 69, 2, 11, 32,
2, 231, 143, 4, 66, 9, 11, 32, 6, 72, 4, 66, 90, 72, 73, 0, 4, 71, 83,
85, 77, 1, 4, 78, 89, 73, 83, 2, 145, 212, 2, 5, 32, 45, 75, 72, 89, 4,
52, 6, 65, 68, 77, 65, 32, 71, 21, 3, 72, 85, 82, 2, 231, 230, 2, 68, 2,
199, 117, 32, 5, 181, 245, 2, 6, 32, 82, 71, 89, 65, 32, 30, 116, 8, 82,
69, 86, 69, 82, 83, 69, 68, 194, 90, 85, 22, 86, 186, 141, 1, 79, 238,
60, 73, 166, 204, 1, 69, 235, 61, 65, 4, 245, 164, 2, 2, 32, 73, 2, 25,
4, 32, 73, 78, 70, 2, 11, 73, 2, 11, 78, 2, 139, 193, 2, 73, 118, 216, 1,
9, 67, 79, 78, 83, 79, 78, 65, 78, 84, 20, 7, 76, 69, 84, 84, 69, 82, 32,
164, 6, 20, 77, 79, 68, 73, 70, 73, 69, 82, 32, 76, 69, 84, 84, 69, 82,
32, 76, 65, 66, 73, 37, 8, 83, 69, 80, 65, 82, 65, 84, 79, 2, 223, 240,
3, 32, 112, 106, 65, 108, 17, 66, 69, 82, 66, 69, 82, 32, 65, 67, 65, 68,
69, 77, 89, 32, 89, 65, 30, 84, 211, 1, 89, 4, 84, 6, 89, 69, 82, 32, 89,
65, 137, 172, 4, 9, 72, 65, 71, 71, 65, 82, 32, 89, 65, 2, 147, 172, 4,
71, 4, 142, 173, 4, 72, 3, 74, 18, 92, 11, 65, 87, 69, 76, 76, 69, 77,
69, 84, 32, 89, 21, 8, 85, 65, 82, 69, 71, 32, 89, 65, 2, 235, 205, 2,
65, 16, 62, 71, 226, 26, 75, 210, 143, 4, 90, 62, 78, 86, 72, 3, 81, 4,
190, 171, 4, 72, 3, 78, 86, 54, 65, 210, 25, 69, 158, 145, 4, 73, 2, 79,
3, 85, 77, 194, 1, 71, 2, 75, 18, 83, 30, 84, 30, 90, 134, 23, 68, 126,
66, 2, 72, 198, 58, 82, 142, 213, 3, 67, 146, 1, 65, 2, 70, 2, 74, 2, 76,
2, 77, 2, 78, 2, 80, 2, 81, 2, 86, 2, 87, 3, 89, 7, 199, 24, 72, 7, 150,
169, 4, 72, 3, 83, 7, 250, 168, 4, 72, 3, 84, 7, 222, 168, 4, 72, 3, 90,
2, 141, 191, 3, 4, 65, 76, 73, 90, 2, 219, 230, 3, 82, 6, 76, 2, 69, 82,
21, 13, 72, 84, 32, 84, 82, 73, 70, 79, 76, 73, 65, 84, 69, 5, 167, 234,
3, 32, 2, 33, 6, 32, 83, 78, 79, 87, 70, 2, 219, 58, 76, 19, 11, 32, 16,
72, 8, 79, 80, 69, 82, 65, 84, 79, 82, 233, 1, 5, 87, 73, 84, 72, 32, 11,
11, 32, 8, 38, 65, 101, 5, 87, 73, 84, 72, 32, 4, 25, 4, 66, 79, 86, 69,
4, 11, 32, 4, 26, 76, 171, 131, 3, 82, 2, 11, 69, 2, 179, 131, 3, 70, 4,
26, 82, 159, 164, 3, 68, 2, 17, 2, 73, 83, 2, 249, 209, 2, 3, 73, 78, 71,
6, 26, 68, 223, 239, 1, 82, 4, 11, 79, 4, 247, 129, 2, 84, 6, 26, 82,
187, 131, 1, 83, 2, 11, 32, 2, 195, 177, 1, 67, 5, 21, 3, 32, 84, 87, 2,
21, 3, 79, 32, 68, 2, 185, 92, 3, 79, 84, 83, 170, 1, 100, 5, 72, 85, 84,
65, 32, 184, 6, 11, 79, 78, 73, 65, 78, 32, 83, 73, 71, 78, 32, 231, 136,
3, 69, 164, 1, 178, 1, 65, 88, 7, 76, 69, 84, 84, 69, 82, 32, 204, 1, 2,
83, 73, 200, 1, 11, 86, 79, 87, 69, 76, 32, 83, 73, 71, 78, 32, 218, 168,
2, 68, 180, 155, 1, 2, 71, 86, 255, 71, 79, 4, 18, 66, 51, 78, 2, 29, 5,
66, 82, 69, 86, 73, 2, 247, 26, 65, 2, 175, 140, 4, 74, 94, 254, 65, 65,
38, 68, 114, 84, 46, 86, 186, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78,
46, 83, 82, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2, 80, 138, 69, 72, 2, 76, 2,
77, 2, 82, 2, 89, 186, 2, 69, 3, 79, 12, 21, 3, 71, 78, 32, 12, 46, 67,
98, 78, 190, 66, 65, 187, 151, 3, 86, 2, 11, 65, 2, 11, 78, 2, 25, 4, 68,
82, 65, 66, 2, 11, 73, 2, 11, 78, 2, 171, 248, 3, 68, 2, 11, 85, 2, 167,
248, 3, 75, 30, 78, 83, 242, 68, 65, 38, 85, 22, 86, 166, 202, 1, 73,
198, 140, 2, 69, 3, 79, 4, 25, 4, 72, 79, 82, 84, 4, 11, 32, 4, 230, 155,
4, 69, 3, 79, 4, 176, 230, 3, 8, 67, 65, 80, 73, 84, 65, 76, 32, 239, 24,
69, 254, 2, 192, 2, 12, 68, 72, 82, 73, 32, 76, 69, 84, 84, 69, 82, 32,
180, 4, 10, 76, 79, 78, 71, 32, 83, 73, 75, 73, 32, 154, 4, 77, 18, 78,
34, 79, 80, 2, 80, 32, 168, 17, 23, 82, 84, 79, 73, 83, 69, 32, 83, 72,
69, 76, 76, 32, 66, 82, 65, 67, 75, 69, 84, 69, 68, 32, 130, 4, 84, 202,
151, 2, 73, 249, 70, 5, 75, 89, 79, 32, 84, 104, 242, 1, 71, 42, 74, 30,
77, 34, 78, 70, 72, 34, 80, 34, 83, 234, 55, 82, 210, 147, 1, 79, 238,
60, 69, 42, 76, 198, 2, 65, 154, 194, 1, 67, 2, 68, 2, 75, 2, 84, 2, 88,
2, 90, 138, 69, 66, 2, 70, 2, 81, 2, 86, 186, 2, 73, 2, 85, 3, 89, 6,
150, 148, 4, 72, 2, 74, 187, 2, 65, 4, 166, 150, 4, 65, 3, 89, 4, 210,
147, 4, 66, 187, 2, 65, 14, 66, 71, 142, 201, 2, 74, 222, 132, 1, 88,
138, 69, 68, 187, 2, 65, 4, 238, 146, 4, 74, 187, 2, 65, 4, 206, 146, 4,
83, 187, 2, 65, 10, 54, 72, 150, 200, 2, 75, 230, 201, 1, 84, 187, 2, 65,
4, 246, 145, 4, 84, 187, 2, 65, 108, 92, 7, 76, 69, 84, 84, 69, 82, 32,
228, 2, 5, 83, 73, 71, 78, 32, 58, 85, 143, 156, 2, 68, 82, 190, 1, 65,
22, 68, 30, 78, 58, 82, 14, 84, 30, 66, 2, 67, 2, 71, 2, 74, 2, 75, 2,
80, 226, 144, 4, 69, 2, 72, 2, 73, 2, 76, 2, 77, 2, 79, 2, 83, 2, 85, 2,
86, 2, 88, 3, 89, 5, 239, 145, 4, 65, 9, 122, 68, 227, 144, 4, 72, 11,
34, 78, 158, 145, 4, 71, 3, 89, 5, 155, 145, 4, 89, 7, 39, 82, 9, 26, 84,
227, 144, 4, 72, 5, 223, 144, 4, 72, 4, 176, 238, 3, 2, 83, 69, 177, 25,
4, 72, 69, 67, 65, 2, 205, 205, 3, 2, 78, 71, 2, 239, 28, 65, 2, 11, 71,
2, 135, 249, 3, 85, 6, 32, 2, 84, 72, 207, 128, 3, 76, 5, 11, 66, 2, 11,
82, 2, 131, 164, 2, 85, 72, 252, 1, 4, 65, 82, 67, 32, 162, 2, 67, 44, 2,
72, 65, 166, 3, 80, 140, 3, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32,
76, 79, 87, 84, 5, 76, 69, 70, 84, 32, 228, 1, 6, 82, 73, 71, 72, 84, 32,
170, 2, 83, 38, 84, 81, 7, 87, 73, 84, 72, 32, 85, 80, 6, 180, 1, 19, 65,
78, 84, 73, 67, 76, 79, 67, 75, 87, 73, 83, 69, 32, 65, 82, 82, 79, 87,
73, 21, 67, 76, 79, 67, 75, 87, 73, 83, 69, 32, 65, 82, 82, 79, 87, 32,
87, 73, 84, 72, 32, 5, 29, 5, 32, 87, 73, 84, 72, 2, 17, 2, 32, 80, 2,
167, 130, 2, 76, 2, 11, 77, 2, 251, 129, 2, 73, 2, 11, 85, 2, 217, 183,
3, 3, 82, 76, 89, 34, 36, 3, 76, 70, 32, 135, 138, 4, 84, 32, 70, 70,
186, 1, 76, 22, 82, 178, 2, 83, 250, 5, 66, 211, 245, 1, 73, 8, 136, 1,
15, 79, 82, 87, 65, 82, 68, 45, 70, 65, 67, 73, 78, 71, 32, 82, 157, 2,
13, 76, 65, 73, 76, 73, 78, 71, 32, 82, 79, 66, 79, 84, 4, 22, 85, 243,
1, 79, 2, 159, 202, 3, 78, 8, 41, 2, 69, 70, 8, 21, 3, 73, 71, 72, 8, 11,
84, 8, 54, 32, 69, 9, 45, 70, 65, 67, 73, 78, 71, 32, 82, 2, 11, 80, 2,
33, 6, 65, 82, 69, 78, 84, 72, 2, 207, 223, 1, 69, 6, 38, 79, 21, 5, 85,
78, 78, 69, 82, 2, 239, 181, 3, 66, 4, 29, 5, 32, 70, 82, 65, 77, 4, 11,
69, 4, 11, 45, 4, 218, 133, 4, 49, 3, 50, 4, 18, 69, 59, 84, 2, 11, 67,
2, 11, 84, 2, 11, 73, 2, 255, 136, 2, 79, 2, 17, 2, 65, 78, 2, 11, 68, 2,
21, 3, 73, 78, 71, 2, 17, 2, 32, 80, 2, 11, 69, 2, 11, 82, 2, 163, 180,
3, 83, 4, 17, 2, 69, 82, 4, 33, 6, 32, 72, 65, 76, 70, 32, 4, 250, 3, 66,
139, 106, 87, 10, 180, 1, 13, 74, 85, 83, 84, 73, 70, 73, 69, 68, 32, 76,
79, 87, 126, 67, 50, 72, 161, 217, 2, 21, 66, 76, 65, 67, 75, 32, 76, 69,
70, 84, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 83, 2, 237, 1, 7, 69, 82,
32, 82, 73, 71, 72, 8, 78, 67, 50, 72, 33, 13, 74, 85, 83, 84, 73, 70,
73, 69, 68, 32, 76, 79, 87, 4, 26, 79, 199, 135, 3, 82, 2, 223, 194, 3,
82, 2, 209, 173, 3, 3, 65, 76, 70, 2, 33, 6, 69, 82, 32, 76, 69, 70, 2,
53, 11, 84, 32, 81, 85, 65, 82, 84, 69, 82, 32, 66, 2, 11, 76, 2, 137,
171, 2, 3, 65, 67, 75, 2, 157, 172, 3, 4, 81, 85, 65, 82, 2, 11, 79, 2,
249, 171, 3, 12, 82, 84, 79, 73, 83, 69, 32, 83, 72, 69, 76, 76, 2, 29,
5, 87, 65, 82, 68, 83, 2, 17, 2, 32, 65, 2, 237, 128, 3, 4, 82, 82, 79,
87, 20, 188, 1, 22, 67, 74, 75, 32, 85, 78, 73, 70, 73, 69, 68, 32, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 161, 2, 19, 76, 65, 84, 73, 78, 32,
67, 65, 80, 73, 84, 65, 76, 32, 76, 69, 84, 84, 69, 18, 40, 2, 52, 69,
34, 53, 54, 54, 87, 55, 4, 202, 1, 48, 139, 208, 2, 56, 4, 30, 50, 141,
1, 2, 66, 56, 2, 131, 181, 3, 68, 6, 48, 2, 50, 53, 22, 53, 185, 208, 2,
2, 55, 50, 2, 219, 250, 3, 51, 2, 67, 53, 4, 32, 2, 48, 66, 21, 2, 54,
68, 2, 151, 250, 3, 57, 2, 131, 250, 3, 55, 2, 11, 82, 2, 135, 188, 3,
32, 64, 48, 6, 65, 76, 32, 82, 85, 78, 21, 2, 79, 32, 2, 203, 255, 2, 79,
62, 72, 7, 76, 69, 84, 84, 69, 82, 32, 217, 2, 6, 83, 73, 71, 78, 32, 82,
60, 206, 1, 66, 106, 78, 138, 31, 73, 206, 141, 1, 69, 138, 76, 67, 138,
189, 1, 65, 234, 61, 68, 2, 71, 2, 72, 2, 74, 2, 75, 2, 76, 2, 77, 2, 80,
2, 82, 2, 83, 2, 84, 2, 87, 2, 89, 186, 2, 79, 3, 85, 12, 52, 7, 82, 69,
65, 84, 72, 89, 32, 183, 246, 3, 65, 10, 182, 31, 73, 206, 141, 1, 69,
223, 178, 2, 65, 4, 202, 243, 3, 71, 187, 2, 65, 2, 17, 2, 73, 83, 2, 21,
3, 73, 78, 71, 2, 11, 32, 2, 211, 200, 2, 84, 104, 54, 65, 254, 1, 69,
86, 73, 246, 11, 79, 231, 1, 85, 16, 66, 67, 36, 2, 68, 69, 34, 77, 20,
2, 78, 83, 231, 163, 3, 73, 4, 218, 233, 1, 75, 219, 209, 1, 84, 2, 133,
17, 4, 32, 77, 65, 82, 5, 243, 212, 1, 32, 4, 44, 2, 80, 76, 33, 5, 86,
69, 82, 83, 65, 2, 11, 85, 2, 147, 212, 3, 84, 2, 163, 63, 76, 4, 52, 7,
65, 83, 85, 82, 69, 32, 67, 235, 220, 2, 69, 2, 11, 72, 2, 171, 4, 69,
66, 156, 1, 3, 65, 78, 71, 176, 3, 8, 68, 69, 78, 84, 32, 69, 77, 66, 20,
9, 71, 82, 65, 77, 32, 70, 79, 82, 32, 140, 2, 4, 80, 76, 69, 32, 159,
155, 3, 67, 16, 48, 2, 76, 69, 245, 1, 5, 85, 76, 65, 82, 32, 10, 44, 6,
32, 87, 73, 84, 72, 32, 163, 1, 45, 8, 80, 9, 83, 69, 82, 73, 70, 83, 32,
65, 84, 54, 85, 238, 169, 2, 82, 207, 68, 68, 2, 17, 2, 32, 66, 2, 189,
222, 3, 3, 79, 84, 84, 2, 149, 61, 2, 78, 68, 2, 193, 204, 2, 4, 72, 69,
65, 68, 6, 68, 9, 70, 76, 65, 71, 32, 79, 78, 32, 80, 34, 82, 195, 139,
2, 66, 2, 11, 79, 2, 199, 209, 3, 83, 2, 11, 85, 2, 231, 175, 3, 76, 2,
147, 219, 3, 76, 16, 66, 69, 34, 72, 34, 76, 22, 77, 46, 84, 42, 87, 155,
211, 1, 70, 2, 11, 65, 2, 227, 231, 1, 82, 2, 11, 69, 2, 227, 249, 1, 65,
2, 207, 188, 3, 65, 2, 21, 3, 79, 85, 78, 2, 147, 189, 2, 84, 2, 17, 2,
72, 85, 2, 251, 199, 1, 78, 4, 178, 177, 2, 65, 251, 41, 73, 30, 176, 2,
3, 67, 79, 76, 24, 20, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32, 66,
65, 82, 32, 87, 73, 84, 72, 32, 98, 80, 34, 84, 20, 13, 86, 69, 82, 84,
73, 67, 65, 76, 32, 66, 65, 82, 32, 44, 9, 83, 79, 76, 73, 68, 85, 83,
32, 66, 224, 21, 2, 68, 65, 160, 187, 1, 6, 78, 69, 83, 84, 69, 68, 159,
12, 73, 2, 165, 37, 2, 79, 78, 4, 34, 68, 33, 4, 84, 82, 73, 80, 2, 17,
2, 79, 85, 2, 11, 66, 2, 177, 183, 3, 2, 76, 69, 4, 142, 223, 1, 76, 235,
110, 82, 2, 195, 202, 1, 73, 8, 42, 66, 74, 68, 170, 189, 1, 82, 115, 87,
2, 29, 5, 73, 78, 65, 82, 89, 2, 21, 3, 32, 82, 69, 2, 143, 33, 76, 2,
25, 4, 69, 76, 73, 77, 2, 163, 172, 2, 73, 12, 32, 2, 76, 76, 42, 77, 23,
80, 5, 17, 2, 69, 89, 2, 255, 220, 1, 66, 2, 247, 184, 2, 66, 6, 44, 5,
73, 67, 65, 76, 32, 199, 211, 3, 72, 4, 18, 68, 47, 70, 2, 11, 82, 2, 11,
73, 2, 199, 225, 3, 78, 2, 195, 249, 1, 73, 6, 18, 69, 79, 77, 5, 213,
191, 3, 14, 32, 76, 73, 71, 72, 84, 32, 77, 79, 79, 78, 32, 65, 82, 2,
191, 174, 3, 80, 216, 1, 76, 3, 71, 82, 73, 22, 76, 214, 12, 82, 173,
188, 2, 5, 77, 66, 76, 69, 82, 2, 239, 219, 2, 75, 162, 1, 68, 11, 85,
45, 84, 73, 71, 65, 76, 65, 82, 73, 32, 135, 226, 3, 73, 160, 1, 122, 65,
42, 67, 30, 68, 106, 71, 32, 7, 76, 69, 84, 84, 69, 82, 32, 178, 3, 82,
32, 5, 83, 73, 71, 78, 32, 131, 3, 86, 2, 11, 85, 2, 133, 159, 3, 2, 32,
76, 2, 201, 162, 3, 2, 79, 78, 4, 18, 79, 67, 65, 2, 11, 85, 2, 11, 66,
2, 25, 4, 76, 69, 32, 68, 2, 11, 65, 2, 243, 186, 3, 78, 2, 213, 218, 2,
3, 69, 77, 73, 100, 206, 1, 65, 38, 68, 46, 76, 38, 82, 34, 84, 46, 86,
186, 5, 85, 186, 202, 1, 73, 138, 196, 1, 78, 46, 83, 82, 66, 2, 67, 2,
71, 2, 74, 2, 75, 2, 80, 206, 40, 79, 162, 8, 69, 158, 20, 72, 2, 77, 3,
89, 9, 242, 221, 3, 65, 2, 73, 3, 85, 8, 142, 150, 3, 68, 138, 69, 72,
187, 2, 65, 6, 134, 209, 1, 76, 159, 140, 2, 65, 4, 198, 218, 3, 82, 187,
2, 65, 8, 158, 149, 3, 84, 138, 69, 72, 187, 2, 65, 10, 214, 5, 79, 223,
214, 3, 65, 2, 11, 69, 2, 223, 222, 1, 80, 18, 174, 1, 65, 72, 6, 76, 79,
79, 80, 69, 68, 40, 2, 79, 77, 0, 5, 83, 72, 82, 73, 73, 48, 13, 67, 65,
78, 68, 82, 65, 32, 65, 78, 85, 78, 65, 83, 22, 80, 135, 150, 3, 86, 4,
26, 86, 191, 149, 3, 78, 2, 21, 3, 65, 71, 82, 2, 231, 220, 1, 65, 2, 17,
2, 32, 86, 2, 203, 157, 1, 73, 2, 17, 2, 32, 80, 2, 25, 4, 85, 83, 72,
80, 2, 187, 208, 3, 73, 2, 193, 180, 3, 2, 76, 85, 30, 56, 10, 69, 68,
73, 67, 32, 84, 79, 78, 69, 32, 35, 79, 4, 226, 164, 1, 65, 235, 4, 83,
26, 45, 9, 87, 69, 76, 32, 83, 73, 71, 78, 32, 26, 70, 65, 38, 85, 22,
86, 166, 202, 1, 73, 210, 237, 1, 79, 163, 8, 69, 6, 158, 215, 3, 65, 2,
73, 3, 85, 5, 251, 214, 3, 85, 8, 11, 79, 8, 33, 6, 67, 65, 76, 73, 67,
32, 8, 26, 82, 243, 217, 2, 76, 5, 155, 214, 3, 82, 50, 50, 75, 84, 4,
78, 69, 68, 32, 199, 174, 2, 84, 4, 48, 6, 73, 83, 72, 32, 76, 73, 219,
195, 3, 69, 2, 11, 82, 2, 147, 206, 2, 65, 44, 238, 1, 65, 80, 6, 66, 76,
65, 67, 75, 32, 40, 7, 87, 72, 73, 84, 69, 32, 83, 22, 67, 50, 68, 96, 2,
78, 79, 32, 2, 79, 75, 30, 83, 237, 171, 3, 21, 71, 82, 69, 69, 75, 32,
83, 77, 65, 76, 76, 32, 76, 69, 84, 84, 69, 82, 32, 73, 79, 4, 26, 77,
175, 172, 2, 78, 2, 17, 2, 80, 69, 2, 11, 82, 2, 179, 194, 2, 83, 4, 18,
80, 23, 83, 2, 211, 151, 2, 69, 2, 195, 153, 2, 72, 4, 144, 3, 5, 65, 80,
73, 84, 65, 171, 121, 79, 6, 30, 65, 33, 3, 73, 71, 73, 2, 11, 71, 2,
187, 147, 3, 71, 4, 201, 222, 1, 3, 84, 32, 84, 6, 162, 2, 82, 211, 199,
2, 84, 2, 249, 228, 1, 2, 32, 72, 14, 128, 1, 18, 65, 78, 83, 45, 83, 69,
82, 73, 70, 32, 67, 65, 80, 73, 84, 65, 76, 32, 38, 69, 32, 3, 77, 65,
76, 33, 2, 79, 85, 6, 178, 207, 3, 71, 2, 76, 3, 89, 2, 11, 77, 2, 243,
254, 2, 73, 2, 11, 76, 2, 191, 205, 2, 32, 4, 21, 3, 84, 72, 32, 4, 32,
2, 69, 65, 1, 2, 87, 69, 2, 53, 11, 83, 84, 32, 80, 79, 73, 78, 84, 73,
78, 71, 2, 17, 2, 32, 76, 2, 151, 204, 2, 69, 38, 58, 69, 52, 8, 73, 83,
84, 69, 68, 32, 82, 73, 63, 79, 2, 17, 2, 76, 86, 2, 145, 178, 1, 3, 69,
32, 80, 2, 17, 2, 71, 72, 2, 141, 109, 6, 84, 87, 65, 82, 68, 83, 34, 30,
32, 229, 10, 2, 45, 69, 32, 134, 3, 66, 86, 67, 116, 3, 68, 79, 84, 226,
1, 72, 44, 14, 73, 78, 84, 69, 82, 83, 69, 67, 84, 73, 78, 71, 32, 76,
92, 6, 74, 79, 73, 78, 69, 68, 64, 8, 76, 79, 71, 73, 67, 65, 76, 32, 98,
77, 0, 3, 87, 79, 77, 116, 13, 82, 73, 78, 71, 83, 32, 65, 76, 73, 71,
78, 69, 68, 48, 24, 65, 83, 84, 69, 82, 73, 83, 75, 83, 32, 65, 76, 73,
71, 78, 69, 68, 32, 86, 69, 82, 84, 73, 67, 35, 83, 2, 29, 5, 85, 84, 84,
79, 78, 2, 17, 2, 32, 77, 2, 11, 79, 2, 251, 188, 2, 85, 2, 93, 21, 79,
78, 83, 69, 67, 85, 84, 73, 86, 69, 32, 69, 81, 85, 65, 76, 83, 32, 83,
73, 71, 2, 207, 137, 3, 78, 6, 18, 32, 55, 83, 4, 22, 76, 131, 1, 80, 2,
145, 163, 1, 2, 69, 65, 2, 53, 11, 32, 79, 86, 69, 82, 32, 79, 78, 69,
32, 68, 2, 11, 79, 2, 11, 84, 2, 17, 2, 32, 80, 2, 29, 5, 85, 78, 67, 84,
85, 2, 251, 244, 2, 65, 2, 11, 69, 2, 11, 65, 2, 227, 188, 2, 82, 4, 17,
2, 79, 71, 4, 25, 4, 73, 67, 65, 76, 4, 11, 32, 4, 186, 180, 2, 65, 187,
87, 79, 2, 17, 2, 32, 83, 2, 21, 3, 81, 85, 65, 2, 255, 173, 2, 82, 4,
30, 79, 13, 3, 65, 78, 68, 2, 11, 82, 2, 11, 32, 2, 11, 79, 2, 11, 80, 2,
143, 18, 69, 2, 11, 69, 2, 45, 9, 78, 32, 72, 79, 76, 68, 73, 78, 71, 2,
11, 32, 2, 11, 72, 2, 11, 65, 2, 251, 223, 1, 78, 2, 45, 9, 32, 72, 79,
82, 73, 90, 79, 78, 84, 2, 11, 65, 2, 175, 158, 3, 76, 2, 49, 10, 80, 69,
69, 67, 72, 32, 66, 85, 66, 66, 2, 147, 171, 2, 76, 2, 11, 77, 2, 225,
213, 1, 2, 32, 68, 248, 3, 140, 1, 8, 71, 65, 82, 73, 84, 73, 67, 32,
152, 6, 7, 77, 66, 82, 69, 76, 76, 65, 166, 1, 78, 158, 8, 80, 246, 166,
1, 82, 255, 136, 2, 83, 62, 48, 7, 76, 69, 84, 84, 69, 82, 32, 159, 5,
87, 60, 206, 1, 65, 28, 2, 81, 79, 22, 66, 22, 68, 50, 71, 44, 2, 72, 79,
22, 75, 34, 76, 32, 2, 82, 65, 22, 83, 74, 84, 74, 89, 22, 90, 234, 185,
2, 78, 202, 91, 80, 246, 5, 87, 202, 12, 77, 174, 18, 73, 3, 85, 4, 26,
76, 203, 237, 2, 73, 2, 239, 186, 3, 80, 2, 199, 152, 3, 69, 4, 26, 69,
139, 177, 2, 72, 2, 151, 152, 3, 76, 4, 230, 141, 2, 72, 209, 140, 1, 2,
65, 77, 5, 235, 185, 3, 84, 4, 234, 186, 2, 65, 239, 126, 72, 2, 11, 65,
2, 223, 150, 3, 77, 2, 167, 190, 1, 83, 8, 38, 65, 194, 187, 2, 72, 239,
90, 83, 4, 190, 164, 3, 68, 239, 13, 77, 6, 38, 72, 162, 158, 3, 69, 175,
28, 79, 2, 11, 65, 2, 167, 252, 1, 78, 2, 139, 244, 2, 79, 4, 202, 149,
3, 69, 207, 36, 85, 2, 21, 3, 79, 82, 68, 2, 25, 4, 32, 68, 73, 86, 2,
235, 149, 1, 73, 7, 11, 32, 4, 84, 4, 79, 78, 32, 71, 45, 13, 87, 73, 84,
72, 32, 82, 65, 73, 78, 32, 68, 82, 79, 2, 11, 82, 2, 11, 79, 2, 159,
168, 2, 85, 2, 195, 250, 2, 80, 32, 160, 1, 3, 65, 77, 85, 20, 7, 67, 69,
82, 84, 65, 73, 78, 34, 68, 62, 73, 245, 5, 18, 77, 65, 82, 82, 73, 69,
68, 32, 80, 65, 82, 84, 78, 69, 82, 83, 72, 73, 2, 243, 163, 2, 83, 2,
11, 84, 2, 199, 175, 2, 89, 4, 26, 69, 215, 160, 2, 79, 2, 11, 82, 2,
219, 154, 3, 84, 22, 60, 2, 79, 78, 234, 3, 84, 106, 86, 177, 58, 3, 67,
79, 82, 15, 11, 32, 12, 160, 1, 6, 65, 66, 79, 86, 69, 32, 108, 22, 66,
69, 83, 73, 68, 69, 32, 65, 78, 68, 32, 74, 79, 73, 78, 69, 68, 32, 87,
73, 84, 72, 41, 5, 87, 73, 84, 72, 32, 4, 52, 9, 66, 65, 82, 32, 65, 66,
79, 86, 69, 23, 73, 2, 17, 2, 32, 73, 2, 161, 49, 4, 78, 84, 69, 82, 2,
17, 2, 32, 85, 2, 195, 226, 2, 78, 6, 66, 77, 58, 79, 145, 249, 2, 8, 76,
79, 71, 73, 67, 65, 76, 32, 2, 11, 73, 2, 11, 78, 2, 11, 85, 2, 139, 171,
2, 83, 2, 11, 86, 2, 161, 142, 2, 2, 69, 82, 4, 18, 32, 67, 69, 2, 11,
83, 2, 17, 2, 69, 80, 2, 11, 65, 2, 143, 248, 2, 82, 2, 183, 155, 2, 68,
2, 57, 12, 69, 82, 83, 65, 76, 32, 82, 69, 67, 89, 67, 76, 2, 17, 2, 73,
78, 2, 211, 154, 2, 71, 2, 191, 154, 2, 80, 144, 3, 130, 1, 32, 246, 7,
45, 180, 8, 4, 80, 69, 82, 32, 136, 40, 8, 83, 73, 68, 69, 45, 68, 79,
87, 21, 6, 87, 65, 82, 68, 83, 32, 38, 140, 1, 5, 65, 82, 82, 79, 87,
224, 1, 5, 66, 65, 82, 66, 32, 228, 1, 5, 68, 79, 87, 78, 32, 210, 1, 70,
30, 82, 93, 4, 84, 65, 67, 75, 8, 64, 4, 72, 69, 65, 68, 141, 51, 7, 32,
84, 72, 82, 79, 85, 71, 7, 11, 32, 4, 112, 22, 66, 69, 84, 87, 69, 69,
78, 32, 84, 87, 79, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 227, 156,
2, 73, 2, 145, 149, 2, 2, 32, 66, 8, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71,
72, 4, 57, 12, 84, 32, 68, 79, 87, 78, 32, 66, 65, 82, 66, 32, 4, 44, 3,
76, 69, 70, 1, 4, 82, 73, 71, 72, 2, 11, 84, 2, 25, 4, 32, 72, 65, 82, 2,
11, 80, 2, 187, 218, 2, 79, 14, 76, 5, 65, 82, 82, 79, 87, 62, 66, 38,
68, 18, 83, 250, 58, 87, 219, 9, 84, 5, 37, 7, 32, 87, 73, 84, 72, 32,
66, 2, 247, 157, 2, 65, 2, 173, 140, 2, 4, 76, 65, 67, 75, 2, 195, 59,
79, 2, 183, 65, 65, 2, 11, 73, 2, 239, 112, 83, 2, 53, 11, 73, 71, 72,
84, 32, 68, 73, 65, 71, 79, 78, 2, 189, 128, 1, 4, 65, 76, 32, 69, 5, 29,
5, 32, 87, 73, 84, 72, 2, 33, 6, 32, 67, 73, 82, 67, 76, 2, 131, 170, 2,
69, 32, 58, 70, 225, 1, 9, 80, 79, 73, 78, 84, 73, 78, 71, 32, 4, 41, 8,
65, 67, 73, 78, 71, 32, 83, 78, 4, 65, 14, 65, 75, 69, 32, 72, 69, 65,
68, 32, 87, 73, 84, 72, 32, 4, 42, 79, 25, 6, 67, 76, 79, 83, 69, 68, 2,
21, 3, 80, 69, 78, 2, 21, 3, 32, 77, 79, 2, 243, 159, 1, 85, 28, 130, 1,
65, 86, 69, 62, 70, 20, 8, 77, 73, 76, 73, 84, 65, 82, 89, 26, 82, 88, 6,
83, 77, 65, 76, 76, 32, 118, 84, 255, 121, 71, 4, 22, 84, 159, 2, 73, 2,
37, 7, 79, 77, 73, 67, 32, 66, 79, 2, 155, 229, 1, 77, 2, 29, 5, 78, 69,
82, 71, 89, 2, 193, 180, 1, 2, 32, 87, 2, 227, 161, 3, 82, 2, 129, 1, 2,
32, 65, 8, 64, 5, 79, 67, 75, 69, 84, 118, 69, 214, 129, 1, 65, 235, 29,
73, 2, 195, 204, 2, 32, 4, 18, 65, 67, 82, 2, 11, 73, 2, 11, 82, 2, 17,
2, 80, 76, 2, 207, 133, 2, 65, 2, 11, 69, 2, 215, 249, 1, 68, 4, 37, 7,
82, 73, 65, 78, 71, 76, 69, 4, 11, 32, 4, 11, 87, 4, 25, 4, 73, 84, 72,
32, 4, 18, 76, 27, 82, 2, 11, 69, 2, 35, 70, 2, 21, 3, 73, 71, 72, 2, 11,
84, 2, 17, 2, 32, 72, 2, 21, 3, 65, 76, 70, 2, 17, 2, 32, 66, 2, 11, 76,
2, 207, 236, 1, 65, 200, 1, 192, 1, 4, 65, 78, 68, 32, 210, 2, 66, 74,
67, 74, 70, 36, 5, 72, 65, 76, 70, 32, 200, 4, 5, 76, 69, 70, 84, 32,
254, 5, 77, 150, 2, 79, 60, 6, 82, 73, 71, 72, 84, 32, 238, 17, 83, 67,
84, 8, 34, 76, 53, 4, 82, 73, 71, 72, 6, 48, 2, 69, 70, 173, 1, 5, 79,
87, 69, 82, 32, 2, 53, 11, 84, 32, 65, 78, 68, 32, 76, 79, 87, 69, 82, 2,
205, 35, 25, 32, 84, 82, 73, 65, 78, 71, 85, 76, 65, 82, 32, 84, 72, 82,
69, 69, 32, 81, 85, 65, 82, 84, 69, 82, 4, 28, 2, 84, 82, 235, 39, 79, 2,
225, 4, 7, 73, 65, 78, 71, 85, 76, 65, 2, 17, 2, 76, 65, 2, 17, 2, 68,
69, 2, 249, 224, 1, 3, 32, 83, 67, 10, 33, 6, 69, 78, 84, 82, 69, 32, 10,
174, 12, 76, 22, 82, 255, 21, 79, 2, 17, 2, 73, 86, 2, 183, 31, 69, 20,
140, 1, 5, 66, 76, 79, 67, 75, 110, 72, 32, 8, 73, 78, 86, 69, 82, 83,
69, 32, 198, 1, 86, 174, 26, 77, 130, 3, 76, 22, 82, 191, 163, 1, 67, 5,
229, 28, 23, 32, 65, 78, 68, 32, 76, 79, 87, 69, 82, 32, 72, 65, 76, 70,
32, 73, 78, 86, 69, 82, 83, 69, 2, 225, 18, 4, 69, 65, 86, 89, 4, 100,
21, 77, 69, 68, 73, 85, 77, 32, 83, 72, 65, 68, 69, 32, 65, 78, 68, 32,
76, 79, 87, 69, 51, 87, 2, 11, 82, 2, 189, 35, 5, 32, 72, 65, 76, 70, 2,
21, 3, 72, 73, 84, 2, 247, 192, 1, 69, 2, 29, 5, 69, 82, 84, 73, 67, 2,
189, 115, 14, 65, 76, 32, 76, 73, 78, 69, 32, 87, 73, 84, 72, 32, 84, 62,
50, 66, 238, 3, 67, 54, 79, 74, 84, 183, 13, 81, 22, 65, 14, 76, 79, 67,
75, 32, 68, 73, 65, 71, 79, 78, 65, 76, 32, 22, 144, 1, 6, 76, 79, 87,
69, 82, 32, 233, 8, 24, 85, 80, 80, 69, 82, 32, 77, 73, 68, 68, 76, 69,
32, 76, 69, 70, 84, 32, 84, 79, 32, 85, 80, 80, 18, 176, 1, 10, 67, 69,
78, 84, 82, 69, 32, 84, 79, 32, 36, 8, 76, 69, 70, 84, 32, 84, 79, 32,
229, 10, 18, 77, 73, 68, 68, 76, 69, 32, 76, 69, 70, 84, 32, 84, 79, 32,
85, 80, 80, 6, 70, 76, 253, 8, 3, 85, 80, 80, 6, 34, 76, 213, 9, 3, 85,
80, 80, 2, 149, 10, 2, 79, 87, 2, 29, 5, 79, 82, 78, 69, 82, 2, 219, 233,
1, 32, 4, 182, 12, 78, 53, 12, 82, 32, 76, 79, 87, 69, 82, 32, 82, 73,
71, 72, 8, 34, 79, 170, 19, 82, 155, 1, 87, 2, 241, 18, 11, 32, 76, 79,
87, 69, 82, 32, 82, 73, 71, 72, 12, 33, 6, 73, 68, 68, 76, 69, 32, 12,
52, 7, 67, 69, 78, 84, 82, 69, 32, 74, 76, 23, 82, 4, 44, 3, 76, 69, 70,
1, 4, 82, 73, 71, 72, 2, 117, 3, 84, 32, 79, 4, 41, 2, 69, 70, 4, 21, 3,
73, 71, 72, 4, 17, 2, 84, 32, 4, 30, 79, 129, 18, 2, 84, 87, 2, 139, 9,
78, 4, 11, 78, 4, 17, 2, 69, 32, 4, 154, 21, 81, 147, 4, 69, 68, 84, 2,
66, 76, 186, 6, 68, 114, 79, 222, 1, 80, 42, 81, 224, 4, 2, 83, 72, 51,
84, 22, 61, 13, 79, 67, 75, 32, 68, 73, 65, 71, 79, 78, 65, 76, 32, 22,
140, 1, 24, 76, 79, 87, 69, 82, 32, 77, 73, 68, 68, 76, 69, 32, 76, 69,
70, 84, 32, 84, 79, 32, 76, 79, 87, 57, 6, 85, 80, 80, 69, 82, 32, 4, 21,
3, 69, 82, 32, 4, 246, 3, 67, 219, 218, 2, 82, 18, 176, 1, 10, 67, 69,
78, 84, 82, 69, 32, 84, 79, 32, 92, 8, 76, 69, 70, 84, 32, 84, 79, 32,
141, 1, 18, 77, 73, 68, 68, 76, 69, 32, 76, 69, 70, 84, 32, 84, 79, 32,
76, 79, 87, 6, 32, 3, 76, 79, 87, 139, 1, 85, 4, 21, 3, 69, 82, 32, 4,
142, 2, 77, 179, 218, 2, 82, 6, 28, 3, 76, 79, 87, 51, 85, 4, 21, 3, 69,
82, 32, 4, 142, 1, 67, 43, 77, 2, 17, 2, 80, 80, 2, 17, 2, 69, 82, 2,
117, 2, 32, 77, 6, 21, 3, 69, 82, 32, 6, 34, 67, 42, 77, 179, 218, 2, 82,
2, 11, 69, 2, 221, 226, 1, 2, 78, 84, 2, 25, 4, 73, 68, 68, 76, 2, 195,
177, 1, 69, 2, 57, 12, 82, 79, 80, 45, 83, 72, 65, 68, 79, 87, 69, 68, 2,
17, 2, 32, 87, 2, 149, 192, 1, 3, 72, 73, 84, 4, 62, 78, 53, 11, 82, 32,
76, 79, 87, 69, 82, 32, 76, 69, 70, 2, 229, 16, 9, 69, 32, 83, 73, 88,
84, 69, 69, 78, 2, 69, 15, 84, 32, 67, 85, 82, 76, 89, 32, 66, 82, 65,
67, 75, 69, 84, 2, 11, 32, 2, 175, 177, 2, 83, 2, 11, 69, 2, 165, 162, 1,
2, 78, 67, 26, 17, 2, 85, 65, 26, 44, 6, 68, 82, 65, 78, 84, 32, 255, 3,
82, 24, 90, 67, 112, 10, 70, 65, 67, 69, 32, 87, 73, 84, 72, 32, 114, 77,
76, 2, 83, 84, 67, 84, 14, 68, 7, 73, 82, 67, 85, 76, 65, 82, 197, 168,
1, 4, 72, 69, 83, 83, 2, 17, 2, 32, 65, 2, 207, 213, 1, 82, 4, 34, 67,
45, 4, 79, 80, 69, 78, 2, 21, 3, 76, 79, 83, 2, 17, 2, 69, 68, 2, 245,
232, 1, 3, 32, 69, 89, 2, 25, 4, 73, 67, 82, 79, 2, 11, 67, 2, 165, 196,
1, 4, 79, 77, 80, 85, 2, 41, 8, 65, 78, 68, 73, 78, 71, 32, 75, 2, 147,
211, 2, 78, 2, 21, 3, 69, 76, 69, 2, 11, 86, 2, 183, 90, 73, 2, 233, 168,
1, 3, 84, 69, 82, 4, 141, 102, 8, 65, 68, 79, 87, 69, 68, 32, 87, 8, 30,
79, 106, 82, 155, 1, 87, 2, 49, 10, 32, 76, 79, 87, 69, 82, 32, 76, 69,
70, 2, 11, 84, 2, 11, 32, 2, 11, 70, 2, 171, 113, 73, 4, 25, 4, 73, 65,
78, 71, 4, 40, 4, 85, 76, 65, 82, 171, 228, 2, 76, 2, 17, 2, 32, 77, 2,
41, 8, 69, 68, 73, 85, 77, 32, 83, 72, 2, 199, 103, 65, 2, 21, 3, 69, 76,
70, 2, 11, 84, 2, 215, 165, 1, 72, 2, 17, 2, 69, 86, 2, 17, 2, 69, 78, 2,
145, 1, 2, 32, 69, 10, 64, 5, 72, 82, 69, 69, 32, 193, 1, 6, 82, 73, 65,
78, 71, 85, 8, 54, 69, 49, 9, 81, 85, 65, 82, 84, 69, 82, 83, 32, 2, 29,
5, 73, 71, 72, 84, 72, 2, 243, 5, 83, 6, 30, 76, 22, 82, 203, 5, 66, 2,
41, 2, 69, 70, 2, 21, 3, 73, 71, 72, 2, 43, 84, 2, 17, 2, 76, 65, 2, 11,
82, 2, 17, 2, 32, 79, 2, 25, 4, 78, 69, 32, 81, 2, 185, 4, 6, 85, 65, 82,
84, 69, 82, 2, 151, 185, 2, 78, 128, 1, 154, 1, 65, 184, 6, 2, 66, 76,
150, 1, 68, 50, 70, 82, 72, 150, 4, 67, 46, 81, 42, 82, 22, 83, 102, 84,
146, 7, 80, 173, 3, 6, 87, 72, 73, 84, 69, 32, 32, 34, 78, 33, 4, 82, 82,
79, 87, 2, 11, 67, 2, 147, 176, 2, 79, 31, 11, 32, 28, 134, 1, 65, 192,
1, 14, 76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 70, 32, 68, 32, 5, 87,
73, 84, 72, 32, 210, 8, 70, 179, 5, 84, 2, 41, 8, 78, 68, 32, 82, 73, 71,
72, 84, 2, 17, 2, 32, 79, 2, 25, 4, 78, 69, 32, 69, 2, 21, 3, 73, 71, 72,
2, 17, 2, 84, 72, 2, 11, 32, 2, 11, 66, 2, 11, 76, 2, 251, 191, 1, 79, 2,
145, 208, 1, 3, 79, 87, 78, 20, 74, 68, 58, 76, 42, 77, 38, 78, 58, 83,
66, 69, 250, 12, 84, 135, 58, 72, 2, 21, 3, 79, 85, 66, 2, 11, 76, 2,
199, 192, 2, 69, 2, 11, 65, 2, 253, 22, 3, 82, 71, 69, 2, 225, 22, 5, 69,
68, 73, 85, 77, 2, 25, 4, 79, 84, 67, 72, 2, 11, 69, 2, 151, 56, 68, 4,
11, 77, 4, 25, 4, 65, 76, 76, 32, 4, 22, 69, 223, 21, 84, 2, 129, 22, 10,
81, 85, 73, 76, 65, 84, 69, 82, 65, 76, 4, 25, 4, 65, 67, 75, 32, 4, 26,
67, 215, 209, 1, 65, 2, 25, 4, 73, 82, 67, 76, 2, 25, 4, 69, 68, 32, 87,
2, 11, 72, 2, 237, 14, 2, 73, 84, 4, 22, 79, 195, 13, 65, 2, 177, 14, 2,
85, 66, 2, 11, 73, 2, 37, 7, 78, 71, 69, 82, 45, 80, 79, 2, 249, 207, 1,
2, 83, 84, 20, 88, 17, 65, 82, 80, 79, 79, 78, 32, 87, 73, 84, 72, 32,
66, 65, 82, 66, 32, 131, 3, 69, 16, 56, 4, 76, 69, 70, 84, 245, 1, 5, 82,
73, 71, 72, 84, 10, 22, 32, 239, 9, 87, 8, 60, 7, 66, 69, 83, 73, 68, 69,
32, 206, 1, 70, 179, 5, 84, 4, 40, 4, 68, 79, 87, 78, 1, 2, 85, 80, 2,
249, 150, 1, 23, 87, 65, 82, 68, 83, 32, 72, 65, 82, 80, 79, 79, 78, 32,
87, 73, 84, 72, 32, 66, 65, 82, 66, 6, 22, 32, 251, 7, 87, 4, 22, 70,
179, 5, 84, 2, 165, 197, 1, 3, 82, 79, 77, 4, 25, 4, 65, 86, 89, 32, 4,
26, 67, 231, 203, 1, 65, 2, 189, 10, 7, 79, 77, 80, 82, 69, 83, 83, 2,
137, 9, 6, 85, 65, 68, 82, 85, 80, 2, 251, 148, 2, 79, 4, 30, 65, 53, 3,
81, 85, 65, 2, 193, 202, 1, 8, 78, 83, 45, 83, 69, 82, 73, 70, 2, 131, 9,
82, 36, 36, 2, 82, 73, 229, 7, 2, 87, 79, 30, 40, 5, 65, 78, 71, 76, 69,
155, 7, 80, 28, 52, 8, 45, 72, 69, 65, 68, 69, 68, 32, 219, 12, 32, 26,
48, 5, 65, 82, 82, 79, 87, 174, 5, 68, 39, 80, 23, 11, 32, 20, 92, 17,
76, 69, 70, 84, 87, 65, 82, 68, 83, 32, 79, 70, 32, 68, 79, 87, 78, 98,
84, 23, 87, 2, 37, 7, 87, 65, 82, 68, 83, 32, 84, 2, 37, 7, 82, 73, 65,
78, 71, 76, 69, 2, 219, 5, 45, 2, 247, 191, 1, 79, 16, 25, 4, 73, 84, 72,
32, 16, 114, 66, 28, 6, 76, 79, 78, 71, 32, 84, 130, 1, 77, 34, 78, 34,
86, 34, 72, 145, 56, 6, 68, 79, 85, 66, 76, 69, 2, 149, 2, 3, 79, 76, 68,
4, 17, 2, 73, 80, 4, 11, 32, 4, 34, 76, 21, 4, 82, 73, 71, 72, 2, 17, 2,
69, 70, 2, 11, 84, 2, 11, 87, 2, 219, 126, 65, 2, 121, 5, 69, 68, 73, 85,
77, 2, 89, 5, 65, 82, 82, 79, 87, 2, 29, 5, 69, 82, 89, 32, 72, 2, 25, 4,
69, 65, 86, 89, 2, 173, 181, 2, 4, 32, 83, 72, 65, 2, 11, 65, 2, 249, 1,
2, 83, 72, 2, 11, 65, 2, 25, 4, 73, 82, 69, 68, 2, 29, 5, 32, 65, 82, 82,
79, 2, 163, 161, 2, 87, 2, 11, 76, 2, 135, 194, 1, 69, 6, 74, 32, 61, 14,
45, 72, 69, 65, 68, 69, 68, 32, 65, 82, 82, 79, 87, 32, 2, 25, 4, 72, 69,
65, 68, 2, 11, 69, 2, 255, 192, 1, 68, 4, 42, 87, 177, 136, 1, 4, 70, 82,
79, 77, 2, 33, 6, 73, 84, 72, 32, 84, 82, 2, 61, 13, 73, 65, 78, 71, 76,
69, 32, 65, 82, 82, 79, 87, 72, 2, 253, 121, 2, 69, 65, 18, 88, 5, 65,
82, 82, 79, 87, 149, 3, 12, 68, 79, 85, 66, 76, 69, 32, 65, 82, 82, 79,
87, 15, 11, 32, 12, 108, 11, 79, 78, 32, 80, 69, 68, 69, 83, 84, 65, 76,
106, 87, 165, 181, 1, 8, 70, 82, 79, 77, 32, 66, 65, 82, 7, 33, 6, 32,
87, 73, 84, 72, 32, 4, 26, 86, 247, 181, 1, 72, 2, 153, 182, 1, 5, 69,
82, 84, 73, 67, 2, 29, 5, 73, 84, 72, 73, 78, 2, 17, 2, 32, 84, 2, 37, 7,
82, 73, 65, 78, 71, 76, 69, 2, 11, 32, 2, 11, 65, 2, 25, 4, 82, 82, 79,
87, 2, 11, 72, 2, 147, 146, 2, 69, 5, 45, 9, 32, 79, 78, 32, 80, 69, 68,
69, 83, 2, 159, 204, 1, 84, 244, 15, 86, 65, 254, 16, 83, 174, 3, 69,
194, 46, 73, 202, 8, 79, 134, 2, 84, 21, 2, 85, 76, 218, 8, 116, 2, 73,
32, 128, 16, 17, 82, 73, 65, 84, 73, 79, 78, 32, 83, 69, 76, 69, 67, 84,
79, 82, 45, 233, 45, 2, 77, 80, 216, 4, 54, 67, 34, 70, 82, 81, 40, 2,
83, 89, 183, 96, 68, 2, 11, 79, 2, 183, 180, 2, 77, 2, 11, 85, 2, 11, 76,
2, 11, 76, 2, 11, 32, 2, 11, 83, 2, 227, 219, 1, 84, 2, 17, 2, 85, 69, 2,
167, 235, 1, 83, 190, 4, 68, 7, 76, 76, 65, 66, 76, 69, 32, 197, 11, 5,
77, 66, 79, 76, 32, 164, 4, 214, 1, 68, 70, 66, 2, 83, 2, 84, 2, 90, 70,
71, 122, 72, 82, 75, 134, 1, 76, 130, 1, 77, 86, 78, 134, 3, 67, 2, 70,
2, 74, 2, 80, 2, 82, 2, 86, 2, 89, 78, 87, 50, 69, 34, 79, 226, 74, 65,
2, 73, 3, 85, 42, 66, 72, 162, 8, 79, 146, 137, 2, 69, 162, 64, 65, 2,
73, 3, 85, 28, 230, 7, 72, 58, 79, 146, 137, 2, 69, 162, 64, 65, 2, 73,
3, 85, 34, 62, 66, 202, 6, 69, 86, 79, 178, 201, 2, 65, 2, 73, 3, 85, 18,
106, 79, 222, 5, 69, 134, 202, 2, 65, 2, 73, 3, 85, 24, 50, 79, 222, 5,
69, 154, 76, 65, 2, 73, 3, 85, 7, 222, 207, 2, 78, 3, 79, 34, 70, 80,
206, 5, 79, 198, 75, 65, 206, 189, 1, 69, 162, 64, 73, 3, 85, 18, 246, 4,
69, 86, 79, 198, 75, 65, 238, 253, 1, 73, 3, 85, 16, 54, 69, 218, 4, 79,
178, 201, 2, 65, 2, 73, 3, 85, 7, 26, 78, 239, 205, 2, 69, 2, 21, 3, 71,
84, 72, 2, 219, 143, 2, 69, 42, 214, 3, 66, 0, 2, 71, 66, 58, 79, 146,
137, 2, 69, 162, 64, 65, 2, 73, 3, 85, 90, 90, 68, 174, 1, 71, 126, 74,
2, 89, 58, 79, 146, 137, 2, 69, 162, 64, 65, 2, 73, 3, 85, 24, 54, 79,
186, 139, 2, 69, 162, 64, 65, 2, 73, 3, 85, 15, 36, 3, 76, 69, 32, 179,
203, 2, 79, 10, 54, 83, 134, 172, 2, 68, 190, 28, 70, 2, 75, 3, 77, 2,
131, 172, 2, 79, 25, 42, 71, 218, 250, 1, 65, 2, 69, 3, 79, 16, 50, 69,
86, 79, 178, 201, 2, 65, 2, 73, 3, 85, 7, 130, 202, 2, 69, 3, 78, 14, 54,
79, 146, 137, 2, 69, 162, 64, 65, 2, 73, 3, 85, 5, 175, 201, 2, 79, 28,
46, 69, 34, 79, 226, 74, 65, 2, 73, 3, 85, 9, 254, 74, 69, 239, 253, 1,
78, 9, 222, 74, 79, 239, 253, 1, 78, 26, 66, 68, 62, 70, 30, 74, 22, 75,
50, 78, 22, 84, 231, 237, 1, 66, 6, 26, 79, 215, 246, 1, 65, 4, 210, 246,
1, 79, 135, 50, 45, 4, 74, 69, 171, 196, 2, 65, 2, 151, 246, 1, 79, 4,
26, 69, 235, 245, 1, 85, 2, 231, 245, 1, 69, 2, 243, 178, 2, 73, 6, 190,
245, 1, 73, 2, 79, 195, 78, 65, 128, 4, 74, 49, 94, 50, 98, 51, 2, 52, 2,
53, 2, 54, 2, 55, 2, 56, 3, 57, 223, 1, 182, 1, 48, 2, 49, 2, 50, 2, 51,
2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 137, 1, 90, 48, 2, 49, 2, 50,
2, 51, 2, 52, 94, 53, 170, 195, 2, 54, 2, 55, 2, 56, 3, 57, 23, 130, 196,
2, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 2, 54, 2, 55, 2, 56, 3, 57, 17,
166, 195, 2, 48, 2, 49, 2, 50, 2, 51, 2, 52, 2, 53, 3, 54, 196, 1, 128,
1, 4, 68, 73, 67, 32, 190, 19, 82, 152, 25, 2, 83, 84, 201, 131, 1, 13,
67, 84, 79, 82, 32, 79, 82, 32, 67, 82, 79, 83, 83, 86, 60, 5, 83, 73,
71, 78, 32, 137, 10, 5, 84, 79, 78, 69, 32, 48, 218, 2, 65, 216, 1, 17,
68, 79, 85, 66, 76, 69, 32, 65, 78, 85, 83, 86, 65, 82, 65, 32, 65, 98,
74, 52, 6, 78, 73, 72, 83, 72, 86, 22, 82, 240, 1, 8, 72, 69, 88, 73, 70,
79, 82, 77, 22, 76, 52, 4, 84, 73, 82, 89, 22, 85, 60, 8, 86, 73, 83, 65,
82, 71, 65, 32, 221, 6, 17, 89, 65, 74, 85, 82, 86, 69, 68, 73, 67, 32,
77, 73, 68, 76, 73, 78, 14, 76, 8, 78, 85, 83, 86, 65, 82, 65, 32, 212,
1, 3, 84, 73, 75, 151, 2, 82, 10, 134, 1, 65, 24, 4, 66, 65, 72, 73, 24,
9, 85, 66, 72, 65, 89, 65, 84, 79, 32, 201, 4, 10, 86, 65, 77, 65, 71,
79, 77, 85, 75, 72, 2, 21, 3, 78, 84, 65, 2, 21, 3, 82, 71, 79, 2, 11,
77, 2, 147, 9, 85, 2, 175, 249, 1, 82, 2, 33, 6, 73, 72, 86, 65, 77, 85,
2, 151, 3, 76, 2, 143, 185, 2, 65, 8, 144, 1, 15, 69, 86, 69, 82, 83, 69,
68, 32, 86, 73, 83, 65, 82, 71, 65, 36, 9, 79, 84, 65, 84, 69, 68, 32,
65, 82, 57, 5, 84, 72, 65, 78, 71, 4, 11, 32, 4, 202, 6, 65, 23, 85, 2,
25, 4, 68, 72, 65, 86, 2, 141, 247, 1, 2, 73, 83, 2, 17, 2, 32, 76, 2,
21, 3, 79, 78, 71, 2, 169, 244, 1, 2, 32, 65, 2, 239, 181, 2, 65, 2, 37,
7, 80, 65, 68, 72, 77, 65, 78, 2, 239, 181, 2, 73, 10, 40, 3, 65, 78, 85,
2, 85, 163, 9, 83, 4, 25, 4, 68, 65, 84, 84, 4, 11, 65, 5, 25, 4, 32, 87,
73, 84, 2, 11, 72, 2, 11, 32, 2, 11, 84, 2, 211, 87, 65, 38, 128, 2, 5,
67, 65, 78, 68, 82, 16, 2, 68, 79, 96, 2, 75, 65, 136, 1, 4, 80, 82, 69,
78, 16, 2, 82, 73, 106, 84, 164, 1, 11, 89, 65, 74, 85, 82, 86, 69, 68,
73, 67, 32, 180, 1, 12, 65, 84, 72, 65, 82, 86, 65, 86, 69, 68, 73, 67,
253, 234, 1, 2, 83, 72, 4, 251, 18, 65, 6, 40, 5, 85, 66, 76, 69, 32,
191, 3, 84, 4, 22, 82, 211, 5, 83, 2, 11, 73, 2, 251, 1, 78, 4, 56, 3,
82, 83, 72, 17, 7, 84, 72, 65, 75, 65, 32, 65, 2, 203, 117, 65, 2, 17, 2,
78, 85, 2, 17, 2, 68, 65, 2, 223, 142, 2, 84, 2, 239, 53, 75, 4, 82, 78,
237, 2, 15, 71, 86, 69, 68, 73, 67, 32, 75, 65, 83, 72, 77, 73, 82, 73,
2, 175, 181, 1, 71, 6, 42, 72, 24, 4, 82, 73, 80, 76, 19, 87, 2, 49, 3,
82, 69, 69, 2, 219, 2, 69, 2, 11, 79, 2, 25, 4, 32, 68, 79, 84, 2, 11,
83, 2, 11, 32, 2, 159, 15, 66, 8, 176, 1, 10, 65, 71, 71, 82, 65, 86, 65,
84, 69, 68, 22, 73, 105, 27, 75, 65, 84, 72, 65, 75, 65, 32, 73, 78, 68,
69, 80, 69, 78, 68, 69, 78, 84, 32, 83, 86, 65, 82, 73, 84, 65, 2, 17, 2,
32, 73, 2, 49, 10, 78, 68, 69, 80, 69, 78, 68, 69, 78, 84, 2, 17, 2, 32,
83, 2, 145, 138, 2, 3, 86, 65, 82, 5, 241, 10, 7, 32, 83, 67, 72, 82, 79,
69, 104, 62, 83, 16, 6, 84, 73, 67, 65, 76, 32, 173, 17, 2, 89, 32, 2,
223, 89, 73, 76, 200, 2, 4, 66, 65, 82, 32, 174, 3, 67, 42, 69, 62, 70,
38, 71, 32, 11, 73, 68, 69, 79, 71, 82, 65, 80, 72, 73, 67, 48, 12, 75,
65, 78, 65, 32, 82, 69, 80, 69, 65, 84, 32, 254, 1, 76, 186, 3, 77, 88,
17, 79, 78, 69, 32, 69, 73, 71, 72, 84, 72, 32, 66, 76, 79, 67, 75, 45,
62, 82, 158, 1, 84, 218, 1, 90, 237, 73, 3, 83, 73, 88, 8, 108, 6, 66,
69, 83, 73, 68, 69, 64, 8, 68, 79, 85, 66, 76, 69, 32, 76, 20, 4, 84, 82,
73, 80, 143, 1, 87, 2, 17, 2, 32, 82, 2, 21, 3, 73, 71, 72, 2, 223, 130,
1, 84, 2, 69, 2, 69, 70, 2, 25, 4, 76, 69, 32, 82, 2, 21, 3, 73, 71, 72,
2, 11, 84, 2, 29, 5, 32, 84, 85, 82, 78, 2, 11, 83, 2, 11, 84, 2, 139,
130, 1, 73, 2, 21, 3, 73, 84, 72, 2, 17, 2, 32, 72, 2, 221, 247, 1, 7,
79, 82, 73, 90, 79, 78, 84, 2, 225, 238, 1, 5, 65, 80, 65, 67, 73, 2, 25,
4, 76, 76, 73, 80, 2, 11, 83, 2, 171, 233, 1, 73, 2, 11, 79, 2, 141, 84,
2, 85, 82, 2, 177, 159, 1, 3, 79, 45, 75, 2, 17, 2, 32, 73, 2, 217, 188,
1, 2, 84, 69, 10, 120, 4, 77, 65, 82, 75, 45, 22, 87, 73, 84, 72, 32, 86,
79, 73, 67, 69, 68, 32, 83, 79, 85, 78, 68, 32, 77, 65, 82, 75, 7, 11,
32, 4, 50, 85, 21, 3, 76, 79, 87, 5, 17, 2, 32, 85, 2, 17, 2, 80, 80, 2,
17, 2, 69, 82, 2, 133, 30, 2, 32, 72, 16, 30, 65, 33, 3, 73, 78, 69, 2,
11, 68, 2, 235, 229, 1, 68, 15, 11, 32, 12, 38, 69, 49, 5, 87, 73, 84,
72, 32, 2, 25, 4, 88, 84, 69, 78, 2, 175, 210, 1, 83, 10, 60, 5, 67, 73,
82, 67, 76, 86, 70, 26, 84, 215, 141, 1, 77, 4, 11, 69, 4, 11, 32, 4, 26,
66, 131, 165, 1, 65, 2, 11, 69, 2, 183, 133, 1, 76, 2, 57, 3, 79, 85, 82,
2, 11, 72, 2, 21, 3, 82, 69, 69, 2, 45, 9, 32, 84, 73, 67, 75, 32, 77,
65, 82, 2, 131, 227, 1, 75, 2, 65, 14, 65, 76, 69, 32, 87, 73, 84, 72,
32, 83, 84, 82, 79, 75, 2, 135, 153, 1, 69, 12, 242, 159, 2, 50, 2, 51,
2, 52, 2, 53, 2, 54, 3, 55, 4, 42, 65, 57, 6, 69, 83, 73, 83, 84, 79, 2,
25, 4, 67, 73, 78, 71, 2, 11, 32, 2, 167, 123, 67, 2, 21, 3, 82, 32, 83,
2, 11, 69, 2, 251, 218, 1, 71, 10, 32, 2, 65, 66, 106, 73, 19, 82, 6, 18,
32, 35, 85, 2, 11, 75, 2, 143, 140, 2, 69, 4, 33, 6, 76, 65, 84, 73, 79,
78, 5, 239, 46, 32, 2, 155, 10, 76, 2, 29, 5, 65, 70, 70, 73, 67, 2, 141,
242, 1, 2, 32, 76, 2, 177, 108, 4, 73, 71, 90, 65, 26, 80, 6, 72, 69, 65,
86, 89, 32, 176, 5, 3, 77, 85, 67, 229, 10, 3, 66, 79, 76, 20, 62, 69,
190, 1, 70, 38, 82, 82, 83, 246, 1, 87, 203, 11, 71, 4, 25, 4, 73, 71,
72, 84, 4, 11, 32, 4, 22, 80, 223, 2, 83, 2, 25, 4, 79, 73, 78, 84, 2,
17, 2, 69, 68, 2, 17, 2, 32, 66, 2, 25, 4, 76, 65, 67, 75, 2, 11, 32, 2,
151, 81, 83, 2, 11, 73, 2, 185, 1, 2, 86, 69, 2, 11, 69, 2, 29, 5, 86,
69, 82, 83, 69, 2, 17, 2, 32, 83, 2, 231, 1, 79, 6, 30, 65, 42, 73, 147,
1, 79, 2, 11, 76, 2, 11, 84, 2, 235, 117, 73, 2, 11, 88, 2, 11, 32, 2,
11, 83, 2, 21, 3, 80, 79, 75, 2, 17, 2, 69, 68, 2, 11, 32, 2, 11, 65, 2,
11, 83, 2, 149, 80, 3, 84, 69, 82, 2, 161, 14, 3, 76, 73, 68, 4, 21, 3,
72, 73, 84, 4, 11, 69, 4, 11, 32, 4, 162, 66, 67, 187, 49, 83, 4, 11, 72,
4, 11, 32, 4, 18, 71, 39, 76, 2, 69, 6, 82, 69, 65, 84, 69, 82, 2, 11,
69, 2, 11, 83, 2, 11, 83, 2, 17, 2, 45, 84, 2, 251, 72, 72, 4, 11, 65, 5,
11, 32, 2, 11, 70, 2, 21, 3, 79, 82, 77, 2, 17, 2, 32, 84, 2, 195, 245,
1, 87, 162, 1, 156, 1, 9, 66, 82, 65, 84, 73, 79, 78, 32, 77, 32, 4, 67,
84, 79, 82, 36, 3, 68, 69, 79, 126, 69, 222, 1, 79, 22, 82, 21, 7, 84,
72, 75, 85, 81, 73, 32, 2, 11, 79, 2, 159, 252, 1, 68, 4, 170, 130, 1,
89, 255, 141, 1, 73, 6, 30, 32, 77, 3, 67, 65, 83, 4, 18, 67, 43, 71, 2,
17, 2, 65, 77, 2, 179, 205, 1, 69, 2, 239, 119, 65, 2, 167, 72, 83, 6,
168, 1, 31, 84, 78, 65, 77, 69, 83, 69, 32, 65, 76, 84, 69, 82, 78, 65,
84, 69, 32, 82, 69, 65, 68, 73, 78, 71, 32, 77, 65, 82, 75, 32, 161, 109,
5, 87, 68, 65, 84, 65, 4, 26, 78, 195, 141, 2, 67, 2, 215, 129, 1, 72, 2,
143, 144, 1, 76, 2, 219, 240, 1, 71, 140, 1, 56, 6, 67, 65, 80, 73, 84,
65, 1, 4, 83, 77, 65, 76, 70, 45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32,
70, 230, 1, 66, 34, 69, 22, 73, 22, 76, 34, 78, 222, 139, 1, 67, 2, 68,
2, 83, 2, 84, 226, 56, 72, 238, 48, 70, 2, 74, 2, 77, 2, 80, 2, 82, 2,
86, 2, 88, 2, 90, 158, 20, 71, 2, 75, 2, 81, 186, 2, 65, 2, 79, 2, 85, 3,
89, 4, 142, 246, 1, 66, 215, 22, 69, 5, 195, 140, 2, 73, 5, 219, 245, 1,
74, 4, 226, 137, 2, 76, 187, 2, 65, 4, 166, 245, 1, 74, 215, 22, 69, 8,
28, 3, 73, 68, 69, 59, 76, 2, 21, 3, 68, 32, 71, 2, 225, 71, 4, 82, 69,
69, 75, 6, 46, 67, 20, 3, 76, 69, 89, 41, 2, 85, 77, 2, 195, 225, 1, 65,
2, 11, 66, 2, 11, 65, 2, 215, 126, 76, 2, 11, 69, 2, 17, 2, 32, 73, 2,
141, 126, 4, 78, 84, 69, 71, 5, 215, 137, 2, 83, 40, 70, 67, 45, 13, 71,
65, 82, 32, 70, 82, 65, 67, 84, 73, 79, 78, 32, 2, 11, 65, 2, 11, 78, 2,
135, 203, 1, 85, 38, 106, 70, 96, 4, 79, 78, 69, 32, 178, 2, 84, 80, 7,
83, 69, 86, 69, 78, 32, 69, 153, 33, 3, 90, 69, 82, 6, 56, 4, 73, 86, 69,
32, 253, 3, 5, 79, 85, 82, 32, 70, 4, 162, 3, 69, 113, 3, 83, 73, 88, 18,
66, 69, 28, 2, 70, 73, 18, 72, 34, 78, 14, 81, 30, 83, 55, 84, 2, 197, 1,
3, 73, 71, 72, 2, 171, 1, 70, 2, 11, 65, 2, 227, 132, 1, 76, 2, 111, 73,
2, 217, 75, 3, 85, 65, 82, 4, 24, 2, 69, 86, 15, 73, 2, 43, 69, 2, 43,
88, 4, 18, 69, 35, 72, 2, 11, 78, 2, 231, 131, 2, 84, 2, 243, 107, 73,
10, 48, 5, 72, 82, 69, 69, 32, 93, 3, 87, 79, 32, 6, 26, 69, 26, 81, 67,
70, 2, 109, 3, 73, 71, 72, 2, 21, 3, 85, 65, 82, 2, 215, 114, 84, 4, 22,
70, 219, 32, 84, 2, 11, 73, 2, 11, 70, 2, 181, 197, 1, 2, 84, 72, 168, 6,
86, 65, 250, 23, 69, 158, 3, 72, 222, 69, 73, 234, 8, 79, 238, 5, 82,
219, 146, 1, 74, 204, 2, 114, 70, 18, 78, 220, 5, 2, 88, 73, 158, 1, 82,
210, 10, 84, 194, 1, 86, 197, 155, 1, 6, 83, 84, 69, 66, 65, 83, 2, 231,
90, 70, 122, 36, 4, 67, 72, 79, 32, 183, 5, 73, 118, 100, 7, 76, 69, 84,
84, 69, 82, 32, 252, 3, 3, 78, 71, 85, 16, 5, 84, 79, 78, 69, 32, 243, 7,
68, 88, 210, 1, 65, 38, 79, 34, 69, 22, 73, 22, 76, 50, 78, 42, 84, 50,
85, 22, 89, 234, 180, 1, 75, 2, 80, 2, 83, 138, 69, 66, 2, 67, 2, 68, 2,
70, 2, 71, 2, 72, 2, 74, 2, 77, 2, 82, 2, 86, 2, 87, 3, 90, 13, 34, 65,
186, 253, 1, 78, 87, 85, 7, 11, 78, 5, 255, 253, 1, 71, 5, 235, 253, 1,
78, 5, 131, 253, 1, 78, 4, 26, 76, 171, 253, 1, 65, 2, 239, 250, 1, 72,
6, 218, 250, 1, 71, 2, 89, 187, 2, 65, 8, 178, 250, 1, 72, 2, 82, 2, 83,
187, 2, 65, 5, 219, 172, 1, 69, 4, 150, 251, 1, 73, 147, 1, 65, 2, 135,
117, 78, 8, 40, 3, 75, 79, 73, 1, 3, 84, 85, 80, 5, 243, 231, 1, 78, 4,
21, 3, 78, 71, 32, 4, 76, 8, 67, 82, 69, 83, 67, 69, 78, 84, 1, 7, 71,
73, 66, 66, 79, 85, 83, 2, 21, 3, 32, 77, 79, 2, 11, 79, 2, 231, 100, 78,
170, 1, 72, 9, 65, 78, 71, 32, 67, 73, 84, 73, 32, 205, 114, 4, 78, 73,
78, 71, 168, 1, 128, 1, 6, 67, 65, 80, 73, 84, 65, 0, 4, 83, 77, 65, 76,
190, 4, 68, 156, 2, 7, 78, 85, 77, 66, 69, 82, 32, 151, 225, 1, 79, 64,
45, 9, 76, 32, 76, 69, 84, 84, 69, 82, 32, 64, 174, 1, 65, 38, 69, 42,
72, 74, 78, 50, 79, 22, 83, 50, 85, 30, 89, 174, 43, 84, 208, 112, 2, 86,
73, 222, 51, 66, 2, 80, 246, 5, 75, 158, 11, 73, 2, 87, 162, 17, 68, 3,
71, 9, 142, 246, 1, 78, 86, 77, 3, 84, 7, 11, 78, 4, 178, 246, 1, 78, 3,
89, 8, 38, 79, 174, 157, 1, 73, 235, 31, 65, 4, 146, 189, 1, 82, 235, 25,
76, 4, 26, 71, 191, 164, 1, 85, 2, 251, 242, 1, 65, 5, 255, 174, 1, 68,
4, 26, 83, 155, 225, 1, 73, 2, 135, 208, 1, 85, 4, 218, 244, 1, 67, 3,
85, 8, 34, 85, 158, 244, 1, 65, 3, 79, 5, 155, 244, 1, 74, 20, 11, 73,
20, 11, 71, 20, 17, 2, 73, 84, 20, 11, 32, 20, 66, 70, 30, 83, 42, 84,
62, 90, 210, 86, 78, 14, 79, 227, 112, 69, 4, 182, 118, 73, 131, 4, 79,
4, 22, 69, 155, 100, 73, 2, 211, 28, 86, 4, 26, 72, 187, 211, 1, 87, 2,
11, 82, 2, 203, 219, 1, 69, 2, 11, 69, 2, 139, 211, 1, 82, 18, 42, 69,
30, 70, 42, 78, 38, 83, 39, 84, 2, 221, 1, 3, 73, 71, 72, 4, 22, 73, 139,
1, 79, 2, 171, 1, 70, 2, 17, 2, 73, 78, 2, 135, 1, 69, 4, 92, 2, 69, 86,
25, 2, 73, 88, 6, 34, 72, 26, 87, 155, 160, 1, 69, 2, 11, 73, 2, 35, 82,
2, 11, 69, 2, 11, 78, 2, 151, 222, 1, 84, 12, 32, 2, 69, 82, 155, 238, 1,
67, 10, 34, 32, 141, 159, 1, 2, 77, 69, 8, 80, 3, 67, 76, 79, 22, 87,
204, 203, 1, 5, 66, 85, 70, 70, 65, 1, 2, 80, 79, 2, 151, 185, 1, 83, 2,
199, 113, 65, 20, 60, 2, 69, 32, 124, 4, 73, 78, 71, 32, 161, 1, 2, 89,
32, 6, 182, 2, 68, 137, 192, 1, 23, 65, 82, 82, 79, 87, 32, 80, 79, 73,
78, 84, 73, 78, 71, 32, 68, 73, 82, 69, 67, 84, 76, 89, 6, 64, 5, 66, 76,
65, 67, 75, 0, 5, 87, 72, 73, 84, 69, 55, 72, 2, 17, 2, 32, 70, 2, 11,
76, 2, 151, 235, 1, 65, 2, 11, 65, 2, 11, 78, 2, 191, 100, 68, 8, 26, 68,
34, 76, 43, 79, 2, 11, 65, 2, 247, 233, 1, 83, 4, 22, 79, 175, 79, 73, 2,
135, 79, 87, 2, 11, 86, 2, 11, 69, 2, 235, 78, 82, 14, 48, 3, 65, 82, 89,
70, 68, 70, 73, 171, 1, 83, 4, 11, 32, 4, 32, 2, 67, 65, 187, 172, 1, 70,
2, 159, 172, 1, 84, 4, 26, 71, 143, 152, 1, 68, 2, 229, 70, 6, 69, 45,
84, 65, 73, 76, 4, 116, 17, 69, 82, 83, 84, 82, 65, 83, 83, 32, 69, 76,
76, 73, 80, 84, 73, 67, 229, 45, 7, 71, 72, 84, 32, 76, 73, 70, 2, 17, 2,
32, 70, 2, 253, 150, 1, 2, 85, 78, 2, 37, 7, 84, 32, 83, 89, 82, 73, 65,
2, 215, 35, 67, 192, 2, 52, 3, 69, 69, 76, 100, 3, 73, 84, 69, 175, 63,
65, 7, 60, 7, 32, 79, 70, 32, 68, 72, 65, 21, 4, 67, 72, 65, 73, 2, 251,
196, 1, 82, 2, 179, 80, 82, 184, 2, 54, 32, 133, 67, 8, 45, 70, 69, 65,
84, 72, 69, 82, 182, 2, 148, 2, 18, 65, 82, 82, 79, 87, 32, 83, 72, 65,
70, 84, 32, 87, 73, 68, 84, 72, 32, 114, 66, 46, 67, 198, 16, 68, 166, 5,
69, 50, 70, 186, 3, 72, 246, 3, 76, 210, 4, 77, 222, 1, 78, 34, 80, 146,
1, 81, 78, 82, 142, 2, 83, 158, 12, 84, 228, 3, 2, 85, 80, 149, 4, 3, 86,
69, 82, 4, 22, 84, 203, 71, 79, 2, 11, 87, 2, 21, 3, 79, 32, 84, 2, 17,
2, 72, 73, 2, 11, 82, 2, 215, 164, 1, 68, 2, 11, 85, 2, 11, 76, 2, 239,
172, 1, 76, 98, 154, 1, 72, 252, 10, 5, 73, 82, 67, 76, 69, 162, 3, 76,
24, 20, 79, 78, 67, 65, 86, 69, 45, 83, 73, 68, 69, 68, 32, 68, 73, 65,
77, 79, 78, 68, 79, 82, 70, 25, 4, 69, 83, 83, 32, 70, 104, 3, 65, 76,
70, 18, 66, 38, 69, 116, 3, 70, 69, 82, 22, 75, 142, 4, 80, 22, 81, 38,
82, 131, 2, 84, 2, 255, 83, 73, 6, 133, 6, 5, 73, 83, 72, 79, 80, 4, 45,
9, 81, 85, 73, 72, 79, 80, 80, 69, 82, 5, 17, 2, 32, 82, 2, 149, 6, 8,
79, 84, 65, 84, 69, 68, 32, 78, 2, 167, 222, 1, 90, 26, 38, 73, 25, 5,
78, 73, 71, 72, 84, 6, 177, 4, 2, 78, 71, 21, 22, 32, 151, 3, 45, 12, 41,
8, 82, 79, 84, 65, 84, 69, 68, 32, 12, 104, 2, 70, 79, 0, 15, 79, 78, 69,
32, 72, 85, 78, 68, 82, 69, 68, 32, 84, 72, 73, 18, 84, 215, 3, 78, 2,
207, 1, 82, 6, 148, 1, 11, 87, 79, 32, 72, 85, 78, 68, 82, 69, 68, 32,
133, 3, 20, 72, 82, 69, 69, 32, 72, 85, 78, 68, 82, 69, 68, 32, 70, 73,
70, 84, 69, 69, 78, 4, 36, 4, 84, 87, 69, 78, 175, 2, 83, 2, 217, 2, 7,
84, 89, 45, 70, 73, 86, 69, 6, 174, 3, 66, 94, 81, 47, 82, 6, 41, 2, 65,
87, 6, 21, 3, 85, 69, 69, 6, 35, 78, 6, 21, 3, 79, 79, 75, 7, 45, 9, 32,
82, 79, 84, 65, 84, 69, 68, 32, 4, 70, 78, 25, 13, 84, 87, 79, 32, 72,
85, 78, 68, 82, 69, 68, 32, 83, 2, 49, 3, 73, 78, 69, 2, 25, 4, 69, 86,
69, 78, 2, 17, 2, 84, 89, 2, 241, 65, 6, 32, 68, 69, 71, 82, 69, 12, 29,
5, 85, 82, 78, 69, 68, 12, 11, 32, 12, 42, 66, 30, 75, 34, 80, 34, 81,
47, 82, 2, 225, 93, 3, 73, 83, 72, 4, 226, 133, 1, 73, 171, 38, 78, 2,
11, 65, 2, 207, 134, 1, 87, 2, 11, 85, 2, 11, 69, 2, 163, 134, 1, 69, 2,
143, 172, 1, 79, 19, 11, 32, 16, 100, 16, 67, 79, 78, 84, 65, 73, 78, 73,
78, 71, 32, 66, 76, 65, 67, 75, 121, 5, 87, 73, 84, 72, 32, 2, 17, 2, 32,
83, 2, 11, 77, 2, 21, 3, 65, 76, 76, 2, 11, 32, 2, 11, 67, 2, 11, 73, 2,
11, 82, 2, 195, 45, 67, 14, 56, 2, 68, 79, 70, 84, 236, 31, 2, 76, 79,
231, 1, 85, 4, 18, 84, 35, 87, 2, 11, 32, 2, 195, 168, 1, 82, 2, 167, 54,
78, 2, 11, 87, 2, 11, 79, 2, 11, 32, 2, 147, 60, 68, 2, 217, 27, 2, 85,
66, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 236, 30, 2, 76, 69, 49, 2, 82,
73, 2, 17, 2, 79, 83, 2, 255, 143, 1, 83, 28, 76, 6, 73, 65, 77, 79, 78,
68, 216, 2, 3, 79, 87, 78, 177, 1, 2, 82, 65, 15, 11, 32, 12, 160, 1, 17,
67, 79, 78, 84, 65, 73, 78, 73, 78, 71, 32, 66, 76, 65, 67, 75, 32, 128,
1, 9, 87, 73, 84, 72, 32, 67, 69, 78, 84, 234, 23, 83, 213, 19, 2, 73,
78, 6, 74, 83, 0, 6, 86, 69, 82, 89, 32, 83, 29, 6, 77, 69, 68, 73, 85,
77, 2, 25, 4, 77, 65, 76, 76, 2, 205, 15, 2, 32, 68, 2, 11, 82, 2, 11,
69, 2, 231, 58, 68, 10, 96, 10, 32, 80, 79, 73, 78, 84, 73, 78, 71, 32,
53, 10, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 6, 178, 36, 66, 24, 5,
76, 69, 70, 84, 32, 51, 73, 4, 202, 37, 83, 51, 84, 4, 33, 6, 85, 71, 72,
84, 83, 32, 4, 22, 77, 155, 123, 75, 2, 187, 124, 65, 2, 29, 5, 88, 67,
76, 65, 77, 2, 175, 15, 65, 14, 74, 76, 144, 2, 11, 79, 85, 82, 32, 80,
79, 73, 78, 84, 69, 68, 71, 82, 8, 28, 2, 65, 71, 175, 1, 79, 5, 149, 1,
34, 32, 87, 73, 84, 72, 32, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 32,
77, 73, 68, 68, 76, 69, 32, 66, 76, 65, 67, 75, 32, 83, 84, 82, 73, 2,
131, 179, 1, 80, 4, 26, 82, 191, 139, 1, 87, 2, 17, 2, 69, 84, 2, 191,
178, 1, 84, 4, 11, 32, 4, 18, 67, 23, 83, 2, 199, 200, 1, 85, 2, 143, 37,
84, 2, 141, 64, 2, 79, 87, 16, 34, 65, 150, 1, 69, 231, 1, 79, 2, 25, 4,
82, 68, 32, 83, 2, 45, 9, 72, 69, 76, 76, 32, 70, 76, 79, 80, 2, 17, 2,
80, 89, 2, 17, 2, 32, 68, 2, 11, 73, 2, 231, 195, 1, 83, 10, 22, 65, 151,
12, 88, 8, 30, 82, 29, 3, 86, 89, 32, 4, 11, 84, 5, 211, 15, 32, 4, 74,
67, 53, 14, 83, 65, 76, 84, 73, 82, 69, 32, 87, 73, 84, 72, 32, 82, 2,
17, 2, 72, 69, 2, 11, 67, 2, 231, 131, 1, 75, 2, 167, 19, 79, 4, 60, 8,
82, 73, 90, 79, 78, 84, 65, 76, 249, 42, 2, 85, 82, 2, 201, 31, 2, 32,
69, 22, 42, 65, 116, 3, 69, 70, 84, 175, 1, 79, 4, 24, 2, 82, 71, 19, 84,
2, 243, 32, 69, 2, 11, 73, 2, 11, 78, 2, 17, 2, 32, 67, 2, 11, 82, 2,
203, 42, 79, 12, 58, 32, 77, 10, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32,
6, 44, 6, 76, 65, 78, 69, 32, 77, 247, 24, 80, 2, 11, 69, 2, 227, 10, 82,
6, 150, 2, 80, 206, 24, 83, 51, 84, 6, 160, 1, 4, 87, 69, 82, 32, 221, 8,
30, 90, 69, 78, 71, 69, 32, 67, 79, 78, 84, 65, 73, 78, 73, 78, 71, 32,
66, 76, 65, 67, 75, 32, 83, 77, 65, 76, 76, 32, 76, 4, 44, 3, 76, 69, 70,
1, 4, 82, 73, 71, 72, 2, 11, 84, 2, 17, 2, 32, 80, 2, 203, 5, 79, 12, 68,
6, 69, 68, 73, 85, 77, 32, 117, 7, 79, 79, 78, 32, 83, 69, 76, 10, 30,
68, 54, 83, 227, 6, 76, 2, 11, 73, 2, 11, 65, 2, 11, 77, 2, 191, 46, 79,
6, 134, 27, 84, 50, 77, 59, 81, 2, 11, 69, 2, 223, 187, 1, 78, 2, 11, 73,
2, 247, 189, 1, 66, 6, 18, 65, 87, 69, 2, 37, 7, 82, 65, 76, 76, 69, 76,
79, 2, 11, 71, 2, 11, 82, 2, 183, 172, 1, 65, 4, 11, 78, 4, 174, 2, 84,
203, 46, 78, 2, 21, 3, 85, 69, 83, 2, 217, 120, 9, 84, 73, 79, 78, 32,
77, 65, 82, 75, 14, 34, 69, 25, 4, 73, 71, 72, 84, 2, 129, 21, 2, 67, 84,
12, 60, 10, 45, 80, 79, 73, 78, 84, 73, 78, 71, 32, 211, 17, 32, 8, 30,
80, 202, 19, 83, 51, 84, 4, 18, 69, 55, 79, 2, 11, 78, 2, 11, 84, 2, 11,
65, 2, 199, 106, 71, 2, 11, 73, 2, 11, 78, 2, 159, 124, 84, 56, 118, 67,
32, 3, 69, 83, 65, 18, 72, 58, 77, 166, 1, 80, 68, 5, 81, 85, 65, 82, 69,
180, 6, 2, 85, 78, 199, 12, 84, 2, 145, 40, 4, 73, 83, 83, 79, 2, 167,
37, 77, 2, 21, 3, 79, 71, 73, 2, 189, 123, 4, 32, 80, 73, 69, 8, 32, 4,
65, 76, 76, 32, 115, 73, 6, 18, 76, 71, 83, 2, 11, 79, 2, 11, 90, 2, 11,
69, 2, 11, 78, 2, 223, 160, 1, 71, 4, 226, 19, 84, 107, 81, 2, 231, 46,
76, 2, 21, 3, 65, 68, 69, 2, 11, 32, 2, 11, 83, 2, 143, 154, 1, 85, 29,
11, 32, 26, 114, 66, 36, 17, 67, 79, 78, 84, 65, 73, 78, 73, 78, 71, 32,
66, 76, 65, 67, 75, 32, 85, 5, 87, 73, 84, 72, 32, 2, 17, 2, 85, 84, 2,
179, 101, 84, 6, 54, 86, 194, 17, 83, 37, 6, 77, 69, 68, 73, 85, 77, 2,
169, 17, 3, 69, 82, 89, 18, 150, 1, 76, 50, 82, 214, 1, 85, 144, 1, 17,
86, 69, 82, 84, 73, 67, 65, 76, 32, 66, 73, 83, 69, 67, 84, 73, 78, 249,
19, 6, 67, 69, 78, 84, 82, 69, 6, 18, 69, 15, 79, 2, 67, 70, 4, 247, 1,
87, 4, 18, 73, 115, 79, 2, 17, 2, 71, 72, 2, 33, 6, 84, 87, 65, 82, 68,
83, 2, 11, 32, 2, 11, 84, 2, 11, 73, 2, 235, 174, 1, 67, 2, 29, 5, 85,
78, 68, 69, 68, 2, 21, 3, 32, 67, 79, 2, 185, 32, 2, 82, 78, 4, 17, 2,
80, 80, 4, 21, 3, 69, 82, 32, 4, 44, 3, 76, 69, 70, 1, 4, 82, 73, 71, 72,
2, 33, 6, 84, 32, 81, 85, 65, 68, 2, 167, 36, 82, 2, 187, 20, 71, 11, 11,
32, 8, 84, 12, 66, 69, 72, 73, 78, 68, 32, 67, 76, 79, 85, 68, 69, 5, 87,
73, 84, 72, 32, 5, 29, 5, 32, 87, 73, 84, 72, 2, 17, 2, 32, 82, 2, 147,
47, 65, 4, 38, 82, 29, 5, 83, 77, 65, 76, 76, 2, 11, 65, 2, 199, 112, 89,
2, 11, 32, 2, 21, 3, 67, 76, 79, 2, 207, 103, 85, 10, 38, 79, 54, 69, 62,
82, 203, 1, 87, 2, 49, 10, 85, 67, 72, 84, 79, 78, 69, 32, 84, 69, 2, 17,
2, 76, 69, 2, 11, 80, 2, 11, 72, 2, 167, 17, 79, 4, 148, 1, 4, 65, 80,
69, 90, 33, 28, 73, 65, 78, 71, 76, 69, 32, 67, 79, 78, 84, 65, 73, 78,
73, 78, 71, 32, 83, 77, 65, 76, 76, 32, 87, 72, 73, 84, 2, 11, 73, 2,
203, 154, 1, 85, 2, 135, 4, 69, 2, 11, 79, 2, 85, 19, 45, 87, 65, 89, 32,
76, 69, 70, 84, 32, 87, 65, 89, 32, 84, 82, 65, 70, 70, 2, 11, 73, 2,
143, 170, 1, 67, 12, 62, 32, 185, 1, 10, 45, 80, 79, 73, 78, 84, 73, 78,
71, 32, 4, 11, 80, 4, 41, 8, 79, 73, 78, 84, 73, 78, 71, 32, 4, 18, 66,
75, 73, 2, 21, 3, 65, 67, 75, 2, 25, 4, 72, 65, 78, 68, 2, 17, 2, 32, 73,
2, 17, 2, 78, 68, 2, 211, 25, 69, 8, 54, 67, 42, 83, 125, 7, 84, 82, 73,
65, 78, 71, 76, 2, 21, 3, 72, 69, 86, 2, 199, 87, 82, 2, 25, 4, 77, 65,
76, 76, 2, 17, 2, 32, 84, 2, 17, 2, 82, 73, 2, 11, 65, 2, 11, 78, 2, 11,
71, 2, 231, 143, 1, 76, 4, 11, 69, 5, 11, 32, 2, 11, 87, 2, 209, 18, 3,
73, 84, 72, 10, 44, 6, 84, 73, 67, 65, 76, 32, 143, 2, 89, 8, 58, 69, 48,
7, 82, 69, 67, 84, 65, 78, 71, 147, 1, 66, 2, 11, 76, 2, 17, 2, 76, 73,
2, 183, 25, 80, 4, 17, 2, 76, 69, 5, 37, 7, 32, 87, 73, 84, 72, 32, 72,
2, 37, 7, 79, 82, 73, 90, 79, 78, 84, 2, 17, 2, 65, 76, 2, 11, 32, 2, 11,
66, 2, 223, 106, 65, 2, 17, 2, 32, 83, 2, 11, 77, 2, 21, 3, 65, 76, 76,
2, 17, 2, 32, 83, 2, 11, 81, 2, 11, 85, 2, 11, 65, 2, 231, 139, 1, 82, 2,
11, 69, 2, 11, 68, 2, 17, 2, 32, 82, 2, 21, 3, 73, 71, 72, 2, 11, 84, 2,
11, 87, 2, 241, 4, 4, 65, 82, 68, 83, 100, 140, 1, 10, 68, 69, 45, 72,
69, 65, 68, 69, 68, 32, 132, 4, 4, 71, 71, 76, 89, 124, 6, 76, 84, 69,
68, 32, 70, 42, 78, 189, 1, 2, 82, 69, 80, 128, 1, 3, 76, 69, 70, 0, 4,
82, 73, 71, 72, 12, 4, 68, 79, 87, 78, 0, 2, 85, 80, 32, 3, 78, 79, 82,
1, 3, 83, 79, 85, 10, 11, 84, 10, 109, 5, 87, 65, 82, 68, 83, 20, 21, 3,
84, 72, 32, 20, 32, 2, 69, 65, 1, 2, 87, 69, 10, 17, 2, 83, 84, 10, 11,
32, 10, 110, 72, 0, 6, 86, 69, 82, 89, 32, 72, 28, 5, 76, 73, 71, 72, 84,
0, 6, 77, 69, 68, 73, 85, 77, 23, 66, 2, 25, 4, 69, 65, 86, 89, 2, 17, 2,
32, 66, 2, 21, 3, 65, 82, 66, 2, 11, 32, 2, 11, 65, 2, 11, 82, 2, 11, 82,
2, 135, 30, 79, 2, 17, 2, 32, 86, 2, 11, 69, 2, 33, 6, 82, 84, 73, 67,
65, 76, 2, 11, 32, 2, 11, 76, 2, 11, 73, 2, 219, 132, 1, 78, 2, 11, 76,
2, 11, 79, 2, 151, 93, 87, 12, 46, 68, 106, 69, 190, 17, 75, 163, 136, 1,
71, 6, 22, 32, 143, 28, 79, 4, 44, 2, 67, 72, 221, 17, 4, 66, 76, 79, 87,
2, 11, 73, 2, 155, 131, 1, 77, 2, 11, 32, 2, 121, 3, 71, 76, 65, 4, 36,
5, 68, 32, 75, 69, 89, 51, 76, 2, 17, 2, 66, 79, 2, 11, 65, 2, 207, 82,
82, 2, 11, 69, 2, 247, 90, 83, 30, 66, 77, 134, 3, 82, 254, 13, 78, 226,
64, 79, 129, 9, 2, 76, 70, 14, 36, 2, 65, 78, 137, 2, 2, 69, 78, 13, 72,
12, 32, 87, 73, 84, 72, 32, 66, 85, 78, 78, 89, 32, 29, 2, 83, 32, 2, 11,
69, 2, 143, 6, 65, 8, 52, 2, 66, 79, 16, 2, 67, 76, 54, 83, 199, 12, 72,
2, 251, 13, 79, 2, 11, 79, 2, 11, 84, 2, 11, 72, 2, 167, 88, 69, 2, 17,
2, 65, 78, 2, 131, 10, 68, 2, 11, 83, 2, 11, 32, 2, 11, 83, 2, 11, 89, 2,
17, 2, 77, 66, 2, 187, 9, 79, 10, 72, 2, 68, 32, 156, 1, 3, 76, 68, 32,
32, 2, 82, 73, 247, 146, 1, 77, 4, 56, 9, 83, 69, 80, 65, 82, 65, 84, 79,
82, 231, 85, 74, 2, 17, 2, 32, 77, 2, 21, 3, 73, 68, 68, 2, 11, 76, 2,
11, 69, 2, 11, 32, 2, 235, 66, 68, 2, 11, 77, 2, 251, 146, 1, 65, 2, 11,
69, 2, 199, 85, 68, 10, 56, 7, 65, 80, 80, 69, 68, 32, 80, 30, 69, 163,
1, 73, 2, 241, 78, 3, 82, 69, 83, 6, 48, 2, 65, 84, 80, 3, 83, 84, 76,
215, 110, 78, 2, 11, 72, 2, 11, 32, 2, 11, 80, 2, 25, 4, 82, 79, 68, 85,
2, 223, 116, 67, 2, 11, 69, 2, 147, 83, 82, 2, 11, 84, 2, 11, 73, 2, 17,
2, 78, 71, 2, 17, 2, 32, 72, 2, 11, 65, 2, 243, 73, 78, 34, 76, 2, 32,
73, 138, 1, 45, 28, 7, 73, 65, 78, 71, 81, 73, 32, 183, 85, 79, 2, 53,
11, 78, 32, 65, 32, 82, 69, 67, 84, 65, 78, 71, 2, 11, 76, 2, 11, 69, 2,
11, 32, 2, 11, 66, 2, 11, 79, 2, 191, 142, 1, 88, 2, 11, 82, 2, 215, 124,
65, 28, 48, 5, 66, 76, 65, 67, 75, 1, 3, 82, 69, 68, 14, 11, 32, 14, 130,
1, 67, 72, 4, 69, 76, 69, 80, 28, 4, 71, 69, 78, 69, 46, 72, 40, 4, 83,
79, 76, 68, 193, 11, 6, 77, 65, 78, 68, 65, 82, 4, 24, 2, 65, 78, 19, 72,
2, 195, 60, 78, 2, 229, 59, 3, 65, 82, 73, 2, 11, 72, 2, 219, 72, 65, 2,
11, 82, 2, 11, 65, 2, 207, 139, 1, 76, 2, 11, 79, 2, 11, 82, 2, 207, 116,
83, 2, 167, 77, 73, 248, 19, 54, 65, 206, 2, 69, 226, 11, 73, 217, 35, 2,
79, 45, 8, 84, 16, 78, 71, 81, 73, 78, 32, 83, 73, 71, 78, 32, 83, 76,
79, 87, 32, 199, 1, 87, 6, 28, 3, 79, 78, 69, 51, 84, 2, 17, 2, 32, 66,
2, 11, 69, 2, 131, 109, 65, 4, 60, 9, 72, 82, 69, 69, 32, 72, 65, 76, 70,
1, 2, 87, 79, 2, 21, 3, 32, 66, 69, 2, 11, 65, 2, 223, 74, 84, 2, 11, 78,
2, 11, 73, 2, 241, 74, 2, 78, 71, 98, 60, 4, 76, 76, 79, 87, 62, 78, 53,
5, 90, 73, 68, 73, 32, 2, 17, 2, 32, 72, 2, 11, 69, 2, 11, 65, 2, 227,
106, 82, 2, 11, 32, 2, 11, 83, 2, 11, 73, 2, 251, 54, 71, 94, 112, 10,
67, 79, 77, 66, 73, 78, 73, 78, 71, 32, 76, 5, 72, 89, 80, 72, 69, 17, 7,
76, 69, 84, 84, 69, 82, 32, 4, 44, 3, 77, 65, 68, 13, 4, 72, 65, 77, 90,
2, 11, 68, 2, 215, 67, 65, 2, 215, 27, 78, 88, 250, 1, 67, 50, 77, 18,
68, 42, 69, 58, 72, 30, 75, 22, 71, 2, 81, 32, 3, 76, 65, 77, 98, 78, 18,
80, 30, 83, 66, 84, 28, 2, 86, 65, 126, 87, 14, 79, 18, 88, 52, 3, 89,
79, 84, 154, 1, 90, 134, 53, 82, 238, 48, 66, 254, 5, 85, 162, 14, 70, 3,
74, 6, 22, 72, 147, 114, 73, 4, 22, 72, 251, 113, 73, 2, 247, 113, 73, 4,
11, 65, 4, 178, 130, 1, 68, 3, 76, 8, 42, 76, 142, 50, 89, 226, 79, 84,
3, 87, 2, 71, 73, 4, 150, 112, 65, 147, 15, 72, 4, 18, 72, 15, 65, 2, 11,
65, 2, 163, 129, 1, 70, 5, 11, 32, 2, 11, 87, 2, 21, 3, 73, 84, 72, 2,
17, 2, 32, 68, 2, 11, 79, 2, 187, 3, 84, 2, 207, 48, 85, 4, 202, 105, 72,
215, 22, 69, 8, 46, 72, 246, 47, 73, 194, 9, 65, 163, 70, 69, 2, 243, 47,
73, 4, 238, 104, 72, 215, 22, 65, 5, 37, 7, 32, 65, 76, 84, 69, 82, 78,
2, 17, 2, 65, 84, 2, 11, 69, 2, 11, 32, 2, 11, 70, 2, 11, 79, 2, 227,
109, 82, 2, 11, 65, 2, 159, 126, 87, 4, 22, 72, 251, 125, 65, 2, 11, 69,
2, 139, 46, 89, 5, 41, 8, 32, 87, 73, 84, 72, 32, 67, 73, 2, 41, 8, 82,
67, 85, 77, 70, 76, 69, 88, 2, 11, 32, 2, 11, 65, 2, 11, 66, 2, 11, 79,
2, 255, 101, 86, 6, 22, 65, 175, 124, 69, 5, 171, 124, 76, 140, 19, 34,
32, 161, 35, 3, 78, 32, 89, 138, 19, 88, 8, 82, 65, 68, 73, 67, 65, 76,
32, 181, 7, 9, 83, 89, 76, 76, 65, 66, 76, 69, 32, 110, 170, 1, 66, 42,
67, 86, 68, 42, 71, 74, 72, 66, 74, 66, 75, 30, 76, 30, 77, 26, 78, 74,
80, 26, 83, 74, 84, 30, 86, 30, 89, 30, 90, 250, 35, 81, 198, 49, 87,
235, 30, 79, 4, 22, 66, 247, 64, 85, 2, 163, 93, 85, 12, 42, 85, 18, 89,
178, 98, 72, 203, 22, 73, 2, 135, 121, 79, 7, 130, 121, 80, 3, 84, 4, 22,
68, 215, 120, 85, 2, 247, 63, 85, 10, 42, 71, 238, 91, 79, 162, 28, 69,
15, 65, 4, 162, 89, 85, 235, 30, 79, 8, 22, 88, 243, 88, 77, 6, 238, 88,
85, 202, 2, 73, 163, 28, 79, 8, 22, 74, 167, 119, 79, 6, 246, 90, 85,
218, 5, 73, 215, 22, 89, 4, 206, 90, 73, 175, 28, 69, 6, 190, 54, 73,
199, 7, 89, 4, 182, 118, 79, 15, 73, 8, 30, 89, 26, 90, 199, 90, 66, 4,
254, 117, 73, 3, 79, 2, 231, 117, 85, 4, 182, 89, 85, 3, 89, 10, 22, 72,
223, 97, 83, 8, 214, 60, 85, 178, 28, 65, 162, 28, 79, 15, 89, 4, 214,
88, 65, 175, 28, 85, 4, 138, 60, 85, 211, 56, 69, 4, 158, 88, 73, 175,
28, 79, 10, 54, 85, 224, 62, 2, 90, 73, 238, 24, 79, 175, 28, 65, 4, 246,
115, 80, 3, 82, 156, 18, 134, 2, 66, 134, 1, 67, 162, 1, 68, 110, 70, 50,
71, 150, 1, 72, 138, 3, 73, 134, 1, 74, 98, 75, 54, 76, 62, 77, 134, 1,
78, 234, 4, 80, 54, 81, 2, 89, 46, 82, 162, 1, 83, 134, 1, 84, 102, 86,
82, 87, 58, 88, 50, 90, 140, 2, 2, 85, 79, 66, 65, 2, 79, 107, 69, 132,
1, 66, 66, 238, 21, 85, 150, 1, 69, 26, 73, 42, 65, 2, 79, 67, 89, 64,
234, 21, 85, 150, 1, 69, 26, 73, 42, 65, 2, 79, 3, 89, 122, 66, 72, 238,
20, 85, 150, 1, 69, 26, 73, 42, 65, 2, 79, 67, 89, 54, 46, 85, 146, 22,
65, 2, 69, 2, 79, 67, 89, 19, 142, 22, 79, 106, 82, 230, 88, 80, 3, 88,
106, 58, 68, 138, 15, 85, 134, 5, 73, 94, 69, 66, 65, 3, 79, 54, 210, 19,
85, 58, 73, 94, 69, 66, 65, 3, 79, 42, 182, 20, 79, 66, 65, 2, 73, 2, 89,
67, 85, 116, 58, 71, 214, 15, 85, 146, 4, 73, 42, 65, 2, 69, 3, 79, 56,
50, 73, 162, 15, 85, 186, 4, 65, 2, 69, 3, 79, 13, 150, 19, 69, 142, 90,
84, 3, 88, 246, 1, 78, 73, 30, 76, 58, 77, 54, 78, 110, 88, 50, 85, 254,
15, 69, 66, 65, 3, 79, 6, 198, 19, 69, 231, 88, 84, 64, 238, 16, 85, 58,
73, 94, 69, 2, 79, 66, 65, 67, 89, 58, 182, 16, 85, 58, 73, 158, 1, 65,
2, 79, 35, 89, 42, 46, 79, 34, 85, 202, 16, 69, 26, 73, 43, 65, 6, 242,
106, 80, 2, 84, 3, 88, 6, 238, 17, 79, 231, 88, 84, 46, 46, 85, 254, 15,
69, 26, 73, 42, 65, 3, 79, 8, 187, 16, 79, 19, 42, 84, 130, 16, 69, 206,
89, 80, 3, 88, 5, 11, 69, 2, 11, 82, 2, 11, 65, 2, 11, 84, 2, 11, 73, 2,
11, 79, 2, 191, 39, 78, 106, 50, 74, 190, 10, 85, 146, 4, 73, 42, 79, 67,
89, 50, 158, 13, 85, 174, 1, 73, 42, 79, 3, 89, 56, 242, 12, 85, 58, 73,
158, 1, 65, 2, 69, 3, 79, 70, 218, 9, 85, 250, 3, 69, 26, 73, 42, 65, 2,
79, 67, 89, 106, 70, 71, 218, 8, 85, 158, 3, 73, 158, 1, 65, 2, 79, 2,
89, 107, 69, 44, 186, 11, 85, 150, 1, 69, 66, 65, 2, 79, 105, 2, 73, 69,
248, 2, 102, 66, 54, 68, 94, 71, 90, 74, 46, 82, 50, 89, 78, 90, 134, 7,
85, 58, 73, 94, 65, 2, 69, 67, 79, 54, 202, 10, 73, 158, 1, 65, 2, 79,
66, 85, 3, 89, 46, 46, 73, 198, 10, 69, 66, 65, 2, 79, 67, 85, 13, 234,
11, 69, 230, 88, 80, 2, 84, 3, 88, 34, 60, 2, 85, 79, 218, 9, 69, 0, 2,
73, 69, 66, 65, 3, 79, 7, 226, 99, 84, 3, 88, 50, 230, 1, 85, 242, 7, 73,
42, 79, 67, 89, 46, 146, 9, 79, 66, 65, 2, 69, 66, 85, 3, 89, 38, 30, 85,
222, 8, 73, 43, 79, 15, 194, 8, 79, 142, 90, 80, 2, 84, 3, 88, 56, 62,
85, 206, 4, 79, 178, 2, 73, 158, 1, 65, 66, 89, 43, 69, 15, 254, 8, 79,
2, 82, 230, 88, 80, 3, 88, 60, 150, 6, 85, 58, 73, 158, 1, 65, 2, 79, 67,
89, 56, 254, 2, 85, 146, 4, 73, 42, 79, 67, 89, 100, 58, 82, 254, 4, 85,
150, 1, 69, 66, 65, 2, 79, 67, 89, 48, 46, 85, 162, 6, 69, 2, 79, 66, 89,
43, 65, 17, 134, 7, 79, 2, 82, 230, 88, 80, 2, 84, 3, 88, 176, 1, 70, 83,
158, 3, 72, 50, 85, 58, 73, 94, 69, 66, 65, 2, 79, 67, 89, 56, 130, 4,
73, 94, 69, 66, 65, 2, 79, 2, 85, 67, 89, 56, 46, 85, 158, 3, 73, 94, 69,
66, 65, 3, 79, 21, 182, 4, 79, 106, 82, 230, 88, 80, 2, 84, 3, 88, 60,
54, 69, 166, 3, 73, 42, 65, 2, 79, 66, 85, 3, 89, 4, 150, 93, 80, 3, 88,
28, 38, 85, 206, 2, 69, 2, 79, 67, 65, 9, 203, 2, 79, 40, 210, 2, 73, 42,
79, 66, 89, 41, 2, 85, 79, 178, 1, 66, 72, 50, 85, 58, 73, 42, 90, 54,
69, 66, 65, 2, 79, 67, 89, 54, 46, 85, 214, 1, 65, 2, 69, 2, 79, 67, 89,
19, 146, 1, 79, 170, 1, 82, 230, 88, 80, 2, 84, 3, 88, 15, 90, 69, 142,
90, 80, 2, 84, 3, 88, 58, 50, 69, 2, 79, 26, 73, 42, 65, 34, 85, 35, 89,
7, 138, 90, 80, 3, 88, 17, 38, 69, 206, 89, 80, 2, 84, 3, 88, 9, 202, 89,
80, 2, 84, 3, 88, 11, 70, 82, 230, 88, 80, 3, 88, 13, 38, 82, 230, 88,
80, 2, 84, 3, 88, 5, 227, 88, 88, 2, 219, 7, 65, 2, 207, 57, 89, 180, 4,
252, 1, 10, 32, 78, 79, 84, 65, 84, 73, 79, 78, 32, 224, 6, 16, 65, 78,
65, 66, 65, 90, 65, 82, 32, 83, 81, 85, 65, 82, 69, 32, 210, 15, 69, 180,
2, 6, 73, 80, 80, 69, 82, 45, 96, 8, 78, 65, 77, 69, 78, 78, 89, 32, 188,
33, 3, 79, 77, 66, 235, 26, 87, 26, 144, 1, 9, 66, 65, 71, 32, 77, 69,
77, 66, 69, 42, 82, 104, 6, 68, 79, 77, 65, 73, 78, 60, 3, 76, 69, 70,
154, 1, 83, 145, 2, 3, 84, 89, 80, 2, 11, 82, 2, 11, 83, 2, 215, 83, 72,
8, 100, 4, 65, 78, 71, 69, 60, 3, 73, 71, 72, 221, 1, 11, 69, 76, 65, 84,
73, 79, 78, 65, 76, 32, 67, 2, 173, 3, 11, 32, 65, 78, 84, 73, 82, 69,
83, 84, 82, 73, 4, 17, 2, 84, 32, 4, 60, 4, 73, 77, 65, 71, 13, 7, 66,
73, 78, 68, 73, 78, 71, 2, 11, 69, 2, 25, 4, 32, 66, 82, 65, 2, 11, 67,
2, 175, 29, 75, 8, 44, 6, 67, 72, 69, 77, 65, 32, 211, 1, 80, 6, 18, 67,
71, 80, 2, 17, 2, 79, 77, 2, 11, 80, 2, 11, 79, 2, 11, 83, 2, 107, 73, 4,
30, 73, 41, 3, 82, 79, 74, 2, 11, 80, 2, 11, 73, 2, 163, 80, 78, 2, 11,
69, 2, 11, 67, 2, 11, 84, 2, 87, 73, 2, 139, 52, 79, 2, 11, 69, 2, 11,
32, 2, 11, 67, 2, 11, 79, 2, 11, 76, 2, 11, 79, 2, 223, 79, 78, 144, 1,
240, 1, 2, 67, 76, 68, 7, 73, 78, 73, 84, 73, 65, 76, 204, 2, 14, 70, 73,
78, 65, 76, 32, 67, 79, 78, 83, 79, 78, 65, 78, 16, 7, 76, 69, 84, 84,
69, 82, 32, 148, 3, 5, 77, 65, 82, 75, 32, 206, 1, 83, 181, 3, 6, 86, 79,
87, 69, 76, 32, 14, 64, 5, 79, 83, 73, 78, 71, 137, 1, 6, 85, 83, 84, 69,
82, 45, 4, 11, 32, 4, 64, 12, 68, 79, 85, 66, 76, 69, 45, 76, 73, 78, 69,
68, 23, 72, 2, 17, 2, 32, 72, 2, 17, 2, 69, 65, 2, 215, 10, 68, 10, 96,
13, 70, 73, 78, 65, 76, 32, 76, 69, 84, 84, 69, 82, 32, 41, 7, 73, 78,
73, 84, 73, 65, 76, 8, 238, 72, 76, 2, 82, 2, 86, 3, 89, 2, 37, 7, 32,
76, 69, 84, 84, 69, 82, 2, 151, 6, 32, 2, 131, 9, 84, 82, 166, 1, 68, 50,
75, 38, 78, 46, 83, 38, 84, 46, 66, 2, 67, 2, 71, 2, 80, 2, 90, 138, 69,
45, 2, 72, 2, 74, 2, 76, 2, 77, 2, 82, 2, 86, 2, 89, 187, 2, 65, 12, 206,
1, 68, 2, 90, 138, 69, 72, 187, 2, 65, 6, 154, 70, 83, 14, 72, 187, 2,
65, 8, 130, 70, 71, 2, 78, 2, 89, 187, 2, 65, 6, 214, 69, 72, 2, 83, 187,
2, 65, 12, 42, 83, 2, 84, 138, 69, 72, 187, 2, 65, 4, 134, 69, 72, 187,
2, 65, 8, 50, 68, 58, 83, 40, 4, 76, 79, 78, 71, 23, 84, 2, 29, 5, 79,
85, 66, 76, 69, 2, 11, 32, 2, 11, 83, 2, 11, 72, 2, 11, 65, 2, 159, 70,
68, 2, 17, 2, 32, 84, 2, 17, 2, 83, 72, 2, 147, 69, 69, 14, 36, 4, 73,
71, 78, 32, 255, 2, 85, 12, 54, 65, 72, 6, 67, 65, 78, 68, 82, 65, 167,
1, 86, 2, 11, 78, 2, 11, 85, 2, 17, 2, 83, 86, 2, 11, 65, 2, 135, 66, 82,
6, 36, 5, 66, 73, 78, 68, 85, 15, 32, 5, 11, 32, 2, 25, 4, 87, 73, 84,
72, 2, 17, 2, 32, 79, 2, 21, 3, 82, 78, 65, 2, 11, 77, 2, 11, 69, 2, 239,
38, 78, 4, 11, 73, 4, 18, 82, 19, 83, 2, 219, 33, 65, 2, 11, 65, 2, 11,
82, 2, 139, 64, 71, 2, 151, 4, 66, 20, 38, 76, 109, 5, 83, 73, 71, 78,
32, 2, 17, 2, 69, 78, 2, 11, 71, 2, 11, 84, 2, 11, 72, 2, 11, 32, 2, 11,
77, 2, 11, 65, 2, 135, 62, 82, 18, 86, 65, 26, 79, 2, 85, 16, 8, 82, 69,
86, 69, 82, 83, 69, 68, 146, 64, 69, 3, 73, 4, 182, 64, 73, 3, 85, 5,
159, 64, 69, 2, 183, 44, 32, 12, 72, 2, 66, 82, 16, 9, 82, 79, 32, 87,
73, 68, 84, 72, 32, 203, 1, 85, 2, 147, 2, 65, 8, 32, 2, 78, 79, 86, 83,
31, 74, 4, 26, 45, 73, 2, 78, 45, 2, 29, 5, 66, 82, 69, 65, 75, 2, 11,
32, 2, 11, 83, 2, 163, 1, 80, 2, 11, 74, 2, 11, 79, 2, 11, 73, 2, 11, 78,
2, 143, 5, 69, 2, 219, 61, 83, 2, 21, 3, 77, 79, 85, 2, 17, 2, 84, 72, 2,
11, 32, 2, 11, 70, 2, 11, 65, 2, 167, 38, 67, 242, 2, 168, 1, 10, 67, 79,
77, 66, 73, 78, 73, 78, 71, 32, 224, 18, 6, 78, 69, 85, 77, 69, 32, 181,
38, 17, 80, 82, 73, 90, 78, 65, 75, 32, 77, 79, 68, 73, 70, 73, 69, 82,
32, 128, 1, 144, 2, 17, 76, 79, 87, 69, 82, 32, 84, 79, 78, 65, 76, 32,
82, 65, 78, 71, 69, 88, 5, 77, 65, 82, 75, 32, 148, 3, 18, 65, 84, 84,
65, 67, 72, 73, 78, 71, 32, 86, 69, 82, 84, 73, 67, 65, 76, 233, 11, 17,
84, 79, 78, 65, 76, 32, 82, 65, 78, 71, 69, 32, 77, 65, 82, 75, 32, 2,
33, 6, 32, 73, 78, 68, 73, 67, 2, 11, 65, 2, 11, 84, 2, 11, 79, 2, 219,
56, 82, 118, 182, 2, 67, 142, 1, 68, 104, 8, 71, 79, 82, 65, 90, 68, 79,
32, 34, 78, 106, 75, 114, 79, 72, 2, 80, 79, 152, 2, 8, 77, 65, 76, 79,
32, 80, 79, 86, 100, 2, 82, 65, 50, 83, 186, 1, 84, 108, 7, 86, 89, 83,
79, 75, 79, 32, 234, 1, 90, 224, 10, 2, 76, 79, 224, 22, 4, 85, 68, 65,
82, 129, 6, 4, 66, 79, 82, 90, 6, 60, 6, 72, 65, 83, 72, 75, 65, 29, 5,
85, 82, 86, 69, 68, 5, 197, 47, 3, 32, 80, 79, 2, 17, 2, 32, 79, 2, 11,
77, 2, 235, 24, 69, 4, 240, 10, 13, 69, 77, 69, 83, 84, 86, 69, 78, 78,
89, 32, 90, 65, 217, 14, 6, 86, 79, 69, 84, 79, 67, 10, 30, 78, 89, 3,
86, 89, 83, 8, 29, 5, 73, 90, 75, 79, 32, 8, 164, 8, 8, 83, 32, 75, 82,
89, 90, 72, 69, 35, 79, 2, 167, 20, 79, 8, 56, 4, 82, 89, 90, 72, 150, 6,
65, 233, 39, 2, 85, 80, 5, 21, 3, 32, 79, 78, 2, 11, 32, 2, 203, 7, 76,
6, 220, 5, 3, 84, 83, 69, 200, 13, 5, 66, 76, 65, 67, 72, 131, 31, 78,
18, 22, 68, 131, 2, 86, 6, 60, 7, 67, 72, 65, 83, 72, 73, 69, 201, 22, 3,
86, 69, 82, 5, 17, 2, 32, 87, 2, 21, 3, 73, 84, 72, 2, 17, 2, 32, 86, 2,
29, 5, 69, 82, 84, 73, 67, 2, 17, 2, 65, 76, 2, 11, 32, 2, 11, 83, 2, 11,
84, 2, 11, 82, 2, 11, 79, 2, 131, 25, 75, 12, 29, 5, 89, 83, 72, 69, 32,
12, 22, 83, 251, 3, 79, 8, 154, 3, 32, 229, 2, 4, 84, 82, 65, 78, 4, 28,
2, 90, 83, 183, 5, 86, 2, 219, 37, 69, 10, 136, 1, 2, 75, 79, 16, 16, 84,
82, 65, 78, 78, 79, 32, 77, 65, 76, 79, 32, 80, 79, 86, 89, 236, 1, 5,
82, 69, 68, 78, 69, 231, 26, 79, 2, 239, 42, 66, 2, 11, 83, 2, 183, 22,
72, 10, 50, 79, 16, 5, 83, 65, 84, 65, 32, 139, 36, 73, 2, 187, 28, 67,
6, 158, 1, 79, 201, 24, 3, 83, 32, 75, 10, 24, 2, 83, 32, 95, 79, 6, 11,
75, 6, 44, 6, 72, 79, 75, 72, 76, 79, 247, 24, 82, 4, 11, 77, 4, 17, 2,
32, 79, 4, 11, 78, 4, 11, 32, 4, 18, 76, 31, 82, 2, 11, 69, 2, 179, 14,
70, 2, 11, 73, 2, 11, 71, 2, 139, 14, 72, 6, 18, 65, 31, 69, 2, 249, 25,
3, 68, 69, 82, 4, 22, 86, 239, 10, 76, 2, 199, 38, 79, 6, 60, 5, 77, 82,
65, 67, 72, 18, 83, 1, 4, 84, 82, 69, 83, 2, 155, 10, 78, 2, 17, 2, 86,
69, 2, 155, 6, 84, 232, 1, 128, 2, 2, 67, 72, 38, 68, 218, 1, 70, 28, 10,
71, 79, 76, 85, 66, 67, 72, 73, 75, 32, 158, 1, 75, 160, 2, 6, 77, 69,
67, 72, 73, 75, 184, 1, 2, 78, 69, 18, 79, 138, 2, 80, 146, 2, 82, 114,
83, 180, 20, 9, 86, 82, 65, 75, 72, 73, 89, 65, 32, 151, 2, 90, 4, 246,
11, 69, 209, 10, 2, 65, 83, 10, 74, 69, 98, 85, 16, 9, 86, 65, 32, 86,
32, 67, 72, 69, 76, 187, 27, 79, 4, 76, 2, 82, 66, 213, 2, 12, 77, 69,
83, 84, 86, 69, 78, 78, 89, 32, 75, 76, 2, 195, 34, 73, 2, 203, 34, 68,
2, 11, 78, 2, 231, 36, 85, 2, 11, 73, 2, 147, 34, 84, 10, 78, 84, 38, 83,
240, 3, 5, 77, 82, 65, 67, 72, 145, 14, 4, 66, 79, 82, 90, 4, 32, 3, 82,
69, 83, 251, 1, 73, 2, 21, 3, 86, 69, 84, 2, 231, 17, 76, 14, 76, 4, 72,
65, 77, 73, 18, 76, 40, 3, 79, 66, 89, 16, 2, 82, 89, 87, 85, 2, 219, 3,
76, 2, 11, 89, 2, 11, 85, 2, 151, 33, 67, 2, 223, 31, 76, 6, 28, 2, 85,
75, 219, 32, 90, 5, 21, 3, 32, 84, 73, 2, 11, 75, 2, 251, 15, 72, 2, 11,
70, 2, 11, 73, 2, 11, 83, 2, 215, 30, 77, 11, 11, 32, 8, 44, 7, 75, 76,
89, 85, 67, 72, 69, 83, 80, 6, 64, 9, 78, 69, 80, 79, 83, 84, 79, 89, 65,
14, 80, 163, 14, 86, 2, 39, 78, 2, 25, 4, 79, 86, 79, 68, 2, 143, 14, 78,
2, 223, 22, 77, 14, 40, 2, 66, 76, 41, 4, 83, 79, 75, 65, 2, 11, 65, 2,
11, 75, 2, 243, 30, 79, 13, 11, 32, 10, 30, 75, 142, 26, 84, 39, 83, 6,
104, 11, 76, 89, 85, 67, 72, 69, 86, 65, 89, 65, 32, 185, 25, 10, 82, 89,
85, 75, 79, 86, 65, 89, 65, 32, 4, 202, 16, 78, 251, 8, 83, 14, 58, 65,
88, 8, 69, 82, 69, 86, 79, 68, 75, 65, 27, 79, 6, 44, 3, 82, 65, 75, 222,
19, 76, 211, 5, 85, 2, 11, 76, 2, 11, 73, 2, 171, 28, 84, 5, 153, 15, 2,
32, 78, 4, 68, 5, 68, 67, 72, 65, 83, 245, 9, 7, 76, 75, 85, 76, 73, 90,
77, 2, 11, 72, 2, 219, 4, 73, 4, 64, 11, 69, 86, 69, 82, 83, 69, 68, 32,
67, 72, 69, 139, 26, 79, 2, 25, 4, 76, 89, 85, 83, 2, 215, 17, 84, 126,
96, 9, 75, 65, 77, 69, 89, 84, 83, 65, 32, 148, 2, 8, 76, 79, 90, 72, 73,
84, 73, 69, 119, 84, 22, 128, 1, 13, 68, 86, 79, 69, 67, 72, 69, 76, 78,
65, 89, 65, 32, 44, 7, 75, 76, 89, 85, 67, 72, 69, 74, 84, 218, 18, 77,
119, 83, 8, 218, 10, 75, 110, 78, 178, 8, 80, 75, 83, 6, 40, 5, 86, 65,
89, 65, 32, 243, 10, 78, 4, 178, 15, 84, 183, 4, 83, 4, 162, 15, 73, 147,
4, 82, 9, 11, 32, 6, 48, 2, 83, 32, 25, 6, 90, 65, 75, 82, 89, 84, 4,
166, 4, 75, 95, 90, 2, 11, 79, 2, 211, 22, 69, 96, 92, 4, 65, 84, 89, 65,
172, 4, 6, 79, 80, 73, 84, 83, 65, 189, 1, 5, 82, 69, 76, 65, 32, 23, 11,
32, 20, 76, 2, 83, 32, 236, 2, 9, 90, 65, 75, 82, 89, 84, 65, 89, 65,
159, 5, 78, 14, 160, 1, 14, 68, 86, 85, 77, 89, 65, 32, 90, 65, 80, 89,
65, 84, 89, 28, 7, 75, 82, 89, 90, 72, 69, 77, 24, 2, 82, 79, 17, 8, 90,
65, 80, 89, 65, 84, 79, 89, 2, 11, 77, 2, 215, 19, 73, 5, 189, 1, 2, 32,
73, 2, 203, 2, 71, 7, 21, 3, 32, 73, 32, 4, 54, 75, 37, 9, 80, 79, 68,
67, 72, 65, 83, 72, 73, 2, 11, 82, 2, 21, 3, 89, 90, 72, 2, 211, 1, 69,
5, 17, 2, 32, 83, 2, 17, 2, 32, 90, 2, 29, 5, 65, 80, 89, 65, 84, 2, 11,
79, 2, 199, 17, 89, 7, 11, 32, 4, 68, 6, 83, 32, 79, 67, 72, 75, 29, 7,
87, 73, 84, 72, 32, 83, 79, 2, 11, 79, 2, 215, 16, 77, 2, 45, 9, 82, 79,
67, 72, 89, 65, 32, 78, 79, 2, 11, 90, 2, 163, 7, 72, 68, 140, 1, 9, 68,
86, 79, 69, 67, 72, 69, 76, 78, 162, 1, 75, 78, 78, 174, 1, 71, 152, 3,
8, 77, 82, 65, 67, 72, 78, 79, 84, 42, 80, 75, 84, 10, 18, 79, 71, 65, 6,
64, 7, 80, 79, 86, 79, 68, 78, 65, 189, 5, 4, 75, 82, 89, 90, 4, 17, 2,
89, 65, 5, 17, 2, 32, 75, 2, 145, 5, 4, 76, 89, 85, 67, 26, 48, 6, 76,
89, 85, 67, 72, 69, 77, 2, 82, 89, 4, 22, 78, 203, 6, 80, 2, 157, 8, 9,
69, 80, 79, 83, 84, 79, 89, 65, 78, 22, 48, 7, 85, 75, 79, 86, 65, 89,
65, 195, 3, 90, 21, 11, 32, 18, 54, 71, 236, 2, 5, 84, 82, 89, 65, 83,
179, 2, 80, 14, 21, 3, 82, 79, 77, 14, 32, 4, 78, 65, 89, 65, 47, 79, 5,
237, 1, 7, 32, 87, 73, 84, 72, 32, 83, 10, 92, 10, 75, 82, 89, 90, 72,
69, 86, 65, 89, 65, 17, 9, 80, 79, 86, 79, 68, 78, 65, 89, 65, 5, 175, 2,
32, 7, 33, 6, 32, 87, 73, 84, 72, 32, 4, 24, 2, 68, 79, 23, 83, 2, 41, 2,
85, 66, 2, 21, 3, 73, 78, 71, 2, 133, 6, 6, 76, 69, 32, 90, 65, 80, 2,
175, 6, 75, 2, 237, 5, 3, 72, 69, 86, 2, 11, 73, 2, 11, 75, 2, 187, 5,
72, 6, 22, 79, 187, 3, 82, 4, 28, 2, 76, 85, 187, 1, 86, 2, 163, 1, 80,
8, 80, 5, 82, 89, 65, 83, 79, 153, 2, 10, 73, 75, 72, 65, 89, 65, 32, 80,
85, 84, 6, 62, 80, 44, 4, 83, 84, 82, 69, 173, 1, 4, 71, 76, 65, 83, 2,
17, 2, 79, 86, 2, 193, 1, 2, 79, 68, 2, 171, 1, 76, 16, 88, 12, 75, 76,
89, 85, 67, 72, 69, 86, 65, 89, 65, 32, 38, 77, 46, 80, 38, 84, 39, 83,
8, 34, 77, 46, 80, 38, 84, 39, 83, 2, 25, 4, 82, 65, 67, 72, 2, 247, 1,
78, 2, 11, 82, 2, 205, 1, 2, 79, 83, 2, 11, 82, 2, 11, 69, 2, 11, 83, 2,
157, 1, 4, 86, 69, 84, 76, 6, 30, 65, 121, 3, 77, 69, 89, 4, 32, 4, 78,
79, 90, 72, 31, 80, 2, 11, 69, 2, 151, 3, 75, 2, 17, 2, 89, 65, 2, 11,
84, 2, 11, 65, 2, 35, 89, 2, 11, 84, 2, 11, 83, 2, 183, 2, 65, 10, 108,
11, 68, 73, 82, 69, 67, 84, 73, 79, 78, 32, 70, 28, 3, 75, 82, 89, 28, 5,
76, 69, 86, 69, 76, 35, 82, 2, 11, 76, 2, 159, 1, 73, 2, 11, 90, 2, 143,
1, 72, 4, 11, 45, 4, 114, 50, 3, 51, 2, 11, 79, 2, 83, 71, 8, 26, 78, 34,
83, 15, 74, 4, 18, 66, 27, 74, 2, 11, 83, 2, 11, 80, 3, 0,
};
static const unsigned int dawg_pos_to_codepoint[] = {
8448, 129687, 983053, 983052, 180, 10655, 8301, 8299, 9190, 125185,
125197, 125214, 125208, 125204, 125187, 125201, 125216, 125213, 125200,
125211, 125209, 125189, 125217, 125207, 125186, 125205, 125215, 125184,
125191, 125188, 125198, 125202, 125199, 125210, 125190, 125194, 125206,
125192, 125212, 125193, 125195, 125196, 125203, 125256, 125219, 125231,
125248, 125242, 125238, 125221, 125235, 125250, 125247, 125234, 125245,
125243, 125223, 125251, 125241, 125220, 125239, 125249, 125218, 125225,
125222, 125232, 125236, 125233, 125244, 125224, 125228, 125240, 125226,
125246, 125227, 125229, 125230, 125237, 125257, 125254, 125278, 125279,
125259, 125258, 125255, 125252, 125253, 125269, 125268, 125271, 125270,
125267, 125266, 125264, 125273, 125265, 125272, 11237, 127903, 129657,
8449, 129489, 9772, 65852, 65853, 65854, 65855, 65848, 65851, 65849,
65850, 65847, 65792, 65793, 65806, 65815, 65842, 65824, 65833, 65812,
65839, 65803, 65821, 65830, 65811, 65838, 65802, 65820, 65829, 65807,
65816, 65843, 65825, 65834, 65805, 65814, 65841, 65823, 65832, 65804,
65813, 65840, 65822, 65831, 65810, 65837, 65801, 65819, 65828, 65809,
65836, 65800, 65818, 65827, 65808, 65835, 65799, 65817, 65826, 65794,
128673, 71455, 71453, 71454, 71442, 71450, 71446, 71429, 71492, 71491,
71444, 71443, 71490, 71489, 71436, 71428, 71494, 71438, 71426, 71493,
71440, 71427, 71448, 71432, 71435, 71488, 71447, 71445, 71449, 71434,
71425, 71424, 71431, 71430, 71441, 71433, 71437, 71439, 71484, 71485,
71467, 71486, 71487, 71456, 71457, 71465, 71466, 71463, 71460, 71461,
71458, 71459, 71462, 71464, 71483, 71482, 71477, 71476, 71479, 71478,
71475, 71474, 71472, 71481, 71473, 71480, 9992, 128747, 128748, 130042,
9200, 128874, 128822, 128823, 128837, 128776, 128777, 128774, 128775,
128773, 128811, 128859, 128826, 128829, 128855, 128769, 128875, 128876,
128830, 128834, 128835, 128836, 128783, 128857, 128848, 128846, 128844,
128805, 128800, 128803, 128804, 128798, 128869, 128870, 128871, 128872,
128873, 128787, 128865, 128866, 128864, 128880, 128794, 128841, 128883,
128882, 128854, 128878, 128796, 128797, 128801, 128810, 128851, 128784,
128785, 128786, 128824, 128881, 128789, 128879, 128782, 128843, 128858,
128856, 128868, 128867, 128863, 128768, 128833, 128818, 128816, 128817,
128799, 128819, 128820, 128821, 128827, 128828, 128877, 128792, 128793,
128788, 128806, 128813, 128825, 128850, 128860, 128861, 128814, 128807,
128812, 128802, 128862, 128781, 128839, 128795, 128852, 128847, 128831,
128832, 128840, 128809, 128849, 128845, 128778, 128815, 128779, 128780,
128790, 128791, 128808, 128772, 128842, 128853, 128771, 128770, 128838,
9879, 8501, 983054, 128126, 117837, 117836, 117844, 117845, 117842,
117843, 117839, 117838, 117841, 117840, 8780, 9006, 983203, 8776, 10863,
8778, 9095, 9941, 118479, 127994, 38, 127944, 128657, 10815, 82970,
82971, 82964, 82965, 82966, 82967, 82968, 82969, 82972, 82973, 82974,
82994, 82995, 82996, 82987, 82988, 82992, 82993, 82986, 82989, 82990,
82991, 82997, 82998, 82999, 83016, 83017, 83018, 83019, 83010, 83011,
83012, 83013, 83014, 83015, 83020, 83021, 83022, 83050, 83051, 83052,
83053, 83043, 83044, 83045, 83046, 83047, 83048, 83049, 83054, 82984,
82985, 82975, 82976, 82977, 82978, 82979, 82980, 82981, 82982, 82983,
82953, 82954, 82955, 82956, 82957, 82958, 82959, 82960, 82961, 82962,
82963, 82944, 82945, 82946, 82947, 82948, 82949, 82950, 82951, 82952,
83000, 83001, 83002, 83003, 83004, 83005, 83006, 83007, 83008, 83009,
83023, 83024, 83025, 83026, 83027, 83028, 83029, 83030, 83031, 83032,
83033, 83034, 83035, 83036, 83037, 83038, 83039, 83040, 83041, 83042,
83062, 83063, 83064, 83065, 83070, 83071, 83072, 83073, 83066, 83067,
83068, 83055, 83056, 83057, 83058, 83059, 83060, 83061, 83069, 83074,
83075, 83076, 83077, 83078, 83083, 83084, 83079, 83080, 83081, 83082,
83085, 83086, 83087, 83088, 83094, 83095, 83089, 83090, 83091, 83092,
83093, 83096, 83097, 83098, 83099, 83105, 83106, 83100, 83101, 83102,
83103, 83104, 83107, 83108, 83109, 83110, 83111, 83112, 83113, 83114,
83115, 83116, 83117, 83118, 83119, 83120, 83121, 83122, 83123, 83124,
83125, 83126, 83127, 83128, 83129, 83130, 83131, 83132, 83133, 83134,
83135, 83136, 83137, 83138, 83139, 83140, 83141, 83142, 83143, 83144,
83145, 83146, 83147, 83148, 83149, 83150, 83151, 83152, 83153, 83154,
83155, 83156, 83157, 83158, 83159, 83160, 83161, 83162, 83163, 83164,
83165, 83166, 83167, 83168, 83169, 83170, 83173, 83174, 83175, 83180,
83181, 83183, 83184, 83171, 83172, 83176, 83177, 83178, 83179, 83182,
83190, 83191, 83192, 83193, 83185, 83186, 83187, 83188, 83189, 83194,
83195, 83196, 83274, 83275, 83280, 83281, 83270, 83271, 83272, 83273,
83276, 83277, 83278, 83279, 83268, 83269, 83259, 83260, 83261, 83262,
83263, 83264, 83265, 83266, 83267, 83204, 83205, 83197, 83198, 83199,
83200, 83201, 83202, 83203, 83206, 83207, 83245, 83246, 83238, 83239,
83240, 83241, 83242, 83243, 83244, 83247, 83248, 83208, 83209, 83210,
83211, 83212, 83213, 83214, 83215, 83216, 83217, 83218, 83219, 83220,
83221, 83222, 83223, 83224, 83225, 83226, 83227, 83228, 83229, 83230,
83231, 83232, 83233, 83234, 83235, 83236, 83237, 83249, 83250, 83251,
83252, 83253, 83254, 83255, 83256, 83257, 83258, 83291, 83292, 83282,
83283, 83284, 83285, 83286, 83287, 83288, 83289, 83290, 83312, 83313,
83303, 83304, 83305, 83306, 83307, 83308, 83309, 83310, 83311, 83348,
83349, 83339, 83340, 83341, 83342, 83343, 83344, 83345, 83346, 83347,
83322, 83323, 83324, 83325, 83316, 83317, 83318, 83314, 83315, 83319,
83320, 83321, 83326, 83327, 83328, 83354, 83355, 83359, 83360, 83350,
83351, 83352, 83353, 83356, 83357, 83358, 83361, 83377, 83378, 83374,
83375, 83381, 83382, 83373, 83376, 83379, 83380, 83383, 83384, 83385,
83389, 83386, 83387, 83388, 83390, 83391, 83392, 83393, 83394, 83395,
83363, 83364, 83362, 83365, 83366, 83367, 83368, 83369, 83370, 83371,
83372, 83293, 83294, 83295, 83296, 83297, 83298, 83299, 83300, 83301,
83302, 83329, 83330, 83331, 83332, 83333, 83334, 83335, 83336, 83337,
83338, 83406, 83407, 83408, 83409, 83410, 83411, 83412, 83413, 83414,
83415, 83416, 83447, 83448, 83455, 83456, 83449, 83450, 83451, 83452,
83453, 83454, 83457, 83458, 83489, 83490, 83491, 83492, 83493, 83494,
83495, 83496, 83396, 83397, 83398, 83399, 83400, 83401, 83402, 83403,
83404, 83405, 83417, 83418, 83419, 83420, 83421, 83422, 83423, 83424,
83425, 83426, 83427, 83428, 83429, 83430, 83431, 83432, 83433, 83434,
83435, 83436, 83437, 83438, 83439, 83440, 83441, 83442, 83443, 83444,
83445, 83446, 83459, 83460, 83461, 83462, 83463, 83464, 83465, 83466,
83467, 83468, 83469, 83470, 83471, 83472, 83473, 83474, 83475, 83476,
83477, 83478, 83479, 83480, 83481, 83482, 83483, 83484, 83485, 83486,
83487, 83488, 83526, 83497, 83498, 83499, 83500, 83501, 83502, 83503,
83504, 83505, 83506, 83507, 83508, 83509, 83510, 83511, 83512, 83513,
83514, 83515, 83516, 83517, 83518, 83519, 83520, 83521, 83522, 83523,
83524, 83525, 129728, 8736, 10654, 10660, 128551, 8491, 128162, 128544,
128028, 117768, 128246, 11150, 11148, 11149, 11151, 11119, 8630, 10560,
8755, 128260, 10226, 8634, 10769, 9875, 10193, 9765, 9021, 9055, 9061,
9033, 9052, 9022, 9066, 9058, 9067, 9042, 9049, 9035, 9034, 9038, 9062,
9073, 9046, 9050, 9075, 9080, 9014, 9082, 9078, 9077, 9081, 9060, 9051,
9063, 9029, 9109, 9020, 9056, 9017, 9018, 9036, 9047, 9044, 9037, 9043,
9040, 9027, 9031, 9072, 9071, 9016, 9026, 9025, 9028, 9032, 9019, 9054,
9048, 9030, 9076, 9070, 9023, 9059, 9069, 9015, 9079, 9024, 9074, 9057,
9041, 9045, 9053, 9039, 9065, 9064, 9068, 39, 11236, 983195, 118461,
8773, 8786, 10864, 8774, 8784, 983196, 2183, 69328, 69372, 1548, 2277,
2280, 2276, 2279, 2278, 2281, 1615, 65144, 65145, 2302, 1612, 65138,
1549, 2299, 2300, 69370, 2206, 1643, 2274, 1771, 1770, 1565, 1757, 1614,
1630, 2293, 2292, 65142, 65143, 1611, 65136, 1538, 1645, 1748, 2207,
1621, 1620, 1616, 2294, 65146, 65147, 1613, 65140, 2258, 2255, 2254,
2257, 2236, 2244, 2235, 2237, 1593, 1886, 2227, 1696, 1887, 1885, 65226,
65227, 65225, 65228, 1575, 2165, 2176, 2173, 2161, 2174, 2171, 2167,
2177, 2169, 2166, 2168, 2178, 2164, 2160, 2162, 2175, 2172, 1571, 65156,
65155, 1573, 65160, 65159, 1651, 1650, 1908, 1907, 1570, 65154, 65153,
2163, 2170, 1649, 64337, 64336, 1609, 65264, 65263, 65166, 65165, 1749,
1576, 2230, 1878, 2208, 1874, 1875, 1872, 1876, 1877, 1873, 2209, 65168,
65169, 65167, 65170, 1664, 64347, 64348, 64346, 64349, 1659, 64339,
64340, 64338, 64341, 1583, 1882, 1774, 1679, 2222, 69314, 1881, 1674,
1675, 1680, 1673, 65194, 65193, 1676, 64389, 64388, 1590, 1787, 65214,
65215, 65213, 65216, 1677, 64387, 64386, 1672, 64393, 64392, 1646, 1697,
1647, 1668, 64371, 64372, 64370, 64373, 1678, 64391, 64390, 1740, 1911,
1910, 1909, 1599, 1598, 1597, 64509, 64510, 64508, 64511, 1601, 1699,
2212, 1698, 1889, 1701, 1888, 65234, 65235, 65233, 65236, 1711, 1716,
1714, 1712, 2224, 64403, 64404, 64402, 64405, 1594, 2243, 1788, 65230,
65231, 65229, 65232, 1715, 64407, 64408, 64406, 64409, 2248, 1581, 1916,
2186, 1903, 1906, 1902, 1880, 1669, 1666, 1879, 1665, 65186, 65187,
65185, 65188, 1569, 65152, 1607, 1729, 1730, 64423, 64424, 64422, 64425,
1791, 1728, 64421, 64420, 1726, 64427, 64428, 64426, 64429, 65258, 65259,
65257, 65260, 1652, 1653, 1656, 1654, 1580, 2210, 2246, 2245, 65182,
65183, 65181, 65184, 1688, 64395, 64394, 1603, 69316, 1919, 1710, 2228,
1708, 1707, 65242, 65243, 65241, 65244, 1568, 1705, 1892, 1596, 1891,
2189, 1595, 2242, 1890, 64399, 64400, 64398, 64401, 1733, 64481, 64480,
1737, 64483, 64482, 1582, 65190, 65191, 65189, 65192, 1604, 2214, 1718,
2247, 1717, 1720, 1719, 1898, 65246, 65247, 65245, 65248, 2221, 1605,
2215, 1894, 1893, 65250, 65251, 65249, 65252, 1564, 1709, 1713, 64411,
64412, 64410, 64413, 64468, 64469, 64467, 64470, 1667, 64375, 64376,
64374, 64377, 1606, 1722, 64415, 64414, 1896, 1897, 1725, 1895, 2185,
1724, 2191, 1721, 65254, 65255, 65253, 65256, 1662, 2231, 2238, 64343,
64344, 64342, 64345, 1702, 64367, 64368, 64366, 64369, 1602, 2213, 2229,
1703, 1704, 65238, 65239, 65237, 65240, 1585, 1905, 2233, 1682, 1685,
1883, 1899, 1687, 1775, 1900, 1689, 1684, 1686, 2218, 1683, 65198, 65197,
1681, 64397, 64396, 1723, 64417, 64418, 64416, 64419, 2220, 1589, 2223,
1694, 1693, 65210, 65211, 65209, 65212, 1587, 1690, 1918, 1904, 1691,
1692, 1901, 1884, 1917, 65202, 65203, 65201, 65204, 1588, 1786, 65206,
65207, 65205, 65208, 1648, 2225, 1706, 1591, 69315, 2211, 2188, 1695,
2187, 65218, 65219, 65217, 65220, 1670, 2241, 1727, 64379, 64380, 64378,
64381, 1671, 64383, 64384, 64382, 64385, 1578, 1577, 65172, 65171, 1731,
65176, 2232, 2239, 1661, 1660, 65174, 65175, 65173, 1663, 64355, 64356,
64354, 64357, 1584, 65196, 65195, 2182, 69318, 1579, 65178, 65179, 65177,
65180, 1657, 2240, 64359, 64360, 64358, 64361, 1658, 64351, 64352, 64350,
64353, 1735, 1655, 64477, 64472, 64471, 64488, 64489, 1739, 1700, 64363,
64364, 64362, 64365, 64479, 64478, 1608, 2219, 1743, 1913, 1912, 1572,
65158, 65157, 1738, 1732, 65262, 65261, 1610, 1746, 1915, 1914, 1747,
64433, 64432, 64431, 64430, 1574, 65162, 65163, 65161, 65164, 1742, 2216,
2234, 2217, 1745, 1741, 69319, 65266, 65267, 65265, 65268, 1736, 64476,
64475, 1734, 64474, 64473, 1592, 65222, 65223, 65221, 65224, 1586, 65200,
65199, 2226, 1744, 64485, 64486, 64484, 64487, 2297, 2295, 64888, 64887,
64886, 64950, 64699, 64554, 64964, 64885, 64698, 64553, 64787, 64759,
64788, 64760, 64465, 64973, 64842, 64839, 64466, 69331, 64841, 69330,
64840, 69329, 64845, 65015, 64656, 64605, 64828, 64829, 65010, 65011,
65023, 64962, 64669, 64518, 64672, 64738, 64926, 64670, 64519, 64622,
64521, 64668, 64517, 64620, 64671, 64520, 64737, 64621, 64619, 64618,
64623, 64522, 65021, 64878, 64939, 64693, 64547, 64880, 64879, 64694,
64548, 64803, 64775, 64692, 64546, 64695, 64549, 64812, 64784, 64804,
64776, 64452, 64893, 64892, 64704, 64559, 64636, 64561, 64702, 64557,
64961, 64705, 64560, 64703, 64558, 64637, 64562, 64889, 64891, 64890,
64701, 64556, 64789, 64761, 64700, 64555, 64790, 64762, 64462, 64463,
64460, 64461, 64859, 64858, 64682, 64536, 64795, 64767, 64959, 64681,
64535, 64796, 64768, 64915, 64916, 64728, 64594, 64595, 64596, 64727,
64593, 64729, 65019, 64451, 64934, 64958, 64679, 64533, 64857, 64856,
64935, 64933, 64680, 64534, 64797, 64769, 64798, 64770, 64643, 64573,
64640, 64567, 64708, 64568, 64641, 64711, 64571, 64747, 64710, 64570,
64709, 64569, 64963, 64955, 64951, 64642, 64712, 64572, 64748, 64644,
64574, 64974, 64538, 64799, 64771, 64683, 64537, 64684, 64539, 64800,
64772, 65272, 65271, 65274, 65273, 65270, 65269, 64646, 64579, 65276,
65275, 64898, 64949, 64896, 64897, 64714, 64576, 64717, 64899, 64900,
64954, 64956, 64940, 64713, 64575, 64902, 64901, 64715, 64577, 64904,
64903, 64941, 64645, 64716, 64578, 64749, 64647, 64580, 64585, 64648,
64905, 64906, 64907, 64719, 64582, 64910, 64911, 64953, 64720, 64583,
64909, 64914, 64908, 64960, 64718, 64581, 64945, 64649, 64721, 64584,
64586, 65012, 64918, 64917, 64947, 64723, 64588, 64726, 64751, 64952,
64957, 64921, 64920, 64919, 64967, 64722, 64587, 64923, 64922, 64652,
64725, 64590, 64750, 64654, 64591, 64653, 64651, 64724, 64589, 64650,
64655, 64592, 69336, 64895, 64948, 64894, 64946, 64707, 64564, 64638,
64565, 64706, 64563, 64639, 64566, 65009, 69332, 69333, 69334, 64843,
69335, 64833, 64835, 64836, 64837, 64834, 64969, 64459, 64971, 64970,
64832, 64968, 64847, 64456, 64457, 64458, 64912, 64454, 64455, 64913,
64453, 65014, 64604, 64869, 64868, 64937, 64689, 64544, 64965, 64870,
64691, 64545, 64801, 64773, 64690, 64811, 64783, 64802, 64774, 65013,
64975, 65008, 65017, 64464, 64838, 64972, 64844, 65018, 64860, 64686,
64541, 64821, 64817, 64744, 64862, 64861, 64685, 64540, 64820, 64936,
64966, 64687, 64542, 64822, 64864, 64863, 64865, 64867, 64866, 64688,
64543, 64743, 64791, 64763, 64810, 64782, 64792, 64764, 64606, 64609,
64755, 64607, 64610, 64756, 64611, 64608, 64754, 64818, 64746, 64872,
64871, 64938, 64806, 64814, 64778, 64824, 64873, 64805, 64813, 64777,
64823, 64875, 64874, 64877, 64876, 64808, 64816, 64780, 64745, 64793,
64765, 64807, 64815, 64779, 64825, 64809, 64781, 64794, 64766, 65022,
64846, 64882, 64881, 64883, 64884, 64819, 64551, 64826, 64785, 64757,
64696, 64550, 64786, 64758, 64851, 64850, 64849, 64674, 64524, 64677,
64740, 64930, 64852, 64929, 64675, 64525, 64928, 64848, 64927, 64673,
64523, 64932, 64853, 64855, 64854, 64931, 64626, 64676, 64526, 64739,
64628, 64527, 64627, 64625, 64624, 64629, 64528, 64603, 64529, 64634,
64531, 64632, 64678, 64530, 64741, 64633, 64631, 64630, 64635, 64532,
64742, 65016, 64661, 64601, 64616, 64515, 64491, 64490, 64493, 64492,
64503, 64504, 64502, 64667, 64736, 64664, 64513, 64663, 64512, 64665,
64614, 64666, 64514, 64735, 64615, 64499, 64498, 64495, 64494, 64617,
64516, 64501, 64500, 64613, 64612, 64497, 64496, 64942, 64731, 64598,
64734, 64753, 64660, 64658, 64943, 64730, 64597, 64732, 64599, 64925,
64924, 64944, 64659, 64733, 64600, 64752, 64657, 64662, 64602, 64506,
64507, 64505, 64697, 64552, 64827, 2204, 1619, 1624, 2303, 126492,
126494, 126493, 126495, 126644, 126638, 126641, 126647, 126648, 126646,
126632, 126645, 126630, 126650, 126626, 126636, 126625, 126640, 126643,
126633, 126631, 126651, 126637, 126635, 126649, 126627, 126642, 126639,
126629, 126489, 126467, 126518, 126517, 126516, 126510, 126513, 126503,
126500, 126519, 126506, 126498, 126508, 126497, 126512, 126505, 126523,
126509, 126507, 126514, 126511, 126521, 126612, 126606, 126609, 126615,
126592, 126607, 126599, 126596, 126616, 126614, 126600, 126613, 126598,
126618, 126594, 126604, 126593, 126608, 126611, 126601, 126619, 126605,
126603, 126617, 126595, 126610, 126597, 126475, 126704, 126705, 126588,
126590, 126585, 126582, 126568, 126581, 126580, 126574, 126577, 126567,
126564, 126583, 126570, 126562, 126572, 126561, 126576, 126569, 126586,
126587, 126573, 126578, 126575, 126484, 126478, 126481, 126557, 126559,
126553, 126548, 126542, 126545, 126551, 126530, 126537, 126535, 126555,
126541, 126539, 126546, 126543, 126472, 126488, 126486, 126485, 126464,
126479, 126487, 126474, 126470, 126490, 126466, 126476, 126465, 126480,
126483, 126473, 126471, 126491, 126477, 126482, 126469, 1541, 1536, 2290,
2289, 2288, 1642, 2199, 1550, 2192, 1769, 2193, 2184, 1544, 1629, 2296,
2301, 2298, 1772, 1623, 983633, 983635, 983640, 983634, 983638, 983636,
983639, 983637, 983641, 1563, 1617, 65148, 65149, 1554, 1555, 1552, 1537,
1539, 1540, 1790, 1789, 1553, 1551, 1556, 2249, 1560, 1761, 2250, 2272,
1558, 983202, 1751, 1750, 1753, 1752, 1762, 1764, 2273, 1756, 2261, 1755,
1557, 2200, 2260, 2266, 2268, 2267, 2269, 2252, 2271, 2270, 2291, 1767,
2251, 1768, 2264, 1760, 1759, 1559, 2253, 1754, 2263, 2262, 1766, 69317,
69371, 2265, 2202, 2201, 69375, 2203, 69373, 69374, 2259, 1773, 1763,
1562, 1561, 1765, 1622, 1618, 65150, 65151, 2256, 2205, 64444, 64435,
64434, 64441, 64440, 64439, 64438, 64446, 64445, 64437, 64436, 64449,
64448, 64443, 64442, 64450, 64447, 1758, 1600, 2179, 2180, 65137, 2181,
65139, 2285, 2282, 2286, 2283, 2287, 2284, 1566, 2275, 1644, 1627, 1626,
1628, 2190, 1631, 1567, 1625, 1545, 1546, 1542, 1543, 1637, 1636, 1639,
1638, 1635, 1634, 1632, 1641, 1633, 1640, 1375, 1370, 1359, 1337, 1349,
1362, 1347, 1353, 1342, 1361, 1360, 1356, 1333, 1335, 1336, 1346, 1331,
1355, 1345, 1364, 1343, 1363, 1354, 1351, 1357, 1329, 1358, 1352, 1340,
1366, 1341, 1339, 1330, 1348, 1350, 1338, 1334, 1344, 1332, 1365, 1373,
1372, 1371, 1395, 1401, 1390, 1409, 1408, 1404, 1381, 1383, 1384, 1394,
1379, 1403, 1393, 1412, 1391, 1411, 1402, 1399, 1405, 1376, 1407, 1385,
1377, 1406, 1400, 1397, 1416, 1410, 1388, 1414, 1389, 1387, 1378, 1396,
1398, 1386, 1382, 1392, 1380, 1413, 1415, 64279, 64277, 64275, 64276,
64278, 1369, 1418, 1423, 1417, 1374, 129201, 10549, 10548, 129200, 10550,
10551, 129968, 128667, 127912, 9800, 8978, 9738, 65948, 42, 8727, 8258,
128562, 118477, 9954, 11225, 128888, 8771, 8870, 128095, 9883, 128663,
127975, 128762, 8371, 127814, 68352, 68353, 68357, 68355, 68358, 68359,
68356, 68354, 68373, 68374, 68372, 68393, 68405, 68388, 68387, 68386,
68391, 68390, 68389, 68371, 68370, 68369, 68403, 68401, 68404, 68399,
68394, 68395, 68378, 68381, 68377, 68366, 68367, 68362, 68363, 68364,
68365, 68385, 68384, 68380, 68379, 68402, 68400, 68360, 68361, 68375,
68383, 68376, 68368, 68398, 68392, 68382, 68397, 68396, 68409, 129361,
8525, 1547, 129518, 9810, 129683, 128118, 128036, 127868, 128124, 128700,
128281, 128386, 11101, 11099, 983056, 10155, 128043, 129363, 127992,
129441, 129366, 129391, 128708, 7007, 7005, 7006, 6991, 6990, 6917, 6918,
6987, 6988, 6928, 6953, 6954, 6936, 6937, 6948, 6944, 6943, 6949, 6984,
6927, 6933, 6934, 6919, 6920, 6929, 6930, 6921, 6922, 6938, 6939, 6931,
6981, 6932, 6982, 6958, 6925, 6926, 6950, 6945, 6935, 6940, 6951, 6952,
6957, 6923, 6924, 6962, 6960, 6961, 6946, 6942, 6941, 6947, 6983, 6985,
6986, 6963, 6955, 6959, 6956, 7022, 7025, 7021, 7024, 7023, 7026, 7020,
7019, 7027, 7012, 7013, 7018, 7015, 7017, 7016, 7010, 7014, 7009, 7011,
7032, 7036, 7033, 7034, 7035, 7031, 7030, 7029, 7028, 7003, 7038, 7008,
7002, 7037, 7039, 6915, 6913, 6912, 6914, 6916, 6964, 6972, 6973, 6970,
6971, 6968, 6969, 6974, 6975, 6977, 6976, 6965, 6978, 6979, 6966, 6967,
6980, 7004, 6997, 6996, 6999, 6998, 6995, 6994, 6992, 7001, 6993, 7000,
127880, 10057, 9744, 128503, 128505, 128499, 128501, 11197, 9745, 9746,
128502, 128500, 10007, 129526, 129648, 42737, 42736, 42741, 42740, 42733,
42699, 42713, 42712, 42692, 42706, 42683, 42719, 42734, 42735, 42682,
42729, 42657, 42725, 42659, 42670, 42718, 42666, 42716, 42701, 42675,
42671, 42722, 42720, 42727, 42723, 42702, 42726, 42677, 42707, 42708,
42709, 42686, 42694, 42674, 42731, 42695, 42685, 42684, 42691, 42673,
42664, 42715, 42703, 92193, 92188, 92161, 92199, 92240, 92179, 92211,
92219, 92213, 92243, 92207, 92216, 92183, 92184, 92238, 92171, 983268,
92174, 92203, 92186, 92210, 92230, 92175, 92221, 92232, 92246, 92198,
92214, 92190, 92176, 92197, 92196, 92164, 92245, 92212, 92201, 92160,
92182, 92173, 92229, 92227, 92180, 92237, 92241, 92223, 92185, 92194,
92178, 92239, 92225, 92233, 92167, 92191, 92231, 92244, 92204, 92226,
92236, 92200, 92189, 92187, 92162, 92163, 92169, 92170, 92202, 92205,
92222, 92168, 92165, 92215, 92224, 92208, 92220, 92235, 92177, 92181,
92195, 92234, 92209, 92166, 92172, 92206, 92192, 92228, 92217, 92242,
92218, 92262, 92271, 92272, 92270, 92294, 92253, 92301, 92256, 92273,
92259, 92251, 92297, 92300, 92296, 92295, 92255, 92252, 92292, 92286,
92268, 92290, 92281, 92267, 92284, 92287, 92282, 92283, 92277, 92298,
983270, 92276, 92302, 92247, 92299, 92288, 92269, 92260, 92261, 983269,
92289, 92257, 92274, 92263, 92279, 92265, 92266, 92250, 92249, 92285,
92248, 92264, 92280, 92258, 92254, 92278, 92291, 92293, 92275, 92310,
92320, 92312, 92394, 92393, 92319, 92384, 92321, 92386, 92361, 92373,
92366, 92328, 92329, 92357, 92342, 92397, 92365, 92376, 92339, 92382,
92363, 92318, 92387, 92383, 92315, 92385, 92354, 92311, 92381, 92343,
92326, 92364, 92324, 92391, 92344, 92390, 92338, 92396, 92308, 92349,
92375, 92378, 92317, 92331, 92362, 92336, 92341, 92370, 92347, 92307,
92303, 92309, 92395, 92368, 92356, 92367, 92360, 92389, 92333, 92359,
92374, 92351, 92325, 92371, 92350, 92345, 92372, 92314, 92340, 92323,
92304, 92313, 92316, 92398, 92399, 92380, 92330, 983271, 92379, 92392,
92335, 92332, 92346, 92400, 92358, 92334, 92353, 92337, 92306, 92369,
92388, 92322, 92305, 92327, 92377, 92352, 92348, 92355, 92436, 92517,
92488, 92434, 92415, 92431, 92454, 92460, 92420, 92489, 92422, 92474,
92479, 92449, 92502, 92439, 92484, 92495, 92464, 92511, 92406, 92446,
92497, 92426, 92482, 92448, 92515, 92401, 92478, 92427, 92496, 92458,
92424, 92445, 92404, 92466, 92444, 92438, 92442, 92441, 92510, 92499,
92425, 92437, 92440, 92471, 92465, 92409, 92483, 92475, 92467, 92485,
92457, 92432, 92476, 92435, 92412, 92414, 92430, 92407, 92403, 92405,
92487, 92418, 92486, 92408, 92447, 92459, 92480, 92472, 92505, 92514,
92450, 92463, 92410, 92493, 92507, 92503, 92462, 92506, 92443, 92509,
92469, 92461, 92490, 92512, 92494, 92455, 92417, 92501, 92413, 92508,
92500, 92504, 92473, 92419, 92498, 92423, 92516, 92428, 92452, 92451,
92481, 92416, 92456, 92433, 92477, 92492, 92491, 92513, 92411, 92402,
92421, 92453, 92468, 92470, 92429, 92661, 92626, 92616, 92596, 92612,
92603, 92673, 92651, 92627, 92597, 92585, 92578, 92615, 92565, 92552,
92602, 92674, 92570, 92646, 92599, 92532, 92587, 92538, 92620, 92670,
92665, 92575, 92521, 92633, 92595, 92523, 92556, 92539, 92664, 92653,
92667, 92600, 92542, 92555, 92668, 92520, 92582, 92591, 92581, 92551,
92654, 92611, 92614, 92666, 92671, 92617, 92637, 92562, 92518, 92592,
92558, 92528, 92607, 92535, 92557, 92563, 92550, 92624, 983272, 92640,
92657, 92531, 92601, 92553, 92543, 92619, 92598, 92541, 92544, 92579,
92658, 92554, 92628, 92648, 92547, 92527, 92545, 92540, 92604, 92622,
92589, 92608, 92583, 92609, 92662, 92613, 92584, 92625, 92634, 92524,
92536, 92605, 92647, 92548, 92663, 92593, 92621, 92568, 92610, 92576,
92529, 92618, 92649, 92561, 92656, 92526, 92655, 92546, 92534, 92560,
92580, 92659, 92660, 92638, 92571, 92525, 92549, 92559, 92635, 92577,
92530, 92636, 92669, 92572, 92672, 92537, 92519, 92630, 92586, 92569,
92566, 92573, 92652, 92522, 92574, 92650, 92533, 92567, 92623, 92606,
92639, 92564, 92590, 92642, 92643, 92594, 92641, 92645, 92644, 92588,
92629, 92632, 92631, 92710, 92695, 92694, 92726, 92675, 92719, 92677,
92718, 92682, 92717, 92689, 92720, 92724, 92685, 92722, 92723, 92711,
92712, 92698, 92688, 92697, 92696, 92702, 92687, 92704, 92681, 92708,
92703, 92706, 92714, 92709, 92679, 92721, 92684, 92683, 92707, 92691,
92713, 92700, 92693, 92727, 92690, 92692, 92686, 92680, 92725, 92699,
92701, 92705, 92716, 92728, 92678, 92715, 92676, 42693, 42698, 42711,
42696, 42667, 42717, 42704, 42661, 42721, 42669, 42668, 42705, 42700,
42680, 42678, 42710, 42688, 42681, 42732, 42676, 42679, 42730, 42728,
42672, 42662, 42724, 42687, 42689, 42690, 42697, 42714, 42660, 42656,
42665, 42663, 42658, 42738, 42742, 42739, 42743, 127974, 128183, 128180,
128182, 128181, 127820, 129685, 128202, 129532, 128136, 129530, 127936,
92916, 92912, 92915, 92913, 92914, 92887, 92894, 92908, 92880, 92907,
92893, 92886, 92888, 92881, 92906, 92896, 92891, 92902, 92900, 92885,
92890, 92884, 92904, 92905, 92899, 92889, 92897, 92892, 92895, 92882,
92898, 92883, 92901, 92903, 92909, 92917, 9918, 129415, 7152, 7153, 7124,
7108, 7114, 7130, 7139, 7127, 7138, 7133, 7136, 7113, 7111, 7117, 7119,
7107, 7135, 7125, 7112, 7123, 7129, 7116, 7132, 7105, 7126, 7128, 7110,
7109, 7137, 7121, 7118, 7106, 7120, 7134, 7122, 7115, 7131, 7104, 7140,
7141, 7154, 7155, 7167, 7165, 7166, 7164, 7142, 7150, 7151, 7144, 7147,
7149, 7143, 7145, 7146, 7148, 128704, 128705, 128267, 127900, 127901,
9835, 9836, 129492, 128059, 127958, 128147, 129451, 129752, 127866,
129714, 983055, 128276, 129745, 128277, 9086, 128718, 118478, 2557, 2432,
2519, 2548, 2552, 2551, 2550, 2549, 2553, 2454, 2510, 983661, 2453, 2480,
2545, 2544, 2525, 2524, 2556, 2443, 2528, 2444, 2529, 2527, 2479, 2437,
2438, 2448, 2452, 2466, 2465, 2471, 2470, 2464, 2463, 2469, 2468, 2441,
2442, 2439, 2440, 2457, 2467, 2462, 2472, 2486, 2487, 2488, 2477, 2476,
2459, 2458, 2456, 2455, 2461, 2460, 2475, 2474, 2489, 2482, 2478, 2447,
2451, 2547, 2546, 983651, 983650, 983652, 2558, 2433, 2492, 2493, 2434,
2509, 2435, 2554, 2494, 2504, 2508, 2497, 2498, 2499, 2500, 2530, 2531,
2495, 2496, 2503, 2507, 2539, 2538, 2541, 2540, 2537, 2536, 2534, 2543,
2535, 2542, 2555, 11102, 127857, 9004, 9187, 93856, 93880, 93858, 93864,
93873, 93874, 93859, 93861, 93869, 93868, 93870, 93876, 93875, 93867,
93862, 93865, 93877, 93857, 93879, 93860, 93866, 93871, 93872, 93878,
93863, 93883, 93907, 93885, 93891, 93900, 93901, 93886, 93888, 93896,
93895, 93897, 93903, 93902, 93894, 93889, 93892, 93904, 93884, 93906,
93887, 93893, 93898, 93899, 93905, 93890, 8812, 8502, 8757, 129475,
128719, 72710, 72711, 72712, 72746, 72704, 72705, 72715, 72717, 72731,
72730, 72736, 72735, 72729, 72728, 72734, 72733, 72708, 72709, 72706,
72707, 72722, 72732, 72727, 72737, 72747, 72748, 72749, 72741, 72740,
72724, 72723, 72721, 72720, 72726, 72725, 72719, 72718, 72739, 72738,
72750, 72745, 72742, 72744, 72743, 72714, 72716, 72801, 72810, 72806,
72797, 72807, 72798, 72802, 72811, 72800, 72809, 72799, 72808, 72796,
72805, 72804, 72795, 72803, 72794, 72764, 72768, 72765, 72767, 72766,
72756, 72757, 72758, 72751, 72761, 72763, 72754, 72755, 72752, 72753,
72760, 72762, 72770, 72769, 72789, 72788, 72791, 72790, 72787, 72786,
72784, 72793, 72785, 72792, 72771, 72772, 72773, 72812, 128692, 128690,
10745, 10744, 129506, 127921, 127874, 128038, 8383, 129766, 9763, 128089,
129452, 9679, 9864, 10733, 9865, 9210, 11176, 11177, 11178, 11179, 11180,
11182, 11181, 11183, 9960, 10028, 129623, 9821, 129554, 129596, 129609,
129612, 129622, 9818, 129551, 129593, 9822, 129543, 129564, 129585,
129597, 129606, 129555, 129619, 129617, 129618, 9823, 129556, 129598,
9819, 129552, 129594, 9820, 129553, 129595, 129575, 129572, 129576,
129577, 129573, 129574, 9827, 9670, 11201, 10070, 10730, 11230, 9830,
128419, 128899, 9196, 9662, 9660, 11167, 127778, 9922, 9923, 10047, 9873,
10022, 128447, 128420, 9829, 11042, 128426, 11052, 10711, 11044, 117867,
117870, 117869, 117868, 11035, 9194, 9198, 128896, 9668, 9666, 9664,
11164, 8268, 9944, 128412, 9754, 9699, 9698, 10731, 9207, 11206, 11045,
9204, 11207, 11047, 9205, 11208, 9206, 11205, 128921, 128927, 9726, 9724,
9912, 117871, 10002, 128392, 9648, 11039, 127986, 118451, 128413, 9755,
9193, 9197, 9654, 9199, 128898, 11091, 9658, 9656, 10145, 10148, 11166,
8269, 127990, 9644, 11049, 11050, 11089, 9642, 129997, 9787, 9632, 11200,
9209, 128306, 9728, 128369, 9927, 9984, 128900, 128909, 9986, 9751, 9824,
9733, 128919, 128925, 128908, 9951, 128383, 9742, 9942, 128418, 128897,
9195, 9652, 9650, 9700, 9701, 11165, 9851, 9646, 11054, 128920, 128926,
11037, 11204, 10707, 10067, 8493, 8460, 8465, 8476, 8488, 10164, 10166,
10165, 9250, 118018, 118039, 118128, 118187, 118218, 118159, 118054,
118112, 118234, 118084, 118202, 118143, 118031, 118062, 118120, 118240,
118179, 118090, 118210, 118151, 118047, 118104, 118226, 118165, 118076,
118194, 118135, 118021, 118035, 118066, 118124, 118243, 118183, 118093,
118214, 118155, 118050, 118108, 118230, 118168, 118080, 118198, 118139,
118028, 118058, 118116, 118237, 118175, 118087, 118206, 118147, 118043,
118100, 118222, 118162, 118072, 118190, 118131, 118029, 118060, 118118,
118177, 118208, 118149, 118045, 118102, 118224, 118023, 118037, 118068,
118126, 118244, 118185, 118095, 118216, 118157, 118052, 118110, 118232,
118170, 118082, 118200, 118141, 118074, 118192, 118133, 118020, 118033,
118064, 118122, 118242, 118181, 118092, 118212, 118153, 118048, 118106,
118228, 118167, 118078, 118196, 118137, 118026, 118056, 118114, 118235,
118173, 118085, 118204, 118145, 118041, 118098, 118220, 118160, 118070,
118188, 118129, 118034, 118065, 118123, 118182, 118213, 118154, 118049,
118107, 118229, 118079, 118197, 118138, 118017, 118024, 118038, 118069,
118127, 118245, 118186, 118096, 118217, 118158, 118053, 118111, 118233,
118171, 118083, 118201, 118142, 118030, 118061, 118119, 118239, 118178,
118089, 118209, 118150, 118046, 118103, 118225, 118164, 118075, 118193,
118134, 118027, 118057, 118115, 118236, 118174, 118086, 118205, 118146,
118042, 118099, 118221, 118161, 118071, 118189, 118130, 118025, 118055,
118113, 118172, 118203, 118144, 118040, 118097, 118219, 118016, 118022,
118036, 118067, 118125, 118184, 118094, 118215, 118156, 118051, 118109,
118231, 118169, 118081, 118199, 118140, 118059, 118117, 118238, 118176,
118088, 118207, 118148, 118044, 118101, 118223, 118163, 118073, 118191,
118132, 118019, 118105, 118227, 118166, 118032, 118063, 118121, 118241,
118180, 118091, 118211, 118152, 118077, 118195, 118136, 129792, 129794,
129798, 129806, 129821, 129836, 129813, 129844, 129829, 129802, 129817,
129848, 129832, 129810, 129840, 129825, 129796, 129804, 129819, 129850,
129834, 129842, 129827, 129800, 129815, 129846, 129831, 129808, 129838,
129823, 129793, 129801, 129816, 129847, 129797, 129805, 129820, 129851,
129835, 129812, 129843, 129828, 129809, 129839, 129824, 129795, 129803,
129818, 129849, 129833, 129811, 129841, 129826, 129799, 129814, 129845,
129830, 129807, 129837, 129822, 127804, 128033, 128216, 128153, 129744,
128939, 128951, 128957, 128945, 128902, 128912, 128932, 128366, 128278,
128209, 128218, 129667, 12731, 12727, 12726, 12724, 12725, 12570, 12574,
12718, 12576, 12719, 12578, 12580, 12713, 12735, 12720, 12584, 12715,
12572, 12579, 12581, 12709, 12708, 12573, 12575, 12582, 12557, 12728,
12588, 12707, 12732, 12583, 12714, 12723, 12589, 12716, 12712, 12585,
12555, 12587, 12717, 12591, 12571, 12722, 12711, 12590, 12734, 12721,
12710, 12577, 12567, 12563, 12705, 12730, 12558, 12733, 12568, 12564,
12556, 12729, 12569, 12565, 12549, 12704, 12560, 12706, 12553, 12552,
12559, 12551, 12550, 12561, 12566, 12554, 12586, 12562, 118257, 118258,
118259, 118260, 117854, 11867, 117853, 118253, 118255, 11868, 117855,
118249, 118251, 118247, 11211, 8993, 130029, 8990, 8973, 11812, 8991,
8972, 11813, 130030, 9141, 9142, 10555, 9183, 9181, 130026, 130018, 9185,
127870, 128144, 127893, 128335, 129379, 127923, 8904, 10705, 10706,
127993, 118282, 117792, 117791, 118281, 9574, 9559, 9556, 9577, 9565,
9562, 9553, 9580, 9571, 9568, 9552, 9511, 9490, 9503, 9486, 9537, 9520,
9513, 9489, 9505, 9485, 9543, 9519, 9558, 9555, 9573, 9557, 9554, 9572,
9592, 9598, 9593, 9599, 9499, 9531, 9495, 9475, 9547, 9515, 9507, 9595,
9523, 9491, 9487, 9551, 9549, 9483, 9481, 9479, 9477, 9473, 9594, 9541,
9525, 9517, 9533, 9530, 9522, 9546, 9539, 9582, 9581, 9583, 9584, 130010,
130014, 129954, 129958, 130003, 129959, 129964, 129965, 129955, 130000,
129952, 129956, 129963, 129960, 129953, 129961, 129957, 129962, 130007,
130005, 130004, 130012, 9586, 130008, 130011, 130002, 130015, 130006,
9585, 130009, 130001, 130013, 9587, 129966, 9591, 9516, 9488, 9484, 9550,
9548, 9472, 117787, 117788, 129967, 9588, 9596, 9482, 9480, 9478, 9476,
117789, 9589, 9597, 9524, 9496, 9492, 9474, 118297, 118295, 118296,
118294, 9532, 9508, 9500, 117790, 9590, 9542, 9526, 9518, 9534, 9529,
9521, 9545, 9540, 9536, 9510, 9498, 9502, 9494, 9528, 9544, 9514, 9497,
9506, 9493, 9527, 9564, 9561, 9576, 9563, 9560, 9575, 9570, 9567, 9579,
9538, 9512, 9504, 9535, 9509, 9501, 9569, 9566, 9578, 129354, 983263,
128163, 128102, 128713, 128023, 129460, 69649, 69685, 69749, 69745,
69746, 69687, 69686, 69637, 69638, 69648, 69650, 69664, 69663, 69669,
69668, 69662, 69661, 69667, 69666, 69643, 69644, 69645, 69646, 69679,
69641, 69642, 69639, 69640, 69684, 69678, 69655, 69665, 69660, 69670,
69680, 69681, 69682, 69674, 69673, 69657, 69656, 69654, 69653, 69659,
69658, 69652, 69651, 69672, 69671, 69683, 69675, 69677, 69676, 69647,
69721, 69730, 69726, 69717, 69727, 69718, 69722, 69731, 69720, 69729,
69719, 69728, 69716, 69725, 69724, 69715, 69723, 69714, 69732, 69733,
69759, 69709, 69707, 69706, 69705, 69708, 69632, 69744, 69635, 69634,
69636, 69633, 69700, 69747, 69748, 69689, 69688, 69699, 69701, 69692,
69693, 69694, 69695, 69696, 69697, 69690, 69691, 69698, 69702, 69704,
69703, 69739, 69738, 69741, 69740, 69737, 69736, 69734, 69743, 69735,
69742, 10241, 10243, 10247, 10255, 10271, 10303, 10367, 10495, 10431,
10335, 10463, 10399, 10287, 10351, 10479, 10415, 10319, 10447, 10383,
10263, 10295, 10359, 10487, 10423, 10327, 10455, 10391, 10279, 10343,
10471, 10407, 10311, 10439, 10375, 10251, 10267, 10299, 10363, 10491,
10427, 10331, 10459, 10395, 10283, 10347, 10475, 10411, 10315, 10443,
10379, 10259, 10291, 10355, 10483, 10419, 10323, 10451, 10387, 10275,
10339, 10467, 10403, 10307, 10435, 10371, 10245, 10253, 10269, 10301,
10365, 10493, 10429, 10333, 10461, 10397, 10285, 10349, 10477, 10413,
10317, 10445, 10381, 10261, 10293, 10357, 10485, 10421, 10325, 10453,
10389, 10277, 10341, 10469, 10405, 10309, 10437, 10373, 10249, 10265,
10297, 10361, 10489, 10425, 10329, 10457, 10393, 10281, 10345, 10473,
10409, 10313, 10441, 10377, 10257, 10289, 10353, 10481, 10417, 10321,
10449, 10385, 10273, 10337, 10465, 10401, 10305, 10433, 10369, 10242,
10246, 10254, 10270, 10302, 10366, 10494, 10430, 10334, 10462, 10398,
10286, 10350, 10478, 10414, 10318, 10446, 10382, 10262, 10294, 10358,
10486, 10422, 10326, 10454, 10390, 10278, 10342, 10470, 10406, 10310,
10438, 10374, 10250, 10266, 10298, 10362, 10490, 10426, 10330, 10458,
10394, 10282, 10346, 10474, 10410, 10314, 10442, 10378, 10258, 10290,
10354, 10482, 10418, 10322, 10450, 10386, 10274, 10338, 10466, 10402,
10306, 10434, 10370, 10244, 10252, 10268, 10300, 10364, 10492, 10428,
10332, 10460, 10396, 10284, 10348, 10476, 10412, 10316, 10444, 10380,
10260, 10292, 10356, 10484, 10420, 10324, 10452, 10388, 10276, 10340,
10468, 10404, 10308, 10436, 10372, 10248, 10264, 10296, 10360, 10488,
10424, 10328, 10456, 10392, 10280, 10344, 10472, 10408, 10312, 10440,
10376, 10256, 10288, 10352, 10480, 10416, 10320, 10448, 10384, 10272,
10336, 10464, 10400, 10304, 10432, 10368, 10240, 129504, 983125, 129329,
127838, 728, 127753, 128112, 128188, 129650, 129521, 9099, 166, 128148,
129382, 129294, 129529, 129483, 129767, 128027, 6663, 6662, 6659, 6658,
6671, 6670, 6667, 6666, 6661, 6668, 6665, 6657, 6678, 6669, 6656, 6674,
6660, 6673, 6676, 6664, 6675, 6672, 6677, 6683, 6681, 6679, 6682, 6680,
6687, 6686, 5957, 5960, 5962, 5959, 5956, 5969, 5955, 5966, 5963, 5961,
5965, 5968, 5958, 5967, 5964, 5952, 5953, 5954, 5970, 5971, 8226, 8729,
128363, 128364, 9678, 128652, 128101, 128100, 128655, 129480, 129419,
127959, 127791, 129699, 118939, 118940, 118944, 118943, 118941, 118942,
118938, 118945, 118882, 118876, 118824, 118835, 118797, 118866, 118957,
118801, 118802, 118865, 118818, 118916, 118819, 118917, 118899, 118935,
119018, 119022, 119021, 119020, 119023, 119019, 119017, 118986, 118984,
118985, 118843, 118887, 118808, 118870, 119003, 119002, 119004, 119005,
118937, 118991, 118995, 118990, 118992, 118994, 118993, 118930, 118933,
118931, 118932, 119014, 118918, 118912, 119015, 118785, 118831, 118907,
118966, 118900, 118880, 118798, 118888, 118884, 118869, 118960, 118959,
118958, 118836, 118969, 118977, 118978, 118971, 118976, 118975, 118973,
118970, 118987, 118979, 118980, 118972, 118983, 983278, 118982, 118974,
118988, 118981, 119000, 119001, 118929, 118928, 118806, 119029, 118927,
118898, 118964, 118965, 118853, 118968, 118837, 118967, 118936, 118956,
118810, 118854, 118847, 118839, 118906, 118791, 118800, 119024, 119026,
118862, 118812, 119025, 119027, 118863, 118811, 118820, 119028, 118911,
118842, 118850, 118921, 118858, 118913, 118914, 118915, 118834, 118860,
118868, 118796, 118881, 118922, 118926, 118925, 118924, 118923, 118830,
118877, 118949, 118947, 118948, 118963, 118955, 118962, 118946, 118961,
118953, 118952, 118951, 118950, 118954, 118871, 118805, 118855, 118828,
118901, 118787, 118788, 118856, 118816, 118875, 118845, 118879, 118793,
118846, 118878, 118814, 118822, 118873, 118859, 118857, 118849, 118840,
118861, 118786, 118895, 118841, 118874, 118892, 118897, 118807, 118784,
118821, 118844, 118825, 118889, 119010, 119012, 119013, 119011, 119006,
119008, 119009, 119007, 118910, 118815, 118852, 119016, 118826, 118885,
118827, 118803, 118886, 118792, 118813, 118920, 118799, 118833, 118829,
118904, 118902, 118903, 118905, 118804, 118934, 118919, 118832, 118893,
118838, 118851, 118883, 118894, 118891, 118896, 118823, 118789, 118790,
118872, 118817, 118809, 118908, 118909, 118996, 118998, 118997, 118999,
118989, 118794, 118795, 118867, 118864, 118848, 118890, 983262, 983126,
983057, 9764, 8454, 129305, 128197, 128247, 128248, 127957, 983098, 5130,
5131, 5122, 6322, 5148, 5551, 5310, 5382, 5166, 6321, 5759, 5559, 5556,
5557, 5558, 5567, 5564, 5565, 5566, 5563, 5560, 5561, 5562, 5555, 5552,
5553, 5554, 5384, 5439, 6387, 6388, 5281, 5264, 6382, 6389, 5203, 5674,
5675, 5677, 5676, 5673, 5672, 5706, 5707, 5709, 5708, 5705, 5704, 5204,
5574, 5575, 5577, 5576, 5573, 5572, 6384, 6381, 5620, 6383, 5617, 5618,
5619, 5616, 5615, 5195, 5592, 5593, 5595, 5594, 5591, 5590, 5174, 5175,
5129, 5703, 5662, 5663, 5665, 5664, 5661, 5660, 5655, 5656, 6386, 5659,
5657, 5654, 5652, 5633, 5629, 5630, 5632, 5631, 5628, 5627, 5623, 5624,
5626, 5625, 5622, 5621, 5636, 5637, 5639, 5329, 5638, 5635, 5634, 5722,
5718, 5719, 5721, 5720, 5717, 5716, 5712, 5713, 5715, 5714, 5711, 5710,
5614, 5610, 5611, 5613, 5612, 5609, 5608, 5702, 5698, 5699, 5701, 5700,
5697, 5696, 5686, 5687, 5689, 5688, 5685, 5684, 5692, 5693, 5695, 5694,
5691, 5690, 5737, 5738, 5740, 5739, 5736, 5735, 5604, 5605, 5607, 5606,
5603, 5602, 5598, 5599, 5601, 5600, 5597, 5596, 5725, 5726, 5728, 5727,
5724, 5723, 5680, 5681, 5683, 5682, 5679, 5678, 5668, 5669, 5671, 5670,
5667, 5666, 5731, 5732, 5734, 5733, 5730, 5729, 5642, 5643, 5645, 5644,
5641, 5640, 5580, 5581, 5583, 5582, 5579, 5578, 5586, 5587, 5589, 5588,
5585, 5584, 5648, 5649, 5651, 5650, 5647, 5646, 5128, 5265, 5258, 5276,
5278, 5272, 5274, 5268, 5270, 5266, 5741, 5261, 5262, 5259, 5260, 5257,
5121, 6364, 5163, 5469, 5465, 5466, 5460, 5461, 5158, 5157, 5162, 5155,
5156, 6367, 6366, 5160, 5152, 5151, 5153, 5154, 5161, 5159, 5462, 5742,
5463, 5464, 5467, 5459, 5120, 5501, 5123, 5124, 5164, 5251, 5252, 5246,
5248, 6329, 5242, 5244, 5238, 5240, 5236, 5234, 5235, 5228, 6328, 5231,
5232, 5229, 5230, 5227, 5354, 5542, 5540, 5541, 5538, 5539, 5536, 5537,
5338, 5339, 5332, 6333, 5350, 5352, 5346, 5348, 5342, 5344, 5340, 5335,
5336, 5333, 5334, 5331, 5307, 5283, 5356, 5458, 5287, 5288, 5385, 5290,
5291, 5284, 6330, 5302, 5304, 5298, 5300, 5294, 5296, 5292, 5285, 5286,
5309, 5328, 5473, 5475, 5471, 5319, 5391, 5388, 5389, 5386, 5390, 5380,
5387, 5142, 5147, 5280, 5250, 5306, 5327, 5221, 5437, 72372, 72373,
72370, 72371, 72368, 72369, 72378, 72379, 72376, 72377, 72374, 72375,
5320, 5313, 6332, 5525, 5523, 5524, 5518, 5744, 5521, 5522, 5519, 5520,
5526, 5749, 5750, 5747, 5748, 5745, 5746, 5499, 5497, 5498, 5495, 5496,
5493, 5494, 5492, 5500, 5316, 5317, 6331, 5323, 5325, 6346, 6348, 6342,
6344, 5321, 5314, 5315, 5312, 5330, 5509, 5507, 5508, 5502, 5743, 5505,
5506, 5503, 5504, 5125, 6361, 6347, 6349, 6343, 6345, 6362, 6363, 6359,
6358, 6360, 6356, 6357, 5165, 5126, 6320, 5193, 5184, 5186, 6326, 5188,
5190, 5180, 5182, 5178, 5176, 5177, 5168, 6325, 5171, 5172, 6324, 5169,
5170, 5167, 5456, 6368, 5443, 6355, 5454, 6353, 6354, 6351, 6352, 6350,
5451, 5452, 5445, 6341, 5448, 5449, 5446, 5447, 5442, 5381, 5364, 6335,
5570, 6380, 5571, 5568, 5569, 5653, 6385, 5658, 5529, 6379, 6378, 5530,
5527, 5528, 5441, 5282, 5311, 5365, 5358, 5413, 5405, 5407, 6338, 5409,
5411, 5401, 5403, 5399, 5395, 5396, 6336, 5397, 5398, 6337, 5393, 5394,
5392, 5361, 5256, 5253, 5254, 5255, 5362, 6334, 5383, 5376, 5378, 5372,
5374, 5368, 5370, 5366, 72383, 72380, 72381, 72382, 5359, 5360, 5357,
5222, 5482, 5550, 5548, 5549, 5546, 5547, 5544, 5545, 5543, 6372, 5480,
6371, 5478, 5479, 5476, 5477, 5472, 5474, 5470, 5512, 6377, 6376, 5513,
5510, 5511, 5487, 5486, 6375, 5485, 6374, 6373, 5483, 5484, 5226, 5223,
5224, 5225, 5205, 5206, 5197, 6327, 5217, 5219, 5213, 5215, 5209, 5211,
5207, 5491, 5488, 5489, 5490, 5200, 5201, 5198, 5199, 5196, 5132, 5355,
5351, 5353, 5347, 5349, 5343, 5345, 5341, 5453, 6370, 5450, 6369, 5444,
5308, 5303, 5305, 5299, 5301, 5295, 5297, 5293, 5194, 5189, 5191, 5185,
5187, 5181, 5183, 5179, 5440, 5434, 5436, 5430, 5432, 5426, 5428, 5424,
5324, 5326, 5322, 5457, 5455, 5517, 5514, 5515, 5516, 5410, 5412, 5406,
5408, 5402, 5404, 5400, 5377, 5379, 5373, 5375, 5369, 5371, 5367, 5277,
5279, 5273, 5275, 5269, 5271, 5267, 5247, 5249, 5243, 5245, 5239, 5241,
5237, 5481, 5218, 5220, 5214, 5216, 5210, 5212, 5208, 5468, 5144, 5146,
5139, 5141, 5135, 5137, 5133, 6365, 5138, 5140, 5535, 5756, 5757, 5754,
5755, 5752, 5753, 5751, 5534, 5531, 5532, 5533, 5758, 5143, 5145, 6323,
5134, 5136, 5438, 5192, 5173, 5263, 5233, 5337, 5289, 5318, 5363, 5202,
5420, 5127, 5149, 5421, 5422, 5415, 6340, 5418, 5419, 6339, 5433, 5435,
5429, 5431, 5425, 5427, 5423, 5416, 5417, 5414, 5150, 983097, 983171,
917631, 128473, 9803, 128367, 127852, 129387, 128758, 11839, 9809,
128199, 128450, 128451, 8248, 8257, 8453, 66225, 66246, 66211, 66214,
66254, 66218, 66250, 66251, 66252, 66253, 66229, 66238, 66244, 66227,
66224, 66222, 66223, 66242, 66243, 66232, 66221, 66247, 66230, 66226,
66239, 66212, 66248, 66256, 66235, 66208, 66215, 66210, 66220, 66234,
66255, 66240, 66241, 66236, 66237, 66231, 66209, 66213, 66249, 66233,
66245, 66217, 66219, 66216, 66228, 127904, 711, 127887, 129690, 983073,
129365, 9936, 128008, 128049, 128569, 128572, 66888, 66864, 66912, 66882,
66873, 66902, 66889, 66890, 66911, 66891, 66895, 66901, 66881, 66867,
66870, 66868, 66904, 66866, 66876, 66910, 66879, 66883, 66897, 66915,
66884, 66878, 66885, 66914, 66903, 66877, 66896, 66909, 66906, 66908,
66899, 66872, 66913, 66874, 66871, 66875, 66869, 66893, 66887, 66892,
66907, 66900, 66894, 66905, 66880, 66898, 66865, 66886, 66927, 9761,
127797, 9963, 8373, 184, 65102, 65098, 8452, 162, 128328, 9907, 9939,
129681, 69908, 69907, 69913, 69912, 69899, 69909, 69904, 69914, 69906,
69905, 69911, 69910, 69920, 69921, 69918, 69917, 69901, 69900, 69898,
69897, 69903, 69902, 69896, 69895, 69956, 69923, 69916, 69915, 69926,
69919, 69922, 69925, 69959, 69924, 69891, 69894, 69892, 69893, 69888,
69890, 69889, 69952, 69927, 69957, 69933, 69935, 69930, 69931, 69932,
69958, 69928, 69929, 69934, 69936, 69939, 69954, 69953, 69947, 69946,
69949, 69948, 69945, 69944, 69942, 69951, 69943, 69950, 69955, 69940,
69938, 69937, 43587, 43597, 43596, 43573, 43572, 43574, 43571, 43590,
43586, 43595, 43588, 43585, 43584, 43594, 43591, 43593, 43589, 43592,
43530, 43531, 43536, 43538, 43537, 43543, 43544, 43551, 43552, 43548,
43547, 43546, 43553, 43550, 43549, 43545, 43542, 43541, 43558, 43559,
43520, 43524, 43533, 43532, 43529, 43528, 43535, 43534, 43527, 43526,
43540, 43539, 43560, 43556, 43555, 43557, 43554, 43523, 43521, 43525,
43522, 43612, 43614, 43613, 43615, 43561, 43568, 43569, 43562, 43563,
43567, 43566, 43565, 43570, 43564, 43605, 43604, 43607, 43606, 43603,
43602, 43600, 43609, 43601, 43608, 983058, 983140, 983137, 8256, 128200,
128185, 128201, 128638, 129941, 10003, 129472, 128227, 5084, 5075, 5077,
5079, 5081, 5082, 5083, 5055, 5037, 5038, 5039, 5040, 5041, 5042, 5054,
5056, 5057, 5058, 5059, 5060, 5061, 5069, 5068, 5070, 5071, 5072, 5073,
5074, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095,
5096, 5076, 5078, 5080, 5030, 5032, 5033, 5034, 5035, 5036, 5043, 5044,
5045, 5046, 5047, 5048, 5049, 5050, 5051, 5052, 5053, 5109, 5062, 5063,
5064, 5065, 5066, 5067, 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104,
5105, 5106, 5107, 5108, 5031, 5024, 5025, 5026, 5027, 5028, 5029, 43948,
43939, 43941, 43943, 43945, 43946, 43947, 43919, 43901, 43902, 43903,
43904, 43905, 43906, 43918, 43920, 43921, 43922, 43923, 43924, 43925,
43933, 43932, 43934, 43935, 43936, 43937, 43938, 43949, 43950, 43951,
43952, 43953, 43954, 43955, 43956, 43957, 43958, 43959, 43960, 43940,
43942, 43944, 43894, 43896, 43897, 43898, 43899, 43900, 43907, 43908,
43909, 43910, 43911, 43912, 43913, 43914, 43915, 43916, 43917, 5117,
43926, 43927, 43928, 43929, 43930, 43931, 43961, 43962, 43963, 43964,
43965, 43966, 43967, 5112, 5113, 5114, 5115, 5116, 43895, 43888, 43889,
43890, 43891, 43892, 43893, 127800, 118462, 127826, 127792, 127937,
129490, 128696, 94194, 94195, 9767, 128063, 128020, 9911, 69559, 69553,
69567, 69571, 69556, 69564, 69570, 69552, 69568, 69555, 69560, 69562,
69557, 69561, 69563, 69554, 69566, 69572, 69558, 69569, 69565, 69578,
69574, 69575, 69577, 69573, 69579, 69576, 129378, 127851, 127876, 9962,
127910, 9680, 9682, 10690, 10683, 10691, 9684, 9683, 9685, 9677, 9681,
10677, 10682, 10684, 127246, 8859, 11199, 10687, 129282, 129280, 129281,
128320, 9938, 127342, 127341, 127277, 8856, 10808, 9316, 9315, 9318,
9317, 9314, 9313, 9450, 9320, 9312, 9319, 127247, 8857, 8861, 12905,
12919, 12904, 12918, 12903, 12917, 12926, 12909, 12923, 12906, 12920,
12896, 12910, 12900, 12914, 12897, 12911, 12908, 12922, 12901, 12915,
12899, 12913, 12902, 12916, 12907, 12921, 12898, 12912, 9097, 127343,
10162, 12975, 127569, 12959, 127568, 12963, 12951, 12962, 12965, 12973,
12943, 12957, 12935, 12950, 12939, 12932, 12955, 12931, 12964, 12946,
12869, 12871, 12952, 12966, 12967, 12969, 12942, 12954, 12938, 12976,
12936, 12948, 12868, 12974, 12961, 12970, 12968, 12953, 12934, 12972,
12956, 12944, 12870, 12947, 12949, 12971, 12945, 12933, 12958, 12930,
12937, 12929, 12941, 12940, 12960, 12928, 127275, 127276, 128712, 13033,
13036, 13034, 13037, 13035, 13013, 13016, 13014, 13017, 13015, 13038,
13041, 13039, 13042, 13040, 13028, 13031, 13029, 13032, 13030, 13046,
13049, 13047, 13050, 13048, 13018, 13021, 13019, 13022, 13020, 13023,
13026, 13024, 13027, 13025, 13051, 13053, 13052, 13054, 13043, 13045,
13044, 13008, 13011, 13009, 13012, 13010, 12925, 12924, 9398, 9399, 9400,
9401, 9402, 9403, 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, 9412,
9413, 9414, 9415, 9416, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424,
9425, 9426, 9427, 9428, 9429, 9430, 9431, 9432, 9433, 9434, 9435, 9436,
9437, 9438, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448,
9449, 10688, 10806, 8854, 12879, 9329, 9322, 12991, 12876, 9326, 12981,
12875, 12982, 12986, 12985, 12988, 12987, 12984, 12983, 12990, 12989,
9325, 12878, 9328, 12877, 9327, 9321, 12872, 12890, 12874, 12891, 12895,
12894, 12978, 12977, 12893, 12892, 12980, 12979, 9324, 9331, 12873,
12881, 12885, 12884, 12887, 12886, 12883, 12882, 12889, 12888, 9323,
9330, 10050, 12342, 10679, 10681, 8853, 8858, 10680, 128981, 9098, 8855,
10686, 10026, 127278, 127245, 8860, 10678, 10689, 128983, 11198, 94,
10768, 127914, 127961, 127750, 195088, 195089, 195090, 195091, 195092,
195093, 195094, 195095, 195096, 195097, 195098, 195099, 195100, 195101,
195072, 195073, 195074, 195075, 195076, 195077, 195078, 195079, 195080,
195081, 195082, 195083, 195084, 195085, 195086, 195087, 194560, 194561,
194562, 194563, 194564, 194565, 194566, 194567, 194568, 194569, 194570,
194571, 194572, 194573, 194574, 194575, 194576, 194577, 194578, 194579,
194580, 194581, 194582, 194583, 194584, 194585, 194586, 194587, 194588,
194589, 194590, 194591, 194592, 194593, 194594, 194595, 194596, 194597,
194598, 194599, 194600, 194601, 194602, 194603, 194604, 194605, 194606,
194607, 194608, 194609, 194610, 194611, 194612, 194613, 194614, 194615,
194616, 194617, 194618, 194619, 194620, 194621, 194622, 194623, 194624,
194625, 194626, 194627, 194628, 194629, 194630, 194631, 194632, 194633,
194634, 194635, 194636, 194637, 194638, 194639, 194640, 194641, 194642,
194643, 194644, 194645, 194646, 194647, 194648, 194649, 194650, 194651,
194652, 194653, 194654, 194655, 194656, 194657, 194658, 194659, 194660,
194661, 194662, 194663, 194664, 194665, 194666, 194667, 194668, 194669,
194670, 194671, 194672, 194673, 194674, 194675, 194676, 194677, 194678,
194679, 194680, 194681, 194682, 194683, 194684, 194685, 194686, 194687,
194688, 194689, 194690, 194691, 194692, 194693, 194694, 194695, 194696,
194697, 194698, 194699, 194700, 194701, 194702, 194703, 194704, 194705,
194706, 194707, 194708, 194709, 194710, 194711, 194712, 194713, 194714,
194715, 194716, 194717, 194718, 194719, 194720, 194721, 194722, 194723,
194724, 194725, 194726, 194727, 194728, 194729, 194730, 194731, 194732,
194733, 194734, 194735, 194736, 194737, 194738, 194739, 194740, 194741,
194742, 194743, 194744, 194745, 194746, 194747, 194748, 194749, 194750,
194751, 194752, 194753, 194754, 194755, 194756, 194757, 194758, 194759,
194760, 194761, 194762, 194763, 194764, 194765, 194766, 194767, 194768,
194769, 194770, 194771, 194772, 194773, 194774, 194775, 194776, 194777,
194778, 194779, 194780, 194781, 194782, 194783, 194784, 194785, 194786,
194787, 194788, 194789, 194790, 194791, 194792, 194793, 194794, 194795,
194796, 194797, 194798, 194799, 194800, 194801, 194802, 194803, 194804,
194805, 194806, 194807, 194808, 194809, 194810, 194811, 194812, 194813,
194814, 194815, 194816, 194817, 194818, 194819, 194820, 194821, 194822,
194823, 194824, 194825, 194826, 194827, 194828, 194829, 194830, 194831,
194832, 194833, 194834, 194835, 194836, 194837, 194838, 194839, 194840,
194841, 194842, 194843, 194844, 194845, 194846, 194847, 194848, 194849,
194850, 194851, 194852, 194853, 194854, 194855, 194856, 194857, 194858,
194859, 194860, 194861, 194862, 194863, 194864, 194865, 194866, 194867,
194868, 194869, 194870, 194871, 194872, 194873, 194874, 194875, 194876,
194877, 194878, 194879, 194880, 194881, 194882, 194883, 194884, 194885,
194886, 194887, 194888, 194889, 194890, 194891, 194892, 194893, 194894,
194895, 194896, 194897, 194898, 194899, 194900, 194901, 194902, 194903,
194904, 194905, 194906, 194907, 194908, 194909, 194910, 194911, 194912,
194913, 194914, 194915, 194916, 194917, 194918, 194919, 194920, 194921,
194922, 194923, 194924, 194925, 194926, 194927, 194928, 194929, 194930,
194931, 194932, 194933, 194934, 194935, 194936, 194937, 194938, 194939,
194940, 194941, 194942, 194943, 194944, 194945, 194946, 194947, 194948,
194949, 194950, 194951, 194952, 194953, 194954, 194955, 194956, 194957,
194958, 194959, 194960, 194961, 194962, 194963, 194964, 194965, 194966,
194967, 194968, 194969, 194970, 194971, 194972, 194973, 194974, 194975,
194976, 194977, 194978, 194979, 194980, 194981, 194982, 194983, 194984,
194985, 194986, 194987, 194988, 194989, 194990, 194991, 194992, 194993,
194994, 194995, 194996, 194997, 194998, 194999, 195000, 195001, 195002,
195003, 195004, 195005, 195006, 195007, 195008, 195009, 195010, 195011,
195012, 195013, 195014, 195015, 195016, 195017, 195018, 195019, 195020,
195021, 195022, 195023, 195024, 195025, 195026, 195027, 195028, 195029,
195030, 195031, 195032, 195033, 195034, 195035, 195036, 195037, 195038,
195039, 195040, 195041, 195042, 195043, 195044, 195045, 195046, 195047,
195048, 195049, 195050, 195051, 195052, 195053, 195054, 195055, 195056,
195057, 195058, 195059, 195060, 195061, 195062, 195063, 195064, 195065,
195066, 195067, 195068, 195069, 195070, 195071, 64096, 64097, 64098,
64099, 64100, 64101, 64102, 64103, 64104, 64105, 64106, 64107, 64108,
64109, 64000, 64001, 64002, 64003, 64004, 64005, 64006, 64007, 64008,
64009, 64010, 64011, 64012, 64013, 64014, 64015, 64016, 64017, 64018,
64019, 64020, 64021, 64022, 64023, 64024, 64025, 64026, 64027, 64028,
64029, 64030, 64031, 64032, 64033, 64034, 64035, 64036, 64037, 64038,
64039, 64040, 64041, 64042, 64043, 64044, 64045, 64046, 64047, 64048,
64049, 64050, 64051, 64052, 64053, 64054, 64055, 64056, 64057, 64058,
64059, 64060, 64061, 64062, 64063, 64064, 64065, 64066, 64067, 64068,
64069, 64070, 64071, 64072, 64073, 64074, 64075, 64076, 64077, 64078,
64079, 64080, 64081, 64082, 64083, 64084, 64085, 64086, 64087, 64088,
64089, 64090, 64091, 64092, 64093, 64094, 64095, 64112, 64113, 64114,
64115, 64116, 64117, 64118, 64119, 64120, 64121, 64122, 64123, 64124,
64125, 64126, 64127, 64128, 64129, 64130, 64131, 64132, 64133, 64134,
64135, 64136, 64137, 64138, 64139, 64140, 64141, 64142, 64143, 64144,
64145, 64146, 64147, 64148, 64149, 64150, 64151, 64152, 64153, 64154,
64155, 64156, 64157, 64158, 64159, 64160, 64161, 64162, 64163, 64164,
64165, 64166, 64167, 64168, 64169, 64170, 64171, 64172, 64173, 64174,
64175, 64176, 64177, 64178, 64179, 64180, 64181, 64182, 64183, 64184,
64185, 64186, 64187, 64188, 64189, 64190, 64191, 64192, 64193, 64194,
64195, 64196, 64197, 64198, 64199, 64200, 64201, 64202, 64203, 64204,
64205, 64206, 64207, 64208, 64209, 64210, 64211, 64212, 64213, 64214,
64215, 64216, 64217, 63744, 63745, 63746, 63747, 63748, 63749, 63750,
63751, 63752, 63753, 63754, 63755, 63756, 63757, 63758, 63759, 63760,
63761, 63762, 63763, 63764, 63765, 63766, 63767, 63768, 63769, 63770,
63771, 63772, 63773, 63774, 63775, 63776, 63777, 63778, 63779, 63780,
63781, 63782, 63783, 63784, 63785, 63786, 63787, 63788, 63789, 63790,
63791, 63792, 63793, 63794, 63795, 63796, 63797, 63798, 63799, 63800,
63801, 63802, 63803, 63804, 63805, 63806, 63807, 63808, 63809, 63810,
63811, 63812, 63813, 63814, 63815, 63816, 63817, 63818, 63819, 63820,
63821, 63822, 63823, 63824, 63825, 63826, 63827, 63828, 63829, 63830,
63831, 63832, 63833, 63834, 63835, 63836, 63837, 63838, 63839, 63840,
63841, 63842, 63843, 63844, 63845, 63846, 63847, 63848, 63849, 63850,
63851, 63852, 63853, 63854, 63855, 63856, 63857, 63858, 63859, 63860,
63861, 63862, 63863, 63864, 63865, 63866, 63867, 63868, 63869, 63870,
63871, 63872, 63873, 63874, 63875, 63876, 63877, 63878, 63879, 63880,
63881, 63882, 63883, 63884, 63885, 63886, 63887, 63888, 63889, 63890,
63891, 63892, 63893, 63894, 63895, 63896, 63897, 63898, 63899, 63900,
63901, 63902, 63903, 63904, 63905, 63906, 63907, 63908, 63909, 63910,
63911, 63912, 63913, 63914, 63915, 63916, 63917, 63918, 63919, 63920,
63921, 63922, 63923, 63924, 63925, 63926, 63927, 63928, 63929, 63930,
63931, 63932, 63933, 63934, 63935, 63936, 63937, 63938, 63939, 63940,
63941, 63942, 63943, 63944, 63945, 63946, 63947, 63948, 63949, 63950,
63951, 63952, 63953, 63954, 63955, 63956, 63957, 63958, 63959, 63960,
63961, 63962, 63963, 63964, 63965, 63966, 63967, 63968, 63969, 63970,
63971, 63972, 63973, 63974, 63975, 63976, 63977, 63978, 63979, 63980,
63981, 63982, 63983, 63984, 63985, 63986, 63987, 63988, 63989, 63990,
63991, 63992, 63993, 63994, 63995, 63996, 63997, 63998, 63999, 11946,
12003, 11910, 11963, 11962, 11950, 11992, 12012, 12000, 12005, 11996,
12010, 11984, 11988, 11994, 11987, 11952, 12007, 11977, 11976, 11973,
12019, 11993, 12014, 11995, 12016, 12006, 12002, 11979, 11936, 11983,
11905, 11970, 11943, 11931, 11914, 11934, 11944, 11999, 11998, 11997,
11960, 11947, 11939, 11978, 11968, 11967, 11966, 12004, 11927, 11926,
12001, 11975, 11928, 12018, 12013, 12015, 12011, 11945, 11986, 11985,
11921, 11920, 11919, 11918, 11964, 11957, 11990, 11989, 11935, 11965,
11933, 11941, 11940, 11909, 11991, 11959, 11929, 11904, 11908, 11907,
11906, 11915, 11942, 11974, 11980, 12008, 12009, 11951, 11925, 11924,
11922, 11949, 11948, 11917, 11916, 11958, 11932, 12017, 11911, 11923,
11969, 11982, 11981, 11938, 11937, 11972, 11971, 11956, 11955, 11954,
11953, 11913, 11912, 11961, 12752, 12743, 12748, 12768, 12772, 12757,
12741, 12750, 12769, 12747, 12749, 12744, 12742, 12746, 12758, 12754,
12763, 12770, 12764, 12753, 12740, 12767, 12760, 12759, 12745, 12773,
12766, 12762, 12755, 12761, 12736, 12765, 12739, 12737, 12738, 12756,
12751, 12771, 128079, 127916, 127963, 128385, 129346, 127867, 128203,
128346, 128358, 128343, 128355, 128340, 128352, 128339, 128351, 128344,
128356, 128336, 128348, 128342, 128354, 128341, 128353, 128345, 128357,
128347, 128359, 128337, 128349, 128338, 128350, 10561, 8754, 128259,
10227, 128472, 128257, 128258, 8631, 11118, 8635, 8753, 10959, 10961,
10960, 10962, 127746, 10828, 10832, 128234, 128235, 128272, 128213,
10829, 8272, 9729, 127786, 127785, 127784, 127783, 129313, 9114, 129715,
127864, 129381, 58, 8788, 8353, 128165, 6867, 7625, 7623, 769, 791, 833,
8410, 8404, 8423, 857, 8432, 7677, 844, 774, 7627, 814, 810, 838, 70459,
780, 812, 784, 8409, 8405, 787, 789, 806, 65062, 65069, 42609, 1160,
11774, 11744, 11768, 11747, 11757, 11765, 42654, 11751, 11752, 11753,
11756, 42613, 11775, 11772, 42655, 11767, 11754, 42619, 11763, 11762,
42618, 42615, 42612, 42617, 11770, 42614, 11771, 11773, 11769, 11759,
42616, 11760, 11758, 11748, 11749, 11761, 11746, 11764, 11755, 11745,
11750, 11766, 42621, 1156, 1158, 1159, 1157, 42608, 42610, 1155, 65070,
65071, 1161, 42620, 123023, 42607, 770, 813, 807, 43248, 43244, 43245,
43246, 43247, 43242, 43243, 43249, 43237, 43236, 43239, 43238, 43235,
43234, 43232, 43241, 43233, 43240, 7675, 776, 804, 6876, 6833, 775, 7672,
856, 803, 7674, 6877, 7617, 7616, 6886, 6887, 779, 861, 860, 865, 7676,
6863, 7629, 862, 863, 6840, 831, 6858, 6857, 6844, 866, 6891, 858, 864,
65058, 65059, 8422, 840, 782, 783, 819, 6832, 798, 6875, 6835, 8413,
8416, 8418, 8414, 8419, 8420, 8415, 839, 6888, 850, 8412, 6874, 122892,
122884, 122891, 122890, 122921, 122919, 122889, 122916, 122900, 122907,
122910, 122901, 122908, 122880, 122920, 122881, 122909, 122903, 122922,
122883, 122895, 122894, 122896, 122898, 122899, 122882, 122885, 122912,
122911, 122913, 122918, 122915, 122888, 122886, 122904, 122902, 122897,
122893, 70508, 70507, 70506, 70505, 70504, 70502, 70503, 70515, 70513,
70514, 70516, 70512, 768, 790, 832, 6865, 7624, 7621, 847, 119363,
119362, 119364, 835, 834, 837, 836, 777, 843, 795, 785, 815, 826, 6883,
811, 6855, 6834, 7632, 12442, 12441, 7671, 7670, 7643, 7646, 7647, 7649,
7650, 867, 7666, 7655, 7636, 7637, 7638, 872, 7639, 868, 7663, 7641,
7659, 7635, 869, 7640, 6860, 6861, 6862, 7645, 7660, 7653, 870, 7667,
7661, 871, 7668, 7664, 876, 7651, 7626, 877, 6848, 7652, 7658, 7656,
7657, 7665, 6847, 873, 7642, 874, 7644, 875, 7648, 7662, 878, 879, 7654,
6889, 841, 794, 852, 7678, 8430, 8406, 6849, 6851, 796, 849, 8400, 792,
6880, 845, 8417, 8429, 8426, 65056, 65063, 65057, 65064, 6841, 8427, 824,
822, 8402, 818, 772, 65060, 65067, 65061, 65068, 817, 6869, 7620, 6872,
7622, 7628, 800, 6882, 6854, 842, 66424, 66425, 66423, 66426, 66422,
6839, 808, 7630, 773, 6846, 6845, 6843, 801, 799, 6856, 8421, 788, 802,
7679, 854, 848, 853, 8431, 8407, 825, 855, 8401, 6850, 6852, 793, 6881,
8428, 8408, 805, 778, 7631, 859, 823, 821, 8403, 6873, 6853, 827, 6884,
6842, 7619, 7618, 828, 6885, 8411, 771, 65065, 65066, 820, 816, 6859,
8424, 6836, 786, 797, 7669, 846, 6890, 7633, 7634, 809, 781, 830, 6864,
6870, 6866, 6871, 6868, 7673, 8425, 6838, 6837, 851, 829, 8274, 64, 44,
128476, 9092, 8705, 129517, 9732, 127882, 128533, 128534, 128119, 128679,
8715, 8883, 8885, 8954, 8955, 8957, 8750, 127899, 983187, 9089, 127978,
9010, 9740, 10861, 127859, 127850, 127834, 11505, 11504, 11503, 11464,
11392, 11506, 11499, 11501, 11446, 11452, 11458, 11466, 11442, 11448,
11450, 11398, 1006, 1002, 11396, 1000, 11406, 998, 11436, 11412, 11420,
996, 11434, 11472, 11414, 11422, 11478, 11468, 11470, 11476, 11474,
11482, 11460, 11480, 11454, 11462, 11444, 11486, 11488, 11484, 11490,
11440, 1004, 994, 11456, 11402, 11428, 11408, 11430, 11404, 11394, 11438,
11424, 11410, 11426, 11400, 11416, 11418, 11432, 66298, 66289, 66295,
66286, 66294, 66285, 66299, 66290, 66291, 66297, 66288, 66296, 66287,
66293, 66284, 66292, 66283, 66282, 66277, 66276, 66279, 66278, 66275,
66274, 66281, 66273, 66280, 66272, 11517, 11518, 11514, 11515, 11516,
11513, 11465, 11393, 11507, 11500, 11502, 11447, 11453, 11459, 11467,
11443, 11449, 11451, 11399, 1007, 1003, 11397, 1001, 11407, 999, 11437,
11413, 11421, 997, 11435, 11473, 11415, 11423, 11479, 11469, 11471,
11477, 11475, 11483, 11461, 11481, 11455, 11463, 11445, 11487, 11489,
11485, 11491, 11441, 1005, 995, 11457, 11403, 11429, 11409, 11431, 11405,
11395, 11439, 11425, 11411, 11427, 11401, 11417, 11419, 11433, 11497,
11492, 11493, 11494, 11498, 11495, 11496, 11519, 127279, 169, 11855,
8792, 129720, 9012, 9013, 119661, 119660, 119663, 119662, 119659, 119658,
119665, 119657, 119664, 119652, 119651, 119654, 119653, 119650, 119649,
119656, 119648, 119655, 128715, 128145, 128004, 128046, 9904, 129689,
129509, 983074, 128179, 127769, 129431, 127951, 9769, 9768, 11856, 11857,
128322, 128321, 10060, 127370, 127884, 9876, 9932, 128010, 129360,
128081, 8354, 129660, 128575, 128546, 128302, 129408, 8731, 74794, 74771,
74861, 74780, 74820, 74821, 74765, 74758, 74853, 74856, 74855, 74854,
74791, 74801, 74844, 74836, 74837, 74809, 74755, 74829, 74777, 74786,
74768, 74858, 74762, 74834, 74835, 74808, 74812, 74814, 74815, 74813,
74754, 74828, 74776, 74785, 74790, 74800, 74767, 74857, 74761, 74839,
74838, 74822, 74825, 74823, 74824, 74795, 74772, 74862, 74781, 74766,
74759, 74849, 74850, 74840, 74847, 74848, 74851, 74831, 74804, 74773,
74782, 74845, 74842, 74796, 74852, 74818, 74819, 74817, 74793, 74770,
74860, 74779, 74764, 74757, 74802, 74803, 74792, 74756, 74830, 74769,
74859, 74778, 74816, 74763, 74806, 74807, 74833, 74788, 74789, 74798,
74799, 74810, 74811, 74753, 74827, 74775, 74784, 74760, 74752, 74826,
74832, 74805, 74841, 74774, 74783, 74787, 74797, 74846, 74843, 74867,
74868, 74866, 74865, 74864, 73728, 73734, 73731, 73733, 73735, 73736,
73730, 73732, 73729, 73738, 73742, 73741, 73744, 73745, 74881, 73747,
73748, 73740, 73739, 74608, 74880, 73746, 73743, 73749, 73750, 73753,
73752, 73754, 73755, 73751, 74609, 73756, 74882, 73757, 73759, 73758,
73760, 73765, 73766, 73762, 73763, 73768, 73761, 73767, 73764, 73770,
73769, 73771, 74610, 73772, 73773, 73776, 73777, 73775, 73774, 73778,
73780, 73781, 73782, 73784, 73788, 73789, 73787, 73785, 73786, 73791,
73790, 73783, 73779, 73737, 73792, 73793, 74883, 73795, 74884, 74885,
74886, 73796, 73797, 73798, 73799, 73800, 73794, 73801, 73804, 73803,
73802, 73805, 74887, 73806, 73807, 73808, 73809, 73810, 73811, 73812,
73813, 73814, 73815, 73816, 73817, 73818, 73819, 73820, 73821, 73822,
73823, 73825, 73826, 73829, 73830, 73831, 73828, 73836, 74611, 73837,
73833, 73835, 73827, 73832, 73834, 73824, 74889, 74612, 73839, 73840,
73841, 74888, 73838, 73842, 73844, 74891, 74890, 73845, 73846, 74892,
73847, 73848, 73849, 74613, 73843, 73850, 73852, 73853, 73851, 73854,
73855, 74614, 73856, 73857, 74894, 74895, 74893, 74896, 74897, 74900,
74901, 74902, 74899, 74908, 74909, 74907, 74906, 74911, 74912, 74910,
74913, 74914, 74915, 74916, 74920, 74919, 74898, 74905, 74903, 74904,
74917, 74918, 73858, 73860, 73861, 73862, 73863, 73864, 73865, 73859,
73866, 73868, 73867, 73869, 73873, 73874, 73870, 73871, 74922, 74921,
73872, 73875, 73879, 73883, 73884, 73880, 73881, 73882, 73885, 73887,
74923, 73886, 73888, 74924, 73889, 74927, 74930, 74931, 74925, 74928,
74929, 74932, 74926, 73890, 73891, 73892, 73893, 73895, 73896, 73900,
73901, 73902, 73903, 73904, 73905, 73906, 74616, 74933, 73907, 73908,
73899, 73897, 73898, 74615, 73894, 73877, 73876, 73878, 73909, 73911,
73912, 73914, 73913, 73916, 74617, 73917, 74618, 73918, 73915, 74934,
73920, 73919, 73921, 73922, 73924, 73925, 74935, 74936, 74937, 73926,
73923, 73929, 73930, 73927, 73928, 74938, 74939, 73932, 74941, 74940,
73931, 73933, 73934, 73935, 73936, 73937, 74942, 73938, 73939, 73941,
73940, 73943, 73942, 73945, 73944, 73946, 73947, 74943, 73948, 73949,
74944, 74945, 74946, 73950, 74947, 73951, 74948, 74949, 74950, 73952,
73953, 73957, 73958, 73959, 74951, 73955, 73956, 73960, 73962, 73963,
73964, 73961, 74952, 73954, 73965, 73966, 74953, 73967, 73968, 73969,
73970, 73971, 73972, 73974, 73975, 73978, 73977, 73976, 73910, 73979,
73980, 73981, 73973, 73982, 73983, 74954, 74619, 73984, 73985, 73986,
73987, 73988, 73990, 73989, 73994, 73995, 73998, 73996, 73997, 73999,
73992, 73993, 74001, 74955, 74004, 74003, 74005, 74002, 74000, 73991,
74620, 74006, 74008, 74009, 74010, 74956, 74012, 74011, 74013, 74014,
74957, 74015, 74016, 74017, 74019, 74020, 74021, 74024, 74023, 74022,
74007, 74018, 74025, 74026, 74958, 74027, 74028, 74029, 74030, 74959,
74031, 74033, 74036, 74035, 74032, 74034, 74037, 74038, 74039, 74040,
74043, 74044, 74042, 74041, 74045, 74046, 74621, 74047, 74050, 74052,
74051, 74053, 74054, 74058, 74057, 74055, 74056, 74059, 74060, 74061,
74062, 74064, 74065, 74063, 74066, 74067, 74048, 74070, 74049, 74068,
74069, 74071, 74072, 74073, 74074, 74622, 74075, 74623, 74077, 74076,
74078, 74079, 74960, 74080, 74081, 74082, 74085, 74086, 74084, 74083,
74087, 74624, 74090, 74089, 74088, 74091, 74092, 74625, 74093, 74094,
74096, 74097, 74961, 74095, 74099, 74627, 74098, 74100, 74101, 74103,
74102, 74104, 74105, 74115, 74629, 74114, 74112, 74113, 74110, 74111,
74117, 74116, 74118, 74630, 74119, 74962, 74963, 74631, 74122, 74123,
74120, 74121, 74626, 74107, 74106, 74628, 74108, 74109, 74124, 74125,
74126, 74131, 74132, 74128, 74129, 74130, 74133, 74134, 74135, 74136,
74137, 983267, 74138, 74139, 74140, 74141, 74142, 74607, 74127, 74144,
74146, 74147, 74145, 74152, 74153, 74150, 74151, 74148, 74149, 74154,
74155, 74157, 74158, 74163, 74164, 74165, 74160, 74161, 74156, 74159,
74162, 74143, 74166, 74167, 74168, 74169, 74170, 74171, 74172, 74175,
74173, 74174, 74176, 74177, 74182, 74183, 74180, 74181, 74632, 74186,
74184, 74185, 74188, 74190, 74189, 74187, 74194, 74195, 74193, 74191,
74192, 74196, 74197, 74198, 74199, 74200, 74201, 74202, 74205, 74206,
74207, 74208, 74204, 74209, 74211, 74210, 74212, 74213, 74215, 74214,
74216, 74218, 74217, 74964, 74178, 74179, 74203, 74219, 74220, 74223,
74224, 74221, 74222, 74966, 74967, 74974, 74973, 74972, 74969, 74970,
74971, 74975, 74968, 74965, 74977, 74976, 74980, 74981, 74982, 74984,
74985, 74978, 74979, 74983, 74986, 74987, 74988, 74989, 74990, 74991,
74993, 74997, 74996, 74998, 74995, 74994, 74992, 74999, 75000, 75003,
75004, 75005, 75006, 75001, 75002, 75009, 75015, 75016, 75019, 75017,
75018, 75013, 75012, 75010, 75011, 75014, 75021, 75030, 75029, 75027,
75024, 75025, 75028, 75022, 75026, 75023, 75008, 75020, 75031, 75032,
75007, 74226, 74227, 74228, 74229, 74230, 74225, 74231, 74233, 74234,
74232, 74235, 74237, 74258, 74259, 75033, 74261, 74633, 74260, 74240,
74634, 74241, 74243, 75035, 74246, 74247, 74245, 74248, 74249, 74250,
74251, 75036, 75037, 74254, 74255, 74635, 74256, 75038, 74242, 74252,
74253, 75034, 74238, 74239, 74244, 74257, 74263, 74265, 74264, 74266,
74269, 74270, 74271, 74236, 74262, 74267, 74268, 74272, 74273, 74274,
74278, 74279, 74275, 74276, 74277, 74280, 74281, 74636, 74282, 75039,
74283, 74284, 74290, 74294, 74295, 75041, 75040, 74292, 74293, 74291,
74296, 74297, 74298, 74299, 74300, 74637, 74301, 74286, 74287, 74285,
74289, 74288, 74302, 74304, 74307, 74305, 74306, 74308, 74310, 74309,
74311, 74303, 74638, 74312, 74314, 74313, 74315, 74316, 74319, 74321,
74320, 74639, 74322, 74324, 74325, 74323, 74642, 75043, 74326, 75044,
75046, 75047, 74327, 75048, 74329, 74328, 75049, 74330, 74332, 74333,
74331, 75050, 75051, 74334, 75052, 74335, 75042, 74641, 75045, 74640,
74317, 74336, 74318, 74337, 74338, 983266, 983265, 74643, 74339, 74347,
74348, 74342, 74343, 74341, 74344, 74340, 74346, 74345, 74349, 74355,
74354, 74350, 74352, 74358, 74359, 74353, 74357, 74351, 74356, 74360,
74361, 74362, 74363, 74364, 74365, 74366, 74644, 74367, 74375, 74376,
74368, 74369, 74373, 74374, 74370, 74371, 74372, 74377, 74378, 74379,
74380, 74381, 74382, 74645, 74383, 74384, 74385, 74386, 74387, 74389,
74408, 75053, 74388, 74646, 74395, 74394, 75055, 74400, 74399, 75056,
74401, 74406, 74402, 74403, 74404, 74405, 74391, 74392, 74396, 74398,
75054, 74397, 74393, 74390, 74407, 74409, 74410, 74411, 74412, 74413,
74414, 74421, 74422, 74419, 74417, 74420, 74416, 74418, 74415, 74423,
75057, 74424, 74425, 74426, 75058, 74428, 74429, 75059, 75060, 75061,
74427, 74432, 74434, 74433, 74430, 74431, 74435, 74437, 74436, 74438,
74441, 74440, 74444, 74445, 74446, 74448, 74447, 74443, 74449, 74442,
74439, 74451, 74453, 74452, 74450, 74454, 74455, 74456, 74457, 75063,
75062, 74458, 74459, 75064, 74460, 74461, 74462, 74463, 74465, 74464,
74466, 74468, 74469, 74471, 74472, 74473, 74474, 74467, 74470, 74475,
74477, 74478, 74479, 74476, 74480, 74481, 74482, 74483, 74488, 74486,
74487, 74485, 74489, 74484, 74490, 75065, 74491, 74494, 74497, 74499,
74500, 74498, 74495, 74647, 74496, 74501, 74504, 75066, 75067, 74505,
74506, 74502, 74503, 74492, 74493, 74507, 74510, 74512, 74511, 74649,
74509, 74508, 74515, 74516, 74522, 74523, 74519, 74520, 74517, 74518,
74521, 74524, 74534, 74535, 74525, 74526, 74648, 74527, 74528, 74529,
74531, 74532, 74533, 74530, 74536, 74538, 74537, 74539, 75068, 74540,
74541, 74542, 74545, 74546, 74547, 75069, 74544, 74543, 74549, 74550,
74551, 74552, 74553, 75070, 74555, 74556, 74558, 74557, 74559, 74560,
74562, 74564, 74563, 75072, 74566, 75071, 74570, 74569, 74572, 74574,
74573, 74554, 74567, 74571, 74565, 74561, 74568, 74575, 74576, 74548,
74577, 74581, 74579, 74580, 74578, 74584, 74583, 74582, 74586, 74587,
74588, 74585, 74513, 74514, 74589, 74591, 74590, 74593, 75073, 74592,
74595, 74598, 74599, 74596, 74601, 74597, 74600, 74602, 75074, 74603,
75075, 74604, 74605, 74606, 74594, 9982, 129380, 11232, 129473, 8911,
8910, 10160, 9130, 129356, 128177, 164, 127835, 10081, 128707, 127854,
129362, 129385, 67594, 67595, 67596, 67597, 67598, 67599, 67600, 67601,
67602, 67603, 67604, 67605, 67606, 67607, 67608, 67609, 67610, 67611,
67612, 67613, 67614, 67615, 67616, 67617, 67618, 67619, 67620, 67621,
67622, 67623, 67624, 67625, 67626, 67627, 67628, 67629, 67630, 67631,
67632, 67633, 67634, 67635, 67636, 67637, 67589, 67592, 67644, 67647,
67639, 67640, 67584, 67585, 67586, 67587, 67588, 77712, 77713, 77714,
77715, 77716, 77717, 77718, 77719, 77722, 77723, 77720, 77721, 77724,
77725, 77726, 77727, 77728, 77729, 77730, 77731, 77732, 77733, 77734,
77735, 77736, 77737, 77738, 77739, 77740, 77741, 77742, 77743, 77744,
77745, 77746, 77747, 77748, 77749, 77750, 77751, 77752, 77753, 77754,
77755, 77756, 77757, 77758, 77773, 77774, 77768, 77769, 77770, 77771,
77772, 77775, 77776, 77777, 77788, 77789, 77790, 77791, 77792, 77793,
77794, 77795, 77796, 77759, 77760, 77761, 77762, 77763, 77764, 77765,
77766, 77767, 77778, 77779, 77780, 77781, 77782, 77783, 77784, 77785,
77786, 77787, 77797, 77798, 77799, 77800, 77801, 77802, 77803, 77804,
77805, 77806, 77807, 77808, 77809, 77810, 1126, 1033, 1300, 42574, 1034,
1055, 1190, 1316, 1136, 1146, 42564, 42592, 42580, 1296, 1302, 1058,
42634, 1196, 1035, 42640, 42638, 1062, 42642, 7305, 42636, 1059, 1266,
1264, 1262, 1144, 1028, 1040, 1234, 1232, 1212, 1214, 1248, 1192, 1310,
1256, 1258, 1184, 42602, 1130, 42572, 42586, 1030, 1041, 1063, 1268,
1206, 1208, 42584, 42650, 42630, 1026, 42568, 42604, 42648, 1029, 42562,
1322, 42632, 1039, 42626, 1324, 42624, 1044, 1069, 1051, 1312, 1326,
1221, 1298, 1053, 1314, 1186, 1320, 1225, 1223, 1056, 1166, 1260, 1057,
1194, 1052, 1229, 1060, 1043, 1172, 1168, 1270, 1170, 1274, 1027, 1061,
1202, 1276, 1278, 1066, 42644, 1048, 1252, 1037, 1250, 1045, 1024, 1238,
1025, 42588, 1128, 1132, 42578, 42582, 1124, 42566, 1140, 1142, 1050,
1178, 1219, 1180, 1182, 1286, 1282, 1280, 1288, 1290, 1292, 1294, 1284,
1152, 1227, 1036, 1134, 42600, 42570, 1054, 1120, 1148, 1254, 1150, 1240,
1242, 1049, 1162, 1038, 1210, 1318, 1065, 42646, 1064, 42596, 42598,
1068, 42594, 1198, 1200, 1164, 1071, 1304, 1122, 1067, 1272, 42576, 1031,
42590, 1070, 1047, 1246, 1176, 42560, 1046, 1244, 1174, 1217, 42628,
1138, 1032, 1042, 1308, 1306, 1236, 1204, 1188, 42622, 42606, 1216, 7467,
42623, 1072, 1235, 1233, 1213, 1215, 1249, 1193, 1311, 1257, 1259, 1185,
42603, 1131, 42573, 42587, 1110, 1073, 1095, 1269, 1207, 1209, 42585,
42651, 42631, 1106, 42569, 42605, 42649, 1109, 42563, 1323, 42633, 1119,
42627, 1325, 42625, 1076, 1101, 1083, 1313, 1327, 1222, 1299, 1085, 1315,
1187, 1321, 1226, 1224, 1088, 1167, 1261, 1089, 1195, 1084, 1230, 1092,
1075, 1173, 1169, 1271, 1171, 1275, 1107, 1093, 1203, 1277, 1279, 1098,
42645, 1080, 1253, 1117, 1251, 1077, 1104, 1239, 1105, 42589, 1129, 1133,
42579, 42583, 1125, 42567, 1141, 1143, 1082, 1179, 1220, 1181, 1183,
1287, 1283, 1281, 1289, 1291, 1293, 1295, 1285, 1153, 1228, 1116, 1135,
1127, 7297, 1113, 1301, 42601, 42571, 42575, 7298, 1114, 1086, 1121,
1149, 1255, 1151, 1087, 1191, 1317, 1231, 1137, 42565, 42593, 42581,
1297, 1147, 7296, 1303, 1241, 1243, 1081, 1163, 1118, 1211, 1319, 1097,
42647, 1096, 42597, 42599, 1100, 42595, 1199, 1201, 1165, 7302, 7303,
7300, 1090, 42635, 1197, 1115, 42641, 42639, 1094, 7301, 42643, 7306,
42637, 1091, 1267, 1265, 1263, 1145, 1108, 7304, 7299, 1309, 1103, 1305,
1123, 1099, 1273, 42577, 1111, 42591, 1102, 1079, 1247, 1177, 42561,
1078, 1245, 1175, 1218, 42629, 1139, 1112, 1074, 1307, 1237, 1205, 1189,
122984, 122962, 122986, 122985, 122965, 122976, 122971, 122974, 122964,
122983, 122977, 122981, 122982, 122980, 122978, 122967, 122968, 122969,
122966, 122979, 122973, 122963, 122970, 122961, 122972, 122975, 1154,
9005, 127744, 983201, 983188, 983172, 8224, 11830, 11831, 128481, 128131,
127841, 128374, 9619, 11843, 128168, 10143, 65101, 65097, 8504, 983081,
983084, 983086, 983088, 983090, 983162, 9110, 9192, 127795, 128475, 8451,
176, 8457, 983120, 128666, 8796, 983119, 9161, 9159, 9153, 9156, 9162,
9160, 9154, 9157, 9164, 9151, 9163, 9150, 9158, 9152, 9155, 117829,
117828, 127980, 127962, 9739, 66589, 66591, 66596, 66597, 66587, 66585,
66594, 66595, 66593, 66599, 66562, 66563, 66564, 66565, 66561, 66560,
66568, 66569, 66570, 66571, 66567, 66566, 66598, 66573, 66588, 66579,
66592, 66590, 66581, 66578, 66580, 66582, 66577, 66586, 66575, 66584,
66583, 66574, 66572, 66576, 66629, 66631, 66636, 66637, 66627, 66625,
66634, 66635, 66633, 66639, 66602, 66603, 66604, 66605, 66601, 66600,
66608, 66609, 66610, 66611, 66607, 66606, 66638, 66613, 66628, 66619,
66632, 66630, 66621, 66618, 66620, 66622, 66617, 66626, 66615, 66624,
66623, 66614, 66612, 66616, 127964, 127965, 128421, 128468, 2388, 2416,
43258, 2387, 43257, 72448, 72449, 43259, 2309, 2310, 2320, 2324, 2421,
43262, 2330, 2418, 2317, 2321, 2331, 2396, 2430, 2338, 2337, 2343, 2342,
2429, 2394, 2328, 2427, 2327, 2426, 2361, 2350, 2424, 2308, 2318, 2322,
2358, 2359, 2360, 2431, 2349, 2348, 2393, 2326, 2325, 2397, 2353, 2352,
2323, 2420, 2419, 2399, 2351, 2313, 2314, 2423, 2422, 2345, 2339, 2329,
2334, 2344, 2333, 2428, 2332, 2356, 2355, 2354, 2336, 2335, 2341, 2340,
2315, 2400, 2316, 2401, 2357, 2311, 2312, 2347, 2346, 2425, 2395, 2398,
2392, 2319, 983644, 983643, 983646, 983647, 983649, 983648, 983642,
983645, 72450, 72451, 72452, 72453, 2305, 43255, 43251, 43254, 43253,
72455, 72454, 72456, 43250, 43260, 2304, 72457, 2364, 2365, 2306, 43252,
43256, 2417, 2381, 2307, 2386, 2385, 2366, 2376, 2380, 2383, 43263, 2389,
2373, 2377, 2379, 2363, 2362, 2382, 2369, 2370, 2391, 2390, 2374, 2378,
2371, 2372, 2402, 2403, 2367, 2368, 2375, 2405, 2404, 2411, 2410, 2413,
2412, 2409, 2408, 2406, 2415, 2407, 2414, 43261, 2384, 983089, 983161,
983087, 983085, 983083, 129487, 129420, 11033, 11032, 11030, 11031,
128924, 128160, 8900, 8960, 168, 117827, 9856, 9857, 9858, 9859, 9860,
9861, 128754, 53, 127238, 9356, 52, 127237, 9355, 57, 127242, 9360, 49,
127234, 9352, 55, 127240, 9358, 54, 127239, 9357, 51, 127236, 9354, 50,
127235, 9353, 48, 127233, 127232, 56, 127241, 9359, 119557, 119556,
119555, 9868, 9871, 9870, 9869, 119553, 119554, 10131, 10126, 10125,
10128, 10127, 10124, 10123, 127244, 10130, 10122, 10129, 10111, 10106,
10105, 10108, 10107, 10104, 10103, 10110, 10102, 10109, 10121, 10116,
10115, 10118, 10117, 10114, 10113, 127243, 10120, 10112, 10119, 9107,
127919, 128549, 128542, 9933, 9090, 129770, 129400, 72004, 72021, 72020,
72023, 72022, 72019, 72018, 72016, 72025, 72017, 72024, 71964, 71958,
71963, 71974, 71973, 71936, 71937, 71961, 71960, 71966, 71965, 71940,
71941, 71938, 71939, 71982, 71976, 71952, 71962, 71957, 71967, 71978,
71979, 71980, 71971, 71970, 71954, 71953, 71951, 71950, 71949, 71948,
71969, 71968, 71981, 71955, 71972, 71975, 71977, 71983, 71942, 71945,
71997, 71996, 72003, 71995, 71984, 71991, 71987, 71988, 71985, 71986,
71989, 71992, 71998, 72002, 72000, 72005, 72006, 71999, 72001, 8725, 247,
8903, 129343, 8739, 9902, 129684, 128171, 128565, 12291, 8783, 9009,
128462, 128441, 128442, 128443, 8939, 8941, 8716, 8740, 10990, 8832,
8928, 8876, 8833, 8929, 8878, 128021, 71680, 71681, 71687, 71689, 71703,
71702, 71708, 71707, 71723, 71716, 71701, 71700, 71706, 71705, 71684,
71685, 71682, 71683, 71694, 71704, 71699, 71709, 71719, 71720, 71721,
71713, 71712, 71696, 71695, 71693, 71692, 71698, 71697, 71691, 71690,
71711, 71710, 71722, 71717, 71714, 71718, 71715, 71686, 71688, 71729,
71730, 71724, 71732, 71734, 71727, 71728, 71725, 71726, 71731, 71733,
71739, 71738, 71735, 71737, 71736, 128054, 128044, 36, 127025, 127026,
127027, 127028, 127029, 127030, 127031, 127032, 127033, 127034, 127035,
127036, 127037, 127038, 127039, 127040, 127041, 127042, 127043, 127044,
127045, 127046, 127047, 127048, 127049, 127050, 127051, 127052, 127053,
127054, 127055, 127056, 127057, 127058, 127059, 127060, 127061, 127062,
127063, 127064, 127065, 127066, 127067, 127068, 127069, 127070, 127071,
127072, 127073, 127024, 127075, 127076, 127077, 127078, 127079, 127080,
127081, 127082, 127083, 127084, 127085, 127086, 127087, 127088, 127089,
127090, 127091, 127092, 127093, 127094, 127095, 127096, 127097, 127098,
127099, 127100, 127101, 127102, 127103, 127104, 127105, 127106, 127107,
127108, 127109, 127110, 127111, 127112, 127113, 127114, 127115, 127116,
127117, 127118, 127119, 127120, 127121, 127122, 127123, 127074, 129743,
8363, 8724, 8760, 8901, 729, 9676, 8284, 11850, 11034, 129765, 11795,
11784, 10649, 11798, 9470, 9465, 9464, 9467, 9466, 9463, 9462, 9469,
9461, 9468, 10175, 10868, 10986, 8225, 8223, 11840, 8914, 8748, 11842,
8222, 8215, 10835, 10836, 10645, 10913, 10915, 10914, 10939, 8243, 12318,
10746, 10830, 10831, 11849, 10988, 11844, 10940, 8913, 8912, 11005,
10987, 8915, 9208, 10981, 8875, 10979, 8214, 11799, 10646, 733, 8252,
8263, 65100, 10908, 10907, 11002, 11001, 10906, 10905, 8510, 8473, 8511,
8450, 8461, 8469, 8474, 8477, 8484, 8518, 8519, 8520, 8521, 8517, 8509,
8508, 8512, 10719, 9890, 9891, 11260, 127849, 8868, 10993, 10623, 8945,
8964, 117764, 128317, 117859, 118264, 117883, 118268, 117849, 128315,
117914, 117864, 10728, 10729, 117875, 117879, 129288, 129290, 129289,
129291, 8595, 8629, 8671, 129035, 129031, 129179, 129043, 129027, 129047,
8626, 8627, 10504, 8693, 129975, 8615, 10515, 11796, 11015, 129203,
11147, 11107, 11139, 11123, 129067, 11168, 11169, 129063, 129059, 129075,
129071, 11133, 11085, 11117, 11143, 129171, 10507, 8609, 11247, 8681,
129175, 8623, 8659, 8675, 129079, 10597, 10607, 10593, 10585, 8643,
10589, 10581, 8642, 129091, 129095, 129087, 10225, 128623, 129107,
129083, 8650, 128687, 128330, 128682, 129444, 8367, 10139, 128009,
128050, 128042, 129656, 128167, 129316, 129345, 9946, 128087, 113784,
113788, 113785, 113783, 113782, 113786, 113787, 113795, 113798, 113793,
113800, 113781, 113794, 113792, 113799, 113797, 113796, 113776, 113808,
113817, 113811, 113814, 113809, 113816, 113779, 113810, 113815, 113813,
113812, 113778, 113777, 113780, 113729, 113733, 113672, 113677, 113683,
113735, 113739, 113746, 113668, 113678, 113674, 113726, 113691, 113699,
113700, 113695, 113709, 113712, 113713, 113705, 113711, 113669, 113725,
113679, 113684, 113670, 113743, 113749, 113687, 113689, 113693, 113707,
113697, 113703, 113690, 113694, 113708, 113698, 113704, 113764, 113763,
113762, 113761, 113732, 113753, 113731, 113755, 113754, 113666, 113766,
113765, 113676, 113675, 113741, 113750, 113680, 113688, 113692, 113696,
113710, 113727, 113728, 113716, 113717, 113714, 113715, 113701, 113702,
113724, 113723, 113706, 113742, 113740, 113767, 113769, 113730, 113768,
113682, 113685, 113752, 113737, 113667, 113719, 113718, 113681, 113745,
113748, 113751, 113738, 113673, 113770, 113720, 113757, 113760, 113722,
113759, 113756, 113721, 113758, 113665, 113747, 113664, 113686, 113734,
113736, 113744, 113671, 113821, 113822, 113823, 113820, 129375, 129414,
129516, 128192, 983082, 128066, 127805, 127806, 129467, 9793, 127758,
127759, 127757, 9178, 9841, 129413, 11790, 77830, 77831, 77832, 77828,
77829, 77824, 77825, 77826, 77827, 77833, 77834, 77835, 77840, 77841,
77844, 77845, 77836, 77837, 77838, 77839, 77842, 77843, 77846, 77847,
77869, 77870, 77872, 77873, 77874, 77875, 77877, 77878, 77871, 77876,
77879, 77880, 77881, 77882, 77860, 77861, 77858, 77859, 77862, 77863,
77864, 77865, 77866, 77867, 77868, 77903, 77848, 77849, 77850, 77851,
77852, 77853, 77854, 77855, 77856, 77857, 77883, 77884, 77885, 77886,
77887, 77888, 77889, 77890, 77891, 77892, 77893, 77894, 77895, 77896,
77897, 77898, 77899, 77900, 77901, 77902, 78867, 78868, 78869, 78861,
78862, 78863, 78864, 78865, 78866, 78870, 78871, 78892, 78893, 78894,
78872, 78873, 78874, 78875, 78876, 78877, 78878, 78879, 78880, 78881,
78882, 78883, 78884, 78885, 78886, 78887, 78888, 78889, 78890, 78891,
78910, 78908, 78903, 77908, 77909, 77904, 77905, 77906, 77907, 77910,
77911, 77912, 77913, 77915, 77916, 77917, 77918, 77914, 77919, 77920,
77921, 77922, 77923, 77924, 77925, 77926, 77927, 77928, 77929, 77930,
77931, 77932, 77933, 77934, 77935, 77936, 77937, 77938, 77939, 77940,
77941, 77949, 77950, 77942, 77943, 77944, 77945, 77946, 77947, 77948,
77951, 77974, 77975, 77978, 77979, 77973, 77976, 77977, 77980, 77981,
77982, 77983, 77984, 77991, 77992, 77994, 77995, 77985, 77986, 77987,
77988, 77989, 77990, 77993, 77996, 77997, 77998, 77999, 78000, 78001,
78002, 78003, 78004, 78005, 78006, 78008, 78009, 78011, 78012, 78007,
78010, 78013, 78014, 78015, 78016, 78017, 78025, 78026, 78027, 78028,
78029, 78030, 78031, 78032, 78033, 78018, 78019, 78020, 78021, 78022,
78023, 78024, 77969, 77970, 77962, 77963, 77964, 77965, 77966, 77967,
77968, 77971, 77972, 77952, 77953, 77954, 77955, 77956, 77957, 77958,
77959, 77960, 77961, 78041, 78042, 78043, 78044, 78034, 78035, 78036,
78037, 78038, 78039, 78040, 78057, 78058, 78066, 78067, 78059, 78060,
78061, 78062, 78063, 78064, 78065, 78068, 78073, 78074, 78069, 78070,
78071, 78072, 78075, 78076, 78077, 78051, 78052, 78053, 78054, 78045,
78046, 78047, 78048, 78049, 78050, 78055, 78056, 78911, 78909, 78904,
78078, 78079, 78080, 78081, 78082, 78083, 78084, 78085, 78086, 78087,
78091, 78092, 78088, 78089, 78090, 78093, 78094, 78095, 78096, 78097,
78098, 78111, 78112, 78118, 78119, 78120, 78121, 78110, 78113, 78114,
78115, 78116, 78117, 78122, 78128, 78129, 78130, 78131, 78132, 78133,
78123, 78124, 78125, 78126, 78127, 78134, 78135, 78137, 78138, 78139,
78140, 78136, 78141, 78142, 78100, 78101, 78099, 78102, 78103, 78104,
78105, 78106, 78107, 78108, 78109, 78913, 78150, 78151, 78152, 78148,
78149, 78143, 78144, 78145, 78146, 78147, 78153, 78154, 78156, 78157,
78155, 78158, 78159, 78160, 78161, 78162, 78163, 78164, 78165, 78184,
78185, 78186, 78187, 78178, 78179, 78180, 78181, 78182, 78183, 78188,
78189, 78193, 78194, 78196, 78197, 78190, 78191, 78192, 78195, 78198,
78199, 78200, 78201, 78166, 78167, 78173, 78174, 78168, 78169, 78170,
78171, 78172, 78175, 78176, 78177, 78202, 78203, 78204, 78205, 78206,
78212, 78213, 78207, 78208, 78209, 78210, 78211, 78214, 78215, 78914,
78916, 78897, 78220, 78221, 78225, 78226, 78216, 78217, 78218, 78219,
78222, 78223, 78224, 78227, 78228, 78229, 78230, 78231, 78232, 78233,
78234, 78907, 78901, 78899, 78906, 78900, 78898, 78905, 78244, 78245,
78249, 78250, 78243, 78246, 78247, 78248, 78251, 78252, 78915, 78253,
78254, 78255, 78257, 78258, 78256, 78259, 78260, 78261, 78262, 78263,
78264, 78268, 78269, 78270, 78271, 78272, 78273, 78274, 78275, 78276,
78265, 78266, 78279, 78280, 78281, 78282, 78283, 78284, 78267, 78277,
78278, 78285, 78286, 78289, 78290, 78292, 78293, 78297, 78298, 78287,
78288, 78291, 78294, 78295, 78296, 78299, 78304, 78305, 78306, 78301,
78302, 78300, 78303, 78307, 78308, 78309, 78310, 78311, 78312, 78313,
78314, 78315, 78316, 78317, 78318, 78933, 78928, 78920, 78924, 78932,
78926, 78921, 78929, 78925, 78923, 78931, 78919, 78927, 78922, 78930,
78912, 78336, 78337, 78338, 78328, 78329, 78330, 78331, 78332, 78333,
78334, 78335, 78339, 78354, 78355, 78356, 78357, 78358, 78359, 78361,
78362, 78351, 78352, 78353, 78360, 78363, 78364, 78345, 78346, 78340,
78341, 78342, 78343, 78344, 78347, 78348, 78349, 78350, 78365, 78366,
78367, 78319, 78320, 78321, 78322, 78323, 78324, 78325, 78326, 78327,
78372, 78373, 78368, 78369, 78370, 78371, 78374, 78375, 78376, 78377,
78385, 78386, 78378, 78379, 78380, 78381, 78382, 78383, 78384, 78387,
78388, 78389, 78399, 78400, 78401, 78402, 78409, 78410, 78403, 78404,
78405, 78406, 78407, 78408, 78411, 78414, 78415, 78412, 78413, 78390,
78391, 78392, 78393, 78394, 78395, 78396, 78397, 78398, 78423, 78424,
78425, 78426, 78427, 78428, 78429, 78416, 78417, 78421, 78422, 78418,
78419, 78420, 78430, 78431, 78432, 78433, 78434, 78435, 78436, 78445,
78446, 78437, 78438, 78439, 78440, 78441, 78442, 78443, 78444, 78447,
78448, 78452, 78453, 78454, 78455, 78459, 78460, 78449, 78450, 78451,
78456, 78457, 78458, 78469, 78470, 78471, 78472, 78473, 78461, 78462,
78465, 78466, 78463, 78464, 78467, 78468, 78474, 78475, 78476, 78487,
78488, 78489, 78490, 78477, 78478, 78479, 78480, 78481, 78482, 78483,
78484, 78485, 78486, 78902, 78491, 78492, 78494, 78495, 78493, 78496,
78497, 78498, 78499, 78500, 78501, 78502, 78503, 78514, 78515, 78516,
78512, 78513, 78511, 78517, 78518, 78519, 78520, 78521, 78522, 78523,
78524, 78530, 78531, 78525, 78526, 78527, 78528, 78529, 78532, 78533,
78534, 78535, 78536, 78537, 78538, 78539, 78540, 78541, 78542, 78543,
78544, 78546, 78547, 78551, 78552, 78545, 78548, 78549, 78550, 78553,
78554, 78555, 78560, 78561, 78562, 78565, 78566, 78556, 78557, 78558,
78559, 78563, 78564, 78567, 78568, 78575, 78576, 78577, 78569, 78570,
78571, 78572, 78573, 78574, 78578, 78579, 78580, 78586, 78587, 78581,
78582, 78583, 78584, 78585, 78588, 78589, 78590, 78591, 78592, 78593,
78594, 78595, 78596, 78597, 78598, 78601, 78602, 78606, 78607, 78608,
78609, 78610, 78611, 78599, 78600, 78603, 78604, 78605, 78613, 78614,
78619, 78620, 78612, 78615, 78616, 78617, 78618, 78621, 78622, 78623,
78636, 78637, 78638, 78639, 78634, 78635, 78640, 78641, 78642, 78624,
78625, 78626, 78627, 78628, 78629, 78630, 78631, 78632, 78633, 78917,
78648, 78649, 78650, 78643, 78644, 78645, 78646, 78647, 78651, 78652,
78653, 78667, 78668, 78674, 78675, 78664, 78665, 78666, 78669, 78670,
78671, 78672, 78673, 78678, 78679, 78676, 78677, 78680, 78681, 78682,
78683, 78684, 78685, 78686, 78687, 78688, 78689, 78654, 78655, 78656,
78657, 78658, 78659, 78660, 78661, 78662, 78663, 78706, 78707, 78708,
78690, 78691, 78692, 78693, 78694, 78695, 78696, 78697, 78698, 78699,
78700, 78701, 78702, 78703, 78704, 78705, 78709, 78710, 78712, 78713,
78714, 78715, 78895, 78716, 78717, 78718, 78711, 78719, 78720, 78721,
78722, 78723, 78724, 78725, 78726, 78727, 78728, 78729, 78730, 78731,
78732, 78733, 78734, 78735, 78736, 78737, 78738, 78741, 78742, 78747,
78748, 78749, 78750, 78739, 78740, 78743, 78744, 78745, 78746, 78751,
78752, 78753, 78754, 78756, 78757, 78761, 78762, 78755, 78758, 78759,
78760, 78763, 78764, 78765, 78766, 78896, 78769, 78770, 78776, 78777,
78767, 78768, 78771, 78772, 78773, 78774, 78775, 78778, 78779, 78783,
78784, 78787, 78788, 78789, 78790, 78780, 78781, 78782, 78785, 78786,
78791, 78796, 78797, 78792, 78793, 78794, 78795, 78798, 78918, 78802,
78803, 78804, 78806, 78807, 78809, 78810, 78799, 78800, 78801, 78805,
78808, 78811, 78812, 78813, 78814, 78815, 78816, 78817, 78818, 78819,
78821, 78822, 78823, 78824, 78825, 78826, 78827, 78828, 78829, 78830,
78831, 78832, 78820, 78833, 78834, 78835, 78836, 78842, 78843, 78844,
78845, 78846, 78847, 78848, 78849, 78850, 78851, 78852, 78853, 78854,
78855, 78856, 78857, 78858, 78859, 78860, 78837, 78838, 78839, 78840,
78841, 78235, 78236, 78237, 78238, 78239, 78240, 78241, 78242, 78504,
78505, 78506, 78507, 78508, 78509, 78510, 78944, 78945, 78946, 78947,
78948, 78949, 78950, 78951, 78952, 78953, 78954, 78955, 78956, 78957,
78958, 78959, 78960, 78961, 78962, 78963, 78964, 78965, 78966, 78967,
78968, 78969, 78970, 78971, 78972, 78973, 78974, 78975, 78976, 78977,
78978, 78979, 78980, 78981, 78982, 78983, 78984, 78985, 78986, 78987,
78988, 78989, 78990, 78991, 78992, 78993, 78994, 78995, 78996, 78997,
78998, 78999, 79000, 79001, 79002, 79003, 79004, 79005, 79006, 79007,
79008, 79009, 79010, 79011, 79012, 79013, 79014, 79015, 79016, 79017,
79018, 79019, 79020, 79021, 79022, 79023, 79024, 79025, 79026, 79027,
79028, 79029, 79030, 79031, 79032, 79033, 79034, 79035, 79036, 79037,
79038, 79039, 79040, 79041, 79042, 79043, 79044, 79045, 79046, 79047,
79048, 79049, 79050, 79051, 79052, 79053, 79054, 79055, 79056, 79057,
79058, 79059, 79060, 79061, 79062, 79063, 79064, 79065, 79066, 79067,
79068, 79069, 79070, 79071, 79072, 79073, 79074, 79075, 79076, 79077,
79078, 79079, 79080, 79081, 79082, 79083, 79084, 79085, 79086, 79087,
79088, 79089, 79090, 79091, 79092, 79093, 79094, 79095, 79096, 79097,
79098, 79099, 79100, 79101, 79102, 79103, 79104, 79105, 79106, 79107,
79108, 79109, 79110, 79111, 79112, 79113, 79114, 79115, 79116, 79117,
79118, 79119, 79120, 79121, 79122, 79123, 79124, 79125, 79126, 79127,
79128, 79129, 79130, 79131, 79132, 79133, 79134, 79135, 79136, 79137,
79138, 79139, 79140, 79141, 79142, 79143, 79144, 79145, 79146, 79147,
79148, 79149, 79150, 79151, 79152, 79153, 79154, 79155, 79156, 79157,
79158, 79159, 79160, 79161, 79162, 79163, 79164, 79165, 79166, 79167,
79168, 79169, 79170, 79171, 79172, 79173, 79174, 79175, 79176, 79177,
79178, 79179, 79180, 79181, 79182, 79183, 79184, 79185, 79186, 79187,
79188, 79189, 79190, 79191, 79192, 79193, 79194, 79195, 79196, 79197,
79198, 79199, 79200, 79201, 79202, 79203, 79204, 79205, 79206, 79207,
79208, 79209, 79210, 79211, 79212, 79213, 79214, 79215, 79216, 79217,
79218, 79219, 79220, 79221, 79222, 79223, 79224, 79225, 79226, 79227,
79228, 79229, 79230, 79231, 79232, 79233, 79234, 79235, 79236, 79237,
79238, 79239, 79240, 79241, 79242, 79243, 79244, 79245, 79246, 79247,
79248, 79249, 79250, 79251, 79252, 79253, 79254, 79255, 79256, 79257,
79258, 79259, 79260, 79261, 79262, 79263, 79264, 79265, 79266, 79267,
79268, 79269, 79270, 79271, 79272, 79273, 79274, 79275, 79276, 79277,
79278, 79279, 79280, 79281, 79282, 79283, 79284, 79285, 79286, 79287,
79288, 79289, 79290, 79291, 79292, 79293, 79294, 79295, 79296, 79297,
79298, 79299, 79300, 79301, 79302, 79303, 79304, 79305, 79306, 79307,
79308, 79309, 79310, 79311, 79312, 79313, 79314, 79315, 79316, 79317,
79318, 79319, 79320, 79321, 79322, 79323, 79324, 79325, 79326, 79327,
79328, 79329, 79330, 79331, 79332, 79333, 79334, 79335, 79336, 79337,
79338, 79339, 79340, 79341, 79342, 79343, 79344, 79345, 79346, 79347,
79348, 79349, 79350, 79351, 79352, 79353, 79354, 79355, 79356, 79357,
79358, 79359, 79360, 79361, 79362, 79363, 79364, 79365, 79366, 79367,
79368, 79369, 79370, 79371, 79372, 79373, 79374, 79375, 79376, 79377,
79378, 79379, 79380, 79381, 79382, 79383, 79384, 79385, 79386, 79387,
79388, 79389, 79390, 79391, 79392, 79393, 79394, 79395, 79396, 79397,
79398, 79399, 79400, 79401, 79402, 79403, 79404, 79405, 79406, 79407,
79408, 79409, 79410, 79411, 79412, 79413, 79414, 79415, 79416, 79417,
79418, 79419, 79420, 79421, 79422, 79423, 79424, 79425, 79426, 79427,
79428, 79429, 79430, 79431, 79432, 79433, 79434, 79435, 79436, 79437,
79438, 79439, 79440, 79441, 79442, 79443, 79444, 79445, 79446, 79447,
79448, 79449, 79450, 79451, 79452, 79453, 79454, 79455, 79456, 79457,
79458, 79459, 79460, 79461, 79462, 79463, 79464, 79465, 79466, 79467,
79468, 79469, 79470, 79471, 79472, 79473, 79474, 79475, 79476, 79477,
79478, 79479, 79480, 79481, 79482, 79483, 79484, 79485, 79486, 79487,
79488, 79489, 79490, 79491, 79492, 79493, 79494, 79495, 79496, 79497,
79498, 79499, 79500, 79501, 79502, 79503, 79504, 79505, 79506, 79507,
79508, 79509, 79510, 79511, 79512, 79513, 79514, 79515, 79516, 79517,
79518, 79519, 79520, 79521, 79522, 79523, 79524, 79525, 79526, 79527,
79528, 79529, 79530, 79531, 79532, 79533, 79534, 79535, 79536, 79537,
79538, 79539, 79540, 79541, 79542, 79543, 79544, 79545, 79546, 79547,
79548, 79549, 79550, 79551, 79552, 79553, 79554, 79555, 79556, 79557,
79558, 79559, 79560, 79561, 79562, 79563, 79564, 79565, 79566, 79567,
79568, 79569, 79570, 79571, 79572, 79573, 79574, 79575, 79576, 79577,
79578, 79579, 79580, 79581, 79582, 79583, 79584, 79585, 79586, 79587,
79588, 79589, 79590, 79591, 79592, 79593, 79594, 79595, 79596, 79597,
79598, 79599, 79600, 79601, 79602, 79603, 79604, 79605, 79606, 79607,
79608, 79609, 79610, 79611, 79612, 79613, 79614, 79615, 79616, 79617,
79618, 79619, 79620, 79621, 79622, 79623, 79624, 79625, 79626, 79627,
79628, 79629, 79630, 79631, 79632, 79633, 79634, 79635, 79636, 79637,
79638, 79639, 79640, 79641, 79642, 79643, 79644, 79645, 79646, 79647,
79648, 79649, 79650, 79651, 79652, 79653, 79654, 79655, 79656, 79657,
79658, 79659, 79660, 79661, 79662, 79663, 79664, 79665, 79666, 79667,
79668, 79669, 79670, 79671, 79672, 79673, 79674, 79675, 79676, 79677,
79678, 79679, 79680, 79681, 79682, 79683, 79684, 79685, 79686, 79687,
79688, 79689, 79690, 79691, 79692, 79693, 79694, 79695, 79696, 79697,
79698, 79699, 79700, 79701, 79702, 79703, 79704, 79705, 79706, 79707,
79708, 79709, 79710, 79711, 79712, 79713, 79714, 79715, 79716, 79717,
79718, 79719, 79720, 79721, 79722, 79723, 79724, 79725, 79726, 79727,
79728, 79729, 79730, 79731, 79732, 79733, 79734, 79735, 79736, 79737,
79738, 79739, 79740, 79741, 79742, 79743, 79744, 79745, 79746, 79747,
79748, 79749, 79750, 79751, 79752, 79753, 79754, 79755, 79756, 79757,
79758, 79759, 79760, 79761, 79762, 79763, 79764, 79765, 79766, 79767,
79768, 79769, 79770, 79771, 79772, 79773, 79774, 79775, 79776, 79777,
79778, 79779, 79780, 79781, 79782, 79783, 79784, 79785, 79786, 79787,
79788, 79789, 79790, 79791, 79792, 79793, 79794, 79795, 79796, 79797,
79798, 79799, 79800, 79801, 79802, 79803, 79804, 79805, 79806, 79807,
79808, 79809, 79810, 79811, 79812, 79813, 79814, 79815, 79816, 79817,
79818, 79819, 79820, 79821, 79822, 79823, 79824, 79825, 79826, 79827,
79828, 79829, 79830, 79831, 79832, 79833, 79834, 79835, 79836, 79837,
79838, 79839, 79840, 79841, 79842, 79843, 79844, 79845, 79846, 79847,
79848, 79849, 79850, 79851, 79852, 79853, 79854, 79855, 79856, 79857,
79858, 79859, 79860, 79861, 79862, 79863, 79864, 79865, 79866, 79867,
79868, 79869, 79870, 79871, 79872, 79873, 79874, 79875, 79876, 79877,
79878, 79879, 79880, 79881, 79882, 79883, 79884, 79885, 79886, 79887,
79888, 79889, 79890, 79891, 79892, 79893, 79894, 79895, 79896, 79897,
79898, 79899, 79900, 79901, 79902, 79903, 79904, 79905, 79906, 79907,
79908, 79909, 79910, 79911, 79912, 79913, 79914, 79915, 79916, 79917,
79918, 79919, 79920, 79921, 79922, 79923, 79924, 79925, 79926, 79927,
79928, 79929, 79930, 79931, 79932, 79933, 79934, 79935, 79936, 79937,
79938, 79939, 79940, 79941, 79942, 79943, 79944, 79945, 79946, 79947,
79948, 79949, 79950, 79951, 79952, 79953, 79954, 79955, 79956, 79957,
79958, 79959, 79960, 79961, 79962, 79963, 79964, 79965, 79966, 79967,
79968, 79969, 79970, 79971, 79972, 79973, 79974, 79975, 79976, 79977,
79978, 79979, 79980, 79981, 79982, 79983, 79984, 79985, 79986, 79987,
79988, 79989, 79990, 79991, 79992, 79993, 79994, 79995, 79996, 79997,
79998, 79999, 80000, 80001, 80002, 80003, 80004, 80005, 80006, 80007,
80008, 80009, 80010, 80011, 80012, 80013, 80014, 80015, 80016, 80017,
80018, 80019, 80020, 80021, 80022, 80023, 80024, 80025, 80026, 80027,
80028, 80029, 80030, 80031, 80032, 80033, 80034, 80035, 80036, 80037,
80038, 80039, 80040, 80041, 80042, 80043, 80044, 80045, 80046, 80047,
80048, 80049, 80050, 80051, 80052, 80053, 80054, 80055, 80056, 80057,
80058, 80059, 80060, 80061, 80062, 80063, 80064, 80065, 80066, 80067,
80068, 80069, 80070, 80071, 80072, 80073, 80074, 80075, 80076, 80077,
80078, 80079, 80080, 80081, 80082, 80083, 80084, 80085, 80086, 80087,
80088, 80089, 80090, 80091, 80092, 80093, 80094, 80095, 80096, 80097,
80098, 80099, 80100, 80101, 80102, 80103, 80104, 80105, 80106, 80107,
80108, 80109, 80110, 80111, 80112, 80113, 80114, 80115, 80116, 80117,
80118, 80119, 80120, 80121, 80122, 80123, 80124, 80125, 80126, 80127,
80128, 80129, 80130, 80131, 80132, 80133, 80134, 80135, 80136, 80137,
80138, 80139, 80140, 80141, 80142, 80143, 80144, 80145, 80146, 80147,
80148, 80149, 80150, 80151, 80152, 80153, 80154, 80155, 80156, 80157,
80158, 80159, 80160, 80161, 80162, 80163, 80164, 80165, 80166, 80167,
80168, 80169, 80170, 80171, 80172, 80173, 80174, 80175, 80176, 80177,
80178, 80179, 80180, 80181, 80182, 80183, 80184, 80185, 80186, 80187,
80188, 80189, 80190, 80191, 80192, 80193, 80194, 80195, 80196, 80197,
80198, 80199, 80200, 80201, 80202, 80203, 80204, 80205, 80206, 80207,
80208, 80209, 80210, 80211, 80212, 80213, 80214, 80215, 80216, 80217,
80218, 80219, 80220, 80221, 80222, 80223, 80224, 80225, 80226, 80227,
80228, 80229, 80230, 80231, 80232, 80233, 80234, 80235, 80236, 80237,
80238, 80239, 80240, 80241, 80242, 80243, 80244, 80245, 80246, 80247,
80248, 80249, 80250, 80251, 80252, 80253, 80254, 80255, 80256, 80257,
80258, 80259, 80260, 80261, 80262, 80263, 80264, 80265, 80266, 80267,
80268, 80269, 80270, 80271, 80272, 80273, 80274, 80275, 80276, 80277,
80278, 80279, 80280, 80281, 80282, 80283, 80284, 80285, 80286, 80287,
80288, 80289, 80290, 80291, 80292, 80293, 80294, 80295, 80296, 80297,
80298, 80299, 80300, 80301, 80302, 80303, 80304, 80305, 80306, 80307,
80308, 80309, 80310, 80311, 80312, 80313, 80314, 80315, 80316, 80317,
80318, 80319, 80320, 80321, 80322, 80323, 80324, 80325, 80326, 80327,
80328, 80329, 80330, 80331, 80332, 80333, 80334, 80335, 80336, 80337,
80338, 80339, 80340, 80341, 80342, 80343, 80344, 80345, 80346, 80347,
80348, 80349, 80350, 80351, 80352, 80353, 80354, 80355, 80356, 80357,
80358, 80359, 80360, 80361, 80362, 80363, 80364, 80365, 80366, 80367,
80368, 80369, 80370, 80371, 80372, 80373, 80374, 80375, 80376, 80377,
80378, 80379, 80380, 80381, 80382, 80383, 80384, 80385, 80386, 80387,
80388, 80389, 80390, 80391, 80392, 80393, 80394, 80395, 80396, 80397,
80398, 80399, 80400, 80401, 80402, 80403, 80404, 80405, 80406, 80407,
80408, 80409, 80410, 80411, 80412, 80413, 80414, 80415, 80416, 80417,
80418, 80419, 80420, 80421, 80422, 80423, 80424, 80425, 80426, 80427,
80428, 80429, 80430, 80431, 80432, 80433, 80434, 80435, 80436, 80437,
80438, 80439, 80440, 80441, 80442, 80443, 80444, 80445, 80446, 80447,
80448, 80449, 80450, 80451, 80452, 80453, 80454, 80455, 80456, 80457,
80458, 80459, 80460, 80461, 80462, 80463, 80464, 80465, 80466, 80467,
80468, 80469, 80470, 80471, 80472, 80473, 80474, 80475, 80476, 80477,
80478, 80479, 80480, 80481, 80482, 80483, 80484, 80485, 80486, 80487,
80488, 80489, 80490, 80491, 80492, 80493, 80494, 80495, 80496, 80497,
80498, 80499, 80500, 80501, 80502, 80503, 80504, 80505, 80506, 80507,
80508, 80509, 80510, 80511, 80512, 80513, 80514, 80515, 80516, 80517,
80518, 80519, 80520, 80521, 80522, 80523, 80524, 80525, 80526, 80527,
80528, 80529, 80530, 80531, 80532, 80533, 80534, 80535, 80536, 80537,
80538, 80539, 80540, 80541, 80542, 80543, 80544, 80545, 80546, 80547,
80548, 80549, 80550, 80551, 80552, 80553, 80554, 80555, 80556, 80557,
80558, 80559, 80560, 80561, 80562, 80563, 80564, 80565, 80566, 80567,
80568, 80569, 80570, 80571, 80572, 80573, 80574, 80575, 80576, 80577,
80578, 80579, 80580, 80581, 80582, 80583, 80584, 80585, 80586, 80587,
80588, 80589, 80590, 80591, 80592, 80593, 80594, 80595, 80596, 80597,
80598, 80599, 80600, 80601, 80602, 80603, 80604, 80605, 80606, 80607,
80608, 80609, 80610, 80611, 80612, 80613, 80614, 80615, 80616, 80617,
80618, 80619, 80620, 80621, 80622, 80623, 80624, 80625, 80626, 80627,
80628, 80629, 80630, 80631, 80632, 80633, 80634, 80635, 80636, 80637,
80638, 80639, 80640, 80641, 80642, 80643, 80644, 80645, 80646, 80647,
80648, 80649, 80650, 80651, 80652, 80653, 80654, 80655, 80656, 80657,
80658, 80659, 80660, 80661, 80662, 80663, 80664, 80665, 80666, 80667,
80668, 80669, 80670, 80671, 80672, 80673, 80674, 80675, 80676, 80677,
80678, 80679, 80680, 80681, 80682, 80683, 80684, 80685, 80686, 80687,
80688, 80689, 80690, 80691, 80692, 80693, 80694, 80695, 80696, 80697,
80698, 80699, 80700, 80701, 80702, 80703, 80704, 80705, 80706, 80707,
80708, 80709, 80710, 80711, 80712, 80713, 80714, 80715, 80716, 80717,
80718, 80719, 80720, 80721, 80722, 80723, 80724, 80725, 80726, 80727,
80728, 80729, 80730, 80731, 80732, 80733, 80734, 80735, 80736, 80737,
80738, 80739, 80740, 80741, 80742, 80743, 80744, 80745, 80746, 80747,
80748, 80749, 80750, 80751, 80752, 80753, 80754, 80755, 80756, 80757,
80758, 80759, 80760, 80761, 80762, 80763, 80764, 80765, 80766, 80767,
80768, 80769, 80770, 80771, 80772, 80773, 80774, 80775, 80776, 80777,
80778, 80779, 80780, 80781, 80782, 80783, 80784, 80785, 80786, 80787,
80788, 80789, 80790, 80791, 80792, 80793, 80794, 80795, 80796, 80797,
80798, 80799, 80800, 80801, 80802, 80803, 80804, 80805, 80806, 80807,
80808, 80809, 80810, 80811, 80812, 80813, 80814, 80815, 80816, 80817,
80818, 80819, 80820, 80821, 80822, 80823, 80824, 80825, 80826, 80827,
80828, 80829, 80830, 80831, 80832, 80833, 80834, 80835, 80836, 80837,
80838, 80839, 80840, 80841, 80842, 80843, 80844, 80845, 80846, 80847,
80848, 80849, 80850, 80851, 80852, 80853, 80854, 80855, 80856, 80857,
80858, 80859, 80860, 80861, 80862, 80863, 80864, 80865, 80866, 80867,
80868, 80869, 80870, 80871, 80872, 80873, 80874, 80875, 80876, 80877,
80878, 80879, 80880, 80881, 80882, 80883, 80884, 80885, 80886, 80887,
80888, 80889, 80890, 80891, 80892, 80893, 80894, 80895, 80896, 80897,
80898, 80899, 80900, 80901, 80902, 80903, 80904, 80905, 80906, 80907,
80908, 80909, 80910, 80911, 80912, 80913, 80914, 80915, 80916, 80917,
80918, 80919, 80920, 80921, 80922, 80923, 80924, 80925, 80926, 80927,
80928, 80929, 80930, 80931, 80932, 80933, 80934, 80935, 80936, 80937,
80938, 80939, 80940, 80941, 80942, 80943, 80944, 80945, 80946, 80947,
80948, 80949, 80950, 80951, 80952, 80953, 80954, 80955, 80956, 80957,
80958, 80959, 80960, 80961, 80962, 80963, 80964, 80965, 80966, 80967,
80968, 80969, 80970, 80971, 80972, 80973, 80974, 80975, 80976, 80977,
80978, 80979, 80980, 80981, 80982, 80983, 80984, 80985, 80986, 80987,
80988, 80989, 80990, 80991, 80992, 80993, 80994, 80995, 80996, 80997,
80998, 80999, 81000, 81001, 81002, 81003, 81004, 81005, 81006, 81007,
81008, 81009, 81010, 81011, 81012, 81013, 81014, 81015, 81016, 81017,
81018, 81019, 81020, 81021, 81022, 81023, 81024, 81025, 81026, 81027,
81028, 81029, 81030, 81031, 81032, 81033, 81034, 81035, 81036, 81037,
81038, 81039, 81040, 81041, 81042, 81043, 81044, 81045, 81046, 81047,
81048, 81049, 81050, 81051, 81052, 81053, 81054, 81055, 81056, 81057,
81058, 81059, 81060, 81061, 81062, 81063, 81064, 81065, 81066, 81067,
81068, 81069, 81070, 81071, 81072, 81073, 81074, 81075, 81076, 81077,
81078, 81079, 81080, 81081, 81082, 81083, 81084, 81085, 81086, 81087,
81088, 81089, 81090, 81091, 81092, 81093, 81094, 81095, 81096, 81097,
81098, 81099, 81100, 81101, 81102, 81103, 81104, 81105, 81106, 81107,
81108, 81109, 81110, 81111, 81112, 81113, 81114, 81115, 81116, 81117,
81118, 81119, 81120, 81121, 81122, 81123, 81124, 81125, 81126, 81127,
81128, 81129, 81130, 81131, 81132, 81133, 81134, 81135, 81136, 81137,
81138, 81139, 81140, 81141, 81142, 81143, 81144, 81145, 81146, 81147,
81148, 81149, 81150, 81151, 81152, 81153, 81154, 81155, 81156, 81157,
81158, 81159, 81160, 81161, 81162, 81163, 81164, 81165, 81166, 81167,
81168, 81169, 81170, 81171, 81172, 81173, 81174, 81175, 81176, 81177,
81178, 81179, 81180, 81181, 81182, 81183, 81184, 81185, 81186, 81187,
81188, 81189, 81190, 81191, 81192, 81193, 81194, 81195, 81196, 81197,
81198, 81199, 81200, 81201, 81202, 81203, 81204, 81205, 81206, 81207,
81208, 81209, 81210, 81211, 81212, 81213, 81214, 81215, 81216, 81217,
81218, 81219, 81220, 81221, 81222, 81223, 81224, 81225, 81226, 81227,
81228, 81229, 81230, 81231, 81232, 81233, 81234, 81235, 81236, 81237,
81238, 81239, 81240, 81241, 81242, 81243, 81244, 81245, 81246, 81247,
81248, 81249, 81250, 81251, 81252, 81253, 81254, 81255, 81256, 81257,
81258, 81259, 81260, 81261, 81262, 81263, 81264, 81265, 81266, 81267,
81268, 81269, 81270, 81271, 81272, 81273, 81274, 81275, 81276, 81277,
81278, 81279, 81280, 81281, 81282, 81283, 81284, 81285, 81286, 81287,
81288, 81289, 81290, 81291, 81292, 81293, 81294, 81295, 81296, 81297,
81298, 81299, 81300, 81301, 81302, 81303, 81304, 81305, 81306, 81307,
81308, 81309, 81310, 81311, 81312, 81313, 81314, 81315, 81316, 81317,
81318, 81319, 81320, 81321, 81322, 81323, 81324, 81325, 81326, 81327,
81328, 81329, 81330, 81331, 81332, 81333, 81334, 81335, 81336, 81337,
81338, 81339, 81340, 81341, 81342, 81343, 81344, 81345, 81346, 81347,
81348, 81349, 81350, 81351, 81352, 81353, 81354, 81355, 81356, 81357,
81358, 81359, 81360, 81361, 81362, 81363, 81364, 81365, 81366, 81367,
81368, 81369, 81370, 81371, 81372, 81373, 81374, 81375, 81376, 81377,
81378, 81379, 81380, 81381, 81382, 81383, 81384, 81385, 81386, 81387,
81388, 81389, 81390, 81391, 81392, 81393, 81394, 81395, 81396, 81397,
81398, 81399, 81400, 81401, 81402, 81403, 81404, 81405, 81406, 81407,
81408, 81409, 81410, 81411, 81412, 81413, 81414, 81415, 81416, 81417,
81418, 81419, 81420, 81421, 81422, 81423, 81424, 81425, 81426, 81427,
81428, 81429, 81430, 81431, 81432, 81433, 81434, 81435, 81436, 81437,
81438, 81439, 81440, 81441, 81442, 81443, 81444, 81445, 81446, 81447,
81448, 81449, 81450, 81451, 81452, 81453, 81454, 81455, 81456, 81457,
81458, 81459, 81460, 81461, 81462, 81463, 81464, 81465, 81466, 81467,
81468, 81469, 81470, 81471, 81472, 81473, 81474, 81475, 81476, 81477,
81478, 81479, 81480, 81481, 81482, 81483, 81484, 81485, 81486, 81487,
81488, 81489, 81490, 81491, 81492, 81493, 81494, 81495, 81496, 81497,
81498, 81499, 81500, 81501, 81502, 81503, 81504, 81505, 81506, 81507,
81508, 81509, 81510, 81511, 81512, 81513, 81514, 81515, 81516, 81517,
81518, 81519, 81520, 81521, 81522, 81523, 81524, 81525, 81526, 81527,
81528, 81529, 81530, 81531, 81532, 81533, 81534, 81535, 81536, 81537,
81538, 81539, 81540, 81541, 81542, 81543, 81544, 81545, 81546, 81547,
81548, 81549, 81550, 81551, 81552, 81553, 81554, 81555, 81556, 81557,
81558, 81559, 81560, 81561, 81562, 81563, 81564, 81565, 81566, 81567,
81568, 81569, 81570, 81571, 81572, 81573, 81574, 81575, 81576, 81577,
81578, 81579, 81580, 81581, 81582, 81583, 81584, 81585, 81586, 81587,
81588, 81589, 81590, 81591, 81592, 81593, 81594, 81595, 81596, 81597,
81598, 81599, 81600, 81601, 81602, 81603, 81604, 81605, 81606, 81607,
81608, 81609, 81610, 81611, 81612, 81613, 81614, 81615, 81616, 81617,
81618, 81619, 81620, 81621, 81622, 81623, 81624, 81625, 81626, 81627,
81628, 81629, 81630, 81631, 81632, 81633, 81634, 81635, 81636, 81637,
81638, 81639, 81640, 81641, 81642, 81643, 81644, 81645, 81646, 81647,
81648, 81649, 81650, 81651, 81652, 81653, 81654, 81655, 81656, 81657,
81658, 81659, 81660, 81661, 81662, 81663, 81664, 81665, 81666, 81667,
81668, 81669, 81670, 81671, 81672, 81673, 81674, 81675, 81676, 81677,
81678, 81679, 81680, 81681, 81682, 81683, 81684, 81685, 81686, 81687,
81688, 81689, 81690, 81691, 81692, 81693, 81694, 81695, 81696, 81697,
81698, 81699, 81700, 81701, 81702, 81703, 81704, 81705, 81706, 81707,
81708, 81709, 81710, 81711, 81712, 81713, 81714, 81715, 81716, 81717,
81718, 81719, 81720, 81721, 81722, 81723, 81724, 81725, 81726, 81727,
81728, 81729, 81730, 81731, 81732, 81733, 81734, 81735, 81736, 81737,
81738, 81739, 81740, 81741, 81742, 81743, 81744, 81745, 81746, 81747,
81748, 81749, 81750, 81751, 81752, 81753, 81754, 81755, 81756, 81757,
81758, 81759, 81760, 81761, 81762, 81763, 81764, 81765, 81766, 81767,
81768, 81769, 81770, 81771, 81772, 81773, 81774, 81775, 81776, 81777,
81778, 81779, 81780, 81781, 81782, 81783, 81784, 81785, 81786, 81787,
81788, 81789, 81790, 81791, 81792, 81793, 81794, 81795, 81796, 81797,
81798, 81799, 81800, 81801, 81802, 81803, 81804, 81805, 81806, 81807,
81808, 81809, 81810, 81811, 81812, 81813, 81814, 81815, 81816, 81817,
81818, 81819, 81820, 81821, 81822, 81823, 81824, 81825, 81826, 81827,
81828, 81829, 81830, 81831, 81832, 81833, 81834, 81835, 81836, 81837,
81838, 81839, 81840, 81841, 81842, 81843, 81844, 81845, 81846, 81847,
81848, 81849, 81850, 81851, 81852, 81853, 81854, 81855, 81856, 81857,
81858, 81859, 81860, 81861, 81862, 81863, 81864, 81865, 81866, 81867,
81868, 81869, 81870, 81871, 81872, 81873, 81874, 81875, 81876, 81877,
81878, 81879, 81880, 81881, 81882, 81883, 81884, 81885, 81886, 81887,
81888, 81889, 81890, 81891, 81892, 81893, 81894, 81895, 81896, 81897,
81898, 81899, 81900, 81901, 81902, 81903, 81904, 81905, 81906, 81907,
81908, 81909, 81910, 81911, 81912, 81913, 81914, 81915, 81916, 81917,
81918, 81919, 82928, 82929, 82930, 82931, 82932, 82933, 82934, 82935,
82936, 82937, 82938, 82688, 82689, 82690, 82691, 82692, 82693, 82694,
82695, 82696, 82697, 82698, 82699, 82700, 82701, 82702, 82703, 82704,
82705, 82706, 82707, 82708, 82709, 82710, 82711, 82712, 82713, 82714,
82715, 82716, 82717, 82718, 82719, 82720, 82721, 82722, 82723, 82724,
82725, 82726, 82727, 82728, 82729, 82730, 82731, 82732, 82733, 82734,
82735, 82736, 82737, 82738, 82739, 82740, 82741, 82742, 82743, 82744,
82745, 82746, 82747, 82748, 82749, 82750, 82751, 82752, 82753, 82754,
82755, 82756, 82757, 82758, 82759, 82760, 82761, 82762, 82763, 82764,
82765, 82766, 82767, 82768, 82769, 82770, 82771, 82772, 82773, 82774,
82775, 82776, 82777, 82778, 82779, 82780, 82781, 82782, 82783, 82784,
82785, 82786, 82787, 82788, 82789, 82790, 82791, 82792, 82793, 82794,
82795, 82796, 82797, 82798, 82799, 82800, 82801, 82802, 82803, 82804,
82805, 82806, 82807, 82808, 82809, 82810, 82811, 82812, 82813, 82814,
82815, 82816, 82817, 82818, 82819, 82820, 82821, 82822, 82823, 82824,
82825, 82826, 82827, 82828, 82829, 82830, 82831, 82832, 82833, 82834,
82835, 82836, 82837, 82838, 82839, 82840, 82841, 82842, 82843, 82844,
82845, 82846, 82847, 82848, 82849, 82850, 82851, 82852, 82853, 82854,
82855, 82856, 82857, 82858, 82859, 82860, 82861, 82862, 82863, 82864,
82865, 82866, 82867, 82868, 82869, 82870, 82871, 82872, 82873, 82874,
82875, 82876, 82877, 82878, 82879, 82880, 82881, 82882, 82883, 82884,
82885, 82886, 82887, 82888, 82889, 82890, 82891, 82892, 82893, 82894,
82895, 82896, 82897, 82898, 82899, 82900, 82901, 82902, 82903, 82904,
82905, 82906, 82907, 82908, 82909, 82910, 82911, 82912, 82913, 82914,
82915, 82916, 82917, 82918, 82919, 82920, 82921, 82922, 82923, 82924,
82925, 82926, 82927, 81920, 81921, 81922, 81923, 81924, 81925, 81926,
81927, 81928, 81929, 81930, 81931, 81932, 81933, 81934, 81935, 81936,
81937, 81938, 81939, 81940, 81941, 81942, 81943, 81944, 81945, 81946,
81947, 81948, 81949, 81950, 81951, 81952, 81953, 81954, 81955, 81956,
81957, 81958, 81959, 81960, 81961, 81962, 81963, 81964, 81965, 81966,
81967, 81968, 81969, 81970, 81971, 81972, 81973, 81974, 81975, 81976,
81977, 81978, 81979, 81980, 81981, 81982, 81983, 81984, 81985, 81986,
81987, 81988, 81989, 81990, 81991, 81992, 81993, 81994, 81995, 81996,
81997, 81998, 81999, 82000, 82001, 82002, 82003, 82004, 82005, 82006,
82007, 82008, 82009, 82010, 82011, 82012, 82013, 82014, 82015, 82016,
82017, 82018, 82019, 82020, 82021, 82022, 82023, 82024, 82025, 82026,
82027, 82028, 82029, 82030, 82031, 82032, 82033, 82034, 82035, 82036,
82037, 82038, 82039, 82040, 82041, 82042, 82043, 82044, 82045, 82046,
82047, 82048, 82049, 82050, 82051, 82052, 82053, 82054, 82055, 82056,
82057, 82058, 82059, 82060, 82061, 82062, 82063, 82064, 82065, 82066,
82067, 82068, 82069, 82070, 82071, 82072, 82073, 82074, 82075, 82076,
82077, 82078, 82079, 82080, 82081, 82082, 82083, 82084, 82085, 82086,
82087, 82088, 82089, 82090, 82091, 82092, 82093, 82094, 82095, 82096,
82097, 82098, 82099, 82100, 82101, 82102, 82103, 82104, 82105, 82106,
82107, 82108, 82109, 82110, 82111, 82112, 82113, 82114, 82115, 82116,
82117, 82118, 82119, 82120, 82121, 82122, 82123, 82124, 82125, 82126,
82127, 82128, 82129, 82130, 82131, 82132, 82133, 82134, 82135, 82136,
82137, 82138, 82139, 82140, 82141, 82142, 82143, 82144, 82145, 82146,
82147, 82148, 82149, 82150, 82151, 82152, 82153, 82154, 82155, 82156,
82157, 82158, 82159, 82160, 82161, 82162, 82163, 82164, 82165, 82166,
82167, 82168, 82169, 82170, 82171, 82172, 82173, 82174, 82175, 82176,
82177, 82178, 82179, 82180, 82181, 82182, 82183, 82184, 82185, 82186,
82187, 82188, 82189, 82190, 82191, 82192, 82193, 82194, 82195, 82196,
82197, 82198, 82199, 82200, 82201, 82202, 82203, 82204, 82205, 82206,
82207, 82208, 82209, 82210, 82211, 82212, 82213, 82214, 82215, 82216,
82217, 82218, 82219, 82220, 82221, 82222, 82223, 82224, 82225, 82226,
82227, 82228, 82229, 82230, 82231, 82232, 82233, 82234, 82235, 82236,
82237, 82238, 82239, 82240, 82241, 82242, 82243, 82244, 82245, 82246,
82247, 82248, 82249, 82250, 82251, 82252, 82253, 82254, 82255, 82256,
82257, 82258, 82259, 82260, 82261, 82262, 82263, 82264, 82265, 82266,
82267, 82268, 82269, 82270, 82271, 82272, 82273, 82274, 82275, 82276,
82277, 82278, 82279, 82280, 82281, 82282, 82283, 82284, 82285, 82286,
82287, 82288, 82289, 82290, 82291, 82292, 82293, 82294, 82295, 82296,
82297, 82298, 82299, 82300, 82301, 82302, 82303, 82304, 82305, 82306,
82307, 82308, 82309, 82310, 82311, 82312, 82313, 82314, 82315, 82316,
82317, 82318, 82319, 82320, 82321, 82322, 82323, 82324, 82325, 82326,
82327, 82328, 82329, 82330, 82331, 82332, 82333, 82334, 82335, 82336,
82337, 82338, 82339, 82340, 82341, 82342, 82343, 82344, 82345, 82346,
82347, 82348, 82349, 82350, 82351, 82352, 82353, 82354, 82355, 82356,
82357, 82358, 82359, 82360, 82361, 82362, 82363, 82364, 82365, 82366,
82367, 82368, 82369, 82370, 82371, 82372, 82373, 82374, 82375, 82376,
82377, 82378, 82379, 82380, 82381, 82382, 82383, 82384, 82385, 82386,
82387, 82388, 82389, 82390, 82391, 82392, 82393, 82394, 82395, 82396,
82397, 82398, 82399, 82400, 82401, 82402, 82403, 82404, 82405, 82406,
82407, 82408, 82409, 82410, 82411, 82412, 82413, 82414, 82415, 82416,
82417, 82418, 82419, 82420, 82421, 82422, 82423, 82424, 82425, 82426,
82427, 82428, 82429, 82430, 82431, 82432, 82433, 82434, 82435, 82436,
82437, 82438, 82439, 82440, 82441, 82442, 82443, 82444, 82445, 82446,
82447, 82448, 82449, 82450, 82451, 82452, 82453, 82454, 82455, 82456,
82457, 82458, 82459, 82460, 82461, 82462, 82463, 82464, 82465, 82466,
82467, 82468, 82469, 82470, 82471, 82472, 82473, 82474, 82475, 82476,
82477, 82478, 82479, 82480, 82481, 82482, 82483, 82484, 82485, 82486,
82487, 82488, 82489, 82490, 82491, 82492, 82493, 82494, 82495, 82496,
82497, 82498, 82499, 82500, 82501, 82502, 82503, 82504, 82505, 82506,
82507, 82508, 82509, 82510, 82511, 82512, 82513, 82514, 82515, 82516,
82517, 82518, 82519, 82520, 82521, 82522, 82523, 82524, 82525, 82526,
82527, 82528, 82529, 82530, 82531, 82532, 82533, 82534, 82535, 82536,
82537, 82538, 82539, 82540, 82541, 82542, 82543, 82544, 82545, 82546,
82547, 82548, 82549, 82550, 82551, 82552, 82553, 82554, 82555, 82556,
82557, 82558, 82559, 82560, 82561, 82562, 82563, 82564, 82565, 82566,
82567, 82568, 82569, 82570, 82571, 82572, 82573, 82574, 82575, 82576,
82577, 82578, 82579, 82580, 82581, 82582, 82583, 82584, 82585, 82586,
82587, 82588, 82589, 82590, 82591, 82592, 82593, 82594, 82595, 82596,
82597, 82598, 82599, 82600, 82601, 82602, 82603, 82604, 82605, 82606,
82607, 82608, 82609, 82610, 82611, 82612, 82613, 82614, 82615, 82616,
82617, 82618, 82619, 82620, 82621, 82622, 82623, 82624, 82625, 82626,
82627, 82628, 82629, 82630, 82631, 82632, 82633, 82634, 82635, 82636,
82637, 82638, 82639, 82640, 82641, 82642, 82643, 82644, 82645, 82646,
82647, 82648, 82649, 82650, 82651, 82652, 82653, 82654, 82655, 82656,
82657, 82658, 82659, 82660, 82661, 82662, 82663, 82664, 82665, 82666,
82667, 82668, 82669, 82670, 82671, 82672, 82673, 82674, 82675, 82676,
82677, 82678, 82679, 82680, 82681, 82682, 82683, 82684, 82685, 82686,
82687, 118470, 129370, 10037, 10039, 10036, 10049, 117865, 117866, 10058,
10035, 9834, 66854, 66853, 66827, 66826, 66833, 66832, 66821, 66837,
66836, 66835, 66842, 66841, 66824, 66823, 66819, 66818, 66822, 66820,
66855, 66831, 66844, 66843, 66846, 66845, 66852, 66851, 66817, 66825,
66828, 66830, 66834, 66839, 66840, 66848, 66849, 66816, 66829, 66838,
66847, 66850, 128268, 128294, 128161, 8961, 9191, 8712, 8946, 8953, 8947,
8952, 8950, 8949, 10969, 10194, 128024, 128727, 69608, 69621, 69603,
69611, 69618, 69619, 69600, 69615, 69602, 69606, 69614, 69617, 69620,
69609, 69604, 69607, 69610, 69601, 69613, 69605, 69616, 69612, 69622,
129501, 983101, 129456, 129457, 129459, 129458, 127995, 127996, 127997,
127998, 127999, 128453, 128454, 128455, 129721, 128460, 128461, 8709,
10675, 10676, 10674, 10673, 128459, 9091, 8193, 8212, 8195, 8192, 8211,
8194, 983179, 8718, 983178, 983135, 983099, 983048, 983095, 983046,
983064, 128282, 983051, 983050, 9993, 128388, 128233, 9094, 983067,
983100, 983049, 8926, 8927, 8925, 8924, 8797, 8917, 61, 10865, 10867,
11072, 10609, 10723, 10724, 10926, 11257, 11158, 10871, 10854, 10862,
8789, 10872, 8781, 8794, 10738, 10736, 10734, 10739, 10737, 10735, 11249,
11248, 9003, 8998, 983105, 983104, 8494, 8793, 983136, 4957, 4959, 4958,
4963, 4965, 4978, 4988, 4980, 4979, 4987, 4985, 4982, 4981, 4986, 4984,
4983, 4968, 4966, 4964, 4960, 4999, 4998, 4711, 4997, 43816, 43819,
43821, 43820, 43818, 43822, 43817, 4704, 4707, 4710, 11653, 4709, 4708,
4706, 4705, 43808, 43811, 43813, 43812, 43810, 43814, 43809, 11704,
11707, 11709, 11708, 11706, 11710, 11705, 11688, 11691, 11693, 11692,
11690, 11694, 11689, 4904, 4907, 4910, 11664, 4909, 4908, 4911, 4906,
4905, 4728, 4731, 4734, 11655, 4733, 4732, 4735, 4730, 4729, 43789,
43788, 43787, 43786, 43790, 43785, 4856, 4859, 4862, 11661, 4861, 4860,
4863, 4858, 4857, 43797, 43796, 43795, 43794, 43798, 43793, 4848, 4851,
4854, 11660, 4853, 4852, 4855, 4850, 4849, 5003, 5002, 4943, 5001, 4936,
4939, 4941, 4940, 4954, 4938, 4942, 4937, 4873, 124916, 124915, 124924,
124923, 124910, 124909, 124926, 124925, 124922, 124921, 124920, 124919,
124918, 124917, 124914, 124913, 124912, 124904, 11667, 4895, 11670,
11669, 11668, 4888, 4891, 4893, 4892, 4890, 4894, 4889, 4768, 4771, 4774,
11658, 4773, 4772, 4775, 4770, 4769, 4880, 4883, 4885, 4884, 4882, 11736,
11739, 11741, 11740, 11738, 11742, 11737, 4872, 4875, 4878, 4879, 4877,
4876, 4874, 124907, 124906, 4631, 124905, 124896, 124899, 124901, 124900,
124898, 124902, 124897, 4624, 4627, 4629, 4628, 4626, 4630, 4625, 4608,
4611, 4614, 4615, 4613, 4612, 4610, 4609, 4800, 4803, 4805, 4804, 4802,
4792, 4795, 4797, 4796, 4794, 4798, 4793, 4784, 4787, 4789, 4788, 4786,
11720, 11723, 11725, 11724, 11722, 11726, 11721, 4776, 4779, 4782, 4783,
4781, 4780, 4778, 4777, 4995, 4994, 4639, 4993, 4632, 4635, 4638, 11649,
4637, 4636, 4953, 4634, 4633, 4760, 4763, 4766, 11657, 4765, 4764, 4767,
4762, 4761, 4752, 4755, 4758, 11656, 4757, 4756, 4759, 4754, 4753, 4912,
4816, 4819, 4821, 4820, 4818, 4822, 4817, 4915, 4918, 11665, 4917, 4916,
4919, 4914, 4913, 5007, 5006, 4951, 5005, 4944, 4947, 4950, 11666, 4949,
4948, 4946, 4945, 4696, 4699, 4701, 4700, 4698, 4688, 4691, 4693, 4692,
4690, 4694, 4689, 4680, 4683, 4685, 4684, 4682, 11712, 11715, 11717,
11716, 11714, 11718, 11713, 4672, 4675, 4678, 4679, 4677, 4676, 4674,
4673, 4648, 4651, 4654, 11650, 4653, 4652, 4655, 4952, 4650, 4649, 4661,
4996, 5000, 4992, 5004, 4660, 4664, 4667, 4670, 11652, 4669, 4668, 4671,
4666, 4665, 4640, 4643, 4645, 4644, 4647, 4642, 4646, 4641, 11680, 11683,
11685, 11684, 11682, 11686, 11681, 4656, 4659, 4662, 11651, 4663, 4658,
4657, 4896, 4899, 4902, 11663, 4901, 4900, 4903, 4898, 4897, 43781,
43780, 43779, 43778, 43782, 43777, 4928, 4931, 4934, 4935, 4933, 4932,
4930, 4929, 4920, 4923, 4925, 4924, 4927, 4922, 4926, 4921, 4720, 4723,
4726, 11654, 4725, 4724, 4727, 4722, 4721, 4864, 4867, 4870, 11662, 4869,
4868, 4871, 4866, 4865, 4616, 4619, 4622, 11648, 4621, 4620, 4623, 4618,
4617, 4808, 4811, 4814, 4815, 4813, 4812, 4810, 4809, 4840, 4843, 4846,
4847, 4845, 4844, 4842, 4841, 4744, 4747, 4749, 4748, 4746, 11728, 11731,
11733, 11732, 11730, 11734, 11729, 4736, 4739, 4742, 4743, 4741, 4740,
4738, 4737, 4832, 4835, 4837, 4836, 4839, 4834, 4838, 4833, 11696, 11699,
11701, 11700, 11698, 11702, 11697, 4824, 4827, 4830, 11659, 4829, 4828,
4831, 4826, 4825, 4712, 4715, 4717, 4716, 4719, 4714, 4718, 4713, 5009,
5016, 5012, 5015, 5013, 5017, 5010, 5011, 5014, 5008, 4973, 4972, 4975,
4974, 4971, 4970, 4977, 4969, 4976, 4962, 4967, 4961, 983096, 983047,
127984, 127972, 8352, 8364, 118472, 8455, 8265, 33, 8761, 118269, 118270,
118271, 118274, 128529, 128942, 128954, 128948, 128905, 128915, 128935,
128125, 1781, 1780, 1783, 1782, 1779, 1778, 1776, 1785, 1777, 1784,
128065, 128083, 128064, 128231, 9167, 127794, 983180, 128523, 128561,
129312, 128531, 129301, 128567, 129488, 128582, 128558, 129326, 128560,
129762, 129320, 128581, 129395, 129763, 129402, 128539, 128540, 128541,
128514, 129298, 129769, 129323, 128580, 128548, 129764, 129396, 128566,
129318, 128134, 128536, 129401, 8507, 127981, 10540, 10543, 9950, 127810,
129478, 128439, 128224, 128106, 9771, 127877, 129498, 128552, 129718,
170, 9792, 127905, 9972, 129338, 8210, 8199, 129775, 128193, 128452,
983107, 128253, 127902, 129734, 10765, 128293, 128658, 129519, 127879,
127878, 129512, 9789, 127771, 127763, 8296, 129351, 128031, 127907, 9673,
127845, 128074, 8281, 11821, 127953, 129407, 129747, 9189, 117910, 9971,
129449, 128170, 9884, 118466, 10086, 9880, 8277, 127924, 128190, 128563,
129672, 129712, 128760, 117834, 117835, 118011, 129359, 128389, 127787,
127745, 129709, 128448, 129462, 128099, 127860, 127869, 11792, 10972,
129376, 118476, 983071, 8704, 8873, 10021, 11156, 8280, 8283, 10019,
127808, 10018, 128966, 8732, 8197, 9970, 129749, 129418, 8260, 8543,
128444, 128446, 128445, 118458, 127839, 8355, 129398, 10156, 128037,
8994, 128550, 128056, 127844, 127773, 127765, 10199, 9608, 46, 65342,
65312, 65292, 65306, 65504, 65375, 65371, 65288, 65339, 65308, 65313,
65314, 65315, 65316, 65317, 65318, 65319, 65320, 65321, 65322, 65323,
65324, 65325, 65326, 65327, 65328, 65329, 65330, 65331, 65332, 65333,
65334, 65335, 65336, 65337, 65338, 65345, 65346, 65347, 65348, 65349,
65350, 65351, 65352, 65353, 65354, 65355, 65356, 65357, 65358, 65359,
65360, 65361, 65362, 65363, 65364, 65365, 65366, 65367, 65368, 65369,
65370, 65343, 65506, 65283, 65505, 65285, 65291, 65376, 65373, 65289,
65341, 65340, 65307, 65295, 65509, 65507, 65287, 65286, 65290, 65284,
65301, 65300, 65303, 65302, 65299, 65298, 65296, 65305, 65297, 65304,
65309, 65281, 65344, 65310, 65293, 65282, 65311, 65510, 65374, 65294,
65508, 65372, 8289, 9905, 118280, 9981, 9179, 983215, 983216, 983217,
983219, 983108, 983236, 983072, 68972, 68971, 68973, 68970, 68964, 68965,
68959, 68961, 68948, 68945, 68954, 68960, 68953, 68963, 68949, 68947,
68952, 68946, 68962, 68958, 68950, 68957, 68951, 68955, 68956, 68944,
68996, 68997, 68991, 68993, 68980, 68977, 68986, 68992, 68985, 68995,
68981, 68979, 68984, 68978, 68994, 68990, 68982, 68989, 68983, 68987,
68988, 68976, 68943, 68969, 68941, 68938, 68939, 68940, 68942, 68975,
68974, 69006, 69007, 68933, 68932, 68935, 68934, 68931, 68930, 68928,
68937, 68929, 68936, 129476, 127922, 9881, 9965, 9966, 128142, 9802,
118501, 118506, 118498, 118503, 118510, 118505, 118502, 118508, 118499,
118504, 118497, 118507, 118509, 118496, 118500, 118511, 8782, 8785, 8762,
4301, 4256, 4288, 4292, 4290, 4293, 4289, 4281, 4285, 4284, 4282, 4278,
4258, 4287, 4283, 4277, 4265, 4276, 4270, 4280, 4273, 4271, 4262, 4263,
4274, 4266, 4272, 4257, 4267, 4286, 4268, 4279, 4261, 4259, 4260, 4264,
4269, 4275, 4295, 4291, 11565, 11520, 11552, 11556, 11554, 11557, 11553,
11545, 11549, 11548, 11546, 11542, 11522, 11551, 11547, 11541, 11529,
11540, 11534, 11544, 11537, 11535, 11526, 11527, 11538, 11530, 11536,
11521, 11531, 11550, 11532, 11543, 11525, 11523, 11524, 11528, 11533,
11539, 11559, 11555, 983955, 4323, 4349, 4346, 4304, 4329, 4333, 4332,
4330, 4344, 4308, 4326, 4306, 4340, 4350, 4336, 4338, 4341, 4337, 4335,
4331, 4325, 4313, 4351, 4314, 4324, 4318, 4328, 4321, 4345, 4311, 4322,
4319, 4310, 4320, 4305, 4315, 4334, 4316, 4327, 4309, 4307, 4312, 4317,
4343, 4339, 4342, 7357, 7354, 7312, 7337, 7341, 7340, 7338, 7352, 7316,
7334, 7314, 7348, 7358, 7344, 7346, 7349, 7345, 7343, 7339, 7333, 7321,
7359, 7322, 7332, 7326, 7336, 7329, 7353, 7319, 7330, 7327, 7318, 7328,
7313, 7323, 7342, 7324, 7335, 7317, 7315, 7320, 7325, 7331, 7351, 7347,
7350, 4347, 8368, 12307, 129502, 8503, 129754, 128103, 128714, 129426,
11264, 11304, 11265, 11311, 11293, 11276, 11268, 11271, 11287, 11306,
11267, 11275, 11274, 11305, 11303, 11307, 11273, 11310, 11278, 11279,
11280, 11281, 11289, 11282, 11290, 11283, 11291, 11308, 11294, 11284,
11298, 11300, 11301, 11285, 11309, 11292, 11266, 11269, 11296, 11295,
11297, 11302, 11299, 11272, 11270, 11288, 11286, 11277, 11312, 11352,
11313, 11359, 11341, 11324, 11316, 11319, 11335, 11354, 11315, 11323,
11322, 11353, 11351, 11355, 11321, 11358, 11326, 11327, 11328, 11329,
11337, 11330, 11338, 11331, 11339, 11356, 11342, 11332, 11346, 11348,
11349, 11333, 11357, 11340, 11314, 11317, 11344, 11343, 11345, 11350,
11347, 11320, 11318, 11336, 11334, 11325, 129371, 127760, 127775, 129508,
10726, 129349, 128016, 66356, 66352, 66376, 66359, 66358, 66375, 66378,
66369, 66365, 66368, 66357, 66370, 66360, 66372, 66373, 66367, 66374,
66353, 66377, 66355, 66364, 66361, 66363, 66371, 66366, 66354, 66362,
129421, 129405, 128893, 129727, 127948, 127891, 70495, 70494, 70411,
70496, 70412, 70497, 70453, 70405, 70406, 70416, 70420, 70434, 70433,
70439, 70438, 70432, 70431, 70437, 70436, 70409, 70410, 70407, 70408,
70451, 70450, 70425, 70435, 70430, 70440, 70454, 70455, 70456, 70445,
70444, 70427, 70426, 70424, 70423, 70429, 70428, 70422, 70421, 70443,
70442, 70419, 70415, 70457, 70446, 70448, 70447, 70400, 70401, 70460,
70461, 70402, 70493, 70477, 70403, 70487, 70462, 70472, 70476, 70465,
70466, 70467, 70468, 70498, 70499, 70463, 70464, 70475, 70471, 70480, 96,
127815, 10896, 10894, 10900, 10892, 10898, 10616, 10890, 10888, 10917,
8935, 8809, 10878, 10882, 10884, 10880, 10886, 8819, 8805, 8823, 10916,
8807, 8923, 10919, 10921, 10874, 10876, 8919, 62, 65860, 65863, 65878,
65866, 65873, 65859, 65861, 65868, 65875, 65862, 65870, 65864, 65871,
65867, 65874, 65857, 65869, 65876, 65856, 65858, 65865, 65877, 65872,
65879, 65903, 65885, 65904, 65907, 65908, 65900, 65883, 65886, 65896,
65890, 65882, 65880, 65891, 65902, 65906, 65897, 65899, 65893, 65892,
65884, 65881, 65898, 65905, 65887, 65901, 65894, 65895, 65888, 65889,
903, 65927, 65926, 913, 7945, 7949, 8077, 7947, 8075, 7951, 8079, 8073,
7944, 7948, 8076, 7946, 8074, 7950, 8078, 8072, 8124, 8120, 8122, 8123,
902, 8121, 882, 919, 7977, 7981, 8093, 7979, 8091, 7983, 8095, 8089,
7976, 7980, 8092, 7978, 8090, 7982, 8094, 8088, 8140, 8139, 8138, 905,
917, 7961, 7965, 7963, 7960, 7964, 7962, 8137, 8136, 904, 921, 7993,
7999, 7997, 7995, 938, 7992, 7998, 7996, 7994, 8152, 8154, 8155, 906,
8153, 937, 8041, 8045, 8109, 8043, 8107, 8047, 8111, 8105, 8040, 8044,
8108, 8042, 8106, 8046, 8110, 8104, 8188, 8187, 8186, 911, 927, 8009,
8013, 8011, 8008, 8012, 8010, 8185, 8184, 908, 929, 8172, 931, 1018,
1015, 933, 8025, 8031, 8029, 8027, 939, 8168, 8170, 8171, 910, 8169, 886,
934, 936, 928, 920, 932, 916, 922, 915, 935, 914, 880, 918, 923, 895,
924, 925, 926, 1017, 1023, 1021, 1022, 975, 1012, 8129, 8174, 8173, 901,
65915, 8190, 8159, 8158, 8157, 65920, 65919, 119325, 119331, 119332,
119333, 119334, 119335, 119336, 119337, 119326, 119338, 119339, 119340,
119341, 119342, 119343, 119344, 119345, 119346, 119347, 119348, 119349,
119327, 119350, 119351, 119352, 119353, 119354, 119355, 119356, 119328,
119357, 119358, 119359, 119360, 119361, 119329, 119330, 65933, 1008, 983,
8125, 65922, 7466, 7464, 7462, 43877, 7465, 7463, 992, 986, 984, 990,
988, 1011, 885, 1010, 1013, 65923, 884, 65921, 119365, 65925, 65909,
65910, 65931, 8189, 65924, 65916, 8126, 8127, 8143, 8142, 8141, 8128,
981, 982, 1020, 1009, 1014, 945, 8112, 8048, 8114, 7937, 7941, 8069,
7943, 8071, 7939, 8067, 8065, 7936, 7940, 8068, 7942, 8070, 7938, 8066,
8064, 8118, 8119, 8049, 8116, 8115, 940, 8113, 985, 883, 989, 948, 949,
7953, 7957, 7955, 7952, 7956, 7954, 8051, 8050, 941, 951, 7969, 7973,
8085, 7975, 8087, 7971, 8083, 8081, 7968, 7972, 8084, 7974, 8086, 7970,
8082, 8080, 8134, 8135, 8053, 8132, 8052, 8130, 8131, 942, 953, 7985,
7991, 7989, 7987, 970, 8151, 8147, 8146, 912, 7984, 7990, 7988, 7986,
8150, 8144, 8054, 8055, 943, 8145, 965, 8017, 8023, 8021, 8019, 971,
8167, 8163, 8162, 944, 8016, 8022, 8020, 8018, 8166, 8160, 8058, 8059,
973, 8161, 954, 991, 969, 8033, 8037, 8101, 8039, 8103, 8035, 8099, 8097,
8032, 8036, 8100, 8038, 8102, 8034, 8098, 8096, 8182, 8183, 8061, 8180,
8060, 8178, 8179, 974, 959, 8001, 8005, 8003, 8000, 8004, 8002, 8057,
8056, 972, 887, 966, 968, 960, 961, 8165, 8164, 993, 1019, 987, 963,
1016, 952, 964, 962, 947, 967, 946, 881, 950, 955, 956, 957, 958, 893,
891, 892, 7527, 7530, 7529, 7528, 7526, 65952, 65932, 65918, 65912, 977,
65929, 65917, 65911, 900, 65914, 979, 980, 978, 8175, 119297, 119315,
119316, 119317, 119318, 119319, 119300, 119320, 119321, 119322, 119323,
119324, 119296, 119305, 119306, 119307, 119308, 119309, 119310, 119311,
119312, 119313, 119314, 119298, 119299, 119301, 119302, 119303, 119304,
890, 65913, 976, 65928, 65930, 894, 127823, 128215, 128154, 129367,
129654, 128512, 129322, 129321, 128513, 128568, 128556, 983110, 11218,
128151, 8370, 128130, 127928, 129454, 2693, 2694, 2704, 2708, 2722, 2721,
2727, 2726, 2720, 2719, 2725, 2724, 2699, 2784, 2700, 2785, 2741, 2697,
2698, 2695, 2696, 2739, 2738, 2809, 2713, 2723, 2718, 2728, 2742, 2743,
2744, 2733, 2732, 2715, 2714, 2712, 2711, 2717, 2716, 2710, 2709, 2731,
2730, 2745, 2734, 2736, 2735, 2703, 2707, 2814, 2689, 2812, 2815, 2813,
2811, 2810, 2748, 2749, 2690, 2765, 2691, 2757, 2761, 2750, 2760, 2764,
2753, 2754, 2755, 2756, 2786, 2787, 2751, 2752, 2759, 2763, 2701, 2705,
2800, 2801, 2795, 2794, 2797, 2796, 2793, 2792, 2790, 2799, 2791, 2798,
2768, 73092, 73082, 73056, 73057, 73064, 73067, 73091, 73090, 73081,
73080, 73086, 73085, 73076, 73075, 73060, 73061, 73058, 73059, 73087,
73077, 73071, 73070, 73084, 73083, 73079, 73078, 73089, 73088, 73074,
73073, 73094, 73093, 73066, 73063, 73095, 73072, 73096, 73097, 73069,
73068, 73110, 73109, 73098, 73105, 73108, 73101, 73102, 73099, 73100,
73107, 73104, 73111, 73125, 73124, 73127, 73126, 73123, 73122, 73120,
73129, 73121, 73128, 73112, 2678, 2673, 2650, 2584, 2583, 2649, 2582,
2581, 2565, 2566, 2576, 2580, 2594, 2593, 2599, 2598, 2652, 2608, 2592,
2591, 2597, 2596, 2569, 2570, 2567, 2568, 2611, 2610, 2585, 2595, 2590,
2600, 2605, 2604, 2587, 2586, 2589, 2588, 2603, 2602, 2614, 2616, 2579,
2575, 2654, 2617, 2606, 2613, 2607, 2651, 983656, 983655, 983654, 983653,
983658, 983657, 2561, 2562, 2641, 2620, 2677, 2637, 2563, 2622, 2632,
2636, 2625, 2626, 2623, 2624, 2635, 2631, 2672, 2674, 2676, 2667, 2666,
2669, 2668, 2665, 2664, 2662, 2671, 2663, 2670, 2675, 90412, 90414,
90411, 90410, 90373, 90388, 90382, 90381, 90387, 90386, 90380, 90379,
90385, 90384, 90392, 90391, 90375, 90374, 90372, 90371, 90377, 90376,
90370, 90369, 90390, 90389, 90378, 90396, 90393, 90395, 90397, 90383,
90394, 90368, 90413, 90415, 90398, 90405, 90408, 90401, 90402, 90406,
90407, 90399, 90400, 90403, 90404, 90409, 90421, 90420, 90423, 90422,
90419, 90418, 90416, 90425, 90417, 90424, 128123, 983111, 129710, 8202,
129736, 128135, 65467, 65441, 65443, 65444, 65445, 65446, 65469, 65458,
65460, 65449, 65454, 65455, 65452, 65451, 65450, 65456, 65453, 65465,
65442, 65459, 65448, 65462, 65461, 65483, 65482, 65476, 65477, 65499,
65490, 65495, 65466, 65464, 65479, 65478, 65498, 65500, 65463, 65457,
65468, 65447, 65493, 65492, 65485, 65486, 65494, 65470, 65474, 65475,
65484, 65487, 65491, 65440, 65388, 65390, 65389, 65391, 65383, 65386,
65384, 65387, 65385, 65403, 65406, 65404, 65407, 65405, 65437, 65413,
65416, 65414, 65417, 65415, 65418, 65421, 65419, 65422, 65420, 65398,
65401, 65399, 65402, 65400, 65423, 65426, 65424, 65427, 65425, 65431,
65434, 65432, 65435, 65433, 65408, 65411, 65409, 65412, 65410, 65428,
65430, 65429, 65436, 65382, 65393, 65396, 65394, 65397, 65395, 65439,
65438, 65381, 65392, 65378, 65513, 65379, 65515, 65512, 65514, 65380,
65377, 65517, 65518, 65516, 128296, 128736, 9773, 9874, 128057, 129708,
127828, 129310, 129776, 129342, 128092, 129309, 4366, 4434, 4435, 4431,
4413, 4412, 4436, 4430, 4433, 4415, 4414, 4437, 4432, 4364, 4429, 4363,
4427, 4420, 4422, 43382, 4425, 4424, 4419, 4426, 4418, 4417, 43383, 4421,
4379, 4439, 4395, 4396, 4381, 4352, 4442, 4367, 4358, 43375, 4380, 43376,
43377, 4354, 4444, 4371, 4374, 4373, 4445, 4443, 4369, 4438, 43386, 4359,
4385, 43378, 4387, 4390, 4386, 4388, 4389, 4394, 43379, 4382, 4392, 4391,
4393, 4384, 4383, 43380, 4416, 4357, 43371, 43374, 43364, 43365, 43370,
43367, 43372, 43368, 43373, 4376, 43369, 43366, 4378, 4361, 4402, 4403,
4410, 4404, 4400, 4408, 4397, 4407, 4406, 4401, 4409, 4399, 4398, 4411,
4405, 4365, 43384, 4362, 43381, 4377, 43385, 4356, 43388, 4353, 4372,
4360, 4440, 4423, 4355, 4446, 43360, 43363, 4375, 43361, 43362, 4368,
4428, 4441, 4370, 43387, 4447, 12335, 12334, 4541, 55288, 55287, 4542,
4546, 4598, 4599, 4597, 4600, 4540, 4591, 4588, 4589, 55261, 4596, 4582,
4578, 4520, 4605, 4547, 4522, 4548, 4604, 4602, 4603, 4606, 4543, 4535,
4572, 55265, 4575, 55263, 4574, 4573, 4571, 4576, 55266, 4570, 55262,
4577, 4523, 55243, 55244, 4524, 4553, 4550, 4549, 4525, 4552, 4551, 4587,
55284, 55283, 4545, 55291, 4595, 55290, 4536, 4579, 55268, 4537, 55271,
4580, 55273, 55272, 55269, 55267, 4581, 4527, 4528, 55254, 4556, 4565,
4568, 4529, 4561, 55256, 4562, 4530, 55258, 55257, 4564, 4563, 4533,
4567, 55253, 4566, 4531, 4558, 4559, 4532, 4569, 55260, 55259, 4557,
4534, 4538, 55275, 4583, 4585, 55280, 55279, 4586, 55278, 55274, 55281,
4584, 55282, 4560, 55255, 55245, 55246, 983213, 4539, 55276, 55277,
55264, 55289, 4521, 4607, 55270, 4590, 4526, 4555, 55248, 55249, 55252,
55251, 55250, 4554, 55247, 4544, 4592, 983214, 983211, 983212, 4593,
55285, 55286, 4594, 4601, 4449, 4510, 55238, 4511, 55237, 4513, 4512,
4515, 4470, 4471, 4450, 4454, 4453, 4476, 4474, 4475, 4467, 55227, 55226,
4502, 55225, 55228, 4501, 4469, 4504, 4509, 4505, 55229, 55230, 55232,
55231, 55234, 55235, 4506, 55233, 4508, 55236, 4507, 4514, 4457, 4482,
55217, 4481, 55216, 4518, 4519, 4480, 4479, 4483, 4460, 4462, 4492,
55221, 55222, 4491, 4489, 4490, 4493, 4451, 4473, 4472, 4516, 4452, 4456,
4455, 4517, 4477, 4478, 4468, 4503, 4461, 4484, 4485, 4486, 55218, 55219,
55220, 4488, 4487, 4466, 4498, 4497, 4496, 4495, 4494, 55223, 4500,
55224, 4499, 4464, 4463, 4458, 4459, 4465, 4448, 12623, 12685, 12686,
12624, 12618, 12616, 12628, 12627, 12641, 12643, 12615, 12676, 12664,
12665, 12657, 12619, 12593, 12595, 12609, 12654, 12656, 12655, 12596,
12597, 12646, 12598, 12648, 12647, 12610, 12612, 12660, 12661, 12663,
12659, 12662, 12658, 12621, 12671, 12601, 12602, 12649, 12603, 12607,
12604, 12651, 12652, 12606, 12650, 12653, 12608, 12605, 12620, 12599,
12613, 12670, 12666, 12667, 12669, 12668, 12617, 12594, 12645, 12611,
12600, 12677, 12614, 12672, 12638, 12637, 12632, 12633, 12639, 12630,
12629, 12678, 12673, 12675, 12674, 12635, 12679, 12680, 12681, 12640,
12683, 12682, 12684, 12625, 12626, 12642, 12622, 12631, 12634, 12636,
12644, 12323, 12346, 12345, 12322, 12344, 12325, 12324, 12327, 12326,
12329, 12321, 12328, 68875, 68874, 68887, 68889, 68872, 68881, 68868,
68867, 68877, 68876, 68890, 68891, 68885, 68880, 68879, 68865, 68870,
68873, 68882, 68871, 68869, 68883, 68884, 68866, 68892, 68886, 68888,
68878, 68864, 68899, 68898, 68901, 68903, 68902, 68900, 68893, 68896,
68894, 68897, 68895, 68917, 68916, 68919, 68918, 68915, 68914, 68912,
68921, 68913, 68920, 5925, 5928, 5930, 5927, 5924, 5937, 5923, 5934,
5931, 5929, 5933, 5936, 5926, 5935, 5932, 5920, 5921, 5922, 5940, 5938,
5939, 128587, 128436, 129673, 128035, 67808, 67823, 67814, 67816, 67829,
67819, 67826, 67811, 67810, 67822, 67825, 67828, 67817, 67812, 67815,
67818, 67809, 67821, 67813, 67824, 67820, 67835, 67839, 67838, 67837,
67836, 128891, 11233, 129702, 9980, 127911, 127892, 128157, 128152,
128159, 129782, 128585, 129180, 129183, 129182, 129181, 128628, 10033,
10008, 10149, 10150, 10084, 10167, 10169, 10168, 10054, 10004, 11096,
9955, 11095, 11097, 10152, 10144, 10135, 129055, 129051, 10077, 10078,
128178, 128977, 10040, 128975, 10059, 128958, 10071, 10082, 129008,
10020, 128970, 128946, 129943, 10083, 11093, 128327, 10096, 10094,
129052, 129048, 10080, 10079, 10157, 128627, 10006, 10134, 10012, 11094,
10030, 10097, 10095, 10137, 129054, 129050, 10140, 128635, 128940, 10075,
10076, 128972, 128952, 128607, 128615, 10136, 128605, 128613, 128625,
10056, 128606, 128614, 10138, 128604, 128612, 10051, 10045, 10171, 10142,
128980, 128979, 129053, 129049, 10158, 128913, 118277, 9947, 128903,
10132, 10173, 128633, 10133, 10074, 10010, 1442, 1453, 1447, 1436, 1437,
1438, 1445, 1446, 1443, 1444, 1433, 1441, 1425, 1439, 1448, 1426, 1427,
1449, 1440, 1435, 1430, 1450, 1434, 1428, 1429, 1432, 1454, 1431, 1451,
1452, 1488, 64304, 64302, 64303, 64288, 64297, 1506, 1489, 64332, 64305,
1499, 64333, 64315, 1508, 64334, 64324, 1498, 64314, 1507, 64323, 1509,
1503, 1501, 1511, 64327, 1492, 64308, 1495, 1504, 64320, 1494, 64310,
1505, 64321, 1513, 64329, 64300, 64301, 64298, 64299, 1512, 64328, 1496,
64312, 1514, 64330, 1510, 64326, 1491, 64307, 1490, 64306, 1500, 64316,
1502, 64318, 1493, 64331, 64309, 64293, 64289, 64296, 64295, 64290,
64292, 64291, 64294, 1497, 64285, 64313, 64335, 1520, 1522, 64287, 1521,
1477, 1476, 1455, 1468, 1458, 1459, 1457, 1460, 1465, 1466, 1463, 1464,
1479, 1467, 1471, 1462, 1473, 1456, 1474, 1461, 64286, 1469, 1524, 1523,
1472, 1475, 1478, 1470, 1519, 118464, 9937, 9096, 11263, 128641, 110597,
110594, 110595, 110596, 110778, 110779, 110780, 110781, 110782, 110783,
110784, 110785, 110750, 110759, 110760, 110751, 110752, 110753, 110754,
110755, 110756, 110757, 110758, 110768, 110769, 110770, 110771, 110772,
110773, 110774, 110775, 110776, 110777, 110761, 110762, 110763, 110764,
110765, 110766, 110767, 110615, 110624, 110625, 110626, 110616, 110617,
110618, 110619, 110620, 110621, 110622, 110623, 110651, 110648, 110649,
110650, 110627, 110628, 110629, 110630, 110631, 110632, 110633, 110634,
110642, 110643, 110644, 110645, 110646, 110647, 110635, 110636, 110637,
110638, 110639, 110640, 110641, 110806, 110804, 110805, 110807, 110808,
110809, 110810, 110811, 110812, 110786, 110787, 110788, 110789, 110790,
110791, 110792, 110793, 110794, 110795, 110796, 110797, 110798, 110799,
110800, 110801, 110802, 110803, 110744, 110738, 110739, 110740, 110741,
110742, 110743, 110734, 110727, 110728, 110729, 110730, 110731, 110732,
110733, 110718, 110719, 110720, 110721, 110722, 110723, 110724, 110725,
110726, 110745, 110746, 110747, 110748, 110749, 110735, 110736, 110737,
110877, 110878, 110850, 110851, 110852, 110853, 110854, 110855, 110840,
110841, 110842, 110843, 110844, 110845, 110833, 110834, 110835, 110836,
110837, 110838, 110839, 110829, 110830, 110831, 110832, 110846, 110847,
110848, 110849, 110652, 110653, 110654, 110655, 110656, 110657, 110658,
110659, 110666, 110667, 110668, 110669, 110670, 110671, 110672, 110673,
110660, 110661, 110662, 110663, 110664, 110665, 110674, 110675, 110676,
110677, 110678, 110679, 110680, 110681, 110682, 110683, 110684, 110685,
110702, 110703, 110704, 110705, 110706, 110707, 110708, 110709, 110710,
110717, 110711, 110712, 110713, 110714, 110715, 110716, 110701, 110697,
110698, 110699, 110700, 110690, 110691, 110692, 110693, 110694, 110695,
110696, 110686, 110687, 110688, 110689, 110856, 110857, 110858, 110859,
110860, 110861, 110862, 110863, 110864, 110865, 110870, 110871, 110872,
110873, 110874, 110875, 110876, 110866, 110867, 110868, 110869, 110818,
110813, 110814, 110815, 110816, 110817, 110823, 110824, 110825, 110826,
110827, 110828, 110819, 110820, 110821, 110822, 983277, 110607, 110608,
110609, 110610, 110611, 110602, 110603, 110604, 110605, 110606, 110612,
110613, 110614, 110598, 110599, 110600, 110601, 8889, 127807, 19922,
19966, 19958, 19967, 19924, 19946, 19923, 19909, 19947, 19944, 19943,
19956, 19906, 19962, 19935, 19939, 19920, 19916, 19948, 19917, 19937,
19931, 19929, 19925, 19911, 19928, 19964, 19945, 19934, 19918, 19930,
19942, 19950, 19941, 19949, 19938, 19914, 19927, 19936, 19952, 19965,
19912, 19915, 19926, 19954, 19910, 19932, 19953, 19904, 19933, 19940,
19905, 19951, 19959, 19957, 19960, 19955, 19961, 19913, 19908, 19921,
19963, 19907, 19919, 129428, 128262, 9889, 983123, 128644, 128645,
128096, 12447, 12354, 110879, 110593, 12430, 110929, 110928, 110930,
12419, 12423, 12421, 12437, 12438, 110898, 12387, 12353, 12359, 12355,
12361, 12357, 12373, 12379, 12375, 12381, 12377, 12403, 983997, 984000,
983998, 984001, 983999, 12400, 12409, 12412, 12406, 12435, 12394, 12397,
12395, 12398, 12396, 12384, 12391, 12386, 12393, 12389, 12364, 12370,
12366, 12372, 12368, 12399, 12408, 12402, 12411, 12405, 12363, 12369,
12365, 12371, 12367, 12414, 12417, 12415, 12418, 12416, 12401, 12410,
12404, 12413, 12407, 12425, 12428, 12426, 12429, 12427, 12383, 12390,
12385, 12392, 12388, 12374, 12380, 12376, 12382, 12378, 12431, 12433,
12432, 12434, 12420, 12424, 12422, 12436, 12360, 12356, 12362, 12358,
12446, 12445, 9964, 128725, 129406, 127802, 129435, 128616, 128617,
128371, 128029, 127855, 11203, 11043, 8213, 118290, 118287, 117905, 9135,
117893, 129921, 129910, 129911, 129912, 129913, 129914, 129915, 9146,
9147, 9148, 9149, 983059, 983141, 983138, 11134, 128677, 117779, 8230,
9897, 117915, 117769, 118448, 128014, 127943, 128052, 127798, 9749, 9832,
127789, 127976, 8987, 9203, 8962, 127969, 127968, 127960, 127973, 128298,
8763, 129693, 983124, 983060, 983142, 983139, 128559, 128175, 129303,
128726, 11226, 128889, 8208, 11802, 8259, 8231, 45, 11794, 9102, 129723,
8372, 127848, 129482, 127954, 9976, 8801, 10725, 10855, 129706, 12696,
12700, 12693, 12697, 12695, 12703, 12692, 12699, 12691, 12694, 12688,
12698, 12690, 12689, 12701, 12702, 12294, 12289, 12275, 12273, 12274,
12272, 12283, 12282, 12285, 12279, 12280, 12281, 12278, 12277, 12284,
12783, 12287, 12276, 12286, 12332, 12295, 119670, 119669, 119668, 119667,
119666, 12999, 12995, 13309, 13310, 13292, 13282, 13299, 13304, 13303,
13306, 13305, 13302, 13301, 13308, 13300, 13307, 13291, 13281, 13289,
13287, 13297, 13290, 13294, 13284, 13283, 13293, 13288, 13298, 13286,
13296, 13285, 13295, 13280, 13003, 13164, 13168, 13167, 13166, 13165,
13156, 13146, 13157, 13147, 13154, 13152, 13162, 13155, 13159, 13149,
13148, 13158, 13153, 13163, 13151, 13161, 13150, 13160, 13144, 13145,
12992, 12997, 12998, 12993, 12994, 12996, 13002, 13000, 13001, 12343,
12351, 12333, 12331, 12330, 12350, 12290, 12293, 12288, 8887, 8787,
128127, 67676, 67673, 67675, 67679, 67674, 67672, 67677, 67678, 67656,
67669, 67651, 67659, 67666, 67667, 67648, 67663, 67650, 67654, 67662,
67665, 67668, 67657, 67652, 67655, 67658, 67649, 67661, 67653, 67664,
67660, 67671, 128232, 10716, 128474, 10721, 8710, 983130, 983129, 129781,
126132, 126112, 126126, 126125, 126127, 126131, 126130, 126129, 126113,
126114, 126110, 126111, 126072, 126081, 126108, 126090, 126099, 126078,
126105, 126069, 126087, 126096, 126077, 126104, 126068, 126086, 126095,
126073, 126082, 126109, 126091, 126100, 126071, 126080, 126107, 126089,
126098, 126070, 126079, 126106, 126088, 126097, 126076, 126103, 126067,
126085, 126094, 126075, 126102, 126066, 126084, 126093, 126074, 126101,
126119, 126118, 126121, 126120, 126117, 126116, 126123, 126115, 126122,
126065, 126083, 126092, 126128, 126124, 8377, 8734, 10718, 983106,
983109, 983112, 983115, 8505, 128129, 8300, 8298, 128288, 128289, 128292,
128291, 128290, 68456, 68466, 68448, 68451, 68459, 68460, 68453, 68450,
68454, 68462, 68464, 68465, 68457, 68452, 68455, 68458, 68449, 68461,
68463, 68477, 68473, 68474, 68476, 68472, 68478, 68479, 68475, 68424,
68437, 68419, 68427, 68434, 68435, 68416, 68431, 68418, 68422, 68430,
68433, 68436, 68425, 68420, 68423, 68426, 68417, 68429, 68421, 68432,
68428, 68445, 68441, 68442, 68444, 68440, 68446, 68447, 68443, 9088,
8747, 10767, 10773, 10776, 10780, 10778, 10775, 10777, 10779, 10766,
9134, 65529, 65531, 65530, 9892, 8745, 10825, 10823, 10820, 10819, 10816,
10827, 8253, 8890, 10812, 117901, 117903, 9688, 129942, 129969, 129972,
9689, 129936, 11800, 11845, 11846, 8766, 9959, 161, 8487, 8276, 191,
8290, 8292, 8291, 128229, 118471, 118465, 127982, 129311, 127875, 127983,
127971, 12292, 9979, 127886, 128304, 128122, 128121, 43453, 43454, 43455,
43457, 43421, 43422, 43426, 43427, 43398, 43397, 43399, 43407, 43408,
43409, 43412, 43402, 43403, 43418, 43416, 43428, 43423, 43431, 43432,
43413, 43414, 43410, 43411, 43429, 43430, 43401, 43435, 43436, 43441,
43439, 43440, 43424, 43425, 43419, 43420, 43415, 43417, 43396, 43405,
43442, 43437, 43433, 43438, 43434, 43404, 43406, 43400, 43458, 43466,
43467, 43459, 43465, 43461, 43464, 43468, 43463, 43486, 43462, 43487,
43460, 43471, 43456, 43469, 43393, 43443, 43395, 43394, 43392, 43448,
43449, 43444, 43450, 43445, 43446, 43447, 43452, 43451, 43477, 43476,
43479, 43478, 43475, 43474, 43472, 43481, 43473, 43480, 129753, 129724,
128086, 128377, 10781, 129337, 9795, 9909, 129513, 69786, 69787, 69785,
69793, 69792, 69763, 69764, 69770, 69772, 69784, 69783, 69791, 69790,
69767, 69768, 69765, 69766, 69777, 69789, 69782, 69794, 69804, 69805,
69806, 69798, 69797, 69779, 69778, 69776, 69775, 69781, 69780, 69774,
69773, 69796, 69795, 69788, 69801, 69807, 69802, 69799, 69803, 69800,
69769, 69771, 69760, 69818, 69761, 69817, 69762, 69822, 69823, 69825,
69824, 69826, 69808, 69814, 69816, 69811, 69812, 69809, 69810, 69813,
69815, 69821, 69837, 69819, 69820, 12142, 12164, 12060, 12157, 12100,
12149, 12184, 12191, 12227, 12068, 12174, 12234, 12205, 12134, 12168,
12219, 12189, 12088, 12090, 12096, 12160, 12182, 12224, 12190, 12147,
12114, 12118, 12058, 12176, 12075, 12112, 12045, 12170, 12124, 12070,
12194, 12109, 12229, 12196, 12139, 12056, 12099, 12034, 12084, 12136,
12120, 12044, 12111, 12094, 12125, 12243, 12238, 12082, 12159, 12063,
12215, 12062, 12042, 12241, 12067, 12235, 12043, 12140, 12119, 12207,
12123, 12133, 12222, 12117, 12226, 12245, 12214, 12217, 12236, 12155,
12188, 12113, 12065, 12198, 12066, 12146, 12171, 12225, 12200, 12121,
12093, 12095, 12221, 12092, 12216, 12231, 12054, 12218, 12179, 12037,
12173, 12072, 12046, 12127, 12152, 12049, 12074, 12107, 12208, 12212,
12041, 12210, 12131, 12033, 12039, 12199, 12085, 12128, 12161, 12162,
12233, 12165, 12192, 12077, 12201, 12061, 12105, 12040, 12240, 12102,
12153, 12032, 12080, 12167, 12048, 12156, 12059, 12126, 12158, 12050,
12183, 12204, 12097, 12239, 12053, 12078, 12150, 12071, 12187, 12186,
12223, 12228, 12104, 12098, 12064, 12036, 12057, 12163, 12178, 12185,
12154, 12203, 12083, 12087, 12135, 12151, 12202, 12035, 12122, 12141,
12180, 12144, 12076, 12052, 12115, 12091, 12108, 12169, 12143, 12148,
12130, 12089, 12211, 12073, 12101, 12138, 12103, 12209, 12047, 12220,
12172, 12129, 12166, 12242, 12237, 12145, 12106, 12081, 12244, 12038,
12086, 12055, 12181, 12197, 12193, 12175, 12116, 12110, 12177, 12137,
12230, 12213, 12195, 12069, 12079, 12206, 12051, 12232, 12132, 129432,
3240, 3293, 3225, 3235, 3230, 3205, 3206, 3216, 3220, 3234, 3233, 3239,
3238, 983205, 3251, 3250, 3249, 3248, 3232, 3231, 3237, 3236, 3211, 3296,
3212, 3297, 3253, 3209, 3210, 3218, 3219, 3207, 3208, 3254, 3255, 3256,
3245, 3244, 3227, 3226, 3224, 3223, 3229, 3228, 3222, 3221, 3243, 3242,
3214, 3215, 3294, 3257, 3246, 3247, 3285, 3315, 3201, 3200, 3204, 3260,
3261, 3202, 3313, 3314, 3277, 3203, 3292, 3286, 3262, 3272, 3276, 3265,
3266, 3267, 3268, 3298, 3299, 3274, 3275, 3263, 3264, 3270, 3271, 3307,
3306, 3309, 3308, 3305, 3304, 3302, 3311, 3303, 3310, 12450, 984009,
984008, 984007, 984010, 110881, 110880, 110882, 110592, 12499, 984002,
984005, 984003, 984006, 984004, 12496, 12505, 12508, 12502, 12511,
110583, 110584, 110585, 110586, 110587, 110589, 110590, 110576, 110577,
110578, 110579, 110581, 110582, 12510, 12513, 12514, 12512, 12531, 12490,
12493, 12491, 12494, 12492, 12789, 12792, 12790, 12793, 12791, 12795,
12798, 12796, 12799, 12797, 12533, 12534, 110933, 12784, 12787, 12483,
12526, 110949, 110948, 110950, 12515, 12519, 12517, 110951, 12788, 12785,
12786, 12794, 12449, 12455, 12451, 12457, 12453, 12469, 12475, 12471,
12477, 12473, 12480, 12487, 12482, 12489, 12485, 12460, 12466, 12462,
12468, 12464, 12495, 12504, 12498, 12507, 12501, 12459, 12465, 12461,
12467, 12463, 12497, 12506, 12500, 12509, 12503, 12521, 12524, 12522,
12525, 12523, 12479, 12486, 12481, 12488, 12484, 12535, 12537, 12536,
12538, 12532, 12470, 12476, 12472, 12478, 12474, 12527, 12529, 12528,
12530, 12516, 12520, 12518, 12456, 12452, 12458, 12454, 12542, 12543,
12541, 12539, 12448, 12540, 12444, 12443, 73476, 73477, 73487, 73523,
73498, 73497, 73503, 73502, 73508, 73507, 73501, 73500, 73506, 73505,
73480, 73481, 73482, 73483, 73484, 73485, 73478, 73479, 73494, 73504,
73499, 73509, 73519, 73520, 73521, 73513, 73512, 73496, 73495, 73493,
73492, 73491, 73490, 73511, 73510, 73522, 73517, 73514, 73516, 73518,
73515, 73486, 73488, 73551, 73548, 73546, 73545, 73549, 73543, 73541,
73544, 73550, 73542, 73547, 73537, 73472, 73562, 73474, 73475, 73473,
73525, 73524, 73535, 73530, 73534, 73536, 73528, 73529, 73526, 73527,
73540, 73539, 73557, 73556, 73559, 73558, 73555, 73554, 73552, 73561,
73553, 73560, 73538, 43299, 43301, 43283, 43295, 43277, 43281, 43284,
43275, 43274, 43286, 43285, 43279, 43278, 43294, 43282, 43289, 43297,
43288, 43276, 43292, 43287, 43290, 43296, 43293, 43291, 43280, 43298,
43300, 43310, 43311, 43308, 43309, 43307, 43303, 43305, 43304, 43302,
43306, 43269, 43268, 43271, 43270, 43267, 43266, 43264, 43273, 43265,
43272, 119496, 119506, 119499, 119503, 119493, 119492, 119502, 119497,
119507, 119495, 119505, 119494, 119504, 119501, 119491, 119500, 119490,
119498, 119488, 119489, 128331, 8490, 128273, 9000, 128422, 983552,
983553, 983559, 983558, 983561, 983560, 983557, 983556, 983554, 983563,
983555, 983562, 128287, 118449, 68163, 68162, 68161, 68160, 68113, 68146,
68112, 68147, 68148, 68123, 68122, 68128, 68127, 68126, 68121, 68131,
68125, 68124, 68130, 68129, 68141, 68142, 68143, 68135, 68134, 68118,
68117, 68115, 68114, 68133, 68132, 68149, 68140, 68145, 68119, 68139,
68136, 68138, 68137, 68144, 68096, 68165, 68164, 68166, 68167, 68179,
68178, 68183, 68176, 68182, 68181, 68184, 68180, 68177, 68152, 68153,
68109, 68154, 68111, 68110, 68099, 68101, 68097, 68102, 68098, 68108,
68159, 68168, 129711, 101120, 101121, 101122, 101123, 101124, 101125,
101126, 101127, 101128, 101129, 101130, 101131, 101132, 101133, 101134,
101135, 101136, 101137, 101138, 101139, 101140, 101141, 101142, 101143,
101144, 101145, 101146, 101147, 101148, 101149, 101150, 101151, 101152,
101153, 101154, 101155, 101156, 101157, 101158, 101159, 101160, 101161,
101162, 101163, 101164, 101165, 101166, 101167, 101168, 101169, 101170,
101171, 101172, 101173, 101174, 101175, 101176, 101177, 101178, 101179,
101180, 101181, 101182, 101183, 101184, 101185, 101186, 101187, 101188,
101189, 101190, 101191, 101192, 101193, 101194, 101195, 101196, 101197,
101198, 101199, 101200, 101201, 101202, 101203, 101204, 101205, 101206,
101207, 101208, 101209, 101210, 101211, 101212, 101213, 101214, 101215,
101216, 101217, 101218, 101219, 101220, 101221, 101222, 101223, 101224,
101225, 101226, 101227, 101228, 101229, 101230, 101231, 101232, 101233,
101234, 101235, 101236, 101237, 101238, 101239, 101240, 101241, 101242,
101243, 101244, 101245, 101246, 101247, 101248, 101249, 101250, 101251,
101252, 101253, 101254, 101255, 101256, 101257, 101258, 101259, 101260,
101261, 101262, 101263, 101264, 101265, 101266, 101267, 101268, 101269,
101270, 101271, 101272, 101273, 101274, 101275, 101276, 101277, 101278,
101279, 101280, 101281, 101282, 101283, 101284, 101285, 101286, 101287,
101288, 101289, 101290, 101291, 101292, 101293, 101294, 101295, 101296,
101297, 101298, 101299, 101300, 101301, 101302, 101303, 101304, 101305,
101306, 101307, 101308, 101309, 101310, 101311, 101312, 101313, 101314,
101315, 101316, 101317, 101318, 101319, 101320, 101321, 101322, 101323,
101324, 101325, 101326, 101327, 101328, 101329, 101330, 101331, 101332,
101333, 101334, 101335, 101336, 101337, 101338, 101339, 101340, 101341,
101342, 101343, 101344, 101345, 101346, 101347, 101348, 101349, 101350,
101351, 101352, 101353, 101354, 101355, 101356, 101357, 101358, 101359,
101360, 101361, 101362, 101363, 101364, 101365, 101366, 101367, 101368,
101369, 101370, 101371, 101372, 101373, 101374, 101375, 101584, 101585,
101586, 101587, 101588, 101589, 101376, 101377, 101378, 101379, 101380,
101381, 101382, 101383, 101384, 101385, 101386, 101387, 101388, 101389,
101390, 101391, 101392, 101393, 101394, 101395, 101396, 101397, 101398,
101399, 101400, 101401, 101402, 101403, 101404, 101405, 101406, 101407,
101408, 101409, 101410, 101411, 101412, 101413, 101414, 101415, 101416,
101417, 101418, 101419, 101420, 101421, 101422, 101423, 101424, 101425,
101426, 101427, 101428, 101429, 101430, 101431, 101432, 101433, 101434,
101435, 101436, 101437, 101438, 101439, 101440, 101441, 101442, 101443,
101444, 101445, 101446, 101447, 101448, 101449, 101450, 101451, 101452,
101453, 101454, 101455, 101456, 101457, 101458, 101459, 101460, 101461,
101462, 101463, 101464, 101465, 101466, 101467, 101468, 101469, 101470,
101471, 101472, 101473, 101474, 101475, 101476, 101477, 101478, 101479,
101480, 101481, 101482, 101483, 101484, 101485, 101486, 101487, 101488,
101489, 101490, 101491, 101492, 101493, 101494, 101495, 101496, 101497,
101498, 101499, 101500, 101501, 101502, 101503, 101504, 101505, 101506,
101507, 101508, 101509, 101510, 101511, 101512, 101513, 101514, 101515,
101516, 101517, 101518, 101519, 101520, 101521, 101522, 101523, 101524,
101525, 101526, 101527, 101528, 101529, 101530, 101531, 101532, 101533,
101534, 101535, 101536, 101537, 101538, 101539, 101540, 101541, 101542,
101543, 101544, 101545, 101546, 101547, 101548, 101549, 101550, 101551,
101552, 101553, 101554, 101555, 101556, 101557, 101558, 101559, 101560,
101561, 101562, 101563, 101564, 101565, 101566, 101567, 101568, 101569,
101570, 101571, 101572, 101573, 101574, 101575, 101576, 101577, 101578,
101579, 101580, 101581, 101582, 101583, 101631, 94180, 983960, 983965,
983970, 983975, 983962, 983964, 983961, 983963, 983957, 983959, 983956,
983958, 983977, 983979, 983978, 983972, 983974, 983967, 983969, 983971,
983973, 983966, 983968, 983989, 983983, 983985, 983986, 983987, 983980,
983982, 983984, 983981, 983976, 983988, 6107, 6052, 6064, 6051, 6067,
6066, 6065, 6055, 6057, 6058, 6056, 6053, 6054, 6063, 983994, 983991,
983992, 983993, 6061, 6062, 6059, 6060, 6022, 6024, 6021, 6023, 6017,
6019, 6016, 6018, 6020, 6030, 6025, 6035, 6037, 6039, 6038, 6046, 6045,
6047, 6032, 6034, 6027, 6029, 6031, 6033, 6026, 6028, 6049, 6043, 6040,
6042, 6044, 6041, 6036, 6048, 6050, 6108, 6109, 6095, 6096, 6099, 6091,
6101, 6104, 6102, 6098, 6094, 6100, 6106, 6092, 6087, 6090, 6093, 6103,
6105, 6088, 6086, 6089, 6097, 6652, 6636, 6655, 6639, 6653, 6637, 6654,
6638, 6651, 6635, 6650, 6634, 6133, 6137, 6136, 6134, 6135, 6130, 6132,
6131, 6129, 6128, 6624, 6648, 6632, 6649, 6633, 6647, 6631, 6646, 6630,
6645, 6629, 6642, 6626, 6640, 6643, 6627, 6644, 6628, 6641, 6625, 6069,
6068, 6070, 983996, 6082, 6083, 6085, 6071, 6080, 6072, 6078, 983995,
6084, 6073, 6079, 6074, 983990, 6075, 6077, 6076, 6081, 6117, 6116, 6119,
6118, 6115, 6114, 6112, 6121, 6113, 6120, 70204, 70201, 70200, 70208,
70185, 70178, 70179, 70177, 70155, 70156, 70154, 70172, 70167, 70166,
70173, 70171, 70161, 70160, 70144, 70145, 70149, 70151, 70165, 70164,
70170, 70169, 70187, 70183, 70157, 70168, 70163, 70174, 70159, 70158,
70153, 70152, 70176, 70175, 70186, 70180, 70207, 70182, 70184, 70181,
70148, 70146, 70150, 70147, 70199, 70206, 70198, 70197, 70196, 70203,
70209, 70188, 70193, 70195, 70189, 70190, 70192, 70194, 70191, 70202,
70205, 70357, 70358, 70356, 70333, 70334, 70332, 70345, 70347, 70344,
70352, 70351, 70340, 70339, 70338, 70320, 70321, 70327, 70329, 70346,
70361, 70343, 70342, 70350, 70349, 70324, 70325, 70322, 70323, 70335,
70348, 70341, 70353, 70337, 70336, 70331, 70330, 70355, 70354, 70364,
70365, 70366, 70362, 70359, 70363, 70360, 70326, 70328, 70377, 70378,
70367, 70368, 70374, 70376, 70371, 70372, 70369, 70370, 70373, 70375,
70389, 70388, 70391, 70390, 70387, 70386, 70384, 70393, 70385, 70392,
93521, 93520, 93525, 93524, 93519, 93518, 93523, 93522, 93512, 93517,
93526, 93530, 93529, 93514, 93513, 93511, 93510, 93516, 93515, 93509,
93508, 93528, 93527, 93537, 93536, 93538, 93534, 93531, 93533, 93535,
93532, 93507, 93505, 93549, 93548, 93504, 93547, 93506, 93539, 93544,
93546, 93541, 93542, 93543, 93540, 93545, 93551, 93550, 93557, 93556,
93559, 93558, 93555, 93554, 93552, 93561, 93553, 93560, 128143, 128535,
128537, 128538, 128573, 128139, 129373, 8365, 128088, 129665, 129486,
129698, 12927, 128040, 11235, 129404, 127991, 129357, 128030, 129692,
128728, 917505, 3805, 3804, 983206, 983207, 3743, 3741, 3807, 3806, 3714,
3716, 3713, 983209, 3747, 3749, 3730, 3729, 3736, 3728, 3727, 3731, 3726,
3744, 3721, 3718, 3724, 3756, 3740, 3742, 3739, 3752, 3753, 3754, 3722,
3734, 3735, 3733, 3755, 3758, 3719, 3725, 3737, 3738, 3720, 3732, 3745,
983208, 3751, 3746, 3757, 3773, 3772, 3770, 3785, 3786, 3787, 3784, 3760,
3762, 3780, 3763, 3779, 3761, 3771, 3766, 3767, 3768, 3769, 3776, 3777,
3764, 3765, 3778, 3782, 3790, 3759, 3797, 3796, 3799, 3798, 3795, 3794,
3792, 3801, 3793, 3800, 3788, 3789, 128996, 129003, 128309, 128311,
128998, 128994, 129001, 68413, 68415, 128992, 128310, 128999, 68412,
68414, 118324, 118319, 118322, 118323, 118303, 118304, 118336, 118331,
118328, 118315, 118314, 118306, 118316, 118318, 118334, 118335, 118333,
118327, 118339, 118341, 118342, 118340, 118320, 118338, 118332, 118302,
118325, 118309, 118317, 118307, 118313, 118326, 118329, 118312, 118330,
118352, 118348, 118351, 118350, 118347, 118344, 118345, 118343, 118349,
118346, 118305, 118321, 118301, 118299, 118298, 118310, 118311, 118308,
118300, 118337, 11004, 10201, 10200, 10782, 128995, 129002, 128308,
128997, 128993, 129000, 9711, 10923, 10925, 8382, 9790, 127772, 127767,
65, 258, 7858, 7856, 7854, 7862, 7860, 550, 480, 7840, 512, 196, 478,
197, 506, 7680, 256, 983564, 194, 7848, 7846, 7844, 7852, 7850, 461,
7842, 260, 983590, 983592, 192, 193, 514, 195, 570, 198, 508, 482, 42946,
393, 11373, 42808, 42810, 42802, 42804, 42806, 42812, 66, 386, 42902,
7686, 7684, 7682, 385, 579, 42822, 42932, 67, 199, 7688, 264, 268, 262,
42948, 391, 42898, 266, 571, 42960, 42796, 42798, 42862, 42931, 68, 498,
453, 42951, 272, 7696, 7698, 270, 395, 7694, 7692, 7690, 394, 497, 452,
42964, 42962, 69, 552, 7708, 202, 983586, 7874, 7872, 7870, 983584, 7878,
7876, 7704, 282, 278, 983598, 983600, 7864, 516, 203, 7868, 7706, 274,
7700, 7702, 983570, 983572, 983574, 7866, 280, 983594, 983596, 200, 201,
518, 276, 582, 439, 494, 440, 42786, 42788, 42858, 208, 425, 330, 70,
401, 7710, 42904, 71, 290, 284, 486, 500, 286, 7712, 42912, 403, 288,
484, 577, 42938, 42940, 42942, 404, 983199, 72, 7722, 7720, 292, 542,
7718, 11367, 7716, 7714, 42922, 294, 11381, 502, 42790, 73, 520, 7882,
304, 207, 7726, 206, 463, 298, 983566, 296, 7724, 7880, 302, 983604,
983606, 204, 205, 522, 300, 407, 42873, 42875, 42877, 42882, 42884,
42886, 406, 42860, 74, 308, 42930, 983608, 584, 75, 310, 488, 42818,
11369, 7730, 42816, 42820, 7728, 7732, 42914, 408, 76, 42925, 573, 11360,
7734, 7736, 11362, 319, 456, 321, 315, 7740, 317, 42824, 313, 7738,
983610, 42970, 42972, 455, 77, 7742, 7746, 7744, 983612, 11374, 7930,
7932, 42966, 78, 325, 7754, 327, 459, 544, 7752, 413, 504, 323, 42896,
7750, 7748, 42916, 209, 458, 79, 42826, 42828, 332, 7760, 7762, 415, 212,
7892, 7890, 7888, 7896, 7894, 465, 214, 554, 558, 560, 7884, 524, 336,
490, 492, 216, 510, 213, 7758, 7756, 556, 983576, 983578, 983580, 416,
7902, 7900, 7898, 7906, 7904, 7886, 210, 211, 526, 334, 42944, 400, 390,
42934, 418, 42830, 546, 80, 42834, 11363, 42832, 42836, 7764, 420, 7766,
42958, 81, 42840, 42838, 82, 342, 344, 7770, 7772, 7768, 528, 983614,
11364, 340, 7774, 530, 42918, 588, 42842, 42997, 42923, 42814, 398,
42844, 42955, 83, 352, 7782, 350, 536, 348, 346, 7780, 7778, 7784, 7776,
42956, 42953, 11390, 983582, 42920, 42949, 586, 42926, 42891, 7838,
42968, 42924, 399, 84, 354, 7792, 538, 356, 574, 7788, 7786, 7790, 430,
428, 358, 42878, 11375, 11376, 42893, 42928, 42880, 412, 42929, 581, 222,
42852, 42854, 388, 444, 423, 42794, 42792, 85, 219, 7798, 467, 220, 473,
475, 471, 469, 7794, 532, 368, 7908, 431, 7916, 7914, 7912, 7920, 7918,
7910, 362, 7802, 983568, 983620, 983622, 370, 983616, 983618, 360, 7800,
7796, 217, 218, 534, 364, 366, 42936, 580, 433, 86, 42846, 7806, 7804,
434, 42850, 42906, 42908, 42910, 42856, 42848, 87, 372, 7812, 7816, 7814,
7808, 7810, 11378, 503, 88, 7820, 7818, 89, 374, 376, 7924, 7822, 7922,
435, 7926, 7934, 221, 562, 7928, 590, 540, 90, 7824, 381, 377, 11371,
7826, 379, 7828, 11391, 437, 42950, 548, 306, 338, 10013, 43007, 43005,
43006, 43003, 43004, 42999, 450, 7461, 684, 664, 685, 662, 122638, 446,
661, 426, 674, 451, 122634, 7431, 7430, 7459, 618, 641, 671, 122628,
7436, 7439, 7440, 630, 7445, 640, 7438, 7449, 43846, 42870, 7451, 11387,
122626, 122640, 43002, 7450, 665, 7427, 610, 667, 7424, 7425, 7428, 7429,
42800, 668, 7434, 7435, 7437, 628, 7448, 42927, 42801, 7452, 7456, 7457,
655, 7458, 663, 122639, 42895, 443, 447, 448, 449, 660, 673, 7460, 422,
7547, 7550, 97, 259, 7859, 7857, 7855, 7863, 7861, 551, 481, 7841, 513,
228, 479, 229, 507, 7681, 7834, 7567, 257, 983565, 226, 7849, 7847, 7845,
7853, 7851, 462, 7843, 261, 983591, 983593, 224, 225, 515, 227, 11365,
43825, 230, 983624, 509, 483, 42947, 593, 7568, 42809, 42811, 42803,
42805, 42807, 42813, 98, 387, 42903, 7687, 7532, 7552, 7685, 7683, 595,
384, 43824, 43827, 629, 43853, 43837, 43838, 43826, 42823, 7447, 42933,
99, 231, 7689, 265, 597, 269, 263, 42900, 122653, 392, 42899, 267, 572,
43859, 43860, 43861, 42961, 666, 631, 606, 42797, 42799, 42863, 100,
42952, 273, 396, 598, 7697, 7699, 545, 271, 122661, 7533, 7695, 599,
7569, 7553, 7693, 7691, 676, 122642, 122649, 7839, 567, 607, 644, 305,
42965, 43848, 43850, 42963, 499, 454, 675, 677, 43878, 568, 42865, 101,
553, 7709, 234, 983587, 7875, 7873, 7871, 983585, 7879, 7877, 7705, 283,
279, 983599, 983601, 7865, 517, 235, 11384, 7869, 7707, 275, 7701, 7703,
983571, 983573, 983575, 43828, 7867, 281, 983595, 983597, 232, 233, 519,
277, 7570, 583, 42787, 42789, 331, 43836, 122644, 643, 122635, 122636,
7563, 646, 7576, 658, 441, 659, 495, 122648, 7578, 442, 42859, 240, 102,
7534, 7554, 402, 7711, 42905, 681, 122624, 103, 291, 285, 487, 501, 287,
7713, 7555, 42913, 608, 289, 485, 578, 42939, 42941, 42943, 611, 983200,
104, 7723, 7721, 293, 543, 7719, 11368, 7717, 7715, 7830, 42901, 614,
295, 11382, 983631, 983632, 42791, 615, 405, 105, 238, 464, 239, 7727,
983602, 983588, 983603, 7883, 521, 299, 983567, 303, 983605, 983607, 297,
7725, 7881, 236, 237, 523, 301, 616, 122650, 7574, 42874, 42876, 7545,
42883, 42885, 42887, 43876, 43840, 617, 7548, 43873, 42861, 106, 309,
669, 496, 983609, 585, 107, 311, 489, 42819, 11370, 7731, 42817, 42821,
7729, 7733, 7556, 42915, 409, 312, 108, 620, 122643, 410, 316, 7741, 564,
318, 7735, 7737, 43832, 11361, 619, 43833, 320, 122662, 42825, 314, 7739,
43831, 621, 42894, 122641, 7557, 983611, 322, 42971, 411, 622, 122629,
43829, 383, 7836, 7835, 7837, 682, 683, 42866, 457, 109, 7743, 43834,
7535, 7558, 7747, 7745, 983613, 625, 7931, 7933, 42967, 42867, 110, 326,
7755, 43835, 565, 328, 414, 7753, 626, 122663, 7536, 505, 324, 42897,
7751, 7749, 7559, 627, 42917, 241, 329, 983589, 42868, 460, 111, 244,
7893, 7891, 7889, 7897, 7895, 466, 246, 555, 559, 561, 7885, 525, 337,
42827, 11386, 42829, 333, 7761, 7763, 491, 493, 248, 511, 245, 7759,
7757, 557, 983577, 983579, 983581, 417, 7903, 7901, 7899, 7907, 7905,
7887, 242, 243, 527, 335, 122651, 42945, 596, 983625, 983626, 7575,
43839, 43874, 603, 7571, 42935, 419, 42831, 547, 112, 42835, 7549, 42833,
42837, 7765, 7537, 7560, 421, 7767, 42959, 632, 113, 42841, 672, 587,
42839, 569, 114, 343, 43849, 345, 7771, 7773, 7769, 529, 638, 7539,
122646, 7775, 636, 983615, 637, 122664, 7538, 341, 531, 7561, 42919, 589,
43847, 42843, 42998, 604, 7572, 605, 639, 122625, 600, 122631, 8580,
42815, 122627, 42869, 42845, 612, 115, 347, 7781, 353, 7783, 351, 537,
349, 122654, 7779, 7785, 7777, 42957, 42954, 575, 983583, 122665, 7540,
7562, 42921, 642, 42892, 43872, 601, 983629, 983630, 7573, 602, 43851,
43852, 609, 43830, 223, 7441, 7442, 7443, 7455, 7454, 7453, 42969, 645,
43845, 116, 355, 7793, 539, 566, 357, 11366, 7831, 7789, 7787, 122666,
7541, 7791, 427, 429, 122633, 648, 359, 679, 122647, 122652, 7546, 254,
42853, 42855, 389, 445, 424, 7446, 42795, 397, 613, 686, 687, 7433,
42879, 7444, 43842, 43841, 43843, 43844, 7432, 633, 43880, 122645, 634,
122632, 11385, 635, 647, 122637, 652, 983627, 983628, 592, 594, 7426,
623, 624, 654, 122630, 43857, 477, 7543, 670, 42881, 653, 42871, 680,
678, 43879, 11383, 42793, 117, 649, 43855, 251, 7799, 468, 252, 474, 476,
472, 470, 7795, 533, 369, 7909, 432, 7917, 7915, 7913, 7921, 7919, 7911,
363, 7803, 983569, 983621, 983623, 371, 983617, 983619, 7577, 367, 361,
7801, 7797, 249, 43854, 42937, 250, 535, 365, 43858, 650, 7551, 7531,
43856, 42872, 43875, 118, 42847, 7807, 7564, 11380, 11377, 7805, 651,
42851, 42907, 42909, 42911, 42857, 42849, 119, 373, 7813, 7817, 7815,
7809, 7811, 7832, 11379, 120, 7821, 7819, 43863, 43864, 43865, 43862,
7565, 121, 375, 255, 7925, 7823, 7923, 436, 7927, 7935, 43866, 591, 253,
563, 7929, 7833, 541, 122, 378, 7825, 657, 382, 11372, 7827, 380, 7829,
576, 438, 7542, 7566, 656, 549, 64256, 64259, 64260, 64257, 64258, 307,
64261, 64262, 339, 8347, 8340, 8336, 8337, 8341, 7522, 11388, 8342, 8343,
8344, 8345, 8338, 8346, 7523, 8348, 7524, 7525, 8339, 129726, 127811,
129388, 129897, 129916, 129947, 10203, 10202, 129899, 129917, 117902,
128494, 12296, 10641, 10643, 11058, 11056, 10576, 10571, 10570, 10574,
12304, 10647, 123, 9128, 9129, 9127, 12300, 8968, 9948, 10714, 12298,
8220, 11816, 11780, 129287, 129284, 129285, 129283, 129286, 9686, 11240,
9612, 129977, 117924, 118288, 129970, 118285, 118283, 118435, 118440,
129940, 129932, 128379, 128709, 11804, 10204, 9614, 9615, 129999, 10197,
8596, 8700, 8697, 8622, 10568, 8660, 10500, 8654, 8621, 11012, 8703,
11020, 129112, 11108, 11788, 10181, 8907, 9609, 8216, 11814, 128488, 91,
9123, 9121, 10639, 10637, 8261, 10635, 11863, 11861, 9122, 11778, 10703,
129900, 11785, 117771, 129985, 128492, 118434, 118441, 9610, 9613, 12308,
129998, 8867, 12302, 10627, 12310, 10629, 12314, 12312, 10712, 128398,
9611, 10620, 8970, 130027, 130019, 8905, 40, 9117, 9115, 9116, 11808,
9144, 9001, 117856, 118265, 10748, 171, 117774, 128269, 117920, 117846,
117922, 117911, 117861, 117762, 117918, 117880, 10553, 10154, 1422,
117832, 117906, 117908, 129307, 4054, 4056, 117872, 117876, 9958, 8294,
8237, 8234, 8206, 8592, 10563, 11074, 11083, 11082, 10611, 129973, 10618,
10615, 11070, 8676, 8633, 10525, 129032, 8619, 11064, 8698, 10566,
129040, 129024, 8602, 11024, 11025, 8610, 11066, 11065, 129028, 129176,
129044, 8617, 8695, 8612, 10527, 129216, 8646, 10521, 129192, 129184,
11144, 11013, 10603, 10599, 10590, 10582, 8637, 10594, 10602, 10598,
10586, 10578, 8636, 8651, 129778, 129088, 129092, 11104, 11136, 11130,
983241, 11174, 11172, 129064, 129060, 129056, 129072, 129068, 11120,
11114, 11140, 129168, 10510, 8666, 129186, 11067, 11069, 11068, 11244,
11061, 11060, 11062, 11063, 8606, 8678, 129172, 8604, 8656, 10498, 8653,
10502, 10523, 10508, 8672, 129194, 129076, 129188, 8701, 8647, 129783,
129190, 128620, 8668, 129080, 129104, 129084, 11077, 9804, 128006, 7213,
7221, 7216, 7220, 7215, 7214, 7217, 7218, 7219, 7170, 7169, 7168, 7184,
7183, 7182, 7247, 7193, 7180, 7188, 7187, 7186, 7185, 7172, 7171, 7198,
7197, 7190, 7189, 7173, 7177, 7181, 7192, 7191, 7246, 7245, 7179, 7178,
7175, 7174, 7201, 7200, 7176, 7196, 7195, 7199, 7202, 7194, 7203, 7227,
7231, 7230, 7228, 7229, 7223, 7222, 7205, 7204, 7210, 7211, 7208, 7209,
7206, 7212, 7207, 7237, 7236, 7239, 7238, 7235, 7234, 7232, 7241, 7233,
7240, 10897, 10895, 10893, 10899, 10891, 10614, 10889, 10887, 8922, 8934,
8808, 10918, 10920, 10885, 10877, 10881, 10883, 10879, 8818, 8804, 8822,
8806, 10873, 10875, 8918, 60, 118480, 128210, 127898, 127819, 129461,
128626, 128955, 128969, 128943, 11212, 128964, 10099, 128648, 10098,
9617, 128937, 128949, 128978, 128960, 129653, 128910, 10072, 128930,
128504, 9735, 128498, 128497, 6429, 6404, 6403, 6412, 6430, 6411, 6421,
6410, 6405, 6415, 6425, 6426, 6427, 6419, 6418, 6407, 6406, 6414, 6413,
6409, 6408, 6402, 6401, 6417, 6416, 6428, 6423, 6420, 6422, 6424, 6458,
6457, 6459, 6464, 6449, 6452, 6450, 6448, 6456, 6454, 6453, 6455, 6451,
6442, 6443, 6441, 6432, 6436, 6438, 6440, 6437, 6439, 6435, 6433, 6434,
6400, 6468, 6469, 6475, 6474, 6477, 6476, 6473, 6472, 6470, 6479, 6471,
6478, 13007, 10770, 10771, 10772, 983062, 8232, 983068, 983143, 67143,
67146, 67151, 67165, 67166, 67167, 67157, 67158, 67159, 67160, 67161,
67162, 67163, 67164, 67171, 67172, 67173, 67168, 67169, 67170, 67174,
67175, 67176, 67177, 67178, 67179, 67230, 67231, 67180, 67181, 67182,
67183, 67184, 67185, 67186, 67187, 67188, 67189, 67190, 67191, 67192,
67193, 67194, 67195, 67196, 67197, 67198, 67199, 67200, 67201, 67202,
67203, 67204, 67205, 67206, 67207, 67208, 67209, 67210, 67211, 67212,
67213, 67214, 67215, 67216, 67217, 67218, 67219, 67220, 67221, 67222,
67223, 67224, 67225, 67226, 67227, 67228, 67229, 67232, 67233, 67234,
67235, 67236, 67237, 67238, 67239, 67240, 67241, 67242, 67243, 67244,
67245, 67246, 67247, 67248, 67249, 67250, 67251, 67252, 67253, 67254,
67255, 67256, 67257, 67258, 67259, 67260, 67261, 67262, 67263, 67264,
67274, 67275, 67276, 67277, 67278, 67279, 67280, 67281, 67282, 67283,
67284, 67285, 67286, 67287, 67288, 67289, 67290, 67291, 67292, 67293,
67294, 67295, 67296, 67297, 67298, 67299, 67300, 67301, 67302, 67303,
67304, 67265, 67266, 67267, 67268, 67269, 67270, 67271, 67272, 67273,
67325, 67326, 67327, 67328, 67329, 67330, 67305, 67306, 67307, 67308,
67309, 67310, 67311, 67312, 67313, 67314, 67315, 67316, 67317, 67318,
67319, 67320, 67321, 67322, 67323, 67324, 67331, 67332, 67333, 67334,
67335, 67336, 67337, 67338, 67349, 67350, 67351, 67352, 67353, 67354,
67355, 67356, 67357, 67358, 67359, 67360, 67361, 67362, 67363, 67364,
67365, 67366, 67367, 67368, 67378, 67379, 67380, 67381, 67382, 67369,
67370, 67371, 67372, 67373, 67374, 67375, 67376, 67377, 67339, 67340,
67341, 67342, 67343, 67344, 67345, 67346, 67347, 67348, 67401, 67404,
67403, 67402, 67400, 67398, 67393, 67397, 67395, 67394, 67399, 67392,
67396, 67408, 67409, 67410, 67406, 67407, 67405, 67411, 67413, 67412,
67424, 67425, 67426, 67427, 67428, 67429, 67430, 67431, 67081, 67082,
67083, 67084, 67085, 67087, 67088, 67089, 67090, 67091, 67092, 67093,
67094, 67086, 67095, 67096, 67097, 67098, 67100, 67101, 67102, 67103,
67104, 67105, 67106, 67107, 67108, 67109, 67110, 67111, 67112, 67113,
67114, 67115, 67116, 67117, 67118, 67119, 67120, 67121, 67122, 67123,
67124, 67125, 67126, 67127, 67128, 67129, 67130, 67131, 67132, 67133,
67134, 67135, 67136, 67137, 67138, 67139, 67140, 67141, 67142, 67072,
67073, 67074, 67075, 67076, 67077, 67078, 67079, 67080, 67145, 67147,
67148, 67149, 67150, 67154, 67155, 67144, 67152, 67153, 67156, 67099,
65667, 65668, 65669, 65670, 65671, 65672, 65673, 65675, 65674, 65677,
65676, 65665, 65664, 65666, 65681, 65679, 65680, 65682, 65678, 65686,
65685, 65687, 65693, 65690, 65691, 65692, 65694, 65703, 65696, 65695,
65697, 65698, 65699, 65701, 65702, 65707, 65706, 65704, 65705, 65708,
65709, 65710, 65711, 65712, 65713, 65719, 65717, 65714, 65715, 65716,
65718, 65720, 65721, 65722, 65723, 65724, 65725, 65726, 65727, 65728,
65729, 65731, 65730, 65732, 65733, 65737, 65734, 65735, 65736, 65738,
65739, 65740, 65741, 65743, 65742, 65744, 65745, 65747, 65748, 65752,
65749, 65750, 65751, 65753, 65754, 65755, 65756, 65757, 65779, 65780,
65781, 65782, 65783, 65784, 65785, 65759, 65760, 65761, 65762, 65763,
65764, 65765, 65766, 65767, 65768, 65769, 65770, 65771, 65772, 65773,
65774, 65775, 65776, 65777, 65778, 65758, 65786, 65683, 65684, 65689,
65688, 65700, 65746, 65561, 65543, 65587, 65582, 65589, 65536, 65541,
65579, 65566, 65571, 65596, 65569, 65584, 65544, 65559, 65540, 65557,
65560, 65580, 65606, 65600, 65599, 65577, 65562, 65538, 65573, 65563,
65609, 65588, 65549, 65568, 65537, 65581, 65574, 65601, 65542, 65593,
65583, 65594, 65552, 65547, 65605, 65578, 65545, 65585, 65586, 65546,
65570, 65591, 65564, 65565, 65607, 65610, 65611, 65553, 65590, 65550,
65539, 65576, 65608, 65551, 65554, 65592, 65603, 65597, 65567, 65572,
65558, 65555, 65612, 65602, 65556, 65613, 65604, 65620, 65621, 65623,
65624, 65626, 65627, 65628, 65629, 65622, 65616, 65617, 65619, 65618,
65625, 128391, 128279, 128482, 128132, 42237, 42235, 42232, 42234, 42236,
42233, 42206, 42205, 42197, 42196, 42204, 42195, 42228, 42229, 42230,
42213, 42208, 42224, 42225, 42203, 42202, 42221, 42198, 42216, 42214,
42200, 42199, 42194, 42193, 42219, 42210, 73648, 42220, 42211, 42212,
42222, 42223, 42227, 42231, 42192, 42217, 42201, 42209, 42207, 42218,
42215, 42226, 42238, 42239, 8356, 8374, 129409, 129422, 9806, 128274,
983079, 983076, 128271, 117785, 117786, 117784, 117783, 117782, 117781,
8743, 10848, 10846, 10833, 10844, 10842, 10847, 8744, 10841, 10851,
10850, 10834, 10845, 10843, 10982, 10188, 129688, 10231, 129240, 10234,
10206, 10232, 10237, 10229, 10235, 11059, 129236, 10230, 129238, 129239,
129232, 10236, 10233, 10238, 129233, 129234, 10239, 10205, 129524,
128884, 129719, 128140, 127977, 128261, 129707, 12319, 8270, 11847,
11848, 95, 118273, 9691, 118276, 118291, 129935, 118436, 118447, 9604,
9697, 117765, 128394, 129852, 129853, 129870, 129872, 129868, 129856,
129871, 129869, 129854, 129873, 129855, 128395, 128396, 128393, 10559,
117934, 117936, 117932, 117930, 117972, 9695, 117960, 117948, 117964,
117968, 117952, 117956, 117944, 117940, 117817, 129951, 9722, 117820,
128397, 118428, 117935, 117937, 117933, 117931, 117973, 9694, 117961,
117949, 117965, 117969, 117953, 117957, 117945, 117941, 117818, 10558,
128318, 10065, 129950, 9727, 117823, 117767, 129863, 129865, 129867,
129864, 129861, 129866, 129859, 129862, 129860, 129857, 129858, 10195,
118431, 10063, 9998, 9987, 118429, 117821, 118430, 117822, 130021, 9605,
118425, 118426, 118424, 117816, 118427, 117819, 9602, 9601, 9607, 9603,
118437, 118446, 9606, 129903, 9674, 10208, 129438, 128557, 127853,
129523, 128886, 129729, 66190, 66192, 66187, 66196, 66199, 66185, 66200,
66178, 66179, 66176, 66201, 66177, 66202, 66191, 66193, 66181, 66180,
66203, 66182, 66186, 66189, 66195, 66188, 66197, 66198, 66194, 66183,
66204, 66184, 67887, 67892, 67881, 67895, 67891, 67886, 67872, 67893,
67876, 67894, 67883, 67896, 67873, 67897, 67875, 67889, 67874, 67878,
67880, 67882, 67884, 67890, 67885, 67888, 67877, 67879, 67903, 129317,
983226, 983234, 983224, 983229, 8468, 129433, 983065, 129668, 129522,
129497, 69986, 69981, 69991, 69985, 69984, 69990, 69989, 70002, 69997,
69983, 69982, 69988, 69987, 69995, 69994, 69978, 69977, 69976, 69975,
69980, 69979, 69974, 69973, 69993, 69992, 70001, 69998, 69996, 70000,
69999, 69968, 69971, 69969, 69972, 69970, 70006, 70005, 70003, 70004,
127012, 127019, 127008, 126990, 126999, 126976, 127005, 126987, 126996,
127004, 126986, 126995, 126979, 127009, 126991, 127000, 127001, 126983,
126992, 127011, 127010, 126977, 127007, 126989, 126998, 127006, 126988,
126997, 127015, 127014, 127003, 126985, 126994, 127002, 126984, 126993,
126978, 126982, 127017, 126981, 126980, 127016, 127018, 127013, 73464,
73442, 73451, 73448, 73444, 73449, 73447, 73441, 73450, 73440, 73454,
73445, 73443, 73453, 73456, 73446, 73455, 73452, 73457, 73463, 73461,
73459, 73462, 73460, 73458, 128892, 3449, 3435, 3434, 3437, 3436, 3433,
3432, 3430, 3439, 3431, 3438, 3419, 3420, 3446, 3417, 3422, 3416, 3447,
3444, 3443, 3448, 3418, 3421, 3445, 3333, 3423, 3334, 3344, 3348, 3453,
3454, 3414, 3451, 3450, 3452, 3455, 3412, 3413, 3355, 3354, 3406, 3362,
3361, 3367, 3366, 3360, 3386, 3359, 3365, 3364, 3332, 3339, 3424, 3340,
3425, 3381, 3369, 3363, 3353, 3358, 3368, 3380, 3379, 3378, 3377, 3376,
3337, 3338, 3346, 3347, 3335, 3336, 3382, 3383, 3384, 3373, 3372, 3352,
3351, 3357, 3356, 3350, 3349, 3371, 3370, 3342, 3343, 3385, 3374, 3375,
3441, 3442, 3440, 3328, 3388, 3329, 3387, 3405, 3331, 3389, 3330, 3407,
3390, 3400, 3404, 3393, 3394, 3395, 3396, 3426, 3427, 3402, 3403, 3391,
3392, 3398, 3399, 3415, 9895, 9894, 9893, 9794, 10016, 129443, 128104,
128372, 129333, 128114, 128115, 128378, 128107, 2137, 2122, 2121, 2133,
2120, 2126, 2132, 2129, 2136, 2113, 2115, 2114, 2116, 2123, 2124, 2125,
2128, 2130, 2131, 2118, 2134, 2117, 2112, 2127, 2119, 2135, 2138, 2139,
2142, 68288, 68314, 68313, 68290, 68289, 68293, 68308, 68292, 68291,
68300, 68299, 68298, 68297, 68306, 68304, 68320, 68318, 68323, 68312,
68317, 68322, 68309, 68302, 68324, 68305, 68319, 68307, 68321, 68303,
68294, 68301, 68311, 68295, 68316, 68315, 68310, 68331, 68335, 68334,
68333, 68332, 68340, 68339, 68338, 68342, 68337, 68341, 68336, 68296,
68326, 68325, 128094, 129469, 8380, 128368, 129389, 9967, 127809, 129671,
72835, 72834, 72827, 72826, 72836, 72828, 72821, 72825, 72829, 72823,
72822, 72819, 72818, 72831, 72830, 72844, 72845, 72838, 72839, 72840,
72832, 72820, 72846, 72824, 72843, 72833, 72842, 72837, 72841, 72847,
72886, 72885, 72867, 72866, 72859, 72858, 72868, 72860, 72853, 72857,
72861, 72855, 72854, 72851, 72850, 72863, 72862, 72876, 72877, 72870,
72871, 72864, 72852, 72878, 72856, 72875, 72865, 72874, 72869, 72873,
72879, 72880, 72883, 72881, 72884, 72882, 72816, 72817, 9901, 129355,
73007, 72980, 72979, 72983, 72982, 72988, 73008, 72987, 72960, 72961,
72968, 72971, 72985, 72984, 72990, 72989, 72964, 72965, 72962, 72963,
73005, 72999, 73006, 72973, 72972, 72976, 72986, 72981, 72991, 73001,
73002, 73003, 72995, 72994, 72978, 72977, 72975, 72974, 72993, 72992,
73004, 72996, 72998, 73000, 72997, 72966, 72969, 73031, 73030, 73027,
73028, 73026, 73025, 73024, 73014, 73009, 73020, 73023, 73012, 73013,
73010, 73011, 73018, 73021, 73029, 73045, 73044, 73047, 73046, 73043,
73042, 73040, 73049, 73041, 73048, 186, 127405, 12348, 119811, 120778,
120491, 119827, 120495, 120505, 120507, 119808, 120488, 119809, 120489,
119833, 120493, 119812, 120492, 120494, 119814, 120490, 119816, 120496,
119818, 120497, 119819, 120498, 119822, 120502, 120512, 119823, 120509,
120511, 120503, 119825, 120504, 119826, 120506, 119828, 120508, 119810,
120510, 119820, 120499, 119821, 120500, 119831, 120501, 119813, 119815,
119817, 119824, 119829, 119830, 119832, 119837, 120779, 120517, 119834,
120514, 119835, 120515, 119859, 120519, 119838, 120518, 120520, 119839,
120531, 119840, 120516, 119842, 120522, 119844, 120523, 119845, 120524,
119848, 120528, 120538, 119849, 120535, 120537, 120529, 119851, 120530,
119852, 120532, 119853, 120521, 120533, 119854, 120534, 119836, 120536,
119846, 120525, 119847, 120526, 119857, 120527, 119841, 119843, 119850,
119855, 119856, 119858, 120016, 120017, 120018, 120019, 120020, 120021,
120022, 120023, 120024, 120025, 120026, 120027, 120028, 120029, 120030,
120031, 120032, 120033, 120034, 120035, 120036, 120037, 120038, 120039,
120040, 120041, 120042, 120043, 120044, 120045, 120046, 120047, 120048,
120049, 120050, 120051, 120052, 120053, 120054, 120055, 120056, 120057,
120058, 120059, 120060, 120061, 120062, 120063, 120064, 120065, 120066,
120067, 119931, 120611, 120621, 120623, 119912, 120604, 119913, 120605,
119937, 120609, 119915, 120607, 119916, 120608, 120610, 119918, 120606,
119920, 120612, 119922, 120613, 119923, 120614, 119926, 120618, 120628,
119927, 120625, 120627, 120619, 119929, 120620, 119930, 120622, 119932,
120624, 119914, 120626, 119924, 120615, 119925, 120616, 119935, 120617,
119917, 119919, 119921, 119928, 119933, 119934, 119936, 120656, 120658,
120629, 120659, 120655, 120661, 120660, 119938, 120630, 119939, 120631,
119963, 120635, 119941, 120633, 119942, 120634, 120636, 119943, 120647,
119944, 120632, 119946, 120638, 119948, 120639, 119949, 120640, 119952,
120644, 120654, 119953, 120651, 120653, 120645, 119955, 120646, 119956,
120648, 119957, 120637, 120649, 119958, 120650, 119940, 120652, 119950,
120641, 119951, 120642, 119961, 120643, 119945, 119947, 119954, 119959,
119960, 119962, 120657, 120540, 120542, 120513, 120543, 120539, 120545,
120544, 120541, 120172, 120173, 120174, 120175, 120176, 120177, 120178,
120179, 120180, 120181, 120182, 120183, 120184, 120185, 120186, 120187,
120188, 120189, 120190, 120191, 120192, 120193, 120194, 120195, 120196,
120197, 120198, 120199, 120200, 120201, 120202, 120203, 120204, 120205,
120206, 120207, 120208, 120209, 120210, 120211, 120212, 120213, 120214,
120215, 120216, 120217, 120218, 120219, 120220, 120221, 120222, 120223,
120787, 120786, 120789, 120788, 120785, 120784, 120782, 120791, 120783,
120790, 120120, 120121, 120123, 120124, 120125, 120126, 120128, 120129,
120130, 120131, 120132, 120134, 120138, 120139, 120140, 120141, 120142,
120143, 120144, 120146, 120147, 120148, 120149, 120150, 120151, 120152,
120153, 120154, 120155, 120156, 120157, 120158, 120159, 120160, 120161,
120162, 120163, 120164, 120165, 120166, 120167, 120168, 120169, 120170,
120171, 120797, 120796, 120799, 120798, 120795, 120794, 120792, 120801,
120793, 120800, 120068, 120069, 120071, 120072, 120073, 120074, 120077,
120078, 120079, 120080, 120081, 120082, 120083, 120084, 120086, 120087,
120088, 120089, 120090, 120091, 120092, 120094, 120095, 120096, 120097,
120098, 120099, 120100, 120101, 120102, 120103, 120104, 120105, 120106,
120107, 120108, 120109, 120110, 120111, 120112, 120113, 120114, 120115,
120116, 120117, 120118, 120119, 10189, 119889, 120484, 120485, 120575,
119886, 120572, 119887, 120573, 119911, 120577, 119890, 120576, 120578,
119891, 120589, 119892, 120574, 119894, 120580, 119896, 120581, 119897,
120582, 119900, 120586, 120596, 119901, 120593, 120595, 120587, 119903,
120588, 119904, 120590, 119905, 120579, 120591, 119906, 120592, 119888,
120594, 119898, 120583, 119899, 120584, 119909, 120585, 119895, 119902,
119907, 119908, 119910, 119879, 120553, 120563, 120565, 119860, 120546,
119861, 120547, 119885, 120551, 119863, 120549, 119864, 120550, 120552,
119866, 120548, 119868, 120554, 119870, 120555, 119871, 120556, 119874,
120560, 120570, 119875, 120567, 120569, 120561, 119877, 120562, 119878,
120564, 119880, 120566, 119862, 120568, 119872, 120557, 119873, 120558,
119883, 120559, 119865, 119867, 119869, 119876, 119881, 119882, 119884,
120598, 120600, 120571, 120601, 120597, 120603, 120602, 120599, 120432,
120433, 120434, 120435, 120436, 120437, 120438, 120439, 120440, 120441,
120442, 120443, 120444, 120445, 120446, 120447, 120448, 120449, 120450,
120451, 120452, 120453, 120454, 120455, 120456, 120457, 120458, 120459,
120460, 120461, 120462, 120463, 120464, 120465, 120466, 120467, 120468,
120469, 120470, 120471, 120472, 120473, 120474, 120475, 120476, 120477,
120478, 120479, 120480, 120481, 120482, 120483, 120827, 120826, 120829,
120828, 120825, 120824, 120822, 120831, 120823, 120830, 10215, 10221,
10219, 10217, 10223, 10187, 10214, 10220, 10218, 10216, 10222, 120399,
120727, 120737, 120739, 120380, 120720, 120381, 120721, 120405, 120725,
120383, 120723, 120384, 120724, 120726, 120386, 120722, 120388, 120728,
120390, 120729, 120391, 120730, 120394, 120734, 120744, 120395, 120741,
120743, 120735, 120397, 120736, 120398, 120738, 120400, 120740, 120382,
120742, 120392, 120731, 120393, 120732, 120403, 120733, 120385, 120387,
120389, 120396, 120401, 120402, 120404, 120772, 120774, 120745, 120775,
120771, 120777, 120776, 120406, 120746, 120407, 120747, 120431, 120751,
120409, 120749, 120410, 120750, 120752, 120411, 120763, 120412, 120748,
120414, 120754, 120416, 120755, 120417, 120756, 120420, 120760, 120770,
120421, 120767, 120769, 120761, 120423, 120762, 120424, 120764, 120425,
120753, 120765, 120426, 120766, 120408, 120768, 120418, 120757, 120419,
120758, 120429, 120759, 120413, 120415, 120422, 120427, 120428, 120430,
120773, 120295, 120669, 120679, 120681, 120276, 120662, 120277, 120663,
120301, 120667, 120279, 120665, 120280, 120666, 120668, 120282, 120664,
120284, 120670, 120286, 120671, 120287, 120672, 120290, 120676, 120686,
120291, 120683, 120685, 120677, 120293, 120678, 120294, 120680, 120296,
120682, 120278, 120684, 120288, 120673, 120289, 120674, 120299, 120675,
120281, 120283, 120285, 120292, 120297, 120298, 120300, 120714, 120716,
120687, 120717, 120713, 120719, 120718, 120302, 120688, 120303, 120689,
120327, 120693, 120305, 120691, 120306, 120692, 120694, 120307, 120705,
120308, 120690, 120310, 120696, 120312, 120697, 120313, 120698, 120316,
120702, 120712, 120317, 120709, 120711, 120703, 120319, 120704, 120320,
120706, 120321, 120695, 120707, 120322, 120708, 120304, 120710, 120314,
120699, 120315, 120700, 120325, 120701, 120309, 120311, 120318, 120323,
120324, 120326, 120715, 120817, 120816, 120819, 120818, 120815, 120814,
120812, 120821, 120813, 120820, 120328, 120329, 120330, 120331, 120332,
120333, 120334, 120335, 120336, 120337, 120338, 120339, 120340, 120341,
120342, 120343, 120344, 120345, 120346, 120347, 120348, 120349, 120350,
120351, 120352, 120353, 120354, 120355, 120356, 120357, 120358, 120359,
120360, 120361, 120362, 120363, 120364, 120365, 120366, 120367, 120368,
120369, 120370, 120371, 120372, 120373, 120374, 120375, 120376, 120377,
120378, 120379, 120224, 120225, 120226, 120227, 120228, 120229, 120230,
120231, 120232, 120233, 120234, 120235, 120236, 120237, 120238, 120239,
120240, 120241, 120242, 120243, 120244, 120245, 120246, 120247, 120248,
120249, 120250, 120251, 120252, 120253, 120254, 120255, 120256, 120257,
120258, 120259, 120260, 120261, 120262, 120263, 120264, 120265, 120266,
120267, 120268, 120269, 120270, 120271, 120272, 120273, 120274, 120275,
120807, 120806, 120809, 120808, 120805, 120804, 120802, 120811, 120803,
120810, 119964, 119966, 119967, 119970, 119973, 119974, 119977, 119978,
119979, 119980, 119982, 119983, 119984, 119985, 119986, 119987, 119988,
119989, 119990, 119991, 119992, 119993, 119995, 119997, 119998, 119999,
120000, 120001, 120002, 120003, 120005, 120006, 120007, 120008, 120009,
120010, 120011, 120012, 120013, 120014, 120015, 129481, 119528, 119538,
119531, 119535, 119525, 119524, 119534, 119529, 119539, 119527, 119537,
119526, 119536, 119533, 119523, 119532, 119522, 119530, 119520, 119521,
128470, 175, 8737, 10667, 10666, 10671, 10669, 10670, 10668, 10665,
10664, 10651, 10653, 8798, 127830, 129470, 129471, 93773, 93764, 93790,
93787, 983274, 93783, 983273, 93782, 93772, 93766, 93791, 93779, 93789,
93786, 93776, 93777, 93785, 93775, 93770, 93769, 93771, 93774, 93780,
93760, 93767, 93781, 93788, 93761, 93768, 93778, 93762, 93763, 93784,
93765, 93847, 93827, 93846, 93826, 93845, 93825, 93844, 93829, 93828,
93831, 93830, 93824, 93833, 93832, 93837, 93836, 93834, 93842, 93835,
93838, 93839, 93843, 93840, 93841, 93805, 93796, 93822, 93819, 983276,
93815, 983275, 93814, 93804, 93798, 93823, 93811, 93821, 93818, 93808,
93809, 93817, 93807, 93802, 93801, 93803, 93806, 93812, 93792, 93799,
93813, 93820, 93793, 93800, 93810, 93794, 93795, 93816, 93797, 93849,
93850, 93848, 11859, 11852, 11860, 128901, 9899, 10090, 10091, 128967,
128965, 128944, 10100, 10088, 10092, 10101, 10089, 10093, 8287, 9618,
128971, 128950, 128938, 9900, 118512, 128963, 128961, 10073, 128974,
128956, 9898, 128911, 128931, 43761, 44013, 43762, 43760, 44011, 43994,
43989, 43974, 43746, 43993, 43991, 43751, 43750, 43992, 43986, 43987,
43990, 43968, 43995, 43976, 43973, 43999, 43977, 44001, 43752, 43747,
43972, 43998, 43984, 43969, 43753, 43754, 43975, 44000, 43978, 43749,
43748, 43983, 44002, 43970, 43996, 43971, 43997, 43981, 43988, 43979,
43985, 43980, 43982, 43744, 43745, 44012, 43763, 43764, 44005, 43757,
43759, 43758, 44009, 44003, 44007, 44006, 44004, 43755, 44008, 43756,
44010, 43765, 43766, 44021, 44020, 44023, 44022, 44019, 44018, 44016,
44025, 44017, 44024, 118475, 129760, 127816, 125140, 125137, 125136,
125139, 125141, 125138, 125142, 124928, 124929, 124930, 124936, 124937,
124949, 124950, 124948, 124938, 124956, 124990, 124992, 124974, 124955,
124964, 124963, 124991, 124957, 124962, 124976, 124996, 124997, 124998,
124982, 124983, 124984, 125004, 124975, 125003, 125005, 125011, 125018,
125028, 125029, 125012, 125019, 125020, 125027, 125013, 125035, 124942,
124934, 125090, 125046, 125078, 125033, 124946, 125048, 125037, 125070,
125000, 125095, 125121, 124951, 125044, 125041, 125072, 124987, 125066,
125076, 125074, 125009, 125107, 125108, 125068, 125124, 124945, 125002,
124931, 125089, 125022, 124980, 125099, 124986, 125100, 125080, 125119,
124933, 125021, 125015, 125071, 124985, 125117, 125056, 124993, 125039,
125049, 125043, 125024, 124932, 125047, 125097, 124959, 125069, 125088,
124999, 125123, 124952, 125036, 125026, 125001, 125085, 124960, 125057,
125073, 124966, 125098, 125014, 125091, 124989, 125007, 124978, 124940,
125106, 125050, 125030, 125092, 124941, 125060, 125077, 125102, 125094,
125053, 125040, 125055, 125104, 125103, 124939, 125017, 124961, 125112,
125087, 124970, 124971, 124969, 125023, 124979, 125042, 124947, 125086,
125075, 125051, 125111, 124968, 124944, 125038, 125096, 125016, 125118,
125109, 124953, 125059, 125052, 125006, 124958, 125093, 125115, 125054,
124988, 125008, 125084, 125061, 125064, 125120, 125063, 124967, 124977,
124965, 125031, 983279, 125081, 125082, 983280, 125010, 125067, 124973,
125032, 124935, 125116, 125122, 125101, 124994, 124995, 125113, 125058,
125079, 125114, 125065, 125034, 125083, 124954, 125062, 125105, 125110,
125045, 124943, 124972, 124981, 125025, 125131, 125130, 125133, 125132,
125129, 125128, 125135, 125127, 125134, 128334, 128697, 68028, 68093,
68090, 68089, 68086, 68029, 68092, 68091, 68095, 68088, 68087, 68094,
68000, 68016, 68020, 68021, 68022, 68009, 68010, 68015, 68017, 68014,
68013, 68018, 68006, 68023, 68012, 68008, 68007, 68019, 68011, 68005,
68004, 68001, 68002, 68003, 68031, 68030, 68039, 68075, 68057, 68084,
68066, 68036, 68054, 68081, 68063, 68045, 68072, 68035, 68053, 68080,
68062, 68044, 68071, 68040, 68076, 68058, 68085, 68067, 68038, 68056,
68083, 68065, 68047, 68074, 68037, 68055, 68082, 68064, 68046, 68073,
68034, 68052, 68079, 68061, 68043, 68070, 68033, 68051, 68078, 68060,
68042, 68069, 68041, 68068, 68032, 68050, 68077, 68059, 67974, 67975,
67982, 67983, 67978, 67979, 67980, 67981, 67987, 67988, 67989, 67992,
67993, 67994, 67995, 67996, 67986, 67985, 67990, 67997, 67984, 67977,
67976, 67991, 67973, 67972, 67968, 67969, 67970, 67971, 67998, 67999,
9791, 129500, 983173, 9170, 9172, 9177, 9176, 9175, 9173, 9174, 9171,
9169, 128647, 118467, 128221, 94015, 93989, 93971, 93958, 94019, 94021,
93953, 94023, 93999, 93995, 94008, 93981, 93979, 93967, 93963, 93993,
93992, 93983, 93977, 93976, 93975, 93974, 93968, 94032, 93988, 93987,
93973, 93972, 93997, 93996, 93969, 94106, 94107, 94108, 94109, 94110,
94111, 94002, 94026, 94022, 94003, 94004, 94010, 93980, 93978, 94099,
94100, 94101, 94102, 94103, 94104, 94105, 93998, 93994, 94007, 94025,
93966, 93962, 94024, 93961, 93960, 94000, 94009, 93964, 93965, 94001,
93970, 93984, 93954, 94017, 94014, 94016, 94013, 94006, 94012, 94005,
94011, 93986, 93985, 93955, 93952, 94020, 93990, 93957, 93956, 93959,
93982, 94018, 93991, 94035, 94034, 94033, 94031, 94098, 94096, 94097,
94095, 94036, 94039, 94040, 94067, 94068, 94038, 94037, 94073, 94075,
94045, 94071, 94069, 94046, 94047, 94085, 94074, 94049, 94050, 94051,
94052, 94053, 94086, 94057, 94054, 94084, 94055, 94056, 94041, 94082,
94048, 94081, 94042, 94076, 94058, 94059, 94060, 94061, 94063, 94064,
94079, 94087, 94062, 94065, 94080, 94066, 94072, 94070, 94044, 94043,
94077, 94078, 94083, 983239, 983240, 128300, 127908, 181, 129440, 117772,
129986, 130022, 130023, 183, 8943, 129686, 127894, 127756, 8357, 128189,
128469, 128656, 8722, 10793, 10794, 10796, 10795, 10810, 8770, 8723,
10751, 129694, 129705, 128241, 128242, 128244, 129339, 8871, 71232,
71229, 71236, 71231, 71230, 71216, 71226, 71228, 71219, 71220, 71221,
71222, 71223, 71224, 71217, 71218, 71225, 71227, 71234, 71233, 71253,
71252, 71255, 71254, 71251, 71250, 71248, 71257, 71249, 71256, 71168,
71169, 71179, 71181, 71195, 71194, 71200, 71199, 71193, 71192, 71198,
71197, 71174, 71175, 71176, 71177, 71210, 71172, 71173, 71170, 71171,
71215, 71209, 71186, 71196, 71191, 71201, 71211, 71212, 71213, 71205,
71204, 71188, 71187, 71185, 71184, 71190, 71189, 71183, 71182, 71203,
71202, 71214, 71206, 71208, 71207, 71178, 71180, 71235, 43867, 67512,
714, 700, 67509, 761, 763, 7470, 7471, 7487, 7474, 7483, 7476, 43000,
7484, 7485, 7468, 7469, 42994, 7472, 7473, 42995, 7475, 7477, 7478, 7479,
7480, 7481, 7482, 7486, 42996, 42993, 7488, 7489, 11389, 7490, 723, 722,
42755, 42753, 42757, 42759, 42754, 42752, 42756, 42758, 42652, 122956,
122958, 122929, 122954, 122932, 122952, 122943, 122987, 122946, 122938,
122939, 122942, 122960, 122941, 122959, 122989, 122955, 122950, 122948,
122944, 122951, 122988, 122953, 122934, 122935, 122936, 122933, 122949,
122931, 122957, 122930, 122947, 122937, 122928, 122940, 122945, 42653,
7544, 710, 735, 42889, 67510, 42776, 42775, 42777, 750, 698, 725, 709,
984011, 42765, 42760, 42770, 741, 984012, 42769, 42764, 42774, 745, 762,
764, 715, 704, 67507, 4348, 42766, 42761, 42771, 742, 721, 67511, 42888,
42768, 42763, 751, 767, 753, 42773, 717, 754, 755, 744, 759, 719, 718,
42783, 752, 716, 42778, 703, 43882, 706, 713, 42767, 42762, 42772, 743,
758, 757, 756, 727, 766, 726, 697, 42780, 42782, 42781, 42779, 760, 705,
67508, 701, 67513, 702, 43883, 707, 734, 42890, 765, 7491, 7493, 7516,
67459, 7495, 7601, 7509, 67461, 7517, 7580, 7590, 694, 7591, 67474,
67476, 7595, 67484, 67491, 67456, 67460, 67478, 7600, 67498, 7608, 67506,
67471, 67492, 7581, 7521, 7496, 67468, 67469, 67467, 67466, 7519, 7585,
67480, 67463, 67465, 67464, 7611, 7613, 7612, 7497, 7604, 7582, 7614,
7505, 7584, 67472, 7501, 7518, 7520, 67475, 736, 688, 689, 67477, 43868,
67479, 7504, 7596, 7588, 7589, 690, 7592, 737, 43869, 43870, 7593, 67485,
7594, 67483, 67481, 67482, 67486, 67487, 43001, 7599, 7598, 7506, 67490,
7499, 7507, 7510, 7602, 691, 67497, 67496, 67473, 740, 7583, 67470, 738,
67514, 7603, 7586, 7498, 7513, 7511, 7605, 67503, 67499, 67502, 7508,
67500, 67501, 7492, 7579, 7494, 7514, 7597, 7500, 692, 67494, 67495, 693,
67488, 67489, 7587, 7502, 7610, 43881, 7615, 7512, 43871, 7606, 7607,
7515, 67504, 7609, 7503, 67493, 695, 739, 696, 42784, 42785, 67458,
67457, 720, 699, 724, 708, 749, 42864, 748, 712, 747, 746, 10762, 128184,
128176, 129297, 71266, 6165, 6164, 6167, 6166, 6163, 6162, 6160, 6169,
6161, 6168, 6159, 6157, 6156, 6155, 6147, 6149, 71271, 71272, 6176, 6279,
6272, 6295, 6273, 6289, 6274, 6313, 6286, 6311, 6310, 6280, 6276, 6275,
6282, 6287, 6278, 6285, 6284, 6288, 6277, 6291, 6290, 6293, 6294, 6292,
6283, 6281, 6185, 6196, 6264, 6210, 6190, 6303, 6305, 6307, 6300, 6302,
6304, 6312, 6298, 6301, 6314, 6308, 6309, 6299, 6306, 6263, 6262, 6260,
6261, 6259, 6244, 6252, 6245, 6253, 6254, 6248, 6238, 6239, 6257, 6247,
6256, 6242, 6258, 6255, 6241, 6240, 6249, 6251, 6250, 6243, 6246, 6237,
6193, 6192, 6297, 6296, 6218, 6236, 6225, 6234, 6227, 6235, 6211, 6222,
6232, 6228, 6224, 6226, 6233, 6214, 6216, 6215, 6217, 6219, 6231, 6223,
6220, 6221, 6230, 6229, 6212, 6213, 6204, 6194, 6209, 6207, 6205, 6206,
6203, 6202, 6208, 6191, 6177, 6183, 6179, 6181, 6180, 6182, 6186, 6195,
6201, 6189, 6197, 6184, 6187, 6188, 6199, 6200, 6198, 6178, 71273, 71275,
71274, 6151, 71265, 71270, 71269, 6144, 71268, 71264, 71267, 71276, 6150,
6158, 6148, 6146, 6152, 6153, 6154, 6145, 9866, 9867, 119552, 9101,
128669, 128018, 128053, 127889, 129390, 118261, 128496, 129742, 129439,
128332, 129334, 128741, 128757, 129468, 128739, 9968, 128670, 128672,
128693, 128507, 128001, 129700, 128045, 128068, 128511, 127909, 92748,
92744, 92761, 92750, 92739, 92751, 92737, 92754, 92749, 92753, 92743,
92752, 92757, 92766, 92736, 92741, 92746, 92764, 92745, 92765, 92755,
92756, 92763, 92762, 92747, 92760, 92758, 92738, 92740, 92759, 92742,
92783, 92782, 92773, 92772, 92775, 92774, 92771, 92770, 92768, 92777,
92769, 92776, 70291, 70292, 70290, 70297, 70296, 70293, 70287, 70298,
70312, 70311, 70306, 70285, 70284, 70289, 70288, 70295, 70294, 70303,
70301, 70283, 70282, 70280, 70278, 70277, 70276, 70300, 70299, 70310,
70307, 70304, 70309, 70308, 70305, 70272, 70275, 70273, 70274, 70313,
127926, 215, 10804, 10805, 10807, 10811, 10801, 10800, 10005, 8844, 8845,
8846, 8888, 127812, 117860, 9838, 9839, 9837, 127929, 127896, 119161,
119159, 119155, 119157, 119061, 119060, 119224, 119235, 119132, 119058,
119059, 119255, 119253, 119130, 119131, 119163, 119169, 119149, 119167,
119168, 119210, 119178, 119173, 119211, 119150, 119151, 119152, 119153,
119154, 119175, 119212, 119213, 119166, 119164, 119141, 119142, 119176,
119179, 119143, 119144, 119145, 119165, 119177, 119170, 119174, 119092,
119052, 119247, 119186, 119073, 119109, 119093, 119050, 119220, 119221,
119044, 119049, 119187, 119209, 119082, 119041, 119083, 119077, 119078,
119162, 119160, 119208, 119156, 119158, 119136, 119102, 119056, 119057,
119146, 119147, 119148, 119042, 119066, 119065, 119069, 119185, 119074,
119075, 119076, 119231, 119232, 119085, 119084, 119070, 119071, 119072,
119218, 119217, 119189, 119188, 119248, 119249, 119172, 119171, 119216,
119134, 119100, 119206, 119262, 119270, 119271, 119263, 119268, 119269,
119272, 119264, 119267, 119266, 119265, 119274, 119223, 119234, 119233,
119046, 119222, 119184, 119227, 119237, 119228, 119122, 119123, 119081,
119098, 119207, 119129, 119087, 119086, 119128, 119140, 119106, 119062,
119195, 119204, 119205, 119196, 119197, 119198, 119199, 119200, 119201,
119202, 119203, 119094, 119095, 119126, 119108, 119215, 119214, 119261,
119252, 119257, 119258, 119183, 119090, 119091, 119135, 119101, 119096,
119097, 119053, 119054, 119055, 119048, 119043, 119047, 119180, 119254,
119259, 119225, 119236, 119226, 119229, 119238, 119230, 119051, 119045,
119089, 119088, 119040, 119067, 119068, 119137, 119103, 119139, 119105,
119110, 119111, 119250, 119181, 119273, 119243, 119244, 119245, 119246,
119242, 119240, 119239, 119241, 119064, 119138, 119104, 119063, 119256,
119260, 119190, 119118, 119119, 119120, 119121, 119112, 119113, 119116,
119117, 119114, 119115, 119124, 119125, 119191, 119193, 119194, 119127,
119251, 119107, 119133, 119099, 119219, 119192, 119182, 127932, 127925,
8811, 8810, 4158, 4156, 4157, 4155, 4192, 4191, 4190, 4226, 4129, 43642,
4138, 4135, 4208, 4207, 4206, 4159, 4099, 4098, 4097, 43625, 43624,
43626, 43623, 43622, 43621, 43627, 43618, 43617, 43630, 43629, 43620,
43619, 983244, 43631, 43616, 43635, 43628, 43633, 43634, 4096, 4188,
4189, 4187, 4186, 4136, 4121, 4106, 4111, 4100, 4105, 4116, 4238, 4123,
4176, 43491, 4218, 4220, 43490, 4221, 4224, 43492, 4223, 43489, 4216,
43488, 4215, 4214, 4213, 4219, 4222, 4225, 4217, 4130, 43646, 43647,
4193, 4177, 4126, 4112, 43503, 43495, 43502, 43501, 43516, 43515, 43518,
43517, 43498, 43497, 43500, 43499, 43514, 43496, 4108, 4107, 4113, 4198,
4197, 4125, 4110, 4109, 4115, 4114, 4133, 4134, 4178, 4179, 4180, 4181,
4131, 4132, 4128, 4124, 4120, 4119, 4102, 4101, 4104, 4103, 4118, 4117,
4127, 4122, 4137, 43636, 43637, 43638, 43632, 43494, 4245, 4244, 4247,
4246, 4243, 4242, 4240, 4249, 4241, 4248, 4154, 4150, 4250, 4251, 4237,
4235, 4236, 4231, 4232, 4233, 4234, 43493, 4171, 43644, 43645, 4201,
4202, 4203, 4204, 4205, 4151, 4239, 43643, 4170, 4153, 4152, 43639,
43641, 43640, 4174, 4172, 4255, 4254, 4175, 4173, 71391, 71390, 71393,
71392, 71389, 71388, 71386, 71395, 71387, 71394, 4195, 4196, 43509,
43508, 43511, 43510, 43507, 43506, 43504, 43513, 43505, 43512, 4146,
4252, 4253, 4140, 4209, 4212, 4210, 4211, 4147, 4148, 4228, 4229, 4230,
4227, 4194, 4145, 4149, 4199, 4200, 4139, 4143, 4144, 4182, 4183, 4184,
4185, 4141, 4142, 71381, 71380, 71383, 71382, 71379, 71378, 71376, 71385,
71377, 71384, 4165, 4164, 4167, 4166, 4163, 4162, 4160, 4169, 4161, 4168,
983218, 983232, 983174, 10753, 10754, 10752, 8720, 10761, 10757, 10758,
8721, 8899, 10756, 10755, 11007, 8896, 8897, 8898, 8719, 67712, 67728,
67740, 67724, 67726, 67714, 67732, 67718, 67730, 67723, 67742, 67717,
67729, 67738, 67739, 67713, 67735, 67716, 67721, 67734, 67737, 67741,
67725, 67719, 67722, 67727, 67715, 67733, 67720, 67736, 67731, 67758,
67752, 67753, 67757, 67751, 67759, 67756, 67754, 67755, 8711, 124117,
124120, 124119, 124121, 124118, 124132, 124136, 124133, 124138, 124137,
124134, 124135, 124122, 124124, 124126, 124123, 124125, 124112, 124116,
124114, 124113, 124115, 124127, 124128, 124129, 124130, 124131, 124140,
124143, 124142, 124139, 124141, 124149, 124148, 124151, 124150, 124147,
124146, 124144, 124153, 124145, 124152, 128133, 8358, 8892, 72102, 72103,
72138, 72096, 72097, 72107, 72109, 72123, 72122, 72128, 72127, 72144,
72136, 72121, 72120, 72126, 72125, 72100, 72101, 72098, 72099, 72143,
72137, 72114, 72124, 72119, 72129, 72139, 72140, 72141, 72133, 72132,
72116, 72115, 72113, 72112, 72118, 72117, 72111, 72110, 72131, 72130,
72142, 72134, 72135, 72106, 72108, 72162, 72161, 72158, 72160, 72159,
72164, 72150, 72151, 72145, 72155, 72157, 72148, 72149, 72146, 72147,
72154, 72156, 72163, 8302, 127966, 129314, 128219, 129535, 8239, 983092,
983197, 983128, 9471, 9453, 9460, 9452, 9458, 9451, 9454, 9455, 9459,
9456, 9457, 127312, 127313, 127314, 127315, 127316, 127317, 127318,
127319, 127320, 127321, 127322, 127323, 127324, 127325, 127326, 127327,
127328, 127329, 127330, 127331, 127332, 127333, 127334, 127335, 127336,
127337, 128982, 128984, 129982, 129981, 129983, 127344, 127345, 127346,
127347, 127348, 127349, 127350, 127351, 127352, 127353, 127354, 127355,
127356, 127357, 127358, 127359, 127360, 127361, 127362, 127363, 127364,
127365, 127366, 127367, 127368, 127369, 129204, 129205, 129207, 129988,
10062, 127374, 127371, 127375, 129206, 127372, 127373, 983091, 8879,
8840, 8841, 8775, 8821, 8817, 8825, 8820, 8816, 8824, 129670, 129722,
11228, 129540, 129544, 129565, 129586, 129603, 129607, 129561, 129536,
129557, 129599, 129539, 129560, 129602, 129610, 129613, 129541, 129562,
129604, 129537, 129558, 129600, 129538, 129559, 129601, 129581, 129578,
129582, 129583, 129579, 129580, 128528, 9906, 127770, 127761, 8362, 6595,
6594, 6599, 6598, 6597, 6596, 6593, 6566, 6530, 6567, 6531, 6570, 6537,
6532, 6544, 6543, 6536, 6542, 6549, 6548, 6562, 6561, 6554, 6560, 6556,
6550, 6528, 6555, 6538, 6568, 6533, 6569, 6534, 6571, 6540, 6535, 6547,
6546, 6539, 6545, 6552, 6551, 6565, 6564, 6557, 6563, 6559, 6553, 6529,
6558, 6541, 6622, 6623, 6600, 6601, 6618, 6577, 6587, 6582, 6586, 6578,
6592, 6583, 6584, 6590, 6589, 6579, 6585, 6591, 6580, 6588, 6576, 6581,
6613, 6612, 6615, 6614, 6611, 6610, 6608, 6617, 6609, 6616, 983063,
70732, 70746, 70731, 70741, 70740, 70743, 70742, 70739, 70738, 70736,
70745, 70737, 70744, 70734, 70675, 70674, 70681, 70680, 70692, 70686,
70691, 70751, 70662, 70663, 70664, 70665, 70656, 70657, 70667, 70669,
70685, 70684, 70690, 70689, 70683, 70682, 70688, 70687, 70660, 70661,
70658, 70659, 70705, 70706, 70707, 70696, 70695, 70677, 70676, 70673,
70672, 70679, 70678, 70671, 70670, 70703, 70702, 70698, 70697, 70694,
70693, 70701, 70700, 70708, 70704, 70699, 70666, 70668, 70723, 70726,
70727, 70724, 70752, 70728, 70753, 70722, 70725, 70730, 70750, 70747,
70709, 70719, 70721, 70712, 70713, 70714, 70715, 70716, 70717, 70710,
70711, 70718, 70720, 70735, 70749, 70733, 70729, 11154, 11155, 128240,
9112, 983131, 9798, 11209, 128084, 129299, 983132, 128985, 129399,
127747, 2035, 2031, 2032, 2033, 2030, 2034, 2027, 2028, 2029, 2040, 2045,
2046, 1989, 1988, 1991, 1990, 1987, 1986, 1984, 1993, 1985, 1992, 2042,
2008, 2001, 2025, 2024, 2026, 2006, 2002, 2019, 2016, 2018, 2023, 2010,
2009, 2000, 1999, 2007, 1997, 1995, 2012, 2003, 2013, 2020, 2014, 2015,
2017, 2004, 2011, 2005, 2021, 2022, 1994, 1996, 1998, 2037, 2036, 2039,
2038, 2041, 2047, 983127, 128691, 9940, 128683, 128695, 128370, 128286,
128245, 128685, 8303, 65934, 8209, 128689, 10973, 8893, 8599, 10542,
10545, 10536, 10532, 129209, 10530, 128602, 128594, 128610, 11111, 11127,
11016, 8663, 129109, 11008, 43063, 43062, 43065, 43064, 43059, 43060,
43057, 43056, 43061, 43058, 10529, 8598, 8689, 8632, 10546, 10535, 10531,
129208, 128600, 128592, 128608, 11110, 11126, 11017, 8662, 129108, 11009,
128746, 8882, 8884, 8379, 8836, 8837, 8713, 8772, 8777, 8938, 8940, 8742,
8930, 8931, 172, 8877, 8769, 8813, 8800, 8802, 8815, 8814, 9083, 128323,
10159, 128324, 10161, 128456, 128457, 128458, 128211, 128212, 128067,
118012, 160, 9369, 9362, 9365, 9366, 9367, 35, 9368, 9364, 9361, 9363,
9371, 9370, 8470, 110960, 110961, 110962, 110963, 110964, 110965, 110966,
110967, 110968, 110969, 110970, 110971, 110972, 110973, 110974, 110975,
110976, 110977, 110978, 110979, 110980, 110981, 110982, 110983, 110984,
110985, 110986, 110987, 110988, 110989, 110990, 110991, 110992, 110993,
110994, 110995, 110996, 110997, 110998, 110999, 111000, 111001, 111002,
111003, 111004, 111005, 111006, 111007, 111008, 111009, 111010, 111011,
111012, 111013, 111014, 111015, 111016, 111017, 111018, 111019, 111020,
111021, 111022, 111023, 111024, 111025, 111026, 111027, 111028, 111029,
111030, 111031, 111032, 111033, 111034, 111035, 111036, 111037, 111038,
111039, 111040, 111041, 111042, 111043, 111044, 111045, 111046, 111047,
111048, 111049, 111050, 111051, 111052, 111053, 111054, 111055, 111056,
111057, 111058, 111059, 111060, 111061, 111062, 111063, 111064, 111065,
111066, 111067, 111068, 111069, 111070, 111071, 111072, 111073, 111074,
111075, 111076, 111077, 111078, 111079, 111080, 111081, 111082, 111083,
111084, 111085, 111086, 111087, 111088, 111089, 111090, 111091, 111092,
111093, 111094, 111095, 111096, 111097, 111098, 111099, 111100, 111101,
111102, 111103, 111104, 111105, 111106, 111107, 111108, 111109, 111110,
111111, 111112, 111113, 111114, 111115, 111116, 111117, 111118, 111119,
111120, 111121, 111122, 111123, 111124, 111125, 111126, 111127, 111128,
111129, 111130, 111131, 111132, 111133, 111134, 111135, 111136, 111137,
111138, 111139, 111140, 111141, 111142, 111143, 111144, 111145, 111146,
111147, 111148, 111149, 111150, 111151, 111152, 111153, 111154, 111155,
111156, 111157, 111158, 111159, 111160, 111161, 111162, 111163, 111164,
111165, 111166, 111167, 111168, 111169, 111170, 111171, 111172, 111173,
111174, 111175, 111176, 111177, 111178, 111179, 111180, 111181, 111182,
111183, 111184, 111185, 111186, 111187, 111188, 111189, 111190, 111191,
111192, 111193, 111194, 111195, 111196, 111197, 111198, 111199, 111200,
111201, 111202, 111203, 111204, 111205, 111206, 111207, 111208, 111209,
111210, 111211, 111212, 111213, 111214, 111215, 111216, 111217, 111218,
111219, 111220, 111221, 111222, 111223, 111224, 111225, 111226, 111227,
111228, 111229, 111230, 111231, 111232, 111233, 111234, 111235, 111236,
111237, 111238, 111239, 111240, 111241, 111242, 111243, 111244, 111245,
111246, 111247, 111248, 111249, 111250, 111251, 111252, 111253, 111254,
111255, 111256, 111257, 111258, 111259, 111260, 111261, 111262, 111263,
111264, 111265, 111266, 111267, 111268, 111269, 111270, 111271, 111272,
111273, 111274, 111275, 111276, 111277, 111278, 111279, 111280, 111281,
111282, 111283, 111284, 111285, 111286, 111287, 111288, 111289, 111290,
111291, 111292, 111293, 111294, 111295, 111296, 111297, 111298, 111299,
111300, 111301, 111302, 111303, 111304, 111305, 111306, 111307, 111308,
111309, 111310, 111311, 111312, 111313, 111314, 111315, 111316, 111317,
111318, 111319, 111320, 111321, 111322, 111323, 111324, 111325, 111326,
111327, 111328, 111329, 111330, 111331, 111332, 111333, 111334, 111335,
111336, 111337, 111338, 111339, 111340, 111341, 111342, 111343, 111344,
111345, 111346, 111347, 111348, 111349, 111350, 111351, 111352, 111353,
111354, 111355, 94177, 128297, 983041, 983040, 123149, 123155, 123138,
123166, 123164, 123148, 123143, 123161, 123153, 123152, 123141, 123137,
123156, 123139, 123163, 123142, 123172, 123173, 123140, 123167, 123171,
123158, 123176, 123177, 123165, 123151, 123168, 123136, 123169, 123162,
123178, 123179, 123144, 123157, 123170, 123150, 123145, 123159, 123146,
123154, 123160, 123147, 123174, 123175, 123180, 123214, 123193, 123192,
123195, 123194, 123191, 123196, 123197, 123184, 123190, 123189, 123186,
123185, 123188, 123187, 123215, 123205, 123204, 123207, 123206, 123203,
123202, 123200, 123209, 123201, 123208, 117776, 983231, 983066, 10663,
10662, 11869, 9215, 65532, 9287, 9286, 9284, 9285, 9289, 9281, 9290,
9288, 9282, 9283, 9280, 128721, 128025, 128885, 5787, 5788, 5776, 5761,
5786, 5770, 5769, 5781, 5779, 5785, 5763, 5772, 5780, 5784, 5762, 5775,
5773, 5765, 5777, 5782, 5764, 5774, 5783, 5766, 5778, 5771, 5767, 5768,
5760, 731, 128738, 7265, 7264, 7266, 7267, 7261, 7260, 7262, 7259, 7280,
7282, 7281, 7279, 7271, 7270, 7272, 7269, 7258, 7263, 7278, 7268, 7283,
7273, 7284, 7285, 7287, 7286, 7276, 7274, 7275, 7277, 7290, 7288, 7289,
7295, 7294, 7292, 7291, 7253, 7252, 7255, 7254, 7251, 7250, 7248, 7257,
7249, 7256, 7293, 124374, 124376, 124375, 124377, 124378, 124379, 124392,
124396, 124395, 124397, 124394, 124393, 124380, 124381, 124383, 124384,
124385, 124382, 124368, 124371, 124370, 124369, 124372, 124373, 124386,
124388, 124390, 124389, 124387, 124391, 124399, 124400, 124398, 124415,
124406, 124405, 124408, 124407, 124404, 124403, 124401, 124410, 124402,
124409, 94179, 94178, 68736, 68739, 68744, 68737, 68756, 68745, 68760,
68769, 68761, 68775, 68785, 68741, 68762, 68772, 68773, 68740, 68777,
68742, 68749, 68750, 68758, 68759, 68774, 68776, 68783, 68784, 68738,
68743, 68747, 68748, 68751, 68754, 68755, 68768, 68770, 68782, 68765,
68780, 68766, 68781, 68763, 68767, 68764, 68771, 68778, 68757, 68786,
68779, 68746, 68752, 68753, 68800, 68803, 68808, 68801, 68820, 68809,
68824, 68833, 68825, 68839, 68849, 68805, 68826, 68836, 68837, 68804,
68841, 68806, 68813, 68814, 68822, 68823, 68838, 68840, 68847, 68848,
68802, 68807, 68811, 68812, 68815, 68818, 68819, 68832, 68834, 68846,
68829, 68844, 68830, 68845, 68827, 68831, 68828, 68835, 68842, 68821,
68850, 68843, 68810, 68816, 68817, 68861, 68859, 68858, 68862, 68863,
68860, 66308, 66324, 66318, 66335, 66323, 66331, 66327, 66330, 66315,
66316, 66317, 66329, 66314, 66306, 66322, 66351, 66321, 66350, 66326,
66334, 66313, 66333, 66328, 66320, 66312, 66325, 66332, 66305, 66307,
66311, 66309, 66349, 66310, 66304, 66319, 66339, 66337, 66338, 66336,
68241, 68242, 68246, 68244, 68226, 68224, 68237, 68235, 68249, 68251,
68247, 68233, 68248, 68252, 68227, 68234, 68230, 68239, 68232, 68240,
68231, 68250, 68236, 68225, 68243, 68245, 68228, 68229, 68238, 68255,
68254, 68253, 66404, 66390, 66392, 66387, 66388, 66411, 66393, 66421,
66418, 66396, 66397, 66399, 66406, 66405, 66401, 66413, 66402, 66398,
66414, 66415, 66416, 66408, 66420, 66417, 66407, 66419, 66389, 66391,
66395, 66400, 66386, 66409, 66410, 66385, 66384, 66394, 66412, 66403,
66516, 66514, 66515, 66517, 66513, 66464, 66504, 66505, 66506, 66482,
66510, 66511, 66477, 66508, 66509, 66478, 66479, 66473, 66474, 66490,
66491, 66480, 66475, 66476, 66507, 66471, 66469, 66470, 66467, 66468,
66484, 66485, 66492, 66493, 66486, 66487, 66488, 66497, 66498, 66495,
66472, 66483, 66499, 66494, 66481, 66489, 66496, 66465, 66466, 66512,
128435, 118450, 69414, 69395, 69376, 69394, 69391, 69392, 69398, 69399,
69403, 69404, 69377, 69379, 69382, 69400, 69388, 69380, 69384, 69393,
69397, 69401, 69386, 69381, 69385, 69387, 69378, 69390, 69402, 69383,
69396, 69389, 69415, 69407, 69412, 69411, 69406, 69410, 69405, 69413,
69409, 69408, 68209, 68210, 68217, 68211, 68213, 68214, 68212, 68203,
68205, 68207, 68206, 68202, 68198, 68220, 68219, 68215, 68201, 68216,
68193, 68196, 68199, 68218, 68192, 68194, 68200, 68204, 68197, 68208,
68195, 68222, 68221, 68223, 68608, 68619, 68627, 68623, 68634, 68640,
68644, 68668, 68670, 68677, 68632, 68669, 68671, 68617, 68625, 68621,
68638, 68643, 68660, 68666, 68675, 68630, 68648, 68653, 68646, 68650,
68641, 68673, 68658, 68642, 68655, 68628, 68611, 68657, 68662, 68614,
68615, 68636, 68656, 68664, 68679, 68680, 68609, 68610, 68645, 68654,
68620, 68624, 68635, 68678, 68633, 68672, 68652, 68618, 68626, 68622,
68639, 68661, 68667, 68676, 68631, 68613, 68649, 68647, 68651, 68674,
68659, 68629, 68612, 68663, 68616, 68637, 68665, 69509, 69508, 69507,
69506, 69488, 69502, 69496, 69505, 69492, 69499, 69501, 69503, 69494,
69493, 69490, 69495, 69489, 69498, 69504, 69491, 69500, 69497, 69511,
69512, 69513, 69510, 128477, 128117, 129491, 128116, 129746, 128283,
128664, 128753, 128662, 128660, 128653, 11819, 8228, 128431, 129649,
129477, 128214, 9251, 10044, 10027, 10034, 10011, 128194, 128449, 128080,
128237, 128236, 10180, 10179, 128275, 9103, 9104, 10174, 983191, 8997,
128191, 128440, 9934, 9741, 128217, 129505, 129447, 128895, 129741, 8886,
2902, 2903, 2933, 2934, 2931, 2930, 2935, 2932, 2928, 2909, 2908, 2864,
2911, 2863, 2821, 2822, 2832, 2836, 2850, 2849, 2855, 2854, 2848, 2847,
2853, 2852, 2827, 2912, 2828, 2913, 2869, 2825, 2826, 2823, 2824, 2867,
2866, 2841, 2851, 2846, 2856, 2870, 2871, 2872, 2861, 2860, 2843, 2842,
2840, 2839, 2845, 2844, 2838, 2837, 2859, 2858, 2873, 2862, 2929, 2831,
2835, 983660, 983659, 2817, 2876, 2877, 2818, 2901, 2893, 2819, 2878,
2888, 2892, 2881, 2882, 2883, 2884, 2914, 2915, 2879, 2880, 2887, 2891,
2923, 2922, 2925, 2924, 2921, 2920, 2918, 2927, 2919, 2926, 64830, 64831,
9766, 117826, 10183, 66736, 66737, 66738, 66739, 66743, 66763, 66761,
66742, 66749, 66757, 66744, 66768, 66750, 66748, 66754, 66755, 66764,
66762, 66760, 66746, 66745, 66741, 66765, 66769, 66759, 66758, 66771,
66770, 66740, 66751, 66752, 66753, 66756, 66767, 66747, 66766, 66776,
66777, 66778, 66779, 66783, 66803, 66801, 66782, 66789, 66797, 66784,
66808, 66790, 66788, 66794, 66795, 66804, 66802, 66800, 66786, 66785,
66781, 66805, 66809, 66799, 66798, 66811, 66810, 66780, 66791, 66792,
66793, 66796, 66807, 66787, 66806, 66710, 66688, 66715, 66699, 66694,
66698, 66703, 66693, 66697, 66696, 66705, 66702, 66713, 66717, 66704,
66706, 66707, 66711, 66716, 66689, 66701, 66700, 66708, 66691, 66695,
66690, 66692, 66709, 66712, 66714, 66725, 66724, 66727, 66726, 66723,
66722, 66720, 66729, 66721, 66728, 983192, 126257, 126264, 126258,
126259, 126265, 126260, 126263, 126267, 126255, 126266, 126256, 126262,
126261, 126269, 126268, 126254, 126216, 126225, 126252, 126234, 126243,
126222, 126249, 126213, 126231, 126240, 126221, 126248, 126212, 126230,
126239, 126217, 126226, 126253, 126235, 126244, 126215, 126224, 126251,
126233, 126242, 126214, 126223, 126250, 126232, 126241, 126220, 126247,
126211, 126229, 126238, 126219, 126246, 126210, 126228, 126237, 126218,
126245, 126209, 126227, 126236, 129446, 128228, 117974, 117975, 117976,
117977, 117978, 117979, 117980, 117981, 117982, 117983, 117984, 117985,
117986, 117987, 117988, 117989, 117990, 117991, 117992, 117993, 117994,
117995, 117996, 117997, 117998, 117999, 10015, 9885, 10029, 10009,
118005, 118004, 118007, 118006, 118003, 118002, 118000, 118009, 118001,
118008, 8485, 129397, 128471, 11195, 11194, 11196, 8254, 129450, 127970,
118459, 8486, 128076, 127842, 128329, 129417, 128002, 983122, 983121,
128463, 128195, 128479, 128196, 128223, 128464, 128724, 93059, 93065,
93064, 93058, 93070, 93056, 93055, 93053, 93062, 93069, 93061, 93066,
93071, 93068, 93054, 93057, 93063, 93067, 93060, 92967, 92975, 92965,
92969, 92959, 92968, 92971, 92957, 92962, 92960, 92972, 92970, 92963,
92958, 92966, 92961, 92956, 92974, 92964, 92973, 92979, 92978, 92980,
92977, 92976, 92982, 92981, 93023, 93020, 93024, 93021, 93019, 93025,
93022, 93043, 92985, 93047, 93044, 93045, 92997, 93046, 93042, 93032,
93029, 92995, 93038, 92993, 93041, 93035, 93033, 93037, 93030, 93039,
92987, 92992, 92986, 92983, 92984, 93027, 92994, 93034, 92988, 92990,
92989, 92991, 93028, 92996, 93031, 93040, 93036, 92954, 92955, 92938,
92939, 92932, 92933, 92942, 92943, 92950, 92951, 92928, 92929, 92936,
92937, 92948, 92949, 92930, 92931, 92944, 92945, 92934, 92935, 92940,
92941, 92946, 92947, 92952, 92953, 93013, 93012, 93015, 93014, 93011,
93010, 93008, 93017, 93009, 93016, 9908, 11801, 127796, 129779, 129780,
67703, 67693, 67688, 67702, 67683, 67691, 67699, 67700, 67680, 67696,
67682, 67686, 67695, 67698, 67701, 67689, 67684, 67687, 67690, 67681,
67694, 67685, 67697, 67692, 67704, 67711, 67706, 67707, 67710, 67709,
67708, 67705, 129330, 129374, 128060, 8233, 11853, 11791, 10995, 10994,
8741, 129666, 12809, 12823, 12808, 12822, 12828, 12813, 12827, 12810,
12824, 12800, 12814, 12804, 12818, 12801, 12815, 12812, 12826, 12805,
12819, 12803, 12817, 12806, 12820, 12811, 12825, 12802, 12816, 12807,
12821, 12863, 12855, 12858, 12861, 12847, 12839, 12854, 12843, 12836,
12864, 12835, 12856, 12846, 12842, 12840, 12852, 12862, 12865, 12857,
12867, 12838, 12866, 12851, 12853, 12859, 12849, 12860, 12848, 12837,
12834, 12841, 12833, 12845, 12844, 12850, 12832, 12830, 12829, 9349,
9342, 9345, 9346, 9350, 9347, 9348, 9344, 9351, 9343, 9341, 9336, 9335,
9338, 9337, 9334, 9333, 9340, 9332, 9339, 127248, 127249, 127250, 127251,
127252, 127253, 127254, 127255, 127256, 127257, 127258, 127259, 127260,
127261, 127262, 127263, 127264, 127265, 127266, 127267, 127268, 127269,
127270, 127271, 127272, 127273, 9372, 9373, 9374, 9375, 9376, 9377, 9378,
9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390,
9391, 9392, 9393, 9394, 9395, 9396, 9397, 8706, 983147, 983146, 983149,
983150, 9853, 127881, 118468, 128890, 12880, 12349, 129436, 128755,
11261, 9105, 9106, 128706, 72437, 72440, 72432, 72416, 72419, 72413,
72417, 72415, 72412, 72414, 72418, 72420, 72403, 72407, 72411, 72409,
72410, 72391, 72400, 72404, 72397, 72394, 72385, 72401, 72384, 72399,
72398, 72396, 72388, 72393, 72392, 72386, 72387, 72402, 72395, 72390,
72389, 72405, 72406, 72408, 72436, 72435, 72438, 72439, 72422, 72421,
72424, 72425, 72431, 72433, 72434, 72428, 72427, 72429, 72430, 72423,
72426, 128062, 128230, 128206, 983228, 983237, 129434, 9774, 127825,
129372, 129755, 127824, 128039, 128532, 9956, 128390, 9999, 8240, 8241,
8524, 10178, 10977, 129336, 129496, 129494, 128113, 9977, 128590, 129733,
128591, 129493, 128589, 128588, 129495, 128583, 128187, 8966, 128547, 37,
9854, 127917, 8359, 8369, 129515, 128694, 129730, 43101, 43117, 43120,
43076, 43123, 43077, 43115, 43090, 43082, 43094, 43098, 43099, 43119,
43118, 43109, 43074, 43075, 43116, 43079, 43083, 43089, 43088, 43114,
43113, 43081, 43080, 43073, 43072, 43085, 43084, 43092, 43093, 43104,
43110, 43086, 43108, 43100, 43078, 43097, 43087, 43106, 43096, 43091,
43107, 43095, 43102, 43105, 43103, 43127, 43126, 43124, 43121, 43111,
43112, 43122, 43125, 66033, 66023, 66017, 66010, 66027, 66003, 66018,
66028, 66004, 66012, 66022, 66020, 66045, 66019, 66031, 66041, 66007,
66006, 66025, 66026, 66038, 66016, 66013, 66014, 66000, 66001, 66034,
66036, 66037, 66029, 66011, 66024, 66015, 66021, 66042, 66043, 66002,
66008, 66032, 66005, 66044, 66040, 66039, 66030, 66009, 66035, 5941,
5942, 67840, 67855, 67843, 67844, 67847, 67858, 67857, 67860, 67854,
67861, 67848, 67845, 67846, 67849, 67859, 67842, 67850, 67853, 67851,
67841, 67856, 67852, 67864, 67866, 67867, 67863, 67862, 67865, 67871,
11227, 9935, 128763, 128022, 128061, 128055, 128169, 182, 128138, 129292,
129295, 127885, 127821, 10031, 129655, 129669, 9811, 128299, 8916, 10970,
129383, 8984, 128720, 129703, 8462, 8463, 128733, 127183, 127136, 127167,
127199, 127188, 127140, 127156, 127172, 127200, 127189, 127141, 127157,
127173, 127196, 127148, 127164, 127180, 127198, 127150, 127166, 127182,
127192, 127144, 127160, 127176, 127191, 127143, 127159, 127175, 127190,
127142, 127158, 127174, 127197, 127149, 127165, 127181, 127194, 127146,
127162, 127178, 127187, 127139, 127155, 127171, 127186, 127138, 127154,
127170, 127202, 127220, 127221, 127201, 127210, 127211, 127212, 127213,
127214, 127215, 127216, 127217, 127218, 127219, 127203, 127204, 127205,
127206, 127207, 127208, 127209, 127185, 127137, 127153, 127169, 127193,
127145, 127161, 127177, 127195, 127147, 127163, 127179, 983151, 43,
10797, 10798, 10809, 10789, 10786, 10791, 10790, 10788, 10792, 10787,
10866, 177, 9799, 11222, 11221, 11220, 11219, 129696, 983148, 117777,
128659, 128680, 128110, 8297, 8236, 127871, 128254, 11239, 128239, 12306,
12320, 128238, 8982, 128688, 129364, 127858, 129716, 127831, 129751,
128574, 128545, 163, 128093, 9212, 9213, 9214, 9211, 128041, 128425,
129328, 129732, 129731, 65043, 65040, 65045, 65073, 65074, 65049, 65041,
65042, 65091, 65047, 65083, 65085, 65089, 65079, 65087, 65077, 65095,
65081, 65075, 65084, 65086, 65092, 983261, 65048, 65090, 65080, 65088,
65078, 65096, 65082, 65076, 65044, 65072, 65046, 8478, 8826, 10937,
10933, 10927, 10929, 10935, 10931, 8936, 8830, 8828, 8880, 9111, 129384,
9113, 128424, 128438, 129332, 128120, 983193, 983166, 983163, 983164,
983167, 8242, 8965, 8759, 8733, 8522, 11224, 128711, 129455, 128255,
68507, 68508, 68480, 68483, 68490, 68491, 68485, 68482, 68486, 68493,
68495, 68496, 68488, 68484, 68487, 68489, 68481, 68492, 68497, 68494,
68526, 68522, 68523, 68525, 68521, 68527, 68524, 68505, 68506, 118473,
11854, 8200, 128156, 128091, 128686, 128204, 128226, 983165, 983168,
983194, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9622, 9623,
10764, 8279, 10774, 9833, 128894, 8264, 63, 8799, 34, 9915, 127949,
127950, 129437, 128251, 9762, 128280, 9143, 128740, 128643, 9926, 127752,
11827, 11783, 11782, 9995, 128400, 128406, 127338, 127339, 127340,
129996, 11787, 9994, 11828, 129306, 128000, 8758, 128007, 128048, 129682,
128015, 129534, 117778, 9852, 9843, 9844, 9845, 9846, 9847, 9848, 9849,
9850, 983113, 128665, 127822, 129511, 174, 127462, 127463, 127464,
127465, 127466, 127467, 127468, 127469, 127470, 127471, 127472, 127473,
127474, 127475, 127476, 127477, 127478, 127479, 127480, 127481, 127482,
127483, 127484, 127485, 127486, 127487, 43344, 43343, 43346, 43345,
43333, 43323, 43331, 43314, 43332, 43317, 43330, 43320, 43319, 43321,
43316, 43313, 43329, 43322, 43312, 43326, 43318, 43325, 43324, 43315,
43328, 43327, 43334, 43359, 43337, 43342, 43341, 43338, 43340, 43335,
43339, 43336, 43347, 128524, 127895, 65533, 9952, 9953, 128699, 8479,
9166, 11152, 11153, 128639, 128968, 983152, 92, 10184, 10741, 10743,
11073, 11079, 983153, 10659, 10661, 8246, 12317, 10989, 8976, 11793,
8267, 8245, 128401, 9753, 11262, 8515, 8271, 8765, 8909, 8247, 128402,
128403, 128405, 11841, 11822, 10672, 128404, 128158, 8251, 129423,
983154, 127872, 11190, 11188, 11191, 11189, 11186, 11187, 11184, 11185,
127832, 127833, 129919, 129918, 128495, 8735, 12297, 10642, 11777, 11776,
9084, 8894, 10652, 10644, 10228, 8692, 12305, 10648, 125, 9132, 9133,
9131, 12301, 8969, 11781, 12299, 10608, 10715, 8221, 11817, 129929,
10621, 8971, 118272, 9687, 11241, 9616, 129978, 117925, 118289, 129971,
118286, 118284, 118432, 118443, 129933, 128381, 130025, 130017, 11805,
8906, 10198, 129927, 9621, 129980, 41, 9120, 9118, 9119, 11789, 10182,
8908, 129931, 8217, 11815, 128360, 128361, 128362, 128489, 93, 9126,
9124, 10638, 10640, 8262, 10636, 11864, 11862, 9125, 11779, 117773,
129987, 128493, 118433, 118442, 129930, 129928, 11786, 8895, 10702,
129902, 12309, 8866, 11809, 9145, 117766, 12303, 10628, 12311, 10630,
12315, 12313, 10713, 1421, 117833, 117907, 117909, 129308, 4053, 4055,
117874, 117878, 9957, 9002, 117858, 10749, 187, 117775, 128270, 117921,
117848, 117923, 117913, 117863, 117763, 117919, 117882, 117761, 10153,
10552, 8295, 8238, 8235, 8207, 10813, 8594, 11080, 11084, 10562, 10613,
10612, 129974, 8614, 10528, 129217, 11076, 11075, 10567, 10526, 8677,
8628, 10513, 8699, 129202, 8620, 129034, 10565, 129042, 129026, 8603,
11022, 11023, 8611, 10517, 10516, 129030, 129178, 129046, 8618, 8696,
8644, 10522, 129193, 129185, 11146, 11157, 8658, 10499, 8655, 10503,
10524, 10509, 8674, 129195, 129078, 10601, 10605, 10591, 10583, 8641,
10600, 10604, 10596, 10587, 10579, 8640, 8652, 129777, 129090, 129094,
129191, 8702, 8649, 129784, 129189, 128622, 8669, 129082, 129106, 129187,
11106, 11138, 11132, 983242, 11175, 11173, 129066, 129062, 129058,
129074, 129070, 11122, 11116, 11142, 129170, 10511, 8667, 10518, 10520,
10519, 11246, 10497, 10496, 10501, 10512, 8608, 8605, 8680, 8688, 129174,
129086, 11078, 128141, 128735, 11824, 8790, 8791, 8728, 730, 129680,
128365, 10539, 10544, 65020, 129350, 983227, 983235, 983225, 983230,
129704, 128640, 128478, 127906, 128764, 129531, 129315, 65947, 65942,
65945, 65940, 65943, 8556, 8583, 8582, 8548, 8558, 8577, 8547, 8544,
8557, 8584, 8559, 8576, 8549, 8581, 8550, 8553, 8578, 8555, 8545, 8546,
8579, 8554, 8551, 8552, 65938, 65944, 65936, 65939, 65941, 65937, 65946,
129756, 128019, 127801, 127989, 10087, 10085, 11213, 11215, 8506, 128205,
128907, 127588, 127586, 127589, 127584, 127585, 127587, 128675, 127840,
129302, 8381, 127945, 10740, 69245, 69243, 69244, 69246, 69241, 69232,
69238, 69229, 69237, 69228, 69242, 69233, 69234, 69240, 69231, 69239,
69230, 69236, 69227, 69235, 69226, 69225, 69220, 69219, 69222, 69221,
69218, 69217, 69224, 69216, 69223, 5872, 5869, 5803, 5802, 5800, 5833,
5837, 5860, 5811, 5859, 5858, 5841, 5851, 5824, 5844, 5854, 5826, 5846,
5856, 5799, 5814, 5880, 5879, 5877, 5876, 5878, 5792, 5813, 5815, 5828,
5816, 5819, 5818, 5853, 5852, 5825, 5831, 5864, 5857, 5827, 5873, 5812,
5810, 5850, 5829, 5820, 5848, 5804, 5862, 5806, 5801, 5855, 5845, 5807,
5808, 5875, 5809, 5874, 5843, 5821, 5849, 5823, 5805, 5836, 5840, 5830,
5863, 5835, 5834, 5861, 5842, 5822, 5798, 5839, 5797, 5817, 5794, 5847,
5832, 5796, 5795, 5865, 5793, 5866, 5838, 5867, 5868, 5870, 5871, 127933,
127939, 11254, 11252, 11253, 11251, 11255, 11256, 8360, 983114, 10700,
129466, 129527, 9808, 129474, 9747, 129761, 2049, 2053, 2051, 2063, 2055,
2052, 2058, 2059, 2062, 2068, 2069, 2056, 2065, 2048, 2050, 2067, 2054,
2060, 2066, 2061, 2057, 2064, 2073, 2070, 2071, 2075, 2093, 2072, 2074,
2084, 2088, 2097, 2110, 2098, 2100, 2108, 2099, 2096, 2101, 2109, 2106,
2104, 2107, 2103, 2105, 2082, 2079, 2076, 2089, 2086, 2091, 2081, 2078,
2085, 2092, 2083, 2080, 2077, 2090, 2087, 2102, 128630, 128631, 128632,
128634, 129386, 128752, 128225, 9796, 43138, 43139, 43150, 43153, 43167,
43166, 43172, 43171, 43165, 43164, 43170, 43169, 43144, 43145, 43146,
43147, 43182, 43142, 43143, 43151, 43152, 43140, 43141, 43187, 43181,
43158, 43168, 43163, 43173, 43183, 43184, 43185, 43177, 43176, 43160,
43159, 43157, 43156, 43162, 43161, 43155, 43154, 43175, 43174, 43148,
43149, 43186, 43178, 43180, 43179, 43205, 43136, 43204, 43137, 43215,
43214, 43221, 43220, 43223, 43222, 43219, 43218, 43216, 43225, 43217,
43224, 43188, 43189, 43200, 43203, 43192, 43193, 43194, 43195, 43196,
43197, 43201, 43202, 43190, 43191, 43198, 43199, 129429, 8385, 9973,
127927, 127862, 129403, 9878, 129507, 127979, 127890, 129410, 9807,
128756, 129691, 128437, 8492, 8496, 8497, 8459, 8464, 8466, 8499, 8472,
8475, 128624, 8495, 8458, 8467, 8500, 8456, 128220, 983186, 129453,
128186, 167, 8980, 129352, 127793, 128584, 8979, 130037, 130036, 130039,
130038, 130035, 130034, 130032, 130041, 130033, 130040, 10802, 9914, 59,
117793, 117795, 117799, 117807, 117803, 117797, 117805, 117801, 117794,
117798, 117806, 117802, 117796, 117804, 117800, 118353, 118355, 118359,
118367, 118383, 118415, 118399, 118375, 118407, 118391, 118363, 118379,
118411, 118395, 118371, 118403, 118387, 118357, 118365, 118381, 118413,
118397, 118373, 118405, 118389, 118361, 118377, 118409, 118393, 118369,
118401, 118385, 118354, 118358, 118366, 118382, 118414, 118398, 118374,
118406, 118390, 118362, 118378, 118410, 118394, 118370, 118402, 118386,
118356, 118364, 118380, 118412, 118396, 118372, 118404, 118388, 118360,
118376, 118408, 118392, 118368, 118400, 118384, 11259, 8480, 129324,
9916, 65093, 983169, 8726, 129697, 9913, 11250, 129331, 10061, 10032,
10014, 129368, 70086, 70085, 70101, 70100, 70103, 70102, 70099, 70098,
70096, 70105, 70097, 70104, 70092, 70106, 70108, 70019, 70020, 70030,
70032, 70046, 70045, 70051, 70050, 70044, 70043, 70049, 70048, 70025,
70026, 70027, 70028, 70062, 70023, 70024, 70021, 70022, 70061, 70060,
70037, 70047, 70042, 70052, 70063, 70064, 70065, 70056, 70055, 70039,
70038, 70036, 70035, 70041, 70040, 70034, 70033, 70054, 70053, 70066,
70057, 70059, 70058, 70029, 70031, 70089, 70110, 70111, 70088, 70095,
70107, 70016, 70090, 70081, 70017, 70082, 70083, 70080, 70018, 70093,
70091, 72550, 72551, 70078, 72545, 72544, 70094, 70070, 70071, 72547,
72546, 72548, 72549, 70067, 70077, 70079, 70072, 70073, 70074, 70075,
70068, 70069, 70076, 70087, 70109, 70084, 129416, 127847, 66684, 66680,
66682, 66665, 66673, 66679, 66664, 66669, 66647, 66685, 66672, 66683,
66663, 66659, 66649, 66686, 66674, 66662, 66660, 66656, 66661, 66677,
66678, 66668, 66676, 66666, 66681, 66640, 66670, 66646, 66645, 66644,
66654, 66641, 66667, 66658, 66648, 66687, 66657, 66651, 66655, 66643,
66652, 66650, 66642, 66653, 66671, 66675, 9752, 129768, 128737, 983075,
983078, 9961, 128674, 127776, 128722, 128717, 11087, 11103, 11086,
129237, 10974, 10564, 129235, 10976, 10985, 10984, 10975, 10983, 113825,
113824, 113826, 113827, 127856, 129651, 9085, 129327, 129679, 128703,
128017, 129424, 129335, 10722, 983198, 983080, 71113, 71040, 71131,
71041, 71051, 71053, 71128, 71070, 71129, 71130, 71065, 71064, 71069,
71067, 71066, 71072, 71071, 71046, 71047, 71048, 71049, 71082, 71044,
71045, 71042, 71043, 71058, 71068, 71063, 71073, 71083, 71084, 71085,
71077, 71076, 71060, 71059, 71057, 71056, 71062, 71061, 71055, 71054,
71075, 71074, 71086, 71081, 71078, 71080, 71079, 71050, 71052, 71110,
71111, 71112, 71119, 71120, 71127, 71126, 71125, 71123, 71124, 71117,
71118, 71116, 71121, 71115, 71114, 71122, 71109, 71108, 71105, 71100,
71104, 71101, 71103, 71102, 71132, 71133, 71087, 71097, 71099, 71092,
71093, 71090, 71091, 71088, 71089, 71096, 71098, 71107, 71106, 67923,
67924, 67925, 67926, 67927, 67928, 67929, 67904, 67905, 67906, 67907,
67908, 67909, 67910, 67911, 67912, 67913, 67914, 67915, 67916, 67917,
67918, 67919, 67920, 67921, 67922, 128411, 128410, 128417, 128416,
128409, 128408, 128415, 128414, 121399, 121397, 121400, 121398, 121402,
121401, 121104, 121103, 121102, 121388, 121387, 121386, 121482, 121479,
121358, 121359, 121357, 121360, 121341, 121335, 121339, 121340, 121336,
121334, 121333, 121338, 121337, 121342, 121368, 121367, 121373, 121356,
121355, 121354, 121380, 121382, 121381, 121384, 121383, 121385, 121377,
121379, 121378, 121375, 121376, 121374, 121371, 121369, 121366, 121370,
121372, 121364, 121365, 121452, 121392, 121352, 121353, 121351, 121499,
121500, 121501, 121502, 121503, 121470, 121117, 121115, 121119, 121118,
121116, 121456, 121363, 121362, 121361, 121480, 121455, 120965, 120837,
121000, 120969, 121027, 121026, 121076, 121074, 121075, 120995, 120991,
120990, 120982, 121005, 121011, 121044, 121042, 121043, 120950, 120833,
120847, 121002, 120859, 120863, 120997, 120967, 120845, 121019, 120839,
120993, 120980, 121038, 121045, 121031, 121009, 120934, 121046, 121047,
120905, 120936, 120937, 120935, 121065, 120941, 120834, 121068, 121069,
121024, 120915, 120916, 121040, 120940, 120944, 120946, 120942, 120945,
120947, 120943, 120949, 121020, 121039, 120948, 121091, 120832, 120838,
120861, 120843, 120852, 120870, 120844, 120846, 120848, 120865, 120853,
120856, 120885, 120877, 120878, 120879, 120884, 120857, 120882, 120854,
120855, 120858, 120883, 121001, 120871, 120850, 120867, 120966, 120972,
120971, 120849, 120862, 120895, 120894, 120872, 120873, 120893, 120875,
120874, 120866, 120864, 120996, 120842, 120891, 120890, 121067, 120892,
120887, 121064, 121066, 121063, 121060, 121061, 121062, 120899, 120881,
121052, 121059, 121057, 121054, 121055, 121056, 121058, 120851, 120869,
120868, 120841, 121018, 120974, 120977, 120976, 120975, 120985, 120986,
120983, 120992, 120988, 120984, 120978, 121032, 121037, 120897, 120896,
120898, 120889, 120888, 120886, 120880, 121035, 121030, 121033, 121028,
121036, 120860, 121003, 121012, 121014, 121013, 121007, 121016, 121008,
121015, 121006, 121077, 121083, 120876, 121084, 121085, 121078, 121090,
121087, 121079, 121080, 121081, 120840, 121086, 121088, 121089, 120979,
121082, 121092, 120906, 120922, 120908, 120919, 120920, 120921, 120914,
120910, 120912, 120900, 120903, 120904, 120902, 120901, 120924, 120909,
120911, 120913, 120926, 120930, 120931, 120932, 120929, 120933, 120928,
120925, 120927, 120923, 120957, 120917, 120907, 120836, 121051, 120968,
120973, 120998, 121072, 121053, 121073, 121070, 121071, 121025, 120970,
120994, 120989, 120987, 121029, 121041, 120955, 120961, 120956, 120959,
120999, 121004, 120964, 120960, 120963, 120962, 120958, 120939, 120938,
121023, 121021, 121022, 121050, 121048, 121049, 121034, 121017, 120951,
120918, 120981, 120953, 121010, 120954, 120952, 120835, 121451, 121343,
121349, 121347, 121348, 121346, 121345, 121350, 121344, 121462, 121463,
121464, 121465, 121466, 121467, 121468, 121469, 121428, 121429, 121427,
121476, 121473, 121477, 121475, 121474, 121478, 121472, 121471, 121404,
121405, 121403, 121430, 121409, 121411, 121410, 121406, 121408, 121407,
121421, 121423, 121422, 121415, 121416, 121417, 121418, 121419, 121420,
121414, 121413, 121412, 121424, 121425, 121426, 121432, 121431, 121183,
121184, 121182, 121181, 121187, 121188, 121186, 121185, 121175, 121176,
121174, 121173, 121179, 121180, 121178, 121177, 121324, 121321, 121323,
121320, 121322, 121319, 121210, 121209, 121208, 121203, 121207, 121305,
121272, 121271, 121287, 121286, 121303, 121304, 121302, 121301, 121206,
121205, 121204, 121198, 121332, 121331, 121129, 121276, 121274, 121275,
121273, 121288, 121289, 121291, 121290, 121306, 121280, 121278, 121279,
121277, 121295, 121293, 121294, 121292, 121307, 121314, 121191, 121192,
121190, 121189, 121193, 121202, 121201, 121200, 121199, 121282, 121281,
121297, 121296, 121308, 121309, 121310, 121328, 121327, 121194, 121196,
121197, 121195, 121216, 121215, 121214, 121213, 121212, 121211, 121449,
121125, 121126, 121121, 121122, 121123, 121124, 121127, 121318, 121316,
121317, 121315, 121156, 121155, 121154, 121146, 121145, 121144, 121150,
121149, 121148, 121147, 121230, 121231, 121229, 121228, 121254, 121261,
121247, 121233, 121232, 121226, 121227, 121225, 121224, 121249, 121248,
121153, 121152, 121151, 121139, 121135, 121137, 121138, 121136, 121330,
121329, 121128, 121236, 121255, 121262, 121235, 121234, 121237, 121240,
121239, 121256, 121263, 121238, 121162, 121161, 121160, 121132, 121133,
121131, 121130, 121134, 121253, 121142, 121143, 121141, 121140, 121243,
121242, 121241, 121246, 121245, 121244, 121270, 121269, 121268, 121257,
121264, 121326, 121325, 121159, 121158, 121157, 121448, 121394, 121393,
121395, 121396, 121450, 121513, 121514, 121515, 121516, 121517, 121518,
121519, 121505, 121506, 121507, 121508, 121509, 121510, 121511, 121512,
121312, 121284, 121299, 121311, 121283, 121298, 121313, 121285, 121300,
121260, 121267, 121252, 121251, 121259, 121266, 121250, 121258, 121265,
121107, 121106, 121105, 121454, 121453, 121457, 121120, 121112, 121110,
121114, 121113, 121111, 121108, 121109, 121101, 121100, 121099, 121481,
121441, 121445, 121446, 121443, 121444, 121442, 121447, 121390, 121389,
121391, 121440, 121439, 121437, 121435, 121436, 121434, 121433, 121438,
121459, 121458, 121460, 121095, 121094, 121093, 121219, 121218, 121217,
121222, 121221, 121220, 121223, 121172, 121171, 121170, 121168, 121167,
121166, 121165, 121164, 121163, 121169, 121098, 121097, 121096, 121461,
121483, 129304, 10912, 10911, 10910, 10909, 10860, 983185, 983183, 8219,
8249, 8218, 8250, 983158, 983155, 983156, 983159, 70117, 70116, 70119,
70118, 70115, 70114, 70121, 70113, 70120, 70131, 70132, 70129, 70126,
70125, 70130, 70128, 70127, 70124, 70123, 70122, 983953, 983954, 983952,
3464, 3463, 3495, 3501, 3497, 3503, 3510, 3488, 3484, 3490, 3482, 3508,
3513, 3462, 3475, 3478, 3461, 3474, 3473, 3472, 3471, 3470, 3469, 3466,
3465, 3468, 3467, 3496, 3502, 3498, 3504, 3511, 3489, 3485, 3491, 3483,
3509, 3512, 3525, 3499, 3522, 3517, 3505, 3523, 3477, 3476, 3500, 3507,
3487, 3494, 3526, 3524, 3515, 3520, 3514, 3492, 3493, 3521, 3486, 3563,
3562, 3565, 3564, 3561, 3560, 3558, 3567, 3559, 3566, 3530, 3458, 3457,
3459, 3570, 3571, 3546, 3537, 3539, 3542, 3544, 3551, 3536, 3538, 3540,
3545, 3548, 3549, 3550, 3547, 3535, 3572, 8767, 10046, 128973, 10038,
128303, 8198, 10042, 128510, 127935, 9975, 128128, 9760, 129448, 128761,
10902, 10904, 10901, 10903, 11098, 11100, 42611, 128716, 128164, 128564,
128554, 128373, 128759, 127829, 128578, 128577, 10840, 10839, 9011,
127920, 129445, 65120, 128745, 65121, 128313, 128312, 8717, 8956, 8958,
65131, 65104, 65109, 65129, 8714, 8948, 8951, 65126, 65111, 65112, 65105,
65115, 65113, 65117, 65124, 65116, 65114, 65118, 8570, 8567, 8564, 8574,
8572, 8563, 8560, 8573, 8575, 8571, 8561, 8562, 8569, 8566, 8565, 8568,
65128, 65108, 68411, 732, 118266, 10849, 65125, 65123, 65130, 65122,
65119, 65106, 65110, 10922, 10924, 10803, 128571, 128570, 128525, 128520,
128519, 128515, 128517, 128516, 128518, 128522, 129325, 129392, 128526,
129394, 8995, 128527, 128684, 128013, 118010, 128012, 129319, 127956,
9731, 9924, 127938, 10052, 983077, 9917, 129510, 173, 127846, 128428,
9108, 129358, 69453, 69452, 69454, 69456, 69447, 69449, 69446, 69448,
69455, 69451, 69450, 69445, 69424, 69437, 69426, 69433, 69444, 69440,
69429, 69436, 69439, 69441, 69431, 69427, 69430, 69432, 69425, 69443,
69435, 69442, 69428, 69438, 69434, 69457, 69460, 69459, 69458, 69463,
69465, 69461, 69462, 69464, 128618, 128619, 47, 10742, 128284, 69859,
69863, 69864, 69846, 69847, 69857, 69849, 69842, 69843, 69844, 69845,
69854, 69856, 69855, 69848, 69851, 69853, 69840, 69841, 69850, 69852,
69858, 69860, 69862, 69861, 69877, 69876, 69879, 69878, 69875, 69874,
69872, 69881, 69873, 69880, 8600, 10537, 10541, 8690, 10533, 129210,
128603, 128595, 128611, 11112, 11128, 11018, 8664, 129110, 11010, 8601,
10538, 10534, 129211, 128601, 128593, 128609, 11113, 11129, 11019, 8665,
129111, 11011, 8471, 72328, 72329, 72327, 72326, 72340, 72339, 72334,
72332, 72341, 72335, 72333, 72330, 72331, 72338, 72336, 72337, 72352,
72351, 72350, 72297, 72296, 72302, 72311, 72301, 72323, 72285, 72284,
72288, 72298, 72293, 72303, 72319, 72320, 72321, 72310, 72309, 72295,
72294, 72300, 72299, 72307, 72306, 72290, 72289, 72287, 72286, 72292,
72291, 72305, 72304, 72312, 72313, 72314, 72322, 72317, 72308, 72316,
72318, 72315, 72272, 72349, 72348, 72347, 72346, 72324, 72343, 72325,
72342, 72345, 72353, 72354, 72282, 72281, 72279, 72280, 72277, 72278,
72275, 72274, 72276, 72273, 72283, 72344, 8384, 983043, 983182, 983118,
983177, 127837, 128150, 10055, 10024, 117824, 117825, 32, 128586, 128264,
128263, 128265, 128266, 128483, 128676, 128172, 8375, 117830, 117831,
8738, 10656, 10657, 128375, 128376, 128467, 128466, 128026, 128166,
129759, 129525, 129348, 128051, 127941, 129533, 13279, 117900, 13056,
13058, 13057, 13059, 13250, 13171, 13278, 13101, 13172, 13108, 13105,
13118, 13116, 13251, 13192, 8851, 13255, 13183, 13213, 13220, 13216,
13254, 8852, 13252, 13253, 13170, 13092, 13175, 13177, 13176, 13093,
13094, 13256, 127376, 13207, 13064, 13179, 13181, 13182, 13055, 13180,
13005, 13063, 13006, 117899, 117898, 117897, 9974, 9165, 13209, 13070,
13071, 13311, 13075, 13073, 13072, 13080, 13081, 13203, 13228, 13191,
13257, 13258, 13098, 13110, 13113, 13121, 13122, 13119, 13107, 13106,
13109, 13259, 13169, 127488, 13004, 13200, 13260, 13060, 13061, 8847,
8932, 8849, 13178, 13188, 13068, 13069, 13067, 13076, 13078, 13079,
13077, 13214, 13262, 13222, 13218, 13086, 13085, 13082, 13083, 13084,
13074, 13201, 13193, 13248, 13226, 13189, 13199, 13261, 13208, 13263,
13240, 13246, 8977, 13266, 10957, 13264, 13265, 13267, 13223, 13224,
13249, 13221, 13217, 13187, 13123, 13124, 13127, 13126, 13125, 13190,
13268, 13131, 13132, 13133, 13128, 13129, 13130, 13269, 13212, 13219,
13215, 13186, 13196, 13197, 13205, 13211, 13234, 13238, 13244, 13239,
13241, 13245, 13247, 13202, 13270, 13227, 13198, 13206, 13235, 13185,
13096, 13097, 13195, 13210, 13233, 13237, 13243, 13065, 8848, 8933, 8850,
13066, 13173, 13225, 13099, 13100, 13184, 13115, 13112, 13114, 13111,
13103, 13104, 13102, 13117, 13120, 11216, 13273, 13174, 13194, 13271,
13272, 13274, 13232, 13236, 13242, 13229, 13230, 13231, 13142, 13141,
10958, 13137, 13138, 13140, 13139, 8730, 13087, 13088, 13090, 13091,
117887, 117886, 117884, 117885, 13089, 13275, 13276, 128918, 13204,
13095, 13143, 11027, 9641, 9638, 9636, 11029, 9706, 9703, 11026, 9705,
9639, 11028, 9640, 9637, 9704, 10720, 13277, 13135, 13134, 13136, 13062,
127529, 127530, 127512, 127508, 127533, 127545, 127520, 127516, 127534,
127506, 127540, 127525, 127546, 127532, 127511, 127509, 127524, 127505,
127517, 127518, 127527, 127537, 127504, 127528, 127535, 127519, 127515,
127513, 127543, 127542, 127526, 127541, 127544, 127522, 127538, 127514,
127521, 127539, 127510, 127536, 127523, 127547, 127531, 127378, 127377,
8865, 10693, 11820, 127390, 127392, 127379, 10692, 127400, 127399,
127398, 127306, 127489, 127507, 127490, 9919, 127397, 127280, 127281,
127282, 127283, 127284, 127285, 127286, 127287, 127288, 127289, 127290,
127291, 127292, 127293, 127294, 127295, 127296, 127297, 127298, 127299,
127300, 127301, 127302, 127303, 127304, 127305, 10190, 10191, 127401,
8863, 127307, 127381, 127382, 127396, 127383, 127310, 8862, 127388,
127393, 127402, 127395, 9949, 10695, 10696, 127384, 127308, 127309,
127387, 127394, 127389, 8864, 127391, 127385, 127403, 127404, 127386,
10694, 127311, 127380, 10151, 129425, 983157, 983160, 983134, 983190,
9877, 9882, 128387, 8795, 10017, 8902, 9770, 11242, 11243, 983175,
983133, 983181, 983176, 983042, 983044, 128509, 128649, 129485, 127967,
128642, 127836, 11836, 129658, 129989, 129990, 129993, 129991, 129992,
128480, 9201, 128207, 9188, 127827, 118463, 10025, 983189, 117891,
117888, 117890, 117889, 8803, 127897, 129369, 128723, 983170, 983045,
983103, 8333, 8332, 8328, 8330, 8334, 8331, 8325, 8324, 8327, 8326, 8323,
8322, 8320, 8329, 8321, 10963, 10965, 10617, 8834, 10953, 10949, 10951,
10955, 8842, 8838, 10947, 10945, 10943, 10941, 983102, 8827, 10938,
10934, 10928, 10930, 10936, 10932, 8937, 8831, 8829, 8881, 9139, 10763,
9138, 9737, 127774, 9925, 7098, 7073, 7074, 7075, 7084, 7085, 7043,
983220, 7046, 7102, 7103, 7062, 7100, 7068, 7099, 7067, 7087, 7070, 7048,
7049, 7053, 7057, 7060, 7101, 7064, 7086, 7050, 7054, 7059, 7052, 7072,
7055, 7065, 7061, 7051, 7058, 7063, 7069, 7071, 7066, 7056, 7044, 7047,
7045, 7367, 7366, 7365, 7364, 7363, 7361, 7362, 7360, 7082, 7041, 7042,
7040, 7083, 7080, 7081, 7079, 7077, 7076, 7078, 7093, 7092, 7095, 7094,
7091, 7090, 7088, 7097, 7089, 7096, 127749, 127748, 72648, 72662, 72661,
72669, 72652, 72640, 72663, 72651, 72655, 72672, 72646, 72667, 72666,
72653, 72657, 72645, 72665, 72649, 72644, 72658, 72668, 72670, 72664,
72671, 72641, 72659, 72656, 72650, 72643, 72660, 72654, 72642, 72647,
72673, 72693, 72692, 72695, 72694, 72691, 72690, 72688, 72697, 72689,
72696, 127751, 127803, 8316, 8312, 8305, 8319, 8317, 8314, 8318, 8315,
8309, 8308, 8311, 8310, 179, 178, 8304, 8313, 185, 10966, 10964, 10619,
10968, 10967, 8835, 10954, 10950, 10952, 10956, 8843, 8839, 10948, 10946,
10944, 10942, 10185, 129464, 129465, 8751, 127940, 128671, 127843,
128629, 129442, 127946, 8275, 43027, 43026, 43031, 43030, 43040, 43038,
43025, 43024, 43029, 43028, 43036, 43035, 43021, 43020, 43018, 43017,
43023, 43022, 43016, 43015, 43034, 43033, 43042, 43039, 43037, 43032,
43041, 43008, 43012, 43009, 43013, 43011, 43048, 43049, 43050, 43051,
43052, 43019, 43014, 43010, 43047, 43043, 43046, 43044, 43045, 9223,
9224, 9229, 9240, 9232, 9249, 9256, 9255, 9253, 9257, 9236, 9235, 9234,
9233, 9241, 9220, 9239, 9219, 9221, 9243, 9244, 9228, 9225, 9227, 9226,
128325, 9237, 9252, 9216, 9222, 9246, 9245, 9247, 8527, 9230, 9231, 9217,
9218, 9242, 9254, 9238, 9248, 11159, 9007, 983094, 983093, 128333, 1807,
1866, 1802, 1798, 1799, 1849, 1848, 1792, 1854, 1853, 1805, 1804, 1803,
1852, 1851, 1850, 1797, 1814, 1813, 1815, 1818, 1824, 2153, 2152, 2149,
2148, 2144, 2146, 2150, 2147, 2154, 2145, 2151, 1825, 1830, 1837, 1839,
1838, 1831, 1834, 1827, 1869, 1870, 1871, 1809, 1835, 1832, 1828, 1808,
1823, 1833, 1819, 1820, 1836, 1811, 1812, 1821, 1822, 1810, 1817, 1826,
1816, 1829, 1864, 1863, 1842, 1841, 1840, 1845, 1844, 1843, 1847, 1846,
1855, 1858, 1796, 983204, 1801, 1794, 1795, 1800, 1793, 1862, 1861, 1860,
1859, 1865, 1856, 1857, 128137, 983184, 128085, 129430, 983061, 127955,
917543, 917542, 917546, 917598, 917568, 917548, 917562, 917540, 917557,
917556, 917559, 917558, 917555, 917554, 917552, 917561, 917553, 917560,
917565, 917537, 917600, 917566, 917549, 917569, 917570, 917571, 917572,
917573, 917574, 917575, 917576, 917577, 917578, 917579, 917580, 917581,
917582, 917583, 917584, 917585, 917586, 917587, 917588, 917589, 917590,
917591, 917592, 917593, 917594, 917601, 917602, 917603, 917604, 917605,
917606, 917607, 917608, 917609, 917610, 917611, 917612, 917613, 917614,
917615, 917616, 917617, 917618, 917619, 917620, 917621, 917622, 917623,
917624, 917625, 917626, 917564, 917627, 917544, 917595, 917599, 917541,
917547, 917538, 917567, 917629, 917545, 917597, 917596, 917563, 917551,
917536, 917539, 917630, 917550, 917628, 5888, 5919, 5893, 5896, 5898,
5895, 5892, 5905, 5891, 5902, 5899, 5897, 5901, 5904, 5894, 5903, 5900,
5889, 5890, 5909, 5908, 5906, 5907, 5989, 5992, 5994, 5991, 5988, 5987,
5998, 5995, 5993, 6000, 5990, 5999, 5996, 5984, 5985, 5986, 6002, 6003,
6499, 6508, 6509, 6507, 6501, 6502, 6512, 6513, 6514, 6515, 6516, 6497,
6483, 6487, 6486, 6482, 6498, 6505, 6504, 6496, 6480, 6490, 6489, 6503,
6506, 6492, 6494, 6488, 6491, 6495, 6484, 6493, 6481, 6485, 6500, 6745,
6746, 6743, 6747, 6742, 6741, 6748, 6749, 6750, 6783, 6789, 6788, 6791,
6790, 6787, 6786, 6784, 6793, 6785, 6792, 6805, 6804, 6807, 6806, 6803,
6802, 6800, 6809, 6801, 6808, 6740, 6689, 6690, 6688, 6702, 6726, 6727,
6728, 6696, 6695, 6713, 6712, 6707, 6706, 6714, 6729, 6720, 6693, 6692,
6691, 6704, 6699, 6697, 6717, 6715, 6709, 6708, 6716, 6732, 6698, 6719,
6723, 6739, 6724, 6730, 6721, 6705, 6701, 6722, 6735, 6736, 6733, 6734,
6694, 6700, 6710, 6738, 6737, 6711, 6703, 6718, 6725, 6731, 6828, 6820,
6775, 6776, 6777, 6780, 6824, 6825, 6819, 6772, 6744, 6823, 6779, 6778,
6822, 6826, 6827, 6818, 6752, 6816, 6817, 6821, 6773, 6774, 6829, 6753,
6755, 6767, 6769, 6754, 6763, 6764, 6771, 6768, 6765, 6756, 6770, 6761,
6762, 6760, 6759, 6757, 6758, 6766, 43653, 43651, 43649, 43661, 43659,
43679, 43677, 43671, 43669, 43657, 43665, 43673, 43675, 43667, 43681,
43655, 43693, 43689, 43683, 43687, 43663, 43691, 43685, 43695, 43652,
43650, 43648, 43660, 43658, 43678, 43676, 43670, 43668, 43656, 43664,
43672, 43674, 43666, 43680, 43654, 43692, 43688, 43682, 43686, 43662,
43690, 43684, 43694, 43696, 43703, 43743, 43739, 43740, 43742, 43741,
43712, 43713, 43714, 43711, 43707, 43697, 43710, 43709, 43708, 43700,
43699, 43705, 43706, 43698, 43704, 43701, 43702, 124653, 124640, 124645,
124658, 124657, 124656, 124660, 124659, 124632, 124610, 124637, 124608,
124617, 124628, 124634, 124625, 124620, 124615, 124611, 124638, 124609,
124618, 124629, 124635, 124626, 124621, 124616, 124613, 124623, 124644,
124642, 124650, 124651, 124627, 124622, 124641, 124649, 124647, 124652,
124624, 124614, 124619, 124612, 124630, 124636, 124633, 124631, 124648,
124655, 124646, 124654, 124643, 124661, 124670, 124671, 71353, 71296,
71352, 71297, 71303, 71305, 71319, 71318, 71324, 71323, 71338, 71332,
71317, 71316, 71322, 71321, 71300, 71301, 71298, 71299, 71310, 71320,
71315, 71325, 71329, 71328, 71312, 71311, 71309, 71308, 71314, 71313,
71307, 71306, 71327, 71326, 71335, 71336, 71337, 71333, 71330, 71334,
71331, 71302, 71304, 71351, 71339, 71350, 71340, 71341, 71347, 71349,
71344, 71345, 71342, 71343, 71346, 71348, 71365, 71364, 71367, 71366,
71363, 71362, 71360, 71369, 71361, 71368, 129377, 119672, 119671, 3064,
3031, 73707, 983662, 983685, 983674, 983677, 983676, 983669, 983667,
983679, 983663, 983665, 983668, 983666, 983683, 983681, 983682, 983673,
983678, 983664, 983684, 983680, 983671, 983670, 983675, 983672, 73706,
3063, 73701, 3062, 3059, 3051, 3050, 3053, 3052, 3049, 3048, 3046, 3055,
3047, 3054, 73700, 73666, 73676, 73668, 73679, 73681, 73682, 73665,
73673, 73674, 73667, 73664, 73669, 73672, 73675, 73680, 73670, 73678,
73671, 73677, 73683, 73684, 73710, 2985, 2979, 2969, 2974, 2984, 2975,
2980, 2949, 2950, 2960, 2964, 2996, 2995, 2994, 2993, 2992, 2953, 2954,
2962, 2963, 2951, 2952, 2998, 2999, 3000, 2958, 2959, 2970, 3001, 2972,
2965, 2990, 2986, 2997, 2991, 73702, 3057, 3058, 3056, 3066, 73727, 3065,
73703, 73687, 2946, 73686, 73698, 73690, 73693, 73692, 73712, 73689,
73688, 73691, 73697, 73694, 73695, 73696, 73713, 73699, 3021, 2947,
73685, 73708, 73711, 983939, 983940, 983947, 983950, 983943, 983944,
983948, 983949, 983941, 983942, 983945, 983946, 983686, 983693, 983696,
983689, 983690, 983694, 983695, 983687, 983688, 983691, 983692, 983840,
983847, 983850, 983843, 983844, 983848, 983849, 983841, 983842, 983845,
983846, 983851, 983858, 983861, 983854, 983855, 983859, 983860, 983852,
983853, 983856, 983857, 983818, 983825, 983828, 983821, 983822, 983826,
983827, 983819, 983820, 983823, 983824, 983873, 983880, 983883, 983876,
983877, 983881, 983882, 983874, 983875, 983878, 983879, 983741, 983748,
983751, 983744, 983745, 983749, 983750, 983742, 983743, 983746, 983747,
983697, 983704, 983707, 983700, 983701, 983705, 983706, 983698, 983699,
983702, 983703, 983719, 983726, 983729, 983722, 983723, 983727, 983728,
983720, 983721, 983724, 983725, 983763, 983770, 983773, 983766, 983767,
983771, 983772, 983764, 983765, 983768, 983769, 983862, 983869, 983872,
983865, 983866, 983870, 983871, 983863, 983864, 983867, 983868, 983807,
983814, 983817, 983810, 983811, 983815, 983816, 983808, 983809, 983812,
983813, 983895, 983902, 983905, 983898, 983899, 983903, 983904, 983951,
983896, 983897, 983900, 983901, 983906, 983913, 983916, 983909, 983910,
983914, 983915, 983907, 983908, 983911, 983912, 983917, 983924, 983927,
983920, 983921, 983925, 983926, 983918, 983919, 983922, 983923, 983730,
983737, 983740, 983733, 983734, 983738, 983739, 983731, 983732, 983735,
983736, 983752, 983759, 983762, 983755, 983756, 983760, 983761, 983753,
983754, 983757, 983758, 983708, 983715, 983718, 983711, 983712, 983716,
983717, 983709, 983710, 983713, 983714, 983928, 983935, 983938, 983931,
983932, 983936, 983937, 983929, 983930, 983933, 983934, 983884, 983891,
983894, 983887, 983888, 983892, 983893, 983885, 983886, 983889, 983890,
983785, 983792, 983795, 983788, 983789, 983793, 983794, 983786, 983787,
983790, 983791, 983774, 983781, 983784, 983777, 983778, 983782, 983783,
983775, 983776, 983779, 983780, 983829, 983836, 983839, 983832, 983833,
983837, 983838, 983830, 983831, 983834, 983835, 983796, 983803, 983806,
983799, 983800, 983804, 983805, 983797, 983798, 983801, 983802, 73709,
73704, 73705, 3006, 3016, 3020, 3009, 3010, 3018, 3019, 3007, 3008, 3014,
3015, 3061, 3060, 3024, 129748, 127883, 127818, 92809, 92810, 92811,
92808, 92789, 92790, 92791, 92788, 92816, 92859, 92856, 92847, 92845,
92817, 92846, 92843, 92829, 92830, 92831, 92828, 92835, 92851, 92840,
92844, 92818, 92819, 92852, 92836, 92825, 92826, 92827, 92824, 92813,
92814, 92815, 92812, 92820, 92822, 92823, 92821, 92805, 92806, 92807,
92804, 92797, 92798, 92799, 92796, 92801, 92802, 92803, 92800, 92785,
92786, 92787, 92784, 92793, 92794, 92795, 92792, 92857, 92854, 92848,
92861, 92853, 92860, 92849, 92855, 92834, 92833, 92832, 92841, 92839,
92842, 92850, 92838, 92858, 92837, 92862, 92869, 92868, 92871, 92870,
92867, 92866, 92864, 92873, 92865, 92872, 100352, 100353, 100354, 100355,
100356, 100357, 100358, 100359, 100360, 100361, 100362, 100363, 100364,
100365, 100366, 100367, 100368, 100369, 100370, 100371, 100372, 100373,
100374, 100375, 100376, 100377, 100378, 100379, 100380, 100381, 100382,
100383, 100384, 100385, 100386, 100387, 100388, 100389, 100390, 100391,
100392, 100393, 100394, 100395, 100396, 100397, 100398, 100399, 100400,
100401, 100402, 100403, 100404, 100405, 100406, 100407, 100408, 100409,
100410, 100411, 100412, 100413, 100414, 100415, 100416, 100417, 100418,
100419, 100420, 100421, 100422, 100423, 100424, 100425, 100426, 100427,
100428, 100429, 100430, 100431, 100432, 100433, 100434, 100435, 100436,
100437, 100438, 100439, 100440, 100441, 100442, 100443, 100444, 100445,
100446, 100447, 100448, 100449, 100450, 100451, 100452, 100453, 100454,
100455, 100456, 100457, 100458, 100459, 100460, 100461, 100462, 100463,
100464, 100465, 100466, 100467, 100468, 100469, 100470, 100471, 100472,
100473, 100474, 100475, 100476, 100477, 100478, 100479, 100480, 100481,
100482, 100483, 100484, 100485, 100486, 100487, 100488, 100489, 100490,
100491, 100492, 100493, 100494, 100495, 100496, 100497, 100498, 100499,
100500, 100501, 100502, 100503, 100504, 100505, 100506, 100507, 100508,
100509, 100510, 100511, 100512, 100513, 100514, 100515, 100516, 100517,
100518, 100519, 100520, 100521, 100522, 100523, 100524, 100525, 100526,
100527, 100528, 100529, 100530, 100531, 100532, 100533, 100534, 100535,
100536, 100537, 100538, 100539, 100540, 100541, 100542, 100543, 100544,
100545, 100546, 100547, 100548, 100549, 100550, 100551, 100552, 100553,
100554, 100555, 100556, 100557, 100558, 100559, 100560, 100561, 100562,
100563, 100564, 100565, 100566, 100567, 100568, 100569, 100570, 100571,
100572, 100573, 100574, 100575, 100576, 100577, 100578, 100579, 100580,
100581, 100582, 100583, 100584, 100585, 100586, 100587, 100588, 100589,
100590, 100591, 100592, 100593, 100594, 100595, 100596, 100597, 100598,
100599, 100600, 100601, 100602, 100603, 100604, 100605, 100606, 100607,
100608, 100609, 100610, 100611, 100612, 100613, 100614, 100615, 100616,
100617, 100618, 100619, 100620, 100621, 100622, 100623, 100624, 100625,
100626, 100627, 100628, 100629, 100630, 100631, 100632, 100633, 100634,
100635, 100636, 100637, 100638, 100639, 100640, 100641, 100642, 100643,
100644, 100645, 100646, 100647, 100648, 100649, 100650, 100651, 100652,
100653, 100654, 100655, 100656, 100657, 100658, 100659, 100660, 100661,
100662, 100663, 100664, 100665, 100666, 100667, 100668, 100669, 100670,
100671, 100672, 100673, 100674, 100675, 100676, 100677, 100678, 100679,
100680, 100681, 100682, 100683, 100684, 100685, 100686, 100687, 100688,
100689, 100690, 100691, 100692, 100693, 100694, 100695, 100696, 100697,
100698, 100699, 100700, 100701, 100702, 100703, 100704, 100705, 100706,
100707, 100708, 100709, 100710, 100711, 100712, 100713, 100714, 100715,
100716, 100717, 100718, 100719, 100720, 100721, 100722, 100723, 100724,
100725, 100726, 100727, 100728, 100729, 100730, 100731, 100732, 100733,
100734, 100735, 100736, 100737, 100738, 100739, 100740, 100741, 100742,
100743, 100744, 100745, 100746, 100747, 100748, 100749, 100750, 100751,
100752, 100753, 100754, 100755, 100756, 100757, 100758, 100759, 100760,
100761, 100762, 100763, 100764, 100765, 100766, 100767, 100768, 100769,
100770, 100771, 100772, 100773, 100774, 100775, 100776, 100777, 100778,
100779, 100780, 100781, 100782, 100783, 100784, 100785, 100786, 100787,
100788, 100789, 100790, 100791, 100792, 100793, 100794, 100795, 100796,
100797, 100798, 100799, 100800, 100801, 100802, 100803, 100804, 100805,
100806, 100807, 100808, 100809, 100810, 100811, 100812, 100813, 100814,
100815, 100816, 100817, 100818, 100819, 100820, 100821, 100822, 100823,
100824, 100825, 100826, 100827, 100828, 100829, 100830, 100831, 100832,
100833, 100834, 100835, 100836, 100837, 100838, 100839, 100840, 100841,
100842, 100843, 100844, 100845, 100846, 100847, 100848, 100849, 100850,
100851, 100852, 100853, 100854, 100855, 100856, 100857, 100858, 100859,
100860, 100861, 100862, 100863, 100864, 100865, 100866, 100867, 100868,
100869, 100870, 100871, 100872, 100873, 100874, 100875, 100876, 100877,
100878, 100879, 100880, 100881, 100882, 100883, 100884, 100885, 100886,
100887, 100888, 100889, 100890, 100891, 100892, 100893, 100894, 100895,
100896, 100897, 100898, 100899, 100900, 100901, 100902, 100903, 100904,
100905, 100906, 100907, 100908, 100909, 100910, 100911, 100912, 100913,
100914, 100915, 100916, 100917, 100918, 100919, 100920, 100921, 100922,
100923, 100924, 100925, 100926, 100927, 100928, 100929, 100930, 100931,
100932, 100933, 100934, 100935, 100936, 100937, 100938, 100939, 100940,
100941, 100942, 100943, 100944, 100945, 100946, 100947, 100948, 100949,
100950, 100951, 100952, 100953, 100954, 100955, 100956, 100957, 100958,
100959, 100960, 100961, 100962, 100963, 100964, 100965, 100966, 100967,
100968, 100969, 100970, 100971, 100972, 100973, 100974, 100975, 100976,
100977, 100978, 100979, 100980, 100981, 100982, 100983, 100984, 100985,
100986, 100987, 100988, 100989, 100990, 100991, 100992, 100993, 100994,
100995, 100996, 100997, 100998, 100999, 101000, 101001, 101002, 101003,
101004, 101005, 101006, 101007, 101008, 101009, 101010, 101011, 101012,
101013, 101014, 101015, 101016, 101017, 101018, 101019, 101020, 101021,
101022, 101023, 101024, 101025, 101026, 101027, 101028, 101029, 101030,
101031, 101032, 101033, 101034, 101035, 101036, 101037, 101038, 101039,
101040, 101041, 101042, 101043, 101044, 101045, 101046, 101047, 101048,
101049, 101050, 101051, 101052, 101053, 101054, 101055, 101056, 101057,
101058, 101059, 101060, 101061, 101062, 101063, 101064, 101065, 101066,
101067, 101068, 101069, 101070, 101071, 101072, 101073, 101074, 101075,
101076, 101077, 101078, 101079, 101080, 101081, 101082, 101083, 101084,
101085, 101086, 101087, 101088, 101089, 101090, 101091, 101092, 101093,
101094, 101095, 101096, 101097, 101098, 101099, 101100, 101101, 101102,
101103, 101104, 101105, 101106, 101107, 101108, 101109, 101110, 101111,
101112, 101113, 101114, 101115, 101116, 101117, 101118, 101119, 101760,
101761, 101762, 101763, 101764, 101765, 101766, 101767, 101768, 101769,
101770, 101771, 101772, 101773, 101774, 101775, 101776, 101777, 101778,
101779, 101780, 101781, 101782, 101783, 101784, 101785, 101786, 101787,
101788, 101789, 101790, 101791, 101792, 101793, 101794, 101795, 101796,
101797, 101798, 101799, 101800, 101801, 101802, 101803, 101804, 101805,
101806, 101807, 101808, 101809, 101810, 101811, 101812, 101813, 101814,
101815, 101816, 101817, 101818, 101819, 101820, 101821, 101822, 101823,
101824, 101825, 101826, 101827, 101828, 101829, 101830, 101831, 101832,
101833, 101834, 101835, 101836, 101837, 101838, 101839, 101840, 101841,
101842, 101843, 101844, 101845, 101846, 101847, 101848, 101849, 101850,
101851, 101852, 101853, 101854, 101855, 101856, 101857, 101858, 101859,
101860, 101861, 101862, 101863, 101864, 101865, 101866, 101867, 101868,
101869, 101870, 101871, 101872, 101873, 101874, 94176, 128429, 9991,
9801, 127790, 128661, 127861, 128198, 10043, 10170, 129750, 129528,
128222, 128380, 8981, 9990, 8481, 128384, 128301, 128250, 3164, 3158,
3195, 3198, 3194, 3197, 3193, 3196, 3192, 3106, 3105, 3111, 3161, 3110,
3112, 3165, 3097, 3107, 3102, 3162, 3121, 3120, 3104, 3103, 3109, 3160,
3108, 3077, 3078, 3088, 3092, 3124, 3123, 3122, 3083, 3168, 3084, 3169,
3125, 3081, 3082, 3090, 3091, 3079, 3080, 3126, 3127, 3128, 3117, 3116,
3099, 3098, 3096, 3095, 3101, 3100, 3094, 3093, 3115, 3114, 3086, 3087,
3129, 3118, 3119, 3157, 3076, 3072, 3073, 3191, 3199, 3132, 3133, 3074,
3149, 3075, 3134, 3144, 3148, 3137, 3138, 3139, 3140, 3170, 3171, 3146,
3147, 3135, 3136, 3142, 3143, 3179, 3178, 3181, 3180, 3177, 3176, 3174,
3183, 3175, 3182, 127934, 8376, 9978, 129514, 119617, 119564, 119577,
119633, 119587, 119566, 119561, 119585, 119613, 119590, 119631, 119634,
119630, 119608, 119582, 119563, 119573, 119558, 119624, 119567, 119623,
119586, 119636, 119612, 119625, 119568, 119584, 119619, 119618, 119583,
119603, 119600, 119626, 119610, 119580, 119576, 119638, 119559, 119595,
119632, 119606, 119592, 119615, 119599, 119602, 119614, 119629, 119574,
119569, 119570, 119622, 119562, 119591, 119637, 119597, 119589, 119616,
119609, 119560, 119635, 119565, 119604, 119588, 119571, 119594, 119578,
119596, 119579, 119598, 119572, 119605, 119627, 119621, 119628, 119601,
119593, 119607, 119575, 119620, 119611, 119581, 1959, 1958, 1964, 1961,
1965, 1927, 1954, 1951, 1937, 1931, 1930, 1956, 1934, 1935, 1955, 1945,
1920, 1926, 1946, 1933, 1925, 1929, 1943, 1942, 1941, 1922, 1969, 1950,
1949, 1921, 1936, 1939, 1932, 1947, 1944, 1952, 1928, 1957, 1938, 1948,
1953, 1924, 1923, 1940, 1967, 1966, 1963, 1960, 1962, 1968, 3610, 3592,
3594, 3593, 3596, 3598, 3604, 3613, 3615, 3663, 3630, 3627, 3588, 3587,
3589, 3586, 3590, 3675, 3585, 3628, 3621, 3653, 3622, 3659, 3633, 3657,
3658, 3656, 3655, 3654, 3617, 3674, 3591, 3661, 3603, 3609, 3631, 3642,
3612, 3614, 3616, 3611, 3619, 3620, 3632, 3652, 3651, 3634, 3649, 3635,
3640, 3638, 3639, 3641, 3636, 3637, 3648, 3650, 3625, 3624, 3626, 3595,
3660, 3601, 3602, 3607, 3600, 3608, 3606, 3605, 3599, 3623, 3662, 3597,
3618, 3629, 3647, 3669, 3668, 3671, 3670, 3667, 3666, 3664, 3673, 3665,
3672, 8708, 8707, 8756, 127777, 10727, 118474, 128936, 8201, 128929,
129300, 129353, 128173, 129652, 10176, 8278, 9887, 9886, 11057, 128485,
128484, 128486, 128487, 8694, 128433, 10870, 128491, 128962, 128423,
11160, 11162, 10146, 11163, 11161, 10147, 8196, 11835, 128077, 128078,
9928, 9736, 3865, 3863, 3864, 4035, 4032, 4033, 4034, 3886, 3885, 3888,
3887, 3884, 3883, 3891, 3890, 3882, 3889, 3877, 3876, 3879, 3878, 3875,
3874, 3872, 3881, 3873, 3880, 4030, 4031, 3945, 3905, 3947, 3904, 3948,
3938, 3946, 3917, 3916, 3932, 3931, 3922, 3921, 3908, 3918, 3913, 3923,
3940, 3941, 3942, 3930, 3929, 3915, 3914, 3920, 3919, 3927, 3926, 3910,
3909, 3907, 3906, 3925, 3924, 3934, 3935, 3936, 3943, 3911, 3939, 3928,
3933, 3937, 3944, 3862, 3861, 983210, 3850, 4048, 3849, 3892, 4049, 3894,
3859, 3846, 3896, 4052, 3845, 3847, 3842, 3843, 3841, 3860, 3898, 3899,
3900, 3901, 3972, 4051, 3844, 3851, 3895, 3893, 4050, 3856, 3854, 3858,
3857, 3848, 3853, 4058, 3897, 3855, 4057, 3973, 3852, 3978, 3979, 3974,
3976, 3903, 3977, 3970, 3866, 3867, 3868, 3871, 3869, 3870, 4047, 4046,
3966, 3967, 3975, 3902, 3980, 3971, 4028, 4026, 4027, 3997, 3996, 4012,
4011, 4002, 4001, 4025, 3985, 3984, 3988, 3998, 3993, 4003, 4020, 4021,
4022, 4010, 4009, 3995, 3994, 4000, 3999, 4007, 4006, 3990, 3989, 3987,
3986, 4005, 4004, 4014, 4015, 4016, 4023, 3991, 4019, 4008, 4018, 4013,
4017, 4024, 3983, 3982, 3981, 3840, 4036, 4041, 4044, 4043, 4042, 4038,
4040, 4037, 4039, 3968, 3969, 3956, 3957, 3958, 3959, 3960, 3961, 3964,
3965, 3954, 3955, 3962, 3963, 3953, 10717, 11647, 11608, 11595, 11585,
11573, 11620, 11607, 11600, 11582, 11590, 11596, 11601, 11586, 11592,
11568, 11571, 11606, 11572, 11581, 11589, 11583, 11609, 11611, 11610,
11612, 11613, 11615, 11619, 11594, 11621, 11575, 11577, 11578, 11576,
11569, 11570, 11584, 11587, 11604, 11605, 11614, 11588, 11580, 11574,
11597, 11598, 11599, 11602, 11591, 11616, 11617, 11618, 11622, 11579,
11593, 11623, 11603, 11631, 11632, 128005, 128047, 10053, 126, 8764,
11081, 10610, 10859, 10858, 11807, 11806, 11803, 9202, 10708, 10709,
10750, 68410, 70854, 70784, 70785, 70786, 70796, 70798, 70812, 70811,
70817, 70816, 70810, 70809, 70815, 70814, 70791, 70792, 70793, 70794,
70827, 70789, 70790, 70787, 70788, 70803, 70813, 70808, 70818, 70828,
70829, 70830, 70822, 70821, 70805, 70804, 70802, 70801, 70807, 70806,
70800, 70799, 70820, 70819, 70831, 70826, 70823, 70825, 70824, 70795,
70797, 70847, 70851, 70852, 70848, 70850, 70849, 70842, 70845, 70832,
70843, 70846, 70835, 70836, 70837, 70838, 70839, 70840, 70833, 70834,
70841, 70844, 70869, 70868, 70871, 70870, 70867, 70866, 70864, 70873,
70865, 70872, 70853, 70855, 11858, 8266, 128555, 127915, 67054, 67022,
67020, 67027, 67051, 67011, 67031, 67023, 67021, 67033, 67049, 67047,
67015, 67032, 67025, 67024, 67058, 67035, 67041, 67040, 67056, 67055,
67039, 67038, 67037, 67034, 67059, 67018, 67017, 67030, 67029, 67008,
67009, 67013, 67012, 67016, 67014, 67057, 67028, 67043, 67042, 67048,
67046, 67053, 67052, 67010, 67019, 67036, 67045, 67026, 67044, 67050,
73140, 73141, 73149, 73154, 73155, 73150, 73151, 73156, 73171, 73166,
73161, 73168, 73175, 73176, 73147, 73152, 73153, 73148, 73144, 73145,
73157, 73158, 73164, 73165, 73159, 73160, 73162, 73163, 73142, 73143,
73137, 73173, 73136, 73169, 73146, 73139, 73172, 73138, 73170, 73174,
73167, 73177, 73178, 73179, 73189, 73188, 73191, 73190, 73187, 73186,
73184, 73193, 73185, 73192, 127813, 128069, 129463, 129701, 129520,
10554, 10557, 10556, 9182, 118256, 117851, 118262, 118263, 11865, 117850,
118252, 118254, 11866, 117852, 118248, 118250, 11833, 118246, 11210,
8992, 127913, 9180, 130024, 130016, 130031, 8988, 8975, 11810, 118279,
8989, 8974, 11811, 130028, 9140, 9184, 128285, 127553, 127554, 127559,
127555, 127557, 127560, 127552, 127556, 127558, 127274, 9008, 123554,
123556, 123559, 123561, 123564, 123537, 123544, 123543, 123553, 123555,
123558, 123560, 123546, 123565, 123563, 123539, 123541, 123550, 123549,
123540, 123552, 123542, 123536, 123551, 123545, 123538, 123548, 123547,
123562, 123557, 123566, 128701, 128508, 128434, 128668, 8482, 128650,
128651, 11223, 10971, 128646, 129678, 118460, 10701, 10699, 128710,
10698, 10141, 128681, 128208, 8227, 128305, 9783, 9776, 9777, 9782, 9779,
9781, 9780, 9778, 10998, 10856, 10857, 10747, 8244, 8779, 10996, 10624,
8874, 10997, 11003, 11851, 11000, 10999, 8749, 8285, 129484, 128654,
129674, 127865, 128032, 127942, 8872, 11231, 127930, 8366, 70601, 70608,
70613, 70612, 70610, 70528, 70529, 70542, 70545, 70559, 70558, 70564,
70563, 70581, 70579, 70573, 70580, 70572, 70557, 70556, 70562, 70561,
70534, 70535, 70536, 70537, 70574, 70532, 70533, 70530, 70531, 70550,
70560, 70555, 70565, 70575, 70576, 70577, 70569, 70568, 70552, 70551,
70549, 70548, 70554, 70553, 70547, 70546, 70567, 70566, 70544, 70539,
70578, 70570, 70571, 70609, 70583, 70604, 70607, 70615, 70616, 70602,
70611, 70606, 70605, 70626, 70625, 70584, 70597, 70600, 70587, 70588,
70589, 70590, 70591, 70592, 70585, 70586, 70599, 70594, 127799, 8378,
129411, 8523, 10658, 11202, 9930, 9929, 8498, 11826, 11832, 8587, 8586,
128598, 128596, 8985, 128399, 8513, 8514, 8516, 11829, 8526, 128599,
128597, 8489, 128034, 129347, 10041, 128256, 128432, 10869, 8229, 8282,
11818, 128149, 10837, 10838, 10697, 10760, 10759, 128108, 128109, 117896,
8273, 128490, 11834, 66432, 66451, 66454, 66433, 66436, 66447, 66457,
66434, 66437, 66440, 66443, 66435, 66445, 66455, 66453, 66450, 66444,
66461, 66456, 66441, 66458, 66442, 66439, 66449, 66448, 66452, 66438,
66446, 66459, 66460, 66463, 9730, 9969, 9748, 128530, 11217, 8255, 9100,
8746, 10824, 10822, 10826, 10817, 10818, 10821, 983116, 11258, 9842,
129412, 9903, 8963, 8996, 11193, 10685, 10577, 10573, 10572, 10575, 8597,
8616, 11021, 8661, 129113, 8691, 11109, 10622, 8944, 8869, 10207, 117873,
117877, 117857, 128743, 117881, 118267, 128742, 117847, 128314, 117912,
117862, 128744, 128316, 9709, 9710, 117760, 129898, 129946, 129920,
129896, 9985, 118417, 117809, 118418, 117810, 130020, 129924, 9600,
129937, 118275, 129938, 9690, 118292, 129934, 118439, 118444, 9696,
129885, 129887, 129889, 129886, 129883, 129888, 129881, 129884, 129882,
129879, 129880, 10196, 118416, 9136, 129944, 129948, 9720, 117808, 9692,
117958, 117946, 117962, 117966, 117950, 117954, 117928, 117926, 117942,
117970, 117938, 117813, 118421, 118422, 118420, 117812, 118423, 117815,
129922, 9620, 129874, 129875, 129892, 129894, 129890, 129878, 129893,
129891, 129876, 129895, 129877, 10064, 118419, 9137, 10000, 9693, 117959,
117947, 117963, 117967, 117951, 117955, 117929, 117927, 117943, 117971,
117939, 117814, 128319, 10066, 129945, 129949, 9721, 117811, 129926,
129923, 118438, 118445, 129925, 129901, 128579, 11797, 8593, 129976,
8645, 8670, 129033, 129029, 129177, 129041, 129025, 129045, 8624, 8625,
10505, 8613, 10514, 11145, 11014, 8657, 8673, 129077, 10606, 10595,
10592, 10584, 8639, 10588, 10580, 8638, 129089, 129093, 129085, 10224,
128621, 129105, 129081, 11105, 11137, 11121, 129065, 11170, 11171,
129061, 129057, 129073, 129069, 11131, 11115, 11141, 129169, 10506, 8607,
11245, 10569, 8648, 8679, 8683, 8685, 8684, 129173, 8682, 11192, 8686,
8687, 9797, 983117, 42509, 42510, 42511, 42446, 42370, 42486, 42257,
42333, 42294, 42407, 42445, 42369, 42485, 42256, 42332, 42293, 42406,
42449, 42373, 42489, 42260, 42336, 42297, 42410, 42434, 42359, 42473,
42246, 42321, 42283, 42396, 42435, 42360, 42474, 42247, 42322, 42284,
42397, 42452, 42376, 42492, 42263, 42339, 42300, 42413, 42451, 42375,
42491, 42262, 42338, 42299, 42412, 42444, 42368, 42484, 42255, 42331,
42292, 42405, 42443, 42367, 42483, 42254, 42330, 42291, 42404, 42454,
42378, 42494, 42265, 42341, 42302, 42415, 42453, 42377, 42493, 42264,
42340, 42301, 42414, 42439, 42440, 42364, 42479, 42251, 42480, 42327,
42288, 42401, 42502, 42272, 42503, 42461, 42385, 42349, 42309, 42422,
42429, 42430, 42355, 42468, 42242, 42469, 42316, 42317, 42278, 42279,
42391, 42392, 42476, 42249, 42477, 42437, 42362, 42324, 42325, 42286,
42399, 42459, 42383, 42346, 42347, 42499, 42270, 42307, 42420, 42487,
42508, 42258, 42447, 42371, 42334, 42295, 42408, 42436, 42361, 42475,
42248, 42323, 42285, 42398, 42438, 42363, 42478, 42250, 42326, 42287,
42400, 42462, 42386, 42504, 42273, 42350, 42310, 42423, 42450, 42514,
42539, 42512, 42513, 42538, 42374, 42490, 42261, 42337, 42298, 42411,
42507, 42500, 42271, 42501, 42460, 42384, 42348, 42308, 42421, 42315,
42467, 42428, 42457, 42381, 42497, 42268, 42344, 42305, 42418, 42464,
42388, 42506, 42275, 42352, 42312, 42425, 42463, 42387, 42505, 42274,
42351, 42311, 42424, 42455, 42379, 42495, 42266, 42342, 42303, 42416,
42441, 42365, 42481, 42252, 42328, 42289, 42402, 42456, 42380, 42496,
42267, 42343, 42304, 42417, 42433, 42358, 42472, 42245, 42320, 42282,
42395, 42448, 42372, 42488, 42259, 42335, 42296, 42409, 42442, 42366,
42482, 42253, 42329, 42290, 42403, 42458, 42382, 42498, 42269, 42345,
42306, 42419, 42470, 42243, 42244, 42471, 42431, 42356, 42357, 42432,
42318, 42319, 42280, 42281, 42393, 42394, 42465, 42240, 42241, 42466,
42426, 42353, 42354, 42427, 42313, 42314, 42276, 42277, 42389, 42390,
42523, 42526, 42522, 42515, 42520, 42527, 42516, 42524, 42518, 42517,
42525, 42521, 42519, 42533, 42532, 42535, 42534, 42531, 42530, 42528,
42537, 42529, 42536, 65024, 65033, 917843, 917844, 917845, 917846,
917847, 917848, 917849, 917850, 917851, 917852, 65034, 917853, 917854,
917855, 917856, 917857, 917858, 917859, 917860, 917861, 917862, 65035,
917863, 917864, 917865, 917866, 917867, 917868, 917869, 917870, 917871,
917872, 65036, 917873, 917874, 917875, 917876, 917877, 917878, 917879,
917880, 917881, 917882, 65037, 917883, 917884, 917885, 917886, 917887,
917888, 917889, 917890, 917891, 917892, 65038, 917893, 917894, 917895,
917896, 917897, 917898, 917899, 917900, 917901, 917902, 65039, 917903,
917904, 917905, 917906, 917907, 917908, 917909, 917910, 917911, 917912,
917760, 917913, 917914, 917915, 917916, 917917, 917918, 917919, 917920,
917921, 917922, 917761, 917923, 917924, 917925, 917926, 917927, 917928,
917929, 917930, 917931, 917932, 917762, 917933, 917934, 917935, 917936,
917937, 917938, 917939, 917940, 917941, 917942, 65025, 917763, 917943,
917944, 917945, 917946, 917947, 917948, 917949, 917950, 917951, 917952,
917764, 917953, 917954, 917955, 917956, 917957, 917958, 917959, 917960,
917961, 917962, 917765, 917963, 917964, 917965, 917966, 917967, 917968,
917969, 917970, 917971, 917972, 917766, 917973, 917974, 917975, 917976,
917977, 917978, 917979, 917980, 917981, 917982, 917767, 917983, 917984,
917985, 917986, 917987, 917988, 917989, 917990, 917991, 917992, 917768,
917993, 917994, 917995, 917996, 917997, 917998, 917999, 917769, 917770,
917771, 917772, 65026, 917773, 917774, 917775, 917776, 917777, 917778,
917779, 917780, 917781, 917782, 65027, 917783, 917784, 917785, 917786,
917787, 917788, 917789, 917790, 917791, 917792, 65028, 917793, 917794,
917795, 917796, 917797, 917798, 917799, 917800, 917801, 917802, 65029,
917803, 917804, 917805, 917806, 917807, 917808, 917809, 917810, 917811,
917812, 65030, 917813, 917814, 917815, 917816, 917817, 917818, 917819,
917820, 917821, 917822, 65031, 917823, 917824, 917825, 917826, 917827,
917828, 917829, 917830, 917831, 917832, 65032, 917833, 917834, 917835,
917836, 917837, 917838, 917839, 917840, 917841, 917842, 129499, 983245,
983254, 983364, 983365, 983366, 983367, 983368, 983369, 983370, 983371,
983372, 983373, 983255, 983374, 983375, 983376, 983377, 983378, 983379,
983380, 983381, 983382, 983383, 983256, 983384, 983385, 983386, 983387,
983388, 983389, 983390, 983391, 983392, 983393, 983257, 983394, 983395,
983396, 983397, 983398, 983399, 983400, 983401, 983402, 983403, 983258,
983404, 983405, 983406, 983407, 983408, 983409, 983410, 983411, 983412,
983413, 983259, 983414, 983415, 983416, 983417, 983418, 983419, 983420,
983421, 983422, 983423, 983260, 983424, 983425, 983426, 983427, 983428,
983429, 983430, 983431, 983432, 983433, 983281, 983434, 983435, 983436,
983437, 983438, 983439, 983440, 983441, 983442, 983443, 983282, 983444,
983445, 983446, 983447, 983448, 983449, 983450, 983451, 983452, 983453,
983283, 983454, 983455, 983456, 983457, 983458, 983459, 983460, 983461,
983462, 983463, 983246, 983284, 983464, 983465, 983466, 983467, 983468,
983469, 983470, 983471, 983472, 983473, 983285, 983474, 983475, 983476,
983477, 983478, 983479, 983480, 983481, 983482, 983483, 983286, 983484,
983485, 983486, 983487, 983488, 983489, 983490, 983491, 983492, 983493,
983287, 983494, 983495, 983496, 983497, 983498, 983499, 983500, 983501,
983502, 983503, 983288, 983504, 983505, 983506, 983507, 983508, 983509,
983510, 983511, 983512, 983513, 983289, 983514, 983515, 983516, 983517,
983518, 983519, 983520, 983290, 983291, 983292, 983293, 983247, 983294,
983295, 983296, 983297, 983298, 983299, 983300, 983301, 983302, 983303,
983248, 983304, 983305, 983306, 983307, 983308, 983309, 983310, 983311,
983312, 983313, 983249, 983314, 983315, 983316, 983317, 983318, 983319,
983320, 983321, 983322, 983323, 983250, 983324, 983325, 983326, 983327,
983328, 983329, 983330, 983331, 983332, 983333, 983251, 983334, 983335,
983336, 983337, 983338, 983339, 983340, 983341, 983342, 983343, 983252,
983344, 983345, 983346, 983347, 983348, 983349, 983350, 983351, 983352,
983353, 983253, 983354, 983355, 983356, 983357, 983358, 983359, 983360,
983361, 983362, 983363, 7401, 7402, 7409, 7403, 7404, 7415, 7410, 7418,
7413, 7379, 7398, 7396, 7411, 7408, 7406, 7407, 7405, 7414, 7397, 7400,
7395, 7399, 7394, 7380, 7384, 7412, 7417, 7386, 7389, 7376, 7388, 7378,
7416, 7392, 7391, 7387, 7390, 7381, 7382, 7383, 7385, 7393, 7377, 8483,
10704, 10980, 10978, 10186, 117780, 8942, 8286, 117917, 12347, 12337,
12339, 12341, 12338, 12340, 117892, 124, 9168, 10992, 10991, 117904,
118293, 9087, 9896, 129904, 129905, 129906, 129907, 129908, 129909,
117916, 117770, 11135, 983069, 983144, 11823, 128678, 10650, 11837,
128976, 128959, 128947, 128637, 128941, 128953, 128636, 128904, 128914,
128934, 8921, 8920, 128933, 9910, 128887, 10799, 128243, 9996, 118469,
128249, 127918, 128252, 94193, 94192, 8983, 127931, 9805, 66929, 66930,
66936, 66935, 66942, 66943, 66947, 66946, 66950, 66949, 66932, 66931,
66934, 66933, 66957, 66956, 66959, 66958, 66941, 66940, 66937, 66944,
66948, 66952, 66954, 66961, 66962, 66965, 66938, 66945, 66953, 66928,
66951, 66960, 66964, 66968, 66969, 66975, 66974, 66981, 66982, 66986,
66985, 66989, 66988, 66971, 66970, 66973, 66972, 66996, 66995, 66998,
66997, 66980, 66979, 66976, 66983, 66987, 66991, 66993, 67000, 67001,
67004, 66977, 66984, 66992, 66967, 66990, 66999, 67003, 129979, 127755,
127952, 8752, 983070, 983145, 11238, 8541, 8538, 8536, 8539, 8533, 189,
8529, 188, 8528, 8537, 8530, 8531, 8540, 190, 8535, 8534, 8532, 8542,
8585, 129479, 123585, 123584, 123624, 123619, 123620, 123606, 123605,
123622, 123618, 123611, 123623, 123612, 123621, 123615, 123592, 123613,
123625, 123593, 123596, 123617, 123616, 123595, 123614, 123626, 123627,
123590, 123609, 123604, 123591, 123594, 123599, 123598, 123586, 123587,
123588, 123597, 123589, 123610, 123600, 123608, 123607, 123603, 123602,
123601, 123647, 123630, 123631, 123628, 123629, 123637, 123636, 123639,
123638, 123635, 123634, 123632, 123641, 123633, 123640, 127768, 127766,
127762, 127764, 71841, 71850, 71862, 71861, 71848, 71856, 71853, 71867,
71866, 71865, 71868, 71840, 71859, 71849, 71857, 71869, 71870, 71855,
71847, 71843, 71854, 71844, 71845, 71858, 71871, 71863, 71864, 71852,
71846, 71842, 71860, 71851, 71873, 71882, 71894, 71893, 71880, 71888,
71885, 71899, 71898, 71897, 71900, 71872, 71891, 71881, 71889, 71901,
71902, 71887, 71879, 71875, 71886, 71876, 71877, 71890, 71903, 71895,
71896, 71884, 71878, 71874, 71892, 71883, 71909, 71908, 71911, 71910,
71907, 71906, 71904, 71913, 71905, 71912, 71921, 71918, 71917, 71922,
71920, 71919, 71916, 71915, 71914, 71935, 9888, 128702, 127754, 128003,
129341, 127817, 8986, 12316, 11071, 10547, 127988, 127987, 128075, 12336,
65103, 8967, 65099, 128465, 128576, 128553, 10172, 128146, 983238,
127947, 9840, 128734, 9784, 9855, 129197, 129196, 9702, 129621, 9815,
129548, 129590, 129608, 129611, 129620, 9812, 129545, 129587, 9816,
129542, 129563, 129584, 129591, 129605, 129549, 129616, 129614, 129615,
9817, 129550, 129592, 9813, 129546, 129588, 9814, 129547, 129589, 129569,
129566, 129570, 129571, 129567, 129568, 9675, 128906, 9862, 10732, 9863,
9717, 9718, 9716, 9719, 9831, 10209, 10210, 10211, 129995, 9671, 9672,
128922, 128923, 10192, 9826, 9931, 128071, 128407, 9759, 9663, 9661,
9920, 9921, 10069, 9872, 9983, 10048, 128174, 11214, 10023, 9785, 128427,
129293, 9825, 9989, 129984, 11041, 11053, 10710, 11036, 128326, 9945,
128072, 9756, 9669, 9667, 9665, 117894, 117895, 128928, 11046, 11088,
9725, 9723, 11048, 11229, 10001, 9649, 11040, 127985, 10068, 9645, 11092,
9659, 9657, 9655, 128073, 9758, 9988, 65094, 9750, 11051, 11090, 9643,
9786, 9828, 9633, 128307, 128916, 9635, 128917, 10212, 9713, 9714, 10213,
9634, 9712, 9715, 9707, 9093, 127779, 127781, 127782, 9788, 127780, 9734,
128382, 9743, 9186, 10177, 9943, 128070, 9757, 129994, 9653, 9651, 9708,
11055, 9647, 118278, 11006, 11038, 10163, 128011, 129144, 129152, 129120,
129136, 129128, 129146, 129154, 129122, 129138, 129130, 129147, 129155,
129123, 129139, 129131, 129145, 129153, 129121, 129137, 129129, 129149,
129157, 129125, 129141, 129133, 129148, 129156, 129124, 129140, 129132,
129150, 129158, 129126, 129142, 129134, 129151, 129159, 129127, 129143,
129135, 11838, 129344, 127888, 127788, 129695, 127863, 128521, 129725,
128430, 128732, 128105, 128111, 128098, 128090, 128097, 128082, 128698,
11825, 8288, 128506, 128543, 129713, 8361, 129717, 128058, 127873, 8768,
129340, 128295, 9997, 983233, 8999, 129659, 129644, 129643, 129641,
129639, 129642, 129645, 129640, 129637, 129636, 129634, 129632, 129635,
129638, 129633, 8891, 94196, 94197, 94198, 129393, 128155, 165, 69292,
69291, 69293, 69256, 69255, 69254, 69281, 69268, 69259, 69248, 69271,
69289, 69286, 69287, 69257, 69278, 69277, 69279, 69276, 69280, 69296,
69282, 69251, 69250, 69266, 69265, 69267, 69253, 69252, 69269, 69274,
69275, 69284, 69285, 69272, 69258, 69288, 69297, 69263, 69260, 69270,
69262, 69261, 69249, 69283, 69273, 69264, 42139, 42149, 42173, 42172,
42132, 42147, 42179, 42174, 42148, 42169, 42150, 42134, 42166, 42135,
42145, 42143, 42137, 42175, 42157, 42154, 42167, 42165, 42163, 42130,
42182, 42129, 42171, 42138, 42140, 42136, 42131, 42151, 42164, 42181,
42142, 42156, 42170, 42176, 42178, 42160, 42133, 42144, 42152, 42159,
42161, 42158, 42141, 42146, 42177, 42180, 42155, 42162, 42128, 42168,
42153, 41070, 41059, 41060, 41058, 41073, 41072, 41071, 41068, 41069,
41066, 41067, 41065, 41048, 41052, 41053, 41050, 41051, 41049, 41046,
41047, 41056, 41057, 41054, 41055, 41063, 41064, 41061, 41062, 41076,
41077, 41074, 41075, 41006, 40995, 40996, 40994, 41009, 41008, 41007,
41004, 41005, 41002, 41003, 41001, 40984, 40988, 40989, 40986, 40987,
40985, 40982, 40983, 40992, 40993, 40990, 40991, 40999, 41000, 40997,
40998, 41012, 41015, 41014, 41013, 41010, 41011, 41842, 41831, 41832,
41829, 41830, 41845, 41844, 41843, 41841, 41827, 41828, 41825, 41826,
41839, 41840, 41837, 41838, 41835, 41836, 41833, 41834, 41848, 41851,
41850, 41849, 41846, 41847, 41670, 41659, 41660, 41658, 41673, 41672,
41671, 41668, 41669, 41666, 41667, 41665, 41648, 41652, 41653, 41650,
41651, 41649, 41646, 41647, 41656, 41657, 41654, 41655, 41663, 41664,
41661, 41662, 41676, 41679, 41678, 41677, 41674, 41675, 41293, 41282,
41283, 41281, 41296, 41295, 41294, 41291, 41292, 41272, 41275, 41276,
41274, 41273, 41270, 41271, 41289, 41290, 41288, 41279, 41280, 41277,
41278, 41286, 41287, 41284, 41285, 41238, 41228, 41227, 41241, 41240,
41239, 41236, 41237, 41218, 41221, 41222, 41220, 41219, 41216, 41217,
41234, 41235, 41233, 41225, 41226, 41223, 41224, 41231, 41232, 41229,
41230, 41174, 41175, 41173, 41171, 41172, 41169, 41170, 41167, 41168,
41165, 41166, 41184, 41185, 41182, 41183, 41178, 41181, 41180, 41179,
41176, 41177, 41494, 41496, 41497, 41495, 41492, 41493, 41516, 41504,
41505, 41502, 41503, 41519, 41518, 41517, 41514, 41515, 41500, 41501,
41498, 41499, 41512, 41513, 41510, 41511, 41508, 41509, 41506, 41507,
41460, 41448, 41449, 41446, 41447, 41463, 41462, 41461, 41458, 41459,
41436, 41440, 41441, 41438, 41439, 41437, 41434, 41435, 41444, 41445,
41442, 41443, 41456, 41457, 41454, 41455, 41452, 41453, 41450, 41451,
41584, 41583, 41582, 41389, 41379, 41380, 41378, 41392, 41391, 41390,
41387, 41388, 41369, 41372, 41373, 41371, 41370, 41367, 41368, 41385,
41386, 41384, 41382, 41383, 41381, 41376, 41377, 41374, 41375, 41395,
41398, 41397, 41396, 41393, 41394, 41125, 41117, 41118, 41116, 41128,
41127, 41126, 41123, 41124, 41107, 41110, 41111, 41109, 41108, 41105,
41106, 41114, 41115, 41112, 41113, 41121, 41122, 41119, 41120, 41130,
41133, 41132, 41131, 41129, 41336, 41334, 41335, 41333, 41332, 41340,
41338, 41339, 41337, 41322, 41326, 41327, 41324, 41325, 41323, 41320,
41321, 41330, 41331, 41328, 41329, 41556, 41557, 41554, 41555, 41563,
41564, 41562, 41544, 41548, 41549, 41546, 41547, 41545, 41542, 41543,
41552, 41553, 41550, 41551, 41560, 41561, 41558, 41559, 41591, 41592,
41589, 41590, 41598, 41599, 41597, 41587, 41588, 41585, 41586, 41595,
41596, 41593, 41594, 40962, 40960, 983243, 40966, 40967, 40964, 40965,
40963, 40961, 42025, 42017, 42018, 42016, 42028, 42027, 42026, 42023,
42024, 42010, 42014, 42015, 42012, 42013, 42011, 42008, 42009, 42021,
42022, 42019, 42020, 42031, 42032, 42029, 42030, 41970, 41962, 41963,
41960, 41961, 41973, 41972, 41971, 41968, 41969, 41954, 41958, 41959,
41956, 41957, 41955, 41952, 41953, 41966, 41967, 41964, 41965, 41976,
41979, 41978, 41977, 41974, 41975, 41488, 41476, 41477, 41475, 41491,
41490, 41489, 41486, 41487, 41466, 41469, 41470, 41468, 41467, 41464,
41465, 41473, 41474, 41471, 41472, 41484, 41485, 41482, 41483, 41480,
41481, 41478, 41479, 41424, 41413, 41414, 41411, 41412, 41427, 41426,
41425, 41422, 41423, 41420, 41421, 41419, 41401, 41405, 41406, 41403,
41404, 41402, 41399, 41400, 41409, 41410, 41407, 41408, 41417, 41418,
41415, 41416, 41430, 41433, 41432, 41431, 41428, 41429, 41538, 41527,
41528, 41526, 41541, 41540, 41539, 41536, 41537, 41534, 41535, 41533,
41524, 41525, 41522, 41523, 41531, 41532, 41529, 41530, 41521, 41520,
41157, 41147, 41148, 41145, 41146, 41160, 41159, 41158, 41155, 41156,
41136, 41139, 41140, 41138, 41137, 41134, 41135, 41143, 41144, 41141,
41142, 41151, 41152, 41149, 41150, 41163, 41164, 41161, 41162, 41154,
41153, 41080, 41083, 41084, 41082, 41081, 41078, 41079, 41087, 41088,
41085, 41086, 41091, 41092, 41089, 41090, 41095, 41098, 41097, 41096,
41093, 41094, 41101, 41104, 41103, 41102, 41099, 41100, 41299, 41302,
41301, 41300, 41297, 41298, 41312, 41313, 41311, 41305, 41306, 41303,
41304, 41309, 41310, 41307, 41308, 41316, 41319, 41318, 41317, 41314,
41315, 41574, 41572, 41573, 41580, 41581, 41579, 41566, 41567, 41565,
41570, 41571, 41568, 41569, 41577, 41578, 41575, 41576, 42048, 42042,
42041, 42051, 42050, 42049, 42047, 42035, 42039, 42040, 42037, 42038,
42036, 42033, 42034, 42045, 42046, 42043, 42044, 42054, 42057, 42056,
42055, 42052, 42053, 41881, 41882, 41880, 41878, 41879, 41876, 41877,
41885, 41886, 41883, 41884, 41889, 41892, 41891, 41890, 41887, 41888,
41895, 41898, 41897, 41896, 41893, 41894, 42075, 42067, 42068, 42066,
42076, 42073, 42074, 42060, 42064, 42065, 42062, 42063, 42061, 42058,
42059, 42071, 42072, 42069, 42070, 41727, 41721, 41720, 41730, 41729,
41728, 41726, 41723, 41722, 41711, 41714, 41715, 41713, 41712, 41709,
41710, 41718, 41719, 41716, 41717, 41733, 41736, 41735, 41734, 41731,
41732, 41725, 41724, 41363, 41352, 41353, 41351, 41366, 41365, 41364,
41361, 41362, 41343, 41346, 41347, 41345, 41344, 41341, 41342, 41349,
41350, 41348, 41359, 41360, 41358, 41356, 41357, 41354, 41355, 41036,
41028, 41029, 41027, 41039, 41038, 41037, 41034, 41035, 41018, 41021,
41022, 41020, 41019, 41016, 41017, 41025, 41026, 41023, 41024, 41032,
41033, 41030, 41031, 41042, 41045, 41044, 41043, 41040, 41041, 41998,
41990, 41991, 41988, 41989, 42001, 42000, 41999, 41996, 41997, 41982,
41986, 41987, 41984, 41985, 41983, 41980, 41981, 41994, 41995, 41992,
41993, 42004, 42007, 42006, 42005, 42002, 42003, 42115, 42107, 42108,
42105, 42106, 42118, 42117, 42116, 42113, 42114, 42099, 42103, 42104,
42101, 42102, 42100, 42097, 42098, 42111, 42112, 42109, 42110, 42121,
42124, 42123, 42122, 42119, 42120, 41866, 41855, 41854, 41869, 41868,
41867, 41864, 41865, 41862, 41863, 41860, 41861, 41858, 41859, 41856,
41857, 41872, 41875, 41874, 41873, 41870, 41871, 41853, 41852, 41942,
41931, 41932, 41930, 41945, 41944, 41943, 41940, 41941, 41938, 41939,
41937, 41928, 41929, 41926, 41927, 41935, 41936, 41933, 41934, 41948,
41951, 41950, 41949, 41946, 41947, 41772, 41775, 41776, 41774, 41773,
41770, 41771, 41786, 41787, 41785, 41779, 41780, 41777, 41778, 41783,
41784, 41781, 41782, 41790, 41791, 41788, 41789, 41794, 41797, 41796,
41795, 41792, 41793, 41916, 41904, 41905, 41903, 41919, 41918, 41917,
41914, 41915, 41901, 41902, 41899, 41900, 41912, 41913, 41910, 41911,
41908, 41909, 41906, 41907, 41922, 41925, 41924, 41923, 41920, 41921,
41760, 41749, 41750, 41748, 41763, 41762, 41761, 41758, 41759, 41739,
41742, 41743, 41741, 41740, 41737, 41738, 41756, 41757, 41755, 41746,
41747, 41744, 41745, 41753, 41754, 41751, 41752, 41766, 41769, 41768,
41767, 41764, 41765, 41266, 41255, 41256, 41253, 41254, 41269, 41268,
41267, 41264, 41265, 41244, 41247, 41248, 41246, 41245, 41242, 41243,
41262, 41263, 41261, 41251, 41252, 41249, 41250, 41259, 41260, 41257,
41258, 41203, 41202, 41188, 41192, 41193, 41190, 41191, 41189, 41186,
41187, 41196, 41197, 41194, 41195, 41200, 41201, 41198, 41199, 41206,
41209, 41208, 41207, 41204, 41205, 41212, 41215, 41214, 41213, 41210,
41211, 40981, 41605, 41606, 41604, 41611, 41612, 41610, 41608, 41609,
41607, 41602, 41603, 41600, 41601, 42079, 42083, 42084, 42081, 42082,
42080, 42077, 42078, 42089, 42090, 42087, 42088, 42093, 42096, 42095,
42094, 42091, 42092, 42086, 42085, 41815, 41803, 41804, 41802, 41818,
41817, 41816, 41813, 41814, 41800, 41801, 41798, 41799, 41811, 41812,
41809, 41810, 41807, 41808, 41805, 41806, 41821, 41824, 41823, 41822,
41819, 41820, 41636, 41625, 41626, 41624, 41639, 41638, 41637, 41634,
41635, 41615, 41618, 41619, 41617, 41616, 41613, 41614, 41696, 41697,
41695, 41693, 41694, 41692, 41682, 41686, 41687, 41684, 41685, 41683,
41680, 41681, 41690, 41691, 41688, 41689, 41699, 41702, 41701, 41700,
41698, 41705, 41708, 41707, 41706, 41703, 41704, 41632, 41633, 41631,
41622, 41623, 41620, 41621, 41629, 41630, 41627, 41628, 41642, 41645,
41644, 41643, 41640, 41641, 40973, 40974, 40972, 40970, 40971, 40968,
40969, 40977, 40978, 40975, 40976, 40980, 40979, 9775, 129664, 8959,
10853, 10632, 10634, 10814, 10852, 10631, 10633, 10783, 10784, 10785,
10625, 10626, 72262, 72256, 72253, 72252, 72254, 72251, 72250, 72261,
72255, 72243, 72215, 72214, 72230, 72229, 72220, 72219, 72242, 72204,
72203, 72207, 72216, 72211, 72221, 72238, 72239, 72240, 72228, 72227,
72213, 72212, 72218, 72217, 72225, 72224, 72209, 72208, 72206, 72205,
72223, 72222, 72231, 72232, 72233, 72241, 72210, 72236, 72226, 72235,
72237, 72234, 72192, 72259, 72258, 72260, 72257, 72248, 72245, 72246,
72247, 72244, 72249, 72263, 72202, 72199, 72200, 72198, 72197, 72195,
72194, 72201, 72196, 72193, 129427, 65279, 8204, 8203, 8205, 11234,
129296, 118593, 118584, 118585, 118591, 118580, 118589, 118528, 118540,
118531, 118543, 118559, 118529, 118541, 118532, 118544, 118592, 118573,
118569, 118568, 118581, 118586, 118561, 118582, 118583, 118566, 118538,
118550, 118555, 118556, 118535, 118547, 118537, 118549, 118553, 118558,
118534, 118546, 118572, 118562, 118571, 118554, 118533, 118545, 118587,
118588, 118530, 118542, 118552, 118563, 118539, 118551, 118557, 118536,
118548, 118579, 118570, 118560, 118567, 118565, 118564, 118590, 118576,
118577, 118578, 118619, 118639, 118637, 118645, 118721, 118611, 118635,
118659, 118626, 118623, 118625, 118624, 118622, 118638, 118612, 118660,
118608, 118609, 118657, 118719, 118695, 118699, 118698, 118697, 118696,
118722, 118720, 118703, 118708, 118707, 118706, 118705, 118704, 118610,
118620, 118723, 118616, 118617, 118640, 118672, 118636, 118658, 118652,
118651, 118649, 118650, 118648, 118646, 118647, 118644, 118643, 118641,
118642, 118653, 118656, 118654, 118655, 118662, 118670, 118664, 118666,
118669, 118663, 118665, 118671, 118667, 118668, 118673, 118614, 118615,
118618, 118685, 118687, 118684, 118683, 118686, 118681, 118680, 118709,
118713, 118711, 118716, 118717, 118714, 118715, 118712, 118718, 118710,
118676, 118679, 118690, 118688, 118693, 118694, 118691, 118692, 118689,
118675, 118677, 118678, 118674, 118701, 118702, 118700, 118682, 118632,
118631, 118634, 118633, 118628, 118627, 118630, 118629, 118613, 118621,
118661, 118596, 118597, 118594, 118595, 118598, 129503, 983264, 983222,
983221, 983223,
};
#define DAWG_CODEPOINT_TO_POS_SHIFT 8
#define DAWG_CODEPOINT_TO_POS_NOTFOUND 41412
static const unsigned char dawg_codepoint_to_pos_index1[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 53, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 54, 55, 56, 57, 58,
59, 60, 61, 62, 63, 64, 65, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 66, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 67, 68, 69, 70, 71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
107, 108, 109, 110, 111, 52, 52, 52, 52, 52, 52, 52, 52, 52, 112, 113,
114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, 135, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
136, 52, 52, 52, 52, 52, 52, 137, 138, 139, 140, 52, 141, 142, 143, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 144, 145, 146, 147, 148, 149, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 150, 151, 152, 153, 52, 52, 52, 52,
52, 52, 52, 52, 52, 154, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
167, 168, 169, 52, 52, 52, 52, 170, 171, 172, 173, 52, 174, 175, 176,
177, 178, 179, 52, 52, 180, 181, 182, 52, 183, 184, 185, 186, 187, 188,
189, 190, 191, 192, 193, 194, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 195, 196, 197, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 198, 199, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 200, 201, 202, 203, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52,
};
static const unsigned short dawg_codepoint_to_pos_index2[] = {
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 34311, 17490, 31931, 29628, 11221, 31502, 371, 1054, 24321,
32155, 2570, 31753, 8585, 20621, 17673, 34150, 11004, 10989, 11001,
10998, 10983, 10980, 10995, 10992, 11007, 10986, 8161, 32765, 24564,
16926, 18304, 31929, 8584, 22906, 22952, 22962, 22978, 22995, 23040,
23044, 23061, 23075, 23104, 23109, 23121, 23141, 23150, 23166, 23216,
23225, 23228, 23249, 23273, 23302, 23341, 23352, 23361, 23364, 23378,
24283, 32056, 32169, 6924, 25337, 18275, 23470, 23520, 23540, 23563,
23599, 23658, 23666, 23684, 23703, 23740, 23746, 23760, 23799, 23812,
23836, 23893, 23905, 23911, 23949, 23991, 24064, 24112, 24126, 24135,
24143, 24159, 24224, 39287, 32118, 37693, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29622,
20975, 6233, 31795, 10083, 39859, 5039, 32747, 10971, 8779, 17569, 24331,
29602, 34101, 31979, 27023, 10686, 31765, 34937, 34936, 4, 27754, 31650,
27760, 6229, 34940, 25990, 32216, 39421, 39419, 39427, 20978, 22935,
22936, 22924, 22938, 22917, 22919, 22940, 22963, 23026, 23027, 22998,
23013, 23091, 23092, 23081, 23079, 23037, 23164, 23205, 23206, 23173,
23191, 23180, 28467, 23189, 23333, 23334, 23303, 23306, 23373, 23294,
23981, 23501, 23502, 23490, 23504, 23481, 23483, 23507, 23541, 23632,
23633, 23602, 23617, 23721, 23722, 23704, 23706, 23657, 23831, 23875,
23876, 23837, 23861, 23844, 11132, 23859, 24099, 24102, 24067, 24070,
24154, 24013, 24145, 22922, 23488, 22907, 23471, 22932, 23498, 22967,
23546, 22965, 23543, 22971, 23551, 22966, 23545, 22985, 23571, 22982,
23565, 23016, 23621, 23029, 23635, 23008, 23612, 23023, 23629, 23007,
23611, 23046, 23668, 23049, 23671, 23053, 23676, 23045, 23667, 23064,
23687, 23071, 23696, 23085, 23718, 23083, 23713, 23094, 23724, 23088,
23715, 23078, 23587, 23390, 24179, 23105, 23741, 23110, 23747, 23759,
23135, 23777, 23131, 23764, 23133, 23767, 23128, 23774, 23130, 23785,
23159, 23824, 23151, 23813, 23153, 23817, 23832, 23039, 23640, 23169,
23854, 23208, 23878, 23186, 23850, 23391, 24182, 23237, 23928, 23229,
23912, 23230, 23914, 23255, 23950, 23254, 23956, 23252, 23954, 23250,
23952, 23274, 23992, 23277, 23996, 23284, 24008, 23330, 24096, 23322,
24086, 23336, 24104, 23337, 24095, 23313, 24077, 23327, 24091, 23353,
24127, 23365, 24144, 23366, 23381, 24160, 23384, 24166, 23380, 24163,
23791, 23529, 22958, 22953, 23521, 23297, 24016, 23211, 22969, 23549,
22944, 22990, 22986, 23566, 24021, 23246, 23272, 23210, 23041, 23661,
23052, 23059, 23702, 23102, 23095, 23120, 23758, 23763, 23787, 23291,
23157, 23818, 23172, 23198, 23868, 23213, 23890, 23222, 23901, 23467,
23299, 24018, 23038, 23408, 24004, 23283, 24005, 23282, 23315, 24079,
23340, 23345, 23370, 24149, 23387, 24169, 23031, 23033, 23650, 23655,
23460, 23298, 24017, 23406, 23461, 23462, 23463, 23399, 23410, 22992,
22980, 23593, 23140, 23129, 23798, 23165, 23154, 23835, 22930, 23496,
23082, 23705, 23179, 23843, 23305, 24069, 23310, 24074, 23309, 24073,
23307, 24071, 23308, 24072, 24053, 22918, 23482, 22914, 23478, 22942,
23510, 23054, 23677, 23047, 23669, 23111, 23748, 23187, 23857, 23188,
23858, 23032, 23652, 23743, 22991, 22979, 23592, 23048, 23670, 23073,
23360, 23158, 23823, 22920, 23484, 22941, 23509, 23190, 23860, 22916,
23480, 22937, 23503, 23012, 23616, 23028, 23634, 23076, 23712, 23093,
23723, 23185, 23849, 23207, 23877, 23234, 23918, 23239, 23929, 23312,
24076, 23335, 24103, 23253, 23955, 23276, 23994, 23377, 24158, 23065,
23688, 23155, 23570, 23215, 23892, 23389, 24173, 22913, 23477, 22996,
23600, 23181, 23845, 23194, 23864, 23182, 23846, 23183, 23847, 23374,
24155, 23766, 23816, 23995, 23584, 23597, 23910, 22939, 22972, 23552,
23123, 23278, 23963, 24168, 23055, 23678, 22959, 23339, 23293, 23030,
23637, 23108, 23745, 23266, 23908, 23241, 23932, 23376, 24153, 24045,
23512, 24046, 23528, 23881, 23544, 23567, 23575, 23941, 23972, 23976,
23887, 23936, 23938, 23559, 23585, 23675, 23979, 23437, 23682, 23948,
24022, 23695, 23701, 23725, 23736, 23415, 23772, 23761, 23780, 23788,
24048, 24049, 23807, 23820, 23829, 23448, 23532, 23422, 23558, 23904,
24033, 24036, 24039, 23923, 23925, 23919, 23939, 23424, 23416, 23969,
23643, 23586, 23989, 23647, 24040, 24007, 24065, 24106, 24119, 24042,
24057, 24050, 23455, 24172, 24162, 23649, 23651, 23464, 23407, 23404,
23457, 23402, 23435, 23557, 23438, 23444, 23742, 24055, 23417, 23907,
23465, 23409, 23594, 23580, 23595, 24060, 24009, 24059, 23664, 23795,
23796, 23401, 23403, 24023, 24024, 28085, 28086, 28094, 28116, 28143,
28146, 28041, 28163, 28165, 28014, 27957, 28171, 27867, 28022, 28024,
28000, 27973, 28020, 28002, 28026, 28173, 27959, 27949, 6162, 28177,
28003, 27866, 27972, 27998, 27989, 27995, 27994, 28170, 27980, 27901,
27900, 28172, 27958, 28013, 28011, 5032, 11327, 32348, 30158, 34059,
11386, 28027, 27950, 28084, 28096, 28123, 28164, 28120, 27964, 27979,
28007, 27992, 27969, 28179, 28178, 28176, 28174, 27956, 27985, 27997,
27987, 27990, 27991, 28010, 28009, 28008, 27993, 28019, 27869, 27970,
27870, 27971, 28029, 28012, 27986, 8379, 8168, 8252, 8554, 8489, 8512,
8178, 8278, 8274, 8393, 8538, 8288, 8184, 8570, 8310, 8311, 8186, 8396,
8562, 8189, 8520, 8190, 8380, 8169, 8473, 8533, 8463, 8395, 8470, 8563,
8314, 8517, 8500, 8516, 8521, 8281, 8275, 8537, 8191, 8254, 8510, 8569,
8181, 8400, 8185, 8253, 8180, 8397, 8558, 8494, 8488, 8312, 8557, 8542,
8486, 8541, 8485, 8528, 8398, 8546, 8551, 8582, 8571, 8298, 8381, 8170,
8390, 8389, 8392, 8391, 8182, 8324, 8309, 8462, 8503, 8394, 8177, 8475,
8565, 8385, 8524, 8471, 8326, 8581, 8464, 8525, 8523, 8529, 8280, 8174,
8304, 8540, 8290, 8289, 8295, 8296, 8305, 8291, 8302, 8413, 8421, 8426,
8434, 8437, 8419, 8451, 8453, 8455, 8440, 8443, 8458, 8459, 18489, 18753,
18384, 18620, 18571, 18567, 18478, 18735, 41412, 41412, 18810, 18760,
18761, 18759, 18815, 18492, 41412, 41412, 41412, 41412, 18775, 18505,
18382, 18358, 18415, 18405, 18429, 41412, 18461, 41412, 18476, 18451,
18667, 18361, 18488, 18486, 18484, 18406, 18490, 18385, 18482, 18416,
18485, 18491, 18493, 18494, 18495, 18452, 18481, 18462, 41412, 18464,
18483, 18467, 18479, 18487, 18480, 18431, 18421, 18472, 18617, 18632,
18657, 18676, 18687, 18592, 18752, 18750, 18622, 18623, 18754, 18633,
18747, 18658, 18698, 18755, 18756, 18757, 18758, 18725, 18738, 18739,
18749, 18745, 18748, 18678, 18736, 18751, 18737, 18700, 18663, 18683,
18734, 18696, 18724, 18500, 18812, 18771, 18779, 18777, 18778, 18587,
18588, 18552, 18563, 18619, 18562, 18744, 18565, 18621, 18564, 18699,
18561, 18742, 8660, 8754, 8638, 8732, 8634, 8728, 8632, 8726, 8630, 8724,
8659, 8753, 8629, 8723, 18551, 18590, 18568, 18566, 18501, 18569, 18591,
18466, 18746, 18496, 18465, 18743, 18589, 18498, 18499, 18497, 10350,
10352, 10299, 10338, 10274, 10303, 10290, 10409, 10422, 10245, 10248,
10262, 10377, 10347, 10390, 10307, 10275, 10291, 10423, 10332, 10311,
10349, 10416, 10412, 10345, 10388, 10362, 10313, 10329, 10318, 10381,
10249, 10324, 10327, 10259, 10269, 10331, 10339, 10265, 10292, 10395,
10393, 10343, 10406, 10398, 10312, 10411, 10403, 10434, 10450, 10624,
10491, 10470, 10508, 10617, 10613, 10504, 10566, 10521, 10472, 10488,
10477, 10547, 10552, 10483, 10486, 10584, 10595, 10490, 10498, 10590,
10451, 10573, 10571, 10502, 10607, 10576, 10471, 10612, 10604, 10509,
10511, 10458, 10497, 10600, 10462, 10449, 10610, 10623, 10540, 10546,
10587, 10536, 10506, 10568, 10466, 10382, 10548, 10405, 10606, 10358,
10517, 10244, 10538, 10354, 10513, 10287, 10446, 10355, 10514, 10378,
10537, 10252, 10556, 10421, 10622, 10360, 10519, 10361, 10520, 10273,
10599, 10253, 10561, 10383, 10549, 10385, 10551, 10375, 10534, 10655,
8245, 8239, 8242, 8240, 8241, 8195, 8248, 10389, 10567, 10402, 10580,
10325, 10484, 10334, 10493, 10336, 10495, 10333, 10492, 10418, 10619,
10414, 10615, 10363, 10522, 10365, 10524, 10366, 10525, 10285, 10444,
10320, 10479, 10428, 10628, 10250, 10553, 10281, 10440, 10328, 10487,
10261, 10586, 10400, 10578, 10401, 10579, 10340, 10499, 10427, 10627,
10294, 10453, 10295, 10454, 10391, 10569, 10278, 10437, 10279, 10438,
10431, 10419, 10620, 10364, 10523, 10316, 10475, 10323, 10482, 10322,
10481, 10376, 10535, 10330, 10489, 10555, 10277, 10436, 10276, 10435,
10426, 10626, 10351, 10510, 10386, 10564, 10387, 10565, 10417, 10618,
10413, 10614, 10280, 10439, 10348, 10507, 10346, 10505, 10384, 10550,
10283, 10442, 10284, 10443, 10326, 10485, 10272, 10598, 10271, 10597,
10270, 10596, 10293, 10452, 10335, 10494, 10407, 10608, 10337, 10496,
10341, 10500, 10342, 10501, 10369, 10528, 10368, 10527, 10374, 10533,
10367, 10526, 10370, 10529, 10371, 10530, 10372, 10531, 10373, 10532,
10257, 10560, 10317, 10476, 10246, 10541, 10258, 10563, 10404, 10605,
10425, 10625, 10424, 10603, 10282, 10441, 10314, 10473, 10319, 10478,
10251, 10554, 10392, 10570, 10321, 10480, 10305, 10464, 10309, 10468,
10315, 10474, 41412, 2488, 2495, 2479, 2501, 2475, 2499, 2476, 2477,
2466, 2498, 2494, 2491, 2493, 2471, 2483, 2500, 2481, 2478, 2469, 2496,
2467, 2497, 2486, 2490, 2470, 2485, 2480, 2474, 2487, 2489, 2465, 2473,
2472, 2468, 2484, 2482, 2502, 2492, 41412, 41412, 2552, 2464, 2505, 2504,
2503, 2556, 2463, 2525, 2528, 2538, 2516, 2544, 2512, 2542, 2513, 2514,
2527, 2541, 2537, 2534, 2536, 2508, 2520, 2543, 2518, 2515, 2506, 2539,
2531, 2540, 2523, 2530, 2507, 2522, 2517, 2511, 2524, 2529, 2526, 2510,
2509, 2533, 2521, 2519, 2545, 2535, 2546, 2532, 2555, 2553, 41412, 41412,
32203, 24344, 2554, 41412, 19963, 19966, 19967, 19974, 19975, 19971,
19978, 19976, 19961, 19973, 19970, 19954, 19955, 19956, 19964, 19969,
19962, 19951, 19959, 19960, 19957, 19958, 19953, 19965, 19968, 19972,
19979, 19980, 19952, 19977, 20058, 20073, 20062, 20060, 20061, 20063,
20075, 20071, 20066, 20067, 20064, 20065, 20069, 20059, 20077, 20083,
20070, 20080, 20072, 20074, 20081, 20057, 20056, 20082, 20068, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 19981, 19988, 20031,
20029, 20006, 20037, 20011, 20008, 20023, 20048, 19997, 19991, 20033,
20003, 20035, 20002, 20009, 20013, 19987, 19999, 19994, 20001, 20027,
20004, 20021, 20015, 20025, 41412, 41412, 41412, 41412, 20084, 20052,
20055, 20053, 20079, 20078, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 2306, 2340, 1099, 2341, 2342, 2305,
2451, 2452, 2317, 2449, 2450, 2644, 1067, 1080, 2312, 2346, 2339, 2345,
2337, 2338, 2347, 2365, 2353, 2382, 2349, 2401, 2400, 2333, 1387, 1089,
2439, 2447, 1342, 1294, 1157, 1147, 1577, 1150, 1593, 1129, 1171, 1519,
1518, 1541, 1320, 1279, 1361, 1196, 1536, 1440, 1620, 1474, 1487, 1466,
1212, 1496, 1615, 1119, 1266, 1348, 1345, 1241, 1240, 1239, 2427, 1246,
1431, 1331, 1366, 1379, 1403, 1296, 1572, 1165, 1584, 1097, 1078, 1109,
1091, 1074, 1105, 2334, 2404, 2159, 1104, 1103, 2403, 2323, 2160, 2448,
2443, 2442, 2444, 2318, 1092, 2446, 2459, 2461, 2458, 2457, 2454, 2453,
2456, 2455, 2462, 2460, 2310, 1085, 2441, 1100, 1224, 1226, 1493, 1162,
1154, 1153, 1316, 1317, 1319, 1558, 1318, 1546, 1552, 1191, 1527, 1526,
1419, 1531, 1186, 1289, 1287, 1398, 1227, 1286, 1506, 1513, 1221, 1206,
1203, 1204, 1209, 1218, 1232, 1199, 1205, 1457, 1443, 1454, 1451, 1444,
1452, 1447, 1328, 1450, 1475, 1478, 1479, 1469, 1468, 1500, 1122, 1225,
1249, 1247, 1565, 1251, 1426, 1434, 1435, 1343, 1495, 1337, 1336, 1388,
1334, 1257, 1260, 1389, 1259, 1273, 1258, 1370, 1368, 1372, 1371, 1414,
1404, 1460, 1412, 1409, 1307, 1508, 1304, 1297, 1298, 1522, 1581, 1355,
1612, 1557, 1609, 1358, 1580, 1564, 1235, 1603, 1598, 1574, 1624, 1602,
1585, 1588, 1101, 1170, 2356, 2355, 2358, 2357, 2384, 2364, 2362, 1090,
2426, 2381, 2380, 2350, 2359, 2399, 2360, 2402, 2387, 2376, 2378, 2314,
1088, 1087, 2322, 2398, 1198, 1448, 17510, 17512, 17509, 17508, 17505,
17504, 17507, 17506, 17513, 17511, 1488, 1213, 1268, 2344, 2343, 1303,
35067, 35141, 35138, 35139, 35135, 35076, 35063, 35064, 35140, 35137,
35062, 35072, 35071, 35070, 41412, 35060, 35108, 35104, 35118, 35114,
35115, 35078, 35077, 35079, 35121, 35119, 35080, 35111, 35112, 35116,
35117, 35109, 35081, 35093, 35120, 35100, 35107, 35122, 35094, 35098,
35106, 35110, 35099, 35105, 35113, 35095, 35097, 35096, 35127, 35126,
35125, 35130, 35129, 35128, 35132, 35131, 35066, 35065, 35075, 35074,
35073, 35069, 35068, 35133, 35147, 35148, 35134, 35145, 35144, 35143,
35142, 35124, 35123, 35146, 35061, 41412, 41412, 35101, 35102, 35103,
1177, 1180, 1175, 1176, 1178, 1179, 1173, 1288, 1285, 1202, 1197, 1445,
1481, 1124, 1120, 1123, 1252, 1250, 1350, 1346, 1344, 1382, 1381, 1410,
1407, 1408, 1373, 1446, 1449, 1480, 1284, 1282, 1477, 1441, 1283, 1156,
1155, 1238, 1237, 1236, 1576, 1575, 1587, 1586, 1280, 1482, 1476, 1333,
37261, 37274, 37270, 37287, 37286, 37265, 37262, 37250, 37281, 37266,
37255, 37254, 37277, 37264, 37257, 37258, 37275, 37253, 37283, 37276,
37288, 37269, 37268, 37267, 37279, 37260, 37263, 37278, 37284, 37273,
37272, 37252, 37280, 37285, 37251, 37259, 37256, 37282, 37246, 37245,
37292, 37248, 37293, 37291, 37247, 37249, 37290, 37289, 37294, 37271,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 29486, 29488, 29485, 29484, 29481, 29480,
29483, 29482, 29489, 29487, 29521, 29508, 29522, 29507, 29523, 29505,
29504, 29492, 29497, 29510, 29516, 29518, 29496, 29506, 29491, 29503,
29502, 29517, 29509, 29511, 29513, 29514, 29499, 29515, 29500, 29498,
29512, 29519, 29520, 29501, 29494, 29493, 29495, 29474, 29475, 29476,
29472, 29469, 29470, 29471, 29473, 29468, 29525, 29524, 29527, 29526,
29477, 29528, 29490, 41412, 41412, 29478, 29479, 29529, 32575, 32562,
32576, 32564, 32567, 32563, 32578, 32566, 32573, 32582, 32568, 32569,
32579, 32581, 32570, 32565, 32583, 32574, 32580, 32577, 32571, 32572,
32585, 32586, 32589, 32584, 32590, 32587, 32609, 32619, 32614, 32608,
32618, 32613, 32607, 32617, 32591, 32615, 32611, 32621, 32592, 32610,
32620, 32612, 32616, 32588, 41412, 41412, 32599, 32593, 32595, 32598,
32596, 32600, 32622, 32605, 32603, 32606, 32602, 32604, 32597, 32601,
32594, 41412, 25779, 25766, 25768, 25767, 25769, 25778, 25776, 25781,
25761, 25759, 25758, 25770, 25771, 25772, 25762, 25780, 25773, 25764,
25774, 25775, 25763, 25760, 25777, 25782, 25765, 25757, 25783, 25784,
41412, 41412, 25785, 41412, 35086, 35091, 35087, 35089, 35085, 35084,
35088, 35092, 35083, 35082, 35090, 41412, 41412, 41412, 41412, 41412,
1143, 1133, 1144, 1160, 1142, 1130, 1139, 1136, 1140, 1138, 1161, 1135,
1146, 1132, 1134, 1145, 1131, 1137, 1141, 2428, 2429, 2431, 1539, 1064,
2316, 1411, 1281, 1501, 1499, 1347, 2445, 1413, 2313, 2315, 41412, 41412,
41412, 41412, 41412, 2311, 2366, 2392, 2391, 2394, 2158, 2408, 1084,
1102, 1174, 1181, 1321, 1498, 1248, 1432, 1367, 1380, 1599, 1601, 1453,
1573, 1465, 1378, 1200, 1467, 1261, 1494, 1623, 1121, 1335, 1433, 1172,
1420, 1524, 1442, 1600, 1117, 1115, 1118, 1421, 1525, 1547, 1507, 1349,
1267, 1116, 1323, 1322, 1369, 1278, 2348, 2351, 2377, 2372, 2383, 1113,
1112, 2407, 1114, 1111, 2397, 2367, 2363, 2386, 2385, 2379, 2390, 2368,
2370, 2369, 2371, 2374, 2373, 2352, 2361, 1086, 2440, 1070, 1068, 1072,
1071, 1069, 1073, 2434, 2436, 2438, 2433, 2435, 2437, 2309, 2308, 2307,
2375, 1094, 1093, 1106, 1630, 2319, 1629, 2321, 1081, 1082, 2320, 1077,
2161, 10905, 10895, 10909, 10914, 10830, 10804, 10805, 10874, 10875,
10850, 10851, 10869, 10871, 10812, 10831, 10882, 10806, 10813, 10832,
10845, 10807, 10841, 10840, 10825, 10823, 10856, 10810, 10814, 10861,
10859, 10857, 10866, 10865, 10818, 10817, 10855, 10868, 10867, 10820,
10819, 10858, 10854, 10877, 10876, 10838, 10837, 10828, 10849, 10844,
10843, 10864, 10863, 10862, 10873, 10833, 10834, 10835, 10827, 10927,
10926, 10907, 10908, 10917, 10939, 10940, 10929, 10930, 10935, 10936,
10923, 10933, 10941, 10918, 10924, 10934, 10925, 10919, 10913, 10928,
10920, 10955, 10916, 10915, 10799, 10796, 10922, 10932, 10931, 10881,
10839, 10822, 10879, 10815, 10842, 10880, 10848, 10870, 10872, 10937,
10938, 10943, 10942, 10950, 10952, 10949, 10948, 10945, 10944, 10947,
10946, 10953, 10951, 10797, 10912, 10811, 10847, 10846, 10808, 10853,
10852, 10829, 10878, 10826, 10824, 10860, 10821, 10816, 10836, 3599,
3667, 3670, 3672, 41412, 3623, 3624, 3637, 3638, 3635, 3636, 3617, 3619,
41412, 41412, 3659, 3625, 41412, 41412, 3660, 3626, 3610, 3607, 3651,
3650, 3639, 3649, 3648, 3653, 3652, 3641, 3632, 3631, 3628, 3627, 3640,
3634, 3633, 3630, 3629, 3642, 41412, 3655, 3654, 3647, 3646, 3658, 3622,
3611, 41412, 3657, 41412, 41412, 41412, 3643, 3644, 3645, 3656, 41412,
41412, 3668, 3669, 3674, 3683, 3684, 3677, 3678, 3679, 3680, 41412,
41412, 3685, 3675, 41412, 41412, 3686, 3676, 3671, 3608, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 3600, 41412, 41412, 41412,
41412, 3615, 3614, 41412, 3621, 3618, 3620, 3681, 3682, 41412, 41412,
3693, 3695, 3692, 3691, 3688, 3687, 3690, 3689, 3696, 3694, 3613, 3612,
3662, 3661, 3601, 3605, 3604, 3603, 3602, 3606, 3673, 3697, 3616, 3598,
3666, 41412, 41412, 19044, 19045, 19050, 41412, 18996, 18997, 19012,
19013, 19010, 19011, 41412, 41412, 41412, 41412, 19031, 18998, 41412,
41412, 19030, 18999, 18995, 18994, 18992, 18991, 19016, 19023, 19022,
19025, 19024, 19018, 19007, 19006, 19001, 19000, 19017, 19009, 19008,
19003, 19002, 19019, 41412, 19027, 19026, 19021, 19020, 19034, 19036,
19005, 41412, 19015, 19014, 41412, 19035, 19028, 41412, 19029, 19033,
41412, 41412, 19047, 41412, 19051, 19056, 19057, 19054, 19055, 41412,
41412, 41412, 41412, 19059, 19052, 41412, 41412, 19058, 19053, 19049,
41412, 41412, 41412, 19046, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 18993, 18990, 19037, 19004, 41412, 19032, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 19069, 19071, 19068, 19067, 19064, 19063,
19066, 19065, 19072, 19070, 19060, 18989, 19061, 19073, 19062, 19048,
18988, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 18884, 18892, 18894, 41412, 18834, 18835, 18853, 18854, 18851,
18852, 18846, 18848, 18910, 41412, 18881, 18836, 18911, 41412, 18882,
18837, 18874, 18873, 18870, 18869, 18858, 18868, 18867, 18872, 18871,
18860, 18843, 18842, 18839, 18838, 18859, 18845, 18844, 18841, 18840,
18861, 41412, 18876, 18875, 18866, 18865, 18878, 18880, 18879, 41412,
18856, 18855, 41412, 18850, 18862, 18863, 18864, 18877, 41412, 41412,
18890, 18891, 18897, 18906, 18907, 18900, 18901, 18902, 18903, 18895,
41412, 18908, 18898, 18896, 41412, 18909, 18899, 18893, 41412, 41412,
18924, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 18847, 18849, 18904, 18905,
41412, 41412, 18920, 18922, 18919, 18918, 18915, 18914, 18917, 18916,
18923, 18921, 18912, 18913, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 18857, 18889, 18888, 18885, 18887, 18883, 18886, 41412, 30802,
30805, 30808, 41412, 30753, 30754, 30772, 30773, 30770, 30771, 30765,
30767, 41412, 41412, 30798, 30755, 41412, 41412, 30799, 30756, 30792,
30791, 30788, 30787, 30776, 30786, 30785, 30790, 30789, 30778, 30762,
30761, 30758, 30757, 30777, 30764, 30763, 30760, 30759, 30779, 41412,
30794, 30793, 30784, 30783, 30796, 30752, 30750, 41412, 30775, 30774,
41412, 30769, 30780, 30781, 30782, 30795, 41412, 41412, 30803, 30804,
30809, 30818, 30819, 30812, 30813, 30814, 30815, 41412, 41412, 30820,
30810, 41412, 41412, 30821, 30811, 30807, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 30806, 30739, 30740, 41412, 41412, 41412, 41412,
30749, 30748, 41412, 30751, 30766, 30768, 30816, 30817, 41412, 41412,
30828, 30830, 30827, 30826, 30823, 30822, 30825, 30824, 30831, 30829,
30747, 30797, 30744, 30743, 30746, 30741, 30742, 30745, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35760, 35777,
41412, 35723, 35724, 35736, 35737, 35732, 35733, 41412, 41412, 41412,
35741, 35742, 35725, 41412, 35734, 35735, 35726, 35746, 41412, 41412,
41412, 35718, 35743, 41412, 35745, 41412, 35719, 35721, 41412, 41412,
41412, 35717, 35722, 41412, 41412, 41412, 35720, 35716, 35748, 41412,
41412, 41412, 35747, 35750, 35731, 35730, 35729, 35728, 35727, 35749,
35738, 35739, 35740, 35744, 41412, 41412, 41412, 41412, 36050, 36057,
36058, 36053, 36054, 41412, 41412, 41412, 36059, 36060, 36051, 41412,
36055, 36056, 36052, 35776, 41412, 41412, 36063, 41412, 41412, 41412,
41412, 41412, 41412, 35652, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35689, 35691,
35688, 35687, 35684, 35683, 35686, 35685, 35692, 35690, 35754, 35752,
35753, 35682, 36062, 36061, 35681, 35679, 35651, 35757, 35755, 41412,
41412, 41412, 41412, 41412, 37126, 37127, 37132, 37134, 37125, 37086,
37087, 37102, 37103, 37098, 37099, 37093, 37095, 41412, 37119, 37120,
37088, 41412, 37100, 37101, 37089, 37116, 37115, 37112, 37111, 37075,
37110, 37109, 37114, 37113, 37077, 37082, 37081, 37069, 37068, 37076,
37085, 37083, 37072, 37070, 37073, 41412, 37118, 37117, 37108, 37107,
37122, 37123, 37080, 37079, 37092, 37091, 37090, 37097, 37104, 37105,
37106, 37121, 41412, 41412, 37130, 37131, 37135, 37146, 37147, 37138,
37139, 37140, 37141, 41412, 37148, 37149, 37136, 41412, 37144, 37145,
37137, 37133, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 37124,
37060, 41412, 37084, 37071, 37078, 41412, 37059, 37074, 41412, 41412,
37094, 37096, 37142, 37143, 41412, 41412, 37156, 37158, 37155, 37154,
37151, 37150, 37153, 37152, 37159, 37157, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 37128, 37067, 37065, 37063, 37061, 37066, 37064,
37062, 37129, 21436, 21435, 21440, 21444, 21437, 21384, 21385, 21410,
21411, 21406, 21407, 21401, 21403, 41412, 21427, 21428, 21386, 41412,
21408, 21409, 21387, 21424, 21423, 21420, 21419, 21381, 21418, 21417,
21422, 21421, 21383, 21398, 21397, 21389, 21388, 21382, 21400, 21399,
21391, 21390, 21379, 41412, 21426, 21425, 21416, 21415, 21431, 21432,
21396, 21395, 21394, 21393, 41412, 21405, 21412, 21413, 21414, 21430,
41412, 41412, 21438, 21439, 21447, 21458, 21459, 21450, 21451, 21452,
21453, 41412, 21460, 21461, 21448, 41412, 21456, 21457, 21449, 21443,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 21433, 21446, 41412,
41412, 41412, 41412, 41412, 21445, 21380, 21429, 41412, 21402, 21404,
21454, 21455, 41412, 41412, 21468, 21470, 21467, 21466, 21463, 21462,
21465, 21464, 21471, 21469, 41412, 21441, 21442, 21434, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
25719, 25721, 25726, 25724, 25676, 25650, 25652, 25696, 25697, 25692,
25693, 25677, 25679, 41412, 25711, 25712, 25653, 41412, 25694, 25695,
25654, 25708, 25707, 25704, 25703, 25684, 25665, 25664, 25706, 25705,
25685, 25673, 25671, 25668, 25667, 25683, 25675, 25674, 25670, 25669,
25686, 25682, 25710, 25709, 25702, 25701, 25714, 25715, 25691, 25690,
25689, 25688, 25687, 25681, 25698, 25699, 25700, 25713, 25672, 25722,
25720, 25725, 25728, 25739, 25740, 25731, 25732, 25733, 25734, 41412,
25741, 25742, 25729, 41412, 25737, 25738, 25730, 25723, 25666, 25727,
41412, 41412, 41412, 41412, 25662, 25663, 25657, 25743, 25642, 25640,
25647, 25637, 25638, 25648, 25641, 25651, 25678, 25680, 25735, 25736,
41412, 41412, 25633, 25635, 25632, 25631, 25628, 25627, 25630, 25629,
25636, 25634, 25718, 25716, 25717, 25645, 25644, 25649, 25639, 25643,
25646, 25626, 25659, 25658, 25660, 25655, 25656, 25661, 41412, 33959,
33958, 33960, 41412, 33904, 33901, 33889, 33888, 33912, 33911, 33914,
33913, 33910, 33909, 33908, 33907, 33906, 33905, 33902, 33933, 33932,
33903, 41412, 41412, 41412, 33898, 33923, 33896, 33921, 33946, 33936,
33895, 33920, 33897, 33922, 33943, 33944, 33937, 33890, 33915, 33892,
33917, 33927, 33934, 33891, 33916, 33893, 33918, 33930, 41412, 33935,
33899, 33924, 33894, 33919, 33925, 33900, 33942, 33940, 41412, 33929,
41412, 41412, 33941, 33945, 33928, 33931, 33939, 33926, 33938, 41412,
41412, 41412, 33957, 41412, 41412, 41412, 41412, 33977, 33969, 33964,
33970, 33965, 33971, 41412, 33966, 41412, 33967, 33972, 33963, 33976,
33973, 33974, 33975, 33968, 41412, 41412, 41412, 41412, 41412, 41412,
33953, 33955, 33952, 33951, 33948, 33947, 33950, 33949, 33956, 33954,
41412, 41412, 33961, 33962, 33978, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 37313, 37310, 37308,
37307, 37309, 37311, 37327, 37296, 37298, 37297, 37356, 37299, 37368,
37300, 37365, 37361, 37358, 37359, 37329, 37301, 37364, 37363, 37360,
37362, 37330, 37295, 37336, 37333, 37302, 37334, 37303, 37335, 37325,
37369, 37337, 37338, 37315, 37317, 37366, 37354, 37353, 37355, 37306,
37314, 37370, 37305, 37331, 37339, 37319, 37342, 37344, 37349, 37350,
37346, 37347, 37345, 37348, 37332, 41412, 41412, 41412, 41412, 37371,
37351, 37343, 37352, 37341, 37340, 37316, 37324, 37323, 37322, 37320,
37321, 37318, 37357, 37328, 37367, 37304, 37378, 37380, 37377, 37376,
37373, 37372, 37375, 37374, 37381, 37379, 37326, 37312, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 22743, 22741, 41412, 22742, 41412,
22756, 22771, 22775, 22755, 22765, 41412, 22757, 22772, 22753, 22751,
22750, 22748, 22747, 22752, 22776, 22768, 22766, 22767, 22749, 22773,
22774, 22761, 22759, 22738, 22760, 22737, 22754, 22777, 22780, 22745,
41412, 22746, 41412, 22779, 22762, 22763, 22764, 22769, 22758, 22781,
22770, 22807, 22789, 22794, 22790, 22792, 22802, 22803, 22796, 22797,
22798, 22799, 22784, 22795, 22783, 22782, 41412, 41412, 22800, 22801,
22804, 22793, 22791, 41412, 22805, 41412, 22788, 22785, 22786, 22787,
22818, 22819, 22806, 41412, 22814, 22816, 22813, 22812, 22809, 22808,
22811, 22810, 22817, 22815, 41412, 41412, 22734, 22733, 22740, 22739,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 37605, 37512, 37510, 37511, 37520, 37508, 37505, 37509,
37529, 37500, 37498, 37521, 37536, 37530, 37526, 37533, 37525, 37528,
37527, 37504, 37513, 37496, 37495, 37423, 37424, 37422, 37544, 37545,
37546, 37548, 37549, 37547, 37445, 37447, 37444, 37443, 37440, 37439,
37442, 37441, 37448, 37446, 37437, 37434, 37433, 37430, 37429, 37432,
37431, 37438, 37436, 37435, 37501, 37523, 37503, 37522, 37506, 37532,
37514, 37515, 37516, 37517, 37555, 37541, 37454, 37452, 37482, 37481,
37464, 37480, 37479, 37489, 41412, 37466, 37474, 37473, 37459, 37458,
37465, 37476, 37475, 37463, 37462, 37467, 37484, 37483, 37478, 37477,
37491, 37472, 37471, 37461, 37460, 37492, 37485, 37486, 37487, 37493,
37456, 37490, 37468, 37469, 37470, 37488, 37494, 37451, 37457, 37453,
37455, 41412, 41412, 41412, 41412, 37629, 37625, 37626, 37617, 37618,
37619, 37620, 37621, 37622, 37627, 37628, 37623, 37624, 37552, 37553,
37615, 37616, 37543, 37557, 37518, 37535, 37539, 37554, 37540, 37542,
37537, 37538, 37556, 37604, 37603, 37602, 37569, 37568, 37588, 37587,
37570, 37586, 37585, 37595, 41412, 37572, 37580, 37579, 37562, 37561,
37571, 37582, 37581, 37566, 37565, 37573, 37590, 37589, 37584, 37583,
37597, 37578, 37577, 37564, 37563, 37599, 37591, 37592, 37593, 37600,
37598, 37596, 37574, 37575, 37576, 37594, 37601, 37567, 37559, 37560,
37558, 41412, 37449, 37450, 37426, 37427, 37428, 37425, 37606, 37613,
37611, 37614, 37612, 37607, 37610, 37609, 37608, 41412, 37551, 37550,
37499, 37502, 37524, 37519, 37507, 32208, 24349, 32209, 24350, 37534,
37531, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28762, 28741,
28740, 28739, 28771, 28839, 28838, 28841, 28840, 28772, 28769, 28817,
28816, 28823, 28822, 28770, 28801, 28818, 28825, 28824, 28773, 28843,
28842, 28837, 28836, 28768, 28845, 28775, 28835, 28821, 28800, 28844,
28834, 28731, 28795, 28832, 28833, 28826, 28827, 28734, 28767, 28846,
28733, 28938, 28922, 28945, 28946, 28939, 28940, 28934, 28919, 28927,
28928, 28935, 28863, 28882, 28887, 28886, 28862, 28726, 28724, 28725,
28723, 28738, 28963, 28965, 28962, 28961, 28958, 28957, 28960, 28959,
28966, 28964, 28885, 28874, 28892, 28896, 28891, 28895, 28776, 28799,
28828, 28829, 28830, 28831, 28941, 28942, 28943, 28944, 28766, 28765,
28763, 28764, 28729, 28728, 28727, 28798, 28933, 28907, 28908, 28820,
28819, 28936, 28937, 28877, 28878, 28879, 28880, 28881, 28737, 28736,
28735, 28923, 28925, 28926, 28924, 28790, 28789, 28788, 28786, 28794,
28778, 28791, 28779, 28781, 28792, 28784, 28782, 28793, 28730, 28932,
28929, 28930, 28931, 28869, 28870, 28871, 28872, 28867, 28868, 28866,
28774, 28883, 28858, 28860, 28857, 28856, 28853, 28852, 28855, 28854,
28861, 28859, 28864, 28865, 28920, 28921, 28894, 28893, 17885, 17911,
17896, 17917, 17918, 17916, 17906, 17907, 17919, 17900, 17909, 17912,
17914, 17920, 17902, 17905, 17910, 17904, 17908, 17921, 17901, 17899,
17895, 17915, 17903, 17891, 17894, 17898, 17893, 17892, 17913, 17897,
17886, 17890, 17888, 17923, 17887, 17889, 41412, 17922, 41412, 41412,
41412, 41412, 41412, 17884, 41412, 41412, 17968, 17999, 17976, 18005,
17974, 18004, 17997, 17994, 18006, 17986, 17988, 18000, 18002, 18007,
17990, 17996, 17998, 17992, 17995, 17965, 17989, 17985, 17975, 18003,
17991, 17969, 17972, 17984, 17971, 17970, 18001, 17983, 17979, 17982,
17980, 18009, 17977, 17981, 18010, 18008, 17973, 17993, 17967, 18057,
27975, 17966, 17978, 17987, 19305, 19379, 19313, 19384, 19377, 19341,
19308, 19323, 19381, 19355, 19373, 19287, 19285, 19371, 19272, 19307,
19391, 19320, 19394, 19315, 19380, 19317, 19316, 19388, 19351, 19375,
19354, 19300, 19310, 19304, 19333, 19338, 19337, 19324, 19328, 19326,
19329, 19330, 19327, 19335, 19334, 19336, 19331, 19302, 19303, 19362,
19368, 19367, 19360, 19365, 19356, 19357, 19359, 19370, 19364, 19363,
19361, 19366, 19358, 19369, 19277, 19276, 19282, 19281, 19340, 19297,
19296, 19294, 19289, 19299, 19290, 19383, 19293, 19292, 19295, 19288,
19392, 19286, 19279, 19275, 19284, 19280, 19273, 19274, 19278, 19283,
19321, 19301, 19382, 19393, 19306, 19319, 19314, 19318, 19385, 19396,
19634, 19540, 19550, 19598, 19602, 19552, 19551, 19604, 19603, 19579,
19631, 19632, 19589, 19610, 19590, 19630, 19629, 19633, 19619, 19556,
19608, 19563, 19548, 19549, 19600, 19599, 19554, 19555, 19553, 19606,
19607, 19587, 19586, 19582, 19580, 19588, 19611, 19612, 19613, 19618,
19617, 19595, 19596, 19594, 19591, 19597, 19624, 19623, 19622, 19621,
19620, 19628, 19626, 19562, 19559, 19609, 19564, 19566, 19573, 19577,
19575, 19565, 19541, 19543, 19546, 19545, 19578, 19547, 19601, 19605,
19584, 19585, 19416, 19517, 19419, 19439, 19442, 19446, 19521, 19467,
19468, 19473, 19477, 19486, 19489, 19482, 19494, 19426, 19456, 19459,
19495, 19512, 19408, 19399, 19402, 19425, 19530, 19452, 19403, 19418,
19420, 19445, 19444, 19448, 19447, 19443, 19528, 19522, 19470, 19493,
19487, 19488, 19507, 19474, 19476, 19481, 19480, 19471, 19485, 19483,
19472, 19490, 19436, 19433, 19427, 19432, 19431, 19429, 19434, 19438,
19415, 19457, 19461, 19466, 19414, 19497, 19505, 19498, 19501, 19449,
19410, 19411, 19520, 19409, 19531, 19535, 19538, 19454, 19413, 19406,
19404, 19405, 19407, 19539, 19422, 19423, 19421, 19417, 19424, 19518,
17155, 17162, 17161, 17156, 17160, 17159, 17157, 17158, 17382, 17390,
17389, 17383, 17387, 17386, 17384, 17388, 17148, 17154, 17152, 17149,
17151, 17150, 17153, 17139, 17199, 17207, 17206, 17200, 17204, 17203,
17201, 17197, 17311, 17318, 17316, 17312, 17314, 17313, 17317, 17315,
17286, 17295, 17294, 17287, 17291, 17290, 17288, 17292, 17326, 17332,
17331, 17327, 17301, 17296, 17328, 17330, 17302, 17310, 17309, 17303,
17307, 17306, 17304, 17308, 17278, 17285, 17284, 17279, 17283, 17282,
17280, 17281, 17266, 41412, 17270, 17267, 17269, 17268, 41412, 41412,
17259, 17265, 17263, 17260, 17262, 17261, 17264, 41412, 17254, 41412,
17258, 17255, 17257, 17256, 41412, 41412, 16989, 16996, 16995, 16990,
16994, 16993, 16991, 16980, 17451, 17458, 17456, 17452, 17454, 17453,
17457, 17455, 17364, 17372, 17371, 17365, 17369, 17368, 17366, 17370,
17027, 17035, 17034, 17028, 17032, 17031, 17029, 17033, 17419, 17426,
17425, 17420, 17424, 17423, 17421, 17422, 17407, 41412, 17411, 17408,
17410, 17409, 41412, 41412, 17217, 17225, 17224, 17218, 17222, 17221,
17219, 17223, 17208, 17216, 17215, 17209, 17213, 17212, 17210, 17214,
17109, 17117, 17116, 17110, 17114, 17113, 17111, 17115, 17187, 17194,
17193, 17188, 17192, 17191, 17189, 17190, 17175, 41412, 17179, 17176,
17178, 17177, 41412, 41412, 17168, 17174, 17172, 17169, 17171, 17170,
17173, 41412, 17163, 41412, 17167, 17164, 17166, 17165, 41412, 41412,
17391, 17398, 17397, 17392, 17396, 17395, 17393, 17394, 17227, 17233,
17231, 17228, 17230, 17229, 17232, 41412, 17442, 17450, 17449, 17443,
17447, 17446, 17444, 17448, 17427, 17434, 17432, 17428, 17430, 17429,
17433, 17431, 17399, 17406, 17405, 17400, 17404, 17403, 17401, 17402,
17057, 17065, 17064, 17058, 17062, 17061, 17059, 17063, 17042, 17050,
17049, 17043, 17047, 17046, 17044, 17048, 17373, 17381, 17380, 17374,
17378, 17377, 17375, 17379, 17130, 17078, 17136, 17131, 17135, 17134,
17132, 17133, 17118, 41412, 17122, 17119, 17121, 17120, 41412, 41412,
17102, 17108, 17106, 17103, 17105, 17104, 17107, 17098, 17333, 17341,
17340, 17334, 17338, 17337, 17335, 17339, 17018, 17026, 17025, 17019,
17023, 17022, 17020, 17024, 17226, 17241, 17240, 17234, 17238, 17237,
17235, 17239, 17356, 17363, 17361, 17357, 17359, 17358, 17362, 17360,
17348, 17355, 17354, 17349, 17353, 17352, 17350, 17351, 17070, 17077,
17075, 17071, 17073, 17072, 17076, 17068, 17246, 17253, 17252, 17247,
17251, 17250, 17248, 17244, 17293, 17205, 17074, 41412, 41412, 16958,
16960, 16959, 16977, 17480, 17478, 16961, 16976, 16962, 16975, 17479,
16974, 17476, 17474, 17473, 17470, 17469, 17472, 17471, 17477, 17475,
16963, 16966, 16965, 16970, 16969, 16973, 16972, 16968, 16971, 16967,
16964, 41412, 41412, 41412, 17299, 17198, 17196, 17195, 17297, 16981,
16979, 16978, 17298, 17069, 17067, 17066, 17300, 17245, 17243, 17242,
17468, 17459, 17465, 17466, 17461, 17463, 17467, 17462, 17460, 17464,
41412, 41412, 41412, 41412, 41412, 41412, 6484, 6485, 6486, 6487, 6488,
6489, 6447, 6483, 6448, 6449, 6450, 6451, 6452, 6412, 6413, 6414, 6415,
6416, 6417, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462,
6463, 6418, 6411, 6419, 6420, 6421, 6422, 6423, 6424, 6465, 6466, 6467,
6468, 6469, 6470, 6426, 6425, 6427, 6428, 6429, 6430, 6431, 6405, 6444,
6406, 6445, 6407, 6446, 6408, 6409, 6410, 6404, 6432, 6433, 6434, 6435,
6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6471, 6472, 6473, 6474,
6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6464, 41412, 41412, 6564,
6565, 6566, 6567, 6568, 6550, 41412, 41412, 5626, 5598, 5371, 5628, 5629,
5778, 5792, 6075, 5582, 5442, 5369, 5370, 5952, 6042, 6062, 6040, 6063,
6041, 6044, 6038, 6045, 6039, 5707, 6059, 6036, 6060, 6037, 5708, 5373,
6076, 6094, 5615, 5614, 5616, 5617, 5609, 5610, 5607, 5606, 5619, 5613,
5618, 5608, 5600, 5630, 5791, 5377, 5812, 5805, 5810, 5811, 5807, 5808,
6066, 5440, 5441, 5803, 5804, 5802, 5981, 5800, 5979, 5801, 5980, 5795,
5977, 5796, 5978, 5798, 5975, 5799, 5976, 6065, 5794, 5974, 5433, 5951,
5934, 5949, 5950, 5947, 5948, 6073, 5404, 5417, 5932, 5933, 5942, 6034,
5940, 6032, 5941, 6033, 5938, 6030, 5939, 6031, 5936, 6028, 5937, 6029,
5713, 5894, 5929, 5930, 5931, 5928, 5649, 5643, 5647, 5648, 5645, 5646,
6068, 5641, 5642, 5640, 6026, 5638, 6024, 5639, 6025, 5636, 6022, 5637,
6023, 5633, 6020, 5634, 6021, 5710, 5631, 5632, 5874, 5875, 5876, 5873,
5597, 5584, 5595, 5596, 5593, 5594, 6067, 5401, 5583, 5591, 6019, 5589,
6017, 5590, 6018, 5587, 6015, 5588, 6016, 5585, 6013, 5586, 6014, 5709,
5400, 5850, 5675, 5683, 5692, 5693, 5678, 5679, 6070, 5681, 5682, 5691,
5973, 5689, 5971, 5690, 5972, 5687, 5969, 5688, 5970, 5685, 5967, 5686,
5968, 5711, 5674, 5966, 5694, 5375, 5851, 5767, 5728, 5765, 5766, 5755,
5756, 6071, 5699, 5727, 5764, 5992, 5758, 5990, 5759, 5991, 5712, 5695,
5473, 5768, 5673, 5660, 5671, 5672, 5669, 5670, 6069, 5658, 5659, 5668,
5960, 5666, 5958, 5667, 5959, 5664, 5956, 5665, 5957, 5662, 5954, 5663,
5955, 5650, 5953, 5676, 5893, 5853, 5891, 5892, 5872, 5877, 6072, 5833,
5852, 5886, 6012, 5884, 6010, 5885, 6011, 5882, 6008, 5883, 6009, 5880,
6006, 5881, 6007, 5705, 5832, 5376, 5879, 5396, 5680, 5703, 5706, 5701,
5702, 5704, 5700, 5871, 5869, 5870, 5863, 5864, 5866, 5867, 5862, 6005,
5860, 6003, 5861, 6004, 5855, 6001, 5856, 6002, 5858, 5999, 5859, 6000,
5854, 6093, 6079, 6091, 6092, 6081, 6082, 6074, 6077, 6078, 6090, 5989,
6088, 5987, 6089, 5988, 6086, 5985, 6087, 5986, 6084, 5983, 6085, 5984,
5714, 6064, 5397, 5982, 5849, 5831, 5815, 5965, 5825, 5829, 5830, 5827,
5828, 5963, 5823, 5824, 5961, 5817, 5994, 5813, 5993, 5677, 5625, 5604,
5605, 5620, 5622, 5623, 5602, 5603, 5624, 6035, 5601, 5913, 5698, 5911,
5696, 5912, 5697, 5909, 5910, 5907, 5908, 5905, 6027, 5895, 5926, 5927,
5923, 5921, 5920, 5944, 5945, 5946, 5943, 5753, 5751, 5752, 5749, 5750,
5747, 5748, 5746, 5754, 5627, 5772, 5776, 5777, 5774, 5775, 5770, 5771,
5769, 5918, 5919, 5914, 5917, 5996, 5997, 5998, 5995, 5733, 5737, 5738,
5735, 5736, 5731, 5732, 5730, 5739, 5847, 5848, 5843, 5846, 6055, 6056,
6057, 6054, 6046, 5656, 5657, 5654, 5655, 5652, 5653, 5651, 5903, 5901,
5902, 5899, 5900, 5897, 5898, 5896, 5374, 5393, 5394, 5395, 5392, 5381,
5382, 5383, 5380, 5389, 5390, 5391, 5388, 5385, 5386, 5387, 5384, 5838,
5839, 5835, 5837, 5423, 5422, 5418, 5419, 5421, 5420, 5569, 5568, 5564,
5565, 5567, 5566, 5575, 5574, 5570, 5571, 5573, 5572, 5439, 5438, 5434,
5435, 5437, 5436, 5533, 5532, 5528, 5529, 5531, 5530, 5527, 5526, 5522,
5523, 5525, 5524, 5496, 5495, 5491, 5492, 5494, 5493, 5490, 5432, 5431,
5428, 5429, 5430, 5426, 5469, 5468, 5464, 5465, 5467, 5466, 5463, 5462,
5458, 5459, 5461, 5460, 5457, 5476, 5475, 5470, 5471, 5474, 5472, 5563,
5562, 5558, 5559, 5561, 5560, 5581, 5580, 5576, 5577, 5579, 5578, 5456,
5840, 5455, 5450, 5451, 5454, 5842, 5453, 5449, 5448, 5444, 5445, 5447,
5446, 5551, 5550, 5546, 5547, 5549, 5548, 5410, 5409, 5405, 5406, 5408,
5407, 5545, 5544, 5540, 5541, 5543, 5542, 5509, 5508, 5504, 5505, 5507,
5506, 5515, 5514, 5510, 5511, 5513, 5512, 5503, 5502, 5498, 5499, 5501,
5500, 5497, 5443, 5416, 5415, 5411, 5412, 5414, 5413, 5489, 5488, 5484,
5485, 5487, 5486, 5483, 5482, 5478, 5479, 5481, 5480, 5477, 5539, 5538,
5534, 5535, 5537, 5536, 5557, 5556, 5552, 5553, 5555, 5554, 5521, 5520,
5516, 5517, 5519, 5518, 5592, 5621, 5773, 5734, 5744, 5745, 5742, 5743,
5740, 5741, 6053, 6051, 6052, 6049, 6050, 6047, 6048, 6058, 5379, 30157,
30132, 30143, 30139, 30149, 30146, 30152, 30155, 30156, 30135, 30134,
30154, 30140, 30145, 30150, 30144, 30131, 30147, 30153, 30137, 30141,
30136, 30148, 30151, 30142, 30138, 30133, 30129, 30130, 41412, 41412,
41412, 32482, 32538, 32532, 32536, 32535, 32530, 32528, 32475, 32460,
32506, 32459, 32458, 32503, 32518, 32505, 32509, 32510, 32512, 32498,
32464, 32497, 32483, 32476, 32484, 32486, 32531, 32488, 32487, 32501,
32515, 32527, 32517, 32469, 32491, 32472, 32495, 32485, 32500, 32521,
32492, 32534, 32461, 32524, 32523, 32519, 32462, 32540, 32529, 32520,
32467, 32526, 32514, 32470, 32508, 32473, 32533, 32502, 32516, 32499,
32468, 32490, 32489, 32471, 32507, 32474, 32494, 32466, 32465, 32463,
32525, 32504, 32522, 32493, 32537, 32539, 32541, 32542, 32457, 32543,
32544, 32456, 32496, 32513, 32511, 32480, 32479, 32481, 32478, 32477,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 35250, 35267, 35268,
35258, 35256, 35252, 35264, 35255, 35253, 35261, 35254, 35260, 35266,
35262, 35259, 35265, 35263, 35257, 35271, 35272, 35270, 35269, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35251, 19806,
19807, 19808, 19797, 19795, 19791, 19803, 19794, 19792, 19800, 19793,
19799, 19805, 19801, 19798, 19804, 19802, 19796, 19810, 19811, 19809,
31612, 31613, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 5092, 5093, 5094, 5083, 5081, 5077, 5089, 5080, 5078, 5086, 5079,
5085, 5091, 5087, 5084, 5090, 5088, 5082, 5095, 5096, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
35286, 35287, 35288, 35278, 35277, 35273, 35283, 35276, 35274, 35281,
35275, 35280, 35285, 41412, 35279, 35284, 35282, 41412, 35289, 35290,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 22394, 22392, 22395, 22393, 22396, 22390, 22388, 22391,
22389, 22398, 22412, 22408, 22413, 22409, 22397, 22410, 22406, 22411,
22407, 22399, 22420, 22400, 22402, 22401, 22416, 22419, 22417, 22415,
22418, 22404, 22403, 22405, 22421, 22414, 22422, 22369, 22367, 22377,
22378, 22373, 22376, 22374, 22375, 22386, 22387, 22384, 22385, 22379,
22368, 22372, 22371, 22370, 22489, 22488, 22490, 22495, 22497, 22501,
22503, 22505, 22507, 22506, 22498, 22502, 22496, 22508, 22492, 22493,
22500, 22494, 22443, 22437, 22442, 22444, 22438, 22428, 22436, 22439,
22433, 22425, 22426, 22445, 22432, 22427, 22434, 22429, 22431, 22440,
22430, 22441, 22435, 22366, 22423, 22424, 41412, 41412, 22515, 22517,
22514, 22513, 22510, 22509, 22512, 22511, 22518, 22516, 41412, 41412,
41412, 41412, 41412, 41412, 22467, 22466, 22463, 22465, 22464, 22458,
22461, 22462, 22460, 22459, 41412, 41412, 41412, 41412, 41412, 41412,
28342, 28354, 28350, 28199, 28349, 28200, 28347, 28338, 28351, 28352,
28353, 28198, 28197, 28196, 28348, 28195, 28191, 28193, 28190, 28189,
28186, 28185, 28188, 28187, 28194, 28192, 41412, 41412, 41412, 41412,
41412, 41412, 28203, 28317, 28334, 28319, 28321, 28320, 28322, 28318,
28328, 28231, 28323, 28329, 28330, 28326, 28235, 28316, 28278, 28277,
28308, 28324, 28232, 28327, 28333, 28331, 28332, 28325, 28314, 28313,
28307, 28311, 28312, 28310, 28315, 28309, 28234, 28287, 28305, 28306,
28294, 28296, 28295, 28297, 28281, 28298, 28301, 28302, 28288, 28300,
28291, 28283, 28292, 28285, 28290, 28304, 28303, 28299, 28289, 28293,
28284, 28286, 28282, 28276, 28261, 28262, 28270, 28269, 28266, 28274,
28255, 28257, 28275, 28264, 28260, 28271, 28273, 28272, 28256, 28258,
28259, 28268, 28265, 28263, 28267, 28254, 28252, 28253, 28251, 28250,
28233, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28205, 28207,
28209, 28216, 28215, 28223, 28219, 28204, 28214, 28230, 28217, 28229,
28221, 28220, 28211, 28218, 28222, 28208, 28225, 28224, 28228, 28226,
28227, 28206, 28280, 28279, 28243, 28248, 28239, 28244, 28240, 28236,
28241, 28237, 28249, 28238, 28246, 28247, 28213, 28212, 28242, 28210,
28245, 41412, 41412, 41412, 41412, 41412, 5793, 5378, 5372, 6061, 5809,
5806, 5797, 5935, 5644, 5635, 5684, 5757, 5729, 5661, 5878, 5834, 5865,
5868, 5857, 6083, 6080, 5826, 5762, 5782, 5763, 5783, 5760, 5780, 5761,
5781, 5822, 5820, 5821, 5818, 5819, 5816, 5789, 5790, 5787, 5786, 5788,
5779, 5784, 5785, 5599, 6043, 5612, 5611, 5814, 5964, 5962, 5906, 5904,
5925, 5924, 5922, 5916, 5915, 5845, 5844, 5836, 5425, 5402, 5427, 5424,
5841, 5452, 5398, 5399, 5403, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 24647, 24614, 24613, 24594, 24593, 24600,
24608, 24607, 24612, 24611, 24599, 24597, 24595, 24610, 24609, 24601,
24616, 24615, 24606, 24605, 24619, 24598, 24620, 24618, 24621, 24602,
24603, 24604, 24617, 24592, 24596, 41412, 24638, 24645, 24646, 24644,
24639, 24642, 24640, 24643, 24641, 24637, 24635, 24636, 41412, 41412,
41412, 41412, 24629, 24626, 24628, 24634, 24627, 24632, 24631, 24633,
24630, 24623, 24622, 24624, 41412, 41412, 41412, 41412, 24625, 41412,
41412, 41412, 24648, 24649, 24656, 24658, 24655, 24654, 24651, 24650,
24653, 24652, 24659, 24657, 35311, 35323, 35306, 35303, 35321, 35324,
35305, 35304, 35318, 35313, 35312, 35319, 35316, 35322, 35317, 35320,
35310, 35302, 35307, 35291, 35325, 35295, 35296, 35314, 35309, 35308,
35315, 35294, 35292, 35293, 41412, 41412, 35297, 35298, 35299, 35300,
35301, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 29300, 29322, 29282, 29284, 29287, 29304, 29306, 29309,
29290, 29286, 29302, 29312, 29308, 29324, 29291, 29289, 29288, 29313,
29311, 29310, 29293, 29292, 29299, 29315, 29314, 29321, 29296, 29301,
29298, 29318, 29323, 29320, 29297, 29295, 29294, 29319, 29317, 29316,
29281, 29283, 29303, 29305, 29285, 29307, 41412, 41412, 41412, 41412,
29345, 29330, 29334, 29340, 29343, 29346, 29332, 29336, 29337, 29341,
29333, 29331, 29344, 29339, 29338, 29342, 29335, 29280, 29275, 29274,
29279, 29278, 29277, 29276, 29327, 29328, 41412, 41412, 41412, 41412,
41412, 41412, 29353, 29355, 29352, 29351, 29348, 29347, 29350, 29349,
29356, 29354, 29329, 41412, 41412, 41412, 29325, 29326, 22468, 22487,
22480, 22483, 22485, 22478, 22476, 22474, 22470, 22472, 22457, 22455,
22447, 22451, 22453, 22449, 22481, 22486, 22479, 22482, 22484, 22477,
22475, 22473, 22469, 22471, 22456, 22454, 22446, 22450, 22452, 22448,
5061, 5058, 5050, 5049, 5063, 5055, 5048, 5047, 5066, 5057, 5054, 5053,
5056, 5060, 5052, 5051, 5068, 5064, 5062, 5067, 5065, 5069, 5059, 5072,
5074, 5071, 5073, 5070, 41412, 41412, 5076, 5075, 35359, 35357, 35358,
35375, 35374, 35373, 35399, 35365, 35364, 35378, 35385, 35377, 35400,
35393, 35360, 35405, 35376, 35392, 35369, 35368, 35382, 35381, 35401,
35404, 35367, 35366, 35370, 35380, 35383, 35379, 35406, 35386, 35372,
35391, 35394, 35387, 35389, 35407, 35361, 35362, 35363, 35371, 35390,
35408, 35384, 35397, 35398, 35395, 35396, 35403, 35402, 35388, 35356,
35331, 35330, 35328, 35419, 35326, 35327, 35329, 35332, 35333, 35334,
41412, 35427, 35434, 35438, 35435, 35444, 35450, 35451, 35449, 35448,
35446, 35447, 35439, 35440, 35443, 35452, 35436, 35442, 35437, 35445,
35441, 35418, 35431, 35432, 35411, 35412, 35413, 35422, 35421, 35414,
41412, 41412, 35335, 35342, 35344, 35341, 35340, 35337, 35336, 35339,
35338, 35345, 35343, 41412, 41412, 41412, 41412, 41412, 41412, 35352,
35354, 35351, 35350, 35347, 35346, 35349, 35348, 35355, 35353, 41412,
41412, 41412, 41412, 41412, 41412, 35428, 35429, 35426, 35417, 35410,
35430, 35423, 35420, 35415, 35416, 35424, 35425, 35409, 35433, 41412,
41412, 8313, 8277, 8402, 8316, 8561, 8580, 8579, 8509, 8297, 8483, 8548,
8515, 8301, 8514, 8513, 8450, 8444, 8468, 8531, 8469, 8532, 8545, 8502,
8401, 8518, 8300, 8299, 8559, 8428, 8429, 8430, 8293, 8572, 8382, 8574,
8165, 8576, 8495, 8573, 8575, 8497, 8544, 8328, 8315, 8276, 8283, 41412,
41412, 8474, 8534, 8501, 8399, 8547, 8552, 8286, 8287, 8325, 8461, 8566,
8303, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 2762, 2761, 2763, 2760, 2764, 2671, 2672, 2688, 2689, 2692, 2693,
2710, 2711, 2701, 2702, 2685, 2675, 2690, 2691, 2696, 2698, 2686, 2687,
2705, 2678, 2679, 2694, 2695, 2706, 2717, 2716, 2682, 2681, 2704, 2715,
2718, 2680, 2683, 2703, 2707, 2708, 2676, 2677, 2723, 2725, 2709, 2700,
2724, 2713, 2714, 2712, 2722, 2765, 2776, 2779, 2780, 2770, 2771, 2768,
2769, 2766, 2767, 2772, 2773, 2775, 2774, 2777, 2778, 2781, 2697, 2699,
2719, 2684, 2720, 2721, 2673, 2674, 41412, 2670, 2669, 2789, 2791, 2788,
2787, 2784, 2783, 2786, 2785, 2792, 2790, 2757, 2754, 2782, 2667, 2668,
2666, 2756, 2743, 2741, 2744, 2735, 2736, 2742, 2738, 2740, 2739, 2737,
2733, 2732, 2728, 2726, 2730, 2729, 2727, 2731, 2734, 2753, 2752, 2751,
2750, 2745, 2747, 2748, 2749, 2746, 2758, 2755, 2759, 34858, 34856,
34857, 34809, 34844, 34846, 34811, 34845, 34821, 34822, 34829, 34837,
34832, 34823, 34830, 34834, 34843, 34824, 34838, 34831, 34825, 34836,
34814, 34839, 34827, 34835, 34842, 34818, 34816, 34840, 34820, 34841,
34833, 34804, 34805, 34806, 34864, 34863, 34865, 34862, 34860, 34861,
34855, 34859, 34807, 34808, 34828, 34819, 34872, 34874, 34871, 34870,
34867, 34866, 34869, 34868, 34875, 34873, 34803, 34817, 34815, 34826,
34812, 34813, 3557, 3543, 3551, 3535, 3523, 3547, 3546, 3532, 3538, 3531,
3524, 3555, 3541, 3533, 3550, 3534, 3552, 3549, 3554, 3539, 3522, 3537,
3544, 3527, 3545, 3540, 3525, 3556, 3542, 3529, 3553, 3536, 3530, 3548,
3528, 3526, 3558, 3559, 3566, 3572, 3569, 3573, 3574, 3570, 3575, 3571,
3567, 3568, 3520, 3521, 3560, 3561, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 3565, 3563, 3564, 3562, 24476, 24475, 24474, 24488,
24487, 24493, 24503, 24502, 24506, 24494, 24501, 24500, 24482, 24495,
24479, 24478, 24477, 24486, 24485, 24484, 24483, 24492, 24491, 24497,
24496, 24481, 24511, 24508, 24507, 24490, 24489, 24509, 24505, 24504,
24510, 24512, 24521, 24520, 24526, 24528, 24524, 24525, 24522, 24523,
24527, 24465, 24470, 24469, 24467, 24471, 24472, 24473, 24468, 24466,
24519, 24518, 41412, 41412, 41412, 24513, 24516, 24517, 24515, 24514,
24535, 24537, 24534, 24533, 24530, 24529, 24532, 24531, 24538, 24536,
41412, 41412, 41412, 24499, 24498, 24480, 30203, 30205, 30202, 30201,
30198, 30197, 30200, 30199, 30206, 30204, 30176, 30167, 30165, 30164,
30166, 30177, 30161, 30160, 30162, 30163, 30179, 30175, 30173, 30172,
30174, 30181, 30187, 30188, 30186, 30189, 30178, 30171, 30168, 30170,
30169, 30180, 30182, 30183, 30185, 30184, 30191, 30192, 30190, 30196,
30195, 30207, 30194, 30193, 10562, 10539, 10545, 10602, 10583, 10591,
10581, 10582, 10601, 10267, 10593, 41412, 41412, 41412, 41412, 41412,
18013, 18044, 18021, 18050, 18019, 18049, 18042, 18039, 18051, 18031,
18033, 18045, 18047, 18052, 18035, 18041, 18043, 18037, 18040, 18053,
18034, 18030, 18020, 18048, 18036, 18014, 18017, 18029, 18016, 18015,
18046, 18028, 18024, 18027, 18025, 18055, 18022, 18026, 18056, 18054,
18018, 18038, 18012, 41412, 41412, 18011, 18023, 18032, 34854, 34852,
34853, 34851, 34850, 34849, 34848, 34847, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 39257, 39270, 39259, 39237, 39251, 39265,
39266, 39267, 39252, 39268, 39255, 39263, 39258, 39256, 39264, 39262,
39261, 39269, 39250, 39248, 39239, 39246, 39238, 39249, 39247, 39228,
39229, 39231, 39232, 39244, 39242, 39243, 39241, 39230, 39234, 39240,
39253, 39236, 39245, 39233, 39260, 39254, 39235, 41412, 41412, 41412,
41412, 41412, 23439, 23440, 24047, 23436, 23441, 23442, 23413, 23412,
24032, 24025, 23445, 23446, 23419, 23447, 23425, 23420, 23421, 23982,
23983, 23984, 24027, 23423, 24019, 23538, 23449, 23426, 23434, 23429,
23452, 23987, 23986, 23985, 23453, 23454, 23456, 23414, 23466, 23400,
18557, 18560, 18556, 18559, 18555, 10432, 27880, 27881, 27871, 27872,
27883, 27884, 27874, 27886, 27876, 27887, 27888, 27889, 27890, 27891,
27892, 27875, 27878, 27879, 27893, 27873, 27896, 27897, 27899, 28030,
28137, 28031, 28139, 28034, 28059, 28073, 28127, 28112, 28142, 28080,
28150, 28161, 28090, 28077, 28110, 28113, 28134, 28036, 28114, 28129,
28154, 28128, 28140, 28158, 28032, 28038, 28081, 28064, 28082, 28058,
24188, 24196, 24198, 24199, 18766, 18762, 18765, 18764, 18763, 24108,
23524, 23573, 23659, 23802, 23822, 23899, 23927, 23920, 23966, 24002,
24170, 24054, 27948, 23730, 24012, 23468, 23737, 23895, 23469, 24107,
23525, 23577, 23660, 23673, 23756, 23783, 23803, 23828, 23900, 23930,
23967, 23646, 24115, 24142, 24171, 23487, 23513, 23576, 23636, 23888,
23937, 23975, 23727, 23884, 23648, 24094, 23654, 28138, 28039, 28057,
28075, 28121, 28078, 28065, 28126, 28149, 28092, 28093, 28040, 28042,
28095, 28099, 28101, 28045, 28091, 28141, 28109, 28108, 28051, 28035,
28115, 28125, 28074, 28130, 28156, 28157, 28053, 28160, 28151, 28070,
28072, 28071, 28076, 28153, 8285, 8284, 8550, 8549, 8496, 8384, 8498,
8167, 8383, 8166, 8442, 8179, 8499, 8294, 8511, 8539, 8403, 8567, 8568,
8425, 8416, 8417, 8418, 8420, 8427, 8423, 8452, 8408, 8454, 8431, 8409,
8410, 8456, 8411, 8412, 8441, 8445, 8433, 8460, 8415, 8447, 8448, 8446,
8424, 8432, 8436, 8457, 8422, 8439, 8449, 8414, 8435, 8438, 8564, 8407,
8406, 8279, 8577, 8282, 8273, 8292, 8176, 8465, 8522, 22921, 23485,
22957, 23527, 22956, 23526, 22955, 23523, 22964, 23542, 22989, 23579,
22988, 23578, 22987, 23574, 22983, 23568, 22984, 23569, 23017, 23622,
23018, 23623, 23006, 23610, 23015, 23620, 22997, 23601, 23042, 23662,
23050, 23672, 23069, 23692, 23068, 23691, 23066, 23689, 23063, 23686,
23062, 23685, 23086, 23719, 23080, 23707, 23117, 23754, 23114, 23751,
23118, 23755, 23125, 23768, 23126, 23769, 23136, 23778, 23132, 23765,
23142, 23800, 23144, 23805, 23143, 23804, 23162, 23827, 23161, 23826,
23156, 23819, 23152, 23814, 23193, 23863, 23192, 23862, 23170, 23855,
23171, 23856, 23221, 23898, 23223, 23902, 23233, 23917, 23231, 23915,
23232, 23916, 23238, 23922, 23259, 23960, 23257, 23958, 23256, 23951,
23251, 23953, 23258, 23959, 23280, 24000, 23279, 23999, 23281, 24003,
23275, 23993, 23311, 24075, 23332, 24098, 23304, 24068, 23331, 24097,
23323, 24087, 23344, 24118, 23343, 24114, 23357, 24131, 23358, 24132,
23354, 24128, 23356, 24130, 23355, 24129, 23363, 24137, 23362, 24136,
23368, 24147, 23379, 24161, 23383, 24165, 23385, 24167, 23693, 23998,
24133, 24157, 23486, 23793, 23792, 23794, 23269, 23583, 22915, 23479,
22931, 23497, 22927, 23493, 22926, 23492, 22925, 23491, 22929, 23495,
22928, 23494, 22910, 23474, 22909, 23473, 22908, 23472, 22912, 23476,
22911, 23475, 23011, 23615, 23022, 23628, 23014, 23619, 23002, 23606,
23001, 23605, 23000, 23604, 23005, 23609, 23004, 23608, 23087, 23720,
23077, 23711, 23184, 23848, 23204, 23874, 23176, 23840, 23175, 23839,
23174, 23838, 23178, 23842, 23177, 23841, 23201, 23871, 23200, 23870,
23199, 23869, 23203, 23873, 23202, 23872, 23314, 24078, 23321, 24085,
23318, 24082, 23317, 24081, 23316, 24080, 23320, 24084, 23319, 24083,
23369, 24148, 23367, 24146, 23371, 24150, 23375, 24156, 23147, 23808,
23148, 23809, 23372, 24151, 18604, 18596, 18609, 18601, 18605, 18597,
18607, 18599, 18370, 18362, 18373, 18365, 18371, 18363, 18375, 18367,
18627, 18624, 18629, 18626, 18628, 18625, 41412, 41412, 18410, 18407,
18412, 18409, 18411, 18408, 41412, 41412, 18642, 18634, 18647, 18639,
18643, 18635, 18645, 18637, 18394, 18386, 18397, 18389, 18395, 18387,
18399, 18391, 18668, 18659, 18671, 18662, 18670, 18661, 18669, 18660,
18422, 18417, 18425, 18420, 18424, 18419, 18423, 18418, 18729, 18726,
18731, 18728, 18730, 18727, 41412, 41412, 18456, 18453, 18458, 18455,
18457, 18454, 41412, 41412, 18688, 18679, 18691, 18682, 18690, 18681,
18689, 18680, 41412, 18468, 41412, 18471, 41412, 18470, 41412, 18469,
18709, 18701, 18714, 18706, 18710, 18702, 18712, 18704, 18440, 18432,
18443, 18435, 18441, 18433, 18445, 18437, 18594, 18614, 18631, 18630,
18654, 18652, 18674, 18675, 18733, 18732, 18694, 18695, 18721, 18719,
41412, 41412, 18611, 18603, 18610, 18602, 18606, 18598, 18608, 18600,
18377, 18369, 18374, 18366, 18372, 18364, 18376, 18368, 18649, 18641,
18648, 18640, 18644, 18636, 18646, 18638, 18401, 18393, 18398, 18390,
18396, 18388, 18400, 18392, 18716, 18708, 18715, 18707, 18711, 18703,
18713, 18705, 18447, 18439, 18444, 18436, 18442, 18434, 18446, 18438,
18593, 18618, 18595, 18616, 18615, 41412, 18612, 18613, 18379, 18383,
18380, 18381, 18378, 18553, 18581, 18582, 18586, 18502, 18655, 18656,
18653, 41412, 18650, 18651, 18414, 18413, 18404, 18403, 18402, 18585,
18584, 18583, 18673, 18677, 18666, 18665, 41412, 41412, 18672, 18664,
18426, 18430, 18427, 18428, 41412, 18510, 18509, 18508, 18693, 18697,
18686, 18685, 18741, 18740, 18692, 18684, 18473, 18477, 18474, 18475,
18463, 18504, 18503, 18780, 41412, 41412, 18722, 18723, 18720, 41412,
18717, 18718, 18460, 18459, 18450, 18449, 18448, 18578, 18507, 41412,
16898, 16895, 16900, 16897, 37416, 17650, 33984, 17575, 31904, 37389,
19135, 41218, 41217, 41219, 24357, 32233, 20617, 29541, 17574, 16899,
16896, 20561, 11383, 11357, 24280, 32163, 33859, 33857, 24233, 32128,
11356, 11351, 10661, 11350, 5097, 38001, 30706, 38148, 20584, 20620,
24665, 31245, 24356, 32232, 31778, 24355, 32231, 29142, 31481, 31482,
31864, 11365, 38015, 32071, 32065, 32079, 6109, 33858, 33860, 32088,
11387, 20959, 31059, 38199, 6395, 6110, 2572, 20619, 17654, 24288, 32174,
11388, 31928, 17489, 37790, 32070, 3956, 3998, 25334, 32076, 8150, 38160,
8583, 34967, 20977, 17614, 37396, 31924, 17643, 17600, 38149, 17644,
11329, 38026, 39278, 27150, 39824, 17777, 20979, 20981, 20980, 41412,
24354, 32230, 17593, 31777, 20873, 7, 20872, 6, 29137, 29539, 34938,
34926, 41412, 41412, 34933, 34932, 34935, 34934, 34925, 34939, 34929,
34931, 34924, 34928, 34930, 34927, 34768, 34770, 34767, 34766, 34763,
34762, 34765, 34764, 34758, 34769, 34759, 34761, 34757, 34756, 34760,
41412, 24185, 24186, 24194, 24200, 24184, 24187, 24190, 24191, 24192,
24193, 24195, 24183, 24197, 41412, 41412, 41412, 17485, 8163, 8829,
17661, 25273, 27765, 29070, 31505, 32553, 39828, 29273, 11323, 17486,
22718, 38036, 11505, 18058, 31506, 18830, 2585, 20625, 6228, 25274,
34320, 37161, 20863, 38118, 29591, 25839, 32422, 22902, 3862, 34300,
32714, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 8472, 8530, 8487, 8543, 8172, 8188,
8467, 8527, 8536, 8187, 8171, 8553, 8327, 8317, 8320, 8323, 8318, 8476,
8319, 8321, 8322, 8519, 8308, 8173, 8560, 8578, 8478, 8484, 8535, 8477,
8466, 8526, 8175, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 0, 100, 11399, 10685,
6232, 6111, 5362, 17488, 32742, 10687, 32739, 32731, 4046, 11400, 31667,
31668, 32732, 4047, 32733, 32740, 25511, 11401, 29635, 34216, 32735,
11397, 11402, 32736, 4048, 11403, 31840, 32049, 32845, 37055, 37986,
39271, 11404, 31053, 31063, 20976, 4049, 38141, 21773, 963, 32728, 4045,
16955, 32738, 32729, 32730, 38125, 32734, 32741, 348, 3753, 18061, 10674,
20870, 32410, 17554, 11411, 11410, 11396, 11398, 11412, 38134, 38135,
32075, 38136, 11409, 11405, 11406, 11407, 11408, 31868, 38120, 31483,
2643, 38138, 35046, 39422, 39420, 39424, 39425, 39430, 39418, 39429,
39428, 39416, 39423, 39415, 39417, 39426, 39414, 39431, 17655, 32378,
32389, 32390, 32377, 32374, 32383, 32385, 32393, 32394, 32386, 32392,
32388, 32371, 32379, 32375, 32381, 34046, 34050, 34051, 34045, 34042,
34054, 34053, 34041, 34055, 34052, 34040, 34049, 34044, 34047, 34043,
34048, 32382, 32376, 32387, 32391, 23943, 32384, 32373, 32372, 32380,
39432, 38129, 38128, 41412, 41412, 41412, 41412, 24358, 38350, 32235,
11441, 24262, 38221, 29572, 29545, 34188, 34203, 24378, 32259, 24442,
32336, 24439, 38400, 32335, 11477, 24381, 32262, 24389, 38363, 32242,
11455, 38222, 24387, 32268, 24372, 32254, 24270, 24265, 11481, 38360,
38361, 11450, 11451, 32250, 11442, 974, 8134, 29574, 24369, 979, 8136,
24408, 24402, 38377, 38374, 32295, 32289, 11492, 11489, 32270, 38352,
24392, 24454, 38403, 32302, 11500, 24409, 32296, 24445, 24269, 32278,
24443, 38367, 32276, 11482, 24267, 38224, 29585, 29558, 34200, 34213,
24429, 32326, 24458, 32306, 38353, 11443, 24449, 38368, 32282, 11483,
24368, 32249, 24440, 38404, 32337, 11479, 38409, 38405, 38407, 38406,
38411, 38412, 32338, 29573, 34191, 38226, 32115, 11453, 37404, 24388,
32269, 24264, 24374, 32252, 24263, 24453, 32301, 24272, 17639, 8588,
31391, 37383, 37382, 16888, 20791, 29026, 16837, 29594, 34026, 8596,
11149, 34019, 16902, 28985, 28973, 28977, 27769, 27776, 11324, 11131,
32850, 2571, 32347, 5098, 34547, 8835, 17649, 31867, 20864, 32105, 959,
27024, 34323, 11135, 11150, 31250, 29599, 25288, 25295, 20952, 38201,
20937, 11354, 38025, 8602, 34960, 39410, 8137, 8128, 976, 37384, 3754,
31959, 31866, 11325, 17491, 17883, 20605, 37694, 32077, 20973, 33979,
39832, 29604, 27775, 2578, 29595, 1058, 1061, 29229, 364, 29596, 366,
38016, 361, 16941, 17881, 11141, 1062, 17882, 1059, 20754, 8162, 16939,
32345, 32346, 8781, 16956, 16942, 34712, 10690, 16924, 27035, 31930,
29606, 20630, 29607, 34749, 24558, 18294, 24560, 18297, 24549, 18287,
28722, 28721, 3752, 29605, 29609, 29608, 29234, 29231, 24557, 18293,
29233, 29230, 24559, 18295, 29235, 29232, 31841, 34786, 31850, 34795,
31849, 34794, 11152, 11155, 34774, 34946, 29592, 29593, 34780, 34952,
29227, 29228, 34779, 34951, 28475, 28476, 28477, 34420, 34509, 34422,
34511, 34355, 34362, 6909, 6855, 6914, 6647, 6660, 6910, 6636, 6919,
6661, 34680, 34673, 34694, 34628, 32192, 24306, 11418, 38230, 2579,
27784, 38033, 17640, 38019, 11381, 11154, 29603, 11157, 29226, 31851,
34796, 29589, 8597, 29590, 8598, 30738, 20753, 28478, 20376, 20960,
39853, 29071, 29544, 32111, 32188, 28982, 28983, 28984, 28978, 10969,
11326, 34714, 11133, 4474, 24320, 32150, 24278, 32161, 32078, 10078,
10077, 11375, 11374, 11353, 11378, 31661, 16925, 24563, 18303, 39321,
39320, 24547, 18298, 16923, 16922, 16920, 16921, 11153, 11156, 29600,
29601, 34421, 34510, 24548, 18286, 31848, 34793, 29597, 11147, 29598,
11148, 39277, 27761, 38229, 11421, 16838, 16840, 34027, 16843, 16842,
34028, 16841, 16839, 8599, 8600, 34020, 8601, 34021, 41130, 10970, 16835,
20599, 38213, 11422, 31865, 31500, 39596, 24229, 32123, 24317, 32132,
4457, 4454, 37934, 37930, 32068, 34453, 2567, 32752, 32748, 37053, 31786,
39334, 31664, 38132, 39587, 20597, 37929, 37933, 4453, 4456, 37923, 4451,
17665, 34086, 38214, 30728, 16952, 39837, 21775, 24327, 32213, 16951,
3700, 10656, 362, 35056, 37950, 11142, 8607, 34011, 8783, 8784, 1004,
1042, 1028, 1016, 1017, 1033, 1014, 984, 989, 1039, 1044, 1030, 1029,
1024, 1031, 1012, 1036, 1025, 1032, 987, 996, 995, 1018, 1021, 997, 1050,
1023, 1047, 993, 1022, 1020, 1048, 1000, 1019, 1035, 994, 1001, 1010,
988, 1049, 1034, 985, 1015, 1046, 991, 1040, 1009, 986, 998, 1011, 1052,
1051, 990, 992, 1053, 1041, 1038, 1027, 1026, 999, 1045, 1002, 1037,
1007, 1006, 1043, 1003, 1008, 1005, 29610, 32110, 33041, 3595, 39293,
20936, 8605, 11056, 16894, 8587, 39741, 16916, 367, 20087, 6691, 6913,
5038, 38200, 28358, 20623, 30724, 30725, 31405, 31406, 11051, 34104,
1013, 10681, 31852, 29458, 31854, 8157, 24323, 24324, 24322, 32157,
32158, 32156, 24285, 24292, 24284, 32171, 32178, 32170, 24227, 24225,
24226, 10080, 32121, 32119, 32120, 20947, 20565, 38282, 38321, 34799,
34797, 37937, 4460, 4461, 31939, 24326, 32194, 20574, 20575, 20576,
20577, 10703, 10701, 10705, 10694, 10698, 10706, 10695, 10699, 10704,
10693, 10697, 10692, 10696, 10702, 10700, 34388, 32050, 17518, 39288,
27597, 27589, 27596, 27590, 27594, 27595, 27593, 27592, 27591, 11672,
17781, 37925, 4464, 37907, 4463, 37938, 4467, 39750, 3701, 34740, 17605,
8, 16836, 10682, 3987, 3949, 4030, 3926, 3988, 3950, 3990, 230, 34738,
37702, 20598, 3966, 3969, 3971, 3963, 11379, 4009, 3871, 31800, 31797,
31798, 31799, 30113, 35041, 35049, 35050, 35030, 35028, 35031, 35042,
35013, 35014, 35035, 35037, 35036, 35034, 35015, 35047, 35048, 35017,
35026, 35025, 35024, 35023, 35039, 35053, 35029, 35016, 35027, 35051,
35032, 35033, 35044, 35043, 35045, 35054, 35018, 4053, 30711, 35040,
35021, 35052, 35020, 35019, 35022, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 30125, 30120, 30123,
30124, 30117, 30118, 30116, 30115, 30122, 30119, 30121, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 6657,
6654, 6653, 6650, 6649, 6652, 6651, 6658, 6656, 6878, 6858, 6903, 6891,
6873, 6861, 6877, 6875, 6857, 6904, 6892, 31337, 31335, 31334, 31331,
31330, 31333, 31332, 31338, 31336, 31329, 31320, 31328, 31326, 31321,
31322, 31324, 31325, 31319, 31323, 31327, 10991, 11003, 11000, 10985,
10982, 10997, 10994, 11009, 10988, 29631, 29624, 29632, 29630, 29625,
29626, 29627, 29629, 29623, 29634, 29633, 31365, 31366, 31367, 31368,
31369, 31370, 31371, 31372, 31373, 31374, 31375, 31376, 31377, 31378,
31379, 31380, 31381, 31382, 31383, 31384, 31385, 31386, 31387, 31388,
31389, 31390, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810,
6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822,
6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834,
6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846,
6847, 6848, 6849, 6850, 6851, 6852, 6655, 29151, 29149, 29147, 29152,
29153, 29155, 29156, 29150, 29154, 29148, 11345, 11343, 11342, 11339,
11338, 11341, 11340, 11346, 11344, 11337, 29146, 4586, 4532, 4602, 4518,
4595, 4531, 4594, 4530, 4593, 4529, 4592, 4528, 4583, 4502, 4496, 4525,
4582, 4500, 4494, 4524, 4601, 4630, 4624, 4517, 4600, 4628, 4622, 4515,
4609, 4646, 4623, 4495, 4643, 4501, 4629, 4521, 4608, 4645, 4621, 4493,
4642, 4499, 4627, 4520, 4581, 4536, 4614, 4504, 4498, 4617, 4539, 4523,
4599, 4535, 4613, 4631, 4625, 4616, 4538, 4516, 4607, 4537, 4615, 4644,
4620, 4497, 4641, 4541, 4619, 4534, 4612, 4503, 4626, 4618, 4540, 4519,
4585, 4527, 4584, 4526, 4492, 4488, 4509, 4506, 4484, 4508, 4505, 4483,
4636, 4633, 4487, 4635, 4632, 4486, 4648, 4639, 4491, 4647, 4638, 4490,
4510, 4507, 4482, 4637, 4634, 4485, 4649, 4640, 4489, 4543, 4542, 4544,
4545, 4574, 4568, 4578, 4590, 4597, 4611, 4580, 4511, 4513, 4533, 4522,
4591, 4598, 4512, 4514, 38259, 25435, 25434, 25437, 25345, 25427, 25440,
25436, 17672, 24279, 24302, 24315, 24243, 24303, 24258, 24259, 32136,
24579, 27151, 10668, 38307, 32153, 31921, 31922, 31913, 31914, 31915,
31916, 31917, 31918, 31919, 31920, 4007, 39728, 39737, 39731, 34566,
34575, 34565, 34572, 34574, 34564, 4004, 39725, 4000, 39713, 4037, 39760,
3981, 39709, 4032, 39757, 4031, 39756, 3989, 39717, 3994, 39716, 3993,
39715, 3928, 39672, 3927, 39671, 3954, 39698, 3953, 39697, 3952, 39696,
3918, 39661, 39662, 17597, 25442, 39647, 11328, 6630, 5101, 3867, 6622,
6631, 6623, 6628, 6627, 6629, 24241, 32134, 20964, 20968, 38263, 25339,
38287, 38323, 25389, 25369, 38268, 25346, 3961, 3960, 4033, 4034, 39611,
34569, 34576, 34571, 34568, 39740, 39758, 38245, 38246, 22899, 39738,
39734, 39735, 39739, 39654, 39652, 39653, 39655, 38285, 38340, 25380,
39705, 3976, 39704, 3975, 25403, 4011, 8151, 38194, 34094, 8590, 4020,
39747, 24589, 37421, 34800, 2568, 10711, 8608, 30732, 4026, 39749, 2795,
2801, 2802, 32560, 38196, 20593, 39722, 4018, 33013, 32073, 3959, 3986,
39695, 39754, 39719, 39670, 33990, 6225, 31937, 3864, 5361, 983, 30834,
6585, 8816, 8815, 34715, 17564, 102, 19262, 31471, 41128, 38004, 38005,
38010, 38007, 38009, 38008, 38006, 38003, 39607, 39682, 39726, 4006,
39745, 17590, 22903, 27586, 17570, 11668, 25747, 21093, 32630, 38413,
29460, 31766, 2566, 37042, 17864, 6099, 24463, 39336, 25277, 32724,
32558, 6105, 2646, 31659, 39619, 39635, 39638, 39613, 39622, 39632, 3889,
3905, 3908, 3883, 3892, 3902, 4019, 39685, 39666, 3917, 39727, 3938,
3923, 39656, 20594, 31926, 16791, 3581, 3582, 28483, 28481, 28482, 39605,
11673, 38210, 31967, 31968, 31969, 31970, 31971, 31972, 31973, 31974,
4036, 31966, 31396, 31503, 39608, 10973, 10974, 10975, 10976, 10977,
10978, 39649, 39651, 3868, 3870, 28355, 28356, 11013, 11016, 11015,
11014, 39676, 3934, 19263, 981, 8824, 34709, 32719, 347, 17613, 17860,
34710, 2581, 17610, 31040, 37398, 37397, 39581, 20444, 11414, 11415,
20951, 25746, 25745, 25744, 39294, 20585, 27162, 27138, 27155, 25913,
11136, 38212, 8807, 17778, 29270, 6235, 31205, 21094, 39323, 6588, 3977,
32852, 32764, 31932, 32847, 34099, 3518, 34642, 39673, 39674, 3931, 3932,
34095, 34802, 31942, 4013, 37420, 38124, 38123, 39667, 8825, 11055,
30731, 31644, 6167, 20086, 6643, 6236, 29532, 368, 4027, 39752, 3957,
39693, 11514, 19943, 24230, 34685, 17558, 4024, 32046, 32047, 2575,
19869, 31478, 32212, 24353, 20974, 3880, 33018, 6620, 6227, 20549, 17861,
17862, 25842, 28374, 38195, 17651, 17607, 17572, 32715, 34387, 33988,
20629, 31490, 37162, 20991, 19845, 17780, 10073, 39677, 4014, 38252,
4017, 25421, 39720, 39686, 37054, 37041, 226, 16913, 31955, 31947, 39327,
39835, 25420, 31480, 38322, 39708, 3979, 6401, 19867, 28474, 19903, 2805,
19859, 31042, 19950, 30715, 19905, 23392, 32857, 31039, 25748, 34713,
17647, 17645, 19888, 17641, 3935, 39681, 34308, 34743, 6916, 30713, 3881,
31041, 19907, 31656, 32856, 19858, 30714, 16790, 16785, 16783, 33982,
16784, 19881, 38144, 33985, 37047, 30712, 19933, 33980, 3933, 39678,
16786, 6905, 19932, 34097, 37692, 19866, 34307, 19926, 2794, 16789,
19883, 8821, 32855, 29218, 25419, 38319, 25401, 38337, 4044, 39712,
39675, 3920, 19885, 24586, 27159, 19949, 19916, 19917, 19877, 19878,
19900, 19899, 10085, 19886, 19892, 19862, 32407, 17612, 32406, 27145,
27148, 27139, 27140, 27146, 27149, 19896, 19909, 19895, 19908, 24578,
24576, 27144, 27147, 11038, 11036, 11035, 11032, 11031, 11034, 11033,
11039, 11037, 11030, 11049, 11046, 11045, 11042, 11041, 11044, 11043,
11050, 11048, 11040, 11028, 11025, 11024, 11021, 11020, 11023, 11022,
11029, 11027, 11019, 19945, 19948, 19904, 19874, 19922, 19910, 19929,
11506, 19913, 37998, 19935, 10671, 19873, 3995, 37412, 37415, 3996,
19860, 19861, 34703, 19872, 32228, 24343, 2658, 17663, 19901, 19940,
29612, 10079, 29614, 6693, 39764, 4050, 4052, 4051, 19863, 19865, 19864,
37048, 19934, 39601, 19946, 30726, 11347, 37395, 39751, 31484, 30722,
30721, 24277, 32160, 30836, 32057, 34957, 39275, 26610, 25303, 26431,
34670, 34671, 39665, 982, 16845, 25417, 38280, 24261, 32151, 17671,
22891, 22890, 24208, 24207, 24257, 25325, 25308, 38231, 25443, 39657,
39658, 39659, 39733, 39736, 26611, 26605, 26614, 26608, 26613, 26607,
26612, 26606, 26615, 26609, 38381, 11496, 978, 8130, 32114, 25311, 25315,
25305, 25309, 25320, 25307, 25312, 25319, 25310, 25321, 25324, 5027,
4772, 4900, 4773, 4964, 4837, 4901, 4774, 4996, 4869, 4933, 4806, 4965,
4838, 4902, 4775, 5012, 4885, 4949, 4822, 4981, 4854, 4918, 4791, 4997,
4870, 4934, 4807, 4966, 4839, 4903, 4776, 5020, 4893, 4957, 4830, 4989,
4862, 4926, 4799, 5005, 4878, 4942, 4815, 4974, 4847, 4911, 4784, 5013,
4886, 4950, 4823, 4982, 4855, 4919, 4792, 4998, 4871, 4935, 4808, 4967,
4840, 4904, 4777, 5024, 4897, 4961, 4834, 4993, 4866, 4930, 4803, 5009,
4882, 4946, 4819, 4978, 4851, 4915, 4788, 5017, 4890, 4954, 4827, 4986,
4859, 4923, 4796, 5002, 4875, 4939, 4812, 4971, 4844, 4908, 4781, 5021,
4894, 4958, 4831, 4990, 4863, 4927, 4800, 5006, 4879, 4943, 4816, 4975,
4848, 4912, 4785, 5014, 4887, 4951, 4824, 4983, 4856, 4920, 4793, 4999,
4872, 4936, 4809, 4968, 4841, 4905, 4778, 5026, 4899, 4963, 4836, 4995,
4868, 4932, 4805, 5011, 4884, 4948, 4821, 4980, 4853, 4917, 4790, 5019,
4892, 4956, 4829, 4988, 4861, 4925, 4798, 5004, 4877, 4941, 4814, 4973,
4846, 4910, 4783, 5023, 4896, 4960, 4833, 4992, 4865, 4929, 4802, 5008,
4881, 4945, 4818, 4977, 4850, 4914, 4787, 5016, 4889, 4953, 4826, 4985,
4858, 4922, 4795, 5001, 4874, 4938, 4811, 4970, 4843, 4907, 4780, 5025,
4898, 4962, 4835, 4994, 4867, 4931, 4804, 5010, 4883, 4947, 4820, 4979,
4852, 4916, 4789, 5018, 4891, 4955, 4828, 4987, 4860, 4924, 4797, 5003,
4876, 4940, 4813, 4972, 4845, 4909, 4782, 5022, 4895, 4959, 4832, 4991,
4864, 4928, 4801, 5007, 4880, 4944, 4817, 4976, 4849, 4913, 4786, 5015,
4888, 4952, 4825, 4984, 4857, 4921, 4794, 5000, 4873, 4937, 4810, 4969,
4842, 4906, 4779, 32332, 32331, 24444, 32277, 24268, 32333, 24446, 32279,
11452, 38362, 38399, 11476, 24448, 32281, 24428, 32325, 32334, 32251,
38364, 11456, 32264, 32263, 32327, 32329, 32328, 24393, 32271, 24447,
32280, 24370, 32248, 24390, 32243, 29571, 29551, 29577, 29549, 34192,
34205, 29576, 29548, 34189, 34204, 32351, 17556, 34190, 29546, 17557,
32352, 29547, 29575, 39590, 2559, 2558, 2561, 2562, 32229, 24342, 37904,
4462, 37906, 37905, 25399, 25363, 975, 8127, 32238, 24359, 33028, 32256,
24375, 32247, 24266, 38402, 24220, 24219, 38219, 38218, 24221, 38220,
24218, 38217, 24407, 32294, 38376, 11491, 24401, 32288, 38373, 11488,
24406, 32293, 38375, 11490, 24400, 32287, 38372, 11487, 24403, 38371,
32292, 11485, 24405, 24399, 32290, 32285, 24404, 24398, 32291, 32286,
38370, 11486, 32126, 16930, 37696, 24363, 32240, 32239, 24544, 24366,
18282, 34773, 24365, 34943, 24316, 32131, 38228, 11420, 38018, 41141,
41142, 24308, 32197, 24310, 32199, 41136, 41132, 41137, 41133, 24289,
32175, 24287, 32172, 24286, 32173, 24214, 32107, 24215, 32113, 11360,
11385, 24223, 32117, 11335, 39308, 27033, 32112, 27034, 960, 5, 34324,
34325, 38121, 32063, 961, 32064, 30111, 30110, 27032, 27031, 27026,
27025, 27030, 27028, 27029, 27027, 32085, 16892, 16891, 16889, 16890,
6632, 6920, 6907, 6911, 6908, 6633, 6625, 6634, 38216, 6915, 6638, 6853,
6921, 6624, 6626, 34634, 34629, 34700, 34686, 34687, 38154, 37997, 37995,
32555, 37994, 32189, 24294, 39272, 4475, 4476, 4043, 37703, 37704, 39690,
3942, 24313, 32202, 24231, 32127, 20788, 37630, 20865, 11413, 34577,
20790, 33048, 16931, 16932, 20631, 18166, 37386, 11433, 11434, 3921,
3962, 39650, 3869, 16945, 16948, 16944, 16947, 16943, 16946, 32424,
32058, 34151, 32059, 3857, 3856, 11367, 38014, 24330, 32215, 37705,
27777, 28972, 28970, 28971, 28980, 28979, 28975, 28976, 38156, 38155,
28974, 28180, 34798, 31923, 17583, 20946, 20938, 6925, 980, 24661, 24662,
24663, 20939, 31925, 20943, 20940, 20944, 20942, 20945, 20941, 21091,
22892, 41138, 41139, 41140, 31758, 31763, 31761, 31757, 31760, 31759,
31762, 27770, 27771, 27773, 27772, 31754, 31755, 39325, 28473, 28472,
32763, 34071, 28468, 28469, 6854, 28470, 6648, 31756, 27774, 28471,
20961, 32234, 41134, 374, 20957, 38205, 38206, 20956, 20955, 38207,
38203, 20954, 38202, 20953, 38204, 20958, 8143, 8149, 11368, 11369, 8144,
25291, 25299, 11358, 11359, 38152, 38153, 34010, 34009, 25296, 25293,
25301, 25292, 25300, 25290, 25294, 25289, 34061, 25298, 25297, 41135,
41131, 16937, 20632, 38012, 38013, 37698, 37697, 33854, 8609, 16938, 365,
1060, 16927, 31764, 16928, 11348, 38147, 37406, 16936, 16940, 24561,
18301, 24562, 18302, 24553, 18288, 24556, 18291, 24554, 18289, 24555,
18290, 24552, 18292, 24546, 18284, 24545, 18283, 24543, 18280, 24541,
18278, 24540, 18277, 24539, 18281, 24542, 18279, 33995, 33993, 33996,
33994, 11395, 11394, 11391, 11390, 33853, 33852, 33851, 33850, 11361,
11363, 11362, 18296, 18285, 24550, 18299, 24551, 18300, 34069, 22900,
34070, 22901, 16933, 31844, 34789, 31845, 34790, 31847, 34792, 31843,
34788, 31846, 34791, 31842, 34787, 11364, 11373, 34784, 34956, 34783,
34955, 34782, 34954, 34781, 34953, 34776, 34948, 34777, 34949, 34775,
34947, 34778, 34950, 34455, 34542, 8138, 8140, 8139, 8141, 34771, 34942,
34772, 34941, 34945, 34944, 16844, 31662, 37990, 17635, 29543, 33027,
33033, 33030, 31485, 39274, 11382, 39273, 11380, 25302, 33034, 33032,
33031, 11349, 11377, 11371, 32067, 11151, 39290, 39289, 11419, 31249,
31248, 38017, 38020, 38011, 38024, 38023, 11393, 11392, 38021, 22889,
11376, 39762, 28981, 29560, 29587, 34202, 34215, 24271, 24397, 38366,
11458, 29557, 29584, 34199, 34212, 24273, 38223, 32260, 32261, 24379,
24380, 34570, 34563, 34573, 34567, 10965, 10966, 10964, 10963, 11331,
3948, 39691, 4041, 39763, 3982, 39710, 39688, 3939, 20560, 3943, 3965,
39702, 3968, 39706, 4001, 4002, 39723, 3941, 39689, 4038, 39759, 24217,
37399, 24216, 25313, 24436, 24435, 24437, 24438, 24373, 24383, 24382,
24431, 24433, 24432, 24367, 39589, 16929, 32060, 24360, 32246, 32245,
24462, 32341, 32061, 32236, 37695, 24362, 24361, 32237, 11472, 33025,
33023, 39703, 4003, 39724, 3992, 39714, 19893, 19906, 19870, 19868,
19871, 33997, 2656, 33998, 2655, 3698, 33024, 24413, 38385, 32310, 11461,
24275, 38227, 29582, 29555, 34197, 34210, 24425, 38396, 32322, 11473,
8135, 973, 24424, 38387, 32321, 11463, 41412, 41412, 29583, 29556, 34198,
34211, 24415, 38395, 32312, 11471, 20581, 39303, 24414, 38386, 32311,
11462, 24426, 38397, 32323, 11474, 24396, 38365, 32274, 11460, 970, 971,
969, 972, 32051, 32052, 29455, 29456, 17642, 32275, 16935, 35055, 37410,
37414, 37411, 37413, 3955, 4035, 3997, 3929, 11465, 11466, 38389, 38390,
24418, 32315, 24417, 32314, 3872, 3873, 3874, 3875, 3876, 3878, 3877,
3879, 32098, 32099, 32096, 32097, 32093, 32095, 32092, 32094, 38410,
38215, 31057, 31056, 31058, 2800, 6923, 6637, 4008, 3919, 38122, 20559,
4042, 3972, 3964, 3967, 3970, 29461, 37922, 4450, 24574, 32408, 39680,
32409, 34527, 38198, 18828, 31770, 31769, 31768, 31767, 37989, 31869,
2576, 20615, 31643, 29238, 39707, 3922, 38034, 10075, 19843, 41220,
22725, 1055, 97, 39413, 31781, 24242, 32135, 34716, 34717, 24434, 38401,
32330, 11478, 16950, 16949, 32853, 32550, 32548, 32549, 32547, 32551,
32552, 16934, 38209, 32844, 11416, 31404, 32074, 20088, 18066, 18068,
18102, 18076, 18072, 18103, 18110, 18073, 18109, 18082, 18078, 18077,
18071, 18113, 18084, 18085, 18086, 18087, 18089, 18091, 18095, 18099,
18112, 18074, 18111, 18088, 18090, 18092, 18101, 18070, 18094, 18105,
18104, 18106, 18096, 18108, 18097, 18098, 18107, 18080, 18067, 18079,
18075, 18081, 18093, 18100, 18083, 18069, 18114, 18116, 18150, 18124,
18120, 18151, 18158, 18121, 18157, 18130, 18126, 18125, 18119, 18161,
18132, 18133, 18134, 18135, 18137, 18139, 18143, 18147, 18160, 18122,
18159, 18136, 18138, 18140, 18149, 18118, 18142, 18153, 18152, 18154,
18144, 18156, 18145, 18146, 18155, 18128, 18115, 18127, 18123, 18129,
18141, 18148, 18131, 18117, 23124, 23771, 23127, 23218, 23236, 23505,
23997, 23067, 23690, 23113, 23750, 23382, 24164, 22945, 23146, 23286,
23287, 24117, 23359, 24134, 24116, 23072, 23697, 24062, 23618, 24038,
23852, 23430, 24189, 27898, 23262, 23386, 8617, 8711, 8667, 8761, 8631,
8725, 8628, 8722, 8672, 8766, 8662, 8756, 8666, 8760, 8633, 8727, 8664,
8758, 8670, 8764, 8636, 8730, 8641, 8735, 8673, 8767, 8674, 8768, 8637,
8731, 8642, 8736, 8669, 8763, 8671, 8765, 8663, 8757, 8665, 8759, 8675,
8769, 8639, 8733, 8635, 8729, 8668, 8762, 8658, 8752, 8625, 8719, 8653,
8747, 8621, 8715, 8626, 8720, 8627, 8721, 8622, 8716, 8651, 8745, 8661,
8755, 8623, 8717, 8649, 8743, 8652, 8746, 8616, 8710, 8624, 8718, 8644,
8738, 8645, 8739, 8640, 8734, 8647, 8741, 8646, 8740, 8643, 8737, 8650,
8744, 8648, 8742, 8656, 8750, 8654, 8748, 8655, 8749, 8657, 8751, 8771,
8772, 8773, 8775, 8776, 8770, 8774, 8619, 8713, 8620, 8714, 8615, 8614,
8613, 8618, 8712, 41412, 41412, 41412, 41412, 41412, 8709, 8706, 8707,
8708, 8704, 8705, 8777, 17925, 17951, 17936, 17957, 17958, 17956, 17946,
17947, 17959, 17940, 17949, 17952, 17954, 17960, 17942, 17945, 17950,
17944, 17948, 17961, 17941, 17939, 17935, 17955, 17943, 17931, 17934,
17938, 17933, 17932, 17953, 17937, 17926, 17930, 17928, 17963, 17927,
17929, 41412, 17962, 41412, 41412, 41412, 41412, 41412, 17924, 41412,
41412, 37645, 37665, 37666, 37646, 37648, 37635, 37674, 37661, 37664,
37662, 37663, 37684, 37673, 37649, 37639, 37651, 37667, 37634, 37643,
37668, 37672, 37650, 37640, 37679, 37644, 37685, 37659, 37633, 37641,
37675, 37676, 37677, 37638, 37642, 37678, 37687, 37669, 37670, 37647,
37637, 37632, 37652, 37654, 37653, 37655, 37656, 37671, 37657, 37680,
37681, 37682, 37658, 37636, 37660, 37683, 37686, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 37688, 37689, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
37631, 17385, 17202, 17289, 17329, 17305, 16992, 17367, 17030, 17220,
17211, 17112, 17445, 17060, 17045, 17376, 17336, 17021, 17236, 17249,
17097, 17101, 17100, 17099, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 17319, 17325, 17323, 17320, 17322, 17321, 17324,
41412, 17011, 17017, 17015, 17012, 17014, 17013, 17016, 41412, 17435,
17441, 17439, 17436, 17438, 17437, 17440, 41412, 17004, 17010, 17008,
17005, 17007, 17006, 17009, 41412, 17271, 17277, 17275, 17272, 17274,
17273, 17276, 41412, 17180, 17186, 17184, 17181, 17183, 17182, 17185,
41412, 17412, 17418, 17416, 17413, 17415, 17414, 17417, 41412, 17123,
17129, 17127, 17124, 17126, 17125, 17128, 41412, 8197, 8235, 8232, 8199,
8229, 8230, 8236, 8203, 8204, 8205, 8212, 8234, 8206, 8200, 8228, 8225,
8227, 8231, 8215, 8214, 8233, 8201, 8237, 8211, 8198, 8224, 8220, 8222,
8209, 8223, 8196, 8208, 32109, 32108, 24293, 32179, 24235, 32124, 31946,
31945, 11334, 24296, 32187, 31954, 24276, 32159, 11675, 31247, 17634,
32069, 20622, 11333, 11457, 38349, 11336, 11384, 20970, 31206, 20618,
37701, 24256, 32149, 37700, 37699, 24325, 32193, 37931, 37935, 4455,
4458, 24281, 32164, 24234, 32129, 38150, 30705, 34630, 17601, 32084,
39306, 32344, 39823, 38126, 31944, 31956, 38137, 10662, 10663, 38127,
37920, 38162, 37417, 34730, 39309, 39806, 6104, 11352, 32083, 11355,
10669, 11372, 20971, 20972, 25335, 25336, 11370, 11330, 38022, 27135,
31246, 31903, 8780, 8817, 8818, 37789, 27134, 27136, 24291, 32177, 24290,
32176, 37912, 37916, 4441, 4445, 30112, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
8021, 7974, 8024, 8023, 8022, 8017, 7945, 8042, 8056, 8055, 7978, 8025,
8038, 8037, 8007, 8006, 8005, 8004, 8034, 8043, 8033, 8032, 7993, 7992,
7996, 8020, 41412, 7977, 8040, 8014, 7979, 8012, 7972, 8048, 8047, 7986,
8016, 8015, 8026, 7976, 7980, 8001, 7943, 7985, 8036, 8035, 7948, 8031,
7959, 8054, 8053, 8052, 8051, 8009, 8039, 8019, 7984, 8057, 7947, 7946,
8008, 8013, 7990, 7989, 7988, 8044, 7975, 8050, 8049, 7963, 8027, 7995,
7962, 7961, 7987, 7971, 8028, 8046, 8045, 7973, 7955, 8003, 8002, 7958,
7956, 8011, 8010, 8018, 7949, 7965, 7957, 7967, 7953, 7983, 7982, 7981,
7951, 7994, 7970, 7944, 7991, 7952, 7969, 7960, 8029, 8030, 7954, 8000,
7950, 7998, 7966, 7999, 7968, 8041, 7997, 7964, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21290,
21272, 21206, 21326, 21314, 21258, 21358, 21273, 21286, 21269, 21221,
21225, 21210, 21195, 21261, 21347, 21293, 21264, 21298, 21375, 21332,
21303, 21255, 21360, 21204, 21315, 21191, 21295, 21166, 21284, 21220,
21218, 21313, 21241, 21243, 21223, 21173, 21372, 21198, 21306, 21260,
21342, 21265, 21193, 21331, 21282, 21304, 21373, 21291, 21356, 21216,
21321, 21207, 21275, 21359, 21322, 21181, 21340, 21182, 21334, 21252,
21249, 21212, 21250, 21183, 21301, 21312, 21205, 21168, 21343, 21288,
21345, 21311, 21285, 21355, 21266, 21335, 21200, 21366, 21211, 21194,
21240, 21189, 21333, 21365, 21232, 21190, 21227, 21209, 21248, 21327,
21229, 21197, 21213, 21296, 21262, 21276, 21350, 21339, 21271, 21377,
21230, 21177, 21323, 21208, 21368, 21344, 21203, 21226, 21328, 21164,
21337, 21330, 21354, 21244, 21188, 21338, 21169, 21305, 21324, 21263,
21289, 21319, 21238, 21294, 21167, 21297, 21217, 21184, 21277, 21278,
21316, 21165, 21280, 21351, 21292, 21178, 21336, 21196, 21245, 21349,
21259, 21174, 21364, 21192, 21367, 21317, 21257, 21329, 21361, 21185,
21299, 21170, 21318, 21308, 21307, 21239, 21180, 21187, 21171, 21281,
21363, 21199, 21371, 21202, 21362, 21242, 21274, 21247, 21283, 21325,
21320, 21300, 21176, 21374, 21228, 21267, 21346, 21270, 21341, 21268,
21370, 21235, 21219, 21253, 21236, 21256, 21179, 21348, 21251, 21231,
21309, 21186, 21246, 21233, 21172, 21310, 21201, 21369, 21254, 21376,
21279, 21175, 21224, 21237, 21353, 21215, 21302, 21287, 21222, 21352,
21214, 21357, 21234, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20655,
20653, 20654, 20652, 20667, 20663, 20662, 20659, 20660, 20661, 20657,
20656, 20664, 20658, 20668, 20666, 20752, 20651, 20750, 11140, 20990,
20751, 20650, 20670, 24213, 32106, 24232, 32125, 24228, 32122, 24307,
32196, 24222, 32116, 31783, 18059, 24304, 32191, 24309, 32198, 24312,
32201, 24311, 32200, 39588, 32066, 11366, 25333, 31784, 19739, 19732,
19729, 19735, 19734, 19737, 19736, 19740, 19738, 20748, 20747, 20669,
20746, 19398, 19397, 39594, 39281, 39284, 39282, 39285, 39283, 6906,
20744, 19733, 19731, 19730, 39280, 25992, 31401, 20749, 20745, 41412,
20464, 20450, 20466, 20544, 20468, 20546, 20465, 20543, 20467, 20545,
20505, 20495, 20507, 20497, 20509, 20499, 20506, 20496, 20508, 20498,
20469, 20530, 20471, 20532, 20473, 20534, 20470, 20531, 20472, 20533,
20525, 20490, 20527, 20492, 20463, 20529, 20494, 20526, 20491, 20528,
20493, 20485, 20487, 20489, 20486, 20488, 20500, 20480, 20515, 20502,
20474, 20517, 20504, 20483, 20519, 20501, 20481, 20516, 20503, 20482,
20518, 20510, 20512, 20514, 20511, 20513, 20457, 20539, 20459, 20541,
20458, 20540, 20520, 20522, 20524, 20521, 20523, 20453, 20535, 20537,
20536, 20538, 20484, 20542, 20460, 20461, 41412, 41412, 8405, 8404,
21616, 21615, 20548, 20547, 20449, 21613, 21543, 21472, 21545, 21606,
21547, 21608, 21544, 21605, 21546, 21607, 21568, 21558, 21570, 21560,
21572, 21562, 21569, 21559, 21571, 21561, 21548, 21593, 21550, 21595,
21552, 21597, 21549, 21594, 21551, 21596, 21583, 21553, 21585, 21555,
21530, 21587, 21557, 21584, 21554, 21586, 21556, 21510, 21512, 21514,
21511, 21513, 21563, 21487, 21573, 21565, 21481, 21575, 21567, 21490,
21577, 21564, 21488, 21574, 21566, 21489, 21576, 21505, 21491, 21508,
21506, 21507, 21535, 21602, 21537, 21604, 21536, 21603, 21578, 21580,
21582, 21579, 21581, 21531, 21598, 21600, 21599, 21601, 21509, 21592,
21525, 21526, 21588, 21590, 21589, 21591, 21612, 21614, 21611, 21609,
21610, 41412, 41412, 41412, 41412, 41412, 4422, 4430, 4429, 4427, 4426,
4433, 4398, 4418, 4386, 4414, 4428, 4424, 4431, 4435, 4411, 4417, 4421,
4432, 4410, 4416, 4420, 4366, 4402, 4378, 4383, 4367, 4384, 4369, 4409,
4371, 4379, 4372, 4380, 4385, 4391, 4376, 4397, 4434, 4399, 4388, 4394,
4405, 4401, 41412, 19651, 19695, 19652, 19657, 19658, 19660, 19687,
19698, 19673, 19674, 19676, 19678, 19685, 19681, 19677, 19684, 19653,
19663, 19697, 19664, 19688, 19700, 19645, 19640, 19694, 19639, 19650,
19686, 19671, 19724, 19635, 19638, 19721, 19722, 19642, 19641, 19708,
19707, 19725, 19704, 19705, 19726, 19713, 19727, 19703, 19702, 19706,
19717, 19643, 19723, 19644, 19728, 19696, 19659, 19662, 19661, 19675,
19682, 19679, 19680, 19683, 19654, 19656, 19655, 19649, 19670, 19668,
19665, 19666, 19669, 19667, 19647, 19648, 19690, 19691, 19693, 19692,
19689, 19672, 19701, 19710, 19712, 19711, 19646, 19699, 19709, 19714,
19715, 19716, 19719, 19718, 19720, 19636, 19637, 41412, 20644, 20647,
20646, 20642, 20640, 20636, 20643, 20638, 20634, 20637, 20645, 20641,
20635, 20648, 20649, 20639, 4423, 4412, 4425, 4389, 4382, 4381, 4408,
4404, 4396, 4373, 4392, 4377, 4395, 4400, 4368, 4370, 4375, 4407, 4403,
4393, 4364, 4365, 4363, 4362, 4387, 4419, 4413, 4361, 4390, 4415, 4406,
4374, 8088, 8091, 8092, 8090, 8078, 8064, 8070, 8059, 8069, 8082, 8071,
8067, 8060, 8068, 8065, 8094, 8058, 8077, 8073, 8086, 8093, 8063, 8072,
8081, 8080, 8087, 8085, 8074, 8076, 8089, 8084, 8079, 8061, 8066, 8075,
8095, 8062, 8083, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 20665, 21528, 21540, 21541, 21529, 21539, 21515, 21517, 21519,
21516, 21518, 21542, 21520, 21522, 21524, 21521, 21523, 31261, 31265,
31277, 31271, 31263, 31269, 31273, 31279, 31254, 31252, 31259, 31275,
31267, 31257, 31262, 31266, 31278, 31272, 31264, 31270, 31274, 31280,
31255, 31253, 31260, 31276, 31268, 31258, 31256, 31318, 31317, 41412,
31316, 31312, 31310, 31291, 31289, 31309, 31301, 31286, 31295, 31311,
31294, 31288, 31314, 31313, 31293, 31285, 31308, 31306, 31315, 31303,
31296, 31304, 31287, 31282, 31292, 31299, 31283, 31305, 31307, 31284,
31297, 31281, 31290, 31298, 31302, 31300, 6725, 6713, 6735, 6714, 6879,
6893, 6881, 6863, 6860, 6876, 6874, 6856, 31400, 6894, 6900, 6899, 6896,
6895, 6898, 6897, 6902, 6901, 6880, 6882, 6888, 6887, 6884, 6883, 6673,
6677, 6689, 6683, 6675, 6681, 6685, 6666, 6664, 6662, 6671, 6687, 6679,
6669, 6674, 6678, 6690, 6684, 6676, 6682, 6686, 6667, 6665, 6663, 6672,
6688, 6680, 6670, 6800, 6799, 6668, 22723, 6748, 6744, 6742, 6710, 6708,
6740, 6731, 6705, 6723, 6743, 6721, 6707, 6746, 6745, 6719, 6703, 6734,
6739, 6712, 6736, 6724, 6737, 6706, 6699, 6715, 6730, 6720, 6709, 6733,
6704, 6741, 6696, 6747, 6727, 6700, 6698, 6711, 6701, 6716, 6717, 6729,
6718, 6728, 6738, 6732, 6702, 6726, 6694, 6722, 6886, 6885, 6890, 6889,
6862, 6864, 6870, 6869, 6866, 6865, 6868, 6867, 6872, 6871, 6859, 20735,
20738, 20739, 20677, 20740, 20736, 20737, 20676, 20742, 20743, 20741,
20709, 34415, 34381, 34383, 24660, 6794, 6796, 6798, 6795, 6797, 6757,
6759, 6761, 6758, 6760, 6777, 6779, 6781, 6778, 6780, 6782, 6784, 6786,
6783, 6785, 6767, 6769, 6771, 6768, 6770, 6752, 6754, 6756, 6753, 6755,
6762, 6764, 6766, 6763, 6765, 6791, 6793, 6792, 6772, 6774, 6776, 6773,
6775, 6787, 6789, 6788, 6790, 34379, 34340, 34342, 34341, 34343, 34418,
34419, 34582, 34382, 34375, 34508, 34512, 34427, 34425, 34426, 34390,
34391, 34395, 34394, 34441, 34393, 34428, 34431, 34429, 34430, 34396,
34397, 34438, 34439, 34440, 34437, 34436, 34548, 34549, 34556, 34550,
34551, 34366, 34370, 34371, 34561, 34501, 34502, 34403, 34515, 34516,
34347, 34524, 34522, 34523, 34350, 34410, 34409, 34349, 34411, 34404,
34521, 34519, 34405, 34520, 34518, 34352, 34525, 34351, 34408, 34526,
34406, 34407, 34465, 34466, 34469, 34468, 34467, 34475, 34476, 34477,
34472, 34473, 34474, 34580, 34579, 34581, 34543, 34544, 34546, 34545,
34541, 34540, 34562, 20733, 20734, 20716, 20718, 20725, 20724, 20731,
20729, 20720, 20727, 20719, 20722, 20715, 20717, 20726, 20723, 20732,
20730, 20721, 20728, 20710, 20714, 20713, 20712, 20711, 34413, 34365,
34345, 34348, 34513, 34529, 34367, 34369, 34368, 34423, 34376, 34380,
34377, 34378, 34357, 34517, 34500, 34482, 34464, 34424, 34446, 34470,
34400, 34354, 34443, 34530, 34503, 34483, 34484, 34497, 34447, 34416,
34442, 34494, 34398, 34560, 34485, 34498, 34374, 34449, 34389, 34504,
34486, 34479, 34358, 34432, 34481, 34360, 34463, 34435, 34480, 34359,
34462, 34434, 34459, 34460, 34514, 34445, 34496, 34399, 34537, 34538,
34539, 34534, 34505, 34487, 34499, 34535, 34506, 34488, 34490, 34451,
34491, 34536, 34507, 34489, 34492, 34452, 34493, 34444, 34461, 34344,
34353, 34363, 34364, 34361, 34356, 34372, 34401, 34402, 34412, 34417,
34448, 34433, 34450, 34456, 34457, 34454, 34458, 34471, 34478, 34495,
34531, 34532, 34528, 34533, 34557, 34558, 34578, 34346, 34338, 20708,
20693, 20681, 20700, 20699, 20706, 20704, 20695, 20702, 20694, 20697,
20692, 20680, 20701, 20698, 20707, 20705, 20696, 20703, 20682, 20690,
20688, 20687, 20684, 20683, 20686, 20685, 20691, 20689, 20678, 20679,
34392, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20426,
20429, 20390, 20440, 20437, 20385, 20423, 20402, 20419, 20436, 20414,
20420, 20395, 20397, 20407, 20441, 20394, 20438, 20378, 20384, 20382,
20401, 20421, 20415, 20403, 20400, 20408, 20399, 20424, 20427, 20406,
20392, 20416, 20398, 20413, 20393, 20428, 20411, 20409, 20388, 20387,
20405, 20383, 20386, 20396, 20412, 20410, 20430, 20417, 20425, 20422,
20434, 20389, 20432, 20380, 20431, 20433, 20435, 20391, 20439, 20404,
20418, 20379, 20381, 40345, 40352, 40344, 40351, 40349, 40350, 40347,
40348, 41120, 41121, 41118, 41119, 41117, 41115, 41116, 41124, 41125,
41122, 41123, 41127, 41126, 40992, 40012, 40013, 40006, 40011, 40009,
40010, 40007, 40008, 40016, 40017, 40014, 40015, 39997, 39995, 39996,
40020, 40021, 40018, 40019, 40005, 40003, 40004, 40001, 40002, 39994,
40000, 39999, 39998, 40026, 40027, 40022, 40025, 40024, 40023, 40724,
40725, 40719, 40723, 40722, 40720, 40721, 40728, 40729, 40726, 40727,
40713, 40711, 40712, 40732, 40733, 40730, 40731, 40717, 40718, 40710,
40716, 40715, 40714, 40738, 40739, 40734, 40737, 40736, 40735, 39980,
39981, 39974, 39979, 39977, 39978, 39975, 39976, 39984, 39985, 39982,
39983, 39965, 39963, 39964, 39988, 39989, 39986, 39987, 39973, 39971,
39972, 39969, 39970, 39962, 39968, 39967, 39966, 39992, 39993, 39990,
39991, 40527, 40528, 40522, 40526, 40525, 40523, 40524, 40531, 40532,
40529, 40530, 40535, 40536, 40533, 40534, 40541, 40542, 40537, 40540,
40539, 40538, 40547, 40548, 40543, 40546, 40545, 40544, 40270, 40271,
40265, 40269, 40268, 40266, 40267, 40274, 40275, 40272, 40273, 40259,
40257, 40258, 40278, 40279, 40276, 40277, 40263, 40264, 40256, 40262,
40261, 40260, 40284, 40280, 40283, 40282, 40281, 40506, 40507, 40501,
40505, 40504, 40502, 40503, 40510, 40511, 40508, 40509, 40494, 40495,
40492, 40493, 40514, 40515, 40512, 40513, 40521, 40520, 40499, 40500,
40491, 40498, 40497, 40496, 40518, 40519, 40516, 40517, 40151, 40152,
40149, 40150, 40147, 40148, 40145, 40146, 40144, 40142, 40143, 40161,
40162, 40157, 40160, 40159, 40158, 40155, 40156, 40153, 40154, 40970,
40971, 40964, 40969, 40967, 40968, 40965, 40966, 40974, 40975, 40972,
40973, 40978, 40979, 40976, 40977, 40963, 40962, 40984, 40985, 40980,
40983, 40982, 40981, 40990, 40991, 40986, 40989, 40988, 40987, 40129,
40130, 40124, 40128, 40127, 40125, 40126, 40136, 40137, 40134, 40135,
40118, 40117, 40140, 40141, 40138, 40139, 40133, 40131, 40132, 40122,
40123, 40116, 40121, 40120, 40119, 40949, 40950, 40944, 40948, 40947,
40945, 40946, 40956, 40957, 40954, 40955, 40937, 40938, 40935, 40936,
40960, 40961, 40958, 40959, 40953, 40951, 40952, 40942, 40943, 40934,
40941, 40940, 40939, 40103, 40104, 40098, 40102, 40101, 40099, 40100,
40110, 40111, 40108, 40109, 40092, 40090, 40091, 40114, 40115, 40112,
40113, 40107, 40105, 40106, 40096, 40097, 40089, 40095, 40094, 40093,
40553, 40554, 40549, 40552, 40551, 40550, 40560, 40561, 40558, 40559,
40564, 40565, 40562, 40563, 40557, 40555, 40556, 40570, 40571, 40566,
40569, 40568, 40567, 40300, 40301, 40294, 40299, 40297, 40298, 40295,
40296, 40304, 40305, 40302, 40303, 40289, 40288, 40286, 40287, 40285,
40293, 40291, 40292, 40290, 40698, 40699, 40693, 40697, 40696, 40694,
40695, 40702, 40700, 40701, 40687, 40685, 40686, 40708, 40709, 40706,
40707, 40705, 40703, 40704, 40691, 40692, 40684, 40690, 40689, 40688,
40238, 40239, 40233, 40237, 40236, 40234, 40235, 40248, 40249, 40246,
40247, 40227, 40225, 40226, 40245, 40243, 40244, 40242, 40240, 40241,
40231, 40232, 40224, 40230, 40229, 40228, 40254, 40255, 40250, 40253,
40252, 40251, 40453, 40454, 40447, 40452, 40450, 40451, 40448, 40449,
40457, 40458, 40455, 40456, 40437, 40438, 40435, 40436, 40461, 40462,
40459, 40460, 40446, 40444, 40445, 40442, 40443, 40434, 40441, 40440,
40439, 40467, 40468, 40463, 40466, 40465, 40464, 40207, 40208, 40201,
40206, 40204, 40205, 40202, 40203, 40211, 40212, 40209, 40210, 40194,
40195, 40192, 40193, 40219, 40220, 40217, 40218, 40215, 40216, 40213,
40214, 40199, 40200, 40191, 40198, 40197, 40196, 40420, 40421, 40415,
40419, 40418, 40416, 40417, 40424, 40425, 40422, 40423, 40409, 40407,
40408, 40432, 40433, 40430, 40431, 40428, 40429, 40426, 40427, 40413,
40414, 40406, 40412, 40411, 40410, 40167, 40168, 40163, 40166, 40164,
40165, 40181, 40182, 40179, 40180, 40172, 40173, 40170, 40171, 40189,
40190, 40187, 40188, 40185, 40186, 40183, 40184, 40177, 40178, 40169,
40176, 40175, 40174, 40490, 40489, 40483, 40484, 40481, 40482, 40472,
40470, 40471, 40487, 40488, 40485, 40486, 40480, 40478, 40479, 40476,
40477, 40469, 40475, 40474, 40473, 40319, 40320, 40313, 40318, 40316,
40317, 40314, 40315, 40323, 40324, 40321, 40322, 40308, 40309, 40306,
40307, 40327, 40328, 40325, 40326, 40312, 40310, 40311, 40580, 40578,
40579, 40583, 40584, 40581, 40582, 40573, 40574, 40572, 40587, 40588,
40585, 40586, 40577, 40575, 40576, 40223, 40222, 40221, 40338, 40339,
40336, 40337, 40331, 40332, 40329, 40330, 40342, 40343, 40340, 40341,
40335, 40333, 40334, 41004, 41005, 41002, 41003, 40995, 40993, 40994,
41001, 40999, 41000, 40998, 40996, 40997, 41067, 41068, 41062, 41066,
41065, 41063, 41064, 41103, 41104, 41101, 41102, 41056, 41054, 41055,
41107, 41108, 41105, 41106, 41100, 41098, 41099, 41060, 41061, 41053,
41059, 41058, 41057, 41113, 41114, 41109, 41112, 41111, 41110, 40073,
40074, 40067, 40072, 40070, 40071, 40068, 40069, 40077, 40078, 40075,
40076, 40058, 40056, 40057, 40081, 40082, 40079, 40080, 40066, 40064,
40065, 40062, 40063, 40055, 40061, 40060, 40059, 40087, 40088, 40083,
40086, 40085, 40084, 41081, 41082, 41075, 41080, 41078, 41079, 41076,
41077, 41085, 41086, 41083, 41084, 41074, 41072, 41073, 41071, 41069,
41070, 41091, 41087, 41090, 41089, 41088, 41096, 41097, 41092, 41095,
41094, 41093, 40670, 40671, 40665, 40669, 40668, 40666, 40667, 40674,
40675, 40672, 40673, 40658, 40657, 40664, 40663, 40683, 40682, 40662,
40656, 40661, 40660, 40659, 40680, 40681, 40676, 40679, 40678, 40677,
40915, 40916, 40910, 40914, 40913, 40911, 40912, 40922, 40923, 40920,
40921, 40904, 40902, 40903, 40926, 40927, 40924, 40925, 40919, 40917,
40918, 40908, 40909, 40901, 40907, 40906, 40905, 40932, 40933, 40928,
40931, 40930, 40929, 40851, 40852, 40846, 40850, 40849, 40847, 40848,
40858, 40859, 40856, 40857, 40862, 40863, 40860, 40861, 40855, 40853,
40854, 40866, 40867, 40864, 40865, 40872, 40873, 40868, 40871, 40870,
40869, 41037, 41038, 41035, 41036, 41029, 41027, 41028, 41045, 41046,
41043, 41044, 41041, 41042, 41039, 41040, 41033, 41034, 41026, 41032,
41031, 41030, 41051, 41052, 41047, 41050, 41049, 41048, 40039, 40040,
40037, 40038, 40031, 40032, 40029, 40030, 40047, 40048, 40045, 40046,
40043, 40044, 40041, 40042, 40036, 40028, 40035, 40034, 40033, 40053,
40054, 40049, 40052, 40051, 40050, 40819, 40818, 40798, 40797, 40810,
40811, 40808, 40809, 40806, 40807, 40804, 40805, 40802, 40803, 40796,
40801, 40800, 40799, 40816, 40817, 40812, 40815, 40814, 40813, 40619,
40620, 40617, 40618, 40616, 40614, 40615, 40623, 40624, 40621, 40622,
40629, 40630, 40625, 40628, 40627, 40626, 40635, 40636, 40631, 40634,
40633, 40632, 40885, 40886, 40883, 40884, 40877, 40875, 40876, 40893,
40894, 40891, 40892, 40889, 40890, 40887, 40888, 40881, 40882, 40874,
40880, 40879, 40878, 40899, 40900, 40895, 40898, 40897, 40896, 40834,
40835, 40832, 40833, 40823, 40821, 40822, 40838, 40839, 40836, 40837,
40831, 40829, 40830, 40827, 40828, 40820, 40826, 40825, 40824, 40844,
40845, 40840, 40843, 40842, 40841, 40394, 40395, 40388, 40393, 40391,
40392, 40389, 40390, 40381, 40382, 40379, 40380, 40398, 40399, 40396,
40397, 40386, 40387, 40378, 40385, 40384, 40383, 40404, 40405, 40400,
40403, 40402, 40401, 40756, 40757, 40750, 40755, 40753, 40754, 40751,
40752, 40743, 40744, 40741, 40742, 40760, 40761, 40758, 40759, 40748,
40749, 40740, 40747, 40746, 40745, 40766, 40767, 40762, 40765, 40764,
40763, 40368, 40369, 40362, 40367, 40365, 40366, 40363, 40364, 40356,
40354, 40355, 40372, 40373, 40370, 40371, 40360, 40361, 40353, 40359,
40358, 40357, 40376, 40377, 40374, 40375, 40602, 40603, 40596, 40601,
40599, 40600, 40597, 40598, 40591, 40590, 40606, 40607, 40604, 40605,
40595, 40589, 40594, 40593, 40592, 40612, 40613, 40608, 40611, 40610,
40609, 40650, 40651, 40644, 40649, 40647, 40648, 40645, 40646, 40640,
40638, 40639, 40654, 40655, 40652, 40653, 40642, 40643, 40637, 40641,
41012, 41013, 41006, 41011, 41009, 41010, 41007, 41008, 41025, 41024,
41016, 41017, 41014, 41015, 41022, 41023, 41018, 41021, 41020, 41019,
40784, 40785, 40778, 40783, 40781, 40782, 40779, 40780, 40771, 40772,
40769, 40770, 40788, 40789, 40786, 40787, 40776, 40777, 40768, 40775,
40774, 40773, 40794, 40795, 40790, 40793, 40792, 40791, 41412, 41412,
41412, 39959, 39932, 39930, 39937, 39911, 39947, 39918, 39920, 39936,
39923, 39934, 39907, 39935, 39953, 39941, 39922, 39948, 39921, 39954,
39912, 39915, 39908, 39917, 39938, 39949, 39961, 39926, 39957, 39942,
39925, 39952, 39950, 39946, 39951, 39958, 39929, 39939, 39928, 39919,
39927, 39960, 39916, 39943, 39933, 39910, 39909, 39914, 39924, 39944,
39955, 39945, 39913, 39956, 39940, 39931, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 25263, 25252, 25251, 25235, 25233,
25232, 25246, 25250, 25249, 25265, 25244, 25243, 25234, 25231, 25230,
25267, 25240, 25266, 25254, 25257, 25258, 25239, 25248, 25269, 25247,
25264, 25268, 25253, 25256, 25245, 25259, 25260, 25241, 25242, 25270,
25261, 25236, 25237, 25238, 25262, 25226, 25229, 25227, 25225, 25228,
25224, 25271, 25272, 38679, 38680, 38516, 38665, 38666, 38639, 38442,
38449, 38552, 38525, 38559, 38499, 38625, 38653, 38477, 38470, 38428,
38421, 38543, 38646, 38435, 38578, 38463, 38456, 38491, 38484, 38618,
38632, 38597, 38660, 38538, 38584, 38505, 38566, 38611, 38604, 38688,
38689, 38520, 38521, 38674, 38675, 38641, 38444, 38451, 38554, 38531,
38561, 38502, 38627, 38655, 38479, 38472, 38430, 38423, 38547, 38648,
38437, 38580, 38465, 38458, 38493, 38486, 38620, 38634, 38599, 38662,
38539, 38589, 38510, 38568, 38613, 38606, 38686, 38687, 38591, 38518,
38519, 38672, 38673, 38640, 38443, 38450, 38553, 38529, 38530, 38560,
38501, 38626, 38654, 38478, 38471, 38429, 38422, 38546, 38647, 38436,
38579, 38464, 38457, 38492, 38485, 38619, 38633, 38598, 38661, 38535,
38536, 38588, 38509, 38567, 38612, 38605, 38683, 38684, 38514, 38669,
38670, 38637, 38440, 38447, 38550, 38528, 38557, 38497, 38623, 38651,
38475, 38468, 38426, 38419, 38545, 38644, 38433, 38576, 38461, 38454,
38489, 38482, 38616, 38630, 38595, 38658, 38534, 38587, 38508, 38564,
38609, 38602, 38690, 38691, 38522, 38523, 38676, 38677, 38642, 38445,
38452, 38555, 38532, 38562, 38503, 38628, 38656, 38480, 38473, 38431,
38424, 38548, 38649, 38438, 38581, 38466, 38459, 38494, 38487, 38621,
38635, 38600, 38663, 38540, 38590, 38511, 38569, 38614, 38607, 38682,
38685, 38593, 38512, 38513, 38668, 38671, 38636, 38439, 38446, 38549,
38527, 38556, 38495, 38496, 38622, 38650, 38474, 38467, 38425, 38418,
38544, 38643, 38432, 38570, 38460, 38453, 38488, 38481, 38615, 38629,
38594, 38657, 38533, 38586, 38507, 38563, 38608, 38601, 38678, 38681,
38592, 38515, 38517, 38664, 38667, 38638, 38441, 38448, 38551, 38524,
38526, 38558, 38498, 38500, 38624, 38652, 38476, 38469, 38427, 38420,
38541, 38645, 38434, 38577, 38462, 38455, 38490, 38483, 38617, 38631,
38596, 38659, 38537, 38583, 38585, 38504, 38506, 38565, 38610, 38603,
38582, 38542, 38415, 38416, 38417, 38573, 38574, 38571, 38695, 38698,
38701, 38700, 38704, 38696, 38703, 38694, 38692, 38699, 38702, 38693,
38697, 38711, 38713, 38710, 38709, 38706, 38705, 38708, 38707, 38714,
38712, 38575, 38572, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 10415, 10616, 10304, 10463, 10254, 10557, 10359,
10518, 10300, 10459, 10380, 10543, 10288, 10447, 10247, 10544, 10408,
10609, 10356, 10515, 10256, 10559, 10357, 10516, 10296, 10455, 10289,
10448, 10353, 10512, 10410, 10611, 10255, 10558, 10399, 10577, 10396,
10574, 10397, 10575, 10379, 10542, 10286, 10445, 10301, 10460, 10430,
8251, 8243, 8194, 8244, 33999, 8218, 8207, 8221, 8217, 8226, 8219, 8216,
8213, 8249, 8238, 10429, 10433, 10310, 10469, 10308, 10467, 10420, 10621,
10298, 10457, 10306, 10465, 10260, 10585, 10268, 10594, 10264, 10589,
10263, 10588, 10266, 10592, 10344, 10503, 10394, 10572, 10302, 10461,
10297, 10456, 27910, 27947, 8202, 8210, 3462, 2824, 3465, 2826, 3461,
3437, 3454, 3464, 2853, 3463, 2829, 3434, 3440, 3439, 2827, 2833, 3453,
2852, 2846, 2832, 3449, 2840, 3444, 3450, 3443, 3447, 2822, 2818, 2850,
2849, 2844, 3456, 3446, 3457, 3458, 2851, 2816, 3430, 2845, 2848, 3433,
3459, 3431, 2813, 3442, 2831, 2838, 2855, 3436, 3441, 2817, 2841, 2842,
2843, 3445, 3432, 2815, 2814, 3460, 2854, 2830, 3435, 2828, 2819, 2835,
3438, 2834, 2837, 3455, 2825, 2839, 2836, 3452, 2823, 3451, 2847, 3448,
2812, 2820, 2821, 2809, 2808, 3466, 3468, 2811, 2810, 3467, 3469, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 27907, 27903, 27906,
27902, 27908, 27904, 27909, 27905, 27962, 27977, 28005, 27984, 27967,
27961, 27976, 28004, 27983, 27966, 27963, 27978, 28006, 27988, 27968,
27954, 27953, 27955, 27999, 28018, 28015, 28017, 28016, 27996, 28166,
28167, 23034, 23638, 23035, 23639, 23074, 23700, 23301, 24063, 23300,
24020, 22974, 23560, 22975, 23561, 23443, 23451, 22948, 23516, 22949,
23517, 22950, 23518, 22946, 23514, 22947, 23515, 22951, 23519, 23245,
23944, 23115, 23752, 23112, 23749, 23116, 23753, 22960, 23537, 23134,
23776, 23167, 23851, 23168, 23853, 23214, 23891, 23219, 23896, 23217,
23894, 23220, 23897, 23227, 23909, 23226, 23906, 23242, 23934, 23247,
23947, 23342, 24113, 23351, 24125, 23346, 24120, 23295, 24014, 23296,
24015, 23350, 24124, 23036, 23656, 23103, 23739, 22976, 23562, 28175,
23598, 23797, 23811, 23834, 23946, 23428, 24058, 24110, 23096, 23728,
23097, 23729, 23098, 23285, 24026, 23290, 24056, 23099, 23731, 23100,
23732, 23101, 23733, 27982, 27951, 28028, 23268, 23970, 23288, 23781,
23459, 23160, 23825, 22970, 23550, 23547, 23694, 22954, 23522, 23043,
23663, 23347, 24121, 23348, 24122, 23349, 24123, 23051, 23674, 23119,
23757, 23163, 23830, 23240, 23931, 23264, 23968, 23070, 23244, 23271,
23122, 23267, 23450, 23289, 23292, 23106, 22977, 22961, 23539, 23212,
23889, 23338, 24101, 23056, 23679, 23057, 23680, 23058, 23681, 23209,
23880, 22943, 23511, 22968, 23265, 23388, 22981, 23564, 23261, 23962,
23248, 23260, 23961, 23224, 23903, 22973, 23556, 22994, 23591, 22993,
23588, 23149, 23810, 23270, 23988, 23138, 23786, 23139, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27895, 27882,
27885, 27894, 23243, 23935, 23398, 27877, 28107, 23433, 23396, 23397,
23394, 23395, 23393, 34995, 34997, 35007, 34999, 34996, 34998, 35006,
34987, 34986, 34983, 34982, 35005, 34981, 34980, 34985, 34984, 34975,
34974, 34969, 34968, 34977, 34976, 34971, 34970, 34993, 34989, 34988,
34979, 34978, 34992, 34973, 34991, 34972, 34994, 34990, 35009, 35011,
35012, 35010, 35008, 35000, 35001, 35002, 35003, 35004, 41412, 41412,
41412, 29568, 29567, 29570, 29565, 29566, 29569, 29562, 29561, 29564,
29563, 41412, 41412, 41412, 41412, 41412, 41412, 31537, 31536, 31525,
31526, 31513, 31515, 31547, 31528, 31535, 31534, 31518, 31529, 31539,
31538, 31544, 31549, 31531, 31530, 31517, 31552, 31540, 31541, 31519,
31554, 31551, 31548, 31520, 31521, 31546, 31510, 31555, 31557, 31542,
31556, 31550, 31553, 31545, 31524, 31543, 31562, 31563, 31533, 31532,
31516, 31527, 31511, 31523, 31522, 31512, 31561, 31564, 31514, 31560,
31565, 31559, 31558, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 32682, 32684, 32631, 32632, 32652, 32653, 32648, 32649, 32643,
32644, 32645, 32646, 32675, 32676, 32633, 32650, 32651, 32634, 32672,
32671, 32668, 32667, 32656, 32666, 32665, 32670, 32669, 32658, 32640,
32639, 32636, 32635, 32657, 32642, 32641, 32638, 32637, 32659, 32674,
32673, 32664, 32663, 32678, 32680, 32679, 32655, 32647, 32660, 32661,
32662, 32677, 32654, 32697, 32698, 32709, 32710, 32701, 32702, 32703,
32704, 32705, 32706, 32711, 32712, 32699, 32707, 32708, 32700, 32683,
32681, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 32686,
32685, 32693, 32695, 32692, 32691, 32688, 32687, 32690, 32689, 32696,
32694, 41412, 41412, 41412, 41412, 41412, 41412, 8269, 8271, 8268, 8267,
8264, 8263, 8266, 8265, 8272, 8270, 8260, 8261, 8256, 8257, 8258, 8259,
8255, 8262, 10903, 10897, 10910, 10899, 10898, 10896, 10911, 10800,
10798, 10803, 10904, 10954, 10809, 10921, 21748, 21750, 21747, 21746,
21743, 21742, 21745, 21744, 21751, 21749, 21712, 21711, 21722, 21708,
21716, 21715, 21729, 21709, 21718, 21706, 21710, 21714, 21713, 21724,
21721, 21719, 21725, 21728, 21723, 21727, 21717, 21707, 21726, 21720,
21730, 21704, 21731, 21705, 21740, 21737, 21739, 21738, 21741, 21736,
21734, 21735, 21732, 21733, 32024, 32021, 32013, 32029, 32020, 32015,
32026, 32018, 32017, 32019, 32023, 32011, 32028, 32027, 32025, 32031,
32030, 32022, 32016, 32012, 32014, 32010, 32032, 32039, 32041, 32034,
32037, 32040, 32038, 32036, 32035, 32007, 32006, 32009, 32008, 32042,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 32033, 19386, 19389, 19390, 19387, 19344, 19345, 19353, 19347,
19349, 19352, 19346, 19342, 19348, 19350, 19343, 19309, 19311, 19312,
19325, 19332, 19339, 19374, 19291, 19298, 19372, 19376, 19322, 19395,
19378, 41412, 41412, 41412, 21067, 21063, 21066, 21065, 21037, 21005,
21004, 21006, 21046, 21025, 21011, 21012, 21044, 21038, 21045, 21007,
21008, 21009, 21021, 21022, 21010, 21019, 21020, 21035, 21014, 21036,
21013, 21033, 21034, 21000, 21001, 21016, 21031, 21032, 21002, 21003,
21015, 21023, 21024, 21017, 21018, 21041, 21043, 21026, 21027, 21040,
21042, 21029, 21030, 21028, 21039, 21064, 21070, 21072, 21073, 21074,
21068, 21069, 21071, 21076, 21075, 20996, 20997, 20998, 21061, 20999,
21047, 21050, 21059, 21052, 21057, 21055, 21053, 21051, 21048, 21049,
21054, 21062, 41412, 21060, 21083, 21085, 21082, 21081, 21078, 21077,
21080, 21079, 21086, 21084, 41412, 41412, 41412, 41412, 21056, 21058,
28787, 28785, 28780, 28777, 28783, 28873, 28851, 28803, 28815, 28811,
28810, 28813, 28812, 28805, 28804, 28802, 28915, 28917, 28914, 28913,
28910, 28909, 28912, 28911, 28918, 28916, 28814, 28807, 28806, 28809,
28808, 41412, 6347, 6365, 6367, 6364, 6348, 6366, 6356, 6355, 6352, 6351,
6327, 6328, 6350, 6349, 6354, 6353, 6329, 6331, 6330, 6358, 6357, 6344,
6343, 6332, 6333, 6342, 6338, 6337, 6336, 6341, 6340, 6334, 6335, 6339,
6363, 6361, 6360, 6362, 6345, 6346, 6359, 6372, 6375, 6376, 6381, 6379,
6378, 6377, 6373, 6374, 6380, 6315, 6313, 6312, 6314, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 6321, 6320, 6317, 6309,
6319, 6325, 6316, 6323, 6326, 6324, 6322, 6318, 6311, 6310, 41412, 41412,
6388, 6390, 6387, 6386, 6383, 6382, 6385, 6384, 6391, 6389, 41412, 41412,
6368, 6370, 6369, 6371, 28757, 28750, 28749, 28754, 28753, 28747, 28746,
28745, 28743, 28742, 28744, 28748, 28759, 28752, 28751, 28756, 28850,
28760, 28761, 28758, 28847, 28848, 28849, 28888, 28890, 28889, 28732,
28884, 28875, 28876, 28796, 28797, 35479, 35455, 35478, 35454, 35477,
35453, 35492, 35468, 35486, 35462, 35481, 35457, 35480, 35456, 35497,
35473, 35487, 35463, 35490, 35466, 35485, 35461, 35484, 35460, 35488,
35464, 35489, 35465, 35483, 35459, 35482, 35458, 35491, 35467, 35495,
35471, 35499, 35475, 35496, 35472, 35494, 35470, 35498, 35474, 35493,
35469, 35500, 35476, 35501, 35513, 35521, 35518, 35517, 35523, 35524,
35502, 35522, 35519, 35520, 35512, 35516, 35515, 35514, 35511, 35508,
35509, 35510, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 35504, 35505, 35507, 35506,
35503, 27214, 27215, 27173, 27190, 27201, 27200, 27177, 27176, 27189,
27195, 27196, 27228, 27230, 27220, 27222, 27221, 27168, 27165, 27167,
27217, 27218, 27232, 27233, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 17347, 17345, 17344, 17343, 17342, 17346,
41412, 41412, 17041, 17039, 17038, 17037, 17036, 17040, 41412, 41412,
17056, 17054, 17053, 17052, 17051, 17055, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 16997, 17003, 17001, 16998, 17000,
16999, 17002, 41412, 16982, 16988, 16986, 16983, 16985, 16984, 16987,
41412, 23530, 23506, 23536, 23531, 23627, 23790, 23980, 23779, 23770,
23773, 23801, 23815, 23641, 23534, 23535, 23885, 23735, 24029, 24028,
24030, 24031, 23990, 23427, 23933, 23589, 23913, 23590, 23977, 23978,
23533, 24100, 24066, 24109, 24052, 24105, 23553, 23554, 23555, 24141,
24138, 24139, 24140, 24152, 27864, 28088, 28097, 28098, 28155, 23971,
23738, 23886, 24111, 23734, 18558, 23596, 24061, 24034, 28152, 28001,
28025, 41412, 41412, 41412, 41412, 6570, 6571, 6572, 6573, 6574, 6575,
6533, 6569, 6534, 6535, 6536, 6537, 6538, 6498, 6499, 6500, 6501, 6502,
6503, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549,
6504, 6497, 6505, 6506, 6507, 6508, 6509, 6510, 6551, 6552, 6553, 6554,
6555, 6556, 6512, 6511, 6513, 6514, 6515, 6516, 6517, 6491, 6530, 6492,
6531, 6493, 6532, 6494, 6495, 6496, 6490, 6518, 6519, 6520, 6521, 6522,
6523, 6524, 6525, 6526, 6527, 6528, 6529, 6557, 6558, 6559, 6560, 6561,
6562, 6563, 27182, 27194, 27204, 27206, 27191, 27185, 27172, 27197,
27184, 27187, 27199, 27210, 27212, 27208, 27213, 27202, 27193, 27211,
27179, 27180, 27209, 27171, 27181, 27175, 27178, 27174, 27170, 27183,
27205, 27207, 27192, 27186, 27198, 27188, 27203, 27224, 27227, 27219,
27226, 27225, 27229, 27223, 27231, 27169, 27216, 27166, 41412, 41412,
27240, 27242, 27239, 27238, 27235, 27234, 27237, 27236, 27243, 27241,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 19583, 19581, 19614, 19615, 19616, 19592, 19593, 19625,
19627, 19560, 19558, 19557, 19561, 19567, 19568, 19570, 19569, 19574,
19571, 19572, 19576, 19544, 19542, 41412, 41412, 41412, 41412, 19440,
19441, 19509, 19510, 19529, 19523, 19524, 19527, 19526, 19525, 19484,
19469, 19508, 19475, 19479, 19478, 19492, 19491, 19412, 19437, 19430,
19515, 19428, 19435, 19465, 19458, 19464, 19519, 19460, 19463, 19462,
19503, 19496, 19513, 19514, 19502, 19500, 19499, 19504, 19506, 19451,
19450, 19536, 19537, 19401, 19400, 19516, 19455, 19453, 41412, 41412,
41412, 41412, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696,
7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708,
7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720,
7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7730, 7731, 7732,
7733, 7734, 7735, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744,
7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756,
7757, 7758, 7759, 7760, 7761, 7762, 7763, 7764, 7765, 7766, 7767, 7768,
7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780,
7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792,
7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804,
7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816,
7817, 7818, 7819, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828,
7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, 7840,
7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852,
7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7861, 7862, 7863, 7864,
7865, 7866, 7867, 7868, 7869, 7870, 7871, 7872, 7873, 7874, 7875, 7876,
7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7886, 7887, 7888,
7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900,
7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912,
7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921, 7922, 7923, 7924,
7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933, 7934, 7935, 7936,
7937, 7938, 7939, 7940, 7941, 7942, 7485, 7486, 7487, 7488, 7489, 7490,
7491, 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502,
7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 7514,
7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526,
7527, 7528, 7529, 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538,
7539, 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, 7550,
7551, 7552, 7553, 7554, 7555, 7556, 7557, 7558, 7559, 7560, 7561, 7562,
7563, 7564, 7565, 7566, 7567, 7568, 7569, 7570, 7571, 7572, 7573, 7574,
7575, 7576, 7577, 7578, 7579, 7580, 7471, 7472, 7473, 7474, 7475, 7476,
7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 41412, 41412, 7581, 7582,
7583, 7584, 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7592, 7593, 7594,
7595, 7596, 7597, 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, 7606,
7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618,
7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630,
7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642,
7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654,
7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666,
7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678,
7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 24174, 24177, 24178, 24175, 24176,
24180, 24181, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 2549, 2550, 2548, 2551, 2547, 41412, 41412,
41412, 41412, 41412, 20049, 20076, 20054, 19985, 20041, 20044, 20046,
20045, 20040, 20047, 20043, 20042, 19986, 20019, 20020, 20017, 20018,
19983, 19984, 19982, 19990, 20032, 20030, 20007, 20039, 20012, 41412,
20024, 20050, 19998, 19993, 20034, 41412, 20036, 41412, 20010, 20014,
41412, 20000, 19996, 41412, 20028, 20005, 20022, 20016, 20026, 20038,
19989, 19992, 19995, 20051, 1164, 1163, 1194, 1192, 1193, 1195, 1424,
1422, 1423, 1425, 1189, 1187, 1188, 1190, 1555, 1553, 1554, 1556, 1534,
1532, 1533, 1535, 1550, 1548, 1549, 1551, 1568, 1566, 1567, 1569, 1429,
1427, 1428, 1430, 1230, 1228, 1229, 1231, 1401, 1399, 1400, 1402, 1511,
1509, 1510, 1512, 1516, 1514, 1515, 1517, 1220, 1219, 1211, 1210, 1234,
1233, 1223, 1222, 1330, 1329, 1459, 1458, 1353, 1351, 1352, 1354, 1264,
1262, 1263, 1265, 1276, 1274, 1275, 1277, 1392, 1390, 1391, 1393, 1406,
1405, 1463, 1461, 1462, 1464, 1306, 1305, 1301, 1299, 1300, 1302, 1310,
1308, 1309, 1311, 1592, 1591, 1590, 1589, 2411, 2410, 2419, 2418, 2415,
2414, 2413, 2412, 2423, 2422, 2409, 2417, 2416, 2425, 2421, 2420, 2424,
1756, 1704, 1933, 1930, 1931, 1926, 1927, 1928, 1920, 1733, 1734, 1731,
1732, 1956, 1645, 1649, 1396, 1394, 1395, 1397, 1561, 1560, 1614, 1613,
1611, 1610, 1559, 1571, 1570, 1357, 1356, 1360, 1359, 1627, 1625, 1626,
1628, 1562, 1563, 2100, 2099, 2102, 2101, 2121, 2120, 2129, 2128, 2119,
2118, 2125, 2124, 2105, 2103, 2104, 2154, 2152, 2153, 1244, 1242, 1243,
1245, 2111, 2109, 2115, 2098, 2123, 1675, 1666, 1671, 1678, 1673, 1684,
2063, 2051, 2058, 2071, 2074, 2079, 2081, 2086, 2083, 2092, 1760, 1766,
1743, 1738, 1799, 1795, 1801, 1970, 1963, 1975, 1983, 1940, 1944, 1697,
1689, 1693, 1699, 2044, 2039, 2156, 1640, 1636, 1728, 1724, 1712, 1717,
1708, 1715, 1710, 1719, 1905, 1901, 1903, 1907, 1774, 1776, 1784, 1782,
1779, 1790, 1772, 1793, 1827, 1819, 1831, 1837, 1811, 1840, 1858, 1847,
1852, 1862, 1841, 1863, 1879, 1869, 1891, 1884, 1887, 1894, 1753, 1749,
1750, 1751, 2139, 2132, 2141, 2147, 2096, 2151, 2080, 1935, 1658, 1991,
1994, 1998, 1992, 1995, 1997, 2127, 2126, 2113, 2117, 2097, 2122, 1682,
1681, 1676, 1680, 1672, 1683, 2077, 2076, 2069, 2075, 2073, 2078, 2090,
2089, 2084, 2088, 2082, 2091, 1709, 1718, 1902, 1906, 1773, 1777, 1788,
1771, 1792, 1835, 1810, 1839, 1842, 1860, 1892, 1889, 1882, 1888, 1886,
1893, 1657, 2149, 2136, 2145, 2135, 2095, 2150, 2110, 2108, 2112, 2114,
2106, 1674, 1665, 1670, 1677, 1667, 2062, 2050, 2057, 2070, 2052, 2085,
1759, 1765, 1742, 1737, 1798, 1800, 1969, 1962, 1974, 1982, 1939, 1947,
1943, 1696, 1688, 1692, 1698, 2043, 2155, 1639, 1635, 1727, 1723, 1711,
1716, 1707, 1714, 1904, 1900, 1775, 1783, 1781, 1778, 1789, 1826, 1818,
1830, 1836, 1820, 1857, 1846, 1851, 1861, 1878, 1868, 1890, 1883, 1870,
1752, 1748, 1754, 2138, 2131, 2140, 2146, 2133, 2116, 2107, 1679, 1668,
2072, 2053, 2087, 2093, 1984, 1966, 2021, 2001, 1780, 1791, 1838, 1885,
1871, 2148, 2134, 1999, 1993, 1996, 2042, 2046, 1642, 1644, 1726, 1730,
1986, 1990, 2023, 2031, 1740, 1745, 1768, 1770, 1797, 1803, 1946, 1951,
1695, 1703, 2012, 2007, 2026, 2020, 2029, 1988, 1949, 1701, 2041, 2045,
1641, 1643, 1725, 1729, 1985, 1989, 2022, 2030, 1739, 1744, 1767, 1769,
1796, 1802, 1945, 1950, 1694, 1702, 2010, 2005, 2024, 2018, 2028, 1987,
1948, 1700, 2011, 2006, 2025, 2019, 1965, 2000, 2038, 1971, 1964, 1976,
2013, 2008, 2027, 2040, 2157, 1659, 1660, 30832, 30833, 1923, 1914, 1918,
1915, 1916, 1917, 1957, 1648, 1653, 1651, 1647, 1912, 1959, 1655, 2033,
1925, 2060, 2049, 2048, 2047, 2055, 2065, 2067, 2066, 1762, 1761, 1736,
1735, 1961, 1968, 1967, 1978, 1977, 1979, 1981, 1980, 1937, 1936, 1942,
2003, 2002, 2009, 2015, 2014, 2017, 2016, 1686, 1691, 1690, 2035, 2034,
2036, 2037, 1638, 1633, 1632, 1631, 1720, 1722, 1721, 1706, 1705, 1898,
1896, 1816, 1817, 1814, 1821, 1822, 1829, 1828, 1833, 1832, 1843, 1844,
1845, 1855, 1853, 1848, 1849, 1929, 1932, 1854, 1746, 1747, 1866, 1865,
1876, 1875, 1874, 1881, 1880, 2143, 2142, 1669, 2061, 2059, 2056, 2054,
2068, 2064, 1764, 1757, 1763, 1972, 1938, 2004, 1687, 1825, 1834, 2130,
2137, 2144, 1859, 1899, 1867, 1897, 1815, 1634, 1787, 1872, 1850, 1823,
1786, 1824, 1873, 1758, 1741, 1856, 1713, 1664, 1785, 1637, 1941, 1973,
1877, 1924, 1919, 1922, 1921, 1958, 1646, 1794, 1953, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
1954, 1908, 1661, 1662, 1864, 1952, 1934, 1656, 2094, 1955, 1960, 1755,
32353, 1685, 2032, 1663, 38715, 38826, 38894, 38905, 38916, 38927, 38938,
38949, 38960, 38716, 38727, 38738, 38749, 38760, 38771, 38782, 31807,
31812, 31813, 31806, 31837, 31808, 31839, 31815, 31829, 31811, 41412,
41412, 41412, 41412, 41412, 41412, 8479, 8481, 8306, 8307, 8490, 8492,
8192, 8480, 8482, 8555, 8556, 8491, 8493, 8193, 8246, 8247, 31838, 31809,
31810, 31824, 31836, 31821, 31833, 31819, 31831, 31823, 31835, 31816,
31825, 31817, 31826, 31820, 31832, 31818, 31830, 31814, 31827, 32848,
39721, 31822, 31834, 10673, 6231, 39597, 11389, 10672, 6230, 39595,
34023, 34032, 34067, 41412, 34057, 34024, 34068, 34030, 34031, 34034,
34038, 34033, 34037, 34035, 34039, 34066, 34014, 34016, 34065, 34063,
34036, 34062, 34029, 41412, 34056, 34025, 34064, 34022, 41412, 41412,
41412, 41412, 1098, 2430, 1079, 2432, 1110, 41412, 1095, 1096, 1075,
1076, 1107, 1108, 2335, 2336, 2405, 2406, 1295, 1159, 1158, 1149, 1148,
1579, 1578, 1152, 1151, 1596, 1594, 1595, 1597, 1169, 1168, 1184, 1182,
1183, 1185, 1521, 1520, 1530, 1528, 1529, 1523, 1544, 1542, 1543, 1545,
1326, 1324, 1325, 1327, 1292, 1290, 1291, 1293, 1364, 1362, 1363, 1365,
1208, 1207, 1538, 1537, 1456, 1455, 1622, 1621, 1485, 1483, 1484, 1486,
1491, 1489, 1490, 1492, 1472, 1470, 1471, 1473, 1216, 1214, 1215, 1217,
1504, 1502, 1503, 1505, 1618, 1616, 1617, 1619, 1127, 1125, 1126, 1128,
1271, 1269, 1270, 1272, 1255, 1253, 1254, 1256, 1438, 1436, 1437, 1439,
1340, 1338, 1339, 1341, 1376, 1374, 1375, 1377, 1385, 1383, 1384, 1386,
1417, 1415, 1416, 1418, 1314, 1312, 1313, 1315, 1583, 1582, 1167, 1166,
1607, 1605, 1606, 1608, 1809, 1808, 1805, 1804, 1807, 1806, 1813, 1812,
41412, 41412, 41216, 41412, 17766, 17770, 17738, 17754, 17740, 17752,
17751, 17681, 17744, 17753, 17741, 17676, 17769, 17774, 17748, 17761,
17763, 17760, 17759, 17756, 17755, 17758, 17757, 17764, 17762, 17677,
17747, 17683, 17765, 17768, 17771, 17675, 17684, 17685, 17686, 17687,
17688, 17689, 17690, 17691, 17692, 17693, 17694, 17695, 17696, 17697,
17698, 17699, 17700, 17701, 17702, 17703, 17704, 17705, 17706, 17707,
17708, 17709, 17682, 17746, 17745, 17674, 17736, 17767, 17710, 17711,
17712, 17713, 17714, 17715, 17716, 17717, 17718, 17719, 17720, 17721,
17722, 17723, 17724, 17725, 17726, 17727, 17728, 17729, 17730, 17731,
17732, 17733, 17734, 17735, 17680, 17776, 17743, 17773, 17679, 17742,
19256, 19249, 19251, 19255, 19247, 19239, 19194, 19196, 19198, 19195,
19197, 19190, 19192, 19191, 19193, 19248, 19240, 19242, 19244, 19241,
19243, 19215, 19217, 19219, 19216, 19218, 19199, 19201, 19203, 19200,
19202, 19230, 19232, 19234, 19231, 19233, 19205, 19207, 19209, 19206,
19208, 19210, 19212, 19214, 19211, 19213, 19220, 19222, 19224, 19221,
19223, 19235, 19237, 19236, 19225, 19227, 19229, 19226, 19228, 19238,
19204, 19246, 19245, 19189, 19139, 19156, 19140, 19141, 19142, 19143,
19177, 19158, 19147, 19152, 19151, 19150, 19154, 19148, 19149, 19153,
19175, 19145, 19157, 19146, 19160, 19159, 19174, 19169, 19155, 19168,
19138, 19176, 19144, 19183, 41412, 41412, 41412, 19184, 19185, 19163,
19164, 19171, 19170, 41412, 41412, 19162, 19161, 19186, 19180, 19181,
19187, 41412, 41412, 19166, 19188, 19179, 19178, 19182, 19167, 41412,
41412, 19172, 19165, 19173, 41412, 41412, 41412, 17678, 17739, 17737,
17750, 17775, 17749, 17772, 41412, 19253, 19250, 19254, 19252, 19259,
19257, 19258, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 20948, 20950, 20949, 30114, 32045, 41412, 41412, 25137,
25163, 25156, 25189, 25147, 25138, 25167, 25133, 25145, 25175, 25178,
25172, 41412, 25161, 25188, 25192, 25171, 25186, 25193, 25200, 25203,
25148, 25199, 25146, 25149, 25132, 25155, 25158, 25181, 25182, 25140,
25197, 25162, 25143, 25179, 25141, 25198, 25157, 25165, 41412, 25190,
25154, 25174, 25139, 25150, 25164, 25135, 25169, 25144, 25176, 25177,
25134, 25160, 25136, 25187, 25180, 25194, 25168, 25170, 41412, 25142,
25196, 41412, 25153, 25152, 25166, 25202, 25195, 25205, 25173, 25151,
25183, 25191, 25159, 25184, 25185, 25201, 25204, 41412, 41412, 25215,
25216, 25218, 25217, 25206, 25207, 25214, 25208, 25209, 25219, 25210,
25211, 25212, 25213, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 25021, 25020, 25022,
25009, 25010, 25011, 25012, 25013, 25014, 25015, 25017, 25016, 25019,
25018, 25027, 25024, 25025, 25023, 25026, 25126, 25127, 25029, 25028,
25030, 25129, 25128, 25032, 25033, 25034, 25031, 25035, 25038, 25037,
25039, 25040, 25041, 25130, 25042, 25043, 25036, 25046, 25047, 25045,
25044, 25048, 25049, 25050, 25051, 25052, 25053, 25056, 25057, 25058,
25055, 25059, 25054, 25060, 25061, 25062, 25063, 25064, 25065, 25066,
25067, 25068, 25069, 25071, 25070, 25072, 25073, 25075, 25076, 25077,
25074, 25078, 25079, 25080, 25081, 25083, 25082, 25084, 25085, 25131,
25086, 25087, 25089, 25090, 25091, 25088, 25092, 25093, 25094, 25095,
25096, 25124, 25104, 25105, 25106, 25107, 25108, 25109, 25110, 25111,
25112, 25113, 25114, 25115, 25116, 25117, 25118, 25119, 25120, 25121,
25122, 25123, 25097, 25098, 25099, 25100, 25101, 25102, 25103, 25125,
41412, 41412, 41412, 41412, 41412, 112, 113, 159, 41412, 41412, 41412,
41412, 156, 151, 146, 126, 121, 139, 134, 114, 129, 154, 149, 144, 124,
119, 140, 135, 115, 130, 157, 152, 147, 127, 122, 142, 137, 117, 132,
158, 153, 148, 128, 123, 143, 138, 118, 133, 155, 150, 145, 125, 120,
141, 136, 116, 131, 41412, 41412, 41412, 111, 107, 109, 110, 108, 103,
104, 105, 106, 18323, 18320, 18324, 18310, 18305, 18311, 18314, 18306,
18316, 18325, 18308, 18318, 18312, 18321, 18315, 18317, 18327, 18309,
18319, 18313, 18322, 18326, 18307, 18328, 18340, 18349, 18339, 18335,
18348, 18330, 18336, 18352, 18356, 18357, 18338, 18341, 18347, 18346,
18354, 18355, 18337, 18344, 18350, 18345, 18334, 18353, 18342, 18329,
18331, 18351, 18343, 18332, 18333, 18575, 18576, 18774, 18770, 18811,
18776, 18506, 18580, 18773, 18769, 18512, 18511, 18572, 18554, 18570,
18579, 18574, 18360, 18359, 18813, 18772, 18814, 18577, 18768, 18550,
29540, 41412, 32397, 32400, 32395, 32398, 32369, 32399, 32367, 32370,
32396, 32368, 32401, 32366, 2569, 41412, 41412, 41412, 18767, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 31590, 31591, 31602, 31571,
31574, 31605, 31583, 31582, 31603, 31610, 31569, 31596, 31575, 31588,
31589, 31598, 31587, 31568, 31572, 31579, 31577, 31599, 31576, 31567,
31597, 31584, 31585, 31570, 31573, 31595, 31609, 31580, 31604, 31566,
31592, 31611, 31593, 31594, 31586, 31608, 31607, 31581, 31600, 31601,
31606, 31578, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 25459, 25461, 25457, 25458, 25466, 25465, 25468, 25476,
25478, 25455, 25469, 25452, 25472, 25470, 25450, 25463, 25451, 25464,
25475, 25471, 25453, 25473, 25474, 25454, 25456, 25460, 25462, 25467,
25477, 41412, 41412, 41412, 6141, 6152, 6143, 6114, 6137, 6153, 6115,
6142, 6159, 6157, 6117, 6158, 6144, 6132, 6127, 6128, 6126, 6112, 6135,
6125, 6160, 6122, 6134, 6151, 6131, 6155, 6145, 6140, 6149, 6150, 6123,
6136, 6147, 6148, 6129, 6130, 6124, 6156, 6113, 6133, 6138, 6154, 6118,
6119, 6120, 6121, 6116, 6146, 6139, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
8703, 8701, 8699, 8698, 8695, 8694, 8697, 8696, 8702, 8700, 8693, 8692,
8690, 8681, 8679, 8688, 8686, 8677, 8683, 8684, 8691, 8689, 8680, 8678,
8687, 8685, 8676, 8682, 41412, 41412, 41412, 41412, 30395, 30389, 30375,
30390, 30362, 30392, 30394, 30391, 30386, 30382, 30374, 30370, 30371,
30372, 30364, 30396, 30385, 30378, 30376, 30366, 30363, 30387, 30380,
30368, 30384, 30373, 30369, 30367, 30388, 30383, 30381, 30365, 30400,
30398, 30399, 30397, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 30393, 30379, 30377, 18170, 18186, 18194, 18188, 18169,
18179, 18173, 18172, 18181, 18190, 18195, 18191, 18189, 18177, 18193,
18184, 18178, 18176, 18180, 18192, 18182, 18183, 18185, 18174, 18171,
18187, 18175, 41412, 41412, 41412, 41412, 41412, 30467, 30466, 30463,
30436, 30437, 30459, 30434, 30460, 30435, 30439, 30468, 30461, 30442,
30443, 30450, 30444, 30462, 30447, 30449, 30470, 30433, 30446, 30445,
30457, 30454, 30464, 30465, 30438, 30469, 30448, 30451, 30452, 30453,
30456, 30441, 30458, 30455, 30440, 8508, 8506, 8504, 8505, 8507, 41412,
41412, 41412, 41412, 41412, 38163, 38166, 38170, 38174, 38167, 38171,
38189, 38185, 38172, 38182, 38184, 38173, 38179, 38175, 38190, 38168,
38187, 38186, 38178, 38164, 38188, 38177, 38165, 38176, 38181, 38169,
38183, 38191, 38192, 38180, 41412, 38193, 30476, 30518, 30519, 30499,
30500, 30497, 30498, 30496, 30511, 30488, 30489, 30493, 30494, 30483,
30486, 30487, 30492, 30515, 30480, 30512, 30501, 30502, 30505, 30506,
30507, 30516, 30490, 30491, 30503, 30504, 30514, 30510, 30517, 30508,
30509, 30513, 41412, 41412, 41412, 41412, 30477, 30478, 30479, 30495,
30484, 30485, 30481, 30482, 30520, 30475, 30472, 30473, 30471, 30474,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 10727, 10726, 10722, 10723, 10724, 10725, 10733, 10732,
10728, 10729, 10730, 10731, 10750, 10735, 10749, 10746, 10751, 10744,
10741, 10737, 10742, 10740, 10743, 10748, 10747, 10717, 10745, 10716,
10736, 10712, 10739, 10713, 10738, 10720, 10718, 10719, 10714, 10715,
10734, 10721, 10767, 10766, 10762, 10763, 10764, 10765, 10773, 10772,
10768, 10769, 10770, 10771, 10790, 10775, 10789, 10786, 10791, 10784,
10781, 10777, 10782, 10780, 10783, 10788, 10787, 10757, 10785, 10756,
10776, 10752, 10779, 10753, 10778, 10760, 10758, 10759, 10754, 10755,
10774, 10761, 32992, 32998, 33009, 33006, 32996, 32995, 32994, 32973,
33001, 32979, 33008, 33004, 33007, 33010, 32997, 33005, 32984, 33003,
33000, 32978, 32983, 32985, 32982, 32977, 32971, 32968, 32990, 32999,
32988, 32972, 32993, 33011, 32975, 32969, 32981, 33012, 32989, 32986,
32987, 32970, 32966, 32991, 32967, 32976, 32965, 32974, 32980, 33002,
30910, 30928, 30934, 30932, 30935, 30916, 30913, 30933, 30918, 30917,
30914, 30912, 30930, 30929, 30920, 30915, 30923, 30919, 30924, 30925,
30931, 30936, 30909, 30926, 30937, 30921, 30938, 30911, 30927, 30922,
41412, 41412, 30945, 30947, 30944, 30943, 30940, 30939, 30942, 30941,
30948, 30946, 41412, 41412, 41412, 41412, 41412, 41412, 30837, 30838,
30839, 30840, 30865, 30858, 30844, 30841, 30847, 30857, 30856, 30871,
30850, 30845, 30849, 30866, 30867, 30868, 30851, 30852, 30869, 30846,
30862, 30861, 30855, 30843, 30854, 30842, 30853, 30859, 30872, 30870,
30848, 30860, 30864, 30863, 41412, 41412, 41412, 41412, 30873, 30874,
30875, 30876, 30901, 30894, 30880, 30877, 30883, 30893, 30892, 30907,
30886, 30881, 30885, 30902, 30903, 30904, 30887, 30888, 30905, 30882,
30898, 30897, 30891, 30879, 30890, 30878, 30889, 30895, 30908, 30906,
30884, 30896, 30900, 30899, 41412, 41412, 41412, 41412, 16827, 16818,
16807, 16806, 16809, 16798, 16808, 16805, 16804, 16819, 16795, 16794,
16820, 16828, 16821, 16811, 16797, 16796, 16822, 16801, 16800, 16799,
16829, 16823, 16824, 16803, 16802, 16813, 16812, 16815, 16814, 16830,
16825, 16826, 16831, 16817, 16816, 16793, 16792, 16810, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 6173, 6222, 6189, 6185, 6187,
6212, 6186, 6210, 6207, 6176, 6209, 6211, 6190, 6201, 6197, 6192, 6220,
6184, 6175, 6193, 6196, 6198, 6223, 6214, 6172, 6178, 6179, 6181, 6215,
6213, 6218, 6182, 6202, 6194, 6221, 6206, 6217, 6183, 6177, 6200, 6188,
6219, 6204, 6216, 6205, 6203, 6191, 6180, 6174, 6208, 6199, 6195, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
6224, 39368, 39337, 39338, 39348, 39347, 39350, 39349, 39340, 39339,
39357, 39365, 41412, 39356, 39355, 39341, 39342, 39358, 39366, 39344,
39343, 39359, 39346, 39345, 39369, 39360, 39367, 39361, 41412, 39352,
39351, 39354, 39353, 39370, 39362, 39363, 41412, 39371, 39364, 41412,
39403, 39372, 39373, 39383, 39382, 39385, 39384, 39375, 39374, 39392,
39400, 41412, 39391, 39390, 39376, 39377, 39393, 39401, 39379, 39378,
39394, 39381, 39380, 39404, 39395, 39402, 39396, 41412, 39387, 39386,
39389, 39388, 39405, 39397, 39398, 41412, 39406, 39399, 41412, 41412,
41412, 37824, 37825, 37838, 37798, 37827, 37826, 37829, 37805, 37828,
37821, 37820, 37839, 37795, 37801, 37794, 37800, 37808, 37807, 37842,
37796, 37831, 37823, 37822, 37799, 37806, 37802, 37818, 37810, 37840,
37817, 37816, 37815, 37812, 37811, 37833, 37832, 37843, 37841, 37835,
37804, 37834, 37803, 37844, 37797, 37837, 37836, 37793, 37814, 37813,
37830, 37809, 37819, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 24988, 24989, 24990, 24991, 24992,
24993, 24994, 24995, 24996, 24927, 24928, 24929, 24930, 24931, 24940,
24932, 24933, 24934, 24935, 24936, 24937, 24938, 24939, 24941, 24942,
24943, 24944, 25008, 24945, 24946, 24947, 24948, 24949, 24950, 24951,
24952, 24953, 24954, 24955, 24956, 24957, 24958, 24959, 24960, 24961,
24962, 24963, 24964, 24965, 24966, 24967, 24968, 24969, 24970, 24971,
24972, 24973, 24974, 24975, 24976, 24977, 24978, 24979, 24980, 24981,
24982, 24983, 24984, 24985, 24986, 24987, 24668, 25004, 24997, 24669,
24998, 24999, 25000, 25001, 24670, 25005, 25006, 25002, 25003, 25007,
24674, 24675, 24676, 24677, 24678, 24679, 24680, 24681, 24671, 24672,
24673, 24685, 24686, 24687, 24682, 24683, 24684, 24688, 24689, 24690,
24691, 24692, 24693, 24696, 24697, 24698, 24699, 24700, 24701, 24702,
24703, 24704, 24705, 24706, 24707, 24708, 24709, 24710, 24711, 24712,
24713, 24714, 24715, 24716, 24717, 24718, 24719, 24720, 24721, 24722,
24723, 24724, 24725, 24726, 24727, 24728, 24729, 24730, 24731, 24732,
24733, 24734, 24735, 24736, 24737, 24738, 24739, 24740, 24741, 24742,
24743, 24744, 24745, 24694, 24695, 24746, 24747, 24748, 24749, 24750,
24751, 24752, 24753, 24754, 24755, 24756, 24757, 24758, 24759, 24760,
24761, 24762, 24763, 24764, 24765, 24766, 24767, 24768, 24769, 24770,
24771, 24772, 24773, 24774, 24775, 24776, 24777, 24778, 24810, 24811,
24812, 24813, 24814, 24815, 24816, 24817, 24818, 24779, 24780, 24781,
24782, 24783, 24784, 24785, 24786, 24787, 24788, 24789, 24790, 24791,
24792, 24793, 24794, 24795, 24796, 24797, 24798, 24799, 24800, 24801,
24802, 24803, 24804, 24805, 24806, 24807, 24808, 24809, 24825, 24826,
24827, 24828, 24829, 24830, 24831, 24832, 24833, 24834, 24835, 24836,
24837, 24838, 24839, 24840, 24841, 24842, 24843, 24844, 24819, 24820,
24821, 24822, 24823, 24824, 24845, 24846, 24847, 24848, 24849, 24850,
24851, 24852, 24887, 24888, 24889, 24890, 24891, 24892, 24893, 24894,
24895, 24896, 24853, 24854, 24855, 24856, 24857, 24858, 24859, 24860,
24861, 24862, 24863, 24864, 24865, 24866, 24867, 24868, 24869, 24870,
24871, 24872, 24878, 24879, 24880, 24881, 24882, 24883, 24884, 24885,
24886, 24873, 24874, 24875, 24876, 24877, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 24908, 24903, 24906, 24905, 24909,
24904, 24902, 24907, 24901, 24897, 24900, 24899, 24898, 24915, 24913,
24914, 24910, 24911, 24912, 24916, 24918, 24917, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 24919, 24920, 24921,
24922, 24923, 24924, 24925, 24926, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 28048,
28169, 28168, 28033, 28049, 28037, 41412, 28067, 28069, 28068, 28063,
28062, 28060, 28061, 28122, 28055, 28079, 28119, 28043, 28083, 28044,
28087, 28050, 28089, 28066, 28103, 28104, 28102, 28046, 28100, 28105,
28106, 28147, 28148, 28111, 28047, 28056, 28162, 28144, 28145, 28118,
28117, 28052, 28132, 28135, 28136, 28133, 28131, 28159, 41412, 28054,
27974, 28021, 27868, 27952, 27981, 27865, 28023, 28124, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 10140, 10141, 10142,
10143, 10144, 10134, 41412, 41412, 10135, 41412, 10090, 10091, 10092,
10093, 10094, 10095, 10096, 10097, 10098, 10099, 10100, 10101, 10102,
10103, 10104, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112,
10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 10122,
10123, 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, 10132,
10133, 41412, 10138, 10139, 41412, 41412, 41412, 10136, 41412, 41412,
10137, 20770, 20781, 20772, 20766, 20778, 20783, 20773, 20779, 20764,
20777, 20780, 20767, 20785, 20782, 20774, 20771, 20784, 20775, 20768,
20769, 20776, 20765, 41412, 20786, 20761, 20757, 20760, 20758, 20756,
20762, 20763, 20759, 31218, 31229, 31220, 31214, 31226, 31231, 31221,
31227, 31212, 31225, 31228, 31215, 31233, 31211, 31230, 31222, 31219,
31232, 31223, 31216, 31217, 31224, 31213, 31210, 31234, 31241, 31236,
31237, 31240, 31239, 31238, 31235, 28986, 29001, 28991, 29012, 29003,
28997, 28993, 29009, 29014, 29004, 29010, 28995, 28989, 29008, 28990,
29011, 28987, 28998, 28994, 29016, 28992, 29013, 29005, 29002, 29015,
29006, 28999, 29000, 28988, 29007, 28996, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 29021, 29018, 29019, 29024, 29025, 29023,
29020, 29017, 29022, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 19816, 19832, 19824, 19823, 19829, 19834, 19818, 19830, 19819,
19828, 19831, 19821, 19836, 19833, 19825, 19817, 19835, 19826, 19822,
41412, 19827, 19820, 41412, 41412, 41412, 41412, 41412, 19837, 19841,
19840, 19839, 19838, 31614, 31633, 31629, 31616, 31617, 31625, 31626,
31618, 31624, 31627, 31630, 31632, 31635, 31631, 31622, 31615, 31634,
31620, 31619, 31628, 31621, 31623, 31640, 31639, 31636, 31641, 31637,
31638, 41412, 41412, 41412, 31642, 25485, 25491, 25495, 25493, 25487,
25503, 25496, 25504, 25497, 25481, 25498, 25489, 25499, 25501, 25484,
25479, 25502, 25494, 25500, 25483, 25480, 25486, 25488, 25482, 25490,
25492, 41412, 41412, 41412, 41412, 41412, 25505, 33150, 33151, 33152,
33153, 33154, 33155, 33156, 33157, 33158, 33159, 33160, 33161, 33162,
33163, 33164, 33165, 33166, 33167, 33168, 33143, 33144, 33145, 33146,
33147, 33148, 33149, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 27580, 27581, 27582, 27583, 27579, 27578, 27554, 27555, 27576,
27575, 27558, 27559, 27560, 27561, 27556, 27557, 27574, 27571, 27570,
27562, 27563, 27564, 27572, 27577, 27565, 27566, 27567, 27568, 27569,
27573, 27584, 27585, 27476, 27497, 27498, 27499, 27496, 27495, 27488,
27492, 27491, 27481, 27482, 27494, 27490, 27486, 27485, 27483, 27477,
27484, 27487, 27493, 27478, 27479, 27480, 27489, 41412, 41412, 41412,
41412, 27464, 27469, 27501, 27500, 27550, 27542, 27536, 27513, 27507,
27530, 27524, 27502, 27519, 27548, 27546, 27540, 27517, 27511, 27534,
27528, 41412, 41412, 27551, 27543, 27537, 27514, 27508, 27531, 27525,
27504, 27521, 27553, 27545, 27539, 27516, 27510, 27533, 27527, 27506,
27523, 27549, 27547, 27541, 27518, 27512, 27535, 27529, 27503, 27520,
27552, 27544, 27538, 27515, 27509, 27532, 27526, 27505, 27522, 27468,
27474, 27473, 27467, 27466, 27471, 27470, 27465, 27475, 27472, 21831,
21853, 21855, 21851, 41412, 21852, 21854, 41412, 41412, 41412, 41412,
41412, 21856, 21847, 21850, 21849, 21797, 21795, 21819, 21818, 41412,
21817, 21816, 21825, 41412, 21805, 21801, 21800, 21808, 21807, 21804,
21803, 21802, 21810, 21809, 21806, 21821, 21820, 21815, 21814, 21827,
21829, 21828, 21826, 21823, 21811, 21812, 21813, 21830, 21824, 21796,
21798, 21799, 21822, 41412, 41412, 21845, 21846, 21848, 41412, 41412,
41412, 41412, 21857, 21794, 21793, 21792, 21791, 21833, 21832, 21834,
21835, 21858, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21839,
21844, 21837, 21836, 21843, 21841, 21840, 21838, 21842, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 30585, 30581, 30586, 30591, 30582,
30589, 30575, 30583, 30587, 30579, 30574, 30570, 30588, 30571, 30573,
30572, 30590, 30563, 30564, 30566, 30569, 30567, 30568, 30578, 30580,
30565, 30584, 30577, 30576, 30593, 30592, 30594, 30406, 30424, 30405,
30415, 30427, 30428, 30417, 30421, 30419, 30412, 30416, 30408, 30423,
30407, 30429, 30418, 30420, 30401, 30402, 30425, 30404, 30426, 30403,
30411, 30413, 30409, 30422, 30410, 30414, 30432, 30431, 30430, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 25786, 25790, 25789, 25794, 25793, 25791, 25815, 25818, 25834,
25798, 25797, 25796, 25795, 25816, 25808, 25814, 25800, 25810, 25799,
25812, 25792, 25807, 25821, 25817, 25804, 25788, 25787, 25820, 25819,
25805, 25802, 25811, 25801, 25813, 25806, 25803, 25809, 25836, 25835,
41412, 41412, 41412, 41412, 25822, 25826, 25825, 25824, 25823, 25833,
25831, 25829, 25828, 25827, 25832, 25830, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 2587, 2588, 2594, 2590, 2593, 2589,
2591, 2592, 2630, 2631, 2620, 2621, 2622, 2623, 2618, 2619, 2635, 2608,
2607, 2606, 2597, 2595, 2596, 2632, 2634, 2617, 2615, 2627, 2626, 2616,
2638, 2633, 2625, 2624, 2602, 2601, 2600, 2605, 2604, 2603, 2637, 2598,
2613, 2614, 2640, 2639, 2636, 2612, 2629, 2610, 2628, 2609, 2611, 2599,
41412, 41412, 41412, 2641, 37706, 34058, 22832, 22827, 22833, 22828,
20912, 20923, 20914, 20908, 20920, 20925, 20915, 20921, 20906, 20919,
20922, 20909, 20927, 20924, 20916, 20913, 20926, 20917, 20910, 20911,
20918, 20907, 41412, 41412, 20932, 20929, 20930, 20935, 20931, 20928,
20933, 20934, 20881, 20895, 20886, 20882, 20892, 20885, 20887, 20893,
20879, 20891, 20894, 20883, 20884, 20896, 20888, 20897, 20889, 20890,
20880, 41412, 41412, 41412, 41412, 41412, 20902, 20899, 20900, 20905,
20901, 20898, 20903, 20904, 31875, 31889, 31880, 31876, 31886, 31879,
31881, 31887, 31885, 31888, 31877, 31878, 31890, 31882, 31892, 31883,
31884, 31891, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 31900,
31901, 31873, 31874, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 31897, 31894, 31895, 31899, 31896,
31893, 31898, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 30595, 30637, 30638, 30627, 30663, 30656, 30630, 30631,
30665, 30608, 30648, 30596, 30641, 30610, 30650, 30598, 30642, 30609,
30649, 30597, 30626, 30662, 30616, 30655, 30605, 30645, 30599, 30643,
30632, 30666, 30611, 30651, 30600, 30621, 30624, 30612, 30601, 30639,
30619, 30658, 30617, 30657, 30620, 30659, 30647, 30618, 30640, 30625,
30633, 30628, 30623, 30661, 30613, 30652, 30629, 30664, 30634, 30667,
30614, 30653, 30602, 30606, 30603, 30607, 30646, 30622, 30660, 30615,
30654, 30604, 30644, 30635, 30636, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
30254, 30257, 30280, 30255, 30269, 30265, 30271, 30281, 30256, 30259,
30302, 30282, 30283, 30272, 30273, 30284, 30303, 30304, 30285, 30286,
30258, 30299, 30274, 30275, 30260, 30262, 30266, 30294, 30296, 30290,
30292, 30295, 30287, 30261, 30288, 30297, 30267, 30268, 30276, 30263,
30277, 30270, 30298, 30301, 30291, 30293, 30289, 30278, 30279, 30264,
30300, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 30305, 30308, 30331, 30306, 30320, 30316,
30322, 30332, 30307, 30310, 30353, 30333, 30334, 30323, 30324, 30335,
30354, 30355, 30336, 30337, 30309, 30350, 30325, 30326, 30311, 30313,
30317, 30345, 30347, 30341, 30343, 30346, 30338, 30312, 30339, 30348,
30318, 30319, 30327, 30314, 30328, 30321, 30349, 30352, 30342, 30344,
30340, 30329, 30330, 30315, 30351, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 30358, 30357, 30361, 30356, 30359, 30360, 19769, 19756,
19764, 19748, 19747, 19761, 19757, 19760, 19745, 19758, 19742, 19741,
19750, 19749, 19768, 19755, 19754, 19746, 19759, 19762, 19763, 19753,
19766, 19743, 19767, 19744, 19751, 19752, 19765, 19776, 19778, 19780,
19777, 19779, 19771, 19770, 19775, 19772, 19774, 19773, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 19787, 19789, 19786, 19785,
19782, 19781, 19784, 19783, 19790, 19788, 41412, 41412, 41412, 41412,
41412, 41412, 17854, 17856, 17853, 17852, 17849, 17848, 17851, 17850,
17857, 17855, 17840, 17841, 17842, 17839, 17843, 17837, 17814, 17798,
17806, 17804, 17797, 17803, 17809, 17811, 17805, 17801, 17799, 17812,
17813, 17810, 17808, 17795, 17800, 17796, 17807, 17802, 17793, 17794,
41412, 41412, 41412, 17838, 17792, 17790, 17789, 17791, 17845, 17844,
17836, 17820, 17828, 17826, 17819, 17825, 17831, 17833, 17827, 17823,
17821, 17834, 17835, 17832, 17830, 17817, 17822, 17818, 17829, 17824,
17815, 17816, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
17846, 17847, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
32454, 32452, 32451, 32448, 32447, 32450, 32449, 32455, 32453, 32446,
32445, 32443, 32434, 32432, 32441, 32439, 32430, 32436, 32437, 32444,
32442, 32433, 32431, 32440, 32438, 32429, 32435, 32426, 32427, 32425,
32428, 41412, 39869, 39903, 39883, 39882, 39888, 39887, 39865, 39864,
39863, 39874, 39895, 39868, 39899, 39902, 39901, 39898, 39906, 39885,
39884, 39886, 39867, 39889, 39900, 39870, 39894, 39905, 39890, 39891,
39878, 39876, 39875, 39877, 39879, 39866, 39881, 39904, 39892, 39893,
39872, 39873, 39896, 39871, 41412, 39861, 39860, 39862, 41412, 41412,
39880, 39897, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 1201, 1497, 1332,
2388, 1540, 1604, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
1065, 1654, 1652, 1650, 1909, 1910, 1911, 1913, 1895, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 1083, 2389, 1066, 2395, 2396, 2393, 30525, 30533, 30547, 30534,
30538, 30544, 30535, 30550, 30539, 30545, 30543, 30546, 30537, 30552,
30548, 30527, 30528, 30540, 30526, 30524, 30551, 30541, 30529, 30530,
30536, 30542, 30549, 30531, 30532, 30559, 30557, 30554, 30562, 30561,
30558, 30556, 30555, 30560, 30523, 30553, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 34118, 34132, 34120, 34129, 34136, 34124,
34130, 34128, 34131, 34121, 34138, 34134, 34125, 34119, 34137, 34126,
34123, 34127, 34135, 34133, 34122, 34117, 34112, 34110, 34113, 34111,
34116, 34115, 34107, 34106, 34108, 34114, 34109, 34139, 34142, 34141,
34140, 34145, 34146, 34143, 34147, 34144, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 30672, 30684,
30682, 30687, 30676, 30681, 30680, 30683, 30674, 30689, 30685, 30677,
30688, 30678, 30673, 30679, 30686, 30675, 30671, 30670, 30669, 30668,
30693, 30690, 30691, 30692, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 6596, 6590, 6604, 6598, 6593, 6601, 6607, 6589, 6599, 6602,
6600, 6603, 6594, 6609, 6605, 6591, 6597, 6608, 6595, 6592, 6606, 6614,
6611, 6612, 6616, 6613, 6610, 6615, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 16854, 16865, 16856, 16850, 16862,
16867, 16857, 16863, 16848, 16861, 16864, 16851, 16869, 16866, 16858,
16855, 16868, 16859, 16852, 16853, 16860, 16849, 16870, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 4737, 4742, 4740, 4739,
4741, 4664, 4665, 4683, 4684, 4681, 4682, 4676, 4677, 4678, 4679, 4710,
4666, 4657, 4667, 4703, 4702, 4699, 4698, 4687, 4697, 4696, 4701, 4700,
4689, 4673, 4672, 4669, 4668, 4688, 4675, 4674, 4671, 4670, 4690, 4705,
4704, 4695, 4694, 4707, 4709, 4708, 4686, 4680, 4691, 4692, 4693, 4706,
4685, 4658, 4663, 4662, 4747, 4746, 4756, 4757, 4750, 4751, 4752, 4753,
4754, 4755, 4758, 4748, 4743, 4749, 4759, 4761, 4760, 4735, 4734, 4733,
4736, 4732, 41412, 41412, 41412, 41412, 4728, 4726, 4723, 4714, 4716,
4721, 4719, 4711, 4717, 4727, 4725, 4724, 4713, 4715, 4722, 4720, 4712,
4718, 4729, 4730, 4768, 4770, 4767, 4766, 4763, 4762, 4765, 4764, 4771,
4769, 4738, 4660, 4661, 4744, 4745, 4659, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 4731, 21141, 21143, 21145, 21101,
21102, 21111, 21112, 21109, 21110, 21139, 21103, 21140, 21104, 21129,
21128, 21125, 21124, 21113, 21123, 21122, 21127, 21126, 21115, 21106,
21105, 21098, 21096, 21097, 21132, 21114, 21108, 21107, 21100, 21099,
21116, 21131, 21130, 21121, 21120, 21136, 21138, 21133, 21135, 21137,
21117, 21118, 21119, 21134, 21151, 21156, 21157, 21154, 21155, 21158,
21152, 21159, 21153, 21144, 21142, 21162, 21163, 21160, 21146, 21147,
21149, 21148, 21150, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 21161, 41412, 41412, 34170, 34171, 34160, 34161,
34162, 34163, 34156, 34157, 34167, 34159, 34172, 34168, 34173, 34169,
34164, 34166, 34165, 34158, 34174, 34153, 34175, 34177, 34176, 34154,
34155, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 34184, 34186,
34183, 34182, 34179, 34178, 34181, 34180, 34187, 34185, 41412, 41412,
41412, 41412, 41412, 41412, 6276, 6278, 6277, 6272, 6274, 6275, 6273,
6261, 6260, 6257, 6256, 6242, 6255, 6254, 6259, 6258, 6244, 6247, 6246,
6239, 6238, 6243, 6249, 6248, 6241, 6240, 6245, 6265, 6264, 6253, 6252,
6267, 6250, 6251, 6268, 6263, 6271, 6269, 6266, 6280, 6288, 6289, 6284,
6285, 6286, 6282, 6290, 6283, 6291, 6308, 6307, 6292, 6306, 41412, 6301,
6303, 6300, 6299, 6296, 6295, 6298, 6297, 6304, 6302, 6279, 6294, 6293,
6305, 6262, 6281, 6287, 6270, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 25547, 25549, 25551, 25548, 25550, 25539, 25538, 25535,
25534, 25533, 25532, 25537, 25536, 25518, 25527, 25526, 25521, 25520,
25517, 25529, 25528, 25523, 25522, 25519, 25541, 25540, 25531, 25530,
25544, 25525, 25543, 25546, 25545, 25542, 25524, 25554, 25555, 25553,
25552, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
32928, 32931, 32935, 32874, 32875, 32893, 32894, 32891, 32892, 32886,
32887, 32888, 32889, 32920, 32876, 32921, 32877, 32913, 32912, 32909,
32908, 32897, 32907, 32906, 32911, 32910, 32899, 32883, 32882, 32879,
32878, 32898, 32885, 32884, 32881, 32880, 32900, 32915, 32914, 32905,
32904, 32917, 32919, 32918, 32896, 32895, 32890, 32901, 32902, 32903,
32916, 32950, 32957, 32958, 32944, 32945, 32953, 32954, 32955, 32956,
32959, 32951, 32940, 32952, 32934, 32930, 32932, 32933, 32962, 32860,
32859, 32960, 32925, 32922, 32929, 32937, 32871, 32936, 32943, 32926,
32867, 32869, 32866, 32865, 32862, 32861, 32864, 32863, 32870, 32868,
32872, 32927, 32873, 32961, 32923, 32924, 41412, 33872, 33870, 33869,
33866, 33865, 33868, 33867, 33873, 33871, 33884, 33883, 33882, 33878,
33877, 33881, 33880, 33876, 33879, 33874, 33875, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 22537, 22538,
22564, 22566, 22563, 22539, 22565, 22540, 22554, 22553, 22529, 22527,
22528, 22547, 22552, 22551, 22536, 22535, 41412, 22549, 22542, 22541,
22532, 22531, 22548, 22544, 22543, 22534, 22530, 22533, 22550, 22556,
22555, 22526, 22524, 22525, 22558, 22562, 22560, 22546, 22561, 22523,
22557, 22545, 22574, 22577, 22578, 22581, 22579, 22575, 22580, 22576,
22571, 22570, 22569, 22567, 22521, 22520, 22582, 22572, 22519, 22583,
22568, 22559, 22522, 22573, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 28461, 28463, 28464, 28462,
28452, 28451, 28450, 41412, 28449, 41412, 28448, 28447, 28440, 28439,
41412, 28434, 28442, 28441, 28430, 28428, 28429, 28433, 28444, 28443,
28432, 28431, 28435, 28454, 28453, 28446, 41412, 28445, 28457, 28460,
28438, 28456, 28459, 28458, 28455, 28437, 28436, 28465, 41412, 41412,
41412, 41412, 41412, 41412, 22598, 22599, 22610, 22611, 22608, 22609,
22629, 22600, 22630, 22601, 22619, 22618, 22589, 22587, 22588, 22612,
22617, 22616, 22597, 22596, 22595, 22614, 22605, 22604, 22592, 22590,
22602, 22591, 22613, 22607, 22606, 22594, 22593, 22615, 22621, 22620,
22586, 22584, 22585, 22626, 22628, 22603, 22625, 22627, 22622, 22623,
22624, 22633, 22634, 22639, 22640, 22637, 22638, 22641, 22635, 22642,
22636, 22631, 22632, 41412, 41412, 41412, 41412, 41412, 22649, 22651,
22648, 22647, 22644, 22643, 22646, 22645, 22652, 22650, 41412, 41412,
41412, 41412, 41412, 41412, 18252, 18253, 18256, 18259, 41412, 18209,
18210, 18223, 18224, 18221, 18222, 18204, 18206, 41412, 41412, 18247,
18211, 41412, 41412, 18246, 18212, 18243, 18242, 18239, 18238, 18227,
18237, 18236, 18241, 18240, 18229, 18218, 18217, 18214, 18213, 18228,
18220, 18219, 18216, 18215, 18230, 41412, 18245, 18244, 18235, 18234,
18249, 18251, 18250, 41412, 18226, 18225, 41412, 18208, 18231, 18232,
18233, 18248, 41412, 8183, 18254, 18255, 18261, 18270, 18271, 18264,
18265, 18266, 18267, 41412, 41412, 18273, 18262, 41412, 41412, 18272,
18263, 18258, 41412, 41412, 18274, 41412, 41412, 41412, 41412, 41412,
41412, 18260, 41412, 41412, 41412, 41412, 41412, 18257, 18203, 18202,
18205, 18207, 18268, 18269, 41412, 41412, 8372, 8373, 8371, 8370, 8369,
8368, 8367, 41412, 41412, 41412, 8378, 8375, 8376, 8374, 8377, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
38042, 38043, 38066, 38067, 38064, 38065, 38059, 38060, 38061, 38062,
41412, 38088, 41412, 41412, 38044, 41412, 38087, 38045, 38084, 38083,
38080, 38079, 38068, 38078, 38077, 38082, 38081, 38070, 38056, 38055,
38047, 38046, 38069, 38058, 38057, 38049, 38048, 38071, 38086, 38085,
38076, 38075, 38090, 38091, 38054, 38052, 38063, 38072, 38073, 38074,
38089, 38051, 38053, 38050, 41412, 38093, 38104, 38113, 38114, 38107,
38108, 38109, 38110, 38111, 38112, 41412, 38116, 41412, 41412, 38105,
41412, 38115, 38106, 38037, 38098, 41412, 38094, 38101, 38100, 38095,
38038, 38092, 38041, 38099, 38040, 38039, 41412, 38096, 38097, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 38103, 38102, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29384, 29385,
29398, 29399, 29396, 29397, 29380, 29381, 29382, 29383, 29424, 29386,
29425, 29387, 29412, 29411, 29408, 29407, 29373, 29372, 29406, 29405,
29410, 29409, 29375, 29374, 29393, 29392, 29389, 29388, 29377, 29395,
29394, 29391, 29390, 29378, 29376, 29418, 29417, 29404, 29403, 29416,
29415, 29423, 29420, 29419, 29414, 29413, 29422, 29400, 29401, 29402,
29421, 29438, 29447, 29448, 29441, 29442, 29443, 29444, 29445, 29446,
29449, 29439, 29450, 29440, 29433, 29426, 29429, 29434, 29427, 29428,
29431, 29454, 29435, 29360, 29358, 29453, 29371, 29451, 29367, 29369,
29366, 29365, 29362, 29361, 29364, 29363, 29370, 29368, 29359, 29437,
41412, 29452, 29436, 29379, 29430, 29432, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 37708, 37709, 37710, 37728,
37729, 37726, 37727, 37721, 37722, 37723, 37724, 37754, 37711, 37755,
37712, 37746, 37745, 37742, 37741, 37730, 37740, 37739, 37744, 37743,
37732, 37718, 37717, 37714, 37713, 37731, 37720, 37719, 37716, 37715,
37733, 37748, 37747, 37738, 37737, 37751, 37753, 37752, 37750, 37725,
37734, 37735, 37736, 37749, 37764, 37773, 37774, 37767, 37768, 37769,
37770, 37771, 37772, 37775, 37762, 37765, 37776, 37763, 37766, 37756,
37759, 37761, 37760, 37757, 37758, 37787, 37707, 37788, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 37783, 37785, 37782, 37781,
37778, 37777, 37780, 37779, 37786, 37784, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 33052, 33054, 33075, 33076, 33073, 33074, 33068, 33069,
33070, 33071, 33101, 33055, 33102, 33056, 33093, 33092, 33089, 33088,
33077, 33087, 33086, 33091, 33090, 33079, 33062, 33061, 33065, 33064,
33078, 33063, 33058, 33067, 33066, 33080, 33095, 33094, 33085, 33084,
33098, 33100, 33099, 33097, 33072, 33081, 33082, 33083, 33096, 33130,
33137, 33138, 33135, 33136, 33133, 33134, 41412, 41412, 33139, 33131,
33140, 33132, 33123, 33125, 33127, 33126, 33124, 33122, 33142, 33141,
33121, 33120, 33103, 33104, 33105, 33051, 33118, 33117, 33115, 33113,
33114, 33106, 33107, 33116, 33119, 33111, 33112, 33110, 33109, 33108,
33057, 33059, 33060, 33053, 33128, 33129, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
27815, 27816, 27834, 27835, 27832, 27833, 27827, 27828, 27829, 27830,
27861, 27817, 27862, 27818, 27854, 27853, 27850, 27849, 27838, 27848,
27847, 27852, 27851, 27840, 27824, 27823, 27820, 27819, 27839, 27826,
27825, 27822, 27821, 27841, 27856, 27855, 27846, 27845, 27858, 27860,
27859, 27837, 27831, 27842, 27843, 27844, 27857, 27836, 27790, 27799,
27800, 27793, 27794, 27795, 27796, 27797, 27798, 27801, 27791, 27802,
27792, 27786, 27789, 27788, 27785, 27804, 27803, 27863, 27787, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
27811, 27813, 27810, 27809, 27806, 27805, 27808, 27807, 27814, 27812,
41412, 41412, 41412, 41412, 41412, 41412, 28344, 28339, 28184, 28345,
28343, 28341, 28340, 28201, 28202, 28335, 28337, 28336, 28346, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 35581, 35583,
35598, 35599, 35596, 35597, 35623, 35584, 35624, 35585, 35613, 35612,
35609, 35608, 35600, 35607, 35606, 35611, 35610, 35602, 35593, 35592,
35587, 35586, 35601, 35595, 35594, 35589, 35588, 35603, 35615, 35614,
35605, 35604, 35620, 35622, 35591, 35619, 35621, 35616, 35617, 35618,
35590, 35626, 35628, 35629, 35634, 35635, 35632, 35633, 35636, 35630,
35637, 35631, 35627, 35625, 35582, 35580, 41412, 41412, 41412, 41412,
41412, 41412, 35644, 35646, 35643, 35642, 35639, 35638, 35641, 35640,
35647, 35645, 41412, 41412, 41412, 41412, 41412, 41412, 28953, 28955,
28952, 28951, 28948, 28947, 28950, 28949, 28956, 28954, 28903, 28905,
28902, 28901, 28898, 28897, 28900, 28899, 28906, 28904, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 191, 190, 178, 181, 175, 167,
193, 192, 183, 195, 189, 184, 174, 196, 177, 197, 180, 194, 164, 171,
170, 187, 166, 186, 182, 188, 165, 41412, 41412, 162, 163, 161, 203, 204,
210, 211, 208, 209, 212, 207, 213, 205, 206, 200, 41412, 41412, 41412,
41412, 222, 224, 221, 220, 217, 216, 219, 218, 225, 223, 215, 214, 198,
199, 201, 202, 185, 173, 172, 169, 168, 179, 176, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 11159, 11160, 11175, 11176, 11173, 11174, 11201, 11161,
11202, 11162, 11193, 11192, 11189, 11188, 11177, 11187, 11186, 11191,
11190, 11179, 11170, 11169, 11164, 11163, 11178, 11172, 11171, 11166,
11165, 11180, 11195, 11194, 11185, 11184, 11198, 11200, 11168, 11197,
11199, 11181, 11182, 11183, 11196, 11167, 11205, 11210, 11211, 11208,
11209, 11203, 11204, 11212, 11206, 11213, 11207, 11216, 11218, 11217,
11215, 11214, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 39508, 39497, 39526, 39516, 39518, 39519, 39525, 39515,
39501, 39510, 39498, 39528, 39524, 39503, 39517, 39514, 39502, 39511,
39520, 39509, 39527, 39500, 39499, 39522, 39523, 39506, 39505, 39504,
39507, 39512, 39513, 39521, 39540, 39529, 39558, 39548, 39550, 39551,
39557, 39547, 39533, 39542, 39530, 39560, 39556, 39535, 39549, 39546,
39534, 39543, 39552, 39541, 39559, 39532, 39531, 39554, 39555, 39538,
39537, 39536, 39539, 39544, 39545, 39553, 39567, 39569, 39566, 39565,
39562, 39561, 39564, 39563, 39570, 39568, 39579, 39578, 39577, 39573,
39572, 39576, 39575, 39571, 39574, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 39580, 11075, 11076,
11083, 11084, 11081, 11082, 11110, 41412, 41412, 11111, 41412, 41412,
11101, 11100, 11099, 11098, 11087, 11097, 11096, 11105, 41412, 11089,
11071, 41412, 11078, 11077, 11088, 11072, 11070, 11080, 11079, 11090,
11103, 11102, 11095, 11094, 11106, 11074, 11073, 11107, 11086, 11108,
11091, 11092, 11093, 11104, 11085, 11109, 11116, 11120, 11121, 11118,
11119, 11122, 41412, 11117, 11123, 41412, 41412, 11115, 11113, 11112,
11124, 11129, 11126, 11130, 11125, 11114, 11059, 11127, 11128, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 11066, 11068,
11065, 11064, 11061, 11060, 11063, 11062, 11069, 11067, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29075, 29076,
29091, 29092, 29089, 29090, 29072, 29073, 41412, 41412, 29117, 29077,
29118, 29078, 29111, 29110, 29107, 29106, 29095, 29105, 29104, 29109,
29108, 29097, 29086, 29085, 29080, 29079, 29096, 29088, 29087, 29082,
29081, 29098, 29113, 29112, 29103, 29102, 29115, 29116, 29084, 29094,
29074, 29099, 29100, 29101, 29114, 29093, 29083, 29127, 29132, 29133,
29130, 29131, 29125, 29126, 41412, 41412, 29134, 29128, 29135, 29129,
29121, 29123, 29122, 29120, 29119, 29136, 29124, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41193, 41214, 41211, 41210, 41213, 41209,
41208, 41206, 41207, 41212, 41205, 41161, 41160, 41180, 41179, 41162,
41178, 41177, 41187, 41164, 41172, 41171, 41154, 41153, 41163, 41174,
41173, 41158, 41157, 41165, 41182, 41181, 41176, 41175, 41189, 41170,
41169, 41156, 41155, 41183, 41184, 41185, 41192, 41190, 41188, 41191,
41166, 41167, 41168, 41186, 41159, 41152, 41202, 41199, 41200, 41201,
41198, 41203, 41149, 41148, 41146, 41145, 41147, 41151, 41144, 41197,
41195, 41194, 41196, 41150, 41143, 41204, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 34276, 34297, 34295, 34294, 34296, 34292,
34293, 34290, 34291, 34289, 34288, 34298, 34243, 34242, 34262, 34261,
34244, 34260, 34259, 34264, 34263, 34246, 34254, 34253, 34237, 34236,
34245, 34256, 34255, 34240, 34238, 34247, 34266, 34265, 34258, 34257,
34272, 34252, 34251, 34239, 34267, 34268, 34269, 34275, 34273, 34271,
34274, 34248, 34249, 34250, 34270, 34241, 34281, 34283, 34220, 34219,
34217, 34218, 34228, 34229, 34224, 34227, 34223, 34226, 34231, 34232,
34230, 34222, 34221, 34225, 34284, 34282, 34299, 34285, 34280, 34279,
34278, 34277, 34235, 34234, 34233, 34286, 34287, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
5719, 5720, 5717, 5718, 5715, 5716, 5725, 5726, 5723, 5724, 5721, 5722,
5888, 5889, 5890, 5887, 31432, 31430, 31439, 31440, 31436, 31444, 31443,
31425, 31438, 31437, 31429, 31442, 31435, 31428, 31434, 31433, 31426,
31431, 31441, 31420, 31427, 31445, 31446, 31421, 31447, 31423, 31424,
31422, 31416, 31413, 31417, 31415, 31411, 31414, 31418, 31412, 31419,
31453, 31452, 31463, 31454, 31455, 31464, 31460, 31459, 31461, 31462,
31456, 31410, 31457, 31458, 31449, 31448, 31408, 31450, 31451, 31409,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 10801, 10802, 10891,
10892, 10893, 10894, 10901, 10900, 10902, 10906, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 32942, 32941, 32947, 32946, 32948, 32949, 32938,
32939, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 34883,
34902, 34909, 34906, 34896, 34893, 34888, 34910, 34878, 34895, 34905,
34885, 34882, 34891, 34908, 34886, 34904, 34892, 34897, 34903, 34907,
34880, 34879, 34884, 34900, 34894, 34890, 34889, 34898, 34881, 34899,
34901, 34887, 34911, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 34918, 34920, 34917,
34916, 34913, 34912, 34915, 34914, 34921, 34919, 41412, 41412, 41412,
41412, 41412, 41412, 3761, 3762, 3775, 3776, 3773, 3774, 3757, 3758,
3759, 41412, 3801, 3763, 3802, 3764, 3793, 3792, 3789, 3788, 3777, 3787,
3786, 3791, 3790, 3779, 3770, 3769, 3766, 3765, 3778, 3772, 3771, 3768,
3767, 3780, 3795, 3794, 3785, 3784, 3798, 3800, 3799, 3797, 3760, 3781,
3782, 3783, 3796, 3829, 3834, 3835, 3832, 3833, 3826, 3827, 3828, 41412,
3836, 3830, 3837, 3831, 3821, 3823, 3825, 3824, 3822, 3839, 3838, 3850,
3851, 3852, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 3846, 3848, 3845, 3844, 3841, 3840, 3843, 3842, 3849, 3847,
3820, 3818, 3815, 3806, 3808, 3813, 3811, 3803, 3809, 3819, 3817, 3816,
3805, 3807, 3814, 3812, 3804, 3810, 3853, 41412, 41412, 41412, 25911,
25912, 25857, 25856, 25866, 25851, 25855, 25854, 25868, 25852, 25848,
25847, 25850, 25853, 25859, 25858, 25865, 25870, 25846, 25845, 25849,
25872, 25862, 25863, 25864, 25873, 25871, 25869, 25860, 25861, 25867,
25874, 41412, 41412, 25889, 25888, 25897, 25883, 25887, 25886, 25899,
25884, 25880, 25879, 25882, 25885, 25891, 25890, 25896, 25901, 25878,
25877, 25881, 25903, 25894, 25895, 41412, 25904, 25902, 25900, 25892,
25893, 25898, 25905, 25906, 25908, 25910, 25907, 25909, 25876, 25875,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 25923, 25924, 25933, 25934, 25931, 25932, 25960,
41412, 25925, 25961, 41412, 25926, 25939, 25938, 25952, 25951, 25940,
25950, 25949, 25917, 25916, 25942, 25919, 25918, 25928, 25927, 25941,
25922, 25920, 25930, 25929, 25943, 25954, 25953, 25948, 25947, 25956,
25959, 25957, 25936, 25958, 25944, 25945, 25946, 25955, 25935, 25937,
25915, 25921, 25970, 25975, 25976, 25973, 25974, 25969, 41412, 41412,
41412, 25977, 41412, 25971, 25978, 41412, 25972, 25968, 25967, 25966,
25964, 25965, 25979, 25963, 25962, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 25986, 25988, 25985, 25984, 25981, 25980, 25983,
25982, 25989, 25987, 41412, 41412, 41412, 41412, 41412, 41412, 18927,
18928, 18941, 18942, 18939, 18940, 41412, 18958, 18929, 41412, 18957,
18930, 18964, 18963, 18946, 18945, 18960, 18954, 18953, 18938, 18937,
18944, 18950, 18949, 18934, 18933, 18926, 18948, 18947, 18936, 18935,
18943, 18952, 18951, 18932, 18931, 18925, 18956, 18955, 18959, 18961,
18962, 18967, 18972, 18973, 18970, 18971, 41412, 18975, 18968, 41412,
18974, 18969, 18966, 18965, 18976, 18987, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 18983, 18985, 18982, 18981, 18978, 18977, 18980,
18979, 18986, 18984, 41412, 41412, 41412, 41412, 41412, 41412, 37877,
37875, 37882, 37880, 37845, 37846, 37873, 37874, 37863, 37864, 37879,
37859, 37862, 37847, 37850, 37851, 37860, 37861, 37848, 37849, 37852,
37865, 37866, 37869, 37870, 37855, 37871, 37872, 37867, 37868, 37854,
37885, 37856, 37878, 37883, 37853, 37881, 37876, 37884, 37857, 37858,
37886, 37887, 37888, 41412, 41412, 41412, 41412, 37895, 37897, 37894,
37893, 37890, 37889, 37892, 37891, 37898, 37896, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 25609, 25607, 25601, 25612, 25604, 25611, 25615,
25606, 25603, 25605, 25608, 25602, 25617, 25613, 25610, 25616, 25614,
25618, 25624, 25621, 25623, 25620, 25622, 25619, 25600, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 21676, 21680, 21678, 21679, 21617,
21618, 21637, 21638, 21631, 21632, 21633, 21634, 21635, 21636, 21662,
21619, 21663, 41412, 21653, 21652, 21651, 21650, 21639, 21649, 21648,
21622, 21621, 21641, 21628, 21627, 21624, 21623, 21640, 21630, 21629,
21626, 21625, 21642, 21655, 21654, 21647, 21646, 21658, 21661, 21659,
21657, 21660, 21643, 21644, 21645, 21656, 21620, 21682, 21681, 21689,
21690, 21687, 21688, 21684, 41412, 41412, 41412, 21685, 21683, 21686,
21675, 21703, 21692, 21691, 21670, 21673, 21669, 21671, 21667, 21666,
21674, 21665, 21668, 21672, 21664, 21699, 21701, 21698, 21697, 21694,
21693, 21696, 21695, 21702, 21700, 21677, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 25255, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 35704, 35700, 35694,
35703, 35696, 35705, 35709, 35711, 35706, 35701, 35702, 35707, 35695,
35712, 35710, 35697, 35708, 35698, 35699, 35713, 35714, 35778, 35761,
35759, 35768, 35767, 35763, 35769, 35765, 35764, 35771, 35772, 35773,
35770, 35762, 35775, 35693, 35680, 35751, 35758, 36048, 36049, 35678,
35653, 35779, 36047, 35715, 35780, 35766, 35774, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
35756, 8952, 8960, 8958, 8954, 8959, 8955, 8953, 8956, 8957, 9021, 8961,
8970, 8969, 8963, 8962, 8974, 8964, 8965, 8973, 8967, 8968, 8975, 8976,
8981, 8978, 8977, 8979, 8980, 8983, 8985, 8987, 8986, 8988, 8994, 8991,
8992, 8996, 8989, 8990, 8995, 8993, 8998, 8997, 8999, 9001, 9002, 9006,
9005, 9003, 9004, 9007, 9020, 9008, 9009, 9010, 9019, 9011, 9015, 9016,
9014, 9012, 9013, 9018, 9017, 9022, 9023, 9034, 9025, 9029, 9030, 9031,
9032, 9033, 9035, 9038, 9037, 9036, 9039, 9041, 9042, 9043, 9044, 9045,
9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057,
9058, 9073, 9059, 9060, 9070, 9064, 9061, 9062, 9063, 9071, 9068, 9072,
9069, 9065, 9067, 9080, 9076, 9077, 9078, 9081, 9092, 9082, 9085, 9086,
9088, 9089, 9090, 9093, 9096, 9094, 9095, 9097, 9098, 9100, 9101, 9130,
9137, 9131, 9132, 9133, 9134, 9135, 9136, 9138, 9140, 9139, 9141, 9144,
9145, 9148, 9142, 9143, 9149, 9194, 9193, 9195, 9150, 9153, 9154, 9155,
9151, 9152, 9156, 9159, 9157, 9160, 9162, 9171, 9172, 9173, 9174, 9192,
9175, 9176, 9189, 9190, 9188, 9177, 9178, 9179, 9180, 9181, 9182, 9183,
9186, 9187, 9196, 9286, 9197, 9198, 9200, 9199, 9206, 9201, 9203, 9205,
9209, 9208, 9210, 9211, 9218, 9212, 9213, 9217, 9221, 9222, 9219, 9220,
9228, 9225, 9229, 9230, 9231, 9232, 9233, 9235, 9236, 9238, 9237, 9240,
9239, 9242, 9241, 9243, 9244, 9246, 9247, 9251, 9253, 9257, 9258, 9271,
9263, 9264, 9259, 9260, 9261, 9265, 9269, 9266, 9267, 9268, 9272, 9273,
9275, 9276, 9277, 9278, 9279, 9280, 9290, 9281, 9282, 9285, 9284, 9283,
9287, 9288, 9289, 9291, 9292, 9295, 9296, 9297, 9298, 9299, 9301, 9300,
9317, 9308, 9309, 9302, 9303, 9305, 9306, 9304, 9307, 9316, 9310, 9315,
9313, 9312, 9314, 9319, 9338, 9320, 9321, 9322, 9325, 9324, 9326, 9327,
9329, 9330, 9331, 9339, 9332, 9333, 9334, 9337, 9336, 9335, 9340, 9341,
9343, 9344, 9345, 9346, 9348, 9352, 9349, 9353, 9351, 9350, 9354, 9355,
9356, 9357, 9361, 9360, 9358, 9359, 9362, 9363, 9365, 9384, 9386, 9366,
9368, 9367, 9369, 9370, 9373, 9374, 9372, 9371, 9375, 9376, 9377, 9378,
9381, 9379, 9380, 9382, 9383, 9387, 9388, 9385, 9389, 9390, 9391, 9392,
9394, 9397, 9396, 9398, 9399, 9401, 9402, 9403, 9407, 9406, 9404, 9405,
9408, 9412, 9411, 9410, 9413, 9414, 9416, 9417, 9421, 9418, 9419, 9424,
9422, 9425, 9426, 9428, 9427, 9429, 9430, 9452, 9451, 9454, 9455, 9436,
9437, 9434, 9435, 9433, 9431, 9439, 9438, 9440, 9442, 9448, 9449, 9446,
9447, 9456, 9457, 9458, 9476, 9461, 9462, 9463, 9459, 9460, 9464, 9465,
9466, 9467, 9468, 9470, 9471, 9472, 9473, 9474, 9499, 9477, 9480, 9478,
9479, 9485, 9486, 9483, 9484, 9481, 9482, 9487, 9488, 9496, 9489, 9490,
9497, 9494, 9495, 9498, 9491, 9492, 9493, 9500, 9501, 9502, 9503, 9504,
9505, 9506, 9508, 9509, 9507, 9510, 9511, 9552, 9553, 9514, 9515, 9512,
9513, 9518, 9519, 9517, 9523, 9520, 9522, 9521, 9527, 9528, 9526, 9524,
9525, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9554, 9540, 9536, 9537,
9538, 9539, 9541, 9543, 9542, 9544, 9545, 9547, 9546, 9548, 9550, 9549,
9555, 9556, 9559, 9560, 9557, 9558, 9634, 9629, 9630, 9631, 9632, 9633,
9635, 9638, 9636, 9637, 9639, 9681, 9640, 9670, 9671, 9647, 9649, 9666,
9650, 9672, 9654, 9652, 9653, 9655, 9656, 9657, 9658, 9667, 9668, 9661,
9662, 9664, 9673, 9641, 9642, 9646, 9644, 9682, 9674, 9676, 9675, 9677,
9683, 9684, 9678, 9679, 9680, 9685, 9686, 9687, 9690, 9691, 9692, 9688,
9689, 9693, 9694, 9696, 9698, 9699, 9717, 9715, 9716, 9719, 9718, 9700,
9707, 9705, 9706, 9701, 9702, 9708, 9709, 9710, 9711, 9712, 9714, 9720,
9729, 9721, 9723, 9724, 9722, 9725, 9727, 9726, 9728, 9731, 9733, 9732,
9734, 9735, 9768, 9770, 9736, 9738, 9737, 9740, 9743, 9741, 9742, 9746,
9750, 9753, 9752, 9755, 9758, 9756, 9757, 9761, 9763, 9769, 9771, 9772,
9776, 9783, 9781, 9779, 9780, 9782, 9785, 9784, 9777, 9778, 9786, 9789,
9795, 9790, 9793, 9788, 9787, 9796, 9794, 9791, 9792, 9797, 9798, 9799,
9800, 9801, 9802, 9803, 9805, 9808, 9809, 9812, 9813, 9814, 9810, 9811,
9806, 9807, 9815, 9816, 9817, 9818, 9819, 9820, 9822, 9823, 9824, 9825,
9826, 9830, 9827, 9851, 9844, 9845, 9850, 9833, 9832, 9846, 9849, 9847,
9836, 9835, 9838, 9840, 9841, 9842, 9843, 9839, 9852, 9828, 9853, 9854,
9855, 9856, 9857, 9858, 9866, 9864, 9862, 9865, 9861, 9863, 9859, 9860,
9867, 9869, 9870, 9871, 9878, 9873, 9874, 9882, 9883, 9879, 9881, 9880,
9884, 9886, 9885, 9887, 9898, 9889, 9888, 9897, 9895, 9890, 9891, 9892,
9894, 9893, 9896, 9902, 9899, 9901, 9900, 9903, 9904, 9905, 9906, 9909,
9910, 9912, 9913, 9914, 9915, 9917, 9916, 9918, 9925, 9919, 9920, 9926,
9921, 9922, 9923, 9924, 9927, 9931, 9928, 9929, 9930, 9932, 9933, 9934,
9935, 9941, 9939, 9937, 9938, 9936, 9940, 9942, 9944, 9961, 9962, 9945,
9950, 9952, 9946, 9949, 9947, 9948, 9953, 9959, 9960, 9954, 9957, 9958,
9963, 9969, 9968, 9964, 9966, 9965, 10050, 10051, 9970, 9971, 9976, 9977,
9974, 9975, 9978, 9972, 9973, 9979, 9982, 9983, 9985, 9986, 9987, 9991,
9988, 9989, 9990, 9980, 9981, 9992, 9994, 9993, 9995, 9997, 9998, 9999,
10005, 10004, 10000, 10001, 10002, 10037, 10006, 10007, 10008, 10009,
10010, 10029, 10012, 10013, 10015, 10014, 10016, 10017, 10033, 10018,
10020, 10019, 10032, 10022, 10030, 10034, 10025, 10024, 10031, 10026,
10028, 10027, 10035, 10036, 10038, 10042, 10040, 10041, 10039, 10045,
10044, 10043, 10049, 10046, 10047, 10048, 10052, 10054, 10053, 10057,
10055, 10072, 10058, 10061, 10063, 10059, 10060, 10064, 10062, 10065,
10067, 10069, 10070, 10071, 9475, 8971, 8982, 9000, 9066, 9075, 9091,
9099, 9191, 9184, 9202, 9204, 9294, 9318, 9364, 9393, 9395, 9409, 9415,
9450, 9423, 9453, 9432, 9441, 9445, 9516, 9645, 9648, 9663, 9695, 9713,
9730, 9739, 9767, 9765, 9744, 9775, 9804, 9821, 9831, 9951, 9984, 9967,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 8936, 8931, 8868, 8854, 8915, 8911, 8843, 8888, 8935, 8876,
8860, 8921, 8910, 8842, 8887, 8874, 8858, 8917, 8907, 8837, 8884, 8897,
8941, 8933, 8870, 8856, 8919, 8909, 8839, 8886, 8898, 8942, 8934, 8871,
8857, 8943, 8925, 8926, 8872, 8848, 8914, 8906, 8836, 8883, 8901, 8944,
8927, 8928, 8873, 8849, 8912, 8913, 8896, 8939, 8922, 8923, 8863, 8853,
8929, 8930, 8864, 8867, 8865, 8866, 8920, 8905, 8903, 8904, 8840, 8841,
8879, 8881, 8882, 8880, 8937, 8932, 8869, 8855, 8916, 8895, 8938, 8924,
8861, 8862, 8851, 8852, 8878, 8877, 8891, 8940, 8900, 8946, 8850, 8899,
8945, 8892, 8893, 8889, 8890, 8894, 8902, 8844, 8847, 8846, 8845, 8875,
8859, 8918, 8908, 8838, 8885, 41412, 8951, 8950, 8949, 8947, 8948, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
8972, 8966, 8984, 9024, 9026, 9027, 9028, 9040, 9079, 9074, 9084, 9083,
9087, 9104, 9102, 9103, 9105, 9106, 9124, 9110, 9107, 9108, 9109, 9126,
9127, 9125, 9114, 9113, 9111, 9112, 9117, 9115, 9116, 9118, 9119, 9120,
9121, 9128, 9129, 9123, 9122, 9147, 9146, 9158, 9161, 9166, 9170, 9163,
9167, 9168, 9164, 9165, 9169, 9185, 9207, 9214, 9215, 9216, 9223, 9224,
9227, 9226, 9234, 9245, 9248, 9249, 9250, 9252, 9254, 9255, 9256, 9262,
9270, 9274, 9293, 9311, 9323, 9328, 9342, 9347, 9400, 9420, 9443, 9444,
9551, 9571, 9561, 9562, 9570, 9566, 9567, 9568, 9565, 9564, 9563, 9569,
9573, 9572, 9579, 9580, 9574, 9575, 9576, 9581, 9577, 9578, 9582, 9583,
9584, 9585, 9586, 9587, 9594, 9588, 9593, 9592, 9590, 9589, 9591, 9595,
9596, 9601, 9602, 9597, 9598, 9599, 9600, 9628, 9624, 9603, 9611, 9612,
9610, 9609, 9613, 9604, 9605, 9607, 9608, 9606, 9625, 9614, 9621, 9623,
9618, 9619, 9622, 9617, 9620, 9616, 9615, 9626, 9627, 9643, 9669, 9651,
9659, 9660, 9665, 9697, 9704, 9703, 9764, 9745, 9747, 9766, 9748, 9749,
9751, 9754, 9759, 9760, 9762, 9829, 9848, 9834, 9837, 9868, 9872, 9875,
9876, 9877, 9908, 9907, 9911, 9943, 9955, 9956, 9996, 10003, 10011,
10023, 10021, 10056, 10066, 10068, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 10145, 10146, 10147,
10148, 10149, 10150, 10151, 10152, 10155, 10156, 10153, 10154, 10157,
10158, 10159, 10160, 10161, 10162, 10163, 10164, 10165, 10166, 10167,
10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177,
10178, 10179, 10180, 10181, 10182, 10183, 10184, 10185, 10186, 10187,
10188, 10189, 10190, 10191, 10211, 10212, 10213, 10214, 10215, 10216,
10217, 10218, 10219, 10194, 10195, 10196, 10197, 10198, 10192, 10193,
10199, 10200, 10201, 10220, 10221, 10222, 10223, 10224, 10225, 10226,
10227, 10228, 10229, 10202, 10203, 10204, 10205, 10206, 10207, 10208,
10209, 10210, 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237,
10238, 10239, 10240, 10241, 10242, 10243, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 11681,
11682, 11683, 11684, 11679, 11680, 11676, 11677, 11678, 11685, 11686,
11687, 11692, 11693, 11694, 11695, 11688, 11689, 11696, 11697, 11690,
11691, 11698, 11699, 11726, 11727, 11728, 11729, 11730, 11731, 11732,
11733, 11734, 11735, 11716, 11717, 11714, 11715, 11718, 11719, 11720,
11721, 11722, 11723, 11724, 11700, 11701, 11708, 11702, 11703, 11704,
11705, 11709, 11706, 11707, 11710, 11711, 11712, 11713, 11736, 11737,
11738, 11739, 11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747,
11748, 11749, 11750, 11751, 11752, 11753, 11754, 11755, 11725, 11795,
11796, 11797, 11798, 11793, 11794, 11799, 11800, 11801, 11802, 11807,
11803, 11804, 11805, 11806, 11808, 11809, 11810, 11811, 11812, 11813,
11814, 11815, 11816, 11817, 11818, 11819, 11820, 11821, 11822, 11823,
11824, 11825, 11826, 11827, 11828, 11829, 11830, 11833, 11834, 11835,
11836, 11837, 11838, 11839, 11831, 11832, 11840, 11913, 11914, 11915,
11916, 11917, 11918, 11919, 11920, 11921, 11922, 11904, 11905, 11906,
11907, 11908, 11909, 11910, 11902, 11903, 11911, 11912, 11845, 11841,
11842, 11846, 11847, 11843, 11844, 11848, 11849, 11850, 11851, 11852,
11857, 11858, 11859, 11860, 11861, 11862, 11853, 11854, 11863, 11855,
11856, 11864, 11865, 11866, 11867, 11868, 11869, 11870, 11871, 11872,
11873, 11874, 11879, 11875, 11876, 11880, 11877, 11878, 11881, 11882,
11883, 11884, 11885, 11895, 11896, 11897, 11898, 11899, 11900, 11901,
11886, 11887, 11888, 11889, 11890, 11891, 11892, 11893, 11894, 11927,
11928, 11929, 11930, 11931, 11932, 11933, 11923, 11924, 11925, 11926,
11959, 11960, 11961, 11962, 11963, 11964, 11955, 11956, 11957, 11958,
11965, 11966, 11934, 11935, 11938, 11939, 11940, 11941, 11942, 11943,
11944, 11936, 11937, 11945, 11948, 11949, 11950, 11951, 11946, 11947,
11952, 11953, 11954, 11970, 11971, 11972, 11973, 11974, 11975, 11976,
11977, 11978, 11979, 11982, 11983, 11984, 11980, 11981, 11985, 11986,
11987, 11988, 11989, 11990, 12026, 12024, 12025, 12027, 12028, 12029,
12030, 12031, 12032, 12033, 12034, 11997, 11991, 11992, 11998, 11999,
12000, 12001, 12002, 11993, 11994, 11995, 11996, 12003, 12010, 12011,
12012, 12013, 12014, 12004, 12005, 12006, 12007, 12008, 12009, 12015,
12016, 12021, 12017, 12018, 12019, 12020, 12022, 12023, 12041, 12042,
12043, 12044, 12045, 12039, 12040, 12036, 12037, 12038, 12046, 12047,
12050, 12048, 12049, 12051, 12052, 12053, 12054, 12055, 12056, 12057,
12058, 12083, 12084, 12087, 12088, 12089, 12090, 12091, 12085, 12086,
12092, 12093, 12094, 12063, 12064, 12065, 12066, 12067, 12068, 12059,
12060, 12061, 12062, 12069, 12070, 12075, 12076, 12077, 12071, 12072,
12078, 12073, 12074, 12079, 12080, 12081, 12082, 12095, 12096, 12097,
12098, 12099, 12102, 12103, 12104, 12105, 12106, 12100, 12101, 12107,
12108, 12116, 12117, 12118, 12119, 12112, 12113, 12120, 12121, 12122,
12114, 12115, 12123, 12124, 12125, 12126, 12127, 12128, 12129, 12130,
12771, 12772, 12773, 12774, 12775, 12776, 12777, 12778, 12142, 12138,
12139, 12143, 12144, 12145, 12140, 12141, 12146, 12147, 12149, 12150,
12151, 12154, 12152, 12153, 12155, 12156, 12157, 12158, 12159, 12160,
12170, 12171, 12178, 12161, 12162, 12163, 12164, 12165, 12166, 12167,
12168, 12169, 12179, 12180, 12172, 12173, 12174, 12175, 12176, 12177,
12181, 12182, 12189, 12190, 12183, 12184, 12191, 12185, 12186, 12192,
12193, 12194, 12187, 12188, 12195, 12201, 12199, 12200, 12202, 12196,
12197, 12198, 12203, 12204, 12205, 12206, 12207, 12208, 12209, 12210,
12211, 12212, 12213, 12214, 12271, 12272, 12273, 12274, 12275, 12276,
12277, 12278, 12279, 12234, 12235, 12236, 12237, 12238, 12239, 12240,
12241, 12231, 12232, 12233, 12242, 12259, 12260, 12261, 12262, 12263,
12257, 12258, 12264, 12265, 12266, 12267, 12251, 12252, 12253, 12243,
12244, 12245, 12246, 12247, 12248, 12254, 12249, 12250, 12255, 12256,
12268, 12269, 12270, 12282, 12283, 12284, 12285, 12280, 12281, 12286,
12287, 12288, 12289, 12292, 12293, 12294, 12295, 12296, 12297, 12298,
12290, 12291, 12299, 12300, 12301, 12319, 12320, 12321, 12322, 12323,
12324, 12325, 12326, 12327, 12302, 12303, 12304, 12305, 12308, 12309,
12310, 12311, 12312, 12313, 12306, 12307, 12314, 12317, 12318, 12315,
12316, 12335, 12336, 12339, 12340, 12341, 12337, 12338, 12328, 12329,
12330, 12331, 12332, 12333, 12334, 12342, 12343, 12344, 12345, 12346,
12347, 12348, 12351, 12352, 12353, 12354, 12355, 12356, 12357, 12358,
12349, 12350, 12359, 12360, 12367, 12368, 12369, 12361, 12362, 12363,
12364, 12370, 12371, 12372, 12365, 12366, 12378, 12379, 12382, 12383,
12380, 12381, 12384, 12385, 12373, 12374, 12375, 12376, 12377, 12386,
12387, 12388, 12393, 12394, 12395, 12396, 12397, 12398, 12399, 12400,
12401, 12402, 12389, 12390, 12391, 12392, 12404, 12405, 12408, 12406,
12407, 12409, 12410, 12411, 12412, 12413, 12414, 12415, 12416, 12779,
12780, 12781, 12782, 12783, 12784, 12785, 12422, 12420, 12421, 12417,
12418, 12419, 12423, 12424, 12425, 12426, 12427, 12428, 12429, 12430,
12433, 12434, 12435, 12436, 12437, 12431, 12432, 12438, 12439, 12440,
12441, 12442, 12443, 12444, 12445, 12446, 12447, 12448, 12449, 12450,
12455, 12451, 12452, 12456, 12457, 12458, 12453, 12454, 12459, 12460,
12461, 12467, 12468, 12469, 12470, 12462, 12463, 12464, 12471, 12472,
12465, 12466, 12473, 12474, 12478, 12479, 12480, 12481, 12482, 12483,
12475, 12476, 12477, 12484, 12485, 12486, 12489, 12490, 12491, 12492,
12493, 12487, 12488, 12494, 12495, 12496, 12497, 12498, 12499, 12500,
12501, 12502, 12503, 12504, 12513, 12514, 12505, 12506, 12515, 12516,
12517, 12507, 12508, 12509, 12510, 12511, 12512, 12522, 12518, 12519,
12523, 12524, 12525, 12526, 12520, 12521, 12527, 12528, 12529, 12539,
12540, 12541, 12542, 12543, 12544, 12545, 12546, 12547, 12548, 12534,
12535, 12530, 12531, 12532, 12533, 12536, 12537, 12538, 12553, 12554,
12555, 12556, 12557, 12550, 12551, 12552, 12558, 12559, 12560, 12587,
12588, 12589, 12590, 12591, 12592, 12593, 12594, 12595, 12596, 12565,
12566, 12567, 12561, 12562, 12568, 12569, 12570, 12571, 12572, 12563,
12564, 12575, 12576, 12573, 12574, 12577, 12578, 12579, 12580, 12581,
12582, 12583, 12584, 12585, 12586, 12600, 12601, 12602, 12603, 12604,
12605, 12606, 12607, 12608, 12609, 12610, 12611, 12612, 12613, 12614,
12615, 12597, 12598, 12599, 12616, 12617, 12626, 12618, 12619, 12620,
12621, 12623, 12624, 12625, 12627, 12628, 12629, 12630, 12631, 12632,
12633, 12634, 12635, 12636, 12637, 12638, 12639, 12640, 12641, 12642,
12643, 12644, 12645, 12646, 12653, 12654, 12647, 12648, 12655, 12656,
12657, 12658, 12649, 12650, 12651, 12652, 12659, 12660, 12661, 12662,
12667, 12663, 12664, 12668, 12669, 12670, 12665, 12666, 12671, 12672,
12673, 12674, 12680, 12681, 12676, 12677, 12682, 12683, 12684, 12685,
12686, 12678, 12679, 12687, 12688, 12695, 12696, 12697, 12689, 12690,
12698, 12699, 12691, 12692, 12693, 12694, 12700, 12703, 12704, 12705,
12706, 12701, 12702, 12707, 12716, 12717, 12718, 12709, 12710, 12711,
12719, 12712, 12713, 12720, 12714, 12715, 12721, 12722, 12723, 12724,
12725, 12726, 12727, 12728, 12729, 12742, 12730, 12731, 12732, 12733,
12734, 12735, 12736, 12737, 12738, 12739, 12740, 12741, 12743, 12744,
12745, 12746, 12766, 12767, 12768, 12769, 12770, 12747, 12748, 12749,
12750, 12751, 12752, 12753, 12754, 12755, 12756, 12757, 12758, 12759,
12760, 12761, 12762, 12763, 12764, 12765, 11759, 11760, 11761, 11762,
11763, 11764, 11756, 11757, 11758, 11765, 11766, 11770, 11771, 11772,
11773, 11774, 11775, 11776, 11777, 11778, 11779, 11780, 11781, 11782,
11783, 11784, 11785, 11786, 11787, 11788, 11789, 11767, 11768, 11769,
12622, 12675, 12111, 12136, 12133, 12135, 12132, 12403, 11792, 11969,
12137, 12134, 12131, 11791, 11968, 11790, 11967, 12230, 12035, 12109,
12148, 12110, 12549, 12708, 12226, 12217, 12221, 12228, 12224, 12218,
12223, 12220, 12227, 12216, 12222, 12229, 12225, 12219, 12215, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 12786,
12787, 12788, 12789, 12790, 12791, 12792, 12793, 12794, 12795, 12796,
12797, 12798, 12799, 12800, 12801, 12802, 12803, 12804, 12805, 12806,
12807, 12808, 12809, 12810, 12811, 12812, 12813, 12814, 12815, 12816,
12817, 12818, 12819, 12820, 12821, 12822, 12823, 12824, 12825, 12826,
12827, 12828, 12829, 12830, 12831, 12832, 12833, 12834, 12835, 12836,
12837, 12838, 12839, 12840, 12841, 12842, 12843, 12844, 12845, 12846,
12847, 12848, 12849, 12850, 12851, 12852, 12853, 12854, 12855, 12856,
12857, 12858, 12859, 12860, 12861, 12862, 12863, 12864, 12865, 12866,
12867, 12868, 12869, 12870, 12871, 12872, 12873, 12874, 12875, 12876,
12877, 12878, 12879, 12880, 12881, 12882, 12883, 12884, 12885, 12886,
12887, 12888, 12889, 12890, 12891, 12892, 12893, 12894, 12895, 12896,
12897, 12898, 12899, 12900, 12901, 12902, 12903, 12904, 12905, 12906,
12907, 12908, 12909, 12910, 12911, 12912, 12913, 12914, 12915, 12916,
12917, 12918, 12919, 12920, 12921, 12922, 12923, 12924, 12925, 12926,
12927, 12928, 12929, 12930, 12931, 12932, 12933, 12934, 12935, 12936,
12937, 12938, 12939, 12940, 12941, 12942, 12943, 12944, 12945, 12946,
12947, 12948, 12949, 12950, 12951, 12952, 12953, 12954, 12955, 12956,
12957, 12958, 12959, 12960, 12961, 12962, 12963, 12964, 12965, 12966,
12967, 12968, 12969, 12970, 12971, 12972, 12973, 12974, 12975, 12976,
12977, 12978, 12979, 12980, 12981, 12982, 12983, 12984, 12985, 12986,
12987, 12988, 12989, 12990, 12991, 12992, 12993, 12994, 12995, 12996,
12997, 12998, 12999, 13000, 13001, 13002, 13003, 13004, 13005, 13006,
13007, 13008, 13009, 13010, 13011, 13012, 13013, 13014, 13015, 13016,
13017, 13018, 13019, 13020, 13021, 13022, 13023, 13024, 13025, 13026,
13027, 13028, 13029, 13030, 13031, 13032, 13033, 13034, 13035, 13036,
13037, 13038, 13039, 13040, 13041, 13042, 13043, 13044, 13045, 13046,
13047, 13048, 13049, 13050, 13051, 13052, 13053, 13054, 13055, 13056,
13057, 13058, 13059, 13060, 13061, 13062, 13063, 13064, 13065, 13066,
13067, 13068, 13069, 13070, 13071, 13072, 13073, 13074, 13075, 13076,
13077, 13078, 13079, 13080, 13081, 13082, 13083, 13084, 13085, 13086,
13087, 13088, 13089, 13090, 13091, 13092, 13093, 13094, 13095, 13096,
13097, 13098, 13099, 13100, 13101, 13102, 13103, 13104, 13105, 13106,
13107, 13108, 13109, 13110, 13111, 13112, 13113, 13114, 13115, 13116,
13117, 13118, 13119, 13120, 13121, 13122, 13123, 13124, 13125, 13126,
13127, 13128, 13129, 13130, 13131, 13132, 13133, 13134, 13135, 13136,
13137, 13138, 13139, 13140, 13141, 13142, 13143, 13144, 13145, 13146,
13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13155, 13156,
13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 13166,
13167, 13168, 13169, 13170, 13171, 13172, 13173, 13174, 13175, 13176,
13177, 13178, 13179, 13180, 13181, 13182, 13183, 13184, 13185, 13186,
13187, 13188, 13189, 13190, 13191, 13192, 13193, 13194, 13195, 13196,
13197, 13198, 13199, 13200, 13201, 13202, 13203, 13204, 13205, 13206,
13207, 13208, 13209, 13210, 13211, 13212, 13213, 13214, 13215, 13216,
13217, 13218, 13219, 13220, 13221, 13222, 13223, 13224, 13225, 13226,
13227, 13228, 13229, 13230, 13231, 13232, 13233, 13234, 13235, 13236,
13237, 13238, 13239, 13240, 13241, 13242, 13243, 13244, 13245, 13246,
13247, 13248, 13249, 13250, 13251, 13252, 13253, 13254, 13255, 13256,
13257, 13258, 13259, 13260, 13261, 13262, 13263, 13264, 13265, 13266,
13267, 13268, 13269, 13270, 13271, 13272, 13273, 13274, 13275, 13276,
13277, 13278, 13279, 13280, 13281, 13282, 13283, 13284, 13285, 13286,
13287, 13288, 13289, 13290, 13291, 13292, 13293, 13294, 13295, 13296,
13297, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306,
13307, 13308, 13309, 13310, 13311, 13312, 13313, 13314, 13315, 13316,
13317, 13318, 13319, 13320, 13321, 13322, 13323, 13324, 13325, 13326,
13327, 13328, 13329, 13330, 13331, 13332, 13333, 13334, 13335, 13336,
13337, 13338, 13339, 13340, 13341, 13342, 13343, 13344, 13345, 13346,
13347, 13348, 13349, 13350, 13351, 13352, 13353, 13354, 13355, 13356,
13357, 13358, 13359, 13360, 13361, 13362, 13363, 13364, 13365, 13366,
13367, 13368, 13369, 13370, 13371, 13372, 13373, 13374, 13375, 13376,
13377, 13378, 13379, 13380, 13381, 13382, 13383, 13384, 13385, 13386,
13387, 13388, 13389, 13390, 13391, 13392, 13393, 13394, 13395, 13396,
13397, 13398, 13399, 13400, 13401, 13402, 13403, 13404, 13405, 13406,
13407, 13408, 13409, 13410, 13411, 13412, 13413, 13414, 13415, 13416,
13417, 13418, 13419, 13420, 13421, 13422, 13423, 13424, 13425, 13426,
13427, 13428, 13429, 13430, 13431, 13432, 13433, 13434, 13435, 13436,
13437, 13438, 13439, 13440, 13441, 13442, 13443, 13444, 13445, 13446,
13447, 13448, 13449, 13450, 13451, 13452, 13453, 13454, 13455, 13456,
13457, 13458, 13459, 13460, 13461, 13462, 13463, 13464, 13465, 13466,
13467, 13468, 13469, 13470, 13471, 13472, 13473, 13474, 13475, 13476,
13477, 13478, 13479, 13480, 13481, 13482, 13483, 13484, 13485, 13486,
13487, 13488, 13489, 13490, 13491, 13492, 13493, 13494, 13495, 13496,
13497, 13498, 13499, 13500, 13501, 13502, 13503, 13504, 13505, 13506,
13507, 13508, 13509, 13510, 13511, 13512, 13513, 13514, 13515, 13516,
13517, 13518, 13519, 13520, 13521, 13522, 13523, 13524, 13525, 13526,
13527, 13528, 13529, 13530, 13531, 13532, 13533, 13534, 13535, 13536,
13537, 13538, 13539, 13540, 13541, 13542, 13543, 13544, 13545, 13546,
13547, 13548, 13549, 13550, 13551, 13552, 13553, 13554, 13555, 13556,
13557, 13558, 13559, 13560, 13561, 13562, 13563, 13564, 13565, 13566,
13567, 13568, 13569, 13570, 13571, 13572, 13573, 13574, 13575, 13576,
13577, 13578, 13579, 13580, 13581, 13582, 13583, 13584, 13585, 13586,
13587, 13588, 13589, 13590, 13591, 13592, 13593, 13594, 13595, 13596,
13597, 13598, 13599, 13600, 13601, 13602, 13603, 13604, 13605, 13606,
13607, 13608, 13609, 13610, 13611, 13612, 13613, 13614, 13615, 13616,
13617, 13618, 13619, 13620, 13621, 13622, 13623, 13624, 13625, 13626,
13627, 13628, 13629, 13630, 13631, 13632, 13633, 13634, 13635, 13636,
13637, 13638, 13639, 13640, 13641, 13642, 13643, 13644, 13645, 13646,
13647, 13648, 13649, 13650, 13651, 13652, 13653, 13654, 13655, 13656,
13657, 13658, 13659, 13660, 13661, 13662, 13663, 13664, 13665, 13666,
13667, 13668, 13669, 13670, 13671, 13672, 13673, 13674, 13675, 13676,
13677, 13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13686,
13687, 13688, 13689, 13690, 13691, 13692, 13693, 13694, 13695, 13696,
13697, 13698, 13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706,
13707, 13708, 13709, 13710, 13711, 13712, 13713, 13714, 13715, 13716,
13717, 13718, 13719, 13720, 13721, 13722, 13723, 13724, 13725, 13726,
13727, 13728, 13729, 13730, 13731, 13732, 13733, 13734, 13735, 13736,
13737, 13738, 13739, 13740, 13741, 13742, 13743, 13744, 13745, 13746,
13747, 13748, 13749, 13750, 13751, 13752, 13753, 13754, 13755, 13756,
13757, 13758, 13759, 13760, 13761, 13762, 13763, 13764, 13765, 13766,
13767, 13768, 13769, 13770, 13771, 13772, 13773, 13774, 13775, 13776,
13777, 13778, 13779, 13780, 13781, 13782, 13783, 13784, 13785, 13786,
13787, 13788, 13789, 13790, 13791, 13792, 13793, 13794, 13795, 13796,
13797, 13798, 13799, 13800, 13801, 13802, 13803, 13804, 13805, 13806,
13807, 13808, 13809, 13810, 13811, 13812, 13813, 13814, 13815, 13816,
13817, 13818, 13819, 13820, 13821, 13822, 13823, 13824, 13825, 13826,
13827, 13828, 13829, 13830, 13831, 13832, 13833, 13834, 13835, 13836,
13837, 13838, 13839, 13840, 13841, 13842, 13843, 13844, 13845, 13846,
13847, 13848, 13849, 13850, 13851, 13852, 13853, 13854, 13855, 13856,
13857, 13858, 13859, 13860, 13861, 13862, 13863, 13864, 13865, 13866,
13867, 13868, 13869, 13870, 13871, 13872, 13873, 13874, 13875, 13876,
13877, 13878, 13879, 13880, 13881, 13882, 13883, 13884, 13885, 13886,
13887, 13888, 13889, 13890, 13891, 13892, 13893, 13894, 13895, 13896,
13897, 13898, 13899, 13900, 13901, 13902, 13903, 13904, 13905, 13906,
13907, 13908, 13909, 13910, 13911, 13912, 13913, 13914, 13915, 13916,
13917, 13918, 13919, 13920, 13921, 13922, 13923, 13924, 13925, 13926,
13927, 13928, 13929, 13930, 13931, 13932, 13933, 13934, 13935, 13936,
13937, 13938, 13939, 13940, 13941, 13942, 13943, 13944, 13945, 13946,
13947, 13948, 13949, 13950, 13951, 13952, 13953, 13954, 13955, 13956,
13957, 13958, 13959, 13960, 13961, 13962, 13963, 13964, 13965, 13966,
13967, 13968, 13969, 13970, 13971, 13972, 13973, 13974, 13975, 13976,
13977, 13978, 13979, 13980, 13981, 13982, 13983, 13984, 13985, 13986,
13987, 13988, 13989, 13990, 13991, 13992, 13993, 13994, 13995, 13996,
13997, 13998, 13999, 14000, 14001, 14002, 14003, 14004, 14005, 14006,
14007, 14008, 14009, 14010, 14011, 14012, 14013, 14014, 14015, 14016,
14017, 14018, 14019, 14020, 14021, 14022, 14023, 14024, 14025, 14026,
14027, 14028, 14029, 14030, 14031, 14032, 14033, 14034, 14035, 14036,
14037, 14038, 14039, 14040, 14041, 14042, 14043, 14044, 14045, 14046,
14047, 14048, 14049, 14050, 14051, 14052, 14053, 14054, 14055, 14056,
14057, 14058, 14059, 14060, 14061, 14062, 14063, 14064, 14065, 14066,
14067, 14068, 14069, 14070, 14071, 14072, 14073, 14074, 14075, 14076,
14077, 14078, 14079, 14080, 14081, 14082, 14083, 14084, 14085, 14086,
14087, 14088, 14089, 14090, 14091, 14092, 14093, 14094, 14095, 14096,
14097, 14098, 14099, 14100, 14101, 14102, 14103, 14104, 14105, 14106,
14107, 14108, 14109, 14110, 14111, 14112, 14113, 14114, 14115, 14116,
14117, 14118, 14119, 14120, 14121, 14122, 14123, 14124, 14125, 14126,
14127, 14128, 14129, 14130, 14131, 14132, 14133, 14134, 14135, 14136,
14137, 14138, 14139, 14140, 14141, 14142, 14143, 14144, 14145, 14146,
14147, 14148, 14149, 14150, 14151, 14152, 14153, 14154, 14155, 14156,
14157, 14158, 14159, 14160, 14161, 14162, 14163, 14164, 14165, 14166,
14167, 14168, 14169, 14170, 14171, 14172, 14173, 14174, 14175, 14176,
14177, 14178, 14179, 14180, 14181, 14182, 14183, 14184, 14185, 14186,
14187, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14195, 14196,
14197, 14198, 14199, 14200, 14201, 14202, 14203, 14204, 14205, 14206,
14207, 14208, 14209, 14210, 14211, 14212, 14213, 14214, 14215, 14216,
14217, 14218, 14219, 14220, 14221, 14222, 14223, 14224, 14225, 14226,
14227, 14228, 14229, 14230, 14231, 14232, 14233, 14234, 14235, 14236,
14237, 14238, 14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246,
14247, 14248, 14249, 14250, 14251, 14252, 14253, 14254, 14255, 14256,
14257, 14258, 14259, 14260, 14261, 14262, 14263, 14264, 14265, 14266,
14267, 14268, 14269, 14270, 14271, 14272, 14273, 14274, 14275, 14276,
14277, 14278, 14279, 14280, 14281, 14282, 14283, 14284, 14285, 14286,
14287, 14288, 14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296,
14297, 14298, 14299, 14300, 14301, 14302, 14303, 14304, 14305, 14306,
14307, 14308, 14309, 14310, 14311, 14312, 14313, 14314, 14315, 14316,
14317, 14318, 14319, 14320, 14321, 14322, 14323, 14324, 14325, 14326,
14327, 14328, 14329, 14330, 14331, 14332, 14333, 14334, 14335, 14336,
14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346,
14347, 14348, 14349, 14350, 14351, 14352, 14353, 14354, 14355, 14356,
14357, 14358, 14359, 14360, 14361, 14362, 14363, 14364, 14365, 14366,
14367, 14368, 14369, 14370, 14371, 14372, 14373, 14374, 14375, 14376,
14377, 14378, 14379, 14380, 14381, 14382, 14383, 14384, 14385, 14386,
14387, 14388, 14389, 14390, 14391, 14392, 14393, 14394, 14395, 14396,
14397, 14398, 14399, 14400, 14401, 14402, 14403, 14404, 14405, 14406,
14407, 14408, 14409, 14410, 14411, 14412, 14413, 14414, 14415, 14416,
14417, 14418, 14419, 14420, 14421, 14422, 14423, 14424, 14425, 14426,
14427, 14428, 14429, 14430, 14431, 14432, 14433, 14434, 14435, 14436,
14437, 14438, 14439, 14440, 14441, 14442, 14443, 14444, 14445, 14446,
14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456,
14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466,
14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476,
14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486,
14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496,
14497, 14498, 14499, 14500, 14501, 14502, 14503, 14504, 14505, 14506,
14507, 14508, 14509, 14510, 14511, 14512, 14513, 14514, 14515, 14516,
14517, 14518, 14519, 14520, 14521, 14522, 14523, 14524, 14525, 14526,
14527, 14528, 14529, 14530, 14531, 14532, 14533, 14534, 14535, 14536,
14537, 14538, 14539, 14540, 14541, 14542, 14543, 14544, 14545, 14546,
14547, 14548, 14549, 14550, 14551, 14552, 14553, 14554, 14555, 14556,
14557, 14558, 14559, 14560, 14561, 14562, 14563, 14564, 14565, 14566,
14567, 14568, 14569, 14570, 14571, 14572, 14573, 14574, 14575, 14576,
14577, 14578, 14579, 14580, 14581, 14582, 14583, 14584, 14585, 14586,
14587, 14588, 14589, 14590, 14591, 14592, 14593, 14594, 14595, 14596,
14597, 14598, 14599, 14600, 14601, 14602, 14603, 14604, 14605, 14606,
14607, 14608, 14609, 14610, 14611, 14612, 14613, 14614, 14615, 14616,
14617, 14618, 14619, 14620, 14621, 14622, 14623, 14624, 14625, 14626,
14627, 14628, 14629, 14630, 14631, 14632, 14633, 14634, 14635, 14636,
14637, 14638, 14639, 14640, 14641, 14642, 14643, 14644, 14645, 14646,
14647, 14648, 14649, 14650, 14651, 14652, 14653, 14654, 14655, 14656,
14657, 14658, 14659, 14660, 14661, 14662, 14663, 14664, 14665, 14666,
14667, 14668, 14669, 14670, 14671, 14672, 14673, 14674, 14675, 14676,
14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686,
14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696,
14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706,
14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716,
14717, 14718, 14719, 14720, 14721, 14722, 14723, 14724, 14725, 14726,
14727, 14728, 14729, 14730, 14731, 14732, 14733, 14734, 14735, 14736,
14737, 14738, 14739, 14740, 14741, 14742, 14743, 14744, 14745, 14746,
14747, 14748, 14749, 14750, 14751, 14752, 14753, 14754, 14755, 14756,
14757, 14758, 14759, 14760, 14761, 14762, 14763, 14764, 14765, 14766,
14767, 14768, 14769, 14770, 14771, 14772, 14773, 14774, 14775, 14776,
14777, 14778, 14779, 14780, 14781, 14782, 14783, 14784, 14785, 14786,
14787, 14788, 14789, 14790, 14791, 14792, 14793, 14794, 14795, 14796,
14797, 14798, 14799, 14800, 14801, 14802, 14803, 14804, 14805, 14806,
14807, 14808, 14809, 14810, 14811, 14812, 14813, 14814, 14815, 14816,
14817, 14818, 14819, 14820, 14821, 14822, 14823, 14824, 14825, 14826,
14827, 14828, 14829, 14830, 14831, 14832, 14833, 14834, 14835, 14836,
14837, 14838, 14839, 14840, 14841, 14842, 14843, 14844, 14845, 14846,
14847, 14848, 14849, 14850, 14851, 14852, 14853, 14854, 14855, 14856,
14857, 14858, 14859, 14860, 14861, 14862, 14863, 14864, 14865, 14866,
14867, 14868, 14869, 14870, 14871, 14872, 14873, 14874, 14875, 14876,
14877, 14878, 14879, 14880, 14881, 14882, 14883, 14884, 14885, 14886,
14887, 14888, 14889, 14890, 14891, 14892, 14893, 14894, 14895, 14896,
14897, 14898, 14899, 14900, 14901, 14902, 14903, 14904, 14905, 14906,
14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916,
14917, 14918, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926,
14927, 14928, 14929, 14930, 14931, 14932, 14933, 14934, 14935, 14936,
14937, 14938, 14939, 14940, 14941, 14942, 14943, 14944, 14945, 14946,
14947, 14948, 14949, 14950, 14951, 14952, 14953, 14954, 14955, 14956,
14957, 14958, 14959, 14960, 14961, 14962, 14963, 14964, 14965, 14966,
14967, 14968, 14969, 14970, 14971, 14972, 14973, 14974, 14975, 14976,
14977, 14978, 14979, 14980, 14981, 14982, 14983, 14984, 14985, 14986,
14987, 14988, 14989, 14990, 14991, 14992, 14993, 14994, 14995, 14996,
14997, 14998, 14999, 15000, 15001, 15002, 15003, 15004, 15005, 15006,
15007, 15008, 15009, 15010, 15011, 15012, 15013, 15014, 15015, 15016,
15017, 15018, 15019, 15020, 15021, 15022, 15023, 15024, 15025, 15026,
15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036,
15037, 15038, 15039, 15040, 15041, 15042, 15043, 15044, 15045, 15046,
15047, 15048, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056,
15057, 15058, 15059, 15060, 15061, 15062, 15063, 15064, 15065, 15066,
15067, 15068, 15069, 15070, 15071, 15072, 15073, 15074, 15075, 15076,
15077, 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086,
15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096,
15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106,
15107, 15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115, 15116,
15117, 15118, 15119, 15120, 15121, 15122, 15123, 15124, 15125, 15126,
15127, 15128, 15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136,
15137, 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15145, 15146,
15147, 15148, 15149, 15150, 15151, 15152, 15153, 15154, 15155, 15156,
15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166,
15167, 15168, 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15176,
15177, 15178, 15179, 15180, 15181, 15182, 15183, 15184, 15185, 15186,
15187, 15188, 15189, 15190, 15191, 15192, 15193, 15194, 15195, 15196,
15197, 15198, 15199, 15200, 15201, 15202, 15203, 15204, 15205, 15206,
15207, 15208, 15209, 15210, 15211, 15212, 15213, 15214, 15215, 15216,
15217, 15218, 15219, 15220, 15221, 15222, 15223, 15224, 15225, 15226,
15227, 15228, 15229, 15230, 15231, 15232, 15233, 15234, 15235, 15236,
15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246,
15247, 15248, 15249, 15250, 15251, 15252, 15253, 15254, 15255, 15256,
15257, 15258, 15259, 15260, 15261, 15262, 15263, 15264, 15265, 15266,
15267, 15268, 15269, 15270, 15271, 15272, 15273, 15274, 15275, 15276,
15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286,
15287, 15288, 15289, 15290, 15291, 15292, 15293, 15294, 15295, 15296,
15297, 15298, 15299, 15300, 15301, 15302, 15303, 15304, 15305, 15306,
15307, 15308, 15309, 15310, 15311, 15312, 15313, 15314, 15315, 15316,
15317, 15318, 15319, 15320, 15321, 15322, 15323, 15324, 15325, 15326,
15327, 15328, 15329, 15330, 15331, 15332, 15333, 15334, 15335, 15336,
15337, 15338, 15339, 15340, 15341, 15342, 15343, 15344, 15345, 15346,
15347, 15348, 15349, 15350, 15351, 15352, 15353, 15354, 15355, 15356,
15357, 15358, 15359, 15360, 15361, 15362, 15363, 15364, 15365, 15366,
15367, 15368, 15369, 15370, 15371, 15372, 15373, 15374, 15375, 15376,
15377, 15378, 15379, 15380, 15381, 15382, 15383, 15384, 15385, 15386,
15387, 15388, 15389, 15390, 15391, 15392, 15393, 15394, 15395, 15396,
15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406,
15407, 15408, 15409, 15410, 15411, 15412, 15413, 15414, 15415, 15416,
15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426,
15427, 15428, 15429, 15430, 15431, 15432, 15433, 15434, 15435, 15436,
15437, 15438, 15439, 15440, 15441, 15442, 15443, 15444, 15445, 15446,
15447, 15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456,
15457, 15458, 15459, 15460, 15461, 15462, 15463, 15464, 15465, 15466,
15467, 15468, 15469, 15470, 15471, 15472, 15473, 15474, 15475, 15476,
15477, 15478, 15479, 15480, 15481, 15482, 15483, 15484, 15485, 15486,
15487, 15488, 15489, 15490, 15491, 15492, 15493, 15494, 15495, 15496,
15497, 15498, 15499, 15500, 15501, 15502, 15503, 15504, 15505, 15506,
15507, 15508, 15509, 15510, 15511, 15512, 15513, 15514, 15515, 15516,
15517, 15518, 15519, 15520, 15521, 15522, 15523, 15524, 15525, 15526,
15527, 15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15536,
15537, 15538, 15539, 15540, 15541, 15542, 15543, 15544, 15545, 15546,
15547, 15548, 15549, 15550, 15551, 15552, 15553, 15554, 15555, 15556,
15557, 15558, 15559, 15560, 15561, 15562, 15563, 15564, 15565, 15566,
15567, 15568, 15569, 15570, 15571, 15572, 15573, 15574, 15575, 15576,
15577, 15578, 15579, 15580, 15581, 15582, 15583, 15584, 15585, 15586,
15587, 15588, 15589, 15590, 15591, 15592, 15593, 15594, 15595, 15596,
15597, 15598, 15599, 15600, 15601, 15602, 15603, 15604, 15605, 15606,
15607, 15608, 15609, 15610, 15611, 15612, 15613, 15614, 15615, 15616,
15617, 15618, 15619, 15620, 15621, 15622, 15623, 15624, 15625, 15626,
15627, 15628, 15629, 15630, 15631, 15632, 15633, 15634, 15635, 15636,
15637, 15638, 15639, 15640, 15641, 15642, 15643, 15644, 15645, 15646,
15647, 15648, 15649, 15650, 15651, 15652, 15653, 15654, 15655, 15656,
15657, 15658, 15659, 15660, 15661, 15662, 15663, 15664, 15665, 15666,
15667, 15668, 15669, 15670, 15671, 15672, 15673, 15674, 15675, 15676,
15677, 15678, 15679, 15680, 15681, 15682, 15683, 15684, 15685, 15686,
15687, 15688, 15689, 15690, 15691, 15692, 15693, 15694, 15695, 15696,
15697, 15698, 15699, 15700, 15701, 15702, 15703, 15704, 15705, 15706,
15707, 15708, 15709, 15710, 15711, 15712, 15713, 15714, 15715, 15716,
15717, 15718, 15719, 15720, 15721, 15722, 15723, 15724, 15725, 15726,
15727, 15728, 15729, 15730, 15731, 15732, 15733, 15734, 15735, 15736,
15737, 15738, 15739, 15740, 15741, 15742, 15743, 15744, 15745, 15746,
15747, 15748, 15749, 15750, 15751, 15752, 15753, 15754, 15755, 15756,
15757, 15758, 15759, 15760, 15761, 16013, 16014, 16015, 16016, 16017,
16018, 16019, 16020, 16021, 16022, 16023, 16024, 16025, 16026, 16027,
16028, 16029, 16030, 16031, 16032, 16033, 16034, 16035, 16036, 16037,
16038, 16039, 16040, 16041, 16042, 16043, 16044, 16045, 16046, 16047,
16048, 16049, 16050, 16051, 16052, 16053, 16054, 16055, 16056, 16057,
16058, 16059, 16060, 16061, 16062, 16063, 16064, 16065, 16066, 16067,
16068, 16069, 16070, 16071, 16072, 16073, 16074, 16075, 16076, 16077,
16078, 16079, 16080, 16081, 16082, 16083, 16084, 16085, 16086, 16087,
16088, 16089, 16090, 16091, 16092, 16093, 16094, 16095, 16096, 16097,
16098, 16099, 16100, 16101, 16102, 16103, 16104, 16105, 16106, 16107,
16108, 16109, 16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117,
16118, 16119, 16120, 16121, 16122, 16123, 16124, 16125, 16126, 16127,
16128, 16129, 16130, 16131, 16132, 16133, 16134, 16135, 16136, 16137,
16138, 16139, 16140, 16141, 16142, 16143, 16144, 16145, 16146, 16147,
16148, 16149, 16150, 16151, 16152, 16153, 16154, 16155, 16156, 16157,
16158, 16159, 16160, 16161, 16162, 16163, 16164, 16165, 16166, 16167,
16168, 16169, 16170, 16171, 16172, 16173, 16174, 16175, 16176, 16177,
16178, 16179, 16180, 16181, 16182, 16183, 16184, 16185, 16186, 16187,
16188, 16189, 16190, 16191, 16192, 16193, 16194, 16195, 16196, 16197,
16198, 16199, 16200, 16201, 16202, 16203, 16204, 16205, 16206, 16207,
16208, 16209, 16210, 16211, 16212, 16213, 16214, 16215, 16216, 16217,
16218, 16219, 16220, 16221, 16222, 16223, 16224, 16225, 16226, 16227,
16228, 16229, 16230, 16231, 16232, 16233, 16234, 16235, 16236, 16237,
16238, 16239, 16240, 16241, 16242, 16243, 16244, 16245, 16246, 16247,
16248, 16249, 16250, 16251, 16252, 16253, 16254, 16255, 16256, 16257,
16258, 16259, 16260, 16261, 16262, 16263, 16264, 16265, 16266, 16267,
16268, 16269, 16270, 16271, 16272, 16273, 16274, 16275, 16276, 16277,
16278, 16279, 16280, 16281, 16282, 16283, 16284, 16285, 16286, 16287,
16288, 16289, 16290, 16291, 16292, 16293, 16294, 16295, 16296, 16297,
16298, 16299, 16300, 16301, 16302, 16303, 16304, 16305, 16306, 16307,
16308, 16309, 16310, 16311, 16312, 16313, 16314, 16315, 16316, 16317,
16318, 16319, 16320, 16321, 16322, 16323, 16324, 16325, 16326, 16327,
16328, 16329, 16330, 16331, 16332, 16333, 16334, 16335, 16336, 16337,
16338, 16339, 16340, 16341, 16342, 16343, 16344, 16345, 16346, 16347,
16348, 16349, 16350, 16351, 16352, 16353, 16354, 16355, 16356, 16357,
16358, 16359, 16360, 16361, 16362, 16363, 16364, 16365, 16366, 16367,
16368, 16369, 16370, 16371, 16372, 16373, 16374, 16375, 16376, 16377,
16378, 16379, 16380, 16381, 16382, 16383, 16384, 16385, 16386, 16387,
16388, 16389, 16390, 16391, 16392, 16393, 16394, 16395, 16396, 16397,
16398, 16399, 16400, 16401, 16402, 16403, 16404, 16405, 16406, 16407,
16408, 16409, 16410, 16411, 16412, 16413, 16414, 16415, 16416, 16417,
16418, 16419, 16420, 16421, 16422, 16423, 16424, 16425, 16426, 16427,
16428, 16429, 16430, 16431, 16432, 16433, 16434, 16435, 16436, 16437,
16438, 16439, 16440, 16441, 16442, 16443, 16444, 16445, 16446, 16447,
16448, 16449, 16450, 16451, 16452, 16453, 16454, 16455, 16456, 16457,
16458, 16459, 16460, 16461, 16462, 16463, 16464, 16465, 16466, 16467,
16468, 16469, 16470, 16471, 16472, 16473, 16474, 16475, 16476, 16477,
16478, 16479, 16480, 16481, 16482, 16483, 16484, 16485, 16486, 16487,
16488, 16489, 16490, 16491, 16492, 16493, 16494, 16495, 16496, 16497,
16498, 16499, 16500, 16501, 16502, 16503, 16504, 16505, 16506, 16507,
16508, 16509, 16510, 16511, 16512, 16513, 16514, 16515, 16516, 16517,
16518, 16519, 16520, 16521, 16522, 16523, 16524, 16525, 16526, 16527,
16528, 16529, 16530, 16531, 16532, 16533, 16534, 16535, 16536, 16537,
16538, 16539, 16540, 16541, 16542, 16543, 16544, 16545, 16546, 16547,
16548, 16549, 16550, 16551, 16552, 16553, 16554, 16555, 16556, 16557,
16558, 16559, 16560, 16561, 16562, 16563, 16564, 16565, 16566, 16567,
16568, 16569, 16570, 16571, 16572, 16573, 16574, 16575, 16576, 16577,
16578, 16579, 16580, 16581, 16582, 16583, 16584, 16585, 16586, 16587,
16588, 16589, 16590, 16591, 16592, 16593, 16594, 16595, 16596, 16597,
16598, 16599, 16600, 16601, 16602, 16603, 16604, 16605, 16606, 16607,
16608, 16609, 16610, 16611, 16612, 16613, 16614, 16615, 16616, 16617,
16618, 16619, 16620, 16621, 16622, 16623, 16624, 16625, 16626, 16627,
16628, 16629, 16630, 16631, 16632, 16633, 16634, 16635, 16636, 16637,
16638, 16639, 16640, 16641, 16642, 16643, 16644, 16645, 16646, 16647,
16648, 16649, 16650, 16651, 16652, 16653, 16654, 16655, 16656, 16657,
16658, 16659, 16660, 16661, 16662, 16663, 16664, 16665, 16666, 16667,
16668, 16669, 16670, 16671, 16672, 16673, 16674, 16675, 16676, 16677,
16678, 16679, 16680, 16681, 16682, 16683, 16684, 16685, 16686, 16687,
16688, 16689, 16690, 16691, 16692, 16693, 16694, 16695, 16696, 16697,
16698, 16699, 16700, 16701, 16702, 16703, 16704, 16705, 16706, 16707,
16708, 16709, 16710, 16711, 16712, 16713, 16714, 16715, 16716, 16717,
16718, 16719, 16720, 16721, 16722, 16723, 16724, 16725, 16726, 16727,
16728, 16729, 16730, 16731, 16732, 16733, 16734, 16735, 16736, 16737,
16738, 16739, 16740, 16741, 16742, 16743, 16744, 16745, 16746, 16747,
16748, 16749, 16750, 16751, 16752, 16753, 16754, 16755, 16756, 16757,
16758, 16759, 16760, 16761, 16762, 16763, 16764, 16765, 16766, 16767,
16768, 16769, 16770, 16771, 16772, 16773, 16774, 16775, 16776, 16777,
16778, 16779, 16780, 15773, 15774, 15775, 15776, 15777, 15778, 15779,
15780, 15781, 15782, 15783, 15784, 15785, 15786, 15787, 15788, 15789,
15790, 15791, 15792, 15793, 15794, 15795, 15796, 15797, 15798, 15799,
15800, 15801, 15802, 15803, 15804, 15805, 15806, 15807, 15808, 15809,
15810, 15811, 15812, 15813, 15814, 15815, 15816, 15817, 15818, 15819,
15820, 15821, 15822, 15823, 15824, 15825, 15826, 15827, 15828, 15829,
15830, 15831, 15832, 15833, 15834, 15835, 15836, 15837, 15838, 15839,
15840, 15841, 15842, 15843, 15844, 15845, 15846, 15847, 15848, 15849,
15850, 15851, 15852, 15853, 15854, 15855, 15856, 15857, 15858, 15859,
15860, 15861, 15862, 15863, 15864, 15865, 15866, 15867, 15868, 15869,
15870, 15871, 15872, 15873, 15874, 15875, 15876, 15877, 15878, 15879,
15880, 15881, 15882, 15883, 15884, 15885, 15886, 15887, 15888, 15889,
15890, 15891, 15892, 15893, 15894, 15895, 15896, 15897, 15898, 15899,
15900, 15901, 15902, 15903, 15904, 15905, 15906, 15907, 15908, 15909,
15910, 15911, 15912, 15913, 15914, 15915, 15916, 15917, 15918, 15919,
15920, 15921, 15922, 15923, 15924, 15925, 15926, 15927, 15928, 15929,
15930, 15931, 15932, 15933, 15934, 15935, 15936, 15937, 15938, 15939,
15940, 15941, 15942, 15943, 15944, 15945, 15946, 15947, 15948, 15949,
15950, 15951, 15952, 15953, 15954, 15955, 15956, 15957, 15958, 15959,
15960, 15961, 15962, 15963, 15964, 15965, 15966, 15967, 15968, 15969,
15970, 15971, 15972, 15973, 15974, 15975, 15976, 15977, 15978, 15979,
15980, 15981, 15982, 15983, 15984, 15985, 15986, 15987, 15988, 15989,
15990, 15991, 15992, 15993, 15994, 15995, 15996, 15997, 15998, 15999,
16000, 16001, 16002, 16003, 16004, 16005, 16006, 16007, 16008, 16009,
16010, 16011, 16012, 15762, 15763, 15764, 15765, 15766, 15767, 15768,
15769, 15770, 15771, 15772, 41412, 41412, 41412, 41412, 41412, 447, 448,
449, 450, 451, 452, 453, 454, 455, 436, 437, 438, 439, 440, 441, 442,
443, 444, 445, 446, 377, 378, 379, 380, 381, 382, 375, 376, 383, 384,
385, 427, 428, 429, 430, 431, 432, 433, 434, 435, 425, 426, 393, 389,
390, 394, 395, 396, 391, 392, 386, 387, 388, 397, 398, 399, 456, 457,
458, 459, 460, 461, 462, 463, 464, 465, 404, 405, 406, 407, 408, 409,
400, 401, 402, 403, 410, 411, 412, 466, 467, 468, 469, 470, 471, 472,
473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 417,
418, 419, 420, 421, 422, 423, 413, 414, 415, 416, 424, 497, 498, 499,
500, 501, 502, 503, 486, 487, 488, 489, 494, 495, 496, 504, 490, 491,
492, 493, 505, 506, 507, 508, 509, 512, 513, 514, 515, 510, 511, 516,
517, 518, 519, 522, 523, 524, 525, 526, 520, 521, 527, 528, 529, 530,
533, 534, 535, 536, 537, 531, 532, 538, 539, 540, 541, 542, 543, 544,
545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558,
559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572,
573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586,
587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600,
601, 609, 610, 602, 603, 604, 611, 612, 613, 614, 605, 606, 615, 607,
608, 620, 621, 622, 623, 624, 616, 617, 618, 619, 625, 626, 627, 653,
654, 655, 656, 657, 658, 659, 651, 652, 660, 661, 673, 674, 675, 676,
677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690,
691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 664, 665,
666, 667, 668, 669, 670, 662, 663, 671, 672, 703, 704, 705, 706, 707,
708, 709, 710, 711, 712, 642, 643, 644, 645, 646, 647, 648, 649, 650,
640, 641, 632, 633, 634, 635, 628, 629, 636, 637, 638, 639, 630, 631,
715, 716, 717, 718, 719, 720, 721, 722, 723, 713, 714, 807, 808, 809,
810, 811, 812, 813, 814, 815, 816, 726, 727, 728, 729, 730, 731, 732,
733, 734, 724, 725, 753, 754, 750, 751, 752, 755, 756, 757, 746, 747,
748, 749, 758, 759, 760, 817, 818, 819, 820, 821, 822, 823, 824, 825,
826, 737, 738, 739, 740, 741, 742, 743, 744, 745, 735, 736, 765, 766,
767, 768, 761, 762, 769, 770, 771, 763, 764, 772, 798, 796, 797, 799,
800, 801, 802, 803, 804, 805, 806, 779, 775, 776, 780, 773, 774, 781,
782, 777, 778, 783, 784, 785, 787, 788, 789, 786, 790, 791, 792, 793,
794, 795, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 827, 828,
829, 830, 831, 832, 833, 834, 835, 836, 837, 868, 869, 870, 871, 872,
873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886,
887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 838, 839, 842,
843, 844, 845, 846, 847, 840, 841, 848, 849, 898, 899, 900, 901, 902,
903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916,
917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 850, 851, 852,
853, 854, 855, 856, 857, 929, 930, 931, 932, 933, 934, 935, 936, 937,
938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951,
952, 953, 954, 955, 956, 957, 928, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
19107, 19097, 19096, 19093, 19092, 19078, 19091, 19090, 19095, 19094,
19100, 19085, 19084, 19081, 19080, 19105, 19087, 19086, 19083, 19082,
19079, 19099, 19098, 19089, 19088, 19102, 19106, 19103, 19101, 19104,
19110, 19117, 19118, 19113, 19114, 19119, 19120, 19111, 19115, 19116,
19112, 19121, 19077, 19076, 19074, 19108, 19075, 19109, 19128, 19130,
19127, 19126, 19123, 19122, 19125, 19124, 19131, 19129, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 2892, 2858, 2917, 2918, 2888,
2925, 2936, 2907, 2924, 2919, 2920, 2871, 2937, 2894, 2873, 2878, 2885,
2931, 2903, 2861, 2897, 2932, 2893, 2868, 2869, 2901, 2875, 2916, 2857,
2915, 2884, 2908, 2939, 2856, 2902, 2933, 2887, 2886, 2882, 2859, 2914,
2891, 2921, 2874, 2911, 2922, 2938, 2866, 2928, 2935, 2876, 2862, 2890,
2864, 2883, 2926, 2867, 2941, 2943, 2863, 2929, 2879, 2923, 2900, 2927,
2905, 2912, 2896, 2940, 2895, 2877, 2909, 2880, 2906, 2934, 2930, 2913,
2898, 2870, 2904, 2860, 2899, 2942, 2865, 2910, 2889, 2881, 2976, 2993,
2991, 2990, 2954, 2960, 2949, 2997, 2959, 2951, 2984, 2996, 2953, 2980,
2981, 2944, 2986, 2994, 2988, 2989, 2966, 2963, 2979, 2947, 2945, 2946,
2952, 2985, 3001, 2974, 2971, 2998, 2987, 2995, 2965, 2969, 2970, 2967,
2992, 2962, 2968, 2978, 2983, 2964, 2999, 2961, 3000, 2948, 2958, 2957,
2955, 2972, 2977, 2956, 2950, 2975, 3053, 3073, 3095, 3091, 3052, 3041,
3054, 3002, 3030, 3004, 3074, 3070, 3027, 3075, 3045, 3024, 3007, 3003,
3009, 3094, 3072, 3035, 3065, 3033, 3096, 3014, 3015, 3079, 3046, 3084,
3061, 3088, 3083, 3048, 3090, 3039, 3021, 3071, 3049, 3017, 3032, 3037,
3068, 3085, 3051, 3099, 3042, 3067, 3064, 3098, 3089, 3029, 3100, 3057,
3016, 3087, 3062, 3059, 3011, 3047, 3023, 3034, 3019, 3013, 3058, 3056,
3092, 3050, 3066, 3069, 3012, 3063, 3043, 3020, 3097, 3044, 3081, 3078,
3031, 3022, 3026, 3008, 3028, 3010, 3025, 3093, 3060, 3038, 3036, 3082,
3006, 3005, 3055, 3040, 3018, 3076, 3077, 3086, 3128, 3212, 3161, 3135,
3162, 3121, 3160, 3166, 3148, 3175, 3211, 3157, 3191, 3158, 3105, 3204,
3189, 3164, 3196, 3109, 3213, 3111, 3198, 3133, 3143, 3124, 3130, 3200,
3217, 3159, 3106, 3154, 3206, 3104, 3156, 3101, 3144, 3138, 3116, 3145,
3140, 3139, 3181, 3137, 3134, 3122, 3167, 3126, 3114, 3173, 3202, 3201,
3214, 3107, 3188, 3205, 3153, 3132, 3168, 3108, 3184, 3179, 3174, 3119,
3147, 3136, 3151, 3215, 3183, 3216, 3146, 3170, 3195, 3112, 3150, 3155,
3207, 3129, 3113, 3169, 3203, 3125, 3149, 3117, 3152, 3165, 3163, 3103,
3110, 3185, 3209, 3208, 3176, 3187, 3118, 3131, 3123, 3197, 3142, 3193,
3190, 3115, 3178, 3194, 3171, 3180, 3177, 3192, 3182, 3141, 3120, 3186,
3210, 3172, 3127, 3199, 3102, 3271, 3349, 3258, 3245, 3356, 3248, 3312,
3338, 3328, 3298, 3274, 3323, 3343, 3284, 3238, 3359, 3331, 3276, 3313,
3348, 3240, 3250, 3300, 3290, 3255, 3287, 3291, 3299, 3330, 3297, 3316,
3339, 3279, 3262, 3232, 3286, 3294, 3256, 3249, 3277, 3273, 3340, 3332,
3326, 3270, 3278, 3364, 3231, 3353, 3360, 3320, 3352, 3235, 3337, 3346,
3354, 3357, 3244, 3322, 3342, 3229, 3292, 3333, 3261, 3259, 3305, 3309,
3228, 3351, 3239, 3372, 3303, 3365, 3260, 3272, 3318, 3368, 3247, 3221,
3227, 3289, 3237, 3254, 3285, 3233, 3223, 3301, 3314, 3362, 3275, 3304,
3306, 3321, 3264, 3222, 3308, 3265, 3230, 3220, 3268, 3324, 3288, 3241,
3319, 3302, 3361, 3280, 3310, 3219, 3226, 3295, 3373, 3350, 3375, 3374,
3246, 3311, 3341, 3344, 3269, 3336, 3363, 3282, 3369, 3366, 3367, 3371,
3370, 3236, 3315, 3296, 3325, 3358, 3225, 3355, 3252, 3263, 3329, 3327,
3283, 3293, 3334, 3335, 3218, 3307, 3317, 3251, 3243, 3266, 3253, 3257,
3345, 3242, 3267, 3347, 3224, 3234, 3380, 3429, 3382, 3427, 3407, 3420,
3401, 3384, 3410, 3409, 3389, 3419, 3399, 3395, 3386, 3417, 3412, 3418,
3415, 3378, 3377, 3397, 3396, 3394, 3422, 3414, 3423, 3398, 3403, 3400,
3424, 3404, 3411, 3402, 3406, 3376, 3392, 3393, 3413, 3405, 3428, 3425,
3385, 3383, 3381, 3387, 3408, 3390, 3391, 3388, 3421, 3379, 3416, 3426,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 28399, 28391, 28412,
28389, 28413, 28400, 28415, 28395, 28386, 28403, 28401, 28409, 28385,
28393, 28388, 28390, 28396, 28394, 28392, 28405, 28406, 28397, 28411,
28414, 28410, 28387, 28408, 28407, 28402, 28404, 28398, 41412, 28424,
28426, 28423, 28422, 28419, 28418, 28421, 28420, 28427, 28425, 41412,
41412, 41412, 41412, 28417, 28416, 36122, 36119, 36120, 36121, 36074,
36071, 36072, 36073, 36126, 36123, 36124, 36125, 36114, 36111, 36112,
36113, 36118, 36115, 36116, 36117, 36110, 36107, 36108, 36109, 36070,
36067, 36068, 36069, 36102, 36099, 36100, 36101, 36075, 36080, 36091,
36092, 36103, 36106, 36104, 36105, 36098, 36095, 36096, 36097, 36086,
36083, 36084, 36085, 36137, 36136, 36135, 36087, 36094, 36144, 36142,
36139, 36089, 36138, 36140, 36082, 36090, 36079, 36081, 36078, 36129,
36133, 36141, 36088, 36093, 36131, 36128, 36134, 36077, 36127, 36143,
36076, 36132, 36130, 36145, 41412, 36152, 36154, 36151, 36150, 36147,
36146, 36149, 36148, 36155, 36153, 41412, 41412, 41412, 41412, 41412,
41412, 3490, 3495, 3511, 3513, 3503, 3501, 3493, 3487, 3494, 3507, 3502,
3498, 3509, 3492, 3488, 3510, 3497, 3508, 3512, 3506, 3500, 3514, 3499,
3515, 3504, 3505, 3496, 3491, 3489, 3516, 41412, 41412, 3483, 3485, 3486,
3484, 3482, 3517, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 31177, 31178, 31183, 31184, 31171, 31172, 31187, 31188,
31179, 31180, 31169, 31170, 31189, 31190, 31173, 31174, 31185, 31186,
31191, 31192, 31181, 31182, 31175, 31176, 31193, 31194, 31167, 31168,
31113, 31104, 31110, 31101, 31106, 31112, 31105, 31109, 31115, 31099,
31111, 31097, 31102, 31100, 31108, 31103, 31107, 31116, 31114, 31098,
31121, 31120, 31118, 31117, 31119, 31123, 31122, 31153, 31154, 31132,
31152, 31150, 31158, 31160, 31159, 31161, 31151, 31143, 31156, 31141,
31163, 31136, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 31201, 31203, 31200, 31199, 31196, 31195, 31198, 31197,
31204, 31202, 41412, 31128, 31125, 31127, 31130, 31124, 31126, 31129,
41412, 31155, 31162, 31140, 31148, 31164, 31139, 31146, 31157, 31145,
31166, 31147, 31142, 31149, 31165, 31144, 31138, 31131, 31134, 31135,
31137, 31133, 41412, 41412, 41412, 41412, 41412, 31085, 31092, 31084,
31083, 31093, 31081, 31078, 31096, 31088, 31086, 31094, 31080, 31079,
31089, 31095, 31091, 31087, 31082, 31090, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 22688, 22685, 22690, 22684, 22673, 22672, 22669, 22668,
22661, 22667, 22666, 22671, 22670, 22662, 22658, 22657, 22654, 22653,
22660, 22659, 22656, 22655, 22663, 22675, 22674, 22665, 22664, 22680,
22683, 22681, 22679, 22682, 22677, 22676, 22678, 22691, 22697, 22694,
22695, 22696, 22692, 22698, 22693, 22689, 22687, 22686, 22700, 22699,
22707, 22709, 22706, 22705, 22702, 22701, 22704, 22703, 22710, 22708,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27062, 27066,
27069, 27070, 27040, 27072, 27048, 27063, 27067, 27058, 27057, 27059,
27047, 27039, 27060, 27056, 27053, 27054, 27068, 27050, 27061, 27064,
27046, 27044, 27071, 27055, 27052, 27042, 27065, 27051, 27041, 27049,
27120, 27124, 27127, 27128, 27098, 27130, 27106, 27121, 27125, 27116,
27115, 27117, 27105, 27097, 27118, 27114, 27111, 27112, 27126, 27108,
27119, 27122, 27104, 27102, 27129, 27113, 27110, 27100, 27123, 27109,
27099, 27107, 27084, 27078, 27076, 27074, 27081, 27080, 27083, 27082,
27086, 27085, 27089, 27091, 27088, 27087, 27092, 27093, 27095, 27096,
27090, 27094, 27079, 27077, 27075, 27073, 27133, 27131, 27132, 41412,
41412, 41412, 41412, 41412, 3702, 3719, 3704, 3708, 3721, 3709, 3716,
3726, 3705, 3717, 3722, 3715, 3711, 3710, 3712, 3723, 3724, 3706, 3707,
3714, 3713, 3718, 3725, 3720, 3703, 41412, 41412, 3727, 3744, 3729, 3733,
3746, 3734, 3741, 3751, 3730, 3742, 3747, 3740, 3736, 3735, 3737, 3748,
3749, 3731, 3732, 3739, 3738, 3743, 3750, 3745, 3728, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 27681, 27607, 27669, 27680, 27685, 27684, 27604, 27686,
27661, 27660, 27658, 27615, 27664, 27665, 27657, 27614, 27623, 27631,
27667, 27603, 27628, 27627, 27622, 27621, 27620, 27619, 27645, 27613,
27644, 27612, 27687, 27618, 27668, 27679, 27678, 27626, 27625, 27602,
27683, 27689, 27617, 27616, 27654, 27610, 27630, 27629, 27653, 27609,
27662, 27666, 27638, 27641, 27642, 27676, 27674, 27655, 27611, 27663,
27643, 27677, 27675, 27673, 27671, 27601, 27672, 27670, 27688, 27605,
27682, 27606, 27640, 27608, 27659, 27656, 27639, 41412, 41412, 41412,
41412, 27693, 27624, 27692, 27691, 27690, 27698, 27704, 27703, 27699,
27700, 27725, 27729, 27746, 27745, 27707, 27710, 27711, 27727, 27714,
27715, 27716, 27717, 27718, 27721, 27723, 27724, 27720, 27731, 27732,
27733, 27734, 27739, 27735, 27736, 27740, 27742, 27701, 27702, 27709,
27744, 27708, 27743, 27705, 27713, 27706, 27730, 27747, 27748, 27737,
27741, 27728, 27726, 27749, 27722, 27712, 27719, 27738, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 27697, 27695, 27696, 27694, 27646,
27647, 27648, 27649, 27650, 27651, 27652, 27632, 27633, 27634, 27635,
27636, 27637, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 37039, 30032, 30253, 30252,
22331, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 39333, 39332, 6583, 6584, 39854, 39855, 39856, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 36156, 36157,
36158, 36159, 36160, 36161, 36162, 36163, 36164, 36165, 36166, 36167,
36168, 36169, 36170, 36171, 36172, 36173, 36174, 36175, 36176, 36177,
36178, 36179, 36180, 36181, 36182, 36183, 36184, 36185, 36186, 36187,
36188, 36189, 36190, 36191, 36192, 36193, 36194, 36195, 36196, 36197,
36198, 36199, 36200, 36201, 36202, 36203, 36204, 36205, 36206, 36207,
36208, 36209, 36210, 36211, 36212, 36213, 36214, 36215, 36216, 36217,
36218, 36219, 36220, 36221, 36222, 36223, 36224, 36225, 36226, 36227,
36228, 36229, 36230, 36231, 36232, 36233, 36234, 36235, 36236, 36237,
36238, 36239, 36240, 36241, 36242, 36243, 36244, 36245, 36246, 36247,
36248, 36249, 36250, 36251, 36252, 36253, 36254, 36255, 36256, 36257,
36258, 36259, 36260, 36261, 36262, 36263, 36264, 36265, 36266, 36267,
36268, 36269, 36270, 36271, 36272, 36273, 36274, 36275, 36276, 36277,
36278, 36279, 36280, 36281, 36282, 36283, 36284, 36285, 36286, 36287,
36288, 36289, 36290, 36291, 36292, 36293, 36294, 36295, 36296, 36297,
36298, 36299, 36300, 36301, 36302, 36303, 36304, 36305, 36306, 36307,
36308, 36309, 36310, 36311, 36312, 36313, 36314, 36315, 36316, 36317,
36318, 36319, 36320, 36321, 36322, 36323, 36324, 36325, 36326, 36327,
36328, 36329, 36330, 36331, 36332, 36333, 36334, 36335, 36336, 36337,
36338, 36339, 36340, 36341, 36342, 36343, 36344, 36345, 36346, 36347,
36348, 36349, 36350, 36351, 36352, 36353, 36354, 36355, 36356, 36357,
36358, 36359, 36360, 36361, 36362, 36363, 36364, 36365, 36366, 36367,
36368, 36369, 36370, 36371, 36372, 36373, 36374, 36375, 36376, 36377,
36378, 36379, 36380, 36381, 36382, 36383, 36384, 36385, 36386, 36387,
36388, 36389, 36390, 36391, 36392, 36393, 36394, 36395, 36396, 36397,
36398, 36399, 36400, 36401, 36402, 36403, 36404, 36405, 36406, 36407,
36408, 36409, 36410, 36411, 36412, 36413, 36414, 36415, 36416, 36417,
36418, 36419, 36420, 36421, 36422, 36423, 36424, 36425, 36426, 36427,
36428, 36429, 36430, 36431, 36432, 36433, 36434, 36435, 36436, 36437,
36438, 36439, 36440, 36441, 36442, 36443, 36444, 36445, 36446, 36447,
36448, 36449, 36450, 36451, 36452, 36453, 36454, 36455, 36456, 36457,
36458, 36459, 36460, 36461, 36462, 36463, 36464, 36465, 36466, 36467,
36468, 36469, 36470, 36471, 36472, 36473, 36474, 36475, 36476, 36477,
36478, 36479, 36480, 36481, 36482, 36483, 36484, 36485, 36486, 36487,
36488, 36489, 36490, 36491, 36492, 36493, 36494, 36495, 36496, 36497,
36498, 36499, 36500, 36501, 36502, 36503, 36504, 36505, 36506, 36507,
36508, 36509, 36510, 36511, 36512, 36513, 36514, 36515, 36516, 36517,
36518, 36519, 36520, 36521, 36522, 36523, 36524, 36525, 36526, 36527,
36528, 36529, 36530, 36531, 36532, 36533, 36534, 36535, 36536, 36537,
36538, 36539, 36540, 36541, 36542, 36543, 36544, 36545, 36546, 36547,
36548, 36549, 36550, 36551, 36552, 36553, 36554, 36555, 36556, 36557,
36558, 36559, 36560, 36561, 36562, 36563, 36564, 36565, 36566, 36567,
36568, 36569, 36570, 36571, 36572, 36573, 36574, 36575, 36576, 36577,
36578, 36579, 36580, 36581, 36582, 36583, 36584, 36585, 36586, 36587,
36588, 36589, 36590, 36591, 36592, 36593, 36594, 36595, 36596, 36597,
36598, 36599, 36600, 36601, 36602, 36603, 36604, 36605, 36606, 36607,
36608, 36609, 36610, 36611, 36612, 36613, 36614, 36615, 36616, 36617,
36618, 36619, 36620, 36621, 36622, 36623, 36624, 36625, 36626, 36627,
36628, 36629, 36630, 36631, 36632, 36633, 36634, 36635, 36636, 36637,
36638, 36639, 36640, 36641, 36642, 36643, 36644, 36645, 36646, 36647,
36648, 36649, 36650, 36651, 36652, 36653, 36654, 36655, 36656, 36657,
36658, 36659, 36660, 36661, 36662, 36663, 36664, 36665, 36666, 36667,
36668, 36669, 36670, 36671, 36672, 36673, 36674, 36675, 36676, 36677,
36678, 36679, 36680, 36681, 36682, 36683, 36684, 36685, 36686, 36687,
36688, 36689, 36690, 36691, 36692, 36693, 36694, 36695, 36696, 36697,
36698, 36699, 36700, 36701, 36702, 36703, 36704, 36705, 36706, 36707,
36708, 36709, 36710, 36711, 36712, 36713, 36714, 36715, 36716, 36717,
36718, 36719, 36720, 36721, 36722, 36723, 36724, 36725, 36726, 36727,
36728, 36729, 36730, 36731, 36732, 36733, 36734, 36735, 36736, 36737,
36738, 36739, 36740, 36741, 36742, 36743, 36744, 36745, 36746, 36747,
36748, 36749, 36750, 36751, 36752, 36753, 36754, 36755, 36756, 36757,
36758, 36759, 36760, 36761, 36762, 36763, 36764, 36765, 36766, 36767,
36768, 36769, 36770, 36771, 36772, 36773, 36774, 36775, 36776, 36777,
36778, 36779, 36780, 36781, 36782, 36783, 36784, 36785, 36786, 36787,
36788, 36789, 36790, 36791, 36792, 36793, 36794, 36795, 36796, 36797,
36798, 36799, 36800, 36801, 36802, 36803, 36804, 36805, 36806, 36807,
36808, 36809, 36810, 36811, 36812, 36813, 36814, 36815, 36816, 36817,
36818, 36819, 36820, 36821, 36822, 36823, 36824, 36825, 36826, 36827,
36828, 36829, 36830, 36831, 36832, 36833, 36834, 36835, 36836, 36837,
36838, 36839, 36840, 36841, 36842, 36843, 36844, 36845, 36846, 36847,
36848, 36849, 36850, 36851, 36852, 36853, 36854, 36855, 36856, 36857,
36858, 36859, 36860, 36861, 36862, 36863, 36864, 36865, 36866, 36867,
36868, 36869, 36870, 36871, 36872, 36873, 36874, 36875, 36876, 36877,
36878, 36879, 36880, 36881, 36882, 36883, 36884, 36885, 36886, 36887,
36888, 36889, 36890, 36891, 36892, 36893, 36894, 36895, 36896, 36897,
36898, 36899, 36900, 36901, 36902, 36903, 36904, 36905, 36906, 36907,
36908, 36909, 36910, 36911, 36912, 36913, 36914, 36915, 36916, 36917,
36918, 36919, 36920, 36921, 36922, 36923, 21860, 21861, 21862, 21863,
21864, 21865, 21866, 21867, 21868, 21869, 21870, 21871, 21872, 21873,
21874, 21875, 21876, 21877, 21878, 21879, 21880, 21881, 21882, 21883,
21884, 21885, 21886, 21887, 21888, 21889, 21890, 21891, 21892, 21893,
21894, 21895, 21896, 21897, 21898, 21899, 21900, 21901, 21902, 21903,
21904, 21905, 21906, 21907, 21908, 21909, 21910, 21911, 21912, 21913,
21914, 21915, 21916, 21917, 21918, 21919, 21920, 21921, 21922, 21923,
21924, 21925, 21926, 21927, 21928, 21929, 21930, 21931, 21932, 21933,
21934, 21935, 21936, 21937, 21938, 21939, 21940, 21941, 21942, 21943,
21944, 21945, 21946, 21947, 21948, 21949, 21950, 21951, 21952, 21953,
21954, 21955, 21956, 21957, 21958, 21959, 21960, 21961, 21962, 21963,
21964, 21965, 21966, 21967, 21968, 21969, 21970, 21971, 21972, 21973,
21974, 21975, 21976, 21977, 21978, 21979, 21980, 21981, 21982, 21983,
21984, 21985, 21986, 21987, 21988, 21989, 21990, 21991, 21992, 21993,
21994, 21995, 21996, 21997, 21998, 21999, 22000, 22001, 22002, 22003,
22004, 22005, 22006, 22007, 22008, 22009, 22010, 22011, 22012, 22013,
22014, 22015, 22016, 22017, 22018, 22019, 22020, 22021, 22022, 22023,
22024, 22025, 22026, 22027, 22028, 22029, 22030, 22031, 22032, 22033,
22034, 22035, 22036, 22037, 22038, 22039, 22040, 22041, 22042, 22043,
22044, 22045, 22046, 22047, 22048, 22049, 22050, 22051, 22052, 22053,
22054, 22055, 22056, 22057, 22058, 22059, 22060, 22061, 22062, 22063,
22064, 22065, 22066, 22067, 22068, 22069, 22070, 22071, 22072, 22073,
22074, 22075, 22076, 22077, 22078, 22079, 22080, 22081, 22082, 22083,
22084, 22085, 22086, 22087, 22088, 22089, 22090, 22091, 22092, 22093,
22094, 22095, 22096, 22097, 22098, 22099, 22100, 22101, 22102, 22103,
22104, 22105, 22106, 22107, 22108, 22109, 22110, 22111, 22112, 22113,
22114, 22115, 22122, 22123, 22124, 22125, 22126, 22127, 22128, 22129,
22130, 22131, 22132, 22133, 22134, 22135, 22136, 22137, 22138, 22139,
22140, 22141, 22142, 22143, 22144, 22145, 22146, 22147, 22148, 22149,
22150, 22151, 22152, 22153, 22154, 22155, 22156, 22157, 22158, 22159,
22160, 22161, 22162, 22163, 22164, 22165, 22166, 22167, 22168, 22169,
22170, 22171, 22172, 22173, 22174, 22175, 22176, 22177, 22178, 22179,
22180, 22181, 22182, 22183, 22184, 22185, 22186, 22187, 22188, 22189,
22190, 22191, 22192, 22193, 22194, 22195, 22196, 22197, 22198, 22199,
22200, 22201, 22202, 22203, 22204, 22205, 22206, 22207, 22208, 22209,
22210, 22211, 22212, 22213, 22214, 22215, 22216, 22217, 22218, 22219,
22220, 22221, 22222, 22223, 22224, 22225, 22226, 22227, 22228, 22229,
22230, 22231, 22232, 22233, 22234, 22235, 22236, 22237, 22238, 22239,
22240, 22241, 22242, 22243, 22244, 22245, 22246, 22247, 22248, 22249,
22250, 22251, 22252, 22253, 22254, 22255, 22256, 22257, 22258, 22259,
22260, 22261, 22262, 22263, 22264, 22265, 22266, 22267, 22268, 22269,
22270, 22271, 22272, 22273, 22274, 22275, 22276, 22277, 22278, 22279,
22280, 22281, 22282, 22283, 22284, 22285, 22286, 22287, 22288, 22289,
22290, 22291, 22292, 22293, 22294, 22295, 22296, 22297, 22298, 22299,
22300, 22301, 22302, 22303, 22304, 22305, 22306, 22307, 22308, 22309,
22310, 22311, 22312, 22313, 22314, 22315, 22316, 22317, 22318, 22319,
22320, 22321, 22322, 22323, 22324, 22325, 22326, 22327, 22328, 22329,
22116, 22117, 22118, 22119, 22120, 22121, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 22330, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 36924, 36925, 36926, 36927,
36928, 36929, 36930, 36931, 36932, 36933, 36934, 36935, 36936, 36937,
36938, 36939, 36940, 36941, 36942, 36943, 36944, 36945, 36946, 36947,
36948, 36949, 36950, 36951, 36952, 36953, 36954, 36955, 36956, 36957,
36958, 36959, 36960, 36961, 36962, 36963, 36964, 36965, 36966, 36967,
36968, 36969, 36970, 36971, 36972, 36973, 36974, 36975, 36976, 36977,
36978, 36979, 36980, 36981, 36982, 36983, 36984, 36985, 36986, 36987,
36988, 36989, 36990, 36991, 36992, 36993, 36994, 36995, 36996, 36997,
36998, 36999, 37000, 37001, 37002, 37003, 37004, 37005, 37006, 37007,
37008, 37009, 37010, 37011, 37012, 37013, 37014, 37015, 37016, 37017,
37018, 37019, 37020, 37021, 37022, 37023, 37024, 37025, 37026, 37027,
37028, 37029, 37030, 37031, 37032, 37033, 37034, 37035, 37036, 37037,
37038, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 21499, 21500, 21501, 21502, 41412, 21503,
21504, 21492, 21493, 21494, 21495, 21496, 41412, 21497, 21498, 41412,
21480, 20452, 20091, 20092, 20093, 20090, 20372, 20373, 20374, 20375,
20364, 20365, 20366, 20367, 20368, 20359, 20360, 20361, 20362, 20363,
20369, 20370, 20371, 20130, 20134, 20135, 20136, 20137, 20138, 20139,
20140, 20141, 20131, 20132, 20133, 20146, 20147, 20148, 20149, 20150,
20151, 20152, 20153, 20160, 20161, 20162, 20163, 20164, 20165, 20166,
20154, 20155, 20156, 20157, 20158, 20159, 20143, 20144, 20145, 20142,
20255, 20256, 20257, 20258, 20259, 20260, 20261, 20262, 20271, 20272,
20273, 20274, 20275, 20276, 20263, 20264, 20265, 20266, 20267, 20268,
20269, 20270, 20277, 20278, 20279, 20280, 20281, 20282, 20283, 20284,
20285, 20286, 20287, 20288, 20317, 20318, 20319, 20320, 20310, 20311,
20312, 20313, 20314, 20315, 20316, 20306, 20307, 20308, 20309, 20305,
20289, 20290, 20291, 20292, 20293, 20294, 20295, 20296, 20297, 20299,
20300, 20301, 20302, 20303, 20304, 20298, 20209, 20210, 20211, 20212,
20213, 20214, 20215, 20216, 20217, 20202, 20203, 20204, 20205, 20206,
20207, 20208, 20201, 20223, 20224, 20225, 20195, 20196, 20197, 20198,
20199, 20200, 20194, 20218, 20219, 20220, 20221, 20222, 20102, 20105,
20106, 20107, 20108, 20109, 20110, 20111, 20112, 20103, 20104, 20123,
20124, 20125, 20126, 20127, 20128, 20129, 20113, 20114, 20115, 20116,
20117, 20118, 20119, 20120, 20121, 20122, 20094, 20095, 20096, 20097,
20098, 20099, 20100, 20101, 20176, 20177, 20178, 20179, 20180, 20181,
20182, 20183, 20184, 20185, 20186, 20187, 20188, 20189, 20190, 20191,
20192, 20193, 20168, 20169, 20167, 20170, 20171, 20172, 20173, 20174,
20175, 20343, 20344, 20345, 20346, 20347, 20342, 20354, 20355, 20356,
20357, 20348, 20349, 20350, 20351, 20352, 20353, 20247, 20248, 20249,
20250, 20240, 20241, 20242, 20243, 20244, 20245, 20246, 20234, 20235,
20236, 20237, 20238, 20239, 20251, 20252, 20253, 20254, 20228, 20229,
20230, 20231, 20232, 20233, 20321, 20322, 20323, 20324, 20325, 20326,
20327, 20328, 20329, 20330, 20338, 20339, 20340, 20341, 20331, 20332,
20333, 20334, 20335, 20336, 20337, 20226, 20227, 20451, 21478, 21477,
21479, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 20462, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 20455, 20454, 20456, 41412,
41412, 21527, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 21533, 21532, 21534, 21538,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 29636, 29637,
29638, 29639, 29640, 29641, 29642, 29643, 29644, 29645, 29646, 29647,
29648, 29649, 29650, 29651, 29652, 29653, 29654, 29655, 29656, 29657,
29658, 29659, 29660, 29661, 29662, 29663, 29664, 29665, 29666, 29667,
29668, 29669, 29670, 29671, 29672, 29673, 29674, 29675, 29676, 29677,
29678, 29679, 29680, 29681, 29682, 29683, 29684, 29685, 29686, 29687,
29688, 29689, 29690, 29691, 29692, 29693, 29694, 29695, 29696, 29697,
29698, 29699, 29700, 29701, 29702, 29703, 29704, 29705, 29706, 29707,
29708, 29709, 29710, 29711, 29712, 29713, 29714, 29715, 29716, 29717,
29718, 29719, 29720, 29721, 29722, 29723, 29724, 29725, 29726, 29727,
29728, 29729, 29730, 29731, 29732, 29733, 29734, 29735, 29736, 29737,
29738, 29739, 29740, 29741, 29742, 29743, 29744, 29745, 29746, 29747,
29748, 29749, 29750, 29751, 29752, 29753, 29754, 29755, 29756, 29757,
29758, 29759, 29760, 29761, 29762, 29763, 29764, 29765, 29766, 29767,
29768, 29769, 29770, 29771, 29772, 29773, 29774, 29775, 29776, 29777,
29778, 29779, 29780, 29781, 29782, 29783, 29784, 29785, 29786, 29787,
29788, 29789, 29790, 29791, 29792, 29793, 29794, 29795, 29796, 29797,
29798, 29799, 29800, 29801, 29802, 29803, 29804, 29805, 29806, 29807,
29808, 29809, 29810, 29811, 29812, 29813, 29814, 29815, 29816, 29817,
29818, 29819, 29820, 29821, 29822, 29823, 29824, 29825, 29826, 29827,
29828, 29829, 29830, 29831, 29832, 29833, 29834, 29835, 29836, 29837,
29838, 29839, 29840, 29841, 29842, 29843, 29844, 29845, 29846, 29847,
29848, 29849, 29850, 29851, 29852, 29853, 29854, 29855, 29856, 29857,
29858, 29859, 29860, 29861, 29862, 29863, 29864, 29865, 29866, 29867,
29868, 29869, 29870, 29871, 29872, 29873, 29874, 29875, 29876, 29877,
29878, 29879, 29880, 29881, 29882, 29883, 29884, 29885, 29886, 29887,
29888, 29889, 29890, 29891, 29892, 29893, 29894, 29895, 29896, 29897,
29898, 29899, 29900, 29901, 29902, 29903, 29904, 29905, 29906, 29907,
29908, 29909, 29910, 29911, 29912, 29913, 29914, 29915, 29916, 29917,
29918, 29919, 29920, 29921, 29922, 29923, 29924, 29925, 29926, 29927,
29928, 29929, 29930, 29931, 29932, 29933, 29934, 29935, 29936, 29937,
29938, 29939, 29940, 29941, 29942, 29943, 29944, 29945, 29946, 29947,
29948, 29949, 29950, 29951, 29952, 29953, 29954, 29955, 29956, 29957,
29958, 29959, 29960, 29961, 29962, 29963, 29964, 29965, 29966, 29967,
29968, 29969, 29970, 29971, 29972, 29973, 29974, 29975, 29976, 29977,
29978, 29979, 29980, 29981, 29982, 29983, 29984, 29985, 29986, 29987,
29988, 29989, 29990, 29991, 29992, 29993, 29994, 29995, 29996, 29997,
29998, 29999, 30000, 30001, 30002, 30003, 30004, 30005, 30006, 30007,
30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016, 30017,
30018, 30019, 30020, 30021, 30022, 30023, 30024, 30025, 30026, 30027,
30028, 30029, 30030, 30031, 41412, 41412, 41412, 41412, 11649, 11647,
11596, 11629, 11556, 11569, 11573, 11654, 11550, 11637, 11558, 11600,
11599, 11551, 11557, 11571, 11603, 11632, 11625, 11552, 11572, 11626,
11650, 11576, 11604, 11577, 11582, 11560, 11605, 11578, 11583, 11563,
11606, 11580, 11585, 11561, 11562, 11614, 11615, 11581, 11586, 11567,
11618, 11579, 11584, 11564, 11607, 11568, 11565, 11566, 11612, 11613,
11610, 11611, 11631, 11630, 11639, 11645, 11642, 11617, 11616, 11570,
11559, 11608, 11609, 11548, 11623, 11593, 11591, 11549, 11651, 11553,
11652, 11628, 11636, 11554, 11620, 11601, 11619, 11574, 11653, 11633,
11555, 11648, 11634, 11575, 11602, 11635, 11627, 11592, 11595, 11594,
11644, 11640, 11646, 11643, 11641, 11590, 11589, 11588, 11587, 11598,
11597, 11621, 11624, 11622, 11638, 41412, 41412, 41412, 41412, 41412,
11533, 11546, 11545, 11540, 11547, 11527, 11520, 11519, 11516, 11518,
11521, 11522, 11517, 41412, 41412, 41412, 11529, 11525, 11528, 11523,
11532, 11531, 11524, 11530, 11526, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 11534, 11538, 11541, 11536, 11544, 11543, 11537, 11542,
11539, 11535, 41412, 41412, 11658, 11655, 11656, 11657, 33036, 33035,
33037, 33038, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 38247, 32227, 24339, 32224, 11423, 25347,
32195, 25405, 967, 20587, 39302, 24297, 27756, 32180, 24332, 32217,
30107, 31773, 31965, 20583, 39276, 25287, 25286, 25285, 25284, 25282,
25283, 4587, 4588, 4596, 4610, 4480, 4479, 32766, 32774, 32767, 32778,
32771, 32775, 32768, 32780, 32773, 32777, 32770, 32779, 32772, 32776,
32769, 38286, 38254, 38256, 38341, 38303, 38299, 38335, 38305, 25431,
25378, 25398, 25433, 25381, 25423, 25425, 25404, 34309, 34310, 30835,
10972, 10708, 10707, 34321, 34322, 24345, 32204, 17621, 17622, 352, 351,
358, 357, 360, 359, 355, 356, 353, 354, 24335, 38239, 32220, 11429,
37913, 37909, 37917, 4442, 4440, 4446, 24328, 38234, 32214, 11425, 28480,
24338, 38242, 32223, 11432, 16787, 16788, 3944, 3947, 3946, 3945, 3978,
24351, 38232, 32210, 11435, 24352, 38233, 32211, 11436, 24341, 38236,
32226, 11427, 34554, 34555, 34553, 34552, 34746, 34748, 34747, 34745,
39286, 20566, 39699, 39700, 38159, 34386, 34385, 34384, 34339, 20962,
24211, 20963, 39291, 20564, 24346, 32205, 24347, 32206, 17606, 24337,
38241, 32222, 11431, 20586, 39301, 39279, 24340, 32225, 24334, 32219,
24336, 32221, 24245, 32138, 38295, 38331, 38294, 38330, 25367, 25387,
25366, 25386, 25364, 25384, 25365, 25385, 38298, 38334, 25377, 25397,
38296, 38332, 25376, 25396, 38289, 38325, 25371, 25391, 38292, 38328,
25374, 25394, 38293, 38329, 25375, 25395, 38288, 38324, 25370, 25390,
38290, 38326, 25372, 25392, 38291, 38327, 25373, 25393, 38297, 38333,
25368, 25388, 31013, 31014, 31015, 31016, 31017, 31018, 31019, 31020,
31021, 31022, 31023, 31024, 31025, 31026, 31027, 31028, 31029, 31030,
31031, 31032, 31033, 31034, 31035, 31036, 31037, 31038, 31049, 31051,
31048, 31047, 31044, 31043, 31046, 31045, 31052, 31050, 34090, 17623,
29621, 41412, 41412, 41412, 4239, 4183, 4054, 4269, 4140, 4081, 4240,
4121, 4184, 4230, 4156, 4215, 4097, 4112, 4200, 4066, 4273, 4141, 4171,
4082, 4241, 4122, 4185, 4055, 4236, 4164, 4223, 4105, 4262, 4118, 4208,
4074, 4149, 4177, 4090, 4248, 4130, 4193, 4060, 4231, 4157, 4216, 4098,
4255, 4113, 4201, 4067, 4274, 4142, 4172, 4083, 4242, 4123, 4186, 4168,
4227, 4109, 4266, 4137, 4212, 4078, 4281, 4153, 4180, 4094, 4252, 4134,
4197, 4063, 4161, 4220, 4102, 4259, 4205, 4071, 4278, 4146, 4087, 4245,
4127, 4190, 4237, 4165, 4224, 4106, 4263, 4119, 4209, 4075, 4270, 4150,
4178, 4091, 4249, 4131, 4194, 4061, 4232, 4158, 4217, 4099, 4256, 4114,
4202, 4068, 4275, 4143, 4173, 4084, 4243, 4124, 4187, 4056, 4170, 4229,
4111, 4268, 4139, 4214, 4080, 4283, 4155, 4182, 4096, 4254, 4136, 4199,
4065, 4235, 4163, 4222, 4104, 4261, 4117, 4207, 4073, 4280, 4148, 4176,
4089, 4247, 4129, 4192, 4059, 4167, 4226, 4108, 4265, 4211, 4077, 4272,
4152, 4093, 4251, 4133, 4196, 4233, 4160, 4219, 4101, 4258, 4115, 4204,
4070, 4277, 4145, 4174, 4086, 4244, 4126, 4189, 4057, 4169, 4228, 4110,
4267, 4138, 4213, 4079, 4282, 4154, 4181, 4095, 4253, 4135, 4198, 4064,
4234, 4162, 4221, 4103, 4260, 4116, 4206, 4072, 4279, 4147, 4175, 4088,
4246, 4128, 4191, 4058, 4238, 4166, 4225, 4107, 4264, 4120, 4210, 4076,
4271, 4151, 4179, 4092, 4250, 4132, 4195, 4062, 4159, 4218, 4100, 4257,
4203, 4069, 4276, 4144, 4085, 4125, 4188, 37921, 4449, 37918, 4447,
37919, 4448, 37914, 4443, 37915, 4444, 37908, 4436, 4437, 4438, 4439,
28364, 37910, 37911, 11426, 24329, 34060, 38237, 11428, 17492, 17493,
17494, 32133, 25338, 17495, 38261, 25340, 19942, 39761, 37932, 17779,
4481, 4478, 24249, 32142, 24248, 32141, 20563, 24246, 32139, 20562,
25341, 38264, 39292, 4606, 4604, 4605, 4603, 22883, 22882, 22887, 22881,
22859, 22838, 22839, 22879, 22845, 22863, 22886, 22861, 22884, 22885,
22867, 22864, 22844, 22843, 22846, 22862, 22847, 22835, 22856, 22880,
22836, 22837, 22834, 22860, 22865, 22851, 22842, 22866, 22868, 22841,
22858, 22850, 22848, 22849, 22840, 22888, 22857, 22852, 22855, 22853,
22854, 22876, 22874, 22875, 22878, 22873, 22870, 22877, 22872, 22871,
22869, 32781, 32813, 32782, 32829, 32798, 32814, 32783, 32837, 32806,
32822, 32791, 32830, 32799, 32815, 32784, 32841, 32810, 32826, 32795,
32834, 32803, 32819, 32788, 32838, 32807, 32823, 32792, 32831, 32800,
32816, 32785, 32843, 32812, 32828, 32797, 32836, 32805, 32821, 32790,
32840, 32809, 32825, 32794, 32833, 32802, 32818, 32787, 32842, 32811,
32827, 32796, 32835, 32804, 32820, 32789, 32839, 32808, 32824, 32793,
32832, 32801, 32817, 32786, 38281, 38253, 38255, 38320, 38302, 38300,
38301, 38304, 25430, 25428, 25429, 25432, 25383, 25422, 25424, 25418,
32143, 32183, 24300, 24250, 25343, 25438, 38344, 38266, 24251, 24301,
32184, 32144, 38267, 38345, 25439, 25344, 20588, 21790, 30522, 3984,
41412, 41412, 41412, 41412, 41412, 41412, 17659, 31062, 37993, 1057,
6577, 34742, 20085, 20984, 17611, 27599, 31398, 39328, 16781, 20983,
17487, 31902, 37387, 27244, 17637, 2574, 3597, 369, 24565, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 17878, 17875, 17867, 17873, 17879, 17865, 17871,
17868, 17874, 17870, 17866, 17876, 17872, 17877, 17869, 17880, 27156,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41228, 41233, 41267, 41230, 41235,
41263, 41257, 41251, 41274, 41253, 41247, 41271, 41229, 41234, 41268,
41231, 41236, 41264, 41258, 41252, 41275, 41254, 41248, 41272, 41269,
41255, 41262, 41249, 41250, 41273, 41256, 41232, 41278, 41243, 41260,
41270, 41281, 41280, 41246, 41279, 41240, 41239, 41277, 41261, 41259,
41238, 41412, 41412, 41283, 41284, 41285, 41276, 41226, 41241, 41244,
41245, 41223, 41224, 41242, 41265, 41266, 41227, 41282, 41225, 41237,
41222, 41404, 41405, 41402, 41403, 41406, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41302, 41303, 41319, 41291, 41300,
41399, 41354, 41355, 41322, 41323, 41356, 41286, 41320, 41400, 41298,
41295, 41297, 41296, 41294, 41396, 41395, 41398, 41397, 41392, 41391,
41394, 41393, 41292, 41326, 41288, 41299, 41287, 41324, 41337, 41338,
41336, 41335, 41289, 41333, 41334, 41332, 41330, 41331, 41329, 41328,
41339, 41341, 41342, 41340, 41304, 41327, 41293, 41301, 41401, 41343,
41348, 41345, 41349, 41346, 41351, 41352, 41347, 41344, 41350, 41325,
41353, 41386, 41383, 41374, 41384, 41385, 41375, 41363, 41362, 41390,
41360, 41359, 41357, 41361, 41358, 41377, 41382, 41376, 41380, 41381,
41378, 41379, 41306, 41310, 41309, 41308, 41307, 41389, 41387, 41388,
41313, 41318, 41317, 41316, 41315, 41314, 41364, 41373, 41366, 41371,
41365, 41369, 41370, 41367, 41368, 41372, 41305, 41312, 41290, 41311,
41321, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 5296, 5168, 5289, 5271, 5272, 5340, 5341, 5221, 5318, 5278, 5352,
5353, 5244, 5123, 5174, 5321, 5222, 5126, 5127, 5316, 5328, 5267, 5204,
5295, 5147, 5344, 5216, 5230, 5226, 5319, 5281, 5310, 5274, 5343, 5129,
5131, 5231, 5297, 5282, 5339, 5121, 5299, 5313, 5315, 5269, 5323, 5251,
5169, 5331, 5322, 5241, 5122, 5181, 5212, 5333, 5219, 5287, 5291, 5234,
5145, 5298, 5276, 5279, 5218, 5356, 5286, 5235, 5334, 5311, 5210, 5217,
5268, 5273, 5285, 5237, 5284, 5242, 5288, 5225, 5229, 5355, 5128, 5124,
5354, 5243, 5177, 5148, 5266, 5342, 5283, 5292, 5275, 5120, 5252, 5280,
5277, 5173, 5245, 5119, 5335, 5176, 5314, 5317, 5146, 5175, 5300, 5357,
5337, 5293, 5332, 5336, 5290, 5338, 5294, 5207, 5133, 5172, 5270, 5325,
5326, 5324, 5327, 5220, 5170, 5345, 5346, 5309, 5233, 5166, 5238, 5239,
5240, 5130, 5132, 5165, 5330, 5320, 5236, 5246, 5250, 5249, 5248, 5247,
5206, 5203, 5202, 5160, 5162, 5163, 5161, 5329, 5134, 5214, 5153, 5117,
5111, 5112, 5115, 5116, 5114, 5113, 5118, 5259, 5254, 5255, 5253, 5264,
5263, 5262, 5261, 5265, 5257, 5215, 5125, 5180, 5179, 5178, 5260, 5258,
5256, 5208, 5209, 5171, 5213, 5211, 5182, 5189, 5185, 5193, 5188, 5197,
5187, 5186, 5183, 5184, 5191, 5192, 5199, 5196, 5194, 5143, 5144, 5142,
5190, 5198, 5351, 5156, 5154, 5157, 5159, 5158, 5155, 5347, 5349, 5348,
5350, 5200, 5201, 5150, 5149, 5151, 5152, 5305, 5308, 5306, 5307, 5301,
5304, 5302, 5303, 5164, 5167, 5312, 5141, 5135, 5140, 5138, 5137, 5136,
5139, 5223, 5227, 5224, 5228, 5232, 5205, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 28669, 28546, 28562, 28654,
28541, 28666, 28604, 28655, 28653, 28542, 28538, 28665, 28532, 28650,
28651, 28652, 28557, 28558, 28495, 28496, 28491, 28490, 28621, 28692,
28689, 28564, 28563, 28670, 28671, 28565, 28574, 28575, 28576, 28535,
28567, 28568, 28569, 28548, 28549, 41412, 41412, 28612, 28545, 28547,
28573, 28572, 28617, 28616, 28668, 28667, 28644, 28645, 28531, 28537,
28633, 28634, 28648, 28649, 28613, 28715, 28587, 28647, 28556, 28673,
28691, 28675, 28620, 28713, 28636, 28536, 28676, 28677, 28700, 28701,
28704, 28705, 28702, 28703, 28696, 28697, 28698, 28699, 28610, 28611,
28706, 28707, 28635, 28711, 28618, 28615, 28499, 28500, 28494, 28714,
28586, 28646, 28555, 28672, 28690, 28674, 28619, 28520, 28521, 28524,
28525, 28526, 28559, 28560, 28561, 28503, 28510, 28511, 28512, 28513,
28514, 28488, 28553, 28489, 28554, 28487, 28551, 28486, 28550, 28501,
28519, 28527, 28518, 28504, 28505, 28502, 28529, 28584, 28583, 28508,
28530, 28515, 28522, 28528, 28507, 28523, 28656, 28679, 28718, 28643,
28606, 28566, 28534, 28543, 28580, 28579, 28695, 28708, 28717, 28709,
28710, 28622, 28625, 28626, 28627, 28628, 28629, 28630, 28631, 28632,
28623, 28624, 28588, 28614, 28552, 28544, 28506, 28509, 28516, 28517,
28638, 28637, 28585, 28578, 28577, 28716, 28539, 28540, 28605, 28601,
28492, 28659, 28661, 28607, 28609, 28662, 28664, 28570, 28571, 28603,
28602, 28493, 28660, 28608, 28663, 28687, 28686, 28688, 28685, 28681,
28682, 28683, 28684, 28533, 28581, 28582, 28678, 28712, 28640, 28498,
28657, 28497, 28693, 28641, 28642, 28658, 28694, 28639, 28589, 28592,
28596, 28599, 28598, 28597, 28593, 28594, 28590, 28591, 28595, 28680,
28600, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 18793, 18781, 18804, 18805, 18787, 18806, 18807, 18808,
18809, 18794, 18795, 18796, 18797, 18798, 18799, 18800, 18801, 18802,
18803, 18782, 18783, 18784, 18785, 18786, 18788, 18789, 18790, 18791,
18792, 18513, 18521, 18534, 18542, 18548, 18549, 18514, 18515, 18516,
18517, 18518, 18519, 18520, 18522, 18523, 18524, 18525, 18526, 18527,
18528, 18529, 18530, 18531, 18532, 18533, 18535, 18536, 18537, 18538,
18539, 18540, 18541, 18543, 18544, 18545, 18546, 18547, 8387, 8386, 8388,
18573, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 21770, 21771, 21768, 21766, 21757, 21756, 21763,
21761, 21752, 21759, 21769, 21754, 21767, 21765, 21758, 21755, 21764,
21762, 21753, 21760, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 27020, 27021, 27018, 27016, 27007,
27006, 27013, 27011, 27002, 27009, 27019, 27004, 27017, 27015, 27008,
27005, 27014, 27012, 27003, 27010, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 28357, 11017, 11018,
11012, 11011, 11010, 37181, 37201, 37222, 37170, 37215, 37179, 37165,
37224, 37169, 37183, 37189, 37212, 37213, 37227, 37233, 37180, 37211,
37241, 37199, 37166, 37229, 37231, 37198, 37244, 37178, 37193, 37190,
37171, 37185, 37168, 37226, 37219, 37173, 37216, 37205, 37239, 37228,
37202, 37230, 37218, 37232, 37207, 37195, 37238, 37208, 37194, 37225,
37234, 37204, 37240, 37177, 37221, 37197, 37243, 37187, 37172, 37209,
37206, 37220, 37164, 37192, 37191, 37242, 37236, 37214, 37184, 37182,
37188, 37196, 37235, 37237, 37210, 37176, 37174, 37203, 37167, 37175,
37223, 37186, 37217, 37200, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 8801, 8799, 8798, 8795, 8794, 8797, 8796, 8802,
8800, 8792, 8790, 8789, 8786, 8785, 8788, 8787, 8793, 8791, 20675, 20674,
20673, 20672, 20671, 35650, 35649, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
26000, 26002, 26030, 25993, 26006, 26038, 26009, 26039, 26011, 26040,
26013, 26015, 26032, 26034, 26017, 26020, 26041, 26024, 26026, 25996,
26028, 26042, 26043, 26036, 26044, 26004, 26048, 26050, 26083, 26045,
26054, 26057, 26059, 26091, 26061, 26092, 26063, 26065, 26085, 26087,
26067, 26070, 26093, 26074, 26076, 26078, 26081, 26094, 26095, 26089,
26096, 26052, 26488, 26490, 26520, 26494, 26496, 26528, 26499, 26529,
26501, 26530, 26503, 26505, 26522, 26524, 26507, 26510, 26531, 26514,
26516, 26484, 26518, 26532, 26533, 26526, 26534, 26492, 26436, 26438,
26471, 26432, 26442, 26445, 26447, 41412, 26449, 26479, 26451, 26453,
26473, 26475, 26455, 26458, 26480, 26462, 26464, 26466, 26469, 26481,
26482, 26477, 26483, 26440, 26153, 26155, 26185, 26159, 26161, 26193,
26164, 26194, 26166, 26195, 26168, 26170, 26187, 26189, 26172, 26175,
26196, 26179, 26181, 26149, 26183, 26197, 26198, 26191, 26199, 26157,
26207, 26209, 26244, 26213, 26215, 26218, 26220, 26252, 26222, 26253,
26224, 26226, 26246, 26248, 26228, 26231, 26254, 26235, 26237, 26239,
26242, 26255, 26256, 26250, 26257, 26211, 26960, 41412, 26961, 26962,
41412, 41412, 26963, 41412, 41412, 26964, 26965, 41412, 41412, 26966,
26967, 26968, 26969, 41412, 26970, 26971, 26972, 26973, 26974, 26975,
26976, 26977, 26978, 26979, 26980, 26981, 41412, 26982, 41412, 26983,
26984, 26985, 26986, 26987, 26988, 26989, 41412, 26990, 26991, 26992,
26993, 26994, 26995, 26996, 26997, 26998, 26999, 27000, 26097, 26098,
26099, 26100, 26101, 26102, 26103, 26104, 26105, 26106, 26107, 26108,
26109, 26110, 26111, 26112, 26113, 26114, 26115, 26116, 26117, 26118,
26119, 26120, 26121, 26122, 26123, 26124, 26125, 26126, 26127, 26128,
26129, 26130, 26131, 26132, 26133, 26134, 26135, 26136, 26137, 26138,
26139, 26140, 26141, 26142, 26143, 26144, 26145, 26146, 26147, 26148,
26384, 26385, 41412, 26386, 26387, 26388, 26389, 41412, 41412, 26390,
26391, 26392, 26393, 26394, 26395, 26396, 26397, 41412, 26398, 26399,
26400, 26401, 26402, 26403, 26404, 41412, 26405, 26406, 26407, 26408,
26409, 26410, 26411, 26412, 26413, 26414, 26415, 26416, 26417, 26418,
26419, 26420, 26421, 26422, 26423, 26424, 26425, 26426, 26427, 26428,
26429, 26430, 26329, 26330, 41412, 26331, 26332, 26333, 26334, 41412,
26335, 26336, 26337, 26338, 26339, 41412, 26340, 41412, 41412, 41412,
26341, 26342, 26343, 26344, 26345, 26346, 26347, 41412, 26348, 26349,
26350, 26351, 26352, 26353, 26354, 26355, 26356, 26357, 26358, 26359,
26360, 26361, 26362, 26363, 26364, 26365, 26366, 26367, 26368, 26369,
26370, 26371, 26372, 26373, 26267, 26268, 26269, 26270, 26271, 26272,
26273, 26274, 26275, 26276, 26277, 26278, 26279, 26280, 26281, 26282,
26283, 26284, 26285, 26286, 26287, 26288, 26289, 26290, 26291, 26292,
26293, 26294, 26295, 26296, 26297, 26298, 26299, 26300, 26301, 26302,
26303, 26304, 26305, 26306, 26307, 26308, 26309, 26310, 26311, 26312,
26313, 26314, 26315, 26316, 26317, 26318, 26898, 26899, 26900, 26901,
26902, 26903, 26904, 26905, 26906, 26907, 26908, 26909, 26910, 26911,
26912, 26913, 26914, 26915, 26916, 26917, 26918, 26919, 26920, 26921,
26922, 26923, 26924, 26925, 26926, 26927, 26928, 26929, 26930, 26931,
26932, 26933, 26934, 26935, 26936, 26937, 26938, 26939, 26940, 26941,
26942, 26943, 26944, 26945, 26946, 26947, 26948, 26949, 26730, 26732,
26762, 26736, 26738, 26770, 26741, 26771, 26743, 26772, 26745, 26747,
26764, 26766, 26749, 26752, 26773, 26756, 26758, 26726, 26760, 26774,
26775, 26768, 26776, 26734, 26784, 26786, 26821, 26790, 26792, 26795,
26797, 26829, 26799, 26830, 26801, 26803, 26823, 26825, 26805, 26808,
26831, 26812, 26814, 26816, 26819, 26832, 26833, 26827, 26834, 26788,
26846, 26847, 26848, 26849, 26850, 26851, 26852, 26853, 26854, 26855,
26856, 26857, 26858, 26859, 26860, 26861, 26862, 26863, 26864, 26865,
26866, 26867, 26868, 26869, 26870, 26871, 26872, 26873, 26874, 26875,
26876, 26877, 26878, 26879, 26880, 26881, 26882, 26883, 26884, 26885,
26886, 26887, 26888, 26889, 26890, 26891, 26892, 26893, 26894, 26895,
26896, 26897, 26620, 26622, 26652, 26626, 26628, 26660, 26631, 26661,
26633, 26662, 26635, 26637, 26654, 26656, 26639, 26642, 26663, 26646,
26648, 26616, 26650, 26664, 26665, 26658, 26666, 26624, 26674, 26676,
26711, 26680, 26682, 26685, 26687, 26719, 26689, 26720, 26691, 26693,
26713, 26715, 26695, 26698, 26721, 26702, 26704, 26706, 26709, 26722,
26723, 26717, 26724, 26678, 26543, 26544, 26545, 26546, 26547, 26548,
26549, 26550, 26551, 26552, 26553, 26554, 26555, 26556, 26557, 26558,
26559, 26560, 26561, 26562, 26563, 26564, 26565, 26566, 26567, 26568,
26569, 26570, 26571, 26572, 26573, 26574, 26575, 26576, 26577, 26578,
26579, 26580, 26581, 26582, 26583, 26584, 26585, 26586, 26587, 26588,
26589, 26590, 26591, 26592, 26593, 26594, 26433, 26434, 41412, 41412,
26001, 26003, 26010, 25995, 26007, 26005, 26008, 25997, 26012, 26014,
26016, 26033, 26035, 26037, 26018, 26023, 26025, 25998, 26027, 25999,
26029, 26021, 26031, 26022, 26019, 26261, 26049, 26051, 26060, 26047,
26055, 26053, 26056, 26079, 26062, 26064, 26066, 26086, 26088, 26090,
26068, 26073, 26075, 26058, 26077, 26080, 26082, 26071, 26084, 26072,
26069, 26263, 26259, 26266, 26260, 26262, 26265, 26264, 26489, 26491,
26500, 26495, 26497, 26493, 26498, 26485, 26502, 26504, 26506, 26523,
26525, 26527, 26508, 26513, 26515, 26486, 26517, 26487, 26519, 26511,
26521, 26512, 26509, 26537, 26437, 26439, 26448, 26435, 26443, 26441,
26444, 26467, 26450, 26452, 26454, 26474, 26476, 26478, 26456, 26461,
26463, 26446, 26465, 26468, 26470, 26459, 26472, 26460, 26457, 26539,
26535, 26542, 26536, 26538, 26541, 26540, 26154, 26156, 26165, 26160,
26162, 26158, 26163, 26150, 26167, 26169, 26171, 26188, 26190, 26192,
26173, 26178, 26180, 26151, 26182, 26152, 26184, 26176, 26186, 26177,
26174, 26202, 26208, 26210, 26221, 26214, 26216, 26212, 26217, 26240,
26223, 26225, 26227, 26247, 26249, 26251, 26229, 26234, 26236, 26219,
26238, 26241, 26243, 26232, 26245, 26233, 26230, 26204, 26200, 26258,
26201, 26203, 26206, 26205, 26731, 26733, 26742, 26737, 26739, 26735,
26740, 26727, 26744, 26746, 26748, 26765, 26767, 26769, 26750, 26755,
26757, 26728, 26759, 26729, 26761, 26753, 26763, 26754, 26751, 26779,
26785, 26787, 26798, 26791, 26793, 26789, 26794, 26817, 26800, 26802,
26804, 26824, 26826, 26828, 26806, 26811, 26813, 26796, 26815, 26818,
26820, 26809, 26822, 26810, 26807, 26781, 26777, 26835, 26778, 26780,
26783, 26782, 26621, 26623, 26632, 26627, 26629, 26625, 26630, 26617,
26634, 26636, 26638, 26655, 26657, 26659, 26640, 26645, 26647, 26618,
26649, 26619, 26651, 26643, 26653, 26644, 26641, 26669, 26675, 26677,
26688, 26681, 26683, 26679, 26684, 26707, 26690, 26692, 26694, 26714,
26716, 26718, 26696, 26701, 26703, 26686, 26705, 26708, 26710, 26699,
26712, 26700, 26697, 26671, 26667, 26725, 26668, 26670, 26673, 26672,
25994, 26046, 41412, 41412, 26325, 26327, 26324, 26323, 26320, 26319,
26322, 26321, 26328, 26326, 26380, 26382, 26379, 26378, 26375, 26374,
26377, 26376, 26383, 26381, 26956, 26958, 26955, 26954, 26951, 26950,
26953, 26952, 26959, 26957, 26842, 26844, 26841, 26840, 26837, 26836,
26839, 26838, 26845, 26843, 26601, 26603, 26600, 26599, 26596, 26595,
26598, 26597, 26604, 26602, 33315, 33271, 33296, 33512, 33467, 33253,
33316, 33280, 33429, 33381, 33357, 33318, 33321, 33278, 33322, 33272,
33323, 33345, 33340, 33378, 33319, 33325, 33334, 33335, 33326, 33332,
33336, 33274, 33408, 33317, 33346, 33275, 33355, 33324, 33354, 33341,
33380, 33379, 33320, 33339, 33349, 33350, 33353, 33352, 33420, 33328,
33329, 33330, 33402, 33370, 33333, 33337, 33331, 33327, 33401, 33362,
33400, 33399, 33359, 33358, 33361, 33351, 33348, 33347, 33397, 33396,
33398, 33369, 33445, 33449, 33448, 33446, 33447, 33290, 33436, 33466,
33438, 33451, 33443, 33452, 33444, 33453, 33442, 33300, 33301, 33465,
33506, 33439, 33440, 33441, 33437, 33463, 33450, 33461, 33454, 33462,
33460, 33458, 33455, 33456, 33457, 33459, 33287, 33293, 33291, 33292,
33496, 33495, 33303, 33295, 33306, 33309, 33304, 33307, 33305, 33308,
33313, 33310, 33270, 33505, 33511, 33508, 33510, 33484, 33486, 33464,
33494, 33487, 33491, 33485, 33493, 33492, 33490, 33252, 33342, 33277,
33469, 33255, 33478, 33344, 33343, 33470, 33383, 33386, 33385, 33384,
33393, 33433, 33282, 33507, 33264, 33389, 33392, 33387, 33388, 33481,
33391, 33480, 33263, 33262, 33390, 33281, 33479, 33261, 33356, 33276,
33471, 33488, 33254, 33338, 33273, 33409, 33489, 33265, 33417, 33413,
33415, 33286, 33509, 33266, 33410, 33412, 33411, 33416, 33414, 33504,
33382, 33279, 33311, 33498, 33499, 33497, 33299, 33477, 33257, 33256,
33406, 33482, 33404, 33285, 33394, 33405, 33503, 33403, 33407, 33395,
33283, 33312, 33302, 33483, 33268, 33269, 33267, 33284, 33288, 33289,
33501, 33502, 33500, 33468, 33371, 33473, 33374, 33375, 33376, 33373,
33377, 33372, 33366, 33367, 33368, 33365, 33363, 33294, 33364, 33360,
33297, 33298, 33475, 33476, 33472, 33474, 33259, 33260, 33258, 33418,
33423, 33426, 33427, 33428, 33434, 33419, 33421, 33422, 33430, 33425,
33431, 33432, 33424, 33314, 33435, 33826, 33825, 33824, 33846, 33845,
33844, 33801, 33800, 33799, 33185, 33184, 33183, 33787, 33786, 33785,
33797, 33798, 33793, 33796, 33792, 33795, 33794, 33242, 33245, 33241,
33244, 33243, 33791, 33661, 33662, 33663, 33664, 33659, 33660, 33665,
33705, 33610, 33723, 33722, 33720, 33721, 33724, 33699, 33702, 33700,
33701, 33698, 33729, 33728, 33726, 33727, 33675, 33674, 33673, 33679,
33678, 33677, 33676, 33697, 33696, 33695, 33672, 33671, 33670, 33745,
33744, 33743, 33719, 33718, 33717, 33842, 33841, 33840, 33839, 33838,
33837, 33843, 33836, 33835, 33834, 33579, 33578, 33576, 33577, 33583,
33582, 33580, 33581, 33571, 33570, 33568, 33569, 33575, 33574, 33572,
33573, 33633, 33632, 33630, 33631, 33634, 33648, 33651, 33649, 33650,
33607, 33638, 33637, 33636, 33635, 33593, 33606, 33605, 33604, 33594,
33592, 33591, 33590, 33657, 33656, 33655, 33654, 33653, 33652, 33829,
33828, 33827, 33832, 33831, 33830, 33833, 33692, 33691, 33689, 33690,
33683, 33682, 33680, 33681, 33688, 33687, 33710, 33709, 33706, 33711,
33716, 33713, 33712, 33732, 33731, 33730, 33735, 33734, 33733, 33686,
33694, 33693, 33782, 33779, 33778, 33725, 33684, 33707, 33714, 33739,
33783, 33780, 33776, 33685, 33708, 33715, 33740, 33784, 33781, 33777,
33738, 33737, 33736, 33597, 33596, 33614, 33612, 33613, 33611, 33623,
33621, 33622, 33620, 33640, 33639, 33771, 33768, 33774, 33599, 33598,
33615, 33616, 33618, 33617, 33627, 33625, 33626, 33624, 33642, 33641,
33772, 33769, 33775, 33603, 33602, 33600, 33601, 33595, 33619, 33628,
33643, 33644, 33645, 33770, 33767, 33773, 33629, 33669, 33667, 33668,
33666, 33589, 33587, 33585, 33588, 33586, 33584, 33742, 33741, 33647,
33646, 33704, 33703, 33609, 33608, 33201, 33200, 33196, 33199, 33203,
33202, 33197, 33198, 33195, 33204, 33514, 33521, 33519, 33518, 33516,
33517, 33515, 33520, 33234, 33232, 33233, 33210, 33209, 33208, 33193,
33191, 33192, 33194, 33249, 33248, 33247, 33228, 33229, 33225, 33206,
33205, 33224, 33226, 33223, 33227, 33207, 33222, 33220, 33221, 33217,
33219, 33218, 33211, 33213, 33212, 33215, 33214, 33216, 33188, 33187,
33186, 33811, 33810, 33812, 33231, 33748, 33747, 33749, 33750, 33178,
33180, 33177, 33179, 33182, 33181, 33543, 33541, 33542, 33548, 33550,
33549, 33545, 33547, 33546, 33562, 33561, 33560, 33554, 33555, 33556,
33557, 33558, 33559, 33551, 33553, 33552, 33563, 33564, 33565, 33532,
33530, 33531, 33544, 33567, 33566, 33819, 33818, 33816, 33817, 33815,
33820, 33814, 33813, 33803, 33808, 33806, 33807, 33804, 33805, 33809,
33746, 33658, 33751, 33513, 33230, 33789, 33788, 33251, 33246, 33790,
33822, 33821, 33823, 33847, 33522, 33523, 33524, 33525, 33526, 33527,
33528, 33529, 33240, 33540, 33539, 33534, 33537, 33536, 33533, 33535,
33538, 33190, 33250, 33802, 33189, 33848, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 33235, 33236, 33237, 33238, 33239, 41412, 33759, 33760, 33761,
33762, 33763, 33764, 33765, 33766, 33752, 33753, 33754, 33755, 33756,
33757, 33758, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 23665, 23940, 23431, 23945, 23418, 23789, 24051, 23942,
24037, 24006, 23411, 23644, 23645, 24041, 23405, 23458, 23432, 23782,
23581, 23762, 23642, 24035, 23921, 24010, 23653, 23582, 23726, 23879,
24011, 23548, 23957, 41412, 41412, 41412, 41412, 41412, 41412, 23572,
23775, 23821, 23926, 23965, 24001, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 8342, 8344, 8354,
8348, 8330, 8355, 8362, 41412, 8361, 8335, 8332, 8331, 8329, 8366, 8350,
8349, 8351, 8365, 8352, 8353, 8337, 8340, 8364, 8346, 8363, 41412, 41412,
8338, 8341, 8345, 8339, 8357, 8356, 8358, 41412, 8360, 8336, 41412, 8359,
8334, 8343, 8333, 8347, 41412, 41412, 41412, 41412, 41412, 27944, 27913,
27941, 27939, 27915, 27937, 27934, 27935, 27936, 27943, 27920, 27921,
27945, 27924, 27922, 27917, 27930, 27946, 27919, 27942, 27929, 27938,
27928, 27931, 27916, 27933, 27914, 27927, 27911, 27940, 27912, 27925,
27923, 10652, 10630, 10650, 10637, 10633, 10647, 10644, 10645, 10646,
10651, 10635, 10653, 10649, 10636, 10654, 10634, 10639, 10643, 10648,
10642, 10640, 10641, 10638, 10629, 10632, 10631, 27918, 27932, 27926,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 8250, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 30063, 30047, 30038, 30049,
30054, 30046, 30051, 30042, 30068, 30072, 30074, 30077, 30041, 30036,
30071, 30061, 30045, 30044, 30075, 30037, 30048, 30069, 30057, 30073,
30076, 30043, 30065, 30050, 30040, 30060, 30039, 30055, 30062, 30064,
30070, 30056, 30052, 30053, 30078, 30079, 30058, 30059, 30066, 30067,
30080, 41412, 41412, 41412, 30089, 30093, 30092, 30095, 30094, 30091,
30090, 30086, 30083, 30082, 30085, 30084, 30087, 30088, 41412, 41412,
30103, 30105, 30102, 30101, 30098, 30097, 30100, 30099, 30106, 30104,
41412, 41412, 41412, 41412, 30081, 30096, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 37973, 37956, 37976, 37966,
37970, 37967, 37972, 37958, 37957, 37975, 37963, 37978, 37977, 37969,
37968, 37974, 37971, 37959, 37951, 37960, 37952, 37980, 37961, 37953,
37962, 37954, 37979, 37965, 37955, 37964, 37981, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 39435, 39434, 39466, 39467, 39468, 39470,
39459, 39462, 39448, 39451, 39463, 39455, 39452, 39469, 39465, 39464,
39472, 39477, 39476, 39475, 39461, 39440, 39439, 39474, 39473, 39460,
39471, 39443, 39445, 39449, 39456, 39447, 39454, 39453, 39442, 39437,
39438, 39446, 39441, 39444, 39436, 39450, 39457, 39458, 39481, 39482,
39479, 39480, 39489, 39491, 39488, 39487, 39484, 39483, 39486, 39485,
39492, 39490, 41412, 41412, 41412, 41412, 41412, 39478, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 29044, 29047, 29046, 29048,
29045, 29027, 29031, 29029, 29028, 29030, 29039, 29042, 29040, 29043,
29041, 29049, 29050, 29051, 29052, 29053, 29032, 29034, 29037, 29038,
29033, 29036, 29035, 29057, 29054, 29058, 29056, 29055, 29065, 29067,
29064, 29063, 29060, 29059, 29062, 29061, 29068, 29066, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 30226, 30229, 30228, 30227, 30230, 30231, 30208, 30210,
30209, 30211, 30212, 30213, 30220, 30221, 30225, 30222, 30223, 30224,
30232, 30236, 30233, 30235, 30234, 30237, 30214, 30219, 30218, 30216,
30215, 30217, 30240, 30238, 30239, 30248, 30250, 30247, 30246, 30243,
30242, 30245, 30244, 30251, 30249, 41412, 41412, 41412, 41412, 30241,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 35536, 35545, 35534, 35543, 35567, 35552, 35565, 35542,
35551, 35537, 35546, 35566, 35541, 35550, 35559, 35553, 35564, 35540,
35549, 35558, 35538, 35547, 35568, 35571, 35533, 35570, 35539, 35548,
35569, 35535, 35544, 41412, 35526, 35560, 35555, 35576, 35554, 35527,
35574, 35562, 35572, 35561, 35556, 35557, 35563, 35525, 35575, 35573,
35530, 35529, 35528, 35532, 35531, 35577, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 35578, 35579, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
17141, 17147, 17145, 17142, 17144, 17143, 17146, 41412, 17096, 17140,
17138, 17137, 41412, 17084, 17083, 41412, 17095, 17094, 17093, 17080,
17079, 17092, 17091, 17090, 17089, 17088, 17087, 17082, 17081, 17086,
17085, 41412, 27254, 27255, 27256, 27322, 27343, 27331, 27295, 27431,
27257, 27258, 27262, 27381, 27366, 27371, 27294, 27449, 27398, 27320,
27300, 27392, 27261, 27259, 27260, 27307, 27351, 27404, 27444, 27267,
27263, 27271, 27408, 27346, 27356, 27383, 27272, 27269, 27268, 27421,
27359, 27419, 27397, 27388, 27386, 27387, 27450, 27429, 27266, 27281,
27273, 27420, 27365, 27390, 27325, 27451, 27277, 27278, 27279, 27335,
27327, 27311, 27412, 27363, 27264, 27270, 27265, 27338, 27435, 27436,
27274, 27275, 27276, 27349, 27304, 27354, 27321, 27282, 27280, 27283,
27407, 27364, 27413, 27315, 27427, 27284, 27288, 27292, 27361, 27333,
27401, 27382, 27285, 27289, 27290, 27332, 27324, 27389, 27342, 27452,
27353, 27291, 27286, 27287, 27369, 27422, 27430, 27299, 27442, 27293,
27352, 27302, 27399, 27339, 27377, 27309, 27391, 27341, 27308, 27448,
27297, 27344, 27301, 27340, 27368, 27395, 27406, 27376, 27411, 27378,
27337, 27357, 27438, 27405, 27372, 27415, 27445, 27418, 27416, 27441,
27312, 27428, 27318, 27347, 27303, 27334, 27310, 27358, 27314, 27394,
27313, 27373, 27298, 27439, 27329, 27424, 27425, 27443, 27414, 27355,
27393, 27385, 27348, 27323, 27296, 27362, 27370, 27409, 27375, 27305,
27400, 27345, 27360, 27326, 27328, 27434, 27374, 27380, 27379, 27446,
27367, 27316, 27317, 27403, 27447, 27396, 27384, 27437, 27440, 27410,
27432, 27336, 27402, 27330, 27417, 27306, 27433, 27350, 27319, 41412,
41412, 27460, 27458, 27457, 27454, 27453, 27456, 27455, 27461, 27459,
27249, 27248, 27252, 27250, 27247, 27251, 27253, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 27, 9, 24, 14,
29, 21, 34, 28, 37, 39, 35, 40, 41, 10, 30, 32, 18, 15, 31, 42, 13, 25,
36, 23, 12, 20, 33, 19, 38, 17, 11, 26, 16, 22, 62, 44, 59, 49, 64, 56,
69, 63, 72, 74, 70, 75, 76, 45, 65, 67, 53, 50, 66, 77, 48, 60, 71, 58,
47, 55, 68, 54, 73, 52, 46, 61, 51, 57, 85, 86, 79, 84, 43, 78, 83, 82,
41412, 41412, 41412, 41412, 93, 95, 92, 91, 88, 87, 90, 89, 96, 94,
41412, 41412, 41412, 41412, 80, 81, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 20858, 20844,
20839, 20819, 20814, 20832, 20827, 20807, 20822, 20847, 20842, 20837,
20817, 20812, 20833, 20828, 20808, 20823, 20859, 20845, 20840, 20820,
20815, 20835, 20830, 20810, 20825, 20860, 20846, 20841, 20821, 20816,
20836, 20831, 20811, 20826, 20848, 20843, 20838, 20818, 20813, 20834,
20829, 20809, 20824, 20805, 20806, 20796, 20803, 20804, 20856, 20854,
20853, 20850, 20849, 20852, 20851, 20857, 20855, 20862, 20798, 20797,
20799, 20861, 20802, 20801, 20800, 20795, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 31008, 31003, 30998, 30978, 30973, 30991, 30986, 30966,
30981, 31006, 31001, 30996, 30976, 30971, 30992, 30987, 30967, 30982,
31009, 31004, 30999, 30979, 30974, 30994, 30989, 30969, 30984, 31010,
31005, 31000, 30980, 30975, 30995, 30990, 30970, 30985, 31007, 31002,
30997, 30977, 30972, 30993, 30988, 30968, 30983, 30965, 30958, 30960,
30950, 30952, 30953, 30955, 30962, 30961, 30956, 30951, 30954, 30959,
30957, 30964, 30963, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 2288, 2296, 2294, 2192,
41412, 2304, 2292, 2300, 2284, 2299, 2291, 2240, 2295, 2302, 2267, 2289,
2297, 2268, 2303, 2298, 2266, 2287, 2286, 2290, 2285, 2191, 2293, 2301,
2162, 2164, 2163, 2165, 41412, 2204, 2202, 41412, 2199, 41412, 41412,
2198, 41412, 2206, 2201, 2209, 2203, 2208, 2196, 2211, 2205, 2197, 2210,
41412, 2195, 2194, 2193, 2200, 41412, 2212, 41412, 2207, 41412, 41412,
41412, 41412, 41412, 41412, 2276, 41412, 41412, 41412, 41412, 2278,
41412, 2277, 41412, 2281, 41412, 2280, 2273, 2283, 41412, 2274, 2282,
41412, 2272, 41412, 41412, 2275, 41412, 2271, 41412, 2279, 41412, 2269,
41412, 2270, 41412, 2258, 2256, 41412, 2253, 41412, 41412, 2252, 2247,
2260, 2255, 41412, 2257, 2263, 2250, 2265, 2259, 2251, 2264, 41412, 2249,
2248, 2246, 2254, 41412, 2245, 2261, 2262, 2243, 41412, 2244, 41412,
2217, 2229, 2227, 2237, 2220, 2239, 2225, 2219, 2223, 2232, 41412, 2235,
2228, 2234, 2214, 2218, 2230, 2215, 2238, 2231, 2213, 2224, 2222, 2216,
2221, 2236, 2226, 2233, 41412, 41412, 41412, 41412, 41412, 2178, 2176,
2187, 41412, 2190, 2174, 2182, 2172, 2181, 41412, 2185, 2177, 2184, 2167,
2189, 2179, 2168, 2188, 2180, 2166, 2173, 2171, 2169, 2170, 2186, 2175,
2183, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 2241, 2242, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 25561,
25577, 25592, 25568, 25596, 25595, 25593, 25573, 25590, 25587, 25566,
25563, 25582, 25579, 25559, 25570, 25574, 25591, 25588, 25567, 25564,
25583, 25580, 25560, 25571, 25572, 25589, 25586, 25565, 25562, 25581,
25578, 25558, 25569, 25576, 25575, 25556, 25599, 25585, 25584, 25597,
25594, 25598, 25557, 41412, 41412, 41412, 41412, 11271, 11222, 11223,
11224, 11225, 11226, 11227, 11228, 11229, 11230, 11231, 11232, 11233,
11234, 11235, 11236, 11237, 11238, 11239, 11240, 11241, 11242, 11243,
11244, 11245, 11246, 11247, 11248, 11249, 11250, 11251, 11252, 11253,
11254, 11255, 11256, 11257, 11258, 11259, 11260, 11261, 11262, 11263,
11264, 11265, 11266, 11267, 11268, 11269, 11270, 11321, 11272, 11273,
11274, 11275, 11276, 11277, 11278, 11279, 11280, 11281, 11282, 11283,
11284, 11285, 11286, 11287, 11288, 11289, 11290, 11291, 11292, 11293,
11294, 11295, 11296, 11297, 11298, 11299, 11300, 11301, 11302, 11303,
11304, 11305, 11306, 11307, 11308, 11309, 11310, 11311, 11312, 11313,
11314, 11315, 11316, 11317, 11318, 11319, 11320, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 31671,
31741, 31716, 31712, 31675, 31680, 31700, 31696, 31692, 31745, 31708,
31749, 31684, 31704, 31688, 41412, 41412, 31742, 31717, 31713, 31676,
31681, 31701, 31697, 31693, 31746, 31709, 31750, 31685, 31705, 31689,
31672, 41412, 31743, 31718, 31714, 31677, 31682, 31702, 31698, 31694,
31747, 31710, 31751, 31686, 31706, 31690, 31670, 41412, 31740, 31715,
31711, 31674, 31679, 31699, 31695, 31691, 31744, 31707, 31748, 31683,
31703, 31687, 31673, 31678, 31722, 31719, 31733, 31734, 31735, 31736,
31737, 31738, 31739, 31723, 31724, 31725, 31726, 31727, 31728, 31729,
31730, 31731, 31732, 31720, 31721, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 11006, 11005, 10990, 11002, 10999,
10984, 10981, 10996, 10993, 11008, 10987, 11047, 11026, 6918, 6635, 6659,
31339, 31340, 31341, 31342, 31343, 31344, 31345, 31346, 31347, 31348,
31349, 31350, 31351, 31352, 31353, 31354, 31355, 31356, 31357, 31358,
31359, 31360, 31361, 31362, 31363, 31364, 37949, 6749, 6750, 6646, 6917,
8778, 34644, 34645, 34646, 34647, 34648, 34649, 34650, 34651, 34652,
34653, 34654, 34655, 34656, 34657, 34658, 34659, 34660, 34661, 34662,
34663, 34664, 34665, 34666, 34667, 34668, 34669, 34638, 34674, 34689,
34690, 34679, 34701, 29157, 29158, 29159, 29160, 29161, 29162, 29163,
29164, 29165, 29166, 29167, 29168, 29169, 29170, 29171, 29172, 29173,
29174, 29175, 29176, 29177, 29178, 29179, 29180, 29181, 29182, 31950,
31951, 31952, 6645, 6644, 6692, 29188, 29189, 29190, 29191, 29192, 29193,
29194, 29195, 29196, 29197, 29198, 29199, 29200, 29201, 29202, 29203,
29204, 29205, 29206, 29207, 29208, 29209, 29210, 29211, 29212, 29213,
8822, 29220, 29223, 29224, 29219, 29221, 34373, 34627, 34626, 34633,
34702, 34675, 34676, 34678, 34688, 34696, 34699, 34691, 34681, 34693,
34631, 34695, 34632, 34682, 34692, 34684, 34677, 34643, 34637, 34636,
34635, 34672, 34683, 34697, 34698, 25991, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 31980, 31981, 31982, 31983, 31984, 31985, 31986, 31987,
31988, 31989, 31990, 31991, 31992, 31993, 31994, 31995, 31996, 31997,
31998, 31999, 32000, 32001, 32002, 32003, 32004, 32005, 34414, 34639,
34641, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 34605, 34600, 34592, 34640, 34586, 34598,
34621, 34597, 34585, 34610, 34618, 34609, 34590, 34601, 34602, 34608,
34589, 34619, 34616, 34623, 34599, 34594, 34613, 34603, 34606, 34583,
34584, 34625, 34596, 34587, 34591, 34607, 34622, 34604, 34617, 34620,
34593, 34614, 34612, 34611, 34615, 34588, 34595, 34624, 41412, 41412,
41412, 41412, 37946, 37940, 37941, 37943, 37947, 37944, 37948, 37942,
37945, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 6697, 6695,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 32416, 32417, 32414, 32418, 32413, 32415,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 10657, 17627, 8142, 29467, 34877, 34876,
6928, 34922, 31943, 5033, 39583, 39408, 27764, 11671, 11669, 11670,
18163, 29272, 39495, 17592, 39496, 17670, 39494, 22905, 39493, 8812,
29271, 17591, 22904, 17669, 34801, 18164, 33020, 37385, 3930, 39742,
39746, 39743, 39744, 8155, 8154, 8153, 8152, 17626, 39809, 20595, 37043,
5109, 6579, 32750, 17519, 10683, 31207, 6226, 20592, 38117, 6576, 32404,
20552, 34923, 4344, 11665, 11666, 20377, 17646, 25843, 17559, 24202,
28479, 37899, 2586, 18276, 27246, 39586, 36066, 24568, 3475, 31655,
31977, 18816, 31475, 31472, 6578, 34741, 19266, 34006, 27036, 31791,
32100, 32101, 8612, 10084, 34729, 34305, 5031, 17660, 32420, 10666,
31065, 34963, 17668, 17598, 34102, 32964, 20626, 11417, 8611, 6618, 6101,
25446, 10087, 20558, 33039, 3699, 31789, 8610, 17632, 37045, 32717,
39811, 8159, 38030, 3589, 8101, 2650, 17633, 4468, 31779, 32091, 39831,
3860, 20987, 6619, 17565, 17588, 17587, 2793, 31397, 8591, 36065, 8823,
31654, 20992, 6163, 39808, 28362, 32722, 18201, 19847, 4470, 27763,
32044, 28485, 34750, 24567, 8603, 3579, 3580, 17581, 98, 6161, 17571,
32362, 17596, 27753, 28384, 6621, 19846, 2565, 37924, 6926, 37792, 8097,
31504, 39330, 11052, 34012, 3859, 17859, 4473, 17615, 28720, 28466,
32716, 18832, 28484, 38035, 39335, 28719, 32545, 37160, 33987, 3481,
6580, 34096, 32546, 34961, 34336, 38032, 20590, 372, 32423, 34966, 39604,
18200, 31933, 31934, 8814, 39409, 17602, 20628, 35154, 34093, 5367, 3585,
5108, 20602, 6927, 10710, 8098, 10792, 10793, 29138, 34727, 20601, 20600,
31061, 20989, 17484, 20603, 3470, 2583, 20596, 25330, 8606, 32721, 10709,
17555, 20985, 20988, 17483, 39711, 3983, 39592, 39591, 32405, 3999,
22727, 2661, 4477, 370, 16877, 16878, 16879, 16880, 16881, 31958, 28379,
31068, 39584, 8805, 37690, 24464, 31960, 6168, 11507, 8826, 39765, 34091,
34089, 20589, 31963, 18168, 33045, 28360, 32403, 6587, 11158, 31646,
4655, 16846, 30127, 34330, 5046, 966, 20557, 22729, 17595, 38031, 4345,
38142, 19815, 2649, 17664, 3861, 31476, 22724, 31801, 11509, 2659, 11220,
28381, 8806, 37691, 31961, 6169, 11508, 34335, 20591, 28361, 11219,
31648, 17667, 19264, 39830, 3584, 31244, 31647, 31465, 6586, 17516,
17514, 11664, 29620, 28382, 37900, 39753, 39668, 39694, 39718, 17599,
39593, 31064, 37418, 37419, 8096, 30718, 8828, 39821, 17515, 29462,
35151, 21089, 11515, 22719, 3865, 39819, 31906, 19270, 31796, 25837,
2580, 20448, 39820, 39818, 17631, 5104, 5103, 4653, 18063, 25750, 39816,
17563, 25756, 38157, 38158, 31776, 39817, 5034, 31489, 25753, 25754,
30697, 30695, 2648, 8594, 31858, 20995, 20994, 19132, 2651, 17503, 350,
20755, 33989, 20871, 18831, 10665, 25223, 29069, 17551, 19137, 3479,
35149, 31651, 22716, 25329, 32342, 17863, 22711, 4469, 8804, 39602, 3586,
5040, 38151, 34306, 18829, 19849, 4347, 18818, 39858, 31905, 19848,
32087, 19850, 10968, 16834, 964, 4652, 34001, 8164, 34331, 11511, 10670,
31649, 17609, 11138, 34319, 37393, 39679, 20612, 28182, 10082, 19879,
8811, 3472, 3474, 3473, 3471, 28181, 6397, 32746, 31499, 5035, 27766,
17616, 30729, 11662, 17577, 30716, 31072, 31074, 5364, 37046, 6106, 6396,
6398, 3477, 8102, 31908, 32411, 31467, 34739, 38000, 4358, 24566, 29618,
29619, 8148, 30710, 18817, 4346, 30733, 4359, 29140, 32743, 27600, 37051,
31075, 17562, 32629, 31909, 6403, 31012, 20982, 31466, 17517, 20787,
16915, 8145, 8146, 30720, 30719, 31785, 31782, 29457, 27780, 27781,
39326, 27782, 29537, 968, 5365, 5366, 39329, 37058, 31936, 39331, 17580,
31780, 31872, 38145, 8132, 8133, 8129, 977, 25331, 20443, 34314, 34313,
34315, 34316, 3578, 16832, 24333, 32218, 25281, 8147, 21774, 25278,
30723, 3592, 3594, 4357, 25221, 31938, 2653, 16910, 30699, 34152, 37939,
29536, 21789, 20874, 20875, 20878, 20877, 20876, 17584, 16833, 39834,
19260, 30033, 20604, 31660, 27752, 37057, 8833, 33983, 20993, 38002,
4010, 39729, 22895, 22822, 22830, 22823, 34018, 34017, 38240, 11430,
38244, 11424, 25400, 38336, 6642, 8820, 8819, 29611, 29613, 35038, 39692,
19894, 6234, 31066, 11502, 21772, 28368, 35059, 27462, 4471, 8113, 8123,
8125, 8109, 8107, 8117, 8115, 8105, 8111, 8119, 8103, 8121, 8114, 8124,
8126, 8110, 8108, 8118, 8116, 8106, 8112, 8120, 8104, 8122, 32165, 32166,
32167, 5099, 5100, 32350, 4356, 6100, 25840, 4012, 29535, 20556, 25751,
34004, 10667, 34326, 34327, 21090, 25755, 24254, 37052, 32146, 39748,
4025, 37056, 8099, 2654, 34711, 16914, 17625, 31479, 25220, 3980, 25362,
25348, 25360, 25361, 25382, 24314, 38133, 31948, 32072, 32080, 32081,
32086, 32082, 31949, 39669, 33174, 33173, 33170, 33169, 3958, 3985,
33176, 33175, 33172, 33171, 4028, 3924, 3937, 10794, 21776, 37409, 31855,
31802, 3940, 39683, 34103, 37040, 39814, 30707, 38146, 37405, 37984,
30521, 19813, 32727, 31856, 17561, 30730, 11144, 11145, 11146, 17656,
17658, 17657, 3936, 17629, 30717, 6107, 6108, 17578, 16882, 16883, 16884,
29615, 29616, 29617, 16893, 16886, 16887, 11143, 31071, 31076, 39598,
34329, 34328, 10795, 27767, 27022, 31055, 8131, 6098, 20789, 10684, 8586,
30694, 32361, 31073, 34737, 10664, 25222, 34317, 37401, 37400, 37402,
37403, 24282, 32168, 38161, 37407, 24299, 32182, 24212, 32104, 28365,
24591, 24590, 2798, 2804, 2799, 2803, 2796, 24588, 2797, 39825, 28378,
37983, 34724, 33986, 28383, 18821, 18824, 17541, 34077, 34079, 34078,
34080, 34076, 34075, 39812, 34081, 17521, 32043, 34074, 34084, 34087,
29269, 17496, 38197, 17524, 31477, 8592, 8593, 22712, 17552, 22713,
22714, 17538, 17539, 17540, 11054, 39826, 965, 31794, 8832, 31501, 17546,
11053, 17666, 962, 17567, 39600, 34003, 37791, 18826, 25445, 17529,
20611, 17531, 17522, 2573, 17617, 34002, 11139, 17549, 17526, 18825,
6170, 34073, 34072, 6171, 22715, 31793, 8831, 39599, 34008, 34007, 38348,
17545, 17534, 17528, 31498, 32751, 19852, 34312, 19812, 31496, 31495,
31491, 31493, 29580, 34208, 29553, 34195, 38131, 38140, 38130, 38139,
29579, 34207, 29552, 34194, 19930, 19923, 19927, 19920, 29581, 34209,
29554, 34196, 19931, 19924, 19928, 19921, 20554, 20555, 34148, 34149,
24457, 38382, 32305, 11497, 32737, 19925, 24570, 19902, 19857, 34964,
32623, 32624, 32625, 19947, 32626, 19914, 39316, 39313, 6399, 32053,
32360, 20089, 34728, 31941, 20446, 20447, 37991, 27598, 24577, 34725,
37987, 37988, 5102, 30704, 38028, 5105, 27768, 373, 17585, 31774, 30703,
37044, 30702, 2582, 30700, 31976, 10689, 2564, 37985, 28359, 28375,
34962, 28376, 160, 33019, 32419, 34318, 20582, 39307, 8595, 31775, 37999,
11503, 29533, 34088, 29538, 31907, 11501, 31787, 29542, 3855, 29531,
3854, 28377, 31508, 29534, 6582, 27463, 39822, 32048, 2652, 37982, 39582,
33044, 3576, 3577, 31407, 10086, 2665, 24255, 37996, 31870, 6751, 4654,
18064, 8803, 34000, 33022, 3596, 3756, 31665, 30126, 33021, 34752, 31077,
20550, 20614, 16847, 22731, 41412, 41412, 41412, 39815, 31669, 39606,
32343, 19261, 33015, 30159, 28373, 31940, 28370, 38238, 38235, 38243,
34015, 29588, 227, 228, 41412, 41412, 41412, 32628, 30701, 10979, 31403,
32725, 28371, 6103, 34005, 17620, 33992, 2584, 31645, 32363, 41412,
41412, 41412, 297, 245, 345, 344, 341, 239, 237, 238, 235, 236, 334, 336,
337, 323, 290, 252, 283, 284, 285, 267, 311, 288, 338, 339, 309, 310,
272, 325, 278, 279, 261, 302, 258, 280, 321, 259, 260, 257, 312, 319,
340, 331, 281, 240, 320, 313, 318, 335, 300, 301, 299, 303, 304, 305,
232, 233, 286, 314, 242, 306, 307, 243, 248, 328, 329, 298, 249, 250,
251, 234, 346, 324, 330, 273, 342, 291, 256, 333, 255, 327, 254, 332,
315, 282, 326, 343, 276, 244, 293, 253, 292, 241, 316, 317, 322, 296,
270, 268, 269, 295, 294, 262, 263, 264, 265, 266, 231, 246, 247, 308,
277, 289, 271, 287, 275, 274, 25327, 30128, 25448, 39324, 2577, 20616,
31399, 19842, 25625, 18198, 31927, 30736, 3951, 4029, 3991, 3925, 4015,
27137, 4353, 19944, 39317, 17500, 39648, 32412, 4023, 4016, 24585, 27163,
4354, 19941, 39318, 17501, 39730, 39732, 34559, 4021, 4039, 3973, 39663,
39664, 10967, 4022, 4040, 3974, 39701, 37390, 24587, 27164, 4355, 39322,
39319, 17502, 37388, 24580, 27154, 4349, 19915, 39314, 17497, 24573,
27143, 4352, 19890, 39312, 17499, 24581, 27153, 4350, 19919, 39315,
17498, 24571, 27161, 4351, 19884, 39311, 24583, 27158, 37408, 27157,
24575, 27142, 17648, 27141, 32054, 24572, 19889, 27152, 19918, 33981,
27160, 19882, 39310, 19880, 24582, 19937, 19936, 6912, 29183, 6922,
29184, 29465, 41412, 41412, 41412, 41412, 41412, 41412, 22829, 22897,
22825, 22893, 22820, 22896, 22824, 22831, 22898, 22826, 22894, 22821,
41412, 41412, 41412, 41412, 19887, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
24377, 38358, 32258, 11448, 24384, 38355, 32265, 11445, 24371, 38354,
32255, 11444, 41412, 41412, 41412, 41412, 24376, 38357, 32257, 11447,
24386, 38359, 32267, 11449, 19898, 19939, 19912, 19876, 19897, 19938,
19911, 19875, 24421, 38392, 32318, 11468, 24420, 38391, 32317, 11467,
24419, 38388, 32316, 11464, 24423, 38394, 32320, 11470, 24422, 38393,
32319, 11469, 24451, 38369, 32284, 11484, 24459, 38384, 32307, 11499,
24461, 38380, 32340, 11495, 24411, 38378, 32298, 11493, 24412, 38379,
32299, 11494, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
24460, 38383, 32308, 11498, 29586, 29559, 34201, 34214, 24274, 38225,
41412, 41412, 41412, 41412, 41412, 41412, 39768, 39783, 39773, 39778,
39793, 39788, 39798, 39803, 39770, 39785, 39775, 39780, 39795, 39790,
39800, 39805, 39769, 39784, 39774, 39779, 39794, 39789, 39799, 39804,
39766, 39781, 39771, 39776, 39791, 39786, 39796, 39801, 39767, 39782,
39772, 39777, 39792, 39787, 39797, 39802, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 24427, 38398, 32324, 11475, 24441, 38408,
32339, 11480, 24385, 38356, 32266, 11446, 19853, 19856, 19855, 19854,
24395, 32273, 24430, 32309, 24452, 32304, 24456, 32300, 24394, 32272,
24450, 32283, 39610, 39609, 41412, 41412, 2560, 2557, 32253, 11459,
29214, 29215, 29222, 29216, 29578, 29550, 34193, 34206, 41412, 41412,
41412, 41412, 24391, 32244, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 25318, 25322,
25323, 33029, 25314, 33026, 25316, 25317, 25306, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 6640, 6641, 6639, 24239, 24237,
24238, 24240, 24236, 11437, 11439, 11438, 11440, 31652, 39684, 5042,
31653, 41221, 28183, 17542, 29463, 37391, 17525, 32421, 20613, 33849,
5363, 31957, 24348, 32207, 19271, 19267, 20986, 17523, 8156, 29139,
32365, 11512, 25506, 17550, 34092, 17533, 18823, 18822, 17544, 32846,
34082, 17530, 33042, 31803, 5030, 31242, 32854, 31857, 25752, 28369,
33047, 31486, 21092, 17573, 27783, 39833, 39585, 19269, 11134, 39807,
11513, 8100, 38143, 34334, 18167, 32354, 17594, 32749, 37392, 4650,
25914, 10081, 22728, 34105, 17624, 8827, 2642, 10088, 2660, 31788, 6166,
2663, 18819, 32858, 34751, 16782, 18162, 31473, 22717, 31243, 11659,
17636, 35648, 6617, 4472, 10074, 8160, 5041, 31663, 31853, 10089, 32627,
6102, 24203, 25841, 28363, 2664, 34083, 39857, 34085, 17535, 17548,
31054, 17662, 29466, 11058, 17553, 17537, 32718, 22726, 18197, 20551,
17603, 8834, 25275, 32723, 38119, 38211, 11674, 11660, 3519, 32963,
31067, 17653, 5107, 10962, 18196, 25276, 32089, 33046, 34704, 18065,
41215, 20442, 32713, 35152, 8813, 21378, 25512, 31470, 20553, 31402,
31935, 25444, 28367, 27755, 2662, 34965, 25749, 11504, 34013, 31011,
30735, 33991, 17608, 31060, 3587, 3866, 32745, 18833, 31871, 16873,
16874, 16876, 16875, 4656, 24569, 17630, 37901, 34958, 34959, 32556,
11667, 28372, 25838, 27037, 27038, 6402, 10076, 32559, 3755, 17858,
30709, 17560, 39433, 5106, 27001, 20627, 5044, 38027, 34726, 22721,
10961, 17527, 101, 6581, 30696, 3583, 31494, 31488, 31497, 31487, 25516,
17566, 38971, 27587, 16871, 18060, 41407, 5028, 30734, 3858, 32720,
18165, 8809, 34100, 31978, 17589, 21095, 37163, 31507, 11661, 8589, 2645,
17586, 37903, 5037, 25515, 25447, 25326, 34333, 2806, 32557, 37050, 5043,
3480, 32364, 3478, 34337, 31964, 29141, 29246, 29257, 29260, 29249,
29239, 29254, 39623, 3893, 29240, 39620, 39636, 39639, 39614, 39628,
39633, 3890, 3906, 3909, 3884, 3898, 3903, 29247, 29258, 29261, 29250,
29245, 29255, 39624, 3894, 29241, 39642, 39645, 39646, 39641, 39643,
39644, 3912, 3915, 3916, 3911, 3913, 3914, 29264, 29267, 29268, 29263,
29265, 29266, 39625, 3895, 29242, 39621, 39637, 39640, 39615, 39626,
39634, 3891, 3907, 3910, 3885, 3896, 3904, 29248, 29259, 29262, 29251,
29243, 29256, 39627, 3897, 29244, 39616, 3886, 29252, 39617, 3887, 29253,
39630, 39631, 39629, 3900, 3901, 3899, 39618, 39612, 3888, 3882, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 39849, 39852, 39848,
39850, 39847, 39846, 39851, 39842, 39845, 39841, 39843, 39840, 39839,
39844, 41412, 41412, 2807, 30708, 5036, 33040, 37394, 24584, 18820,
31657, 11510, 99, 34731, 39838, 8830, 41412, 41412, 41412, 41129, 22720,
31251, 4360, 25514, 31658, 29236, 25844, 17618, 19814, 38029, 41412,
41412, 41412, 37992, 33043, 32349, 6237, 31962, 2647, 11137, 3476, 27762,
1, 25304, 8808, 6164, 32726, 22730, 20606, 27778, 39810, 31771, 32851,
22722, 5110, 28380, 37902, 19844, 31666, 32359, 27779, 20633, 25332,
19265, 17628, 19134, 21859, 17619, 39827, 3590, 8158, 31790, 39829,
17568, 25328, 8782, 16885, 29237, 20624, 21088, 39813, 24201, 18199, 958,
25449, 31509, 31805, 31804, 31492, 17582, 41412, 19136, 41412, 41412,
41412, 41412, 30737, 28366, 11322, 4348, 3593, 30698, 17604, 36064,
17652, 37049, 31792, 3588, 21087, 18062, 31474, 32402, 41412, 41412,
34332, 27245, 32561, 17532, 17536, 17547, 11332, 3863, 5045, 33014,
17543, 11057, 41412, 41412, 41412, 41412, 17576, 19268, 32297, 24410,
31208, 31209, 20794, 19851, 24455, 32303, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 4284, 4314, 4285, 4329, 4300, 4318, 4286, 4337,
4307, 4315, 4293, 4330, 4301, 4319, 4287, 4341, 4311, 4326, 4297, 4334,
4323, 4290, 4338, 4308, 4316, 4294, 4331, 4302, 4320, 4288, 4343, 4313,
4328, 4299, 4336, 4306, 4325, 4292, 4340, 4310, 4296, 4333, 4304, 4322,
4289, 4342, 4312, 4327, 4298, 4335, 4305, 4324, 4291, 4339, 4309, 4317,
4295, 4332, 4303, 4321, 25349, 25350, 25357, 25359, 25354, 25415, 25416,
25412, 25414, 25410, 25413, 25406, 25409, 25407, 25411, 25408, 25353,
25356, 25351, 25355, 25352, 25358, 38308, 38309, 38316, 38318, 38313,
38278, 38279, 38275, 38277, 38273, 38276, 38269, 38272, 38270, 38274,
38271, 38312, 38315, 38310, 38314, 38311, 38317, 38251, 24204, 38248,
24209, 24295, 38347, 32190, 25441, 39295, 39296, 39297, 39298, 39299,
39300, 20568, 20569, 20570, 20571, 20572, 20573, 24205, 24210, 32103,
32102, 38250, 20567, 38306, 38343, 38258, 38346, 38342, 32152, 32186,
32130, 32185, 32162, 24253, 32145, 38265, 25342, 20969, 38260, 38262,
41412, 24252, 6400, 20965, 19891, 38283, 38338, 38249, 24206, 38284,
38339, 25402, 25379, 4556, 4560, 4548, 4554, 4557, 4562, 4549, 4551,
4559, 4561, 4563, 4558, 4552, 4553, 4579, 4589, 2563, 20966, 24247,
32140, 20967, 24364, 32241, 11454, 38351, 24244, 32137, 39407, 32154,
29186, 29185, 29187, 39687, 24298, 27757, 32181, 29217, 34732, 34733,
34735, 34736, 34734, 39755, 39660, 31953, 4005, 24305, 24260, 4555, 4576,
4571, 4550, 4566, 4565, 4573, 4564, 4569, 4575, 4546, 4570, 4567, 4577,
4547, 4572, 37927, 32148, 4466, 24319, 38257, 25426, 27758, 27759, 37926,
32147, 4465, 24318, 37936, 4452, 4459, 37928, 32759, 32761, 32758, 32757,
32754, 32753, 32756, 32755, 32762, 32760, 229, 41412, 41412, 41412,
41412, 41412, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968,
6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980,
6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992,
6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004,
7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016,
7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028,
7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040,
7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052,
7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064,
7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076,
7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088,
7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100,
7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112,
7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124,
7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136,
7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148,
7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160,
7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172,
7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184,
7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196,
7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208,
7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220,
7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232,
7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244,
7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256,
7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268,
7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280,
7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292,
7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304,
7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316,
7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328,
7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340,
7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352,
7353, 7354, 7355, 7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364,
7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376,
7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388,
7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400,
7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412,
7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424,
7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436,
7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448,
7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460,
7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 6943, 6944,
6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956,
6957, 6958, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938,
6939, 6940, 6941, 6942, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
22732, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 35245, 35174, 35237, 35246, 35162, 35235, 35156, 35155, 35232,
35240, 35157, 35236, 35160, 35177, 35248, 35244, 35169, 35171, 35168,
35167, 35164, 35163, 35166, 35165, 35172, 35170, 35161, 35243, 35230,
35173, 35176, 35238, 35159, 35178, 35179, 35180, 35181, 35182, 35183,
35184, 35185, 35186, 35187, 35188, 35189, 35190, 35191, 35192, 35193,
35194, 35195, 35196, 35197, 35198, 35199, 35200, 35201, 35202, 35203,
35233, 35242, 35241, 35158, 35234, 35175, 35204, 35205, 35206, 35207,
35208, 35209, 35210, 35211, 35212, 35213, 35214, 35215, 35216, 35217,
35218, 35219, 35220, 35221, 35222, 35223, 35224, 35225, 35226, 35227,
35228, 35229, 35231, 35249, 35239, 35247, 6097, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 38793, 38804, 38815, 38827, 38838,
38849, 38860, 38871, 38882, 38890, 38891, 38892, 38893, 38895, 38896,
38897, 38898, 38899, 38900, 38901, 38902, 38903, 38904, 38906, 38907,
38908, 38909, 38910, 38911, 38912, 38913, 38914, 38915, 38917, 38918,
38919, 38920, 38921, 38922, 38923, 38924, 38925, 38926, 38928, 38929,
38930, 38931, 38932, 38933, 38934, 38935, 38936, 38937, 38939, 38940,
38941, 38942, 38943, 38944, 38945, 38946, 38947, 38948, 38950, 38951,
38952, 38953, 38954, 38955, 38956, 38957, 38958, 38959, 38961, 38962,
38963, 38964, 38965, 38966, 38967, 38968, 38969, 38970, 38717, 38718,
38719, 38720, 38721, 38722, 38723, 38724, 38725, 38726, 38728, 38729,
38730, 38731, 38732, 38733, 38734, 38735, 38736, 38737, 38739, 38740,
38741, 38742, 38743, 38744, 38745, 38746, 38747, 38748, 38750, 38751,
38752, 38753, 38754, 38755, 38756, 38757, 38758, 38759, 38761, 38762,
38763, 38764, 38765, 38766, 38767, 38768, 38769, 38770, 38772, 38773,
38774, 38775, 38776, 38777, 38778, 38779, 38780, 38781, 38783, 38784,
38785, 38786, 38787, 38788, 38789, 38790, 38791, 38792, 38794, 38795,
38796, 38797, 38798, 38799, 38800, 38801, 38802, 38803, 38805, 38806,
38807, 38808, 38809, 38810, 38811, 38812, 38813, 38814, 38816, 38817,
38818, 38819, 38820, 38821, 38822, 38823, 38824, 38825, 38828, 38829,
38830, 38831, 38832, 38833, 38834, 38835, 38836, 38837, 38839, 38840,
38841, 38842, 38843, 38844, 38845, 38846, 38847, 38848, 38850, 38851,
38852, 38853, 38854, 38855, 38856, 38857, 38858, 38859, 38861, 38862,
38863, 38864, 38865, 38866, 38867, 38868, 38869, 38870, 38872, 38873,
38874, 38875, 38876, 38877, 38878, 38879, 38880, 38881, 38883, 38884,
38885, 38886, 38887, 38888, 38889, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 30035, 30034, 34722, 34301, 34723, 34754, 16908, 17482, 16906,
16919, 16912, 16911, 3, 2, 349, 3591, 2657, 5360, 6392, 20578, 20608,
35153, 24664, 29357, 16909, 25513, 30109, 16917, 24666, 39304, 39411,
17638, 17788, 6165, 8810, 33016, 25280, 34098, 33017, 25279, 33050,
10675, 11663, 10960, 10676, 10959, 10677, 10958, 10678, 10956, 10679,
29225, 29143, 35058, 35057, 16907, 17481, 6095, 5368, 16905, 16918,
16872, 34785, 34755, 16954, 16953, 20866, 17579, 17786, 20867, 18827,
19133, 20868, 31975, 32554, 20869, 38208, 38414, 34303, 10691, 10688,
31070, 31069, 20445, 20607, 5029, 5359, 29530, 29145, 20793, 20792,
29459, 29464, 34719, 34707, 16904, 16957, 6394, 20580, 20610, 6393,
20579, 20609, 24667, 39305, 39412, 31393, 31392, 31772, 31394, 31395,
31752, 32055, 32062, 32090, 33862, 33863, 34705, 33861, 33864, 34706,
10957, 10680, 31861, 31862, 31910, 31860, 31863, 31911, 32849, 34753,
6096, 10660, 27588, 28969, 34718, 34721, 34304, 16903, 16901, 17520,
34720, 34302, 33856, 35150, 33855, 32744, 8604, 10659, 34744, 34708,
30727, 30949, 31859, 31912, 1056, 1063, 29144, 33049, 23060, 23683,
10658, 2354, 363, 35136, 21392, 22735, 22736, 22778, 22744, 37497, 19533,
19534, 19511, 19532, 17782, 17783, 17784, 28967, 17785, 34810, 41410,
41409, 41411, 25509, 32357, 25507, 32355, 31468, 25510, 32358, 30108,
28968, 39836, 25508, 32356, 17787, 31469, 39603, 27750, 27751, 24416,
32313, 40346, 28755, 38972, 39083, 39151, 39162, 39173, 39184, 39195,
39206, 39217, 38973, 38984, 38995, 39006, 39017, 39028, 39039, 31828,
5358, 4651, 41408, 9774, 9773, 9469, 2872, 2982, 2973, 3080, 3281, 27045,
27043, 27103, 27101, 20358, 5195, 27423, 27426, 39050, 39061, 39072,
39084, 39095, 39106, 39117, 39128, 39139, 39147, 39148, 39149, 39150,
39152, 39153, 39154, 39155, 39156, 39157, 39158, 39159, 39160, 39161,
39163, 39164, 39165, 39166, 39167, 39168, 39169, 39170, 39171, 39172,
39174, 39175, 39176, 39177, 39178, 39179, 39180, 39181, 39182, 39183,
39185, 39186, 39187, 39188, 39189, 39190, 39191, 39192, 39193, 39194,
39196, 39197, 39198, 39199, 39200, 39201, 39202, 39203, 39204, 39205,
39207, 39208, 39209, 39210, 39211, 39212, 39213, 39214, 39215, 39216,
39218, 39219, 39220, 39221, 39222, 39223, 39224, 39225, 39226, 39227,
38974, 38975, 38976, 38977, 38978, 38979, 38980, 38981, 38982, 38983,
38985, 38986, 38987, 38988, 38989, 38990, 38991, 38992, 38993, 38994,
38996, 38997, 38998, 38999, 39000, 39001, 39002, 39003, 39004, 39005,
39007, 39008, 39009, 39010, 39011, 39012, 39013, 39014, 39015, 39016,
39018, 39019, 39020, 39021, 39022, 39023, 39024, 39025, 39026, 39027,
39029, 39030, 39031, 39032, 39033, 39034, 39035, 39036, 39037, 39038,
39040, 39041, 39042, 39043, 39044, 39045, 39046, 39047, 39048, 39049,
39051, 39052, 39053, 39054, 39055, 39056, 39057, 39058, 39059, 39060,
39062, 39063, 39064, 39065, 39066, 39067, 39068, 39069, 39070, 39071,
39073, 39074, 39075, 39076, 39077, 39078, 39079, 39080, 39081, 39082,
39085, 39086, 39087, 39088, 39089, 39090, 39091, 39092, 39093, 39094,
39096, 39097, 39098, 39099, 39100, 39101, 39102, 39103, 39104, 39105,
39107, 39108, 39109, 39110, 39111, 39112, 39113, 39114, 39115, 39116,
39118, 39119, 39120, 39121, 39122, 39123, 39124, 39125, 39126, 39127,
39129, 39130, 39131, 39132, 39133, 39134, 39135, 39136, 39137, 39138,
39140, 39141, 39142, 39143, 39144, 39145, 39146, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 21777, 21778,
21785, 21787, 21784, 21783, 21780, 21779, 21782, 21781, 21788, 21786,
22923, 23489, 23084, 23714, 23324, 24088, 23019, 23624, 23020, 23625,
23021, 23626, 23195, 23865, 23196, 23866, 23197, 23867, 23263, 23964,
23003, 23607, 22999, 23603, 23709, 23833, 22933, 23499, 22934, 23500,
23024, 23630, 23025, 23631, 23009, 23613, 23010, 23614, 23708, 23710,
23089, 23716, 23090, 23717, 23107, 23744, 23137, 23784, 23145, 23806,
23235, 23924, 23328, 24092, 23329, 24093, 23325, 24089, 23326, 24090,
23508, 23882, 23883, 24043, 24044, 23973, 23974, 23698, 23699, 2324,
2327, 2325, 2329, 2331, 2328, 2330, 2326, 2332, 10889, 10884, 10883,
10890, 10885, 10886, 10888, 10887, 3664, 3663, 3665, 19041, 19040, 19039,
19038, 19043, 19042, 30801, 30800, 3609, 35654, 35662, 35671, 35663,
35665, 35660, 35664, 35659, 35675, 35674, 35677, 35669, 35656, 35676,
35658, 35657, 35670, 35661, 35673, 35667, 35668, 35666, 35672, 35655,
35793, 35800, 35801, 35796, 35797, 35802, 35803, 35794, 35798, 35799,
35795, 35859, 35866, 35867, 35862, 35863, 35868, 35869, 35860, 35864,
35865, 35861, 35970, 35977, 35978, 35973, 35974, 35979, 35980, 35971,
35975, 35976, 35972, 35870, 35877, 35878, 35873, 35874, 35879, 35880,
35871, 35875, 35876, 35872, 35948, 35955, 35956, 35951, 35952, 35957,
35958, 35949, 35953, 35954, 35950, 35848, 35855, 35856, 35851, 35852,
35857, 35858, 35849, 35853, 35854, 35850, 35959, 35966, 35967, 35962,
35963, 35968, 35969, 35960, 35964, 35965, 35961, 35881, 35888, 35889,
35884, 35885, 35890, 35891, 35882, 35886, 35887, 35883, 36014, 36021,
36022, 36017, 36018, 36023, 36024, 36015, 36019, 36020, 36016, 36003,
36010, 36011, 36006, 36007, 36012, 36013, 36004, 36008, 36009, 36005,
36036, 36043, 36044, 36039, 36040, 36045, 36046, 36037, 36041, 36042,
36038, 35903, 35910, 35911, 35906, 35907, 35912, 35913, 35904, 35908,
35909, 35905, 35826, 35833, 35834, 35829, 35830, 35835, 35836, 35827,
35831, 35832, 35828, 36025, 36032, 36033, 36028, 36029, 36034, 36035,
36026, 36030, 36031, 36027, 35804, 35811, 35812, 35807, 35808, 35813,
35814, 35805, 35809, 35810, 35806, 35815, 35822, 35823, 35818, 35819,
35824, 35825, 35816, 35820, 35821, 35817, 35892, 35899, 35900, 35895,
35896, 35901, 35902, 35893, 35897, 35898, 35894, 35837, 35844, 35845,
35840, 35841, 35846, 35847, 35838, 35842, 35843, 35839, 35992, 35999,
36000, 35995, 35996, 36001, 36002, 35993, 35997, 35998, 35994, 35914,
35922, 35923, 35917, 35918, 35924, 35925, 35915, 35919, 35920, 35916,
35926, 35933, 35934, 35929, 35930, 35935, 35936, 35927, 35931, 35932,
35928, 35937, 35944, 35945, 35940, 35941, 35946, 35947, 35938, 35942,
35943, 35939, 35981, 35988, 35989, 35984, 35985, 35990, 35991, 35982,
35986, 35987, 35983, 35781, 35782, 35789, 35790, 35785, 35786, 35791,
35792, 35783, 35787, 35788, 35784, 35921, 33887, 33885, 33886, 17964,
22342, 22340, 22343, 22341, 22332, 22338, 22336, 22339, 22337, 22333,
22353, 22349, 22354, 22350, 22334, 22351, 22347, 22352, 22348, 22335,
22364, 22344, 22346, 22345, 22360, 22363, 22361, 22356, 22362, 22357,
22358, 22359, 22365, 22355, 22504, 22381, 22382, 22383, 22380, 22499,
22491, 20475, 20477, 20479, 20476, 20478, 21482, 21484, 21486, 21483,
21485, 21475, 21474, 21473, 21476, 27960, 27965, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
41412, 41412, 41412, 41412, 41412, 41412, 41412, 41412,
};
static const unsigned int aliases_start = 0xf0000;
static const unsigned int aliases_end = 0xf01e1;
static const unsigned int name_aliases[] = {
0x0000,
0x0000,
0x0001,
0x0001,
0x0002,
0x0002,
0x0003,
0x0003,
0x0004,
0x0004,
0x0005,
0x0005,
0x0006,
0x0006,
0x0007,
0x0007,
0x0008,
0x0008,
0x0009,
0x0009,
0x0009,
0x0009,
0x000A,
0x000A,
0x000A,
0x000A,
0x000A,
0x000A,
0x000B,
0x000B,
0x000B,
0x000C,
0x000C,
0x000D,
0x000D,
0x000E,
0x000E,
0x000E,
0x000F,
0x000F,
0x000F,
0x0010,
0x0010,
0x0011,
0x0011,
0x0012,
0x0012,
0x0013,
0x0013,
0x0014,
0x0014,
0x0015,
0x0015,
0x0016,
0x0016,
0x0017,
0x0017,
0x0018,
0x0018,
0x0019,
0x0019,
0x0019,
0x001A,
0x001A,
0x001B,
0x001B,
0x001C,
0x001C,
0x001C,
0x001D,
0x001D,
0x001D,
0x001E,
0x001E,
0x001E,
0x001F,
0x001F,
0x001F,
0x0020,
0x007F,
0x007F,
0x0080,
0x0080,
0x0081,
0x0081,
0x0082,
0x0082,
0x0083,
0x0083,
0x0084,
0x0084,
0x0085,
0x0085,
0x0086,
0x0086,
0x0087,
0x0087,
0x0088,
0x0088,
0x0088,
0x0089,
0x0089,
0x0089,
0x008A,
0x008A,
0x008A,
0x008B,
0x008B,
0x008B,
0x008C,
0x008C,
0x008C,
0x008D,
0x008D,
0x008D,
0x008E,
0x008E,
0x008E,
0x008F,
0x008F,
0x008F,
0x0090,
0x0090,
0x0091,
0x0091,
0x0091,
0x0092,
0x0092,
0x0092,
0x0093,
0x0093,
0x0094,
0x0094,
0x0095,
0x0095,
0x0096,
0x0096,
0x0096,
0x0097,
0x0097,
0x0097,
0x0098,
0x0098,
0x0099,
0x0099,
0x009A,
0x009A,
0x009B,
0x009B,
0x009C,
0x009C,
0x009D,
0x009D,
0x009E,
0x009E,
0x009F,
0x009F,
0x00A0,
0x00AD,
0x01A2,
0x01A3,
0x034F,
0x0616,
0x061C,
0x0709,
0x0CDE,
0x0E9D,
0x0E9F,
0x0EA3,
0x0EA5,
0x0FD0,
0x11EC,
0x11ED,
0x11EE,
0x11EF,
0x180B,
0x180C,
0x180D,
0x180E,
0x180F,
0x1BBD,
0x200B,
0x200C,
0x200D,
0x200E,
0x200F,
0x202A,
0x202B,
0x202C,
0x202D,
0x202E,
0x202F,
0x205F,
0x2060,
0x2066,
0x2067,
0x2068,
0x2069,
0x2118,
0x2448,
0x2449,
0x2B7A,
0x2B7C,
0xA015,
0xAA6E,
0xFE00,
0xFE01,
0xFE02,
0xFE03,
0xFE04,
0xFE05,
0xFE06,
0xFE07,
0xFE08,
0xFE09,
0xFE0A,
0xFE0B,
0xFE0C,
0xFE0D,
0xFE0E,
0xFE0F,
0xFE18,
0xFEFF,
0xFEFF,
0xFEFF,
0x122D4,
0x122D5,
0x12327,
0x1680B,
0x16881,
0x1688E,
0x168DC,
0x1697D,
0x16E56,
0x16E57,
0x16E76,
0x16E77,
0x1B001,
0x1D0C5,
0x1E899,
0x1E89A,
0xE0100,
0xE0101,
0xE0102,
0xE0103,
0xE0104,
0xE0105,
0xE0106,
0xE0107,
0xE0108,
0xE0109,
0xE010A,
0xE010B,
0xE010C,
0xE010D,
0xE010E,
0xE010F,
0xE0110,
0xE0111,
0xE0112,
0xE0113,
0xE0114,
0xE0115,
0xE0116,
0xE0117,
0xE0118,
0xE0119,
0xE011A,
0xE011B,
0xE011C,
0xE011D,
0xE011E,
0xE011F,
0xE0120,
0xE0121,
0xE0122,
0xE0123,
0xE0124,
0xE0125,
0xE0126,
0xE0127,
0xE0128,
0xE0129,
0xE012A,
0xE012B,
0xE012C,
0xE012D,
0xE012E,
0xE012F,
0xE0130,
0xE0131,
0xE0132,
0xE0133,
0xE0134,
0xE0135,
0xE0136,
0xE0137,
0xE0138,
0xE0139,
0xE013A,
0xE013B,
0xE013C,
0xE013D,
0xE013E,
0xE013F,
0xE0140,
0xE0141,
0xE0142,
0xE0143,
0xE0144,
0xE0145,
0xE0146,
0xE0147,
0xE0148,
0xE0149,
0xE014A,
0xE014B,
0xE014C,
0xE014D,
0xE014E,
0xE014F,
0xE0150,
0xE0151,
0xE0152,
0xE0153,
0xE0154,
0xE0155,
0xE0156,
0xE0157,
0xE0158,
0xE0159,
0xE015A,
0xE015B,
0xE015C,
0xE015D,
0xE015E,
0xE015F,
0xE0160,
0xE0161,
0xE0162,
0xE0163,
0xE0164,
0xE0165,
0xE0166,
0xE0167,
0xE0168,
0xE0169,
0xE016A,
0xE016B,
0xE016C,
0xE016D,
0xE016E,
0xE016F,
0xE0170,
0xE0171,
0xE0172,
0xE0173,
0xE0174,
0xE0175,
0xE0176,
0xE0177,
0xE0178,
0xE0179,
0xE017A,
0xE017B,
0xE017C,
0xE017D,
0xE017E,
0xE017F,
0xE0180,
0xE0181,
0xE0182,
0xE0183,
0xE0184,
0xE0185,
0xE0186,
0xE0187,
0xE0188,
0xE0189,
0xE018A,
0xE018B,
0xE018C,
0xE018D,
0xE018E,
0xE018F,
0xE0190,
0xE0191,
0xE0192,
0xE0193,
0xE0194,
0xE0195,
0xE0196,
0xE0197,
0xE0198,
0xE0199,
0xE019A,
0xE019B,
0xE019C,
0xE019D,
0xE019E,
0xE019F,
0xE01A0,
0xE01A1,
0xE01A2,
0xE01A3,
0xE01A4,
0xE01A5,
0xE01A6,
0xE01A7,
0xE01A8,
0xE01A9,
0xE01AA,
0xE01AB,
0xE01AC,
0xE01AD,
0xE01AE,
0xE01AF,
0xE01B0,
0xE01B1,
0xE01B2,
0xE01B3,
0xE01B4,
0xE01B5,
0xE01B6,
0xE01B7,
0xE01B8,
0xE01B9,
0xE01BA,
0xE01BB,
0xE01BC,
0xE01BD,
0xE01BE,
0xE01BF,
0xE01C0,
0xE01C1,
0xE01C2,
0xE01C3,
0xE01C4,
0xE01C5,
0xE01C6,
0xE01C7,
0xE01C8,
0xE01C9,
0xE01CA,
0xE01CB,
0xE01CC,
0xE01CD,
0xE01CE,
0xE01CF,
0xE01D0,
0xE01D1,
0xE01D2,
0xE01D3,
0xE01D4,
0xE01D5,
0xE01D6,
0xE01D7,
0xE01D8,
0xE01D9,
0xE01DA,
0xE01DB,
0xE01DC,
0xE01DD,
0xE01DE,
0xE01DF,
0xE01E0,
0xE01E1,
0xE01E2,
0xE01E3,
0xE01E4,
0xE01E5,
0xE01E6,
0xE01E7,
0xE01E8,
0xE01E9,
0xE01EA,
0xE01EB,
0xE01EC,
0xE01ED,
0xE01EE,
0xE01EF,
};
typedef struct NamedSequence {
int seqlen;
Py_UCS2 seq[4];
} named_sequence;
static const unsigned int named_sequences_start = 0xf0200;
static const unsigned int named_sequences_end = 0xf03cd;
static const named_sequence named_sequences[] = {
{3, {0x0023, 0xFE0F, 0x20E3}},
{3, {0x002A, 0xFE0F, 0x20E3}},
{3, {0x0030, 0xFE0F, 0x20E3}},
{3, {0x0031, 0xFE0F, 0x20E3}},
{3, {0x0032, 0xFE0F, 0x20E3}},
{3, {0x0033, 0xFE0F, 0x20E3}},
{3, {0x0034, 0xFE0F, 0x20E3}},
{3, {0x0035, 0xFE0F, 0x20E3}},
{3, {0x0036, 0xFE0F, 0x20E3}},
{3, {0x0037, 0xFE0F, 0x20E3}},
{3, {0x0038, 0xFE0F, 0x20E3}},
{3, {0x0039, 0xFE0F, 0x20E3}},
{2, {0x0100, 0x0300}},
{2, {0x0101, 0x0300}},
{2, {0x012A, 0x0300}},
{2, {0x012B, 0x0300}},
{2, {0x016A, 0x0300}},
{2, {0x016B, 0x0300}},
{2, {0x0045, 0x0329}},
{2, {0x0065, 0x0329}},
{2, {0x00C8, 0x0329}},
{2, {0x00E8, 0x0329}},
{2, {0x00C9, 0x0329}},
{2, {0x00E9, 0x0329}},
{2, {0x004F, 0x0329}},
{2, {0x006F, 0x0329}},
{2, {0x00D2, 0x0329}},
{2, {0x00F2, 0x0329}},
{2, {0x00D3, 0x0329}},
{2, {0x00F3, 0x0329}},
{2, {0x0053, 0x0329}},
{2, {0x0073, 0x0329}},
{2, {0x00CA, 0x0304}},
{2, {0x00EA, 0x0304}},
{2, {0x00CA, 0x030C}},
{2, {0x00EA, 0x030C}},
{3, {0x0069, 0x0307, 0x0301}},
{3, {0x006E, 0x0360, 0x0067}},
{2, {0x0104, 0x0301}},
{2, {0x0105, 0x0301}},
{2, {0x0104, 0x0303}},
{2, {0x0105, 0x0303}},
{2, {0x0118, 0x0301}},
{2, {0x0119, 0x0301}},
{2, {0x0118, 0x0303}},
{2, {0x0119, 0x0303}},
{2, {0x0116, 0x0301}},
{2, {0x0117, 0x0301}},
{2, {0x0116, 0x0303}},
{2, {0x0117, 0x0303}},
{3, {0x0069, 0x0307, 0x0300}},
{3, {0x0069, 0x0307, 0x0303}},
{2, {0x012E, 0x0301}},
{3, {0x012F, 0x0307, 0x0301}},
{2, {0x012E, 0x0303}},
{3, {0x012F, 0x0307, 0x0303}},
{2, {0x004A, 0x0303}},
{3, {0x006A, 0x0307, 0x0303}},
{2, {0x004C, 0x0303}},
{2, {0x006C, 0x0303}},
{2, {0x004D, 0x0303}},
{2, {0x006D, 0x0303}},
{2, {0x0052, 0x0303}},
{2, {0x0072, 0x0303}},
{2, {0x0172, 0x0301}},
{2, {0x0173, 0x0301}},
{2, {0x0172, 0x0303}},
{2, {0x0173, 0x0303}},
{2, {0x016A, 0x0301}},
{2, {0x016B, 0x0301}},
{2, {0x016A, 0x0303}},
{2, {0x016B, 0x0303}},
{2, {0x00E6, 0x0300}},
{2, {0x0254, 0x0300}},
{2, {0x0254, 0x0301}},
{2, {0x028C, 0x0300}},
{2, {0x028C, 0x0301}},
{2, {0x0259, 0x0300}},
{2, {0x0259, 0x0301}},
{2, {0x025A, 0x0300}},
{2, {0x025A, 0x0301}},
{2, {0x0626, 0x0627}},
{2, {0x0626, 0x0648}},
{2, {0x0626, 0x0649}},
{2, {0x0626, 0x06C6}},
{2, {0x0626, 0x06C7}},
{2, {0x0626, 0x06C8}},
{2, {0x0626, 0x06D0}},
{2, {0x0626, 0x06D5}},
{2, {0x0646, 0x06A9}},
{2, {0x0915, 0x093C}},
{2, {0x0916, 0x093C}},
{2, {0x0917, 0x093C}},
{2, {0x091C, 0x093C}},
{2, {0x0921, 0x093C}},
{2, {0x0922, 0x093C}},
{2, {0x092B, 0x093C}},
{2, {0x092F, 0x093C}},
{2, {0x09A1, 0x09BC}},
{2, {0x09A2, 0x09BC}},
{2, {0x09AF, 0x09BC}},
{2, {0x0A32, 0x0A3C}},
{2, {0x0A38, 0x0A3C}},
{2, {0x0A16, 0x0A3C}},
{2, {0x0A17, 0x0A3C}},
{2, {0x0A1C, 0x0A3C}},
{2, {0x0A2B, 0x0A3C}},
{2, {0x0B21, 0x0B3C}},
{2, {0x0B22, 0x0B3C}},
{3, {0x0995, 0x09CD, 0x09B7}},
{2, {0x0B95, 0x0BCD}},
{2, {0x0B99, 0x0BCD}},
{2, {0x0B9A, 0x0BCD}},
{2, {0x0B9E, 0x0BCD}},
{2, {0x0B9F, 0x0BCD}},
{2, {0x0BA3, 0x0BCD}},
{2, {0x0BA4, 0x0BCD}},
{2, {0x0BA8, 0x0BCD}},
{2, {0x0BAA, 0x0BCD}},
{2, {0x0BAE, 0x0BCD}},
{2, {0x0BAF, 0x0BCD}},
{2, {0x0BB0, 0x0BCD}},
{2, {0x0BB2, 0x0BCD}},
{2, {0x0BB5, 0x0BCD}},
{2, {0x0BB4, 0x0BCD}},
{2, {0x0BB3, 0x0BCD}},
{2, {0x0BB1, 0x0BCD}},
{2, {0x0BA9, 0x0BCD}},
{2, {0x0B9C, 0x0BCD}},
{2, {0x0BB6, 0x0BCD}},
{2, {0x0BB7, 0x0BCD}},
{2, {0x0BB8, 0x0BCD}},
{2, {0x0BB9, 0x0BCD}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCD}},
{2, {0x0B95, 0x0BBE}},
{2, {0x0B95, 0x0BBF}},
{2, {0x0B95, 0x0BC0}},
{2, {0x0B95, 0x0BC1}},
{2, {0x0B95, 0x0BC2}},
{2, {0x0B95, 0x0BC6}},
{2, {0x0B95, 0x0BC7}},
{2, {0x0B95, 0x0BC8}},
{2, {0x0B95, 0x0BCA}},
{2, {0x0B95, 0x0BCB}},
{2, {0x0B95, 0x0BCC}},
{2, {0x0B99, 0x0BBE}},
{2, {0x0B99, 0x0BBF}},
{2, {0x0B99, 0x0BC0}},
{2, {0x0B99, 0x0BC1}},
{2, {0x0B99, 0x0BC2}},
{2, {0x0B99, 0x0BC6}},
{2, {0x0B99, 0x0BC7}},
{2, {0x0B99, 0x0BC8}},
{2, {0x0B99, 0x0BCA}},
{2, {0x0B99, 0x0BCB}},
{2, {0x0B99, 0x0BCC}},
{2, {0x0B9A, 0x0BBE}},
{2, {0x0B9A, 0x0BBF}},
{2, {0x0B9A, 0x0BC0}},
{2, {0x0B9A, 0x0BC1}},
{2, {0x0B9A, 0x0BC2}},
{2, {0x0B9A, 0x0BC6}},
{2, {0x0B9A, 0x0BC7}},
{2, {0x0B9A, 0x0BC8}},
{2, {0x0B9A, 0x0BCA}},
{2, {0x0B9A, 0x0BCB}},
{2, {0x0B9A, 0x0BCC}},
{2, {0x0B9E, 0x0BBE}},
{2, {0x0B9E, 0x0BBF}},
{2, {0x0B9E, 0x0BC0}},
{2, {0x0B9E, 0x0BC1}},
{2, {0x0B9E, 0x0BC2}},
{2, {0x0B9E, 0x0BC6}},
{2, {0x0B9E, 0x0BC7}},
{2, {0x0B9E, 0x0BC8}},
{2, {0x0B9E, 0x0BCA}},
{2, {0x0B9E, 0x0BCB}},
{2, {0x0B9E, 0x0BCC}},
{2, {0x0B9F, 0x0BBE}},
{2, {0x0B9F, 0x0BBF}},
{2, {0x0B9F, 0x0BC0}},
{2, {0x0B9F, 0x0BC1}},
{2, {0x0B9F, 0x0BC2}},
{2, {0x0B9F, 0x0BC6}},
{2, {0x0B9F, 0x0BC7}},
{2, {0x0B9F, 0x0BC8}},
{2, {0x0B9F, 0x0BCA}},
{2, {0x0B9F, 0x0BCB}},
{2, {0x0B9F, 0x0BCC}},
{2, {0x0BA3, 0x0BBE}},
{2, {0x0BA3, 0x0BBF}},
{2, {0x0BA3, 0x0BC0}},
{2, {0x0BA3, 0x0BC1}},
{2, {0x0BA3, 0x0BC2}},
{2, {0x0BA3, 0x0BC6}},
{2, {0x0BA3, 0x0BC7}},
{2, {0x0BA3, 0x0BC8}},
{2, {0x0BA3, 0x0BCA}},
{2, {0x0BA3, 0x0BCB}},
{2, {0x0BA3, 0x0BCC}},
{2, {0x0BA4, 0x0BBE}},
{2, {0x0BA4, 0x0BBF}},
{2, {0x0BA4, 0x0BC0}},
{2, {0x0BA4, 0x0BC1}},
{2, {0x0BA4, 0x0BC2}},
{2, {0x0BA4, 0x0BC6}},
{2, {0x0BA4, 0x0BC7}},
{2, {0x0BA4, 0x0BC8}},
{2, {0x0BA4, 0x0BCA}},
{2, {0x0BA4, 0x0BCB}},
{2, {0x0BA4, 0x0BCC}},
{2, {0x0BA8, 0x0BBE}},
{2, {0x0BA8, 0x0BBF}},
{2, {0x0BA8, 0x0BC0}},
{2, {0x0BA8, 0x0BC1}},
{2, {0x0BA8, 0x0BC2}},
{2, {0x0BA8, 0x0BC6}},
{2, {0x0BA8, 0x0BC7}},
{2, {0x0BA8, 0x0BC8}},
{2, {0x0BA8, 0x0BCA}},
{2, {0x0BA8, 0x0BCB}},
{2, {0x0BA8, 0x0BCC}},
{2, {0x0BAA, 0x0BBE}},
{2, {0x0BAA, 0x0BBF}},
{2, {0x0BAA, 0x0BC0}},
{2, {0x0BAA, 0x0BC1}},
{2, {0x0BAA, 0x0BC2}},
{2, {0x0BAA, 0x0BC6}},
{2, {0x0BAA, 0x0BC7}},
{2, {0x0BAA, 0x0BC8}},
{2, {0x0BAA, 0x0BCA}},
{2, {0x0BAA, 0x0BCB}},
{2, {0x0BAA, 0x0BCC}},
{2, {0x0BAE, 0x0BBE}},
{2, {0x0BAE, 0x0BBF}},
{2, {0x0BAE, 0x0BC0}},
{2, {0x0BAE, 0x0BC1}},
{2, {0x0BAE, 0x0BC2}},
{2, {0x0BAE, 0x0BC6}},
{2, {0x0BAE, 0x0BC7}},
{2, {0x0BAE, 0x0BC8}},
{2, {0x0BAE, 0x0BCA}},
{2, {0x0BAE, 0x0BCB}},
{2, {0x0BAE, 0x0BCC}},
{2, {0x0BAF, 0x0BBE}},
{2, {0x0BAF, 0x0BBF}},
{2, {0x0BAF, 0x0BC0}},
{2, {0x0BAF, 0x0BC1}},
{2, {0x0BAF, 0x0BC2}},
{2, {0x0BAF, 0x0BC6}},
{2, {0x0BAF, 0x0BC7}},
{2, {0x0BAF, 0x0BC8}},
{2, {0x0BAF, 0x0BCA}},
{2, {0x0BAF, 0x0BCB}},
{2, {0x0BAF, 0x0BCC}},
{2, {0x0BB0, 0x0BBE}},
{2, {0x0BB0, 0x0BBF}},
{2, {0x0BB0, 0x0BC0}},
{2, {0x0BB0, 0x0BC1}},
{2, {0x0BB0, 0x0BC2}},
{2, {0x0BB0, 0x0BC6}},
{2, {0x0BB0, 0x0BC7}},
{2, {0x0BB0, 0x0BC8}},
{2, {0x0BB0, 0x0BCA}},
{2, {0x0BB0, 0x0BCB}},
{2, {0x0BB0, 0x0BCC}},
{2, {0x0BB2, 0x0BBE}},
{2, {0x0BB2, 0x0BBF}},
{2, {0x0BB2, 0x0BC0}},
{2, {0x0BB2, 0x0BC1}},
{2, {0x0BB2, 0x0BC2}},
{2, {0x0BB2, 0x0BC6}},
{2, {0x0BB2, 0x0BC7}},
{2, {0x0BB2, 0x0BC8}},
{2, {0x0BB2, 0x0BCA}},
{2, {0x0BB2, 0x0BCB}},
{2, {0x0BB2, 0x0BCC}},
{2, {0x0BB5, 0x0BBE}},
{2, {0x0BB5, 0x0BBF}},
{2, {0x0BB5, 0x0BC0}},
{2, {0x0BB5, 0x0BC1}},
{2, {0x0BB5, 0x0BC2}},
{2, {0x0BB5, 0x0BC6}},
{2, {0x0BB5, 0x0BC7}},
{2, {0x0BB5, 0x0BC8}},
{2, {0x0BB5, 0x0BCA}},
{2, {0x0BB5, 0x0BCB}},
{2, {0x0BB5, 0x0BCC}},
{2, {0x0BB4, 0x0BBE}},
{2, {0x0BB4, 0x0BBF}},
{2, {0x0BB4, 0x0BC0}},
{2, {0x0BB4, 0x0BC1}},
{2, {0x0BB4, 0x0BC2}},
{2, {0x0BB4, 0x0BC6}},
{2, {0x0BB4, 0x0BC7}},
{2, {0x0BB4, 0x0BC8}},
{2, {0x0BB4, 0x0BCA}},
{2, {0x0BB4, 0x0BCB}},
{2, {0x0BB4, 0x0BCC}},
{2, {0x0BB3, 0x0BBE}},
{2, {0x0BB3, 0x0BBF}},
{2, {0x0BB3, 0x0BC0}},
{2, {0x0BB3, 0x0BC1}},
{2, {0x0BB3, 0x0BC2}},
{2, {0x0BB3, 0x0BC6}},
{2, {0x0BB3, 0x0BC7}},
{2, {0x0BB3, 0x0BC8}},
{2, {0x0BB3, 0x0BCA}},
{2, {0x0BB3, 0x0BCB}},
{2, {0x0BB3, 0x0BCC}},
{2, {0x0BB1, 0x0BBE}},
{2, {0x0BB1, 0x0BBF}},
{2, {0x0BB1, 0x0BC0}},
{2, {0x0BB1, 0x0BC1}},
{2, {0x0BB1, 0x0BC2}},
{2, {0x0BB1, 0x0BC6}},
{2, {0x0BB1, 0x0BC7}},
{2, {0x0BB1, 0x0BC8}},
{2, {0x0BB1, 0x0BCA}},
{2, {0x0BB1, 0x0BCB}},
{2, {0x0BB1, 0x0BCC}},
{2, {0x0BA9, 0x0BBE}},
{2, {0x0BA9, 0x0BBF}},
{2, {0x0BA9, 0x0BC0}},
{2, {0x0BA9, 0x0BC1}},
{2, {0x0BA9, 0x0BC2}},
{2, {0x0BA9, 0x0BC6}},
{2, {0x0BA9, 0x0BC7}},
{2, {0x0BA9, 0x0BC8}},
{2, {0x0BA9, 0x0BCA}},
{2, {0x0BA9, 0x0BCB}},
{2, {0x0BA9, 0x0BCC}},
{2, {0x0B9C, 0x0BBE}},
{2, {0x0B9C, 0x0BBF}},
{2, {0x0B9C, 0x0BC0}},
{2, {0x0B9C, 0x0BC1}},
{2, {0x0B9C, 0x0BC2}},
{2, {0x0B9C, 0x0BC6}},
{2, {0x0B9C, 0x0BC7}},
{2, {0x0B9C, 0x0BC8}},
{2, {0x0B9C, 0x0BCA}},
{2, {0x0B9C, 0x0BCB}},
{2, {0x0B9C, 0x0BCC}},
{2, {0x0BB6, 0x0BBE}},
{2, {0x0BB6, 0x0BBF}},
{2, {0x0BB6, 0x0BC0}},
{2, {0x0BB6, 0x0BC1}},
{2, {0x0BB6, 0x0BC2}},
{2, {0x0BB6, 0x0BC6}},
{2, {0x0BB6, 0x0BC7}},
{2, {0x0BB6, 0x0BC8}},
{2, {0x0BB6, 0x0BCA}},
{2, {0x0BB6, 0x0BCB}},
{2, {0x0BB6, 0x0BCC}},
{2, {0x0BB7, 0x0BBE}},
{2, {0x0BB7, 0x0BBF}},
{2, {0x0BB7, 0x0BC0}},
{2, {0x0BB7, 0x0BC1}},
{2, {0x0BB7, 0x0BC2}},
{2, {0x0BB7, 0x0BC6}},
{2, {0x0BB7, 0x0BC7}},
{2, {0x0BB7, 0x0BC8}},
{2, {0x0BB7, 0x0BCA}},
{2, {0x0BB7, 0x0BCB}},
{2, {0x0BB7, 0x0BCC}},
{2, {0x0BB8, 0x0BBE}},
{2, {0x0BB8, 0x0BBF}},
{2, {0x0BB8, 0x0BC0}},
{2, {0x0BB8, 0x0BC1}},
{2, {0x0BB8, 0x0BC2}},
{2, {0x0BB8, 0x0BC6}},
{2, {0x0BB8, 0x0BC7}},
{2, {0x0BB8, 0x0BC8}},
{2, {0x0BB8, 0x0BCA}},
{2, {0x0BB8, 0x0BCB}},
{2, {0x0BB8, 0x0BCC}},
{2, {0x0BB9, 0x0BBE}},
{2, {0x0BB9, 0x0BBF}},
{2, {0x0BB9, 0x0BC0}},
{2, {0x0BB9, 0x0BC1}},
{2, {0x0BB9, 0x0BC2}},
{2, {0x0BB9, 0x0BC6}},
{2, {0x0BB9, 0x0BC7}},
{2, {0x0BB9, 0x0BC8}},
{2, {0x0BB9, 0x0BCA}},
{2, {0x0BB9, 0x0BCB}},
{2, {0x0BB9, 0x0BCC}},
{3, {0x0B95, 0x0BCD, 0x0BB7}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BBE}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BBF}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC0}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC1}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC2}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC6}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC7}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC8}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCA}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCB}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCC}},
{4, {0x0BB6, 0x0BCD, 0x0BB0, 0x0BC0}},
{3, {0x0DCA, 0x200D, 0x0DBA}},
{3, {0x0DCA, 0x200D, 0x0DBB}},
{3, {0x0DBB, 0x0DCA, 0x200D}},
{2, {0x10E3, 0x0302}},
{2, {0x17D2, 0x1780}},
{2, {0x17D2, 0x1781}},
{2, {0x17D2, 0x1782}},
{2, {0x17D2, 0x1783}},
{2, {0x17D2, 0x1784}},
{2, {0x17D2, 0x1785}},
{2, {0x17D2, 0x1786}},
{2, {0x17D2, 0x1787}},
{2, {0x17D2, 0x1788}},
{2, {0x17D2, 0x1789}},
{2, {0x17D2, 0x178A}},
{2, {0x17D2, 0x178B}},
{2, {0x17D2, 0x178C}},
{2, {0x17D2, 0x178D}},
{2, {0x17D2, 0x178E}},
{2, {0x17D2, 0x178F}},
{2, {0x17D2, 0x1790}},
{2, {0x17D2, 0x1791}},
{2, {0x17D2, 0x1792}},
{2, {0x17D2, 0x1793}},
{2, {0x17D2, 0x1794}},
{2, {0x17D2, 0x1795}},
{2, {0x17D2, 0x1796}},
{2, {0x17D2, 0x1797}},
{2, {0x17D2, 0x1798}},
{2, {0x17D2, 0x1799}},
{2, {0x17D2, 0x179A}},
{2, {0x17D2, 0x179B}},
{2, {0x17D2, 0x179C}},
{2, {0x17D2, 0x179D}},
{2, {0x17D2, 0x179E}},
{2, {0x17D2, 0x179F}},
{2, {0x17D2, 0x17A0}},
{2, {0x17D2, 0x17A1}},
{2, {0x17D2, 0x17A2}},
{2, {0x17D2, 0x17A7}},
{2, {0x17D2, 0x17AB}},
{2, {0x17D2, 0x17AC}},
{2, {0x17D2, 0x17AF}},
{2, {0x17BB, 0x17C6}},
{2, {0x17B6, 0x17C6}},
{2, {0x304B, 0x309A}},
{2, {0x304D, 0x309A}},
{2, {0x304F, 0x309A}},
{2, {0x3051, 0x309A}},
{2, {0x3053, 0x309A}},
{2, {0x30AB, 0x309A}},
{2, {0x30AD, 0x309A}},
{2, {0x30AF, 0x309A}},
{2, {0x30B1, 0x309A}},
{2, {0x30B3, 0x309A}},
{2, {0x30BB, 0x309A}},
{2, {0x30C4, 0x309A}},
{2, {0x30C8, 0x309A}},
{2, {0x31F7, 0x309A}},
{2, {0x02E5, 0x02E9}},
{2, {0x02E9, 0x02E5}},
}; | c | github | https://github.com/python/cpython | Modules/unicodename_db.h |
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import (
ExtractorError,
parse_iso8601,
)
class DRTVIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?dr\.dk/tv/se/(?:[^/]+/)*(?P<id>[\da-z-]+)(?:[/#?]|$)'
_TEST = {
'url': 'https://www.dr.dk/tv/se/boern/ultra/panisk-paske/panisk-paske-5',
'md5': 'dc515a9ab50577fa14cc4e4b0265168f',
'info_dict': {
'id': 'panisk-paske-5',
'ext': 'mp4',
'title': 'Panisk Påske (5)',
'description': 'md5:ca14173c5ab24cd26b0fcc074dff391c',
'timestamp': 1426984612,
'upload_date': '20150322',
'duration': 1455,
},
}
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
if '>Programmet er ikke længere tilgængeligt' in webpage:
raise ExtractorError(
'Video %s is not available' % video_id, expected=True)
video_id = self._search_regex(
r'data-(?:material-identifier|episode-slug)="([^"]+)"',
webpage, 'video id')
programcard = self._download_json(
'http://www.dr.dk/mu/programcard/expanded/%s' % video_id,
video_id, 'Downloading video JSON')
data = programcard['Data'][0]
title = data['Title']
description = data['Description']
timestamp = parse_iso8601(data['CreatedTime'])
thumbnail = None
duration = None
restricted_to_denmark = False
formats = []
subtitles = {}
for asset in data['Assets']:
if asset['Kind'] == 'Image':
thumbnail = asset['Uri']
elif asset['Kind'] == 'VideoResource':
duration = asset['DurationInMilliseconds'] / 1000.0
restricted_to_denmark = asset['RestrictedToDenmark']
spoken_subtitles = asset['Target'] == 'SpokenSubtitles'
for link in asset['Links']:
uri = link['Uri']
target = link['Target']
format_id = target
preference = None
if spoken_subtitles:
preference = -1
format_id += '-spoken-subtitles'
if target == 'HDS':
formats.extend(self._extract_f4m_formats(
uri + '?hdcore=3.3.0&plugin=aasp-3.3.0.99.43',
video_id, preference, f4m_id=format_id))
elif target == 'HLS':
formats.extend(self._extract_m3u8_formats(
uri, video_id, 'mp4', preference=preference,
m3u8_id=format_id))
else:
bitrate = link.get('Bitrate')
if bitrate:
format_id += '-%s' % bitrate
formats.append({
'url': uri,
'format_id': format_id,
'tbr': bitrate,
'ext': link.get('FileFormat'),
})
subtitles_list = asset.get('SubtitlesList')
if isinstance(subtitles_list, list):
LANGS = {
'Danish': 'da',
}
for subs in subtitles_list:
lang = subs['Language']
subtitles[LANGS.get(lang, lang)] = [{'url': subs['Uri'], 'ext': 'vtt'}]
if not formats and restricted_to_denmark:
raise ExtractorError(
'Unfortunately, DR is not allowed to show this program outside Denmark.', expected=True)
self._sort_formats(formats)
return {
'id': video_id,
'title': title,
'description': description,
'thumbnail': thumbnail,
'timestamp': timestamp,
'duration': duration,
'formats': formats,
'subtitles': subtitles,
} | unknown | codeparrot/codeparrot-clean | ||
# -*- coding: utf-8 -*-
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""Converters for Quantity."""
import threading
import numpy as np
from astropy.units.core import (UnitsError, UnitConversionError, UnitTypeError,
dimensionless_unscaled)
__all__ = ['can_have_arbitrary_unit', 'converters_and_unit',
'check_output', 'UFUNC_HELPERS', 'UNSUPPORTED_UFUNCS']
class UfuncHelpers(dict):
"""Registry of unit conversion functions to help ufunc evaluation.
Based on dict for quick access, but with a missing method to load
helpers for additional modules such as scipy.special and erfa.
Such modules should be registered using ``register_module``.
"""
def __init__(self, *args, **kwargs):
self.modules = {}
self.UNSUPPORTED = set() # Upper-case for backwards compatibility
self._lock = threading.RLock()
super().__init__(*args, **kwargs)
def register_module(self, module, names, importer):
"""Register (but do not import) a set of ufunc helpers.
Parameters
----------
module : str
Name of the module with the ufuncs (e.g., 'scipy.special').
names : iterable of str
Names of the module ufuncs for which helpers are available.
importer : callable
Function that imports the ufuncs and returns a dict of helpers
keyed by those ufuncs. If the value is `None`, the ufunc is
explicitly *not* supported.
"""
with self._lock:
self.modules[module] = {'names': names,
'importer': importer}
def import_module(self, module):
"""Import the helpers from the given module using its helper function.
Parameters
----------
module : str
Name of the module. Has to have been registered beforehand.
"""
with self._lock:
module_info = self.modules.pop(module)
self.update(module_info['importer']())
def __missing__(self, ufunc):
"""Called if a ufunc is not found.
Check if the ufunc is in any of the available modules, and, if so,
import the helpers for that module.
"""
with self._lock:
# Check if it was loaded while we waited for the lock
if ufunc in self:
return self[ufunc]
if ufunc in self.UNSUPPORTED:
raise TypeError(f"Cannot use ufunc '{ufunc.__name__}' with quantities")
for module, module_info in list(self.modules.items()):
if ufunc.__name__ in module_info['names']:
# A ufunc with the same name is supported by this module.
# Of course, this doesn't necessarily mean it is the
# right module. So, we try let the importer do its work.
# If it fails (e.g., for `scipy.special`), then that's
# fine, just raise the TypeError. If it succeeds, but
# the ufunc is not found, that is also fine: we will
# enter __missing__ again and either find another
# module or get the TypeError there.
try:
self.import_module(module)
except ImportError: # pragma: no cover
pass
else:
return self[ufunc]
raise TypeError("unknown ufunc {}. If you believe this ufunc "
"should be supported, please raise an issue on "
"https://github.com/astropy/astropy"
.format(ufunc.__name__))
def __setitem__(self, key, value):
# Implementation note: in principle, we could just let `None`
# mean that something is not implemented, but this means an
# extra if clause for the output, slowing down the common
# path where a ufunc is supported.
with self._lock:
if value is None:
self.UNSUPPORTED |= {key}
self.pop(key, None)
else:
super().__setitem__(key, value)
self.UNSUPPORTED -= {key}
UFUNC_HELPERS = UfuncHelpers()
UNSUPPORTED_UFUNCS = UFUNC_HELPERS.UNSUPPORTED
def can_have_arbitrary_unit(value):
"""Test whether the items in value can have arbitrary units
Numbers whose value does not change upon a unit change, i.e.,
zero, infinity, or not-a-number
Parameters
----------
value : number or array
Returns
-------
`True` if each member is either zero or not finite, `False` otherwise
"""
return np.all(np.logical_or(np.equal(value, 0.), ~np.isfinite(value)))
def converters_and_unit(function, method, *args):
"""Determine the required converters and the unit of the ufunc result.
Converters are functions required to convert to a ufunc's expected unit,
e.g., radian for np.sin; or to ensure units of two inputs are consistent,
e.g., for np.add. In these examples, the unit of the result would be
dimensionless_unscaled for np.sin, and the same consistent unit for np.add.
Parameters
----------
function : `~numpy.ufunc`
Numpy universal function
method : str
Method with which the function is evaluated, e.g.,
'__call__', 'reduce', etc.
*args : Quantity or other ndarray subclass
Input arguments to the function
Raises
------
TypeError : when the specified function cannot be used with Quantities
(e.g., np.logical_or), or when the routine does not know how to handle
the specified function (in which case an issue should be raised on
https://github.com/astropy/astropy).
UnitTypeError : when the conversion to the required (or consistent) units
is not possible.
"""
# Check whether we support this ufunc, by getting the helper function
# (defined in helpers) which returns a list of function(s) that convert the
# input(s) to the unit required for the ufunc, as well as the unit the
# result will have (a tuple of units if there are multiple outputs).
ufunc_helper = UFUNC_HELPERS[function]
if method == '__call__' or (method == 'outer' and function.nin == 2):
# Find out the units of the arguments passed to the ufunc; usually,
# at least one is a quantity, but for two-argument ufuncs, the second
# could also be a Numpy array, etc. These are given unit=None.
units = [getattr(arg, 'unit', None) for arg in args]
# Determine possible conversion functions, and the result unit.
converters, result_unit = ufunc_helper(function, *units)
if any(converter is False for converter in converters):
# for multi-argument ufuncs with a quantity and a non-quantity,
# the quantity normally needs to be dimensionless, *except*
# if the non-quantity can have arbitrary unit, i.e., when it
# is all zero, infinity or NaN. In that case, the non-quantity
# can just have the unit of the quantity
# (this allows, e.g., `q > 0.` independent of unit)
try:
# Don't fold this loop in the test above: this rare case
# should not make the common case slower.
for i, converter in enumerate(converters):
if converter is not False:
continue
if can_have_arbitrary_unit(args[i]):
converters[i] = None
else:
raise UnitConversionError(
"Can only apply '{}' function to "
"dimensionless quantities when other "
"argument is not a quantity (unless the "
"latter is all zero/infinity/nan)"
.format(function.__name__))
except TypeError:
# _can_have_arbitrary_unit failed: arg could not be compared
# with zero or checked to be finite. Then, ufunc will fail too.
raise TypeError("Unsupported operand type(s) for ufunc {}: "
"'{}'".format(function.__name__,
','.join([arg.__class__.__name__
for arg in args])))
# In the case of np.power and np.float_power, the unit itself needs to
# be modified by an amount that depends on one of the input values,
# so we need to treat this as a special case.
# TODO: find a better way to deal with this.
if result_unit is False:
if units[0] is None or units[0] == dimensionless_unscaled:
result_unit = dimensionless_unscaled
else:
if units[1] is None:
p = args[1]
else:
p = args[1].to(dimensionless_unscaled).value
try:
result_unit = units[0] ** p
except ValueError as exc:
# Changing the unit does not work for, e.g., array-shaped
# power, but this is OK if we're (scaled) dimensionless.
try:
converters[0] = units[0]._get_converter(
dimensionless_unscaled)
except UnitConversionError:
raise exc
else:
result_unit = dimensionless_unscaled
else: # methods for which the unit should stay the same
nin = function.nin
unit = getattr(args[0], 'unit', None)
if method == 'at' and nin <= 2:
if nin == 1:
units = [unit]
else:
units = [unit, getattr(args[2], 'unit', None)]
converters, result_unit = ufunc_helper(function, *units)
# ensure there is no 'converter' for indices (2nd argument)
converters.insert(1, None)
elif method in {'reduce', 'accumulate', 'reduceat'} and nin == 2:
converters, result_unit = ufunc_helper(function, unit, unit)
converters = converters[:1]
if method == 'reduceat':
# add 'scale' for indices (2nd argument)
converters += [None]
else:
if method in {'reduce', 'accumulate',
'reduceat', 'outer'} and nin != 2:
raise ValueError(f"{method} only supported for binary functions")
raise TypeError("Unexpected ufunc method {}. If this should "
"work, please raise an issue on"
"https://github.com/astropy/astropy"
.format(method))
# for all but __call__ method, scaling is not allowed
if unit is not None and result_unit is None:
raise TypeError("Cannot use '{1}' method on ufunc {0} with a "
"Quantity instance as the result is not a "
"Quantity.".format(function.__name__, method))
if (converters[0] is not None or
(unit is not None and unit is not result_unit and
(not result_unit.is_equivalent(unit) or
result_unit.to(unit) != 1.))):
# NOTE: this cannot be the more logical UnitTypeError, since
# then things like np.cumprod will not longer fail (they check
# for TypeError).
raise UnitsError("Cannot use '{1}' method on ufunc {0} with a "
"Quantity instance as it would change the unit."
.format(function.__name__, method))
return converters, result_unit
def check_output(output, unit, inputs, function=None):
"""Check that function output can be stored in the output array given.
Parameters
----------
output : array or `~astropy.units.Quantity` or tuple
Array that should hold the function output (or tuple of such arrays).
unit : `~astropy.units.Unit` or None, or tuple
Unit that the output will have, or `None` for pure numbers (should be
tuple of same if output is a tuple of outputs).
inputs : tuple
Any input arguments. These should be castable to the output.
function : callable
The function that will be producing the output. If given, used to
give a more informative error message.
Returns
-------
arrays : `~numpy.ndarray` view of ``output`` (or tuple of such views).
Raises
------
UnitTypeError : If ``unit`` is inconsistent with the class of ``output``
TypeError : If the ``inputs`` cannot be cast safely to ``output``.
"""
if isinstance(output, tuple):
return tuple(check_output(output_, unit_, inputs, function)
for output_, unit_ in zip(output, unit))
# ``None`` indicates no actual array is needed. This can happen, e.g.,
# with np.modf(a, out=(None, b)).
if output is None:
return None
if hasattr(output, '__quantity_subclass__'):
# Check that we're not trying to store a plain Numpy array or a
# Quantity with an inconsistent unit (e.g., not angular for Angle).
if unit is None:
raise TypeError("Cannot store non-quantity output{} in {} "
"instance".format(
(f" from {function.__name__} function"
if function is not None else ""),
type(output)))
q_cls, subok = output.__quantity_subclass__(unit)
if not (subok or q_cls is type(output)):
raise UnitTypeError(
"Cannot store output with unit '{}'{} "
"in {} instance. Use {} instance instead."
.format(unit, (f" from {function.__name__} function"
if function is not None else ""),
type(output), q_cls))
# check we can handle the dtype (e.g., that we are not int
# when float is required). Note that we only do this for Quantity
# output; for array output, we defer to numpy's default handling.
if not np.can_cast(np.result_type(*inputs), output.dtype,
casting='same_kind'):
raise TypeError("Arguments cannot be cast safely to inplace "
"output with dtype={}".format(output.dtype))
# Turn into ndarray, so we do not loop into array_wrap/array_ufunc
# if the output is used to store results of a function.
return output.view(np.ndarray)
else:
# output is not a Quantity, so cannot obtain a unit.
if not (unit is None or unit is dimensionless_unscaled):
raise UnitTypeError("Cannot store quantity with dimension "
"{}in a non-Quantity instance."
.format("" if function is None else
"resulting from {} function "
.format(function.__name__)))
return output | unknown | codeparrot/codeparrot-clean | ||
#
# cfg_gnu.py - GNU target configurator
#
# Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
import builder
import os
import sys
# Each configurator must export this function
def create_builder(args):
usage = """\
Usage:
main.py cfg_gnu [-h|--help] [cfg_site]
Arguments:
cfg_site: site configuration module. If not specified, "cfg_site"
is implied
-h, --help Show this help screen
"""
# (optional) args format:
# site configuration module. If not specified, "cfg_site" is implied
cfg_site = "cfg_site"
for arg in args:
if arg=="-h" or arg=="--help":
print usage
sys.exit(0)
elif arg[0]=="-":
print usage
sys.exit(1)
else:
cfg_site = arg
if os.access(cfg_site+".py", os.F_OK) == False:
print "Error: file '%s.py' doesn't exist." % (cfg_site)
sys.exit(1)
cfg_site = __import__(cfg_site)
test_cfg = builder.BaseConfig(cfg_site.BASE_DIR, \
cfg_site.URL, \
cfg_site.SITE_NAME, \
cfg_site.GROUP, \
cfg_site.OPTIONS)
config_site = "#define PJ_TODO(x)\n" + cfg_site.CONFIG_SITE
user_mak = "export CFLAGS+=-Wall\n" + cfg_site.USER_MAK
builders = [
builder.GNUTestBuilder(test_cfg, build_config_name="default",
user_mak=user_mak,
config_site=config_site,
exclude=cfg_site.EXCLUDE,
not_exclude=cfg_site.NOT_EXCLUDE)
]
return builders | unknown | codeparrot/codeparrot-clean | ||
"""
Module that tracks analytics events by sending them to different
configurable backends.
The backends can be configured using Django settings as the example
below::
TRACKING_BACKENDS = {
'tracker_name': {
'ENGINE': 'class.name.for.backend',
'OPTIONS': {
'host': ... ,
'port': ... ,
...
}
}
}
"""
import inspect
from importlib import import_module
from dogapi import dog_stats_api
from django.conf import settings
from track.backends import BaseBackend
__all__ = ['send']
backends = {}
def _initialize_backends_from_django_settings():
"""
Initialize the event tracking backends according to the
configuration in django settings
"""
backends.clear()
config = getattr(settings, 'TRACKING_BACKENDS', {})
for name, values in config.iteritems():
# Ignore empty values to turn-off default tracker backends
if values:
engine = values['ENGINE']
options = values.get('OPTIONS', {})
backends[name] = _instantiate_backend_from_name(engine, options)
def _instantiate_backend_from_name(name, options):
"""
Instantiate an event tracker backend from the full module path to
the backend class. Useful when setting backends from configuration
files.
"""
# Parse backend name
try:
parts = name.split('.')
module_name = '.'.join(parts[:-1])
class_name = parts[-1]
except IndexError:
raise ValueError('Invalid event track backend %s' % name)
# Get and verify the backend class
try:
module = import_module(module_name)
cls = getattr(module, class_name)
if not inspect.isclass(cls) or not issubclass(cls, BaseBackend):
raise TypeError
except (ValueError, AttributeError, TypeError, ImportError):
raise ValueError('Cannot find event track backend %s' % name)
backend = cls(**options)
return backend
@dog_stats_api.timed('track.send')
def send(event):
"""
Send an event object to all the initialized backends.
"""
dog_stats_api.increment('track.send.count')
for name, backend in backends.iteritems():
with dog_stats_api.timer('track.send.backend.{0}'.format(name)):
backend.send(event)
_initialize_backends_from_django_settings() | unknown | codeparrot/codeparrot-clean | ||
"""browsepict - Display all "ICON" resources found"""
import FrameWork
import EasyDialogs
from Carbon import Res
from Carbon import Qd
from Carbon import Win
from Carbon import Controls
from Carbon import List
import sys
import struct
from Carbon import Icn
import macresource
#
# Resource definitions
ID_MAIN=512
MAIN_LIST=1
MAIN_SHOW=2
# Where is the picture window?
LEFT=200
TOP=64
MINWIDTH=32
MINHEIGHT=32
MAXWIDTH=320
MAXHEIGHT=320
def main():
macresource.need('DLOG', ID_MAIN, "PICTbrowse.rsrc")
ICONbrowse()
class ICONbrowse(FrameWork.Application):
def __init__(self):
# First init menus, etc.
FrameWork.Application.__init__(self)
# Next create our dialog
self.main_dialog = MyDialog(self)
# Now open the dialog
contents = self.findICONresources()
self.main_dialog.open(ID_MAIN, contents)
# Finally, go into the event loop
self.mainloop()
def makeusermenus(self):
self.filemenu = m = FrameWork.Menu(self.menubar, "File")
self.quititem = FrameWork.MenuItem(m, "Quit", "Q", self.quit)
def quit(self, *args):
self._quit()
def showICON(self, resid):
w = ICONwindow(self)
w.open(resid)
#EasyDialogs.Message('Show ICON %r' % (resid,))
def findICONresources(self):
num = Res.CountResources('ICON')
rv = []
for i in range(1, num+1):
Res.SetResLoad(0)
try:
r = Res.GetIndResource('ICON', i)
finally:
Res.SetResLoad(1)
id, type, name = r.GetResInfo()
rv.append((id, name))
return rv
class ICONwindow(FrameWork.Window):
def open(self, (resid, resname)):
if not resname:
resname = '#%r' % (resid,)
self.resid = resid
self.picture = Icn.GetIcon(self.resid)
l, t, r, b = 0, 0, 32, 32
self.pictrect = (l, t, r, b)
width = r-l
height = b-t
if width < MINWIDTH: width = MINWIDTH
elif width > MAXWIDTH: width = MAXWIDTH
if height < MINHEIGHT: height = MINHEIGHT
elif height > MAXHEIGHT: height = MAXHEIGHT
bounds = (LEFT, TOP, LEFT+width, TOP+height)
self.wid = Win.NewWindow(bounds, resname, 1, 0, -1, 1, 0)
self.do_postopen()
def do_update(self, *args):
currect = self.fitrect()
Icn.PlotIcon(currect, self.picture)
def fitrect(self):
"""Return self.pictrect scaled to fit in window"""
graf = self.wid.GetWindowPort()
screenrect = graf.GetPortBounds()
picwidth = self.pictrect[2] - self.pictrect[0]
picheight = self.pictrect[3] - self.pictrect[1]
if picwidth > screenrect[2] - screenrect[0]:
factor = float(picwidth) / float(screenrect[2]-screenrect[0])
picwidth = picwidth / factor
picheight = picheight / factor
if picheight > screenrect[3] - screenrect[1]:
factor = float(picheight) / float(screenrect[3]-screenrect[1])
picwidth = picwidth / factor
picheight = picheight / factor
return (screenrect[0], screenrect[1], screenrect[0]+int(picwidth),
screenrect[1]+int(picheight))
class MyDialog(FrameWork.DialogWindow):
"Main dialog window for ICONbrowse"
def open(self, id, contents):
self.id = id
FrameWork.DialogWindow.open(self, ID_MAIN)
self.dlg.SetDialogDefaultItem(MAIN_SHOW)
self.contents = contents
self.ctl = self.dlg.GetDialogItemAsControl(MAIN_LIST)
h = self.ctl.GetControlData_Handle(Controls.kControlListBoxPart,
Controls.kControlListBoxListHandleTag)
self.list = List.as_List(h)
self.setlist()
def setlist(self):
self.list.LDelRow(0, 0)
self.list.LSetDrawingMode(0)
if self.contents:
self.list.LAddRow(len(self.contents), 0)
for i in range(len(self.contents)):
v = repr(self.contents[i][0])
if self.contents[i][1]:
v = v + '"' + self.contents[i][1] + '"'
self.list.LSetCell(v, (0, i))
self.list.LSetDrawingMode(1)
self.list.LUpdate(self.wid.GetWindowPort().visRgn)
def getselection(self):
items = []
point = (0,0)
while 1:
ok, point = self.list.LGetSelect(1, point)
if not ok:
break
items.append(point[1])
point = point[0], point[1]+1
values = []
for i in items:
values.append(self.contents[i])
return values
def do_show(self, *args):
selection = self.getselection()
for resid in selection:
self.parent.showICON(resid)
def do_close(self):
self.close()
def do_itemhit(self, item, event):
if item == MAIN_SHOW:
self.do_show()
main() | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/python
import libmsym as msym, numpy as np, argparse, random, sys
def read_xyz(fin):
length = int(fin.readline())
comment = fin.readline()[:-1]
elements = []
for i in range(0,length):
line = fin.readline().split()
elements.append(msym.Element(name = line[0], coordinates = map(float, line[1:4])))
return (elements, comment)
def write_xyz(fout, elements, comment):
fout.write("%d\n%s\n" % (len(elements), comment))
for e in elements:
v = e.coordinates
fout.write("%s %.14f %.14f %.14f\n" % (e.name, *v))
parser = argparse.ArgumentParser()
parser.add_argument('infile', type=argparse.FileType('r'))
parser.add_argument('outfile', type=argparse.FileType('w'))
args = parser.parse_args()
(elements, comment) = read_xyz(args.infile)
def set_basis(element):
basis_function = msym.RealSphericalHarmonic(element = element, name = "1s")
element.basis_functions = [basis_function]
return basis_function
basis_functions = [set_basis(e) for e in elements]
#msym.init(library_location='/path_to_libmsym_library/libmsym.dylib') # e.g. for OS X without libmsym in dload path
#with msym.Context() as ctx:
# ctx.elements = elements
# point_group = ctx.find_symmetry()
# selements = ctx.symmetrize_elements()
# write_xyz(args.outfile, selements, comment + " symmetrized by libmsym according to point group " + point_group)
with msym.Context(elements = elements, basis_functions = basis_functions) as ctx:
point_group = ctx.find_symmetry()
selements = ctx.symmetrize_elements()
write_xyz(args.outfile, selements, comment + " symmetrized by libmsym according to point group " + point_group)
ctx.symmetry_operations #symmetry operations
ctx.subrepresentation_spaces # subspace
ctx.subrepresentation_spaces[0].symmetry_species #symmetry species of space (index into character table)
ctx.subrepresentation_spaces[0].salcs # salcs that span space
ctx.subrepresentation_spaces[0].salcs[0].basis_functions # basis functions for salc
ctx.subrepresentation_spaces[0].salcs[0].partner_functions # numpy array of partner functions expressed in terms of basis_functions coefficients
ctx.character_table.table # table as numpy array
ctx.character_table.symmetry_operations # representative symmetry operations
ctx.character_table.symmetry_species # symmetry species
ctx.character_table.symmetry_species[0].dim # dimensionality of symmetry species
ctx.character_table.symmetry_species[0].name # name of symmetry species e.g. A2g
somefunc = np.zeros((len(basis_functions)),dtype=np.float64)
for i in range(0,len(somefunc)):
somefunc[i] = i
species_components = ctx.symmetry_species_components(somefunc)
species = ctx.character_table.symmetry_species
print(somefunc)
for i, c in enumerate(species_components):
print(str(c) + species[i].name)
#matrix version of the above, as well as wave function symmetrization
(matrix, species, partners) = ctx.salcs
(d,d) = matrix.shape
print(matrix)
print(species)
print([(p.index, p.dim) for p in partners])
indexes = [x for x in range(0,d)]
random.shuffle(indexes)
matrix = matrix[indexes,:]
matrix += 0.01
print(matrix)
(_same_matrix, species,partners) = ctx.symmetrize_wavefunctions(matrix)
print(matrix)
print(species)
print([(p.index, p.dim) for p in partners])
#generating elements
ctx.point_group = "D6h"
gen_elements = [msym.Element(name = "C", coordinates = [1.443524, 0.0,0.0]), msym.Element(name = "H", coordinates = [2.568381, 0.0, 0.0])]
benzene = ctx.generate_elements(gen_elements)
maxcomp = max([max(e.coordinates) for e in benzene])
print(len(benzene),"\nbenzene")
for e in benzene:
vec = np.asarray(e.coordinates)
vec[vec < maxcomp*sys.float_info.epsilon] = 0
print(e.name, vec[0],vec[1],vec[2])
#with msym.Context(elements = elements, point_group = "T") as ctx:
# point_group = ctx.point_group
# selements = ctx.symmetrize_elements()
# write_xyz(args.outfile, selements, comment + " symmetrized by libmsym according to point group " + point_group) | unknown | codeparrot/codeparrot-clean | ||
/* Copyright 2022 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_DTENSOR_MLIR_SPARSE_EXPANDER_COMMON_H_
#define TENSORFLOW_DTENSOR_MLIR_SPARSE_EXPANDER_COMMON_H_
#include <optional>
#include "absl/status/statusor.h"
#include "absl/types/optional.h"
#include "mlir/Bytecode/BytecodeOpInterface.h" // from @llvm-project
#include "mlir/Dialect/Func/IR/FuncOps.h" // from @llvm-project
#include "mlir/IR/Operation.h" // from @llvm-project
#include "mlir/IR/Value.h" // from @llvm-project
#include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
namespace tensorflow {
namespace dtensor {
// Gets the SparseToDenseOp that generates `value` if `value` is the result of
// a SparseToDenseOp. Returns empty otherwise. This is useful
// in SparseExpansion where we want to check whether some operand
// is a SparseTensor, by checking whether that operand is a result of a
// SparseToDenseOp. If this value is eventually an output of a SparseToDenseOp,
// there should only be DTensor related ops between the actual SparseToDenseOp,
// e.g. DTensorRelayout ops or DTensorLayout op.
absl::StatusOr<mlir::TF::SparseToDenseOp> GetSparseToDenseOp(mlir::Value value);
// Checks whether `value is an output of a SparseToDenseOp value.
bool IsSparseValue(mlir::Value value);
// Checks if `op` has any sparse value operands.
bool HasAnySparseInput(mlir::Operation* op);
// Checks if all operands of `op` is a sparse value.
bool AllSparseInput(mlir::Operation* op);
// Returns the indices component dense tensor from `value`. `value` represents
// a SparseTensor value.
absl::StatusOr<mlir::Value> GetIndicesFromSparseTensor(mlir::Value value);
// Returns the values component dense tensor from `value`.`value` represents
// a SparseTensor value.
absl::StatusOr<mlir::Value> GetValuesFromSparseTensor(mlir::Value value);
// Returns the dense shape component dense tensor from `value`. `value`
// represents a SparseTensor value.
absl::StatusOr<mlir::Value> GetDenseShapesFromSparseTensor(mlir::Value value);
} // namespace dtensor
} // namespace tensorflow
#endif // TENSORFLOW_DTENSOR_MLIR_SPARSE_EXPANDER_COMMON_H_ | c | github | https://github.com/tensorflow/tensorflow | tensorflow/dtensor/mlir/sparse_expander_common.h |
#!/usr/bin/python
# (c) 2016, NetApp, Inc
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import absolute_import, division, print_function
__metaclass__ = type
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = '''
module: netapp_e_facts
short_description: NetApp E-Series retrieve facts about NetApp E-Series storage arrays
description:
- The netapp_e_facts module returns a collection of facts regarding NetApp E-Series storage arrays.
- When contacting a storage array directly the collection includes details about the array, controllers, management
interfaces, hostside interfaces, driveside interfaces, disks, storage pools, volumes, snapshots, and features.
- When contacting a web services proxy the collection will include basic information regarding the storage systems
that are under its management.
version_added: '2.2'
author:
- Kevin Hulquest (@hulquest)
- Nathan Swartz (@ndswartz)
extends_documentation_fragment:
- netapp.eseries
'''
EXAMPLES = """
---
- name: Get array facts
netapp_e_facts:
ssid: "{{ netapp_array_id }}"
api_url: "https://{{ netapp_e_api_host }}:8443/devmgr/v2"
api_username: "{{ netapp_api_username }}"
api_password: "{{ netapp_api_password }}"
validate_certs: "{{ netapp_api_validate_certs }}"
- name: Get array facts
netapp_e_facts:
ssid: 1
api_url: https://192.168.1.100:8443/devmgr/v2
api_username: myApiUser
api_password: myApiPass
validate_certs: true
"""
RETURN = """
msg:
description: Success message
returned: on success
type: str
sample:
- Gathered facts for storage array. Array ID [1].
- Gathered facts for web services proxy.
storage_array_facts:
description: provides details about the array, controllers, management interfaces, hostside interfaces,
driveside interfaces, disks, storage pools, volumes, snapshots, and features.
returned: on successful inquiry from from embedded web services rest api
type: complex
contains:
netapp_controllers:
description: storage array controller list that contains basic controller identification and status
type: complex
sample:
- [{"name": "A", "serial": "021632007299", "status": "optimal"},
{"name": "B", "serial": "021632007300", "status": "failed"}]
netapp_disks:
description: drive list that contains identification, type, and status information for each drive
type: complex
sample:
- [{"available": false,
"firmware_version": "MS02",
"id": "01000000500003960C8B67880000000000000000",
"media_type": "ssd",
"product_id": "PX02SMU080 ",
"serial_number": "15R0A08LT2BA",
"status": "optimal",
"tray_ref": "0E00000000000000000000000000000000000000",
"usable_bytes": "799629205504" }]
netapp_driveside_interfaces:
description: drive side interface list that contains identification, type, and speed for each interface
type: complex
sample:
- [{ "controller": "A", "interface_speed": "12g", "interface_type": "sas" }]
- [{ "controller": "B", "interface_speed": "10g", "interface_type": "iscsi" }]
netapp_enabled_features:
description: specifies the enabled features on the storage array.
returned: on success
type: complex
sample:
- [ "flashReadCache", "performanceTier", "protectionInformation", "secureVolume" ]
netapp_host_groups:
description: specifies the host groups on the storage arrays.
returned: on success
type: complex
sample:
- [{ "id": "85000000600A098000A4B28D003610705C40B964", "name": "group1" }]
netapp_hosts:
description: specifies the hosts on the storage arrays.
returned: on success
type: complex
sample:
- [{ "id": "8203800000000000000000000000000000000000",
"name": "host1",
"group_id": "85000000600A098000A4B28D003610705C40B964",
"host_type_index": 28,
"ports": [{ "type": "fc", "address": "1000FF7CFFFFFF01", "label": "FC_1" },
{ "type": "fc", "address": "1000FF7CFFFFFF00", "label": "FC_2" }]}]
netapp_host_types:
description: lists the available host types on the storage array.
returned: on success
type: complex
sample:
- [{ "index": 0, "type": "FactoryDefault" },
{ "index": 1, "type": "W2KNETNCL"},
{ "index": 2, "type": "SOL" },
{ "index": 5, "type": "AVT_4M" },
{ "index": 6, "type": "LNX" },
{ "index": 7, "type": "LnxALUA" },
{ "index": 8, "type": "W2KNETCL" },
{ "index": 9, "type": "AIX MPIO" },
{ "index": 10, "type": "VmwTPGSALUA" },
{ "index": 15, "type": "HPXTPGS" },
{ "index": 17, "type": "SolTPGSALUA" },
{ "index": 18, "type": "SVC" },
{ "index": 22, "type": "MacTPGSALUA" },
{ "index": 23, "type": "WinTPGSALUA" },
{ "index": 24, "type": "LnxTPGSALUA" },
{ "index": 25, "type": "LnxTPGSALUA_PM" },
{ "index": 26, "type": "ONTAP_ALUA" },
{ "index": 27, "type": "LnxTPGSALUA_SF" },
{ "index": 28, "type": "LnxDHALUA" },
{ "index": 29, "type": "ATTOClusterAllOS" }]
netapp_hostside_interfaces:
description: host side interface list that contains identification, configuration, type, speed, and
status information for each interface
type: complex
sample:
- [{"iscsi":
[{ "controller": "A",
"current_interface_speed": "10g",
"ipv4_address": "10.10.10.1",
"ipv4_enabled": true,
"ipv4_gateway": "10.10.10.1",
"ipv4_subnet_mask": "255.255.255.0",
"ipv6_enabled": false,
"iqn": "iqn.1996-03.com.netapp:2806.600a098000a81b6d0000000059d60c76",
"link_status": "up",
"mtu": 9000,
"supported_interface_speeds": [ "10g" ] }]}]
netapp_management_interfaces:
description: management interface list that contains identification, configuration, and status for
each interface
type: complex
sample:
- [{"alias": "ict-2800-A",
"channel": 1,
"controller": "A",
"dns_config_method": "dhcp",
"dns_servers": [],
"ipv4_address": "10.1.1.1",
"ipv4_address_config_method": "static",
"ipv4_enabled": true,
"ipv4_gateway": "10.113.1.1",
"ipv4_subnet_mask": "255.255.255.0",
"ipv6_enabled": false,
"link_status": "up",
"mac_address": "00A098A81B5D",
"name": "wan0",
"ntp_config_method": "disabled",
"ntp_servers": [],
"remote_ssh_access": false }]
netapp_storage_array:
description: provides storage array identification, firmware version, and available capabilities
type: dict
sample:
- {"chassis_serial": "021540006043",
"firmware": "08.40.00.01",
"name": "ict-2800-11_40",
"wwn": "600A098000A81B5D0000000059D60C76",
"cacheBlockSizes": [4096,
8192,
16384,
32768],
"supportedSegSizes": [8192,
16384,
32768,
65536,
131072,
262144,
524288]}
netapp_storage_pools:
description: storage pool list that contains identification and capacity information for each pool
type: complex
sample:
- [{"available_capacity": "3490353782784",
"id": "04000000600A098000A81B5D000002B45A953A61",
"name": "Raid6",
"total_capacity": "5399466745856",
"used_capacity": "1909112963072" }]
netapp_volumes:
description: storage volume list that contains identification and capacity information for each volume
type: complex
sample:
- [{"capacity": "5368709120",
"id": "02000000600A098000AAC0C3000002C45A952BAA",
"is_thin_provisioned": false,
"name": "5G",
"parent_storage_pool_id": "04000000600A098000A81B5D000002B45A953A61" }]
netapp_workload_tags:
description: workload tag list
type: complex
sample:
- [{"id": "87e19568-43fb-4d8d-99ea-2811daaa2b38",
"name": "ftp_server",
"workloadAttributes": [{"key": "use",
"value": "general"}]}]
netapp_volumes_by_initiators:
description: list of available volumes keyed by the mapped initiators.
type: complex
sample:
- {"192_168_1_1": [{"id": "02000000600A098000A4B9D1000015FD5C8F7F9E",
"meta_data": {"filetype": "xfs", "public": true},
"name": "some_volume",
"workload_name": "test2_volumes",
"wwn": "600A098000A4B9D1000015FD5C8F7F9E"}]}
snapshot_images:
description: snapshot image list that contains identification, capacity, and status information for each
snapshot image
type: complex
sample:
- [{"active_cow": true,
"creation_method": "user",
"id": "34000000600A098000A81B5D00630A965B0535AC",
"pit_capacity": "5368709120",
"reposity_cap_utilization": "0",
"rollback_source": false,
"status": "optimal" }]
"""
from re import match
from pprint import pformat
from ansible.module_utils.netapp import NetAppESeriesModule
class Facts(NetAppESeriesModule):
def __init__(self):
web_services_version = "02.00.0000.0000"
super(Facts, self).__init__(ansible_options={},
web_services_version=web_services_version,
supports_check_mode=True)
def get_controllers(self):
"""Retrieve a mapping of controller references to their labels."""
controllers = list()
try:
rc, controllers = self.request('storage-systems/%s/graph/xpath-filter?query=/controller/id' % self.ssid)
except Exception as err:
self.module.fail_json(
msg="Failed to retrieve controller list! Array Id [%s]. Error [%s]."
% (self.ssid, str(err)))
controllers.sort()
controllers_dict = {}
i = ord('A')
for controller in controllers:
label = chr(i)
controllers_dict[controller] = label
i += 1
return controllers_dict
def get_array_facts(self):
"""Extract particular facts from the storage array graph"""
facts = dict(facts_from_proxy=False, ssid=self.ssid)
controller_reference_label = self.get_controllers()
array_facts = None
# Get the storage array graph
try:
rc, array_facts = self.request("storage-systems/%s/graph" % self.ssid)
except Exception as error:
self.module.fail_json(msg="Failed to obtain facts from storage array with id [%s]. Error [%s]"
% (self.ssid, str(error)))
facts['netapp_storage_array'] = dict(
name=array_facts['sa']['saData']['storageArrayLabel'],
chassis_serial=array_facts['sa']['saData']['chassisSerialNumber'],
firmware=array_facts['sa']['saData']['fwVersion'],
wwn=array_facts['sa']['saData']['saId']['worldWideName'],
segment_sizes=array_facts['sa']['featureParameters']['supportedSegSizes'],
cache_block_sizes=array_facts['sa']['featureParameters']['cacheBlockSizes'])
facts['netapp_controllers'] = [
dict(
name=controller_reference_label[controller['controllerRef']],
serial=controller['serialNumber'].strip(),
status=controller['status'],
) for controller in array_facts['controller']]
facts['netapp_host_groups'] = [
dict(
id=group['id'],
name=group['name']
) for group in array_facts['storagePoolBundle']['cluster']]
facts['netapp_hosts'] = [
dict(
group_id=host['clusterRef'],
hosts_reference=host['hostRef'],
id=host['id'],
name=host['name'],
host_type_index=host['hostTypeIndex'],
posts=host['hostSidePorts']
) for host in array_facts['storagePoolBundle']['host']]
facts['netapp_host_types'] = [
dict(
type=host_type['hostType'],
index=host_type['index']
) for host_type in array_facts['sa']['hostSpecificVals']
if 'hostType' in host_type.keys() and host_type['hostType']
# This conditional ignores zero-length strings which indicates that the associated host-specific NVSRAM region has been cleared.
]
facts['snapshot_images'] = [
dict(
id=snapshot['id'],
status=snapshot['status'],
pit_capacity=snapshot['pitCapacity'],
creation_method=snapshot['creationMethod'],
reposity_cap_utilization=snapshot['repositoryCapacityUtilization'],
active_cow=snapshot['activeCOW'],
rollback_source=snapshot['isRollbackSource']
) for snapshot in array_facts['highLevelVolBundle']['pit']]
facts['netapp_disks'] = [
dict(
id=disk['id'],
available=disk['available'],
media_type=disk['driveMediaType'],
status=disk['status'],
usable_bytes=disk['usableCapacity'],
tray_ref=disk['physicalLocation']['trayRef'],
product_id=disk['productID'],
firmware_version=disk['firmwareVersion'],
serial_number=disk['serialNumber'].lstrip()
) for disk in array_facts['drive']]
facts['netapp_management_interfaces'] = [
dict(controller=controller_reference_label[controller['controllerRef']],
name=iface['ethernet']['interfaceName'],
alias=iface['ethernet']['alias'],
channel=iface['ethernet']['channel'],
mac_address=iface['ethernet']['macAddr'],
remote_ssh_access=iface['ethernet']['rloginEnabled'],
link_status=iface['ethernet']['linkStatus'],
ipv4_enabled=iface['ethernet']['ipv4Enabled'],
ipv4_address_config_method=iface['ethernet']['ipv4AddressConfigMethod'].lower().replace("config", ""),
ipv4_address=iface['ethernet']['ipv4Address'],
ipv4_subnet_mask=iface['ethernet']['ipv4SubnetMask'],
ipv4_gateway=iface['ethernet']['ipv4GatewayAddress'],
ipv6_enabled=iface['ethernet']['ipv6Enabled'],
dns_config_method=iface['ethernet']['dnsProperties']['acquisitionProperties']['dnsAcquisitionType'],
dns_servers=(iface['ethernet']['dnsProperties']['acquisitionProperties']['dnsServers']
if iface['ethernet']['dnsProperties']['acquisitionProperties']['dnsServers'] else []),
ntp_config_method=iface['ethernet']['ntpProperties']['acquisitionProperties']['ntpAcquisitionType'],
ntp_servers=(iface['ethernet']['ntpProperties']['acquisitionProperties']['ntpServers']
if iface['ethernet']['ntpProperties']['acquisitionProperties']['ntpServers'] else [])
) for controller in array_facts['controller'] for iface in controller['netInterfaces']]
facts['netapp_hostside_interfaces'] = [
dict(
fc=[dict(controller=controller_reference_label[controller['controllerRef']],
channel=iface['fibre']['channel'],
link_status=iface['fibre']['linkStatus'],
current_interface_speed=strip_interface_speed(iface['fibre']['currentInterfaceSpeed']),
maximum_interface_speed=strip_interface_speed(iface['fibre']['maximumInterfaceSpeed']))
for controller in array_facts['controller']
for iface in controller['hostInterfaces']
if iface['interfaceType'] == 'fc'],
ib=[dict(controller=controller_reference_label[controller['controllerRef']],
channel=iface['ib']['channel'],
link_status=iface['ib']['linkState'],
mtu=iface['ib']['maximumTransmissionUnit'],
current_interface_speed=strip_interface_speed(iface['ib']['currentSpeed']),
maximum_interface_speed=strip_interface_speed(iface['ib']['supportedSpeed']))
for controller in array_facts['controller']
for iface in controller['hostInterfaces']
if iface['interfaceType'] == 'ib'],
iscsi=[dict(controller=controller_reference_label[controller['controllerRef']],
iqn=iface['iscsi']['iqn'],
link_status=iface['iscsi']['interfaceData']['ethernetData']['linkStatus'],
ipv4_enabled=iface['iscsi']['ipv4Enabled'],
ipv4_address=iface['iscsi']['ipv4Data']['ipv4AddressData']['ipv4Address'],
ipv4_subnet_mask=iface['iscsi']['ipv4Data']['ipv4AddressData']['ipv4SubnetMask'],
ipv4_gateway=iface['iscsi']['ipv4Data']['ipv4AddressData']['ipv4GatewayAddress'],
ipv6_enabled=iface['iscsi']['ipv6Enabled'],
mtu=iface['iscsi']['interfaceData']['ethernetData']['maximumFramePayloadSize'],
current_interface_speed=strip_interface_speed(iface['iscsi']['interfaceData']
['ethernetData']['currentInterfaceSpeed']),
supported_interface_speeds=strip_interface_speed(iface['iscsi']['interfaceData']
['ethernetData']
['supportedInterfaceSpeeds']))
for controller in array_facts['controller']
for iface in controller['hostInterfaces']
if iface['interfaceType'] == 'iscsi'],
sas=[dict(controller=controller_reference_label[controller['controllerRef']],
channel=iface['sas']['channel'],
current_interface_speed=strip_interface_speed(iface['sas']['currentInterfaceSpeed']),
maximum_interface_speed=strip_interface_speed(iface['sas']['maximumInterfaceSpeed']),
link_status=iface['sas']['iocPort']['state'])
for controller in array_facts['controller']
for iface in controller['hostInterfaces']
if iface['interfaceType'] == 'sas'])]
facts['netapp_driveside_interfaces'] = [
dict(
controller=controller_reference_label[controller['controllerRef']],
interface_type=interface['interfaceType'],
interface_speed=strip_interface_speed(
interface[interface['interfaceType']]['maximumInterfaceSpeed']
if (interface['interfaceType'] == 'sata' or
interface['interfaceType'] == 'sas' or
interface['interfaceType'] == 'fibre')
else (
interface[interface['interfaceType']]['currentSpeed']
if interface['interfaceType'] == 'ib'
else (
interface[interface['interfaceType']]['interfaceData']['maximumInterfaceSpeed']
if interface['interfaceType'] == 'iscsi' else 'unknown'
))),
)
for controller in array_facts['controller']
for interface in controller['driveInterfaces']]
facts['netapp_storage_pools'] = [
dict(
id=storage_pool['id'],
name=storage_pool['name'],
available_capacity=storage_pool['freeSpace'],
total_capacity=storage_pool['totalRaidedSpace'],
used_capacity=storage_pool['usedSpace']
) for storage_pool in array_facts['volumeGroup']]
all_volumes = list(array_facts['volume'])
facts['netapp_volumes'] = [
dict(
id=v['id'],
name=v['name'],
parent_storage_pool_id=v['volumeGroupRef'],
capacity=v['capacity'],
is_thin_provisioned=v['thinProvisioned'],
workload=v['metadata'],
) for v in all_volumes]
workload_tags = None
try:
rc, workload_tags = self.request("storage-systems/%s/workloads" % self.ssid)
except Exception as error:
self.module.fail_json(msg="Failed to retrieve workload tags. Array [%s]." % self.ssid)
facts['netapp_workload_tags'] = [
dict(
id=workload_tag['id'],
name=workload_tag['name'],
attributes=workload_tag['workloadAttributes']
) for workload_tag in workload_tags]
# Create a dictionary of volume lists keyed by host names
facts['netapp_volumes_by_initiators'] = dict()
for mapping in array_facts['storagePoolBundle']['lunMapping']:
for host in facts['netapp_hosts']:
if mapping['mapRef'] == host['hosts_reference'] or mapping['mapRef'] == host['group_id']:
if host['name'] not in facts['netapp_volumes_by_initiators'].keys():
facts['netapp_volumes_by_initiators'].update({host['name']: []})
for volume in all_volumes:
if mapping['id'] in [volume_mapping['id'] for volume_mapping in volume['listOfMappings']]:
# Determine workload name if there is one
workload_name = ""
metadata = dict()
for volume_tag in volume['metadata']:
if volume_tag['key'] == 'workloadId':
for workload_tag in facts['netapp_workload_tags']:
if volume_tag['value'] == workload_tag['id']:
workload_name = workload_tag['name']
metadata = dict((entry['key'], entry['value'])
for entry in workload_tag['attributes']
if entry['key'] != 'profileId')
facts['netapp_volumes_by_initiators'][host['name']].append(
dict(name=volume['name'],
id=volume['id'],
wwn=volume['wwn'],
workload_name=workload_name,
meta_data=metadata))
features = [feature for feature in array_facts['sa']['capabilities']]
features.extend([feature['capability'] for feature in array_facts['sa']['premiumFeatures']
if feature['isEnabled']])
features = list(set(features)) # ensure unique
features.sort()
facts['netapp_enabled_features'] = features
return facts
def get_facts(self):
"""Get the embedded or web services proxy information."""
facts = self.get_array_facts()
self.module.log("isEmbedded: %s" % self.is_embedded())
self.module.log(pformat(facts))
self.module.exit_json(msg="Gathered facts for storage array. Array ID: [%s]." % self.ssid,
storage_array_facts=facts)
def strip_interface_speed(speed):
"""Converts symbol interface speeds to a more common notation. Example: 'speed10gig' -> '10g'"""
if isinstance(speed, list):
result = [match(r"speed[0-9]{1,3}[gm]", sp) for sp in speed]
result = [sp.group().replace("speed", "") if result else "unknown" for sp in result if sp]
result = ["auto" if match(r"auto", sp) else sp for sp in result]
else:
result = match(r"speed[0-9]{1,3}[gm]", speed)
result = result.group().replace("speed", "") if result else "unknown"
result = "auto" if match(r"auto", result.lower()) else result
return result
def main():
facts = Facts()
facts.get_facts()
if __name__ == "__main__":
main() | unknown | codeparrot/codeparrot-clean | ||
# Accepting data with input properties
TIP: This guide assumes you've already read the [Essentials Guide](essentials). Read that first if you're new to Angular.
TIP: If you're familiar with other web frameworks, input properties are similar to _props_.
When you use a component, you commonly want to pass some data to it. A component specifies the data that it accepts by declaring
**inputs**:
```ts {highlight:[8]}
import {Component, input} from '@angular/core';
@Component({
/*...*/
})
export class CustomSlider {
// Declare an input named 'value' with a default value of zero.
value = input(0);
}
```
This lets you bind to the property in a template:
```angular-html
<custom-slider [value]="50" />
```
If an input has a default value, TypeScript infers the type from the default value:
```ts
@Component({
/*...*/
})
export class CustomSlider {
// TypeScript infers that this input is a number, returning InputSignal<number>.
value = input(0);
}
```
You can explicitly declare a type for the input by specifying a generic parameter to the function.
If an input without a default value is not set, its value is `undefined`:
```ts
@Component({
/*...*/
})
export class CustomSlider {
// Produces an InputSignal<number | undefined> because `value` may not be set.
value = input<number>();
}
```
**Angular records inputs statically at compile-time**. Inputs cannot be added or removed at run-time.
The `input` function has special meaning to the Angular compiler. **You can exclusively call `input` in component and directive property initializers.**
When extending a component class, **inputs are inherited by the child class.**
**Input names are case-sensitive.**
## Reading inputs
The `input` function returns an `InputSignal`. You can read the value by calling the signal:
```ts {highlight:[11]}
import {Component, input, computed} from '@angular/core';
@Component({
/*...*/
})
export class CustomSlider {
// Declare an input named 'value' with a default value of zero.
value = input(0);
// Create a computed expression that reads the value input
label = computed(() => `The slider's value is ${this.value()}`);
}
```
Signals created by the `input` function are read-only.
## Required inputs
You can declare that an input is `required` by calling `input.required` instead of `input`:
```ts {highlight:[6]}
@Component({
/*...*/
})
export class CustomSlider {
// Declare a required input named value. Returns an `InputSignal<number>`.
value = input.required<number>();
}
```
Angular enforces that required inputs _must_ be set when the component is used in a template. If you try to use a component without specifying all of its required inputs, Angular reports an error at build-time.
Required inputs do not automatically include `undefined` in the generic parameter of the returned `InputSignal`.
## Configuring inputs
The `input` function accepts a config object as a second parameter that lets you change the way that input works.
### Input transforms
You can specify a `transform` function to change the value of an input when it's set by Angular.
```ts {highlight:[6]}
@Component({
selector: 'custom-slider',
/*...*/
})
export class CustomSlider {
label = input('', {transform: trimString});
}
function trimString(value: string | undefined): string {
return value?.trim() ?? '';
}
```
```angular-html
<custom-slider [label]="systemVolume" />
```
In the example above, whenever the value of `systemVolume` changes, Angular runs `trimString` and sets `label` to the result.
The most common use-case for input transforms is to accept a wider range of value types in templates, often including `null` and `undefined`.
**Input transform function must be statically analyzable at build-time.** You cannot set transform functions conditionally or as the result of an expression evaluation.
**Input transform functions should always be [pure functions](https://en.wikipedia.org/wiki/Pure_function).** Relying on state outside the transform function can lead to unpredictable behavior.
#### Type checking
When you specify an input transform, the type of the transform function's parameter determines the types of values that can be set to the input in a template.
```ts
@Component({
/*...*/
})
export class CustomSlider {
widthPx = input('', {transform: appendPx});
}
function appendPx(value: number): string {
return `${value}px`;
}
```
In the example above, the `widthPx` input accepts a `number` while the `InputSignal` property returns a `string`.
#### Built-in transformations
Angular includes two built-in transform functions for the two most common scenarios: coercing values to boolean and numbers.
```ts
import {Component, input, booleanAttribute, numberAttribute} from '@angular/core';
@Component({
/*...*/
})
export class CustomSlider {
disabled = input(false, {transform: booleanAttribute});
value = input(0, {transform: numberAttribute});
}
```
`booleanAttribute` imitates the behavior of standard HTML [boolean attributes](https://developer.mozilla.org/docs/Glossary/Boolean/HTML), where the
_presence_ of the attribute indicates a "true" value. However, Angular's `booleanAttribute` treats the literal string `"false"` as the boolean `false`.
`numberAttribute` attempts to parse the given value to a number, producing `NaN` if parsing fails.
### Input aliases
You can specify the `alias` option to change the name of an input in templates.
```ts {highlight:[5]}
@Component({
/*...*/
})
export class CustomSlider {
value = input(0, {alias: 'sliderValue'});
}
```
```angular-html
<custom-slider [sliderValue]="50" />
```
This alias does not affect usage of the property in TypeScript code.
While you should generally avoid aliasing inputs for components, this feature can be useful for renaming properties while preserving an alias for the original name or for avoiding collisions with the name of native DOM element properties.
## Model inputs
**Model inputs** are a special type of input that enable a component to propagate new values back to its parent component.
When creating a component, you can define a model input similarly to how you create a standard input.
Both types of input allow someone to bind a value into the property. However, **model inputs allow the component author to write values into the property**. If the property is bound with a two-way binding, the new value propagates to that binding.
```ts
@Component({
/* ... */
})
export class CustomSlider {
// Define a model input named "value".
value = model(0);
increment() {
// Update the model input with a new value, propagating the value to any bindings.
this.value.update((oldValue) => oldValue + 10);
}
}
@Component({
/* ... */
// Using the two-way binding syntax means that any changes to the slider's
// value automatically propagate back to the `volume` signal.
// Note that this binding uses the signal *instance*, not the signal value.
template: `<custom-slider [(value)]="volume" />`,
})
export class MediaControls {
// Create a writable signal for the `volume` local state.
volume = signal(0);
}
```
In the above example, the `CustomSlider` can write values into its `value` model input, which then propagates those values back to the `volume` signal in `MediaControls`. This binding keeps the values of `value` and `volume` in sync. Notice that the binding passes the `volume` signal instance, not the _value_ of the signal.
In other respects, model inputs work similarly to standard inputs. You can read the value by calling the signal function, including in [reactive contexts](guide/signals#reactive-contexts) like `computed` and `effect`.
See [Two-way binding](guide/templates/two-way-binding) for more details on two-way binding in templates.
### Two-way binding with plain properties
You can bind a plain JavaScript property to a model input.
```angular-ts
@Component({
/* ... */
// `value` is a model input.
// The parenthesis-inside-square-brackets syntax (aka "banana-in-a-box") creates a two-way binding
template: '<custom-slider [(value)]="volume" />',
})
export class MediaControls {
protected volume = 0;
}
```
In the example above, the `CustomSlider` can write values into its `value` model input, which then propagates those values back to the `volume` property in `MediaControls`. This binding keeps the values of `value` and `volume` in sync.
### Implicit `change` events
When you declare a model input in a component or directive, Angular automatically creates a corresponding [output](guide/components/outputs) for that model. The output's name is the model input's name suffixed with "Change".
```ts
@Directive({
/* ... */
})
export class CustomCheckbox {
// This automatically creates an output named "checkedChange".
// Can be subscribed to using `(checkedChange)="handler()"` in the template.
checked = model(false);
}
```
Angular emits this change event whenever you write a new value into the model input by calling its `set` or `update` methods.
See [Custom events with outputs](guide/components/outputs) for more details on outputs.
### Customizing model inputs
You can mark a model input as required or provide an alias in the same way as a [standard input](guide/components/inputs).
Model inputs do not support input transforms.
### When to use model inputs
Use model inputs when you want a component to support two-way binding. This is typically appropriate when a component exists to modify a value based on user interaction. Most commonly, custom form controls, such as a date picker or combobox, should use model inputs for their primary value.
## Choosing input names
Avoid choosing input names that collide with properties on DOM elements like HTMLElement. Name collisions introduce confusion about whether the bound property belongs to the component or the DOM element.
Avoid adding prefixes for component inputs like you would with component selectors. Since a given element can only host one component, any custom properties can be assumed to belong to the component.
## Declaring inputs with the `@Input` decorator
TIP: While the Angular team recommends using the signal-based `input` function for new projects, the original decorator-based `@Input` API remains fully supported.
You can alternatively declare component inputs by adding the `@Input` decorator to a property:
```ts {highlight:[5]}
@Component({
/*...*/
})
export class CustomSlider {
@Input() value = 0;
}
```
Binding to an input is the same in both signal-based and decorator-based inputs:
```angular-html
<custom-slider [value]="50" />
```
### Customizing decorator-based inputs
The `@Input` decorator accepts a config object that lets you change the way that input works.
#### Required inputs
You can specify the `required` option to enforce that a given input must always have a value.
```ts {highlight:[5]}
@Component({
/*...*/
})
export class CustomSlider {
@Input({required: true}) value = 0;
}
```
If you try to use a component without specifying all of its required inputs, Angular reports an error at build-time.
#### Input transforms
You can specify a `transform` function to change the value of an input when it's set by Angular. This transform function works identically to transform functions for signal-based inputs described above.
```ts {highlight:[6]}
@Component({
selector: 'custom-slider',
...
})
export class CustomSlider {
@Input({transform: trimString}) label = '';
}
function trimString(value: string | undefined) {
return value?.trim() ?? '';
}
```
#### Input aliases
You can specify the `alias` option to change the name of an input in templates.
```ts {highlight:[5]}
@Component({
/*...*/
})
export class CustomSlider {
@Input({alias: 'sliderValue'}) value = 0;
}
```
```angular-html
<custom-slider [sliderValue]="50" />
```
The `@Input` decorator also accepts the alias as its first parameter in place of the config object.
Input aliases work the same way as for signal-based inputs described above.
### Inputs with getters and setters
When using decorator-based inputs, a property implemented with a getter and setter can be an input:
```ts
export class CustomSlider {
@Input()
get value(): number {
return this.internalValue;
}
set value(newValue: number) {
this.internalValue = newValue;
}
private internalValue = 0;
}
```
You can even create a _write-only_ input by only defining a public setter:
```ts
export class CustomSlider {
@Input()
set value(newValue: number) {
this.internalValue = newValue;
}
private internalValue = 0;
}
```
**Prefer using input transforms instead of getters and setters** if possible.
Avoid complex or costly getters and setters. Angular may invoke an input's setter multiple times, which may negatively impact application performance if the setter performs any costly behaviors, such as DOM manipulation.
## Specify inputs in the `@Component` decorator
In addition to the `@Input` decorator, you can also specify a component's inputs with the `inputs` property in the `@Component` decorator. This can be useful when a component inherits a property from a base class:
```ts {highlight:[4]}
// `CustomSlider` inherits the `disabled` property from `BaseSlider`.
@Component({
...,
inputs: ['disabled'],
})
export class CustomSlider extends BaseSlider { }
```
You can additionally specify an input alias in the `inputs` list by putting the alias after a colon in the string:
```ts {highlight:[4]}
// `CustomSlider` inherits the `disabled` property from `BaseSlider`.
@Component({
...,
inputs: ['disabled: sliderDisabled'],
})
export class CustomSlider extends BaseSlider { }
``` | unknown | github | https://github.com/angular/angular | adev/src/content/guide/components/inputs.md |
"""
=============================
Species distribution modeling
=============================
Modeling species' geographic distributions is an important
problem in conservation biology. In this example, we
model the geographic distribution of two South American
mammals given past observations and 14 environmental
variables. Since we have only positive examples (there are
no unsuccessful observations), we cast this problem as a
density estimation problem and use the :class:`~sklearn.svm.OneClassSVM`
as our modeling tool. The dataset is provided by Phillips et. al. (2006).
If available, the example uses
`basemap <https://matplotlib.org/basemap/>`_
to plot the coast lines and national boundaries of South America.
The two species are:
- `Bradypus variegatus
<http://www.iucnredlist.org/details/3038/0>`_,
the brown-throated sloth.
- `Microryzomys minutus
<http://www.iucnredlist.org/details/13408/0>`_,
also known as the forest small rice rat, a rodent that lives in Peru,
Colombia, Ecuador, Peru, and Venezuela.
References
----------
- `"Maximum entropy modeling of species geographic distributions"
<http://rob.schapire.net/papers/ecolmod.pdf>`_
S. J. Phillips, R. P. Anderson, R. E. Schapire - Ecological Modelling,
190:231-259, 2006.
"""
# Authors: The scikit-learn developers
# SPDX-License-Identifier: BSD-3-Clause
from time import time
import matplotlib.pyplot as plt
import numpy as np
from sklearn import metrics, svm
from sklearn.datasets import fetch_species_distributions
from sklearn.utils import Bunch
# if basemap is available, we'll use it.
# otherwise, we'll improvise later...
try:
from mpl_toolkits.basemap import Basemap
basemap = True
except ImportError:
basemap = False
def construct_grids(batch):
"""Construct the map grid from the batch object
Parameters
----------
batch : Batch object
The object returned by :func:`fetch_species_distributions`
Returns
-------
(xgrid, ygrid) : 1-D arrays
The grid corresponding to the values in batch.coverages
"""
# x,y coordinates for corner cells
xmin = batch.x_left_lower_corner + batch.grid_size
xmax = xmin + (batch.Nx * batch.grid_size)
ymin = batch.y_left_lower_corner + batch.grid_size
ymax = ymin + (batch.Ny * batch.grid_size)
# x coordinates of the grid cells
xgrid = np.arange(xmin, xmax, batch.grid_size)
# y coordinates of the grid cells
ygrid = np.arange(ymin, ymax, batch.grid_size)
return (xgrid, ygrid)
def create_species_bunch(species_name, train, test, coverages, xgrid, ygrid):
"""Create a bunch with information about a particular organism
This will use the test/train record arrays to extract the
data specific to the given species name.
"""
bunch = Bunch(name=" ".join(species_name.split("_")[:2]))
species_name = species_name.encode("ascii")
points = dict(test=test, train=train)
for label, pts in points.items():
# choose points associated with the desired species
pts = pts[pts["species"] == species_name]
bunch["pts_%s" % label] = pts
# determine coverage values for each of the training & testing points
ix = np.searchsorted(xgrid, pts["dd long"])
iy = np.searchsorted(ygrid, pts["dd lat"])
bunch["cov_%s" % label] = coverages[:, -iy, ix].T
return bunch
def plot_species_distribution(
species=("bradypus_variegatus_0", "microryzomys_minutus_0"),
):
"""
Plot the species distribution.
"""
if len(species) > 2:
print(
"Note: when more than two species are provided,"
" only the first two will be used"
)
t0 = time()
# Load the compressed data
data = fetch_species_distributions()
# Set up the data grid
xgrid, ygrid = construct_grids(data)
# The grid in x,y coordinates
X, Y = np.meshgrid(xgrid, ygrid[::-1])
# create a bunch for each species
BV_bunch = create_species_bunch(
species[0], data.train, data.test, data.coverages, xgrid, ygrid
)
MM_bunch = create_species_bunch(
species[1], data.train, data.test, data.coverages, xgrid, ygrid
)
# background points (grid coordinates) for evaluation
np.random.seed(13)
background_points = np.c_[
np.random.randint(low=0, high=data.Ny, size=10000),
np.random.randint(low=0, high=data.Nx, size=10000),
].T
# We'll make use of the fact that coverages[6] has measurements at all
# land points. This will help us decide between land and water.
land_reference = data.coverages[6]
# Fit, predict, and plot for each species.
for i, species in enumerate([BV_bunch, MM_bunch]):
print("_" * 80)
print("Modeling distribution of species '%s'" % species.name)
# Standardize features
mean = species.cov_train.mean(axis=0)
std = species.cov_train.std(axis=0)
train_cover_std = (species.cov_train - mean) / std
# Fit OneClassSVM
print(" - fit OneClassSVM ... ", end="")
clf = svm.OneClassSVM(nu=0.1, kernel="rbf", gamma=0.5)
clf.fit(train_cover_std)
print("done.")
# Plot map of South America
plt.subplot(1, 2, i + 1)
if basemap:
print(" - plot coastlines using basemap")
m = Basemap(
projection="cyl",
llcrnrlat=Y.min(),
urcrnrlat=Y.max(),
llcrnrlon=X.min(),
urcrnrlon=X.max(),
resolution="c",
)
m.drawcoastlines()
m.drawcountries()
else:
print(" - plot coastlines from coverage")
plt.contour(
X, Y, land_reference, levels=[-9998], colors="k", linestyles="solid"
)
plt.xticks([])
plt.yticks([])
print(" - predict species distribution")
# Predict species distribution using the training data
Z = np.ones((data.Ny, data.Nx), dtype=np.float64)
# We'll predict only for the land points.
idx = (land_reference > -9999).nonzero()
coverages_land = data.coverages[:, idx[0], idx[1]].T
pred = clf.decision_function((coverages_land - mean) / std)
Z *= pred.min()
Z[idx[0], idx[1]] = pred
levels = np.linspace(Z.min(), Z.max(), 25)
Z[land_reference == -9999] = -9999
# plot contours of the prediction
plt.contourf(X, Y, Z, levels=levels, cmap=plt.cm.Reds)
plt.colorbar(format="%.2f")
# scatter training/testing points
plt.scatter(
species.pts_train["dd long"],
species.pts_train["dd lat"],
s=2**2,
c="black",
marker="^",
label="train",
)
plt.scatter(
species.pts_test["dd long"],
species.pts_test["dd lat"],
s=2**2,
c="black",
marker="x",
label="test",
)
plt.legend()
plt.title(species.name)
plt.axis("equal")
# Compute AUC with regards to background points
pred_background = Z[background_points[0], background_points[1]]
pred_test = clf.decision_function((species.cov_test - mean) / std)
scores = np.r_[pred_test, pred_background]
y = np.r_[np.ones(pred_test.shape), np.zeros(pred_background.shape)]
fpr, tpr, thresholds = metrics.roc_curve(y, scores)
roc_auc = metrics.auc(fpr, tpr)
plt.text(-35, -70, "AUC: %.3f" % roc_auc, ha="right")
print("\n Area under the ROC curve : %f" % roc_auc)
print("\ntime elapsed: %.2fs" % (time() - t0))
plot_species_distribution()
plt.show() | python | github | https://github.com/scikit-learn/scikit-learn | examples/applications/plot_species_distribution_modeling.py |
##########################################################################
#
# Copyright (c) 2008-2013, Image Engine Design Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# * Neither the name of Image Engine Design nor the names of any
# other contributors to this software may be used to endorse or
# promote products derived from this software without specific prior
# written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
##########################################################################
import unittest
import IECore
import IECoreRI
import os.path
import os
class DoubleSidedTest( IECoreRI.TestCase ) :
def test( self ) :
r = IECoreRI.Renderer( "test/IECoreRI/output/testDoubleSided.rib" )
self.assertEqual( r.getAttribute( "doubleSided" ), IECore.BoolData( True ) )
r.setAttribute( "doubleSided", IECore.BoolData( False ) )
self.assertEqual( r.getAttribute( "doubleSided" ), IECore.BoolData( False ) )
del r
l = "".join( file( "test/IECoreRI/output/testDoubleSided.rib" ).readlines() )
self.assert_( "Sides 1" in l )
r = IECoreRI.Renderer( "test/IECoreRI/output/testDoubleSided.rib" )
r.setAttribute( "doubleSided", IECore.BoolData( True ) )
del r
l = "".join( file( "test/IECoreRI/output/testDoubleSided.rib" ).readlines() )
self.assert_( "Sides 2" in l )
if __name__ == "__main__":
unittest.main() | unknown | codeparrot/codeparrot-clean | ||
#define USE_THE_REPOSITORY_VARIABLE
#include "git-compat-util.h"
#include "config.h"
#include "environment.h"
#include "gettext.h"
#include "string-list.h"
#include "run-command.h"
#include "commit.h"
#include "trailer.h"
#include "list.h"
/*
* Copyright (c) 2013, 2014 Christian Couder <chriscool@tuxfamily.org>
*/
struct trailer_block {
/*
* True if there is a blank line before the location pointed to by
* "start".
*/
int blank_line_before_trailer;
/*
* The locations of the start and end positions of the trailer block
* found, as offsets from the beginning of the source text from which
* this trailer block was parsed. If no trailer block is found, these
* are both set to 0.
*/
size_t start, end;
/*
* Array of trailers found.
*/
char **trailers;
size_t trailer_nr;
};
struct conf_info {
char *name;
char *key;
char *command;
char *cmd;
enum trailer_where where;
enum trailer_if_exists if_exists;
enum trailer_if_missing if_missing;
};
static struct conf_info default_conf_info;
struct trailer_item {
struct list_head list;
/*
* If this is not a trailer line, the line is stored in value
* (excluding the terminating newline) and token is NULL.
*/
char *token;
char *value;
};
struct arg_item {
struct list_head list;
char *token;
char *value;
struct conf_info conf;
};
static LIST_HEAD(conf_head);
static const char *separators = ":";
static int configured;
#define TRAILER_ARG_STRING "$ARG"
static const char *git_generated_prefixes[] = {
"Signed-off-by: ",
"(cherry picked from commit ",
NULL
};
/* Iterate over the elements of the list. */
#define list_for_each_dir(pos, head, is_reverse) \
for (pos = is_reverse ? (head)->prev : (head)->next; \
pos != (head); \
pos = is_reverse ? pos->prev : pos->next)
static int after_or_end(enum trailer_where where)
{
return (where == WHERE_AFTER) || (where == WHERE_END);
}
/*
* Return the length of the string not including any final
* punctuation. E.g., the input "Signed-off-by:" would return
* 13, stripping the trailing punctuation but retaining
* internal punctuation.
*/
static size_t token_len_without_separator(const char *token, size_t len)
{
while (len > 0 && !isalnum(token[len - 1]))
len--;
return len;
}
static int same_token(struct trailer_item *a, struct arg_item *b)
{
size_t a_len, b_len, min_len;
if (!a->token)
return 0;
a_len = token_len_without_separator(a->token, strlen(a->token));
b_len = token_len_without_separator(b->token, strlen(b->token));
min_len = (a_len > b_len) ? b_len : a_len;
return !strncasecmp(a->token, b->token, min_len);
}
static int same_value(struct trailer_item *a, struct arg_item *b)
{
return !strcasecmp(a->value, b->value);
}
static int same_trailer(struct trailer_item *a, struct arg_item *b)
{
return same_token(a, b) && same_value(a, b);
}
static inline int is_blank_line(const char *str)
{
const char *s = str;
while (*s && *s != '\n' && isspace(*s))
s++;
return !*s || *s == '\n';
}
static inline void strbuf_replace(struct strbuf *sb, const char *a, const char *b)
{
const char *ptr = strstr(sb->buf, a);
if (ptr)
strbuf_splice(sb, ptr - sb->buf, strlen(a), b, strlen(b));
}
static void free_trailer_item(struct trailer_item *item)
{
free(item->token);
free(item->value);
free(item);
}
static void free_arg_item(struct arg_item *item)
{
free(item->conf.name);
free(item->conf.key);
free(item->conf.command);
free(item->conf.cmd);
free(item->token);
free(item->value);
free(item);
}
static char last_non_space_char(const char *s)
{
int i;
for (i = strlen(s) - 1; i >= 0; i--)
if (!isspace(s[i]))
return s[i];
return '\0';
}
static struct trailer_item *trailer_from_arg(struct arg_item *arg_tok)
{
struct trailer_item *new_item = xcalloc(1, sizeof(*new_item));
new_item->token = arg_tok->token;
new_item->value = arg_tok->value;
arg_tok->token = arg_tok->value = NULL;
free_arg_item(arg_tok);
return new_item;
}
static void add_arg_to_input_list(struct trailer_item *on_tok,
struct arg_item *arg_tok)
{
int aoe = after_or_end(arg_tok->conf.where);
struct trailer_item *to_add = trailer_from_arg(arg_tok);
if (aoe)
list_add(&to_add->list, &on_tok->list);
else
list_add_tail(&to_add->list, &on_tok->list);
}
static int check_if_different(struct trailer_item *in_tok,
struct arg_item *arg_tok,
int check_all,
struct list_head *head)
{
enum trailer_where where = arg_tok->conf.where;
struct list_head *next_head;
do {
if (same_trailer(in_tok, arg_tok))
return 0;
/*
* if we want to add a trailer after another one,
* we have to check those before this one
*/
next_head = after_or_end(where) ? in_tok->list.prev
: in_tok->list.next;
if (next_head == head)
break;
in_tok = list_entry(next_head, struct trailer_item, list);
} while (check_all);
return 1;
}
static char *apply_command(struct conf_info *conf, const char *arg)
{
struct strbuf cmd = STRBUF_INIT;
struct strbuf buf = STRBUF_INIT;
struct child_process cp = CHILD_PROCESS_INIT;
char *result;
if (conf->cmd) {
strbuf_addstr(&cmd, conf->cmd);
strvec_push(&cp.args, cmd.buf);
if (arg)
strvec_push(&cp.args, arg);
} else if (conf->command) {
strbuf_addstr(&cmd, conf->command);
if (arg)
strbuf_replace(&cmd, TRAILER_ARG_STRING, arg);
strvec_push(&cp.args, cmd.buf);
}
strvec_pushv(&cp.env, (const char **)local_repo_env);
cp.no_stdin = 1;
cp.use_shell = 1;
if (capture_command(&cp, &buf, 1024)) {
error(_("running trailer command '%s' failed"), cmd.buf);
strbuf_release(&buf);
result = xstrdup("");
} else {
strbuf_trim(&buf);
result = strbuf_detach(&buf, NULL);
}
strbuf_release(&cmd);
return result;
}
static void apply_item_command(struct trailer_item *in_tok, struct arg_item *arg_tok)
{
if (arg_tok->conf.command || arg_tok->conf.cmd) {
char *value_to_free = NULL;
char *arg;
if (arg_tok->value && arg_tok->value[0]) {
arg = arg_tok->value;
} else {
if (in_tok && in_tok->value)
arg = xstrdup(in_tok->value);
else
arg = xstrdup("");
value_to_free = arg_tok->value;
}
arg_tok->value = apply_command(&arg_tok->conf, arg);
free(value_to_free);
free(arg);
}
}
static void apply_arg_if_exists(struct trailer_item *in_tok,
struct arg_item *arg_tok,
struct trailer_item *on_tok,
struct list_head *head)
{
switch (arg_tok->conf.if_exists) {
case EXISTS_DO_NOTHING:
free_arg_item(arg_tok);
break;
case EXISTS_REPLACE:
apply_item_command(in_tok, arg_tok);
add_arg_to_input_list(on_tok, arg_tok);
list_del(&in_tok->list);
free_trailer_item(in_tok);
break;
case EXISTS_ADD:
apply_item_command(in_tok, arg_tok);
add_arg_to_input_list(on_tok, arg_tok);
break;
case EXISTS_ADD_IF_DIFFERENT:
apply_item_command(in_tok, arg_tok);
if (check_if_different(in_tok, arg_tok, 1, head))
add_arg_to_input_list(on_tok, arg_tok);
else
free_arg_item(arg_tok);
break;
case EXISTS_ADD_IF_DIFFERENT_NEIGHBOR:
apply_item_command(in_tok, arg_tok);
if (check_if_different(on_tok, arg_tok, 0, head))
add_arg_to_input_list(on_tok, arg_tok);
else
free_arg_item(arg_tok);
break;
default:
BUG("trailer.c: unhandled value %d",
arg_tok->conf.if_exists);
}
}
static void apply_arg_if_missing(struct list_head *head,
struct arg_item *arg_tok)
{
enum trailer_where where;
struct trailer_item *to_add;
switch (arg_tok->conf.if_missing) {
case MISSING_DO_NOTHING:
free_arg_item(arg_tok);
break;
case MISSING_ADD:
where = arg_tok->conf.where;
apply_item_command(NULL, arg_tok);
to_add = trailer_from_arg(arg_tok);
if (after_or_end(where))
list_add_tail(&to_add->list, head);
else
list_add(&to_add->list, head);
break;
default:
BUG("trailer.c: unhandled value %d",
arg_tok->conf.if_missing);
}
}
static int find_same_and_apply_arg(struct list_head *head,
struct arg_item *arg_tok)
{
struct list_head *pos;
struct trailer_item *in_tok;
struct trailer_item *on_tok;
enum trailer_where where = arg_tok->conf.where;
int middle = (where == WHERE_AFTER) || (where == WHERE_BEFORE);
int backwards = after_or_end(where);
struct trailer_item *start_tok;
if (list_empty(head))
return 0;
start_tok = list_entry(backwards ? head->prev : head->next,
struct trailer_item,
list);
list_for_each_dir(pos, head, backwards) {
in_tok = list_entry(pos, struct trailer_item, list);
if (!same_token(in_tok, arg_tok))
continue;
on_tok = middle ? in_tok : start_tok;
apply_arg_if_exists(in_tok, arg_tok, on_tok, head);
return 1;
}
return 0;
}
void process_trailers_lists(struct list_head *head,
struct list_head *arg_head)
{
struct list_head *pos, *p;
struct arg_item *arg_tok;
list_for_each_safe(pos, p, arg_head) {
int applied = 0;
arg_tok = list_entry(pos, struct arg_item, list);
list_del(pos);
applied = find_same_and_apply_arg(head, arg_tok);
if (!applied)
apply_arg_if_missing(head, arg_tok);
}
}
int trailer_set_where(enum trailer_where *item, const char *value)
{
if (!value)
*item = WHERE_DEFAULT;
else if (!strcasecmp("after", value))
*item = WHERE_AFTER;
else if (!strcasecmp("before", value))
*item = WHERE_BEFORE;
else if (!strcasecmp("end", value))
*item = WHERE_END;
else if (!strcasecmp("start", value))
*item = WHERE_START;
else
return -1;
return 0;
}
int trailer_set_if_exists(enum trailer_if_exists *item, const char *value)
{
if (!value)
*item = EXISTS_DEFAULT;
else if (!strcasecmp("addIfDifferent", value))
*item = EXISTS_ADD_IF_DIFFERENT;
else if (!strcasecmp("addIfDifferentNeighbor", value))
*item = EXISTS_ADD_IF_DIFFERENT_NEIGHBOR;
else if (!strcasecmp("add", value))
*item = EXISTS_ADD;
else if (!strcasecmp("replace", value))
*item = EXISTS_REPLACE;
else if (!strcasecmp("doNothing", value))
*item = EXISTS_DO_NOTHING;
else
return -1;
return 0;
}
int trailer_set_if_missing(enum trailer_if_missing *item, const char *value)
{
if (!value)
*item = MISSING_DEFAULT;
else if (!strcasecmp("doNothing", value))
*item = MISSING_DO_NOTHING;
else if (!strcasecmp("add", value))
*item = MISSING_ADD;
else
return -1;
return 0;
}
static void duplicate_conf(struct conf_info *dst, const struct conf_info *src)
{
*dst = *src;
dst->name = xstrdup_or_null(src->name);
dst->key = xstrdup_or_null(src->key);
dst->command = xstrdup_or_null(src->command);
dst->cmd = xstrdup_or_null(src->cmd);
}
static struct arg_item *get_conf_item(const char *name)
{
struct list_head *pos;
struct arg_item *item;
/* Look up item with same name */
list_for_each(pos, &conf_head) {
item = list_entry(pos, struct arg_item, list);
if (!strcasecmp(item->conf.name, name))
return item;
}
/* Item does not already exists, create it */
CALLOC_ARRAY(item, 1);
duplicate_conf(&item->conf, &default_conf_info);
item->conf.name = xstrdup(name);
list_add_tail(&item->list, &conf_head);
return item;
}
enum trailer_info_type { TRAILER_KEY, TRAILER_COMMAND, TRAILER_CMD,
TRAILER_WHERE, TRAILER_IF_EXISTS, TRAILER_IF_MISSING };
static struct {
const char *name;
enum trailer_info_type type;
} trailer_config_items[] = {
{ "key", TRAILER_KEY },
{ "command", TRAILER_COMMAND },
{ "cmd", TRAILER_CMD },
{ "where", TRAILER_WHERE },
{ "ifexists", TRAILER_IF_EXISTS },
{ "ifmissing", TRAILER_IF_MISSING }
};
static int git_trailer_default_config(const char *conf_key, const char *value,
const struct config_context *ctx UNUSED,
void *cb UNUSED)
{
const char *trailer_item, *variable_name;
if (!skip_prefix(conf_key, "trailer.", &trailer_item))
return 0;
variable_name = strrchr(trailer_item, '.');
if (!variable_name) {
if (!strcmp(trailer_item, "where")) {
if (trailer_set_where(&default_conf_info.where,
value) < 0)
warning(_("unknown value '%s' for key '%s'"),
value, conf_key);
} else if (!strcmp(trailer_item, "ifexists")) {
if (trailer_set_if_exists(&default_conf_info.if_exists,
value) < 0)
warning(_("unknown value '%s' for key '%s'"),
value, conf_key);
} else if (!strcmp(trailer_item, "ifmissing")) {
if (trailer_set_if_missing(&default_conf_info.if_missing,
value) < 0)
warning(_("unknown value '%s' for key '%s'"),
value, conf_key);
} else if (!strcmp(trailer_item, "separators")) {
if (!value)
return config_error_nonbool(conf_key);
separators = xstrdup(value);
}
}
return 0;
}
static int git_trailer_config(const char *conf_key, const char *value,
const struct config_context *ctx UNUSED,
void *cb UNUSED)
{
const char *trailer_item, *variable_name;
struct arg_item *item;
struct conf_info *conf;
char *name = NULL;
enum trailer_info_type type;
if (!skip_prefix(conf_key, "trailer.", &trailer_item))
return 0;
variable_name = strrchr(trailer_item, '.');
if (!variable_name)
return 0;
variable_name++;
for (size_t i = 0; i < ARRAY_SIZE(trailer_config_items); i++) {
if (strcmp(trailer_config_items[i].name, variable_name))
continue;
name = xstrndup(trailer_item, variable_name - trailer_item - 1);
type = trailer_config_items[i].type;
break;
}
if (!name)
return 0;
item = get_conf_item(name);
conf = &item->conf;
free(name);
switch (type) {
case TRAILER_KEY:
if (conf->key)
warning(_("more than one %s"), conf_key);
if (!value)
return config_error_nonbool(conf_key);
conf->key = xstrdup(value);
break;
case TRAILER_COMMAND:
if (conf->command)
warning(_("more than one %s"), conf_key);
if (!value)
return config_error_nonbool(conf_key);
conf->command = xstrdup(value);
break;
case TRAILER_CMD:
if (conf->cmd)
warning(_("more than one %s"), conf_key);
if (!value)
return config_error_nonbool(conf_key);
conf->cmd = xstrdup(value);
break;
case TRAILER_WHERE:
if (trailer_set_where(&conf->where, value))
warning(_("unknown value '%s' for key '%s'"), value, conf_key);
break;
case TRAILER_IF_EXISTS:
if (trailer_set_if_exists(&conf->if_exists, value))
warning(_("unknown value '%s' for key '%s'"), value, conf_key);
break;
case TRAILER_IF_MISSING:
if (trailer_set_if_missing(&conf->if_missing, value))
warning(_("unknown value '%s' for key '%s'"), value, conf_key);
break;
default:
BUG("trailer.c: unhandled type %d", type);
}
return 0;
}
void trailer_config_init(void)
{
if (configured)
return;
/* Default config must be setup first */
default_conf_info.where = WHERE_END;
default_conf_info.if_exists = EXISTS_ADD_IF_DIFFERENT_NEIGHBOR;
default_conf_info.if_missing = MISSING_ADD;
repo_config(the_repository, git_trailer_default_config, NULL);
repo_config(the_repository, git_trailer_config, NULL);
configured = 1;
}
static const char *token_from_item(struct arg_item *item, char *tok)
{
if (item->conf.key)
return item->conf.key;
if (tok)
return tok;
return item->conf.name;
}
static int token_matches_item(const char *tok, struct arg_item *item, size_t tok_len)
{
if (!strncasecmp(tok, item->conf.name, tok_len))
return 1;
return item->conf.key ? !strncasecmp(tok, item->conf.key, tok_len) : 0;
}
/*
* If the given line is of the form
* "<token><optional whitespace><separator>..." or "<separator>...", return the
* location of the separator. Otherwise, return -1. The optional whitespace
* is allowed there primarily to allow things like "Bug #43" where <token> is
* "Bug" and <separator> is "#".
*
* The separator-starts-line case (in which this function returns 0) is
* distinguished from the non-well-formed-line case (in which this function
* returns -1) because some callers of this function need such a distinction.
*/
static ssize_t find_separator(const char *line, const char *separators)
{
int whitespace_found = 0;
const char *c;
for (c = line; *c; c++) {
if (strchr(separators, *c))
return c - line;
if (!whitespace_found && (isalnum(*c) || *c == '-'))
continue;
if (c != line && (*c == ' ' || *c == '\t')) {
whitespace_found = 1;
continue;
}
break;
}
return -1;
}
/*
* Obtain the token, value, and conf from the given trailer.
*
* separator_pos must not be 0, since the token cannot be an empty string.
*
* If separator_pos is -1, interpret the whole trailer as a token.
*/
static void parse_trailer(struct strbuf *tok, struct strbuf *val,
const struct conf_info **conf, const char *trailer,
ssize_t separator_pos)
{
struct arg_item *item;
size_t tok_len;
struct list_head *pos;
if (separator_pos != -1) {
strbuf_add(tok, trailer, separator_pos);
strbuf_trim(tok);
strbuf_addstr(val, trailer + separator_pos + 1);
strbuf_trim(val);
} else {
strbuf_addstr(tok, trailer);
strbuf_trim(tok);
}
/* Lookup if the token matches something in the config */
tok_len = token_len_without_separator(tok->buf, tok->len);
if (conf)
*conf = &default_conf_info;
list_for_each(pos, &conf_head) {
item = list_entry(pos, struct arg_item, list);
if (token_matches_item(tok->buf, item, tok_len)) {
char *tok_buf = strbuf_detach(tok, NULL);
if (conf)
*conf = &item->conf;
strbuf_addstr(tok, token_from_item(item, tok_buf));
free(tok_buf);
break;
}
}
}
static struct trailer_item *add_trailer_item(struct list_head *head, char *tok,
char *val)
{
struct trailer_item *new_item = xcalloc(1, sizeof(*new_item));
new_item->token = tok;
new_item->value = val;
list_add_tail(&new_item->list, head);
return new_item;
}
static void add_arg_item(struct list_head *arg_head, char *tok, char *val,
const struct conf_info *conf,
const struct new_trailer_item *new_trailer_item)
{
struct arg_item *new_item = xcalloc(1, sizeof(*new_item));
new_item->token = tok;
new_item->value = val;
duplicate_conf(&new_item->conf, conf);
if (new_trailer_item) {
if (new_trailer_item->where != WHERE_DEFAULT)
new_item->conf.where = new_trailer_item->where;
if (new_trailer_item->if_exists != EXISTS_DEFAULT)
new_item->conf.if_exists = new_trailer_item->if_exists;
if (new_trailer_item->if_missing != MISSING_DEFAULT)
new_item->conf.if_missing = new_trailer_item->if_missing;
}
list_add_tail(&new_item->list, arg_head);
}
void parse_trailers_from_config(struct list_head *config_head)
{
struct arg_item *item;
struct list_head *pos;
/* Add an arg item for each configured trailer with a command */
list_for_each(pos, &conf_head) {
item = list_entry(pos, struct arg_item, list);
if (item->conf.command)
add_arg_item(config_head,
xstrdup(token_from_item(item, NULL)),
xstrdup(""),
&item->conf, NULL);
}
}
void parse_trailers_from_command_line_args(struct list_head *arg_head,
struct list_head *new_trailer_head)
{
struct strbuf tok = STRBUF_INIT;
struct strbuf val = STRBUF_INIT;
const struct conf_info *conf;
struct list_head *pos;
/*
* In command-line arguments, '=' is accepted (in addition to the
* separators that are defined).
*/
char *cl_separators = xstrfmt("=%s", separators);
/* Add an arg item for each trailer on the command line */
list_for_each(pos, new_trailer_head) {
struct new_trailer_item *tr =
list_entry(pos, struct new_trailer_item, list);
ssize_t separator_pos = find_separator(tr->text, cl_separators);
if (separator_pos == 0) {
struct strbuf sb = STRBUF_INIT;
strbuf_addstr(&sb, tr->text);
strbuf_trim(&sb);
error(_("empty trailer token in trailer '%.*s'"),
(int) sb.len, sb.buf);
strbuf_release(&sb);
} else {
parse_trailer(&tok, &val, &conf, tr->text,
separator_pos);
add_arg_item(arg_head,
strbuf_detach(&tok, NULL),
strbuf_detach(&val, NULL),
conf, tr);
}
}
free(cl_separators);
}
static const char *next_line(const char *str)
{
const char *nl = strchrnul(str, '\n');
return nl + !!*nl;
}
/*
* Return the position of the start of the last line. If len is 0, return -1.
*/
static ssize_t last_line(const char *buf, size_t len)
{
ssize_t i;
if (len == 0)
return -1;
if (len == 1)
return 0;
/*
* Skip the last character (in addition to the null terminator),
* because if the last character is a newline, it is considered as part
* of the last line anyway.
*/
i = len - 2;
for (; i >= 0; i--) {
if (buf[i] == '\n')
return i + 1;
}
return 0;
}
/*
* Find the end of the log message as an offset from the start of the input
* (where callers of this function are interested in looking for a trailers
* block in the same input). We have to consider two categories of content that
* can come at the end of the input which we want to ignore (because they don't
* belong in the log message):
*
* (1) the "patch part" which begins with a "---" divider and has patch
* information (like the output of git-format-patch), and
*
* (2) any trailing comment lines, blank lines like in the output of "git
* commit -v", or stuff below the "cut" (scissor) line.
*
* As a formula, the situation looks like this:
*
* INPUT = LOG MESSAGE + IGNORED
*
* where IGNORED can be either of the two categories described above. It may be
* that there is nothing to ignore. Now it may be the case that the LOG MESSAGE
* contains a trailer block, but that's not the concern of this function.
*/
static size_t find_end_of_log_message(const char *input, int no_divider)
{
size_t end;
const char *s;
/* Assume the naive end of the input is already what we want. */
end = strlen(input);
/* Optionally skip over any patch part ("---" line and below). */
if (!no_divider) {
for (s = input; *s; s = next_line(s)) {
const char *v;
if (skip_prefix(s, "---", &v) && isspace(*v)) {
end = s - input;
break;
}
}
}
/* Skip over other ignorable bits. */
return end - ignored_log_message_bytes(input, end);
}
/*
* Return the position of the first trailer line or len if there are no
* trailers.
*/
static size_t find_trailer_block_start(const char *buf, size_t len)
{
const char *s;
ssize_t end_of_title, l;
int only_spaces = 1;
int recognized_prefix = 0, trailer_lines = 0, non_trailer_lines = 0;
/*
* Number of possible continuation lines encountered. This will be
* reset to 0 if we encounter a trailer (since those lines are to be
* considered continuations of that trailer), and added to
* non_trailer_lines if we encounter a non-trailer (since those lines
* are to be considered non-trailers).
*/
int possible_continuation_lines = 0;
/* The first paragraph is the title and cannot be trailers */
for (s = buf; s < buf + len; s = next_line(s)) {
if (starts_with_mem(s, buf + len - s, comment_line_str))
continue;
if (is_blank_line(s))
break;
}
end_of_title = s - buf;
/*
* Get the start of the trailers by looking starting from the end for a
* blank line before a set of non-blank lines that (i) are all
* trailers, or (ii) contains at least one Git-generated trailer and
* consists of at least 25% trailers.
*/
for (l = last_line(buf, len);
l >= end_of_title;
l = last_line(buf, l)) {
const char *bol = buf + l;
const char **p;
ssize_t separator_pos;
if (starts_with_mem(bol, buf + len - bol, comment_line_str)) {
non_trailer_lines += possible_continuation_lines;
possible_continuation_lines = 0;
continue;
}
if (is_blank_line(bol)) {
if (only_spaces)
continue;
non_trailer_lines += possible_continuation_lines;
if (recognized_prefix &&
trailer_lines * 3 >= non_trailer_lines)
return next_line(bol) - buf;
else if (trailer_lines && !non_trailer_lines)
return next_line(bol) - buf;
return len;
}
only_spaces = 0;
for (p = git_generated_prefixes; *p; p++) {
if (starts_with(bol, *p)) {
trailer_lines++;
possible_continuation_lines = 0;
recognized_prefix = 1;
goto continue_outer_loop;
}
}
separator_pos = find_separator(bol, separators);
if (separator_pos >= 1 && !isspace(bol[0])) {
struct list_head *pos;
trailer_lines++;
possible_continuation_lines = 0;
if (recognized_prefix)
continue;
list_for_each(pos, &conf_head) {
struct arg_item *item;
item = list_entry(pos, struct arg_item, list);
if (token_matches_item(bol, item,
separator_pos)) {
recognized_prefix = 1;
break;
}
}
} else if (isspace(bol[0]))
possible_continuation_lines++;
else {
non_trailer_lines++;
non_trailer_lines += possible_continuation_lines;
possible_continuation_lines = 0;
}
continue_outer_loop:
;
}
return len;
}
static int ends_with_blank_line(const char *buf, size_t len)
{
ssize_t ll = last_line(buf, len);
if (ll < 0)
return 0;
return is_blank_line(buf + ll);
}
static void unfold_value(struct strbuf *val)
{
struct strbuf out = STRBUF_INIT;
size_t i;
strbuf_grow(&out, val->len);
i = 0;
while (i < val->len) {
char c = val->buf[i++];
if (c == '\n') {
/* Collapse continuation down to a single space. */
while (i < val->len && isspace(val->buf[i]))
i++;
strbuf_addch(&out, ' ');
} else {
strbuf_addch(&out, c);
}
}
/* Empty lines may have left us with whitespace cruft at the edges */
strbuf_trim(&out);
/* output goes back to val as if we modified it in-place */
strbuf_swap(&out, val);
strbuf_release(&out);
}
static struct trailer_block *trailer_block_new(void)
{
struct trailer_block *trailer_block = xcalloc(1, sizeof(*trailer_block));
return trailer_block;
}
static struct trailer_block *trailer_block_get(const struct process_trailer_options *opts,
const char *str)
{
struct trailer_block *trailer_block = trailer_block_new();
size_t end_of_log_message = 0, trailer_block_start = 0;
struct strbuf **trailer_lines, **ptr;
char **trailer_strings = NULL;
size_t nr = 0, alloc = 0;
char **last = NULL;
trailer_config_init();
end_of_log_message = find_end_of_log_message(str, opts->no_divider);
trailer_block_start = find_trailer_block_start(str, end_of_log_message);
trailer_lines = strbuf_split_buf(str + trailer_block_start,
end_of_log_message - trailer_block_start,
'\n',
0);
for (ptr = trailer_lines; *ptr; ptr++) {
if (last && isspace((*ptr)->buf[0])) {
struct strbuf sb = STRBUF_INIT;
strbuf_attach(&sb, *last, strlen(*last), strlen(*last));
strbuf_addbuf(&sb, *ptr);
*last = strbuf_detach(&sb, NULL);
continue;
}
ALLOC_GROW(trailer_strings, nr + 1, alloc);
trailer_strings[nr] = strbuf_detach(*ptr, NULL);
last = find_separator(trailer_strings[nr], separators) >= 1
? &trailer_strings[nr]
: NULL;
nr++;
}
strbuf_list_free(trailer_lines);
trailer_block->blank_line_before_trailer = ends_with_blank_line(str,
trailer_block_start);
trailer_block->start = trailer_block_start;
trailer_block->end = end_of_log_message;
trailer_block->trailers = trailer_strings;
trailer_block->trailer_nr = nr;
return trailer_block;
}
/*
* Parse trailers in "str", populating the trailer_block and "trailer_objects"
* linked list structure.
*/
struct trailer_block *parse_trailers(const struct process_trailer_options *opts,
const char *str,
struct list_head *trailer_objects)
{
struct trailer_block *trailer_block;
struct strbuf tok = STRBUF_INIT;
struct strbuf val = STRBUF_INIT;
size_t i;
trailer_block = trailer_block_get(opts, str);
for (i = 0; i < trailer_block->trailer_nr; i++) {
int separator_pos;
char *trailer = trailer_block->trailers[i];
if (starts_with(trailer, comment_line_str))
continue;
separator_pos = find_separator(trailer, separators);
if (separator_pos >= 1) {
parse_trailer(&tok, &val, NULL, trailer,
separator_pos);
if (opts->unfold)
unfold_value(&val);
add_trailer_item(trailer_objects,
strbuf_detach(&tok, NULL),
strbuf_detach(&val, NULL));
} else if (!opts->only_trailers) {
strbuf_addstr(&val, trailer);
strbuf_strip_suffix(&val, "\n");
add_trailer_item(trailer_objects,
NULL,
strbuf_detach(&val, NULL));
}
}
return trailer_block;
}
void free_trailers(struct list_head *trailers)
{
struct list_head *pos, *p;
list_for_each_safe(pos, p, trailers) {
list_del(pos);
free_trailer_item(list_entry(pos, struct trailer_item, list));
}
}
size_t trailer_block_start(struct trailer_block *trailer_block)
{
return trailer_block->start;
}
size_t trailer_block_end(struct trailer_block *trailer_block)
{
return trailer_block->end;
}
int blank_line_before_trailer_block(struct trailer_block *trailer_block)
{
return trailer_block->blank_line_before_trailer;
}
void trailer_block_release(struct trailer_block *trailer_block)
{
size_t i;
for (i = 0; i < trailer_block->trailer_nr; i++)
free(trailer_block->trailers[i]);
free(trailer_block->trailers);
free(trailer_block);
}
void format_trailers(const struct process_trailer_options *opts,
struct list_head *trailers,
struct strbuf *out)
{
struct strbuf tok = STRBUF_INIT;
struct strbuf val = STRBUF_INIT;
size_t origlen = out->len;
struct list_head *pos;
struct trailer_item *item;
list_for_each(pos, trailers) {
item = list_entry(pos, struct trailer_item, list);
if (item->token) {
strbuf_reset(&tok);
strbuf_addstr(&tok, item->token);
strbuf_reset(&val);
strbuf_addstr(&val, item->value);
/*
* Skip key/value pairs where the value was empty. This
* can happen from trailers specified without a
* separator, like `--trailer "Reviewed-by"` (no
* corresponding value).
*/
if (opts->trim_empty && !strlen(item->value))
continue;
if (!opts->filter || opts->filter(&tok, opts->filter_data)) {
if (opts->separator && out->len != origlen)
strbuf_addbuf(out, opts->separator);
if (!opts->value_only)
strbuf_addbuf(out, &tok);
if (!opts->key_only && !opts->value_only) {
if (opts->key_value_separator)
strbuf_addbuf(out, opts->key_value_separator);
else {
char c = last_non_space_char(tok.buf);
if (c && !strchr(separators, c))
strbuf_addf(out, "%c ", separators[0]);
}
}
if (!opts->key_only)
strbuf_addbuf(out, &val);
if (!opts->separator)
strbuf_addch(out, '\n');
}
} else if (!opts->only_trailers) {
if (opts->separator && out->len != origlen) {
strbuf_addbuf(out, opts->separator);
}
strbuf_addstr(out, item->value);
if (opts->separator)
strbuf_rtrim(out);
else
strbuf_addch(out, '\n');
}
}
strbuf_release(&tok);
strbuf_release(&val);
}
void format_trailers_from_commit(const struct process_trailer_options *opts,
const char *msg,
struct strbuf *out)
{
LIST_HEAD(trailer_objects);
struct trailer_block *trailer_block = parse_trailers(opts, msg, &trailer_objects);
/* If we want the whole block untouched, we can take the fast path. */
if (!opts->only_trailers && !opts->unfold && !opts->filter &&
!opts->separator && !opts->key_only && !opts->value_only &&
!opts->key_value_separator) {
strbuf_add(out, msg + trailer_block->start,
trailer_block->end - trailer_block->start);
} else
format_trailers(opts, &trailer_objects, out);
free_trailers(&trailer_objects);
trailer_block_release(trailer_block);
}
void trailer_iterator_init(struct trailer_iterator *iter, const char *msg)
{
struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
strbuf_init(&iter->key, 0);
strbuf_init(&iter->val, 0);
opts.no_divider = 1;
iter->internal.trailer_block = trailer_block_get(&opts, msg);
iter->internal.cur = 0;
}
int trailer_iterator_advance(struct trailer_iterator *iter)
{
if (iter->internal.cur < iter->internal.trailer_block->trailer_nr) {
char *line = iter->internal.trailer_block->trailers[iter->internal.cur++];
int separator_pos = find_separator(line, separators);
iter->raw = line;
strbuf_reset(&iter->key);
strbuf_reset(&iter->val);
parse_trailer(&iter->key, &iter->val, NULL,
line, separator_pos);
/* Always unfold values during iteration. */
unfold_value(&iter->val);
return 1;
}
return 0;
}
void trailer_iterator_release(struct trailer_iterator *iter)
{
trailer_block_release(iter->internal.trailer_block);
strbuf_release(&iter->val);
strbuf_release(&iter->key);
}
int amend_file_with_trailers(const char *path, const struct strvec *trailer_args)
{
struct child_process run_trailer = CHILD_PROCESS_INIT;
run_trailer.git_cmd = 1;
strvec_pushl(&run_trailer.args, "interpret-trailers",
"--in-place", "--no-divider",
path, NULL);
strvec_pushv(&run_trailer.args, trailer_args->v);
return run_command(&run_trailer);
} | c | github | https://github.com/git/git | trailer.c |
"""
Testing indexing of the courseware as it is changed
"""
import ddt
import json
from lazy.lazy import lazy
import time
from datetime import datetime
from dateutil.tz import tzutc
from mock import patch, call
from pytz import UTC
from uuid import uuid4
from unittest import skip
from django.conf import settings
from course_modes.models import CourseMode
from xmodule.library_tools import normalize_key_for_search
from xmodule.modulestore import ModuleStoreEnum
from xmodule.modulestore.django import SignalHandler
from xmodule.modulestore.edit_info import EditInfoMixin
from xmodule.modulestore.exceptions import ItemNotFoundError
from xmodule.modulestore.inheritance import InheritanceMixin
from xmodule.modulestore.mixed import MixedModuleStore
from xmodule.modulestore.tests.django_utils import (
ModuleStoreTestCase,
TEST_DATA_MONGO_MODULESTORE,
TEST_DATA_SPLIT_MODULESTORE
)
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory, LibraryFactory
from xmodule.modulestore.tests.mongo_connection import MONGO_PORT_NUM, MONGO_HOST
from xmodule.modulestore.tests.test_cross_modulestore_import_export import MongoContentstoreBuilder
from xmodule.modulestore.tests.utils import create_modulestore_instance, LocationMixin, MixedSplitTestCase
from xmodule.tests import DATA_DIR
from xmodule.x_module import XModuleMixin
from xmodule.partitions.partitions import UserPartition
from search.search_engine_base import SearchEngine
from contentstore.courseware_index import (
CoursewareSearchIndexer,
LibrarySearchIndexer,
SearchIndexingError,
CourseAboutSearchIndexer,
)
from contentstore.signals import listen_for_course_publish, listen_for_library_update
from contentstore.utils import reverse_course_url, reverse_usage_url
from contentstore.tests.utils import CourseTestCase
COURSE_CHILD_STRUCTURE = {
"course": "chapter",
"chapter": "sequential",
"sequential": "vertical",
"vertical": "html",
}
def create_children(store, parent, category, load_factor):
""" create load_factor children within the given parent; recursively call to insert children when appropriate """
created_count = 0
for child_index in range(load_factor):
child_object = ItemFactory.create(
parent_location=parent.location,
category=category,
display_name=u"{} {} {}".format(category, child_index, time.clock()),
modulestore=store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
created_count += 1
if category in COURSE_CHILD_STRUCTURE:
created_count += create_children(store, child_object, COURSE_CHILD_STRUCTURE[category], load_factor)
return created_count
def create_large_course(store, load_factor):
"""
Create a large course, note that the number of blocks created will be
load_factor ^ 4 - e.g. load_factor of 10 => 10 chapters, 100
sequentials, 1000 verticals, 10000 html blocks
"""
course = CourseFactory.create(modulestore=store, start=datetime(2015, 3, 1, tzinfo=UTC))
with store.bulk_operations(course.id):
child_count = create_children(store, course, COURSE_CHILD_STRUCTURE["course"], load_factor)
return course, child_count
class MixedWithOptionsTestCase(MixedSplitTestCase):
""" Base class for test cases within this file """
HOST = MONGO_HOST
PORT = MONGO_PORT_NUM
DATABASE = 'test_mongo_%s' % uuid4().hex[:5]
COLLECTION = 'modulestore'
ASSET_COLLECTION = 'assetstore'
DEFAULT_CLASS = 'xmodule.raw_module.RawDescriptor'
RENDER_TEMPLATE = lambda t_n, d, ctx=None, nsp='main': ''
modulestore_options = {
'default_class': DEFAULT_CLASS,
'fs_root': DATA_DIR,
'render_template': RENDER_TEMPLATE,
'xblock_mixins': (EditInfoMixin, InheritanceMixin, LocationMixin, XModuleMixin),
}
DOC_STORE_CONFIG = {
'host': HOST,
'port': PORT,
'db': DATABASE,
'collection': COLLECTION,
'asset_collection': ASSET_COLLECTION,
}
OPTIONS = {
'stores': [
{
'NAME': 'draft',
'ENGINE': 'xmodule.modulestore.mongo.draft.DraftModuleStore',
'DOC_STORE_CONFIG': DOC_STORE_CONFIG,
'OPTIONS': modulestore_options
},
{
'NAME': 'split',
'ENGINE': 'xmodule.modulestore.split_mongo.split_draft.DraftVersioningModuleStore',
'DOC_STORE_CONFIG': DOC_STORE_CONFIG,
'OPTIONS': modulestore_options
},
{
'NAME': 'xml',
'ENGINE': 'xmodule.modulestore.xml.XMLModuleStore',
'OPTIONS': {
'data_dir': DATA_DIR,
'default_class': 'xmodule.hidden_module.HiddenDescriptor',
'xblock_mixins': modulestore_options['xblock_mixins'],
}
},
],
'xblock_mixins': modulestore_options['xblock_mixins'],
}
INDEX_NAME = None
DOCUMENT_TYPE = None
def setUp(self):
super(MixedWithOptionsTestCase, self).setUp()
def setup_course_base(self, store):
""" base version of setup_course_base is a no-op """
pass
@lazy
def searcher(self):
""" Centralized call to getting the search engine for the test """
return SearchEngine.get_search_engine(self.INDEX_NAME)
def _get_default_search(self):
""" Returns field_dictionary for default search """
return {}
def search(self, field_dictionary=None, query_string=None):
""" Performs index search according to passed parameters """
fields = field_dictionary if field_dictionary else self._get_default_search()
return self.searcher.search(query_string=query_string, field_dictionary=fields, doc_type=self.DOCUMENT_TYPE)
def _perform_test_using_store(self, store_type, test_to_perform):
""" Helper method to run a test function that uses a specific store """
with MongoContentstoreBuilder().build() as contentstore:
store = MixedModuleStore(
contentstore=contentstore,
create_modulestore_instance=create_modulestore_instance,
mappings={},
**self.OPTIONS
)
self.addCleanup(store.close_all_connections)
with store.default_store(store_type):
self.setup_course_base(store)
test_to_perform(store)
def publish_item(self, store, item_location):
""" publish the item at the given location """
with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred):
store.publish(item_location, ModuleStoreEnum.UserID.test)
def delete_item(self, store, item_location):
""" delete the item at the given location """
with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred):
store.delete_item(item_location, ModuleStoreEnum.UserID.test)
def update_item(self, store, item):
""" update the item at the given location """
with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred):
store.update_item(item, ModuleStoreEnum.UserID.test)
def update_about_item(self, store, about_key, data):
"""
Update the about item with the new data blob. If data is None, then
delete the about item.
"""
temploc = self.course.id.make_usage_key('about', about_key)
if data is None:
try:
self.delete_item(store, temploc)
# Ignore an attempt to delete an item that doesn't exist
except ValueError:
pass
else:
try:
about_item = store.get_item(temploc)
except ItemNotFoundError:
about_item = store.create_xblock(self.course.runtime, self.course.id, 'about', about_key)
about_item.data = data
store.update_item(about_item, ModuleStoreEnum.UserID.test, allow_not_found=True)
@ddt.ddt
class TestCoursewareSearchIndexer(MixedWithOptionsTestCase):
""" Tests the operation of the CoursewareSearchIndexer """
WORKS_WITH_STORES = (ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split)
def setUp(self):
super(TestCoursewareSearchIndexer, self).setUp()
self.course = None
self.chapter = None
self.sequential = None
self.vertical = None
self.html_unit = None
def setup_course_base(self, store):
"""
Set up the for the course outline tests.
"""
self.course = CourseFactory.create(
modulestore=store,
start=datetime(2015, 3, 1, tzinfo=UTC),
display_name="Search Index Test Course"
)
self.chapter = ItemFactory.create(
parent_location=self.course.location,
category='chapter',
display_name="Week 1",
modulestore=store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.sequential = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name="Lesson 1",
modulestore=store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.vertical = ItemFactory.create(
parent_location=self.sequential.location,
category='vertical',
display_name='Subsection 1',
modulestore=store,
publish_item=True,
start=datetime(2015, 4, 1, tzinfo=UTC),
)
# unspecified start - should inherit from container
self.html_unit = ItemFactory.create(
parent_location=self.vertical.location,
category="html",
display_name="Html Content",
modulestore=store,
publish_item=False,
)
INDEX_NAME = CoursewareSearchIndexer.INDEX_NAME
DOCUMENT_TYPE = CoursewareSearchIndexer.DOCUMENT_TYPE
def reindex_course(self, store):
""" kick off complete reindex of the course """
return CoursewareSearchIndexer.do_course_reindex(store, self.course.id)
def index_recent_changes(self, store, since_time):
""" index course using recent changes """
trigger_time = datetime.now(UTC)
return CoursewareSearchIndexer.index(
store,
self.course.id,
triggered_at=trigger_time,
reindex_age=(trigger_time - since_time)
)
def _get_default_search(self):
return {"course": unicode(self.course.id)}
def _test_indexing_course(self, store):
""" indexing course tests """
response = self.search()
self.assertEqual(response["total"], 0)
# Only published modules should be in the index
added_to_index = self.reindex_course(store)
self.assertEqual(added_to_index, 3)
response = self.search()
self.assertEqual(response["total"], 3)
# Publish the vertical as is, and any unpublished children should now be available
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
def _test_not_indexing_unpublished_content(self, store):
""" add a new one, only appers in index once added """
# Publish the vertical to start with
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# Now add a new unit to the existing vertical
ItemFactory.create(
parent_location=self.vertical.location,
category="html",
display_name="Some other content",
publish_item=False,
modulestore=store,
)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# Now publish it and we should find it
# Publish the vertical as is, and everything should be available
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 5)
def _test_deleting_item(self, store):
""" test deleting an item """
# Publish the vertical to start with
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# just a delete should not change anything
self.delete_item(store, self.html_unit.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# but after publishing, we should no longer find the html_unit
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 3)
def _test_not_indexable(self, store):
""" test not indexable items """
# Publish the vertical to start with
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# Add a non-indexable item
ItemFactory.create(
parent_location=self.vertical.location,
category="openassessment",
display_name="Some other content",
publish_item=False,
modulestore=store,
)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
# even after publishing, we should not find the non-indexable item
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
def _test_start_date_propagation(self, store):
""" make sure that the start date is applied at the right level """
early_date = self.course.start
later_date = self.vertical.start
# Publish the vertical
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search()
self.assertEqual(response["total"], 4)
results = response["results"]
date_map = {
unicode(self.chapter.location): early_date,
unicode(self.sequential.location): early_date,
unicode(self.vertical.location): later_date,
unicode(self.html_unit.location): later_date,
}
for result in results:
self.assertEqual(result["data"]["start_date"], date_map[result["data"]["id"]])
@patch('django.conf.settings.SEARCH_ENGINE', None)
def _test_search_disabled(self, store):
""" if search setting has it as off, confirm that nothing is indexed """
indexed_count = self.reindex_course(store)
self.assertFalse(indexed_count)
def _test_time_based_index(self, store):
""" Make sure that a time based request to index does not index anything too old """
self.publish_item(store, self.vertical.location)
indexed_count = self.reindex_course(store)
self.assertEqual(indexed_count, 4)
# Add a new sequential
sequential2 = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name='Section 2',
modulestore=store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
# add a new vertical
vertical2 = ItemFactory.create(
parent_location=sequential2.location,
category='vertical',
display_name='Subsection 2',
modulestore=store,
publish_item=True,
)
ItemFactory.create(
parent_location=vertical2.location,
category="html",
display_name="Some other content",
publish_item=False,
modulestore=store,
)
before_time = datetime.now(UTC)
self.publish_item(store, vertical2.location)
# index based on time, will include an index of the origin sequential
# because it is in a common subtree but not of the original vertical
# because the original sequential's subtree is too old
new_indexed_count = self.index_recent_changes(store, before_time)
self.assertEqual(new_indexed_count, 5)
# full index again
indexed_count = self.reindex_course(store)
self.assertEqual(indexed_count, 7)
def _test_course_about_property_index(self, store):
""" Test that informational properties in the course object end up in the course_info index """
display_name = "Help, I need somebody!"
self.course.display_name = display_name
self.update_item(store, self.course)
self.reindex_course(store)
response = self.searcher.search(
doc_type=CourseAboutSearchIndexer.DISCOVERY_DOCUMENT_TYPE,
field_dictionary={"course": unicode(self.course.id)}
)
self.assertEqual(response["total"], 1)
self.assertEqual(response["results"][0]["data"]["content"]["display_name"], display_name)
def _test_course_about_store_index(self, store):
""" Test that informational properties in the about store end up in the course_info index """
short_description = "Not just anybody"
self.update_about_item(store, "short_description", short_description)
self.reindex_course(store)
response = self.searcher.search(
doc_type=CourseAboutSearchIndexer.DISCOVERY_DOCUMENT_TYPE,
field_dictionary={"course": unicode(self.course.id)}
)
self.assertEqual(response["total"], 1)
self.assertEqual(response["results"][0]["data"]["content"]["short_description"], short_description)
def _test_course_about_mode_index(self, store):
""" Test that informational properties in the course modes store end up in the course_info index """
honour_mode = CourseMode(
course_id=unicode(self.course.id),
mode_slug=CourseMode.HONOR,
mode_display_name=CourseMode.HONOR
)
honour_mode.save()
verified_mode = CourseMode(
course_id=unicode(self.course.id),
mode_slug=CourseMode.VERIFIED,
mode_display_name=CourseMode.VERIFIED
)
verified_mode.save()
self.reindex_course(store)
response = self.searcher.search(
doc_type=CourseAboutSearchIndexer.DISCOVERY_DOCUMENT_TYPE,
field_dictionary={"course": unicode(self.course.id)}
)
self.assertEqual(response["total"], 1)
self.assertIn(CourseMode.HONOR, response["results"][0]["data"]["modes"])
self.assertIn(CourseMode.VERIFIED, response["results"][0]["data"]["modes"])
def _test_course_location_info(self, store):
""" Test that course location information is added to index """
self.publish_item(store, self.vertical.location)
self.reindex_course(store)
response = self.search(query_string="Html Content")
self.assertEqual(response["total"], 1)
result = response["results"][0]["data"]
self.assertEqual(result["course_name"], "Search Index Test Course")
self.assertEqual(result["location"], ["Week 1", "Lesson 1", "Subsection 1"])
def _test_course_location_null(self, store):
""" Test that course location information is added to index """
sequential2 = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name=None,
modulestore=store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
# add a new vertical
vertical2 = ItemFactory.create(
parent_location=sequential2.location,
category='vertical',
display_name='Subsection 2',
modulestore=store,
publish_item=True,
)
ItemFactory.create(
parent_location=vertical2.location,
category="html",
display_name="Find Me",
publish_item=True,
modulestore=store,
)
self.reindex_course(store)
response = self.search(query_string="Find Me")
self.assertEqual(response["total"], 1)
result = response["results"][0]["data"]
self.assertEqual(result["course_name"], "Search Index Test Course")
self.assertEqual(result["location"], ["Week 1", CoursewareSearchIndexer.UNNAMED_MODULE_NAME, "Subsection 2"])
@patch('django.conf.settings.SEARCH_ENGINE', 'search.tests.utils.ErroringIndexEngine')
def _test_exception(self, store):
""" Test that exception within indexing yields a SearchIndexingError """
self.publish_item(store, self.vertical.location)
with self.assertRaises(SearchIndexingError):
self.reindex_course(store)
@ddt.data(*WORKS_WITH_STORES)
def test_indexing_course(self, store_type):
self._perform_test_using_store(store_type, self._test_indexing_course)
@ddt.data(*WORKS_WITH_STORES)
def test_not_indexing_unpublished_content(self, store_type):
self._perform_test_using_store(store_type, self._test_not_indexing_unpublished_content)
@ddt.data(*WORKS_WITH_STORES)
def test_deleting_item(self, store_type):
self._perform_test_using_store(store_type, self._test_deleting_item)
@ddt.data(*WORKS_WITH_STORES)
def test_not_indexable(self, store_type):
self._perform_test_using_store(store_type, self._test_not_indexable)
@ddt.data(*WORKS_WITH_STORES)
def test_start_date_propagation(self, store_type):
self._perform_test_using_store(store_type, self._test_start_date_propagation)
@ddt.data(*WORKS_WITH_STORES)
def test_search_disabled(self, store_type):
self._perform_test_using_store(store_type, self._test_search_disabled)
@ddt.data(*WORKS_WITH_STORES)
def test_time_based_index(self, store_type):
self._perform_test_using_store(store_type, self._test_time_based_index)
@ddt.data(*WORKS_WITH_STORES)
def test_exception(self, store_type):
self._perform_test_using_store(store_type, self._test_exception)
@ddt.data(*WORKS_WITH_STORES)
def test_course_about_property_index(self, store_type):
self._perform_test_using_store(store_type, self._test_course_about_property_index)
@ddt.data(*WORKS_WITH_STORES)
def test_course_about_store_index(self, store_type):
self._perform_test_using_store(store_type, self._test_course_about_store_index)
@ddt.data(*WORKS_WITH_STORES)
def test_course_about_mode_index(self, store_type):
self._perform_test_using_store(store_type, self._test_course_about_mode_index)
@ddt.data(*WORKS_WITH_STORES)
def test_course_location_info(self, store_type):
self._perform_test_using_store(store_type, self._test_course_location_info)
@ddt.data(*WORKS_WITH_STORES)
def test_course_location_null(self, store_type):
self._perform_test_using_store(store_type, self._test_course_location_null)
@patch('django.conf.settings.SEARCH_ENGINE', 'search.tests.utils.ForceRefreshElasticSearchEngine')
@ddt.ddt
class TestLargeCourseDeletions(MixedWithOptionsTestCase):
""" Tests to excerise deleting items from a course """
WORKS_WITH_STORES = (ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split)
def _clean_course_id(self):
""" Clean all documents from the index that have a specific course provided """
if self.course_id:
response = self.searcher.search(field_dictionary={"course": self.course_id})
while response["total"] > 0:
for item in response["results"]:
self.searcher.remove(CoursewareSearchIndexer.DOCUMENT_TYPE, item["data"]["id"])
response = self.searcher.search(field_dictionary={"course": self.course_id})
self.course_id = None
def setUp(self):
super(TestLargeCourseDeletions, self).setUp()
self.course_id = None
def tearDown(self):
super(TestLargeCourseDeletions, self).tearDown()
self._clean_course_id()
def assert_search_count(self, expected_count):
""" Check that the search within this course will yield the expected number of results """
response = self.searcher.search(field_dictionary={"course": self.course_id})
self.assertEqual(response["total"], expected_count)
def _do_test_large_course_deletion(self, store, load_factor):
""" Test that deleting items from a course works even when present within a very large course """
def id_list(top_parent_object):
""" private function to get ids from object down the tree """
list_of_ids = [unicode(top_parent_object.location)]
for child in top_parent_object.get_children():
list_of_ids.extend(id_list(child))
return list_of_ids
course, course_size = create_large_course(store, load_factor)
self.course_id = unicode(course.id)
# index full course
CoursewareSearchIndexer.do_course_reindex(store, course.id)
self.assert_search_count(course_size)
# reload course to allow us to delete one single unit
course = store.get_course(course.id, depth=1)
# delete the first chapter
chapter_to_delete = course.get_children()[0]
self.delete_item(store, chapter_to_delete.location)
# index and check correctness
CoursewareSearchIndexer.do_course_reindex(store, course.id)
deleted_count = 1 + load_factor + (load_factor ** 2) + (load_factor ** 3)
self.assert_search_count(course_size - deleted_count)
def _test_large_course_deletion(self, store):
""" exception catch-ing wrapper around large test course test with deletions """
# load_factor of 6 (1296 items) takes about 5 minutes to run on devstack on a laptop
# load_factor of 7 (2401 items) takes about 70 minutes to run on devstack on a laptop
# load_factor of 8 (4096 items) takes just under 3 hours to run on devstack on a laptop
load_factor = 6
try:
self._do_test_large_course_deletion(store, load_factor)
except: # pylint: disable=bare-except
# Catch any exception here to see when we fail
print "Failed with load_factor of {}".format(load_factor)
@skip(("This test is to see how we handle very large courses, to ensure that the delete"
"procedure works smoothly - too long to run during the normal course of things"))
@ddt.data(*WORKS_WITH_STORES)
def test_large_course_deletion(self, store_type):
self._perform_test_using_store(store_type, self._test_large_course_deletion)
class TestTaskExecution(ModuleStoreTestCase):
"""
Set of tests to ensure that the task code will do the right thing when
executed directly. The test course and library gets created without the listeners
being present, which allows us to ensure that when the listener is
executed, it is done as expected.
"""
def setUp(self):
super(TestTaskExecution, self).setUp()
SignalHandler.course_published.disconnect(listen_for_course_publish)
SignalHandler.library_updated.disconnect(listen_for_library_update)
self.course = CourseFactory.create(start=datetime(2015, 3, 1, tzinfo=UTC))
self.chapter = ItemFactory.create(
parent_location=self.course.location,
category='chapter',
display_name="Week 1",
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.sequential = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name="Lesson 1",
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.vertical = ItemFactory.create(
parent_location=self.sequential.location,
category='vertical',
display_name='Subsection 1',
publish_item=True,
start=datetime(2015, 4, 1, tzinfo=UTC),
)
# unspecified start - should inherit from container
self.html_unit = ItemFactory.create(
parent_location=self.vertical.location,
category="html",
display_name="Html Content",
publish_item=False,
)
self.library = LibraryFactory.create()
self.library_block1 = ItemFactory.create(
parent_location=self.library.location,
category="html",
display_name="Html Content",
publish_item=False,
)
self.library_block2 = ItemFactory.create(
parent_location=self.library.location,
category="html",
display_name="Html Content 2",
publish_item=False,
)
def test_task_indexing_course(self):
""" Making sure that the receiver correctly fires off the task when invoked by signal """
searcher = SearchEngine.get_search_engine(CoursewareSearchIndexer.INDEX_NAME)
response = searcher.search(
doc_type=CoursewareSearchIndexer.DOCUMENT_TYPE,
field_dictionary={"course": unicode(self.course.id)}
)
self.assertEqual(response["total"], 0)
listen_for_course_publish(self, self.course.id)
# Note that this test will only succeed if celery is working in inline mode
response = searcher.search(
doc_type=CoursewareSearchIndexer.DOCUMENT_TYPE,
field_dictionary={"course": unicode(self.course.id)}
)
self.assertEqual(response["total"], 3)
def test_task_library_update(self):
""" Making sure that the receiver correctly fires off the task when invoked by signal """
searcher = SearchEngine.get_search_engine(LibrarySearchIndexer.INDEX_NAME)
library_search_key = unicode(normalize_key_for_search(self.library.location.library_key))
response = searcher.search(field_dictionary={"library": library_search_key})
self.assertEqual(response["total"], 0)
listen_for_library_update(self, self.library.location.library_key)
# Note that this test will only succeed if celery is working in inline mode
response = searcher.search(field_dictionary={"library": library_search_key})
self.assertEqual(response["total"], 2)
@ddt.ddt
class TestLibrarySearchIndexer(MixedWithOptionsTestCase):
""" Tests the operation of the CoursewareSearchIndexer """
# libraries work only with split, so do library indexer
WORKS_WITH_STORES = (ModuleStoreEnum.Type.split, )
def setUp(self):
super(TestLibrarySearchIndexer, self).setUp()
self.library = None
self.html_unit1 = None
self.html_unit2 = None
def setup_course_base(self, store):
"""
Set up the for the course outline tests.
"""
self.library = LibraryFactory.create(modulestore=store)
self.html_unit1 = ItemFactory.create(
parent_location=self.library.location,
category="html",
display_name="Html Content",
modulestore=store,
publish_item=False,
)
self.html_unit2 = ItemFactory.create(
parent_location=self.library.location,
category="html",
display_name="Html Content 2",
modulestore=store,
publish_item=False,
)
INDEX_NAME = LibrarySearchIndexer.INDEX_NAME
DOCUMENT_TYPE = LibrarySearchIndexer.DOCUMENT_TYPE
def _get_default_search(self):
""" Returns field_dictionary for default search """
return {"library": unicode(self.library.location.library_key.replace(version_guid=None, branch=None))}
def reindex_library(self, store):
""" kick off complete reindex of the course """
return LibrarySearchIndexer.do_library_reindex(store, self.library.location.library_key)
def _get_contents(self, response):
""" Extracts contents from search response """
return [item['data']['content'] for item in response['results']]
def _test_indexing_library(self, store):
""" indexing course tests """
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
added_to_index = self.reindex_library(store)
self.assertEqual(added_to_index, 2)
response = self.search()
self.assertEqual(response["total"], 2)
def _test_creating_item(self, store):
""" test updating an item """
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
# updating a library item causes immediate reindexing
data = "Some data"
ItemFactory.create(
parent_location=self.library.location,
category="html",
display_name="Html Content 3",
data=data,
modulestore=store,
publish_item=False,
)
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 3)
html_contents = [cont['html_content'] for cont in self._get_contents(response)]
self.assertIn(data, html_contents)
def _test_updating_item(self, store):
""" test updating an item """
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
# updating a library item causes immediate reindexing
new_data = "I'm new data"
self.html_unit1.data = new_data
self.update_item(store, self.html_unit1)
self.reindex_library(store)
response = self.search()
# TODO: MockSearchEngine never updates existing item: returns 3 items here - uncomment when it's fixed
# self.assertEqual(response["total"], 2)
html_contents = [cont['html_content'] for cont in self._get_contents(response)]
self.assertIn(new_data, html_contents)
def _test_deleting_item(self, store):
""" test deleting an item """
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
# deleting a library item causes immediate reindexing
self.delete_item(store, self.html_unit1.location)
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 1)
def _test_not_indexable(self, store):
""" test not indexable items """
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
# Add a non-indexable item
ItemFactory.create(
parent_location=self.library.location,
category="openassessment",
display_name="Assessment",
publish_item=False,
modulestore=store,
)
self.reindex_library(store)
response = self.search()
self.assertEqual(response["total"], 2)
@patch('django.conf.settings.SEARCH_ENGINE', None)
def _test_search_disabled(self, store):
""" if search setting has it as off, confirm that nothing is indexed """
indexed_count = self.reindex_library(store)
self.assertFalse(indexed_count)
@patch('django.conf.settings.SEARCH_ENGINE', 'search.tests.utils.ErroringIndexEngine')
def _test_exception(self, store):
""" Test that exception within indexing yields a SearchIndexingError """
with self.assertRaises(SearchIndexingError):
self.reindex_library(store)
@ddt.data(*WORKS_WITH_STORES)
def test_indexing_library(self, store_type):
self._perform_test_using_store(store_type, self._test_indexing_library)
@ddt.data(*WORKS_WITH_STORES)
def test_updating_item(self, store_type):
self._perform_test_using_store(store_type, self._test_updating_item)
@ddt.data(*WORKS_WITH_STORES)
def test_creating_item(self, store_type):
self._perform_test_using_store(store_type, self._test_creating_item)
@ddt.data(*WORKS_WITH_STORES)
def test_deleting_item(self, store_type):
self._perform_test_using_store(store_type, self._test_deleting_item)
@ddt.data(*WORKS_WITH_STORES)
def test_not_indexable(self, store_type):
self._perform_test_using_store(store_type, self._test_not_indexable)
@ddt.data(*WORKS_WITH_STORES)
def test_search_disabled(self, store_type):
self._perform_test_using_store(store_type, self._test_search_disabled)
@ddt.data(*WORKS_WITH_STORES)
def test_exception(self, store_type):
self._perform_test_using_store(store_type, self._test_exception)
class GroupConfigurationSearchMongo(CourseTestCase, MixedWithOptionsTestCase):
"""
Tests indexing of content groups on course modules using mongo modulestore.
"""
MODULESTORE = TEST_DATA_MONGO_MODULESTORE
INDEX_NAME = CoursewareSearchIndexer.INDEX_NAME
def setUp(self):
super(GroupConfigurationSearchMongo, self).setUp()
self._setup_course_with_content()
self._setup_split_test_module()
self._setup_content_groups()
self.reload_course()
def _setup_course_with_content(self):
"""
Set up course with html content in it.
"""
self.chapter = ItemFactory.create(
parent_location=self.course.location,
category='chapter',
display_name="Week 1",
modulestore=self.store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.sequential = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name="Lesson 1",
modulestore=self.store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.sequential2 = ItemFactory.create(
parent_location=self.chapter.location,
category='sequential',
display_name="Lesson 2",
modulestore=self.store,
publish_item=True,
start=datetime(2015, 3, 1, tzinfo=UTC),
)
self.vertical = ItemFactory.create(
parent_location=self.sequential.location,
category='vertical',
display_name='Subsection 1',
modulestore=self.store,
publish_item=True,
start=datetime(2015, 4, 1, tzinfo=UTC),
)
self.vertical2 = ItemFactory.create(
parent_location=self.sequential.location,
category='vertical',
display_name='Subsection 2',
modulestore=self.store,
publish_item=True,
start=datetime(2015, 4, 1, tzinfo=UTC),
)
self.vertical3 = ItemFactory.create(
parent_location=self.sequential2.location,
category='vertical',
display_name='Subsection 3',
modulestore=self.store,
publish_item=True,
start=datetime(2015, 4, 1, tzinfo=UTC),
)
# unspecified start - should inherit from container
self.html_unit1 = ItemFactory.create(
parent_location=self.vertical.location,
category="html",
display_name="Html Content 1",
modulestore=self.store,
publish_item=True,
)
self.html_unit1.parent = self.vertical
self.html_unit2 = ItemFactory.create(
parent_location=self.vertical2.location,
category="html",
display_name="Html Content 2",
modulestore=self.store,
publish_item=True,
)
self.html_unit2.parent = self.vertical2
self.html_unit3 = ItemFactory.create(
parent_location=self.vertical2.location,
category="html",
display_name="Html Content 3",
modulestore=self.store,
publish_item=True,
)
self.html_unit3.parent = self.vertical2
def _setup_split_test_module(self):
"""
Set up split test module.
"""
c0_url = self.course.id.make_usage_key("vertical", "condition_0_vertical")
c1_url = self.course.id.make_usage_key("vertical", "condition_1_vertical")
c2_url = self.course.id.make_usage_key("vertical", "condition_2_vertical")
self.split_test_unit = ItemFactory.create(
parent_location=self.vertical3.location,
category='split_test',
user_partition_id=0,
display_name="Test Content Experiment 1",
group_id_to_child={"2": c0_url, "3": c1_url, "4": c2_url}
)
self.condition_0_vertical = ItemFactory.create(
parent_location=self.split_test_unit.location,
category="vertical",
display_name="Group ID 2",
location=c0_url,
)
self.condition_0_vertical.parent = self.vertical3
self.condition_1_vertical = ItemFactory.create(
parent_location=self.split_test_unit.location,
category="vertical",
display_name="Group ID 3",
location=c1_url,
)
self.condition_1_vertical.parent = self.vertical3
self.condition_2_vertical = ItemFactory.create(
parent_location=self.split_test_unit.location,
category="vertical",
display_name="Group ID 4",
location=c2_url,
)
self.condition_2_vertical.parent = self.vertical3
self.html_unit4 = ItemFactory.create(
parent_location=self.condition_0_vertical.location,
category="html",
display_name="Split A",
publish_item=True,
)
self.html_unit4.parent = self.condition_0_vertical
self.html_unit5 = ItemFactory.create(
parent_location=self.condition_1_vertical.location,
category="html",
display_name="Split B",
publish_item=True,
)
self.html_unit5.parent = self.condition_1_vertical
self.html_unit6 = ItemFactory.create(
parent_location=self.condition_2_vertical.location,
category="html",
display_name="Split C",
publish_item=True,
)
self.html_unit6.parent = self.condition_2_vertical
def _setup_content_groups(self):
"""
Set up cohort and experiment content groups.
"""
cohort_groups_list = {
u'id': 666,
u'name': u'Test name',
u'scheme': u'cohort',
u'description': u'Test description',
u'version': UserPartition.VERSION,
u'groups': [
{u'id': 0, u'name': u'Group A', u'version': 1, u'usage': []},
{u'id': 1, u'name': u'Group B', u'version': 1, u'usage': []},
],
}
experiment_groups_list = {
u'id': 0,
u'name': u'Experiment aware partition',
u'scheme': u'random',
u'description': u'Experiment aware description',
u'version': UserPartition.VERSION,
u'groups': [
{u'id': 2, u'name': u'Group A', u'version': 1, u'usage': []},
{u'id': 3, u'name': u'Group B', u'version': 1, u'usage': []},
{u'id': 4, u'name': u'Group C', u'version': 1, u'usage': []}
],
}
self.client.put(
self._group_conf_url(cid=666),
data=json.dumps(cohort_groups_list),
content_type="application/json",
HTTP_ACCEPT="application/json",
HTTP_X_REQUESTED_WITH="XMLHttpRequest",
)
self.client.put(
self._group_conf_url(cid=0),
data=json.dumps(experiment_groups_list),
content_type="application/json",
HTTP_ACCEPT="application/json",
HTTP_X_REQUESTED_WITH="XMLHttpRequest",
)
def _group_conf_url(self, cid=-1):
"""
Return url for the handler.
"""
return reverse_course_url(
'group_configurations_detail_handler',
self.course.id,
kwargs={'group_configuration_id': cid},
)
def _html_group_result(self, html_unit, content_groups):
"""
Return call object with arguments and content group for html_unit.
"""
return call(
'courseware_content',
{
'course_name': unicode(self.course.display_name),
'id': unicode(html_unit.location),
'content': {'html_content': '', 'display_name': unicode(html_unit.display_name)},
'course': unicode(self.course.id),
'location': [
unicode(self.chapter.display_name),
unicode(self.sequential.display_name),
unicode(html_unit.parent.display_name)
],
'content_type': 'Text',
'org': self.course.org,
'content_groups': content_groups,
'start_date': datetime(2015, 4, 1, 0, 0, tzinfo=tzutc())
}
)
def _html_experiment_group_result(self, html_unit, content_groups):
"""
Return call object with arguments and content group for html_unit.
"""
return call(
'courseware_content',
{
'course_name': unicode(self.course.display_name),
'id': unicode(html_unit.location),
'content': {'html_content': '', 'display_name': unicode(html_unit.display_name)},
'course': unicode(self.course.id),
'location': [
unicode(self.chapter.display_name),
unicode(self.sequential2.display_name),
unicode(self.vertical3.display_name)
],
'content_type': 'Text',
'org': self.course.org,
'content_groups': content_groups,
'start_date': datetime(2015, 4, 1, 0, 0, tzinfo=tzutc())
}
)
def _vertical_experiment_group_result(self, vertical, content_groups):
"""
Return call object with arguments and content group for split_test vertical.
"""
return call(
'courseware_content',
{
'start_date': datetime(2015, 4, 1, 0, 0, tzinfo=tzutc()),
'content': {'display_name': unicode(vertical.display_name)},
'course': unicode(self.course.id),
'location': [
unicode(self.chapter.display_name),
unicode(self.sequential2.display_name),
unicode(vertical.parent.display_name)
],
'content_type': 'Sequence',
'content_groups': content_groups,
'id': unicode(vertical.location),
'course_name': unicode(self.course.display_name),
'org': self.course.org
}
)
def _html_nogroup_result(self, html_unit):
"""
Return call object with arguments and content group set to empty array for html_unit.
"""
return call(
'courseware_content',
{
'course_name': unicode(self.course.display_name),
'id': unicode(html_unit.location),
'content': {'html_content': '', 'display_name': unicode(html_unit.display_name)},
'course': unicode(self.course.id),
'location': [
unicode(self.chapter.display_name),
unicode(self.sequential.display_name),
unicode(html_unit.parent.display_name)
],
'content_type': 'Text',
'org': self.course.org,
'content_groups': None,
'start_date': datetime(2015, 4, 1, 0, 0, tzinfo=tzutc())
}
)
def reindex_course(self, store):
""" kick off complete reindex of the course """
return CoursewareSearchIndexer.do_course_reindex(store, self.course.id)
def test_content_group_gets_indexed(self):
""" indexing course with content groups added test """
# Only published modules should be in the index
added_to_index = self.reindex_course(self.store)
self.assertEqual(added_to_index, 16)
response = self.searcher.search(field_dictionary={"course": unicode(self.course.id)})
self.assertEqual(response["total"], 23)
group_access_content = {'group_access': {666: [1]}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit1.location),
data={'metadata': group_access_content}
)
self.publish_item(self.store, self.html_unit1.location)
self.publish_item(self.store, self.split_test_unit.location)
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_group_result(self.html_unit1, [1]), mock_index.mock_calls)
self.assertIn(self._html_experiment_group_result(self.html_unit4, [unicode(2)]), mock_index.mock_calls)
self.assertIn(self._html_experiment_group_result(self.html_unit5, [unicode(3)]), mock_index.mock_calls)
self.assertIn(self._html_experiment_group_result(self.html_unit6, [unicode(4)]), mock_index.mock_calls)
self.assertNotIn(self._html_experiment_group_result(self.html_unit6, [unicode(5)]), mock_index.mock_calls)
self.assertIn(
self._vertical_experiment_group_result(self.condition_0_vertical, [unicode(2)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_1_vertical, [unicode(2)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_2_vertical, [unicode(2)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_0_vertical, [unicode(3)]),
mock_index.mock_calls
)
self.assertIn(
self._vertical_experiment_group_result(self.condition_1_vertical, [unicode(3)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_2_vertical, [unicode(3)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_0_vertical, [unicode(4)]),
mock_index.mock_calls
)
self.assertNotIn(
self._vertical_experiment_group_result(self.condition_1_vertical, [unicode(4)]),
mock_index.mock_calls
)
self.assertIn(
self._vertical_experiment_group_result(self.condition_2_vertical, [unicode(4)]),
mock_index.mock_calls
)
mock_index.reset_mock()
def test_content_group_not_assigned(self):
""" indexing course without content groups added test """
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_nogroup_result(self.html_unit1), mock_index.mock_calls)
mock_index.reset_mock()
def test_content_group_not_indexed_on_delete(self):
""" indexing course with content groups deleted test """
group_access_content = {'group_access': {666: [1]}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit1.location),
data={'metadata': group_access_content}
)
self.publish_item(self.store, self.html_unit1.location)
# Checking group indexed correctly
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_group_result(self.html_unit1, [1]), mock_index.mock_calls)
mock_index.reset_mock()
empty_group_access = {'group_access': {}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit1.location),
data={'metadata': empty_group_access}
)
self.publish_item(self.store, self.html_unit1.location)
# Checking group removed and not indexed any more
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_nogroup_result(self.html_unit1), mock_index.mock_calls)
mock_index.reset_mock()
def test_group_indexed_only_on_assigned_html_block(self):
""" indexing course with content groups assigned to one of multiple html units """
group_access_content = {'group_access': {666: [1]}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit1.location),
data={'metadata': group_access_content}
)
self.publish_item(self.store, self.html_unit1.location)
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_group_result(self.html_unit1, [1]), mock_index.mock_calls)
self.assertIn(self._html_nogroup_result(self.html_unit2), mock_index.mock_calls)
mock_index.reset_mock()
def test_different_groups_indexed_on_assigned_html_blocks(self):
""" indexing course with different content groups assigned to each of multiple html units """
group_access_content_1 = {'group_access': {666: [1]}}
group_access_content_2 = {'group_access': {666: [0]}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit1.location),
data={'metadata': group_access_content_1}
)
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit2.location),
data={'metadata': group_access_content_2}
)
self.publish_item(self.store, self.html_unit1.location)
self.publish_item(self.store, self.html_unit2.location)
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_group_result(self.html_unit1, [1]), mock_index.mock_calls)
self.assertIn(self._html_group_result(self.html_unit2, [0]), mock_index.mock_calls)
mock_index.reset_mock()
def test_different_groups_indexed_on_same_vertical_html_blocks(self):
"""
Indexing course with different content groups assigned to each of multiple html units
on same vertical
"""
group_access_content_1 = {'group_access': {666: [1]}}
group_access_content_2 = {'group_access': {666: [0]}}
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit2.location),
data={'metadata': group_access_content_1}
)
self.client.ajax_post(
reverse_usage_url("xblock_handler", self.html_unit3.location),
data={'metadata': group_access_content_2}
)
self.publish_item(self.store, self.html_unit2.location)
self.publish_item(self.store, self.html_unit3.location)
with patch(settings.SEARCH_ENGINE + '.index') as mock_index:
self.reindex_course(self.store)
self.assertTrue(mock_index.called)
self.assertIn(self._html_group_result(self.html_unit2, [1]), mock_index.mock_calls)
self.assertIn(self._html_group_result(self.html_unit3, [0]), mock_index.mock_calls)
mock_index.reset_mock()
class GroupConfigurationSearchSplit(GroupConfigurationSearchMongo):
"""
Tests indexing of content groups on course modules using split modulestore.
"""
MODULESTORE = TEST_DATA_SPLIT_MODULESTORE | unknown | codeparrot/codeparrot-clean | ||
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package stackeval
import (
"context"
"fmt"
"github.com/hashicorp/hcl/v2"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/convert"
"github.com/hashicorp/terraform/internal/lang/marks"
"github.com/hashicorp/terraform/internal/plans"
"github.com/hashicorp/terraform/internal/plans/objchange"
"github.com/hashicorp/terraform/internal/promising"
"github.com/hashicorp/terraform/internal/stacks/stackaddrs"
"github.com/hashicorp/terraform/internal/stacks/stackplan"
"github.com/hashicorp/terraform/internal/stacks/stackstate"
"github.com/hashicorp/terraform/internal/tfdiags"
)
// InputVariable represents an input variable belonging to a [Stack].
type InputVariable struct {
addr stackaddrs.AbsInputVariable
stack *Stack
config *InputVariableConfig
main *Main
value perEvalPhase[promising.Once[withDiagnostics[cty.Value]]]
}
var _ Plannable = (*InputVariable)(nil)
var _ Referenceable = (*InputVariable)(nil)
func newInputVariable(main *Main, addr stackaddrs.AbsInputVariable, stack *Stack, config *InputVariableConfig) *InputVariable {
return &InputVariable{
addr: addr,
stack: stack,
config: config,
main: main,
}
}
// DefinedByStackCallInstance returns the stack call which ought to provide
// the definition (i.e. the final value) of this input variable. The source
// of the stack could either be a regular stack call instance or a removed
// stack call instance. One of the two will be returned. They are mutually
// exclusive as it is an error for two blocks to create the same stack instance.
//
// Returns nil if this input variable belongs to the main stack, because
// the main stack's input variables come from the planning options instead.
//
// Also returns nil if the receiver belongs to a stack config instance
// that isn't actually declared in the configuration, which typically suggests
// that we don't yet know the number of instances of one of the stack calls
// along the chain.
func (v *InputVariable) DefinedByStackCallInstance(ctx context.Context, phase EvalPhase) (*StackCallInstance, *RemovedStackCallInstance) {
declarerAddr := v.addr.Stack
if declarerAddr.IsRoot() {
return nil, nil
}
callAddr := declarerAddr.Call()
if call := v.stack.parent.EmbeddedStackCall(callAddr.Item); call != nil {
lastStep := declarerAddr[len(declarerAddr)-1]
instKey := lastStep.Key
callInsts, unknown := call.Instances(ctx, phase)
if unknown {
// Return our static unknown instance for this variable.
return call.UnknownInstance(ctx, instKey, phase), nil
}
if inst, ok := callInsts[instKey]; ok {
return inst, nil
}
// otherwise, let's check if we have any removed calls that match the
// target instance
}
if calls := v.stack.parent.RemovedEmbeddedStackCall(callAddr.Item); calls != nil {
for _, call := range calls {
callInsts, unknown := call.InstancesFor(ctx, v.stack.addr, phase)
if unknown {
return nil, call.UnknownInstance(ctx, v.stack.addr, phase)
}
for _, inst := range callInsts {
// because we used the exact v.stack.addr in InstancesFor above
// then we should have at most one entry here if there were any
// matches.
return nil, inst
}
}
}
return nil, nil
}
func (v *InputVariable) Value(ctx context.Context, phase EvalPhase) cty.Value {
val, _ := v.CheckValue(ctx, phase)
return val
}
func (v *InputVariable) CheckValue(ctx context.Context, phase EvalPhase) (cty.Value, tfdiags.Diagnostics) {
return doOnceWithDiags(
ctx, v.tracingName(), v.value.For(phase),
func(ctx context.Context) (cty.Value, tfdiags.Diagnostics) {
var diags tfdiags.Diagnostics
cfg := v.config
decl := cfg.config
switch {
case v.addr.Stack.IsRoot():
var err error
wantTy := decl.Type.Constraint
extVal := v.main.RootVariableValue(v.addr.Item, phase)
val := extVal.Value
if val.IsNull() {
// A null value is equivalent to an unspecified value, so
// we'll replace it with the variable's default value.
val = cfg.DefaultValue()
if val == cty.NilVal {
diags = diags.Append(&hcl.Diagnostic{
Severity: hcl.DiagError,
Summary: "No value for required variable",
Detail: fmt.Sprintf("The root input variable %q is not set, and has no default value.", v.addr),
Subject: cfg.config.DeclRange.ToHCL().Ptr(),
})
return cty.UnknownVal(wantTy), diags
}
} else {
// The DefaultValue function already validated the default
// value, and applied the defaults, so we only apply the
// defaults to a user supplied value.
if defaults := decl.Type.Defaults; defaults != nil {
val = defaults.Apply(val)
}
}
// First, apply any defaults that are declared in the
// configuration.
// Next, convert the value to the expected type.
val, err = convert.Convert(val, wantTy)
if err != nil {
diags = diags.Append(&hcl.Diagnostic{
Severity: hcl.DiagError,
Summary: "Invalid value for root input variable",
Detail: fmt.Sprintf(
"Cannot use the given value for input variable %q: %s.",
v.addr.Item.Name, err,
),
})
val = cfg.markValue(cty.UnknownVal(wantTy))
return val, diags
}
if phase == ApplyPhase && !cfg.config.Ephemeral {
// Now, we're just going to check the apply time value
// against the plan time value. It is expected that
// ephemeral variables will have different values between
// plan and apply time, so these are not checked here.
plan := v.main.PlanBeingApplied()
planValue := plan.RootInputValues[v.addr.Item]
if errs := objchange.AssertValueCompatible(planValue, val); errs != nil {
diags = diags.Append(&hcl.Diagnostic{
Severity: hcl.DiagError,
Summary: "Inconsistent value for input variable during apply",
Detail: fmt.Sprintf("The value for non-ephemeral input variable %q was set to a different value during apply than was set during plan. Only ephemeral input variables can change between the plan and apply phases.", v.addr.Item.Name),
Subject: cfg.config.DeclRange.ToHCL().Ptr(),
})
// Return a solidly invalid value to prevent further
// processing of this variable. This is a rare case and
// a bug in Terraform so it's okay that might cause
// additional errors to be raised later. We just want
// to make sure we don't continue when something has
// gone wrong elsewhere.
return cty.NilVal, diags
}
}
// TODO: check the value against any custom validation rules
// declared in the configuration.
return cfg.markValue(val), diags
default:
definedByCallInst, definedByRemovedCallInst := v.DefinedByStackCallInstance(ctx, phase)
switch {
case definedByCallInst != nil:
allVals := definedByCallInst.InputVariableValues(ctx, phase)
val := allVals.GetAttr(v.addr.Item.Name)
// TODO: check the value against any custom validation rules
// declared in the configuration.
return cfg.markValue(val), diags
case definedByRemovedCallInst != nil:
allVals, _ := definedByRemovedCallInst.InputVariableValues(ctx, phase)
val := allVals.GetAttr(v.addr.Item.Name)
// TODO: check the value against any custom validation rules
// declared in the configuration.
return cfg.markValue(val), diags
default:
// We seem to belong to a call instance that doesn't actually
// exist in the configuration. That either means that
// something's gone wrong or we are descended from a stack
// call whose instances aren't known yet; we'll assume
// the latter and return a placeholder.
return cfg.markValue(cty.UnknownVal(v.config.config.Type.Constraint)), diags
}
}
},
)
}
// ExprReferenceValue implements Referenceable.
func (v *InputVariable) ExprReferenceValue(ctx context.Context, phase EvalPhase) cty.Value {
return v.Value(ctx, phase)
}
func (v *InputVariable) checkValid(ctx context.Context, phase EvalPhase) tfdiags.Diagnostics {
var diags tfdiags.Diagnostics
_, moreDiags := v.CheckValue(ctx, phase)
diags = diags.Append(moreDiags)
return diags
}
// PlanChanges implements Plannable as a plan-time validation of the variable's
// declaration and of the caller's definition of the variable.
func (v *InputVariable) PlanChanges(ctx context.Context) ([]stackplan.PlannedChange, tfdiags.Diagnostics) {
diags := v.checkValid(ctx, PlanPhase)
if diags.HasErrors() {
return nil, diags
}
// Only the root stack's input values can contribute directly to the plan.
// Embedded stack inputs will be recalculated during the apply phase
// because the values might be derived from component outputs that aren't
// known yet during planning.
if !v.addr.Stack.IsRoot() {
return nil, diags
}
destroy := v.main.PlanningOpts().PlanningMode == plans.DestroyMode
before := v.main.PlanPrevState().RootInputVariable(v.addr.Item)
decl := v.config.config
after := v.Value(ctx, PlanPhase)
requiredOnApply := false
if decl.Ephemeral {
// we don't persist the value for an ephemeral variable, but we
// do need to remember whether it was set.
requiredOnApply = !after.IsNull()
// we'll set the after value to null now that we've captured the
// requiredOnApply flag.
after = cty.NullVal(after.Type())
}
var action plans.Action
if before != cty.NilVal {
if decl.Ephemeral {
// if the value is ephemeral, we always mark is as an update
action = plans.Update
} else {
unmarkedBefore, beforePaths := before.UnmarkDeepWithPaths()
unmarkedAfter, afterPaths := after.UnmarkDeepWithPaths()
result := unmarkedBefore.Equals(unmarkedAfter)
if result.IsKnown() && result.True() && marks.MarksEqual(beforePaths, afterPaths) {
action = plans.NoOp
} else {
// If we don't know for sure that the values are equal, then we'll
// call this an update.
action = plans.Update
}
}
} else {
action = plans.Create
before = cty.NullVal(cty.DynamicPseudoType)
}
return []stackplan.PlannedChange{
&stackplan.PlannedChangeRootInputValue{
Addr: v.addr.Item,
Action: action,
Before: before,
After: after,
RequiredOnApply: requiredOnApply,
DeleteOnApply: destroy,
},
}, diags
}
// References implements Referrer
func (v *InputVariable) References(ctx context.Context) []stackaddrs.AbsReference {
// The references for an input variable actually come from the
// call that defines it, in the parent stack.
if v.addr.Stack.IsRoot() {
// Variables declared in the root module can't refer to anything,
// because they are defined outside of the stack configuration by
// our caller.
return nil
}
if v.stack.parent == nil {
// Weird, but we'll tolerate it for robustness.
return nil
}
callAddr := v.addr.Stack.Call()
call := v.stack.parent.EmbeddedStackCall(callAddr.Item)
if call == nil {
// Weird, but we'll tolerate it for robustness.
return nil
}
return call.References(ctx)
}
// CheckApply implements Applyable.
func (v *InputVariable) CheckApply(ctx context.Context) ([]stackstate.AppliedChange, tfdiags.Diagnostics) {
if !v.addr.Stack.IsRoot() {
return nil, v.checkValid(ctx, ApplyPhase)
}
diags := v.checkValid(ctx, ApplyPhase)
if diags.HasErrors() {
return nil, diags
}
if v.main.PlanBeingApplied().DeletedInputVariables.Has(v.addr.Item) {
// If the plan being applied has this variable as being deleted, then
// we won't handle it here. This is usually the case during a destroy
// only plan in which we wanted to both capture the value for an input
// as we still need it, while also noting that everything is being
// destroyed.
return nil, diags
}
decl := v.config.config
value := v.Value(ctx, ApplyPhase)
if decl.Ephemeral {
value = cty.NullVal(value.Type())
}
return []stackstate.AppliedChange{
&stackstate.AppliedChangeInputVariable{
Addr: v.addr.Item,
Value: value,
},
}, diags
}
func (v *InputVariable) tracingName() string {
return v.addr.String()
}
// ExternalInputValue represents the value of an input variable provided
// from outside the stack configuration.
type ExternalInputValue struct {
Value cty.Value
DefRange tfdiags.SourceRange
} | go | github | https://github.com/hashicorp/terraform | internal/stacks/stackruntime/internal/stackeval/input_variable.go |
#!/usr/bin/env bash
# Make sure that ansible-test is able to parse collection config when using a venv.
set -eu
source ../collection/setup.sh
set -x
# On systems with a Python version below the minimum controller Python version, such as the default container, this test
# will verify that the content config is working properly after delegation. Otherwise it will only verify that no errors
# occur while trying to access content config (such as missing requirements).
ansible-test sanity --test import --color --venv -v
ansible-test units --color --venv -v | unknown | github | https://github.com/ansible/ansible | test/integration/targets/ansible-test-config/runme.sh |
"""This module provides dynamic access to deprecated Zapier tools in LangChain.
It supports backward compatibility by forwarding references such as
`ZapierNLAListActions` and `ZapierNLARunAction` to their updated locations
in the `langchain_community.tools` package.
Developers using older import paths will continue to function, while LangChain
internally redirects access to the newer, supported module structure.
"""
from typing import TYPE_CHECKING, Any
from langchain_classic._api import create_importer
if TYPE_CHECKING:
from langchain_community.tools import ZapierNLAListActions, ZapierNLARunAction
# Create a way to dynamically look up deprecated imports.
# Used to consolidate logic for raising deprecation warnings and
# handling optional imports.
DEPRECATED_LOOKUP = {
"ZapierNLARunAction": "langchain_community.tools",
"ZapierNLAListActions": "langchain_community.tools",
}
_import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP)
def __getattr__(name: str) -> Any:
"""Dynamically retrieve attributes from the updated module path.
This method is used to resolve deprecated attribute imports
at runtime and forward them to their new locations.
Args:
name: The name of the attribute to import.
Returns:
The resolved attribute from the appropriate updated module.
"""
return _import_attribute(name)
__all__ = [
"ZapierNLAListActions",
"ZapierNLARunAction",
] | python | github | https://github.com/langchain-ai/langchain | libs/langchain/langchain_classic/tools/zapier/tool.py |
//===--- IDEInspectionCallbacks.h - Parser's interface to IDE inspection --===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_PARSE_CODE_COMPLETION_CALLBACKS_H
#define SWIFT_PARSE_CODE_COMPLETION_CALLBACKS_H
#include "swift/AST/ASTContext.h"
#include "swift/Parse/Parser.h"
namespace swift {
enum class ObjCSelectorContext {
/// Code completion is not performed inside #selector
None,
/// Code completion is performed in a method #selector
MethodSelector,
/// Code completion is performed inside #selector(getter:)
GetterSelector,
/// Code completion is performed inside #selector(setter:)
SetterSelector
};
/// Parameterized attributes that have code completion.
/// This can't be \c DeclAttrKind because '@freestanding' and '@attached' have
/// the same attribute kind but take different macro roles as arguemnts.
enum class ParameterizedDeclAttributeKind {
AccessControl,
Nonisolated,
Unowned,
Available,
FreestandingMacro,
AttachedMacro,
StorageRestrictions,
InheritActorContext,
Nonexhaustive,
};
/// A bit of a hack. When completing inside the '@storageRestrictions'
/// attribute, we use the \c ParamIndex field to communicate where inside the
/// attribute we are performing the completion.
enum class StorageRestrictionsCompletionKind : int {
/// We are completing directly after the '(' and require a 'initializes' or
/// 'accesses' label.
Label,
/// We are completing in a context that only allows arguments (ie. accessed or
/// initialized variables) and doesn't permit an argument label.
Argument,
/// Completion in a context that allows either an argument or the
/// 'initializes' label.
ArgumentOrInitializesLabel,
/// Completion in a context that allows either an argument or the
/// 'accesses' label.
ArgumentOrAccessesLabel
};
/// Parser's interface to code completion.
class CodeCompletionCallbacks {
protected:
Parser &P;
ASTContext &Context;
ParserPosition ExprBeginPosition;
/// The declaration parsed during delayed parsing that was caused by code
/// completion. This declaration contained the code completion token.
Decl *ParsedDecl = nullptr;
/// True if code completion is done inside a raw value expression of an enum
/// case.
bool InEnumElementRawValue = false;
/// Whether or not the expression that is currently parsed is inside a
/// \c #selector and if so, which kind of selector
ObjCSelectorContext ParseExprSelectorContext = ObjCSelectorContext::None;
/// Whether or not the expression that shall be completed is inside a
/// \c #selector and if so, which kind of selector
ObjCSelectorContext CompleteExprSelectorContext = ObjCSelectorContext::None;
std::vector<Expr *> leadingSequenceExprs;
public:
CodeCompletionCallbacks(Parser &P) : P(P), Context(P.Context) {}
virtual ~CodeCompletionCallbacks() {}
bool isInsideObjCSelector() const {
return CompleteExprSelectorContext != ObjCSelectorContext::None;
}
void setExprBeginning(ParserPosition PP) {
ExprBeginPosition = PP;
}
/// Set the decl inside which the code-completion occurred. This is used when
/// completing inside a parameter list or where clause where the Parser's
/// CurDeclContext will not be where we want to perform lookup.
void setParsedDecl(Decl *D) {
ParsedDecl = D;
}
void setLeadingSequenceExprs(ArrayRef<Expr *> exprs) {
leadingSequenceExprs.assign(exprs.begin(), exprs.end());
}
class InEnumElementRawValueRAII {
CodeCompletionCallbacks *Callbacks;
public:
InEnumElementRawValueRAII(CodeCompletionCallbacks *Callbacks)
: Callbacks(Callbacks) {
if (Callbacks)
Callbacks->InEnumElementRawValue = true;
}
~InEnumElementRawValueRAII() {
if (Callbacks)
Callbacks->InEnumElementRawValue = false;
}
};
/// RAII type that temporarily sets the "in Objective-C #selector expression"
/// flag on the code completion callbacks object.
class InObjCSelectorExprRAII {
CodeCompletionCallbacks *Callbacks;
public:
InObjCSelectorExprRAII(CodeCompletionCallbacks *Callbacks,
ObjCSelectorContext SelectorContext)
: Callbacks(Callbacks) {
if (Callbacks)
Callbacks->ParseExprSelectorContext = SelectorContext;
}
~InObjCSelectorExprRAII() {
if (Callbacks)
Callbacks->ParseExprSelectorContext = ObjCSelectorContext::None;
}
};
/// Set target decl for attribute if the CC token is in attribute of the decl.
virtual void setAttrTargetDeclKind(std::optional<DeclKind> DK) {}
/// Set that the code completion token occurred in a custom attribute. This
/// allows us to type check the custom attribute even if it is not attached to
/// the AST, e.g. because there is no var declaration following it.
virtual void setCompletingInAttribute(CustomAttr *Attr){};
/// Complete expr-dot after we have consumed the dot.
virtual void completeDotExpr(CodeCompletionExpr *E, SourceLoc DotLoc) {};
/// Complete the beginning of a statement or expression.
virtual void completeStmtOrExpr(CodeCompletionExpr *E) {};
/// Complete the beginning of expr-postfix -- no tokens provided
/// by user.
virtual void completePostfixExprBeginning(CodeCompletionExpr *E) {};
/// Complete the beginning of expr-postfix in a for-each loop sequence
/// -- no tokens provided by user.
virtual void completeForEachSequenceBeginning(CodeCompletionExpr *E) {};
/// Complete the \c in keyword in a for-each loop.
virtual void completeForEachInKeyword(){};
/// Complete a expr-postfix. The \c CodeCompletionExpr has the expression it
/// is completing after set as its base.
virtual void completePostfixExpr(CodeCompletionExpr *E, bool hasSpace){};
/// Complete the argument to an Objective-C #keyPath
/// expression.
///
/// \param KPE A partial #keyPath expression that can be used to
/// provide context. This will be \c NULL if no components of the
/// #keyPath argument have been parsed yet.
virtual void completeExprKeyPath(KeyPathExpr *KPE, SourceLoc DotLoc) {};
/// Complete the beginning of the type for a parameter of a
/// func/subscript/closure, or the type for a parameter in a function type.
/// For the latter, we cannot know for sure whether the user is trying to
/// write a function type, so will complete for e.g `let x: (#^COMPLETE^#`.
virtual void completeTypePossibleFunctionParamBeginning() {}
/// Complete the beginning of the type of result of func/var/let/subscript.
virtual void completeTypeDeclResultBeginning() {};
/// Same as `completeTypeSimpleOrComposition` but also allows `repeat`.
virtual void completeTypeBeginning(){};
/// Same as `completeTypeSimpleBeginning` but also allows `any`, `some` and
/// `each`.
virtual void completeTypeSimpleOrComposition(){};
/// Complete the beginning of type-simple -- no tokens provided
/// by user.
virtual void completeTypeSimpleBeginning() {};
/// Complete a given \c type-simple after we have consumed the dot.
virtual void completeTypeSimpleWithDot(TypeRepr *TR){};
/// Complete a given \c type-simple when there is no trailing dot.
virtual void completeTypeSimpleWithoutDot(TypeRepr *TR){};
/// Complete a given \c type-simple following a \c ~ prefix.
virtual void completeTypeSimpleInverted() {};
/// Complete the beginning of a case statement at the top of switch stmt.
virtual void completeCaseStmtKeyword() {};
/// Complete at the beginning of a case stmt pattern.
virtual void completeCaseStmtBeginning(CodeCompletionExpr *E) {};
/// Complete at the beginning of member of a nominal decl member -- no tokens
/// provided by user.
virtual void completeNominalMemberBeginning(
SmallVectorImpl<StringRef> &Keywords, SourceLoc introducerLoc) {};
/// Complete at the beginning of accessor in a accessor block.
virtual void completeAccessorBeginning(CodeCompletionExpr *E) {};
/// Complete the keyword in attribute, for instance, @available.
virtual void completeDeclAttrBeginning(bool Sil, bool isIndependent) {};
/// Complete the parameters in attribute, for instance, version specifier for
/// @available.
/// If `HasLabel` is `true`, then the argument already has a label specified,
/// e.g. we're completing after `names: ` in a macro declaration.
virtual void completeDeclAttrParam(ParameterizedDeclAttributeKind DK, int Index,
bool HasLabel){};
/// Complete 'async' and 'throws' at effects specifier position.
virtual void completeEffectsSpecifier(bool hasAsync, bool hasThrows) {};
enum class PrecedenceGroupCompletionKind {
Relation,
Associativity,
AttributeList,
Assignment,
};
/// Complete within a precedence group decl or after a colon in an
/// operator decl.
virtual void completeInPrecedenceGroup(PrecedenceGroupCompletionKind SK) {};
/// Complete the platform names inside #available statements.
virtual void completePoundAvailablePlatform() {};
/// Complete the import decl with importable modules.
virtual void
completeImportDecl(ImportPath::Builder &Path) {};
/// Complete the 'using' decl with supported specifiers.
virtual void
completeUsingDecl() {};
/// Complete unresolved members after dot.
virtual void completeUnresolvedMember(CodeCompletionExpr *E,
SourceLoc DotLoc) {};
virtual void completeCallArg(CodeCompletionExpr *E) {};
virtual bool canPerformCompleteLabeledTrailingClosure() const {
return false;
}
virtual void completeReturnStmt(CodeCompletionExpr *E){};
virtual void completeThenStmt(CodeCompletionExpr *E) {};
/// Complete a yield statement. A missing yield index means that the
/// completion immediately follows the 'yield' keyword; it may be either
/// an expression or a parenthesized expression list. A present yield
/// index means that the completion is within the parentheses and is
/// for a specific yield value.
virtual void completeYieldStmt(CodeCompletionExpr *E,
std::optional<unsigned> yieldIndex){};
virtual void completeAfterPoundExpr(CodeCompletionExpr *E,
std::optional<StmtKind> ParentKind){};
virtual void completeAfterPoundDirective() {};
virtual void completePlatformCondition() {};
virtual void completeAfterIfStmtElse() {};
virtual void completeGenericRequirement() {};
virtual void completeStmtLabel(StmtKind ParentKind) {};
virtual
void completeForEachPatternBeginning(
bool hasTry, bool hasAwait, bool hasUnsafe) {};
virtual void completeTypeAttrBeginning() {};
virtual void completeTypeAttrInheritanceBeginning() {};
virtual void completeOptionalBinding(){};
};
class DoneParsingCallback {
public:
virtual ~DoneParsingCallback() {}
/// Signals that the AST for the all the delayed-parsed code was
/// constructed. No \c complete*() callbacks will be done after this.
virtual void doneParsing(SourceFile *SrcFile) = 0;
};
/// A factory to create instances of \c CodeCompletionCallbacks and
/// \c DoneParsingCallback.
class IDEInspectionCallbacksFactory {
public:
virtual ~IDEInspectionCallbacksFactory() {}
struct Callbacks {
std::shared_ptr<CodeCompletionCallbacks> CompletionCallbacks;
std::shared_ptr<DoneParsingCallback> DoneParsingCallback;
};
/// Create an instance of \c IDEInspectionCallbacks. The result
/// should be deallocated with 'delete'.
virtual Callbacks createCallbacks(Parser &P) = 0;
};
} // namespace swift
#endif // LLVM_SWIFT_PARSE_CODE_COMPLETION_CALLBACKS_H | c | github | https://github.com/apple/swift | include/swift/Parse/IDEInspectionCallbacks.h |
# -*- coding: utf-8 -*-
#
# Copyright 2012-2015 Spotify AB
#
# 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.
#
"""
Apache Pig support.
Example configuration section in luigi.cfg::
[pig]
# pig home directory
home: /usr/share/pig
"""
from contextlib import contextmanager
import logging
import os
import select
import signal
import subprocess
import sys
import tempfile
from luigi import six
import luigi
from luigi import configuration
logger = logging.getLogger('luigi-interface')
class PigJobTask(luigi.Task):
def pig_home(self):
return configuration.get_config().get('pig', 'home', '/usr/share/pig')
def pig_command_path(self):
return os.path.join(self.pig_home(), "bin/pig")
def pig_env_vars(self):
"""
Dictionary of environment variables that should be set when running Pig.
Ex::
return { 'PIG_CLASSPATH': '/your/path' }
"""
return {}
def pig_properties(self):
"""
Dictionary of properties that should be set when running Pig.
Example::
return { 'pig.additional.jars':'/path/to/your/jar' }
"""
return {}
def pig_parameters(self):
"""
Dictionary of parameters that should be set for the Pig job.
Example::
return { 'YOUR_PARAM_NAME':'Your param value' }
"""
return {}
def pig_options(self):
"""
List of options that will be appended to the Pig command.
Example::
return ['-x', 'local']
"""
return []
def output(self):
raise NotImplementedError("subclass should define output path")
def pig_script_path(self):
"""
Return the path to the Pig script to be run.
"""
raise NotImplementedError("subclass should define pig_script_path")
@contextmanager
def _build_pig_cmd(self):
opts = self.pig_options()
line = lambda k, v: ('%s=%s%s' % (k, v, os.linesep)).encode('utf-8')
with tempfile.NamedTemporaryFile() as param_file, tempfile.NamedTemporaryFile() as prop_file:
if self.pig_parameters():
items = six.iteritems(self.pig_parameters())
param_file.writelines(line(k, v) for (k, v) in items)
opts.append('-param_file')
opts.append(param_file.name)
if self.pig_properties():
items = six.iteritems(self.pig_properties())
prop_file.writelines(line(k, v) for (k, v) in items)
opts.append('-propertyFile')
opts.append(prop_file.name)
cmd = [self.pig_command_path()] + opts + ["-f", self.pig_script_path()]
logger.info(subprocess.list2cmdline(cmd))
yield cmd
def run(self):
with self._build_pig_cmd() as cmd:
self.track_and_progress(cmd)
def track_and_progress(self, cmd):
temp_stdout = tempfile.TemporaryFile()
env = os.environ.copy()
env['PIG_HOME'] = self.pig_home()
for k, v in six.iteritems(self.pig_env_vars()):
env[k] = v
proc = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env)
reads = [proc.stderr.fileno(), proc.stdout.fileno()]
# tracking the possible problems with this job
err_lines = []
with PigRunContext():
while proc.poll() is None:
ret = select.select(reads, [], [])
for fd in ret[0]:
if fd == proc.stderr.fileno():
line = proc.stderr.readline().decode('utf8')
err_lines.append(line)
if fd == proc.stdout.fileno():
line = proc.stdout.readline().decode('utf8')
temp_stdout.write(line)
err_line = line.lower()
if err_line.find('More information at:') != -1:
logger.info(err_line.split('more information at: ')[-1].strip())
if err_line.find(' - '):
t = err_line.split(' - ')[-1].strip()
if t != "":
logger.info(t)
# Read the rest + stdout
err = ''.join(err_lines + [an_err_line.decode('utf8') for an_err_line in proc.stderr])
if proc.returncode == 0:
logger.info("Job completed successfully!")
else:
logger.error("Error when running script:\n%s", self.pig_script_path())
logger.error(err)
raise PigJobError("Pig script failed with return value: %s" % (proc.returncode,), err=err)
class PigRunContext(object):
def __init__(self):
self.job_id = None
def __enter__(self):
self.__old_signal = signal.getsignal(signal.SIGTERM)
signal.signal(signal.SIGTERM, self.kill_job)
return self
def kill_job(self, captured_signal=None, stack_frame=None):
if self.job_id:
logger.info('Job interrupted, killing job %s', self.job_id)
subprocess.call(['pig', '-e', '"kill %s"' % self.job_id])
if captured_signal is not None:
# adding 128 gives the exit code corresponding to a signal
sys.exit(128 + captured_signal)
def __exit__(self, exc_type, exc_val, exc_tb):
if exc_type is KeyboardInterrupt:
self.kill_job()
signal.signal(signal.SIGTERM, self.__old_signal)
class PigJobError(RuntimeError):
def __init__(self, message, out=None, err=None):
super(PigJobError, self).__init__(message, out, err)
self.message = message
self.out = out
self.err = err
def __str__(self):
info = self.message
if self.out:
info += "\nSTDOUT: " + str(self.out)
if self.err:
info += "\nSTDERR: " + str(self.err)
return info | unknown | codeparrot/codeparrot-clean | ||
/*
* Copyright 2012-present the original author or authors.
*
* 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
*
* https://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.
*/
package org.springframework.boot.docker.compose.core;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Consumer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jspecify.annotations.Nullable;
import org.springframework.boot.docker.compose.core.DockerCliCommand.ComposeVersion;
import org.springframework.boot.docker.compose.core.DockerCliCommand.Type;
import org.springframework.boot.logging.LogLevel;
import org.springframework.core.log.LogMessage;
import org.springframework.util.CollectionUtils;
/**
* Wrapper around {@code docker} and {@code docker-compose} command line tools.
*
* @author Moritz Halbritter
* @author Andy Wilkinson
* @author Phillip Webb
*/
class DockerCli {
private static final Map<@Nullable File, DockerCommands> dockerCommandsCache = new HashMap<>();
private static final Log logger = LogFactory.getLog(DockerCli.class);
private final ProcessRunner processRunner;
private final DockerCommands dockerCommands;
private final DockerComposeOptions dockerComposeOptions;
private final ComposeVersion composeVersion;
/**
* Create a new {@link DockerCli} instance.
* @param workingDirectory the working directory or {@code null}
* @param dockerComposeOptions the Docker Compose options to use or {@code null}.
*/
DockerCli(@Nullable File workingDirectory, @Nullable DockerComposeOptions dockerComposeOptions) {
this.processRunner = new ProcessRunner(workingDirectory);
this.dockerCommands = dockerCommandsCache.computeIfAbsent(workingDirectory,
(key) -> new DockerCommands(this.processRunner));
this.dockerComposeOptions = (dockerComposeOptions != null) ? dockerComposeOptions : DockerComposeOptions.none();
this.composeVersion = ComposeVersion.of(this.dockerCommands.get(Type.DOCKER_COMPOSE).version());
}
/**
* Run the given {@link DockerCli} command and return the response.
* @param <R> the response type
* @param dockerCommand the command to run
* @return the response
*/
<R> R run(DockerCliCommand<R> dockerCommand) {
List<String> command = createCommand(dockerCommand.getType());
command.addAll(dockerCommand.getCommand(this.composeVersion));
Consumer<String> outputConsumer = createOutputConsumer(dockerCommand.getLogLevel());
String json = this.processRunner.run(outputConsumer, command.toArray(new String[0]));
return dockerCommand.deserialize(json);
}
private @Nullable Consumer<String> createOutputConsumer(@Nullable LogLevel logLevel) {
if (logLevel == null || logLevel == LogLevel.OFF) {
return null;
}
return (line) -> logLevel.log(logger, line);
}
private List<String> createCommand(Type type) {
return switch (type) {
case DOCKER -> new ArrayList<>(this.dockerCommands.get(type).command());
case DOCKER_COMPOSE -> {
List<String> result = new ArrayList<>(this.dockerCommands.get(type).command());
DockerComposeFile composeFile = this.dockerComposeOptions.composeFile();
if (composeFile != null) {
for (File file : composeFile.getFiles()) {
result.add("--file");
result.add(file.getPath());
}
}
result.add("--ansi");
result.add("never");
Set<String> activeProfiles = this.dockerComposeOptions.activeProfiles();
if (!CollectionUtils.isEmpty(activeProfiles)) {
for (String profile : activeProfiles) {
result.add("--profile");
result.add(profile);
}
}
List<String> arguments = this.dockerComposeOptions.arguments();
if (!CollectionUtils.isEmpty(arguments)) {
result.addAll(arguments);
}
yield result;
}
};
}
/**
* Return the {@link DockerComposeFile} being used by this CLI instance.
* @return the Docker Compose file
*/
@Nullable DockerComposeFile getDockerComposeFile() {
return this.dockerComposeOptions.composeFile();
}
/**
* Holds details of the actual CLI commands to invoke.
*/
private static class DockerCommands {
private final DockerCommand dockerCommand;
private final DockerCommand dockerComposeCommand;
DockerCommands(ProcessRunner processRunner) {
this.dockerCommand = getDockerCommand(processRunner);
this.dockerComposeCommand = getDockerComposeCommand(processRunner);
}
private DockerCommand getDockerCommand(ProcessRunner processRunner) {
try {
String version = processRunner.run("docker", "version", "--format", "{{.Client.Version}}");
logger.trace(LogMessage.format("Using docker %s", version));
return new DockerCommand(version, List.of("docker"));
}
catch (ProcessStartException ex) {
throw new DockerProcessStartException("Unable to start docker process. Is docker correctly installed?",
ex);
}
catch (ProcessExitException ex) {
if (ex.getStdErr().contains("docker daemon is not running")
|| ex.getStdErr().contains("Cannot connect to the Docker daemon")) {
throw new DockerNotRunningException(ex.getStdErr(), ex);
}
throw ex;
}
}
private DockerCommand getDockerComposeCommand(ProcessRunner processRunner) {
try {
DockerCliComposeVersionResponse response = DockerJson.deserialize(
processRunner.run("docker", "compose", "version", "--format", "json"),
DockerCliComposeVersionResponse.class);
logger.trace(LogMessage.format("Using Docker Compose %s", response.version()));
return new DockerCommand(response.version(), List.of("docker", "compose"));
}
catch (ProcessExitException ex) {
// Ignore and try docker-compose
}
try {
DockerCliComposeVersionResponse response = DockerJson.deserialize(
processRunner.run("docker-compose", "version", "--format", "json"),
DockerCliComposeVersionResponse.class);
logger.trace(LogMessage.format("Using docker-compose %s", response.version()));
return new DockerCommand(response.version(), List.of("docker-compose"));
}
catch (ProcessStartException ex) {
throw new DockerProcessStartException(
"Unable to start 'docker-compose' process or use 'docker compose'. Is docker correctly installed?",
ex);
}
}
DockerCommand get(Type type) {
return switch (type) {
case DOCKER -> this.dockerCommand;
case DOCKER_COMPOSE -> this.dockerComposeCommand;
};
}
}
private record DockerCommand(String version, List<String> command) {
}
/**
* Options for Docker Compose.
*
* @param composeFile the Docker Compose file to use
* @param activeProfiles the profiles to activate
* @param arguments the arguments to pass to Docker Compose
*/
record DockerComposeOptions(@Nullable DockerComposeFile composeFile, Set<String> activeProfiles,
List<String> arguments) {
DockerComposeOptions(@Nullable DockerComposeFile composeFile, @Nullable Set<String> activeProfiles,
@Nullable List<String> arguments) {
this.composeFile = composeFile;
this.activeProfiles = (activeProfiles != null) ? activeProfiles : Collections.emptySet();
this.arguments = (arguments != null) ? arguments : Collections.emptyList();
}
static DockerComposeOptions none() {
return new DockerComposeOptions(null, null, null);
}
}
} | java | github | https://github.com/spring-projects/spring-boot | core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/core/DockerCli.java |
```yaml {applies_to}
serverless: ga
stack: ga
```
The `WHERE` processing command produces a table that contains all the rows from
the input table for which the provided condition evaluates to `true`.
::::{tip}
In case of value exclusions, fields with `null` values will be excluded from search results.
In this context a `null` means either there is an explicit `null` value in the document or
there is no value at all. For example: `WHERE field != "value"` will be interpreted as
`WHERE field != "value" AND field IS NOT NULL`.
::::
**Syntax**
```esql
WHERE expression
```
**Parameters**
`expression`
: A boolean expression.
**Examples**
:::{include} ../examples/docs.csv-spec/where.md
:::
Which, if `still_hired` is a boolean field, can be simplified to:
:::{include} ../examples/docs.csv-spec/whereBoolean.md
:::
Use date math to retrieve data from a specific time range. For example, to
retrieve the last hour of logs:
:::{include} ../examples/date.csv-spec/docsNowWhere.md
:::
`WHERE` supports various [functions](/reference/query-languages/esql/esql-functions-operators.md#esql-functions).
For example the [`LENGTH`](/reference/query-languages/esql/functions-operators/string-functions.md#esql-length) function:
:::{include} ../examples/docs.csv-spec/whereFunction.md
:::
For a complete list of all functions, refer to [Functions overview](/reference/query-languages/esql/esql-functions-operators.md#esql-functions).
### NULL Predicates
For NULL comparison, use the `IS NULL` and `IS NOT NULL` predicates.
:::{include} ../../operators/examples/is_null.md
:::
:::{include} ../../operators/examples/is_not_null.md
:::
### Matching text
For matching text, you can use [full text search functions](/reference/query-languages/esql/functions-operators/search-functions.md) like `MATCH`.
Use [`MATCH`](/reference/query-languages/esql/functions-operators/search-functions.md#esql-match) to perform a
[match query](/reference/query-languages/query-dsl/query-dsl-match-query.md) on a specified field.
Match can be used on text fields, as well as other field types like boolean, dates, and numeric types.
:::{include} ../../functions/examples/match.md
:::
::::{tip}
You can also use the shorthand [match operator](/reference/query-languages/esql/functions-operators/operators.md#esql-match-operator) `:` instead of `MATCH`.
::::
### LIKE and RLIKE
Use `LIKE` to filter data based on string patterns using wildcards. `LIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
The following wildcard characters are supported:
* `*` matches zero or more characters.
* `?` matches one character.
:::{include} ../../operators/types/like.md
:::
:::{include} ../../operators/examples/like.md
:::
:::{include} ../../operators/detailedDescription/like.md
:::
Use `RLIKE` to filter data based on string patterns using using [regular expressions](/reference/query-languages/query-dsl/regexp-syntax.md). `RLIKE` usually acts on a field placed on the left-hand side of the operator, but it can also act on a constant (literal) expression. The right-hand side of the operator represents the pattern.
:::{include} ../../operators/types/rlike.md
:::
:::{include} ../../operators/examples/rlike.md
:::
:::{include} ../../operators/detailedDescription/rlike.md
:::
### IN
The `IN` operator allows testing whether a field or expression equals an element
in a list of literals, fields or expressions:
:::{include} ../../operators/examples/in.md
:::
For a complete list of all operators, refer to [Operators](/reference/query-languages/esql/esql-functions-operators.md#esql-operators-overview). | unknown | github | https://github.com/elastic/elasticsearch | docs/reference/query-languages/esql/_snippets/commands/layout/where.md |
# -*- coding: utf-8 -*-
'''
Specto Add-on
Copyright (C) 2015 lambda
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 3 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, see <http://www.gnu.org/licenses/>.
'''
import re,ast
from resources.lib.libraries import client
def resolve(url):
return
try:
url = url.replace('/embed-', '/')
url = re.compile('//.+?/([\w]+)').findall(url)[0]
url = 'http://thevideo.me/embed-%s.html' % url
result = client.request(url)
result = result.replace('\n','')
url = re.compile("sources *: *(\[.+?\])").findall(result)[-1]
url = re.compile('file *: *[\'|\"](.+?)[\'|\"]').findall(url)[-1]
return url
except:
return
def check(url):
try:
result = client.request(url)
if result == None: return False
if 'File Deleted.' in result: return False
return True
except:
return False | unknown | codeparrot/codeparrot-clean | ||
from coredata.forms import PersonField
from django import forms
from django.core.files.uploadedfile import SimpleUploadedFile
from django.forms.fields import MultipleChoiceField
from django.forms.models import ModelForm
from coredata.models import Person
from coredata.queries import add_person, SIMSProblem
from courselib.search import find_userid_or_emplid
from onlineforms.models import Form, Sheet, FIELD_TYPE_CHOICES, FIELD_TYPE_MODELS, FormGroup, VIEWABLE_CHOICES, NonSFUFormFiller
from django.utils.safestring import mark_safe
from django.forms.utils import ErrorList
class DividerFieldWidget(forms.TextInput):
def render(self, name, value, attrs=None, renderer=None):
return mark_safe('<hr />')
# Manage groups
class GroupForm(ModelForm):
class Meta:
model = FormGroup
exclude = ('members', 'config')
class EditGroupForm(ModelForm):
class Meta:
model = FormGroup
fields = ('name',)
class EmployeeSearchForm(forms.Form):
search = PersonField(label="Person")
email = forms.BooleanField(required=False, initial=True,
help_text="Should this member be emailed when submissions come in?")
def is_valid(self, *args, **kwargs):
PersonField.person_data_prep(self)
return super(EmployeeSearchForm, self).is_valid(*args, **kwargs)
# Manage forms
class FormForm(ModelForm):
loginprompt = forms.BooleanField(required=False, initial=True, label='Login prompt',
help_text='Should non-logged-in users be prompted to log in? Uncheck this if you '
'expect most users to be external to SFU.')
unlisted = forms.BooleanField(required=False, initial=False, label='Unlisted',
help_text='Should this form be visible in the list of forms everyone can see? '
'If this is checked, only people with the direct URL will be able to '
'fill in this form.')
autoconfirm = forms.BooleanField(required=False, initial=False, label='Auto-Confirm',
help_text='Should we send the filler of this form a confirmation email once they '
'submit the initial sheet? If unchecked, the user will still see a '
'confirmation message at the top of the page, but they will not get an '
'automatic email.')
emailsubject = forms.CharField(required=False, label='Confirmation Email Subject',
help_text='The subject for the confirmation email.', widget=forms.TextInput)
emailbody = forms.CharField(required=False, label='Confirmation Email Body',
help_text='The message body for the confirmation email.', widget=forms.Textarea)
class Meta:
model = Form
exclude = ('active', 'original', 'unit', 'config')
widgets = {
'description': forms.TextInput(attrs={'size': '70'})
}
def __init__(self, *args, **kwargs):
super(FormForm, self).__init__(*args, **kwargs)
self.initial['loginprompt'] = self.instance.loginprompt()
self.initial['unlisted'] = self.instance.unlisted()
self.initial['autoconfirm'] = self.instance.autoconfirm()
self.initial['emailsubject'] = self.instance.emailsubject()
self.initial['emailbody'] = self.instance.emailbody()
def save(self, *args, **kwargs):
self.instance.set_loginprompt(self.cleaned_data['loginprompt'])
self.instance.set_unlisted(self.cleaned_data['unlisted'])
self.instance.set_autoconfirm(self.cleaned_data['autoconfirm'])
self.instance.set_emailsubject(self.cleaned_data['emailsubject'])
self.instance.set_emailbody(self.cleaned_data['emailbody'])
return super(FormForm, self).save(*args, **kwargs)
# get instance of the FormForm
def _get(self):
return self.instance
#Validation error on assigning Forms without initial sheets
def clean_initiators(self):
initiators = self.cleaned_data['initiators']
form = self._get()
if initiators != 'NON' and not Sheet.objects.filter(form=form, is_initial=True, active=True):
raise forms.ValidationError("Can't activate until you have created at least one sheet to be filled out.")
return initiators
def clean(self):
cleaned_data = super().clean()
if 'autoconfirm' in cleaned_data and cleaned_data['autoconfirm']:
if not cleaned_data['emailsubject']:
self.add_error('emailsubject', 'If you select the auto-confirm option, you must have an email subject.')
if not cleaned_data['emailbody']:
self.add_error('emailbody', 'If you select the auto-confirm option, you must have an email body.')
class NewFormForm(FormForm):
class Meta:
model = Form
exclude = ('active', 'original', 'unit', 'initiators', 'config')
widgets = {
'description': forms.TextInput(attrs={'size': '70'})
}
class SheetForm(forms.Form):
title = forms.CharField(required=True, max_length=60, label=mark_safe('Title'), help_text='Name of the sheet')
can_view = forms.ChoiceField(required=True, choices=VIEWABLE_CHOICES, label='Can view', help_text='When someone is filling out this sheet, what else can they see?')
class EditSheetForm(ModelForm):
class Meta:
model = Sheet
exclude = ('active', 'original', 'order', 'is_initial', 'config', 'form')
class NonSFUFormFillerForm(ModelForm):
class Meta:
model = NonSFUFormFiller
exclude = ('config',)
class FieldForm(forms.Form):
type = forms.ChoiceField(required=True, choices=FIELD_TYPE_CHOICES, label='Type')
# Administrate forms
class _FormModelChoiceField(forms.ModelChoiceField):
widget = forms.RadioSelect
def label_from_instance(self, obj):
return obj.title
class _AdminAssignForm(forms.Form):
def is_valid(self, *args, **kwargs):
PersonField.person_data_prep(self)
return super(_AdminAssignForm, self).is_valid(*args, **kwargs)
class AdminAssignFormForm(_AdminAssignForm):
form = _FormModelChoiceField(required=True, queryset=Form.objects.none(), empty_label=None)
assignee = PersonField(label='Assign to', required=True, needs_email=True)
def __init__(self, query_set, *args, **kwargs):
super(AdminAssignFormForm, self).__init__(*args, **kwargs)
self.fields['form'].queryset = query_set
class AdminAssignSheetForm(_AdminAssignForm):
sheet = _FormModelChoiceField(required=True, queryset=Sheet.objects.none(), empty_label=None)
assignee = PersonField(label='Assign to', required=True, needs_email=True)
comment = forms.CharField(required=False, widget=forms.Textarea(attrs={'rows': '3', 'cols': '70'}),
help_text="Optional comment on the form: this becomes part of the form history. If you have additional info about this submission, you can record it here.")
note = forms.CharField(required=False, widget=forms.Textarea(attrs={'rows': '3', 'cols': '70'}),
help_text="Optional private note to the assignee")
def __init__(self, query_set, *args, **kwargs):
super(_AdminAssignForm, self).__init__(*args, **kwargs)
self.fields['sheet'].queryset = query_set
class _AdminAssignForm_nonsfu(ModelForm):
class Meta:
model = NonSFUFormFiller
exclude = ('config',)
class AdminAssignFormForm_nonsfu(_AdminAssignForm_nonsfu):
form = _FormModelChoiceField(required=True, queryset=Form.objects.none(), empty_label=None)
def __init__(self, query_set, *args, **kwargs):
super(_AdminAssignForm_nonsfu, self).__init__(*args, **kwargs)
self.fields['form'].queryset = query_set
class AdminAssignSheetForm_nonsfu(_AdminAssignForm_nonsfu):
sheet = _FormModelChoiceField(required=True, queryset=Sheet.objects.none(), empty_label=None)
comment = forms.CharField(required=False, widget=forms.Textarea(attrs={'rows': '3', 'cols': '70'}),
help_text="Optional comment on the form: this becomes part of the form history.")
note = forms.CharField(required=False, widget=forms.TextInput(attrs={'size': '70'}),
help_text="Optional note to the assignee")
def __init__(self, query_set, *args, **kwargs):
super(_AdminAssignForm_nonsfu, self).__init__(*args, **kwargs)
self.fields['sheet'].queryset = query_set
class ChangeOwnerForm(forms.Form):
new_group = forms.ModelChoiceField(queryset=None, required=True,
help_text="Form group that should take ownership of this form submission")
def __init__(self, queryset, *args, **kwargs):
super(ChangeOwnerForm, self).__init__(*args, **kwargs)
self.fields['new_group'].queryset = queryset
class AdminReturnForm(forms.Form):
reason = forms.CharField(required=True,
help_text="Reason you are giving the form back: will be emailed to the user.",
widget=forms.TextInput(attrs={'size': '70'}))
class CloseFormForm(forms.Form):
summary = forms.CharField(required=True,
help_text="Summary of the form, for advisors (and emailing to student if you select below).",
widget=forms.Textarea(attrs={'rows': '5', 'cols': '70'})
)
email = forms.BooleanField(initial=False, required=False, help_text="Would you like to email the summary to the student?")
email_cc = forms.CharField(label='Email CC', required=False, widget=forms.TextInput(),
help_text='If you are emailing the student, you can also get others to be '
'CCed as well. Please add addresses here, separated by commas.')
def __init__(self, advisor_visible, *args, **kwargs):
super(CloseFormForm, self).__init__(*args, **kwargs)
self.used = True
if not advisor_visible:
# only care about these fields for advisor-visible things
del self.fields['summary']
del self.fields['email']
self.used = False
class DynamicForm(forms.Form):
def __init__(self, title, *args, **kwargs):
self.title = title
super(DynamicForm, self).__init__(*args, **kwargs)
# Force no enforcing of required field by browser so we can save the form.
self.use_required_attribute=False
def fromFields(self, fields, field_submissions=[]):
"""
Sets the fields from a list of field model objects
preserving the order they are given in
"""
# create a dictionary so you can find a fieldsubmission based on a field
field_submission_dict = {}
for field_submission in field_submissions:
field_submission_dict[field_submission.field] = field_submission
fieldargs = {}
# keep a dictionary of the configured display fields, so we can serialize them with data later
self.display_fields = {}
for (counter, field) in enumerate(fields):
# get the field
display_field = FIELD_TYPE_MODELS[field.fieldtype](field.config)
# make the form field, using the form submission data if it exists
if field in field_submission_dict:
self.fields[counter] = display_field.make_entry_field(field_submission_dict[field])
if (field.fieldtype == "LIST"):
self.fields[counter].widget.set_initial_data(field_submission_dict[field].data['info'])
else:
self.fields[counter] = display_field.make_entry_field()
# keep the display field for later
self.display_fields[self.fields[counter] ] = display_field
def fromPostData(self, post_data, files_data, ignore_required=False):
self.cleaned_data = {}
for name, field in list(self.fields.items()):
try:
if isinstance(field, forms.MultiValueField):
relevant_data = dict([(k,v) for k,v in list(post_data.items()) if k.startswith(str(name)+"_")])
relevant_data[str(name)] = ''
relevant_data['required'] = ignore_required
cleaned_data = field.compress(relevant_data)
elif isinstance(field, forms.FileField):
if str(name) in files_data:
cleaned_data = field.clean(files_data[str(name)])
elif field.filesub:
# we have no new file, but an old file submission: fake it into place
fs = field.filesub
cleaned_data = SimpleUploadedFile(name=fs.file_attachment.name,
content=fs.file_attachment.read(),
content_type=fs.file_mediatype)
elif ignore_required:
cleaned_data = ""
else:
cleaned_data = field.clean("")
elif str(name) in post_data:
if ignore_required and post_data[str(name)] == "":
cleaned_data = ""
else:
if isinstance(field, MultipleChoiceField):
relevant_data = post_data.getlist(str(name))
cleaned_data = field.clean(relevant_data)
else:
cleaned_data = field.clean(post_data[str(name)])
else:
if ignore_required:
cleaned_data = ""
else:
cleaned_data = field.clean("")
self.cleaned_data[str(name)] = cleaned_data
field.initial = cleaned_data
except forms.ValidationError as e:
#self.errors[name] = ", ".join(e.messages)
self.errors[name] = ErrorList(e.messages)
if str(name) in post_data:
field.initial = post_data[str(name)]
else:
initial_data = [v for k,v in list(post_data.items()) if k.startswith(str(name)+"_") and v != '']
field.initial = initial_data
def is_valid(self):
# override because I'm not sure how to bind this form to data (i.e. form.is_bound)
return not bool(self.errors)
def validate(self, post):
"""
Validate the contents of the form
"""
for name, field in list(self.fields.items()):
try:
field.clean(post[str(name)])
except Exception as e:
self.errors[name] = str(e)
class BulkAssignForm(forms.Form):
admin_userid = forms.CharField(required=True, help_text='The user who should be set as the assigner of the sheets')
form = forms.ModelChoiceField(required=True, queryset=Form.objects.none(), empty_label=None)
people = forms.CharField(required=True, widget=forms.Textarea(attrs={"rows":10, "cols":20}),
help_text='Emplids or userids, one per line, of people who should receive the first sheet.')
def clean_admin_userid(self):
userid = self.cleaned_data['admin_userid']
try:
person = Person.objects.get(find_userid_or_emplid(userid))
except Person.DoesNotExist:
raise forms.ValidationError('Cannot find a person with that userid.')
return person
def clean_people(self):
text = self.cleaned_data['people']
emplids = text.strip().split()
people = []
for e in emplids:
# this is going to be slow if there's a big list
try:
person = Person.objects.get(find_userid_or_emplid(e))
except Person.DoesNotExist:
try:
person = add_person(int(e))
if person is None:
raise forms.ValidationError('Cannot find a person emplid/userid %r.' % (e,))
except (ValueError, SIMSProblem):
raise forms.ValidationError('Cannot find a person emplid/userid %r.' % (e,))
people.append(person)
return people | unknown | codeparrot/codeparrot-clean | ||
# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import abc
import numpy as np
import six
import tensorflow as tf
from tensorflow.contrib.distributions.python.ops import operator_pd_diag
from tensorflow.contrib.distributions.python.ops import operator_test_util
@six.add_metaclass(abc.ABCMeta)
class OperatorPDDiagBaseTest(object):
def setUp(self):
self._rng = np.random.RandomState(42)
def _random_pd_diag(self, diag_shape):
return self._rng.rand(*diag_shape) + 0.1
@abc.abstractmethod
def _diag_to_matrix(self, diag):
pass
@abc.abstractproperty
def operator_class(self):
# Return the operator class that this tests.
pass
def _build_operator_and_mat(self, batch_shape, k, dtype=np.float64):
# Create a diagonal matrix explicitly.
# Create an OperatorPDSqrtDiag using the same diagonal.
# The operator should have the same behavior.
#
batch_shape = list(batch_shape)
diag_shape = batch_shape + [k]
# The diag is the square root.
diag = self._random_pd_diag(diag_shape).astype(dtype)
mat = self._diag_to_matrix(diag).astype(dtype)
operator = self.operator_class(diag)
return operator, mat
def testNonPositiveDefiniteMatrixRaises(self):
# Singlular matrix with one positive eigenvalue and one zero eigenvalue.
with self.test_session():
diag = [1.0, 0.0]
operator = operator_pd_diag.OperatorPDSqrtDiag(diag)
with self.assertRaisesOpError("assert_positive"):
operator.to_dense().eval()
def testNonPositiveDefiniteMatrixDoesNotRaiseIfNotVerifyPd(self):
# Singlular matrix with one positive eigenvalue and one zero eigenvalue.
with self.test_session():
diag = [1.0, 0.0]
operator = operator_pd_diag.OperatorPDSqrtDiag(diag, verify_pd=False)
operator.to_dense().eval() # Should not raise
class OperatorPDDiagTest(
OperatorPDDiagBaseTest, operator_test_util.OperatorPDDerivedClassTest):
"""Most tests done in the base classes."""
def _diag_to_matrix(self, diag):
return tf.matrix_diag(diag).eval()
@property
def operator_class(self):
return operator_pd_diag.OperatorPDDiag
class OperatorPDSqrtDiagTest(
OperatorPDDiagBaseTest, operator_test_util.OperatorPDDerivedClassTest):
"""Most tests done in the base classes."""
def _diag_to_matrix(self, diag):
return tf.matrix_diag(diag**2).eval()
@property
def operator_class(self):
return operator_pd_diag.OperatorPDSqrtDiag
if __name__ == "__main__":
tf.test.main() | unknown | codeparrot/codeparrot-clean | ||
/** @import { Effect, EffectNodes, TemplateNode } from '#client' */
import { FILENAME, NAMESPACE_SVG } from '../../../../constants.js';
import {
hydrate_next,
hydrate_node,
hydrating,
set_hydrate_node,
set_hydrating
} from '../hydration.js';
import { create_element, create_text, get_first_child } from '../operations.js';
import { block, teardown } from '../../reactivity/effects.js';
import { set_should_intro } from '../../render.js';
import { active_effect } from '../../runtime.js';
import { component_context, dev_stack } from '../../context.js';
import { DEV } from 'esm-env';
import { EFFECT_TRANSPARENT, ELEMENT_NODE } from '#client/constants';
import { assign_nodes } from '../template.js';
import { is_raw_text_element } from '../../../../utils.js';
import { BranchManager } from './branches.js';
import { set_animation_effect_override } from '../elements/transitions.js';
/**
* @param {Comment | Element} node
* @param {() => string} get_tag
* @param {boolean} is_svg
* @param {undefined | ((element: Element, anchor: Node | null) => void)} render_fn,
* @param {undefined | (() => string)} get_namespace
* @param {undefined | [number, number]} location
* @returns {void}
*/
export function element(node, get_tag, is_svg, render_fn, get_namespace, location) {
let was_hydrating = hydrating;
if (hydrating) {
hydrate_next();
}
var filename = DEV && location && component_context?.function[FILENAME];
/** @type {null | Element} */
var element = null;
if (hydrating && hydrate_node.nodeType === ELEMENT_NODE) {
element = /** @type {Element} */ (hydrate_node);
hydrate_next();
}
var anchor = /** @type {TemplateNode} */ (hydrating ? hydrate_node : node);
/**
* We track this so we can set it when changing the element, allowing any
* `animate:` directive to bind itself to the correct block
*/
var parent_effect = /** @type {Effect} */ (active_effect);
var branches = new BranchManager(anchor, false);
block(() => {
const next_tag = get_tag() || null;
var ns = get_namespace
? get_namespace()
: is_svg || next_tag === 'svg'
? NAMESPACE_SVG
: undefined;
if (next_tag === null) {
branches.ensure(null, null);
set_should_intro(true);
return;
}
branches.ensure(next_tag, (anchor) => {
if (next_tag) {
element = hydrating ? /** @type {Element} */ (element) : create_element(next_tag, ns);
if (DEV && location) {
// @ts-expect-error
element.__svelte_meta = {
parent: dev_stack,
loc: {
file: filename,
line: location[0],
column: location[1]
}
};
}
assign_nodes(element, element);
if (render_fn) {
if (hydrating && is_raw_text_element(next_tag)) {
// prevent hydration glitches
element.append(document.createComment(''));
}
// If hydrating, use the existing ssr comment as the anchor so that the
// inner open and close methods can pick up the existing nodes correctly
var child_anchor = hydrating
? get_first_child(element)
: element.appendChild(create_text());
if (hydrating) {
if (child_anchor === null) {
set_hydrating(false);
} else {
set_hydrate_node(child_anchor);
}
}
set_animation_effect_override(parent_effect);
// `child_anchor` is undefined if this is a void element, but we still
// need to call `render_fn` in order to run actions etc. If the element
// contains children, it's a user error (which is warned on elsewhere)
// and the DOM will be silently discarded
render_fn(element, child_anchor);
set_animation_effect_override(null);
}
// we do this after calling `render_fn` so that child effects don't override `nodes.end`
/** @type {Effect & { nodes: EffectNodes }} */ (active_effect).nodes.end = element;
anchor.before(element);
}
if (hydrating) {
set_hydrate_node(anchor);
}
});
// revert to the default state after the effect has been created
set_should_intro(true);
return () => {
if (next_tag) {
// if we're in this callback because we're re-running the effect,
// disable intros (unless no element is currently displayed)
set_should_intro(false);
}
};
}, EFFECT_TRANSPARENT);
teardown(() => {
set_should_intro(true);
});
if (was_hydrating) {
set_hydrating(true);
set_hydrate_node(anchor);
}
} | javascript | github | https://github.com/sveltejs/svelte | packages/svelte/src/internal/client/dom/blocks/svelte-element.js |
#!/usr/bin/python
# 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.
#
"""
runant.py
This script is a translation of the runant.pl written by Steve Loughran.
It runs ant with/out arguments, it should be quite portable (thanks to
the python os library)
This script has been tested with Python2.0/Win2K
created: 2001-04-11
author: Pierre Dittgen pierre.dittgen@criltelecom.com
Assumptions:
- the "java" executable/script is on the command path
"""
import os, os.path, string, sys
# Change it to 1 to get extra debug information
debug = 0
#######################################################################
# If ANT_HOME is not set default to script's parent directory
if os.environ.has_key('ANT_HOME'):
ANT_HOME = os.environ['ANT_HOME']
else:
ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0])))
# set ANT_LIB location
ANT_LIB = os.path.join(ANT_HOME, 'lib')
# set JAVACMD (check variables JAVACMD and JAVA_HOME)
JAVACMD = None
if not os.environ.has_key('JAVACMD'):
if os.environ.has_key('JAVA_HOME'):
if not os.path.exists(os.environ['JAVA_HOME']):
print "Warning: JAVA_HOME is not defined correctly."
else:
JAVACMD = os.path.join(os.environ['JAVA_HOME'], 'bin', 'java')
else:
print "Warning: JAVA_HOME not set."
else:
JAVACMD = os.environ['JAVACMD']
if not JAVACMD:
JAVACMD = 'java'
launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar')
if not os.path.exists(launcher_jar):
print 'Unable to locate ant-launcher.jar. Expected to find it in %s' % \
ANT_LIB
# Build up standard classpath (LOCALCLASSPATH)
LOCALCLASSPATH = launcher_jar
if os.environ.has_key('LOCALCLASSPATH'):
LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH']
ANT_OPTS = ""
if os.environ.has_key('ANT_OPTS'):
ANT_OPTS = os.environ['ANT_OPTS']
OPTS = ""
if os.environ.has_key('JIKESPATH'):
OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH']
ANT_ARGS = ""
if os.environ.has_key('ANT_ARGS'):
ANT_ARGS = os.environ['ANT_ARGS']
CLASSPATH = ""
if os.environ.has_key('CLASSPATH'):
CLASSPATH = os.environ['CLASSPATH']
# Builds the commandline
cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \
'org.apache.tools.ant.launch.Launcher %s -lib %s %s') \
% (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \
CLASSPATH, string.join(sys.argv[1:], ' '))
if debug:
print '\n%s\n\n' % (cmdline)
sys.stdout.flush()
# Run the biniou!
os.system(cmdline) | unknown | codeparrot/codeparrot-clean | ||
#include <cassert>
#include <iostream>
#include <memory>
#include <string>
#include <fbjni/ByteBuffer.h>
#include <fbjni/fbjni.h>
#include <c10/util/irange.h>
#include <torch/csrc/jit/mobile/import.h>
#include <torch/csrc/jit/mobile/module.h>
#include <torch/script.h>
#include "caffe2/serialize/read_adapter_interface.h"
#include "pytorch_jni_common.h"
#ifdef __ANDROID__
#include <android/asset_manager.h>
#include <android/asset_manager_jni.h>
#include <android/log.h>
#endif
namespace pytorch_jni {
namespace {
struct LiteJITCallGuard {
// VariableType dispatch is not included in default mobile build. We need set
// this guard globally to avoid dispatch error (only for dynamic dispatch).
// Thanks to the unification of Variable class and Tensor class it's no longer
// required to toggle the NonVariableTypeMode per op - so it doesn't hurt to
// always set NonVariableTypeMode for inference only use case.
// TODO: Ideally AutoNonVariableTypeMode in this file should be changed to
// InferenceMode but it's blocked due to typeahead application on Oculus
// (D27943428). To unblock, we need to find out which op is making inplace
// update to an inference tensor outside InferenceMode and properly guard it.
torch::AutoNonVariableTypeMode non_var_guard;
};
} // namespace
class PytorchJni : public facebook::jni::HybridClass<PytorchJni> {
private:
friend HybridBase;
torch::jit::mobile::Module module_;
c10::DeviceType deviceType_;
public:
constexpr static auto kJavaDescriptor = "Lorg/pytorch/LiteNativePeer;";
static facebook::jni::local_ref<jhybriddata> initHybrid(
facebook::jni::alias_ref<jclass>,
facebook::jni::alias_ref<jstring> modelPath,
facebook::jni::alias_ref<
facebook::jni::JMap<facebook::jni::JString, facebook::jni::JString>>
extraFiles,
jint device) {
return makeCxxInstance(modelPath, extraFiles, device);
}
#ifdef __ANDROID__
static facebook::jni::local_ref<jhybriddata> initHybridAndroidAsset(
facebook::jni::alias_ref<jclass>,
facebook::jni::alias_ref<jstring> assetName,
facebook::jni::alias_ref<jobject> assetManager,
jint device) {
return makeCxxInstance(assetName, assetManager, device);
}
#endif
PytorchJni(
facebook::jni::alias_ref<jstring> modelPath,
facebook::jni::alias_ref<
facebook::jni::JMap<facebook::jni::JString, facebook::jni::JString>>
extraFiles,
jint device) {
LiteJITCallGuard guard;
std::unordered_map<std::string, std::string> extra_files;
const auto has_extra = extraFiles && extraFiles->size() > 0;
if (has_extra) {
for (const auto& e : *extraFiles) {
extra_files[e.first->toStdString()] = "";
}
}
deviceType_ = deviceJniCodeToDeviceType(device);
module_ = torch::jit::_load_for_mobile(
std::move(modelPath->toStdString()), std::nullopt, extra_files);
torch::jit::_load_extra_only_for_mobile(
std::move(modelPath->toStdString()), std::nullopt, extra_files);
if (has_extra) {
static auto putMethod =
facebook::jni::JMap<facebook::jni::JString, facebook::jni::JString>::
javaClassStatic()
->template getMethod<facebook::jni::alias_ref<jobject>(
facebook::jni::alias_ref<jobject>,
facebook::jni::alias_ref<jobject>)>("put");
for (const auto& ef : extra_files) {
putMethod(
extraFiles,
facebook::jni::make_jstring(ef.first),
facebook::jni::make_jstring(ef.second));
}
}
}
#ifdef __ANDROID__
PytorchJni(
facebook::jni::alias_ref<jstring> assetName,
facebook::jni::alias_ref<jobject> assetManager,
jint device) {
JNIEnv* env = facebook::jni::Environment::current();
AAssetManager* mgr = AAssetManager_fromJava(env, assetManager.get());
if (!mgr) {
facebook::jni::throwNewJavaException(
facebook::jni::gJavaLangIllegalArgumentException,
"Unable to get asset manager");
}
AAsset* asset = AAssetManager_open(
mgr, assetName->toStdString().c_str(), AASSET_MODE_BUFFER);
if (!asset) {
facebook::jni::throwNewJavaException(
facebook::jni::gJavaLangIllegalArgumentException,
"Failed to open asset '%s'",
assetName->toStdString().c_str());
}
auto assetBuffer = AAsset_getBuffer(asset);
if (!assetBuffer) {
facebook::jni::throwNewJavaException(
facebook::jni::gJavaLangIllegalArgumentException,
"Could not get buffer for asset '%s'",
assetName->toStdString().c_str());
}
LiteJITCallGuard guard;
module_ =
torch::jit::_load_for_mobile(std::make_unique<MemoryReadAdapter>(
assetBuffer, AAsset_getLength(asset)));
AAsset_close(asset);
deviceType_ = deviceJniCodeToDeviceType(device);
}
#endif
static void registerNatives() {
registerHybrid({
makeNativeMethod("initHybrid", PytorchJni::initHybrid),
#ifdef __ANDROID__
makeNativeMethod(
"initHybridAndroidAsset", PytorchJni::initHybridAndroidAsset),
#endif
makeNativeMethod("forward", PytorchJni::forward),
makeNativeMethod("runMethod", PytorchJni::runMethod),
});
}
facebook::jni::local_ref<JIValue> forward(
facebook::jni::alias_ref<
facebook::jni::JArrayClass<JIValue::javaobject>::javaobject>
jinputs) {
std::vector<at::IValue> inputs{};
size_t n = jinputs->size();
inputs.reserve(n);
for (const auto i : c10::irange(n)) {
at::IValue atIValue = JIValue::JIValueToAtIValue(jinputs->getElement(i));
inputs.push_back(std::move(atIValue));
}
auto output = [&]() {
LiteJITCallGuard guard;
return module_.forward(inputs);
}();
return JIValue::newJIValueFromAtIValue(output);
}
facebook::jni::local_ref<JIValue> runMethod(
facebook::jni::alias_ref<facebook::jni::JString::javaobject> jmethodName,
facebook::jni::alias_ref<
facebook::jni::JArrayClass<JIValue::javaobject>::javaobject>
jinputs) {
std::string methodName = jmethodName->toStdString();
std::vector<at::IValue> inputs{};
size_t n = jinputs->size();
inputs.reserve(n);
for (const auto i : c10::irange(n)) {
at::IValue atIValue = JIValue::JIValueToAtIValue(jinputs->getElement(i));
inputs.push_back(std::move(atIValue));
}
if (auto method = module_.find_method(methodName)) {
auto output = [&]() {
LiteJITCallGuard guard;
return module_.get_method(methodName)(inputs);
}();
return JIValue::newJIValueFromAtIValue(output);
}
facebook::jni::throwNewJavaException(
facebook::jni::gJavaLangIllegalArgumentException,
"Undefined method %s",
methodName.c_str());
}
};
} // namespace pytorch_jni
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM* vm, void*) {
return facebook::jni::initialize(vm, [] {
pytorch_jni::common_registerNatives();
pytorch_jni::PytorchJni::registerNatives();
});
} | cpp | github | https://github.com/pytorch/pytorch | android/pytorch_android/src/main/cpp/pytorch_jni_lite.cpp |
// #docplaster
// #docregion
import {Component} from '@angular/core';
import {FormControl, FormGroup, Validators, ReactiveFormsModule} from '@angular/forms';
import {forbiddenNameValidator} from '../shared/forbidden-name.directive';
@Component({
selector: 'app-actor-form-reactive',
templateUrl: './actor-form-reactive.component.html',
styleUrls: ['./actor-form-reactive.component.css'],
imports: [ReactiveFormsModule],
})
export class HeroFormReactiveComponent {
skills = ['Method Acting', 'Singing', 'Dancing', 'Swordfighting'];
actor = {name: 'Tom Cruise', role: 'Romeo', skill: this.skills[3]};
// #docregion form-group
// #docregion custom-validator
actorForm = new FormGroup({
name: new FormControl(this.actor.name, [
Validators.required,
Validators.minLength(4),
forbiddenNameValidator(/bob/i), // <-- Here's how you pass in the custom validator.
]),
role: new FormControl(this.actor.role),
skill: new FormControl(this.actor.skill, Validators.required),
});
// #enddocregion custom-validator
get name() {
return this.actorForm.get('name');
}
get skill() {
return this.actorForm.get('skill');
}
// #enddocregion form-group
}
// #enddocregion | typescript | github | https://github.com/angular/angular | adev/src/content/examples/form-validation/src/app/reactive/actor-form-reactive.component.1.ts |
# Copyright 2019 The Magenta Authors.
#
# 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.
"""Config for MNIST with nlatent=64.
"""
# pylint:disable=invalid-name
import functools
from magenta.models.latent_transfer import nn
n_latent = 64
Encoder = functools.partial(nn.EncoderMNIST, n_latent=n_latent)
Decoder = nn.DecoderMNIST
Classifier = nn.DFull
config = {
'Encoder': Encoder,
'Decoder': Decoder,
'Classifier': Classifier,
'n_latent': n_latent,
'dataset': 'MNIST',
'img_width': 28,
'crop_width': 108,
'batch_size': 512,
'beta': 1.0,
'x_sigma': 0.1,
} | unknown | codeparrot/codeparrot-clean | ||
# -*- coding: utf-8 -*-
address_mode_def = {}
address_mode_def['S_IMPLIED'] = dict(size=1, short='sngl')
address_mode_def['S_IMMEDIATE'] = dict(size=2, short='imm')
address_mode_def['S_IMMEDIATE_WITH_MODIFIER'] = dict(size=2, short='imm')
address_mode_def['S_ACCUMULATOR'] = dict(size=1, short='acc')
address_mode_def['S_IMMEDIATE'] = dict(size=2, short='imm')
address_mode_def['S_ZEROPAGE'] = dict(size=2, short='zp')
address_mode_def['S_ZEROPAGE_X'] = dict(size=2, short='zpx')
address_mode_def['S_ZEROPAGE_Y'] = dict(size=2, short='zpy')
address_mode_def['S_ABSOLUTE'] = dict(size=3, short='abs')
address_mode_def['S_ABSOLUTE_X'] = dict(size=3, short='absx')
address_mode_def['S_ABSOLUTE_Y'] = dict(size=3, short='absy')
address_mode_def['S_INDIRECT_X'] = dict(size=2, short='indx')
address_mode_def['S_INDIRECT_Y'] = dict(size=2, short='indy')
address_mode_def['S_RELATIVE'] = dict(size=2, short='rel')
opcodes = {}
opcodes['ADC'] = dict(imm=0x69, zp=0x65, zpx=0x75, abs=0x6d, absx=0x7d,
absy=0x79, indx=0x61, indy=0x71)
opcodes['AND'] = dict(imm=0x29, zp=0x25, zpx=0x35, abs=0x2d, absx=0x3d,
absy=0x39, indx=0x21, indy=0x31)
opcodes['ASL'] = dict(acc=0x0a, imm=0x0a, zp=0x06, zpx=0x16, abs=0x0e,
absx=0x1e)
opcodes['BCC'] = dict(rel=0x90)
opcodes['BCS'] = dict(rel=0xb0)
opcodes['BEQ'] = dict(rel=0xf0)
opcodes['BIT'] = dict(zp=0x24, abs=0x2c)
opcodes['BMI'] = dict(rel=0x30)
opcodes['BNE'] = dict(rel=0xd0)
opcodes['BPL'] = dict(rel=0x10)
opcodes['BVC'] = dict(rel=0x50)
opcodes['BVS'] = dict(rel=0x70)
opcodes['CLC'] = dict(sngl=0x18)
opcodes['CLD'] = dict(sngl=0xd8)
opcodes['CLI'] = dict(sngl=0x58)
opcodes['CLV'] = dict(sngl=0xb8)
opcodes['CMP'] = dict(imm=0xc9, zp=0xc5, zpx=0xd5, abs=0xcd, absx=0xdd,
absy=0xd9, indx=0xc1, indy=0xd1)
opcodes['CPX'] = dict(imm=0xe0, zp=0xe4, abs=0xec)
opcodes['CPY'] = dict(imm=0xc0, zp=0xc4, abs=0xcc)
opcodes['DEC'] = dict(zp=0xc6, zpx=0xd6, abs=0xce, absx=0xde)
opcodes['DEX'] = dict(sngl=0xca)
opcodes['DEY'] = dict(sngl=0x88)
opcodes['EOR'] = dict(imm=0x49, zp=0x45, zpx=0x55, abs=0x4d, absx=0x5d,
absy=0x59, indx=0x41, indy=0x51)
opcodes['INC'] = dict(zp=0xe6, zpx=0xf6, abs=0xee, absx=0xfe)
opcodes['INX'] = dict(sngl=0xe8)
opcodes['INY'] = dict(sngl=0xc8)
opcodes['JMP'] = dict(abs=0x4c)
opcodes['JSR'] = dict(abs=0x20)
opcodes['LDA'] = dict(imm=0xa9, zp=0xa5, zpx=0xb5, abs=0xad, absx=0xbd,
absy=0xb9, indx=0xa1, indy=0xb1)
opcodes['LDX'] = dict(imm=0xa2, zp=0xa6, zpy=0xb6, abs=0xae, absy=0xbe)
opcodes['LDY'] = dict(imm=0xa0, zp=0xa4, zpx=0xb4, abs=0xac, absx=0xbc)
opcodes['LSR'] = dict(acc=0x4a, imm=0x4a, zp=0x46, zpx=0x56, abs=0x4e,
absx=0x5e)
opcodes['NOP'] = dict(sngl=0xea)
opcodes['ORA'] = dict(imm=0x09, zp=0x05, zpx=0x15, abs=0x0d, absx=0x1d,
absy=0x19, indx=0x01, indy=0x11)
opcodes['PHA'] = dict(sngl=0x48)
opcodes['PHP'] = dict(sngl=0x08)
opcodes['PLA'] = dict(sngl=0x68)
opcodes['PLP'] = dict(sngl=0x28)
opcodes['SBC'] = dict(imm=0xe9, zp=0xe5, zpx=0xf5, abs=0xed, absx=0xfd,
absy=0xf9, indx=0xe1, indy=0xf1)
opcodes['SEC'] = dict(sngl=0x38)
opcodes['SED'] = dict(sngl=0xf8)
opcodes['SEI'] = dict(sngl=0x78)
opcodes['STA'] = dict(zp=0x85, zpx=0x95, abs=0x8d, absx=0x9d, absy=0x99,
indx=0x81, indy=0x91)
opcodes['STX'] = dict(zp=0x86, zpy=0x96, abs=0x8e)
opcodes['STY'] = dict(zp=0x84, zpx=0x94, abs=0x8c)
opcodes['ROL'] = dict(imm=0x2a, zp=0x26, zpx=0x36, abs=0x2e, absx=0x3e)
opcodes['ROR'] = dict(imm=0x6a, zp=0x66, zpx=0x76, abs=0x6e, absx=0x7e)
opcodes['RTI'] = dict(sngl=0x40)
opcodes['RTS'] = dict(sngl=0x60)
opcodes['TAX'] = dict(sngl=0xaa)
opcodes['TAY'] = dict(sngl=0xa8)
opcodes['TSX'] = dict(sngl=0xba)
opcodes['TXA'] = dict(sngl=0x8a)
opcodes['TXS'] = dict(sngl=0x9a)
opcodes['TYA'] = dict(sngl=0x98) | unknown | codeparrot/codeparrot-clean | ||
import sys
import os
import logging
import pandas as pd
from glob import glob
def add_pyspark_path():
"""Add PySpark to the library path based on the value of SPARK_HOME. """
try:
spark_home = os.environ['SPARK_HOME']
sys.path.append(os.path.join(spark_home, 'python'))
py4j_src_zip = glob(os.path.join(spark_home, 'python',
'lib', 'py4j-*-src.zip'))
if len(py4j_src_zip) == 0:
raise ValueError('py4j source archive not found in %s'
% os.path.join(spark_home, 'python', 'lib'))
else:
py4j_src_zip = sorted(py4j_src_zip)[::-1]
sys.path.append(py4j_src_zip[0])
except KeyError:
logging.error("""SPARK_HOME was not set. please set it. e.g.
SPARK_HOME='/home/...' ./bin/pyspark [program]""")
exit(-1)
except ValueError as e:
logging.error(str(e))
exit(-1)
def quiet_py4j():
logger = logging.getLogger('py4j')
logger.setLevel(logging.INFO)
def datetime_to_millis(dt):
"""
Accept a string, Pandas Timestamp, or long, and return millis since the epoch.
"""
if isinstance(dt, pd.Timestamp):
return dt.value / 1000000
elif isinstance(dt, str):
return pd.Timestamp(dt).value / 1000000
elif isinstance(dt, long):
return dt
raise ValueError | unknown | codeparrot/codeparrot-clean | ||
import pandas
import numpy as np
from statsmodels.tools import data
def test_missing_data_pandas():
"""
Fixes GH: #144
"""
X = np.random.random((10,5))
X[1,2] = np.nan
df = pandas.DataFrame(X)
vals, cnames, rnames = data.interpret_data(df)
np.testing.assert_equal(rnames.tolist(), [0,2,3,4,5,6,7,8,9])
def test_structarray():
X = np.random.random((9,)).view([('var1', 'f8'),
('var2', 'f8'),
('var3', 'f8')])
vals, cnames, rnames = data.interpret_data(X)
np.testing.assert_equal(cnames, X.dtype.names)
np.testing.assert_equal(vals, X.view((float,3)))
np.testing.assert_equal(rnames, None)
def test_recarray():
X = np.random.random((9,)).view([('var1', 'f8'),
('var2', 'f8'),
('var3', 'f8')])
vals, cnames, rnames = data.interpret_data(X.view(np.recarray))
np.testing.assert_equal(cnames, X.dtype.names)
np.testing.assert_equal(vals, X.view((float,3)))
np.testing.assert_equal(rnames, None)
def test_dataframe():
X = np.random.random((10,5))
df = pandas.DataFrame(X)
vals, cnames, rnames = data.interpret_data(df)
np.testing.assert_equal(vals, df.values)
np.testing.assert_equal(rnames.tolist(), df.index.tolist())
np.testing.assert_equal(cnames, df.columns.tolist())
def test_patsy_577():
X = np.random.random((10, 2))
df = pandas.DataFrame(X, columns=["var1", "var2"])
from patsy import dmatrix
endog = dmatrix("var1 - 1", df)
np.testing.assert_(data._is_using_patsy(endog, None))
exog = dmatrix("var2 - 1", df)
np.testing.assert_(data._is_using_patsy(endog, exog)) | unknown | codeparrot/codeparrot-clean | ||
export default function Notes() {
return <div>Notes</div>;
} | javascript | github | https://github.com/remix-run/react-router | examples/notes/src/routes/notes.jsx |
#!/bin/sh
test_description='basic sanity checks for git var'
. ./test-lib.sh
sane_unset_all_editors () {
sane_unset GIT_EDITOR &&
sane_unset VISUAL &&
sane_unset EDITOR
}
test_expect_success 'get GIT_AUTHOR_IDENT' '
test_tick &&
echo "$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> $GIT_AUTHOR_DATE" >expect &&
git var GIT_AUTHOR_IDENT >actual &&
test_cmp expect actual
'
test_expect_success 'get GIT_COMMITTER_IDENT' '
test_tick &&
echo "$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE" >expect &&
git var GIT_COMMITTER_IDENT >actual &&
test_cmp expect actual
'
test_expect_success !FAIL_PREREQS,!AUTOIDENT 'requested identities are strict' '
(
sane_unset GIT_COMMITTER_NAME &&
sane_unset GIT_COMMITTER_EMAIL &&
test_must_fail git var GIT_COMMITTER_IDENT
)
'
test_expect_success 'get GIT_DEFAULT_BRANCH without configuration' '
(
sane_unset GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME &&
git init defbranch &&
git -C defbranch symbolic-ref --short HEAD >expect &&
git var GIT_DEFAULT_BRANCH >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_DEFAULT_BRANCH with configuration' '
test_config init.defaultbranch foo &&
(
sane_unset GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME &&
echo foo >expect &&
git var GIT_DEFAULT_BRANCH >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_EDITOR without configuration' '
(
sane_unset_all_editors &&
test_expect_code 1 git var GIT_EDITOR >out &&
test_must_be_empty out
)
'
test_expect_success 'get GIT_EDITOR with configuration' '
test_config core.editor foo &&
(
sane_unset_all_editors &&
echo foo >expect &&
git var GIT_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_EDITOR with environment variable GIT_EDITOR' '
(
sane_unset_all_editors &&
echo bar >expect &&
GIT_EDITOR=bar git var GIT_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_EDITOR with environment variable EDITOR' '
(
sane_unset_all_editors &&
echo bar >expect &&
EDITOR=bar git var GIT_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_EDITOR with configuration and environment variable GIT_EDITOR' '
test_config core.editor foo &&
(
sane_unset_all_editors &&
echo bar >expect &&
GIT_EDITOR=bar git var GIT_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_EDITOR with configuration and environment variable EDITOR' '
test_config core.editor foo &&
(
sane_unset_all_editors &&
echo foo >expect &&
EDITOR=bar git var GIT_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_SEQUENCE_EDITOR without configuration' '
(
sane_unset GIT_SEQUENCE_EDITOR &&
git var GIT_EDITOR >expect &&
git var GIT_SEQUENCE_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_SEQUENCE_EDITOR with configuration' '
test_config sequence.editor foo &&
(
sane_unset GIT_SEQUENCE_EDITOR &&
echo foo >expect &&
git var GIT_SEQUENCE_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_SEQUENCE_EDITOR with environment variable' '
(
sane_unset GIT_SEQUENCE_EDITOR &&
echo bar >expect &&
GIT_SEQUENCE_EDITOR=bar git var GIT_SEQUENCE_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success 'get GIT_SEQUENCE_EDITOR with configuration and environment variable' '
test_config sequence.editor foo &&
(
sane_unset GIT_SEQUENCE_EDITOR &&
echo bar >expect &&
GIT_SEQUENCE_EDITOR=bar git var GIT_SEQUENCE_EDITOR >actual &&
test_cmp expect actual
)
'
test_expect_success POSIXPERM 'GIT_SHELL_PATH points to a valid executable' '
shellpath=$(git var GIT_SHELL_PATH) &&
test_path_is_executable "$shellpath"
'
# We know in this environment that our shell will be one of a few fixed values
# that all end in "sh".
test_expect_success MINGW 'GIT_SHELL_PATH points to a suitable shell' '
shellpath=$(git var GIT_SHELL_PATH) &&
case "$shellpath" in
[A-Z]:/*/sh.exe) test -f "$shellpath";;
*) return 1;;
esac
'
test_expect_success 'GIT_ATTR_SYSTEM produces expected output' '
test_must_fail env GIT_ATTR_NOSYSTEM=1 git var GIT_ATTR_SYSTEM &&
(
sane_unset GIT_ATTR_NOSYSTEM &&
systempath=$(git var GIT_ATTR_SYSTEM) &&
test "$systempath" != ""
)
'
test_expect_success 'GIT_ATTR_GLOBAL points to the correct location' '
TRASHDIR="$(test-tool path-utils normalize_path_copy "$(pwd)")" &&
globalpath=$(XDG_CONFIG_HOME="$TRASHDIR/.config" git var GIT_ATTR_GLOBAL) &&
test "$globalpath" = "$TRASHDIR/.config/git/attributes" &&
(
sane_unset XDG_CONFIG_HOME &&
globalpath=$(HOME="$TRASHDIR" git var GIT_ATTR_GLOBAL) &&
test "$globalpath" = "$TRASHDIR/.config/git/attributes"
)
'
test_expect_success 'GIT_CONFIG_SYSTEM points to the correct location' '
TRASHDIR="$(test-tool path-utils normalize_path_copy "$(pwd)")" &&
test_must_fail env GIT_CONFIG_NOSYSTEM=1 git var GIT_CONFIG_SYSTEM &&
(
sane_unset GIT_CONFIG_NOSYSTEM &&
systempath=$(git var GIT_CONFIG_SYSTEM) &&
test "$systempath" != "" &&
systempath=$(GIT_CONFIG_SYSTEM=/dev/null git var GIT_CONFIG_SYSTEM) &&
if test_have_prereq MINGW
then
test "$systempath" = "nul"
else
test "$systempath" = "/dev/null"
fi &&
systempath=$(GIT_CONFIG_SYSTEM="$TRASHDIR/gitconfig" git var GIT_CONFIG_SYSTEM) &&
test "$systempath" = "$TRASHDIR/gitconfig"
)
'
test_expect_success 'GIT_CONFIG_GLOBAL points to the correct location' '
TRASHDIR="$(test-tool path-utils normalize_path_copy "$(pwd)")" &&
HOME="$TRASHDIR" XDG_CONFIG_HOME="$TRASHDIR/foo" git var GIT_CONFIG_GLOBAL >actual &&
echo "$TRASHDIR/foo/git/config" >expected &&
echo "$TRASHDIR/.gitconfig" >>expected &&
test_cmp expected actual &&
(
sane_unset XDG_CONFIG_HOME &&
HOME="$TRASHDIR" git var GIT_CONFIG_GLOBAL >actual &&
echo "$TRASHDIR/.config/git/config" >expected &&
echo "$TRASHDIR/.gitconfig" >>expected &&
test_cmp expected actual &&
globalpath=$(GIT_CONFIG_GLOBAL=/dev/null git var GIT_CONFIG_GLOBAL) &&
if test_have_prereq MINGW
then
test "$globalpath" = "nul"
else
test "$globalpath" = "/dev/null"
fi &&
globalpath=$(GIT_CONFIG_GLOBAL="$TRASHDIR/gitconfig" git var GIT_CONFIG_GLOBAL) &&
test "$globalpath" = "$TRASHDIR/gitconfig"
)
'
# For git var -l, we check only a representative variable;
# testing the whole output would make our test too brittle with
# respect to unrelated changes in the test suite's environment.
test_expect_success 'git var -l lists variables' '
git var -l >actual &&
echo "$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> $GIT_AUTHOR_DATE" >expect &&
sed -n s/GIT_AUTHOR_IDENT=//p <actual >actual.author &&
test_cmp expect actual.author
'
test_expect_success 'git var -l lists config' '
git var -l >actual &&
echo false >expect &&
sed -n s/core\\.bare=//p <actual >actual.bare &&
test_cmp expect actual.bare
'
test_expect_success 'git var -l lists multiple global configs' '
TRASHDIR="$(test-tool path-utils normalize_path_copy "$(pwd)")" &&
HOME="$TRASHDIR" XDG_CONFIG_HOME="$TRASHDIR/foo" git var -l >actual &&
grep "^GIT_CONFIG_GLOBAL=" actual >filtered &&
echo "GIT_CONFIG_GLOBAL=$TRASHDIR/foo/git/config" >expected &&
echo "GIT_CONFIG_GLOBAL=$TRASHDIR/.gitconfig" >>expected &&
test_cmp expected filtered
'
test_expect_success 'git var -l does not split multiline editors' '
(
GIT_EDITOR="!f() {
echo Hello!
}; f" &&
export GIT_EDITOR &&
echo "GIT_EDITOR=$GIT_EDITOR" >expected &&
git var -l >var &&
sed -n -e "/^GIT_EDITOR/,\$p" var | head -n 3 >actual &&
test_cmp expected actual
)
'
test_expect_success 'listing and asking for variables are exclusive' '
test_must_fail git var -l GIT_COMMITTER_IDENT
'
test_expect_success '`git var -l` works even without HOME' '
(
XDG_CONFIG_HOME= &&
export XDG_CONFIG_HOME &&
unset HOME &&
git var -l
)
'
test_done | unknown | github | https://github.com/git/git | t/t0007-git-var.sh |
# Copyright (c) 2015 Amazon.com, Inc. or its affiliates. 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, dis-
# tribute, sublicense, and/or sell copies of the Software, and to permit
# persons to whom the Software is furnished to do so, subject to the fol-
# lowing 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 MERCHANTABIL-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHOR 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.
# | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/env bash
# Copyright 2022 The Kubernetes Authors.
#
# 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.
# This script checks a PR for the coding style for the Go language files using
# golangci-lint. It does nothing when invoked as part of a normal "make
# verify".
set -o nounset
set -o pipefail
if [ ! "${PULL_NUMBER:-}" ]; then
echo 'Not testing anything because this is not a pull request.'
exit 0
fi
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
"${KUBE_ROOT}/hack/verify-golangci-lint.sh" -r "${PULL_BASE_SHA}" -n | unknown | github | https://github.com/kubernetes/kubernetes | hack/verify-golangci-lint-pr-hints.sh |
#!/usr/bin/python
# This file is part of Ansible
#
# Ansible 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 3 of the License, or
# (at your option) any later version.
#
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
ANSIBLE_METADATA = {'metadata_version': '1.0',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = '''
---
module: iam_mfa_device_facts
short_description: List the MFA (Multi-Factor Authentication) devices registered for a user
description:
- List the MFA (Multi-Factor Authentication) devices registered for a user
version_added: "2.2"
author: Victor Costan (@pwnall)
options:
user_name:
description:
- The name of the user whose MFA devices will be listed
required: false
default: null
extends_documentation_fragment:
- aws
- ec2
requirements:
- boto3
- botocore
'''
RETURN = """
mfa_devices:
description: The MFA devices registered for the given user
returned: always
type: list
sample:
- enable_date: "2016-03-11T23:25:36+00:00"
serial_number: arn:aws:iam::085120003701:mfa/pwnall
user_name: pwnall
- enable_date: "2016-03-11T23:25:37+00:00"
serial_number: arn:aws:iam::085120003702:mfa/pwnall
user_name: pwnall
"""
EXAMPLES = '''
# Note: These examples do not set authentication details, see the AWS Guide for details.
# List MFA devices (more details: http://docs.aws.amazon.com/IAM/latest/APIReference/API_ListMFADevices.html)
iam_mfa_device_facts:
register: mfa_devices
# Assume an existing role (more details: http://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html)
sts_assume_role:
mfa_serial_number: "{{ mfa_devices.mfa_devices[0].serial_number }}"
role_arn: "arn:aws:iam::123456789012:role/someRole"
role_session_name: "someRoleSession"
register: assumed_role
'''
try:
import boto3
from botocore.exceptions import ClientError
HAS_BOTO3 = True
except ImportError:
HAS_BOTO3 = False
def list_mfa_devices(connection, module):
user_name = module.params.get('user_name')
changed = False
args = {}
if user_name is not None:
args['UserName'] = user_name
try:
response = connection.list_mfa_devices(**args)
except ClientError as e:
module.fail_json(msg=e.message, **camel_dict_to_snake_dict(e.response))
module.exit_json(changed=changed, **camel_dict_to_snake_dict(response))
def main():
argument_spec = ec2_argument_spec()
argument_spec.update(
dict(
user_name=dict(required=False, default=None)
)
)
module = AnsibleModule(argument_spec=argument_spec)
if not HAS_BOTO3:
module.fail_json(msg='boto3 required for this module')
region, ec2_url, aws_connect_kwargs = get_aws_connection_info(module, boto3=True)
if region:
connection = boto3_conn(module, conn_type='client', resource='iam', region=region, endpoint=ec2_url, **aws_connect_kwargs)
else:
module.fail_json(msg="region must be specified")
list_mfa_devices(connection, module)
# import module snippets
from ansible.module_utils.basic import *
from ansible.module_utils.ec2 import *
if __name__ == '__main__':
main() | unknown | codeparrot/codeparrot-clean | ||
import argparse
import os
import sys
from collections import OrderedDict
from distutils.spawn import find_executable
from datetime import timedelta
import config
import wpttest
import formatters
def abs_path(path):
return os.path.abspath(os.path.expanduser(path))
def url_or_path(path):
import urlparse
parsed = urlparse.urlparse(path)
if len(parsed.scheme) > 2:
return path
else:
return abs_path(path)
def require_arg(kwargs, name, value_func=None):
if value_func is None:
value_func = lambda x: x is not None
if name not in kwargs or not value_func(kwargs[name]):
print >> sys.stderr, "Missing required argument %s" % name
sys.exit(1)
def create_parser(product_choices=None):
from mozlog import commandline
import products
if product_choices is None:
config_data = config.load()
product_choices = products.products_enabled(config_data)
parser = argparse.ArgumentParser(description="""Runner for web-platform-tests tests.""",
usage="""%(prog)s [OPTION]... [TEST]...
TEST is either the full path to a test file to run, or the URL of a test excluding
scheme host and port.""")
parser.add_argument("--manifest-update", action="store_true", default=None,
help="Regenerate the test manifest.")
parser.add_argument("--no-manifest-update", action="store_false", dest="manifest_update",
help="Prevent regeneration of the test manifest.")
parser.add_argument("--manifest-download", action="store_true", default=None,
help="Attempt to download a preexisting manifest when updating.")
parser.add_argument("--timeout-multiplier", action="store", type=float, default=None,
help="Multiplier relative to standard test timeout to use")
parser.add_argument("--run-by-dir", type=int, nargs="?", default=False,
help="Split run into groups by directories. With a parameter,"
"limit the depth of splits e.g. --run-by-dir=1 to split by top-level"
"directory")
parser.add_argument("--processes", action="store", type=int, default=None,
help="Number of simultaneous processes to use")
parser.add_argument("--no-capture-stdio", action="store_true", default=False,
help="Don't capture stdio and write to logging")
parser.add_argument("--no-fail-on-unexpected", action="store_false",
default=True,
dest="fail_on_unexpected",
help="Exit with status code 0 when test expectations are violated")
mode_group = parser.add_argument_group("Mode")
mode_group.add_argument("--list-test-groups", action="store_true",
default=False,
help="List the top level directories containing tests that will run.")
mode_group.add_argument("--list-disabled", action="store_true",
default=False,
help="List the tests that are disabled on the current platform")
mode_group.add_argument("--list-tests", action="store_true",
default=False,
help="List all tests that will run")
stability_group = mode_group.add_mutually_exclusive_group()
stability_group.add_argument("--verify", action="store_true",
default=False,
help="Run a stability check on the selected tests")
stability_group.add_argument("--stability", action="store_true",
default=False,
help=argparse.SUPPRESS)
mode_group.add_argument("--verify-log-full", action="store_true",
default=False,
help="Output per-iteration test results when running verify")
mode_group.add_argument("--verify-repeat-loop", action="store",
default=10,
help="Number of iterations for a run that reloads each test without restart.",
type=int)
mode_group.add_argument("--verify-repeat-restart", action="store",
default=5,
help="Number of iterations, for a run that restarts the runner between each iteration",
type=int)
chaos_mode_group = mode_group.add_mutually_exclusive_group()
chaos_mode_group.add_argument("--verify-no-chaos-mode", action="store_false",
default=True,
dest="verify_chaos_mode",
help="Disable chaos mode when running on Firefox")
chaos_mode_group.add_argument("--verify-chaos-mode", action="store_true",
default=True,
dest="verify_chaos_mode",
help="Enable chaos mode when running on Firefox")
mode_group.add_argument("--verify-max-time", action="store",
default=None,
help="The maximum number of minutes for the job to run",
type=lambda x: timedelta(minutes=float(x)))
output_results_group = mode_group.add_mutually_exclusive_group()
output_results_group.add_argument("--verify-no-output-results", action="store_false",
dest="verify_output_results",
default=True,
help="Prints individuals test results and messages")
output_results_group.add_argument("--verify-output-results", action="store_true",
dest="verify_output_results",
default=True,
help="Disable printing individuals test results and messages")
test_selection_group = parser.add_argument_group("Test Selection")
test_selection_group.add_argument("--test-types", action="store",
nargs="*", default=wpttest.enabled_tests,
choices=wpttest.enabled_tests,
help="Test types to run")
test_selection_group.add_argument("--include", action="append",
help="URL prefix to include")
test_selection_group.add_argument("--exclude", action="append",
help="URL prefix to exclude")
test_selection_group.add_argument("--include-manifest", type=abs_path,
help="Path to manifest listing tests to include")
test_selection_group.add_argument("--skip-timeout", action="store_true",
help="Skip tests that are expected to time out")
test_selection_group.add_argument("--tag", action="append", dest="tags",
help="Labels applied to tests to include in the run. "
"Labels starting dir: are equivalent to top-level directories.")
debugging_group = parser.add_argument_group("Debugging")
debugging_group.add_argument('--debugger', const="__default__", nargs="?",
help="run under a debugger, e.g. gdb or valgrind")
debugging_group.add_argument('--debugger-args', help="arguments to the debugger")
debugging_group.add_argument("--rerun", action="store", type=int, default=1,
help="Number of times to re run each test without restarts")
debugging_group.add_argument("--repeat", action="store", type=int, default=1,
help="Number of times to run the tests, restarting between each run")
debugging_group.add_argument("--repeat-until-unexpected", action="store_true", default=None,
help="Run tests in a loop until one returns an unexpected result")
debugging_group.add_argument('--pause-after-test', action="store_true", default=None,
help="Halt the test runner after each test (this happens by default if only a single test is run)")
debugging_group.add_argument('--no-pause-after-test', dest="pause_after_test", action="store_false",
help="Don't halt the test runner irrespective of the number of tests run")
debugging_group.add_argument('--pause-on-unexpected', action="store_true",
help="Halt the test runner when an unexpected result is encountered")
debugging_group.add_argument('--no-restart-on-unexpected', dest="restart_on_unexpected",
default=True, action="store_false",
help="Don't restart on an unexpected result")
debugging_group.add_argument("--symbols-path", action="store", type=url_or_path,
help="Path or url to symbols file used to analyse crash minidumps.")
debugging_group.add_argument("--stackwalk-binary", action="store", type=abs_path,
help="Path to stackwalker program used to analyse minidumps.")
debugging_group.add_argument("--pdb", action="store_true",
help="Drop into pdb on python exception")
config_group = parser.add_argument_group("Configuration")
config_group.add_argument("--binary", action="store",
type=abs_path, help="Desktop binary to run tests against")
config_group.add_argument('--binary-arg',
default=[], action="append", dest="binary_args",
help="Extra argument for the binary")
config_group.add_argument("--webdriver-binary", action="store", metavar="BINARY",
type=abs_path, help="WebDriver server binary to use")
config_group.add_argument('--webdriver-arg',
default=[], action="append", dest="webdriver_args",
help="Extra argument for the WebDriver binary")
config_group.add_argument("--package-name", action="store",
help="Android package name to run tests against")
config_group.add_argument("--device-serial", action="store",
help="Running Android instance to connect to, if not emulator-5554")
config_group.add_argument("--metadata", action="store", type=abs_path, dest="metadata_root",
help="Path to root directory containing test metadata"),
config_group.add_argument("--tests", action="store", type=abs_path, dest="tests_root",
help="Path to root directory containing test files"),
config_group.add_argument("--manifest", action="store", type=abs_path, dest="manifest_path",
help="Path to test manifest (default is ${metadata_root}/MANIFEST.json)")
config_group.add_argument("--run-info", action="store", type=abs_path,
help="Path to directory containing extra json files to add to run info")
config_group.add_argument("--product", action="store", choices=product_choices,
default=None, help="Browser against which to run tests")
config_group.add_argument("--browser-version", action="store",
default=None, help="Informative string detailing the browser "
"release version. This is included in the run_info data.")
config_group.add_argument("--browser-channel", action="store",
default=None, help="Informative string detailing the browser "
"release channel. This is included in the run_info data.")
config_group.add_argument("--config", action="store", type=abs_path, dest="config",
help="Path to config file")
config_group.add_argument("--install-fonts", action="store_true",
default=None,
help="Allow the wptrunner to install fonts on your system")
config_group.add_argument("--font-dir", action="store", type=abs_path, dest="font_dir",
help="Path to local font installation directory", default=None)
config_group.add_argument("--headless", action="store_true",
help="Run browser in headless mode", default=None)
config_group.add_argument("--no-headless", action="store_false", dest="headless",
help="Don't run browser in headless mode")
build_type = parser.add_mutually_exclusive_group()
build_type.add_argument("--debug-build", dest="debug", action="store_true",
default=None,
help="Build is a debug build (overrides any mozinfo file)")
build_type.add_argument("--release-build", dest="debug", action="store_false",
default=None,
help="Build is a release (overrides any mozinfo file)")
chunking_group = parser.add_argument_group("Test Chunking")
chunking_group.add_argument("--total-chunks", action="store", type=int, default=1,
help="Total number of chunks to use")
chunking_group.add_argument("--this-chunk", action="store", type=int, default=1,
help="Chunk number to run")
chunking_group.add_argument("--chunk-type", action="store", choices=["none", "equal_time", "hash", "dir_hash"],
default=None, help="Chunking type to use")
ssl_group = parser.add_argument_group("SSL/TLS")
ssl_group.add_argument("--ssl-type", action="store", default=None,
choices=["openssl", "pregenerated", "none"],
help="Type of ssl support to enable (running without ssl may lead to spurious errors)")
ssl_group.add_argument("--openssl-binary", action="store",
help="Path to openssl binary", default="openssl")
ssl_group.add_argument("--certutil-binary", action="store",
help="Path to certutil binary for use with Firefox + ssl")
ssl_group.add_argument("--ca-cert-path", action="store", type=abs_path,
help="Path to ca certificate when using pregenerated ssl certificates")
ssl_group.add_argument("--host-key-path", action="store", type=abs_path,
help="Path to host private key when using pregenerated ssl certificates")
ssl_group.add_argument("--host-cert-path", action="store", type=abs_path,
help="Path to host certificate when using pregenerated ssl certificates")
gecko_group = parser.add_argument_group("Gecko-specific")
gecko_group.add_argument("--prefs-root", dest="prefs_root", action="store", type=abs_path,
help="Path to the folder containing browser prefs")
gecko_group.add_argument("--disable-e10s", dest="gecko_e10s", action="store_false", default=True,
help="Run tests without electrolysis preferences")
gecko_group.add_argument("--stackfix-dir", dest="stackfix_dir", action="store",
help="Path to directory containing assertion stack fixing scripts")
gecko_group.add_argument("--setpref", dest="extra_prefs", action='append',
default=[], metavar="PREF=VALUE",
help="Defines an extra user preference (overrides those in prefs_root)")
gecko_group.add_argument("--leak-check", dest="leak_check", action="store_true",
help="Enable leak checking")
gecko_group.add_argument("--stylo-threads", action="store", type=int, default=1,
help="Number of parallel threads to use for stylo")
gecko_group.add_argument("--reftest-internal", dest="reftest_internal", action="store_true",
default=None, help="Enable reftest runner implemented inside Marionette")
gecko_group.add_argument("--reftest-external", dest="reftest_internal", action="store_false",
help="Disable reftest runner implemented inside Marionette")
gecko_group.add_argument("--reftest-screenshot", dest="reftest_screenshot", action="store",
choices=["always", "fail", "unexpected"], default="unexpected",
help="With --reftest-internal, when to take a screenshot")
gecko_group.add_argument("--chaos", dest="chaos_mode_flags", action="store",
nargs="?", const=0xFFFFFFFF, type=int,
help="Enable chaos mode with the specified feature flag "
"(see http://searchfox.org/mozilla-central/source/mfbt/ChaosMode.h for "
"details). If no value is supplied, all features are activated")
servo_group = parser.add_argument_group("Servo-specific")
servo_group.add_argument("--user-stylesheet",
default=[], action="append", dest="user_stylesheets",
help="Inject a user CSS stylesheet into every test.")
sauce_group = parser.add_argument_group("Sauce Labs-specific")
sauce_group.add_argument("--sauce-browser", dest="sauce_browser",
help="Sauce Labs browser name")
sauce_group.add_argument("--sauce-platform", dest="sauce_platform",
help="Sauce Labs OS platform")
sauce_group.add_argument("--sauce-version", dest="sauce_version",
help="Sauce Labs browser version")
sauce_group.add_argument("--sauce-build", dest="sauce_build",
help="Sauce Labs build identifier")
sauce_group.add_argument("--sauce-tags", dest="sauce_tags", nargs="*",
help="Sauce Labs identifying tag", default=[])
sauce_group.add_argument("--sauce-tunnel-id", dest="sauce_tunnel_id",
help="Sauce Connect tunnel identifier")
sauce_group.add_argument("--sauce-user", dest="sauce_user",
help="Sauce Labs user name")
sauce_group.add_argument("--sauce-key", dest="sauce_key",
default=os.environ.get("SAUCE_ACCESS_KEY"),
help="Sauce Labs access key")
sauce_group.add_argument("--sauce-connect-binary",
dest="sauce_connect_binary",
help="Path to Sauce Connect binary")
sauce_group.add_argument("--sauce-init-timeout", action="store",
type=int, default=30,
help="Number of seconds to wait for Sauce "
"Connect tunnel to be available before "
"aborting")
sauce_group.add_argument("--sauce-connect-arg", action="append",
default=[], dest="sauce_connect_args",
help="Command-line argument to forward to the "
"Sauce Connect binary (repeatable)")
webkit_group = parser.add_argument_group("WebKit-specific")
webkit_group.add_argument("--webkit-port", dest="webkit_port",
help="WebKit port")
parser.add_argument("test_list", nargs="*",
help="List of URLs for tests to run, or paths including tests to run. "
"(equivalent to --include)")
commandline.log_formatters["wptreport"] = (formatters.WptreportFormatter, "wptreport format")
commandline.add_logging_group(parser)
return parser
def set_from_config(kwargs):
if kwargs["config"] is None:
config_path = config.path()
else:
config_path = kwargs["config"]
kwargs["config_path"] = config_path
kwargs["config"] = config.read(kwargs["config_path"])
keys = {"paths": [("prefs", "prefs_root", True),
("run_info", "run_info", True)],
"web-platform-tests": [("remote_url", "remote_url", False),
("branch", "branch", False),
("sync_path", "sync_path", True)],
"SSL": [("openssl_binary", "openssl_binary", True),
("certutil_binary", "certutil_binary", True),
("ca_cert_path", "ca_cert_path", True),
("host_cert_path", "host_cert_path", True),
("host_key_path", "host_key_path", True)]}
for section, values in keys.iteritems():
for config_value, kw_value, is_path in values:
if kw_value in kwargs and kwargs[kw_value] is None:
if not is_path:
new_value = kwargs["config"].get(section, config.ConfigDict({})).get(config_value)
else:
new_value = kwargs["config"].get(section, config.ConfigDict({})).get_path(config_value)
kwargs[kw_value] = new_value
kwargs["test_paths"] = get_test_paths(kwargs["config"])
if kwargs["tests_root"]:
if "/" not in kwargs["test_paths"]:
kwargs["test_paths"]["/"] = {}
kwargs["test_paths"]["/"]["tests_path"] = kwargs["tests_root"]
if kwargs["metadata_root"]:
if "/" not in kwargs["test_paths"]:
kwargs["test_paths"]["/"] = {}
kwargs["test_paths"]["/"]["metadata_path"] = kwargs["metadata_root"]
if kwargs.get("manifest_path"):
if "/" not in kwargs["test_paths"]:
kwargs["test_paths"]["/"] = {}
kwargs["test_paths"]["/"]["manifest_path"] = kwargs["manifest_path"]
kwargs["suite_name"] = kwargs["config"].get("web-platform-tests", {}).get("name", "web-platform-tests")
check_paths(kwargs)
def get_test_paths(config):
# Set up test_paths
test_paths = OrderedDict()
for section in config.iterkeys():
if section.startswith("manifest:"):
manifest_opts = config.get(section)
url_base = manifest_opts.get("url_base", "/")
test_paths[url_base] = {
"tests_path": manifest_opts.get_path("tests"),
"metadata_path": manifest_opts.get_path("metadata"),
}
if "manifest" in manifest_opts:
test_paths[url_base]["manifest_path"] = manifest_opts.get_path("manifest")
return test_paths
def exe_path(name):
if name is None:
return
path = find_executable(name)
if path and os.access(path, os.X_OK):
return path
else:
return None
def check_paths(kwargs):
for test_paths in kwargs["test_paths"].itervalues():
if not ("tests_path" in test_paths and
"metadata_path" in test_paths):
print "Fatal: must specify both a test path and metadata path"
sys.exit(1)
if "manifest_path" not in test_paths:
test_paths["manifest_path"] = os.path.join(test_paths["metadata_path"],
"MANIFEST.json")
for key, path in test_paths.iteritems():
name = key.split("_", 1)[0]
if name == "manifest":
# For the manifest we can create it later, so just check the path
# actually exists
path = os.path.dirname(path)
if not os.path.exists(path):
print "Fatal: %s path %s does not exist" % (name, path)
sys.exit(1)
if not os.path.isdir(path):
print "Fatal: %s path %s is not a directory" % (name, path)
sys.exit(1)
def check_args(kwargs):
set_from_config(kwargs)
if kwargs["product"] is None:
kwargs["product"] = "firefox"
if kwargs["manifest_update"] is None:
kwargs["manifest_update"] = True
if "sauce" in kwargs["product"]:
kwargs["pause_after_test"] = False
if kwargs["test_list"]:
if kwargs["include"] is not None:
kwargs["include"].extend(kwargs["test_list"])
else:
kwargs["include"] = kwargs["test_list"]
if kwargs["run_info"] is None:
kwargs["run_info"] = kwargs["config_path"]
if kwargs["this_chunk"] > 1:
require_arg(kwargs, "total_chunks", lambda x: x >= kwargs["this_chunk"])
if kwargs["chunk_type"] is None:
if kwargs["total_chunks"] > 1:
kwargs["chunk_type"] = "dir_hash"
else:
kwargs["chunk_type"] = "none"
if kwargs["processes"] is None:
kwargs["processes"] = 1
if kwargs["debugger"] is not None:
import mozdebug
if kwargs["debugger"] == "__default__":
kwargs["debugger"] = mozdebug.get_default_debugger_name()
debug_info = mozdebug.get_debugger_info(kwargs["debugger"],
kwargs["debugger_args"])
if debug_info and debug_info.interactive:
if kwargs["processes"] != 1:
kwargs["processes"] = 1
kwargs["no_capture_stdio"] = True
kwargs["debug_info"] = debug_info
else:
kwargs["debug_info"] = None
if kwargs["binary"] is not None:
if not os.path.exists(kwargs["binary"]):
print >> sys.stderr, "Binary path %s does not exist" % kwargs["binary"]
sys.exit(1)
if kwargs["ssl_type"] is None:
if None not in (kwargs["ca_cert_path"], kwargs["host_cert_path"], kwargs["host_key_path"]):
kwargs["ssl_type"] = "pregenerated"
elif exe_path(kwargs["openssl_binary"]) is not None:
kwargs["ssl_type"] = "openssl"
else:
kwargs["ssl_type"] = "none"
if kwargs["ssl_type"] == "pregenerated":
require_arg(kwargs, "ca_cert_path", lambda x:os.path.exists(x))
require_arg(kwargs, "host_cert_path", lambda x:os.path.exists(x))
require_arg(kwargs, "host_key_path", lambda x:os.path.exists(x))
elif kwargs["ssl_type"] == "openssl":
path = exe_path(kwargs["openssl_binary"])
if path is None:
print >> sys.stderr, "openssl-binary argument missing or not a valid executable"
sys.exit(1)
kwargs["openssl_binary"] = path
if kwargs["ssl_type"] != "none" and kwargs["product"] == "firefox" and kwargs["certutil_binary"]:
path = exe_path(kwargs["certutil_binary"])
if path is None:
print >> sys.stderr, "certutil-binary argument missing or not a valid executable"
sys.exit(1)
kwargs["certutil_binary"] = path
if kwargs['extra_prefs']:
# If a single pref is passed in as a string, make it a list
if type(kwargs['extra_prefs']) in (str, unicode):
kwargs['extra_prefs'] = [kwargs['extra_prefs']]
missing = any('=' not in prefarg for prefarg in kwargs['extra_prefs'])
if missing:
print >> sys.stderr, "Preferences via --setpref must be in key=value format"
sys.exit(1)
kwargs['extra_prefs'] = [tuple(prefarg.split('=', 1)) for prefarg in
kwargs['extra_prefs']]
if kwargs["reftest_internal"] is None:
kwargs["reftest_internal"] = True
return kwargs
def check_args_update(kwargs):
set_from_config(kwargs)
if kwargs["product"] is None:
kwargs["product"] = "firefox"
if kwargs["patch"] is None:
kwargs["patch"] = kwargs["sync"]
for item in kwargs["run_log"]:
if os.path.isdir(item):
print >> sys.stderr, "Log file %s is a directory" % item
sys.exit(1)
return kwargs
def create_parser_update(product_choices=None):
from mozlog.structured import commandline
import products
if product_choices is None:
config_data = config.load()
product_choices = products.products_enabled(config_data)
parser = argparse.ArgumentParser("web-platform-tests-update",
description="Update script for web-platform-tests tests.")
parser.add_argument("--product", action="store", choices=product_choices,
default=None, help="Browser for which metadata is being updated")
parser.add_argument("--config", action="store", type=abs_path, help="Path to config file")
parser.add_argument("--metadata", action="store", type=abs_path, dest="metadata_root",
help="Path to the folder containing test metadata"),
parser.add_argument("--tests", action="store", type=abs_path, dest="tests_root",
help="Path to web-platform-tests"),
parser.add_argument("--manifest", action="store", type=abs_path, dest="manifest_path",
help="Path to test manifest (default is ${metadata_root}/MANIFEST.json)")
parser.add_argument("--sync-path", action="store", type=abs_path,
help="Path to store git checkout of web-platform-tests during update"),
parser.add_argument("--remote_url", action="store",
help="URL of web-platfrom-tests repository to sync against"),
parser.add_argument("--branch", action="store", type=abs_path,
help="Remote branch to sync against")
parser.add_argument("--rev", action="store", help="Revision to sync to")
parser.add_argument("--patch", action="store_true", dest="patch", default=None,
help="Create a VCS commit containing the changes.")
parser.add_argument("--no-patch", action="store_false", dest="patch",
help="Don't create a VCS commit containing the changes.")
parser.add_argument("--sync", dest="sync", action="store_true", default=False,
help="Sync the tests with the latest from upstream (implies --patch)")
parser.add_argument("--ignore-existing", action="store_true",
help="When updating test results only consider results from the logfiles provided, not existing expectations.")
parser.add_argument("--stability", nargs="?", action="store", const="unstable", default=None,
help=("Reason for disabling tests. When updating test results, disable tests that have "
"inconsistent results across many runs with the given reason."))
parser.add_argument("--no-remove-obsolete", action="store_false", dest="remove_obsolete", default=True,
help=("Don't remove metadata files that no longer correspond to a test file"))
parser.add_argument("--no-store-state", action="store_false", dest="store_state",
help="Store state so that steps can be resumed after failure")
parser.add_argument("--continue", action="store_true",
help="Continue a previously started run of the update script")
parser.add_argument("--abort", action="store_true",
help="Clear state from a previous incomplete run of the update script")
parser.add_argument("--exclude", action="store", nargs="*",
help="List of glob-style paths to exclude when syncing tests")
parser.add_argument("--include", action="store", nargs="*",
help="List of glob-style paths to include which would otherwise be excluded when syncing tests")
parser.add_argument("--extra-property", action="append", default=[],
help="Extra property from run_info.json to use in metadata update")
# Should make this required iff run=logfile
parser.add_argument("run_log", nargs="*", type=abs_path,
help="Log file from run of tests")
commandline.add_logging_group(parser)
return parser
def create_parser_reduce(product_choices=None):
parser = create_parser(product_choices)
parser.add_argument("target", action="store", help="Test id that is unstable")
return parser
def parse_args():
parser = create_parser()
rv = vars(parser.parse_args())
check_args(rv)
return rv
def parse_args_update():
parser = create_parser_update()
rv = vars(parser.parse_args())
check_args_update(rv)
return rv
def parse_args_reduce():
parser = create_parser_reduce()
rv = vars(parser.parse_args())
check_args(rv)
return rv | unknown | codeparrot/codeparrot-clean | ||
from django.forms import ChoiceField, Form, SelectMultiple
from .base import WidgetTest
class SelectMultipleTest(WidgetTest):
widget = SelectMultiple
numeric_choices = (("0", "0"), ("1", "1"), ("2", "2"), ("3", "3"), ("0", "extra"))
def test_format_value(self):
widget = self.widget(choices=self.numeric_choices)
self.assertEqual(widget.format_value(None), [])
self.assertEqual(widget.format_value(""), [""])
self.assertEqual(widget.format_value([3, 0, 1]), ["3", "0", "1"])
def test_render_selected(self):
self.check_html(
self.widget(choices=self.beatles),
"beatles",
["J"],
html=("""<select multiple name="beatles">
<option value="J" selected>John</option>
<option value="P">Paul</option>
<option value="G">George</option>
<option value="R">Ringo</option>
</select>"""),
)
def test_render_multiple_selected(self):
self.check_html(
self.widget(choices=self.beatles),
"beatles",
["J", "P"],
html=("""<select multiple name="beatles">
<option value="J" selected>John</option>
<option value="P" selected>Paul</option>
<option value="G">George</option>
<option value="R">Ringo</option>
</select>"""),
)
def test_render_none(self):
"""
If the value is None, none of the options are selected, even if the
choices have an empty option.
"""
self.check_html(
self.widget(choices=(("", "Unknown"),) + self.beatles),
"beatles",
None,
html=("""<select multiple name="beatles">
<option value="">Unknown</option>
<option value="J">John</option>
<option value="P">Paul</option>
<option value="G">George</option>
<option value="R">Ringo</option>
</select>"""),
)
def test_render_value_label(self):
"""
If the value corresponds to a label (but not to an option value), none
of the options are selected.
"""
self.check_html(
self.widget(choices=self.beatles),
"beatles",
["John"],
html=("""<select multiple name="beatles">
<option value="J">John</option>
<option value="P">Paul</option>
<option value="G">George</option>
<option value="R">Ringo</option>
</select>"""),
)
def test_multiple_options_same_value(self):
"""
Multiple options with the same value can be selected (#8103).
"""
self.check_html(
self.widget(choices=self.numeric_choices),
"choices",
["0"],
html=("""<select multiple name="choices">
<option value="0" selected>0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="0" selected>extra</option>
</select>"""),
)
def test_multiple_values_invalid(self):
"""
If multiple values are given, but some of them are not valid, the valid
ones are selected.
"""
self.check_html(
self.widget(choices=self.beatles),
"beatles",
["J", "G", "foo"],
html=("""<select multiple name="beatles">
<option value="J" selected>John</option>
<option value="P">Paul</option>
<option value="G" selected>George</option>
<option value="R">Ringo</option>
</select>"""),
)
def test_compare_string(self):
choices = [("1", "1"), ("2", "2"), ("3", "3")]
self.check_html(
self.widget(choices=choices),
"nums",
[2],
html=("""<select multiple name="nums">
<option value="1">1</option>
<option value="2" selected>2</option>
<option value="3">3</option>
</select>"""),
)
self.check_html(
self.widget(choices=choices),
"nums",
["2"],
html=("""<select multiple name="nums">
<option value="1">1</option>
<option value="2" selected>2</option>
<option value="3">3</option>
</select>"""),
)
self.check_html(
self.widget(choices=choices),
"nums",
[2],
html=("""<select multiple name="nums">
<option value="1">1</option>
<option value="2" selected>2</option>
<option value="3">3</option>
</select>"""),
)
def test_optgroup_select_multiple(self):
widget = SelectMultiple(
choices=(
("outer1", "Outer 1"),
('Group "1"', (("inner1", "Inner 1"), ("inner2", "Inner 2"))),
)
)
self.check_html(
widget,
"nestchoice",
["outer1", "inner2"],
html=("""<select multiple name="nestchoice">
<option value="outer1" selected>Outer 1</option>
<optgroup label="Group "1"">
<option value="inner1">Inner 1</option>
<option value="inner2" selected>Inner 2</option>
</optgroup>
</select>"""),
)
def test_value_omitted_from_data(self):
widget = self.widget(choices=self.beatles)
self.assertIs(widget.value_omitted_from_data({}, {}, "field"), False)
self.assertIs(
widget.value_omitted_from_data({"field": "value"}, {}, "field"), False
)
def test_fieldset(self):
class TestForm(Form):
template_name = "forms_tests/use_fieldset.html"
field = ChoiceField(
widget=self.widget, choices=self.beatles, required=False
)
form = TestForm()
self.assertIs(self.widget.use_fieldset, False)
self.assertHTMLEqual(
'<div><label for="id_field">Field:</label>'
'<select multiple name="field" id="id_field">'
'<option value="J">John</option> <option value="P">Paul</option>'
'<option value="G">George</option><option value="R">Ringo'
"</option></select></div>",
form.render(),
) | python | github | https://github.com/django/django | tests/forms_tests/widget_tests/test_selectmultiple.py |
<div class="not-match">
<div></div>
</div>
<div class="match svelte-xyz">
<div class="svelte-xyz"></div>
<div class="svelte-xyz"></div>
</div> | html | github | https://github.com/sveltejs/svelte | packages/svelte/tests/css/samples/general-siblings-combinator-star/expected.html |
# Angular i18n Internationalization Example
This sample comes from the Angular documentation's "[Example Angular Internationalization application](https://angular.dev/guide/i18n/example)" page.
## Install and Run the Download
1. `npm install` the node_module packages
2. `npm start` to see it run in English
3. `npm run start:fr` to see it run with French translation.
> See the scripts in `package.json` for an explanation of these commands.
## Run in Stackblitz
Stackblitz compiles and runs the English version by default.
To see the example translate to French with Angular i18n:
1. Open the `project.json` file and add the following to the bottom:
```json
"stackblitz": {
"startCommand": "npm run start:fr"
}
```
1. Click the "Fork" button in the stackblitz header. That makes a new copy for you with this change and re-runs the example in French. | unknown | github | https://github.com/angular/angular | adev/src/content/examples/i18n/readme.md |
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
// int the_answer();
import "C"
import (
"fmt"
"os"
)
func TheAnswer() int {
return int(C.the_answer())
}
func main() {
if a := TheAnswer(); a != 42 {
fmt.Fprintln(os.Stderr, "Unexpected result for The Answer. Got:", a, " Want: 42")
os.Exit(1)
}
fmt.Fprintln(os.Stdout, "ok")
} | go | github | https://github.com/golang/go | src/cmd/cgo/internal/testfortran/testdata/testprog/fortran.go |
"""Test for properties for devices common to all entity types."""
from google_nest_sdm.device import Device
from homeassistant.components.nest.device_info import DeviceInfo
def test_device_custom_name():
"""Test a device name from an Info trait."""
device = Device.MakeDevice(
{
"name": "some-device-id",
"type": "sdm.devices.types.DOORBELL",
"traits": {
"sdm.devices.traits.Info": {
"customName": "My Doorbell",
},
},
},
auth=None,
)
device_info = DeviceInfo(device)
assert device_info.device_name == "My Doorbell"
assert device_info.device_model == "Doorbell"
assert device_info.device_brand == "Google Nest"
assert device_info.device_info == {
"identifiers": {("nest", "some-device-id")},
"name": "My Doorbell",
"manufacturer": "Google Nest",
"model": "Doorbell",
}
def test_device_name_room():
"""Test a device name from the room name."""
device = Device.MakeDevice(
{
"name": "some-device-id",
"type": "sdm.devices.types.DOORBELL",
"parentRelations": [
{"parent": "some-structure-id", "displayName": "Some Room"}
],
},
auth=None,
)
device_info = DeviceInfo(device)
assert device_info.device_name == "Some Room"
assert device_info.device_model == "Doorbell"
assert device_info.device_brand == "Google Nest"
assert device_info.device_info == {
"identifiers": {("nest", "some-device-id")},
"name": "Some Room",
"manufacturer": "Google Nest",
"model": "Doorbell",
}
def test_device_no_name():
"""Test a device that has a name inferred from the type."""
device = Device.MakeDevice(
{"name": "some-device-id", "type": "sdm.devices.types.DOORBELL", "traits": {}},
auth=None,
)
device_info = DeviceInfo(device)
assert device_info.device_name == "Doorbell"
assert device_info.device_model == "Doorbell"
assert device_info.device_brand == "Google Nest"
assert device_info.device_info == {
"identifiers": {("nest", "some-device-id")},
"name": "Doorbell",
"manufacturer": "Google Nest",
"model": "Doorbell",
}
def test_device_invalid_type():
"""Test a device with a type name that is not recognized."""
device = Device.MakeDevice(
{
"name": "some-device-id",
"type": "sdm.devices.types.INVALID_TYPE",
"traits": {
"sdm.devices.traits.Info": {
"customName": "My Doorbell",
},
},
},
auth=None,
)
device_info = DeviceInfo(device)
assert device_info.device_name == "My Doorbell"
assert device_info.device_model is None
assert device_info.device_brand == "Google Nest"
assert device_info.device_info == {
"identifiers": {("nest", "some-device-id")},
"name": "My Doorbell",
"manufacturer": "Google Nest",
"model": None,
} | unknown | codeparrot/codeparrot-clean | ||
/*
* Copyright 2010-2025 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.analysis.api.impl.base.projectStructure
import com.intellij.psi.search.GlobalSearchScope
import org.jetbrains.kotlin.analysis.api.KaImplementationDetail
/**
* Used to include files generated by [KaResolveExtension][org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtension] in [org.jetbrains.kotlin.analysis.api.platform.projectStructure.KaResolutionScope].
*/
@KaImplementationDetail
abstract class KaResolveExtensionGeneratedFilesScope : GlobalSearchScope() | kotlin | github | https://github.com/JetBrains/kotlin | analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/projectStructure/KaResolveExtensionGeneratedFilesScope.kt |
# (c) 2014, James Tanner <tanner.jc@gmail.com>
#
# Ansible 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 3 of the License, or
# (at your option) any later version.
#
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import datetime
import os
import textwrap
import traceback
import yaml
from ansible import constants as C
from ansible.cli import CLI
from ansible.errors import AnsibleError, AnsibleOptionsError
from ansible.module_utils._text import to_native
from ansible.module_utils.six import string_types
from ansible.parsing.yaml.dumper import AnsibleDumper
from ansible.plugins.loader import module_loader, action_loader, lookup_loader, callback_loader, cache_loader, \
vars_loader, connection_loader, strategy_loader, inventory_loader, shell_loader, fragment_loader
from ansible.utils.plugin_docs import BLACKLIST, get_docstring
try:
from __main__ import display
except ImportError:
from ansible.utils.display import Display
display = Display()
class DocCLI(CLI):
''' displays information on modules installed in Ansible libraries.
It displays a terse listing of plugins and their short descriptions,
provides a printout of their DOCUMENTATION strings,
and it can create a short "snippet" which can be pasted into a playbook. '''
# default ignore list for detailed views
IGNORE = ('module', 'docuri', 'version_added', 'short_description', 'now_date', 'plainexamples', 'returndocs')
def __init__(self, args):
super(DocCLI, self).__init__(args)
self.plugin_list = set()
def parse(self):
self.parser = CLI.base_parser(
usage='usage: %prog [-l|-F|-s] [options] [-t <plugin type> ] [plugin]',
module_opts=True,
desc="plugin documentation tool",
epilog="See man pages for Ansible CLI options or website for tutorials https://docs.ansible.com"
)
self.parser.add_option("-F", "--list_files", action="store_true", default=False, dest="list_files",
help='Show plugin names and their source files without summaries (implies --list)')
self.parser.add_option("-l", "--list", action="store_true", default=False, dest='list_dir',
help='List available plugins')
self.parser.add_option("-s", "--snippet", action="store_true", default=False, dest='show_snippet',
help='Show playbook snippet for specified plugin(s)')
self.parser.add_option("-a", "--all", action="store_true", default=False, dest='all_plugins',
help='**For internal testing only** Show documentation for all plugins.')
self.parser.add_option("-t", "--type", action="store", default='module', dest='type', type='choice',
help='Choose which plugin type (defaults to "module")',
choices=['cache', 'callback', 'connection', 'inventory', 'lookup', 'module', 'shell', 'strategy', 'vars'])
super(DocCLI, self).parse()
if [self.options.all_plugins, self.options.list_dir, self.options.list_files, self.options.show_snippet].count(True) > 1:
raise AnsibleOptionsError("Only one of -l, -F, -s or -a can be used at the same time.")
display.verbosity = self.options.verbosity
def run(self):
super(DocCLI, self).run()
plugin_type = self.options.type
# choose plugin type
if plugin_type == 'cache':
loader = cache_loader
elif plugin_type == 'callback':
loader = callback_loader
elif plugin_type == 'connection':
loader = connection_loader
elif plugin_type == 'lookup':
loader = lookup_loader
elif plugin_type == 'strategy':
loader = strategy_loader
elif plugin_type == 'vars':
loader = vars_loader
elif plugin_type == 'inventory':
loader = inventory_loader
elif plugin_type == 'shell':
loader = shell_loader
else:
loader = module_loader
# add to plugin path from command line
if self.options.module_path:
for path in self.options.module_path:
if path:
loader.add_directory(path)
# save only top level paths for errors
search_paths = DocCLI.print_paths(loader)
loader._paths = None # reset so we can use subdirs below
# list plugins names and filepath for type
if self.options.list_files:
paths = loader._get_paths()
for path in paths:
self.find_plugins(path, plugin_type)
list_text = self.get_plugin_list_filenames(loader)
self.pager(list_text)
return 0
# list plugins for type
if self.options.list_dir:
paths = loader._get_paths()
for path in paths:
self.find_plugins(path, plugin_type)
self.pager(self.get_plugin_list_text(loader))
return 0
# process all plugins of type
if self.options.all_plugins:
paths = loader._get_paths()
for path in paths:
self.find_plugins(path, plugin_type)
self.args = sorted(set(self.plugin_list))
if len(self.args) == 0:
raise AnsibleOptionsError("Incorrect options passed")
# process command line list
text = ''
for plugin in self.args:
try:
# if the plugin lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
filename = loader.find_plugin(plugin, mod_type='.py', ignore_deprecated=True, check_aliases=True)
if filename is None:
display.warning("%s %s not found in:\n%s\n" % (plugin_type, plugin, search_paths))
continue
if any(filename.endswith(x) for x in C.BLACKLIST_EXTS):
continue
try:
doc, plainexamples, returndocs, metadata = get_docstring(filename, fragment_loader, verbose=(self.options.verbosity > 0))
except:
display.vvv(traceback.format_exc())
display.error("%s %s has a documentation error formatting or is missing documentation." % (plugin_type, plugin), wrap_text=False)
continue
if doc is not None:
# assign from other sections
doc['plainexamples'] = plainexamples
doc['returndocs'] = returndocs
doc['metadata'] = metadata
# generate extra data
if plugin_type == 'module':
# is there corresponding action plugin?
if plugin in action_loader:
doc['action'] = True
else:
doc['action'] = False
doc['filename'] = filename
doc['now_date'] = datetime.date.today().strftime('%Y-%m-%d')
if 'docuri' in doc:
doc['docuri'] = doc[plugin_type].replace('_', '-')
if self.options.show_snippet and plugin_type == 'module':
text += self.get_snippet_text(doc)
else:
text += self.get_man_text(doc)
else:
# this typically means we couldn't even parse the docstring, not just that the YAML is busted,
# probably a quoting issue.
raise AnsibleError("Parsing produced an empty object.")
except Exception as e:
display.vvv(traceback.format_exc())
raise AnsibleError("%s %s missing documentation (or could not parse documentation): %s\n" % (plugin_type, plugin, str(e)))
if text:
self.pager(text)
return 0
def find_plugins(self, path, ptype):
display.vvvv("Searching %s for plugins" % path)
if not os.path.exists(path):
display.vvvv("%s does not exist" % path)
return
bkey = ptype.upper()
for plugin in os.listdir(path):
display.vvvv("Found %s" % plugin)
full_path = '/'.join([path, plugin])
if plugin.startswith('.'):
continue
elif os.path.isdir(full_path):
continue
elif any(plugin.endswith(x) for x in C.BLACKLIST_EXTS):
continue
elif plugin.startswith('__'):
continue
elif plugin in C.IGNORE_FILES:
continue
elif plugin .startswith('_'):
if os.path.islink(full_path): # avoids aliases
continue
plugin = os.path.splitext(plugin)[0] # removes the extension
plugin = plugin.lstrip('_') # remove underscore from deprecated plugins
if plugin not in BLACKLIST.get(bkey, ()):
self.plugin_list.add(plugin)
display.vvvv("Added %s" % plugin)
def get_plugin_list_text(self, loader):
columns = display.columns
displace = max(len(x) for x in self.plugin_list)
linelimit = columns - displace - 5
text = []
deprecated = []
for plugin in sorted(self.plugin_list):
try:
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
filename = loader.find_plugin(plugin, mod_type='.py', ignore_deprecated=True, check_aliases=True)
if filename is None:
continue
if filename.endswith(".ps1"):
continue
if os.path.isdir(filename):
continue
doc = None
try:
doc, plainexamples, returndocs, metadata = get_docstring(filename, fragment_loader)
except:
display.warning("%s has a documentation formatting error" % plugin)
if not doc or not isinstance(doc, dict):
desc = 'UNDOCUMENTED'
display.warning("%s parsing did not produce documentation." % plugin)
else:
desc = self.tty_ify(doc.get('short_description', 'INVALID SHORT DESCRIPTION').strip())
if len(desc) > linelimit:
desc = desc[:linelimit] + '...'
if plugin.startswith('_'): # Handle deprecated
deprecated.append("%-*s %-*.*s" % (displace, plugin[1:], linelimit, len(desc), desc))
else:
text.append("%-*s %-*.*s" % (displace, plugin, linelimit, len(desc), desc))
except Exception as e:
raise AnsibleError("Failed reading docs at %s: %s" % (plugin, to_native(e)))
if len(deprecated) > 0:
text.append("\nDEPRECATED:")
text.extend(deprecated)
return "\n".join(text)
def get_plugin_list_filenames(self, loader):
columns = display.columns
displace = max(len(x) for x in self.plugin_list)
linelimit = columns - displace - 5
text = []
for plugin in sorted(self.plugin_list):
try:
# if the module lives in a non-python file (eg, win_X.ps1), require the corresponding python file for docs
filename = loader.find_plugin(plugin, mod_type='.py', ignore_deprecated=True, check_aliases=True)
if filename is None:
continue
if filename.endswith(".ps1"):
continue
if os.path.isdir(filename):
continue
text.append("%-*s %-*.*s" % (displace, plugin, linelimit, len(filename), filename))
except Exception as e:
raise AnsibleError("Failed reading docs at %s: %s" % (plugin, to_native(e)))
return "\n".join(text)
@staticmethod
def print_paths(finder):
''' Returns a string suitable for printing of the search path '''
# Uses a list to get the order right
ret = []
for i in finder._get_paths(subdirs=False):
if i not in ret:
ret.append(i)
return os.pathsep.join(ret)
def get_snippet_text(self, doc):
text = []
desc = CLI.tty_ify(doc['short_description'])
text.append("- name: %s" % (desc))
text.append(" %s:" % (doc['module']))
pad = 31
subdent = " " * pad
limit = display.columns - pad
for o in sorted(doc['options'].keys()):
opt = doc['options'][o]
if isinstance(opt['description'], string_types):
desc = CLI.tty_ify(opt['description'])
else:
desc = CLI.tty_ify(" ".join(opt['description']))
required = opt.get('required', False)
if not isinstance(required, bool):
raise("Incorrect value for 'Required', a boolean is needed.: %s" % required)
if required:
desc = "(required) %s" % desc
o = '%s:' % o
text.append(" %-20s # %s" % (o, textwrap.fill(desc, limit, subsequent_indent=subdent)))
text.append('')
return "\n".join(text)
def _dump_yaml(self, struct, indent):
return CLI.tty_ify('\n'.join([indent + line for line in yaml.dump(struct, default_flow_style=False, Dumper=AnsibleDumper).split('\n')]))
def add_fields(self, text, fields, limit, opt_indent):
for o in sorted(fields):
opt = fields[o]
required = opt.pop('required', False)
if not isinstance(required, bool):
raise AnsibleError("Incorrect value for 'Required', a boolean is needed.: %s" % required)
if required:
opt_leadin = "="
else:
opt_leadin = "-"
text.append("%s %s" % (opt_leadin, o))
if isinstance(opt['description'], list):
for entry in opt['description']:
text.append(textwrap.fill(CLI.tty_ify(entry), limit, initial_indent=opt_indent, subsequent_indent=opt_indent))
else:
text.append(textwrap.fill(CLI.tty_ify(opt['description']), limit, initial_indent=opt_indent, subsequent_indent=opt_indent))
del opt['description']
aliases = ''
if 'aliases' in opt:
if len(opt['aliases']) > 0:
aliases = "(Aliases: " + ", ".join(str(i) for i in opt['aliases']) + ")"
del opt['aliases']
choices = ''
if 'choices' in opt:
if len(opt['choices']) > 0:
choices = "(Choices: " + ", ".join(str(i) for i in opt['choices']) + ")"
del opt['choices']
default = ''
if 'default' in opt or not required:
default = "[Default: %s" % str(opt.pop('default', '(null)')) + "]"
text.append(textwrap.fill(CLI.tty_ify(aliases + choices + default), limit, initial_indent=opt_indent, subsequent_indent=opt_indent))
if 'options' in opt:
text.append("%soptions:\n" % opt_indent)
self.add_fields(text, opt.pop('options'), limit, opt_indent + opt_indent)
if 'spec' in opt:
text.append("%sspec:\n" % opt_indent)
self.add_fields(text, opt.pop('spec'), limit, opt_indent + opt_indent)
conf = {}
for config in ('env', 'ini', 'yaml', 'vars'):
if config in opt and opt[config]:
conf[config] = opt.pop(config)
for ignore in self.IGNORE:
for item in conf[config]:
if ignore in item:
del item[ignore]
if conf:
text.append(self._dump_yaml({'set_via': conf}, opt_indent))
for k in sorted(opt):
if k.startswith('_'):
continue
if isinstance(opt[k], string_types):
text.append('%s%s: %s' % (opt_indent, k, textwrap.fill(CLI.tty_ify(opt[k]), limit - (len(k) + 2), subsequent_indent=opt_indent)))
elif isinstance(opt[k], (list, tuple)):
text.append(CLI.tty_ify('%s%s: %s' % (opt_indent, k, ', '.join(opt[k]))))
else:
text.append(self._dump_yaml({k: opt[k]}, opt_indent))
text.append('')
@staticmethod
def get_support_block(doc):
# Note: 'curated' is deprecated and not used in any of the modules we ship
support_level_msg = {'core': 'The Ansible Core Team',
'network': 'The Ansible Network Team',
'certified': 'an Ansible Partner',
'community': 'The Ansible Community',
'curated': 'A Third Party',
}
if doc['metadata'].get('metadata_version') in ('1.0', '1.1'):
return [" * This module is maintained by %s" % support_level_msg[doc['metadata']['supported_by']]]
return []
@staticmethod
def get_metadata_block(doc):
text = []
if doc['metadata'].get('metadata_version') in ('1.0', '1.1'):
text.append("METADATA:")
text.append('\tSUPPORT LEVEL: %s' % doc['metadata']['supported_by'])
for k in (m for m in doc['metadata'] if m not in ('version', 'metadata_version', 'supported_by')):
if isinstance(k, list):
text.append("\t%s: %s" % (k.capitalize(), ", ".join(doc['metadata'][k])))
else:
text.append("\t%s: %s" % (k.capitalize(), doc['metadata'][k]))
return text
return []
def get_man_text(self, doc):
self.IGNORE = self.IGNORE + (self.options.type,)
opt_indent = " "
text = []
pad = display.columns * 0.20
limit = max(display.columns - int(pad), 70)
text.append("> %s (%s)\n" % (doc.get(self.options.type, doc.get('plugin_type')).upper(), doc.pop('filename')))
if isinstance(doc['description'], list):
desc = " ".join(doc.pop('description'))
else:
desc = doc.pop('description')
text.append("%s\n" % textwrap.fill(CLI.tty_ify(desc), limit, initial_indent=opt_indent, subsequent_indent=opt_indent))
if 'deprecated' in doc and doc['deprecated'] is not None and len(doc['deprecated']) > 0:
text.append("DEPRECATED: \n")
if isinstance(doc['deprecated'], dict):
text.append("\tReason: %(why)s\n\tWill be removed in: Ansible %(removed_in)s\n\tAlternatives: %(alternative)s" % doc.pop('deprecated'))
else:
text.append("%s" % doc.pop('deprecated'))
text.append("\n")
try:
support_block = self.get_support_block(doc)
if support_block:
text.extend(support_block)
except:
pass # FIXME: not suported by plugins
if doc.pop('action', False):
text.append(" * note: %s\n" % "This module has a corresponding action plugin.")
if 'options' in doc and doc['options']:
text.append("OPTIONS (= is mandatory):\n")
self.add_fields(text, doc.pop('options'), limit, opt_indent)
text.append('')
if 'notes' in doc and doc['notes'] and len(doc['notes']) > 0:
text.append("NOTES:")
for note in doc['notes']:
text.append(textwrap.fill(CLI.tty_ify(note), limit - 6, initial_indent=opt_indent[:-2] + "* ", subsequent_indent=opt_indent))
text.append('')
del doc['notes']
if 'requirements' in doc and doc['requirements'] is not None and len(doc['requirements']) > 0:
req = ", ".join(doc.pop('requirements'))
text.append("REQUIREMENTS:%s\n" % textwrap.fill(CLI.tty_ify(req), limit - 16, initial_indent=" ", subsequent_indent=opt_indent))
# Generic handler
for k in sorted(doc):
if k in self.IGNORE or not doc[k]:
continue
if isinstance(doc[k], string_types):
text.append('%s: %s' % (k.upper(), textwrap.fill(CLI.tty_ify(doc[k]), limit - (len(k) + 2), subsequent_indent=opt_indent)))
elif isinstance(doc[k], (list, tuple)):
text.append('%s: %s' % (k.upper(), ', '.join(doc[k])))
else:
text.append(self._dump_yaml({k.upper(): doc[k]}, opt_indent))
del doc[k]
text.append('')
if 'plainexamples' in doc and doc['plainexamples'] is not None:
text.append("EXAMPLES:")
if isinstance(doc['plainexamples'], string_types):
text.append(doc.pop('plainexamples').strip())
else:
text.append(yaml.dump(doc.pop('plainexamples'), indent=2, default_flow_style=False))
text.append('')
if 'returndocs' in doc and doc['returndocs'] is not None:
text.append("RETURN VALUES:\n")
if isinstance(doc['returndocs'], string_types):
text.append(doc.pop('returndocs'))
else:
text.append(yaml.dump(doc.pop('returndocs'), indent=2, default_flow_style=False))
text.append('')
try:
metadata_block = self.get_metadata_block(doc)
if metadata_block:
text.extend(metadata_block)
text.append('')
except:
pass # metadata is optional
return "\n".join(text) | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/env python
#
# Copyright 2009 Facebook
#
# 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.
"""A simple template system that compiles templates to Python code.
Basic usage looks like::
t = template.Template("<html>{{ myvalue }}</html>")
print(t.generate(myvalue="XXX"))
`Loader` is a class that loads templates from a root directory and caches
the compiled templates::
loader = template.Loader("/home/btaylor")
print(loader.load("test.html").generate(myvalue="XXX"))
We compile all templates to raw Python. Error-reporting is currently... uh,
interesting. Syntax for the templates::
### base.html
<html>
<head>
<title>{% block title %}Default title{% end %}</title>
</head>
<body>
<ul>
{% for student in students %}
{% block student %}
<li>{{ escape(student.name) }}</li>
{% end %}
{% end %}
</ul>
</body>
</html>
### bold.html
{% extends "base.html" %}
{% block title %}A bolder title{% end %}
{% block student %}
<li><span style="bold">{{ escape(student.name) }}</span></li>
{% end %}
Unlike most other template systems, we do not put any restrictions on the
expressions you can include in your statements. ``if`` and ``for`` blocks get
translated exactly into Python, so you can do complex expressions like::
{% for student in [p for p in people if p.student and p.age > 23] %}
<li>{{ escape(student.name) }}</li>
{% end %}
Translating directly to Python means you can apply functions to expressions
easily, like the ``escape()`` function in the examples above. You can pass
functions in to your template just like any other variable
(In a `.RequestHandler`, override `.RequestHandler.get_template_namespace`)::
### Python code
def add(x, y):
return x + y
template.execute(add=add)
### The template
{{ add(1, 2) }}
We provide the functions `escape() <.xhtml_escape>`, `.url_escape()`,
`.json_encode()`, and `.squeeze()` to all templates by default.
Typical applications do not create `Template` or `Loader` instances by
hand, but instead use the `~.RequestHandler.render` and
`~.RequestHandler.render_string` methods of
`tornado.web.RequestHandler`, which load templates automatically based
on the ``template_path`` `.Application` setting.
Variable names beginning with ``_tt_`` are reserved by the template
system and should not be used by application code.
Syntax Reference
----------------
Template expressions are surrounded by double curly braces: ``{{ ... }}``.
The contents may be any python expression, which will be escaped according
to the current autoescape setting and inserted into the output. Other
template directives use ``{% %}``.
To comment out a section so that it is omitted from the output, surround it
with ``{# ... #}``.
These tags may be escaped as ``{{!``, ``{%!``, and ``{#!``
if you need to include a literal ``{{``, ``{%``, or ``{#`` in the output.
``{% apply *function* %}...{% end %}``
Applies a function to the output of all template code between ``apply``
and ``end``::
{% apply linkify %}{{name}} said: {{message}}{% end %}
Note that as an implementation detail apply blocks are implemented
as nested functions and thus may interact strangely with variables
set via ``{% set %}``, or the use of ``{% break %}`` or ``{% continue %}``
within loops.
``{% autoescape *function* %}``
Sets the autoescape mode for the current file. This does not affect
other files, even those referenced by ``{% include %}``. Note that
autoescaping can also be configured globally, at the `.Application`
or `Loader`.::
{% autoescape xhtml_escape %}
{% autoescape None %}
``{% block *name* %}...{% end %}``
Indicates a named, replaceable block for use with ``{% extends %}``.
Blocks in the parent template will be replaced with the contents of
the same-named block in a child template.::
<!-- base.html -->
<title>{% block title %}Default title{% end %}</title>
<!-- mypage.html -->
{% extends "base.html" %}
{% block title %}My page title{% end %}
``{% comment ... %}``
A comment which will be removed from the template output. Note that
there is no ``{% end %}`` tag; the comment goes from the word ``comment``
to the closing ``%}`` tag.
``{% extends *filename* %}``
Inherit from another template. Templates that use ``extends`` should
contain one or more ``block`` tags to replace content from the parent
template. Anything in the child template not contained in a ``block``
tag will be ignored. For an example, see the ``{% block %}`` tag.
``{% for *var* in *expr* %}...{% end %}``
Same as the python ``for`` statement. ``{% break %}`` and
``{% continue %}`` may be used inside the loop.
``{% from *x* import *y* %}``
Same as the python ``import`` statement.
``{% if *condition* %}...{% elif *condition* %}...{% else %}...{% end %}``
Conditional statement - outputs the first section whose condition is
true. (The ``elif`` and ``else`` sections are optional)
``{% import *module* %}``
Same as the python ``import`` statement.
``{% include *filename* %}``
Includes another template file. The included file can see all the local
variables as if it were copied directly to the point of the ``include``
directive (the ``{% autoescape %}`` directive is an exception).
Alternately, ``{% module Template(filename, **kwargs) %}`` may be used
to include another template with an isolated namespace.
``{% module *expr* %}``
Renders a `~tornado.web.UIModule`. The output of the ``UIModule`` is
not escaped::
{% module Template("foo.html", arg=42) %}
``UIModules`` are a feature of the `tornado.web.RequestHandler`
class (and specifically its ``render`` method) and will not work
when the template system is used on its own in other contexts.
``{% raw *expr* %}``
Outputs the result of the given expression without autoescaping.
``{% set *x* = *y* %}``
Sets a local variable.
``{% try %}...{% except %}...{% else %}...{% finally %}...{% end %}``
Same as the python ``try`` statement.
``{% while *condition* %}... {% end %}``
Same as the python ``while`` statement. ``{% break %}`` and
``{% continue %}`` may be used inside the loop.
``{% whitespace *mode* %}``
Sets the whitespace mode for the remainder of the current file
(or until the next ``{% whitespace %}`` directive). See
`filter_whitespace` for available options. New in Tornado 4.3.
"""
from __future__ import absolute_import, division, print_function
import datetime
import linecache
import os.path
import posixpath
import re
import threading
from tornado import escape
from tornado.log import app_log
from tornado.util import ObjectDict, exec_in, unicode_type, PY3
if PY3:
from io import StringIO
else:
from cStringIO import StringIO
_DEFAULT_AUTOESCAPE = "xhtml_escape"
_UNSET = object()
def filter_whitespace(mode, text):
"""Transform whitespace in ``text`` according to ``mode``.
Available modes are:
* ``all``: Return all whitespace unmodified.
* ``single``: Collapse consecutive whitespace with a single whitespace
character, preserving newlines.
* ``oneline``: Collapse all runs of whitespace into a single space
character, removing all newlines in the process.
.. versionadded:: 4.3
"""
if mode == 'all':
return text
elif mode == 'single':
text = re.sub(r"([\t ]+)", " ", text)
text = re.sub(r"(\s*\n\s*)", "\n", text)
return text
elif mode == 'oneline':
return re.sub(r"(\s+)", " ", text)
else:
raise Exception("invalid whitespace mode %s" % mode)
class Template(object):
"""A compiled template.
We compile into Python from the given template_string. You can generate
the template from variables with generate().
"""
# note that the constructor's signature is not extracted with
# autodoc because _UNSET looks like garbage. When changing
# this signature update website/sphinx/template.rst too.
def __init__(self, template_string, name="<string>", loader=None,
compress_whitespace=_UNSET, autoescape=_UNSET,
whitespace=None):
"""Construct a Template.
:arg str template_string: the contents of the template file.
:arg str name: the filename from which the template was loaded
(used for error message).
:arg tornado.template.BaseLoader loader: the `~tornado.template.BaseLoader` responsible for this template,
used to resolve ``{% include %}`` and ``{% extend %}``
directives.
:arg bool compress_whitespace: Deprecated since Tornado 4.3.
Equivalent to ``whitespace="single"`` if true and
``whitespace="all"`` if false.
:arg str autoescape: The name of a function in the template
namespace, or ``None`` to disable escaping by default.
:arg str whitespace: A string specifying treatment of whitespace;
see `filter_whitespace` for options.
.. versionchanged:: 4.3
Added ``whitespace`` parameter; deprecated ``compress_whitespace``.
"""
self.name = escape.native_str(name)
if compress_whitespace is not _UNSET:
# Convert deprecated compress_whitespace (bool) to whitespace (str).
if whitespace is not None:
raise Exception("cannot set both whitespace and compress_whitespace")
whitespace = "single" if compress_whitespace else "all"
if whitespace is None:
if loader and loader.whitespace:
whitespace = loader.whitespace
else:
# Whitespace defaults by filename.
if name.endswith(".html") or name.endswith(".js"):
whitespace = "single"
else:
whitespace = "all"
# Validate the whitespace setting.
filter_whitespace(whitespace, '')
if autoescape is not _UNSET:
self.autoescape = autoescape
elif loader:
self.autoescape = loader.autoescape
else:
self.autoescape = _DEFAULT_AUTOESCAPE
self.namespace = loader.namespace if loader else {}
reader = _TemplateReader(name, escape.native_str(template_string),
whitespace)
self.file = _File(self, _parse(reader, self))
self.code = self._generate_python(loader)
self.loader = loader
try:
# Under python2.5, the fake filename used here must match
# the module name used in __name__ below.
# The dont_inherit flag prevents template.py's future imports
# from being applied to the generated code.
self.compiled = compile(
escape.to_unicode(self.code),
"%s.generated.py" % self.name.replace('.', '_'),
"exec", dont_inherit=True)
except Exception:
formatted_code = _format_code(self.code).rstrip()
app_log.error("%s code:\n%s", self.name, formatted_code)
raise
def generate(self, **kwargs):
"""Generate this template with the given arguments."""
namespace = {
"escape": escape.xhtml_escape,
"xhtml_escape": escape.xhtml_escape,
"url_escape": escape.url_escape,
"json_encode": escape.json_encode,
"squeeze": escape.squeeze,
"linkify": escape.linkify,
"datetime": datetime,
"_tt_utf8": escape.utf8, # for internal use
"_tt_string_types": (unicode_type, bytes),
# __name__ and __loader__ allow the traceback mechanism to find
# the generated source code.
"__name__": self.name.replace('.', '_'),
"__loader__": ObjectDict(get_source=lambda name: self.code),
}
namespace.update(self.namespace)
namespace.update(kwargs)
exec_in(self.compiled, namespace)
execute = namespace["_tt_execute"]
# Clear the traceback module's cache of source data now that
# we've generated a new template (mainly for this module's
# unittests, where different tests reuse the same name).
linecache.clearcache()
return execute()
def _generate_python(self, loader):
buffer = StringIO()
try:
# named_blocks maps from names to _NamedBlock objects
named_blocks = {}
ancestors = self._get_ancestors(loader)
ancestors.reverse()
for ancestor in ancestors:
ancestor.find_named_blocks(loader, named_blocks)
writer = _CodeWriter(buffer, named_blocks, loader,
ancestors[0].template)
ancestors[0].generate(writer)
return buffer.getvalue()
finally:
buffer.close()
def _get_ancestors(self, loader):
ancestors = [self.file]
for chunk in self.file.body.chunks:
if isinstance(chunk, _ExtendsBlock):
if not loader:
raise ParseError("{% extends %} block found, but no "
"template loader")
template = loader.load(chunk.name, self.name)
ancestors.extend(template._get_ancestors(loader))
return ancestors
class BaseLoader(object):
"""Base class for template loaders.
You must use a template loader to use template constructs like
``{% extends %}`` and ``{% include %}``. The loader caches all
templates after they are loaded the first time.
"""
def __init__(self, autoescape=_DEFAULT_AUTOESCAPE, namespace=None,
whitespace=None):
"""Construct a template loader.
:arg str autoescape: The name of a function in the template
namespace, such as "xhtml_escape", or ``None`` to disable
autoescaping by default.
:arg dict namespace: A dictionary to be added to the default template
namespace, or ``None``.
:arg str whitespace: A string specifying default behavior for
whitespace in templates; see `filter_whitespace` for options.
Default is "single" for files ending in ".html" and ".js" and
"all" for other files.
.. versionchanged:: 4.3
Added ``whitespace`` parameter.
"""
self.autoescape = autoescape
self.namespace = namespace or {}
self.whitespace = whitespace
self.templates = {}
# self.lock protects self.templates. It's a reentrant lock
# because templates may load other templates via `include` or
# `extends`. Note that thanks to the GIL this code would be safe
# even without the lock, but could lead to wasted work as multiple
# threads tried to compile the same template simultaneously.
self.lock = threading.RLock()
def reset(self):
"""Resets the cache of compiled templates."""
with self.lock:
self.templates = {}
def resolve_path(self, name, parent_path=None):
"""Converts a possibly-relative path to absolute (used internally)."""
raise NotImplementedError()
def load(self, name, parent_path=None):
"""Loads a template."""
name = self.resolve_path(name, parent_path=parent_path)
with self.lock:
if name not in self.templates:
self.templates[name] = self._create_template(name)
return self.templates[name]
def _create_template(self, name):
raise NotImplementedError()
class Loader(BaseLoader):
"""A template loader that loads from a single root directory.
"""
def __init__(self, root_directory, **kwargs):
super(Loader, self).__init__(**kwargs)
self.root = os.path.abspath(root_directory)
def resolve_path(self, name, parent_path=None):
if parent_path and not parent_path.startswith("<") and \
not parent_path.startswith("/") and \
not name.startswith("/"):
current_path = os.path.join(self.root, parent_path)
file_dir = os.path.dirname(os.path.abspath(current_path))
relative_path = os.path.abspath(os.path.join(file_dir, name))
if relative_path.startswith(self.root):
name = relative_path[len(self.root) + 1:]
return name
def _create_template(self, name):
path = os.path.join(self.root, name)
with open(path, "rb") as f:
template = Template(f.read(), name=name, loader=self)
return template
class DictLoader(BaseLoader):
"""A template loader that loads from a dictionary."""
def __init__(self, dict, **kwargs):
super(DictLoader, self).__init__(**kwargs)
self.dict = dict
def resolve_path(self, name, parent_path=None):
if parent_path and not parent_path.startswith("<") and \
not parent_path.startswith("/") and \
not name.startswith("/"):
file_dir = posixpath.dirname(parent_path)
name = posixpath.normpath(posixpath.join(file_dir, name))
return name
def _create_template(self, name):
return Template(self.dict[name], name=name, loader=self)
class _Node(object):
def each_child(self):
return ()
def generate(self, writer):
raise NotImplementedError()
def find_named_blocks(self, loader, named_blocks):
for child in self.each_child():
child.find_named_blocks(loader, named_blocks)
class _File(_Node):
def __init__(self, template, body):
self.template = template
self.body = body
self.line = 0
def generate(self, writer):
writer.write_line("def _tt_execute():", self.line)
with writer.indent():
writer.write_line("_tt_buffer = []", self.line)
writer.write_line("_tt_append = _tt_buffer.append", self.line)
self.body.generate(writer)
writer.write_line("return _tt_utf8('').join(_tt_buffer)", self.line)
def each_child(self):
return (self.body,)
class _ChunkList(_Node):
def __init__(self, chunks):
self.chunks = chunks
def generate(self, writer):
for chunk in self.chunks:
chunk.generate(writer)
def each_child(self):
return self.chunks
class _NamedBlock(_Node):
def __init__(self, name, body, template, line):
self.name = name
self.body = body
self.template = template
self.line = line
def each_child(self):
return (self.body,)
def generate(self, writer):
block = writer.named_blocks[self.name]
with writer.include(block.template, self.line):
block.body.generate(writer)
def find_named_blocks(self, loader, named_blocks):
named_blocks[self.name] = self
_Node.find_named_blocks(self, loader, named_blocks)
class _ExtendsBlock(_Node):
def __init__(self, name):
self.name = name
class _IncludeBlock(_Node):
def __init__(self, name, reader, line):
self.name = name
self.template_name = reader.name
self.line = line
def find_named_blocks(self, loader, named_blocks):
included = loader.load(self.name, self.template_name)
included.file.find_named_blocks(loader, named_blocks)
def generate(self, writer):
included = writer.loader.load(self.name, self.template_name)
with writer.include(included, self.line):
included.file.body.generate(writer)
class _ApplyBlock(_Node):
def __init__(self, method, line, body=None):
self.method = method
self.line = line
self.body = body
def each_child(self):
return (self.body,)
def generate(self, writer):
method_name = "_tt_apply%d" % writer.apply_counter
writer.apply_counter += 1
writer.write_line("def %s():" % method_name, self.line)
with writer.indent():
writer.write_line("_tt_buffer = []", self.line)
writer.write_line("_tt_append = _tt_buffer.append", self.line)
self.body.generate(writer)
writer.write_line("return _tt_utf8('').join(_tt_buffer)", self.line)
writer.write_line("_tt_append(_tt_utf8(%s(%s())))" % (
self.method, method_name), self.line)
class _ControlBlock(_Node):
def __init__(self, statement, line, body=None):
self.statement = statement
self.line = line
self.body = body
def each_child(self):
return (self.body,)
def generate(self, writer):
writer.write_line("%s:" % self.statement, self.line)
with writer.indent():
self.body.generate(writer)
# Just in case the body was empty
writer.write_line("pass", self.line)
class _IntermediateControlBlock(_Node):
def __init__(self, statement, line):
self.statement = statement
self.line = line
def generate(self, writer):
# In case the previous block was empty
writer.write_line("pass", self.line)
writer.write_line("%s:" % self.statement, self.line, writer.indent_size() - 1)
class _Statement(_Node):
def __init__(self, statement, line):
self.statement = statement
self.line = line
def generate(self, writer):
writer.write_line(self.statement, self.line)
class _Expression(_Node):
def __init__(self, expression, line, raw=False):
self.expression = expression
self.line = line
self.raw = raw
def generate(self, writer):
writer.write_line("_tt_tmp = %s" % self.expression, self.line)
writer.write_line("if isinstance(_tt_tmp, _tt_string_types):"
" _tt_tmp = _tt_utf8(_tt_tmp)", self.line)
writer.write_line("else: _tt_tmp = _tt_utf8(str(_tt_tmp))", self.line)
if not self.raw and writer.current_template.autoescape is not None:
# In python3 functions like xhtml_escape return unicode,
# so we have to convert to utf8 again.
writer.write_line("_tt_tmp = _tt_utf8(%s(_tt_tmp))" %
writer.current_template.autoescape, self.line)
writer.write_line("_tt_append(_tt_tmp)", self.line)
class _Module(_Expression):
def __init__(self, expression, line):
super(_Module, self).__init__("_tt_modules." + expression, line,
raw=True)
class _Text(_Node):
def __init__(self, value, line, whitespace):
self.value = value
self.line = line
self.whitespace = whitespace
def generate(self, writer):
value = self.value
# Compress whitespace if requested, with a crude heuristic to avoid
# altering preformatted whitespace.
if "<pre>" not in value:
value = filter_whitespace(self.whitespace, value)
if value:
writer.write_line('_tt_append(%r)' % escape.utf8(value), self.line)
class ParseError(Exception):
"""Raised for template syntax errors.
``ParseError`` instances have ``filename`` and ``lineno`` attributes
indicating the position of the error.
.. versionchanged:: 4.3
Added ``filename`` and ``lineno`` attributes.
"""
def __init__(self, message, filename=None, lineno=0):
self.message = message
# The names "filename" and "lineno" are chosen for consistency
# with python SyntaxError.
self.filename = filename
self.lineno = lineno
def __str__(self):
return '%s at %s:%d' % (self.message, self.filename, self.lineno)
class _CodeWriter(object):
def __init__(self, file, named_blocks, loader, current_template):
self.file = file
self.named_blocks = named_blocks
self.loader = loader
self.current_template = current_template
self.apply_counter = 0
self.include_stack = []
self._indent = 0
def indent_size(self):
return self._indent
def indent(self):
class Indenter(object):
def __enter__(_):
self._indent += 1
return self
def __exit__(_, *args):
assert self._indent > 0
self._indent -= 1
return Indenter()
def include(self, template, line):
self.include_stack.append((self.current_template, line))
self.current_template = template
class IncludeTemplate(object):
def __enter__(_):
return self
def __exit__(_, *args):
self.current_template = self.include_stack.pop()[0]
return IncludeTemplate()
def write_line(self, line, line_number, indent=None):
if indent is None:
indent = self._indent
line_comment = ' # %s:%d' % (self.current_template.name, line_number)
if self.include_stack:
ancestors = ["%s:%d" % (tmpl.name, lineno)
for (tmpl, lineno) in self.include_stack]
line_comment += ' (via %s)' % ', '.join(reversed(ancestors))
print(" " * indent + line + line_comment, file=self.file)
class _TemplateReader(object):
def __init__(self, name, text, whitespace):
self.name = name
self.text = text
self.whitespace = whitespace
self.line = 1
self.pos = 0
def find(self, needle, start=0, end=None):
assert start >= 0, start
pos = self.pos
start += pos
if end is None:
index = self.text.find(needle, start)
else:
end += pos
assert end >= start
index = self.text.find(needle, start, end)
if index != -1:
index -= pos
return index
def consume(self, count=None):
if count is None:
count = len(self.text) - self.pos
newpos = self.pos + count
self.line += self.text.count("\n", self.pos, newpos)
s = self.text[self.pos:newpos]
self.pos = newpos
return s
def remaining(self):
return len(self.text) - self.pos
def __len__(self):
return self.remaining()
def __getitem__(self, key):
if type(key) is slice:
size = len(self)
start, stop, step = key.indices(size)
if start is None:
start = self.pos
else:
start += self.pos
if stop is not None:
stop += self.pos
return self.text[slice(start, stop, step)]
elif key < 0:
return self.text[key]
else:
return self.text[self.pos + key]
def __str__(self):
return self.text[self.pos:]
def raise_parse_error(self, msg):
raise ParseError(msg, self.name, self.line)
def _format_code(code):
lines = code.splitlines()
format = "%%%dd %%s\n" % len(repr(len(lines) + 1))
return "".join([format % (i + 1, line) for (i, line) in enumerate(lines)])
def _parse(reader, template, in_block=None, in_loop=None):
body = _ChunkList([])
while True:
# Find next template directive
curly = 0
while True:
curly = reader.find("{", curly)
if curly == -1 or curly + 1 == reader.remaining():
# EOF
if in_block:
reader.raise_parse_error(
"Missing {%% end %%} block for %s" % in_block)
body.chunks.append(_Text(reader.consume(), reader.line,
reader.whitespace))
return body
# If the first curly brace is not the start of a special token,
# start searching from the character after it
if reader[curly + 1] not in ("{", "%", "#"):
curly += 1
continue
# When there are more than 2 curlies in a row, use the
# innermost ones. This is useful when generating languages
# like latex where curlies are also meaningful
if (curly + 2 < reader.remaining() and
reader[curly + 1] == '{' and reader[curly + 2] == '{'):
curly += 1
continue
break
# Append any text before the special token
if curly > 0:
cons = reader.consume(curly)
body.chunks.append(_Text(cons, reader.line,
reader.whitespace))
start_brace = reader.consume(2)
line = reader.line
# Template directives may be escaped as "{{!" or "{%!".
# In this case output the braces and consume the "!".
# This is especially useful in conjunction with jquery templates,
# which also use double braces.
if reader.remaining() and reader[0] == "!":
reader.consume(1)
body.chunks.append(_Text(start_brace, line,
reader.whitespace))
continue
# Comment
if start_brace == "{#":
end = reader.find("#}")
if end == -1:
reader.raise_parse_error("Missing end comment #}")
contents = reader.consume(end).strip()
reader.consume(2)
continue
# Expression
if start_brace == "{{":
end = reader.find("}}")
if end == -1:
reader.raise_parse_error("Missing end expression }}")
contents = reader.consume(end).strip()
reader.consume(2)
if not contents:
reader.raise_parse_error("Empty expression")
body.chunks.append(_Expression(contents, line))
continue
# Block
assert start_brace == "{%", start_brace
end = reader.find("%}")
if end == -1:
reader.raise_parse_error("Missing end block %}")
contents = reader.consume(end).strip()
reader.consume(2)
if not contents:
reader.raise_parse_error("Empty block tag ({% %})")
operator, space, suffix = contents.partition(" ")
suffix = suffix.strip()
# Intermediate ("else", "elif", etc) blocks
intermediate_blocks = {
"else": set(["if", "for", "while", "try"]),
"elif": set(["if"]),
"except": set(["try"]),
"finally": set(["try"]),
}
allowed_parents = intermediate_blocks.get(operator)
if allowed_parents is not None:
if not in_block:
reader.raise_parse_error("%s outside %s block" %
(operator, allowed_parents))
if in_block not in allowed_parents:
reader.raise_parse_error(
"%s block cannot be attached to %s block" %
(operator, in_block))
body.chunks.append(_IntermediateControlBlock(contents, line))
continue
# End tag
elif operator == "end":
if not in_block:
reader.raise_parse_error("Extra {% end %} block")
return body
elif operator in ("extends", "include", "set", "import", "from",
"comment", "autoescape", "whitespace", "raw",
"module"):
if operator == "comment":
continue
if operator == "extends":
suffix = suffix.strip('"').strip("'")
if not suffix:
reader.raise_parse_error("extends missing file path")
block = _ExtendsBlock(suffix)
elif operator in ("import", "from"):
if not suffix:
reader.raise_parse_error("import missing statement")
block = _Statement(contents, line)
elif operator == "include":
suffix = suffix.strip('"').strip("'")
if not suffix:
reader.raise_parse_error("include missing file path")
block = _IncludeBlock(suffix, reader, line)
elif operator == "set":
if not suffix:
reader.raise_parse_error("set missing statement")
block = _Statement(suffix, line)
elif operator == "autoescape":
fn = suffix.strip()
if fn == "None":
fn = None
template.autoescape = fn
continue
elif operator == "whitespace":
mode = suffix.strip()
# Validate the selected mode
filter_whitespace(mode, '')
reader.whitespace = mode
continue
elif operator == "raw":
block = _Expression(suffix, line, raw=True)
elif operator == "module":
block = _Module(suffix, line)
body.chunks.append(block)
continue
elif operator in ("apply", "block", "try", "if", "for", "while"):
# parse inner body recursively
if operator in ("for", "while"):
block_body = _parse(reader, template, operator, operator)
elif operator == "apply":
# apply creates a nested function so syntactically it's not
# in the loop.
block_body = _parse(reader, template, operator, None)
else:
block_body = _parse(reader, template, operator, in_loop)
if operator == "apply":
if not suffix:
reader.raise_parse_error("apply missing method name")
block = _ApplyBlock(suffix, line, block_body)
elif operator == "block":
if not suffix:
reader.raise_parse_error("block missing name")
block = _NamedBlock(suffix, block_body, template, line)
else:
block = _ControlBlock(contents, line, block_body)
body.chunks.append(block)
continue
elif operator in ("break", "continue"):
if not in_loop:
reader.raise_parse_error("%s outside %s block" %
(operator, set(["for", "while"])))
body.chunks.append(_Statement(contents, line))
continue
else:
reader.raise_parse_error("unknown operator: %r" % operator) | unknown | codeparrot/codeparrot-clean | ||
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package renderers
import (
"bytes"
"fmt"
"sort"
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
"github.com/hashicorp/terraform/internal/plans"
)
var (
_ computed.DiffRenderer = (*blockRenderer)(nil)
importantAttributes = []string{
"id",
"name",
"tags",
}
)
func importantAttribute(attr string) bool {
for _, attribute := range importantAttributes {
if attribute == attr {
return true
}
}
return false
}
func Block(attributes map[string]computed.Diff, blocks Blocks) computed.DiffRenderer {
return &blockRenderer{
attributes: attributes,
blocks: blocks,
}
}
type blockRenderer struct {
NoWarningsRenderer
attributes map[string]computed.Diff
blocks Blocks
}
func (renderer blockRenderer) RenderHuman(diff computed.Diff, indent int, opts computed.RenderHumanOpts) string {
if len(renderer.attributes) == 0 && len(renderer.blocks.GetAllKeys()) == 0 {
return fmt.Sprintf("{}%s", forcesReplacement(diff.Replace, opts))
}
unchangedAttributes := 0
unchangedBlocks := 0
maximumAttributeKeyLen := 0
var attributeKeys []string
escapedAttributeKeys := make(map[string]string)
for key := range renderer.attributes {
attributeKeys = append(attributeKeys, key)
escapedKey := EnsureValidAttributeName(key)
escapedAttributeKeys[key] = escapedKey
if maximumAttributeKeyLen < len(escapedKey) {
maximumAttributeKeyLen = len(escapedKey)
}
}
sort.Strings(attributeKeys)
importantAttributeOpts := opts.Clone()
importantAttributeOpts.ShowUnchangedChildren = true
attributeOpts := opts.Clone()
var buf bytes.Buffer
buf.WriteString(fmt.Sprintf("{%s\n", forcesReplacement(diff.Replace, opts)))
for _, key := range attributeKeys {
attribute := renderer.attributes[key]
if importantAttribute(key) {
// Always display the important attributes.
for _, warning := range attribute.WarningsHuman(indent+1, importantAttributeOpts) {
buf.WriteString(fmt.Sprintf("%s%s\n", formatIndent(indent+1), warning))
}
buf.WriteString(fmt.Sprintf("%s%s%-*s = %s\n", formatIndent(indent+1), writeDiffActionSymbol(attribute.Action, importantAttributeOpts), maximumAttributeKeyLen, key, attribute.RenderHuman(indent+1, importantAttributeOpts)))
continue
}
if attribute.Action == plans.NoOp && !opts.ShowUnchangedChildren {
unchangedAttributes++
continue
}
for _, warning := range attribute.WarningsHuman(indent+1, opts) {
buf.WriteString(fmt.Sprintf("%s%s\n", formatIndent(indent+1), warning))
}
buf.WriteString(fmt.Sprintf("%s%s%-*s = %s\n", formatIndent(indent+1), writeDiffActionSymbol(attribute.Action, attributeOpts), maximumAttributeKeyLen, escapedAttributeKeys[key], attribute.RenderHuman(indent+1, attributeOpts)))
}
if unchangedAttributes > 0 {
buf.WriteString(fmt.Sprintf("%s%s%s\n", formatIndent(indent+1), writeDiffActionSymbol(plans.NoOp, opts), unchanged("attribute", unchangedAttributes, opts)))
}
blockKeys := renderer.blocks.GetAllKeys()
for _, key := range blockKeys {
foundChangedBlock := false
renderBlock := func(diff computed.Diff, mapKey string, opts computed.RenderHumanOpts) {
creatingSensitiveValue := diff.Action == plans.Create && renderer.blocks.AfterSensitiveBlocks[key]
deletingSensitiveValue := diff.Action == plans.Delete && renderer.blocks.BeforeSensitiveBlocks[key]
modifyingSensitiveValue := (diff.Action == plans.Update || diff.Action == plans.NoOp) && (renderer.blocks.AfterSensitiveBlocks[key] || renderer.blocks.BeforeSensitiveBlocks[key])
if creatingSensitiveValue || deletingSensitiveValue || modifyingSensitiveValue {
// Intercept the renderer here if the sensitive data was set
// across all the blocks instead of individually.
action := diff.Action
if diff.Action == plans.NoOp && renderer.blocks.BeforeSensitiveBlocks[key] != renderer.blocks.AfterSensitiveBlocks[key] {
action = plans.Update
}
diff = computed.NewDiff(SensitiveBlock(diff, renderer.blocks.BeforeSensitiveBlocks[key], renderer.blocks.AfterSensitiveBlocks[key]), action, diff.Replace)
}
if diff.Action == plans.NoOp && !opts.ShowUnchangedChildren {
unchangedBlocks++
return
}
if !foundChangedBlock && len(renderer.attributes) > 0 {
// We always want to put an extra new line between the
// attributes and blocks, and between groups of blocks.
buf.WriteString("\n")
foundChangedBlock = true
}
// If the force replacement metadata was set for every entry in the
// block we need to override that here. Our child blocks will only
// know about the replace function if it was set on them
// specifically, and not if it was set for all the blocks.
blockOpts := opts.Clone()
blockOpts.ForceForcesReplacement = renderer.blocks.ReplaceBlocks[key]
for _, warning := range diff.WarningsHuman(indent+1, blockOpts) {
buf.WriteString(fmt.Sprintf("%s%s\n", formatIndent(indent+1), warning))
}
buf.WriteString(fmt.Sprintf("%s%s%s%s %s\n", formatIndent(indent+1), writeDiffActionSymbol(diff.Action, blockOpts), EnsureValidAttributeName(key), mapKey, diff.RenderHuman(indent+1, blockOpts)))
}
switch {
case renderer.blocks.IsSingleBlock(key):
renderBlock(renderer.blocks.SingleBlocks[key], "", opts)
case renderer.blocks.IsMapBlock(key):
var keys []string
for key := range renderer.blocks.MapBlocks[key] {
keys = append(keys, key)
}
sort.Strings(keys)
if renderer.blocks.UnknownBlocks[key] {
renderBlock(computed.NewDiff(Unknown(computed.Diff{}), diff.Action, false), "", opts)
}
for _, innerKey := range keys {
renderBlock(renderer.blocks.MapBlocks[key][innerKey], fmt.Sprintf(" %q", innerKey), opts)
}
case renderer.blocks.IsSetBlock(key):
setOpts := opts.Clone()
setOpts.ForceForcesReplacement = diff.Replace
if renderer.blocks.UnknownBlocks[key] {
renderBlock(computed.NewDiff(Unknown(computed.Diff{}), diff.Action, false), "", opts)
}
for _, block := range renderer.blocks.SetBlocks[key] {
renderBlock(block, "", opts)
}
case renderer.blocks.IsListBlock(key):
if renderer.blocks.UnknownBlocks[key] {
renderBlock(computed.NewDiff(Unknown(computed.Diff{}), diff.Action, false), "", opts)
}
for _, block := range renderer.blocks.ListBlocks[key] {
renderBlock(block, "", opts)
}
}
}
if unchangedBlocks > 0 {
buf.WriteString(fmt.Sprintf("\n%s%s%s\n", formatIndent(indent+1), writeDiffActionSymbol(plans.NoOp, opts), unchanged("block", unchangedBlocks, opts)))
}
buf.WriteString(fmt.Sprintf("%s%s}", formatIndent(indent), writeDiffActionSymbol(plans.NoOp, opts)))
return buf.String()
} | go | github | https://github.com/hashicorp/terraform | internal/command/jsonformat/computed/renderers/block.go |
# -*- coding: utf-8 -*-
from .jsregexp import Exec
import re
DIGS = set('0123456789')
WHITE = u"\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u180E\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF"
def replacement_template(rep, source, span, npar):
"""Takes the replacement template and some info about the match and returns filled template
"""
n = 0
res = ''
while n < len(rep)-1:
char = rep[n]
if char=='$':
if rep[n+1]=='$':
res += '$'
n += 2
continue
elif rep[n+1]=='`':
# replace with string that is BEFORE match
res += source[:span[0]]
n += 2
continue
elif rep[n+1]=='\'':
# replace with string that is AFTER match
res += source[span[1]:]
n += 2
continue
elif rep[n+1] in DIGS:
dig = rep[n+1]
if n+2<len(rep) and rep[n+2] in DIGS:
dig += rep[n+2]
num = int(dig)
# we will not do any replacements if we dont have this npar or dig is 0
if not num or num>len(npar):
res += '$'+dig
else:
# None - undefined has to be replaced with ''
res += npar[num-1] if npar[num-1] else ''
n += 1 + len(dig)
continue
res += char
n += 1
if n<len(rep):
res += rep[-1]
return res
###################################################
class StringPrototype:
def toString():
if this.Class!='String':
raise this.MakeError('TypeError', 'String.prototype.toString is not generic')
return this.value
def valueOf():
if this.Class!='String':
raise this.MakeError('TypeError', 'String.prototype.valueOf is not generic')
return this.value
def charAt(pos):
this.cok()
pos = pos.to_int()
s = this.to_string()
if 0<= pos < len(s.value):
char = s.value[pos]
if char not in s.CHAR_BANK:
s.Js(char) # add char to char bank
return s.CHAR_BANK[char]
return s.CHAR_BANK['']
def charCodeAt(pos):
this.cok()
pos = pos.to_int()
s = this.to_string()
if 0<= pos < len(s.value):
return s.Js(ord(s.value[pos]))
return s.NaN
def concat():
this.cok()
s = this.to_string()
res = s.value
for e in arguments.to_list():
res += e.to_string().value
return res
def indexOf(searchString, position):
this.cok()
s = this.to_string().value
search = searchString.to_string().value
pos = position.to_int()
return this.Js(s.find(search, min(max(pos, 0), len(s))) )
def lastIndexOf(searchString, position):
this.cok()
s = this.to_string().value
search = searchString.to_string().value
pos = position.to_number()
pos = 10**15 if pos.is_nan() else pos.to_int()
return s.rfind(search, 0, min(max(pos, 0)+1, len(s)))
def localeCompare(that):
this.cok()
s = this.to_string()
that = that.to_string()
if s<that:
return this.Js(-1)
elif s>that:
return this.Js(1)
return this.Js(0)
def match(regexp):
this.cok()
s = this.to_string()
r = this.RegExp(regexp) if regexp.Class!='RegExp' else regexp
if not r.glob:
return Exec(r, s)
r.put('lastIndex', this.Js(0))
found = []
previous_last_index = 0
last_match = True
while last_match:
result = Exec(r, s)
if result.is_null():
last_match=False
else:
this_index = r.get('lastIndex').value
if this_index==previous_last_index:
r.put('lastIndex', this.Js(this_index+1))
previous_last_index += 1
else:
previous_last_index = this_index
matchStr = result.get('0')
found.append(matchStr)
if not found:
return this.null
return found
def replace(searchValue, replaceValue):
# VERY COMPLICATED. to check again.
this.cok()
string = this.to_string()
s = string.value
res = ''
if not replaceValue.is_callable():
replaceValue = replaceValue.to_string().value
func = False
else:
func = True
# Replace all ( global )
if searchValue.Class == 'RegExp' and searchValue.glob:
last = 0
for e in re.finditer(searchValue.pat, s):
res += s[last:e.span()[0]]
if func:
# prepare arguments for custom func (replaceValue)
args = (e.group(),) + e.groups() + (e.span()[1], string)
# convert all types to JS
args = map(this.Js, args)
res += replaceValue(*args).to_string().value
else:
res += replacement_template(replaceValue, s, e.span(), e.groups())
last = e.span()[1]
res += s[last:]
return this.Js(res)
elif searchValue.Class=='RegExp':
e = re.search(searchValue.pat, s)
if e is None:
return string
span = e.span()
pars = e.groups()
match = e.group()
else:
match = searchValue.to_string().value
ind = s.find(match)
if ind==-1:
return string
span = ind, ind + len(match)
pars = ()
res = s[:span[0]]
if func:
args = (match,) + pars + (span[1], string)
# convert all types to JS
this_ = this
args = tuple([this_.Js(x) for x in args])
res += replaceValue(*args).to_string().value
else:
res += replacement_template(replaceValue, s, span, pars)
res += s[span[1]:]
return res
def search(regexp):
this.cok()
string = this.to_string()
if regexp.Class=='RegExp':
rx = regexp
else:
rx = this.RegExp(regexp)
res = re.search(rx.pat, string.value)
if res is not None:
return this.Js(res.span()[0])
return -1
def slice(start, end):
this.cok()
s = this.to_string()
start = start.to_int()
length = len(s.value)
end = length if end.is_undefined() else end.to_int()
#From = max(length+start, 0) if start<0 else min(length, start)
#To = max(length+end, 0) if end<0 else min(length, end)
return s.value[start:end]
def split (separator, limit):
# its a bit different that re.split!
this.cok()
S = this.to_string()
s = S.value
lim = 2**32-1 if limit.is_undefined() else limit.to_uint32()
if not lim:
return []
if separator.is_undefined():
return [s]
len_s = len(s)
res = []
R = separator if separator.Class=='RegExp' else separator.to_string()
if not len_s:
if SplitMatch(s, 0, R) is None:
return [S]
return []
p = q = 0
while q!=len_s:
e, cap = SplitMatch(s, q, R)
if e is None or e==p:
q += 1
continue
res.append(s[p:q])
p = q = e
if len(res)==lim:
return res
for element in cap:
res.append(this.Js(element))
if len(res)==lim:
return res
res.append(s[p:])
return res
def substring (start, end):
this.cok()
s = this.to_string().value
start = start.to_int()
length = len(s)
end = length if end.is_undefined() else end.to_int()
fstart = min(max(start, 0), length)
fend = min(max(end, 0), length)
return this.Js(s[min(fstart, fend):max(fstart, fend)])
def substr(start, length):
#I hate this function and its description in specification
r1 = this.to_string().value
r2 = start.to_int()
r3 = 10**20 if length.is_undefined() else length.to_int()
r4 = len(r1)
r5 = r2 if r2>=0 else max(0, r2+r4)
r6 = min(max(r3 ,0), r4 - r5)
if r6<=0:
return ''
return r1[r5:r5+r6]
def toLowerCase():
this.cok()
return this.Js(this.to_string().value.lower())
def toLocaleLowerCase():
this.cok()
return this.Js(this.to_string().value.lower())
def toUpperCase():
this.cok()
return this.Js(this.to_string().value.upper())
def toLocaleUpperCase():
this.cok()
return this.Js(this.to_string().value.upper())
def trim():
this.cok()
return this.Js(this.to_string().value.strip(WHITE))
def SplitMatch(s, q, R):
# s is Py String to match, q is the py int match start and R is Js RegExp or String.
if R.Class=='RegExp':
res = R.match(s, q)
return (None, ()) if res is None else (res.span()[1], res.groups())
# R is just a string
if s[q:].startswith(R.value):
return q+len(R.value), ()
return None, () | unknown | codeparrot/codeparrot-clean | ||
WINDOWS_1256_TO_UCS_TBL = [
["A0",0xA0],
["A2",0xA2],
["A3",0xA3],
["A4",0xA4],
["A5",0xA5],
["A6",0xA6],
["A7",0xA7],
["A8",0xA8],
["A9",0xA9],
["AB",0xAB],
["AC",0xAC],
["AD",0xAD],
["AE",0xAE],
["AF",0xAF],
["B0",0xB0],
["B1",0xB1],
["B2",0xB2],
["B3",0xB3],
["B4",0xB4],
["B5",0xB5],
["B6",0xB6],
["B7",0xB7],
["B8",0xB8],
["B9",0xB9],
["BB",0xBB],
["BC",0xBC],
["BD",0xBD],
["BE",0xBE],
["D7",0xD7],
["E0",0xE0],
["E2",0xE2],
["E7",0xE7],
["E8",0xE8],
["E9",0xE9],
["EA",0xEA],
["EB",0xEB],
["EE",0xEE],
["EF",0xEF],
["F4",0xF4],
["F7",0xF7],
["F9",0xF9],
["FB",0xFB],
["FC",0xFC],
["8C",0x152],
["9C",0x153],
["83",0x192],
["88",0x2C6],
["A1",0x60C],
["BA",0x61B],
["BF",0x61F],
["C1",0x621],
["C2",0x622],
["C3",0x623],
["C4",0x624],
["C5",0x625],
["C6",0x626],
["C7",0x627],
["C8",0x628],
["C9",0x629],
["CA",0x62A],
["CB",0x62B],
["CC",0x62C],
["CD",0x62D],
["CE",0x62E],
["CF",0x62F],
["D0",0x630],
["D1",0x631],
["D2",0x632],
["D3",0x633],
["D4",0x634],
["D5",0x635],
["D6",0x636],
["D8",0x637],
["D9",0x638],
["DA",0x639],
["DB",0x63A],
["DC",0x640],
["DD",0x641],
["DE",0x642],
["DF",0x643],
["E1",0x644],
["E3",0x645],
["E4",0x646],
["E5",0x647],
["E6",0x648],
["EC",0x649],
["ED",0x64A],
["F0",0x64B],
["F1",0x64C],
["F2",0x64D],
["F3",0x64E],
["F5",0x64F],
["F6",0x650],
["F8",0x651],
["FA",0x652],
["8A",0x679],
["81",0x67E],
["8D",0x686],
["8F",0x688],
["9A",0x691],
["8E",0x698],
["98",0x6A9],
["90",0x6AF],
["9F",0x6BA],
["AA",0x6BE],
["C0",0x6C1],
["FF",0x6D2],
["9D",0x200C],
["9E",0x200D],
["FD",0x200E],
["FE",0x200F],
["96",0x2013],
["97",0x2014],
["91",0x2018],
["92",0x2019],
["82",0x201A],
["93",0x201C],
["94",0x201D],
["84",0x201E],
["86",0x2020],
["87",0x2021],
["95",0x2022],
["85",0x2026],
["89",0x2030],
["8B",0x2039],
["9B",0x203A],
["80",0x20AC],
["99",0x2122],
] | ruby | github | https://github.com/ruby/ruby | enc/trans/windows-1256-tbl.rb |
# -*- coding: utf-8 -*-
"""Algorithms for spectral clustering"""
# Author: Gael Varoquaux gael.varoquaux@normalesup.org
# Brian Cheung
# Wei LI <kuantkid@gmail.com>
# License: BSD 3 clause
import warnings
import numpy as np
from ..base import BaseEstimator, ClusterMixin
from ..utils import check_random_state, as_float_array
from ..utils.validation import check_array
from ..utils.extmath import norm
from ..metrics.pairwise import pairwise_kernels
from ..neighbors import kneighbors_graph
from ..manifold import spectral_embedding
from .k_means_ import k_means
def discretize(vectors, copy=True, max_svd_restarts=30, n_iter_max=20,
random_state=None):
"""Search for a partition matrix (clustering) which is closest to the
eigenvector embedding.
Parameters
----------
vectors : array-like, shape: (n_samples, n_clusters)
The embedding space of the samples.
copy : boolean, optional, default: True
Whether to copy vectors, or perform in-place normalization.
max_svd_restarts : int, optional, default: 30
Maximum number of attempts to restart SVD if convergence fails
n_iter_max : int, optional, default: 30
Maximum number of iterations to attempt in rotation and partition
matrix search if machine precision convergence is not reached
random_state : int seed, RandomState instance, or None (default)
A pseudo random number generator used for the initialization of the
of the rotation matrix
Returns
-------
labels : array of integers, shape: n_samples
The labels of the clusters.
References
----------
- Multiclass spectral clustering, 2003
Stella X. Yu, Jianbo Shi
http://www1.icsi.berkeley.edu/~stellayu/publication/doc/2003kwayICCV.pdf
Notes
-----
The eigenvector embedding is used to iteratively search for the
closest discrete partition. First, the eigenvector embedding is
normalized to the space of partition matrices. An optimal discrete
partition matrix closest to this normalized embedding multiplied by
an initial rotation is calculated. Fixing this discrete partition
matrix, an optimal rotation matrix is calculated. These two
calculations are performed until convergence. The discrete partition
matrix is returned as the clustering solution. Used in spectral
clustering, this method tends to be faster and more robust to random
initialization than k-means.
"""
from scipy.sparse import csc_matrix
from scipy.linalg import LinAlgError
random_state = check_random_state(random_state)
vectors = as_float_array(vectors, copy=copy)
eps = np.finfo(float).eps
n_samples, n_components = vectors.shape
# Normalize the eigenvectors to an equal length of a vector of ones.
# Reorient the eigenvectors to point in the negative direction with respect
# to the first element. This may have to do with constraining the
# eigenvectors to lie in a specific quadrant to make the discretization
# search easier.
norm_ones = np.sqrt(n_samples)
for i in range(vectors.shape[1]):
vectors[:, i] = (vectors[:, i] / norm(vectors[:, i])) \
* norm_ones
if vectors[0, i] != 0:
vectors[:, i] = -1 * vectors[:, i] * np.sign(vectors[0, i])
# Normalize the rows of the eigenvectors. Samples should lie on the unit
# hypersphere centered at the origin. This transforms the samples in the
# embedding space to the space of partition matrices.
vectors = vectors / np.sqrt((vectors ** 2).sum(axis=1))[:, np.newaxis]
svd_restarts = 0
has_converged = False
# If there is an exception we try to randomize and rerun SVD again
# do this max_svd_restarts times.
while (svd_restarts < max_svd_restarts) and not has_converged:
# Initialize first column of rotation matrix with a row of the
# eigenvectors
rotation = np.zeros((n_components, n_components))
rotation[:, 0] = vectors[random_state.randint(n_samples), :].T
# To initialize the rest of the rotation matrix, find the rows
# of the eigenvectors that are as orthogonal to each other as
# possible
c = np.zeros(n_samples)
for j in range(1, n_components):
# Accumulate c to ensure row is as orthogonal as possible to
# previous picks as well as current one
c += np.abs(np.dot(vectors, rotation[:, j - 1]))
rotation[:, j] = vectors[c.argmin(), :].T
last_objective_value = 0.0
n_iter = 0
while not has_converged:
n_iter += 1
t_discrete = np.dot(vectors, rotation)
labels = t_discrete.argmax(axis=1)
vectors_discrete = csc_matrix(
(np.ones(len(labels)), (np.arange(0, n_samples), labels)),
shape=(n_samples, n_components))
t_svd = vectors_discrete.T * vectors
try:
U, S, Vh = np.linalg.svd(t_svd)
svd_restarts += 1
except LinAlgError:
print("SVD did not converge, randomizing and trying again")
break
ncut_value = 2.0 * (n_samples - S.sum())
if ((abs(ncut_value - last_objective_value) < eps) or
(n_iter > n_iter_max)):
has_converged = True
else:
# otherwise calculate rotation and continue
last_objective_value = ncut_value
rotation = np.dot(Vh.T, U.T)
if not has_converged:
raise LinAlgError('SVD did not converge')
return labels
def spectral_clustering(affinity, n_clusters=8, n_components=None,
eigen_solver=None, random_state=None, n_init=10,
eigen_tol=0.0, assign_labels='kmeans'):
"""Apply clustering to a projection to the normalized laplacian.
In practice Spectral Clustering is very useful when the structure of
the individual clusters is highly non-convex or more generally when
a measure of the center and spread of the cluster is not a suitable
description of the complete cluster. For instance when clusters are
nested circles on the 2D plan.
If affinity is the adjacency matrix of a graph, this method can be
used to find normalized graph cuts.
Read more in the :ref:`User Guide <spectral_clustering>`.
Parameters
-----------
affinity : array-like or sparse matrix, shape: (n_samples, n_samples)
The affinity matrix describing the relationship of the samples to
embed. **Must be symmetric**.
Possible examples:
- adjacency matrix of a graph,
- heat kernel of the pairwise distance matrix of the samples,
- symmetric k-nearest neighbours connectivity matrix of the samples.
n_clusters : integer, optional
Number of clusters to extract.
n_components : integer, optional, default is n_clusters
Number of eigen vectors to use for the spectral embedding
eigen_solver : {None, 'arpack', 'lobpcg', or 'amg'}
The eigenvalue decomposition strategy to use. AMG requires pyamg
to be installed. It can be faster on very large, sparse problems,
but may also lead to instabilities
random_state : int seed, RandomState instance, or None (default)
A pseudo random number generator used for the initialization
of the lobpcg eigen vectors decomposition when eigen_solver == 'amg'
and by the K-Means initialization.
n_init : int, optional, default: 10
Number of time the k-means algorithm will be run with different
centroid seeds. The final results will be the best output of
n_init consecutive runs in terms of inertia.
eigen_tol : float, optional, default: 0.0
Stopping criterion for eigendecomposition of the Laplacian matrix
when using arpack eigen_solver.
assign_labels : {'kmeans', 'discretize'}, default: 'kmeans'
The strategy to use to assign labels in the embedding
space. There are two ways to assign labels after the laplacian
embedding. k-means can be applied and is a popular choice. But it can
also be sensitive to initialization. Discretization is another
approach which is less sensitive to random initialization. See
the 'Multiclass spectral clustering' paper referenced below for
more details on the discretization approach.
Returns
-------
labels : array of integers, shape: n_samples
The labels of the clusters.
References
----------
- Normalized cuts and image segmentation, 2000
Jianbo Shi, Jitendra Malik
http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.2324
- A Tutorial on Spectral Clustering, 2007
Ulrike von Luxburg
http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.165.9323
- Multiclass spectral clustering, 2003
Stella X. Yu, Jianbo Shi
http://www1.icsi.berkeley.edu/~stellayu/publication/doc/2003kwayICCV.pdf
Notes
------
The graph should contain only one connect component, elsewhere
the results make little sense.
This algorithm solves the normalized cut for k=2: it is a
normalized spectral clustering.
"""
if assign_labels not in ('kmeans', 'discretize'):
raise ValueError("The 'assign_labels' parameter should be "
"'kmeans' or 'discretize', but '%s' was given"
% assign_labels)
random_state = check_random_state(random_state)
n_components = n_clusters if n_components is None else n_components
maps = spectral_embedding(affinity, n_components=n_components,
eigen_solver=eigen_solver,
random_state=random_state,
eigen_tol=eigen_tol, drop_first=False)
if assign_labels == 'kmeans':
_, labels, _ = k_means(maps, n_clusters, random_state=random_state,
n_init=n_init)
else:
labels = discretize(maps, random_state=random_state)
return labels
class SpectralClustering(BaseEstimator, ClusterMixin):
"""Apply clustering to a projection to the normalized laplacian.
In practice Spectral Clustering is very useful when the structure of
the individual clusters is highly non-convex or more generally when
a measure of the center and spread of the cluster is not a suitable
description of the complete cluster. For instance when clusters are
nested circles on the 2D plan.
If affinity is the adjacency matrix of a graph, this method can be
used to find normalized graph cuts.
When calling ``fit``, an affinity matrix is constructed using either
kernel function such the Gaussian (aka RBF) kernel of the euclidean
distanced ``d(X, X)``::
np.exp(-gamma * d(X,X) ** 2)
or a k-nearest neighbors connectivity matrix.
Alternatively, using ``precomputed``, a user-provided affinity
matrix can be used.
Read more in the :ref:`User Guide <spectral_clustering>`.
Parameters
-----------
n_clusters : integer, optional
The dimension of the projection subspace.
affinity : string, array-like or callable, default 'rbf'
If a string, this may be one of 'nearest_neighbors', 'precomputed',
'rbf' or one of the kernels supported by
`sklearn.metrics.pairwise_kernels`.
Only kernels that produce similarity scores (non-negative values that
increase with similarity) should be used. This property is not checked
by the clustering algorithm.
gamma : float, default=1.0
Scaling factor of RBF, polynomial, exponential chi^2 and
sigmoid affinity kernel. Ignored for
``affinity='nearest_neighbors'``.
degree : float, default=3
Degree of the polynomial kernel. Ignored by other kernels.
coef0 : float, default=1
Zero coefficient for polynomial and sigmoid kernels.
Ignored by other kernels.
n_neighbors : integer
Number of neighbors to use when constructing the affinity matrix using
the nearest neighbors method. Ignored for ``affinity='rbf'``.
eigen_solver : {None, 'arpack', 'lobpcg', or 'amg'}
The eigenvalue decomposition strategy to use. AMG requires pyamg
to be installed. It can be faster on very large, sparse problems,
but may also lead to instabilities
random_state : int seed, RandomState instance, or None (default)
A pseudo random number generator used for the initialization
of the lobpcg eigen vectors decomposition when eigen_solver == 'amg'
and by the K-Means initialization.
n_init : int, optional, default: 10
Number of time the k-means algorithm will be run with different
centroid seeds. The final results will be the best output of
n_init consecutive runs in terms of inertia.
eigen_tol : float, optional, default: 0.0
Stopping criterion for eigendecomposition of the Laplacian matrix
when using arpack eigen_solver.
assign_labels : {'kmeans', 'discretize'}, default: 'kmeans'
The strategy to use to assign labels in the embedding
space. There are two ways to assign labels after the laplacian
embedding. k-means can be applied and is a popular choice. But it can
also be sensitive to initialization. Discretization is another approach
which is less sensitive to random initialization.
kernel_params : dictionary of string to any, optional
Parameters (keyword arguments) and values for kernel passed as
callable object. Ignored by other kernels.
n_jobs : int, optional (default = 1)
The number of parallel jobs to run.
If ``-1``, then the number of jobs is set to the number of CPU cores.
Attributes
----------
affinity_matrix_ : array-like, shape (n_samples, n_samples)
Affinity matrix used for clustering. Available only if after calling
``fit``.
labels_ :
Labels of each point
Notes
-----
If you have an affinity matrix, such as a distance matrix,
for which 0 means identical elements, and high values means
very dissimilar elements, it can be transformed in a
similarity matrix that is well suited for the algorithm by
applying the Gaussian (RBF, heat) kernel::
np.exp(- dist_matrix ** 2 / (2. * delta ** 2))
Where ``delta`` is a free parameter representing the width of the Gaussian
kernel.
Another alternative is to take a symmetric version of the k
nearest neighbors connectivity matrix of the points.
If the pyamg package is installed, it is used: this greatly
speeds up computation.
References
----------
- Normalized cuts and image segmentation, 2000
Jianbo Shi, Jitendra Malik
http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.2324
- A Tutorial on Spectral Clustering, 2007
Ulrike von Luxburg
http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.165.9323
- Multiclass spectral clustering, 2003
Stella X. Yu, Jianbo Shi
http://www1.icsi.berkeley.edu/~stellayu/publication/doc/2003kwayICCV.pdf
"""
def __init__(self, n_clusters=8, eigen_solver=None, random_state=None,
n_init=10, gamma=1., affinity='rbf', n_neighbors=10,
eigen_tol=0.0, assign_labels='kmeans', degree=3, coef0=1,
kernel_params=None, n_jobs=1):
self.n_clusters = n_clusters
self.eigen_solver = eigen_solver
self.random_state = random_state
self.n_init = n_init
self.gamma = gamma
self.affinity = affinity
self.n_neighbors = n_neighbors
self.eigen_tol = eigen_tol
self.assign_labels = assign_labels
self.degree = degree
self.coef0 = coef0
self.kernel_params = kernel_params
self.n_jobs = n_jobs
def fit(self, X, y=None):
"""Creates an affinity matrix for X using the selected affinity,
then applies spectral clustering to this affinity matrix.
Parameters
----------
X : array-like or sparse matrix, shape (n_samples, n_features)
OR, if affinity==`precomputed`, a precomputed affinity
matrix of shape (n_samples, n_samples)
"""
X = check_array(X, accept_sparse=['csr', 'csc', 'coo'],
dtype=np.float64)
if X.shape[0] == X.shape[1] and self.affinity != "precomputed":
warnings.warn("The spectral clustering API has changed. ``fit``"
"now constructs an affinity matrix from data. To use"
" a custom affinity matrix, "
"set ``affinity=precomputed``.")
if self.affinity == 'nearest_neighbors':
connectivity = kneighbors_graph(X, n_neighbors=self.n_neighbors, include_self=True,
n_jobs=self.n_jobs)
self.affinity_matrix_ = 0.5 * (connectivity + connectivity.T)
elif self.affinity == 'precomputed':
self.affinity_matrix_ = X
else:
params = self.kernel_params
if params is None:
params = {}
if not callable(self.affinity):
params['gamma'] = self.gamma
params['degree'] = self.degree
params['coef0'] = self.coef0
self.affinity_matrix_ = pairwise_kernels(X, metric=self.affinity,
filter_params=True,
**params)
random_state = check_random_state(self.random_state)
self.labels_ = spectral_clustering(self.affinity_matrix_,
n_clusters=self.n_clusters,
eigen_solver=self.eigen_solver,
random_state=random_state,
n_init=self.n_init,
eigen_tol=self.eigen_tol,
assign_labels=self.assign_labels)
return self
@property
def _pairwise(self):
return self.affinity == "precomputed" | unknown | codeparrot/codeparrot-clean | ||
"""
Unit tests for the differential global minimization algorithm.
"""
from scipy.optimize import _differentialevolution
from scipy.optimize._differentialevolution import DifferentialEvolutionSolver
from scipy.optimize import differential_evolution
import numpy as np
from scipy.optimize import rosen
from numpy.testing import (assert_equal, TestCase, assert_allclose,
run_module_suite, assert_almost_equal,
assert_string_equal)
class TestDifferentialEvolutionSolver(TestCase):
def setUp(self):
self.old_seterr = np.seterr(invalid='raise')
self.limits = np.array([[0., 0.],
[2., 2.]])
self.bounds = [(0., 2.), (0., 2.)]
self.dummy_solver = DifferentialEvolutionSolver(self.quadratic,
[(0, 100)])
#dummy_solver2 will be used to test mutation strategies
self.dummy_solver2 = DifferentialEvolutionSolver(self.quadratic,
[(0, 1)],
popsize=7,
mutation=0.5)
#create a population that's only 7 members long
#[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7]
population = np.atleast_2d(np.arange(0.1, 0.8, 0.1)).T
self.dummy_solver2.population = population
def tearDown(self):
np.seterr(**self.old_seterr)
def quadratic(self, x):
return x[0]**2
def test__strategy_resolves(self):
#test that the correct mutation function is resolved by
#different requested strategy arguments
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='best1exp')
assert_equal(solver.strategy, 'best1exp')
assert_equal(solver.mutation_func.__name__, '_best1')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='best1bin')
assert_equal(solver.strategy, 'best1bin')
assert_equal(solver.mutation_func.__name__, '_best1')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='rand1bin')
assert_equal(solver.strategy, 'rand1bin')
assert_equal(solver.mutation_func.__name__, '_rand1')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='rand1exp')
assert_equal(solver.strategy, 'rand1exp')
assert_equal(solver.mutation_func.__name__, '_rand1')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='rand2exp')
assert_equal(solver.strategy, 'rand2exp')
assert_equal(solver.mutation_func.__name__, '_rand2')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='best2bin')
assert_equal(solver.strategy, 'best2bin')
assert_equal(solver.mutation_func.__name__, '_best2')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='rand2bin')
assert_equal(solver.strategy, 'rand2bin')
assert_equal(solver.mutation_func.__name__, '_rand2')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='rand2exp')
assert_equal(solver.strategy, 'rand2exp')
assert_equal(solver.mutation_func.__name__, '_rand2')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='randtobest1bin')
assert_equal(solver.strategy, 'randtobest1bin')
assert_equal(solver.mutation_func.__name__, '_randtobest1')
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='randtobest1exp')
assert_equal(solver.strategy, 'randtobest1exp')
assert_equal(solver.mutation_func.__name__, '_randtobest1')
def test__mutate1(self):
#strategies */1/*, i.e. rand/1/bin, best/1/exp, etc.
result = np.array([0.05])
trial = self.dummy_solver2._best1((2, 3, 4, 5, 6))
assert_allclose(trial, result)
result = np.array([0.25])
trial = self.dummy_solver2._rand1((2, 3, 4, 5, 6))
assert_allclose(trial, result)
def test__mutate2(self):
#strategies */2/*, i.e. rand/2/bin, best/2/exp, etc.
#[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7]
result = np.array([-0.1])
trial = self.dummy_solver2._best2((2, 3, 4, 5, 6))
assert_allclose(trial, result)
result = np.array([0.1])
trial = self.dummy_solver2._rand2((2, 3, 4, 5, 6))
assert_allclose(trial, result)
def test__randtobest1(self):
#strategies randtobest/1/*
result = np.array([0.1])
trial = self.dummy_solver2._randtobest1(1, (2, 3, 4, 5, 6))
assert_allclose(trial, result)
def test_can_init_with_dithering(self):
mutation = (0.5, 1)
solver = DifferentialEvolutionSolver(self.quadratic,
self.bounds,
mutation=mutation)
self.assertEqual(solver.dither, list(mutation))
def test_invalid_mutation_values_arent_accepted(self):
func = rosen
mutation = (0.5, 3)
self.assertRaises(ValueError,
DifferentialEvolutionSolver,
func,
self.bounds,
mutation=mutation)
mutation = (-1, 1)
self.assertRaises(ValueError,
DifferentialEvolutionSolver,
func,
self.bounds,
mutation=mutation)
mutation = (0.1, np.nan)
self.assertRaises(ValueError,
DifferentialEvolutionSolver,
func,
self.bounds,
mutation=mutation)
mutation = (0.5)
solver = DifferentialEvolutionSolver(func,
self.bounds,
mutation=mutation)
assert_equal(0.5, solver.scale)
assert_equal(None, solver.dither)
def test__scale_parameters(self):
trial = np.array([0.3])
assert_equal(30, self.dummy_solver._scale_parameters(trial))
# it should also work with the limits reversed
self.dummy_solver.limits = np.array([[100], [0.]])
assert_equal(30, self.dummy_solver._scale_parameters(trial))
def test__unscale_parameters(self):
trial = np.array([30])
assert_equal(0.3, self.dummy_solver._unscale_parameters(trial))
# it should also work with the limits reversed
self.dummy_solver.limits = np.array([[100], [0.]])
assert_equal(0.3, self.dummy_solver._unscale_parameters(trial))
def test__ensure_constraint(self):
trial = np.array([1.1, -100, 2., 300., -0.00001])
self.dummy_solver._ensure_constraint(trial)
assert_equal(np.all(trial <= 1), True)
def test_differential_evolution(self):
# test that the Jmin of DifferentialEvolutionSolver
# is the same as the function evaluation
solver = DifferentialEvolutionSolver(self.quadratic, [(-2, 2)])
result = solver.solve()
assert_almost_equal(result.fun, self.quadratic(result.x))
def test_best_solution_retrieval(self):
# test that the getter property method for the best solution works.
solver = DifferentialEvolutionSolver(self.quadratic, [(-2, 2)])
result = solver.solve()
assert_equal(result.x, solver.x)
def test_callback_terminates(self):
# test that if the callback returns true, then the minimization halts
bounds = [(0, 2), (0, 2)]
def callback(param, convergence=0.):
return True
result = differential_evolution(rosen, bounds, callback=callback)
assert_string_equal(result.message,
'callback function requested stop early '
'by returning True')
def test_args_tuple_is_passed(self):
# test that the args tuple is passed to the cost function properly.
bounds = [(-10, 10)]
args = (1., 2., 3.)
def quadratic(x, *args):
if type(args) != tuple:
raise ValueError('args should be a tuple')
return args[0] + args[1] * x + args[2] * x**2.
result = differential_evolution(quadratic,
bounds,
args=args,
polish=True)
assert_almost_equal(result.fun, 2 / 3.)
def test_init_with_invalid_strategy(self):
#test that passing an invalid strategy raises ValueError
func = rosen
bounds = [(-3, 3)]
self.assertRaises(ValueError,
differential_evolution,
func,
bounds,
strategy='abc')
def test_bounds_checking(self):
#test that the bounds checking works
func = rosen
bounds = [(-3, None)]
self.assertRaises(ValueError,
differential_evolution,
func,
bounds)
bounds = [(-3)]
self.assertRaises(ValueError,
differential_evolution,
func,
bounds)
bounds = [(-3, 3), (3, 4, 5)]
self.assertRaises(ValueError,
differential_evolution,
func,
bounds)
def test_select_samples(self):
#select_samples should return 5 separate random numbers.
limits = np.arange(12., dtype='float64').reshape(2, 6)
bounds = list(zip(limits[0, :], limits[1, :]))
solver = DifferentialEvolutionSolver(None, bounds, popsize=1)
candidate = 0
r1, r2, r3, r4, r5 = solver._select_samples(candidate, 5)
assert_equal(
len(np.unique(np.array([candidate, r1, r2, r3, r4, r5]))), 6)
def test_maxiter_stops_solve(self):
#test that if the maximum number of iterations is exceeded
#the solver stops.
solver = DifferentialEvolutionSolver(rosen, self.bounds, maxiter=1)
result = solver.solve()
assert_equal(result.success, False)
assert_equal(result.message,
'Maximum number of iterations has been exceeded.')
def test_maxfun_stops_solve(self):
#test that if the maximum number of function evaluations is exceeded
#during initialisation the solver stops
solver = DifferentialEvolutionSolver(rosen, self.bounds, maxfun=1)
result = solver.solve()
assert_equal(result.nfev, 2)
assert_equal(result.success, False)
assert_equal(result.message,
'Maximum number of function evaluations has '
'been exceeded.')
#test that if the maximum number of function evaluations is exceeded
#during the actual minimisation, then the solver stops.
#Have to turn polishing off, as this will still occur even if maxfun
#is reached. For popsize=5 and len(bounds)=2, then there are only 10
#function evaluations during initialisation.
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
popsize=5,
polish=False,
maxfun=40)
result = solver.solve()
assert_equal(result.nfev, 41)
assert_equal(result.success, False)
assert_equal(result.message,
'Maximum number of function evaluations has '
'been exceeded.')
def test_quadratic(self):
# test the quadratic function from object
solver = DifferentialEvolutionSolver(self.quadratic,
[(-100, 100)],
tol=0.02)
solver.solve()
def test_quadratic_from_diff_ev(self):
# test the quadratic function from differential_evolution function
differential_evolution(self.quadratic,
[(-100, 100)],
tol=0.02)
def test_seed_gives_repeatability(self):
result = differential_evolution(self.quadratic,
[(-100, 100)],
polish=False,
seed=1,
tol=0.5)
result2 = differential_evolution(self.quadratic,
[(-100, 100)],
polish=False,
seed=1,
tol=0.5)
assert_equal(result.x, result2.x)
def test_exp_runs(self):
# test whether exponential mutation loop runs
solver = DifferentialEvolutionSolver(rosen,
self.bounds,
strategy='best1exp',
maxiter=1)
solver.solve()
def test__make_random_gen(self):
# If seed is None, return the RandomState singleton used by np.random.
# If seed is an int, return a new RandomState instance seeded with seed.
# If seed is already a RandomState instance, return it.
# Otherwise raise ValueError.
rsi = _differentialevolution._make_random_gen(1)
assert_equal(type(rsi), np.random.RandomState)
rsi = _differentialevolution._make_random_gen(rsi)
assert_equal(type(rsi), np.random.RandomState)
rsi = _differentialevolution._make_random_gen(None)
assert_equal(type(rsi), np.random.RandomState)
self.assertRaises(
ValueError, _differentialevolution._make_random_gen, 'a')
def test_gh_4511_regression(self):
# This modification of the differential evolution docstring example
# uses a custom popsize that had triggered an off-by-one error.
# Because we do not care about solving the optimization problem in
# this test, we use maxiter=1 to reduce the testing time.
bounds = [(-5, 5), (-5, 5)]
result = differential_evolution(rosen, bounds, popsize=1815, maxiter=1)
if __name__ == '__main__':
run_module_suite() | unknown | codeparrot/codeparrot-clean | ||
# Copyright 2013 Viewfinder Inc. All Rights Reserved.
"""Viewfinder base operation.
ViewfinderOperation is the base class for all other Viewfinder operations. It contains code
that is common across at least two derived operations.
"""
__authors__ = ['andy@emailscrubbed.com (Andy Kimball)']
from copy import deepcopy
from tornado import gen
from viewfinder.backend.base.exceptions import InvalidRequestError, PermissionError
from viewfinder.backend.db.contact import Contact
from viewfinder.backend.db.db_client import DBKey
from viewfinder.backend.db.episode import Episode
from viewfinder.backend.db.follower import Follower
from viewfinder.backend.db.identity import Identity
from viewfinder.backend.db.operation import Operation
from viewfinder.backend.db.post import Post
from viewfinder.backend.db.user import User
class ViewfinderOperation(object):
"""Base class for other Viewfinder operations, containing common code."""
def __init__(self, client):
self._client = client
self._op = Operation.GetCurrent()
@classmethod
@gen.coroutine
def _CheckEpisodePostAccess(cls, action, client, user_id, ep_ph_ids_list):
"""Ensures that given user has access to the set of episodes and photos in "ep_ph_ids_list",
which is a list of (episode_id, photo_ids) tuples.
Returns list of (episode, posts) tuples that corresponds to "ep_ph_ids_list".
"""
# Gather db keys for all source episodes and posts, and check for duplicate episodes and photos.
episode_keys = []
post_keys = []
for episode_id, photo_ids in ep_ph_ids_list:
episode_keys.append(DBKey(episode_id, None))
for photo_id in photo_ids:
post_keys.append(DBKey(episode_id, photo_id))
# Query for all episodes and posts in parallel and in batches.
episodes, posts = yield [gen.Task(Episode.BatchQuery,
client,
episode_keys,
None,
must_exist=False),
gen.Task(Post.BatchQuery,
client,
post_keys,
None,
must_exist=False)]
# Check that user has ability to access all source episodes and posts.
ep_posts_list = []
posts_iter = iter(posts)
for (episode_id, photo_ids), episode in zip(ep_ph_ids_list, episodes):
if episode is None:
raise InvalidRequestError('Episode "%s" does not exist.' % episode_id)
posts_list = []
for photo_id in photo_ids:
post = next(posts_iter)
if post is None:
raise InvalidRequestError('Photo "%s" does not exist or is not in episode "%s".' %
(photo_id, episode_id))
# Do not raise error if removing a photo that has already been unshared or removed.
if action != 'remove':
if post.IsUnshared():
raise PermissionError('Cannot %s photo "%s", because it was unshared.' % (action, photo_id))
if post.IsRemoved():
raise PermissionError('Cannot %s photo "%s", because it was removed.' % (action, photo_id))
posts_list.append(post)
ep_posts_list.append((episode, posts_list))
# Query for followers of all unique source viewpoints in parallel and in a batch.
follower_keys = {episode.viewpoint_id: DBKey(user_id, episode.viewpoint_id) for episode in episodes}
followers = yield gen.Task(Follower.BatchQuery, client, follower_keys.values(), None, must_exist=False)
# Get set of all viewpoints that are accessible to this user.
allowed_viewpoint_ids = set(follower.viewpoint_id for follower in followers
if follower is not None and follower.CanViewContent())
# Check access permission to the source viewpoints.
for episode in episodes:
if episode.viewpoint_id not in allowed_viewpoint_ids:
raise PermissionError('User %d does not have permission to %s episode "%s".' %
(user_id, action, episode.episode_id))
raise gen.Return(ep_posts_list)
@classmethod
@gen.coroutine
def _CheckCopySources(cls, action, client, user_id, source_ep_dicts):
"""Ensures that the sharer or saver has access to the source episodes and that the source
photos are part of the source episodes. Caller is expected to check permission to add to
the given viewpoint.
Returns a list of the source episodes and posts in the form of (episode, posts) tuples.
"""
# Gather list of (episode_id, photo_ids) tuples and check for duplicate posts.
unique_keys = set()
ep_ph_ids_list = []
for ep_dict in source_ep_dicts:
ph_ids = []
for photo_id in ep_dict['photo_ids']:
db_key = (ep_dict['new_episode_id'], photo_id)
if db_key in unique_keys:
raise InvalidRequestError('Photo "%s" cannot be %sd into episode "%s" more than once in same request.' %
(photo_id, action, ep_dict['new_episode_id']))
unique_keys.add(db_key)
ph_ids.append(photo_id)
ep_ph_ids_list.append((ep_dict['existing_episode_id'], ph_ids))
ep_posts_list = yield ViewfinderOperation._CheckEpisodePostAccess(action, client, user_id, ep_ph_ids_list)
raise gen.Return(ep_posts_list)
@classmethod
@gen.coroutine
def _AllocateTargetEpisodeIds(self, client, user_id, device_id, target_viewpoint_id, source_ep_ids):
"""For each episode listed in "source_ep_ids", determines if a child episode already
exists in the given viewpoint. If not, allocates a new episode id using the user's asset
id allocator. The same timestamp used to create the source episode id is used to create
the target episode id.
Returns the list of target episodes ids, including both existing ids and allocated ids.
"""
# First check whether each episode has already been shared/saved into the target viewpoint.
tasks = []
for source_ep_id in source_ep_ids:
query_expr = ('episode.parent_ep_id={id}', {'id': source_ep_id})
tasks.append(gen.Task(Episode.IndexQuery, client, query_expr, None))
target_ep_ids = []
allocate_ids_count = 0
target_episodes_list = yield tasks
for target_episodes in target_episodes_list:
found_match = False
for episode in target_episodes:
if episode.viewpoint_id == target_viewpoint_id:
target_ep_ids.append(episode.episode_id)
found_match = True
break
# If no matching child episode, then need to allocate an episode id.
if not found_match:
target_ep_ids.append(None)
allocate_ids_count += 1
if allocate_ids_count > 0:
# Allocate ids for any episodes which do not yet exist, and merge them into target_ep_ids.
id = yield gen.Task(User.AllocateAssetIds, client, user_id, allocate_ids_count)
for i, source_ep_id in enumerate(source_ep_ids):
if target_ep_ids[i] is None:
timestamp, _, _ = source_ep_id = Episode.DeconstructEpisodeId(source_ep_id)
target_ep_ids[i] = Episode.ConstructEpisodeId(timestamp, device_id, id)
id += 1
raise gen.Return(target_ep_ids)
@classmethod
def _CreateCopyTargetDicts(cls, timestamp, user_id, target_viewpoint_id, source_ep_posts_list, target_ep_ids):
"""Creates list of dicts which will be used to create episodes that are the target of a
share or save operation.
"""
new_ep_dict_list = []
for (source_episode, posts), target_ep_id in zip(source_ep_posts_list, target_ep_ids):
new_ep_dict = {'episode_id': target_ep_id,
'parent_ep_id': source_episode.episode_id,
'user_id': user_id,
'viewpoint_id': target_viewpoint_id,
'timestamp': source_episode.timestamp,
'publish_timestamp': timestamp,
'location': source_episode.location,
'placemark': source_episode.placemark,
'photo_ids': [post.photo_id for post in posts]}
new_ep_dict_list.append(new_ep_dict)
return new_ep_dict_list
@classmethod
@gen.coroutine
def _CheckCopyTargets(cls, action, client, user_id, viewpoint_id, target_ep_dicts):
"""Compiles a list of target episode and post ids that do not exist or are removed. These
episodes and posts will not be copied as part of the operation.
Returns the set of target episode and post ids that will be (re)created by the caller.
"""
# Gather db keys for all target episodes and posts.
episode_keys = []
post_keys = []
for ep_dict in target_ep_dicts:
episode_keys.append(DBKey(ep_dict['episode_id'], None))
for photo_id in ep_dict['photo_ids']:
post_keys.append(DBKey(ep_dict['episode_id'], photo_id))
# Query for all episodes and posts in parallel and in batches.
episodes, posts = yield [gen.Task(Episode.BatchQuery,
client,
episode_keys,
None,
must_exist=False),
gen.Task(Post.BatchQuery,
client,
post_keys,
None,
must_exist=False)]
# If a viewable post already exists, don't add it to the set to copy.
new_ids = set()
post_iter = iter(posts)
for ep_dict, episode in zip(target_ep_dicts, episodes):
if episode is None:
# Add the episode id to the set to copy.
new_ids.add(ep_dict['episode_id'])
else:
# Only owner user should get this far, since we check that new episode id contains the user's device id.
assert episode.user_id == user_id, (episode, user_id)
# Enforce sharing *tree* - no sharing acyclic graph allowed!
if episode.parent_ep_id != ep_dict['parent_ep_id']:
raise InvalidRequestError('Cannot %s to episode "%s". It was created from a different parent episode.' %
(action, ep_dict['episode_id']))
# Cannot share into episodes which are not in the target viewpoint.
if episode.viewpoint_id != viewpoint_id:
raise InvalidRequestError('Cannot %s to episode "%s". It is not in viewpoint "%s".' %
(action, episode.episode_id, viewpoint_id))
for photo_id in ep_dict['photo_ids']:
post = next(post_iter)
# If the post does not exist or is removed, add it to the new list.
if post is None or post.IsRemoved():
new_ids.add(Post.ConstructPostId(ep_dict['episode_id'], photo_id))
raise gen.Return(new_ids)
@gen.coroutine
def _CreateNewEpisodesAndPosts(self, new_ep_dicts, new_ids):
"""Creates new episodes and posts within those episodes based on a list returned by
_CheckCopySources.
If an episode or post id does not exist in "new_ids", it is not created. The "new_ids"
set is created by _CheckCopyTargets.
"""
tasks = []
for new_ep_dict in deepcopy(new_ep_dicts):
ep_id = new_ep_dict['episode_id']
ph_ids = [ph_id for ph_id in new_ep_dict.pop('photo_ids')
if Post.ConstructPostId(ep_id, ph_id) in new_ids]
if ep_id in new_ids:
tasks.append(gen.Task(Episode.CreateNew, self._client, **new_ep_dict))
for ph_id in ph_ids:
post = Post.CreateFromKeywords(episode_id=ep_id, photo_id=ph_id)
post.labels.remove(Post.UNSHARED)
post.labels.remove(Post.REMOVED)
tasks.append(gen.Task(post.Update, self._client))
yield tasks
@classmethod
@gen.coroutine
def _GetAllContactsWithDedup(cls, client, user_id):
"""Query for all contacts and split into a dictionary of deduped contacts which is keyed by contact_id
and a list of contacts that can be deleted because they're unnecessary.
Returns: tuple of (retained_contacts_dict, contacts_to_delete_list)
"""
contacts_to_delete = []
contacts_to_retain = dict()
# Query all contacts for this user.
# Set query limit to be max that we expect multiplied by 2 to allow for some duplicates (there shouldn't be many).
existing_contacts = yield gen.Task(Contact.RangeQuery,
client,
hash_key=user_id,
range_desc=None,
limit=Contact.MAX_CONTACTS_LIMIT * 2,
col_names=['contact_id', 'labels', 'contact_source'],
scan_forward=True)
for existing_contact in existing_contacts:
older_existing_contact = contacts_to_retain.pop(existing_contact.contact_id, None)
if older_existing_contact is not None:
contacts_to_delete.append(older_existing_contact)
contacts_to_retain[existing_contact.contact_id] = existing_contact
raise gen.Return((contacts_to_retain, contacts_to_delete))
@classmethod
def _GetRevivableFollowers(cls, followers):
"""Get subset of the given followers that have been removed but are still revivable."""
return [follower.user_id for follower in followers
if follower.IsRemoved() and not follower.IsUnrevivable()]
@gen.coroutine
def _ResolveContactIds(self, contact_dicts):
"""Examines each contact in "contact_dicts" (in the CONTACT_METADATA format). Returns a
list of the same length containing the (True, user_id, webapp_dev_id) of the contact if
it is already a Viewfinder user, or allocates new user and web device ids, and returns the
tuple (False, user_id, webapp_dev_id).
Raises an InvalidRequestError if any of the user ids do not correspond to real users.
"""
# Get identity objects for all contacts for which no user_id is given.
identity_keys = [DBKey(contact_dict['identity'], None)
for contact_dict in contact_dicts if 'user_id' not in contact_dict]
identities = yield gen.Task(Identity.BatchQuery, self._client, identity_keys, None, must_exist=False)
# Get user objects for all contacts with a user_id given, or if identity is already bound.
user_keys = []
ident_iter = iter(identities)
for contact_dict in contact_dicts:
if 'user_id' in contact_dict:
user_keys.append(DBKey(contact_dict['user_id'], None))
else:
identity = next(ident_iter)
if identity is not None and identity.user_id is not None:
user_keys.append(DBKey(identity.user_id, None))
users = yield gen.Task(User.BatchQuery, self._client, user_keys, None, must_exist=False)
# Construct result tuples; if a user does not exist, allocate a user_id and webapp_dev_id.
results = []
ident_iter = iter(identities)
user_iter = iter(users)
for contact_dict in contact_dicts:
if 'user_id' not in contact_dict:
identity = next(ident_iter)
if identity is None or identity.user_id is None:
# User doesn't yet exist, so allocate new user and web device ids.
user_id, webapp_dev_id = yield User.AllocateUserAndWebDeviceIds(self._client)
results.append((False, user_id, webapp_dev_id))
continue
user = next(user_iter)
if user is None:
assert 'user_id' in contact_dict, contact_dict
raise InvalidRequestError('A user with id %d cannot be found.' % contact_dict['user_id'])
# User already exists.
results.append((True, user.user_id, user.webapp_dev_id))
raise gen.Return(results)
@gen.coroutine
def _ResolveContacts(self, contact_dicts, contact_ids, reason=None):
"""Creates a prospective user account for any contacts that are not yet Viewfinder users.
The "contact_ids" list should have been previously obtained by the caller via a call to
_ResolveContactIds, and items in it must correspond to "contact_dicts".
If specified, the "reason" string is passed to the CreateProspective op. This describes what caused the user
to be created (see db/analytics.py for payload details).
"""
for contact_dict, (user_exists, user_id, webapp_dev_id) in zip(contact_dicts, contact_ids):
if not user_exists:
# Check if previous invocation of this operation already created the user.
user = yield gen.Task(User.Query, self._client, user_id, None, must_exist=False)
if user is None:
# Create prospective user.
request = {'user_id': user_id,
'webapp_dev_id': webapp_dev_id,
'identity_key': contact_dict['identity'],
'reason': reason}
yield Operation.CreateNested(self._client, 'CreateProspectiveOperation.Execute', request) | unknown | codeparrot/codeparrot-clean | ||
#
# Copyright (C) 2019 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU General Public License v.2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY expressed or implied, including the implied warranties 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. Any Red Hat trademarks that are incorporated in the
# source code or documentation are not subject to the GNU General Public
# License and may only be used or replicated with the express permission of
# Red Hat, Inc.
#
# Red Hat Author(s): Radek Vykydal <rvykydal@redhat.com>
#
import unittest
from unittest.mock import Mock, patch
from textwrap import dedent
from pyanaconda.modules.network.nm_client import get_ports_from_connections, \
get_dracut_arguments_from_connection, get_config_file_connection_of_device, \
get_kickstart_network_data, NM_BRIDGE_DUMPED_SETTINGS_DEFAULTS
from pyanaconda.core.kickstart.commands import NetworkData
from pyanaconda.modules.network.constants import NM_CONNECTION_TYPE_WIFI, \
NM_CONNECTION_TYPE_ETHERNET, NM_CONNECTION_TYPE_VLAN, NM_CONNECTION_TYPE_BOND, \
NM_CONNECTION_TYPE_TEAM, NM_CONNECTION_TYPE_BRIDGE, NM_CONNECTION_TYPE_INFINIBAND
import gi
gi.require_version("NM", "1.0")
from gi.repository import NM
class NMClientTestCase(unittest.TestCase):
def setUp(self):
pass
def tearDown(self):
pass
def _get_mock_objects_from_attrs(self, obj_attrs):
objects = []
for attrs in obj_attrs:
obj = Mock()
obj.configure_mock(**attrs)
objects.append(obj)
return objects
@patch("pyanaconda.modules.network.nm_client.get_iface_from_connection")
def test_get_ports_from_connections(self, get_iface_from_connection):
nm_client = Mock()
ENS3_UUID = "50f1ddc3-cfa5-441d-8afe-729213f5ca92"
ENS7_UUID = "d9e90dce-93bb-4c30-be16-8f4e77744742"
ENS8_UUID = "12740d58-c17f-4e8a-a449-2affc6298853"
ENS11_UUID = "1ea657e7-98a5-4b1a-bb1e-e1763f0140a9"
TEAM1_UUID = "39ba5d2f-90d1-4bc0-b212-57f643aa7ec1"
cons_specs = [
{
"get_setting_connection.return_value.get_slave_type.return_value": "",
"get_setting_connection.return_value.get_master.return_value": "",
"get_id.return_value": "ens3",
"get_uuid.return_value": ENS3_UUID,
},
{
"get_setting_connection.return_value.get_slave_type.return_value": "team",
"get_setting_connection.return_value.get_master.return_value": "team0",
"get_id.return_value": "team_0_slave_1",
"get_uuid.return_value": ENS7_UUID,
},
{
"get_setting_connection.return_value.get_slave_type.return_value": "team",
"get_setting_connection.return_value.get_master.return_value": "team0",
"get_id.return_value": "team_0_slave_2",
"get_uuid.return_value": ENS8_UUID,
},
{
"get_setting_connection.return_value.get_slave_type.return_value": "team",
"get_setting_connection.return_value.get_master.return_value": TEAM1_UUID,
"get_id.return_value": "ens11",
"get_uuid.return_value": ENS11_UUID,
},
]
cons = self._get_mock_objects_from_attrs(cons_specs)
nm_client.get_connections.return_value = cons
uuid_to_iface = {
ENS3_UUID: "ens3",
ENS7_UUID: "ens7",
ENS8_UUID: "ens8",
ENS11_UUID: "ens11",
}
get_iface_from_connection.side_effect = lambda nm_client, uuid: uuid_to_iface[uuid]
self.assertSetEqual(
get_ports_from_connections(nm_client, "team", []),
set()
)
self.assertSetEqual(
get_ports_from_connections(nm_client, "bridge", ["bridge0"]),
set()
)
self.assertSetEqual(
get_ports_from_connections(nm_client, "team", ["team2"]),
set()
)
# Matching of any specification is enough
self.assertSetEqual(
get_ports_from_connections(nm_client, "team", ["team_nonexisting", TEAM1_UUID]),
set([("ens11", "ens11", ENS11_UUID)])
)
self.assertSetEqual(
get_ports_from_connections(nm_client, "team", ["team0"]),
set([("team_0_slave_1", "ens7", ENS7_UUID), ("team_0_slave_2", "ens8", ENS8_UUID)])
)
self.assertSetEqual(
get_ports_from_connections(nm_client, "team", [TEAM1_UUID]),
set([("ens11", "ens11", ENS11_UUID)])
)
@patch("pyanaconda.modules.network.nm_client.get_connections_available_for_iface")
@patch("pyanaconda.modules.network.nm_client.get_ports_from_connections")
@patch("pyanaconda.modules.network.nm_client.is_s390")
def test_get_dracut_arguments_from_connection(self, is_s390, get_ports_from_connections_mock,
get_connections_available_for_iface):
nm_client = Mock()
CON_UUID = "44755f4c-ee12-45b4-ba5e-e10f83de51af"
# ibft connection
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_wired.return_value": None,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "", "10.34.39.2",
"my.host.name", ibft=True),
set(["rd.iscsi.ibft"])
)
# ibft connection on s390 with missing s390 options
is_s390.return_value = True
wired_setting_attrs = {
"get_s390_nettype.return_value": "",
"get_s390_subchannels.return_value": "",
"get_property.return_value": {},
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_wired.return_value": wired_setting,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "", "10.34.39.2",
"my.host.name", ibft=True),
set(["rd.iscsi.ibft"])
)
# ibft connection on s390 with s390 options
is_s390.return_value = True
wired_setting_attrs = {
"get_s390_nettype.return_value": "qeth",
"get_s390_subchannels.return_value": "0.0.0900,0.0.0901,0.0.0902",
"get_property.return_value": {"layer2": "1",
"portname": "FOOBAR",
"portno": "0"},
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_wired.return_value": wired_setting,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "", "10.34.39.2",
"my.host.name", ibft=True),
set(["rd.iscsi.ibft",
"rd.znet=qeth,0.0.0900,0.0.0901,0.0.0902,layer2=1,portname=FOOBAR,portno=0"])
)
# IPv4 config auto, IPv6 config auto, mac address specified
is_s390.return_value = False
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
ip6_config_attrs = {
"get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
}
ip6_config = self._get_mock_objects_from_attrs([ip6_config_attrs])[0]
wired_setting_attrs = {
"get_mac_address.return_value": "11:11:11:11:11:AA",
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_ip6_config.return_value": ip6_config,
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
# IPv4 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens3", "10.34.39.2",
"my.host.name", ibft=False),
set(["ip=ens3:dhcp",
"ifname=ens3:11:11:11:11:11:aa"])
)
# IPv6 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens3", "2001::cafe:beef",
"my.host.name", ibft=False),
set(["ip=ens3:auto6",
"ifname=ens3:11:11:11:11:11:aa"])
)
# IPv4 config static, mac address not specified, s390
is_s390.return_value = True
address_attrs = {
"get_address.return_value": "10.34.39.44",
"get_prefix.return_value": 24,
}
address = self._get_mock_objects_from_attrs([address_attrs])[0]
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_MANUAL,
"get_num_addresses.return_value": 1,
"get_address.return_value": address,
"get_gateway.return_value": "10.34.39.2",
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
wired_setting_attrs = {
"get_mac_address.return_value": None,
"get_s390_nettype.return_value": "qeth",
"get_s390_subchannels.return_value": "0.0.0900,0.0.0901,0.0.0902",
"get_property.return_value": {"layer2": "1",
"portname": "FOOBAR",
"portno": "0"},
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens4", "10.40.49.4",
"my.host.name", ibft=False),
set(["ip=10.34.39.44::10.34.39.2:255.255.255.0:my.host.name:ens4:none",
"rd.znet=qeth,0.0.0900,0.0.0901,0.0.0902,layer2=1,portname=FOOBAR,portno=0"])
)
# IPv6 config dhcp
is_s390.return_value = False
ip6_config_attrs = {
"get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_DHCP,
}
ip6_config = self._get_mock_objects_from_attrs([ip6_config_attrs])[0]
wired_setting_attrs = {
"get_mac_address.return_value": None,
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip6_config.return_value": ip6_config,
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens3", "2001::cafe:beef",
"my.host.name", ibft=False),
set(["ip=ens3:dhcp6"])
)
# IPv6 config manual
is_s390.return_value = False
address_attrs = {
"get_address.return_value": "2001::5",
"get_prefix.return_value": 64,
}
address = self._get_mock_objects_from_attrs([address_attrs])[0]
ip6_config_attrs = {
"get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_MANUAL,
"get_num_addresses.return_value": 1,
"get_address.return_value": address,
"get_gateway.return_value": "2001::1",
}
ip6_config = self._get_mock_objects_from_attrs([ip6_config_attrs])[0]
wired_setting_attrs = {
"get_mac_address.return_value": None,
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip6_config.return_value": ip6_config,
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens3", "2001::cafe:beef",
"my.host.name", ibft=False),
set(["ip=[2001::5/64]::[2001::1]::my.host.name:ens3:none"])
)
# IPv4 config auto, team
is_s390.return_value = False
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
cons_attrs = [
# team controller
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_wired.return_value": None,
"get_connection_type.return_value": NM_CONNECTION_TYPE_TEAM,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
get_ports_from_connections_mock.return_value = set([
("ens7", "ens7", "6a6b4586-1e4c-451f-87fa-09b059ceba3d"),
("ens8", "ens8", "ac4a0747-d1ea-4119-903b-18f3adad9116"),
])
# IPv4 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "team0", "10.34.39.2",
"my.host.name", ibft=False),
set(["ip=team0:dhcp",
"team=team0:ens7,ens8"])
)
# IPv4 config auto, vlan, s390, parent specified by interface name
is_s390.return_value = True
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
setting_vlan_attrs = {
"get_parent.return_value": "ens11",
}
setting_vlan = self._get_mock_objects_from_attrs([setting_vlan_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_wired.return_value": None,
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_vlan.return_value": setting_vlan,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
# Mock parent connection
wired_setting_attrs = {
"get_mac_address.return_value": None,
"get_s390_nettype.return_value": "qeth",
"get_s390_subchannels.return_value": "0.0.0900,0.0.0901,0.0.0902",
"get_property.return_value": {"layer2": "1",
"portname": "FOOBAR",
"portno": "0"},
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
parent_cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
parent_cons = self._get_mock_objects_from_attrs(parent_cons_attrs)
get_connections_available_for_iface.return_value = parent_cons
# IPv4 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens11.111", "10.34.39.2",
"my.host.name", ibft=False),
set(["ip=ens11.111:dhcp",
"vlan=ens11.111:ens11",
"rd.znet=qeth,0.0.0900,0.0.0901,0.0.0902,layer2=1,portname=FOOBAR,portno=0"])
)
# IPv4 config auto, vlan, parent specified by connection uuid
VLAN_PARENT_UUID = "5e6ead30-d133-4c8c-ba59-818c5ced6a7c"
is_s390.return_value = False
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
setting_vlan_attrs = {
"get_parent.return_value": VLAN_PARENT_UUID,
}
setting_vlan = self._get_mock_objects_from_attrs([setting_vlan_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_wired.return_value": None,
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_vlan.return_value": setting_vlan,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
# Mock parent connection
parent_cons_attrs = [
{
"get_interface_name.return_value": "ens12",
},
]
parent_con = self._get_mock_objects_from_attrs(parent_cons_attrs)[0]
nm_client.get_connection_by_uuid.return_value = parent_con
# IPv4 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens12.111", "10.34.39.2",
"my.host.name", ibft=False),
set(["ip=ens12.111:dhcp",
"vlan=ens12.111:ens12"])
)
# IPv4 config auto, vlan, parent specified by connection uuid, s390 (we
# need the parent connection in s390 case, not only parent iface)
is_s390.return_value = True
ip4_config_attrs = {
"get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
}
ip4_config = self._get_mock_objects_from_attrs([ip4_config_attrs])[0]
setting_vlan_attrs = {
"get_parent.return_value": "ens13",
}
setting_vlan = self._get_mock_objects_from_attrs([setting_vlan_attrs])[0]
cons_attrs = [
{
"get_uuid.return_value": CON_UUID,
"get_setting_ip4_config.return_value": ip4_config,
"get_setting_wired.return_value": None,
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_vlan.return_value": setting_vlan,
},
]
con = self._get_mock_objects_from_attrs(cons_attrs)[0]
# Mock parent connection
wired_setting_attrs = {
"get_mac_address.return_value": None,
"get_s390_nettype.return_value": "qeth",
"get_s390_subchannels.return_value": "0.0.0900,0.0.0901,0.0.0902",
"get_property.return_value": {"layer2": "1",
"portname": "FOOBAR",
"portno": "0"},
}
wired_setting = self._get_mock_objects_from_attrs([wired_setting_attrs])[0]
parent_cons_attrs = [
{
# On s390 with net.ifnames=0 the iface is identified by NAME, not DEVICE
"get_interface_name.return_value": None,
"get_id.return_value": "ens13",
"get_setting_wired.return_value": wired_setting,
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
},
]
parent_cons = self._get_mock_objects_from_attrs(parent_cons_attrs)
nm_client.get_connection_by_uuid.return_value = parent_con
# IPv4 target
self.assertSetEqual(
get_dracut_arguments_from_connection(nm_client, con, "ens13.111", "10.34.39.2",
"my.host.name", ibft=False),
set(["ip=ens13.111:dhcp",
"vlan=ens13.111:ens13",
"rd.znet=qeth,0.0.0900,0.0.0901,0.0.0902,layer2=1,portname=FOOBAR,portno=0"])
)
@patch("pyanaconda.modules.network.nm_client.get_vlan_interface_name_from_connection")
@patch("pyanaconda.modules.network.nm_client.is_config_file_for_system")
@patch("pyanaconda.modules.network.nm_client.get_iface_from_hwaddr")
@patch("pyanaconda.modules.network.nm_client.is_s390")
def test_get_config_file_connection_of_device(self, is_s390, get_iface_from_hwaddr,
is_config_file_for_system,
get_vlan_interface_name_from_connection):
nm_client = Mock()
ENS3_UUID = "50f1ddc3-cfa5-441d-8afe-729213f5ca92"
ENS3_UUID2 = "50f1ddc3-cfa5-441d-8afe-729213f5ca93"
ENS7_UUID = "d9e90dce-93bb-4c30-be16-8f4e77744742"
ENS7_SLAVE_UUID = "d9e90dce-93bb-4c30-be16-8f4e77744743"
ENS8_UUID = "12740d58-c17f-4e8a-a449-2affc6298853"
ENS9_SLAVE_UUID = "12740d58-c17f-4e8a-a449-2affc6298854"
ENS11_UUID = "1ea657e7-98a5-4b1a-bb1e-e1763f0140a9"
ENS12_UUID = "1ea657e7-98a5-4b1a-bb1e-e1763f0140aa"
VLAN222_UUID = "5f825617-33cb-4230-8a74-9149d51916fb"
VLAN223_UUID = "5f825617-33cb-4230-8a74-9149d51916fc"
TEAM0_UUID = "b7a1ae80-3acb-4390-b4b6-0e505c897576"
TEAM1_UUID = "b7a1ae80-3acb-4390-b4b6-0e505c897577"
BOND0_UUID = "19b938fe-c1b3-4742-86b7-9e5339ebf7da"
BOND1_UUID = "19b938fe-c1b3-4742-86b7-9e5339ebf7db"
BRIDGE0_UUID = "20d375f0-53c7-44a0-ad30-304649bf2c15"
BRIDGE1_UUID = "20d375f0-53c7-44a0-ad30-304649bf2c16"
ENS33_UUID = "cc067154-d3b9-4208-b0c9-8262940d2380"
ENS33_UUID2 = "cc067154-d3b9-4208-b0c9-8262940d2381"
HWADDR_ENS3 = "52:54:00:0c:77:e4"
HWADDR_ENS8 = "52:54:00:35:BF:0F"
HWADDR_ENS11 = "52:54:00:0c:77:e3"
cons_specs = [
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_interface_name.return_value": "ens3",
"get_setting_wired.return_value.get_mac_address.return_value": None,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": ENS3_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_wired.return_value.get_mac_address.return_value": HWADDR_ENS3,
"get_setting_connection.return_value.get_master.return_value": None,
"get_interface_name.return_value": None,
"get_uuid.return_value": ENS3_UUID2,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_interface_name.return_value": "ens7",
"get_setting_wired.return_value.get_mac_address.return_value": None,
"get_setting_connection.return_value.get_master.return_value": "team0",
"get_uuid.return_value": ENS7_SLAVE_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_interface_name.return_value": "ens7",
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mac_address.return_value": None,
"get_uuid.return_value": ENS7_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mac_address.return_value": HWADDR_ENS8,
"get_interface_name.return_value": None,
"get_uuid.return_value": ENS8_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_interface_name.return_value": "ens9",
"get_setting_wired.return_value.get_mac_address.return_value": None,
"get_setting_connection.return_value.get_master.return_value": "team0",
"get_uuid.return_value": ENS9_SLAVE_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mac_address.return_value": HWADDR_ENS11,
"get_interface_name.return_value": None,
"get_uuid.return_value": ENS11_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mac_address.return_value": None,
"get_interface_name.return_value": None,
"get_id.return_value": "ens12",
"get_uuid.return_value": ENS12_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_interface_name.return_value": "vlan222",
"get_uuid.return_value": VLAN222_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_interface_name.return_value": "vlan223",
"get_uuid.return_value": VLAN223_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BOND,
"get_interface_name.return_value": "bond0",
"get_uuid.return_value": BOND0_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BOND,
"get_interface_name.return_value": "bond1",
"get_uuid.return_value": BOND1_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BRIDGE,
"get_interface_name.return_value": "bridge0",
"get_uuid.return_value": BRIDGE0_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BRIDGE,
"get_interface_name.return_value": "bridge1",
"get_uuid.return_value": BRIDGE1_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_TEAM,
"get_interface_name.return_value": "team0",
"get_uuid.return_value": TEAM0_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_TEAM,
"get_interface_name.return_value": "team1",
"get_uuid.return_value": TEAM1_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_INFINIBAND,
"get_interface_name.return_value": "ens33",
"get_uuid.return_value": ENS33_UUID,
},
{
"get_connection_type.return_value": NM_CONNECTION_TYPE_INFINIBAND,
"get_interface_name.return_value": "ens33",
"get_uuid.return_value": ENS33_UUID2,
},
]
cons = self._get_mock_objects_from_attrs(cons_specs)
nm_client.get_connections.return_value = cons
# No config files
is_config_file_for_system.return_value = False
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens3"),
""
)
is_config_file_for_system.return_value = True
is_s390.return_value = False
# ethernet
# interface name has precedence
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens3"),
ENS3_UUID
)
# port conections are ignored
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens7"),
ENS7_UUID
)
# port conections are ignored
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens9"),
""
)
# config bound to hwaddr
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens8", device_hwaddr=HWADDR_ENS8),
ENS8_UUID
)
# config bound to hwaddr, no hint
hwaddr_to_iface = {
HWADDR_ENS3: "ens3",
HWADDR_ENS8: "ens8",
HWADDR_ENS11: "ens11",
}
get_iface_from_hwaddr.side_effect = lambda nm_client, hwaddr: hwaddr_to_iface[hwaddr]
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens11"),
ENS11_UUID
)
# config not bound
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens12"),
""
)
# config not bound, use id (s390)
is_s390.return_value = True
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens12"),
ENS12_UUID
)
is_s390.return_value = False
# vlan
get_vlan_interface_name_from_connection.return_value = "vlan222"
self.assertEqual(
get_config_file_connection_of_device(nm_client, "vlan222"),
VLAN222_UUID
)
# team
self.assertEqual(
get_config_file_connection_of_device(nm_client, "team0"),
TEAM0_UUID
)
# bond
self.assertEqual(
get_config_file_connection_of_device(nm_client, "bond0"),
BOND0_UUID
)
# bridge
self.assertEqual(
get_config_file_connection_of_device(nm_client, "bridge0"),
BRIDGE0_UUID
)
# infiniband, first wins
self.assertEqual(
get_config_file_connection_of_device(nm_client, "ens33"),
ENS33_UUID
)
@patch("pyanaconda.modules.network.nm_client.get_team_port_config_from_connection")
@patch("pyanaconda.modules.network.nm_client.get_ports_from_connections")
@patch("pyanaconda.modules.network.nm_client.get_iface_from_connection")
def test_get_kicstart_network_data(self, get_iface_from_connection,
get_ports_from_connections_mock,
get_team_port_config_from_connection):
"""Test get_kickstart_network_data."""
nm_client = Mock()
ENS3_UUID = "50f1ddc3-cfa5-441d-8afe-729213f5ca92"
ENS7_UUID = "d9e90dce-93bb-4c30-be16-8f4e77744742"
ENS8_UUID = "12740d58-c17f-4e8a-a449-2affc6298853"
ENS11_UUID = "1ea657e7-98a5-4b1a-bb1e-e1763f0140a9"
BOND0_UUID = "1ea657e7-98a5-4b1a-bb1e-e1763f0140ab"
BRIDGE0_UUID = "20d375f0-53c7-44a0-ad30-304649bf2c15"
BRIDGE1_UUID = "faf37604-519a-4f70-878a-b85c66609606"
TEAM0_UUID = "20d375f0-53c7-44a0-ad30-304649bf2c16"
VLAN223_UUID = "5f825617-33cb-4230-8a74-9149d51916fc"
uuid_to_iface = {
ENS3_UUID: "ens3",
ENS7_UUID: "ens7",
ENS8_UUID: "ens8",
ENS11_UUID: "ens11",
BOND0_UUID: "bond0",
BRIDGE0_UUID: "bridge0",
BRIDGE1_UUID: "bridge1",
TEAM0_UUID: "team0",
VLAN223_UUID: "vlan223"
}
get_iface_from_connection.side_effect = lambda nm_client, uuid: uuid_to_iface[uuid]
ip4_addr_1 = Mock()
ip4_addr_1.get_address.return_value = "192.168.141.131"
ip4_addr_1.get_prefix.return_value = 24
ip6_addr_1 = Mock()
ip6_addr_1.get_address.return_value = "2400:c980:0000:0002::3"
ip6_addr_1.get_prefix.return_value = 64
ip4_dns_list = ["192.168.154.3", "10.216.106.3"]
ip6_dns_list = ["2001:cafe::1", "2001:cafe::2"]
bond_options_1 = [(True, "mode", "active-backup"),
(True, "primary", "ens8"),
(False, "", "")]
ports_of_iface = {
"bond0": set([("bond0_slave_2", "ens8", ENS8_UUID),
("bond0_slave_1", "ens7", ENS7_UUID)]),
"team0": set([("team0_slave_1", "ens7", ENS7_UUID),
("team0_slave_2", "ens8", ENS8_UUID)]),
"bridge0": set([("bridge0_slave_1", "ens8", ENS8_UUID)]),
"bridge1": set([("bond0", "bond0", BOND0_UUID)]),
}
get_ports_from_connections_mock.side_effect = \
lambda _client, _types, ids: ports_of_iface[ids[0]]
uuid_to_port_config = {
ENS7_UUID: '{"prio":100,"sticky":true}',
ENS8_UUID: '{"prio":200}',
}
get_team_port_config_from_connection.side_effect = \
lambda _client, uuid: uuid_to_port_config[uuid]
bridge_properties_1 = NM_BRIDGE_DUMPED_SETTINGS_DEFAULTS.copy()
bridge_properties_1[NM.SETTING_BRIDGE_PRIORITY] = 32769
bridge_properties_1[NM.SETTING_BRIDGE_MAX_AGE] = 21
bridge_properties_1[NM.SETTING_BRIDGE_FORWARD_DELAY] = 16
cons_to_test = [
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_master.return_value": "team0",
"get_interface_name.return_value": "ens3",
}],
""),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_WIFI,
"get_interface_name.return_value": "wlp61s0",
}],
""),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mtu.return_value": 1500,
"get_uuid.return_value": ENS3_UUID,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
}],
"network --bootproto=dhcp --device=ens3 --mtu=1500 --ipv6=auto"),
# dhcp-hostname setting the hostname is debatable and should be reviewed
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_uuid.return_value": ENS3_UUID,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": "dhcp.hostname",
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_DHCP,
}],
"network --bootproto=dhcp --device=ens3 --hostname=dhcp.hostname --ipv6=dhcp"),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_autoconnect.return_value": False,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": ENS7_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_MANUAL,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 2,
"get_setting_ip4_config.return_value.get_dns.side_effect": lambda i: ip4_dns_list[i],
"get_setting_ip4_config.return_value.get_num_addresses.return_value": 1,
"get_setting_ip4_config.return_value.get_gateway.return_value": "192.168.141.1",
"get_setting_ip4_config.return_value.get_address.side_effect": lambda i: ip4_addr_1,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_DISABLED,
}],
"network --bootproto=static --device=ens7 --gateway=192.168.141.1 --ip=192.168.141.131 --nameserver=192.168.154.3,10.216.106.3 --netmask=255.255.255.0 --onboot=off --noipv6"),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_ETHERNET,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": ENS7_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 2,
"get_setting_ip4_config.return_value.get_dns.side_effect": lambda i: ip4_dns_list[i],
"get_setting_ip6_config.return_value.get_num_addresses.return_value": 1,
"get_setting_ip6_config.return_value.get_address.side_effect": lambda i: ip6_addr_1,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 2,
"get_setting_ip6_config.return_value.get_gateway.return_value": "2400:c980:0000:0002::1",
"get_setting_ip6_config.return_value.get_dns.side_effect": lambda i: ip6_dns_list[i],
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_MANUAL,
}],
"network --bootproto=dhcp --device=ens7 --nameserver=192.168.154.3,10.216.106.3,2001:cafe::1,2001:cafe::2 --ipv6=2400:c980:0000:0002::3/64 --ipv6gateway=2400:c980:0000:0002::1"),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BOND,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": BOND0_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_bond.return_value.get_num_options.return_value": 2,
"get_setting_bond.return_value.get_option.side_effect": lambda i: bond_options_1[i],
}],
"network --bootproto=dhcp --device=bond0 --ipv6=auto --bondslaves=ens7,ens8 --bondopts=mode=active-backup,primary=ens8"),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BRIDGE,
"get_setting_connection.return_value.get_autoconnect.return_value": False,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": BRIDGE0_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_bridge.return_value.get_property.side_effect": lambda i: bridge_properties_1[i],
}],
"network --bootproto=dhcp --device=bridge0 --onboot=off --ipv6=auto --bridgeslaves=ens8 --bridgeopts=priority=32769,forward-delay=16,max-age=21"),
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_TEAM,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": TEAM0_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_team.return_value.get_config.return_value": '{\n "runner": {\n "name": "activebackup",\n "hwaddr_policy": "same_all"\n },\n "link_watch": {\n "name": "ethtool"\n }\n}',
}],
"network --bootproto=dhcp --device=team0 --ipv6=auto --teamslaves=\"ens7'{\\\"prio\\\":100,\\\"sticky\\\":true}',ens8'{\\\"prio\\\":200}'\" --teamconfig=\"{\\\"runner\\\":{\\\"name\\\":\\\"activebackup\\\",\\\"hwaddr_policy\\\":\\\"same_all\\\"},\\\"link_watch\\\":{\\\"name\\\":\\\"ethtool\\\"}}\""),
# vlan
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_connection.return_value.get_interface_name.return_value": "vlan233",
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": VLAN223_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_vlan.return_value.get_id.return_value": 233,
"get_setting_vlan.return_value.get_parent.return_value": "ens7",
}],
"network --bootproto=dhcp --device=ens7 --ipv6=auto --vlanid=233 --interfacename=vlan233"),
# vlan, parent specified by UUID
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_connection.return_value.get_interface_name.return_value": "vlan233",
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": VLAN223_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_vlan.return_value.get_id.return_value": 233,
"get_setting_vlan.return_value.get_parent.return_value": ENS7_UUID,
}],
"network --bootproto=dhcp --device=ens7 --ipv6=auto --vlanid=233 --interfacename=vlan233"),
# vlan, no interface name set
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_VLAN,
"get_setting_connection.return_value.get_interface_name.return_value": None,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": None,
"get_uuid.return_value": VLAN223_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip4_config.return_value.get_dhcp_hostname.return_value": None,
"get_setting_ip4_config.return_value.get_method.return_value": NM.SETTING_IP4_CONFIG_METHOD_AUTO,
"get_setting_ip6_config.return_value.get_num_dns.return_value": 0,
"get_setting_ip6_config.return_value.get_method.return_value": NM.SETTING_IP6_CONFIG_METHOD_AUTO,
"get_setting_vlan.return_value.get_id.return_value": 233,
"get_setting_vlan.return_value.get_parent.return_value": ENS7_UUID,
}],
"network --bootproto=dhcp --device=ens7 --ipv6=auto --vlanid=233"),
# Missing ipv4 and ipv6 config - complex virtual devices setups.
# The resulting command may not be valid (supported by kickstart)
# but generating should not crash.
([{
"get_connection_type.return_value": NM_CONNECTION_TYPE_BOND,
"get_setting_connection.return_value.get_autoconnect.return_value": True,
"get_setting_connection.return_value.get_master.return_value": "bridge1",
"get_uuid.return_value": BOND0_UUID,
"get_setting_wired.return_value.get_mtu.return_value": None,
"get_setting_ip4_config.return_value": None,
"get_setting_ip6_config.return_value": None,
"get_setting_bond.return_value.get_num_options.return_value": 2,
"get_setting_bond.return_value.get_option.side_effect": lambda i: bond_options_1[i],
}],
"network --bootproto=dhcp --device=bond0 --bondslaves=ens7,ens8 --bondopts=mode=active-backup,primary=ens8"),
]
for cons_specs, expected_ks in cons_to_test:
connection = self._get_mock_objects_from_attrs(cons_specs)[0]
generated_ks = get_kickstart_network_data(connection, nm_client, NetworkData) or ""
if expected_ks:
expected_ks = dedent(expected_ks).strip()
if generated_ks:
generated_ks = dedent(str(generated_ks)).strip()
self.assertEqual(generated_ks, expected_ks) | unknown | codeparrot/codeparrot-clean | ||
// @flow @enableTransitivelyFreezeFunctionExpressions:false @enableNewMutationAliasingModel
import {setPropertyByKey, Stringify} from 'shared-runtime';
/**
* Variation of bug in `bug-aliased-capture-aliased-mutate`.
* Fixed in the new inference model.
*
* Found differences in evaluator results
* Non-forget (expected):
* (kind: ok)
* <div>{"cb":{"kind":"Function","result":2},"shouldInvokeFns":true}</div>
* <div>{"cb":{"kind":"Function","result":3},"shouldInvokeFns":true}</div>
* Forget:
* (kind: ok)
* <div>{"cb":{"kind":"Function","result":2},"shouldInvokeFns":true}</div>
* <div>{"cb":{"kind":"Function","result":2},"shouldInvokeFns":true}</div>
*/
function useFoo({a}: {a: number, b: number}) {
const arr = [];
const obj = {value: a};
setPropertyByKey(obj, 'arr', arr);
const obj_alias = obj;
const cb = () => obj_alias.arr.length;
for (let i = 0; i < a; i++) {
arr.push(i);
}
return <Stringify cb={cb} shouldInvokeFns={true} />;
}
export const FIXTURE_ENTRYPOINT = {
fn: useFoo,
params: [{a: 2}],
sequentialRenders: [{a: 2}, {a: 3}],
}; | javascript | github | https://github.com/facebook/react | compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/repro-aliased-capture-mutate.js |
# 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.
from __future__ import annotations
import os
from logging import FileHandler
from logging.handlers import RotatingFileHandler
from typing import IO
def make_file_io_non_caching(io: IO[str]) -> IO[str]:
try:
fd = io.fileno()
os.posix_fadvise(fd, 0, 0, os.POSIX_FADV_DONTNEED)
except Exception:
# in case either file descriptor cannot be retrieved or fadvise is not available
# we should simply return the wrapper retrieved by FileHandler's open method
# the advice to the kernel is just an advice and if we cannot give it, we won't
pass
return io
class NonCachingFileHandler(FileHandler):
"""
An extension of FileHandler, advises the Kernel to not cache the file in PageCache when it is written.
While there is nothing wrong with such cache (it will be cleaned when memory is needed), it
causes ever-growing memory usage when scheduler is running as it keeps on writing new log
files and the files are not rotated later on. This might lead to confusion for our users,
who are monitoring memory usage of Scheduler - without realising that it is harmless and
expected in this case.
See https://github.com/apache/airflow/issues/14924
Adding the advice to Kernel might help with not generating the cache memory growth in the first place.
"""
def _open(self):
return make_file_io_non_caching(super()._open())
class NonCachingRotatingFileHandler(RotatingFileHandler):
"""
An extension of RotatingFileHandler, advises the Kernel to not cache the file in PageCache when written.
While there is nothing wrong with such cache (it will be cleaned when memory is needed), it
causes ever-growing memory usage when scheduler is running as it keeps on writing new log
files and the files are not rotated later on. This might lead to confusion for our users,
who are monitoring memory usage of Scheduler - without realising that it is harmless and
expected in this case.
See https://github.com/apache/airflow/issues/27065
Adding the advice to Kernel might help with not generating the cache memory growth in the first place.
"""
def _open(self):
return make_file_io_non_caching(super()._open()) | python | github | https://github.com/apache/airflow | airflow-core/src/airflow/utils/log/non_caching_file_handler.py |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Ansible module to manage Big Monitoring Fabric service chains
# (c) 2016, Ted Elhourani <ted@bigswitch.com>,
#
# This file is part of Ansible
#
# Ansible 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 3 of the License, or
# (at your option) any later version.
#
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
ANSIBLE_METADATA = {'metadata_version': '1.0',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = '''
---
module: bigmon_chain
author: "Ted (@tedelhourani)"
short_description: Create and remove a bigmon inline service chain.
description:
- Create and remove a bigmon inline service chain.
version_added: "2.3"
options:
name:
description:
- The name of the chain.
required: true
state:
description:
- Whether the service chain should be present or absent.
default: present
choices: ['present', 'absent']
controller:
description:
- The controller IP address.
required: true
validate_certs:
description:
- If C(false), SSL certificates will not be validated. This should only be used
on personally controlled devices using self-signed certificates.
required: false
default: true
choices: [true, false]
access_token:
description:
- Bigmon access token. If this isn't set the the environment variable C(BIGSWITCH_ACCESS_TOKEN) is used.
'''
EXAMPLES = '''
- name: bigmon inline service chain
bigmon_chain:
name: MyChain
controller: '{{ inventory_hostname }}'
state: present
validate_certs: false
'''
RETURN = '''
{
"changed": true,
"invocation": {
"module_args": {
"access_token": null,
"controller": "192.168.86.221",
"name": "MyChain",
"state": "present",
"validate_certs": false
},
"module_name": "bigmon_chain"
}
}
'''
import os
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.bigswitch_utils import Rest, Response
from ansible.module_utils.pycompat24 import get_exception
def chain(module):
try:
access_token = module.params['access_token'] or os.environ['BIGSWITCH_ACCESS_TOKEN']
except KeyError:
e = get_exception()
module.fail_json(msg='Unable to load %s' % e.message )
name = module.params['name']
state = module.params['state']
controller = module.params['controller']
rest = Rest(module,
{'content-type': 'application/json', 'Cookie': 'session_cookie='+access_token},
'https://'+controller+':8443/api/v1/data/controller/applications/bigchain')
if None in (name, state, controller):
module.fail_json(msg='parameter `name` is missing')
response = rest.get('chain?config=true', data={})
if response.status_code != 200:
module.fail_json(msg="failed to obtain existing chain config: {}".format(response.json['description']))
config_present = False
matching = [chain for chain in response.json if chain['name'] == name]
if matching:
config_present = True
if state in ('present') and config_present:
module.exit_json(changed=False)
if state in ('absent') and not config_present:
module.exit_json(changed=False)
if state in ('present'):
response = rest.put('chain[name="%s"]' % name, data={'name': name})
if response.status_code == 204:
module.exit_json(changed=True)
else:
module.fail_json(msg="error creating chain '{}': {}".format(name, response.json['description']))
if state in ('absent'):
response = rest.delete('chain[name="%s"]' % name, data={})
if response.status_code == 204:
module.exit_json(changed=True)
else:
module.fail_json(msg="error deleting chain '{}': {}".format(name, response.json['description']))
def main():
module = AnsibleModule(
argument_spec=dict(
name=dict(type='str', required=True),
controller=dict(type='str', required=True),
state=dict(choices=['present', 'absent'], default='present'),
validate_certs=dict(type='bool', default='True'),
access_token=dict(type='str', no_log=True)
)
)
try:
chain(module)
except Exception:
e = get_exception()
module.fail_json(msg=str(e))
if __name__ == '__main__':
main() | unknown | codeparrot/codeparrot-clean | ||
import unittest
from kyu7.total_licks import total_licks
class TestTotalClicks(unittest.TestCase):
def test_freezing_temps_260(self):
self.assertEqual('It took 260 licks to get to the tootsie roll center of a tootsie pop. The toughest challenge was freezing temps.',
total_licks({"freezing temps": 10, "clear skies": -2}))
def test_not_empty_245(self):
self.assertEqual('It took 245 licks to get to the tootsie roll center of a tootsie pop.',
total_licks({"happiness": -5, "clear skies": -2}))
def test_empty_252(self):
self.assertEqual('It took 252 licks to get to the tootsie roll center of a tootsie pop.',
total_licks({}))
def test_evil_wizards_512(self):
self.assertEqual('It took 512 licks to get to the tootsie roll center of a tootsie pop. The toughest challenge was evil wizards.',
total_licks({"dragons": 100,
"evil wizards": 110,
"trolls": 50}))
def test_not_empty_2(self):
self.assertEqual('It took 2 licks to get to the tootsie roll center of a tootsie pop.',
total_licks({"white magic": -250})) | unknown | codeparrot/codeparrot-clean | ||
import math
import ahocorasick
import tqdm
from collections import defaultdict
import unicodedata
import os
import pickle
############################################################
# Trie loading and creation
# ja: source, en: target
#
def unsegment(s):
res = []
for w in s.split(" "):
if w.startswith("▁"):
w = " " + w[1:]
res.append(w)
return "".join(res)
def preproccess_line(line, do_unsegment=False):
line = line.strip()
if do_unsegment:
line = unsegment(line)
line = unicodedata.normalize('NFKC', line)
line = line.lower()
return line
def tqdm_utf_file_reader(fn):
print("Reading", fn)
with tqdm.tqdm(total=os.path.getsize(fn)) as pbar:
with open(fn, "r", encoding="utf8") as f:
for line in f:
pbar.update(len(line.encode("utf8")))
yield line
def load_dic_from_tsv(filename, invert=False):
ja_en = defaultdict(list)
en_ja = defaultdict(list)
for line in tqdm_utf_file_reader(filename):
line = line.strip()
line = preproccess_line(line)
splitted = line.split("\t")
ja, en, idx = splitted
if len(en) <= 2:
continue # filtering noise
en = " "+en+" "
ja_en[ja].append(en)
en_ja[en].append(ja)
if invert:
return en_ja, ja_en
else:
return ja_en, en_ja
def build_dic_search(dic: dict):
A = ahocorasick.Automaton()
print("adding words to automaton")
for k, v in tqdm.tqdm(dic.items()):
A.add_word(k, (k,v))
print("finalize automaton")
A.make_automaton()
return A
def create_search_trie_from_dic_file(tsv_filename, invert=False):
ja_en_dic, en_ja_dic = load_dic_from_tsv(tsv_filename, invert=invert)
ja_en_search = build_dic_search(ja_en_dic)
en_ja_search = build_dic_search(en_ja_dic)
return ja_en_search, en_ja_search
def create_and_save_search_trie_from_dic_file(tsv_filename, dest_filename):
search_pair = create_search_trie_from_dic_file(tsv_filename)
pickle.dump(search_pair, open(dest_filename, "bw"))
def load_search_trie(filename, invert=False):
ja_en_search, en_ja_search = pickle.load(open(filename, "rb"))
if invert:
return ja_en_search, en_ja_search
else:
return en_ja_search, ja_en_search
def match_list(line, lst):
match = None
for en_w in lst:
if en_w in line:
match = en_w
break
return match
def count_match_in_list(line, lst):
res = 0
for en_w in lst:
res += line.count(en_w)
return res
def find_match_in_list(line, lst):
A = ahocorasick.Automaton()
for w in lst:
A.add_word(w,w)
A.make_automaton()
m = {}
for end, w in A.iter(line):
if end not in m:
m[end] = w
for i in range(1,len(w)):
if end-i in m:
del m[end-i]
return m
def get_non_overlap_matches(A, line):
m = {}
for end, (ja_w, en_w_list) in A.iter(line):
if len(en_w_list) > 30:
continue #remove some dictionnary noise
if ja_w.strip() in ["ら", "。。", "が", "よう", "な", "べき",
"か", "し", "ように", "である",
"もの", "ない", "を", "した", "いう", "この", "も", "こと", "できる",
"ある", "さ", "れた",
"the", "and", "this", "for", "of", "a"]:
continue
if end not in m:
m[end] = (ja_w, set(en_w_list))
for i in range(1,len(ja_w)):
if end-i in m:
del m[end-i]
counts = defaultdict(int)
translations = {}
for w, lst in m.values():
counts[w] += 1
translations[w] = lst
return counts, translations
def get_match_list(line_ja, line_en, ja_en_search):
#matched_list = []
#missed_list = []
matched_count, translations = get_non_overlap_matches(ja_en_search, line_ja) #defaultdict(int)
other_count = {}
search_line = line_en
for ja_w, en_w_list in translations.items():
m = find_match_in_list(search_line, en_w_list)
count = 0
for num_match, (end, w_en) in enumerate(m.items()):
if num_match + 1 > matched_count[ja_w]:
continue
count += 1
search_line = search_line[:end-len(w_en)] + " "*len(w_en) + search_line[end:]
other_count[ja_w] = count #find_match_in_list(line_en, en_w_list)
# for end_pos, (ja_w, en_w_list) in ja_en_search.iter(line_ja):
# matched_count[ja_w]+=1
# if ja_w not in other_count:
# other_count[ja_w] = count_match_in_list(line_en, en_w_list)
# match = match_list(line_en, en_w_list)
# if match is None:
# missed_list.append(ja_w)
# else:
# matched_list.append((ja_w, match))
return matched_count, other_count, translations
#PSEUDO_MINUS_INF = -15
def compute_dic_matching_score(nb_dic_words_in_src, nb_src_in_tgt, nb_dic_words_in_tgt, nb_tgt_in_src):
dic_recall = nb_src_in_tgt / nb_dic_words_in_src if nb_dic_words_in_src != 0 else 1
dic_precision = nb_tgt_in_src / nb_dic_words_in_tgt if nb_dic_words_in_tgt != 0 else 1
recall_score = nb_src_in_tgt
precision_score = nb_tgt_in_src - nb_dic_words_in_tgt #max(np.log(dic_precision), PSEUDO_MINUS_INF) if dic_precision > 0 else PSEUDO_MINUS_INF
return recall_score + precision_score
def get_dic_score(line_ja, line_en, ja_en_search, en_ja_search):
line_ja = preproccess_line(line_ja, do_unsegment=True)
line_en = preproccess_line(line_en, do_unsegment=True)
line_ja = "".join(line_ja.split(" "))
line_en = " " + line_en.replace("!", " ").replace(".", " ").replace("?", " ").replace(",", " ").replace(";", " ").replace(":", " ") + " "
matched_count_ja_en, other_count_ja_en, translations_ja = get_match_list(line_ja, line_en, ja_en_search)
src_tgt_mismatch = 0
src_missing = 0
src_ok = 0
src_list = []
for ja in matched_count_ja_en:
src_ok += min(matched_count_ja_en[ja], other_count_ja_en[ja])
src_missing += max(matched_count_ja_en[ja] - other_count_ja_en[ja], 0)
src_list.append((ja, translations_ja[ja],matched_count_ja_en[ja], other_count_ja_en[ja],
min(matched_count_ja_en[ja], other_count_ja_en[ja]),
max(matched_count_ja_en[ja] - other_count_ja_en[ja], 0)))
#src_tgt_mismatch += abs(matched_count_ja_en[ja] - other_count_ja_en[ja])
# if src_tgt_mismatch == 0:
# print(ja)
#print(ja, matched_count_ja_en[ja], other_count_ja_en[ja], translations_ja[ja])
#nb_dic_words_in_src = len(matched_list_ja_en) + len(missed_list_ja_en)
#nb_src_in_tgt = len(matched_list_ja_en)
matched_count_en_ja, other_count_en_ja, translations_en = get_match_list(line_en, line_ja, en_ja_search)
#tgt_src_mismatch = 0
tgt_missing = 0
tgt_ok = 0
tgt_list = []
for en in matched_count_en_ja:
tgt_ok += min(matched_count_en_ja[en], other_count_en_ja[en])
tgt_missing += max(matched_count_en_ja[en] - other_count_en_ja[en], 0)
tgt_list.append((en, translations_en[en], min(matched_count_en_ja[en], other_count_en_ja[en]),
max(matched_count_en_ja[en] - other_count_en_ja[en], 0)))
#tgt_src_mismatch += abs(matched_count_en_ja[en] - other_count_en_ja[en])
# if tgt_src_mismatch == 0:
# print(en)
#print(en, matched_count_en_ja[en], other_count_en_ja[en], translations_en[en])
#print(src_tgt_mismatch, tgt_src_mismatch)
#return -src_tgt_mismatch -tgt_src_mismatch
#print(line_ja)
#print(line_en)
#print(src_list, tgt_list)
#print(f"{src_ok + tgt_ok - src_missing - tgt_missing} = {src_ok} + {tgt_ok} - {src_missing} - {tgt_missing}")
return src_ok + tgt_ok - src_missing - tgt_missing
# nb_dic_words_in_tgt = len(matched_list_en_ja) + len(missed_list_en_ja)
# nb_tgt_in_src = len(matched_list_en_ja)
# print(len(matched_list_ja_en), len(missed_list_ja_en),
# len(matched_list_en_ja), len(missed_list_en_ja),
# compute_dic_matching_score(nb_dic_words_in_src, nb_src_in_tgt, nb_dic_words_in_tgt, nb_tgt_in_src))
# return compute_dic_matching_score(nb_dic_words_in_src, nb_src_in_tgt, nb_dic_words_in_tgt, nb_tgt_in_src)
def make_constraint(ja_en_search, en_ja_search, tgt_indexer):
def make_dic_score_computer(line_ja, src_idx):
def score_computer(tgt_idx):
line_en = tgt_indexer.deconvert(tgt_idx)
return get_dic_score(line_ja, line_en, ja_en_search, en_ja_search)
return score_computer
return make_dic_score_computer
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description=None,
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
prog=None)
parser.add_argument("tsv_filename", help=None)
parser.add_argument("dest_filename", help=None)
args = parser.parse_args()
create_and_save_search_trie_from_dic_file(args.tsv_filename, args.dest_filename) | unknown | codeparrot/codeparrot-clean | ||
# -*- encoding:ascii -*-
from mako import runtime, filters, cache
UNDEFINED = runtime.UNDEFINED
__M_dict_builtin = dict
__M_locals_builtin = locals
_magic_number = 6
_modified_time = 1417442147.008255
_template_filename='templates/grid_base_async.mako'
_template_uri='grid_base_async.mako'
_template_cache=cache.Cache(__name__, _modified_time)
_source_encoding='ascii'
_exports = []
def _mako_get_namespace(context, name):
try:
return context.namespaces[(__name__, name)]
except KeyError:
_mako_generate_namespaces(context)
return context.namespaces[(__name__, name)]
def _mako_generate_namespaces(context):
# SOURCE LINE 1
ns = runtime.TemplateNamespace(u'grid_base', context._clean_inheritance_tokens(), templateuri=u'./grid_base.mako', callables=None, calling_uri=_template_uri)
context.namespaces[(__name__, u'grid_base')] = ns
def render_body(context,**pageargs):
context.caller_stack._push_frame()
try:
__M_locals = __M_dict_builtin(pageargs=pageargs)
_import_ns = {}
_mako_get_namespace(context, u'grid_base')._populate(_import_ns, [u'*'])
h = _import_ns.get('h', context.get('h', UNDEFINED))
init = _import_ns.get('init', context.get('init', UNDEFINED))
grid_base = _mako_get_namespace(context, 'grid_base')
__M_writer = context.writer()
__M_writer(u'\n\n')
# SOURCE LINE 3
__M_writer(unicode(init()))
__M_writer(u'\n')
# SOURCE LINE 4
__M_writer(unicode(h.dumps( grid_base.get_grid_config() )))
__M_writer(u'\n')
return ''
finally:
context.caller_stack._pop_frame() | unknown | codeparrot/codeparrot-clean | ||
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2011 Cisco Systems, Inc.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# @author: Ying Liu, Cisco Systems, Inc.
#
from webob import exc
from quantum.api import api_common as common
from quantum.api import extensions
from quantum.manager import QuantumManager
from quantum.plugins.cisco.common import cisco_exceptions as exception
from quantum.plugins.cisco.common import cisco_faults as faults
from quantum.plugins.cisco.extensions import _qos_view as qos_view
from quantum import wsgi
class Qos(extensions.ExtensionDescriptor):
"""Qos extension file"""
@classmethod
def get_name(cls):
""" Returns Ext Resource Name """
return "Cisco qos"
@classmethod
def get_alias(cls):
""" Returns Ext Resource Alias """
return "Cisco qos"
@classmethod
def get_description(cls):
""" Returns Ext Resource Description """
return "qos includes qos_name and qos_desc"
@classmethod
def get_namespace(cls):
""" Returns Ext Resource Namespace """
return "http://docs.ciscocloud.com/api/ext/qos/v1.0"
@classmethod
def get_updated(cls):
""" Returns Ext Resource update """
return "2011-07-25T13:25:27-06:00"
@classmethod
def get_resources(cls):
""" Returns Ext Resources """
parent_resource = dict(member_name="tenant",
collection_name="extensions/csco/tenants")
controller = QosController(QuantumManager.get_plugin())
return [extensions.ResourceExtension('qoss', controller,
parent=parent_resource)]
class QosController(common.QuantumController, wsgi.Controller):
""" qos API controller
based on QuantumController """
_qos_ops_param_list = [
{'param-name': 'qos_name', 'required': True},
{'param-name': 'qos_desc', 'required': True},
]
_serialization_metadata = {
"application/xml": {
"attributes": {
"qos": ["id", "name"],
},
},
}
def __init__(self, plugin):
self._resource_name = 'qos'
self._plugin = plugin
def index(self, request, tenant_id):
""" Returns a list of qos ids """
return self._items(request, tenant_id, is_detail=False)
def _items(self, request, tenant_id, is_detail):
""" Returns a list of qoss. """
qoss = self._plugin.get_all_qoss(tenant_id)
builder = qos_view.get_view_builder(request)
result = [builder.build(qos, is_detail)['qos'] for qos in qoss]
return dict(qoss=result)
# pylint: disable-msg=E1101
def show(self, request, tenant_id, id):
""" Returns qos details for the given qos id """
try:
qos = self._plugin.get_qos_details(tenant_id, id)
builder = qos_view.get_view_builder(request)
#build response with details
result = builder.build(qos, True)
return dict(qoss=result)
except exception.QosNotFound as exp:
return faults.Fault(faults.QosNotFound(exp))
def create(self, request, tenant_id):
""" Creates a new qos for a given tenant """
#look for qos name in request
try:
body = self._deserialize(request.body, request.get_content_type())
req_body = self._prepare_request_body(body,
self._qos_ops_param_list)
req_params = req_body[self._resource_name]
except exc.HTTPError as exp:
return faults.Fault(exp)
qos = self._plugin.create_qos(tenant_id,
req_params['qos_name'],
req_params['qos_desc'])
builder = qos_view.get_view_builder(request)
result = builder.build(qos)
return dict(qoss=result)
def update(self, request, tenant_id, id):
""" Updates the name for the qos with the given id """
try:
body = self._deserialize(request.body, request.get_content_type())
req_body = self._prepare_request_body(body,
self._qos_ops_param_list)
req_params = req_body[self._resource_name]
except exc.HTTPError as exp:
return faults.Fault(exp)
try:
qos = self._plugin.rename_qos(tenant_id, id,
req_params['qos_name'])
builder = qos_view.get_view_builder(request)
result = builder.build(qos, True)
return dict(qoss=result)
except exception.QosNotFound as exp:
return faults.Fault(faults.QosNotFound(exp))
def delete(self, request, tenant_id, id):
""" Destroys the qos with the given id """
try:
self._plugin.delete_qos(tenant_id, id)
return exc.HTTPOk()
except exception.QosNotFound as exp:
return faults.Fault(faults.QosNotFound(exp)) | unknown | codeparrot/codeparrot-clean | ||
# Copyright 2015, Rackspace, US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from six import StringIO
from horizon.test import helpers as test
from horizon.utils.babel_extract_angular import extract_angular
default_keys = []
class ExtractAngularTestCase(test.TestCase):
def test_extract_no_tags(self):
buf = StringIO('<html></html>')
messages = list(extract_angular(buf, default_keys, [], {}))
self.assertEqual([], messages)
def test_simple_string(self):
buf = StringIO(
"""<html><translate>hello world!</translate>'
<div translate>hello world!</div></html>"""
)
messages = list(extract_angular(buf, default_keys, [], {}))
self.assertEqual(
[
(1, u'gettext', 'hello world!', []),
(2, u'gettext', 'hello world!', [])
],
messages)
def test_attr_value(self):
"""We should not translate tags that have translate as the value of an
attribute.
"""
buf = StringIO('<html><div id="translate">hello world!</div></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual([], messages)
def test_attr_value_plus_directive(self):
"""Unless they also have a translate directive.
"""
buf = StringIO(
'<html><div id="translate" translate>hello world!</div></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual([(1, 'gettext', 'hello world!', [])], messages)
def test_translate_tag(self):
buf = StringIO('<html><translate>hello world!</translate></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual([(1, 'gettext', 'hello world!', [])], messages)
def test_plural_form(self):
buf = StringIO(
(
'<html><translate translate-plural="hello {$count$} worlds!">'
'hello one world!</translate></html>'
))
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual(
[
(1, 'ngettext',
('hello one world!',
'hello {$count$} worlds!'
),
[])
], messages)
def test_translate_tag_comments(self):
buf = StringIO(
'<html><translate translate-comment='
'"What a beautiful world">hello world!</translate></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual(
[
(1, 'gettext', 'hello world!', ['What a beautiful world'])
],
messages)
def test_comments(self):
buf = StringIO(
'<html><div translate translate-comment='
'"What a beautiful world">hello world!</div></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual(
[
(1, 'gettext', 'hello world!', ['What a beautiful world'])
],
messages)
def test_multiple_comments(self):
buf = StringIO(
'<html><translate '
'translate-comment="What a beautiful world"'
'translate-comment="Another comment"'
'>hello world!</translate></html>')
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual(
[
(1, 'gettext', 'hello world!',
[
'What a beautiful world',
'Another comment'
])
],
messages)
def test_filter(self):
# test also for some forms that should not match
buf = StringIO(
"""
<img alt="{$ 'hello world1' | translate $}">
<p>{$'hello world2'|translate$}</p>
<img alt="something {$'hello world3'|translate$} something
{$'hello world4'|translate$}">
<img alt="{$expr()|translate$}">
<img alt="{$'some other thing'$}">
<p>{$'"it\\'s awesome"'|translate$}</p>
<p>{$"oh \\"hello\\" there"|translate$}</p>
"""
)
messages = list(extract_angular(buf, default_keys, [], {}))
self.assertEqual(
[
(2, u'gettext', 'hello world1', []),
(3, u'gettext', 'hello world2', []),
(4, u'gettext', 'hello world3', []),
(4, u'gettext', 'hello world4', []),
(8, u'gettext', '"it\\\'s awesome"', []),
(9, u'gettext', 'oh \\"hello\\" there', []),
],
messages)
def test_trim_translate_tag(self):
buf = StringIO(
"<html><translate> \n hello\n world! \n "
"</translate></html>")
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual([(1, 'gettext', 'hello\n world!', [])], messages)
def test_nested_translate_tag(self):
buf = StringIO(
"<html><translate>hello <b>beautiful <i>world</i></b> !"
"</translate></html>"
)
messages = list(extract_angular(buf, [], [], {}))
self.assertEqual(
[(1, 'gettext', 'hello <b>beautiful <i>world</i></b> !', [])],
messages) | unknown | codeparrot/codeparrot-clean | ||
#!/usr/bin/env python
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Run a pinned gsutil."""
import argparse
import base64
import hashlib
import json
import os
import shutil
import subprocess
import sys
import urllib2
import zipfile
GSUTIL_URL = 'https://storage.googleapis.com/pub/'
API_URL = 'https://www.googleapis.com/storage/v1/b/pub/o/'
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
DEFAULT_BIN_DIR = os.path.join(THIS_DIR, 'external_bin', 'gsutil')
DEFAULT_FALLBACK_GSUTIL = os.path.join(
THIS_DIR, 'third_party', 'gsutil', 'gsutil')
class InvalidGsutilError(Exception):
pass
def download_gsutil(version, target_dir):
"""Downloads gsutil into the target_dir."""
filename = 'gsutil_%s.zip' % version
target_filename = os.path.join(target_dir, filename)
# Check if the target exists already.
if os.path.exists(target_filename):
md5_calc = hashlib.md5()
with open(target_filename, 'rb') as f:
while True:
buf = f.read(4096)
if not buf:
break
md5_calc.update(buf)
local_md5 = md5_calc.hexdigest()
metadata_url = '%s%s' % (API_URL, filename)
metadata = json.load(urllib2.urlopen(metadata_url))
remote_md5 = base64.b64decode(metadata['md5Hash'])
if local_md5 == remote_md5:
return target_filename
os.remove(target_filename)
# Do the download.
url = '%s%s' % (GSUTIL_URL, filename)
u = urllib2.urlopen(url)
with open(target_filename, 'wb') as f:
while True:
buf = u.read(4096)
if not buf:
break
f.write(buf)
return target_filename
def check_gsutil(gsutil_bin):
"""Run gsutil version and make sure it runs."""
return subprocess.call(
[sys.executable, gsutil_bin, 'version'],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT) == 0
def ensure_gsutil(version, target):
bin_dir = os.path.join(target, 'gsutil_%s' % version)
gsutil_bin = os.path.join(bin_dir, 'gsutil', 'gsutil')
if os.path.isfile(gsutil_bin) and check_gsutil(gsutil_bin):
# Everything is awesome! we're all done here.
return gsutil_bin
if os.path.isdir(bin_dir):
# Clean up if we're redownloading a corrupted gsutil.
shutil.rmtree(bin_dir)
cache_dir = os.path.join(target, '.cache_dir')
if not os.path.isdir(cache_dir):
os.makedirs(cache_dir)
target_zip_filename = download_gsutil(version, cache_dir)
with zipfile.ZipFile(target_zip_filename, 'r') as target_zip:
target_zip.extractall(bin_dir)
# Final check that the gsutil bin is okay. This should never fail.
if not check_gsutil(gsutil_bin):
raise InvalidGsutilError()
return gsutil_bin
def run_gsutil(force_version, fallback, target, args):
if force_version:
gsutil_bin = ensure_gsutil(force_version, target)
else:
gsutil_bin = fallback
cmd = [sys.executable, gsutil_bin] + args
return subprocess.call(cmd)
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('--force-version')
parser.add_argument('--fallback', default=DEFAULT_FALLBACK_GSUTIL)
parser.add_argument('--target', default=DEFAULT_BIN_DIR)
parser.add_argument('args', nargs=argparse.REMAINDER)
args, extras = parser.parse_known_args()
if args.args and args.args[0] == '--':
args.args.pop(0)
if extras:
args.args = extras + args.args
return args.force_version, args.fallback, args.target, args.args
def main():
force_version, fallback, target, args = parse_args()
return run_gsutil(force_version, fallback, target, args)
if __name__ == '__main__':
sys.exit(main()) | unknown | codeparrot/codeparrot-clean | ||
import txrestapi
__package__="txrestapi"
import re
import os.path
import doctest
from six import PY2, b, u
from twisted.internet import reactor
from twisted.internet.defer import inlineCallbacks
from twisted.web.resource import Resource, NoResource
from twisted.web.server import Request, Site
from twisted.web.client import getPage
from twisted.trial import unittest
from .resource import APIResource
from .methods import GET, PUT
class FakeChannel(object):
transport = None
def getRequest(method, url):
req = Request(FakeChannel(), None)
req.method = method
req.path = url
return req
class APIResourceTest(unittest.TestCase):
def test_returns_normal_resources(self):
r = APIResource()
a = Resource()
r.putChild(b('a'), a)
req = Request(FakeChannel(), None)
a_ = r.getChild(b('a'), req)
self.assertEqual(a, a_)
def test_registry(self):
compiled = re.compile(b('regex'))
r = APIResource()
r.register(b('GET'), b('regex'), None)
self.assertEqual([x[0] for x in r._registry], [b('GET')])
self.assertEqual(r._registry[0], (b('GET'), compiled, None))
def test_method_matching(self):
r = APIResource()
r.register(b('GET'), b('regex'), 1)
r.register(b('PUT'), b('regex'), 2)
r.register(b('GET'), b('another'), 3)
req = getRequest(b('GET'), b('regex'))
result = r._get_callback(req)
self.assert_(result)
self.assertEqual(result[0], 1)
req = getRequest(b('PUT'), b('regex'))
result = r._get_callback(req)
self.assert_(result)
self.assertEqual(result[0], 2)
req = getRequest(b('GET'), b('another'))
result = r._get_callback(req)
self.assert_(result)
self.assertEqual(result[0], 3)
req = getRequest(b('PUT'), b('another'))
result = r._get_callback(req)
self.assertEqual(result, (None, None))
def test_callback(self):
marker = object()
def cb(request):
return marker
r = APIResource()
r.register(b('GET'), b('regex'), cb)
req = getRequest(b('GET'), b('regex'))
result = r.getChild(b('regex'), req)
self.assertEqual(result.render(req), marker)
def test_longerpath(self):
marker = object()
r = APIResource()
def cb(request):
return marker
r.register(b('GET'), b('/regex/a/b/c'), cb)
req = getRequest(b('GET'), b('/regex/a/b/c'))
result = r.getChild(b('regex'), req)
self.assertEqual(result.render(req), marker)
def test_args(self):
r = APIResource()
def cb(request, **kwargs):
return kwargs
r.register(b('GET'), b('/(?P<a>[^/]*)/a/(?P<b>[^/]*)/c'), cb)
req = getRequest(b('GET'), b('/regex/a/b/c'))
result = r.getChild(b('regex'), req)
self.assertEqual(sorted(result.render(req).keys()), ['a', 'b'])
def test_order(self):
r = APIResource()
def cb1(request, **kwargs):
kwargs.update({'cb1':True})
return kwargs
def cb(request, **kwargs):
return kwargs
# Register two regexes that will match
r.register(b('GET'), b('/(?P<a>[^/]*)/a/(?P<b>[^/]*)/c'), cb1)
r.register(b('GET'), b('/(?P<a>[^/]*)/a/(?P<b>[^/]*)'), cb)
req = getRequest(b('GET'), b('/regex/a/b/c'))
result = r.getChild(b('regex'), req)
# Make sure the first one got it
self.assert_('cb1' in result.render(req))
def test_no_resource(self):
r = APIResource()
r.register(b('GET'), b('^/(?P<a>[^/]*)/a/(?P<b>[^/]*)$'), None)
req = getRequest(b('GET'), b('/definitely/not/a/match'))
result = r.getChild(b('regex'), req)
self.assert_(isinstance(result, NoResource))
def test_all(self):
r = APIResource()
def get_cb(r): return b('GET')
def put_cb(r): return b('PUT')
def all_cb(r): return b('ALL')
r.register(b('GET'), b('^path'), get_cb)
r.register(b('ALL'), b('^path'), all_cb)
r.register(b('PUT'), b('^path'), put_cb)
# Test that the ALL registration picks it up before the PUT one
for method in (b('GET'), b('PUT'), b('ALL')):
req = getRequest(method, b('path'))
result = r.getChild(b('path'), req)
self.assertEqual(result.render(req), b('ALL') if method==b('PUT') else method)
class TestResource(Resource):
isLeaf = True
def render(self, request):
return b('aresource')
class TestAPI(APIResource):
@GET(b('^/(?P<a>test[^/]*)/?'))
def _on_test_get(self, request, a):
return b('GET %s') % a
@PUT(b('^/(?P<a>test[^/]*)/?'))
def _on_test_put(self, request, a):
return b('PUT %s') % a
@GET(b('^/gettest'))
def _on_gettest(self, request):
return TestResource()
class DecoratorsTest(unittest.TestCase):
def _listen(self, site):
return reactor.listenTCP(0, site, interface="127.0.0.1")
def setUp(self):
r = TestAPI()
site = Site(r, timeout=None)
self.port = self._listen(site)
self.portno = self.port.getHost().port
def tearDown(self):
return self.port.stopListening()
def getURL(self, path):
return b("http://127.0.0.1:%d/%s" % (self.portno, path))
@inlineCallbacks
def test_get(self):
url = self.getURL('test_thing/')
result = yield getPage(url, method=b('GET'))
self.assertEqual(result, b('GET test_thing'))
@inlineCallbacks
def test_put(self):
url = self.getURL('test_thing/')
result = yield getPage(url, method=b('PUT'))
self.assertEqual(result, b('PUT test_thing'))
@inlineCallbacks
def test_resource_wrapper(self):
url = self.getURL('gettest')
result = yield getPage(url, method=b('GET'))
self.assertEqual(result, b('aresource'))
def test_suite():
import unittest as ut
suite = unittest.TestSuite()
suite.addTest(ut.makeSuite(DecoratorsTest))
suite.addTest(ut.makeSuite(APIResourceTest))
if PY2:
suite.addTest(doctest.DocFileSuite(os.path.join('..', 'README.rst')))
return suite | unknown | codeparrot/codeparrot-clean | ||
"""Module contains typedefs that are used with `Runnable` objects."""
from __future__ import annotations
from typing import TYPE_CHECKING, Any, Literal
from typing_extensions import NotRequired, TypedDict
if TYPE_CHECKING:
from collections.abc import Sequence
class EventData(TypedDict, total=False):
"""Data associated with a streaming event."""
input: Any
"""The input passed to the `Runnable` that generated the event.
Inputs will sometimes be available at the *START* of the `Runnable`, and
sometimes at the *END* of the `Runnable`.
If a `Runnable` is able to stream its inputs, then its input by definition
won't be known until the *END* of the `Runnable` when it has finished streaming
its inputs.
"""
error: NotRequired[BaseException]
"""The error that occurred during the execution of the `Runnable`.
This field is only available if the `Runnable` raised an exception.
!!! version-added "Added in `langchain-core` 1.0.0"
"""
output: Any
"""The output of the `Runnable` that generated the event.
Outputs will only be available at the *END* of the `Runnable`.
For most `Runnable` objects, this field can be inferred from the `chunk` field,
though there might be some exceptions for special a cased `Runnable` (e.g., like
chat models), which may return more information.
"""
chunk: Any
"""A streaming chunk from the output that generated the event.
chunks support addition in general, and adding them up should result
in the output of the `Runnable` that generated the event.
"""
tool_call_id: NotRequired[str | None]
"""The tool call ID associated with the tool execution.
This field is available for the `on_tool_error` event and can be used to
link errors to specific tool calls in stateless agent implementations.
"""
class BaseStreamEvent(TypedDict):
"""Streaming event.
Schema of a streaming event which is produced from the `astream_events` method.
Example:
```python
from langchain_core.runnables import RunnableLambda
async def reverse(s: str) -> str:
return s[::-1]
chain = RunnableLambda(func=reverse)
events = [event async for event in chain.astream_events("hello")]
# Will produce the following events
# (where some fields have been omitted for brevity):
[
{
"data": {"input": "hello"},
"event": "on_chain_start",
"metadata": {},
"name": "reverse",
"tags": [],
},
{
"data": {"chunk": "olleh"},
"event": "on_chain_stream",
"metadata": {},
"name": "reverse",
"tags": [],
},
{
"data": {"output": "olleh"},
"event": "on_chain_end",
"metadata": {},
"name": "reverse",
"tags": [],
},
]
```
"""
event: str
"""Event names are of the format: `on_[runnable_type]_(start|stream|end)`.
Runnable types are one of:
- **llm** - used by non chat models
- **chat_model** - used by chat models
- **prompt** -- e.g., `ChatPromptTemplate`
- **tool** -- from tools defined via `@tool` decorator or inheriting
from `Tool`/`BaseTool`
- **chain** - most `Runnable` objects are of this type
Further, the events are categorized as one of:
- **start** - when the `Runnable` starts
- **stream** - when the `Runnable` is streaming
- **end* - when the `Runnable` ends
start, stream and end are associated with slightly different `data` payload.
Please see the documentation for `EventData` for more details.
"""
run_id: str
"""An randomly generated ID to keep track of the execution of the given `Runnable`.
Each child `Runnable` that gets invoked as part of the execution of a parent
`Runnable` is assigned its own unique ID.
"""
tags: NotRequired[list[str]]
"""Tags associated with the `Runnable` that generated this event.
Tags are always inherited from parent `Runnable` objects.
Tags can either be bound to a `Runnable` using `.with_config({"tags": ["hello"]})`
or passed at run time using `.astream_events(..., {"tags": ["hello"]})`.
"""
metadata: NotRequired[dict[str, Any]]
"""Metadata associated with the `Runnable` that generated this event.
Metadata can either be bound to a `Runnable` using
`.with_config({"metadata": { "foo": "bar" }})`
or passed at run time using
`.astream_events(..., {"metadata": {"foo": "bar"}})`.
"""
parent_ids: Sequence[str]
"""A list of the parent IDs associated with this event.
Root Events will have an empty list.
For example, if a `Runnable` A calls `Runnable` B, then the event generated by
`Runnable` B will have `Runnable` A's ID in the `parent_ids` field.
The order of the parent IDs is from the root parent to the immediate parent.
Only supported as of v2 of the astream events API. v1 will return an empty list.
"""
class StandardStreamEvent(BaseStreamEvent):
"""A standard stream event that follows LangChain convention for event data."""
data: EventData
"""Event data.
The contents of the event data depend on the event type.
"""
name: str
"""The name of the `Runnable` that generated the event."""
class CustomStreamEvent(BaseStreamEvent):
"""Custom stream event created by the user."""
# Overwrite the event field to be more specific.
event: Literal["on_custom_event"] # type: ignore[misc]
"""The event type."""
name: str
"""User defined name for the event."""
data: Any
"""The data associated with the event. Free form and can be anything."""
StreamEvent = StandardStreamEvent | CustomStreamEvent | python | github | https://github.com/langchain-ai/langchain | libs/core/langchain_core/runnables/schema.py |
# This module contains ``ast.unparse()``, defined here
# to improve the import time for the ``ast`` module.
import sys
from _ast import *
from ast import NodeVisitor
from contextlib import contextmanager, nullcontext
from enum import IntEnum, auto, _simple_enum
# Large float and imaginary literals get turned into infinities in the AST.
# We unparse those infinities to INFSTR.
_INFSTR = "1e" + repr(sys.float_info.max_10_exp + 1)
@_simple_enum(IntEnum)
class _Precedence:
"""Precedence table that originated from python grammar."""
NAMED_EXPR = auto() # <target> := <expr1>
TUPLE = auto() # <expr1>, <expr2>
YIELD = auto() # 'yield', 'yield from'
TEST = auto() # 'if'-'else', 'lambda'
OR = auto() # 'or'
AND = auto() # 'and'
NOT = auto() # 'not'
CMP = auto() # '<', '>', '==', '>=', '<=', '!=',
# 'in', 'not in', 'is', 'is not'
EXPR = auto()
BOR = EXPR # '|'
BXOR = auto() # '^'
BAND = auto() # '&'
SHIFT = auto() # '<<', '>>'
ARITH = auto() # '+', '-'
TERM = auto() # '*', '@', '/', '%', '//'
FACTOR = auto() # unary '+', '-', '~'
POWER = auto() # '**'
AWAIT = auto() # 'await'
ATOM = auto()
def next(self):
try:
return self.__class__(self + 1)
except ValueError:
return self
_SINGLE_QUOTES = ("'", '"')
_MULTI_QUOTES = ('"""', "'''")
_ALL_QUOTES = (*_SINGLE_QUOTES, *_MULTI_QUOTES)
class Unparser(NodeVisitor):
"""Methods in this class recursively traverse an AST and
output source code for the abstract syntax; original formatting
is disregarded."""
def __init__(self):
self._source = []
self._precedences = {}
self._type_ignores = {}
self._indent = 0
self._in_try_star = False
self._in_interactive = False
def interleave(self, inter, f, seq):
"""Call f on each item in seq, calling inter() in between."""
seq = iter(seq)
try:
f(next(seq))
except StopIteration:
pass
else:
for x in seq:
inter()
f(x)
def items_view(self, traverser, items):
"""Traverse and separate the given *items* with a comma and append it to
the buffer. If *items* is a single item sequence, a trailing comma
will be added."""
if len(items) == 1:
traverser(items[0])
self.write(",")
else:
self.interleave(lambda: self.write(", "), traverser, items)
def maybe_newline(self):
"""Adds a newline if it isn't the start of generated source"""
if self._source:
self.write("\n")
def maybe_semicolon(self):
"""Adds a "; " delimiter if it isn't the start of generated source"""
if self._source:
self.write("; ")
def fill(self, text="", *, allow_semicolon=True):
"""Indent a piece of text and append it, according to the current
indentation level, or only delineate with semicolon if applicable"""
if self._in_interactive and not self._indent and allow_semicolon:
self.maybe_semicolon()
self.write(text)
else:
self.maybe_newline()
self.write(" " * self._indent + text)
def write(self, *text):
"""Add new source parts"""
self._source.extend(text)
@contextmanager
def buffered(self, buffer = None):
if buffer is None:
buffer = []
original_source = self._source
self._source = buffer
yield buffer
self._source = original_source
@contextmanager
def block(self, *, extra = None):
"""A context manager for preparing the source for blocks. It adds
the character':', increases the indentation on enter and decreases
the indentation on exit. If *extra* is given, it will be directly
appended after the colon character.
"""
self.write(":")
if extra:
self.write(extra)
self._indent += 1
yield
self._indent -= 1
@contextmanager
def delimit(self, start, end):
"""A context manager for preparing the source for expressions. It adds
*start* to the buffer and enters, after exit it adds *end*."""
self.write(start)
yield
self.write(end)
def delimit_if(self, start, end, condition):
if condition:
return self.delimit(start, end)
else:
return nullcontext()
def require_parens(self, precedence, node):
"""Shortcut to adding precedence related parens"""
return self.delimit_if("(", ")", self.get_precedence(node) > precedence)
def get_precedence(self, node):
return self._precedences.get(node, _Precedence.TEST)
def set_precedence(self, precedence, *nodes):
for node in nodes:
self._precedences[node] = precedence
def get_raw_docstring(self, node):
"""If a docstring node is found in the body of the *node* parameter,
return that docstring node, None otherwise.
Logic mirrored from ``_PyAST_GetDocString``."""
if not isinstance(
node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)
) or len(node.body) < 1:
return None
node = node.body[0]
if not isinstance(node, Expr):
return None
node = node.value
if isinstance(node, Constant) and isinstance(node.value, str):
return node
def get_type_comment(self, node):
comment = self._type_ignores.get(node.lineno) or node.type_comment
if comment is not None:
return f" # type: {comment}"
def traverse(self, node):
if isinstance(node, list):
for item in node:
self.traverse(item)
else:
super().visit(node)
# Note: as visit() resets the output text, do NOT rely on
# NodeVisitor.generic_visit to handle any nodes (as it calls back in to
# the subclass visit() method, which resets self._source to an empty list)
def visit(self, node):
"""Outputs a source code string that, if converted back to an ast
(using ast.parse) will generate an AST equivalent to *node*"""
self._source = []
self.traverse(node)
return "".join(self._source)
def _write_docstring_and_traverse_body(self, node):
if (docstring := self.get_raw_docstring(node)):
self._write_docstring(docstring)
self.traverse(node.body[1:])
else:
self.traverse(node.body)
def visit_Module(self, node):
self._type_ignores = {
ignore.lineno: f"ignore{ignore.tag}"
for ignore in node.type_ignores
}
try:
self._write_docstring_and_traverse_body(node)
finally:
self._type_ignores.clear()
def visit_Interactive(self, node):
self._in_interactive = True
try:
self._write_docstring_and_traverse_body(node)
finally:
self._in_interactive = False
def visit_FunctionType(self, node):
with self.delimit("(", ")"):
self.interleave(
lambda: self.write(", "), self.traverse, node.argtypes
)
self.write(" -> ")
self.traverse(node.returns)
def visit_Expr(self, node):
self.fill()
self.set_precedence(_Precedence.YIELD, node.value)
self.traverse(node.value)
def visit_NamedExpr(self, node):
with self.require_parens(_Precedence.NAMED_EXPR, node):
self.set_precedence(_Precedence.ATOM, node.target, node.value)
self.traverse(node.target)
self.write(" := ")
self.traverse(node.value)
def visit_Import(self, node):
self.fill("import ")
self.interleave(lambda: self.write(", "), self.traverse, node.names)
def visit_ImportFrom(self, node):
self.fill("from ")
self.write("." * (node.level or 0))
if node.module:
self.write(node.module)
self.write(" import ")
self.interleave(lambda: self.write(", "), self.traverse, node.names)
def visit_Assign(self, node):
self.fill()
for target in node.targets:
self.set_precedence(_Precedence.TUPLE, target)
self.traverse(target)
self.write(" = ")
self.traverse(node.value)
if type_comment := self.get_type_comment(node):
self.write(type_comment)
def visit_AugAssign(self, node):
self.fill()
self.traverse(node.target)
self.write(" " + self.binop[node.op.__class__.__name__] + "= ")
self.traverse(node.value)
def visit_AnnAssign(self, node):
self.fill()
with self.delimit_if("(", ")", not node.simple and isinstance(node.target, Name)):
self.traverse(node.target)
self.write(": ")
self.traverse(node.annotation)
if node.value:
self.write(" = ")
self.traverse(node.value)
def visit_Return(self, node):
self.fill("return")
if node.value:
self.write(" ")
self.traverse(node.value)
def visit_Pass(self, node):
self.fill("pass")
def visit_Break(self, node):
self.fill("break")
def visit_Continue(self, node):
self.fill("continue")
def visit_Delete(self, node):
self.fill("del ")
self.interleave(lambda: self.write(", "), self.traverse, node.targets)
def visit_Assert(self, node):
self.fill("assert ")
self.traverse(node.test)
if node.msg:
self.write(", ")
self.traverse(node.msg)
def visit_Global(self, node):
self.fill("global ")
self.interleave(lambda: self.write(", "), self.write, node.names)
def visit_Nonlocal(self, node):
self.fill("nonlocal ")
self.interleave(lambda: self.write(", "), self.write, node.names)
def visit_Await(self, node):
with self.require_parens(_Precedence.AWAIT, node):
self.write("await")
if node.value:
self.write(" ")
self.set_precedence(_Precedence.ATOM, node.value)
self.traverse(node.value)
def visit_Yield(self, node):
with self.require_parens(_Precedence.YIELD, node):
self.write("yield")
if node.value:
self.write(" ")
self.set_precedence(_Precedence.ATOM, node.value)
self.traverse(node.value)
def visit_YieldFrom(self, node):
with self.require_parens(_Precedence.YIELD, node):
self.write("yield from ")
if not node.value:
raise ValueError("Node can't be used without a value attribute.")
self.set_precedence(_Precedence.ATOM, node.value)
self.traverse(node.value)
def visit_Raise(self, node):
self.fill("raise")
if not node.exc:
if node.cause:
raise ValueError(f"Node can't use cause without an exception.")
return
self.write(" ")
self.traverse(node.exc)
if node.cause:
self.write(" from ")
self.traverse(node.cause)
def do_visit_try(self, node):
self.fill("try", allow_semicolon=False)
with self.block():
self.traverse(node.body)
for ex in node.handlers:
self.traverse(ex)
if node.orelse:
self.fill("else", allow_semicolon=False)
with self.block():
self.traverse(node.orelse)
if node.finalbody:
self.fill("finally", allow_semicolon=False)
with self.block():
self.traverse(node.finalbody)
def visit_Try(self, node):
prev_in_try_star = self._in_try_star
try:
self._in_try_star = False
self.do_visit_try(node)
finally:
self._in_try_star = prev_in_try_star
def visit_TryStar(self, node):
prev_in_try_star = self._in_try_star
try:
self._in_try_star = True
self.do_visit_try(node)
finally:
self._in_try_star = prev_in_try_star
def visit_ExceptHandler(self, node):
self.fill("except*" if self._in_try_star else "except", allow_semicolon=False)
if node.type:
self.write(" ")
self.traverse(node.type)
if node.name:
self.write(" as ")
self.write(node.name)
with self.block():
self.traverse(node.body)
def visit_ClassDef(self, node):
self.maybe_newline()
for deco in node.decorator_list:
self.fill("@", allow_semicolon=False)
self.traverse(deco)
self.fill("class " + node.name, allow_semicolon=False)
if hasattr(node, "type_params"):
self._type_params_helper(node.type_params)
with self.delimit_if("(", ")", condition = node.bases or node.keywords):
comma = False
for e in node.bases:
if comma:
self.write(", ")
else:
comma = True
self.traverse(e)
for e in node.keywords:
if comma:
self.write(", ")
else:
comma = True
self.traverse(e)
with self.block():
self._write_docstring_and_traverse_body(node)
def visit_FunctionDef(self, node):
self._function_helper(node, "def")
def visit_AsyncFunctionDef(self, node):
self._function_helper(node, "async def")
def _function_helper(self, node, fill_suffix):
self.maybe_newline()
for deco in node.decorator_list:
self.fill("@", allow_semicolon=False)
self.traverse(deco)
def_str = fill_suffix + " " + node.name
self.fill(def_str, allow_semicolon=False)
if hasattr(node, "type_params"):
self._type_params_helper(node.type_params)
with self.delimit("(", ")"):
self.traverse(node.args)
if node.returns:
self.write(" -> ")
self.traverse(node.returns)
with self.block(extra=self.get_type_comment(node)):
self._write_docstring_and_traverse_body(node)
def _type_params_helper(self, type_params):
if type_params is not None and len(type_params) > 0:
with self.delimit("[", "]"):
self.interleave(lambda: self.write(", "), self.traverse, type_params)
def visit_TypeVar(self, node):
self.write(node.name)
if node.bound:
self.write(": ")
self.traverse(node.bound)
if node.default_value:
self.write(" = ")
self.traverse(node.default_value)
def visit_TypeVarTuple(self, node):
self.write("*" + node.name)
if node.default_value:
self.write(" = ")
self.traverse(node.default_value)
def visit_ParamSpec(self, node):
self.write("**" + node.name)
if node.default_value:
self.write(" = ")
self.traverse(node.default_value)
def visit_TypeAlias(self, node):
self.fill("type ")
self.traverse(node.name)
self._type_params_helper(node.type_params)
self.write(" = ")
self.traverse(node.value)
def visit_For(self, node):
self._for_helper("for ", node)
def visit_AsyncFor(self, node):
self._for_helper("async for ", node)
def _for_helper(self, fill, node):
self.fill(fill, allow_semicolon=False)
self.set_precedence(_Precedence.TUPLE, node.target)
self.traverse(node.target)
self.write(" in ")
self.traverse(node.iter)
with self.block(extra=self.get_type_comment(node)):
self.traverse(node.body)
if node.orelse:
self.fill("else", allow_semicolon=False)
with self.block():
self.traverse(node.orelse)
def visit_If(self, node):
self.fill("if ", allow_semicolon=False)
self.traverse(node.test)
with self.block():
self.traverse(node.body)
# collapse nested ifs into equivalent elifs.
while node.orelse and len(node.orelse) == 1 and isinstance(node.orelse[0], If):
node = node.orelse[0]
self.fill("elif ", allow_semicolon=False)
self.traverse(node.test)
with self.block():
self.traverse(node.body)
# final else
if node.orelse:
self.fill("else", allow_semicolon=False)
with self.block():
self.traverse(node.orelse)
def visit_While(self, node):
self.fill("while ", allow_semicolon=False)
self.traverse(node.test)
with self.block():
self.traverse(node.body)
if node.orelse:
self.fill("else", allow_semicolon=False)
with self.block():
self.traverse(node.orelse)
def visit_With(self, node):
self.fill("with ", allow_semicolon=False)
self.interleave(lambda: self.write(", "), self.traverse, node.items)
with self.block(extra=self.get_type_comment(node)):
self.traverse(node.body)
def visit_AsyncWith(self, node):
self.fill("async with ", allow_semicolon=False)
self.interleave(lambda: self.write(", "), self.traverse, node.items)
with self.block(extra=self.get_type_comment(node)):
self.traverse(node.body)
def _str_literal_helper(
self, string, *, quote_types=_ALL_QUOTES, escape_special_whitespace=False
):
"""Helper for writing string literals, minimizing escapes.
Returns the tuple (string literal to write, possible quote types).
"""
def escape_char(c):
# \n and \t are non-printable, but we only escape them if
# escape_special_whitespace is True
if not escape_special_whitespace and c in "\n\t":
return c
# Always escape backslashes and other non-printable characters
if c == "\\" or not c.isprintable():
return c.encode("unicode_escape").decode("ascii")
return c
escaped_string = "".join(map(escape_char, string))
possible_quotes = quote_types
if "\n" in escaped_string:
possible_quotes = [q for q in possible_quotes if q in _MULTI_QUOTES]
possible_quotes = [q for q in possible_quotes if q not in escaped_string]
if not possible_quotes:
# If there aren't any possible_quotes, fallback to using repr
# on the original string. Try to use a quote from quote_types,
# e.g., so that we use triple quotes for docstrings.
string = repr(string)
quote = next((q for q in quote_types if string[0] in q), string[0])
return string[1:-1], [quote]
if escaped_string:
# Sort so that we prefer '''"''' over """\""""
possible_quotes.sort(key=lambda q: q[0] == escaped_string[-1])
# If we're using triple quotes and we'd need to escape a final
# quote, escape it
if possible_quotes[0][0] == escaped_string[-1]:
assert len(possible_quotes[0]) == 3
escaped_string = escaped_string[:-1] + "\\" + escaped_string[-1]
return escaped_string, possible_quotes
def _write_str_avoiding_backslashes(self, string, *, quote_types=_ALL_QUOTES):
"""Write string literal value with a best effort attempt to avoid backslashes."""
string, quote_types = self._str_literal_helper(string, quote_types=quote_types)
quote_type = quote_types[0]
self.write(f"{quote_type}{string}{quote_type}")
def _ftstring_helper(self, parts):
new_parts = []
quote_types = list(_ALL_QUOTES)
fallback_to_repr = False
for value, is_constant in parts:
if is_constant:
value, new_quote_types = self._str_literal_helper(
value,
quote_types=quote_types,
escape_special_whitespace=True,
)
if set(new_quote_types).isdisjoint(quote_types):
fallback_to_repr = True
break
quote_types = new_quote_types
else:
if "\n" in value:
quote_types = [q for q in quote_types if q in _MULTI_QUOTES]
assert quote_types
new_quote_types = [q for q in quote_types if q not in value]
if new_quote_types:
quote_types = new_quote_types
new_parts.append(value)
if fallback_to_repr:
# If we weren't able to find a quote type that works for all parts
# of the JoinedStr, fallback to using repr and triple single quotes.
quote_types = ["'''"]
new_parts.clear()
for value, is_constant in parts:
if is_constant:
value = repr('"' + value) # force repr to use single quotes
expected_prefix = "'\""
assert value.startswith(expected_prefix), repr(value)
value = value[len(expected_prefix):-1]
new_parts.append(value)
value = "".join(new_parts)
quote_type = quote_types[0]
self.write(f"{quote_type}{value}{quote_type}")
def _write_ftstring(self, values, prefix):
self.write(prefix)
fstring_parts = []
for value in values:
with self.buffered() as buffer:
self._write_ftstring_inner(value)
fstring_parts.append(
("".join(buffer), isinstance(value, Constant))
)
self._ftstring_helper(fstring_parts)
def visit_JoinedStr(self, node):
self._write_ftstring(node.values, "f")
def visit_TemplateStr(self, node):
self._write_ftstring(node.values, "t")
def _write_ftstring_inner(self, node, is_format_spec=False):
if isinstance(node, JoinedStr):
# for both the f-string itself, and format_spec
for value in node.values:
self._write_ftstring_inner(value, is_format_spec=is_format_spec)
elif isinstance(node, Constant) and isinstance(node.value, str):
value = node.value.replace("{", "{{").replace("}", "}}")
if is_format_spec:
value = value.replace("\\", "\\\\")
value = value.replace("'", "\\'")
value = value.replace('"', '\\"')
value = value.replace("\n", "\\n")
self.write(value)
elif isinstance(node, FormattedValue):
self.visit_FormattedValue(node)
elif isinstance(node, Interpolation):
self.visit_Interpolation(node)
else:
raise ValueError(f"Unexpected node inside JoinedStr, {node!r}")
def _unparse_interpolation_value(self, inner):
unparser = type(self)()
unparser.set_precedence(_Precedence.TEST.next(), inner)
return unparser.visit(inner)
def _write_interpolation(self, node, use_str_attr=False):
with self.delimit("{", "}"):
if use_str_attr:
expr = node.str
else:
expr = self._unparse_interpolation_value(node.value)
if expr.startswith("{"):
# Separate pair of opening brackets as "{ {"
self.write(" ")
self.write(expr)
if node.conversion != -1:
self.write(f"!{chr(node.conversion)}")
if node.format_spec:
self.write(":")
self._write_ftstring_inner(node.format_spec, is_format_spec=True)
def visit_FormattedValue(self, node):
self._write_interpolation(node)
def visit_Interpolation(self, node):
# If `str` is set to `None`, use the `value` to generate the source code.
self._write_interpolation(node, use_str_attr=node.str is not None)
def visit_Name(self, node):
self.write(node.id)
def _write_docstring(self, node):
self.fill(allow_semicolon=False)
if node.kind == "u":
self.write("u")
self._write_str_avoiding_backslashes(node.value, quote_types=_MULTI_QUOTES)
def _write_constant(self, value):
if isinstance(value, (float, complex)):
# Substitute overflowing decimal literal for AST infinities,
# and inf - inf for NaNs.
self.write(
repr(value)
.replace("inf", _INFSTR)
.replace("nan", f"({_INFSTR}-{_INFSTR})")
)
else:
self.write(repr(value))
def visit_Constant(self, node):
value = node.value
if isinstance(value, tuple):
with self.delimit("(", ")"):
self.items_view(self._write_constant, value)
elif value is ...:
self.write("...")
else:
if node.kind == "u":
self.write("u")
self._write_constant(node.value)
def visit_List(self, node):
with self.delimit("[", "]"):
self.interleave(lambda: self.write(", "), self.traverse, node.elts)
def visit_ListComp(self, node):
with self.delimit("[", "]"):
self.traverse(node.elt)
for gen in node.generators:
self.traverse(gen)
def visit_GeneratorExp(self, node):
with self.delimit("(", ")"):
self.traverse(node.elt)
for gen in node.generators:
self.traverse(gen)
def visit_SetComp(self, node):
with self.delimit("{", "}"):
self.traverse(node.elt)
for gen in node.generators:
self.traverse(gen)
def visit_DictComp(self, node):
with self.delimit("{", "}"):
self.traverse(node.key)
self.write(": ")
self.traverse(node.value)
for gen in node.generators:
self.traverse(gen)
def visit_comprehension(self, node):
if node.is_async:
self.write(" async for ")
else:
self.write(" for ")
self.set_precedence(_Precedence.TUPLE, node.target)
self.traverse(node.target)
self.write(" in ")
self.set_precedence(_Precedence.TEST.next(), node.iter, *node.ifs)
self.traverse(node.iter)
for if_clause in node.ifs:
self.write(" if ")
self.traverse(if_clause)
def visit_IfExp(self, node):
with self.require_parens(_Precedence.TEST, node):
self.set_precedence(_Precedence.TEST.next(), node.body, node.test)
self.traverse(node.body)
self.write(" if ")
self.traverse(node.test)
self.write(" else ")
self.set_precedence(_Precedence.TEST, node.orelse)
self.traverse(node.orelse)
def visit_Set(self, node):
if node.elts:
with self.delimit("{", "}"):
self.interleave(lambda: self.write(", "), self.traverse, node.elts)
else:
# `{}` would be interpreted as a dictionary literal, and
# `set` might be shadowed. Thus:
self.write('{*()}')
def visit_Dict(self, node):
def write_key_value_pair(k, v):
self.traverse(k)
self.write(": ")
self.traverse(v)
def write_item(item):
k, v = item
if k is None:
# for dictionary unpacking operator in dicts {**{'y': 2}}
# see PEP 448 for details
self.write("**")
self.set_precedence(_Precedence.EXPR, v)
self.traverse(v)
else:
write_key_value_pair(k, v)
with self.delimit("{", "}"):
self.interleave(
lambda: self.write(", "), write_item, zip(node.keys, node.values)
)
def visit_Tuple(self, node):
with self.delimit_if(
"(",
")",
len(node.elts) == 0 or self.get_precedence(node) > _Precedence.TUPLE
):
self.items_view(self.traverse, node.elts)
unop = {"Invert": "~", "Not": "not", "UAdd": "+", "USub": "-"}
unop_precedence = {
"not": _Precedence.NOT,
"~": _Precedence.FACTOR,
"+": _Precedence.FACTOR,
"-": _Precedence.FACTOR,
}
def visit_UnaryOp(self, node):
operator = self.unop[node.op.__class__.__name__]
operator_precedence = self.unop_precedence[operator]
with self.require_parens(operator_precedence, node):
self.write(operator)
# factor prefixes (+, -, ~) shouldn't be separated
# from the value they belong, (e.g: +1 instead of + 1)
if operator_precedence is not _Precedence.FACTOR:
self.write(" ")
self.set_precedence(operator_precedence, node.operand)
self.traverse(node.operand)
binop = {
"Add": "+",
"Sub": "-",
"Mult": "*",
"MatMult": "@",
"Div": "/",
"Mod": "%",
"LShift": "<<",
"RShift": ">>",
"BitOr": "|",
"BitXor": "^",
"BitAnd": "&",
"FloorDiv": "//",
"Pow": "**",
}
binop_precedence = {
"+": _Precedence.ARITH,
"-": _Precedence.ARITH,
"*": _Precedence.TERM,
"@": _Precedence.TERM,
"/": _Precedence.TERM,
"%": _Precedence.TERM,
"<<": _Precedence.SHIFT,
">>": _Precedence.SHIFT,
"|": _Precedence.BOR,
"^": _Precedence.BXOR,
"&": _Precedence.BAND,
"//": _Precedence.TERM,
"**": _Precedence.POWER,
}
binop_rassoc = frozenset(("**",))
def visit_BinOp(self, node):
operator = self.binop[node.op.__class__.__name__]
operator_precedence = self.binop_precedence[operator]
with self.require_parens(operator_precedence, node):
if operator in self.binop_rassoc:
left_precedence = operator_precedence.next()
right_precedence = operator_precedence
else:
left_precedence = operator_precedence
right_precedence = operator_precedence.next()
self.set_precedence(left_precedence, node.left)
self.traverse(node.left)
self.write(f" {operator} ")
self.set_precedence(right_precedence, node.right)
self.traverse(node.right)
cmpops = {
"Eq": "==",
"NotEq": "!=",
"Lt": "<",
"LtE": "<=",
"Gt": ">",
"GtE": ">=",
"Is": "is",
"IsNot": "is not",
"In": "in",
"NotIn": "not in",
}
def visit_Compare(self, node):
with self.require_parens(_Precedence.CMP, node):
self.set_precedence(_Precedence.CMP.next(), node.left, *node.comparators)
self.traverse(node.left)
for o, e in zip(node.ops, node.comparators):
self.write(" " + self.cmpops[o.__class__.__name__] + " ")
self.traverse(e)
boolops = {"And": "and", "Or": "or"}
boolop_precedence = {"and": _Precedence.AND, "or": _Precedence.OR}
def visit_BoolOp(self, node):
operator = self.boolops[node.op.__class__.__name__]
operator_precedence = self.boolop_precedence[operator]
def increasing_level_traverse(node):
nonlocal operator_precedence
operator_precedence = operator_precedence.next()
self.set_precedence(operator_precedence, node)
self.traverse(node)
with self.require_parens(operator_precedence, node):
s = f" {operator} "
self.interleave(lambda: self.write(s), increasing_level_traverse, node.values)
def visit_Attribute(self, node):
self.set_precedence(_Precedence.ATOM, node.value)
self.traverse(node.value)
# Special case: 3.__abs__() is a syntax error, so if node.value
# is an integer literal then we need to either parenthesize
# it or add an extra space to get 3 .__abs__().
if isinstance(node.value, Constant) and isinstance(node.value.value, int):
self.write(" ")
self.write(".")
self.write(node.attr)
def visit_Call(self, node):
self.set_precedence(_Precedence.ATOM, node.func)
self.traverse(node.func)
with self.delimit("(", ")"):
comma = False
for e in node.args:
if comma:
self.write(", ")
else:
comma = True
self.traverse(e)
for e in node.keywords:
if comma:
self.write(", ")
else:
comma = True
self.traverse(e)
def visit_Subscript(self, node):
def is_non_empty_tuple(slice_value):
return (
isinstance(slice_value, Tuple)
and slice_value.elts
)
self.set_precedence(_Precedence.ATOM, node.value)
self.traverse(node.value)
with self.delimit("[", "]"):
if is_non_empty_tuple(node.slice):
# parentheses can be omitted if the tuple isn't empty
self.items_view(self.traverse, node.slice.elts)
else:
self.traverse(node.slice)
def visit_Starred(self, node):
self.write("*")
self.set_precedence(_Precedence.EXPR, node.value)
self.traverse(node.value)
def visit_Ellipsis(self, node):
self.write("...")
def visit_Slice(self, node):
if node.lower:
self.traverse(node.lower)
self.write(":")
if node.upper:
self.traverse(node.upper)
if node.step:
self.write(":")
self.traverse(node.step)
def visit_Match(self, node):
self.fill("match ", allow_semicolon=False)
self.traverse(node.subject)
with self.block():
for case in node.cases:
self.traverse(case)
def visit_arg(self, node):
self.write(node.arg)
if node.annotation:
self.write(": ")
self.traverse(node.annotation)
def visit_arguments(self, node):
first = True
# normal arguments
all_args = node.posonlyargs + node.args
defaults = [None] * (len(all_args) - len(node.defaults)) + node.defaults
for index, elements in enumerate(zip(all_args, defaults), 1):
a, d = elements
if first:
first = False
else:
self.write(", ")
self.traverse(a)
if d:
self.write("=")
self.traverse(d)
if index == len(node.posonlyargs):
self.write(", /")
# varargs, or bare '*' if no varargs but keyword-only arguments present
if node.vararg or node.kwonlyargs:
if first:
first = False
else:
self.write(", ")
self.write("*")
if node.vararg:
self.write(node.vararg.arg)
if node.vararg.annotation:
self.write(": ")
self.traverse(node.vararg.annotation)
# keyword-only arguments
if node.kwonlyargs:
for a, d in zip(node.kwonlyargs, node.kw_defaults):
self.write(", ")
self.traverse(a)
if d:
self.write("=")
self.traverse(d)
# kwargs
if node.kwarg:
if first:
first = False
else:
self.write(", ")
self.write("**" + node.kwarg.arg)
if node.kwarg.annotation:
self.write(": ")
self.traverse(node.kwarg.annotation)
def visit_keyword(self, node):
if node.arg is None:
self.write("**")
else:
self.write(node.arg)
self.write("=")
self.traverse(node.value)
def visit_Lambda(self, node):
with self.require_parens(_Precedence.TEST, node):
self.write("lambda")
with self.buffered() as buffer:
self.traverse(node.args)
if buffer:
self.write(" ", *buffer)
self.write(": ")
self.set_precedence(_Precedence.TEST, node.body)
self.traverse(node.body)
def visit_alias(self, node):
self.write(node.name)
if node.asname:
self.write(" as " + node.asname)
def visit_withitem(self, node):
self.traverse(node.context_expr)
if node.optional_vars:
self.write(" as ")
self.traverse(node.optional_vars)
def visit_match_case(self, node):
self.fill("case ", allow_semicolon=False)
self.traverse(node.pattern)
if node.guard:
self.write(" if ")
self.traverse(node.guard)
with self.block():
self.traverse(node.body)
def visit_MatchValue(self, node):
self.traverse(node.value)
def visit_MatchSingleton(self, node):
self._write_constant(node.value)
def visit_MatchSequence(self, node):
with self.delimit("[", "]"):
self.interleave(
lambda: self.write(", "), self.traverse, node.patterns
)
def visit_MatchStar(self, node):
name = node.name
if name is None:
name = "_"
self.write(f"*{name}")
def visit_MatchMapping(self, node):
def write_key_pattern_pair(pair):
k, p = pair
self.traverse(k)
self.write(": ")
self.traverse(p)
with self.delimit("{", "}"):
keys = node.keys
self.interleave(
lambda: self.write(", "),
write_key_pattern_pair,
zip(keys, node.patterns, strict=True),
)
rest = node.rest
if rest is not None:
if keys:
self.write(", ")
self.write(f"**{rest}")
def visit_MatchClass(self, node):
self.set_precedence(_Precedence.ATOM, node.cls)
self.traverse(node.cls)
with self.delimit("(", ")"):
patterns = node.patterns
self.interleave(
lambda: self.write(", "), self.traverse, patterns
)
attrs = node.kwd_attrs
if attrs:
def write_attr_pattern(pair):
attr, pattern = pair
self.write(f"{attr}=")
self.traverse(pattern)
if patterns:
self.write(", ")
self.interleave(
lambda: self.write(", "),
write_attr_pattern,
zip(attrs, node.kwd_patterns, strict=True),
)
def visit_MatchAs(self, node):
name = node.name
pattern = node.pattern
if name is None:
self.write("_")
elif pattern is None:
self.write(node.name)
else:
with self.require_parens(_Precedence.TEST, node):
self.set_precedence(_Precedence.BOR, node.pattern)
self.traverse(node.pattern)
self.write(f" as {node.name}")
def visit_MatchOr(self, node):
with self.require_parens(_Precedence.BOR, node):
self.set_precedence(_Precedence.BOR.next(), *node.patterns)
self.interleave(lambda: self.write(" | "), self.traverse, node.patterns) | python | github | https://github.com/python/cpython | Lib/_ast_unparse.py |
from urlparse import urlparse
from threading import Thread
import httplib, sys, multiprocessing
from Queue import Queue
import simplejson
import time
import base64
num_processes = int(sys.argv[1])
num_threads = int(sys.argv[2])
num_requests = int(sys.argv[3])
num_metrics_per_request = int(sys.argv[4])
series_name = sys.argv[5]
username = sys.argv[6]
password = sys.argv[7]
print num_processes * num_threads * num_requests * num_metrics_per_request
auth = base64.standard_b64encode('%s:%s' % (username,password)).replace('\n','')
authorization = "Basic "
authorization += auth
headers = {"Content-type": "application/json", "Authorization": authorization }
urls = [
'http://localhost:8086/db/testmetrics/series'
]
def doWork(q):
url=q.get()
for x in xrange(num_requests):
status,response=getStatus(url)
doSomethingWithResult(status,response)
q.task_done()
def getStatus(ourl):
try:
url = urlparse(ourl)
conn = httplib.HTTPConnection(url.netloc)
body = []
points = []
for i in xrange(num_metrics_per_request):
epoch = (int)(time.time()) - 120
points.append([epoch,i])
body.append({"name": series_name, "columns": ["timestamp", "value"], "points": points})
body = simplejson.dumps(body)
#print body
conn.request("POST", url.path, body, headers)
res = conn.getresponse()
if res.status != 200:
raise Exception(res.status)
return res.status, ourl
except Exception as ex:
print ex
return "error", ourl
def doSomethingWithResult(status, url):
pass
def doProcess():
q=Queue(num_threads)
for i in range(num_threads):
t=Thread(target=doWork, args=(q,))
t.daemon=True
t.start()
try:
for i in xrange(num_threads):
url = urls[i%len(urls)]
q.put(url.strip())
q.join()
except KeyboardInterrupt:
sys.exit(1)
if __name__ == '__main__':
jobs = []
for i in range(num_processes):
p = multiprocessing.Process(target=doProcess)
jobs.append(p)
p.start()
p.join() | unknown | codeparrot/codeparrot-clean | ||
""" generic mechanism for marking and selecting python functions. """
import inspect
class MarkerError(Exception):
"""Error in use of a pytest marker/attribute."""
def pytest_namespace():
return {'mark': MarkGenerator()}
def pytest_addoption(parser):
group = parser.getgroup("general")
group._addoption(
'-k',
action="store", dest="keyword", default='', metavar="EXPRESSION",
help="only run tests which match the given substring expression. "
"An expression is a python evaluatable expression "
"where all names are substring-matched against test names "
"and their parent classes. Example: -k 'test_method or test_"
"other' matches all test functions and classes whose name "
"contains 'test_method' or 'test_other'. "
"Additionally keywords are matched to classes and functions "
"containing extra names in their 'extra_keyword_matches' set, "
"as well as functions which have names assigned directly to them."
)
group._addoption(
"-m",
action="store", dest="markexpr", default="", metavar="MARKEXPR",
help="only run tests matching given mark expression. "
"example: -m 'mark1 and not mark2'."
)
group.addoption(
"--markers", action="store_true",
help="show markers (builtin, plugin and per-project ones)."
)
parser.addini("markers", "markers for test functions", 'linelist')
def pytest_cmdline_main(config):
import _pytest.config
if config.option.markers:
config._do_configure()
tw = _pytest.config.create_terminal_writer(config)
for line in config.getini("markers"):
name, rest = line.split(":", 1)
tw.write("@pytest.mark.%s:" % name, bold=True)
tw.line(rest)
tw.line()
config._ensure_unconfigure()
return 0
pytest_cmdline_main.tryfirst = True
def pytest_collection_modifyitems(items, config):
keywordexpr = config.option.keyword.lstrip()
matchexpr = config.option.markexpr
if not keywordexpr and not matchexpr:
return
# pytest used to allow "-" for negating
# but today we just allow "-" at the beginning, use "not" instead
# we probably remove "-" alltogether soon
if keywordexpr.startswith("-"):
keywordexpr = "not " + keywordexpr[1:]
selectuntil = False
if keywordexpr[-1:] == ":":
selectuntil = True
keywordexpr = keywordexpr[:-1]
remaining = []
deselected = []
for colitem in items:
if keywordexpr and not matchkeyword(colitem, keywordexpr):
deselected.append(colitem)
else:
if selectuntil:
keywordexpr = None
if matchexpr:
if not matchmark(colitem, matchexpr):
deselected.append(colitem)
continue
remaining.append(colitem)
if deselected:
config.hook.pytest_deselected(items=deselected)
items[:] = remaining
class MarkMapping:
"""Provides a local mapping for markers where item access
resolves to True if the marker is present. """
def __init__(self, keywords):
mymarks = set()
for key, value in keywords.items():
if isinstance(value, MarkInfo) or isinstance(value, MarkDecorator):
mymarks.add(key)
self._mymarks = mymarks
def __getitem__(self, name):
return name in self._mymarks
class KeywordMapping:
"""Provides a local mapping for keywords.
Given a list of names, map any substring of one of these names to True.
"""
def __init__(self, names):
self._names = names
def __getitem__(self, subname):
for name in self._names:
if subname in name:
return True
return False
def matchmark(colitem, markexpr):
"""Tries to match on any marker names, attached to the given colitem."""
return eval(markexpr, {}, MarkMapping(colitem.keywords))
def matchkeyword(colitem, keywordexpr):
"""Tries to match given keyword expression to given collector item.
Will match on the name of colitem, including the names of its parents.
Only matches names of items which are either a :class:`Class` or a
:class:`Function`.
Additionally, matches on names in the 'extra_keyword_matches' set of
any item, as well as names directly assigned to test functions.
"""
mapped_names = set()
# Add the names of the current item and any parent items
import pytest
for item in colitem.listchain():
if not isinstance(item, pytest.Instance):
mapped_names.add(item.name)
# Add the names added as extra keywords to current or parent items
for name in colitem.listextrakeywords():
mapped_names.add(name)
# Add the names attached to the current function through direct assignment
if hasattr(colitem, 'function'):
for name in colitem.function.__dict__:
mapped_names.add(name)
mapping = KeywordMapping(mapped_names)
if " " not in keywordexpr:
# special case to allow for simple "-k pass" and "-k 1.3"
return mapping[keywordexpr]
elif keywordexpr.startswith("not ") and " " not in keywordexpr[4:]:
return not mapping[keywordexpr[4:]]
return eval(keywordexpr, {}, mapping)
def pytest_configure(config):
import pytest
if config.option.strict:
pytest.mark._config = config
class MarkGenerator:
""" Factory for :class:`MarkDecorator` objects - exposed as
a ``pytest.mark`` singleton instance. Example::
import pytest
@pytest.mark.slowtest
def test_function():
pass
will set a 'slowtest' :class:`MarkInfo` object
on the ``test_function`` object. """
def __getattr__(self, name):
if name[0] == "_":
raise AttributeError("Marker name must NOT start with underscore")
if hasattr(self, '_config'):
self._check(name)
return MarkDecorator(name)
def _check(self, name):
try:
if name in self._markers:
return
except AttributeError:
pass
self._markers = l = set()
for line in self._config.getini("markers"):
beginning = line.split(":", 1)
x = beginning[0].split("(", 1)[0]
l.add(x)
if name not in self._markers:
raise AttributeError("%r not a registered marker" % (name,))
def istestfunc(func):
return hasattr(func, "__call__") and \
getattr(func, "__name__", "<lambda>") != "<lambda>"
class MarkDecorator:
""" A decorator for test functions and test classes. When applied
it will create :class:`MarkInfo` objects which may be
:ref:`retrieved by hooks as item keywords <excontrolskip>`.
MarkDecorator instances are often created like this::
mark1 = pytest.mark.NAME # simple MarkDecorator
mark2 = pytest.mark.NAME(name1=value) # parametrized MarkDecorator
and can then be applied as decorators to test functions::
@mark2
def test_function():
pass
When a MarkDecorator instance is called it does the following:
1. If called with a single class as its only positional argument and no
additional keyword arguments, it attaches itself to the class so it
gets applied automatically to all test cases found in that class.
2. If called with a single function as its only positional argument and
no additional keyword arguments, it attaches a MarkInfo object to the
function, containing all the arguments already stored internally in
the MarkDecorator.
3. When called in any other case, it performs a 'fake construction' call,
i.e. it returns a new MarkDecorator instance with the original
MarkDecorator's content updated with the arguments passed to this
call.
Note: The rules above prevent MarkDecorator objects from storing only a
single function or class reference as their positional argument with no
additional keyword or positional arguments.
"""
def __init__(self, name, args=None, kwargs=None):
self.name = name
self.args = args or ()
self.kwargs = kwargs or {}
@property
def markname(self):
return self.name # for backward-compat (2.4.1 had this attr)
def __repr__(self):
d = self.__dict__.copy()
name = d.pop('name')
return "<MarkDecorator %r %r>" % (name, d)
def __call__(self, *args, **kwargs):
""" if passed a single callable argument: decorate it with mark info.
otherwise add *args/**kwargs in-place to mark information. """
if args and not kwargs:
func = args[0]
is_class = inspect.isclass(func)
if len(args) == 1 and (istestfunc(func) or is_class):
if is_class:
if hasattr(func, 'pytestmark'):
mark_list = func.pytestmark
if not isinstance(mark_list, list):
mark_list = [mark_list]
# always work on a copy to avoid updating pytestmark
# from a superclass by accident
mark_list = mark_list + [self]
func.pytestmark = mark_list
else:
func.pytestmark = [self]
else:
holder = getattr(func, self.name, None)
if holder is None:
holder = MarkInfo(
self.name, self.args, self.kwargs
)
setattr(func, self.name, holder)
else:
holder.add(self.args, self.kwargs)
return func
kw = self.kwargs.copy()
kw.update(kwargs)
args = self.args + args
return self.__class__(self.name, args=args, kwargs=kw)
def extract_argvalue(maybe_marked_args):
# TODO: incorrect mark data, the old code wanst able to collect lists
# individual parametrized argument sets can be wrapped in a series
# of markers in which case we unwrap the values and apply the mark
# at Function init
newmarks = {}
argval = maybe_marked_args
while isinstance(argval, MarkDecorator):
newmark = MarkDecorator(argval.markname,
argval.args[:-1], argval.kwargs)
newmarks[newmark.markname] = newmark
argval = argval.args[-1]
return argval, newmarks
class MarkInfo:
""" Marking object created by :class:`MarkDecorator` instances. """
def __init__(self, name, args, kwargs):
#: name of attribute
self.name = name
#: positional argument list, empty if none specified
self.args = args
#: keyword argument dictionary, empty if nothing specified
self.kwargs = kwargs.copy()
self._arglist = [(args, kwargs.copy())]
def __repr__(self):
return "<MarkInfo %r args=%r kwargs=%r>" % (
self.name, self.args, self.kwargs
)
def add(self, args, kwargs):
""" add a MarkInfo with the given args and kwargs. """
self._arglist.append((args, kwargs))
self.args += args
self.kwargs.update(kwargs)
def __iter__(self):
""" yield MarkInfo objects each relating to a marking-call. """
for args, kwargs in self._arglist:
yield MarkInfo(self.name, args, kwargs) | unknown | codeparrot/codeparrot-clean |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.