content
stringlengths 1
1.05M
| input_ids
sequencelengths 1
883k
| ratio_char_token
float64 1
22.9
| token_count
int64 1
883k
|
---|---|---|---|
# ##########################################################
# FlatCAM: 2D Post-processing for Manufacturing #
# File Author: Marius Adrian Stanciu (c) #
# Date: 8/17/2019 #
# MIT Licence #
# ##########################################################
from tclCommands.TclCommand import *
| [
2,
1303,
29113,
14468,
7804,
2,
198,
2,
21939,
34,
2390,
25,
362,
35,
2947,
12,
36948,
329,
32760,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
9220,
6434,
25,
1526,
3754,
21462,
7299,
979,
84,
357,
66,
8,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
7536,
25,
807,
14,
1558,
14,
23344,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
17168,
10483,
594,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
198,
2,
1303,
29113,
14468,
7804,
2,
198,
198,
6738,
256,
565,
6935,
1746,
13,
51,
565,
21575,
1330,
1635,
628
] | 2.165775 | 187 |
# -*- coding: utf-8 -*-
"""Class for the ogs COMPONENT_PROPERTIES file."""
from ogs5py.fileclasses.base import BlockFile
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
201,
198,
37811,
9487,
329,
262,
267,
14542,
24301,
1340,
3525,
62,
4805,
3185,
17395,
11015,
2393,
526,
15931,
201,
198,
6738,
267,
14542,
20,
9078,
13,
7753,
37724,
13,
8692,
1330,
9726,
8979,
201,
198,
201,
198
] | 2.470588 | 51 |
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import datetime
import random
import uuid
import freezegun
import http.client
from testtools import matchers
from keystone.common import provider_api
import keystone.conf
from keystone import exception
from keystone.resource.backends import base as resource_base
from keystone.tests import unit
from keystone.tests.unit import test_v3
CONF = keystone.conf.CONF
PROVIDERS = provider_api.ProviderAPIs
def test_get_effective_role_assignments(self):
"""Call ``GET /role_assignments?effective``.
Test Plan:
- Create two extra user for tests
- Add these users to a group
- Add a role assignment for the group on a domain
- Get a list of all role assignments, checking one has been added
- Then get a list of all effective role assignments - the group
assignment should have turned into assignments on the domain
for each of the group members.
"""
user1 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
user2 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
PROVIDERS.identity_api.add_user_to_group(user1['id'], self.group['id'])
PROVIDERS.identity_api.add_user_to_group(user2['id'], self.group['id'])
collection_url = '/role_assignments'
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
resource_url=collection_url)
existing_assignments = len(r.result.get('role_assignments'))
gd_entity = self.build_role_assignment_entity(domain_id=self.domain_id,
group_id=self.group_id,
role_id=self.role_id)
self.put(gd_entity['links']['assignment'])
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 1,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, gd_entity)
# Now re-read the collection asking for effective roles - this
# should mean the group assignment is translated into the two
# member user assignments
collection_url = '/role_assignments?effective'
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 2,
resource_url=collection_url)
ud_entity = self.build_role_assignment_entity(
link=gd_entity['links']['assignment'], domain_id=self.domain_id,
user_id=user1['id'], role_id=self.role_id)
self.assertRoleAssignmentInListResponse(r, ud_entity)
ud_entity = self.build_role_assignment_entity(
link=gd_entity['links']['assignment'], domain_id=self.domain_id,
user_id=user2['id'], role_id=self.role_id)
self.assertRoleAssignmentInListResponse(r, ud_entity)
def test_check_effective_values_for_role_assignments(self):
"""Call ``GET & HEAD /role_assignments?effective=value``.
Check the various ways of specifying the 'effective'
query parameter. If the 'effective' query parameter
is included then this should always be treated as meaning 'True'
unless it is specified as:
{url}?effective=0
This is by design to match the agreed way of handling
policy checking on query/filter parameters.
Test Plan:
- Create two extra user for tests
- Add these users to a group
- Add a role assignment for the group on a domain
- Get a list of all role assignments, checking one has been added
- Then issue various request with different ways of defining
the 'effective' query parameter. As we have tested the
correctness of the data coming back when we get effective roles
in other tests, here we just use the count of entities to
know if we are getting effective roles or not
"""
user1 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
user2 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
PROVIDERS.identity_api.add_user_to_group(user1['id'], self.group['id'])
PROVIDERS.identity_api.add_user_to_group(user2['id'], self.group['id'])
collection_url = '/role_assignments'
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
resource_url=collection_url)
existing_assignments = len(r.result.get('role_assignments'))
gd_entity = self.build_role_assignment_entity(domain_id=self.domain_id,
group_id=self.group_id,
role_id=self.role_id)
self.put(gd_entity['links']['assignment'])
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 1,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, gd_entity)
# Now re-read the collection asking for effective roles,
# using the most common way of defining "effective'. This
# should mean the group assignment is translated into the two
# member user assignments
collection_url = '/role_assignments?effective'
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 2,
resource_url=collection_url)
# Now set 'effective' to false explicitly - should get
# back the regular roles
collection_url = '/role_assignments?effective=0'
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 1,
resource_url=collection_url)
# Now try setting 'effective' to 'False' explicitly- this is
# NOT supported as a way of setting a query or filter
# parameter to false by design. Hence we should get back
# effective roles.
collection_url = '/role_assignments?effective=False'
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 2,
resource_url=collection_url)
# Now set 'effective' to True explicitly
collection_url = '/role_assignments?effective=True'
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(
r,
expected_length=existing_assignments + 2,
resource_url=collection_url)
def test_filtered_role_assignments(self):
"""Call ``GET /role_assignments?filters``.
Test Plan:
- Create extra users, group, role and project for tests
- Make the following assignments:
Give group1, role1 on project1 and domain
Give user1, role2 on project1 and domain
Make User1 a member of Group1
- Test a series of single filter list calls, checking that
the correct results are obtained
- Test a multi-filtered list call
- Test listing all effective roles for a given user
- Test the equivalent of the list of roles in a project scoped
token (all effective roles for a user on a project)
"""
# Since the default fixtures already assign some roles to the
# user it creates, we also need a new user that will not have any
# existing assignments
user1 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
user2 = unit.create_user(PROVIDERS.identity_api,
domain_id=self.domain['id'])
group1 = unit.new_group_ref(domain_id=self.domain['id'])
group1 = PROVIDERS.identity_api.create_group(group1)
PROVIDERS.identity_api.add_user_to_group(user1['id'], group1['id'])
PROVIDERS.identity_api.add_user_to_group(user2['id'], group1['id'])
project1 = unit.new_project_ref(domain_id=self.domain['id'])
PROVIDERS.resource_api.create_project(project1['id'], project1)
self.role1 = unit.new_role_ref()
PROVIDERS.role_api.create_role(self.role1['id'], self.role1)
self.role2 = unit.new_role_ref()
PROVIDERS.role_api.create_role(self.role2['id'], self.role2)
# Now add one of each of the six types of assignment
gd_entity = self.build_role_assignment_entity(
domain_id=self.domain_id, group_id=group1['id'],
role_id=self.role1['id'])
self.put(gd_entity['links']['assignment'])
ud_entity = self.build_role_assignment_entity(domain_id=self.domain_id,
user_id=user1['id'],
role_id=self.role2['id'])
self.put(ud_entity['links']['assignment'])
gp_entity = self.build_role_assignment_entity(
project_id=project1['id'],
group_id=group1['id'],
role_id=self.role1['id'])
self.put(gp_entity['links']['assignment'])
up_entity = self.build_role_assignment_entity(
project_id=project1['id'],
user_id=user1['id'],
role_id=self.role2['id'])
self.put(up_entity['links']['assignment'])
gs_entity = self.build_role_assignment_entity(
system='all',
group_id=group1['id'],
role_id=self.role1['id'])
self.put(gs_entity['links']['assignment'])
us_entity = self.build_role_assignment_entity(
system='all',
user_id=user1['id'],
role_id=self.role2['id'])
self.put(us_entity['links']['assignment'])
us2_entity = self.build_role_assignment_entity(
system='all',
user_id=user2['id'],
role_id=self.role2['id'])
self.put(us2_entity['links']['assignment'])
# Now list by various filters to make sure we get back the right ones
collection_url = ('/role_assignments?scope.project.id=%s' %
project1['id'])
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=2,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, up_entity)
self.assertRoleAssignmentInListResponse(r, gp_entity)
collection_url = ('/role_assignments?scope.domain.id=%s' %
self.domain['id'])
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=2,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, ud_entity)
self.assertRoleAssignmentInListResponse(r, gd_entity)
collection_url = '/role_assignments?user.id=%s' % user1['id']
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, up_entity)
self.assertRoleAssignmentInListResponse(r, ud_entity)
collection_url = '/role_assignments?group.id=%s' % group1['id']
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, gd_entity)
self.assertRoleAssignmentInListResponse(r, gp_entity)
collection_url = '/role_assignments?role.id=%s' % self.role1['id']
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, gd_entity)
self.assertRoleAssignmentInListResponse(r, gp_entity)
self.assertRoleAssignmentInListResponse(r, gs_entity)
collection_url = '/role_assignments?role.id=%s' % self.role2['id']
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=4,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, ud_entity)
self.assertRoleAssignmentInListResponse(r, up_entity)
self.assertRoleAssignmentInListResponse(r, us_entity)
# Let's try combining two filers together....
collection_url = (
'/role_assignments?user.id=%(user_id)s'
'&scope.project.id=%(project_id)s' % {
'user_id': user1['id'],
'project_id': project1['id']})
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=1,
resource_url=collection_url)
self.assertRoleAssignmentInListResponse(r, up_entity)
# Now for a harder one - filter for user with effective
# roles - this should return role assignment that were directly
# assigned as well as by virtue of group membership
collection_url = ('/role_assignments?effective&user.id=%s' %
user1['id'])
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=4,
resource_url=collection_url)
# Should have the two direct roles...
self.assertRoleAssignmentInListResponse(r, up_entity)
self.assertRoleAssignmentInListResponse(r, ud_entity)
# ...and the two via group membership...
gp1_link = self.build_role_assignment_link(
project_id=project1['id'],
group_id=group1['id'],
role_id=self.role1['id'])
gd1_link = self.build_role_assignment_link(domain_id=self.domain_id,
group_id=group1['id'],
role_id=self.role1['id'])
up1_entity = self.build_role_assignment_entity(
link=gp1_link, project_id=project1['id'],
user_id=user1['id'], role_id=self.role1['id'])
ud1_entity = self.build_role_assignment_entity(
link=gd1_link, domain_id=self.domain_id, user_id=user1['id'],
role_id=self.role1['id'])
self.assertRoleAssignmentInListResponse(r, up1_entity)
self.assertRoleAssignmentInListResponse(r, ud1_entity)
# ...and for the grand-daddy of them all, simulate the request
# that would generate the list of effective roles in a project
# scoped token.
collection_url = (
'/role_assignments?effective&user.id=%(user_id)s'
'&scope.project.id=%(project_id)s' % {
'user_id': user1['id'],
'project_id': project1['id']})
r = self.get(collection_url, expected_status=http.client.OK)
self.head(collection_url, expected_status=http.client.OK)
self.assertValidRoleAssignmentListResponse(r,
expected_length=2,
resource_url=collection_url)
# Should have one direct role and one from group membership...
self.assertRoleAssignmentInListResponse(r, up_entity)
self.assertRoleAssignmentInListResponse(r, up1_entity)
def test_list_system_role_assignments(self):
# create a bunch of roles
user_system_role_id = self._create_new_role()
user_domain_role_id = self._create_new_role()
user_project_role_id = self._create_new_role()
group_system_role_id = self._create_new_role()
group_domain_role_id = self._create_new_role()
group_project_role_id = self._create_new_role()
# create a user and grant the user a role on the system, domain, and
# project
user = self._create_user()
url = '/system/users/%s/roles/%s' % (user['id'], user_system_role_id)
self.put(url)
url = '/domains/%s/users/%s/roles/%s' % (
self.domain_id, user['id'], user_domain_role_id
)
self.put(url)
url = '/projects/%s/users/%s/roles/%s' % (
self.project_id, user['id'], user_project_role_id
)
self.put(url)
# create a group and grant the group a role on the system, domain, and
# project
group = self._create_group()
url = '/system/groups/%s/roles/%s' % (
group['id'], group_system_role_id
)
self.put(url)
url = '/domains/%s/groups/%s/roles/%s' % (
self.domain_id, group['id'], group_domain_role_id
)
self.put(url)
url = '/projects/%s/groups/%s/roles/%s' % (
self.project_id, group['id'], group_project_role_id
)
self.put(url)
# /v3/role_assignments?scope.system=all should return two assignments
response = self.get('/role_assignments?scope.system=all')
self.assertValidRoleAssignmentListResponse(response, expected_length=2)
for assignment in response.json_body['role_assignments']:
self.assertTrue(assignment['scope']['system']['all'])
if assignment.get('user'):
self.assertEqual(user_system_role_id, assignment['role']['id'])
if assignment.get('group'):
self.assertEqual(
group_system_role_id,
assignment['role']['id']
)
# /v3/role_assignments?scope_system=all&user.id=$USER_ID should return
# one role assignment
url = '/role_assignments?scope.system=all&user.id=%s' % user['id']
response = self.get(url)
self.assertValidRoleAssignmentListResponse(response, expected_length=1)
self.assertEqual(
user_system_role_id,
response.json_body['role_assignments'][0]['role']['id']
)
# /v3/role_assignments?scope_system=all&group.id=$GROUP_ID should
# return one role assignment
url = '/role_assignments?scope.system=all&group.id=%s' % group['id']
response = self.get(url)
self.assertValidRoleAssignmentListResponse(response, expected_length=1)
self.assertEqual(
group_system_role_id,
response.json_body['role_assignments'][0]['role']['id']
)
# /v3/role_assignments?user.id=$USER_ID should return 3 assignments
# and system should be in that list of assignments
url = '/role_assignments?user.id=%s' % user['id']
response = self.get(url)
self.assertValidRoleAssignmentListResponse(response, expected_length=3)
for assignment in response.json_body['role_assignments']:
if 'system' in assignment['scope']:
self.assertEqual(
user_system_role_id, assignment['role']['id']
)
if 'domain' in assignment['scope']:
self.assertEqual(
user_domain_role_id, assignment['role']['id']
)
if 'project' in assignment['scope']:
self.assertEqual(
user_project_role_id, assignment['role']['id']
)
# /v3/role_assignments?group.id=$GROUP_ID should return 3 assignments
# and system should be in that list of assignments
url = '/role_assignments?group.id=%s' % group['id']
response = self.get(url)
self.assertValidRoleAssignmentListResponse(response, expected_length=3)
for assignment in response.json_body['role_assignments']:
if 'system' in assignment['scope']:
self.assertEqual(
group_system_role_id, assignment['role']['id']
)
if 'domain' in assignment['scope']:
self.assertEqual(
group_domain_role_id, assignment['role']['id']
)
if 'project' in assignment['scope']:
self.assertEqual(
group_project_role_id, assignment['role']['id']
)
class RoleAssignmentBaseTestCase(test_v3.RestfulTestCase,
test_v3.AssignmentTestMixin):
"""Base class for testing /v3/role_assignments API behavior."""
MAX_HIERARCHY_BREADTH = 3
MAX_HIERARCHY_DEPTH = CONF.max_project_tree_depth - 1
def load_sample_data(self):
"""Create sample data to be used on tests.
Created data are i) a role and ii) a domain containing: a project
hierarchy and 3 users within 3 groups.
"""
def create_project_hierarchy(parent_id, depth):
"""Create a random project hierarchy."""
if depth == 0:
return
breadth = random.randint(1, self.MAX_HIERARCHY_BREADTH)
subprojects = []
for i in range(breadth):
subprojects.append(unit.new_project_ref(
domain_id=self.domain_id, parent_id=parent_id))
PROVIDERS.resource_api.create_project(
subprojects[-1]['id'], subprojects[-1]
)
new_parent = subprojects[random.randint(0, breadth - 1)]
create_project_hierarchy(new_parent['id'], depth - 1)
super(RoleAssignmentBaseTestCase, self).load_sample_data()
# Create a domain
self.domain = unit.new_domain_ref()
self.domain_id = self.domain['id']
PROVIDERS.resource_api.create_domain(self.domain_id, self.domain)
# Create a project hierarchy
self.project = unit.new_project_ref(domain_id=self.domain_id)
self.project_id = self.project['id']
PROVIDERS.resource_api.create_project(self.project_id, self.project)
# Create a random project hierarchy
create_project_hierarchy(self.project_id,
random.randint(1, self.MAX_HIERARCHY_DEPTH))
# Create 3 users
self.user_ids = []
for i in range(3):
user = unit.new_user_ref(domain_id=self.domain_id)
user = PROVIDERS.identity_api.create_user(user)
self.user_ids.append(user['id'])
# Create 3 groups
self.group_ids = []
for i in range(3):
group = unit.new_group_ref(domain_id=self.domain_id)
group = PROVIDERS.identity_api.create_group(group)
self.group_ids.append(group['id'])
# Put 2 members on each group
PROVIDERS.identity_api.add_user_to_group(
user_id=self.user_ids[i], group_id=group['id']
)
PROVIDERS.identity_api.add_user_to_group(
user_id=self.user_ids[i % 2], group_id=group['id']
)
PROVIDERS.assignment_api.create_grant(
user_id=self.user_id, project_id=self.project_id,
role_id=self.role_id
)
# Create a role
self.role = unit.new_role_ref()
self.role_id = self.role['id']
PROVIDERS.role_api.create_role(self.role_id, self.role)
# Set default user and group to be used on tests
self.default_user_id = self.user_ids[0]
self.default_group_id = self.group_ids[0]
def get_role_assignments(self, expected_status=http.client.OK, **filters):
"""Return the result from querying role assignment API + queried URL.
Calls GET /v3/role_assignments?<params> and returns its result, where
<params> is the HTTP query parameters form of effective option plus
filters, if provided. Queried URL is returned as well.
:returns: a tuple containing the list role assignments API response and
queried URL.
"""
query_url = self._get_role_assignments_query_url(**filters)
response = self.get(query_url, expected_status=expected_status)
return (response, query_url)
def _get_role_assignments_query_url(self, **filters):
"""Return non-effective role assignments query URL from given filters.
:param filters: query parameters are created with the provided filters
on role assignments attributes. Valid filters are:
role_id, domain_id, project_id, group_id, user_id and
inherited_to_projects.
:returns: role assignments query URL.
"""
return self.build_role_assignment_query_url(**filters)
class RoleAssignmentFailureTestCase(RoleAssignmentBaseTestCase):
"""Class for testing invalid query params on /v3/role_assignments API.
Querying domain and project, or user and group results in a HTTP 400 Bad
Request, since a role assignment must contain only a single pair of (actor,
target). In addition, since filtering on role assignments applies only to
the final result, effective mode cannot be combined with i) group or ii)
domain and inherited, because it would always result in an empty list.
"""
class RoleAssignmentDirectTestCase(RoleAssignmentBaseTestCase):
"""Class for testing direct assignments on /v3/role_assignments API.
Direct assignments on a domain or project have effect on them directly,
instead of on their project hierarchy, i.e they are non-inherited. In
addition, group direct assignments are not expanded to group's users.
Tests on this class make assertions on the representation and API filtering
of direct assignments.
"""
def _test_get_role_assignments(self, **filters):
"""Generic filtering test method.
According to the provided filters, this method:
- creates a new role assignment;
- asserts that list role assignments API reponds correctly;
- deletes the created role assignment.
:param filters: filters to be considered when listing role assignments.
Valid filters are: role_id, domain_id, project_id,
group_id, user_id and inherited_to_projects.
"""
# Fills default assignment with provided filters
test_assignment = self._set_default_assignment_attributes(**filters)
# Create new role assignment for this test
PROVIDERS.assignment_api.create_grant(**test_assignment)
# Get expected role assignments
expected_assignments = self._list_expected_role_assignments(
**test_assignment)
# Get role assignments from API
response, query_url = self.get_role_assignments(**test_assignment)
self.assertValidRoleAssignmentListResponse(response,
resource_url=query_url)
self.assertEqual(len(expected_assignments),
len(response.result.get('role_assignments')))
# Assert that expected role assignments were returned by the API call
for assignment in expected_assignments:
self.assertRoleAssignmentInListResponse(response, assignment)
# Delete created role assignment
PROVIDERS.assignment_api.delete_grant(**test_assignment)
def _set_default_assignment_attributes(self, **attribs):
"""Insert default values for missing attributes of role assignment.
If no actor, target or role are provided, they will default to values
from sample data.
:param attribs: info from a role assignment entity. Valid attributes
are: role_id, domain_id, project_id, group_id, user_id
and inherited_to_projects.
"""
if not any(target in attribs
for target in ('domain_id', 'projects_id')):
attribs['project_id'] = self.project_id
if not any(actor in attribs for actor in ('user_id', 'group_id')):
attribs['user_id'] = self.default_user_id
if 'role_id' not in attribs:
attribs['role_id'] = self.role_id
return attribs
def _list_expected_role_assignments(self, **filters):
"""Given the filters, it returns expected direct role assignments.
:param filters: filters that will be considered when listing role
assignments. Valid filters are: role_id, domain_id,
project_id, group_id, user_id and
inherited_to_projects.
:returns: the list of the expected role assignments.
"""
return [self.build_role_assignment_entity(**filters)]
# Test cases below call the generic test method, providing different filter
# combinations. Filters are provided as specified in the method name, after
# 'by'. For example, test_get_role_assignments_by_project_user_and_role
# calls the generic test method with project_id, user_id and role_id.
class RoleAssignmentInheritedTestCase(RoleAssignmentDirectTestCase):
"""Class for testing inherited assignments on /v3/role_assignments API.
Inherited assignments on a domain or project have no effect on them
directly, but on the projects under them instead.
Tests on this class do not make assertions on the effect of inherited
assignments, but in their representation and API filtering.
"""
def _test_get_role_assignments(self, **filters):
"""Add inherited_to_project filter to expected entity in tests."""
super(RoleAssignmentInheritedTestCase,
self)._test_get_role_assignments(inherited_to_projects=True,
**filters)
class RoleAssignmentEffectiveTestCase(RoleAssignmentInheritedTestCase):
"""Class for testing inheritance effects on /v3/role_assignments API.
Inherited assignments on a domain or project have no effect on them
directly, but on the projects under them instead.
Tests on this class make assertions on the effect of inherited assignments
and API filtering.
"""
def _get_role_assignments_query_url(self, **filters):
"""Return effective role assignments query URL from given filters.
For test methods in this class, effetive will always be true. As in
effective mode, inherited_to_projects, group_id, domain_id and
project_id will always be desconsidered from provided filters.
:param filters: query parameters are created with the provided filters.
Valid filters are: role_id, domain_id, project_id,
group_id, user_id and inherited_to_projects.
:returns: role assignments query URL.
"""
query_filters = filters.copy()
query_filters.pop('inherited_to_projects')
query_filters.pop('group_id', None)
query_filters.pop('domain_id', None)
query_filters.pop('project_id', None)
return self.build_role_assignment_query_url(effective=True,
**query_filters)
def _list_expected_role_assignments(self, **filters):
"""Given the filters, it returns expected direct role assignments.
:param filters: filters that will be considered when listing role
assignments. Valid filters are: role_id, domain_id,
project_id, group_id, user_id and
inherited_to_projects.
:returns: the list of the expected role assignments.
"""
# Get assignment link, to be put on 'links': {'assignment': link}
assignment_link = self.build_role_assignment_link(**filters)
# Expand group membership
user_ids = [None]
if filters.get('group_id'):
user_ids = [user['id'] for user in
PROVIDERS.identity_api.list_users_in_group(
filters['group_id'])]
else:
user_ids = [self.default_user_id]
# Expand role inheritance
project_ids = [None]
if filters.get('domain_id'):
project_ids = [project['id'] for project in
PROVIDERS.resource_api.list_projects_in_domain(
filters.pop('domain_id'))]
else:
project_ids = [project['id'] for project in
PROVIDERS.resource_api.list_projects_in_subtree(
self.project_id)]
# Compute expected role assignments
assignments = []
for project_id in project_ids:
filters['project_id'] = project_id
for user_id in user_ids:
filters['user_id'] = user_id
assignments.append(self.build_role_assignment_entity(
link=assignment_link, **filters))
return assignments
class AssignmentInheritanceTestCase(test_v3.RestfulTestCase,
test_v3.AssignmentTestMixin):
"""Test inheritance crud and its effects."""
def test_list_role_assignments_for_inherited_domain_grants(self):
"""Call ``GET /role_assignments with inherited domain grants``.
Test Plan:
- Create 4 roles
- Create a domain with a user and two projects
- Assign two direct roles to project1
- Assign a spoiler role to project2
- Issue the URL to add inherited role to the domain
- Issue the URL to check it is indeed on the domain
- Issue the URL to check effective roles on project1 - this
should return 3 roles.
"""
role_list = []
for _ in range(4):
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
role_list.append(role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user1 = unit.create_user(
PROVIDERS.identity_api, domain_id=domain['id']
)
project1 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project1['id'], project1)
project2 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project2['id'], project2)
# Add some roles to the project
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[0]['id'])
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[1]['id'])
# ..and one on a different project as a spoiler
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project2['id'], role_list[2]['id'])
# Now create our inherited role on the domain
base_collection_url = (
'/OS-INHERIT/domains/%(domain_id)s/users/%(user_id)s/roles' % {
'domain_id': domain['id'],
'user_id': user1['id']})
member_url = '%(collection_url)s/%(role_id)s/inherited_to_projects' % {
'collection_url': base_collection_url,
'role_id': role_list[3]['id']}
collection_url = base_collection_url + '/inherited_to_projects'
self.put(member_url)
self.head(member_url)
self.get(member_url, expected_status=http.client.NO_CONTENT)
r = self.get(collection_url)
self.assertValidRoleListResponse(r, ref=role_list[3],
resource_url=collection_url)
# Now use the list domain role assignments api to check if this
# is included
collection_url = (
'/role_assignments?user.id=%(user_id)s'
'&scope.domain.id=%(domain_id)s' % {
'user_id': user1['id'],
'domain_id': domain['id']})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=1,
resource_url=collection_url)
ud_entity = self.build_role_assignment_entity(
domain_id=domain['id'], user_id=user1['id'],
role_id=role_list[3]['id'], inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, ud_entity)
# Now ask for effective list role assignments - the role should
# turn into a project role, along with the two direct roles that are
# on the project
collection_url = (
'/role_assignments?effective&user.id=%(user_id)s'
'&scope.project.id=%(project_id)s' % {
'user_id': user1['id'],
'project_id': project1['id']})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
# An effective role for an inherited role will be a project
# entity, with a domain link to the inherited assignment
ud_url = self.build_role_assignment_link(
domain_id=domain['id'], user_id=user1['id'],
role_id=role_list[3]['id'], inherited_to_projects=True)
up_entity = self.build_role_assignment_entity(
link=ud_url, project_id=project1['id'],
user_id=user1['id'], role_id=role_list[3]['id'],
inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, up_entity)
def _test_list_role_assignments_include_names(self, role1):
"""Call ``GET /role_assignments with include names``.
Test Plan:
- Create a domain with a group and a user
- Create a project with a group and a user
"""
role1 = unit.new_role_ref()
PROVIDERS.role_api.create_role(role1['id'], role1)
user1 = unit.create_user(
PROVIDERS.identity_api, domain_id=self.domain_id
)
group = unit.new_group_ref(domain_id=self.domain_id)
group = PROVIDERS.identity_api.create_group(group)
project1 = unit.new_project_ref(domain_id=self.domain_id)
PROVIDERS.resource_api.create_project(project1['id'], project1)
expected_entity1 = self.build_role_assignment_entity_include_names(
role_ref=role1,
project_ref=project1,
user_ref=user1)
self.put(expected_entity1['links']['assignment'])
expected_entity2 = self.build_role_assignment_entity_include_names(
role_ref=role1,
domain_ref=self.domain,
group_ref=group)
self.put(expected_entity2['links']['assignment'])
expected_entity3 = self.build_role_assignment_entity_include_names(
role_ref=role1,
domain_ref=self.domain,
user_ref=user1)
self.put(expected_entity3['links']['assignment'])
expected_entity4 = self.build_role_assignment_entity_include_names(
role_ref=role1,
project_ref=project1,
group_ref=group)
self.put(expected_entity4['links']['assignment'])
collection_url_domain = (
'/role_assignments?include_names&scope.domain.id=%(domain_id)s' % {
'domain_id': self.domain_id})
rs_domain = self.get(collection_url_domain)
collection_url_project = (
'/role_assignments?include_names&'
'scope.project.id=%(project_id)s' % {
'project_id': project1['id']})
rs_project = self.get(collection_url_project)
collection_url_group = (
'/role_assignments?include_names&group.id=%(group_id)s' % {
'group_id': group['id']})
rs_group = self.get(collection_url_group)
collection_url_user = (
'/role_assignments?include_names&user.id=%(user_id)s' % {
'user_id': user1['id']})
rs_user = self.get(collection_url_user)
collection_url_role = (
'/role_assignments?include_names&role.id=%(role_id)s' % {
'role_id': role1['id']})
rs_role = self.get(collection_url_role)
# Make sure all entities were created successfully
self.assertEqual(http.client.OK, rs_domain.status_int)
self.assertEqual(http.client.OK, rs_project.status_int)
self.assertEqual(http.client.OK, rs_group.status_int)
self.assertEqual(http.client.OK, rs_user.status_int)
# Make sure we can get back the correct number of entities
self.assertValidRoleAssignmentListResponse(
rs_domain,
expected_length=2,
resource_url=collection_url_domain)
self.assertValidRoleAssignmentListResponse(
rs_project,
expected_length=2,
resource_url=collection_url_project)
self.assertValidRoleAssignmentListResponse(
rs_group,
expected_length=2,
resource_url=collection_url_group)
self.assertValidRoleAssignmentListResponse(
rs_user,
expected_length=2,
resource_url=collection_url_user)
self.assertValidRoleAssignmentListResponse(
rs_role,
expected_length=4,
resource_url=collection_url_role)
# Verify all types of entities have the correct format
self.assertRoleAssignmentInListResponse(rs_domain, expected_entity2)
self.assertRoleAssignmentInListResponse(rs_project, expected_entity1)
self.assertRoleAssignmentInListResponse(rs_group, expected_entity4)
self.assertRoleAssignmentInListResponse(rs_user, expected_entity3)
self.assertRoleAssignmentInListResponse(rs_role, expected_entity1)
def test_remove_assignment_for_project_acting_as_domain(self):
"""Test goal: remove assignment for project acting as domain.
Ensure when we have two role assignments for the project
acting as domain, one dealing with it as a domain and other as a
project, we still able to remove those assignments later.
Test plan:
- Create a role and a domain with a user;
- Grant a role for this user in this domain;
- Grant a role for this user in the same entity as a project;
- Ensure that both assignments were created and it was valid;
- Remove the domain assignment for the user and show that the project
assignment for him still valid
"""
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user = unit.create_user(PROVIDERS.identity_api, domain_id=domain['id'])
assignment_domain = self.build_role_assignment_entity(
role_id=role['id'], domain_id=domain['id'], user_id=user['id'],
inherited_to_projects=False)
assignment_project = self.build_role_assignment_entity(
role_id=role['id'], project_id=domain['id'], user_id=user['id'],
inherited_to_projects=False)
self.put(assignment_domain['links']['assignment'])
self.put(assignment_project['links']['assignment'])
collection_url = '/role_assignments?user.id=%(user_id)s' % (
{'user_id': user['id']})
result = self.get(collection_url)
# We have two role assignments based in both roles for the domain and
# project scope
self.assertValidRoleAssignmentListResponse(
result, expected_length=2, resource_url=collection_url)
self.assertRoleAssignmentInListResponse(result, assignment_domain)
domain_url = '/domains/%s/users/%s/roles/%s' % (
domain['id'], user['id'], role['id'])
self.delete(domain_url)
collection_url = '/role_assignments?user.id=%(user_id)s' % (
{'user_id': user['id']})
result = self.get(collection_url)
# Now we only have one assignment for the project scope since the
# domain scope was removed.
self.assertValidRoleAssignmentListResponse(
result, expected_length=1, resource_url=collection_url)
self.assertRoleAssignmentInListResponse(result, assignment_project)
def test_list_inherited_role_assignments_include_names(self):
"""Call ``GET /role_assignments?include_names``.
Test goal: ensure calling list role assignments including names
honors the inherited role assignments flag.
Test plan:
- Create a role and a domain with a user;
- Create a inherited role assignment;
- List role assignments for that user;
- List role assignments for that user including names.
"""
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user = unit.create_user(PROVIDERS.identity_api, domain_id=domain['id'])
# Create and store expected assignment refs
assignment = self.build_role_assignment_entity(
role_id=role['id'], domain_id=domain['id'], user_id=user['id'],
inherited_to_projects=True)
assignment_names = self.build_role_assignment_entity_include_names(
role_ref=role, domain_ref=domain, user_ref=user,
inherited_assignment=True)
# Ensure expected assignment refs are inherited and have the same URL
self.assertEqual('projects',
assignment['scope']['OS-INHERIT:inherited_to'])
self.assertEqual('projects',
assignment_names['scope']['OS-INHERIT:inherited_to'])
self.assertEqual(assignment['links']['assignment'],
assignment_names['links']['assignment'])
self.put(assignment['links']['assignment'])
collection_url = '/role_assignments?user.id=%(user_id)s' % (
{'user_id': user['id']})
result = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
result, expected_length=1, resource_url=collection_url)
self.assertRoleAssignmentInListResponse(result, assignment)
collection_url = ('/role_assignments?include_names&'
'user.id=%(user_id)s' % {'user_id': user['id']})
result = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
result, expected_length=1, resource_url=collection_url)
self.assertRoleAssignmentInListResponse(result, assignment_names)
def test_list_role_assignments_for_disabled_inheritance_extension(self):
"""Call ``GET /role_assignments with inherited domain grants``.
Test Plan:
- Issue the URL to add inherited role to the domain
- Issue the URL to check effective roles on project include the
inherited role
- Disable the extension
- Re-check the effective roles, proving the inherited role no longer
shows up.
"""
role_list = []
for _ in range(4):
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
role_list.append(role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user1 = unit.create_user(
PROVIDERS.identity_api, domain_id=domain['id']
)
project1 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project1['id'], project1)
project2 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project2['id'], project2)
# Add some roles to the project
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[0]['id'])
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[1]['id'])
# ..and one on a different project as a spoiler
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project2['id'], role_list[2]['id'])
# Now create our inherited role on the domain
base_collection_url = (
'/OS-INHERIT/domains/%(domain_id)s/users/%(user_id)s/roles' % {
'domain_id': domain['id'],
'user_id': user1['id']})
member_url = '%(collection_url)s/%(role_id)s/inherited_to_projects' % {
'collection_url': base_collection_url,
'role_id': role_list[3]['id']}
collection_url = base_collection_url + '/inherited_to_projects'
self.put(member_url)
self.head(member_url)
self.get(member_url, expected_status=http.client.NO_CONTENT)
r = self.get(collection_url)
self.assertValidRoleListResponse(r, ref=role_list[3],
resource_url=collection_url)
# Get effective list role assignments - the role should
# turn into a project role, along with the two direct roles that are
# on the project
collection_url = (
'/role_assignments?effective&user.id=%(user_id)s'
'&scope.project.id=%(project_id)s' % {
'user_id': user1['id'],
'project_id': project1['id']})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
ud_url = self.build_role_assignment_link(
domain_id=domain['id'], user_id=user1['id'],
role_id=role_list[3]['id'], inherited_to_projects=True)
up_entity = self.build_role_assignment_entity(
link=ud_url, project_id=project1['id'],
user_id=user1['id'], role_id=role_list[3]['id'],
inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, up_entity)
def test_list_role_assignments_for_inherited_group_domain_grants(self):
"""Call ``GET /role_assignments with inherited group domain grants``.
Test Plan:
- Create 4 roles
- Create a domain with a user and two projects
- Assign two direct roles to project1
- Assign a spoiler role to project2
- Issue the URL to add inherited role to the domain
- Issue the URL to check it is indeed on the domain
- Issue the URL to check effective roles on project1 - this
should return 3 roles.
"""
role_list = []
for _ in range(4):
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
role_list.append(role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user1 = unit.create_user(
PROVIDERS.identity_api, domain_id=domain['id']
)
user2 = unit.create_user(
PROVIDERS.identity_api, domain_id=domain['id']
)
group1 = unit.new_group_ref(domain_id=domain['id'])
group1 = PROVIDERS.identity_api.create_group(group1)
PROVIDERS.identity_api.add_user_to_group(
user1['id'], group1['id']
)
PROVIDERS.identity_api.add_user_to_group(
user2['id'], group1['id']
)
project1 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project1['id'], project1)
project2 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project2['id'], project2)
# Add some roles to the project
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[0]['id'])
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[1]['id'])
# ..and one on a different project as a spoiler
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project2['id'], role_list[2]['id'])
# Now create our inherited role on the domain
base_collection_url = (
'/OS-INHERIT/domains/%(domain_id)s/groups/%(group_id)s/roles' % {
'domain_id': domain['id'],
'group_id': group1['id']})
member_url = '%(collection_url)s/%(role_id)s/inherited_to_projects' % {
'collection_url': base_collection_url,
'role_id': role_list[3]['id']}
collection_url = base_collection_url + '/inherited_to_projects'
self.put(member_url)
self.head(member_url)
self.get(member_url, expected_status=http.client.NO_CONTENT)
r = self.get(collection_url)
self.assertValidRoleListResponse(r, ref=role_list[3],
resource_url=collection_url)
# Now use the list domain role assignments api to check if this
# is included
collection_url = (
'/role_assignments?group.id=%(group_id)s'
'&scope.domain.id=%(domain_id)s' % {
'group_id': group1['id'],
'domain_id': domain['id']})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=1,
resource_url=collection_url)
gd_entity = self.build_role_assignment_entity(
domain_id=domain['id'], group_id=group1['id'],
role_id=role_list[3]['id'], inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, gd_entity)
# Now ask for effective list role assignments - the role should
# turn into a user project role, along with the two direct roles
# that are on the project
collection_url = (
'/role_assignments?effective&user.id=%(user_id)s'
'&scope.project.id=%(project_id)s' % {
'user_id': user1['id'],
'project_id': project1['id']})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=3,
resource_url=collection_url)
# An effective role for an inherited role will be a project
# entity, with a domain link to the inherited assignment
up_entity = self.build_role_assignment_entity(
link=gd_entity['links']['assignment'], project_id=project1['id'],
user_id=user1['id'], role_id=role_list[3]['id'],
inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, up_entity)
def test_filtered_role_assignments_for_inherited_grants(self):
"""Call ``GET /role_assignments?scope.OS-INHERIT:inherited_to``.
Test Plan:
- Create 5 roles
- Create a domain with a user, group and two projects
- Assign three direct spoiler roles to projects
- Issue the URL to add an inherited user role to the domain
- Issue the URL to add an inherited group role to the domain
- Issue the URL to filter by inherited roles - this should
return just the 2 inherited roles.
"""
role_list = []
for _ in range(5):
role = unit.new_role_ref()
PROVIDERS.role_api.create_role(role['id'], role)
role_list.append(role)
domain = unit.new_domain_ref()
PROVIDERS.resource_api.create_domain(domain['id'], domain)
user1 = unit.create_user(
PROVIDERS.identity_api, domain_id=domain['id']
)
group1 = unit.new_group_ref(domain_id=domain['id'])
group1 = PROVIDERS.identity_api.create_group(group1)
project1 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project1['id'], project1)
project2 = unit.new_project_ref(domain_id=domain['id'])
PROVIDERS.resource_api.create_project(project2['id'], project2)
# Add some spoiler roles to the projects
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project1['id'], role_list[0]['id'])
PROVIDERS.assignment_api.add_role_to_user_and_project(
user1['id'], project2['id'], role_list[1]['id'])
# Create a non-inherited role as a spoiler
PROVIDERS.assignment_api.create_grant(
role_list[2]['id'], user_id=user1['id'], domain_id=domain['id'])
# Now create two inherited roles on the domain, one for a user
# and one for a domain
base_collection_url = (
'/OS-INHERIT/domains/%(domain_id)s/users/%(user_id)s/roles' % {
'domain_id': domain['id'],
'user_id': user1['id']})
member_url = '%(collection_url)s/%(role_id)s/inherited_to_projects' % {
'collection_url': base_collection_url,
'role_id': role_list[3]['id']}
collection_url = base_collection_url + '/inherited_to_projects'
self.put(member_url)
self.head(member_url)
self.get(member_url, expected_status=http.client.NO_CONTENT)
r = self.get(collection_url)
self.assertValidRoleListResponse(r, ref=role_list[3],
resource_url=collection_url)
base_collection_url = (
'/OS-INHERIT/domains/%(domain_id)s/groups/%(group_id)s/roles' % {
'domain_id': domain['id'],
'group_id': group1['id']})
member_url = '%(collection_url)s/%(role_id)s/inherited_to_projects' % {
'collection_url': base_collection_url,
'role_id': role_list[4]['id']}
collection_url = base_collection_url + '/inherited_to_projects'
self.put(member_url)
self.head(member_url)
self.get(member_url, expected_status=http.client.NO_CONTENT)
r = self.get(collection_url)
self.assertValidRoleListResponse(r, ref=role_list[4],
resource_url=collection_url)
# Now use the list role assignments api to get a list of inherited
# roles on the domain - should get back the two roles
collection_url = (
'/role_assignments?scope.OS-INHERIT:inherited_to=projects')
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
expected_length=2,
resource_url=collection_url)
ud_entity = self.build_role_assignment_entity(
domain_id=domain['id'], user_id=user1['id'],
role_id=role_list[3]['id'], inherited_to_projects=True)
gd_entity = self.build_role_assignment_entity(
domain_id=domain['id'], group_id=group1['id'],
role_id=role_list[4]['id'], inherited_to_projects=True)
self.assertRoleAssignmentInListResponse(r, ud_entity)
self.assertRoleAssignmentInListResponse(r, gd_entity)
def _setup_hierarchical_projects_scenario(self):
"""Create basic hierarchical projects scenario.
This basic scenario contains a root with one leaf project and
two roles with the following names: non-inherited and inherited.
"""
# Create project hierarchy
root = unit.new_project_ref(domain_id=self.domain['id'])
leaf = unit.new_project_ref(domain_id=self.domain['id'],
parent_id=root['id'])
PROVIDERS.resource_api.create_project(root['id'], root)
PROVIDERS.resource_api.create_project(leaf['id'], leaf)
# Create 'non-inherited' and 'inherited' roles
non_inherited_role = unit.new_role_ref(name='non-inherited')
PROVIDERS.role_api.create_role(
non_inherited_role['id'], non_inherited_role
)
inherited_role = unit.new_role_ref(name='inherited')
PROVIDERS.role_api.create_role(inherited_role['id'], inherited_role)
return (root['id'], leaf['id'],
non_inherited_role['id'], inherited_role['id'])
def test_get_role_assignments_for_project_hierarchy(self):
"""Call ``GET /role_assignments``.
Test Plan:
- Create 2 roles
- Create a hierarchy of projects with one root and one leaf project
- Issue the URL to add a non-inherited user role to the root project
- Issue the URL to add an inherited user role to the root project
- Issue the URL to get all role assignments - this should return just
2 roles (non-inherited and inherited) in the root project.
"""
# Create default scenario
root_id, leaf_id, non_inherited_role_id, inherited_role_id = (
self._setup_hierarchical_projects_scenario())
# Grant non-inherited role
non_inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_up_entity['links']['assignment'])
# Grant inherited role
inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=inherited_role_id, inherited_to_projects=True)
self.put(inher_up_entity['links']['assignment'])
# Get role assignments
collection_url = '/role_assignments'
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
resource_url=collection_url)
# Assert that the user has non-inherited role on root project
self.assertRoleAssignmentInListResponse(r, non_inher_up_entity)
# Assert that the user has inherited role on root project
self.assertRoleAssignmentInListResponse(r, inher_up_entity)
# Assert that the user does not have non-inherited role on leaf project
non_inher_up_entity = self.build_role_assignment_entity(
project_id=leaf_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.assertRoleAssignmentNotInListResponse(r, non_inher_up_entity)
# Assert that the user does not have inherited role on leaf project
inher_up_entity['scope']['project']['id'] = leaf_id
self.assertRoleAssignmentNotInListResponse(r, inher_up_entity)
def test_get_effective_role_assignments_for_project_hierarchy(self):
"""Call ``GET /role_assignments?effective``.
Test Plan:
- Create 2 roles
- Create a hierarchy of projects with one root and one leaf project
- Issue the URL to add a non-inherited user role to the root project
- Issue the URL to add an inherited user role to the root project
- Issue the URL to get effective role assignments - this should return
1 role (non-inherited) on the root project and 1 role (inherited) on
the leaf project.
"""
# Create default scenario
root_id, leaf_id, non_inherited_role_id, inherited_role_id = (
self._setup_hierarchical_projects_scenario())
# Grant non-inherited role
non_inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_up_entity['links']['assignment'])
# Grant inherited role
inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=inherited_role_id, inherited_to_projects=True)
self.put(inher_up_entity['links']['assignment'])
# Get effective role assignments
collection_url = '/role_assignments?effective'
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
resource_url=collection_url)
# Assert that the user has non-inherited role on root project
self.assertRoleAssignmentInListResponse(r, non_inher_up_entity)
# Assert that the user does not have inherited role on root project
self.assertRoleAssignmentNotInListResponse(r, inher_up_entity)
# Assert that the user does not have non-inherited role on leaf project
non_inher_up_entity = self.build_role_assignment_entity(
project_id=leaf_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.assertRoleAssignmentNotInListResponse(r, non_inher_up_entity)
# Assert that the user has inherited role on leaf project
inher_up_entity['scope']['project']['id'] = leaf_id
self.assertRoleAssignmentInListResponse(r, inher_up_entity)
def test_project_id_specified_if_include_subtree_specified(self):
"""When using include_subtree, you must specify a project ID."""
r = self.get('/role_assignments?include_subtree=True',
expected_status=http.client.BAD_REQUEST)
error_msg = ("scope.project.id must be specified if include_subtree "
"is also specified")
self.assertEqual(error_msg, r.result['error']['message'])
r = self.get('/role_assignments?scope.project.id&'
'include_subtree=True',
expected_status=http.client.BAD_REQUEST)
self.assertEqual(error_msg, r.result['error']['message'])
def test_get_role_assignments_for_project_tree(self):
"""Get role_assignment?scope.project.id=X&include_subtree``.
Test Plan:
- Create 2 roles and a hierarchy of projects with one root and one leaf
- Issue the URL to add a non-inherited user role to the root project
and the leaf project
- Issue the URL to get role assignments for the root project but
not the subtree - this should return just the root assignment
- Issue the URL to get role assignments for the root project and
it's subtree - this should return both assignments
- Check that explicitly setting include_subtree to False is the
equivalent to not including it at all in the query.
"""
# Create default scenario
root_id, leaf_id, non_inherited_role_id, unused_role_id = (
self._setup_hierarchical_projects_scenario())
# Grant non-inherited role to root and leaf projects
non_inher_entity_root = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_entity_root['links']['assignment'])
non_inher_entity_leaf = self.build_role_assignment_entity(
project_id=leaf_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_entity_leaf['links']['assignment'])
# Without the subtree, we should get the one assignment on the
# root project
collection_url = (
'/role_assignments?scope.project.id=%(project)s' % {
'project': root_id})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r, resource_url=collection_url)
self.assertThat(r.result['role_assignments'], matchers.HasLength(1))
self.assertRoleAssignmentInListResponse(r, non_inher_entity_root)
# With the subtree, we should get both assignments
collection_url = (
'/role_assignments?scope.project.id=%(project)s'
'&include_subtree=True' % {
'project': root_id})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r, resource_url=collection_url)
self.assertThat(r.result['role_assignments'], matchers.HasLength(2))
self.assertRoleAssignmentInListResponse(r, non_inher_entity_root)
self.assertRoleAssignmentInListResponse(r, non_inher_entity_leaf)
# With subtree=0, we should also only get the one assignment on the
# root project
collection_url = (
'/role_assignments?scope.project.id=%(project)s'
'&include_subtree=0' % {
'project': root_id})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r, resource_url=collection_url)
self.assertThat(r.result['role_assignments'], matchers.HasLength(1))
self.assertRoleAssignmentInListResponse(r, non_inher_entity_root)
def test_get_effective_role_assignments_for_project_tree(self):
"""Get role_assignment ?project_id=X&include_subtree=True&effective``.
Test Plan:
- Create 2 roles and a hierarchy of projects with one root and 4 levels
of child project
- Issue the URL to add a non-inherited user role to the root project
and a level 1 project
- Issue the URL to add an inherited user role on the level 2 project
- Issue the URL to get effective role assignments for the level 1
project and it's subtree - this should return a role (non-inherited)
on the level 1 project and roles (inherited) on each of the level
2, 3 and 4 projects
"""
# Create default scenario
root_id, leaf_id, non_inherited_role_id, inherited_role_id = (
self._setup_hierarchical_projects_scenario())
# Add some extra projects to the project hierarchy
level2 = unit.new_project_ref(domain_id=self.domain['id'],
parent_id=leaf_id)
level3 = unit.new_project_ref(domain_id=self.domain['id'],
parent_id=level2['id'])
level4 = unit.new_project_ref(domain_id=self.domain['id'],
parent_id=level3['id'])
PROVIDERS.resource_api.create_project(level2['id'], level2)
PROVIDERS.resource_api.create_project(level3['id'], level3)
PROVIDERS.resource_api.create_project(level4['id'], level4)
# Grant non-inherited role to root (as a spoiler) and to
# the level 1 (leaf) project
non_inher_entity_root = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_entity_root['links']['assignment'])
non_inher_entity_leaf = self.build_role_assignment_entity(
project_id=leaf_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_entity_leaf['links']['assignment'])
# Grant inherited role to level 2
inher_entity = self.build_role_assignment_entity(
project_id=level2['id'], user_id=self.user['id'],
role_id=inherited_role_id, inherited_to_projects=True)
self.put(inher_entity['links']['assignment'])
# Get effective role assignments
collection_url = (
'/role_assignments?scope.project.id=%(project)s'
'&include_subtree=True&effective' % {
'project': leaf_id})
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(
r, resource_url=collection_url)
# There should be three assignments returned in total
self.assertThat(r.result['role_assignments'], matchers.HasLength(3))
# Assert that the user does not non-inherited role on root project
self.assertRoleAssignmentNotInListResponse(r, non_inher_entity_root)
# Assert that the user does have non-inherited role on leaf project
self.assertRoleAssignmentInListResponse(r, non_inher_entity_leaf)
# Assert that the user has inherited role on levels 3 and 4
inher_entity['scope']['project']['id'] = level3['id']
self.assertRoleAssignmentInListResponse(r, inher_entity)
inher_entity['scope']['project']['id'] = level4['id']
self.assertRoleAssignmentInListResponse(r, inher_entity)
def test_get_inherited_role_assignments_for_project_hierarchy(self):
"""Call ``GET /role_assignments?scope.OS-INHERIT:inherited_to``.
Test Plan:
- Create 2 roles
- Create a hierarchy of projects with one root and one leaf project
- Issue the URL to add a non-inherited user role to the root project
- Issue the URL to add an inherited user role to the root project
- Issue the URL to filter inherited to projects role assignments - this
should return 1 role (inherited) on the root project.
"""
# Create default scenario
root_id, leaf_id, non_inherited_role_id, inherited_role_id = (
self._setup_hierarchical_projects_scenario())
# Grant non-inherited role
non_inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.put(non_inher_up_entity['links']['assignment'])
# Grant inherited role
inher_up_entity = self.build_role_assignment_entity(
project_id=root_id, user_id=self.user['id'],
role_id=inherited_role_id, inherited_to_projects=True)
self.put(inher_up_entity['links']['assignment'])
# Get inherited role assignments
collection_url = ('/role_assignments'
'?scope.OS-INHERIT:inherited_to=projects')
r = self.get(collection_url)
self.assertValidRoleAssignmentListResponse(r,
resource_url=collection_url)
# Assert that the user does not have non-inherited role on root project
self.assertRoleAssignmentNotInListResponse(r, non_inher_up_entity)
# Assert that the user has inherited role on root project
self.assertRoleAssignmentInListResponse(r, inher_up_entity)
# Assert that the user does not have non-inherited role on leaf project
non_inher_up_entity = self.build_role_assignment_entity(
project_id=leaf_id, user_id=self.user['id'],
role_id=non_inherited_role_id)
self.assertRoleAssignmentNotInListResponse(r, non_inher_up_entity)
# Assert that the user does not have inherited role on leaf project
inher_up_entity['scope']['project']['id'] = leaf_id
self.assertRoleAssignmentNotInListResponse(r, inher_up_entity)
class ImpliedRolesTests(test_v3.RestfulTestCase, test_v3.AssignmentTestMixin,
unit.TestCase):
def _create_role(self):
"""Call ``POST /roles``."""
ref = unit.new_role_ref()
r = self.post('/roles', body={'role': ref})
return self.assertValidRoleResponse(r, ref)
def test_list_role_assignments_with_implied_roles(self):
"""Call ``GET /role_assignments`` with implied role grant.
Test Plan:
- Create a domain with a user and a project
- Create 3 roles
- Role 0 implies role 1 and role 1 implies role 2
- Assign the top role to the project
- Issue the URL to check effective roles on project - this
should return all 3 roles.
- Check the links of the 3 roles indicate the prior role where
appropriate
"""
(domain, user, project) = self._create_test_domain_user_project()
self._create_three_roles()
self._create_implied_role(self.role_list[0], self.role_list[1])
self._create_implied_role(self.role_list[1], self.role_list[2])
self._assign_top_role_to_user_on_project(user, project)
response = self.get(self._build_effective_role_assignments_url(user))
r = response
self._assert_all_roles_in_assignment(r, user)
self._assert_initial_assignment_in_effective(response, user, project)
self._assert_effective_role_for_implied_has_prior_in_links(
response, user, project, 0, 1)
self._assert_effective_role_for_implied_has_prior_in_links(
response, user, project, 1, 2)
def test_root_role_as_implied_role_forbidden(self):
"""Test root role is forbidden to be set as an implied role.
Create 2 roles that are prohibited from being an implied role.
Create 1 additional role which should be accepted as an implied
role. Assure the prohibited role names cannot be set as an implied
role. Assure the accepted role name which is not a member of the
prohibited implied role list can be successfully set an implied
role.
"""
prohibited_name1 = 'root1'
prohibited_name2 = 'root2'
accepted_name1 = 'implied1'
prohibited_names = [prohibited_name1, prohibited_name2]
self.config_fixture.config(group='assignment',
prohibited_implied_role=prohibited_names)
prior_role = self._create_role()
prohibited_role1 = self._create_named_role(prohibited_name1)
url = '/roles/{prior_role_id}/implies/{implied_role_id}'.format(
prior_role_id=prior_role['id'],
implied_role_id=prohibited_role1['id'])
self.put(url, expected_status=http.client.FORBIDDEN)
prohibited_role2 = self._create_named_role(prohibited_name2)
url = '/roles/{prior_role_id}/implies/{implied_role_id}'.format(
prior_role_id=prior_role['id'],
implied_role_id=prohibited_role2['id'])
self.put(url, expected_status=http.client.FORBIDDEN)
accepted_role1 = self._create_named_role(accepted_name1)
url = '/roles/{prior_role_id}/implies/{implied_role_id}'.format(
prior_role_id=prior_role['id'],
implied_role_id=accepted_role1['id'])
self.put(url, expected_status=http.client.CREATED)
class DomainSpecificRoleTests(test_v3.RestfulTestCase, unit.TestCase):
class ListUserProjectsTestCase(test_v3.RestfulTestCase):
"""Test for /users/<user>/projects."""
# FIXME(lbragstad): These tests contain system-level API calls, which means
# they will log a warning message if they are called with a project-scoped
# token, regardless of the role assignment on the project. We need to fix
# them by using a proper system-scoped admin token to make the call instead
# of a project scoped token.
# FIXME(lbragstad): These tests contain system-level API calls, which means
# they will log a warning message if they are called with a project-scoped
# token, regardless of the role assignment on the project. We need to fix
# them by using a proper system-scoped admin token to make the call instead
# of a project scoped token.
| [
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
345,
743,
198,
2,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
921,
743,
7330,
198,
2,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
198,
2,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
4091,
262,
198,
2,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
11247,
198,
2,
739,
262,
13789,
13,
198,
198,
11748,
4818,
8079,
198,
11748,
4738,
198,
11748,
334,
27112,
198,
198,
11748,
1479,
89,
1533,
403,
198,
11748,
2638,
13,
16366,
198,
6738,
1332,
31391,
1330,
2603,
3533,
198,
198,
6738,
1994,
6440,
13,
11321,
1330,
10131,
62,
15042,
198,
11748,
1994,
6440,
13,
10414,
198,
6738,
1994,
6440,
1330,
6631,
198,
6738,
1994,
6440,
13,
31092,
13,
1891,
2412,
1330,
2779,
355,
8271,
62,
8692,
198,
6738,
1994,
6440,
13,
41989,
1330,
4326,
198,
6738,
1994,
6440,
13,
41989,
13,
20850,
1330,
1332,
62,
85,
18,
628,
198,
10943,
37,
796,
1994,
6440,
13,
10414,
13,
10943,
37,
198,
41283,
2389,
4877,
796,
10131,
62,
15042,
13,
29495,
2969,
3792,
628,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
16803,
62,
18090,
62,
562,
570,
902,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
16803,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
734,
3131,
2836,
329,
5254,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3060,
777,
2985,
284,
257,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3060,
257,
2597,
16237,
329,
262,
1448,
319,
257,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3497,
257,
1351,
286,
477,
2597,
25815,
11,
10627,
530,
468,
587,
2087,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3244,
651,
257,
1351,
286,
477,
4050,
2597,
25815,
532,
262,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16237,
815,
423,
2900,
656,
25815,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1123,
286,
262,
1448,
1866,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
17,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
16,
17816,
312,
6,
4357,
2116,
13,
8094,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
17,
17816,
312,
6,
4357,
2116,
13,
8094,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4683,
62,
562,
570,
902,
796,
18896,
7,
81,
13,
20274,
13,
1136,
10786,
18090,
62,
562,
570,
902,
6,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
308,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
944,
13,
8094,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
302,
12,
961,
262,
4947,
4737,
329,
4050,
9176,
532,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
815,
1612,
262,
1448,
16237,
318,
14251,
656,
262,
734,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2888,
2836,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
4357,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
2597,
62,
312,
28,
944,
13,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
4357,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
17,
17816,
312,
6,
4357,
2597,
62,
312,
28,
944,
13,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
9122,
62,
16803,
62,
27160,
62,
1640,
62,
18090,
62,
562,
570,
902,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1222,
39837,
1220,
18090,
62,
562,
570,
902,
30,
16803,
28,
8367,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6822,
262,
2972,
2842,
286,
31577,
262,
705,
16803,
6,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
11507,
13,
220,
1002,
262,
705,
16803,
6,
12405,
11507,
198,
220,
220,
220,
220,
220,
220,
220,
318,
3017,
788,
428,
815,
1464,
307,
5716,
355,
3616,
705,
17821,
6,
198,
220,
220,
220,
220,
220,
220,
220,
4556,
340,
318,
7368,
355,
25,
628,
220,
220,
220,
220,
220,
220,
220,
1391,
6371,
92,
30,
16803,
28,
15,
628,
220,
220,
220,
220,
220,
220,
220,
770,
318,
416,
1486,
284,
2872,
262,
4987,
835,
286,
9041,
198,
220,
220,
220,
220,
220,
220,
220,
2450,
10627,
319,
12405,
14,
24455,
10007,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
734,
3131,
2836,
329,
5254,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3060,
777,
2985,
284,
257,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3060,
257,
2597,
16237,
329,
262,
1448,
319,
257,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3497,
257,
1351,
286,
477,
2597,
25815,
11,
10627,
530,
468,
587,
2087,
198,
220,
220,
220,
220,
220,
220,
220,
532,
3244,
2071,
2972,
2581,
351,
1180,
2842,
286,
16215,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
705,
16803,
6,
12405,
11507,
13,
1081,
356,
423,
6789,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29409,
286,
262,
1366,
2406,
736,
618,
356,
651,
4050,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
584,
5254,
11,
994,
356,
655,
779,
262,
954,
286,
12066,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
760,
611,
356,
389,
1972,
4050,
9176,
393,
407,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
17,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
16,
17816,
312,
6,
4357,
2116,
13,
8094,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
17,
17816,
312,
6,
4357,
2116,
13,
8094,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4683,
62,
562,
570,
902,
796,
18896,
7,
81,
13,
20274,
13,
1136,
10786,
18090,
62,
562,
570,
902,
6,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
308,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
944,
13,
8094,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
302,
12,
961,
262,
4947,
4737,
329,
4050,
9176,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1262,
262,
749,
2219,
835,
286,
16215,
366,
16803,
4458,
770,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
815,
1612,
262,
1448,
16237,
318,
14251,
656,
262,
734,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2888,
2836,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
900,
705,
16803,
6,
284,
3991,
11777,
532,
815,
651,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
736,
262,
3218,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
28,
15,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
1949,
4634,
220,
705,
16803,
6,
284,
705,
25101,
6,
11777,
12,
428,
318,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5626,
4855,
355,
257,
835,
286,
4634,
257,
12405,
393,
8106,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11507,
284,
3991,
416,
1486,
13,
16227,
356,
815,
651,
736,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4050,
9176,
13,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
28,
25101,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
900,
705,
16803,
6,
284,
6407,
11777,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
28,
17821,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
25687,
62,
562,
570,
902,
1343,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
825,
1332,
62,
10379,
4400,
62,
18090,
62,
562,
570,
902,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
10379,
1010,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
3131,
2985,
11,
1448,
11,
2597,
290,
1628,
329,
5254,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6889,
262,
1708,
25815,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13786,
1448,
16,
11,
2597,
16,
319,
1628,
16,
290,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13786,
2836,
16,
11,
2597,
17,
319,
1628,
16,
290,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6889,
11787,
16,
257,
2888,
286,
4912,
16,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6208,
257,
2168,
286,
2060,
8106,
1351,
3848,
11,
10627,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
3376,
2482,
389,
6492,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6208,
257,
5021,
12,
10379,
4400,
1351,
869,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6208,
13487,
477,
4050,
9176,
329,
257,
1813,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6208,
262,
7548,
286,
262,
1351,
286,
9176,
287,
257,
1628,
629,
19458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11241,
357,
439,
4050,
9176,
329,
257,
2836,
319,
257,
1628,
8,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4619,
262,
4277,
34609,
1541,
8333,
617,
9176,
284,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2836,
340,
8075,
11,
356,
635,
761,
257,
649,
2836,
326,
481,
407,
423,
597,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4683,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
17,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
4326,
13,
3605,
62,
8094,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
8094,
7,
8094,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
16,
17816,
312,
6,
4357,
1448,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
7220,
17,
17816,
312,
6,
4357,
1448,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18090,
16,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
944,
13,
18090,
16,
17816,
312,
6,
4357,
2116,
13,
18090,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18090,
17,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
944,
13,
18090,
17,
17816,
312,
6,
4357,
2116,
13,
18090,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
751,
530,
286,
1123,
286,
262,
2237,
3858,
286,
16237,
628,
220,
220,
220,
220,
220,
220,
220,
308,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
463,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
27809,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
31197,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
510,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
308,
82,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1080,
11639,
439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
14542,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
514,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1080,
11639,
439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
385,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
514,
17,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1080,
11639,
439,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
17,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
385,
17,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
1351,
416,
2972,
16628,
284,
787,
1654,
356,
651,
736,
262,
826,
3392,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
19203,
14,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
28,
4,
82,
6,
4064,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
27809,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
19203,
14,
18090,
62,
562,
570,
902,
30,
29982,
13,
27830,
13,
312,
28,
4,
82,
6,
4064,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
82,
6,
4064,
2836,
16,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
8094,
13,
312,
28,
4,
82,
6,
4064,
1448,
16,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
27809,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
18090,
13,
312,
28,
4,
82,
6,
4064,
2116,
13,
18090,
16,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
27809,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
82,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
18090,
13,
312,
28,
4,
82,
6,
4064,
2116,
13,
18090,
17,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
514,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3914,
338,
1949,
19771,
734,
1226,
364,
1978,
1106,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
329,
257,
7069,
530,
532,
8106,
329,
2836,
351,
4050,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9176,
532,
428,
815,
1441,
2597,
16237,
326,
547,
3264,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
8686,
355,
880,
355,
416,
14675,
286,
1448,
9931,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
19203,
14,
18090,
62,
562,
570,
902,
30,
16803,
5,
7220,
13,
312,
28,
4,
82,
6,
4064,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10358,
423,
262,
734,
1277,
9176,
986,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
392,
262,
734,
2884,
1448,
9931,
986,
198,
220,
220,
220,
220,
220,
220,
220,
27809,
16,
62,
8726,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
8726,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
308,
67,
16,
62,
8726,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
8726,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
510,
16,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
31197,
16,
62,
8726,
11,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
16,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
21287,
16,
62,
8726,
11,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
16,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
16,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2644,
392,
329,
262,
4490,
12,
67,
13218,
286,
606,
477,
11,
29308,
262,
2581,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
326,
561,
7716,
262,
1351,
286,
4050,
9176,
287,
257,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
629,
19458,
11241,
13,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
16803,
5,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
43681,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10358,
423,
530,
1277,
2597,
290,
530,
422,
1448,
9931,
986,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
16,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
10057,
62,
18090,
62,
562,
570,
902,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
257,
7684,
286,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
10057,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
27830,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
16302,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
10057,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
27830,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
16302,
62,
18090,
62,
312,
796,
2116,
13557,
17953,
62,
3605,
62,
18090,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
257,
2836,
290,
7264,
262,
2836,
257,
2597,
319,
262,
1080,
11,
7386,
11,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
2116,
13557,
17953,
62,
7220,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
10057,
14,
18417,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
7220,
17816,
312,
6,
4357,
2836,
62,
10057,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
3438,
1299,
14,
4,
82,
14,
18417,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
312,
11,
2836,
17816,
312,
6,
4357,
2836,
62,
27830,
62,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
42068,
14,
4,
82,
14,
18417,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16302,
62,
312,
11,
2836,
17816,
312,
6,
4357,
2836,
62,
16302,
62,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2251,
257,
1448,
290,
7264,
262,
1448,
257,
2597,
319,
262,
1080,
11,
7386,
11,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
796,
2116,
13557,
17953,
62,
8094,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
10057,
14,
24432,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
17816,
312,
6,
4357,
1448,
62,
10057,
62,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
3438,
1299,
14,
4,
82,
14,
24432,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
312,
11,
1448,
17816,
312,
6,
4357,
1448,
62,
27830,
62,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
42068,
14,
4,
82,
14,
24432,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16302,
62,
312,
11,
1448,
17816,
312,
6,
4357,
1448,
62,
16302,
62,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
29982,
13,
10057,
28,
439,
815,
1441,
734,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
10786,
14,
18090,
62,
562,
570,
902,
30,
29982,
13,
10057,
28,
439,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
2938,
62,
13664,
28,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16237,
287,
2882,
13,
17752,
62,
2618,
17816,
18090,
62,
562,
570,
902,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
17821,
7,
562,
16747,
17816,
29982,
6,
7131,
6,
10057,
6,
7131,
6,
439,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16237,
13,
1136,
10786,
7220,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
7220,
62,
10057,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
16237,
13,
1136,
10786,
8094,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
10057,
62,
18090,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
29982,
62,
10057,
28,
439,
5,
7220,
13,
312,
43641,
29904,
62,
2389,
815,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
530,
2597,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
10057,
28,
439,
5,
7220,
13,
312,
28,
4,
82,
6,
4064,
2836,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
2938,
62,
13664,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
10057,
62,
18090,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2882,
13,
17752,
62,
2618,
17816,
18090,
62,
562,
570,
902,
6,
7131,
15,
7131,
6,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
29982,
62,
10057,
28,
439,
5,
8094,
13,
312,
43641,
46846,
62,
2389,
815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1441,
530,
2597,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
10057,
28,
439,
5,
8094,
13,
312,
28,
4,
82,
6,
4064,
1448,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
2938,
62,
13664,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
10057,
62,
18090,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2882,
13,
17752,
62,
2618,
17816,
18090,
62,
562,
570,
902,
6,
7131,
15,
7131,
6,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
43641,
29904,
62,
2389,
815,
1441,
513,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
1080,
815,
307,
287,
326,
1351,
286,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
82,
6,
4064,
2836,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
2938,
62,
13664,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16237,
287,
2882,
13,
17752,
62,
2618,
17816,
18090,
62,
562,
570,
902,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
10057,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
10057,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
27830,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
27830,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
16302,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
16302,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
8094,
13,
312,
43641,
46846,
62,
2389,
815,
1441,
513,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
1080,
815,
307,
287,
326,
1351,
286,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
18090,
62,
562,
570,
902,
30,
8094,
13,
312,
28,
4,
82,
6,
4064,
1448,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
2938,
62,
13664,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16237,
287,
2882,
13,
17752,
62,
2618,
17816,
18090,
62,
562,
570,
902,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
10057,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
10057,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
27830,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
27830,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
705,
16302,
6,
287,
16237,
17816,
29982,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
16302,
62,
18090,
62,
312,
11,
16237,
17816,
18090,
6,
7131,
6,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
20934,
8021,
16747,
14881,
14402,
20448,
7,
9288,
62,
85,
18,
13,
19452,
913,
14402,
20448,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
85,
18,
13,
8021,
16747,
14402,
35608,
259,
2599,
198,
220,
220,
220,
37227,
14881,
1398,
329,
4856,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
7824,
4069,
526,
15931,
628,
220,
220,
220,
25882,
62,
25374,
1137,
31315,
56,
62,
33,
15675,
4221,
796,
513,
198,
220,
220,
220,
25882,
62,
25374,
1137,
31315,
56,
62,
46162,
4221,
796,
7102,
37,
13,
9806,
62,
16302,
62,
21048,
62,
18053,
532,
352,
628,
220,
220,
220,
825,
3440,
62,
39873,
62,
7890,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16447,
6291,
1366,
284,
307,
973,
319,
5254,
13,
628,
220,
220,
220,
220,
220,
220,
220,
15622,
1366,
389,
1312,
8,
257,
2597,
290,
21065,
8,
257,
7386,
7268,
25,
257,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
18911,
290,
513,
2985,
1626,
513,
2628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
825,
2251,
62,
16302,
62,
71,
959,
9282,
7,
8000,
62,
312,
11,
6795,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37227,
16447,
257,
4738,
1628,
18911,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
6795,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32483,
796,
4738,
13,
25192,
600,
7,
16,
11,
2116,
13,
22921,
62,
25374,
1137,
31315,
56,
62,
33,
15675,
4221,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
42068,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
29573,
400,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
42068,
13,
33295,
7,
20850,
13,
3605,
62,
16302,
62,
5420,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
11,
2560,
62,
312,
28,
8000,
62,
312,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
850,
42068,
58,
12,
16,
7131,
6,
312,
6,
4357,
850,
42068,
58,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
62,
8000,
796,
850,
42068,
58,
25120,
13,
25192,
600,
7,
15,
11,
32483,
532,
352,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
16302,
62,
71,
959,
9282,
7,
3605,
62,
8000,
17816,
312,
6,
4357,
6795,
532,
352,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
47445,
8021,
16747,
14881,
14402,
20448,
11,
2116,
737,
2220,
62,
39873,
62,
7890,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
27830,
62,
312,
796,
2116,
13,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
944,
13,
27830,
62,
312,
11,
2116,
13,
27830,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
1628,
18911,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16302,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16302,
62,
312,
796,
2116,
13,
16302,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
944,
13,
16302,
62,
312,
11,
2116,
13,
16302,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
4738,
1628,
18911,
198,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
16302,
62,
71,
959,
9282,
7,
944,
13,
16302,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
13,
25192,
600,
7,
16,
11,
2116,
13,
22921,
62,
25374,
1137,
31315,
56,
62,
46162,
4221,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
513,
2985,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7220,
62,
2340,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
4326,
13,
3605,
62,
7220,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
7220,
7,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7220,
62,
2340,
13,
33295,
7,
7220,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
513,
2628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8094,
62,
2340,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
796,
4326,
13,
3605,
62,
8094,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
8094,
7,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8094,
62,
2340,
13,
33295,
7,
8094,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5930,
362,
1866,
319,
1123,
1448,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
944,
13,
7220,
62,
2340,
58,
72,
4357,
1448,
62,
312,
28,
8094,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
944,
13,
7220,
62,
2340,
58,
72,
4064,
362,
4357,
1448,
62,
312,
28,
8094,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
17953,
62,
2164,
415,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
944,
13,
7220,
62,
312,
11,
1628,
62,
312,
28,
944,
13,
16302,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
944,
13,
18090,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18090,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
18090,
62,
312,
796,
2116,
13,
18090,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
944,
13,
18090,
62,
312,
11,
2116,
13,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
5345,
4277,
2836,
290,
1448,
284,
307,
973,
319,
5254,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12286,
62,
7220,
62,
312,
796,
2116,
13,
7220,
62,
2340,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12286,
62,
8094,
62,
312,
796,
2116,
13,
8094,
62,
2340,
58,
15,
60,
628,
220,
220,
220,
825,
651,
62,
18090,
62,
562,
570,
902,
7,
944,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
11380,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
1255,
422,
42517,
1112,
2597,
16237,
7824,
1343,
42517,
798,
10289,
13,
628,
220,
220,
220,
220,
220,
220,
220,
27592,
17151,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
30,
27,
37266,
29,
290,
5860,
663,
1255,
11,
810,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
37266,
29,
318,
262,
14626,
12405,
10007,
1296,
286,
4050,
3038,
5556,
198,
220,
220,
220,
220,
220,
220,
220,
16628,
11,
611,
2810,
13,
2264,
263,
798,
10289,
318,
4504,
355,
880,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
257,
46545,
7268,
262,
1351,
2597,
25815,
7824,
2882,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42517,
798,
10289,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
6371,
796,
2116,
13557,
1136,
62,
18090,
62,
562,
570,
902,
62,
22766,
62,
6371,
7,
1174,
10379,
1010,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
22766,
62,
6371,
11,
2938,
62,
13376,
28,
40319,
62,
13376,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
26209,
11,
12405,
62,
6371,
8,
628,
220,
220,
220,
825,
4808,
1136,
62,
18090,
62,
562,
570,
902,
62,
22766,
62,
6371,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
1729,
12,
16803,
2597,
25815,
12405,
10289,
422,
1813,
16628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
12405,
10007,
389,
2727,
351,
262,
2810,
16628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
319,
2597,
25815,
12608,
13,
48951,
16628,
389,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
11,
7386,
62,
312,
11,
1628,
62,
312,
11,
1448,
62,
312,
11,
2836,
62,
312,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
2597,
25815,
12405,
10289,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
22766,
62,
6371,
7,
1174,
10379,
1010,
8,
628,
198,
4871,
20934,
8021,
16747,
50015,
14402,
20448,
7,
47445,
8021,
16747,
14881,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
9487,
329,
4856,
12515,
12405,
42287,
319,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
7824,
13,
628,
220,
220,
220,
2264,
263,
1112,
7386,
290,
1628,
11,
393,
2836,
290,
1448,
2482,
287,
257,
14626,
7337,
7772,
198,
220,
220,
220,
19390,
11,
1201,
257,
2597,
16237,
1276,
3994,
691,
257,
2060,
5166,
286,
357,
11218,
11,
198,
220,
220,
220,
2496,
737,
554,
3090,
11,
1201,
25431,
319,
2597,
25815,
8991,
691,
284,
198,
220,
220,
220,
262,
2457,
1255,
11,
4050,
4235,
2314,
307,
5929,
351,
1312,
8,
1448,
393,
21065,
8,
198,
220,
220,
220,
7386,
290,
19552,
11,
780,
340,
561,
1464,
1255,
287,
281,
6565,
1351,
13,
628,
220,
220,
220,
37227,
628,
198,
4871,
20934,
8021,
16747,
13470,
14402,
20448,
7,
47445,
8021,
16747,
14881,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
9487,
329,
4856,
1277,
25815,
319,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
7824,
13,
628,
220,
220,
220,
4128,
25815,
319,
257,
7386,
393,
1628,
423,
1245,
319,
606,
3264,
11,
198,
220,
220,
220,
2427,
286,
319,
511,
1628,
18911,
11,
1312,
13,
68,
484,
389,
1729,
12,
259,
372,
863,
13,
554,
198,
220,
220,
220,
3090,
11,
1448,
1277,
25815,
389,
407,
9902,
284,
1448,
338,
2985,
13,
628,
220,
220,
220,
30307,
319,
428,
1398,
787,
29965,
319,
262,
10552,
290,
7824,
25431,
198,
220,
220,
220,
286,
1277,
25815,
13,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
9288,
62,
1136,
62,
18090,
62,
562,
570,
902,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
46189,
25431,
1332,
2446,
13,
628,
220,
220,
220,
220,
220,
220,
220,
4784,
284,
262,
2810,
16628,
11,
428,
2446,
25,
198,
220,
220,
220,
220,
220,
220,
220,
532,
8075,
257,
649,
2597,
16237,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
29348,
326,
1351,
2597,
25815,
7824,
1128,
24764,
9380,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
28128,
274,
262,
2727,
2597,
16237,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
16628,
284,
307,
3177,
618,
13487,
2597,
25815,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
48951,
16628,
389,
25,
2597,
62,
312,
11,
7386,
62,
312,
11,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
11,
2836,
62,
312,
290,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
376,
2171,
4277,
16237,
351,
2810,
16628,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
562,
16747,
796,
2116,
13557,
2617,
62,
12286,
62,
562,
16747,
62,
1078,
7657,
7,
1174,
10379,
1010,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
649,
2597,
16237,
329,
428,
1332,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
17953,
62,
2164,
415,
7,
1174,
9288,
62,
562,
16747,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
2938,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
562,
570,
902,
796,
2116,
13557,
4868,
62,
40319,
62,
18090,
62,
562,
570,
902,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
9288,
62,
562,
16747,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
2597,
25815,
422,
7824,
198,
220,
220,
220,
220,
220,
220,
220,
2882,
11,
12405,
62,
6371,
796,
2116,
13,
1136,
62,
18090,
62,
562,
570,
902,
7,
1174,
9288,
62,
562,
16747,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
26209,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
22766,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
11925,
7,
40319,
62,
562,
570,
902,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
18896,
7,
26209,
13,
20274,
13,
1136,
10786,
18090,
62,
562,
570,
902,
6,
22305,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
2938,
2597,
25815,
547,
4504,
416,
262,
7824,
869,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16237,
287,
2938,
62,
562,
570,
902,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
26209,
11,
16237,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
23520,
2727,
2597,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
33678,
62,
2164,
415,
7,
1174,
9288,
62,
562,
16747,
8,
628,
220,
220,
220,
825,
4808,
2617,
62,
12286,
62,
562,
16747,
62,
1078,
7657,
7,
944,
11,
12429,
1078,
822,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
44402,
4277,
3815,
329,
4814,
12608,
286,
2597,
16237,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1002,
645,
8674,
11,
2496,
393,
2597,
389,
2810,
11,
484,
481,
4277,
284,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
422,
6291,
1366,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
708,
822,
82,
25,
7508,
422,
257,
2597,
16237,
9312,
13,
48951,
12608,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
389,
25,
2597,
62,
312,
11,
7386,
62,
312,
11,
1628,
62,
312,
11,
1448,
62,
312,
11,
2836,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
597,
7,
16793,
287,
708,
822,
82,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2496,
287,
19203,
27830,
62,
312,
3256,
705,
42068,
62,
312,
11537,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
708,
822,
82,
17816,
16302,
62,
312,
20520,
796,
2116,
13,
16302,
62,
312,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
597,
7,
11218,
287,
708,
822,
82,
329,
8674,
287,
19203,
7220,
62,
312,
3256,
705,
8094,
62,
312,
11537,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
708,
822,
82,
17816,
7220,
62,
312,
20520,
796,
2116,
13,
12286,
62,
7220,
62,
312,
628,
220,
220,
220,
220,
220,
220,
220,
611,
705,
18090,
62,
312,
6,
407,
287,
708,
822,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
708,
822,
82,
17816,
18090,
62,
312,
20520,
796,
2116,
13,
18090,
62,
312,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
708,
822,
82,
628,
220,
220,
220,
825,
4808,
4868,
62,
40319,
62,
18090,
62,
562,
570,
902,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15056,
262,
16628,
11,
340,
5860,
2938,
1277,
2597,
25815,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
16628,
326,
481,
307,
3177,
618,
13487,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25815,
13,
48951,
16628,
389,
25,
2597,
62,
312,
11,
7386,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
11,
1448,
62,
312,
11,
2836,
62,
312,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
262,
1351,
286,
262,
2938,
2597,
25815,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
685,
944,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
1174,
10379,
1010,
15437,
628,
220,
220,
220,
1303,
6208,
2663,
2174,
869,
262,
14276,
1332,
2446,
11,
4955,
1180,
8106,
198,
220,
220,
220,
1303,
17790,
13,
7066,
1010,
389,
2810,
355,
7368,
287,
262,
2446,
1438,
11,
706,
198,
220,
220,
220,
1303,
705,
1525,
4458,
1114,
1672,
11,
1332,
62,
1136,
62,
18090,
62,
562,
570,
902,
62,
1525,
62,
16302,
62,
7220,
62,
392,
62,
18090,
198,
220,
220,
220,
1303,
3848,
262,
14276,
1332,
2446,
351,
1628,
62,
312,
11,
2836,
62,
312,
290,
2597,
62,
312,
13,
628,
198,
4871,
20934,
8021,
16747,
818,
372,
863,
14402,
20448,
7,
47445,
8021,
16747,
13470,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
9487,
329,
4856,
19552,
25815,
319,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
7824,
13,
628,
220,
220,
220,
47025,
863,
25815,
319,
257,
7386,
393,
1628,
423,
645,
1245,
319,
606,
198,
220,
220,
220,
3264,
11,
475,
319,
262,
4493,
739,
606,
2427,
13,
628,
220,
220,
220,
30307,
319,
428,
1398,
466,
407,
787,
29965,
319,
262,
1245,
286,
19552,
198,
220,
220,
220,
25815,
11,
475,
287,
511,
10552,
290,
7824,
25431,
13,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
9288,
62,
1136,
62,
18090,
62,
562,
570,
902,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4550,
19552,
62,
1462,
62,
16302,
8106,
284,
2938,
9312,
287,
5254,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
2208,
7,
47445,
8021,
16747,
818,
372,
863,
14402,
20448,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
737,
62,
9288,
62,
1136,
62,
18090,
62,
562,
570,
902,
7,
259,
372,
863,
62,
1462,
62,
42068,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
10379,
1010,
8,
628,
198,
4871,
20934,
8021,
16747,
44831,
14402,
20448,
7,
47445,
8021,
16747,
818,
372,
863,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
9487,
329,
4856,
24155,
3048,
319,
1220,
85,
18,
14,
18090,
62,
562,
570,
902,
7824,
13,
628,
220,
220,
220,
47025,
863,
25815,
319,
257,
7386,
393,
1628,
423,
645,
1245,
319,
606,
198,
220,
220,
220,
3264,
11,
475,
319,
262,
4493,
739,
606,
2427,
13,
628,
220,
220,
220,
30307,
319,
428,
1398,
787,
29965,
319,
262,
1245,
286,
19552,
25815,
198,
220,
220,
220,
290,
7824,
25431,
13,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
1136,
62,
18090,
62,
562,
570,
902,
62,
22766,
62,
6371,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
4050,
2597,
25815,
12405,
10289,
422,
1813,
16628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1114,
1332,
5050,
287,
428,
1398,
11,
914,
316,
425,
481,
1464,
307,
2081,
13,
1081,
287,
198,
220,
220,
220,
220,
220,
220,
220,
4050,
4235,
11,
19552,
62,
1462,
62,
42068,
11,
1448,
62,
312,
11,
7386,
62,
312,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
481,
1464,
307,
1715,
684,
3089,
422,
2810,
16628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
12405,
10007,
389,
2727,
351,
262,
2810,
16628,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
48951,
16628,
389,
25,
2597,
62,
312,
11,
7386,
62,
312,
11,
1628,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
312,
11,
2836,
62,
312,
290,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
2597,
25815,
12405,
10289,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
10379,
1010,
796,
16628,
13,
30073,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
10379,
1010,
13,
12924,
10786,
259,
372,
863,
62,
1462,
62,
42068,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
10379,
1010,
13,
12924,
10786,
8094,
62,
312,
3256,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
10379,
1010,
13,
12924,
10786,
27830,
62,
312,
3256,
6045,
8,
198,
220,
220,
220,
220,
220,
220,
220,
12405,
62,
10379,
1010,
13,
12924,
10786,
16302,
62,
312,
3256,
6045,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
22766,
62,
6371,
7,
16803,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
22766,
62,
10379,
1010,
8,
628,
220,
220,
220,
825,
4808,
4868,
62,
40319,
62,
18090,
62,
562,
570,
902,
7,
944,
11,
12429,
10379,
1010,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15056,
262,
16628,
11,
340,
5860,
2938,
1277,
2597,
25815,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
16628,
25,
16628,
326,
481,
307,
3177,
618,
13487,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25815,
13,
48951,
16628,
389,
25,
2597,
62,
312,
11,
7386,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
11,
1448,
62,
312,
11,
2836,
62,
312,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
82,
25,
262,
1351,
286,
262,
2938,
2597,
25815,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
16237,
2792,
11,
284,
307,
1234,
319,
705,
28751,
10354,
1391,
6,
562,
16747,
10354,
2792,
92,
198,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
8726,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
8726,
7,
1174,
10379,
1010,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
49368,
1448,
9931,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
2340,
796,
685,
14202,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
16628,
13,
1136,
10786,
8094,
62,
312,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
2340,
796,
685,
7220,
17816,
312,
20520,
329,
2836,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
4868,
62,
18417,
62,
259,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16628,
17816,
8094,
62,
312,
6,
12962,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
2340,
796,
685,
944,
13,
12286,
62,
7220,
62,
312,
60,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
49368,
2597,
24155,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
2340,
796,
685,
14202,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
16628,
13,
1136,
10786,
27830,
62,
312,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
2340,
796,
685,
16302,
17816,
312,
20520,
329,
1628,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
4868,
62,
42068,
62,
259,
62,
27830,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16628,
13,
12924,
10786,
27830,
62,
312,
6,
4008,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
2340,
796,
685,
16302,
17816,
312,
20520,
329,
1628,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
4868,
62,
42068,
62,
259,
62,
7266,
21048,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16302,
62,
312,
15437,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
2938,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
25815,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1628,
62,
312,
287,
1628,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16628,
17816,
16302,
62,
312,
20520,
796,
1628,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
2836,
62,
312,
287,
2836,
62,
2340,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16628,
17816,
7220,
62,
312,
20520,
796,
2836,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25815,
13,
33295,
7,
944,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
562,
16747,
62,
8726,
11,
12429,
10379,
1010,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
25815,
628,
198,
4871,
50144,
818,
372,
42942,
14402,
20448,
7,
9288,
62,
85,
18,
13,
19452,
913,
14402,
20448,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1332,
62,
85,
18,
13,
8021,
16747,
14402,
35608,
259,
2599,
198,
220,
220,
220,
37227,
14402,
24155,
1067,
463,
290,
663,
3048,
526,
15931,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
259,
372,
863,
62,
27830,
62,
2164,
1187,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
351,
19552,
7386,
11455,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
604,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
7386,
351,
257,
2836,
290,
734,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
734,
1277,
9176,
284,
1628,
16,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
257,
34192,
2597,
284,
1628,
17,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
19552,
2597,
284,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
340,
318,
5600,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
4050,
9176,
319,
1628,
16,
532,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
815,
1441,
513,
9176,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
13,
33295,
7,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
17,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
17,
17816,
312,
6,
4357,
1628,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
617,
9176,
284,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
15,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
16,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11485,
392,
530,
319,
257,
1180,
1628,
355,
257,
34192,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
17,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
17,
7131,
6,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
2251,
674,
19552,
2597,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
43681,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
2640,
12,
1268,
16879,
2043,
14,
3438,
1299,
14,
4,
7,
27830,
62,
312,
8,
82,
14,
18417,
14,
4,
7,
7220,
62,
312,
8,
82,
14,
305,
829,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
62,
6371,
796,
705,
4,
7,
43681,
62,
6371,
8,
82,
14,
4,
7,
18090,
62,
312,
8,
82,
14,
259,
372,
863,
62,
1462,
62,
42068,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43681,
62,
6371,
10354,
2779,
62,
43681,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
62,
4868,
58,
18,
7131,
6,
312,
20520,
92,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
2779,
62,
43681,
62,
6371,
1343,
31051,
259,
372,
863,
62,
1462,
62,
42068,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
7,
19522,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
15285,
62,
37815,
3525,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8053,
31077,
7,
81,
11,
1006,
28,
18090,
62,
4868,
58,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
779,
262,
1351,
7386,
2597,
25815,
40391,
284,
2198,
611,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
318,
3017,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
27830,
13,
312,
28,
4,
7,
27830,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
1265,
329,
4050,
1351,
2597,
25815,
532,
262,
2597,
815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1210,
656,
257,
1628,
2597,
11,
1863,
351,
262,
734,
1277,
9176,
326,
389,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
319,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
16803,
5,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1052,
4050,
2597,
329,
281,
19552,
2597,
481,
307,
257,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9312,
11,
351,
257,
7386,
2792,
284,
262,
19552,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
6371,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
8726,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
510,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
463,
62,
6371,
11,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
628,
220,
220,
220,
825,
4808,
9288,
62,
4868,
62,
18090,
62,
562,
570,
902,
62,
17256,
62,
14933,
7,
944,
11,
2597,
16,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
351,
2291,
3891,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
7386,
351,
257,
1448,
290,
257,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
1628,
351,
257,
1448,
290,
257,
2836,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
16,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
16,
17816,
312,
6,
4357,
2597,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
944,
13,
27830,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
796,
4326,
13,
3605,
62,
8094,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
8094,
7,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
26858,
16,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
62,
17256,
62,
14933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
5420,
28,
18090,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
5420,
28,
16302,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
5420,
28,
7220,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
40319,
62,
26858,
16,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
26858,
17,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
62,
17256,
62,
14933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
5420,
28,
18090,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
5420,
28,
944,
13,
27830,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
5420,
28,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
40319,
62,
26858,
17,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
26858,
18,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
62,
17256,
62,
14933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
5420,
28,
18090,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
5420,
28,
944,
13,
27830,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
5420,
28,
7220,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
40319,
62,
26858,
18,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
26858,
19,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
62,
17256,
62,
14933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
5420,
28,
18090,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
5420,
28,
16302,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1448,
62,
5420,
28,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
40319,
62,
26858,
19,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
62,
27830,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
29982,
13,
27830,
13,
312,
28,
4,
7,
27830,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
2116,
13,
27830,
62,
312,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
27830,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
62,
27830,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
62,
16302,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
16302,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
62,
16302,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
62,
8094,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
8094,
13,
312,
28,
4,
7,
8094,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8094,
62,
312,
10354,
1448,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
8094,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
62,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
62,
7220,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
7220,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
62,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
62,
18090,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
18090,
13,
312,
28,
4,
7,
18090,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
18090,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
62,
18090,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6889,
1654,
477,
12066,
547,
2727,
7675,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
4023,
13,
16366,
13,
11380,
11,
44608,
62,
27830,
13,
13376,
62,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
4023,
13,
16366,
13,
11380,
11,
44608,
62,
16302,
13,
13376,
62,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
4023,
13,
16366,
13,
11380,
11,
44608,
62,
8094,
13,
13376,
62,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
4023,
13,
16366,
13,
11380,
11,
44608,
62,
7220,
13,
13376,
62,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6889,
1654,
356,
460,
651,
736,
262,
3376,
1271,
286,
12066,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
27830,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
62,
27830,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
16302,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
62,
16302,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
8094,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
62,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
7220,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
62,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44608,
62,
18090,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
62,
18090,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
49899,
477,
3858,
286,
12066,
423,
262,
3376,
5794,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
3808,
62,
27830,
11,
2938,
62,
26858,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
3808,
62,
16302,
11,
2938,
62,
26858,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
3808,
62,
8094,
11,
2938,
62,
26858,
19,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
3808,
62,
7220,
11,
2938,
62,
26858,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
3808,
62,
18090,
11,
2938,
62,
26858,
16,
8,
628,
220,
220,
220,
825,
1332,
62,
28956,
62,
562,
16747,
62,
1640,
62,
16302,
62,
27362,
62,
292,
62,
27830,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14402,
3061,
25,
4781,
16237,
329,
1628,
7205,
355,
7386,
13,
628,
220,
220,
220,
220,
220,
220,
220,
48987,
618,
356,
423,
734,
2597,
25815,
329,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
7205,
355,
7386,
11,
530,
7219,
351,
340,
355,
257,
7386,
290,
584,
355,
257,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
11,
356,
991,
1498,
284,
4781,
883,
25815,
1568,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
1410,
25,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
2597,
290,
257,
7386,
351,
257,
2836,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
12181,
257,
2597,
329,
428,
2836,
287,
428,
7386,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
12181,
257,
2597,
329,
428,
2836,
287,
262,
976,
9312,
355,
257,
1628,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
48987,
326,
1111,
25815,
547,
2727,
290,
340,
373,
4938,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
17220,
262,
7386,
16237,
329,
262,
2836,
290,
905,
326,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
16237,
329,
683,
991,
4938,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
27830,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
17816,
312,
6,
4357,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
25101,
8,
198,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
16302,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
17816,
312,
6,
4357,
1628,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
25101,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
562,
16747,
62,
27830,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
562,
16747,
62,
16302,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
7220,
62,
312,
10354,
2836,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
423,
734,
2597,
25815,
1912,
287,
1111,
9176,
329,
262,
7386,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1628,
8354,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
11,
2938,
62,
13664,
28,
17,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
20274,
11,
16237,
62,
27830,
8,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
6371,
796,
31051,
3438,
1299,
14,
4,
82,
14,
18417,
14,
4,
82,
14,
305,
829,
14,
4,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
17816,
312,
6,
4357,
2836,
17816,
312,
6,
4357,
2597,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
33678,
7,
27830,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
7220,
62,
312,
10354,
2836,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
356,
691,
423,
530,
16237,
329,
262,
1628,
8354,
1201,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7386,
8354,
373,
4615,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
11,
2938,
62,
13664,
28,
16,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
20274,
11,
16237,
62,
16302,
8,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
259,
372,
863,
62,
18090,
62,
562,
570,
902,
62,
17256,
62,
14933,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
3061,
25,
4155,
4585,
1351,
2597,
25815,
1390,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
25279,
262,
19552,
2597,
25815,
6056,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
1410,
25,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
2597,
290,
257,
7386,
351,
257,
2836,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
19552,
2597,
16237,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
7343,
2597,
25815,
329,
326,
2836,
26,
198,
220,
220,
220,
220,
220,
220,
220,
532,
7343,
2597,
25815,
329,
326,
2836,
1390,
3891,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
796,
4326,
13,
17953,
62,
7220,
7,
41283,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
290,
3650,
2938,
16237,
1006,
82,
198,
220,
220,
220,
220,
220,
220,
220,
16237,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
17816,
312,
6,
4357,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
14933,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
62,
17256,
62,
14933,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
5420,
28,
18090,
11,
7386,
62,
5420,
28,
27830,
11,
2836,
62,
5420,
28,
7220,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
562,
16747,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
48987,
2938,
16237,
1006,
82,
389,
19552,
290,
423,
262,
976,
10289,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
10786,
42068,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16237,
17816,
29982,
6,
7131,
6,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
10786,
42068,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
14933,
17816,
29982,
6,
7131,
6,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
562,
16747,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16237,
62,
14933,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
562,
16747,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
6,
7220,
62,
312,
10354,
2836,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
11,
2938,
62,
13664,
28,
16,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
20274,
11,
16237,
8,
628,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
19203,
14,
18090,
62,
562,
570,
902,
30,
17256,
62,
14933,
5,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
4064,
1391,
6,
7220,
62,
312,
10354,
2836,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
11,
2938,
62,
13664,
28,
16,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
20274,
11,
16237,
62,
14933,
8,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
47730,
62,
259,
372,
42942,
62,
2302,
3004,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
351,
19552,
7386,
11455,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
19552,
2597,
284,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
4050,
9176,
319,
1628,
2291,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
532,
31529,
262,
7552,
198,
220,
220,
220,
220,
220,
220,
220,
532,
797,
12,
9122,
262,
4050,
9176,
11,
17742,
262,
19552,
2597,
645,
2392,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2523,
510,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
13,
33295,
7,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
17,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
17,
17816,
312,
6,
4357,
1628,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
617,
9176,
284,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
15,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
16,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11485,
392,
530,
319,
257,
1180,
1628,
355,
257,
34192,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
17,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
17,
7131,
6,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
2251,
674,
19552,
2597,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
43681,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
2640,
12,
1268,
16879,
2043,
14,
3438,
1299,
14,
4,
7,
27830,
62,
312,
8,
82,
14,
18417,
14,
4,
7,
7220,
62,
312,
8,
82,
14,
305,
829,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
62,
6371,
796,
705,
4,
7,
43681,
62,
6371,
8,
82,
14,
4,
7,
18090,
62,
312,
8,
82,
14,
259,
372,
863,
62,
1462,
62,
42068,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43681,
62,
6371,
10354,
2779,
62,
43681,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
62,
4868,
58,
18,
7131,
6,
312,
20520,
92,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
2779,
62,
43681,
62,
6371,
1343,
31051,
259,
372,
863,
62,
1462,
62,
42068,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
7,
19522,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
15285,
62,
37815,
3525,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8053,
31077,
7,
81,
11,
1006,
28,
18090,
62,
4868,
58,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
4050,
1351,
2597,
25815,
532,
262,
2597,
815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1210,
656,
257,
1628,
2597,
11,
1863,
351,
262,
734,
1277,
9176,
326,
389,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
319,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
16803,
5,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
6371,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
8726,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
510,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
463,
62,
6371,
11,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
259,
372,
863,
62,
8094,
62,
27830,
62,
2164,
1187,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
351,
19552,
1448,
7386,
11455,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
604,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
7386,
351,
257,
2836,
290,
734,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
734,
1277,
9176,
284,
1628,
16,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
257,
34192,
2597,
284,
1628,
17,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
19552,
2597,
284,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
340,
318,
5600,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
4050,
9176,
319,
1628,
16,
532,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
815,
1441,
513,
9176,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
19,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
13,
33295,
7,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
17,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
4326,
13,
3605,
62,
8094,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
8094,
7,
8094,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1448,
16,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
2860,
62,
7220,
62,
1462,
62,
8094,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
17,
17816,
312,
6,
4357,
1448,
16,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
17,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
17,
17816,
312,
6,
4357,
1628,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
617,
9176,
284,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
15,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
16,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
11485,
392,
530,
319,
257,
1180,
1628,
355,
257,
34192,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
17,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
17,
7131,
6,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
2251,
674,
19552,
2597,
319,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
43681,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
2640,
12,
1268,
16879,
2043,
14,
3438,
1299,
14,
4,
7,
27830,
62,
312,
8,
82,
14,
24432,
14,
4,
7,
8094,
62,
312,
8,
82,
14,
305,
829,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8094,
62,
312,
10354,
1448,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
62,
6371,
796,
705,
4,
7,
43681,
62,
6371,
8,
82,
14,
4,
7,
18090,
62,
312,
8,
82,
14,
259,
372,
863,
62,
1462,
62,
42068,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43681,
62,
6371,
10354,
2779,
62,
43681,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
62,
4868,
58,
18,
7131,
6,
312,
20520,
92,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
2779,
62,
43681,
62,
6371,
1343,
31051,
259,
372,
863,
62,
1462,
62,
42068,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
7,
19522,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
15285,
62,
37815,
3525,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8053,
31077,
7,
81,
11,
1006,
28,
18090,
62,
4868,
58,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
779,
262,
1351,
7386,
2597,
25815,
40391,
284,
2198,
611,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
318,
3017,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
8094,
13,
312,
28,
4,
7,
8094,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
27830,
13,
312,
28,
4,
7,
27830,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8094,
62,
312,
10354,
1448,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
308,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
1265,
329,
4050,
1351,
2597,
25815,
532,
262,
2597,
815,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1210,
656,
257,
2836,
1628,
2597,
11,
1863,
351,
262,
734,
1277,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
326,
389,
319,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
16803,
5,
7220,
13,
312,
28,
4,
7,
7220,
62,
312,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
62,
312,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
62,
312,
10354,
1628,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1052,
4050,
2597,
329,
281,
19552,
2597,
481,
307,
257,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9312,
11,
351,
257,
7386,
2792,
284,
262,
19552,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
510,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2792,
28,
21287,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
4357,
1628,
62,
312,
28,
16302,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
510,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
10379,
4400,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
259,
372,
863,
62,
2164,
1187,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
29982,
13,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
642,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
7386,
351,
257,
2836,
11,
1448,
290,
734,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
1115,
1277,
34192,
9176,
284,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
2836,
2597,
284,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
1448,
2597,
284,
262,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
8106,
416,
19552,
9176,
532,
428,
815,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
655,
262,
362,
19552,
9176,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4808,
287,
2837,
7,
20,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
18090,
17816,
312,
6,
4357,
2597,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
13,
33295,
7,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
796,
4326,
13,
3605,
62,
27830,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
27830,
7,
27830,
17816,
312,
6,
4357,
7386,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
796,
4326,
13,
17953,
62,
7220,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
11,
7386,
62,
312,
28,
27830,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
4326,
13,
3605,
62,
8094,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1448,
16,
796,
36592,
2389,
4877,
13,
738,
414,
62,
15042,
13,
17953,
62,
8094,
7,
8094,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
16,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
16,
17816,
312,
6,
4357,
1628,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1628,
17,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
16302,
17,
17816,
312,
6,
4357,
1628,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
617,
34192,
9176,
284,
262,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
16,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
15,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
2860,
62,
18090,
62,
1462,
62,
7220,
62,
392,
62,
16302,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2836,
16,
17816,
312,
6,
4357,
1628,
17,
17816,
312,
6,
4357,
2597,
62,
4868,
58,
16,
7131,
6,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
257,
1729,
12,
259,
372,
863,
2597,
355,
257,
34192,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
562,
16747,
62,
15042,
13,
17953,
62,
2164,
415,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
4868,
58,
17,
7131,
6,
312,
6,
4357,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
7386,
62,
312,
28,
27830,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
2251,
734,
19552,
9176,
319,
262,
7386,
11,
530,
329,
257,
2836,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
530,
329,
257,
7386,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
43681,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
2640,
12,
1268,
16879,
2043,
14,
3438,
1299,
14,
4,
7,
27830,
62,
312,
8,
82,
14,
18417,
14,
4,
7,
7220,
62,
312,
8,
82,
14,
305,
829,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7220,
62,
312,
10354,
2836,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
62,
6371,
796,
705,
4,
7,
43681,
62,
6371,
8,
82,
14,
4,
7,
18090,
62,
312,
8,
82,
14,
259,
372,
863,
62,
1462,
62,
42068,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43681,
62,
6371,
10354,
2779,
62,
43681,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
62,
4868,
58,
18,
7131,
6,
312,
20520,
92,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
2779,
62,
43681,
62,
6371,
1343,
31051,
259,
372,
863,
62,
1462,
62,
42068,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
7,
19522,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
15285,
62,
37815,
3525,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8053,
31077,
7,
81,
11,
1006,
28,
18090,
62,
4868,
58,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
43681,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
2640,
12,
1268,
16879,
2043,
14,
3438,
1299,
14,
4,
7,
27830,
62,
312,
8,
82,
14,
24432,
14,
4,
7,
8094,
62,
312,
8,
82,
14,
305,
829,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27830,
62,
312,
10354,
7386,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8094,
62,
312,
10354,
1448,
16,
17816,
312,
20520,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
62,
6371,
796,
705,
4,
7,
43681,
62,
6371,
8,
82,
14,
4,
7,
18090,
62,
312,
8,
82,
14,
259,
372,
863,
62,
1462,
62,
42068,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43681,
62,
6371,
10354,
2779,
62,
43681,
62,
6371,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
18090,
62,
312,
10354,
2597,
62,
4868,
58,
19,
7131,
6,
312,
20520,
92,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
2779,
62,
43681,
62,
6371,
1343,
31051,
259,
372,
863,
62,
1462,
62,
42068,
6,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2256,
7,
19522,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1136,
7,
19522,
62,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
15285,
62,
37815,
3525,
8,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8053,
31077,
7,
81,
11,
1006,
28,
18090,
62,
4868,
58,
19,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2735,
779,
262,
1351,
2597,
25815,
40391,
284,
651,
257,
1351,
286,
19552,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9176,
319,
262,
7386,
532,
815,
651,
736,
262,
734,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
28,
42068,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13664,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
334,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
2836,
62,
312,
28,
7220,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
18,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
308,
67,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
312,
28,
27830,
17816,
312,
6,
4357,
1448,
62,
312,
28,
8094,
16,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
18090,
62,
4868,
58,
19,
7131,
6,
312,
6,
4357,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
334,
67,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
308,
67,
62,
26858,
8,
628,
220,
220,
220,
825,
4808,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16447,
4096,
38958,
4493,
8883,
13,
628,
220,
220,
220,
220,
220,
220,
220,
770,
4096,
8883,
4909,
257,
6808,
351,
530,
12835,
1628,
290,
198,
220,
220,
220,
220,
220,
220,
220,
734,
9176,
351,
262,
1708,
3891,
25,
1729,
12,
259,
372,
863,
290,
19552,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
1628,
18911,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
12835,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
312,
28,
15763,
17816,
312,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
15763,
17816,
312,
6,
4357,
6808,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
33201,
17816,
312,
6,
4357,
12835,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
705,
13159,
12,
259,
372,
863,
6,
290,
705,
259,
372,
863,
6,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
863,
62,
18090,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
7,
3672,
11639,
13159,
12,
259,
372,
863,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
863,
62,
18090,
17816,
312,
6,
4357,
1729,
62,
259,
372,
863,
62,
18090,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
19552,
62,
18090,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
7,
3672,
11639,
259,
372,
863,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
18090,
62,
15042,
13,
17953,
62,
18090,
7,
259,
372,
863,
62,
18090,
17816,
312,
6,
4357,
19552,
62,
18090,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
357,
15763,
17816,
312,
6,
4357,
12835,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
863,
62,
18090,
17816,
312,
6,
4357,
19552,
62,
18090,
17816,
312,
6,
12962,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
16302,
62,
71,
959,
9282,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
362,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
18911,
286,
4493,
351,
530,
6808,
290,
530,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
257,
1729,
12,
259,
372,
863,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
651,
477,
2597,
25815,
532,
428,
815,
1441,
655,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
9176,
357,
13159,
12,
259,
372,
863,
290,
19552,
8,
287,
262,
6808,
1628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
4277,
8883,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
62,
312,
11,
12835,
62,
312,
11,
1729,
62,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
18090,
62,
312,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
1729,
12,
259,
372,
863,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
19552,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
1729,
12,
259,
372,
863,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
19552,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
1729,
12,
259,
372,
863,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
33201,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
19552,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
17816,
29982,
6,
7131,
6,
16302,
6,
7131,
6,
312,
20520,
796,
12835,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
16803,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
16302,
62,
71,
959,
9282,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
16803,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
362,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
18911,
286,
4493,
351,
530,
6808,
290,
530,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
257,
1729,
12,
259,
372,
863,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
651,
4050,
2597,
25815,
532,
428,
815,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
352,
2597,
357,
13159,
12,
259,
372,
863,
8,
319,
262,
6808,
1628,
290,
352,
2597,
357,
259,
372,
863,
8,
319,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
12835,
1628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
4277,
8883,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
62,
312,
11,
12835,
62,
312,
11,
1729,
62,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
18090,
62,
312,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
1729,
12,
259,
372,
863,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
19552,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
4050,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
31051,
18090,
62,
562,
570,
902,
30,
16803,
6,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
1729,
12,
259,
372,
863,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
19552,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
1729,
12,
259,
372,
863,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
33201,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
19552,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
17816,
29982,
6,
7131,
6,
16302,
6,
7131,
6,
312,
20520,
796,
12835,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
16302,
62,
312,
62,
23599,
62,
361,
62,
17256,
62,
7266,
21048,
62,
23599,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2215,
1262,
2291,
62,
7266,
21048,
11,
345,
1276,
11986,
257,
1628,
4522,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
10786,
14,
18090,
62,
562,
570,
902,
30,
17256,
62,
7266,
21048,
28,
17821,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
33,
2885,
62,
2200,
35780,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4049,
62,
19662,
796,
5855,
29982,
13,
16302,
13,
312,
1276,
307,
7368,
611,
2291,
62,
7266,
21048,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
271,
635,
7368,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
18224,
62,
19662,
11,
374,
13,
20274,
17816,
18224,
6,
7131,
6,
20500,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
10786,
14,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
5,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
17256,
62,
7266,
21048,
28,
17821,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
33,
2885,
62,
2200,
35780,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
18224,
62,
19662,
11,
374,
13,
20274,
17816,
18224,
6,
7131,
6,
20500,
6,
12962,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
16302,
62,
21048,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
2597,
62,
562,
16747,
30,
29982,
13,
16302,
13,
312,
28,
55,
5,
17256,
62,
7266,
21048,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
362,
9176,
290,
257,
18911,
286,
4493,
351,
530,
6808,
290,
530,
12835,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
257,
1729,
12,
259,
372,
863,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
262,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
651,
2597,
25815,
329,
262,
6808,
1628,
475,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
262,
13284,
631,
532,
428,
815,
1441,
655,
262,
6808,
16237,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
651,
2597,
25815,
329,
262,
6808,
1628,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
340,
338,
13284,
631,
532,
428,
815,
1441,
1111,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6822,
326,
11777,
4634,
2291,
62,
7266,
21048,
284,
10352,
318,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7548,
284,
407,
1390,
340,
379,
477,
287,
262,
12405,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
4277,
8883,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
62,
312,
11,
12835,
62,
312,
11,
1729,
62,
259,
372,
863,
62,
18090,
62,
312,
11,
21958,
62,
18090,
62,
312,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
1729,
12,
259,
372,
863,
2597,
284,
6808,
290,
12835,
4493,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
26858,
62,
15763,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
26858,
62,
15763,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
26858,
62,
33201,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
33201,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
26858,
62,
33201,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
9170,
262,
13284,
631,
11,
356,
815,
651,
262,
530,
16237,
319,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
8,
82,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
10354,
6808,
62,
312,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
2504,
7,
81,
13,
20274,
17816,
18090,
62,
562,
570,
902,
6,
4357,
2603,
3533,
13,
19242,
24539,
7,
16,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
15763,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2080,
262,
13284,
631,
11,
356,
815,
651,
1111,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
17256,
62,
7266,
21048,
28,
17821,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
10354,
6808,
62,
312,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
2504,
7,
81,
13,
20274,
17816,
18090,
62,
562,
570,
902,
6,
4357,
2603,
3533,
13,
19242,
24539,
7,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
15763,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
33201,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2080,
13284,
631,
28,
15,
11,
356,
815,
635,
691,
651,
262,
530,
16237,
319,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
17256,
62,
7266,
21048,
28,
15,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
10354,
6808,
62,
312,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
2504,
7,
81,
13,
20274,
17816,
18090,
62,
562,
570,
902,
6,
4357,
2603,
3533,
13,
19242,
24539,
7,
16,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
15763,
8,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
16803,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
16302,
62,
21048,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3855,
2597,
62,
562,
16747,
5633,
16302,
62,
312,
28,
55,
5,
17256,
62,
7266,
21048,
28,
17821,
5,
16803,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
362,
9176,
290,
257,
18911,
286,
4493,
351,
530,
6808,
290,
604,
2974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
1200,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
257,
1729,
12,
259,
372,
863,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
257,
1241,
352,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
2836,
2597,
319,
262,
1241,
362,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
651,
4050,
2597,
25815,
329,
262,
1241,
352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
290,
340,
338,
13284,
631,
532,
428,
815,
1441,
257,
2597,
357,
13159,
12,
259,
372,
863,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
319,
262,
1241,
352,
1628,
290,
9176,
357,
259,
372,
863,
8,
319,
1123,
286,
262,
1241,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
362,
11,
513,
290,
604,
4493,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
4277,
8883,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
62,
312,
11,
12835,
62,
312,
11,
1729,
62,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
18090,
62,
312,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3060,
617,
3131,
4493,
284,
262,
1628,
18911,
198,
220,
220,
220,
220,
220,
220,
220,
1241,
17,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
312,
28,
33201,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1241,
18,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
312,
28,
5715,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1241,
19,
796,
4326,
13,
3605,
62,
16302,
62,
5420,
7,
27830,
62,
312,
28,
944,
13,
27830,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
62,
312,
28,
5715,
18,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
5715,
17,
17816,
312,
6,
4357,
1241,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
5715,
18,
17816,
312,
6,
4357,
1241,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
36592,
2389,
4877,
13,
31092,
62,
15042,
13,
17953,
62,
16302,
7,
5715,
19,
17816,
312,
6,
4357,
1241,
19,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
1729,
12,
259,
372,
863,
2597,
284,
6808,
357,
292,
257,
34192,
8,
290,
284,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
262,
1241,
352,
357,
33201,
8,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
26858,
62,
15763,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
26858,
62,
15763,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
26858,
62,
33201,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
33201,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
26858,
62,
33201,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
19552,
2597,
284,
1241,
362,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
5715,
17,
17816,
312,
6,
4357,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
259,
372,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
4050,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31051,
18090,
62,
562,
570,
902,
30,
29982,
13,
16302,
13,
312,
28,
4,
7,
16302,
8,
82,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5,
17256,
62,
7266,
21048,
28,
17821,
5,
16803,
6,
4064,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16302,
10354,
12835,
62,
312,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
11,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1318,
815,
307,
1115,
25815,
4504,
287,
2472,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
2504,
7,
81,
13,
20274,
17816,
18090,
62,
562,
570,
902,
6,
4357,
2603,
3533,
13,
19242,
24539,
7,
18,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
1729,
12,
259,
372,
863,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
15763,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
423,
1729,
12,
259,
372,
863,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
26858,
62,
33201,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
19552,
2597,
319,
2974,
513,
290,
604,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
26858,
17816,
29982,
6,
7131,
6,
16302,
6,
7131,
6,
312,
20520,
796,
1241,
18,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
10639,
62,
26858,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
26858,
17816,
29982,
6,
7131,
6,
16302,
6,
7131,
6,
312,
20520,
796,
1241,
19,
17816,
312,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
10639,
62,
26858,
8,
628,
220,
220,
220,
825,
1332,
62,
1136,
62,
259,
372,
863,
62,
18090,
62,
562,
570,
902,
62,
1640,
62,
16302,
62,
71,
959,
9282,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
30,
29982,
13,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
362,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
18911,
286,
4493,
351,
530,
6808,
290,
530,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
257,
1729,
12,
259,
372,
863,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
751,
281,
19552,
2836,
2597,
284,
262,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
8106,
19552,
284,
4493,
2597,
25815,
532,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
815,
1441,
352,
2597,
357,
259,
372,
863,
8,
319,
262,
6808,
1628,
13,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
4277,
8883,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
62,
312,
11,
12835,
62,
312,
11,
1729,
62,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
18090,
62,
312,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
40406,
62,
71,
959,
998,
605,
62,
42068,
62,
1416,
39055,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
1729,
12,
259,
372,
863,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
13159,
62,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
12181,
19552,
2597,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
15763,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
259,
372,
863,
62,
18090,
62,
312,
11,
19552,
62,
1462,
62,
42068,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
259,
372,
62,
929,
62,
26858,
17816,
28751,
6,
7131,
6,
562,
16747,
6,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3497,
19552,
2597,
25815,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
62,
6371,
796,
19203,
14,
18090,
62,
562,
570,
902,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
30,
29982,
13,
2640,
12,
1268,
16879,
2043,
25,
259,
372,
863,
62,
1462,
28,
42068,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
1136,
7,
43681,
62,
6371,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47139,
47445,
8021,
16747,
8053,
31077,
7,
81,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
6371,
28,
43681,
62,
6371,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
1729,
12,
259,
372,
863,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
468,
19552,
2597,
319,
6808,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
1729,
12,
259,
372,
863,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
1729,
62,
259,
372,
62,
929,
62,
26858,
796,
2116,
13,
11249,
62,
18090,
62,
562,
16747,
62,
26858,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1628,
62,
312,
28,
33201,
62,
312,
11,
2836,
62,
312,
28,
944,
13,
7220,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
62,
312,
28,
13159,
62,
259,
372,
863,
62,
18090,
62,
312,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
1729,
62,
259,
372,
62,
929,
62,
26858,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
326,
262,
2836,
857,
407,
423,
19552,
2597,
319,
12835,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
10639,
62,
929,
62,
26858,
17816,
29982,
6,
7131,
6,
16302,
6,
7131,
6,
312,
20520,
796,
12835,
62,
312,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30493,
47445,
8021,
16747,
3673,
818,
8053,
31077,
7,
81,
11,
10639,
62,
929,
62,
26858,
8,
628,
198,
4871,
34347,
798,
49,
4316,
51,
3558,
7,
9288,
62,
85,
18,
13,
19452,
913,
14402,
20448,
11,
1332,
62,
85,
18,
13,
8021,
16747,
14402,
35608,
259,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4326,
13,
14402,
20448,
2599,
198,
220,
220,
220,
825,
4808,
17953,
62,
18090,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
32782,
1220,
305,
829,
15506,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
1006,
796,
4326,
13,
3605,
62,
18090,
62,
5420,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
7353,
10786,
14,
305,
829,
3256,
1767,
34758,
6,
18090,
10354,
1006,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
30493,
47139,
47445,
31077,
7,
81,
11,
1006,
8,
628,
220,
220,
220,
825,
1332,
62,
4868,
62,
18090,
62,
562,
570,
902,
62,
4480,
62,
23928,
798,
62,
305,
829,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14134,
7559,
18851,
1220,
18090,
62,
562,
570,
902,
15506,
351,
17142,
2597,
7264,
13,
628,
220,
220,
220,
220,
220,
220,
220,
6208,
5224,
25,
628,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
257,
7386,
351,
257,
2836,
290,
257,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
13610,
513,
9176,
198,
220,
220,
220,
220,
220,
220,
220,
532,
20934,
657,
15565,
2597,
352,
290,
2597,
352,
15565,
2597,
362,
198,
220,
220,
220,
220,
220,
220,
220,
532,
2195,
570,
262,
1353,
2597,
284,
262,
1628,
198,
220,
220,
220,
220,
220,
220,
220,
532,
18232,
262,
10289,
284,
2198,
4050,
9176,
319,
1628,
532,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
815,
1441,
477,
513,
9176,
13,
198,
220,
220,
220,
220,
220,
220,
220,
532,
6822,
262,
6117,
286,
262,
513,
9176,
7603,
262,
3161,
2597,
810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5035,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
357,
27830,
11,
2836,
11,
1628,
8,
796,
2116,
13557,
17953,
62,
9288,
62,
27830,
62,
7220,
62,
16302,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
17953,
62,
15542,
62,
305,
829,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
17953,
62,
23928,
798,
62,
18090,
7,
944,
13,
18090,
62,
4868,
58,
15,
4357,
2116,
13,
18090,
62,
4868,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
17953,
62,
23928,
798,
62,
18090,
7,
944,
13,
18090,
62,
4868,
58,
16,
4357,
2116,
13,
18090,
62,
4868,
58,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
562,
570,
62,
4852,
62,
18090,
62,
1462,
62,
7220,
62,
261,
62,
16302,
7,
7220,
11,
1628,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2882,
796,
2116,
13,
1136,
7,
944,
13557,
11249,
62,
16803,
62,
18090,
62,
562,
570,
902,
62,
6371,
7,
7220,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2882,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
30493,
62,
439,
62,
305,
829,
62,
259,
62,
562,
16747,
7,
81,
11,
2836,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
30493,
62,
36733,
62,
562,
16747,
62,
259,
62,
16803,
7,
26209,
11,
2836,
11,
1628,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
30493,
62,
16803,
62,
18090,
62,
1640,
62,
23928,
798,
62,
10134,
62,
3448,
273,
62,
259,
62,
28751,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2882,
11,
2836,
11,
1628,
11,
657,
11,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13557,
30493,
62,
16803,
62,
18090,
62,
1640,
62,
23928,
798,
62,
10134,
62,
3448,
273,
62,
259,
62,
28751,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2882,
11,
2836,
11,
1628,
11,
352,
11,
362,
8,
628,
220,
220,
220,
825,
1332,
62,
15763,
62,
18090,
62,
292,
62,
23928,
798,
62,
18090,
62,
1640,
37978,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14402,
6808,
2597,
318,
19467,
284,
307,
900,
355,
281,
17142,
2597,
13,
628,
220,
220,
220,
220,
220,
220,
220,
13610,
362,
9176,
326,
389,
12244,
422,
852,
281,
17142,
2597,
13,
198,
220,
220,
220,
220,
220,
220,
220,
13610,
352,
3224,
2597,
543,
815,
307,
6292,
355,
281,
17142,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
13,
2195,
495,
262,
12244,
2597,
3891,
2314,
307,
900,
355,
281,
17142,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
13,
2195,
495,
262,
6292,
2597,
1438,
543,
318,
407,
257,
2888,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
12244,
17142,
2597,
1351,
460,
307,
7675,
900,
281,
17142,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
3672,
16,
796,
705,
15763,
16,
6,
198,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
3672,
17,
796,
705,
15763,
17,
6,
198,
220,
220,
220,
220,
220,
220,
220,
6292,
62,
3672,
16,
796,
705,
23928,
798,
16,
6,
628,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
14933,
796,
685,
1676,
44139,
62,
3672,
16,
11,
12244,
62,
3672,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
11250,
62,
69,
9602,
13,
11250,
7,
8094,
11639,
562,
16747,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
23928,
798,
62,
18090,
28,
1676,
44139,
62,
14933,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
18090,
796,
2116,
13557,
17953,
62,
18090,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
18090,
16,
796,
2116,
13557,
17953,
62,
13190,
62,
18090,
7,
1676,
44139,
62,
3672,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
305,
829,
14,
90,
3448,
273,
62,
18090,
62,
312,
92,
14,
23928,
444,
14,
90,
23928,
798,
62,
18090,
62,
312,
92,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
18090,
62,
312,
28,
3448,
273,
62,
18090,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17142,
62,
18090,
62,
312,
28,
1676,
44139,
62,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
13775,
33,
2389,
41819,
8,
628,
220,
220,
220,
220,
220,
220,
220,
12244,
62,
18090,
17,
796,
2116,
13557,
17953,
62,
13190,
62,
18090,
7,
1676,
44139,
62,
3672,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
305,
829,
14,
90,
3448,
273,
62,
18090,
62,
312,
92,
14,
23928,
444,
14,
90,
23928,
798,
62,
18090,
62,
312,
92,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
18090,
62,
312,
28,
3448,
273,
62,
18090,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17142,
62,
18090,
62,
312,
28,
1676,
44139,
62,
18090,
17,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
13775,
33,
2389,
41819,
8,
628,
220,
220,
220,
220,
220,
220,
220,
6292,
62,
18090,
16,
796,
2116,
13557,
17953,
62,
13190,
62,
18090,
7,
13635,
276,
62,
3672,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
796,
31051,
305,
829,
14,
90,
3448,
273,
62,
18090,
62,
312,
92,
14,
23928,
444,
14,
90,
23928,
798,
62,
18090,
62,
312,
92,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3161,
62,
18090,
62,
312,
28,
3448,
273,
62,
18090,
17816,
312,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17142,
62,
18090,
62,
312,
28,
13635,
276,
62,
18090,
16,
17816,
312,
6,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
1996,
7,
6371,
11,
2938,
62,
13376,
28,
4023,
13,
16366,
13,
43387,
11617,
8,
628,
198,
4871,
20021,
32419,
47445,
51,
3558,
7,
9288,
62,
85,
18,
13,
19452,
913,
14402,
20448,
11,
4326,
13,
14402,
20448,
2599,
628,
198,
4871,
7343,
12982,
16775,
82,
14402,
20448,
7,
9288,
62,
85,
18,
13,
19452,
913,
14402,
20448,
2599,
198,
220,
220,
220,
37227,
14402,
329,
1220,
18417,
14,
27,
7220,
29,
14,
42068,
526,
15931,
628,
198,
2,
44855,
11682,
7,
75,
1671,
363,
24107,
2599,
2312,
5254,
3994,
1080,
12,
5715,
7824,
3848,
11,
543,
1724,
198,
2,
484,
481,
2604,
257,
6509,
3275,
611,
484,
389,
1444,
351,
257,
1628,
12,
1416,
19458,
198,
2,
11241,
11,
7692,
286,
262,
2597,
16237,
319,
262,
1628,
13,
220,
775,
761,
284,
4259,
198,
2,
606,
416,
1262,
257,
1774,
1080,
12,
1416,
19458,
13169,
11241,
284,
787,
262,
869,
2427,
198,
2,
286,
257,
1628,
629,
19458,
11241,
13,
628,
198,
2,
44855,
11682,
7,
75,
1671,
363,
24107,
2599,
2312,
5254,
3994,
1080,
12,
5715,
7824,
3848,
11,
543,
1724,
198,
2,
484,
481,
2604,
257,
6509,
3275,
611,
484,
389,
1444,
351,
257,
1628,
12,
1416,
19458,
198,
2,
11241,
11,
7692,
286,
262,
2597,
16237,
319,
262,
1628,
13,
220,
775,
761,
284,
4259,
198,
2,
606,
416,
1262,
257,
1774,
1080,
12,
1416,
19458,
13169,
11241,
284,
787,
262,
869,
2427,
198,
2,
286,
257,
1628,
629,
19458,
11241,
13,
198
] | 2.234739 | 36,679 |
#
# PySNMP MIB module XXX-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/XXX-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:44:42 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, ModuleIdentity, iso, Integer32, enterprises, ObjectIdentity, Unsigned32, Counter64, IpAddress, Bits, Counter32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "ModuleIdentity", "iso", "Integer32", "enterprises", "ObjectIdentity", "Unsigned32", "Counter64", "IpAddress", "Bits", "Counter32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "NotificationType")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
company = ModuleIdentity((1, 3, 6, 1, 4, 1, 6688))
company.setRevisions(('2009-03-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: company.setRevisionsDescriptions(('1G MC supported',))
if mibBuilder.loadTexts: company.setLastUpdated('200903050000Z')
if mibBuilder.loadTexts: company.setOrganization('FiberRoad')
if mibBuilder.loadTexts: company.setContactInfo('www.fiberroad.com.cn')
if mibBuilder.loadTexts: company.setDescription('Media Converter NMS SNMP mib file')
ipProduct = ObjectIdentity((1, 3, 6, 1, 4, 1, 6688, 1))
if mibBuilder.loadTexts: ipProduct.setStatus('current')
if mibBuilder.loadTexts: ipProduct.setDescription('IP product line')
height2HU = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1))
systemMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1))
alarmMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2))
shelfNum = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfNum.setStatus('current')
if mibBuilder.loadTexts: shelfNum.setDescription('The number of shelf in current system')
shelfTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2), )
if mibBuilder.loadTexts: shelfTable.setStatus('current')
if mibBuilder.loadTexts: shelfTable.setDescription('Shelf table')
shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1), ).setIndexNames((0, "XXX-MIB", "shelfName"))
if mibBuilder.loadTexts: shelfEntry.setStatus('current')
if mibBuilder.loadTexts: shelfEntry.setDescription('Shelf entry definition')
shelfName = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfName.setStatus('current')
if mibBuilder.loadTexts: shelfName.setDescription('Shelf name')
psuA = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psuA.setStatus('current')
if mibBuilder.loadTexts: psuA.setDescription('The status fan A of current shelf')
psuB = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psuB.setStatus('current')
if mibBuilder.loadTexts: psuB.setDescription('The status psu B of current shelf')
volA = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("abnormal", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: volA.setStatus('current')
if mibBuilder.loadTexts: volA.setDescription('The voltage status of psuA of current shelf')
volB = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("abnormal", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: volB.setStatus('current')
if mibBuilder.loadTexts: volB.setDescription('The voltage status of psuB of current shelf')
fan = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fan.setStatus('current')
if mibBuilder.loadTexts: fan.setDescription('The status fan A of current shelf')
temperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 7), Integer32()).setUnits(' oC').setMaxAccess("readonly")
if mibBuilder.loadTexts: temperature.setStatus('current')
if mibBuilder.loadTexts: temperature.setDescription('The temperature status of current shelf')
coCardNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coCardNum.setStatus('current')
if mibBuilder.loadTexts: coCardNum.setDescription('The number of center card inserting of current shelf')
rmtCardNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rmtCardNum.setStatus('current')
if mibBuilder.loadTexts: rmtCardNum.setDescription('The number of remote card inserting of current shelf')
slotObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3))
slotTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1), )
if mibBuilder.loadTexts: slotTable.setStatus('current')
if mibBuilder.loadTexts: slotTable.setDescription('Sparse table containing one entry for each slot in exist chassis in the system, indexed by shelfIdx and slotIdx.')
slotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "shelfIdx"), (0, "XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: slotEntry.setStatus('current')
if mibBuilder.loadTexts: slotEntry.setDescription("in this table ,user can find the converter module's type inserted in the system's slot.then you can get the detail information about the specified type in the cardObjects table")
shelfIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfIdx.setStatus('current')
if mibBuilder.loadTexts: shelfIdx.setDescription('Chassis index - 1 = master management module, 2-4 = slave management module')
slotIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("slot01", 1), ("slot02", 2), ("slot03", 3), ("slot04", 4), ("slot05", 5), ("slot06", 6), ("slot07", 7), ("slot08", 8), ("slot09", 9), ("slot10", 10), ("slot11", 11), ("slot12", 12), ("slot13", 13), ("slot14", 14), ("slot15", 15), ("slot16", 16), ("slot17", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotIdx.setStatus('current')
if mibBuilder.loadTexts: slotIdx.setDescription("chassis's slot,whitch is a index in this table")
coCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(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, 100, 101, 102))).clone(namedValues=NamedValues(("no-card", 0), ("ip113s", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeo", 5), ("mc-ip175d", 6), ("mc-10g-oeo", 7), ("mc-10g-oee", 8), ("mc-FAN", 9), ("mc-10g-oeo-1r", 10), ("mc-2-5g", 11), ("mc-40g-oeo", 12), ("mc-2-5g-t", 13), ("mc-2-5g-f", 14), ("mc-2-5g-mux-t", 15), ("mc-2-5g-mux-f", 16), ("mc-1g-e2o-backup", 17), ("mc-e1-1sfp", 18), ("mc-e1-2sfp", 19), ("mc-100m-sfp", 20), ("mc-1g-o2o-backup", 21), ("mc-cwdm-4", 22), ("mc-cwdm-8", 23), ("mc-10g-oeo-2r", 24), ("mc-qca8334", 25), ("mc-e1t1", 26), ("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coCardType.setStatus('current')
if mibBuilder.loadTexts: coCardType.setDescription("local card's type inserted in the chassis")
coCardDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coCardDesc.setStatus('current')
if mibBuilder.loadTexts: coCardDesc.setDescription("local card's description")
rmtCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(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, 100, 101, 102))).clone(namedValues=NamedValues(("no-card", 0), ("ip113sr", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeor", 5), ("mc-ip175dr", 6), ("mc-10g-oeor", 7), ("mc-10g-oeer", 8), ("mc-FANr", 9), ("mc-10g-oeo-1rr", 10), ("mc-2-5gr", 11), ("mc-40g-oeor", 12), ("mc-2-5g-tr", 13), ("mc-2-5g-fr", 14), ("mc-2-5g-mux-tr", 15), ("mc-2-5g-mux-fr", 16), ("mc-1g-e2o-backupr", 17), ("mc-e1-1sfpr", 18), ("mc-e1-2sfpr", 19), ("mc-100m-sfpr", 20), ("mc-1g-o2o-backupr", 21), ("mc-cwdmr-4", 22), ("mc-cwdmr-8", 23), ("mc-10g-oeo-2rr", 24), ("mc-qca8334r", 25), ("mc-e1t1r", 26), ("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rmtCardType.setStatus('current')
if mibBuilder.loadTexts: rmtCardType.setDescription("remote card's type connect with the local converter")
rmtCardDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rmtCardDesc.setStatus('current')
if mibBuilder.loadTexts: rmtCardDesc.setDescription("remote card's description")
cardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4))
nmuObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1))
nmuConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1))
nmuType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(100, 101, 102))).clone(namedValues=NamedValues(("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nmuType.setStatus('current')
if mibBuilder.loadTexts: nmuType.setDescription('The type of NMU (network management unit)')
ipaddr = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddr.setStatus('current')
if mibBuilder.loadTexts: ipaddr.setDescription('The ethernet IP address of NMU (network management unit)')
subnet = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: subnet.setStatus('current')
if mibBuilder.loadTexts: subnet.setDescription('The etherent mask address of NMU (network management unit)')
gateway = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gateway.setStatus('current')
if mibBuilder.loadTexts: gateway.setDescription('The ethernet gateway address of NMU (network management unit)')
sysContact = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysContact.setStatus('current')
if mibBuilder.loadTexts: sysContact.setDescription('Mirror of the system.sysContact.0')
sysName = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysName.setStatus('current')
if mibBuilder.loadTexts: sysName.setDescription('Mirror of the system.sysName.0')
sysLocation = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 7), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLocation.setStatus('current')
if mibBuilder.loadTexts: sysLocation.setDescription('Mirror of the system.sysLocation.0')
trapHost1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 8), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost1.setStatus('current')
if mibBuilder.loadTexts: trapHost1.setDescription("The first host's IP address used to receive trap messages, when set 0 it simply delete this entry. This applies to the trap host 2~4 below as well.")
trapHost2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 9), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost2.setStatus('current')
if mibBuilder.loadTexts: trapHost2.setDescription("The second host's IP address used to receive trap messages")
trapHost3 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 10), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost3.setStatus('current')
if mibBuilder.loadTexts: trapHost3.setDescription("The third host's IP address used to receive trap messages")
trapHost4 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 11), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost4.setStatus('current')
if mibBuilder.loadTexts: trapHost4.setDescription("The fourth host's IP address used to receive trap messages")
mcCmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2))
mcCmTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1), )
if mibBuilder.loadTexts: mcCmTable.setStatus('current')
if mibBuilder.loadTexts: mcCmTable.setDescription('MC Configuration table')
mcCmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcCmEntry.setStatus('current')
if mibBuilder.loadTexts: mcCmEntry.setDescription('MC Configuration entry definition')
mcShelfIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcShelfIdx.setStatus('current')
if mibBuilder.loadTexts: mcShelfIdx.setDescription('Shelf index')
mcCardIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("card01", 1), ("card02", 2), ("card03", 3), ("card04", 4), ("card05", 5), ("card06", 6), ("card07", 7), ("card08", 8), ("card09", 9), ("card10", 10), ("card11", 11), ("card12", 12), ("card13", 13), ("card14", 14), ("card15", 15), ("card16", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcCardIdx.setStatus('current')
if mibBuilder.loadTexts: mcCardIdx.setDescription('Card index')
mcType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(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))).clone(namedValues=NamedValues(("no-card", 0), ("ip113s", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeo", 5), ("mc-ip175d", 6), ("mc-10g-oeo", 7), ("mc-10g-oee", 8), ("mc-FAN", 9), ("mc-10g-oeo-1r", 10), ("mc-2-5g", 11), ("mc-40g-oeo", 12), ("mc-2-5g-t", 13), ("mc-2-5g-f", 14), ("mc-2-5g-mux-t", 15), ("mc-2-5g-mux-f", 16), ("mc-1g-e2o-backup", 17), ("mc-e1-1sfp", 18), ("mc-e1-2sfp", 19), ("mc-100m-sfp", 20), ("mc-1g-o2o-backup", 21), ("mc-cwdm-4", 22), ("mc-cwdm-8", 23), ("mc-10g-oeo-2r", 24), ("mc-qca8334", 25), ("mc-e1t1", 26)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcType.setStatus('current')
if mibBuilder.loadTexts: mcType.setDescription("Center card's type")
mcTransceiverMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bidi", 1), ("duplex-fiber", 2), ("sfp", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTransceiverMode.setStatus('current')
if mibBuilder.loadTexts: mcTransceiverMode.setDescription("Center card's optical transceiver mode. 100M card support bidi/duplex-fiber; 1G card support bidi/duplex-fiber/sfp. Once sfp is given, the following mcTransceiverDist should be ignored.")
mcTransceiverDist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTransceiverDist.setStatus('current')
if mibBuilder.loadTexts: mcTransceiverDist.setDescription("Center card's optical transceiver distance, 1 means 550m for duplex-fiber mode in case of 1G card, otherwise it represents the real distance (unit of km).")
mcPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("locked", 1), ("unlocked", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcPortState.setStatus('current')
if mibBuilder.loadTexts: mcPortState.setDescription("Center card's port status, locked or unlocked")
mcTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcTransmitMode.setDescription("Center card's transmmit mode")
mcCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcCurWorkMode.setDescription("Center card's current work mode")
mcCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcCfgWorkMode.setDescription("Center card's configurable work mode")
mcLFPCfg = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcLFPCfg.setStatus('current')
if mibBuilder.loadTexts: mcLFPCfg.setDescription('Remote fault detect function, valid only on center MC card')
mcUpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 11), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcUpStream.setStatus('current')
if mibBuilder.loadTexts: mcUpStream.setDescription("Center card's up stream of MC")
mcDownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 12), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcDownStream.setStatus('current')
if mibBuilder.loadTexts: mcDownStream.setDescription("Center card's down stream of MC")
mcTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxlink.setStatus('current')
if mibBuilder.loadTexts: mcTxlink.setDescription("Center card's electrical port's link status")
mcFxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcFxlink.setStatus('current')
if mibBuilder.loadTexts: mcFxlink.setDescription("Center card's optical port's link status")
mcHWLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWLFP.setStatus('current')
if mibBuilder.loadTexts: mcHWLFP.setDescription("Center card's HW LFP, not applicable for 1G card")
mcHWTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcHWTransmitMode.setDescription("Center card's HW transmit mode, not applicable for 1G card")
mcHWWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcHWWorkMode.setDescription("Center card's HW work mode, not applicable for 1G card")
mcHWRmtCtrlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWRmtCtrlMode.setStatus('current')
if mibBuilder.loadTexts: mcHWRmtCtrlMode.setDescription("Center card's HW remote control mode (only valid for local card). the disable mode indicates that all SET operations must be prohibited")
mcNtwSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcNtwSfpExist.setDescription("Center 1G card's Network SFP indication")
mcAccSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcAccSfpExist.setDescription("Center 1G card's Access SFP indication, applicable only for O2O type")
mcUtility = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("idle", 1), ("reset", 2), ("default", 3), ("set2hw", 4), ("not-support", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcUtility.setStatus('current')
if mibBuilder.loadTexts: mcUtility.setDescription('reset, default to factory, set to HW word, etc...')
mcRmtDetect = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("no-remote", 0), ("yes", 1), ("not-support", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtDetect.setStatus('current')
if mibBuilder.loadTexts: mcRmtDetect.setDescription('An identifier to indicate if there is a remote MC currently connecting to system or not')
mcRmtType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(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))).clone(namedValues=NamedValues(("no-card", 0), ("ip113sr", 1), ("ip113f", 2), ("mc-1g-e2or", 3), ("mc-1g-o2or", 4), ("mc-4-25g-oeor", 5), ("mc-ip175dr", 6), ("mc-10g-oeor", 7), ("mc-10g-oeer", 8), ("mc-FANr", 9), ("mc-10g-oeo-1rr", 10), ("mc-2-5gr", 11), ("mc-40g-oeor", 12), ("mc-2-5g-tr", 13), ("mc-2-5g-fr", 14), ("mc-2-5g-mux-tr", 15), ("mc-2-5g-mux-fr", 16), ("mc-1g-e2o-backupr", 17), ("mc-e1-1sfpr", 18), ("mc-e1-2sfpr", 19), ("mc-100m-sfpr", 20), ("mc-1g-o2o-backupr", 21), ("mc-cwdmr-4", 22), ("mc-cwdmr-8", 23), ("mc-10g-oeo-2rr", 24), ("mc-qca8334r", 25), ("mc-e1t1r", 26)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtType.setStatus('current')
if mibBuilder.loadTexts: mcRmtType.setDescription("Remote card's type")
mcRmtTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtTransmitMode.setDescription("Remote card's transmmit mode")
mcRmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtCurWorkMode.setDescription("Remote card's current work mode")
mcRmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtCfgWorkMode.setDescription("Remote card's configurable work mode")
mcRmtLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtLFP.setStatus('current')
if mibBuilder.loadTexts: mcRmtLFP.setDescription("Remote card's LFP lamp state")
mcRmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcRmtTxlink.setDescription("Remote card's electrial port status")
mcRmtHWLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWLFP.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWLFP.setDescription("Remote card's HW LFP, not applicable for 1G card")
mcRmtHWTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWTransmitMode.setDescription("Remote card's HW transmit mode, not applicable for 1G card")
mcRmtHWWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWWorkMode.setDescription("Remote card's HW work mode, not applicable for 1G card")
mcRmtLoopback = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmtLoopback.setDescription("Remote card's HW Loopback state")
mcRmtPwrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("powerdown", 1), ("normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtPwrDown.setStatus('current')
if mibBuilder.loadTexts: mcRmtPwrDown.setDescription("Remote card's power down state")
mcRmtAccSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtAccSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcRmtAccSfpExist.setDescription("Remote 1G card's Access SFP indication, applicable only for O2O type")
mcRmtUtility = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("no-card", 0), ("idle", 1), ("reset", 2), ("default", 3), ("set2hw", 4), ("not-support", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtUtility.setStatus('current')
if mibBuilder.loadTexts: mcRmtUtility.setDescription("Rmote cards's reset, default to factory, set to HW word, etc...")
mcCm1gSpecificObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2))
mcCm1gIpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1))
mcCm1gIpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1), )
if mibBuilder.loadTexts: mcCm1gIpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gIpTable.setDescription('MC 1G Ip address table')
mcCm1gIpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gIpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gIpEntry.setDescription('MC 1G Ip address entry definition')
mcLoOrRmtFg = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("local", 1), ("remote", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcLoOrRmtFg.setStatus('current')
if mibBuilder.loadTexts: mcLoOrRmtFg.setDescription('location index, local or remote')
mcIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIpAddr.setStatus('current')
if mibBuilder.loadTexts: mcIpAddr.setDescription('The Ip address of the node')
mcCm1gSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2))
mcCm1gSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1), )
if mibBuilder.loadTexts: mcCm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gSfpTable.setDescription('MC 1G SFP table')
mcCm1gSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gSfpEntry.setDescription('MC 1G SFP entry definition')
getSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
sfpCompliance = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
sfpConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpConnector.setStatus('current')
if mibBuilder.loadTexts: sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
sfpTransCode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit1: Copper Module bit2: MultiMode bit3: MultiMode others: unsupported')
sfpSmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
sfpMmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
sfpCopperLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
sfpBrSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
sfpWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: sfpWavelength.setDescription('SFP laser wavelength (one word)')
sfpTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: sfpTemperature.setDescription('SFP temperature (one type, signed)')
sfpTranPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: sfpTranPower.setDescription('SFP tx power (one type, signed)')
sfpRecvPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: sfpRecvPower.setDescription('SFP rx power (one type, signed)')
sfpVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mcCm1gAccSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3))
mcCm1gAccSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1), )
if mibBuilder.loadTexts: mcCm1gAccSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gAccSfpTable.setDescription('MC 1G Access SFP table')
mcCm1gAccSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gAccSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gAccSfpEntry.setDescription('MC 1G Access SFP entry definition')
getAccSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getAccSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getAccSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
accsfpCompliance = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpCompliance.setStatus('current')
if mibBuilder.loadTexts: accsfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
accsfpConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpConnector.setStatus('current')
if mibBuilder.loadTexts: accsfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
accsfpTransCode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTransCode.setStatus('current')
if mibBuilder.loadTexts: accsfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
accsfpSmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpSmLength.setStatus('current')
if mibBuilder.loadTexts: accsfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
accsfpMmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpMmLength.setStatus('current')
if mibBuilder.loadTexts: accsfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
accsfpCopperLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: accsfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
accsfpBrSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: accsfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
accsfpWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpWavelength.setStatus('current')
if mibBuilder.loadTexts: accsfpWavelength.setDescription('SFP laser wavelength (one word)')
accsfpTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTemperature.setStatus('current')
if mibBuilder.loadTexts: accsfpTemperature.setDescription('SFP temperature (one type, signed)')
accsfpTranPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTranPower.setStatus('current')
if mibBuilder.loadTexts: accsfpTranPower.setDescription('SFP tx power (one type, signed)')
accsfpRecvPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: accsfpRecvPower.setDescription('SFP rx power (one type, signed)')
accsfpVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpVoltage.setStatus('current')
if mibBuilder.loadTexts: accsfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mcIP175DObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3))
mcIP175DCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1))
mcIP175DCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1), )
if mibBuilder.loadTexts: mcIP175DCardTable.setStatus('current')
if mibBuilder.loadTexts: mcIP175DCardTable.setDescription('MC IP175D Configuration table')
mcIP175DCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcIP175DCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcIP175DCardEntry.setDescription('MC Configuration entry definition')
mcIP175DVlanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Normal", 1), ("mode1", 2), ("mode2", 3), ("not-support", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DVlanMode.setStatus('current')
if mibBuilder.loadTexts: mcIP175DVlanMode.setDescription("Center card's vlan mode")
mcIP175DPortObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2))
mcIP175DPortTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1), )
if mibBuilder.loadTexts: mcIP175DPortTable.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortTable.setDescription('MC IP175D Configuration table')
mcIP175DPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcIP175DPortIdx"))
if mibBuilder.loadTexts: mcIP175DPortEntry.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortEntry.setDescription('MC Configuration entry definition')
mcIP175DPortIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port1", 1), ("port2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DPortIdx.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortIdx.setDescription('Port index')
mcIP175DCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DCurWorkMode.setDescription("Center card's port current work mode")
mcIP175DCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DCfgWorkMode.setDescription("Center card's port configurable work mode")
mcIP175DUpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(64, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DUpStream.setStatus('current')
if mibBuilder.loadTexts: mcIP175DUpStream.setDescription("Center card's port up stream of MC")
mcIP175DDownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(64, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DDownStream.setStatus('current')
if mibBuilder.loadTexts: mcIP175DDownStream.setDescription("Center card's port down stream of MC")
mcIP175DTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DTxlink.setStatus('current')
if mibBuilder.loadTexts: mcIP175DTxlink.setDescription("Center card's port 1 electrical port's link status")
mcIP175DRmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DRmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mcIP175DRmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DRmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mcIP175DRmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DRmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcIP175DRmtTxlink.setDescription("Remote card's port electrial port status")
mc4_25G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4)).setLabel("mc4-25G-OEOObjects")
mc4_25G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1)).setLabel("mc4-25G-OEOCardObjects")
mc4_25G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1), ).setLabel("mc4-25G-OEOCardTable")
if mibBuilder.loadTexts: mc4_25G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOCardTable.setDescription('MC 4.25G OEO Configuration table')
mc4_25G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1), ).setLabel("mc4-25G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc4_25G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc4_25G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mc4_25G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mc4_25G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOLoopback.setDescription("card's Loopback state")
mc4_25G_OEOWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOWorkMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOWorkMode.setDescription("card's Work Mode")
mc4_25G_OEONtwPD = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc4-25G-OEONtwPD").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEONtwPD.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEONtwPD.setDescription("Center card's network side PD status")
mc4_25G_OEOAccPD = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOAccPD").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOAccPD.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOAccPD.setDescription("Center card's access side PD status")
mc4_25G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc4_25G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc4_25G_OEOHWWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOHWWorkMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc4_25G_OEO_Test_Lock = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Lock", 1), ("Unlock", 2)))).setLabel("mc4-25G-OEO-Test-Lock").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc4_25G_OEO_Test_Error_Counter = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 11), Integer32()).setLabel("mc4-25G-OEO-Test-Error-Counter").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc4_25G_OEO_Test_Continue_Time = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 12), Integer32()).setLabel("mc4-25G-OEO-Test-Continue-Time").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc4_25G_OEO_Test_Result = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Pass", 1), ("Error", 2)))).setLabel("mc4-25G-OEO-Test-Result").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Result.setDescription('test result')
mc4_25G_OEO_Start_Test = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Start", 1), ("Stop", 2)))).setLabel("mc4-25G-OEO-Start-Test").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Start_Test.setDescription('start test and stop test')
mc4_25G_OEO_Get_Test_Rst = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("Get", 1)))).setLabel("mc4-25G-OEO-Get-Test-Rst").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Get_Test_Rst.setDescription('get test result')
mcRmt4_25G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mcRmt4_25G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mcRmt4_25G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOLoopback.setDescription("card's Loopback state")
mcRmt4_25G_OEOWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOWorkMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOWorkMode.setDescription("card's Work Mode")
mcRmt4_25G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mcRmt4_25G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mcRmt4_25G_OEOHWWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOHWWorkMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc10G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5)).setLabel("mc10G-OEOObjects")
mc10G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1)).setLabel("mc10G-OEOCardObjects")
mc10G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1), ).setLabel("mc10G-OEOCardTable")
if mibBuilder.loadTexts: mc10G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOCardTable.setDescription('MC 10G OEO Configuration table')
mc10G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1), ).setLabel("mc10G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc10G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOLoopback.setDescription("card's Loopback state")
mc10G_OEOSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEOSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOSFP1.setDescription("Center card's SFP1 link status")
mc10G_OEOSFP2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEOSFP2").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOSFP2.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOSFP2.setDescription("Center card's SFP2 link status")
mc10G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc10G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc10G_OEO_Test_Lock = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Lock", 1), ("Unlock", 2)))).setLabel("mc10G-OEO-Test-Lock").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc10G_OEO_Test_Error_Counter = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 9), Integer32()).setLabel("mc10G-OEO-Test-Error-Counter").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc10G_OEO_Test_Continue_Time = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 10), Integer32()).setLabel("mc10G-OEO-Test-Continue-Time").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc10G_OEO_Test_Result = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Pass", 1), ("Error", 2)))).setLabel("mc10G-OEO-Test-Result").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Result.setDescription('test result')
mc10G_OEO_Start_Test = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Start", 1), ("Stop", 2)))).setLabel("mc10G-OEO-Start-Test").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Start_Test.setDescription('start test and stop test')
mc10G_OEO_Get_Test_Rst = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("Get", 1)))).setLabel("mc10G-OEO-Get-Test-Rst").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Get_Test_Rst.setDescription('get test result')
mcRmt10G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOLoopback.setDescription("card's Loopback state")
mcRmt10G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOHWSpdMode.setDescription("Center card's HW speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mcRmt10G_OEOSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOSFP1.setDescription("card's SFP1 link status")
mc10G_OEO_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_accType.setDescription('')
mc10G_OEO_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_ntwType.setDescription('')
mcRmt10G_OEO_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mcRmt10G-OEO-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEO_accType.setDescription('')
mcRmt10G_OEO_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mcRmt10G-OEO-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEO_ntwType.setDescription('')
mc10G_OEEObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6)).setLabel("mc10G-OEEObjects")
mc10G_OEECardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1)).setLabel("mc10G-OEECardObjects")
mc10G_OEECardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1), ).setLabel("mc10G-OEECardTable")
if mibBuilder.loadTexts: mc10G_OEECardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEECardTable.setDescription('MC 10G OEE Configuration table')
mc10G_OEECardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1), ).setLabel("mc10G-OEECardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEECardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEECardEntry.setDescription('MC Configuration entry definition')
mc10G_OEETxlink = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEETxlink").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEETxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEETxlink.setDescription("Center card's electrical port's link status")
mc10G_OEEFxlink = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEEFxlink").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEEFxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEEFxlink.setDescription("Center card's optical port's link status")
mc10G_OEECurSpd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("m10G-Master", 7), ("m10G-Slave", 8), ("not-support", 9)))).setLabel("mc10G-OEECurSpd").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEECurSpd.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEECurSpd.setDescription("Local card's current spd")
mc10G_OEELoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEELoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEELoopMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEELoopMode.setDescription("card's Loopback state")
mc10G_OEESpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 7, 8))).clone(namedValues=NamedValues(("auto", 1), ("m10G-Master", 7), ("m10G-Slave", 8)))).setLabel("mc10G-OEESpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEESpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEESpdMode.setDescription("card's speed mode")
mc10G_OEEHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEEHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEEHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEEHWLoopback.setDescription("card's Loopback state")
mc10G_OEE_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEE-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEE_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEE_ntwType.setDescription('')
mc10G_OEE_checkResult = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 8), Integer32()).setLabel("mc10G-OEE-checkResult").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEE_checkResult.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEE_checkResult.setDescription('test result')
mcFanObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7))
mcFanCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1))
mcFanCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1), )
if mibBuilder.loadTexts: mcFanCardTable.setStatus('current')
if mibBuilder.loadTexts: mcFanCardTable.setDescription('MC fan card table')
mcFanCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcFanCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcFanCardEntry.setDescription('MC Configuration entry definition')
mcFanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Normal", 1), ("Abnormal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcFanStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mcFanStatus.setDescription("Center card's fan status")
mc40G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8)).setLabel("mc40G-OEOObjects")
mc40G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1)).setLabel("mc40G-OEOCardObjects")
mc40G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1), ).setLabel("mc40G-OEOCardTable")
if mibBuilder.loadTexts: mc40G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOCardTable.setDescription('MC 40G OEO Configuration table')
mc40G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1), ).setLabel("mc40G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc40G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc40G_OEOQsfp1Lane1_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane1-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane1_link.setDescription("Center card's Qsfp1 Lane1 link status")
mc40G_OEOQsfp1Lane2_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane2-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane2_link.setDescription("Center card's Qsfp1 Lane2 link status")
mc40G_OEOQsfp1Lane3_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane3-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane3_link.setDescription("Center card's Qsfp1 Lane3 link status")
mc40G_OEOQsfp1Lane4_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane4-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane4_link.setDescription("Center card's Qsfp1 Lane4 link status")
mc40G_OEOQsfp2Lane1_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane1-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane1_link.setDescription("Center card's Qsfp2 Lane1 link status")
mc40G_OEOQsfp2Lane2_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane2-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane2_link.setDescription("Center card's Qsfp2 Lane2 link status")
mc40G_OEOQsfp2Lane3_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane3-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane3_link.setDescription("Center card's Qsfp2 Lane3 link status")
mc40G_OEOQsfp2Lane4_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane4-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane4_link.setDescription("Center card's Qsfp2 Lane4 link status")
mc40G_OEOLane1LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane1LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane1LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane1LoopMode.setDescription("card's Lane1 Loopback state")
mc40G_OEOLane2LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane2LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane2LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane2LoopMode.setDescription("card's Lane2 Loopback state")
mc40G_OEOLane3LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane3LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane3LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane3LoopMode.setDescription("card's Lane3 Loopback state")
mc40G_OEOLane4LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane4LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane4LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane4LoopMode.setDescription("card's Lane4 Loopback state")
mc40G_OEOLoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("all", 1), ("line-side-enable", 2), ("host-side-enable", 3), ("disable", 4), ("not-support", 5)))).setLabel("mc40G-OEOLoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLoopMode.setDescription("card's Loopback state")
mc40G_OEOSpeedMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=NamedValues(("no-card", 0), ("mc40GSpeed-1", 1), ("mc40GSpeed-2", 2), ("mc40GSpeed-3", 3), ("mc40GSpeed-4", 4), ("mc40GSpeed-5", 5), ("mc40GSpeed-6", 6), ("mc40GSpeed-7", 7), ("mc40GSpeed-8", 8), ("mc40GSpeed-9", 9), ("mc40GSpeed-10", 10), ("mc40GSpeed-11", 11), ("mc40GSpeed-12", 12), ("mc40GSpeed-13", 13), ("not-support", 14)))).setLabel("mc40G-OEOSpeedMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps) speed13: 4X10G: 10GInfiniband(10000.00Mbps)')
mc40G_OEOHWLoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOHWLoopMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOHWLoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOHWLoopMode.setDescription("card's HW Loopback state")
mc40G_OEOHWSpeedMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("no-card", 0), ("mc40GSpeed-1", 1), ("mc40GSpeed-2", 2), ("mc40GSpeed-3", 3), ("mc40GSpeed-4", 4), ("mc40GSpeed-5", 5), ("mc40GSpeed-6", 6), ("mc40GSpeed-7", 7), ("mc40GSpeed-8", 8), ("mc40GSpeed-9", 9), ("mc40GSpeed-10", 10), ("mc40GSpeed-11", 11), ("mc40GSpeed-12", 12), ("not-support", 13)))).setLabel("mc40G-OEOHWSpeedMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOHWSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOHWSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps)')
mcQsfpSpecificObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9))
mcNtwQSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1))
mcNtwQSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1), )
if mibBuilder.loadTexts: mcNtwQSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcNtwQSfpTable.setDescription('MC Ntw QSFP table')
mcNtwQSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcNtwQSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcNtwQSfpEntry.setDescription('MC Ntw QSFP entry definition')
getNtwQSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getNtwQSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getNtwQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfpNtwConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwConnector.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfpNtwTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTemperature.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTemperature.setDescription('SFP temperature (one type, signed)')
qsfpNtwTxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower1.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower2.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower3.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower4.setDescription('SFP tx power (one type, signed)')
qsfpNtwRxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower1.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower2.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower3.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower4.setDescription('SFP rx power (one type, signed)')
mcAccQSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2))
mcAccQSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1), )
if mibBuilder.loadTexts: mcAccQSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcAccQSfpTable.setDescription('MC Acc QSFP table')
mcAccQSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcAccQSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcAccQSfpEntry.setDescription('MC Acc QSFP entry definition')
getAccQSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getAccQSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getAccQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfpAccConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccConnector.setStatus('current')
if mibBuilder.loadTexts: qsfpAccConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfpAccTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTemperature.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTemperature.setDescription('SFP temperature (one type, signed)')
qsfpAccTxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower1.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower2.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower3.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower4.setDescription('SFP tx power (one type, signed)')
qsfpAccRxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower1.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower2.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower3.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower4.setDescription('SFP rx power (one type, signed)')
mc2_5GMCObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10)).setLabel("mc2-5GMCObjects")
mc2_5GMCSFP3Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1)).setLabel("mc2-5GMCSFP3Objects")
mc2_5Cm1gSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1), ).setLabel("mc2-5Cm1gSfpTable")
if mibBuilder.loadTexts: mc2_5Cm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts: mc2_5Cm1gSfpTable.setDescription('MC 1G SFP table')
mc2_5Cm1gSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1), ).setLabel("mc2-5Cm1gSfpEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mc2_5Cm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mc2_5Cm1gSfpEntry.setDescription('MC 1G SFP entry definition')
mc2_5g_getSfpCmd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setLabel("mc2-5g-getSfpCmd").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc2_5g_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc2_5g_sfpCompliance = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 2), Integer32()).setLabel("mc2-5g-sfpCompliance").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc2_5g_sfpConnector = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 3), Integer32()).setLabel("mc2-5g-sfpConnector").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpConnector.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc2_5g_sfpTransCode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 4), Integer32()).setLabel("mc2-5g-sfpTransCode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc2_5g_sfpSmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 5), Integer32()).setLabel("mc2-5g-sfpSmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc2_5g_sfpMmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 6), Integer32()).setLabel("mc2-5g-sfpMmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc2_5g_sfpCopperLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 7), Integer32()).setLabel("mc2-5g-sfpCopperLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc2_5g_sfpBrSpeed = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 8), Integer32()).setLabel("mc2-5g-sfpBrSpeed").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc2_5g_sfpWavelength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 9), Integer32()).setLabel("mc2-5g-sfpWavelength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc2_5g_sfpTemperature = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 10), Integer32()).setLabel("mc2-5g-sfpTemperature").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc2_5g_sfpTranPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 11), Integer32()).setLabel("mc2-5g-sfpTranPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc2_5g_sfpRecvPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 12), Integer32()).setLabel("mc2-5g-sfpRecvPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc2_5g_sfpVoltage = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 13), Integer32()).setLabel("mc2-5g-sfpVoltage").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc2_5GMCCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2)).setLabel("mc2-5GMCCardObjects")
mc2_5GMCCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1), ).setLabel("mc2-5GMCCardTable")
if mibBuilder.loadTexts: mc2_5GMCCardTable.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCCardTable.setDescription('MC 2-5GMC Configuration table')
mc2_5GMCCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1), ).setLabel("mc2-5GMCCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc2_5GMCCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCCardEntry.setDescription('MC Configuration entry definition')
mc2_5GMCSfp3Exist = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setLabel("mc2-5GMCSfp3Exist").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCSfp3Exist.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCSfp3Exist.setDescription("Center 1G card's SFP3 indication")
mc2_5GMCPort1link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort1link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort1link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort1link.setDescription("Center card's electrical port1's link status")
mc2_5GMCPort2link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort2link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort2link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort2link.setDescription("Center card's electrical port2's link status")
mc2_5GMCPort3link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort3link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort3link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort3link.setDescription("Center card's electrical port3's link status")
mcE1Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11))
mcE1CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1))
mcE1CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1), )
if mibBuilder.loadTexts: mcE1CardTable.setStatus('current')
if mibBuilder.loadTexts: mcE1CardTable.setDescription('MC E1 + Eth Configuration table')
mcE1CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcE1CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcE1CardEntry.setDescription('MC Configuration entry definition')
mcE1Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1Txlink.setDescription("Center card's electrical port's link status")
mcE1TxCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1TxCurWorkMode.setDescription("Center card's current work mode")
mcE1SFP1Link = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1SFP1Link.setDescription("Center card's SFP1 port's link status")
mcE1Port1LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1LOS.setDescription("card's E1 Port1 Los state")
mcE1Port1AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1AIS.setDescription("card's E1 Port1 AIS state")
mcE1Port1CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1CV.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1CV.setDescription("card's E1 Port1 CV state")
mcE1Port2LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2LOS.setDescription("card's E1 Port2 Los state")
mcE1Port2AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2AIS.setDescription("card's E1 Port2 AIS state")
mcE1Port2CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2CV.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2CV.setDescription("card's E1 Port2 CV state")
mcE1Port1Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1Loop.setDescription("card's Port1 Loopback state")
mcE1Port2Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2Loop.setDescription("card's Port2 Loopback state")
mcRmtE1Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1Txlink.setDescription("Remote card's electrical port's link status")
mcRmtE1TxCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1TxCurWorkMode.setDescription("Remote card's current work mode")
mcRmtE1SFP1Link = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1SFP1Link.setDescription("Remote card's SFP1 port's link status")
mcRmtE1Port1LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1LOS.setDescription("Remote card's E1 Port1 Los state")
mcRmtE1Port1AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1AIS.setDescription("Remote card's E1 Port1 AIS state")
mcRmtE1Port1CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1CV.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1CV.setDescription("Remote card's E1 Port1 CV state")
mcRmtE1Port2LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2LOS.setDescription("Remote card's E1 Port2 Los state")
mcRmtE1Port2AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2AIS.setDescription("Remote card's E1 Port2 AIS state")
mcRmtE1Port2CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2CV.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2CV.setDescription("Remote card's E1 Port2 CV state")
mcRmtE1Port1Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1Loop.setDescription("Remote card's Port1 Loopback state")
mcRmtE1Port2Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2Loop.setDescription("Remote card's Port2 Loopback state")
mc1GE2OObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12))
mc1GE2OCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1))
mc1GE2OCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1), )
if mibBuilder.loadTexts: mc1GE2OCardTable.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OCardTable.setDescription('MC E2O Fiber backup Configuration table')
mc1GE2OCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc1GE2OCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OCardEntry.setDescription('MC Configuration entry definition')
mc1GE2OPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1GE2OPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1GE2OTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OTxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OTxlink.setDescription("Center card's electrical port's link status")
mc1GE2OPortPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1GE2OPortPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPortPri.setDescription("Center card's Port Pri state")
mc1GE2OPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1GE2OPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1GE2OPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPortHWPri.setDescription("Center card's Port Hardward Pri state")
mc1GE2ORmtPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1GE2ORmtPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1GE2ORmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtTxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtTxlink.setDescription("Remote card's electrical port's link status")
mc1GE2ORmtPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1GE2ORmtPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1GE2ORmtPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPortHWPri.setDescription("Remote card's Port Hardward Pri state")
mc1GO2OObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13))
mc1GO2OCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1))
mc1GO2OCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1), )
if mibBuilder.loadTexts: mc1GO2OCardTable.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OCardTable.setDescription('MC O2O Fiber backup Configuration table')
mc1GO2OCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc1GO2OCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OCardEntry.setDescription('MC Configuration entry definition')
mc1GO2OPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1GO2OPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1GO2OPort3SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort3SFPlink.setDescription("Center card's port3 SFP's link status")
mc1GO2OPortPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1GO2OPortPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPortPri.setDescription("Center card's Port Pri state")
mc1GO2OPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1GO2OPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1GO2OPort3SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort3SFPExist.setDescription('O2O Port3 SFP indication')
mc1GO2OPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPortHWPri.setDescription("Local card's Port Hardward Pri state")
mc1GO2OPort3HWSpd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("M100", 1), ("M1000", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort3HWSpd.setDescription("Local card's Port3 Hardward Speed state")
mc1GO2ORmtPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1GO2ORmtPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1GO2ORmtPort3SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPlink.setDescription("Remote card's port3 SFP's link status")
mc1GO2ORmtPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1GO2ORmtPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1GO2ORmtPort3SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPExist.setDescription("Remote card's SFP3 indication")
mc1GO2ORmtPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPortHWPri.setDescription("Remot card's Port Hardward Pri state")
mc1GO2ORmtPort3HWSpd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("M100", 1), ("M1000", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort3HWSpd.setDescription("Remot card's Port3 Hardward Speed state")
mc1GO2OSFP3Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2))
mc1GO2OSfp3Table = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1), )
if mibBuilder.loadTexts: mc1GO2OSfp3Table.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OSfp3Table.setDescription('MC 1G SFP table')
mc1GO2OSfp3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mc1GO2OSfp3Entry.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OSfp3Entry.setDescription('MC 1G O2O SFP3 entry definition')
mc1go2o_getSfpCmd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setLabel("mc1go2o-getSfpCmd").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1go2o_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc1go2o_sfpCompliance = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 2), Integer32()).setLabel("mc1go2o-sfpCompliance").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc1go2o_sfpConnector = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 3), Integer32()).setLabel("mc1go2o-sfpConnector").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpConnector.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc1go2o_sfpTransCode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 4), Integer32()).setLabel("mc1go2o-sfpTransCode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc1go2o_sfpSmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 5), Integer32()).setLabel("mc1go2o-sfpSmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc1go2o_sfpMmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 6), Integer32()).setLabel("mc1go2o-sfpMmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc1go2o_sfpCopperLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 7), Integer32()).setLabel("mc1go2o-sfpCopperLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc1go2o_sfpBrSpeed = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 8), Integer32()).setLabel("mc1go2o-sfpBrSpeed").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc1go2o_sfpWavelength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 9), Integer32()).setLabel("mc1go2o-sfpWavelength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc1go2o_sfpTemperature = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 10), Integer32()).setLabel("mc1go2o-sfpTemperature").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc1go2o_sfpTranPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 11), Integer32()).setLabel("mc1go2o-sfpTranPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc1go2o_sfpRecvPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 12), Integer32()).setLabel("mc1go2o-sfpRecvPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc1go2o_sfpVoltage = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 13), Integer32()).setLabel("mc1go2o-sfpVoltage").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc10GOEO1RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14))
mc10GOEO1RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1))
mc10GOEO1RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1), )
if mibBuilder.loadTexts: mc10GOEO1RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO1RCardTable.setDescription('MC 10G OEO 1R Configuration table')
mc10GOEO1RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEO1RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO1RCardEntry.setDescription('MC Configuration entry definition')
mcAccXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mcAccXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mcAccXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcAccXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLength.setDescription("XFP1's wavelength")
mcNtwXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mcNtwXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mcNtwXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcNtwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLength.setDescription("XFP2's wavelength")
mcAccXFP1TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1TunableType.setDescription("XFP1's wavelength tunable type")
mcNtwXFP2TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mc10GOEO3RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15))
mc10GOEO3RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1))
mc10GOEO3RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1), )
if mibBuilder.loadTexts: mc10GOEO3RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO3RCardTable.setDescription('MC 10G OEO 3R tunable wavelength Configuration table')
mc10GOEO3RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEO3RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO3RCardEntry.setDescription('MC Configuration entry definition')
accXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
accXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
accXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: accXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLength.setDescription("XFP1's wavelength")
ntwXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
ntwXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
ntwXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ntwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLength.setDescription("XFP2's wavelength")
accXFP1TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1TunableType.setDescription("XFP1's wavelength tunable type")
ntwXFP2TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mcCWDMObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16))
mcCWDMCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1))
mcCWDMCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1), )
if mibBuilder.loadTexts: mcCWDMCardTable.setStatus('current')
if mibBuilder.loadTexts: mcCWDMCardTable.setDescription('MC CWDM table')
mcCWDMCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcCWDMCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcCWDMCardEntry.setDescription('MC Configuration entry definition')
cwdmWavelengthCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelengthCount.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelengthCount.setDescription('wavelength count')
cwdmWavelength1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength1.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength1.setDescription('CWDM Card wavelenth 1')
cwdmWavelength2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength2.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength2.setDescription('CWDM Card wavelenth 2')
cwdmWavelength3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength3.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength3.setDescription('CWDM Card wavelenth 3')
cwdmWavelength4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength4.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength4.setDescription('CWDM Card wavelenth 4')
cwdmWavelength5 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength5.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength5.setDescription('CWDM Card wavelenth 5')
cwdmWavelength6 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength6.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength6.setDescription('CWDM Card wavelenth 6')
cwdmWavelength7 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength7.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength7.setDescription('CWDM Card wavelenth 7')
cwdmWavelength8 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength8.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength8.setDescription('CWDM Card wavelenth 8')
mc10G_OEO2RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17)).setLabel("mc10G-OEO2RObjects")
mc10G_OEO2RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1)).setLabel("mc10G-OEO2RCardObjects")
mc10G_OEO2RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1), ).setLabel("mc10G-OEO2RCardTable")
if mibBuilder.loadTexts: mc10G_OEO2RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RCardTable.setDescription('MC 10G OEO 2R Configuration table')
mc10G_OEO2RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1), ).setLabel("mc10G-OEO2RCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEO2RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RCardEntry.setDescription('MC Configuration entry definition')
mc10G_OEO2RCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RCurSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RCfgSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RSFP1Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP1Loopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP1Loopback.setDescription("card's SFP1 Loopback state")
mc10G_OEO2RSFP2Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP2Loopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP2Loopback.setDescription("card's SFP2 Loopback state")
mc10G_OEO2RSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RSFP1.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP1.setDescription("Center card's SFP1 link status")
mc10G_OEO2RSFP2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP2").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RSFP2.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP2.setDescription("Center card's SFP2 link status")
mc10G_OEO2RHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RHWSFP1Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RHWSFP1Loopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP1Loopback.setDescription("card's HW Loopback state")
mc10G_OEO2RHWSFP2Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RHWSFP2Loopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP2Loopback.setDescription("card's HW Loopback state")
mc10G_OEO2RVersion = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 10), DisplayString()).setLabel("mc10G-OEO2RVersion").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RVersion.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RVersion.setDescription('MC version')
mc10GXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mc10GXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mc10GXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10GXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLength.setDescription("XFP1's wavelength")
mc10GXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mc10GXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mc10GXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10GXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLength.setDescription("XFP2's wavelength")
mc10G_OEO2R_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO2R-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_accType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2R_accType.setDescription('')
mc10G_OEO2R_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO2R-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2R_ntwType.setDescription('')
mc10G_OEO2R_accTunableType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setLabel("mc10G-OEO2R-accTunableType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_accTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2R_accTunableType.setDescription("XFP1's wavelength tunable type")
mc10G_OEO2R_ntwTunableType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setLabel("mc10G-OEO2R-ntwTunableType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_ntwTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2R_ntwTunableType.setDescription("XFP2's wavelength tunable type")
mcQCA8334Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18))
mcQCA8334CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1))
mcQCA8334CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1), )
if mibBuilder.loadTexts: mcQCA8334CardTable.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334CardTable.setDescription('MC QCA8334 Configuration table')
mcQCA8334CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcQCA8334CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334CardEntry.setDescription('MC Configuration entry definition')
mcQCA8334VlanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Normal", 1), ("mode1", 2), ("mode2", 3), ("not-support", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334VlanMode.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334VlanMode.setDescription("Center card's vlan mode")
mcQCA8334PortObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2))
mcQCA8334PortTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1), )
if mibBuilder.loadTexts: mcQCA8334PortTable.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortTable.setDescription('MC QCA8334 Configuration table')
mcQCA8334PortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcQCA8334PortIdx"))
if mibBuilder.loadTexts: mcQCA8334PortEntry.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortEntry.setDescription('MC Configuration entry definition')
mcQCA8334PortIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port1", 1), ("port2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334PortIdx.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortIdx.setDescription('Port index')
mcQCA8334CurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334CurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334CurWorkMode.setDescription("Center card's port current work mode")
mcQCA8334CfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334CfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334CfgWorkMode.setDescription("Center card's port configurable work mode")
mcQCA8334UpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(32, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334UpStream.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334UpStream.setDescription("Center card's port up stream of MC")
mcQCA8334DownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(32, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334DownStream.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334DownStream.setDescription("Center card's port down stream of MC")
mcQCA8334Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334Txlink.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334Txlink.setDescription("Center card's port 1 electrical port's link status")
mcQCA8334RmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334RmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334RmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mcQCA8334RmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334RmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334RmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mcQCA8334RmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334RmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334RmtTxlink.setDescription("Remote card's port electrial port status")
mcE1T1Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19))
mcE1T1CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1))
mcE1T1CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1), )
if mibBuilder.loadTexts: mcE1T1CardTable.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CardTable.setDescription('MC E1T1 Configuration table')
mcE1T1CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcE1T1CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CardEntry.setDescription('MC Configuration entry definition')
mcE1T1Type = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1", 1), ("T1", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1Type.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1Type.setDescription("Center card's current type")
mcE1T1FLink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Up", 1), ("Down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1FLink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1FLink.setDescription("Center card's current link")
mcE1T1FLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1FLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1FLossAlarm.setDescription('')
mcE1T1TLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1TLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1TLossAlarm.setDescription('')
mcE1T1AISAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1AISAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1AISAlarm.setDescription('')
mcE1T1TLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1TLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1TLoop.setDescription('Tx Loopback state')
mcE1T1FLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1FLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1FLoop.setDescription('Fx Loopback state')
mcE1T1CodeType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1-HDB3-Or-T1-B8ZS", 1), ("AMI", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1CodeType.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CodeType.setDescription('coding type')
mcE1T1Version = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1Version.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1Version.setDescription('MC version')
mcE1T1RmtFLink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Up", 1), ("Down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtFLink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1RmtFLink.setDescription("Center card's current link")
mcE1T1RmtFLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtFLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtFLossAlarm.setDescription('')
mcE1T1RmtTLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtTLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtTLossAlarm.setDescription('')
mcE1T1RmtAISAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtAISAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtAISAlarm.setDescription('')
mcE1T1RmtTLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtTLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtTLoop.setDescription('Tx Loopback state')
mcE1T1RmtFLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtFLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtFLoop.setDescription('Fx Loopback state')
mcE1T1RmtCodeType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1-HDB3-Or-T1-B8ZS", 1), ("AMI", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtCodeType.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtCodeType.setDescription('coding type')
mc10GOEEXFPTunableObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20))
mc10GOEEXFPTunableCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1))
mc10GOEEXFPTunableCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1), )
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardTable.setDescription('MC 10G OEE tunable wavelength Configuration table')
mc10GOEEXFPTunableCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardEntry.setDescription('MC Configuration entry definition')
xfpWaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpWaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLengthTunability.setDescription("XFP's wavelength tunability")
xfpWaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpWaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLengthTunable.setDescription("XFP's wavelength tunable status")
xfpWaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xfpWaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLength.setDescription("XFP's wavelength")
xfpTunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: xfpTunableType.setDescription("XFP's wavelength tunable type")
mcPmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3))
mcPmTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1), )
if mibBuilder.loadTexts: mcPmTable.setStatus('current')
if mibBuilder.loadTexts: mcPmTable.setDescription('MC Performance table')
mcPmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcPmEntry.setStatus('current')
if mibBuilder.loadTexts: mcPmEntry.setDescription('MC Performance entry definition')
mcRxByteHi = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRxByteHi.setStatus('current')
if mibBuilder.loadTexts: mcRxByteHi.setDescription('The total number of reveive bytes (high)')
mcRxByteLo = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRxByteLo.setStatus('current')
if mibBuilder.loadTexts: mcRxByteLo.setDescription('The total number of reveive bytes (low)')
mcTxByteHi = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxByteHi.setStatus('current')
if mibBuilder.loadTexts: mcTxByteHi.setDescription('The total number of transmit bytes (high)')
mcTxByteLo = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxByteLo.setStatus('current')
if mibBuilder.loadTexts: mcTxByteLo.setDescription('The total number of transmit bytes (low)')
mcPmRest = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("idle", 1), ("reset", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcPmRest.setStatus('current')
if mibBuilder.loadTexts: mcPmRest.setDescription('reset counter')
shelf_Detected = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 1)).setLabel("shelf-Detected").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_Detected.setStatus('current')
if mibBuilder.loadTexts: shelf_Detected.setDescription('A slave shelf is detected (1~19)')
shelf_Lost = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 2)).setLabel("shelf-Lost").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_Lost.setStatus('current')
if mibBuilder.loadTexts: shelf_Lost.setDescription('A shelf is lost')
shelf_psuA_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 3)).setLabel("shelf-psuA-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuA_On.setStatus('current')
if mibBuilder.loadTexts: shelf_psuA_On.setDescription('PSU A is detected')
shelf_psuA_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 4)).setLabel("shelf-psuA-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuA_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_psuA_Off.setDescription('PSU A is lost')
shelf_psuB_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 5)).setLabel("shelf-psuB-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuB_On.setStatus('current')
if mibBuilder.loadTexts: shelf_psuB_On.setDescription('PSU B is detected')
shelf_psuB_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 6)).setLabel("shelf-psuB-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuB_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_psuB_Off.setDescription('PSU B is lost')
shelf_fan_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 7)).setLabel("shelf-fan-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_fan_On.setStatus('current')
if mibBuilder.loadTexts: shelf_fan_On.setDescription('Fan A is detected')
shelf_fan_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 8)).setLabel("shelf-fan-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_fan_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_fan_Off.setDescription('Fan A is lost')
card_Detected = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 20)).setLabel("card-Detected").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_Detected.setStatus('current')
if mibBuilder.loadTexts: card_Detected.setDescription('A card is detected (20~29)')
card_Lost = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 21)).setLabel("card-Lost").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_Lost.setStatus('current')
if mibBuilder.loadTexts: card_Lost.setDescription('A card is lost')
card_MC_Co_Tx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 30)).setLabel("card-MC-Co-Tx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up.setDescription('The tx link of mc in center side is up (above 30)')
card_MC_Co_Tx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 31)).setLabel("card-MC-Co-Tx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down.setDescription('The tx link of mc in center side is broken')
card_MC_Co_Fx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 32)).setLabel("card-MC-Co-Fx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Fx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Fx_Up.setDescription('The fx link of mc in center side is up')
card_MC_Co_Fx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 33)).setLabel("card-MC-Co-Fx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Fx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Fx_Down.setDescription('The fx link of mc in center side is broken')
card_MC_Rmt_Tx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 34)).setLabel("card-MC-Rmt-Tx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up.setDescription('The tx link of mc in customer side is up')
card_MC_Rmt_Tx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 35)).setLabel("card-MC-Rmt-Tx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down.setDescription('The tx link of mc in customer side is broken')
card_MC_Rmt_PwrDown = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 36)).setLabel("card-MC-Rmt-PwrDown").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_PwrDown.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_PwrDown.setDescription('Remote mc power down detected')
card_MC_Co_Ntw_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 37)).setLabel("card-MC-Co-Ntw-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Inserted.setDescription('Local network port SFP inserted')
card_MC_Co_Ntw_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 38)).setLabel("card-MC-Co-Ntw-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Removed.setDescription('Local network port SFP removed')
card_MC_Co_Acc_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 39)).setLabel("card-MC-Co-Acc-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Inserted.setDescription('Local access port SFP inserted')
card_MC_Co_Acc_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 40)).setLabel("card-MC-Co-Acc-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Removed.setDescription('Local access port SFP removed')
card_MC_Rmt_Acc_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 41)).setLabel("card-MC-Rmt-Acc-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Inserted.setDescription('Remote access port SFP inserted')
card_MC_Rmt_Acc_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 42)).setLabel("card-MC-Rmt-Acc-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Removed.setDescription('Remote access port SFP removed')
card_MC_Co_Tx_Up1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 43)).setLabel("card-MC-Co-Tx-Up1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up1.setDescription('The tx1 link of mc in center side is up')
card_MC_Co_Tx_Down1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 44)).setLabel("card-MC-Co-Tx-Down1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down1.setDescription('The tx1 link of mc in center side is broken')
card_MC_Co_Tx_Up2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 45)).setLabel("card-MC-Co-Tx-Up2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up2.setDescription('The tx2 link of mc in center side is up')
card_MC_Co_Tx_Down2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 46)).setLabel("card-MC-Co-Tx-Down2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down2.setDescription('The tx2 link of mc in center side is broken')
card_MC_Rmt_Tx_Up1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 47)).setLabel("card-MC-Rmt-Tx-Up1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up1.setDescription('The tx1 link of mc in customer side is up')
card_MC_Rmt_Tx_Down1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 48)).setLabel("card-MC-Rmt-Tx-Down1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down1.setDescription('The tx1 link of mc in customer side is broken')
card_MC_Rmt_Tx_Up2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 49)).setLabel("card-MC-Rmt-Tx-Up2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up2.setDescription('The tx2 link of mc in customer side is up')
card_MC_Rmt_Tx_Down2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 50)).setLabel("card-MC-Rmt-Tx-Down2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down2.setDescription('The tx2 link of mc in customer side is broken')
card_MC_Co_SFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 51)).setLabel("card-MC-Co-SFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Inserted.setDescription('Local SFP1 inserted')
card_MC_Co_SFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 52)).setLabel("card-MC-Co-SFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Removed.setDescription('Local SFP1 removed')
card_MC_Co_SFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 53)).setLabel("card-MC-Co-SFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Inserted.setDescription('Local SFP2 inserted')
card_MC_Co_SFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 54)).setLabel("card-MC-Co-SFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Removed.setDescription('Local SFP2 removed')
card_MC_Co_SFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 55)).setLabel("card-MC-Co-SFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Up.setDescription('The SFP1 link of mc in center side is up')
card_MC_Co_SFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 56)).setLabel("card-MC-Co-SFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Down.setDescription('The SFP1 link of mc in center side is broken')
card_MC_Co_SFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 57)).setLabel("card-MC-Co-SFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Up.setDescription('The SFP2 link of mc in center side is up')
card_MC_Co_SFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 58)).setLabel("card-MC-Co-SFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Down.setDescription('The SFP2 link of mc in center side is broken')
card_MC_Rmt_SFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 59)).setLabel("card-MC-Rmt-SFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Inserted.setDescription('Remote SFP1 inserted')
card_MC_Rmt_SFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 60)).setLabel("card-MC-Rmt-SFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Removed.setDescription('Remote SFP1 removed')
card_MC_Rmt_SFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 61)).setLabel("card-MC-Rmt-SFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Up.setDescription('The SFP1 link of mc in customer side is up')
card_MC_Rmt_SFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 62)).setLabel("card-MC-Rmt-SFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Down.setDescription('The SFP1 link of mc in customer side is broken')
card_MC_Co_SFPSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 63)).setLabel("card-MC-Co-SFPSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Inserted.setDescription('Local SFP+1 inserted')
card_MC_Co_SFPSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 64)).setLabel("card-MC-Co-SFPSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Removed.setDescription('Local SFP+1 removed')
card_MC_Co_SFPSFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 65)).setLabel("card-MC-Co-SFPSFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Inserted.setDescription('Local SFPSFP2 inserted')
card_MC_Co_SFPSFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 66)).setLabel("card-MC-Co-SFPSFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Removed.setDescription('Local SFP+2 removed')
card_MC_Rmt_SFPSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 67)).setLabel("card-MC-Rmt-SFPSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Inserted.setDescription('Remote SFP+1 inserted')
card_MC_Rmt_SFPSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 68)).setLabel("card-MC-Rmt-SFPSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Removed.setDescription('Remote SFP+1 removed')
card_MC_Co_XFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 69)).setLabel("card-MC-Co-XFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Inserted.setDescription('Local XFP+1 inserted')
card_MC_Co_XFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 70)).setLabel("card-MC-Co-XFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Removed.setDescription('Local XFP+1 removed')
card_MC_Co_XFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 71)).setLabel("card-MC-Co-XFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Inserted.setDescription('Local XFP2 inserted')
card_MC_Co_XFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 72)).setLabel("card-MC-Co-XFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Removed.setDescription('Local XFP+2 removed')
card_MC_Rmt_XFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 73)).setLabel("card-MC-Rmt-XFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Inserted.setDescription('Remote XFP+1 inserted')
card_MC_Rmt_XFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 74)).setLabel("card-MC-Rmt-XFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Removed.setDescription('Remote XFP+1 removed')
card_MC_Co_SFPSFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 75)).setLabel("card-MC-Co-SFPSFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Up.setDescription('The SFP+1 link of mc in center side is up')
card_MC_Co_SFPSFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 76)).setLabel("card-MC-Co-SFPSFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Down.setDescription('The SFP+1 link of mc in center side is broken')
card_MC_Co_SFPSFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 77)).setLabel("card-MC-Co-SFPSFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Up.setDescription('The SFP+2 link of mc in center side is up')
card_MC_Co_SFPSFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 78)).setLabel("card-MC-Co-SFPSFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Down.setDescription('The SFP+2 link of mc in center side is broken')
card_MC_Rmt_SFPSFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 79)).setLabel("card-MC-Rmt-SFPSFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Up.setDescription('The SFPSFP1 link of mc in customer side is up')
card_MC_Rmt_SFPSFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 80)).setLabel("card-MC-Rmt-SFPSFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Down.setDescription('The SFP+1 link of mc in customer side is broken')
card_MC_Co_XFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 81)).setLabel("card-MC-Co-XFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Up.setDescription('The XFP1 link of mc in center side is up')
card_MC_Co_XFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 82)).setLabel("card-MC-Co-XFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Down.setDescription('The XFP1 link of mc in center side is broken')
card_MC_Co_XFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 83)).setLabel("card-MC-Co-XFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Up.setDescription('The XFP2 link of mc in center side is up')
card_MC_Co_XFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 84)).setLabel("card-MC-Co-XFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Down.setDescription('The XFP2 link of mc in center side is broken')
card_MC_Rmt_XFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 85)).setLabel("card-MC-Rmt-XFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Up.setDescription('The XFP1 link of mc in customer side is up')
card_MC_Rmt_XFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 86)).setLabel("card-MC-Rmt-XFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Down.setDescription('The XFP link of mc in customer side is broken')
card_MC_Co_SFP3_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 87)).setLabel("card-MC-Co-SFP3-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Inserted.setDescription('Local SFP3 inserted')
card_MC_Co_SFP3_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 88)).setLabel("card-MC-Co-SFP3-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Removed.setDescription('Local SFP3 removed')
card_MC_Co_Port1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 89)).setLabel("card-MC-Co-Port1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port1_Up.setDescription('The Port1 link of mc in center side is up')
card_MC_Co_Port1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 90)).setLabel("card-MC-Co-Port1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port1_Down.setDescription('The Port1 link of mc in center side is broken')
card_MC_Co_Port2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 91)).setLabel("card-MC-Co-Port2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port2_Up.setDescription('The Port2 link of mc in center side is up')
card_MC_Co_Port2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 92)).setLabel("card-MC-Co-Port2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port2_Down.setDescription('The Port2 link of mc in center side is broken')
card_MC_Co_Port3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 93)).setLabel("card-MC-Co-Port3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port3_Up.setDescription('The Port3 link of mc in center side is up')
card_MC_Co_Port3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 94)).setLabel("card-MC-Co-Port3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port3_Down.setDescription('The Port3 link of mc in center side is broken')
card_MC_FAN_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 100)).setLabel("card-MC-FAN-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_FAN_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_FAN_Normal.setDescription('Fan card work normally')
card_MC_FAN_Abnormal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 101)).setLabel("card-MC-FAN-Abnormal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_FAN_Abnormal.setStatus('current')
if mibBuilder.loadTexts: card_MC_FAN_Abnormal.setDescription('Fan card work abnormally')
card_MC_Co_QSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 102)).setLabel("card-MC-Co-QSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Inserted.setDescription('Local QSFP1 inserted')
card_MC_Co_QSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 103)).setLabel("card-MC-Co-QSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Removed.setDescription('Local QSFP1 removed')
card_MC_Co_QSFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 104)).setLabel("card-MC-Co-QSFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Inserted.setDescription('Local QSFP2 inserted')
card_MC_Co_QSFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 105)).setLabel("card-MC-Co-QSFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Removed.setDescription('Local QSFP2 removed')
card_MC_Co_QSFP1_Lane1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 106)).setLabel("card-MC-Co-QSFP1-Lane1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Up.setDescription('The QSFP1 Lane1 link of mc in center side is up')
card_MC_Co_QSFP1_Lane1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 107)).setLabel("card-MC-Co-QSFP1-Lane1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Down.setDescription('The QSFP1 lane1 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 108)).setLabel("card-MC-Co-QSFP1-Lane2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Up.setDescription('The QSFP1 Lane2 link of mc in center side is up')
card_MC_Co_QSFP1_Lane2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 109)).setLabel("card-MC-Co-QSFP1-Lane2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Down.setDescription('The QSFP1 lane2 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 110)).setLabel("card-MC-Co-QSFP1-Lane3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Up.setDescription('The QSFP1 Lane3 link of mc in center side is up')
card_MC_Co_QSFP1_Lane3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 111)).setLabel("card-MC-Co-QSFP1-Lane3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Down.setDescription('The QSFP1 lane3 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane4_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 112)).setLabel("card-MC-Co-QSFP1-Lane4-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Up.setDescription('The QSFP1 Lane4 link of mc in center side is up')
card_MC_Co_QSFP1_Lane4_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 113)).setLabel("card-MC-Co-QSFP1-Lane4-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Down.setDescription('The QSFP1 lane4 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 114)).setLabel("card-MC-Co-QSFP2-Lane1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Up.setDescription('The QSFP2 Lane1 link of mc in center side is up')
card_MC_Co_QSFP2_Lane1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 115)).setLabel("card-MC-Co-QSFP2-Lane1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Down.setDescription('The QSFP2 lane1 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 116)).setLabel("card-MC-Co-QSFP2-Lane2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Up.setDescription('The QSFP2 Lane2 link of mc in center side is up')
card_MC_Co_QSFP2_Lane2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 117)).setLabel("card-MC-Co-QSFP2-Lane2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Down.setDescription('The QSFP2 lane2 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 118)).setLabel("card-MC-Co-QSFP2-Lane3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Up.setDescription('The QSFP2 Lane3 link of mc in center side is up')
card_MC_Co_QSFP2_Lane3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 119)).setLabel("card-MC-Co-QSFP2-Lane3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Down.setDescription('The QSFP2 lane3 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane4_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 120)).setLabel("card-MC-Co-QSFP2-Lane4-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Up.setDescription('The QSFP2 Lane4 link of mc in center side is up')
card_MC_Co_QSFP2_Lane4_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 121)).setLabel("card-MC-Co-QSFP2-Lane4-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Down.setDescription('The QSFP2 lane4 link of mc in center side is broken')
card_MC_Rmt_SFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 122)).setLabel("card-MC-Rmt-SFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Inserted.setDescription('Remote SFP2 inserted')
card_MC_Rmt_SFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 123)).setLabel("card-MC-Rmt-SFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Removed.setDescription('Remote SFP2 removed')
card_MC_Rmt_SFP3_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 124)).setLabel("card-MC-Rmt-SFP3-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Inserted.setDescription('Remote SFP3 inserted')
card_MC_Rmt_SFP3_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 125)).setLabel("card-MC-Rmt-SFP3-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Removed.setDescription('Remote SFP3 removed')
card_MC_Rmt_SFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 126)).setLabel("card-MC-Rmt-SFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Up.setDescription('The SFP2 link of mc in customer side is up')
card_MC_Rmt_SFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 127)).setLabel("card-MC-Rmt-SFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Down.setDescription('The SFP2 link of mc in customer side is broken')
card_MC_Rmt_SFP3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 128)).setLabel("card-MC-Rmt-SFP3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Up.setDescription('The SFP3 link of mc in customer side is up')
card_MC_Rmt_SFP3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 129)).setLabel("card-MC-Rmt-SFP3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Down.setDescription('The SFP3 link of mc in customer side is broken')
card_MC_E1_Co_Port1_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 130)).setLabel("card-MC-E1-Co-Port1-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in center side')
card_MC_E1_Co_Port1_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 131)).setLabel("card-MC-E1-Co-Port1-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Normal.setDescription('Port1 LOS normal in center side')
card_MC_E1_Co_Port1_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 132)).setLabel("card-MC-E1-Co-Port1-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in center side')
card_MC_E1_Co_Port1_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 133)).setLabel("card-MC-E1-Co-Port1-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Normal.setDescription('Port1 AIS normal in center side')
card_MC_E1_Co_Port1_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 134)).setLabel("card-MC-E1-Co-Port1-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Alarm.setDescription('Port1 CV alarm in center side')
card_MC_E1_Co_Port1_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 135)).setLabel("card-MC-E1-Co-Port1-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Normal.setDescription('Port1 CV normal in center side')
card_MC_E1_Co_Port2_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 136)).setLabel("card-MC-E1-Co-Port2-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in center side')
card_MC_E1_Co_Port2_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 137)).setLabel("card-MC-E1-Co-Port2-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Normal.setDescription('Port2 LOS normal in center side')
card_MC_E1_Co_Port2_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 138)).setLabel("card-MC-E1-Co-Port2-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in center side')
card_MC_E1_Co_Port2_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 139)).setLabel("card-MC-E1-Co-Port2-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Normal.setDescription('Port2 AIS normal in center side')
card_MC_E1_Co_Port2_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 140)).setLabel("card-MC-E1-Co-Port2-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Alarm.setDescription('Port2 CV alarm in center side')
card_MC_E1_Co_Port2_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 141)).setLabel("card-MC-E1-Co-Port2-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Normal.setDescription('Port2 CV normal in center side')
card_MC_E1_Rmt_Port1_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 142)).setLabel("card-MC-E1-Rmt-Port1-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in customer side')
card_MC_E1_Rmt_Port1_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 143)).setLabel("card-MC-E1-Rmt-Port1-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Normal.setDescription('Port1 LOS normal in customer side')
card_MC_E1_Rmt_Port1_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 144)).setLabel("card-MC-E1-Rmt-Port1-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in customer side')
card_MC_E1_Rmt_Port1_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 145)).setLabel("card-MC-E1-Rmt-Port1-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Normal.setDescription('Port1 AIS normal in customer side')
card_MC_E1_Rmt_Port1_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 146)).setLabel("card-MC-E1-Rmt-Port1-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Alarm.setDescription('Port1 CV alarm in customer side')
card_MC_E1_Rmt_Port1_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 147)).setLabel("card-MC-E1-Rmt-Port1-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Normal.setDescription('Port1 CV normal in customer side')
card_MC_E1_Rmt_Port2_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 148)).setLabel("card-MC-E1-Rmt-Port2-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in customer side')
card_MC_E1_Rmt_Port2_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 149)).setLabel("card-MC-E1-Rmt-Port2-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Normal.setDescription('Port2 LOS normal in customer side')
card_MC_E1_Rmt_Port2_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 150)).setLabel("card-MC-E1-Rmt-Port2-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in customer side')
card_MC_E1_Rmt_Port2_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 151)).setLabel("card-MC-E1-Rmt-Port2-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Normal.setDescription('Port2 AIS normal in customer side')
card_MC_E1_Rmt_Port2_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 152)).setLabel("card-MC-E1-Rmt-Port2-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Alarm.setDescription('Port2 CV alarm in customer side')
card_MC_E1_Rmt_Port2_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 153)).setLabel("card-MC-E1-Rmt-Port2-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Normal.setDescription('Port2 CV normal in customer side')
card_MC_Co_SFP3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 154)).setLabel("card-MC-Co-SFP3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Up.setDescription('The SFP3 link of mc in center side is up')
card_MC_Co_SFP3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 155)).setLabel("card-MC-Co-SFP3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Down.setDescription('The SFP3 link of mc in center side is broken')
card_MC_E1T1_Co_TXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 156)).setLabel("card-MC-E1T1-Co-TXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Alarm.setDescription('Tx LOS alarm in center side')
card_MC_E1T1_Co_TXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 157)).setLabel("card-MC-E1T1-Co-TXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Normal.setDescription('Tx LOS normal in center side')
card_MC_E1T1_Co_FXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 158)).setLabel("card-MC-E1T1-Co-FXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Alarm.setDescription('Fx LOS alarm in center side')
card_MC_E1T1_Co_FXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 159)).setLabel("card-MC-E1T1-Co-FXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Normal.setDescription('Fx LOS normal in center side')
card_MC_E1T1_Co_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 160)).setLabel("card-MC-E1T1-Co-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Alarm.setDescription('AIS alarm in center side')
card_MC_E1T1_Co_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 161)).setLabel("card-MC-E1T1-Co-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Normal.setDescription('AIS normal in center side')
card_MC_E1T1_Rmt_TXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 162)).setLabel("card-MC-E1T1-Rmt-TXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Alarm.setDescription('Tx LOS alarm in customer side')
card_MC_E1T1_Rmt_TXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 163)).setLabel("card-MC-E1T1-Rmt-TXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Normal.setDescription('Tx LOS normal in customer side')
card_MC_E1T1_Rmt_FXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 164)).setLabel("card-MC-E1T1-Rmt-FXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Alarm.setDescription('Fx LOS alarm in customer side')
card_MC_E1T1_Rmt_FXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 165)).setLabel("card-MC-E1T1-Rmt-FXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Normal.setDescription('Fx LOS normal in customer side')
card_MC_E1T1_Rmt_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 166)).setLabel("card-MC-E1T1-Rmt-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Alarm.setDescription('AIS alarm in customer side')
card_MC_E1T1_Rmt_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 167)).setLabel("card-MC-E1T1-Rmt-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Normal.setDescription('AIS normal in customer side')
mibBuilder.exportSymbols("XXX-MIB", mc40G_OEOLane2LoopMode=mc40G_OEOLane2LoopMode, company=company, mcFanCardObjects=mcFanCardObjects, mc10G_OEECurSpd=mc10G_OEECurSpd, card_MC_Co_QSFP1_Lane2_Up=card_MC_Co_QSFP1_Lane2_Up, mc4_25G_OEONtwPD=mc4_25G_OEONtwPD, mcCm1gSfpEntry=mcCm1gSfpEntry, card_MC_Co_QSFP1_Lane1_Down=card_MC_Co_QSFP1_Lane1_Down, mc10G_OEO2RObjects=mc10G_OEO2RObjects, mcTransceiverDist=mcTransceiverDist, mc2_5GMCCardObjects=mc2_5GMCCardObjects, mcPortState=mcPortState, mc1GE2OPort2SFPExist=mc1GE2OPort2SFPExist, shelfNum=shelfNum, mcIP175DCurWorkMode=mcIP175DCurWorkMode, card_MC_Rmt_Tx_Up1=card_MC_Rmt_Tx_Up1, mc1go2o_sfpTransCode=mc1go2o_sfpTransCode, sysName=sysName, psuB=psuB, ntwXFP2WaveLength=ntwXFP2WaveLength, mcAccXFP1WaveLengthTunability=mcAccXFP1WaveLengthTunability, mc10G_OEO_Test_Error_Counter=mc10G_OEO_Test_Error_Counter, mc2_5g_sfpWavelength=mc2_5g_sfpWavelength, mc2_5g_sfpCompliance=mc2_5g_sfpCompliance, card_MC_E1_Co_Port1_CV_Alarm=card_MC_E1_Co_Port1_CV_Alarm, mcIP175DCardTable=mcIP175DCardTable, mc4_25G_OEO_Test_Result=mc4_25G_OEO_Test_Result, mc40G_OEOHWLoopMode=mc40G_OEOHWLoopMode, mcE1T1RmtFLink=mcE1T1RmtFLink, ntwXFP2WaveLengthTunability=ntwXFP2WaveLengthTunability, card_MC_E1T1_Co_TXLOS_Normal=card_MC_E1T1_Co_TXLOS_Normal, mcCmEntry=mcCmEntry, mc1go2o_sfpCompliance=mc1go2o_sfpCompliance, shelfIdx=shelfIdx, trapHost1=trapHost1, mcCm1gSfpObjects=mcCm1gSfpObjects, volA=volA, getNtwQSfpCmd=getNtwQSfpCmd, mc1GO2OPortHWPri=mc1GO2OPortHWPri, card_MC_Co_SFP3_Up=card_MC_Co_SFP3_Up, mcE1Port2Loop=mcE1Port2Loop, xfpWaveLengthTunable=xfpWaveLengthTunable, rmtCardNum=rmtCardNum, shelf_fan_Off=shelf_fan_Off, mcDownStream=mcDownStream, mcE1SFP1Link=mcE1SFP1Link, mc10G_OEOCardEntry=mc10G_OEOCardEntry, mcAccXFP1WaveLengthTunable=mcAccXFP1WaveLengthTunable, nmuType=nmuType, mc10G_OEO_Get_Test_Rst=mc10G_OEO_Get_Test_Rst, mc1GE2ORmtPort1SFPlink=mc1GE2ORmtPort1SFPlink, slotObjects=slotObjects, mcIP175DObjects=mcIP175DObjects, card_MC_Co_Tx_Up1=card_MC_Co_Tx_Up1, mcRmtE1Port1CV=mcRmtE1Port1CV, mcRmtHWTransmitMode=mcRmtHWTransmitMode, mcIP175DTxlink=mcIP175DTxlink, mc10G_OEOCurSpdMode=mc10G_OEOCurSpdMode, mc10G_OEELoopMode=mc10G_OEELoopMode, mcE1T1FLossAlarm=mcE1T1FLossAlarm, shelf_psuA_On=shelf_psuA_On, mcQCA8334RmtCfgWorkMode=mcQCA8334RmtCfgWorkMode, shelfTable=shelfTable, ipaddr=ipaddr, mc1GE2OPort1SFPlink=mc1GE2OPort1SFPlink, mc10G_OEO_accType=mc10G_OEO_accType, card_MC_E1_Rmt_Port1_AIS_Normal=card_MC_E1_Rmt_Port1_AIS_Normal, sfpVoltage=sfpVoltage, mc10GOEO1RCardTable=mc10GOEO1RCardTable, mc10GXFP2WaveLengthTunable=mc10GXFP2WaveLengthTunable, mcRmtE1Port1Loop=mcRmtE1Port1Loop, mc4_25G_OEOCardEntry=mc4_25G_OEOCardEntry, card_MC_E1_Rmt_Port1_AIS_Alarm=card_MC_E1_Rmt_Port1_AIS_Alarm, mcRmt4_25G_OEOHWWorkMode=mcRmt4_25G_OEOHWWorkMode, mcCm1gIpEntry=mcCm1gIpEntry, cwdmWavelength5=cwdmWavelength5, mcE1Port1AIS=mcE1Port1AIS, accXFP1TunableType=accXFP1TunableType, mcRmtPwrDown=mcRmtPwrDown, mc10G_OEOObjects=mc10G_OEOObjects, card_MC_Rmt_Tx_Down=card_MC_Rmt_Tx_Down, mc10G_OEEHWLoopback=mc10G_OEEHWLoopback, card_MC_Co_Port3_Down=card_MC_Co_Port3_Down, card_MC_Co_SFP3_Down=card_MC_Co_SFP3_Down, mcQCA8334RmtTxlink=mcQCA8334RmtTxlink, card_MC_E1T1_Co_AIS_Normal=card_MC_E1T1_Co_AIS_Normal, mcRmtE1TxCurWorkMode=mcRmtE1TxCurWorkMode, qsfpAccRxPower4=qsfpAccRxPower4, mcRmt10G_OEOLoopback=mcRmt10G_OEOLoopback, card_MC_E1_Rmt_Port2_CV_Normal=card_MC_E1_Rmt_Port2_CV_Normal, card_MC_E1_Co_Port2_CV_Normal=card_MC_E1_Co_Port2_CV_Normal, mcTxByteLo=mcTxByteLo, mcCardIdx=mcCardIdx, card_MC_Rmt_SFP3_Up=card_MC_Rmt_SFP3_Up, card_MC_E1T1_Co_FXLOS_Alarm=card_MC_E1T1_Co_FXLOS_Alarm, mcRmt4_25G_OEOHWSpdMode=mcRmt4_25G_OEOHWSpdMode, card_MC_Co_QSFP1_Lane4_Up=card_MC_Co_QSFP1_Lane4_Up, mcUtility=mcUtility, mc4_25G_OEOObjects=mc4_25G_OEOObjects, mc10GOEO1RCardEntry=mc10GOEO1RCardEntry, getAccSfpCmd=getAccSfpCmd, mc1GO2OPort3SFPExist=mc1GO2OPort3SFPExist, mcRmtCfgWorkMode=mcRmtCfgWorkMode, mcNtwQSfpObjects=mcNtwQSfpObjects, mcShelfIdx=mcShelfIdx, mc40G_OEOCardEntry=mc40G_OEOCardEntry, mcE1T1CardTable=mcE1T1CardTable, accsfpRecvPower=accsfpRecvPower, mc10GXFP1WaveLengthTunability=mc10GXFP1WaveLengthTunability, cwdmWavelength7=cwdmWavelength7, cwdmWavelength1=cwdmWavelength1, mc40G_OEOQsfp2Lane3_link=mc40G_OEOQsfp2Lane3_link, mcE1Port2CV=mcE1Port2CV, mcAccQSfpObjects=mcAccQSfpObjects, mcRmtE1Port1AIS=mcRmtE1Port1AIS, mcIP175DCardEntry=mcIP175DCardEntry, accsfpTemperature=accsfpTemperature, mc10G_OEO2R_accTunableType=mc10G_OEO2R_accTunableType, card_MC_Co_QSFP2_Lane2_Up=card_MC_Co_QSFP2_Lane2_Up, mc4_25G_OEO_Test_Lock=mc4_25G_OEO_Test_Lock, mcRmtUtility=mcRmtUtility, mc2_5GMCSfp3Exist=mc2_5GMCSfp3Exist, mc4_25G_OEO_Start_Test=mc4_25G_OEO_Start_Test, qsfpAccTemperature=qsfpAccTemperature, card_MC_Rmt_Tx_Down2=card_MC_Rmt_Tx_Down2, sfpConnector=sfpConnector, mcFanObjects=mcFanObjects, card_MC_Co_SFP2_Inserted=card_MC_Co_SFP2_Inserted, mc1GE2OPortPri=mc1GE2OPortPri, mc1GO2OPort1SFPExist=mc1GO2OPort1SFPExist, card_MC_Rmt_SFP3_Down=card_MC_Rmt_SFP3_Down, mcRmt10G_OEOCfgSpdMode=mcRmt10G_OEOCfgSpdMode, mc1go2o_sfpWavelength=mc1go2o_sfpWavelength, card_MC_Co_SFP1_Removed=card_MC_Co_SFP1_Removed, mc40G_OEOQsfp1Lane1_link=mc40G_OEOQsfp1Lane1_link, card_MC_Rmt_XFP1_Up=card_MC_Rmt_XFP1_Up, card_MC_E1T1_Co_TXLOS_Alarm=card_MC_E1T1_Co_TXLOS_Alarm, sfpCopperLength=sfpCopperLength, mc2_5GMCCardTable=mc2_5GMCCardTable, mc2_5g_getSfpCmd=mc2_5g_getSfpCmd, mcE1T1RmtTLossAlarm=mcE1T1RmtTLossAlarm, trapHost3=trapHost3, mcRmtE1Port2LOS=mcRmtE1Port2LOS, card_MC_Co_SFPSFP1_Removed=card_MC_Co_SFPSFP1_Removed, card_MC_E1T1_Co_FXLOS_Normal=card_MC_E1T1_Co_FXLOS_Normal, mc1GO2OPort3SFPlink=mc1GO2OPort3SFPlink, mc1go2o_getSfpCmd=mc1go2o_getSfpCmd, sfpCompliance=sfpCompliance, card_MC_Co_QSFP2_Lane2_Down=card_MC_Co_QSFP2_Lane2_Down, mc10GXFP1WaveLength=mc10GXFP1WaveLength, mc10GOEO3RCardTable=mc10GOEO3RCardTable, mc1GO2ORmtPortHWPri=mc1GO2ORmtPortHWPri, card_MC_Rmt_Tx_Up2=card_MC_Rmt_Tx_Up2, mcRmtHWLFP=mcRmtHWLFP, card_MC_Co_QSFP1_Lane1_Up=card_MC_Co_QSFP1_Lane1_Up, accsfpSmLength=accsfpSmLength, mcIP175DPortObjects=mcIP175DPortObjects, mcType=mcType, accXFP1WaveLength=accXFP1WaveLength, mc40G_OEOQsfp1Lane3_link=mc40G_OEOQsfp1Lane3_link, mc10GXFP2WaveLengthTunability=mc10GXFP2WaveLengthTunability, card_MC_E1T1_Rmt_TXLOS_Normal=card_MC_E1T1_Rmt_TXLOS_Normal, mcRmtHWWorkMode=mcRmtHWWorkMode, mcQCA8334UpStream=mcQCA8334UpStream, card_MC_Rmt_SFP1_Down=card_MC_Rmt_SFP1_Down, mc4_25G_OEOHWLoopback=mc4_25G_OEOHWLoopback, mc10G_OEEFxlink=mc10G_OEEFxlink, mcE1Port1LOS=mcE1Port1LOS, mc2_5GMCPort1link=mc2_5GMCPort1link, qsfpAccRxPower3=qsfpAccRxPower3, mcNtwSfpExist=mcNtwSfpExist, mcNtwXFP2WaveLength=mcNtwXFP2WaveLength, mcRmt10G_OEOHWSpdMode=mcRmt10G_OEOHWSpdMode, cwdmWavelengthCount=cwdmWavelengthCount, card_MC_Rmt_SFPSFP1_Up=card_MC_Rmt_SFPSFP1_Up, mc10G_OEOHWSpdMode=mc10G_OEOHWSpdMode, mc40G_OEOQsfp2Lane4_link=mc40G_OEOQsfp2Lane4_link, mcNtwXFP2WaveLengthTunable=mcNtwXFP2WaveLengthTunable, mc2_5GMCSFP3Objects=mc2_5GMCSFP3Objects, mcHWTransmitMode=mcHWTransmitMode, slotIdx=slotIdx, qsfpNtwTxPower1=qsfpNtwTxPower1, mcHWLFP=mcHWLFP, mcE1T1RmtAISAlarm=mcE1T1RmtAISAlarm, volB=volB, mcRmtCurWorkMode=mcRmtCurWorkMode, mc1GE2OCardTable=mc1GE2OCardTable, accsfpWavelength=accsfpWavelength, mcAccQSfpEntry=mcAccQSfpEntry, mcTxByteHi=mcTxByteHi, mc10G_OEO2RHWSFP1Loopback=mc10G_OEO2RHWSFP1Loopback, sysContact=sysContact, slotEntry=slotEntry, mcCurWorkMode=mcCurWorkMode, card_MC_E1_Rmt_Port2_AIS_Alarm=card_MC_E1_Rmt_Port2_AIS_Alarm, mcIP175DUpStream=mcIP175DUpStream, mcRmtDetect=mcRmtDetect, mc10G_OEO_Test_Lock=mc10G_OEO_Test_Lock, mc2_5g_sfpTranPower=mc2_5g_sfpTranPower, mc2_5g_sfpBrSpeed=mc2_5g_sfpBrSpeed, mc40G_OEOSpeedMode=mc40G_OEOSpeedMode, mc1GO2OSfp3Table=mc1GO2OSfp3Table, mc1GE2ORmtPort2SFPlink=mc1GE2ORmtPort2SFPlink, mcCm1gAccSfpObjects=mcCm1gAccSfpObjects, rmtCardType=rmtCardType, card_MC_Co_SFP2_Removed=card_MC_Co_SFP2_Removed, card_MC_Co_Tx_Down1=card_MC_Co_Tx_Down1, card_MC_Co_QSFP1_Lane2_Down=card_MC_Co_QSFP1_Lane2_Down, card_MC_Co_QSFP2_Lane4_Down=card_MC_Co_QSFP2_Lane4_Down, mcRxByteHi=mcRxByteHi, card_MC_Rmt_SFP3_Inserted=card_MC_Rmt_SFP3_Inserted, mcE1CardEntry=mcE1CardEntry, card_Detected=card_Detected, card_MC_Co_XFP2_Up=card_MC_Co_XFP2_Up, card_MC_Rmt_SFP2_Up=card_MC_Rmt_SFP2_Up, trapHost2=trapHost2, mc2_5Cm1gSfpTable=mc2_5Cm1gSfpTable, mcCWDMCardEntry=mcCWDMCardEntry, mcE1T1TLoop=mcE1T1TLoop, mc1GO2OPortPri=mc1GO2OPortPri, mcLFPCfg=mcLFPCfg, qsfpAccRxPower1=qsfpAccRxPower1, temperature=temperature, qsfpAccTxPower3=qsfpAccTxPower3, card_MC_Co_SFP1_Down=card_MC_Co_SFP1_Down, mc4_25G_OEOCurSpdMode=mc4_25G_OEOCurSpdMode, mc10G_OEECardEntry=mc10G_OEECardEntry, mcFanStatus=mcFanStatus, mc2_5GMCPort3link=mc2_5GMCPort3link, systemMIB=systemMIB, mcTxlink=mcTxlink, mcCmTable=mcCmTable, mcRmtTxlink=mcRmtTxlink, mc40G_OEOQsfp1Lane4_link=mc40G_OEOQsfp1Lane4_link, sfpTranPower=sfpTranPower, coCardType=coCardType, mcFanCardEntry=mcFanCardEntry, cwdmWavelength3=cwdmWavelength3, card_MC_E1_Co_Port1_AIS_Normal=card_MC_E1_Co_Port1_AIS_Normal, mc1GE2OPortHWPri=mc1GE2OPortHWPri, mcE1T1TLossAlarm=mcE1T1TLossAlarm, mcQCA8334DownStream=mcQCA8334DownStream, mcIP175DPortEntry=mcIP175DPortEntry, mcE1T1Version=mcE1T1Version, card_MC_Co_QSFP1_Lane3_Down=card_MC_Co_QSFP1_Lane3_Down, card_MC_E1_Rmt_Port1_CV_Normal=card_MC_E1_Rmt_Port1_CV_Normal, card_MC_Rmt_SFP2_Removed=card_MC_Rmt_SFP2_Removed, card_MC_Co_SFPSFP1_Down=card_MC_Co_SFPSFP1_Down, accsfpBrSpeed=accsfpBrSpeed, cwdmWavelength8=cwdmWavelength8, mcRmt10G_OEOCurSpdMode=mcRmt10G_OEOCurSpdMode, mc10GOEEXFPTunableCardObjects=mc10GOEEXFPTunableCardObjects, mc1GE2ORmtPortHWPri=mc1GE2ORmtPortHWPri, mc10G_OEO_Test_Continue_Time=mc10G_OEO_Test_Continue_Time)
mibBuilder.exportSymbols("XXX-MIB", mc4_25G_OEO_Test_Error_Counter=mc4_25G_OEO_Test_Error_Counter, mc1GO2OPort1SFPlink=mc1GO2OPort1SFPlink, card_MC_E1_Rmt_Port1_LOS_Normal=card_MC_E1_Rmt_Port1_LOS_Normal, mc1GO2OSFP3Objects=mc1GO2OSFP3Objects, xfpWaveLength=xfpWaveLength, card_MC_Co_XFP1_Removed=card_MC_Co_XFP1_Removed, card_MC_Rmt_SFP2_Inserted=card_MC_Rmt_SFP2_Inserted, mc4_25G_OEOWorkMode=mc4_25G_OEOWorkMode, card_MC_Co_XFP2_Inserted=card_MC_Co_XFP2_Inserted, mc2_5g_sfpSmLength=mc2_5g_sfpSmLength, card_MC_Co_Port2_Down=card_MC_Co_Port2_Down, card_MC_Rmt_Acc_SFP_Removed=card_MC_Rmt_Acc_SFP_Removed, card_MC_Co_QSFP2_Removed=card_MC_Co_QSFP2_Removed, mc10GOEEXFPTunableCardTable=mc10GOEEXFPTunableCardTable, card_MC_Co_SFPSFP2_Down=card_MC_Co_SFPSFP2_Down, mcQCA8334PortIdx=mcQCA8334PortIdx, card_MC_E1T1_Rmt_AIS_Alarm=card_MC_E1T1_Rmt_AIS_Alarm, mcIP175DPortTable=mcIP175DPortTable, mc1go2o_sfpRecvPower=mc1go2o_sfpRecvPower, mc10G_OEO2R_ntwType=mc10G_OEO2R_ntwType, card_MC_Rmt_Tx_Up=card_MC_Rmt_Tx_Up, mcCm1gAccSfpTable=mcCm1gAccSfpTable, mcE1T1RmtFLoop=mcE1T1RmtFLoop, card_MC_E1_Co_Port1_CV_Normal=card_MC_E1_Co_Port1_CV_Normal, mc10GXFP1WaveLengthTunable=mc10GXFP1WaveLengthTunable, card_MC_Co_Tx_Up2=card_MC_Co_Tx_Up2, mcRmt10G_OEOHWLoopback=mcRmt10G_OEOHWLoopback, mc10G_OEECardObjects=mc10G_OEECardObjects, mcRmt4_25G_OEOWorkMode=mcRmt4_25G_OEOWorkMode, card_MC_Co_Port1_Up=card_MC_Co_Port1_Up, mc10GXFP2WaveLength=mc10GXFP2WaveLength, mc10G_OEOCardTable=mc10G_OEOCardTable, mc10G_OEE_ntwType=mc10G_OEE_ntwType, mcRmt10G_OEO_ntwType=mcRmt10G_OEO_ntwType, card_MC_Co_SFPSFP1_Up=card_MC_Co_SFPSFP1_Up, mc1GO2OPort2SFPlink=mc1GO2OPort2SFPlink, mcE1T1AISAlarm=mcE1T1AISAlarm, mcLoOrRmtFg=mcLoOrRmtFg, mc10G_OEOCfgSpdMode=mc10G_OEOCfgSpdMode, mcE1T1CardObjects=mcE1T1CardObjects, card_MC_Co_SFP3_Removed=card_MC_Co_SFP3_Removed, mcE1T1FLink=mcE1T1FLink, nmuObjects=nmuObjects, mc1go2o_sfpCopperLength=mc1go2o_sfpCopperLength, mc1GO2OPort3HWSpd=mc1GO2OPort3HWSpd, mc1GO2ORmtPort3SFPExist=mc1GO2ORmtPort3SFPExist, mc10G_OEO2R_ntwTunableType=mc10G_OEO2R_ntwTunableType, shelf_psuB_On=shelf_psuB_On, mcPmTable=mcPmTable, mcCm1gSpecificObjects=mcCm1gSpecificObjects, mc4_25G_OEO_Get_Test_Rst=mc4_25G_OEO_Get_Test_Rst, mcE1T1CardEntry=mcE1T1CardEntry, mc4_25G_OEO_Test_Continue_Time=mc4_25G_OEO_Test_Continue_Time, mcQsfpSpecificObjects=mcQsfpSpecificObjects, mc10GOEO3RCardObjects=mc10GOEO3RCardObjects, card_MC_E1_Co_Port2_AIS_Alarm=card_MC_E1_Co_Port2_AIS_Alarm, mc1GE2OCardObjects=mc1GE2OCardObjects, mc2_5g_sfpRecvPower=mc2_5g_sfpRecvPower, height2HU=height2HU, mc2_5g_sfpMmLength=mc2_5g_sfpMmLength, mc1GE2OObjects=mc1GE2OObjects, mc1GO2OObjects=mc1GO2OObjects, mcCm1gIpTable=mcCm1gIpTable, mcNtwQSfpEntry=mcNtwQSfpEntry, mc40G_OEOLane1LoopMode=mc40G_OEOLane1LoopMode, mc1go2o_sfpConnector=mc1go2o_sfpConnector, card_MC_Co_SFPSFP2_Up=card_MC_Co_SFPSFP2_Up, mcE1Port1CV=mcE1Port1CV, shelfEntry=shelfEntry, sfpBrSpeed=sfpBrSpeed, mcRmtE1SFP1Link=mcRmtE1SFP1Link, card_MC_Co_Acc_SFP_Removed=card_MC_Co_Acc_SFP_Removed, mc10G_OEOSFP2=mc10G_OEOSFP2, card_MC_E1_Co_Port2_LOS_Normal=card_MC_E1_Co_Port2_LOS_Normal, mcUpStream=mcUpStream, mc4_25G_OEOCardObjects=mc4_25G_OEOCardObjects, card_MC_Co_SFP2_Up=card_MC_Co_SFP2_Up, mc2_5g_sfpTransCode=mc2_5g_sfpTransCode, card_MC_E1_Rmt_Port2_LOS_Normal=card_MC_E1_Rmt_Port2_LOS_Normal, mc10G_OEO_Start_Test=mc10G_OEO_Start_Test, accXFP1WaveLengthTunable=accXFP1WaveLengthTunable, mcIpAddr=mcIpAddr, mc40G_OEOCardTable=mc40G_OEOCardTable, mc1GO2ORmtPort3SFPlink=mc1GO2ORmtPort3SFPlink, mcRmt4_25G_OEOLoopback=mcRmt4_25G_OEOLoopback, mcE1T1Type=mcE1T1Type, qsfpNtwRxPower3=qsfpNtwRxPower3, mc10G_OEOCardObjects=mc10G_OEOCardObjects, shelfName=shelfName, card_Lost=card_Lost, accsfpCopperLength=accsfpCopperLength, card_MC_E1_Co_Port1_LOS_Alarm=card_MC_E1_Co_Port1_LOS_Alarm, mcIP175DVlanMode=mcIP175DVlanMode, card_MC_E1T1_Rmt_TXLOS_Alarm=card_MC_E1T1_Rmt_TXLOS_Alarm, mc10G_OEESpdMode=mc10G_OEESpdMode, card_MC_Co_Fx_Up=card_MC_Co_Fx_Up, rmtCardDesc=rmtCardDesc, mcAccXFP1TunableType=mcAccXFP1TunableType, card_MC_Rmt_SFPSFP1_Removed=card_MC_Rmt_SFPSFP1_Removed, mcNtwXFP2WaveLengthTunability=mcNtwXFP2WaveLengthTunability, card_MC_Co_QSFP1_Removed=card_MC_Co_QSFP1_Removed, card_MC_Co_Ntw_SFP_Removed=card_MC_Co_Ntw_SFP_Removed, mcPmRest=mcPmRest, card_MC_Co_Acc_SFP_Inserted=card_MC_Co_Acc_SFP_Inserted, mcE1T1RmtFLossAlarm=mcE1T1RmtFLossAlarm, mc10G_OEO2RCardTable=mc10G_OEO2RCardTable, card_MC_E1_Rmt_Port2_CV_Alarm=card_MC_E1_Rmt_Port2_CV_Alarm, card_MC_Co_Port3_Up=card_MC_Co_Port3_Up, mc1GE2OPort2SFPlink=mc1GE2OPort2SFPlink, mc10GOEO3RObjects=mc10GOEO3RObjects, card_MC_E1_Co_Port1_AIS_Alarm=card_MC_E1_Co_Port1_AIS_Alarm, mc10G_OEO_Test_Result=mc10G_OEO_Test_Result, card_MC_Co_SFPSFP1_Inserted=card_MC_Co_SFPSFP1_Inserted, mc4_25G_OEOHWWorkMode=mc4_25G_OEOHWWorkMode, card_MC_Co_Tx_Down=card_MC_Co_Tx_Down, mcCWDMObjects=mcCWDMObjects, mcHWRmtCtrlMode=mcHWRmtCtrlMode, mcCfgWorkMode=mcCfgWorkMode, mcQCA8334PortEntry=mcQCA8334PortEntry, mcE1CardTable=mcE1CardTable, mc40G_OEOQsfp1Lane2_link=mc40G_OEOQsfp1Lane2_link, mc10G_OEO2RCurSpdMode=mc10G_OEO2RCurSpdMode, PYSNMP_MODULE_ID=company, mc10G_OEOLoopback=mc10G_OEOLoopback, mcE1T1FLoop=mcE1T1FLoop, card_MC_Rmt_SFP1_Up=card_MC_Rmt_SFP1_Up, mcRmt4_25G_OEOCfgSpdMode=mcRmt4_25G_OEOCfgSpdMode, card_MC_Rmt_PwrDown=card_MC_Rmt_PwrDown, mc1go2o_sfpMmLength=mc1go2o_sfpMmLength, mcQCA8334CfgWorkMode=mcQCA8334CfgWorkMode, mcRmtType=mcRmtType, mcQCA8334VlanMode=mcQCA8334VlanMode, mc4_25G_OEOHWSpdMode=mc4_25G_OEOHWSpdMode, card_MC_Co_QSFP2_Lane1_Up=card_MC_Co_QSFP2_Lane1_Up, mcE1Port2LOS=mcE1Port2LOS, mc1GO2OCardObjects=mc1GO2OCardObjects, mcRmt4_25G_OEOHWLoopback=mcRmt4_25G_OEOHWLoopback, mcRmt10G_OEO_accType=mcRmt10G_OEO_accType, mc2_5GMCObjects=mc2_5GMCObjects, mcTransceiverMode=mcTransceiverMode, mc40G_OEOObjects=mc40G_OEOObjects, mcCm1gAccSfpEntry=mcCm1gAccSfpEntry, mcIP175DCfgWorkMode=mcIP175DCfgWorkMode, mc1GE2ORmtTxlink=mc1GE2ORmtTxlink, mcE1T1RmtTLoop=mcE1T1RmtTLoop, qsfpNtwTxPower2=qsfpNtwTxPower2, mc1GO2OPort2SFPExist=mc1GO2OPort2SFPExist, ntwXFP2WaveLengthTunable=ntwXFP2WaveLengthTunable, qsfpNtwRxPower2=qsfpNtwRxPower2, card_MC_Co_XFP1_Inserted=card_MC_Co_XFP1_Inserted, mc10G_OEOSFP1=mc10G_OEOSFP1, mcQCA8334CardObjects=mcQCA8334CardObjects, card_MC_Co_QSFP1_Lane3_Up=card_MC_Co_QSFP1_Lane3_Up, mcAccQSfpTable=mcAccQSfpTable, mc10G_OEO_ntwType=mc10G_OEO_ntwType, mc40G_OEOLane3LoopMode=mc40G_OEOLane3LoopMode, card_MC_Rmt_SFP3_Removed=card_MC_Rmt_SFP3_Removed, card_MC_Co_QSFP2_Lane3_Down=card_MC_Co_QSFP2_Lane3_Down, psuA=psuA, ipProduct=ipProduct, mcFanCardTable=mcFanCardTable, mcRmtE1Port2CV=mcRmtE1Port2CV, mc40G_OEOQsfp2Lane2_link=mc40G_OEOQsfp2Lane2_link, qsfpAccRxPower2=qsfpAccRxPower2, mc10G_OEO2RCfgSpdMode=mc10G_OEO2RCfgSpdMode, card_MC_E1_Rmt_Port2_LOS_Alarm=card_MC_E1_Rmt_Port2_LOS_Alarm, card_MC_E1T1_Rmt_FXLOS_Normal=card_MC_E1T1_Rmt_FXLOS_Normal, mc2_5g_sfpCopperLength=mc2_5g_sfpCopperLength, mcCmObjects=mcCmObjects, mc10GOEEXFPTunableObjects=mc10GOEEXFPTunableObjects, mc10GOEO1RObjects=mc10GOEO1RObjects, mc40G_OEOHWSpeedMode=mc40G_OEOHWSpeedMode, getAccQSfpCmd=getAccQSfpCmd, mcQCA8334CardTable=mcQCA8334CardTable, mc10G_OEO2R_accType=mc10G_OEO2R_accType, card_MC_E1_Co_Port1_LOS_Normal=card_MC_E1_Co_Port1_LOS_Normal, card_MC_Rmt_SFPSFP1_Inserted=card_MC_Rmt_SFPSFP1_Inserted, mc2_5g_sfpTemperature=mc2_5g_sfpTemperature, mcRmtE1Txlink=mcRmtE1Txlink, accsfpTranPower=accsfpTranPower, mcE1T1CodeType=mcE1T1CodeType, sfpRecvPower=sfpRecvPower, card_MC_Co_Fx_Down=card_MC_Co_Fx_Down, card_MC_Co_QSFP2_Inserted=card_MC_Co_QSFP2_Inserted, mcRmtLFP=mcRmtLFP, card_MC_Rmt_SFP1_Inserted=card_MC_Rmt_SFP1_Inserted, accsfpTransCode=accsfpTransCode, sysLocation=sysLocation, qsfpNtwRxPower4=qsfpNtwRxPower4, card_MC_E1_Rmt_Port1_LOS_Alarm=card_MC_E1_Rmt_Port1_LOS_Alarm, sfpSmLength=sfpSmLength, cwdmWavelength6=cwdmWavelength6, mcE1TxCurWorkMode=mcE1TxCurWorkMode, mc1GE2ORmtPort1SFPExist=mc1GE2ORmtPort1SFPExist, mcCm1gIpObjects=mcCm1gIpObjects, mcRmtE1Port2Loop=mcRmtE1Port2Loop, mc10G_OEO2RCardEntry=mc10G_OEO2RCardEntry, card_MC_Co_SFP1_Up=card_MC_Co_SFP1_Up, qsfpAccTxPower2=qsfpAccTxPower2, card_MC_Rmt_XFP1_Removed=card_MC_Rmt_XFP1_Removed, qsfpAccTxPower1=qsfpAccTxPower1, qsfpAccConnector=qsfpAccConnector, mcRmtE1Port2AIS=mcRmtE1Port2AIS, card_MC_E1T1_Rmt_FXLOS_Alarm=card_MC_E1T1_Rmt_FXLOS_Alarm, card_MC_Co_QSFP1_Inserted=card_MC_Co_QSFP1_Inserted, card_MC_FAN_Normal=card_MC_FAN_Normal, mcNtwQSfpTable=mcNtwQSfpTable, mc10G_OEE_checkResult=mc10G_OEE_checkResult, card_MC_E1T1_Rmt_AIS_Normal=card_MC_E1T1_Rmt_AIS_Normal, mc2_5GMCCardEntry=mc2_5GMCCardEntry, mcE1Txlink=mcE1Txlink, mcQCA8334CardEntry=mcQCA8334CardEntry, mcRmtLoopback=mcRmtLoopback, mcQCA8334CurWorkMode=mcQCA8334CurWorkMode, card_MC_Rmt_SFP2_Down=card_MC_Rmt_SFP2_Down, card_MC_Rmt_SFP1_Removed=card_MC_Rmt_SFP1_Removed, mcRmtE1Port1LOS=mcRmtE1Port1LOS, card_MC_Co_SFP1_Inserted=card_MC_Co_SFP1_Inserted, qsfpNtwRxPower1=qsfpNtwRxPower1, mc10G_OEO2RSFP2=mc10G_OEO2RSFP2, slotTable=slotTable, mc10G_OEECardTable=mc10G_OEECardTable, mc40G_OEOLoopMode=mc40G_OEOLoopMode, mc1go2o_sfpTranPower=mc1go2o_sfpTranPower, mc1GO2ORmtPort2SFPlink=mc1GO2ORmtPort2SFPlink, mc10G_OEO2RCardObjects=mc10G_OEO2RCardObjects, mcCm1gSfpTable=mcCm1gSfpTable, mc1go2o_sfpTemperature=mc1go2o_sfpTemperature, mc1GO2ORmtPort2SFPExist=mc1GO2ORmtPort2SFPExist, card_MC_E1_Co_Port2_CV_Alarm=card_MC_E1_Co_Port2_CV_Alarm, mc1GE2OPort1SFPExist=mc1GE2OPort1SFPExist, accsfpConnector=accsfpConnector, coCardNum=coCardNum, mc1GO2OCardTable=mc1GO2OCardTable, gateway=gateway, qsfpNtwTemperature=qsfpNtwTemperature, card_MC_Rmt_XFP1_Inserted=card_MC_Rmt_XFP1_Inserted, mcIP175DRmtCurWorkMode=mcIP175DRmtCurWorkMode, mc2_5g_sfpConnector=mc2_5g_sfpConnector, mcE1T1RmtCodeType=mcE1T1RmtCodeType, mc1GO2ORmtPort1SFPExist=mc1GO2ORmtPort1SFPExist, mc4_25G_OEOCfgSpdMode=mc4_25G_OEOCfgSpdMode, card_MC_Co_SFP2_Down=card_MC_Co_SFP2_Down, sfpMmLength=sfpMmLength, mc10GOEEXFPTunableCardEntry=mc10GOEEXFPTunableCardEntry, mcIP175DPortIdx=mcIP175DPortIdx, sfpWavelength=sfpWavelength, shelf_psuA_Off=shelf_psuA_Off, card_MC_Co_Port1_Down=card_MC_Co_Port1_Down, mcRmtAccSfpExist=mcRmtAccSfpExist, mcAccXFP1WaveLength=mcAccXFP1WaveLength, card_MC_Co_QSFP2_Lane4_Up=card_MC_Co_QSFP2_Lane4_Up, card_MC_Co_QSFP2_Lane3_Up=card_MC_Co_QSFP2_Lane3_Up, mcE1CardObjects=mcE1CardObjects)
mibBuilder.exportSymbols("XXX-MIB", ntwXFP2TunableType=ntwXFP2TunableType, card_MC_Co_Ntw_SFP_Inserted=card_MC_Co_Ntw_SFP_Inserted, card_MC_E1_Rmt_Port2_AIS_Normal=card_MC_E1_Rmt_Port2_AIS_Normal, mc2_5GMCPort2link=mc2_5GMCPort2link, mc1GE2ORmtPort2SFPExist=mc1GE2ORmtPort2SFPExist, getSfpCmd=getSfpCmd, mc10G_OEO2RSFP1=mc10G_OEO2RSFP1, card_MC_Co_SFPSFP2_Removed=card_MC_Co_SFPSFP2_Removed, mc1GO2ORmtPort1SFPlink=mc1GO2ORmtPort1SFPlink, mcPmObjects=mcPmObjects, card_MC_Co_Tx_Up=card_MC_Co_Tx_Up, qsfpAccTxPower4=qsfpAccTxPower4, shelf_Lost=shelf_Lost, mcPmEntry=mcPmEntry, mc2_5Cm1gSfpEntry=mc2_5Cm1gSfpEntry, mc1GO2OSfp3Entry=mc1GO2OSfp3Entry, cwdmWavelength4=cwdmWavelength4, xfpWaveLengthTunability=xfpWaveLengthTunability, card_MC_FAN_Abnormal=card_MC_FAN_Abnormal, mc10G_OEO2RSFP2Loopback=mc10G_OEO2RSFP2Loopback, subnet=subnet, card_MC_Co_Port2_Up=card_MC_Co_Port2_Up, card_MC_Co_XFP2_Removed=card_MC_Co_XFP2_Removed, shelf_fan_On=shelf_fan_On, mcQCA8334PortObjects=mcQCA8334PortObjects, mcE1Port1Loop=mcE1Port1Loop, mc10G_OEETxlink=mc10G_OEETxlink, mc10G_OEOHWLoopback=mc10G_OEOHWLoopback, mcRmt4_25G_OEOCurSpdMode=mcRmt4_25G_OEOCurSpdMode, coCardDesc=coCardDesc, nmuConfig=nmuConfig, mc1GO2OCardEntry=mc1GO2OCardEntry, mc1go2o_sfpBrSpeed=mc1go2o_sfpBrSpeed, fan=fan, mc10GOEO3RCardEntry=mc10GOEO3RCardEntry, card_MC_Co_XFP1_Down=card_MC_Co_XFP1_Down, card_MC_Rmt_XFP1_Down=card_MC_Rmt_XFP1_Down, mcE1Objects=mcE1Objects, card_MC_Rmt_Tx_Down1=card_MC_Rmt_Tx_Down1, mcHWWorkMode=mcHWWorkMode, card_MC_Rmt_SFPSFP1_Down=card_MC_Rmt_SFPSFP1_Down, card_MC_Co_QSFP2_Lane1_Down=card_MC_Co_QSFP2_Lane1_Down, mc4_25G_OEOAccPD=mc4_25G_OEOAccPD, cwdmWavelength2=cwdmWavelength2, trapHost4=trapHost4, mcQCA8334PortTable=mcQCA8334PortTable, mcCWDMCardObjects=mcCWDMCardObjects, mcTransmitMode=mcTransmitMode, sfpTemperature=sfpTemperature, qsfpNtwConnector=qsfpNtwConnector, mc4_25G_OEOCardTable=mc4_25G_OEOCardTable, mc40G_OEOLane4LoopMode=mc40G_OEOLane4LoopMode, mcQCA8334Objects=mcQCA8334Objects, mc40G_OEOCardObjects=mc40G_OEOCardObjects, shelf_psuB_Off=shelf_psuB_Off, mcIP175DRmtTxlink=mcIP175DRmtTxlink, mc2_5g_sfpVoltage=mc2_5g_sfpVoltage, mcCWDMCardTable=mcCWDMCardTable, mcRmtTransmitMode=mcRmtTransmitMode, mcFxlink=mcFxlink, mcRxByteLo=mcRxByteLo, mc1GE2OTxlink=mc1GE2OTxlink, mc1go2o_sfpVoltage=mc1go2o_sfpVoltage, mc10GOEO1RCardObjects=mc10GOEO1RCardObjects, card_MC_E1_Rmt_Port1_CV_Alarm=card_MC_E1_Rmt_Port1_CV_Alarm, card_MC_Co_XFP1_Up=card_MC_Co_XFP1_Up, mc10G_OEEObjects=mc10G_OEEObjects, card_MC_E1T1_Co_AIS_Alarm=card_MC_E1T1_Co_AIS_Alarm, mc1go2o_sfpSmLength=mc1go2o_sfpSmLength, shelf_Detected=shelf_Detected, card_MC_Co_SFPSFP2_Inserted=card_MC_Co_SFPSFP2_Inserted, card_MC_Rmt_Acc_SFP_Inserted=card_MC_Rmt_Acc_SFP_Inserted, mcIP175DCardObjects=mcIP175DCardObjects, card_MC_Co_XFP2_Down=card_MC_Co_XFP2_Down, mcQCA8334Txlink=mcQCA8334Txlink, mcE1Port2AIS=mcE1Port2AIS, card_MC_Co_Tx_Down2=card_MC_Co_Tx_Down2, sfpTransCode=sfpTransCode, mc4_25G_OEOLoopback=mc4_25G_OEOLoopback, mcNtwXFP2TunableType=mcNtwXFP2TunableType, accsfpVoltage=accsfpVoltage, mcRmt10G_OEOSFP1=mcRmt10G_OEOSFP1, mc1GO2ORmtPort3HWSpd=mc1GO2ORmtPort3HWSpd, mc10G_OEO2RHWSFP2Loopback=mc10G_OEO2RHWSFP2Loopback, qsfpNtwTxPower3=qsfpNtwTxPower3, mc10G_OEO2RVersion=mc10G_OEO2RVersion, accsfpMmLength=accsfpMmLength, mc10G_OEO2RHWSpdMode=mc10G_OEO2RHWSpdMode, mc10G_OEO2RSFP1Loopback=mc10G_OEO2RSFP1Loopback, mc1GE2OCardEntry=mc1GE2OCardEntry, mcQCA8334RmtCurWorkMode=mcQCA8334RmtCurWorkMode, xfpTunableType=xfpTunableType, card_MC_Co_QSFP1_Lane4_Down=card_MC_Co_QSFP1_Lane4_Down, mcIP175DDownStream=mcIP175DDownStream, cardObjects=cardObjects, alarmMIB=alarmMIB, accXFP1WaveLengthTunability=accXFP1WaveLengthTunability, qsfpNtwTxPower4=qsfpNtwTxPower4, mcE1T1Objects=mcE1T1Objects, mcAccSfpExist=mcAccSfpExist, card_MC_E1_Co_Port2_AIS_Normal=card_MC_E1_Co_Port2_AIS_Normal, card_MC_E1_Co_Port2_LOS_Alarm=card_MC_E1_Co_Port2_LOS_Alarm, mcIP175DRmtCfgWorkMode=mcIP175DRmtCfgWorkMode, mc40G_OEOQsfp2Lane1_link=mc40G_OEOQsfp2Lane1_link, accsfpCompliance=accsfpCompliance, card_MC_Co_SFP3_Inserted=card_MC_Co_SFP3_Inserted)
| [
2,
198,
2,
9485,
15571,
7378,
337,
9865,
8265,
27713,
12,
8895,
33,
357,
4023,
1378,
16184,
76,
489,
8937,
13,
785,
14,
79,
893,
11632,
8,
198,
2,
7054,
45,
13,
16,
2723,
2393,
1378,
14,
14490,
14,
67,
615,
47562,
19,
14,
13603,
14,
76,
571,
82,
13,
16184,
76,
489,
8937,
13,
785,
14,
292,
77,
16,
14,
43145,
12,
8895,
33,
198,
2,
21522,
771,
416,
279,
893,
11632,
12,
15,
13,
18,
13,
19,
379,
3300,
1737,
220,
352,
1315,
25,
2598,
25,
3682,
13130,
198,
2,
1550,
2583,
42274,
54,
15567,
19,
12,
44,
12,
1415,
2425,
3859,
21450,
2196,
1248,
13,
20,
13,
15,
416,
2836,
288,
615,
47562,
19,
198,
2,
8554,
11361,
2196,
513,
13,
22,
13,
18,
357,
12286,
11,
1526,
2681,
13130,
11,
7769,
25,
1954,
25,
1314,
8,
220,
198,
2,
198,
10267,
33234,
7483,
11,
34142,
11,
2556,
316,
10100,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
1600,
366,
10267,
33234,
7483,
1600,
366,
46541,
1600,
366,
12349,
316,
10100,
4943,
198,
45,
2434,
40161,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
1677,
5883,
1137,
6234,
1600,
366,
45,
2434,
40161,
4943,
198,
28008,
11395,
3103,
2536,
2913,
11,
1482,
2536,
6003,
38176,
11,
11052,
17257,
3103,
2536,
2913,
11,
11052,
10699,
3103,
2536,
2913,
11,
1482,
2536,
6003,
9492,
5458,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
2200,
20032,
12529,
1600,
366,
28008,
11395,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
38176,
1600,
366,
11395,
17257,
3103,
2536,
2913,
1600,
366,
11395,
10699,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
9492,
5458,
4943,
198,
26796,
38143,
3610,
11,
42808,
13247,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
10943,
37,
1600,
366,
26796,
38143,
3610,
1600,
366,
3673,
2649,
13247,
4943,
198,
38,
559,
469,
2624,
11,
19937,
7390,
26858,
11,
47279,
11,
34142,
2624,
11,
23941,
11,
9515,
7390,
26858,
11,
791,
32696,
2624,
11,
15034,
2414,
11,
314,
79,
20231,
11,
44733,
11,
15034,
2624,
11,
337,
571,
33234,
7483,
11,
337,
571,
3351,
282,
283,
11,
337,
571,
10962,
11,
337,
571,
10962,
25166,
11,
337,
571,
10962,
39470,
11,
3862,
51,
3378,
11,
42808,
6030,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
50,
8895,
1600,
366,
38,
559,
469,
2624,
1600,
366,
26796,
7390,
26858,
1600,
366,
26786,
1600,
366,
46541,
2624,
1600,
366,
9255,
18166,
1600,
366,
10267,
7390,
26858,
1600,
366,
3118,
32696,
2624,
1600,
366,
31694,
2414,
1600,
366,
40,
79,
20231,
1600,
366,
33,
896,
1600,
366,
31694,
2624,
1600,
366,
44,
571,
33234,
7483,
1600,
366,
44,
571,
3351,
282,
283,
1600,
366,
44,
571,
10962,
1600,
366,
44,
571,
10962,
25166,
1600,
366,
44,
571,
10962,
39470,
1600,
366,
7575,
51,
3378,
1600,
366,
3673,
2649,
6030,
4943,
198,
23114,
10100,
11,
8255,
723,
3103,
4018,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
4825,
1600,
366,
23114,
10100,
1600,
366,
8206,
723,
3103,
4018,
4943,
198,
39722,
796,
19937,
7390,
26858,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
4008,
198,
39722,
13,
2617,
18009,
3279,
7,
10786,
10531,
12,
3070,
12,
2713,
3571,
25,
405,
3256,
4008,
198,
198,
361,
651,
35226,
7,
76,
571,
32875,
11,
705,
9641,
3256,
357,
15,
11,
657,
11,
657,
4008,
1875,
357,
19,
11,
604,
11,
657,
2599,
198,
220,
220,
220,
611,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1664,
13,
2617,
18009,
3279,
24564,
1968,
507,
7,
10786,
16,
38,
13122,
4855,
3256,
4008,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1664,
13,
2617,
5956,
17354,
10786,
2167,
3829,
22515,
2388,
57,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1664,
13,
2617,
26121,
1634,
10786,
37,
1856,
29197,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1664,
13,
2617,
17829,
12360,
10786,
2503,
13,
69,
1856,
6344,
13,
785,
13,
31522,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1664,
13,
2617,
11828,
10786,
13152,
35602,
353,
399,
5653,
11346,
7378,
285,
571,
2393,
11537,
198,
541,
15667,
796,
9515,
7390,
26858,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
4008,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
20966,
15667,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
20966,
15667,
13,
2617,
11828,
10786,
4061,
1720,
1627,
11537,
198,
17015,
17,
39,
52,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
4008,
198,
10057,
8895,
33,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
4008,
198,
282,
1670,
8895,
33,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
4008,
198,
7091,
1652,
33111,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
604,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
33111,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
33111,
13,
2617,
11828,
10786,
464,
1271,
286,
18316,
287,
1459,
1080,
11537,
198,
7091,
1652,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
10962,
13,
2617,
11828,
10786,
3347,
1652,
3084,
11537,
198,
7091,
1652,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
5376,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
30150,
13,
2617,
11828,
10786,
3347,
1652,
5726,
6770,
11537,
198,
7091,
1652,
5376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
9866,
1600,
352,
828,
5855,
36341,
16,
1600,
362,
828,
5855,
36341,
17,
1600,
513,
828,
5855,
36341,
18,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
5376,
13,
2617,
11828,
10786,
3347,
1652,
1438,
11537,
198,
862,
84,
32,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
261,
1600,
352,
828,
5855,
2364,
1600,
362,
828,
5855,
10782,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
279,
2385,
32,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
279,
2385,
32,
13,
2617,
11828,
10786,
464,
3722,
4336,
317,
286,
1459,
18316,
11537,
198,
862,
84,
33,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
261,
1600,
352,
828,
5855,
2364,
1600,
362,
828,
5855,
10782,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
279,
2385,
33,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
279,
2385,
33,
13,
2617,
11828,
10786,
464,
3722,
279,
2385,
347,
286,
1459,
18316,
11537,
198,
10396,
32,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
11265,
1600,
352,
828,
5855,
397,
11265,
1600,
362,
828,
5855,
10782,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2322,
32,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2322,
32,
13,
2617,
11828,
10786,
464,
15004,
3722,
286,
279,
2385,
32,
286,
1459,
18316,
11537,
198,
10396,
33,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
11265,
1600,
352,
828,
5855,
397,
11265,
1600,
362,
828,
5855,
10782,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2322,
33,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2322,
33,
13,
2617,
11828,
10786,
464,
15004,
3722,
286,
279,
2385,
33,
286,
1459,
18316,
11537,
198,
24408,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
261,
1600,
352,
828,
5855,
2364,
1600,
362,
828,
5855,
10782,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
4336,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
4336,
13,
2617,
11828,
10786,
464,
3722,
4336,
317,
286,
1459,
18316,
11537,
198,
11498,
21069,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
3118,
896,
10786,
267,
34,
27691,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
5951,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
5951,
13,
2617,
11828,
10786,
464,
5951,
3722,
286,
1459,
18316,
11537,
198,
1073,
16962,
33111,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
1467,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
33111,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
33111,
13,
2617,
11828,
10786,
464,
1271,
286,
3641,
2657,
19319,
286,
1459,
18316,
11537,
198,
81,
16762,
16962,
33111,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
362,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
15,
11,
1467,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
33111,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
33111,
13,
2617,
11828,
10786,
464,
1271,
286,
6569,
2657,
19319,
286,
1459,
18316,
11537,
198,
43384,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
4008,
198,
43384,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
10962,
13,
2617,
11828,
10786,
50,
29572,
3084,
7268,
530,
5726,
329,
1123,
10852,
287,
2152,
24587,
287,
262,
1080,
11,
41497,
416,
18316,
7390,
87,
290,
10852,
7390,
87,
2637,
8,
198,
43384,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
30150,
13,
2617,
11828,
7203,
259,
428,
3084,
837,
7220,
460,
1064,
262,
38394,
8265,
338,
2099,
18846,
287,
262,
1080,
338,
10852,
13,
8524,
345,
460,
651,
262,
3703,
1321,
546,
262,
7368,
2099,
287,
262,
2657,
10267,
82,
3084,
4943,
198,
7091,
1652,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
9866,
1600,
352,
828,
5855,
36341,
16,
1600,
362,
828,
5855,
36341,
17,
1600,
513,
828,
5855,
36341,
18,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
7390,
87,
13,
2617,
11828,
10786,
1925,
20297,
6376,
532,
352,
796,
4958,
4542,
8265,
11,
362,
12,
19,
796,
11778,
4542,
8265,
11537,
198,
43384,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
11,
1596,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
43384,
486,
1600,
352,
828,
5855,
43384,
2999,
1600,
362,
828,
5855,
43384,
3070,
1600,
513,
828,
5855,
43384,
3023,
1600,
604,
828,
5855,
43384,
2713,
1600,
642,
828,
5855,
43384,
3312,
1600,
718,
828,
5855,
43384,
2998,
1600,
767,
828,
5855,
43384,
2919,
1600,
807,
828,
5855,
43384,
2931,
1600,
860,
828,
5855,
43384,
940,
1600,
838,
828,
5855,
43384,
1157,
1600,
1367,
828,
5855,
43384,
1065,
1600,
1105,
828,
5855,
43384,
1485,
1600,
1511,
828,
5855,
43384,
1415,
1600,
1478,
828,
5855,
43384,
1314,
1600,
1315,
828,
5855,
43384,
1433,
1600,
1467,
828,
5855,
43384,
1558,
1600,
1596,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10852,
7390,
87,
13,
2617,
11828,
7203,
354,
20297,
338,
10852,
11,
1929,
2007,
318,
257,
6376,
287,
428,
3084,
4943,
198,
1073,
16962,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
11,
1596,
11,
1248,
11,
678,
11,
1160,
11,
2310,
11,
2534,
11,
2242,
11,
1987,
11,
1679,
11,
2608,
11,
1802,
11,
8949,
11,
15143,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
541,
16616,
82,
1600,
352,
828,
5855,
541,
16616,
69,
1600,
362,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
1600,
513,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
1600,
604,
828,
5855,
23209,
12,
19,
12,
1495,
70,
12,
2577,
78,
1600,
642,
828,
5855,
23209,
12,
541,
17430,
67,
1600,
718,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
1600,
767,
828,
5855,
23209,
12,
940,
70,
12,
78,
1453,
1600,
807,
828,
5855,
23209,
12,
37,
1565,
1600,
860,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
16,
81,
1600,
838,
828,
5855,
23209,
12,
17,
12,
20,
70,
1600,
1367,
828,
5855,
23209,
12,
1821,
70,
12,
2577,
78,
1600,
1105,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
83,
1600,
1511,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
69,
1600,
1478,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
83,
1600,
1315,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
69,
1600,
1467,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
12,
1891,
929,
1600,
1596,
828,
5855,
23209,
12,
68,
16,
12,
16,
28202,
79,
1600,
1248,
828,
5855,
23209,
12,
68,
16,
12,
17,
28202,
79,
1600,
678,
828,
5855,
23209,
12,
3064,
76,
12,
28202,
79,
1600,
1160,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
12,
1891,
929,
1600,
2310,
828,
5855,
23209,
12,
66,
16993,
76,
12,
19,
1600,
2534,
828,
5855,
23209,
12,
66,
16993,
76,
12,
23,
1600,
2242,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
17,
81,
1600,
1987,
828,
5855,
23209,
12,
80,
6888,
23,
31380,
1600,
1679,
828,
5855,
23209,
12,
68,
16,
83,
16,
1600,
2608,
828,
5855,
8310,
8054,
69,
12,
3020,
1600,
1802,
828,
5855,
8310,
8054,
69,
12,
907,
1600,
8949,
828,
5855,
1662,
12,
11284,
1600,
15143,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
6030,
13,
2617,
11828,
7203,
12001,
2657,
338,
2099,
18846,
287,
262,
24587,
4943,
198,
1073,
16962,
24564,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
604,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
24564,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
763,
16962,
24564,
13,
2617,
11828,
7203,
12001,
2657,
338,
6764,
4943,
198,
81,
16762,
16962,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
11,
1596,
11,
1248,
11,
678,
11,
1160,
11,
2310,
11,
2534,
11,
2242,
11,
1987,
11,
1679,
11,
2608,
11,
1802,
11,
8949,
11,
15143,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
541,
16616,
27891,
1600,
352,
828,
5855,
541,
16616,
69,
1600,
362,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
1600,
513,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
1600,
604,
828,
5855,
23209,
12,
19,
12,
1495,
70,
12,
2577,
273,
1600,
642,
828,
5855,
23209,
12,
541,
17430,
7109,
1600,
718,
828,
5855,
23209,
12,
940,
70,
12,
2577,
273,
1600,
767,
828,
5855,
23209,
12,
940,
70,
12,
2577,
263,
1600,
807,
828,
5855,
23209,
12,
37,
1565,
81,
1600,
860,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
16,
21062,
1600,
838,
828,
5855,
23209,
12,
17,
12,
20,
2164,
1600,
1367,
828,
5855,
23209,
12,
1821,
70,
12,
2577,
273,
1600,
1105,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
2213,
1600,
1511,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
8310,
1600,
1478,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
2213,
1600,
1315,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
8310,
1600,
1467,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
12,
1891,
929,
81,
1600,
1596,
828,
5855,
23209,
12,
68,
16,
12,
16,
28202,
1050,
1600,
1248,
828,
5855,
23209,
12,
68,
16,
12,
17,
28202,
1050,
1600,
678,
828,
5855,
23209,
12,
3064,
76,
12,
28202,
1050,
1600,
1160,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
12,
1891,
929,
81,
1600,
2310,
828,
5855,
23209,
12,
66,
16993,
43395,
12,
19,
1600,
2534,
828,
5855,
23209,
12,
66,
16993,
43395,
12,
23,
1600,
2242,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
17,
21062,
1600,
1987,
828,
5855,
23209,
12,
80,
6888,
23,
31380,
81,
1600,
1679,
828,
5855,
23209,
12,
68,
16,
83,
16,
81,
1600,
2608,
828,
5855,
8310,
8054,
69,
12,
3020,
1600,
1802,
828,
5855,
8310,
8054,
69,
12,
907,
1600,
8949,
828,
5855,
1662,
12,
11284,
1600,
15143,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
6030,
13,
2617,
11828,
7203,
47960,
2657,
338,
2099,
2018,
351,
262,
1957,
38394,
4943,
198,
81,
16762,
16962,
24564,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
513,
11,
352,
11,
352,
11,
718,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
24564,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
374,
16762,
16962,
24564,
13,
2617,
11828,
7203,
47960,
2657,
338,
6764,
4943,
198,
9517,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
4008,
198,
21533,
84,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
4008,
198,
21533,
84,
16934,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
4008,
198,
21533,
84,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
3064,
11,
8949,
11,
15143,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
8310,
8054,
69,
12,
3020,
1600,
1802,
828,
5855,
8310,
8054,
69,
12,
907,
1600,
8949,
828,
5855,
1662,
12,
11284,
1600,
15143,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
28642,
84,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
28642,
84,
6030,
13,
2617,
11828,
10786,
464,
2099,
286,
28692,
52,
357,
27349,
4542,
4326,
8,
11537,
198,
541,
29851,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
362,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
20966,
29851,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
20966,
29851,
13,
2617,
11828,
10786,
464,
28475,
3262,
6101,
2209,
286,
28692,
52,
357,
27349,
4542,
4326,
8,
11537,
198,
7266,
3262,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
513,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
850,
3262,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
850,
3262,
13,
2617,
11828,
10786,
464,
304,
1169,
1156,
9335,
2209,
286,
28692,
52,
357,
27349,
4542,
4326,
8,
11537,
198,
10494,
1014,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
604,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
24308,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
24308,
13,
2617,
11828,
10786,
464,
28475,
3262,
24308,
2209,
286,
28692,
52,
357,
27349,
4542,
4326,
8,
11537,
198,
17597,
17829,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
642,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
17829,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
17829,
13,
2617,
11828,
10786,
27453,
1472,
286,
262,
1080,
13,
17597,
17829,
13,
15,
11537,
198,
17597,
5376,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
718,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
5376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
5376,
13,
2617,
11828,
10786,
27453,
1472,
286,
262,
1080,
13,
17597,
5376,
13,
15,
11537,
198,
17597,
14749,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
767,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
14749,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
25064,
14749,
13,
2617,
11828,
10786,
27453,
1472,
286,
262,
1080,
13,
17597,
14749,
13,
15,
11537,
198,
46670,
17932,
16,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
807,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
16,
13,
2617,
11828,
7203,
464,
717,
2583,
338,
6101,
2209,
973,
284,
3328,
12840,
6218,
11,
618,
900,
657,
340,
2391,
12233,
428,
5726,
13,
770,
8991,
284,
262,
12840,
2583,
362,
93,
19,
2174,
355,
880,
19570,
198,
46670,
17932,
17,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
860,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
17,
13,
2617,
11828,
7203,
464,
1218,
2583,
338,
6101,
2209,
973,
284,
3328,
12840,
6218,
4943,
198,
46670,
17932,
18,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
838,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
18,
13,
2617,
11828,
7203,
464,
2368,
2583,
338,
6101,
2209,
973,
284,
3328,
12840,
6218,
4943,
198,
46670,
17932,
19,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
352,
11,
352,
11,
1367,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
12840,
17932,
19,
13,
2617,
11828,
7203,
464,
5544,
2583,
338,
6101,
2209,
973,
284,
3328,
12840,
6218,
4943,
198,
23209,
34,
76,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
4008,
198,
23209,
34,
76,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
10962,
13,
2617,
11828,
10786,
9655,
28373,
3084,
11537,
198,
23209,
34,
76,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
3347,
1652,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
9866,
1600,
352,
828,
5855,
36341,
16,
1600,
362,
828,
5855,
36341,
17,
1600,
513,
828,
5855,
36341,
18,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
3347,
1652,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
3347,
1652,
7390,
87,
13,
2617,
11828,
10786,
3347,
1652,
6376,
11537,
198,
23209,
16962,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
9517,
486,
1600,
352,
828,
5855,
9517,
2999,
1600,
362,
828,
5855,
9517,
3070,
1600,
513,
828,
5855,
9517,
3023,
1600,
604,
828,
5855,
9517,
2713,
1600,
642,
828,
5855,
9517,
3312,
1600,
718,
828,
5855,
9517,
2998,
1600,
767,
828,
5855,
9517,
2919,
1600,
807,
828,
5855,
9517,
2931,
1600,
860,
828,
5855,
9517,
940,
1600,
838,
828,
5855,
9517,
1157,
1600,
1367,
828,
5855,
9517,
1065,
1600,
1105,
828,
5855,
9517,
1485,
1600,
1511,
828,
5855,
9517,
1415,
1600,
1478,
828,
5855,
9517,
1314,
1600,
1315,
828,
5855,
9517,
1433,
1600,
1467,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16962,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16962,
7390,
87,
13,
2617,
11828,
10786,
16962,
6376,
11537,
198,
23209,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
11,
1596,
11,
1248,
11,
678,
11,
1160,
11,
2310,
11,
2534,
11,
2242,
11,
1987,
11,
1679,
11,
2608,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
541,
16616,
82,
1600,
352,
828,
5855,
541,
16616,
69,
1600,
362,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
1600,
513,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
1600,
604,
828,
5855,
23209,
12,
19,
12,
1495,
70,
12,
2577,
78,
1600,
642,
828,
5855,
23209,
12,
541,
17430,
67,
1600,
718,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
1600,
767,
828,
5855,
23209,
12,
940,
70,
12,
78,
1453,
1600,
807,
828,
5855,
23209,
12,
37,
1565,
1600,
860,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
16,
81,
1600,
838,
828,
5855,
23209,
12,
17,
12,
20,
70,
1600,
1367,
828,
5855,
23209,
12,
1821,
70,
12,
2577,
78,
1600,
1105,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
83,
1600,
1511,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
69,
1600,
1478,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
83,
1600,
1315,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
69,
1600,
1467,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
12,
1891,
929,
1600,
1596,
828,
5855,
23209,
12,
68,
16,
12,
16,
28202,
79,
1600,
1248,
828,
5855,
23209,
12,
68,
16,
12,
17,
28202,
79,
1600,
678,
828,
5855,
23209,
12,
3064,
76,
12,
28202,
79,
1600,
1160,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
12,
1891,
929,
1600,
2310,
828,
5855,
23209,
12,
66,
16993,
76,
12,
19,
1600,
2534,
828,
5855,
23209,
12,
66,
16993,
76,
12,
23,
1600,
2242,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
17,
81,
1600,
1987,
828,
5855,
23209,
12,
80,
6888,
23,
31380,
1600,
1679,
828,
5855,
23209,
12,
68,
16,
83,
16,
1600,
2608,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
6030,
13,
2617,
11828,
7203,
23656,
2657,
338,
2099,
4943,
198,
23209,
8291,
39729,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
14065,
72,
1600,
352,
828,
5855,
646,
11141,
12,
69,
1856,
1600,
362,
828,
5855,
28202,
79,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
39729,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
39729,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
18480,
1007,
39729,
4235,
13,
1802,
44,
2657,
1104,
8406,
72,
14,
646,
11141,
12,
69,
1856,
26,
352,
38,
2657,
1104,
8406,
72,
14,
646,
11141,
12,
69,
1856,
14,
28202,
79,
13,
4874,
264,
46428,
318,
1813,
11,
262,
1708,
36650,
8291,
39729,
20344,
815,
307,
9514,
19570,
198,
23209,
8291,
39729,
20344,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
7982,
4008,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
39729,
20344,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
39729,
20344,
13,
2617,
11828,
7203,
23656,
2657,
338,
18480,
1007,
39729,
5253,
11,
352,
1724,
25240,
76,
329,
32597,
2588,
12,
69,
1856,
4235,
287,
1339,
286,
352,
38,
2657,
11,
4306,
340,
6870,
262,
1103,
5253,
357,
20850,
286,
10571,
8,
19570,
198,
23209,
13924,
9012,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
24162,
1600,
352,
828,
5855,
403,
24162,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
13924,
9012,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
13924,
9012,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
3722,
11,
8970,
393,
14838,
4943,
198,
23209,
8291,
2781,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
8968,
12,
9579,
1600,
352,
828,
5855,
8095,
12,
11813,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
2781,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8291,
2781,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
21595,
2781,
4235,
4943,
198,
23209,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
17,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
26628,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
670,
4235,
4943,
198,
23209,
34,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
40616,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
4566,
11970,
670,
4235,
4943,
198,
23209,
43,
37,
5662,
40616,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
43,
37,
5662,
40616,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
43,
37,
5662,
40616,
13,
2617,
11828,
10786,
36510,
8046,
4886,
2163,
11,
4938,
691,
319,
3641,
13122,
2657,
11537,
198,
23209,
4933,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1367,
828,
35094,
469,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4933,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4933,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
510,
4269,
286,
13122,
4943,
198,
23209,
8048,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1105,
828,
35094,
469,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8048,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
8048,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
866,
4269,
286,
13122,
4943,
198,
23209,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
37,
87,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
37,
87,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
37,
87,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
18480,
2493,
338,
2792,
3722,
4943,
198,
23209,
39,
54,
43,
5837,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
43,
5837,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
43,
5837,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
406,
5837,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
39,
54,
8291,
2781,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
8968,
12,
9579,
1600,
352,
828,
5855,
8095,
12,
11813,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
8291,
2781,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
8291,
2781,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
21937,
4235,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
39,
54,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
12468,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
54,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
670,
4235,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
39,
18564,
16762,
40069,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1248,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
18564,
16762,
40069,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
39,
18564,
16762,
40069,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
6569,
1630,
4235,
357,
8807,
4938,
329,
1957,
2657,
737,
262,
15560,
4235,
9217,
326,
477,
25823,
4560,
1276,
307,
12244,
4943,
198,
23209,
45,
4246,
50,
46428,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
678,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
50,
46428,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
50,
46428,
3109,
396,
13,
2617,
11828,
7203,
23656,
352,
38,
2657,
338,
7311,
311,
5837,
12955,
4943,
198,
23209,
17320,
50,
46428,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1160,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
50,
46428,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
50,
46428,
3109,
396,
13,
2617,
11828,
7203,
23656,
352,
38,
2657,
338,
8798,
311,
5837,
12955,
11,
9723,
691,
329,
440,
17,
46,
2099,
4943,
198,
23209,
18274,
879,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2310,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
312,
293,
1600,
352,
828,
5855,
42503,
1600,
362,
828,
5855,
12286,
1600,
513,
828,
5855,
2617,
17,
36599,
1600,
604,
828,
5855,
1662,
12,
11284,
1600,
642,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
18274,
879,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
18274,
879,
13,
2617,
11828,
10786,
42503,
11,
4277,
284,
8860,
11,
900,
284,
44884,
1573,
11,
3503,
986,
11537,
198,
23209,
49,
16762,
47504,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2534,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
47960,
1600,
657,
828,
5855,
8505,
1600,
352,
828,
5855,
1662,
12,
11284,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
47504,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
47504,
13,
2617,
11828,
10786,
2025,
27421,
284,
7603,
611,
612,
318,
257,
6569,
13122,
3058,
14320,
284,
1080,
393,
407,
11537,
198,
23209,
49,
16762,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2242,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
11,
1315,
11,
1467,
11,
1596,
11,
1248,
11,
678,
11,
1160,
11,
2310,
11,
2534,
11,
2242,
11,
1987,
11,
1679,
11,
2608,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
541,
16616,
27891,
1600,
352,
828,
5855,
541,
16616,
69,
1600,
362,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
273,
1600,
513,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
273,
1600,
604,
828,
5855,
23209,
12,
19,
12,
1495,
70,
12,
2577,
273,
1600,
642,
828,
5855,
23209,
12,
541,
17430,
7109,
1600,
718,
828,
5855,
23209,
12,
940,
70,
12,
2577,
273,
1600,
767,
828,
5855,
23209,
12,
940,
70,
12,
2577,
263,
1600,
807,
828,
5855,
23209,
12,
37,
1565,
81,
1600,
860,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
16,
21062,
1600,
838,
828,
5855,
23209,
12,
17,
12,
20,
2164,
1600,
1367,
828,
5855,
23209,
12,
1821,
70,
12,
2577,
273,
1600,
1105,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
2213,
1600,
1511,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
8310,
1600,
1478,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
2213,
1600,
1315,
828,
5855,
23209,
12,
17,
12,
20,
70,
12,
76,
2821,
12,
8310,
1600,
1467,
828,
5855,
23209,
12,
16,
70,
12,
68,
17,
78,
12,
1891,
929,
81,
1600,
1596,
828,
5855,
23209,
12,
68,
16,
12,
16,
28202,
1050,
1600,
1248,
828,
5855,
23209,
12,
68,
16,
12,
17,
28202,
1050,
1600,
678,
828,
5855,
23209,
12,
3064,
76,
12,
28202,
1050,
1600,
1160,
828,
5855,
23209,
12,
16,
70,
12,
78,
17,
78,
12,
1891,
929,
81,
1600,
2310,
828,
5855,
23209,
12,
66,
16993,
43395,
12,
19,
1600,
2534,
828,
5855,
23209,
12,
66,
16993,
43395,
12,
23,
1600,
2242,
828,
5855,
23209,
12,
940,
70,
12,
2577,
78,
12,
17,
21062,
1600,
1987,
828,
5855,
23209,
12,
80,
6888,
23,
31380,
81,
1600,
1679,
828,
5855,
23209,
12,
68,
16,
83,
16,
81,
1600,
2608,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
6030,
13,
2617,
11828,
7203,
36510,
2657,
338,
2099,
4943,
198,
23209,
49,
16762,
8291,
2781,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1987,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
8968,
12,
9579,
1600,
352,
828,
5855,
8095,
12,
11813,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
8291,
2781,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
8291,
2781,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
21595,
2781,
4235,
4943,
198,
23209,
49,
16762,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1679,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
26628,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
1459,
670,
4235,
4943,
198,
23209,
49,
16762,
34,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2608,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
34,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
34,
40616,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
4566,
11970,
670,
4235,
4943,
198,
23209,
49,
16762,
43,
5837,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2681,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
43,
5837,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
43,
5837,
13,
2617,
11828,
7203,
36510,
2657,
338,
406,
5837,
20450,
1181,
4943,
198,
23209,
49,
16762,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2579,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
46047,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
46047,
8726,
13,
2617,
11828,
7203,
36510,
2657,
338,
1742,
4454,
2493,
3722,
4943,
198,
23209,
49,
16762,
39,
54,
43,
5837,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
2808,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
43,
5837,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
43,
5837,
13,
2617,
11828,
7203,
36510,
2657,
338,
44884,
406,
5837,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
49,
16762,
39,
54,
8291,
2781,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
1542,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
8968,
12,
9579,
1600,
352,
828,
5855,
8095,
12,
11813,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
8291,
2781,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
8291,
2781,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
44884,
21937,
4235,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
49,
16762,
39,
54,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
3261,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
12468,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39,
54,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
44884,
670,
4235,
11,
407,
9723,
329,
352,
38,
2657,
4943,
198,
23209,
49,
16762,
39516,
1891,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
3933,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
39516,
1891,
13,
2617,
11828,
7203,
36510,
2657,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
47,
18351,
8048,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
4747,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
6477,
2902,
1600,
352,
828,
5855,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
47,
18351,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
47,
18351,
8048,
13,
2617,
11828,
7203,
36510,
2657,
338,
1176,
866,
1181,
4943,
198,
23209,
49,
16762,
17320,
50,
46428,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
4974,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
17320,
50,
46428,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
17320,
50,
46428,
3109,
396,
13,
2617,
11828,
7203,
36510,
352,
38,
2657,
338,
8798,
311,
5837,
12955,
11,
9723,
691,
329,
440,
17,
46,
2099,
4943,
198,
23209,
49,
16762,
18274,
879,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
352,
11,
352,
11,
3439,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
312,
293,
1600,
352,
828,
5855,
42503,
1600,
362,
828,
5855,
12286,
1600,
513,
828,
5855,
2617,
17,
36599,
1600,
604,
828,
5855,
1662,
12,
11284,
1600,
642,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
18274,
879,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
18274,
879,
13,
2617,
11828,
7203,
49,
76,
1258,
4116,
338,
13259,
11,
4277,
284,
8860,
11,
900,
284,
44884,
1573,
11,
3503,
9313,
8,
198,
23209,
34,
76,
16,
70,
32419,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
4008,
198,
23209,
34,
76,
16,
70,
40,
79,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
352,
4008,
198,
23209,
34,
76,
16,
70,
40,
79,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
40,
79,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
40,
79,
10962,
13,
2617,
11828,
10786,
9655,
352,
38,
314,
79,
2209,
3084,
11537,
198,
23209,
34,
76,
16,
70,
40,
79,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
27654,
5574,
49,
16762,
37,
70,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
40,
79,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
40,
79,
30150,
13,
2617,
11828,
10786,
9655,
352,
38,
314,
79,
2209,
5726,
6770,
11537,
198,
23209,
27654,
5574,
49,
16762,
37,
70,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
27654,
5574,
49,
16762,
37,
70,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
27654,
5574,
49,
16762,
37,
70,
13,
2617,
11828,
10786,
24886,
6376,
11,
1957,
393,
6569,
11537,
198,
23209,
40,
79,
4550,
81,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
352,
11,
352,
11,
352,
11,
362,
828,
314,
79,
20231,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
40,
79,
4550,
81,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
40,
79,
4550,
81,
13,
2617,
11828,
10786,
464,
314,
79,
2209,
286,
262,
10139,
11537,
198,
23209,
34,
76,
16,
70,
50,
46428,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
4008,
198,
23209,
34,
76,
16,
70,
50,
46428,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
50,
46428,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
50,
46428,
10962,
13,
2617,
11828,
10786,
9655,
352,
38,
311,
5837,
3084,
11537,
198,
23209,
34,
76,
16,
70,
50,
46428,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
27654,
5574,
49,
16762,
37,
70,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
50,
46428,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
50,
46428,
30150,
13,
2617,
11828,
10786,
9655,
352,
38,
311,
5837,
5726,
6770,
11537,
198,
1136,
50,
46428,
40109,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
28202,
79,
38143,
3610,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
38143,
3610,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
38143,
3610,
13,
2617,
11828,
10786,
50,
5837,
11846,
357,
505,
18022,
8,
611,
657,
788,
262,
24548,
82,
286,
264,
46428,
42492,
14,
28202,
79,
51,
2596,
13434,
14,
28202,
79,
6690,
85,
13434,
815,
307,
9514,
11537,
198,
28202,
79,
34525,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
486,
25,
6374,
657,
87,
2998,
25,
22228,
657,
87,
1828,
25,
46642,
2231,
1854,
25,
24222,
11537,
198,
28202,
79,
8291,
10669,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
8291,
10669,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
8291,
10669,
13,
2617,
11828,
10786,
50,
5837,
1007,
39729,
2438,
357,
505,
18022,
8,
1643,
15,
25,
14206,
19076,
1643,
16,
25,
27157,
19937,
1643,
17,
25,
15237,
19076,
1643,
18,
25,
15237,
19076,
1854,
25,
24222,
11537,
198,
28202,
79,
7556,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
7556,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
7556,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
14206,
19076,
11,
4991,
286,
10571,
13,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
14206,
19076,
11537,
198,
28202,
79,
44,
76,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
44,
76,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
44,
76,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
15237,
19076,
11,
4991,
286,
838,
76,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
15237,
19076,
11537,
198,
28202,
79,
7222,
2848,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
7222,
2848,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
7222,
2848,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
27157,
11,
4991,
286,
285,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
34525,
318,
46642,
2231,
11537,
198,
28202,
79,
9414,
22785,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
9414,
22785,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
9414,
22785,
13,
2617,
11828,
10786,
50,
5837,
26934,
45829,
2494,
11,
4991,
286,
1802,
44,
2545,
14,
82,
357,
505,
18022,
8,
11537,
198,
28202,
79,
33484,
26623,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
33484,
26623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
33484,
26623,
13,
2617,
11828,
10786,
50,
5837,
12855,
28400,
357,
505,
1573,
8,
11537,
198,
28202,
79,
42492,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
28202,
79,
51,
2596,
13434,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
51,
2596,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
51,
2596,
13434,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
28202,
79,
6690,
85,
13434,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
6690,
85,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
6690,
85,
13434,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
28202,
79,
53,
5978,
496,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
362,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
53,
5978,
496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
264,
46428,
53,
5978,
496,
13,
2617,
11828,
10786,
50,
5837,
15004,
11,
4991,
286,
657,
13,
16,
76,
53,
357,
505,
1573,
8,
11537,
198,
23209,
34,
76,
16,
70,
17320,
50,
46428,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
4008,
198,
23209,
34,
76,
16,
70,
17320,
50,
46428,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
17320,
50,
46428,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
17320,
50,
46428,
10962,
13,
2617,
11828,
10786,
9655,
352,
38,
8798,
311,
5837,
3084,
11537,
198,
23209,
34,
76,
16,
70,
17320,
50,
46428,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
27654,
5574,
49,
16762,
37,
70,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
17320,
50,
46428,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
76,
16,
70,
17320,
50,
46428,
30150,
13,
2617,
11828,
10786,
9655,
352,
38,
8798,
311,
5837,
5726,
6770,
11537,
198,
1136,
17320,
50,
46428,
40109,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
17320,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
17320,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
4134,
28202,
79,
38143,
3610,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
38143,
3610,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
38143,
3610,
13,
2617,
11828,
10786,
50,
5837,
11846,
357,
505,
18022,
8,
611,
657,
788,
262,
24548,
82,
286,
264,
46428,
42492,
14,
28202,
79,
51,
2596,
13434,
14,
28202,
79,
6690,
85,
13434,
815,
307,
9514,
11537,
198,
4134,
28202,
79,
34525,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
486,
25,
6374,
657,
87,
2998,
25,
22228,
657,
87,
1828,
25,
46642,
2231,
1854,
25,
24222,
11537,
198,
4134,
28202,
79,
8291,
10669,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
8291,
10669,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
8291,
10669,
13,
2617,
11828,
10786,
50,
5837,
1007,
39729,
2438,
357,
505,
18022,
8,
1643,
15,
25,
14206,
19076,
1643,
17,
25,
15237,
19076,
1643,
18,
25,
15237,
19076,
1854,
25,
24222,
11537,
198,
4134,
28202,
79,
7556,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
7556,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
7556,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
14206,
19076,
11,
4991,
286,
10571,
13,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
14206,
19076,
11537,
198,
4134,
28202,
79,
44,
76,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
44,
76,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
44,
76,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
15237,
19076,
11,
4991,
286,
838,
76,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
15237,
19076,
11537,
198,
4134,
28202,
79,
7222,
2848,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
7222,
2848,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
7222,
2848,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
27157,
11,
4991,
286,
285,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
34525,
318,
46642,
2231,
11537,
198,
4134,
28202,
79,
9414,
22785,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
9414,
22785,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
9414,
22785,
13,
2617,
11828,
10786,
50,
5837,
26934,
45829,
2494,
11,
4991,
286,
1802,
44,
2545,
14,
82,
357,
505,
18022,
8,
11537,
198,
4134,
28202,
79,
33484,
26623,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
33484,
26623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
33484,
26623,
13,
2617,
11828,
10786,
50,
5837,
12855,
28400,
357,
505,
1573,
8,
11537,
198,
4134,
28202,
79,
42492,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
4134,
28202,
79,
51,
2596,
13434,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
51,
2596,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
51,
2596,
13434,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
4134,
28202,
79,
6690,
85,
13434,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
6690,
85,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
6690,
85,
13434,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
4134,
28202,
79,
53,
5978,
496,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
362,
11,
513,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
53,
5978,
496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
28202,
79,
53,
5978,
496,
13,
2617,
11828,
10786,
50,
5837,
15004,
11,
4991,
286,
657,
13,
16,
76,
53,
357,
505,
1573,
8,
11537,
198,
23209,
4061,
17430,
35,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
4008,
198,
23209,
4061,
17430,
9697,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
352,
4008,
198,
23209,
4061,
17430,
9697,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
446,
10962,
13,
2617,
11828,
10786,
9655,
6101,
17430,
35,
28373,
3084,
11537,
198,
23209,
4061,
17430,
9697,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
4061,
17430,
35,
53,
9620,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
26447,
1600,
352,
828,
5855,
14171,
16,
1600,
362,
828,
5855,
14171,
17,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
53,
9620,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
53,
9620,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
410,
9620,
4235,
4943,
198,
23209,
4061,
17430,
6322,
419,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
4008,
198,
23209,
4061,
17430,
6322,
419,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
10962,
13,
2617,
11828,
10786,
9655,
6101,
17430,
35,
28373,
3084,
11537,
198,
23209,
4061,
17430,
6322,
419,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
4061,
17430,
6322,
419,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
4061,
17430,
6322,
419,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
634,
16,
1600,
352,
828,
5855,
634,
17,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
6322,
419,
7390,
87,
13,
2617,
11828,
10786,
13924,
6376,
11537,
198,
23209,
4061,
17430,
9697,
333,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
17,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
333,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
333,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
1459,
670,
4235,
4943,
198,
23209,
4061,
17430,
9697,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
9697,
40616,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
4566,
11970,
670,
4235,
4943,
198,
23209,
4061,
17430,
35,
4933,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
604,
828,
35094,
469,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
2414,
11,
1802,
830,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
4933,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
4933,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
510,
4269,
286,
13122,
4943,
198,
23209,
4061,
17430,
35,
8048,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
642,
828,
35094,
469,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
2414,
11,
1802,
830,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
8048,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
35,
8048,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
866,
4269,
286,
13122,
4943,
198,
23209,
4061,
17430,
24544,
87,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
24544,
87,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
24544,
87,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
352,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
4061,
17430,
7707,
16762,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
26628,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
352,
1459,
670,
4235,
4943,
198,
23209,
4061,
17430,
7707,
16762,
34,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
34,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
34,
40616,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
16,
4566,
11970,
670,
4235,
4943,
198,
23209,
4061,
17430,
7707,
16762,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
513,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
46047,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
4061,
17430,
7707,
16762,
46047,
8726,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
1742,
4454,
2493,
3722,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
29720,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
10267,
82,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
29720,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
4503,
446,
10267,
82,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
4503,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
11828,
10786,
9655,
604,
13,
1495,
38,
440,
4720,
28373,
3084,
11537,
198,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
4503,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
4503,
333,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
4566,
2866,
4235,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
4503,
40616,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
3535,
11224,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
45956,
729,
1600,
352,
828,
5855,
1186,
22723,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
3913,
967,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
13,
2617,
11828,
7203,
9517,
338,
5521,
10363,
4943,
198,
23209,
19,
62,
1495,
38,
62,
27799,
1340,
4246,
5760,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
27799,
1340,
4246,
5760,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
1340,
4246,
5760,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
27799,
1340,
4246,
5760,
13,
2617,
11828,
7203,
23656,
2657,
338,
3127,
1735,
14340,
3722,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
17320,
5760,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
17320,
5760,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
17320,
5760,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
17320,
5760,
13,
2617,
11828,
7203,
23656,
2657,
338,
1895,
1735,
14340,
3722,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
2866,
4235,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
45956,
729,
1600,
352,
828,
5855,
1186,
22723,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
12468,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
13,
2617,
11828,
7203,
9517,
338,
44884,
5521,
10363,
4943,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
25392,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25392,
1600,
352,
828,
5855,
3118,
5354,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
14402,
12,
25392,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
25392,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
25392,
13,
2617,
11828,
10786,
9288,
1255,
5793,
393,
12116,
11537,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
14402,
12,
12331,
12,
31694,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
13,
2617,
11828,
10786,
9288,
1255,
4049,
3753,
11537,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
14402,
12,
29453,
12,
7575,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
13,
2617,
11828,
10786,
9288,
2555,
640,
4326,
318,
1218,
11537,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
23004,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
14478,
1600,
352,
828,
5855,
12331,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
14402,
12,
23004,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
23004,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
23004,
13,
2617,
11828,
10786,
9288,
1255,
11537,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
10434,
62,
14402,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
10434,
1600,
352,
828,
5855,
19485,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
10434,
12,
14402,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
10434,
62,
14402,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
10434,
62,
14402,
13,
2617,
11828,
10786,
9688,
1332,
290,
2245,
1332,
11537,
198,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3855,
1600,
352,
22305,
737,
2617,
33986,
7203,
23209,
19,
12,
1495,
38,
12,
46,
4720,
12,
3855,
12,
14402,
12,
49,
301,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
13,
2617,
11828,
10786,
1136,
1332,
1255,
11537,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
27799,
4503,
333,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
4566,
2866,
4235,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
27799,
4503,
40616,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1248,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
27799,
3535,
11224,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
678,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
45956,
729,
1600,
352,
828,
5855,
1186,
22723,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
27799,
3913,
967,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
13,
2617,
11828,
7203,
9517,
338,
5521,
10363,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
1160,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
18943,
5362,
1600,
352,
828,
5855,
2257,
44,
1433,
1600,
362,
828,
5855,
2257,
44,
19,
1600,
513,
828,
5855,
2257,
44,
16,
1600,
604,
828,
5855,
4851,
87,
19,
1600,
642,
828,
5855,
4851,
87,
17,
1600,
718,
828,
5855,
4851,
87,
16,
1600,
767,
828,
5855,
8264,
1600,
807,
828,
5855,
15112,
1600,
860,
828,
5855,
1546,
9858,
1600,
838,
828,
5855,
1662,
12,
11284,
1600,
1367,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
2866,
4235,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
2310,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
604,
11,
352,
11,
352,
11,
352,
11,
2534,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
45956,
729,
1600,
352,
828,
5855,
1186,
22723,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
19,
12,
1495,
38,
12,
46,
4720,
39,
54,
12468,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
13,
2617,
11828,
7203,
9517,
338,
44884,
5521,
10363,
4943,
198,
23209,
940,
38,
62,
46,
4720,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
10267,
82,
4943,
198,
23209,
940,
38,
62,
27799,
4503,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4503,
446,
10267,
82,
4943,
198,
23209,
940,
38,
62,
27799,
4503,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4503,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
4720,
28373,
3084,
11537,
198,
23209,
940,
38,
62,
27799,
4503,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4503,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4503,
333,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
838,
38,
24192,
7,
940,
13,
18,
11623,
38,
8,
290,
838,
38,
370,
1565,
7,
24,
13,
3865,
34256,
38,
8,
4943,
198,
23209,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4503,
40616,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
4566,
2866,
4235,
838,
38,
24192,
7,
940,
13,
18,
11623,
38,
8,
290,
838,
38,
370,
1565,
7,
24,
13,
3865,
34256,
38,
8,
4943,
198,
23209,
940,
38,
62,
27799,
3535,
11224,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
3535,
11224,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
27799,
2640,
5837,
16,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2640,
5837,
16,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2640,
5837,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2640,
5837,
16,
13,
2617,
11828,
7203,
23656,
2657,
338,
311,
5837,
16,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
27799,
2640,
5837,
17,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2640,
5837,
17,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2640,
5837,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2640,
5837,
17,
13,
2617,
11828,
7203,
23656,
2657,
338,
311,
5837,
17,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
39,
54,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
2866,
4235,
4943,
198,
23209,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
39,
54,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
25392,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25392,
1600,
352,
828,
5855,
3118,
5354,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
14402,
12,
25392,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
25392,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
25392,
13,
2617,
11828,
10786,
9288,
1255,
5793,
393,
12116,
11537,
198,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
14402,
12,
12331,
12,
31694,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
13,
2617,
11828,
10786,
9288,
1255,
4049,
3753,
11537,
198,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
14402,
12,
29453,
12,
7575,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
13,
2617,
11828,
10786,
9288,
2555,
640,
4326,
318,
1218,
11537,
198,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
23004,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
14478,
1600,
352,
828,
5855,
12331,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
14402,
12,
23004,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
23004,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
23004,
13,
2617,
11828,
10786,
9288,
1255,
11537,
198,
23209,
940,
38,
62,
46,
4720,
62,
10434,
62,
14402,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
10434,
1600,
352,
828,
5855,
19485,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
10434,
12,
14402,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
10434,
62,
14402,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
10434,
62,
14402,
13,
2617,
11828,
10786,
9688,
1332,
290,
2245,
1332,
11537,
198,
23209,
940,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3855,
1600,
352,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
3855,
12,
14402,
12,
49,
301,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
13,
2617,
11828,
10786,
1136,
1332,
1255,
11537,
198,
23209,
49,
16762,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
27799,
4503,
333,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
838,
38,
24192,
7,
940,
13,
18,
11623,
38,
8,
290,
838,
38,
370,
1565,
7,
24,
13,
3865,
34256,
38,
8,
4943,
198,
23209,
49,
16762,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
27799,
4503,
40616,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
4566,
2866,
4235,
838,
38,
24192,
7,
940,
13,
18,
11623,
38,
8,
290,
838,
38,
370,
1565,
7,
24,
13,
3865,
34256,
38,
8,
4943,
198,
23209,
49,
16762,
940,
38,
62,
27799,
3535,
11224,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
27799,
3535,
11224,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
3535,
11224,
1891,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
25697,
1600,
352,
828,
5855,
54,
1565,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
46,
4720,
39,
54,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
44884,
2866,
4235,
838,
38,
24192,
7,
940,
13,
18,
11623,
38,
8,
290,
838,
38,
370,
1565,
7,
24,
13,
3865,
34256,
38,
8,
4943,
198,
23209,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1248,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
46,
4720,
39,
54,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
940,
38,
62,
27799,
2640,
5837,
16,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
678,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
27799,
2640,
5837,
16,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
2640,
5837,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
27799,
2640,
5837,
16,
13,
2617,
11828,
7203,
9517,
338,
311,
5837,
16,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
46,
4720,
62,
4134,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
1160,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
4134,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
4134,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
4134,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
2310,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
12,
429,
86,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
49,
16762,
940,
38,
62,
46,
4720,
62,
4134,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
2534,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
46,
4720,
12,
4134,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
4134,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
4134,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
49,
16762,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
642,
11,
352,
11,
352,
11,
352,
11,
2242,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
49,
16762,
940,
38,
12,
46,
4720,
12,
429,
86,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
940,
38,
62,
27799,
4720,
65,
752,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
4720,
65,
752,
82,
4943,
198,
23209,
940,
38,
62,
27799,
2943,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2943,
446,
10267,
82,
4943,
198,
23209,
940,
38,
62,
27799,
2943,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2943,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
446,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
6500,
28373,
3084,
11537,
198,
23209,
940,
38,
62,
27799,
2943,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2943,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
940,
38,
62,
27799,
2767,
87,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2767,
87,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2767,
87,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2767,
87,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
46,
6500,
37,
87,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
6500,
37,
87,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
37,
87,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
37,
87,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
18480,
2493,
338,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
27799,
2943,
333,
4561,
67,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
76,
940,
38,
12,
18254,
1600,
767,
828,
5855,
76,
940,
38,
12,
11122,
1015,
1600,
807,
828,
5855,
1662,
12,
11284,
1600,
860,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
2943,
333,
4561,
67,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
333,
4561,
67,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
2943,
333,
4561,
67,
13,
2617,
11828,
7203,
14565,
2657,
338,
1459,
599,
67,
4943,
198,
23209,
940,
38,
62,
27799,
3698,
11224,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
3698,
11224,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
3698,
11224,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
3698,
11224,
19076,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
27799,
1546,
30094,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
767,
11,
807,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
23736,
1600,
352,
828,
5855,
76,
940,
38,
12,
18254,
1600,
767,
828,
5855,
76,
940,
38,
12,
11122,
1015,
1600,
807,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
27799,
1546,
30094,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
1546,
30094,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
27799,
1546,
30094,
19076,
13,
2617,
11828,
7203,
9517,
338,
2866,
4235,
4943,
198,
23209,
940,
38,
62,
46,
6500,
39,
54,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
6500,
39,
54,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
39,
54,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
39,
54,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
6500,
62,
429,
86,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
6500,
12,
429,
86,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
62,
429,
86,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
62,
429,
86,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
940,
38,
62,
46,
6500,
62,
9122,
23004,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
718,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
6500,
12,
9122,
23004,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
62,
9122,
23004,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
6500,
62,
9122,
23004,
13,
2617,
11828,
10786,
9288,
1255,
11537,
198,
23209,
22480,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
767,
4008,
198,
23209,
22480,
16962,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
767,
11,
352,
4008,
198,
23209,
22480,
16962,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
767,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
16962,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
16962,
10962,
13,
2617,
11828,
10786,
9655,
4336,
2657,
3084,
11537,
198,
23209,
22480,
16962,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
767,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
16962,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
16962,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
22480,
19580,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
767,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
26447,
1600,
352,
828,
5855,
4826,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
19580,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
22480,
19580,
13,
2617,
11828,
7203,
23656,
2657,
338,
4336,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
29720,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
10267,
82,
4943,
198,
23209,
1821,
38,
62,
27799,
4503,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
29720,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
4503,
446,
10267,
82,
4943,
198,
23209,
1821,
38,
62,
27799,
4503,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
4503,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
4503,
446,
10962,
13,
2617,
11828,
10786,
9655,
2319,
38,
440,
4720,
28373,
3084,
11537,
198,
23209,
1821,
38,
62,
27799,
4503,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
4503,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
4503,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
16,
15016,
16,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
16,
15016,
17,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
16,
15016,
18,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
16,
15016,
19,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
17,
15016,
16,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
17,
15016,
17,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
17,
15016,
18,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
62,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
12,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
62,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
62,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
1195,
28202,
79,
17,
15016,
19,
2792,
3722,
4943,
198,
23209,
1821,
38,
62,
27799,
3535,
1531,
16,
39516,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1370,
12,
1589,
12,
21633,
1600,
352,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
40223,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
3535,
1531,
16,
39516,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
16,
39516,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
16,
39516,
19076,
13,
2617,
11828,
7203,
9517,
338,
15016,
16,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
27799,
3535,
1531,
17,
39516,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1370,
12,
1589,
12,
21633,
1600,
352,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
40223,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
3535,
1531,
17,
39516,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
17,
39516,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
17,
39516,
19076,
13,
2617,
11828,
7203,
9517,
338,
15016,
17,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
27799,
3535,
1531,
18,
39516,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1370,
12,
1589,
12,
21633,
1600,
352,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
40223,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
3535,
1531,
18,
39516,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
18,
39516,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
18,
39516,
19076,
13,
2617,
11828,
7203,
9517,
338,
15016,
18,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
27799,
3535,
1531,
19,
39516,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1370,
12,
1589,
12,
21633,
1600,
352,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
40223,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
3535,
1531,
19,
39516,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
19,
39516,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
1531,
19,
39516,
19076,
13,
2617,
11828,
7203,
9517,
338,
15016,
19,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
27799,
3535,
11224,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
439,
1600,
352,
828,
5855,
1370,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
513,
828,
5855,
40223,
1600,
604,
828,
5855,
1662,
12,
11284,
1600,
642,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
3535,
11224,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
11224,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
3535,
11224,
19076,
13,
2617,
11828,
7203,
9517,
338,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
27799,
2640,
39492,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
11,
1478,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
23209,
1821,
38,
22785,
12,
16,
1600,
352,
828,
5855,
23209,
1821,
38,
22785,
12,
17,
1600,
362,
828,
5855,
23209,
1821,
38,
22785,
12,
18,
1600,
513,
828,
5855,
23209,
1821,
38,
22785,
12,
19,
1600,
604,
828,
5855,
23209,
1821,
38,
22785,
12,
20,
1600,
642,
828,
5855,
23209,
1821,
38,
22785,
12,
21,
1600,
718,
828,
5855,
23209,
1821,
38,
22785,
12,
22,
1600,
767,
828,
5855,
23209,
1821,
38,
22785,
12,
23,
1600,
807,
828,
5855,
23209,
1821,
38,
22785,
12,
24,
1600,
860,
828,
5855,
23209,
1821,
38,
22785,
12,
940,
1600,
838,
828,
5855,
23209,
1821,
38,
22785,
12,
1157,
1600,
1367,
828,
5855,
23209,
1821,
38,
22785,
12,
1065,
1600,
1105,
828,
5855,
23209,
1821,
38,
22785,
12,
1485,
1600,
1511,
828,
5855,
1662,
12,
11284,
1600,
1478,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
27799,
2640,
39492,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
2640,
39492,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
27799,
2640,
39492,
19076,
13,
2617,
11828,
10786,
12287,
16,
25,
352,
55,
1821,
38,
25,
838,
38,
24192,
7,
15197,
1065,
13,
20,
47842,
8,
2866,
17,
25,
352,
55,
1821,
38,
25,
21676,
52,
18,
7,
940,
41874,
13,
1899,
26582,
47842,
8,
2866,
18,
25,
352,
55,
1821,
38,
25,
21676,
52,
18,
68,
17,
7,
1157,
18781,
13,
23,
2548,
2425,
47842,
8,
2866,
19,
25,
604,
55,
940,
38,
25,
838,
38,
24192,
7,
15197,
1065,
13,
20,
47842,
8,
2866,
20,
25,
604,
55,
940,
38,
25,
42920,
40,
7,
4089,
1270,
13,
19,
41022,
8,
2866,
21,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
2079,
4310,
13,
2078,
47842,
8,
2866,
22,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
15801,
2414,
13,
23815,
3553,
1415,
1983,
47842,
8,
2866,
23,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
940,
31495,
13,
18182,
33400,
30505,
47842,
8,
2866,
24,
25,
604,
55,
940,
38,
25,
838,
38,
31903,
7,
11442,
2920,
13,
15982,
1415,
2078,
3553,
47842,
8,
2866,
940,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
13348,
1507,
13,
15426,
47842,
8,
2866,
1157,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
14686,
2154,
13,
49352,
2078,
3553,
1415,
47842,
8,
2866,
1065,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
16616,
1558,
13,
2414,
16102,
1120,
5066,
47842,
8,
2866,
1485,
25,
604,
55,
940,
38,
25,
838,
38,
818,
15643,
35967,
7,
49388,
13,
405,
47842,
8,
11537,
198,
23209,
1821,
38,
62,
46,
4720,
39,
54,
39516,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
1370,
12,
1589,
12,
21633,
1600,
352,
828,
5855,
4774,
12,
1589,
12,
21633,
1600,
362,
828,
5855,
40223,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
39,
54,
39516,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
39,
54,
39516,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
39,
54,
39516,
19076,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
1821,
38,
62,
46,
4720,
39,
54,
22785,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
807,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
11,
807,
11,
860,
11,
838,
11,
1367,
11,
1105,
11,
1511,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
23209,
1821,
38,
22785,
12,
16,
1600,
352,
828,
5855,
23209,
1821,
38,
22785,
12,
17,
1600,
362,
828,
5855,
23209,
1821,
38,
22785,
12,
18,
1600,
513,
828,
5855,
23209,
1821,
38,
22785,
12,
19,
1600,
604,
828,
5855,
23209,
1821,
38,
22785,
12,
20,
1600,
642,
828,
5855,
23209,
1821,
38,
22785,
12,
21,
1600,
718,
828,
5855,
23209,
1821,
38,
22785,
12,
22,
1600,
767,
828,
5855,
23209,
1821,
38,
22785,
12,
23,
1600,
807,
828,
5855,
23209,
1821,
38,
22785,
12,
24,
1600,
860,
828,
5855,
23209,
1821,
38,
22785,
12,
940,
1600,
838,
828,
5855,
23209,
1821,
38,
22785,
12,
1157,
1600,
1367,
828,
5855,
23209,
1821,
38,
22785,
12,
1065,
1600,
1105,
828,
5855,
1662,
12,
11284,
1600,
1511,
22305,
737,
2617,
33986,
7203,
23209,
1821,
38,
12,
46,
4720,
39,
54,
22785,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
39,
54,
22785,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
1821,
38,
62,
46,
4720,
39,
54,
22785,
19076,
13,
2617,
11828,
10786,
12287,
16,
25,
352,
55,
1821,
38,
25,
838,
38,
24192,
7,
15197,
1065,
13,
20,
47842,
8,
2866,
17,
25,
352,
55,
1821,
38,
25,
21676,
52,
18,
7,
940,
41874,
13,
1899,
26582,
47842,
8,
2866,
18,
25,
352,
55,
1821,
38,
25,
21676,
52,
18,
68,
17,
7,
1157,
18781,
13,
23,
2548,
2425,
47842,
8,
2866,
19,
25,
604,
55,
940,
38,
25,
838,
38,
24192,
7,
15197,
1065,
13,
20,
47842,
8,
2866,
20,
25,
604,
55,
940,
38,
25,
42920,
40,
7,
4089,
1270,
13,
19,
41022,
8,
2866,
21,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
2079,
4310,
13,
2078,
47842,
8,
2866,
22,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
15801,
2414,
13,
23815,
3553,
1415,
1983,
47842,
8,
2866,
23,
25,
604,
55,
940,
38,
25,
24775,
12,
17477,
14,
2257,
44,
12,
2414,
7,
940,
31495,
13,
18182,
33400,
30505,
47842,
8,
2866,
24,
25,
604,
55,
940,
38,
25,
838,
38,
31903,
7,
11442,
2920,
13,
15982,
1415,
2078,
3553,
47842,
8,
2866,
940,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
13348,
1507,
13,
15426,
47842,
8,
2866,
1157,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
14686,
2154,
13,
49352,
2078,
3553,
1415,
47842,
8,
2866,
1065,
25,
604,
55,
940,
38,
25,
838,
21713,
571,
260,
29239,
7,
16616,
1558,
13,
2414,
16102,
1120,
5066,
47842,
8,
11537,
198,
23209,
48,
28202,
79,
32419,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
4008,
198,
23209,
45,
4246,
48,
50,
46428,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
4008,
198,
23209,
45,
4246,
48,
50,
46428,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
48,
50,
46428,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
48,
50,
46428,
10962,
13,
2617,
11828,
10786,
9655,
399,
4246,
1195,
50,
5837,
3084,
11537,
198,
23209,
45,
4246,
48,
50,
46428,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
48,
50,
46428,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
48,
50,
46428,
30150,
13,
2617,
11828,
10786,
9655,
399,
4246,
1195,
50,
5837,
5726,
6770,
11537,
198,
1136,
45,
4246,
48,
50,
46428,
40109,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
45,
4246,
48,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
45,
4246,
48,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
80,
28202,
79,
45,
4246,
34525,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
2998,
25,
22228,
657,
87,
15,
33,
25,
49593,
23097,
13199,
657,
87,
15,
34,
25,
4904,
46,
657,
87,
2481,
25,
27157,
23097,
13199,
1854,
25,
24222,
11537,
198,
80,
28202,
79,
45,
4246,
42492,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
46047,
13434,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
16,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
46047,
13434,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
17,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
46047,
13434,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
18,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
46047,
13434,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
46047,
13434,
19,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
49,
87,
13434,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
16,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
49,
87,
13434,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
17,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
49,
87,
13434,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
18,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
45,
4246,
49,
87,
13434,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
19,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
17320,
48,
50,
46428,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
4008,
198,
23209,
17320,
48,
50,
46428,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
48,
50,
46428,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
48,
50,
46428,
10962,
13,
2617,
11828,
10786,
9655,
6366,
1195,
50,
5837,
3084,
11537,
198,
23209,
17320,
48,
50,
46428,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
48,
50,
46428,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
48,
50,
46428,
30150,
13,
2617,
11828,
10786,
9655,
6366,
1195,
50,
5837,
5726,
6770,
11537,
198,
1136,
17320,
48,
50,
46428,
40109,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
17320,
48,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
651,
17320,
48,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
80,
28202,
79,
17320,
34525,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
2998,
25,
22228,
657,
87,
15,
33,
25,
49593,
23097,
13199,
657,
87,
15,
34,
25,
4904,
46,
657,
87,
2481,
25,
27157,
23097,
13199,
1854,
25,
24222,
11537,
198,
80,
28202,
79,
17320,
42492,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
46047,
13434,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
16,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
46047,
13434,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
17,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
46047,
13434,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
18,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
46047,
13434,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
46047,
13434,
19,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
49,
87,
13434,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
16,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
49,
87,
13434,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
17,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
49,
87,
13434,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
18,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
18,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
80,
28202,
79,
17320,
49,
87,
13434,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
860,
11,
362,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
19,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
10662,
28202,
79,
17320,
49,
87,
13434,
19,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
17,
62,
20,
38,
9655,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
29720,
2617,
33986,
7203,
23209,
17,
12,
20,
38,
9655,
10267,
82,
4943,
198,
23209,
17,
62,
20,
15548,
7902,
5837,
18,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
29720,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
7902,
5837,
18,
10267,
82,
4943,
198,
23209,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
17,
12,
20,
34,
76,
16,
70,
50,
46428,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
10962,
13,
2617,
11828,
10786,
9655,
352,
38,
311,
5837,
3084,
11537,
198,
23209,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
17,
12,
20,
34,
76,
16,
70,
50,
46428,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
27654,
5574,
49,
16762,
37,
70,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
30150,
13,
2617,
11828,
10786,
9655,
352,
38,
311,
5837,
5726,
6770,
11537,
198,
23209,
17,
62,
20,
70,
62,
1136,
50,
46428,
40109,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
1136,
50,
46428,
40109,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
1136,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
1136,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
38143,
3610,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
38143,
3610,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
38143,
3610,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
38143,
3610,
13,
2617,
11828,
10786,
50,
5837,
11846,
357,
505,
18022,
8,
611,
657,
788,
262,
24548,
82,
286,
264,
46428,
42492,
14,
28202,
79,
51,
2596,
13434,
14,
28202,
79,
6690,
85,
13434,
815,
307,
9514,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
34525,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
34525,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
486,
25,
6374,
657,
87,
2998,
25,
22228,
657,
87,
1828,
25,
46642,
2231,
1854,
25,
24222,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
8291,
10669,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
8291,
10669,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
8291,
10669,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
8291,
10669,
13,
2617,
11828,
10786,
50,
5837,
1007,
39729,
2438,
357,
505,
18022,
8,
1643,
15,
25,
14206,
19076,
1643,
17,
25,
15237,
19076,
1643,
18,
25,
15237,
19076,
1854,
25,
24222,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
7556,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
7556,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
7556,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
7556,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
14206,
19076,
11,
4991,
286,
10571,
13,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
14206,
19076,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
44,
76,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
44,
76,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
44,
76,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
44,
76,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
15237,
19076,
11,
4991,
286,
838,
76,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
15237,
19076,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
7222,
2848,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
7222,
2848,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
7222,
2848,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
7222,
2848,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
27157,
11,
4991,
286,
285,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
34525,
318,
46642,
2231,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
9414,
22785,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
9414,
22785,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
9414,
22785,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
9414,
22785,
13,
2617,
11828,
10786,
50,
5837,
26934,
45829,
2494,
11,
4991,
286,
1802,
44,
2545,
14,
82,
357,
505,
18022,
8,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
33484,
26623,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
33484,
26623,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
33484,
26623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
33484,
26623,
13,
2617,
11828,
10786,
50,
5837,
12855,
28400,
357,
505,
1573,
8,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
42492,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
42492,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
51,
2596,
13434,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
51,
2596,
13434,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
51,
2596,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
51,
2596,
13434,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
6690,
85,
13434,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
6690,
85,
13434,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
6690,
85,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
6690,
85,
13434,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
17,
62,
20,
70,
62,
28202,
79,
53,
5978,
496,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
70,
12,
28202,
79,
53,
5978,
496,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
53,
5978,
496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
70,
62,
28202,
79,
53,
5978,
496,
13,
2617,
11828,
10786,
50,
5837,
15004,
11,
4991,
286,
657,
13,
16,
76,
53,
357,
505,
1573,
8,
11537,
198,
23209,
17,
62,
20,
15548,
4093,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
29720,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
4093,
446,
10267,
82,
4943,
198,
23209,
17,
62,
20,
15548,
4093,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
4093,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
4093,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
4093,
446,
10962,
13,
2617,
11828,
10786,
9655,
362,
12,
20,
38,
9655,
28373,
3084,
11537,
198,
23209,
17,
62,
20,
15548,
4093,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
4093,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
4093,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
4093,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
17,
62,
20,
15548,
7902,
46428,
18,
3109,
396,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
7902,
46428,
18,
3109,
396,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
7902,
46428,
18,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
7902,
46428,
18,
3109,
396,
13,
2617,
11828,
7203,
23656,
352,
38,
2657,
338,
311,
5837,
18,
12955,
4943,
198,
23209,
17,
62,
20,
15548,
8697,
419,
16,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
8697,
419,
16,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
16,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
16,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
16,
338,
2792,
3722,
4943,
198,
23209,
17,
62,
20,
15548,
8697,
419,
17,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
8697,
419,
17,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
17,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
17,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
17,
338,
2792,
3722,
4943,
198,
23209,
17,
62,
20,
15548,
8697,
419,
18,
8726,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
838,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
17,
12,
20,
15548,
8697,
419,
18,
8726,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
18,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17,
62,
20,
15548,
8697,
419,
18,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
18,
338,
2792,
3722,
4943,
198,
23209,
36,
16,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
4008,
198,
23209,
36,
16,
16962,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
4008,
198,
23209,
36,
16,
16962,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
16962,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
16962,
10962,
13,
2617,
11828,
10786,
9655,
412,
16,
1343,
9956,
28373,
3084,
11537,
198,
23209,
36,
16,
16962,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
16962,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
16962,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
36,
16,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
46047,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
46047,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
36,
16,
46047,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
17,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
46047,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
46047,
26628,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
670,
4235,
4943,
198,
23209,
36,
16,
50,
5837,
16,
11280,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
50,
5837,
16,
11280,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
50,
5837,
16,
11280,
13,
2617,
11828,
7203,
23656,
2657,
338,
311,
5837,
16,
2493,
338,
2792,
3722,
4943,
198,
23209,
36,
16,
13924,
16,
45376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
45376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
45376,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
16,
5401,
1181,
4943,
198,
23209,
36,
16,
13924,
16,
32,
1797,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
32,
1797,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
32,
1797,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
16,
317,
1797,
1181,
4943,
198,
23209,
36,
16,
13924,
16,
33538,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
33538,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
33538,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
16,
26196,
1181,
4943,
198,
23209,
36,
16,
13924,
17,
45376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
45376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
45376,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
17,
5401,
1181,
4943,
198,
23209,
36,
16,
13924,
17,
32,
1797,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
32,
1797,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
32,
1797,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
17,
317,
1797,
1181,
4943,
198,
23209,
36,
16,
13924,
17,
33538,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
33538,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
33538,
13,
2617,
11828,
7203,
9517,
338,
412,
16,
4347,
17,
26196,
1181,
4943,
198,
23209,
36,
16,
13924,
16,
39516,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22615,
1600,
352,
828,
5855,
32538,
1600,
362,
828,
5855,
47730,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
39516,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
16,
39516,
13,
2617,
11828,
7203,
9517,
338,
4347,
16,
26304,
1891,
1181,
4943,
198,
23209,
36,
16,
13924,
17,
39516,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22615,
1600,
352,
828,
5855,
32538,
1600,
362,
828,
5855,
47730,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
39516,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
13924,
17,
39516,
13,
2617,
11828,
7203,
9517,
338,
4347,
17,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
46047,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
46047,
8726,
13,
2617,
11828,
7203,
36510,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
49,
16762,
36,
16,
46047,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
17,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
46047,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
46047,
26628,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
1459,
670,
4235,
4943,
198,
23209,
49,
16762,
36,
16,
50,
5837,
16,
11280,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
50,
5837,
16,
11280,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
50,
5837,
16,
11280,
13,
2617,
11828,
7203,
36510,
2657,
338,
311,
5837,
16,
2493,
338,
2792,
3722,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
16,
45376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
45376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
45376,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
16,
5401,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
16,
32,
1797,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
32,
1797,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
32,
1797,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
16,
317,
1797,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
16,
33538,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
33538,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
33538,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
16,
26196,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
17,
45376,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1248,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
45376,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
45376,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
17,
5401,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
17,
32,
1797,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
678,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
32,
1797,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
32,
1797,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
17,
317,
1797,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
17,
33538,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
1160,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
282,
1670,
1600,
352,
828,
5855,
68,
16,
11265,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
33538,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
33538,
13,
2617,
11828,
7203,
36510,
2657,
338,
412,
16,
4347,
17,
26196,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
16,
39516,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
2310,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22615,
1600,
352,
828,
5855,
32538,
1600,
362,
828,
5855,
47730,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
39516,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
16,
39516,
13,
2617,
11828,
7203,
36510,
2657,
338,
4347,
16,
26304,
1891,
1181,
4943,
198,
23209,
49,
16762,
36,
16,
13924,
17,
39516,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1367,
11,
352,
11,
352,
11,
352,
11,
2534,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22615,
1600,
352,
828,
5855,
32538,
1600,
362,
828,
5855,
47730,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
39516,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
16762,
36,
16,
13924,
17,
39516,
13,
2617,
11828,
7203,
36510,
2657,
338,
4347,
17,
26304,
1891,
1181,
4943,
198,
23209,
16,
8264,
17,
46,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
4008,
198,
23209,
16,
8264,
17,
4503,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
4008,
198,
23209,
16,
8264,
17,
4503,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
4503,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
4503,
446,
10962,
13,
2617,
11828,
10786,
9655,
412,
17,
46,
29933,
11559,
28373,
3084,
11537,
198,
23209,
16,
8264,
17,
4503,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
4503,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
4503,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
16,
8264,
17,
3185,
419,
16,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
16,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
16,
20802,
3646,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
16,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
3185,
419,
17,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
17,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
17,
20802,
3646,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
17,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
2394,
87,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
2394,
87,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
2394,
87,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
3185,
419,
34487,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
34487,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
34487,
13,
2617,
11828,
7203,
23656,
2657,
338,
4347,
4389,
1181,
4943,
198,
23209,
16,
8264,
17,
3185,
419,
16,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
16,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
16,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
36,
17,
46,
4347,
16,
311,
5837,
12955,
11537,
198,
23209,
16,
8264,
17,
3185,
419,
17,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
17,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
17,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
36,
17,
46,
4347,
17,
311,
5837,
12955,
11537,
198,
23209,
16,
8264,
17,
3185,
419,
39,
25527,
380,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
39,
25527,
380,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
3185,
419,
39,
25527,
380,
13,
2617,
11828,
7203,
23656,
2657,
338,
4347,
6912,
904,
4389,
1181,
4943,
198,
23209,
16,
8264,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
16,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
17,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
1581,
16762,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
46047,
8726,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
46047,
8726,
13,
2617,
11828,
7203,
36510,
2657,
338,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
16,
8264,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
36,
17,
46,
4347,
16,
311,
5837,
12955,
11537,
198,
23209,
16,
8264,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
36,
17,
46,
4347,
17,
311,
5837,
12955,
11537,
198,
23209,
16,
8264,
17,
1581,
16762,
13924,
39,
25527,
380,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1105,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
39,
25527,
380,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
8264,
17,
1581,
16762,
13924,
39,
25527,
380,
13,
2617,
11828,
7203,
36510,
2657,
338,
4347,
6912,
904,
4389,
1181,
4943,
198,
23209,
16,
11230,
17,
46,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
4008,
198,
23209,
16,
11230,
17,
4503,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
4008,
198,
23209,
16,
11230,
17,
4503,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
4503,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
4503,
446,
10962,
13,
2617,
11828,
10786,
9655,
440,
17,
46,
29933,
11559,
28373,
3084,
11537,
198,
23209,
16,
11230,
17,
4503,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
4503,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
4503,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
16,
11230,
17,
3185,
419,
16,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
16,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
16,
20802,
3646,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
16,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
3185,
419,
17,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
17,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
17,
20802,
3646,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
17,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
3185,
419,
18,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
20802,
3646,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
18,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
3185,
419,
34487,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
34487,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
34487,
13,
2617,
11828,
7203,
23656,
2657,
338,
4347,
4389,
1181,
4943,
198,
23209,
16,
11230,
17,
3185,
419,
16,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
16,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
16,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
46,
17,
46,
4347,
16,
311,
5837,
12955,
11537,
198,
23209,
16,
11230,
17,
3185,
419,
17,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
17,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
17,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
46,
17,
46,
4347,
17,
311,
5837,
12955,
11537,
198,
23209,
16,
11230,
17,
3185,
419,
18,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
46,
17,
46,
4347,
18,
311,
5837,
12955,
11537,
198,
23209,
16,
11230,
17,
3185,
419,
39,
25527,
380,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
39,
25527,
380,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
39,
25527,
380,
13,
2617,
11828,
7203,
14565,
2657,
338,
4347,
6912,
904,
4389,
1181,
4943,
198,
23209,
16,
11230,
17,
3185,
419,
18,
39,
54,
4561,
67,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
44,
3064,
1600,
352,
828,
5855,
44,
12825,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
39,
54,
4561,
67,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
3185,
419,
18,
39,
54,
4561,
67,
13,
2617,
11828,
7203,
14565,
2657,
338,
4347,
18,
6912,
904,
8729,
1181,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
16,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
17,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
20802,
3646,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
20802,
3646,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
20802,
3646,
676,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
18,
311,
5837,
338,
2792,
3722,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
46,
17,
46,
4347,
16,
311,
5837,
12955,
11537,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
13,
2617,
11828,
10786,
46,
17,
46,
4347,
17,
311,
5837,
12955,
11537,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
50,
5837,
3109,
396,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
28463,
276,
1600,
352,
828,
5855,
2787,
2668,
1600,
362,
828,
5855,
2616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
50,
5837,
3109,
396,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
50,
5837,
3109,
396,
13,
2617,
11828,
7203,
36510,
2657,
338,
311,
5837,
18,
12955,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
39,
25527,
380,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
13924,
16,
1600,
352,
828,
5855,
13924,
17,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
39,
25527,
380,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
39,
25527,
380,
13,
2617,
11828,
7203,
8413,
313,
2657,
338,
4347,
6912,
904,
4389,
1181,
4943,
198,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
39,
54,
4561,
67,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
352,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
44,
3064,
1600,
352,
828,
5855,
44,
12825,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
39,
54,
4561,
67,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
39,
54,
4561,
67,
13,
2617,
11828,
7203,
8413,
313,
2657,
338,
4347,
18,
6912,
904,
8729,
1181,
4943,
198,
23209,
16,
11230,
17,
2640,
5837,
18,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
4008,
198,
23209,
16,
11230,
17,
2640,
46428,
18,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
2640,
46428,
18,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
2640,
46428,
18,
10962,
13,
2617,
11828,
10786,
9655,
352,
38,
311,
5837,
3084,
11537,
198,
23209,
16,
11230,
17,
2640,
46428,
18,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
27654,
5574,
49,
16762,
37,
70,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
2640,
46428,
18,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
11230,
17,
2640,
46428,
18,
30150,
13,
2617,
11828,
10786,
9655,
352,
38,
440,
17,
46,
311,
5837,
18,
5726,
6770,
11537,
198,
23209,
16,
2188,
17,
78,
62,
1136,
50,
46428,
40109,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2616,
1600,
657,
828,
5855,
12001,
1600,
352,
828,
5855,
47960,
1600,
362,
22305,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
1136,
50,
46428,
40109,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
1136,
50,
46428,
40109,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
1136,
50,
46428,
40109,
13,
2617,
11828,
10786,
1212,
3141,
481,
651,
262,
6153,
264,
46428,
1321,
13,
4222,
3758,
428,
3141,
3161,
284,
1972,
262,
1708,
42287,
11,
4306,
262,
2106,
264,
46428,
1321,
481,
307,
1908,
736,
2637,
8,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
38143,
3610,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
38143,
3610,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
38143,
3610,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
38143,
3610,
13,
2617,
11828,
10786,
50,
5837,
11846,
357,
505,
18022,
8,
611,
657,
788,
262,
24548,
82,
286,
264,
46428,
42492,
14,
28202,
79,
51,
2596,
13434,
14,
28202,
79,
6690,
85,
13434,
815,
307,
9514,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
34525,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
34525,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
34525,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
34525,
13,
2617,
11828,
10786,
50,
5837,
21716,
2099,
357,
505,
18022,
8,
657,
87,
486,
25,
6374,
657,
87,
2998,
25,
22228,
657,
87,
1828,
25,
46642,
2231,
1854,
25,
24222,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
8291,
10669,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
8291,
10669,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
8291,
10669,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
8291,
10669,
13,
2617,
11828,
10786,
50,
5837,
1007,
39729,
2438,
357,
505,
18022,
8,
1643,
15,
25,
14206,
19076,
1643,
17,
25,
15237,
19076,
1643,
18,
25,
15237,
19076,
1854,
25,
24222,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
7556,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
7556,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7556,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7556,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
14206,
19076,
11,
4991,
286,
10571,
13,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
14206,
19076,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
44,
76,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
44,
76,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
44,
76,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
44,
76,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
15237,
19076,
11,
4991,
286,
838,
76,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
8291,
10669,
318,
15237,
19076,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
7222,
2848,
24539,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
7222,
2848,
24539,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7222,
2848,
24539,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7222,
2848,
24539,
13,
2617,
11828,
10786,
50,
5837,
2792,
4129,
329,
27157,
11,
4991,
286,
285,
357,
505,
18022,
8,
9723,
691,
618,
264,
46428,
34525,
318,
46642,
2231,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
9414,
22785,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
9414,
22785,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
9414,
22785,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
9414,
22785,
13,
2617,
11828,
10786,
50,
5837,
26934,
45829,
2494,
11,
4991,
286,
1802,
44,
2545,
14,
82,
357,
505,
18022,
8,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
33484,
26623,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
33484,
26623,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
33484,
26623,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
33484,
26623,
13,
2617,
11828,
10786,
50,
5837,
12855,
28400,
357,
505,
1573,
8,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
42492,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
42492,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
42492,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
42492,
13,
2617,
11828,
10786,
50,
5837,
5951,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
51,
2596,
13434,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
51,
2596,
13434,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
51,
2596,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
51,
2596,
13434,
13,
2617,
11828,
10786,
50,
5837,
27765,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
6690,
85,
13434,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
6690,
85,
13434,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
6690,
85,
13434,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
6690,
85,
13434,
13,
2617,
11828,
10786,
50,
5837,
374,
87,
1176,
357,
505,
2099,
11,
4488,
8,
11537,
198,
23209,
16,
2188,
17,
78,
62,
28202,
79,
53,
5978,
496,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1511,
11,
362,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
3419,
737,
2617,
33986,
7203,
23209,
16,
2188,
17,
78,
12,
28202,
79,
53,
5978,
496,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
53,
5978,
496,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
16,
2188,
17,
78,
62,
28202,
79,
53,
5978,
496,
13,
2617,
11828,
10786,
50,
5837,
15004,
11,
4991,
286,
657,
13,
16,
76,
53,
357,
505,
1573,
8,
11537,
198,
23209,
940,
11230,
4720,
16,
49,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
4008,
198,
23209,
940,
11230,
4720,
16,
7397,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
4008,
198,
23209,
940,
11230,
4720,
16,
7397,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
16,
7397,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
16,
7397,
446,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
4720,
352,
49,
28373,
3084,
11537,
198,
23209,
940,
11230,
4720,
16,
7397,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
16,
7397,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
16,
7397,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
1799,
4943,
198,
23209,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
3722,
4943,
198,
23209,
17320,
55,
5837,
16,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
4943,
198,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
1799,
4943,
198,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
3722,
4943,
198,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
4943,
198,
23209,
17320,
55,
5837,
16,
51,
403,
540,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
17320,
55,
5837,
16,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
45,
4246,
55,
5837,
17,
51,
403,
540,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1478,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
45,
4246,
55,
5837,
17,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
940,
11230,
4720,
18,
49,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
4008,
198,
23209,
940,
11230,
4720,
18,
7397,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
4008,
198,
23209,
940,
11230,
4720,
18,
7397,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
18,
7397,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
18,
7397,
446,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
4720,
513,
49,
6278,
540,
28400,
28373,
3084,
11537,
198,
23209,
940,
11230,
4720,
18,
7397,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
18,
7397,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
4720,
18,
7397,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
4134,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
1799,
4943,
198,
4134,
55,
5837,
16,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
3722,
4943,
198,
4134,
55,
5837,
16,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
4943,
198,
429,
86,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
1799,
4943,
198,
429,
86,
55,
5837,
17,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
3722,
4943,
198,
429,
86,
55,
5837,
17,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
4943,
198,
4134,
55,
5837,
16,
51,
403,
540,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
697,
55,
5837,
16,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
2099,
4943,
198,
429,
86,
55,
5837,
17,
51,
403,
540,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1315,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
299,
4246,
55,
5837,
17,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
34,
22332,
44,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
4008,
198,
23209,
34,
22332,
9655,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
4008,
198,
23209,
34,
22332,
9655,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
22332,
9655,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
22332,
9655,
446,
10962,
13,
2617,
11828,
10786,
9655,
327,
22332,
44,
3084,
11537,
198,
23209,
34,
22332,
9655,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
22332,
9655,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
34,
22332,
9655,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
66,
16993,
76,
33484,
26623,
12332,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
12332,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
12332,
13,
2617,
11828,
10786,
10247,
26623,
954,
11537,
198,
66,
16993,
76,
33484,
26623,
16,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
362,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
16,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
16,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
352,
11537,
198,
66,
16993,
76,
33484,
26623,
17,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
513,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
17,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
17,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
362,
11537,
198,
66,
16993,
76,
33484,
26623,
18,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
604,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
18,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
18,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
513,
11537,
198,
66,
16993,
76,
33484,
26623,
19,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
642,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
19,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
19,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
604,
11537,
198,
66,
16993,
76,
33484,
26623,
20,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
718,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
20,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
20,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
642,
11537,
198,
66,
16993,
76,
33484,
26623,
21,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
767,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
21,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
21,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
718,
11537,
198,
66,
16993,
76,
33484,
26623,
22,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
807,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
22,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
22,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
767,
11537,
198,
66,
16993,
76,
33484,
26623,
23,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1467,
11,
352,
11,
352,
11,
352,
11,
860,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
23,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
269,
16993,
76,
33484,
26623,
23,
13,
2617,
11828,
10786,
34,
22332,
44,
5172,
2082,
626,
7944,
807,
11537,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
10267,
82,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
29720,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
7397,
446,
10267,
82,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
7397,
446,
10962,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
4720,
362,
49,
28373,
3084,
11537,
198,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
7397,
446,
30150,
11074,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
940,
38,
62,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22785,
5332,
1600,
352,
828,
5855,
22785,
15197,
1462,
17657,
1600,
362,
828,
5855,
22785,
33438,
1462,
16616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
352,
25,
807,
13,
20,
38,
362,
25,
838,
13,
18,
38,
12,
1157,
13,
22,
38,
513,
25,
860,
13,
3865,
38,
12,
1157,
13,
18,
38,
366,
8,
198,
23209,
940,
38,
62,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22785,
5332,
1600,
352,
828,
5855,
22785,
15197,
1462,
17657,
1600,
362,
828,
5855,
22785,
33438,
1462,
16616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
352,
25,
807,
13,
20,
38,
362,
25,
838,
13,
18,
38,
12,
1157,
13,
22,
38,
513,
25,
860,
13,
3865,
38,
12,
1157,
13,
18,
38,
366,
8,
198,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
311,
5837,
16,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
311,
5837,
17,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
6998,
5837,
16,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
13,
2617,
11828,
7203,
23656,
2657,
338,
311,
5837,
16,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
6998,
5837,
17,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
13,
2617,
11828,
7203,
23656,
2657,
338,
311,
5837,
17,
2792,
3722,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
22785,
5332,
1600,
352,
828,
5855,
22785,
15197,
1462,
17657,
1600,
362,
828,
5855,
22785,
33438,
1462,
16616,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2866,
4235,
352,
25,
807,
13,
20,
38,
362,
25,
838,
13,
18,
38,
12,
1157,
13,
22,
38,
513,
25,
860,
13,
3865,
38,
12,
1157,
13,
18,
38,
366,
8,
198,
23209,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
13,
2617,
11828,
7203,
9517,
338,
44884,
26304,
1891,
1181,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
14815,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
838,
828,
16531,
10100,
3419,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
14815,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
14815,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
14815,
13,
2617,
11828,
10786,
9655,
2196,
11537,
198,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
1799,
4943,
198,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
3722,
4943,
198,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
4943,
198,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
1799,
4943,
198,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
3722,
4943,
198,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1596,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
12,
4134,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1248,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
55,
5837,
1600,
352,
828,
5855,
50,
5837,
1600,
362,
828,
5855,
2954,
2197,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
12,
429,
86,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
6030,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
51,
403,
540,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
678,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
12,
4134,
51,
403,
540,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
16,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
51,
403,
540,
6030,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1596,
11,
352,
11,
352,
11,
352,
11,
1160,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
33986,
7203,
23209,
940,
38,
12,
46,
4720,
17,
49,
12,
429,
86,
51,
403,
540,
6030,
11074,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
17,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
48,
8141,
23,
31380,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
4008,
198,
23209,
48,
8141,
23,
31380,
16962,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
352,
4008,
198,
23209,
48,
8141,
23,
31380,
16962,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
16962,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
16962,
10962,
13,
2617,
11828,
10786,
9655,
1195,
8141,
23,
31380,
28373,
3084,
11537,
198,
23209,
48,
8141,
23,
31380,
16962,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
16962,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
16962,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
48,
8141,
23,
31380,
53,
9620,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
26447,
1600,
352,
828,
5855,
14171,
16,
1600,
362,
828,
5855,
14171,
17,
1600,
513,
828,
5855,
1662,
12,
11284,
1600,
604,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
53,
9620,
19076,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
53,
9620,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
410,
9620,
4235,
4943,
198,
23209,
48,
8141,
23,
31380,
13924,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
4008,
198,
23209,
48,
8141,
23,
31380,
13924,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
10962,
13,
2617,
11828,
10786,
9655,
1195,
8141,
23,
31380,
28373,
3084,
11537,
198,
23209,
48,
8141,
23,
31380,
13924,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
48,
8141,
23,
31380,
13924,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
48,
8141,
23,
31380,
13924,
7390,
87,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
634,
16,
1600,
352,
828,
5855,
634,
17,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
7390,
87,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
13924,
7390,
87,
13,
2617,
11828,
10786,
13924,
6376,
11537,
198,
23209,
48,
8141,
23,
31380,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
17,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
26628,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
1459,
670,
4235,
4943,
198,
23209,
48,
8141,
23,
31380,
34,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
34,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
34,
40616,
12468,
19076,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
4566,
11970,
670,
4235,
4943,
198,
23209,
48,
8141,
23,
31380,
4933,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
604,
828,
35094,
469,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
2624,
11,
1802,
2388,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
4933,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
4933,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
510,
4269,
286,
13122,
4943,
198,
23209,
48,
8141,
23,
31380,
8048,
12124,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
642,
828,
35094,
469,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
2624,
11,
1802,
2388,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
8048,
12124,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
8048,
12124,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
866,
4269,
286,
13122,
4943,
198,
23209,
48,
8141,
23,
31380,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
46047,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
46047,
8726,
13,
2617,
11828,
7203,
23656,
2657,
338,
2493,
352,
12278,
2493,
338,
2792,
3722,
4943,
198,
23209,
48,
8141,
23,
31380,
49,
16762,
26628,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
26628,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
26628,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
352,
1459,
670,
4235,
4943,
198,
23209,
48,
8141,
23,
31380,
49,
16762,
34,
40616,
12468,
19076,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
642,
11,
718,
11,
767,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
76,
27722,
1600,
352,
828,
5855,
76,
3064,
12,
12853,
1600,
362,
828,
5855,
76,
3064,
12,
13959,
1600,
513,
828,
5855,
76,
940,
12,
12853,
1600,
604,
828,
5855,
76,
940,
12,
13959,
1600,
642,
828,
5855,
76,
16,
38,
12,
12853,
1600,
718,
828,
5855,
1662,
12,
11284,
1600,
767,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
34,
40616,
12468,
19076,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
34,
40616,
12468,
19076,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
16,
4566,
11970,
670,
4235,
4943,
198,
23209,
48,
8141,
23,
31380,
49,
16762,
46047,
8726,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1248,
11,
362,
11,
352,
11,
352,
11,
860,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
15,
11,
352,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
3919,
12,
9517,
1600,
657,
828,
5855,
929,
1600,
352,
828,
5855,
2902,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
46047,
8726,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
48,
8141,
23,
31380,
49,
16762,
46047,
8726,
13,
2617,
11828,
7203,
36510,
2657,
338,
2493,
1742,
4454,
2493,
3722,
4943,
198,
23209,
36,
16,
51,
16,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
4008,
198,
23209,
36,
16,
51,
16,
16962,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
4008,
198,
23209,
36,
16,
51,
16,
16962,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
16962,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
16962,
10962,
13,
2617,
11828,
10786,
9655,
412,
16,
51,
16,
28373,
3084,
11537,
198,
23209,
36,
16,
51,
16,
16962,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
16962,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
16962,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
23209,
36,
16,
51,
16,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
36,
16,
1600,
352,
828,
5855,
51,
16,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
6030,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2099,
4943,
198,
23209,
36,
16,
51,
16,
3697,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
4933,
1600,
352,
828,
5855,
8048,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2792,
4943,
198,
23209,
36,
16,
51,
16,
3697,
793,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
793,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
793,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
14990,
793,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14990,
793,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14990,
793,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
32,
1797,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
32,
1797,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
32,
1797,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
14990,
11224,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14990,
11224,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14990,
11224,
13,
2617,
11828,
10786,
46047,
26304,
1891,
1181,
11537,
198,
23209,
36,
16,
51,
16,
3697,
11224,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
767,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
11224,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
3697,
11224,
13,
2617,
11828,
10786,
37,
87,
26304,
1891,
1181,
11537,
198,
23209,
36,
16,
51,
16,
10669,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
36,
16,
12,
10227,
33,
18,
12,
5574,
12,
51,
16,
12,
33,
23,
57,
50,
1600,
352,
828,
5855,
43870,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
10669,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
10669,
6030,
13,
2617,
11828,
10786,
66,
7656,
2099,
11537,
198,
23209,
36,
16,
51,
16,
14815,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
860,
828,
16531,
10100,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14815,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
14815,
13,
2617,
11828,
10786,
9655,
2196,
11537,
198,
23209,
36,
16,
51,
16,
49,
16762,
3697,
676,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
838,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
4933,
1600,
352,
828,
5855,
8048,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
676,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
676,
13,
2617,
11828,
7203,
23656,
2657,
338,
1459,
2792,
4943,
198,
23209,
36,
16,
51,
16,
49,
16762,
3697,
793,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1367,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
793,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
793,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
49,
16762,
14990,
793,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1105,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
14990,
793,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
14990,
793,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
49,
16762,
32,
1797,
2348,
1670,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1511,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
2348,
1670,
1600,
352,
828,
5855,
26447,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
32,
1797,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
32,
1797,
2348,
1670,
13,
2617,
11828,
7,
7061,
8,
198,
23209,
36,
16,
51,
16,
49,
16762,
14990,
11224,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1478,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
14990,
11224,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
14990,
11224,
13,
2617,
11828,
10786,
46047,
26304,
1891,
1181,
11537,
198,
23209,
36,
16,
51,
16,
49,
16762,
3697,
11224,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1315,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
21633,
1600,
352,
828,
5855,
40223,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
11224,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
3697,
11224,
13,
2617,
11828,
10786,
37,
87,
26304,
1891,
1181,
11537,
198,
23209,
36,
16,
51,
16,
49,
16762,
10669,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
678,
11,
352,
11,
352,
11,
352,
11,
1467,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
36,
16,
12,
10227,
33,
18,
12,
5574,
12,
51,
16,
12,
33,
23,
57,
50,
1600,
352,
828,
5855,
43870,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
10669,
6030,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
36,
16,
51,
16,
49,
16762,
10669,
6030,
13,
2617,
11828,
10786,
66,
7656,
2099,
11537,
198,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
4008,
198,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
4008,
198,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10962,
13,
2617,
11828,
10786,
9655,
838,
38,
440,
6500,
6278,
540,
28400,
28373,
3084,
11537,
198,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
30150,
13,
2617,
11828,
10786,
9655,
28373,
5726,
6770,
11537,
198,
26152,
79,
39709,
24539,
51,
403,
1799,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
48181,
1600,
352,
828,
5855,
3118,
15999,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
51,
403,
1799,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
51,
403,
1799,
13,
2617,
11828,
7203,
55,
5837,
338,
28400,
6278,
1799,
4943,
198,
26152,
79,
39709,
24539,
51,
403,
540,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
5211,
278,
1600,
352,
828,
5855,
43768,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
51,
403,
540,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
51,
403,
540,
13,
2617,
11828,
7203,
55,
5837,
338,
28400,
6278,
540,
3722,
4943,
198,
26152,
79,
39709,
24539,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
39709,
24539,
13,
2617,
11828,
7203,
55,
5837,
338,
28400,
4943,
198,
26152,
79,
51,
403,
540,
6030,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
362,
11,
1160,
11,
352,
11,
352,
11,
352,
11,
604,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
17620,
1600,
352,
828,
5855,
10247,
26623,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
51,
403,
540,
6030,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2124,
46428,
51,
403,
540,
6030,
13,
2617,
11828,
7203,
55,
5837,
338,
28400,
6278,
540,
2099,
4943,
198,
23209,
47,
76,
10267,
82,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
4008,
198,
23209,
47,
76,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
10962,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
10962,
13,
2617,
11828,
10786,
9655,
15193,
3084,
11537,
198,
23209,
47,
76,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
3347,
1652,
7390,
87,
12340,
357,
15,
11,
366,
43145,
12,
8895,
33,
1600,
366,
23209,
16962,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
30150,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
30150,
13,
2617,
11828,
10786,
9655,
15193,
5726,
6770,
11537,
198,
23209,
49,
87,
40778,
17250,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
11,
352,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
87,
40778,
17250,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
87,
40778,
17250,
13,
2617,
11828,
10786,
464,
2472,
1271,
286,
2697,
425,
9881,
357,
8929,
8,
11537,
198,
23209,
49,
87,
40778,
27654,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
11,
362,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
87,
40778,
27654,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
49,
87,
40778,
27654,
13,
2617,
11828,
10786,
464,
2472,
1271,
286,
2697,
425,
9881,
357,
9319,
8,
11537,
198,
23209,
46047,
40778,
17250,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
11,
513,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
40778,
17250,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
40778,
17250,
13,
2617,
11828,
10786,
464,
2472,
1271,
286,
21937,
9881,
357,
8929,
8,
11537,
198,
23209,
46047,
40778,
27654,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
11,
604,
828,
15034,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
40778,
27654,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
46047,
40778,
27654,
13,
2617,
11828,
10786,
464,
2472,
1271,
286,
21937,
9881,
357,
9319,
8,
11537,
198,
23209,
47,
76,
19452,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
352,
11,
604,
11,
513,
11,
352,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
11,
513,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
312,
293,
1600,
352,
828,
5855,
42503,
1600,
362,
828,
5855,
1662,
12,
11284,
1600,
513,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
19452,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
36650,
47,
76,
19452,
13,
2617,
11828,
10786,
42503,
3753,
11537,
198,
7091,
1652,
62,
11242,
11197,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
352,
29720,
2617,
33986,
7203,
7091,
1652,
12,
11242,
11197,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
11242,
11197,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
11242,
11197,
13,
2617,
11828,
10786,
32,
11778,
18316,
318,
12326,
357,
16,
93,
1129,
8,
11537,
198,
7091,
1652,
62,
31042,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
362,
29720,
2617,
33986,
7203,
7091,
1652,
12,
31042,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
31042,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
31042,
13,
2617,
11828,
10786,
32,
18316,
318,
2626,
11537,
198,
7091,
1652,
62,
862,
84,
32,
62,
2202,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
513,
29720,
2617,
33986,
7203,
7091,
1652,
12,
862,
84,
32,
12,
2202,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
32,
62,
2202,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
32,
62,
2202,
13,
2617,
11828,
10786,
3705,
52,
317,
318,
12326,
11537,
198,
7091,
1652,
62,
862,
84,
32,
62,
9362,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
604,
29720,
2617,
33986,
7203,
7091,
1652,
12,
862,
84,
32,
12,
9362,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
32,
62,
9362,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
32,
62,
9362,
13,
2617,
11828,
10786,
3705,
52,
317,
318,
2626,
11537,
198,
7091,
1652,
62,
862,
84,
33,
62,
2202,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
642,
29720,
2617,
33986,
7203,
7091,
1652,
12,
862,
84,
33,
12,
2202,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
33,
62,
2202,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
33,
62,
2202,
13,
2617,
11828,
10786,
3705,
52,
347,
318,
12326,
11537,
198,
7091,
1652,
62,
862,
84,
33,
62,
9362,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
718,
29720,
2617,
33986,
7203,
7091,
1652,
12,
862,
84,
33,
12,
9362,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
33,
62,
9362,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
862,
84,
33,
62,
9362,
13,
2617,
11828,
10786,
3705,
52,
347,
318,
2626,
11537,
198,
7091,
1652,
62,
24408,
62,
2202,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
767,
29720,
2617,
33986,
7203,
7091,
1652,
12,
24408,
12,
2202,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
24408,
62,
2202,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
24408,
62,
2202,
13,
2617,
11828,
10786,
22480,
317,
318,
12326,
11537,
198,
7091,
1652,
62,
24408,
62,
9362,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
807,
29720,
2617,
33986,
7203,
7091,
1652,
12,
24408,
12,
9362,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
24408,
62,
9362,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
18316,
62,
24408,
62,
9362,
13,
2617,
11828,
10786,
22480,
317,
318,
2626,
11537,
198,
9517,
62,
11242,
11197,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
1160,
29720,
2617,
33986,
7203,
9517,
12,
11242,
11197,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
11242,
11197,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
11242,
11197,
13,
2617,
11828,
10786,
32,
2657,
318,
12326,
357,
1238,
93,
1959,
8,
11537,
198,
9517,
62,
31042,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
2310,
29720,
2617,
33986,
7203,
9517,
12,
31042,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
31042,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
31042,
13,
2617,
11828,
10786,
32,
2657,
318,
2626,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
1542,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
13,
2617,
11828,
10786,
464,
27765,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
357,
29370,
1542,
8,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
3261,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
13,
2617,
11828,
10786,
464,
27765,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
37,
87,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
3933,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
37,
87,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
4933,
13,
2617,
11828,
10786,
464,
277,
87,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
37,
87,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4747,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
37,
87,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
8048,
13,
2617,
11828,
10786,
464,
277,
87,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4974,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
13,
2617,
11828,
10786,
464,
27765,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
3439,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
13,
2617,
11828,
10786,
464,
27765,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
47,
18351,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4570,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
47,
18351,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
47,
18351,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
47,
18351,
8048,
13,
2617,
11828,
10786,
36510,
36650,
1176,
866,
12326,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5214,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
45,
4246,
12,
50,
5837,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
3127,
2493,
311,
5837,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4353,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
45,
4246,
12,
50,
5837,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
45975,
13,
2617,
11828,
10786,
14565,
3127,
2493,
311,
5837,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5014,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
17320,
12,
50,
5837,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
1895,
2493,
311,
5837,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
2319,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
17320,
12,
50,
5837,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
45975,
13,
2617,
11828,
10786,
14565,
1895,
2493,
311,
5837,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6073,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
17320,
12,
50,
5837,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
1895,
2493,
311,
5837,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5433,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
17320,
12,
50,
5837,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
45975,
13,
2617,
11828,
10786,
36510,
1895,
2493,
311,
5837,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
16,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5946,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
4933,
16,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
16,
13,
2617,
11828,
10786,
464,
27765,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
16,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5846,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
8048,
16,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
16,
13,
2617,
11828,
10786,
464,
27765,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
17,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4153,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
4933,
17,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
17,
13,
2617,
11828,
10786,
464,
27765,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
17,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6337,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
46047,
12,
8048,
17,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
17,
13,
2617,
11828,
10786,
464,
27765,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
16,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6298,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
4933,
16,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
16,
13,
2617,
11828,
10786,
464,
27765,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
16,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4764,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
8048,
16,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
16,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
16,
13,
2617,
11828,
10786,
464,
27765,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
17,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5125,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
4933,
17,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
17,
13,
2617,
11828,
10786,
464,
27765,
17,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
17,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
2026,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
46047,
12,
8048,
17,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
17,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
17,
13,
2617,
11828,
10786,
464,
27765,
17,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6885,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
311,
5837,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6740,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
14565,
311,
5837,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7192,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
17,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
311,
5837,
17,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7175,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
17,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
45975,
13,
2617,
11828,
10786,
14565,
311,
5837,
17,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5996,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7265,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7632,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7618,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7863,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
311,
5837,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
3126,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
36510,
311,
5837,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8454,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8190,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8093,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
311,
5837,
10,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5598,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
14565,
311,
5837,
10,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6135,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
17,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
14362,
3705,
5837,
17,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7930,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
17,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
45975,
13,
2617,
11828,
10786,
14565,
311,
5837,
10,
17,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8275,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
20802,
3705,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
311,
5837,
10,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8257,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
20802,
3705,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
36510,
311,
5837,
10,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8644,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
1395,
5837,
10,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4317,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
14565,
1395,
5837,
10,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9166,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
17,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
1395,
5837,
17,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7724,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
17,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
45975,
13,
2617,
11828,
10786,
14565,
1395,
5837,
10,
17,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8854,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
55,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
1395,
5837,
10,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8915,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
55,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
36510,
1395,
5837,
10,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
5441,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
10,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8684,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
10,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8541,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
10,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8699,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
20802,
3705,
5837,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
10,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9225,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
20802,
3705,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
14362,
3705,
5837,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4019,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
20802,
3705,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
10,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9773,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
1395,
5837,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9415,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
1395,
5837,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9698,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
1395,
5837,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9508,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
55,
5837,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
1395,
5837,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7600,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
55,
5837,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
1395,
5837,
16,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9849,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
55,
5837,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
1395,
5837,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
10083,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
18,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
311,
5837,
18,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9193,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
18,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
45975,
13,
2617,
11828,
10786,
14565,
311,
5837,
18,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9919,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
4347,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
4101,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
4347,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
10495,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
4347,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
10190,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
4347,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
18,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
10261,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
18,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
4933,
13,
2617,
11828,
10786,
464,
4347,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
13924,
18,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
10048,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
13924,
18,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
8048,
13,
2617,
11828,
10786,
464,
4347,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
37,
1565,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
1802,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
37,
1565,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
37,
1565,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
37,
1565,
62,
26447,
13,
2617,
11828,
10786,
22480,
2657,
670,
7685,
11537,
198,
9517,
62,
9655,
62,
37,
1565,
62,
4826,
11265,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
8949,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
37,
1565,
12,
4826,
11265,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
37,
1565,
62,
4826,
11265,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
37,
1565,
62,
4826,
11265,
13,
2617,
11828,
10786,
22480,
2657,
670,
42364,
453,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
15143,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
1195,
50,
5837,
16,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
15349,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
45975,
13,
2617,
11828,
10786,
14565,
1195,
50,
5837,
16,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
14436,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
44402,
276,
13,
2617,
11828,
10786,
14565,
1195,
50,
5837,
17,
18846,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13343,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
45975,
13,
2617,
11828,
10786,
14565,
1195,
50,
5837,
17,
4615,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
15696,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
15016,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
16226,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
11193,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
15495,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
15016,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
16003,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
11193,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
9796,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
18,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
15016,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13374,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
18,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
11193,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13539,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
19,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
15016,
19,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
17318,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
16,
12,
43,
1531,
19,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
16,
11193,
19,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
17342,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
16,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
15016,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
12279,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
16,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
11193,
16,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
18693,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
15016,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
19048,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
11193,
17,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
19035,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
18,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
15016,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
15136,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
18,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
11193,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
7982,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
19,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
4933,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
15016,
19,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
20416,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
48,
50,
5837,
17,
12,
43,
1531,
19,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
8048,
13,
2617,
11828,
10786,
464,
1195,
50,
5837,
17,
11193,
19,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
19409,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
17,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
311,
5837,
17,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
17031,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
17,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
45975,
13,
2617,
11828,
10786,
36510,
311,
5837,
17,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
44402,
276,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
19755,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
18,
12,
44402,
276,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
44402,
276,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
44402,
276,
13,
2617,
11828,
10786,
36510,
311,
5837,
18,
18846,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
45975,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13151,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
18,
12,
45975,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
45975,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
45975,
13,
2617,
11828,
10786,
36510,
311,
5837,
18,
4615,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
19710,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
17,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
17,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
18112,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
17,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
17,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13108,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
18,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
18,
2792,
286,
36650,
287,
6491,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
20248,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
49,
16762,
12,
50,
5837,
18,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
18,
2792,
286,
36650,
287,
6491,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
11323,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
406,
2640,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
23134,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
406,
2640,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
21761,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
317,
1797,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
22169,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
317,
1797,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
22352,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
33538,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
26196,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
17501,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
16,
12,
33538,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
26196,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
21056,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
406,
2640,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
21643,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
406,
2640,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
21503,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
317,
1797,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
23666,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
317,
1797,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
12713,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
33538,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
26196,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
25500,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
7222,
12,
13924,
17,
12,
33538,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
26196,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
25181,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
406,
2640,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24356,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
406,
2640,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
20224,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
317,
1797,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
20299,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
317,
1797,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
22986,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
33538,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
16,
26196,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
22909,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
16,
12,
33538,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
26447,
13,
2617,
11828,
10786,
13924,
16,
26196,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
22613,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
406,
2640,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24041,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
406,
2640,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
6640,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
317,
1797,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
25326,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
317,
1797,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24848,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
33538,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
13,
2617,
11828,
10786,
13924,
17,
26196,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24652,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
12,
49,
16762,
12,
13924,
17,
12,
33538,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
26447,
13,
2617,
11828,
10786,
13924,
17,
26196,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
4933,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24235,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
18,
12,
4933,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
4933,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
4933,
13,
2617,
11828,
10786,
464,
311,
5837,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
510,
11537,
198,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
8048,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
20708,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
7222,
12,
50,
5837,
18,
12,
8048,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
8048,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
8048,
13,
2617,
11828,
10786,
464,
311,
5837,
18,
2792,
286,
36650,
287,
3641,
1735,
318,
5445,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
23871,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
29551,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
46047,
406,
2640,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
23313,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
29551,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
26447,
13,
2617,
11828,
10786,
46047,
406,
2640,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
24063,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
17213,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
37,
87,
406,
2640,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
26422,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
17213,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
26447,
13,
2617,
11828,
10786,
37,
87,
406,
2640,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
13454,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
32,
1797,
10436,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
27829,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
7222,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
32,
1797,
3487,
287,
3641,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
25090,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
29551,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
46047,
406,
2640,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
26826,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
29551,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
26447,
13,
2617,
11828,
10786,
46047,
406,
2640,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
25307,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
17213,
45376,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
2348,
1670,
13,
2617,
11828,
10786,
37,
87,
406,
2640,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
21409,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
17213,
45376,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
26447,
13,
2617,
11828,
10786,
37,
87,
406,
2640,
3487,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
2348,
1670,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
26753,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
32,
1797,
12,
2348,
1670,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
2348,
1670,
13,
2617,
11828,
10786,
32,
1797,
10436,
287,
6491,
1735,
11537,
198,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
26447,
796,
42808,
6030,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
718,
34427,
11,
352,
11,
352,
11,
362,
11,
26118,
29720,
2617,
33986,
7203,
9517,
12,
9655,
12,
36,
16,
51,
16,
12,
49,
16762,
12,
32,
1797,
12,
26447,
11074,
2617,
10267,
82,
7,
7203,
43145,
12,
8895,
33,
1600,
366,
7091,
1652,
7390,
87,
12340,
5855,
43145,
12,
8895,
33,
1600,
366,
43384,
7390,
87,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
26447,
13,
2617,
19580,
10786,
14421,
11537,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
26447,
13,
2617,
11828,
10786,
32,
1797,
3487,
287,
6491,
1735,
11537,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
43145,
12,
8895,
33,
1600,
36650,
1821,
38,
62,
27799,
3535,
1531,
17,
39516,
19076,
28,
23209,
1821,
38,
62,
27799,
3535,
1531,
17,
39516,
19076,
11,
1664,
28,
39722,
11,
36650,
22480,
16962,
10267,
82,
28,
23209,
22480,
16962,
10267,
82,
11,
36650,
940,
38,
62,
27799,
2943,
333,
4561,
67,
28,
23209,
940,
38,
62,
27799,
2943,
333,
4561,
67,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
4933,
11,
36650,
19,
62,
1495,
38,
62,
27799,
1340,
4246,
5760,
28,
23209,
19,
62,
1495,
38,
62,
27799,
1340,
4246,
5760,
11,
36650,
34,
76,
16,
70,
50,
46428,
30150,
28,
23209,
34,
76,
16,
70,
50,
46428,
30150,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
8048,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
10267,
82,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
10267,
82,
11,
36650,
8291,
39729,
20344,
28,
23209,
8291,
39729,
20344,
11,
36650,
17,
62,
20,
15548,
4093,
446,
10267,
82,
28,
23209,
17,
62,
20,
15548,
4093,
446,
10267,
82,
11,
36650,
13924,
9012,
28,
23209,
13924,
9012,
11,
36650,
16,
8264,
17,
3185,
419,
17,
50,
5837,
3109,
396,
28,
23209,
16,
8264,
17,
3185,
419,
17,
50,
5837,
3109,
396,
11,
18316,
33111,
28,
7091,
1652,
33111,
11,
36650,
4061,
17430,
9697,
333,
12468,
19076,
28,
23209,
4061,
17430,
9697,
333,
12468,
19076,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
16,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
16,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
8291,
10669,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
8291,
10669,
11,
25064,
5376,
28,
17597,
5376,
11,
279,
2385,
33,
28,
862,
84,
33,
11,
299,
4246,
55,
5837,
17,
39709,
24539,
28,
429,
86,
55,
5837,
17,
39709,
24539,
11,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
28,
23209,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
11,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
28,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
33484,
26623,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
33484,
26623,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
38143,
3610,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
38143,
3610,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
11,
36650,
4061,
17430,
9697,
446,
10962,
28,
23209,
4061,
17430,
9697,
446,
10962,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
23004,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
23004,
11,
36650,
1821,
38,
62,
46,
4720,
39,
54,
39516,
19076,
28,
23209,
1821,
38,
62,
46,
4720,
39,
54,
39516,
19076,
11,
36650,
36,
16,
51,
16,
49,
16762,
3697,
676,
28,
23209,
36,
16,
51,
16,
49,
16762,
3697,
676,
11,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
28,
429,
86,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
26447,
11,
36650,
34,
76,
30150,
28,
23209,
34,
76,
30150,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
38143,
3610,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
38143,
3610,
11,
18316,
7390,
87,
28,
7091,
1652,
7390,
87,
11,
12840,
17932,
16,
28,
46670,
17932,
16,
11,
36650,
34,
76,
16,
70,
50,
46428,
10267,
82,
28,
23209,
34,
76,
16,
70,
50,
46428,
10267,
82,
11,
2322,
32,
28,
10396,
32,
11,
651,
45,
4246,
48,
50,
46428,
40109,
28,
1136,
45,
4246,
48,
50,
46428,
40109,
11,
36650,
16,
11230,
17,
3185,
419,
39,
25527,
380,
28,
23209,
16,
11230,
17,
3185,
419,
39,
25527,
380,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
4933,
11,
36650,
36,
16,
13924,
17,
39516,
28,
23209,
36,
16,
13924,
17,
39516,
11,
2124,
46428,
39709,
24539,
51,
403,
540,
28,
26152,
79,
39709,
24539,
51,
403,
540,
11,
374,
16762,
16962,
33111,
28,
81,
16762,
16962,
33111,
11,
18316,
62,
24408,
62,
9362,
28,
7091,
1652,
62,
24408,
62,
9362,
11,
36650,
8048,
12124,
28,
23209,
8048,
12124,
11,
36650,
36,
16,
50,
5837,
16,
11280,
28,
23209,
36,
16,
50,
5837,
16,
11280,
11,
36650,
940,
38,
62,
27799,
4503,
446,
30150,
28,
23209,
940,
38,
62,
27799,
4503,
446,
30150,
11,
36650,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
540,
28,
23209,
17320,
55,
5837,
16,
39709,
24539,
51,
403,
540,
11,
28642,
84,
6030,
28,
21533,
84,
6030,
11,
36650,
940,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
28,
23209,
940,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
11,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
28,
23209,
16,
8264,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
11,
10852,
10267,
82,
28,
43384,
10267,
82,
11,
36650,
4061,
17430,
35,
10267,
82,
28,
23209,
4061,
17430,
35,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
16,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
16,
11,
36650,
49,
16762,
36,
16,
13924,
16,
33538,
28,
23209,
49,
16762,
36,
16,
13924,
16,
33538,
11,
36650,
49,
16762,
39,
54,
8291,
2781,
19076,
28,
23209,
49,
16762,
39,
54,
8291,
2781,
19076,
11,
36650,
4061,
17430,
24544,
87,
8726,
28,
23209,
4061,
17430,
24544,
87,
8726,
11,
36650,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
28,
23209,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
11,
36650,
940,
38,
62,
27799,
3698,
11224,
19076,
28,
23209,
940,
38,
62,
27799,
3698,
11224,
19076,
11,
36650,
36,
16,
51,
16,
3697,
793,
2348,
1670,
28,
23209,
36,
16,
51,
16,
3697,
793,
2348,
1670,
11,
18316,
62,
862,
84,
32,
62,
2202,
28,
7091,
1652,
62,
862,
84,
32,
62,
2202,
11,
36650,
48,
8141,
23,
31380,
49,
16762,
34,
40616,
12468,
19076,
28,
23209,
48,
8141,
23,
31380,
49,
16762,
34,
40616,
12468,
19076,
11,
18316,
10962,
28,
7091,
1652,
10962,
11,
20966,
29851,
28,
541,
29851,
11,
36650,
16,
8264,
17,
3185,
419,
16,
20802,
3646,
676,
28,
23209,
16,
8264,
17,
3185,
419,
16,
20802,
3646,
676,
11,
36650,
940,
38,
62,
46,
4720,
62,
4134,
6030,
28,
23209,
940,
38,
62,
46,
4720,
62,
4134,
6030,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
26447,
11,
264,
46428,
53,
5978,
496,
28,
28202,
79,
53,
5978,
496,
11,
36650,
940,
11230,
4720,
16,
7397,
446,
10962,
28,
23209,
940,
11230,
4720,
16,
7397,
446,
10962,
11,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
540,
28,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
540,
11,
36650,
49,
16762,
36,
16,
13924,
16,
39516,
28,
23209,
49,
16762,
36,
16,
13924,
16,
39516,
11,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
30150,
28,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
30150,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
11,
36650,
34,
76,
16,
70,
40,
79,
30150,
28,
23209,
34,
76,
16,
70,
40,
79,
30150,
11,
269,
16993,
76,
33484,
26623,
20,
28,
66,
16993,
76,
33484,
26623,
20,
11,
36650,
36,
16,
13924,
16,
32,
1797,
28,
23209,
36,
16,
13924,
16,
32,
1797,
11,
697,
55,
5837,
16,
51,
403,
540,
6030,
28,
4134,
55,
5837,
16,
51,
403,
540,
6030,
11,
36650,
49,
16762,
47,
18351,
8048,
28,
23209,
49,
16762,
47,
18351,
8048,
11,
36650,
940,
38,
62,
46,
4720,
10267,
82,
28,
23209,
940,
38,
62,
46,
4720,
10267,
82,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
11,
36650,
940,
38,
62,
46,
6500,
39,
54,
39516,
1891,
28,
23209,
940,
38,
62,
46,
6500,
39,
54,
39516,
1891,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
18,
62,
8048,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
8048,
11,
36650,
48,
8141,
23,
31380,
49,
16762,
46047,
8726,
28,
23209,
48,
8141,
23,
31380,
49,
16762,
46047,
8726,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
26447,
11,
36650,
49,
16762,
36,
16,
46047,
26628,
12468,
19076,
28,
23209,
49,
16762,
36,
16,
46047,
26628,
12468,
19076,
11,
10662,
28202,
79,
17320,
49,
87,
13434,
19,
28,
80,
28202,
79,
17320,
49,
87,
13434,
19,
11,
36650,
49,
16762,
940,
38,
62,
27799,
3535,
11224,
1891,
28,
23209,
49,
16762,
940,
38,
62,
27799,
3535,
11224,
1891,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
26447,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
26447,
11,
36650,
46047,
40778,
27654,
28,
23209,
46047,
40778,
27654,
11,
36650,
16962,
7390,
87,
28,
23209,
16962,
7390,
87,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
4933,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
2348,
1670,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
4933,
11,
36650,
18274,
879,
28,
23209,
18274,
879,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
10267,
82,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
10267,
82,
11,
36650,
940,
11230,
4720,
16,
7397,
446,
30150,
28,
23209,
940,
11230,
4720,
16,
7397,
446,
30150,
11,
651,
17320,
50,
46428,
40109,
28,
1136,
17320,
50,
46428,
40109,
11,
36650,
16,
11230,
17,
3185,
419,
18,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
3185,
419,
18,
50,
5837,
3109,
396,
11,
36650,
49,
16762,
34,
40616,
12468,
19076,
28,
23209,
49,
16762,
34,
40616,
12468,
19076,
11,
36650,
45,
4246,
48,
50,
46428,
10267,
82,
28,
23209,
45,
4246,
48,
50,
46428,
10267,
82,
11,
36650,
3347,
1652,
7390,
87,
28,
23209,
3347,
1652,
7390,
87,
11,
36650,
1821,
38,
62,
27799,
4503,
446,
30150,
28,
23209,
1821,
38,
62,
27799,
4503,
446,
30150,
11,
36650,
36,
16,
51,
16,
16962,
10962,
28,
23209,
36,
16,
51,
16,
16962,
10962,
11,
697,
28202,
79,
6690,
85,
13434,
28,
4134,
28202,
79,
6690,
85,
13434,
11,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
28,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
11,
269,
16993,
76,
33484,
26623,
22,
28,
66,
16993,
76,
33484,
26623,
22,
11,
269,
16993,
76,
33484,
26623,
16,
28,
66,
16993,
76,
33484,
26623,
16,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
18,
62,
8726,
11,
36650,
36,
16,
13924,
17,
33538,
28,
23209,
36,
16,
13924,
17,
33538,
11,
36650,
17320,
48,
50,
46428,
10267,
82,
28,
23209,
17320,
48,
50,
46428,
10267,
82,
11,
36650,
49,
16762,
36,
16,
13924,
16,
32,
1797,
28,
23209,
49,
16762,
36,
16,
13924,
16,
32,
1797,
11,
36650,
4061,
17430,
9697,
446,
30150,
28,
23209,
4061,
17430,
9697,
446,
30150,
11,
697,
28202,
79,
42492,
28,
4134,
28202,
79,
42492,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
51,
403,
540,
6030,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
51,
403,
540,
6030,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
4933,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
25392,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
25392,
11,
36650,
49,
16762,
18274,
879,
28,
23209,
49,
16762,
18274,
879,
11,
36650,
17,
62,
20,
15548,
7902,
46428,
18,
3109,
396,
28,
23209,
17,
62,
20,
15548,
7902,
46428,
18,
3109,
396,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
10434,
62,
14402,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
10434,
62,
14402,
11,
10662,
28202,
79,
17320,
42492,
28,
80,
28202,
79,
17320,
42492,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
17,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
17,
11,
264,
46428,
34525,
28,
28202,
79,
34525,
11,
36650,
22480,
10267,
82,
28,
23209,
22480,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
44402,
276,
11,
36650,
16,
8264,
17,
3185,
419,
34487,
28,
23209,
16,
8264,
17,
3185,
419,
34487,
11,
36650,
16,
11230,
17,
3185,
419,
16,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
3185,
419,
16,
50,
5837,
3109,
396,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
8048,
11,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
28,
23209,
49,
16762,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
33484,
26623,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
33484,
26623,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
45975,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
16,
62,
8726,
11,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
4933,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
29551,
45376,
62,
2348,
1670,
11,
264,
46428,
7222,
2848,
24539,
28,
28202,
79,
7222,
2848,
24539,
11,
36650,
17,
62,
20,
15548,
4093,
446,
10962,
28,
23209,
17,
62,
20,
15548,
4093,
446,
10962,
11,
36650,
17,
62,
20,
70,
62,
1136,
50,
46428,
40109,
28,
23209,
17,
62,
20,
70,
62,
1136,
50,
46428,
40109,
11,
36650,
36,
16,
51,
16,
49,
16762,
14990,
793,
2348,
1670,
28,
23209,
36,
16,
51,
16,
49,
16762,
14990,
793,
2348,
1670,
11,
12840,
17932,
18,
28,
46670,
17932,
18,
11,
36650,
49,
16762,
36,
16,
13924,
17,
45376,
28,
23209,
49,
16762,
36,
16,
13924,
17,
45376,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
45975,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
17213,
45376,
62,
26447,
11,
36650,
16,
11230,
17,
3185,
419,
18,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
3185,
419,
18,
20802,
3646,
676,
11,
36650,
16,
2188,
17,
78,
62,
1136,
50,
46428,
40109,
28,
23209,
16,
2188,
17,
78,
62,
1136,
50,
46428,
40109,
11,
264,
46428,
38143,
3610,
28,
28202,
79,
38143,
3610,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
17,
62,
8048,
11,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
28,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
11,
36650,
940,
11230,
4720,
18,
7397,
446,
10962,
28,
23209,
940,
11230,
4720,
18,
7397,
446,
10962,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
39,
25527,
380,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
39,
25527,
380,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
17,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
17,
11,
36650,
49,
16762,
39,
54,
43,
5837,
28,
23209,
49,
16762,
39,
54,
43,
5837,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
16,
62,
4933,
11,
697,
28202,
79,
7556,
24539,
28,
4134,
28202,
79,
7556,
24539,
11,
36650,
4061,
17430,
6322,
419,
10267,
82,
28,
23209,
4061,
17430,
6322,
419,
10267,
82,
11,
36650,
6030,
28,
23209,
6030,
11,
697,
55,
5837,
16,
39709,
24539,
28,
4134,
55,
5837,
16,
39709,
24539,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
18,
62,
8726,
11,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
28,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
26447,
11,
36650,
49,
16762,
39,
54,
12468,
19076,
28,
23209,
49,
16762,
39,
54,
12468,
19076,
11,
36650,
48,
8141,
23,
31380,
4933,
12124,
28,
23209,
48,
8141,
23,
31380,
4933,
12124,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
8048,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
11,
36650,
940,
38,
62,
46,
6500,
37,
87,
8726,
28,
23209,
940,
38,
62,
46,
6500,
37,
87,
8726,
11,
36650,
36,
16,
13924,
16,
45376,
28,
23209,
36,
16,
13924,
16,
45376,
11,
36650,
17,
62,
20,
15548,
8697,
419,
16,
8726,
28,
23209,
17,
62,
20,
15548,
8697,
419,
16,
8726,
11,
10662,
28202,
79,
17320,
49,
87,
13434,
18,
28,
80,
28202,
79,
17320,
49,
87,
13434,
18,
11,
36650,
45,
4246,
50,
46428,
3109,
396,
28,
23209,
45,
4246,
50,
46428,
3109,
396,
11,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
28,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
11,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
28,
23209,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
11,
269,
16993,
76,
33484,
26623,
12332,
28,
66,
16993,
76,
33484,
26623,
12332,
11,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
4933,
11,
36650,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
28,
23209,
940,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
19,
62,
8726,
11,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
28,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
11,
36650,
17,
62,
20,
15548,
7902,
5837,
18,
10267,
82,
28,
23209,
17,
62,
20,
15548,
7902,
5837,
18,
10267,
82,
11,
36650,
39,
54,
8291,
2781,
19076,
28,
23209,
39,
54,
8291,
2781,
19076,
11,
10852,
7390,
87,
28,
43384,
7390,
87,
11,
10662,
28202,
79,
45,
4246,
46047,
13434,
16,
28,
80,
28202,
79,
45,
4246,
46047,
13434,
16,
11,
36650,
39,
54,
43,
5837,
28,
23209,
39,
54,
43,
5837,
11,
36650,
36,
16,
51,
16,
49,
16762,
32,
1797,
2348,
1670,
28,
23209,
36,
16,
51,
16,
49,
16762,
32,
1797,
2348,
1670,
11,
2322,
33,
28,
10396,
33,
11,
36650,
49,
16762,
26628,
12468,
19076,
28,
23209,
49,
16762,
26628,
12468,
19076,
11,
36650,
16,
8264,
17,
4503,
446,
10962,
28,
23209,
16,
8264,
17,
4503,
446,
10962,
11,
697,
28202,
79,
33484,
26623,
28,
4134,
28202,
79,
33484,
26623,
11,
36650,
17320,
48,
50,
46428,
30150,
28,
23209,
17320,
48,
50,
46428,
30150,
11,
36650,
46047,
40778,
17250,
28,
23209,
46047,
40778,
17250,
11,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
28,
23209,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
16,
39516,
1891,
11,
25064,
17829,
28,
17597,
17829,
11,
10852,
30150,
28,
43384,
30150,
11,
36650,
26628,
12468,
19076,
28,
23209,
26628,
12468,
19076,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
4061,
17430,
35,
4933,
12124,
28,
23209,
4061,
17430,
35,
4933,
12124,
11,
36650,
49,
16762,
47504,
28,
23209,
49,
16762,
47504,
11,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
25392,
28,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
25392,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
51,
2596,
13434,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
51,
2596,
13434,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
9414,
22785,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
9414,
22785,
11,
36650,
1821,
38,
62,
27799,
2640,
39492,
19076,
28,
23209,
1821,
38,
62,
27799,
2640,
39492,
19076,
11,
36650,
16,
11230,
17,
2640,
46428,
18,
10962,
28,
23209,
16,
11230,
17,
2640,
46428,
18,
10962,
11,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
28,
23209,
16,
8264,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
11,
36650,
34,
76,
16,
70,
17320,
50,
46428,
10267,
82,
28,
23209,
34,
76,
16,
70,
17320,
50,
46428,
10267,
82,
11,
374,
16762,
16962,
6030,
28,
81,
16762,
16962,
6030,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
45975,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
16,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
16,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
17,
62,
8048,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
8048,
11,
36650,
49,
87,
40778,
17250,
28,
23209,
49,
87,
40778,
17250,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
44402,
276,
11,
36650,
36,
16,
16962,
30150,
28,
23209,
36,
16,
16962,
30150,
11,
2657,
62,
11242,
11197,
28,
9517,
62,
11242,
11197,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
4933,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
4933,
11,
12840,
17932,
17,
28,
46670,
17932,
17,
11,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
10962,
28,
23209,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
10962,
11,
36650,
34,
22332,
9655,
446,
30150,
28,
23209,
34,
22332,
9655,
446,
30150,
11,
36650,
36,
16,
51,
16,
14990,
11224,
28,
23209,
36,
16,
51,
16,
14990,
11224,
11,
36650,
16,
11230,
17,
3185,
419,
34487,
28,
23209,
16,
11230,
17,
3185,
419,
34487,
11,
36650,
43,
37,
5662,
40616,
28,
23209,
43,
37,
5662,
40616,
11,
10662,
28202,
79,
17320,
49,
87,
13434,
16,
28,
80,
28202,
79,
17320,
49,
87,
13434,
16,
11,
5951,
28,
11498,
21069,
11,
10662,
28202,
79,
17320,
46047,
13434,
18,
28,
80,
28202,
79,
17320,
46047,
13434,
18,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
8048,
11,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
28,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
11,
36650,
940,
38,
62,
27799,
2943,
446,
30150,
28,
23209,
940,
38,
62,
27799,
2943,
446,
30150,
11,
36650,
22480,
19580,
28,
23209,
22480,
19580,
11,
36650,
17,
62,
20,
15548,
8697,
419,
18,
8726,
28,
23209,
17,
62,
20,
15548,
8697,
419,
18,
8726,
11,
1080,
8895,
33,
28,
10057,
8895,
33,
11,
36650,
46047,
8726,
28,
23209,
46047,
8726,
11,
36650,
34,
76,
10962,
28,
23209,
34,
76,
10962,
11,
36650,
49,
16762,
46047,
8726,
28,
23209,
49,
16762,
46047,
8726,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
19,
62,
8726,
11,
264,
46428,
51,
2596,
13434,
28,
28202,
79,
51,
2596,
13434,
11,
763,
16962,
6030,
28,
1073,
16962,
6030,
11,
36650,
22480,
16962,
30150,
28,
23209,
22480,
16962,
30150,
11,
269,
16993,
76,
33484,
26623,
18,
28,
66,
16993,
76,
33484,
26623,
18,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
26447,
11,
36650,
16,
8264,
17,
3185,
419,
39,
25527,
380,
28,
23209,
16,
8264,
17,
3185,
419,
39,
25527,
380,
11,
36650,
36,
16,
51,
16,
14990,
793,
2348,
1670,
28,
23209,
36,
16,
51,
16,
14990,
793,
2348,
1670,
11,
36650,
48,
8141,
23,
31380,
8048,
12124,
28,
23209,
48,
8141,
23,
31380,
8048,
12124,
11,
36650,
4061,
17430,
6322,
419,
30150,
28,
23209,
4061,
17430,
6322,
419,
30150,
11,
36650,
36,
16,
51,
16,
14815,
28,
23209,
36,
16,
51,
16,
14815,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
8048,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
26447,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
45975,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
8048,
11,
697,
28202,
79,
9414,
22785,
28,
4134,
28202,
79,
9414,
22785,
11,
269,
16993,
76,
33484,
26623,
23,
28,
66,
16993,
76,
33484,
26623,
23,
11,
36650,
49,
16762,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
28,
23209,
49,
16762,
940,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
11,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10267,
82,
28,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10267,
82,
11,
36650,
16,
8264,
17,
1581,
16762,
13924,
39,
25527,
380,
28,
23209,
16,
8264,
17,
1581,
16762,
13924,
39,
25527,
380,
11,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
28,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
8,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
43145,
12,
8895,
33,
1600,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
12331,
62,
31694,
11,
36650,
16,
11230,
17,
3185,
419,
16,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
3185,
419,
16,
20802,
3646,
676,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
26447,
11,
36650,
16,
11230,
17,
2640,
5837,
18,
10267,
82,
28,
23209,
16,
11230,
17,
2640,
5837,
18,
10267,
82,
11,
2124,
46428,
39709,
24539,
28,
26152,
79,
39709,
24539,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
45975,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
44402,
276,
11,
36650,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
28,
23209,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
44402,
276,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
7556,
24539,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
7556,
24539,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
17,
62,
8048,
11,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
45975,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
45975,
11,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10962,
28,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
10962,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
8048,
11,
36650,
48,
8141,
23,
31380,
13924,
7390,
87,
28,
23209,
48,
8141,
23,
31380,
13924,
7390,
87,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
4061,
17430,
6322,
419,
10962,
28,
23209,
4061,
17430,
6322,
419,
10962,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
6690,
85,
13434,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
6690,
85,
13434,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
6030,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
6030,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
4933,
11,
36650,
34,
76,
16,
70,
17320,
50,
46428,
10962,
28,
23209,
34,
76,
16,
70,
17320,
50,
46428,
10962,
11,
36650,
36,
16,
51,
16,
49,
16762,
3697,
11224,
28,
23209,
36,
16,
51,
16,
49,
16762,
3697,
11224,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
33538,
62,
26447,
11,
36650,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
540,
28,
23209,
940,
38,
55,
5837,
16,
39709,
24539,
51,
403,
540,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
17,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
17,
11,
36650,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
28,
23209,
49,
16762,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
11,
36650,
940,
38,
62,
27799,
2943,
446,
10267,
82,
28,
23209,
940,
38,
62,
27799,
2943,
446,
10267,
82,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3913,
967,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
16,
62,
4933,
11,
36650,
940,
38,
55,
5837,
17,
39709,
24539,
28,
23209,
940,
38,
55,
5837,
17,
39709,
24539,
11,
36650,
940,
38,
62,
27799,
4503,
446,
10962,
28,
23209,
940,
38,
62,
27799,
4503,
446,
10962,
11,
36650,
940,
38,
62,
46,
6500,
62,
429,
86,
6030,
28,
23209,
940,
38,
62,
46,
6500,
62,
429,
86,
6030,
11,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
28,
23209,
49,
16762,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
4933,
11,
36650,
16,
11230,
17,
3185,
419,
17,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
3185,
419,
17,
20802,
3646,
676,
11,
36650,
36,
16,
51,
16,
32,
1797,
2348,
1670,
28,
23209,
36,
16,
51,
16,
32,
1797,
2348,
1670,
11,
36650,
27654,
5574,
49,
16762,
37,
70,
28,
23209,
27654,
5574,
49,
16762,
37,
70,
11,
36650,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
28,
23209,
940,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
11,
36650,
36,
16,
51,
16,
16962,
10267,
82,
28,
23209,
36,
16,
51,
16,
16962,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
45975,
11,
36650,
36,
16,
51,
16,
3697,
676,
28,
23209,
36,
16,
51,
16,
3697,
676,
11,
28642,
84,
10267,
82,
28,
21533,
84,
10267,
82,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7222,
2848,
24539,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
7222,
2848,
24539,
11,
36650,
16,
11230,
17,
3185,
419,
18,
39,
54,
4561,
67,
28,
23209,
16,
11230,
17,
3185,
419,
18,
39,
54,
4561,
67,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
50,
5837,
3109,
396,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
51,
403,
540,
6030,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
429,
86,
51,
403,
540,
6030,
11,
18316,
62,
862,
84,
33,
62,
2202,
28,
7091,
1652,
62,
862,
84,
33,
62,
2202,
11,
36650,
47,
76,
10962,
28,
23209,
47,
76,
10962,
11,
36650,
34,
76,
16,
70,
32419,
10267,
82,
28,
23209,
34,
76,
16,
70,
32419,
10267,
82,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
3855,
62,
14402,
62,
49,
301,
11,
36650,
36,
16,
51,
16,
16962,
30150,
28,
23209,
36,
16,
51,
16,
16962,
30150,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
62,
14402,
62,
29453,
62,
7575,
11,
36650,
48,
28202,
79,
32419,
10267,
82,
28,
23209,
48,
28202,
79,
32419,
10267,
82,
11,
36650,
940,
11230,
4720,
18,
7397,
446,
10267,
82,
28,
23209,
940,
11230,
4720,
18,
7397,
446,
10267,
82,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
16,
8264,
17,
4503,
446,
10267,
82,
28,
23209,
16,
8264,
17,
4503,
446,
10267,
82,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
6690,
85,
13434,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
6690,
85,
13434,
11,
6001,
17,
39,
52,
28,
17015,
17,
39,
52,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
44,
76,
24539,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
44,
76,
24539,
11,
36650,
16,
8264,
17,
46,
10267,
82,
28,
23209,
16,
8264,
17,
46,
10267,
82,
11,
36650,
16,
11230,
17,
46,
10267,
82,
28,
23209,
16,
11230,
17,
46,
10267,
82,
11,
36650,
34,
76,
16,
70,
40,
79,
10962,
28,
23209,
34,
76,
16,
70,
40,
79,
10962,
11,
36650,
45,
4246,
48,
50,
46428,
30150,
28,
23209,
45,
4246,
48,
50,
46428,
30150,
11,
36650,
1821,
38,
62,
27799,
3535,
1531,
16,
39516,
19076,
28,
23209,
1821,
38,
62,
27799,
3535,
1531,
16,
39516,
19076,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
34525,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
34525,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
4933,
11,
36650,
36,
16,
13924,
16,
33538,
28,
23209,
36,
16,
13924,
16,
33538,
11,
18316,
30150,
28,
7091,
1652,
30150,
11,
264,
46428,
9414,
22785,
28,
28202,
79,
9414,
22785,
11,
36650,
49,
16762,
36,
16,
50,
5837,
16,
11280,
28,
23209,
49,
16762,
36,
16,
50,
5837,
16,
11280,
11,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
45975,
11,
36650,
940,
38,
62,
27799,
2640,
5837,
17,
28,
23209,
940,
38,
62,
27799,
2640,
5837,
17,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
26447,
11,
36650,
4933,
12124,
28,
23209,
4933,
12124,
11,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10267,
82,
28,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
4933,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
8291,
10669,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
8291,
10669,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
26447,
11,
36650,
940,
38,
62,
46,
4720,
62,
10434,
62,
14402,
28,
23209,
940,
38,
62,
46,
4720,
62,
10434,
62,
14402,
11,
697,
55,
5837,
16,
39709,
24539,
51,
403,
540,
28,
4134,
55,
5837,
16,
39709,
24539,
51,
403,
540,
11,
36650,
40,
79,
4550,
81,
28,
23209,
40,
79,
4550,
81,
11,
36650,
1821,
38,
62,
27799,
4503,
446,
10962,
28,
23209,
1821,
38,
62,
27799,
4503,
446,
10962,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
20802,
3646,
676,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
11,
36650,
36,
16,
51,
16,
6030,
28,
23209,
36,
16,
51,
16,
6030,
11,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
18,
28,
80,
28202,
79,
45,
4246,
49,
87,
13434,
18,
11,
36650,
940,
38,
62,
27799,
4503,
446,
10267,
82,
28,
23209,
940,
38,
62,
27799,
4503,
446,
10267,
82,
11,
18316,
5376,
28,
7091,
1652,
5376,
11,
2657,
62,
31042,
28,
9517,
62,
31042,
11,
697,
28202,
79,
7222,
2848,
24539,
28,
4134,
28202,
79,
7222,
2848,
24539,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
11,
36650,
4061,
17430,
35,
53,
9620,
19076,
28,
23209,
4061,
17430,
35,
53,
9620,
19076,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
29551,
45376,
62,
2348,
1670,
11,
36650,
940,
38,
62,
27799,
1546,
30094,
19076,
28,
23209,
940,
38,
62,
27799,
1546,
30094,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
37,
87,
62,
4933,
11,
374,
16762,
16962,
24564,
28,
81,
16762,
16962,
24564,
11,
36650,
17320,
55,
5837,
16,
51,
403,
540,
6030,
28,
23209,
17320,
55,
5837,
16,
51,
403,
540,
6030,
11,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
45975,
11,
36650,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
28,
23209,
45,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
1799,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
45975,
11,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
45975,
11,
36650,
47,
76,
19452,
28,
23209,
47,
76,
19452,
11,
2657,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
17320,
62,
50,
5837,
62,
44402,
276,
11,
36650,
36,
16,
51,
16,
49,
16762,
3697,
793,
2348,
1670,
28,
23209,
36,
16,
51,
16,
49,
16762,
3697,
793,
2348,
1670,
11,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
10962,
28,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
10962,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
18,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
18,
62,
4933,
11,
36650,
16,
8264,
17,
3185,
419,
17,
20802,
3646,
676,
28,
23209,
16,
8264,
17,
3185,
419,
17,
20802,
3646,
676,
11,
36650,
940,
11230,
4720,
18,
49,
10267,
82,
28,
23209,
940,
11230,
4720,
18,
49,
10267,
82,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
940,
38,
62,
46,
4720,
62,
14402,
62,
23004,
28,
23209,
940,
38,
62,
46,
4720,
62,
14402,
62,
23004,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
12468,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
11,
36650,
34,
22332,
44,
10267,
82,
28,
23209,
34,
22332,
44,
10267,
82,
11,
36650,
39,
18564,
16762,
40069,
19076,
28,
23209,
39,
18564,
16762,
40069,
19076,
11,
36650,
34,
40616,
12468,
19076,
28,
23209,
34,
40616,
12468,
19076,
11,
36650,
48,
8141,
23,
31380,
13924,
30150,
28,
23209,
48,
8141,
23,
31380,
13924,
30150,
11,
36650,
36,
16,
16962,
10962,
28,
23209,
36,
16,
16962,
10962,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
16,
43,
1531,
17,
62,
8726,
11,
36650,
940,
38,
62,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
28,
23209,
940,
38,
62,
46,
4720,
17,
7397,
333,
4561,
67,
19076,
11,
350,
56,
15571,
7378,
62,
33365,
24212,
62,
2389,
28,
39722,
11,
36650,
940,
38,
62,
27799,
3535,
11224,
1891,
28,
23209,
940,
38,
62,
27799,
3535,
11224,
1891,
11,
36650,
36,
16,
51,
16,
3697,
11224,
28,
23209,
36,
16,
51,
16,
3697,
11224,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
4933,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
11,
2657,
62,
9655,
62,
49,
16762,
62,
47,
18351,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
47,
18351,
8048,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
44,
76,
24539,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
44,
76,
24539,
11,
36650,
48,
8141,
23,
31380,
34,
40616,
12468,
19076,
28,
23209,
48,
8141,
23,
31380,
34,
40616,
12468,
19076,
11,
36650,
49,
16762,
6030,
28,
23209,
49,
16762,
6030,
11,
36650,
48,
8141,
23,
31380,
53,
9620,
19076,
28,
23209,
48,
8141,
23,
31380,
53,
9620,
19076,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
4561,
67,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
4933,
11,
36650,
36,
16,
13924,
17,
45376,
28,
23209,
36,
16,
13924,
17,
45376,
11,
36650,
16,
11230,
17,
4503,
446,
10267,
82,
28,
23209,
16,
11230,
17,
4503,
446,
10267,
82,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
46,
4720,
39,
54,
39516,
1891,
11,
36650,
49,
16762,
940,
38,
62,
46,
4720,
62,
4134,
6030,
28,
23209,
49,
16762,
940,
38,
62,
46,
4720,
62,
4134,
6030,
11,
36650,
17,
62,
20,
38,
9655,
10267,
82,
28,
23209,
17,
62,
20,
38,
9655,
10267,
82,
11,
36650,
8291,
39729,
19076,
28,
23209,
8291,
39729,
19076,
11,
36650,
1821,
38,
62,
46,
4720,
10267,
82,
28,
23209,
1821,
38,
62,
46,
4720,
10267,
82,
11,
36650,
34,
76,
16,
70,
17320,
50,
46428,
30150,
28,
23209,
34,
76,
16,
70,
17320,
50,
46428,
30150,
11,
36650,
4061,
17430,
9697,
40616,
12468,
19076,
28,
23209,
4061,
17430,
9697,
40616,
12468,
19076,
11,
36650,
16,
8264,
17,
1581,
16762,
46047,
8726,
28,
23209,
16,
8264,
17,
1581,
16762,
46047,
8726,
11,
36650,
36,
16,
51,
16,
49,
16762,
14990,
11224,
28,
23209,
36,
16,
51,
16,
49,
16762,
14990,
11224,
11,
10662,
28202,
79,
45,
4246,
46047,
13434,
17,
28,
80,
28202,
79,
45,
4246,
46047,
13434,
17,
11,
36650,
16,
11230,
17,
3185,
419,
17,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
3185,
419,
17,
50,
5837,
3109,
396,
11,
299,
4246,
55,
5837,
17,
39709,
24539,
51,
403,
540,
28,
429,
86,
55,
5837,
17,
39709,
24539,
51,
403,
540,
11,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
17,
28,
80,
28202,
79,
45,
4246,
49,
87,
13434,
17,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
44402,
276,
11,
36650,
940,
38,
62,
27799,
2640,
5837,
16,
28,
23209,
940,
38,
62,
27799,
2640,
5837,
16,
11,
36650,
48,
8141,
23,
31380,
16962,
10267,
82,
28,
23209,
48,
8141,
23,
31380,
16962,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
18,
62,
4933,
11,
36650,
17320,
48,
50,
46428,
10962,
28,
23209,
17320,
48,
50,
46428,
10962,
11,
36650,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
28,
23209,
940,
38,
62,
46,
4720,
62,
429,
86,
6030,
11,
36650,
1821,
38,
62,
27799,
3535,
1531,
18,
39516,
19076,
28,
23209,
1821,
38,
62,
27799,
3535,
1531,
18,
39516,
19076,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
18,
62,
45975,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
8048,
11,
279,
2385,
32,
28,
862,
84,
32,
11,
20966,
15667,
28,
541,
15667,
11,
36650,
22480,
16962,
10962,
28,
23209,
22480,
16962,
10962,
11,
36650,
49,
16762,
36,
16,
13924,
17,
33538,
28,
23209,
49,
16762,
36,
16,
13924,
17,
33538,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
17,
62,
8726,
11,
10662,
28202,
79,
17320,
49,
87,
13434,
17,
28,
80,
28202,
79,
17320,
49,
87,
13434,
17,
11,
36650,
940,
38,
62,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
28,
23209,
940,
38,
62,
46,
4720,
17,
7397,
40616,
4561,
67,
19076,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
26447,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
7222,
2848,
24539,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
7222,
2848,
24539,
11,
36650,
34,
76,
10267,
82,
28,
23209,
34,
76,
10267,
82,
11,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
10267,
82,
28,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
10267,
82,
11,
36650,
940,
11230,
4720,
16,
49,
10267,
82,
28,
23209,
940,
11230,
4720,
16,
49,
10267,
82,
11,
36650,
1821,
38,
62,
46,
4720,
39,
54,
22785,
19076,
28,
23209,
1821,
38,
62,
46,
4720,
39,
54,
22785,
19076,
11,
651,
17320,
48,
50,
46428,
40109,
28,
1136,
17320,
48,
50,
46428,
40109,
11,
36650,
48,
8141,
23,
31380,
16962,
10962,
28,
23209,
48,
8141,
23,
31380,
16962,
10962,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
6030,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
62,
4134,
6030,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
16,
62,
45376,
62,
26447,
11,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
44402,
276,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
42492,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
42492,
11,
36650,
49,
16762,
36,
16,
46047,
8726,
28,
23209,
49,
16762,
36,
16,
46047,
8726,
11,
697,
28202,
79,
51,
2596,
13434,
28,
4134,
28202,
79,
51,
2596,
13434,
11,
36650,
36,
16,
51,
16,
10669,
6030,
28,
23209,
36,
16,
51,
16,
10669,
6030,
11,
264,
46428,
6690,
85,
13434,
28,
28202,
79,
6690,
85,
13434,
11,
2657,
62,
9655,
62,
7222,
62,
37,
87,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
37,
87,
62,
8048,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
44402,
276,
11,
36650,
49,
16762,
43,
5837,
28,
23209,
49,
16762,
43,
5837,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
44402,
276,
11,
697,
28202,
79,
8291,
10669,
28,
4134,
28202,
79,
8291,
10669,
11,
25064,
14749,
28,
17597,
14749,
11,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
19,
28,
80,
28202,
79,
45,
4246,
49,
87,
13434,
19,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
45376,
62,
2348,
1670,
11,
264,
46428,
7556,
24539,
28,
28202,
79,
7556,
24539,
11,
269,
16993,
76,
33484,
26623,
21,
28,
66,
16993,
76,
33484,
26623,
21,
11,
36650,
36,
16,
46047,
26628,
12468,
19076,
28,
23209,
36,
16,
46047,
26628,
12468,
19076,
11,
36650,
16,
8264,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
28,
23209,
16,
8264,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
11,
36650,
34,
76,
16,
70,
40,
79,
10267,
82,
28,
23209,
34,
76,
16,
70,
40,
79,
10267,
82,
11,
36650,
49,
16762,
36,
16,
13924,
17,
39516,
28,
23209,
49,
16762,
36,
16,
13924,
17,
39516,
11,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
30150,
28,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
30150,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
4933,
11,
10662,
28202,
79,
17320,
46047,
13434,
17,
28,
80,
28202,
79,
17320,
46047,
13434,
17,
11,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
45975,
11,
10662,
28202,
79,
17320,
46047,
13434,
16,
28,
80,
28202,
79,
17320,
46047,
13434,
16,
11,
10662,
28202,
79,
17320,
34525,
28,
80,
28202,
79,
17320,
34525,
11,
36650,
49,
16762,
36,
16,
13924,
17,
32,
1797,
28,
23209,
49,
16762,
36,
16,
13924,
17,
32,
1797,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
17213,
45376,
62,
2348,
1670,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
44402,
276,
11,
2657,
62,
9655,
62,
37,
1565,
62,
26447,
28,
9517,
62,
9655,
62,
37,
1565,
62,
26447,
11,
36650,
45,
4246,
48,
50,
46428,
10962,
28,
23209,
45,
4246,
48,
50,
46428,
10962,
11,
36650,
940,
38,
62,
46,
6500,
62,
9122,
23004,
28,
23209,
940,
38,
62,
46,
6500,
62,
9122,
23004,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
49,
16762,
62,
32,
1797,
62,
26447,
11,
36650,
17,
62,
20,
15548,
4093,
446,
30150,
28,
23209,
17,
62,
20,
15548,
4093,
446,
30150,
11,
36650,
36,
16,
46047,
8726,
28,
23209,
36,
16,
46047,
8726,
11,
36650,
48,
8141,
23,
31380,
16962,
30150,
28,
23209,
48,
8141,
23,
31380,
16962,
30150,
11,
36650,
49,
16762,
39516,
1891,
28,
23209,
49,
16762,
39516,
1891,
11,
36650,
48,
8141,
23,
31380,
26628,
12468,
19076,
28,
23209,
48,
8141,
23,
31380,
26628,
12468,
19076,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
17,
62,
8048,
11,
2657,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
45975,
28,
9517,
62,
9655,
62,
49,
16762,
62,
50,
5837,
16,
62,
45975,
11,
36650,
49,
16762,
36,
16,
13924,
16,
45376,
28,
23209,
49,
16762,
36,
16,
13924,
16,
45376,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
16,
62,
44402,
276,
11,
10662,
28202,
79,
45,
4246,
49,
87,
13434,
16,
28,
80,
28202,
79,
45,
4246,
49,
87,
13434,
16,
11,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
28,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
11,
10852,
10962,
28,
43384,
10962,
11,
36650,
940,
38,
62,
27799,
2943,
446,
10962,
28,
23209,
940,
38,
62,
27799,
2943,
446,
10962,
11,
36650,
1821,
38,
62,
27799,
3535,
11224,
19076,
28,
23209,
1821,
38,
62,
27799,
3535,
11224,
19076,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
51,
2596,
13434,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
51,
2596,
13434,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
17,
20802,
3646,
676,
11,
36650,
940,
38,
62,
46,
4720,
17,
7397,
446,
10267,
82,
28,
23209,
940,
38,
62,
46,
4720,
17,
7397,
446,
10267,
82,
11,
36650,
34,
76,
16,
70,
50,
46428,
10962,
28,
23209,
34,
76,
16,
70,
50,
46428,
10962,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
42492,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
42492,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
33538,
62,
2348,
1670,
11,
36650,
16,
8264,
17,
3185,
419,
16,
50,
5837,
3109,
396,
28,
23209,
16,
8264,
17,
3185,
419,
16,
50,
5837,
3109,
396,
11,
697,
28202,
79,
34525,
28,
4134,
28202,
79,
34525,
11,
763,
16962,
33111,
28,
1073,
16962,
33111,
11,
36650,
16,
11230,
17,
4503,
446,
10962,
28,
23209,
16,
11230,
17,
4503,
446,
10962,
11,
24308,
28,
10494,
1014,
11,
10662,
28202,
79,
45,
4246,
42492,
28,
80,
28202,
79,
45,
4246,
42492,
11,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
44402,
276,
11,
36650,
4061,
17430,
7707,
16762,
26628,
12468,
19076,
28,
23209,
4061,
17430,
7707,
16762,
26628,
12468,
19076,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
34525,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
34525,
11,
36650,
36,
16,
51,
16,
49,
16762,
10669,
6030,
28,
23209,
36,
16,
51,
16,
49,
16762,
10669,
6030,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
16,
50,
5837,
3109,
396,
11,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
28,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
40616,
4561,
67,
19076,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
17,
62,
8048,
11,
264,
46428,
44,
76,
24539,
28,
28202,
79,
44,
76,
24539,
11,
36650,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
30150,
28,
23209,
940,
11230,
36,
6369,
5837,
51,
403,
540,
16962,
30150,
11,
36650,
4061,
17430,
6322,
419,
7390,
87,
28,
23209,
4061,
17430,
6322,
419,
7390,
87,
11,
264,
46428,
33484,
26623,
28,
28202,
79,
33484,
26623,
11,
18316,
62,
862,
84,
32,
62,
9362,
28,
7091,
1652,
62,
862,
84,
32,
62,
9362,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
16,
62,
8048,
11,
36650,
49,
16762,
17320,
50,
46428,
3109,
396,
28,
23209,
49,
16762,
17320,
50,
46428,
3109,
396,
11,
36650,
17320,
55,
5837,
16,
39709,
24539,
28,
23209,
17320,
55,
5837,
16,
39709,
24539,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
19,
62,
4933,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
18,
62,
4933,
11,
36650,
36,
16,
16962,
10267,
82,
28,
23209,
36,
16,
16962,
10267,
82,
8,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
43145,
12,
8895,
33,
1600,
299,
4246,
55,
5837,
17,
51,
403,
540,
6030,
28,
429,
86,
55,
5837,
17,
51,
403,
540,
6030,
11,
2657,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
45,
4246,
62,
50,
5837,
62,
44402,
276,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
17,
62,
32,
1797,
62,
26447,
11,
36650,
17,
62,
20,
15548,
8697,
419,
17,
8726,
28,
23209,
17,
62,
20,
15548,
8697,
419,
17,
8726,
11,
36650,
16,
8264,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
28,
23209,
16,
8264,
17,
1581,
16762,
13924,
17,
50,
5837,
3109,
396,
11,
651,
50,
46428,
40109,
28,
1136,
50,
46428,
40109,
11,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
28,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
45975,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
16,
20802,
3646,
676,
11,
36650,
47,
76,
10267,
82,
28,
23209,
47,
76,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
4933,
11,
10662,
28202,
79,
17320,
46047,
13434,
19,
28,
80,
28202,
79,
17320,
46047,
13434,
19,
11,
18316,
62,
31042,
28,
7091,
1652,
62,
31042,
11,
36650,
47,
76,
30150,
28,
23209,
47,
76,
30150,
11,
36650,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
30150,
28,
23209,
17,
62,
20,
34,
76,
16,
70,
50,
46428,
30150,
11,
36650,
16,
11230,
17,
2640,
46428,
18,
30150,
28,
23209,
16,
11230,
17,
2640,
46428,
18,
30150,
11,
269,
16993,
76,
33484,
26623,
19,
28,
66,
16993,
76,
33484,
26623,
19,
11,
2124,
46428,
39709,
24539,
51,
403,
1799,
28,
26152,
79,
39709,
24539,
51,
403,
1799,
11,
2657,
62,
9655,
62,
37,
1565,
62,
4826,
11265,
28,
9517,
62,
9655,
62,
37,
1565,
62,
4826,
11265,
11,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
28,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
17,
39516,
1891,
11,
850,
3262,
28,
7266,
3262,
11,
2657,
62,
9655,
62,
7222,
62,
13924,
17,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
13924,
17,
62,
4933,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
45975,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
45975,
11,
18316,
62,
24408,
62,
2202,
28,
7091,
1652,
62,
24408,
62,
2202,
11,
36650,
48,
8141,
23,
31380,
13924,
10267,
82,
28,
23209,
48,
8141,
23,
31380,
13924,
10267,
82,
11,
36650,
36,
16,
13924,
16,
39516,
28,
23209,
36,
16,
13924,
16,
39516,
11,
36650,
940,
38,
62,
27799,
2767,
87,
8726,
28,
23209,
940,
38,
62,
27799,
2767,
87,
8726,
11,
36650,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
28,
23209,
940,
38,
62,
46,
4720,
39,
54,
39516,
1891,
11,
36650,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
28,
23209,
49,
16762,
19,
62,
1495,
38,
62,
27799,
4503,
333,
4561,
67,
19076,
11,
763,
16962,
24564,
28,
1073,
16962,
24564,
11,
28642,
84,
16934,
28,
21533,
84,
16934,
11,
36650,
16,
11230,
17,
4503,
446,
30150,
28,
23209,
16,
11230,
17,
4503,
446,
30150,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
9414,
22785,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
9414,
22785,
11,
4336,
28,
24408,
11,
36650,
940,
11230,
4720,
18,
7397,
446,
30150,
28,
23209,
940,
11230,
4720,
18,
7397,
446,
30150,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
8048,
11,
2657,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
55,
5837,
16,
62,
8048,
11,
36650,
36,
16,
10267,
82,
28,
23209,
36,
16,
10267,
82,
11,
2657,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
16,
28,
9517,
62,
9655,
62,
49,
16762,
62,
46047,
62,
8048,
16,
11,
36650,
39,
54,
12468,
19076,
28,
23209,
39,
54,
12468,
19076,
11,
2657,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
8048,
28,
9517,
62,
9655,
62,
49,
16762,
62,
20802,
3705,
5837,
16,
62,
8048,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
17,
62,
43,
1531,
16,
62,
8048,
11,
36650,
19,
62,
1495,
38,
62,
46,
4720,
17320,
5760,
28,
23209,
19,
62,
1495,
38,
62,
46,
4720,
17320,
5760,
11,
269,
16993,
76,
33484,
26623,
17,
28,
66,
16993,
76,
33484,
26623,
17,
11,
12840,
17932,
19,
28,
46670,
17932,
19,
11,
36650,
48,
8141,
23,
31380,
13924,
10962,
28,
23209,
48,
8141,
23,
31380,
13924,
10962,
11,
36650,
34,
22332,
9655,
446,
10267,
82,
28,
23209,
34,
22332,
9655,
446,
10267,
82,
11,
36650,
8291,
2781,
19076,
28,
23209,
8291,
2781,
19076,
11,
264,
46428,
42492,
28,
28202,
79,
42492,
11,
10662,
28202,
79,
45,
4246,
34525,
28,
80,
28202,
79,
45,
4246,
34525,
11,
36650,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10962,
28,
23209,
19,
62,
1495,
38,
62,
27799,
4503,
446,
10962,
11,
36650,
1821,
38,
62,
27799,
3535,
1531,
19,
39516,
19076,
28,
23209,
1821,
38,
62,
27799,
3535,
1531,
19,
39516,
19076,
11,
36650,
48,
8141,
23,
31380,
10267,
82,
28,
23209,
48,
8141,
23,
31380,
10267,
82,
11,
36650,
1821,
38,
62,
27799,
4503,
446,
10267,
82,
28,
23209,
1821,
38,
62,
27799,
4503,
446,
10267,
82,
11,
18316,
62,
862,
84,
33,
62,
9362,
28,
7091,
1652,
62,
862,
84,
33,
62,
9362,
11,
36650,
4061,
17430,
7707,
16762,
46047,
8726,
28,
23209,
4061,
17430,
7707,
16762,
46047,
8726,
11,
36650,
17,
62,
20,
70,
62,
28202,
79,
53,
5978,
496,
28,
23209,
17,
62,
20,
70,
62,
28202,
79,
53,
5978,
496,
11,
36650,
34,
22332,
9655,
446,
10962,
28,
23209,
34,
22332,
9655,
446,
10962,
11,
36650,
49,
16762,
8291,
2781,
19076,
28,
23209,
49,
16762,
8291,
2781,
19076,
11,
36650,
37,
87,
8726,
28,
23209,
37,
87,
8726,
11,
36650,
49,
87,
40778,
27654,
28,
23209,
49,
87,
40778,
27654,
11,
36650,
16,
8264,
17,
2394,
87,
8726,
28,
23209,
16,
8264,
17,
2394,
87,
8726,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
53,
5978,
496,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
53,
5978,
496,
11,
36650,
940,
11230,
4720,
16,
7397,
446,
10267,
82,
28,
23209,
940,
11230,
4720,
16,
7397,
446,
10267,
82,
11,
2657,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
49,
16762,
62,
13924,
16,
62,
33538,
62,
2348,
1670,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
4933,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
16,
62,
4933,
11,
36650,
940,
38,
62,
27799,
4720,
65,
752,
82,
28,
23209,
940,
38,
62,
27799,
4720,
65,
752,
82,
11,
2657,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
51,
16,
62,
7222,
62,
32,
1797,
62,
2348,
1670,
11,
36650,
16,
2188,
17,
78,
62,
28202,
79,
7556,
24539,
28,
23209,
16,
2188,
17,
78,
62,
28202,
79,
7556,
24539,
11,
18316,
62,
11242,
11197,
28,
7091,
1652,
62,
11242,
11197,
11,
2657,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
20802,
3705,
5837,
17,
62,
44402,
276,
11,
2657,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
44402,
276,
28,
9517,
62,
9655,
62,
49,
16762,
62,
17320,
62,
50,
5837,
62,
44402,
276,
11,
36650,
4061,
17430,
9697,
446,
10267,
82,
28,
23209,
4061,
17430,
9697,
446,
10267,
82,
11,
2657,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
55,
5837,
17,
62,
8048,
11,
36650,
48,
8141,
23,
31380,
46047,
8726,
28,
23209,
48,
8141,
23,
31380,
46047,
8726,
11,
36650,
36,
16,
13924,
17,
32,
1797,
28,
23209,
36,
16,
13924,
17,
32,
1797,
11,
2657,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
17,
28,
9517,
62,
9655,
62,
7222,
62,
46047,
62,
8048,
17,
11,
264,
46428,
8291,
10669,
28,
28202,
79,
8291,
10669,
11,
36650,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
28,
23209,
19,
62,
1495,
38,
62,
27799,
3535,
11224,
1891,
11,
36650,
45,
4246,
55,
5837,
17,
51,
403,
540,
6030,
28,
23209,
45,
4246,
55,
5837,
17,
51,
403,
540,
6030,
11,
697,
28202,
79,
53,
5978,
496,
28,
4134,
28202,
79,
53,
5978,
496,
11,
36650,
49,
16762,
940,
38,
62,
27799,
2640,
5837,
16,
28,
23209,
49,
16762,
940,
38,
62,
27799,
2640,
5837,
16,
11,
36650,
16,
11230,
17,
1581,
16762,
13924,
18,
39,
54,
4561,
67,
28,
23209,
16,
11230,
17,
1581,
16762,
13924,
18,
39,
54,
4561,
67,
11,
36650,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
28,
23209,
940,
38,
62,
46,
4720,
17,
48587,
19416,
5837,
17,
39516,
1891,
11,
10662,
28202,
79,
45,
4246,
46047,
13434,
18,
28,
80,
28202,
79,
45,
4246,
46047,
13434,
18,
11,
36650,
940,
38,
62,
46,
4720,
17,
49,
14815,
28,
23209,
940,
38,
62,
46,
4720,
17,
49,
14815,
11,
697,
28202,
79,
44,
76,
24539,
28,
4134,
28202,
79,
44,
76,
24539,
11,
36650,
940,
38,
62,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
28,
23209,
940,
38,
62,
46,
4720,
17,
48587,
54,
4561,
67,
19076,
11,
36650,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
28,
23209,
940,
38,
62,
46,
4720,
17,
6998,
5837,
16,
39516,
1891,
11,
36650,
16,
8264,
17,
4503,
446,
30150,
28,
23209,
16,
8264,
17,
4503,
446,
30150,
11,
36650,
48,
8141,
23,
31380,
49,
16762,
26628,
12468,
19076,
28,
23209,
48,
8141,
23,
31380,
49,
16762,
26628,
12468,
19076,
11,
2124,
46428,
51,
403,
540,
6030,
28,
26152,
79,
51,
403,
540,
6030,
11,
2657,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
8048,
28,
9517,
62,
9655,
62,
7222,
62,
48,
50,
5837,
16,
62,
43,
1531,
19,
62,
8048,
11,
36650,
4061,
17430,
35,
8048,
12124,
28,
23209,
4061,
17430,
35,
8048,
12124,
11,
2657,
10267,
82,
28,
9517,
10267,
82,
11,
10436,
8895,
33,
28,
282,
1670,
8895,
33,
11,
697,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
28,
4134,
55,
5837,
16,
39709,
24539,
51,
403,
1799,
11,
10662,
28202,
79,
45,
4246,
46047,
13434,
19,
28,
80,
28202,
79,
45,
4246,
46047,
13434,
19,
11,
36650,
36,
16,
51,
16,
10267,
82,
28,
23209,
36,
16,
51,
16,
10267,
82,
11,
36650,
17320,
50,
46428,
3109,
396,
28,
23209,
17320,
50,
46428,
3109,
396,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
26447,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
32,
1797,
62,
26447,
11,
2657,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
28,
9517,
62,
9655,
62,
36,
16,
62,
7222,
62,
13924,
17,
62,
45376,
62,
2348,
1670,
11,
36650,
4061,
17430,
7707,
16762,
34,
40616,
12468,
19076,
28,
23209,
4061,
17430,
7707,
16762,
34,
40616,
12468,
19076,
11,
36650,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
62,
8726,
28,
23209,
1821,
38,
62,
46,
4720,
48,
28202,
79,
17,
43,
1531,
16,
62,
8726,
11,
697,
28202,
79,
38143,
3610,
28,
4134,
28202,
79,
38143,
3610,
11,
2657,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
44402,
276,
28,
9517,
62,
9655,
62,
7222,
62,
50,
5837,
18,
62,
44402,
276,
8,
198
] | 2.391815 | 104,049 |
from setuptools import setup
# create __version__
exec(open('./_version.py').read())
setup(
name="notedown",
version=__version__,
description="Convert markdown to IPython notebook.",
author="Aaron O'Leary",
author_email='dev@aaren.me',
url='http://github.com/aaren/notedown',
install_requires=['ipython', ],
entry_points={
'console_scripts': [
'notedown = notedown:cli',
],
}
)
| [
6738,
900,
37623,
10141,
1330,
9058,
198,
198,
2,
2251,
11593,
9641,
834,
198,
18558,
7,
9654,
7,
4458,
47835,
9641,
13,
9078,
27691,
961,
28955,
198,
198,
40406,
7,
198,
220,
220,
220,
1438,
2625,
1662,
276,
593,
1600,
198,
220,
220,
220,
2196,
28,
834,
9641,
834,
11,
198,
220,
220,
220,
6764,
2625,
3103,
1851,
1317,
2902,
284,
6101,
7535,
20922,
33283,
198,
220,
220,
220,
1772,
2625,
34451,
440,
6,
48487,
1600,
198,
220,
220,
220,
1772,
62,
12888,
11639,
7959,
31,
64,
5757,
13,
1326,
3256,
198,
220,
220,
220,
19016,
11639,
4023,
1378,
12567,
13,
785,
14,
64,
5757,
14,
1662,
276,
593,
3256,
198,
220,
220,
220,
2721,
62,
47911,
28,
17816,
541,
7535,
3256,
16589,
198,
220,
220,
220,
5726,
62,
13033,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
62,
46521,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1662,
276,
593,
796,
4367,
593,
25,
44506,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
1782,
198,
8,
198
] | 2.413043 | 184 |
# This is a reusable webcraawler architecture that can be adapted to scrape any webstie.
# RESULTS:
# Roughly 24 seconds per thousand courses scraped for ThreadPoolExecutor vs 63s for unthreaded script.
# This is a very basic implementation of multithreading in order to show the proof of concept, but is a good base to build off of.
import requests
from bs4 import BeautifulSoup
import csv
from concurrent.futures import ProcessPoolExecutor, as_completed, ThreadPoolExecutor
import time
import logging
from mitopencourseware_crawler_worker import mit_crawler
# Exports data to a formatted csv file, this will be replaced with multithreaded API calls to the Cassandra Prisma Database
# or on the cloud in production, it will be sent to the S3 temporary database to be picked up by the AWS Lambda funtion which will push it to the Cassandra Database
| [
2,
770,
318,
257,
42339,
3992,
66,
430,
707,
1754,
10959,
326,
460,
307,
16573,
284,
42778,
597,
3992,
301,
494,
13,
198,
198,
2,
15731,
35342,
25,
198,
2,
29949,
306,
1987,
4201,
583,
7319,
10902,
15881,
276,
329,
14122,
27201,
23002,
38409,
3691,
8093,
82,
329,
555,
16663,
276,
4226,
13,
198,
2,
770,
318,
257,
845,
4096,
7822,
286,
1963,
342,
25782,
287,
1502,
284,
905,
262,
6617,
286,
3721,
11,
475,
318,
257,
922,
2779,
284,
1382,
572,
286,
13,
198,
198,
11748,
7007,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198,
11748,
269,
21370,
198,
6738,
24580,
13,
69,
315,
942,
1330,
10854,
27201,
23002,
38409,
11,
355,
62,
785,
16838,
11,
14122,
27201,
23002,
38409,
198,
11748,
640,
198,
11748,
18931,
198,
6738,
10255,
9654,
17319,
1574,
62,
66,
39464,
62,
28816,
1330,
10255,
62,
66,
39464,
628,
198,
198,
2,
1475,
3742,
1366,
284,
257,
39559,
269,
21370,
2393,
11,
428,
481,
307,
6928,
351,
1963,
342,
961,
276,
7824,
3848,
284,
262,
46750,
35417,
64,
24047,
220,
198,
2,
393,
319,
262,
6279,
287,
3227,
11,
340,
481,
307,
1908,
284,
262,
311,
18,
8584,
6831,
284,
307,
6497,
510,
416,
262,
30865,
21114,
6814,
1257,
5378,
543,
481,
4574,
340,
284,
262,
46750,
24047,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
628,
198
] | 3.782609 | 230 |
from typing import List, Optional, NewType, Tuple, NamedTuple, Type
import attr
from jinja2 import Template as JinjaTemplate, StrictUndefined
from genyrator.entities.Entity import Entity
from genyrator.path import create_relative_path
OutPath = NewType('OutPath', Tuple[List[str], str])
Import = NamedTuple('Import',
[('module_name', str),
('imports', List[str]), ])
| [
6738,
19720,
1330,
7343,
11,
32233,
11,
968,
6030,
11,
309,
29291,
11,
34441,
51,
29291,
11,
5994,
198,
11748,
708,
81,
198,
6738,
474,
259,
6592,
17,
1330,
37350,
355,
17297,
6592,
30800,
11,
520,
2012,
31319,
18156,
198,
198,
6738,
2429,
2417,
1352,
13,
298,
871,
13,
32398,
1330,
20885,
198,
6738,
2429,
2417,
1352,
13,
6978,
1330,
2251,
62,
43762,
62,
6978,
198,
198,
7975,
15235,
796,
968,
6030,
10786,
7975,
15235,
3256,
309,
29291,
58,
8053,
58,
2536,
4357,
965,
12962,
198,
20939,
796,
34441,
51,
29291,
10786,
20939,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
10786,
21412,
62,
3672,
3256,
965,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
320,
3742,
3256,
220,
220,
220,
220,
7343,
58,
2536,
46570,
33761,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198
] | 2.60241 | 166 |
# uncompyle6 version 3.3.5
# Python bytecode 2.7 (62211)
# Decompiled from: Python 3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)]
# Embedded file name: c:\Jenkins\live\output\win_64_static\Release\python-bundle\MIDI Remote Scripts\Push2\mode_collector.py
# Compiled at: 2018-11-30 15:48:11
from __future__ import absolute_import, print_function, unicode_literals
from ableton.v2.base import listenable_property, listens, EventObject | [
2,
34318,
2349,
21,
2196,
513,
13,
18,
13,
20,
198,
2,
11361,
18022,
8189,
362,
13,
22,
357,
21,
1828,
1157,
8,
198,
2,
4280,
3361,
3902,
422,
25,
11361,
513,
13,
22,
13,
18,
357,
12286,
11,
2758,
1987,
13130,
11,
1315,
25,
1959,
25,
4349,
8,
685,
5653,
34,
410,
13,
1129,
1314,
5598,
1643,
357,
28075,
2414,
15437,
198,
2,
13302,
47238,
2393,
1438,
25,
269,
7479,
44875,
5331,
59,
12583,
59,
22915,
59,
5404,
62,
2414,
62,
12708,
59,
26362,
59,
29412,
12,
65,
31249,
59,
44,
2389,
40,
21520,
12327,
82,
59,
49222,
17,
59,
14171,
62,
33327,
273,
13,
9078,
198,
2,
3082,
3902,
379,
25,
2864,
12,
1157,
12,
1270,
1315,
25,
2780,
25,
1157,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
11,
3601,
62,
8818,
11,
28000,
1098,
62,
17201,
874,
198,
6738,
1498,
1122,
13,
85,
17,
13,
8692,
1330,
6004,
540,
62,
26745,
11,
35019,
11,
8558,
10267
] | 2.807453 | 161 |
from gensim import corpora, models, similarities, matutils,utils
from gensim.models import KeyedVectors
import numpy as np
#Word2vec Experiment
testString = ['PAST_MEDICAL_HISTORY','PAST_SURGICAL_HISTORY','PHYSICAL_EXAMINATION']
'''
word_vectors = KeyedVectors.load_word2vec_format('~/Downloads/GoogleNews-vectors-negative300.bin', binary=True)
#model.save("file.txt")
print word_vectors.most_similar(positive=['woman', 'king'], negative=['man'])
print "******************************************************"
print word_vectors.similarity('woman', 'man')
#print word_vectors.most_similar(positive=['san_francisco'])
print word_vectors.most_similar(positive=['SURGICAL'])
#word_vectors.similarity(testString[0],testString[1])
'''
a=[1,4,3,6,3,6]
print a[:-1]
#print zip(a[:-1],a[1:])
print np.random.randn(3, 2)
| [
6738,
308,
641,
320,
1330,
3990,
64,
11,
4981,
11,
20594,
11,
2603,
26791,
11,
26791,
198,
6738,
308,
641,
320,
13,
27530,
1330,
7383,
276,
53,
478,
669,
198,
11748,
299,
32152,
355,
45941,
198,
198,
2,
26449,
17,
35138,
29544,
198,
9288,
10100,
796,
37250,
47,
11262,
62,
30733,
20151,
62,
39,
42480,
41707,
47,
11262,
62,
50,
4261,
38,
20151,
62,
39,
42480,
41707,
11909,
16309,
20151,
62,
6369,
2390,
1268,
6234,
20520,
198,
7061,
6,
198,
4775,
62,
303,
5217,
796,
7383,
276,
53,
478,
669,
13,
2220,
62,
4775,
17,
35138,
62,
18982,
10786,
93,
14,
10002,
82,
14,
11708,
9980,
12,
303,
5217,
12,
31591,
6200,
13,
8800,
3256,
13934,
28,
17821,
8,
198,
2,
19849,
13,
21928,
7203,
7753,
13,
14116,
4943,
198,
4798,
1573,
62,
303,
5217,
13,
1712,
62,
38610,
7,
24561,
28,
17816,
8580,
3256,
705,
3364,
6,
4357,
4633,
28,
17816,
805,
6,
12962,
198,
4798,
366,
17174,
8412,
2466,
1174,
1,
198,
4798,
1573,
62,
303,
5217,
13,
38610,
414,
10786,
8580,
3256,
705,
805,
11537,
198,
2,
4798,
220,
1573,
62,
303,
5217,
13,
1712,
62,
38610,
7,
24561,
28,
17816,
12807,
62,
8310,
1192,
4861,
6,
12962,
198,
4798,
220,
1573,
62,
303,
5217,
13,
1712,
62,
38610,
7,
24561,
28,
17816,
50,
4261,
38,
20151,
6,
12962,
198,
198,
2,
4775,
62,
303,
5217,
13,
38610,
414,
7,
9288,
10100,
58,
15,
4357,
9288,
10100,
58,
16,
12962,
198,
198,
7061,
6,
198,
64,
41888,
16,
11,
19,
11,
18,
11,
21,
11,
18,
11,
21,
60,
198,
4798,
257,
58,
21912,
16,
60,
198,
2,
4798,
19974,
7,
64,
58,
21912,
16,
4357,
64,
58,
16,
25,
12962,
198,
4798,
45941,
13,
25120,
13,
25192,
77,
7,
18,
11,
362,
8,
198
] | 2.741611 | 298 |
from base64 import decodestring as b64decode
allowed_failures = [
'https://ranobelib.me/',
'https://www.aixdzs.com/',
'https://webnovelindonesia.com/',
b64decode("aHR0cHM6Ly9jb21yYWRlbWFvLmNvbS8=".encode()).decode()
]
test_user_inputs = {
b64decode("aHR0cHM6Ly9jb21yYWRlbWFvLmNvbS8=".encode()).decode(): [
b64decode(
"aHR0cHM6Ly9jb21yYWRlbWFvLmNvbS9ub3ZlbC90c3VydWdpLW5vLWpvb3UtdG8tcmFrdWluLW5vLWtvLw==".encode()).decode()
],
'https://novelsrock.com/': [
'https://novelsrock.com/novel/the-returner/',
'kuro'
],
'http://gravitytales.com/': [
'http://gravitytales.com/posts/novel/a-dragons-curiosity'
],
'http://novelfull.com/': [
'http://novelfull.com/dungeon-defense.html',
'Sinister Ex Girlfriend',
],
'http://www.machinenoveltranslation.com/': [
'http://www.machinenoveltranslation.com/a-thought-through-eternity',
],
'http://zenithnovels.com/': [
'http://zenithnovels.com/infinity-armament/',
],
'https://anythingnovel.com/': [
'https://anythingnovel.com/novel/king-of-gods/',
],
'https://boxnovel.com/': [
'https://boxnovel.com/novel/the-rest-of-my-life-is-for-you/',
'cultivation chat',
],
'https://crescentmoon.blog/': [
'https://crescentmoon.blog/dark-blue-and-moonlight/',
],
'https://litnet.com/': [
'https://litnet.com/en/book/candy-lips-1-b106232',
'candy lips',
],
'https://lnmtl.com/': [
'https://lnmtl.com/novel/the-strongest-dan-god',
],
'https://m.chinesefantasynovels.com/': [
'https://m.chinesefantasynovels.com/3838/',
],
'https://m.novelspread.com/': [
'https://m.novelspread.com/novel/the-legend-of-the-concubine-s-daughter-minglan',
],
'https://m.romanticlovebooks.com/': [
'https://m.romanticlovebooks.com/xuanhuan/207.html',
],
'http://www.tiknovel.com/': [
'http://www.tiknovel.com/book/index?id=717',
],
'https://www.wuxiaworld.co/': [
'sword',
],
'https://m.wuxiaworld.co/': [
'https://m.wuxiaworld.co/Reincarnation-Of-The-Strongest-Sword-God/',
],
'https://meionovel.id/': [
'https://meionovel.id/novel/the-legendary-mechanic/',
],
'https://mtled-novels.com/': [
'https://mtled-novels.com/novels/great-ruler/',
'great ruler'
],
'https://bestlightnovel.com/': [
'https://bestlightnovel.com/novel_888103800',
'martial'
],
'https://novelplanet.com/': [
'https://novelplanet.com/Novel/Returning-from-the-Immortal-World',
'immortal'
],
'https://www.volarenovels.com/': [
'https://www.volarenovels.com/novel/adorable-creature-attacks',
],
'https://webnovel.online/': [
'https://webnovel.online/full-marks-hidden-marriage-pick-up-a-son-get-a-free-husband',
],
'https://www.idqidian.us/': [
'https://www.idqidian.us/novel/peerless-martial-god/'
],
'https://www.novelall.com/': [
'https://www.novelall.com/novel/Virtual-World-Close-Combat-Mage.html',
'combat'
],
'https://www.novelspread.com/': [
'https://www.novelspread.com/novel/the-legend-of-the-concubine-s-daughter-minglan'
],
'https://www.readlightnovel.org/': [
'https://www.readlightnovel.org/top-furious-doctor-soldier'
],
'https://www.romanticlovebooks.com/': [
'https://www.romanticlovebooks.com/xianxia/251.html'
],
'https://www.royalroad.com/': [
'https://www.royalroad.com/fiction/21220/mother-of-learning',
'mother'
],
'https://www.scribblehub.com/': [
'https://www.scribblehub.com/series/73550/modern-life-of-the-exalted-immortal/',
'cultivation'
],
'https://www.webnovel.com/': [
'https://www.webnovel.com/book/8212987205006305/Trial-Marriage-Husband%3A-Need-to-Work-Hard',
'martial',
],
'https://www.worldnovel.online/': [
'https://www.worldnovel.online/novel/solo-leveling/',
],
'https://www.wuxiaworld.co/': [
'https://www.wuxiaworld.co/Reincarnation-Of-The-Strongest-Sword-God/',
'sword'
],
'https://rewayat.club/': [
'https://rewayat.club/novel/almighty-sword-domain/'
],
'https://www.wuxiaworld.com/': [
'https://www.wuxiaworld.com/novel/martial-god-asura',
'martial',
],
'https://creativenovels.com/': [
'https://creativenovels.com/novel/eternal-reverence/',
],
'https://www.tapread.com/': [
'https://www.tapread.com/book/detail/80',
],
'http://www.tapread.com/': [
'http://www.tapread.com/book/detail/80',
],
'https://readnovelfull.com/': [
'https://readnovelfull.com/lord-of-all-realms.html',
'cultivation'
],
'https://myoniyonitranslations.com/': [
'https://myoniyonitranslations.com/top-management/',
'https://myoniyonitranslations.com/category/god-of-tennis',
],
'https://babelnovel.com/': [
'https://babelnovel.com/books/ceo-let-me-go',
'dazzle Good'
],
'https://wuxiaworld.online/': [
'https://wuxiaworld.online/trial-marriage-husband-need-to-work-hard',
'cultivation',
],
'https://www.novelv.com/': [
'https://www.novelv.com/0/349/'
],
'http://fullnovel.live/': [
'http://fullnovel.live/novel-a-will-eternal',
'will eternal',
],
'https://www.noveluniverse.com/': [
'https://www.noveluniverse.com/index/novel/info/id/15.html'
],
'https://novelraw.blogspot.com/': [
'https://novelraw.blogspot.com/2019/03/dragon-king-son-in-law-mtl.html'
],
'https://light-novel.online/': [
'https://light-novel.online/great-tyrannical-deity',
'tyrannical'
],
'https://www.rebirth.online/': [
'https://www.rebirth.online/novel/upside-down'
],
'https://www.jieruihao.cn/': [
'https://www.jieruihao.cn/novel/against-the-gods/',
],
'https://www.wattpad.com/': [
'https://www.wattpad.com/story/87505567-loving-mr-jerkface-%E2%9C%94%EF%B8%8F'
],
'https://novelgo.id/': [
'https://novelgo.id/novel/the-mightiest-leveling-system/'
],
'https://yukinovel.me/': [
'https://yukinovel.me/novel/the-second-coming-of-avarice/',
],
'https://www.asianhobbyist.com/': [
'https://www.asianhobbyist.com/series/that-time-i-got-reincarnated-as-a-slime/'
],
'https://kisslightnovels.info/': [
'https://kisslightnovels.info/novel/solo-leveling/'
],
'https://novelonlinefull.com/': [
'https://novelonlinefull.com/novel/abo1520855001564322110'
],
'https://www.machine-translation.org/': [
'https://www.machine-translation.org/novel/bace21c9b10d34e9/world-of-cultivation.html'
],
'https://www.fanfiction.net/': [
'https://www.fanfiction.net/s/7268451/1/Facebook-For-wizards'
],
'https://www.mtlnovel.com/': [
'https://www.mtlnovel.com/trapped-in-a-typical-idol-drama/'
],
'https://wordexcerpt.com/': [
'https://wordexcerpt.com/series/transmigration-raising-the-child-of-the-male-lead-boss/'
],
'https://www.translateindo.com/': [
'https://www.translateindo.com/demon-wang-golden-status-favoured-fei/'
],
'https://ranobelib.me/': [
'https://ranobelib.me/sozvezdie-klinka'
],
'https://novelringan.com/': [
'https://novelringan.com/series/the-most-loving-marriage-in-history-master-mus-pampered-wife/'
],
'https://wuxiaworld.site/': [
'https://wuxiaworld.site/novel/only-i-level-up/'
],
'https://id.mtlnovel.com/': [
'https://id.mtlnovel.com/the-strongest-plane-becomes-god/'
],
'https://www.shinsori.com/': [
'https://www.shinsori.com/akuyaku-reijou-ni-nanka-narimasen/'
],
'https://www.flying-lines.com/': [
'https://www.flying-lines.com/novel/one-useless-rebirth'
],
'https://book.qidian.com/': [
'https://book.qidian.com/info/1016597088'
],
'https://kiss-novel.com/': [
'https://kiss-novel.com/the-first-order'
],
'https://www.machine-translation.org/': [
'https://www.machine-translation.org/novel/a5eee127d75da0d2/long-live-summons.html'
],
'https://www.aixdzs.com/': [
'https://www.aixdzs.com/d/66/66746/'
],
'https://webnovelonline.com/': [
'https://webnovelonline.com/novel/the_anarchic_consort'
],
'https://4scanlation.com/': [
'https://4scanlation.com/tensei-shitara-slime-datta-ken-wn/'
],
'https://listnovel.com/': [
'https://listnovel.com/novel/my-sassy-crown-princess/'
],
'https://tomotranslations.com/': [
'https://tomotranslations.com/this-hero-is-invincible-but-too-cautious/'
],
'https://www.wuxialeague.com/': [
'https://www.wuxialeague.com/novel/245/'
],
'http://liberspark.com/': [
'http://liberspark.com/novel/black-irons-glory'
],
'https://webnovelindonesia.com/': [
'https://webnovelindonesia.com/nv/almighty-student'
],
'https://webnovelindonesia.com/': [
'https://webnovelindonesia.com/nv/almighty-student'
],
'http://tiknovel.com/': [
'http://tiknovel.com/book/index?id=717'
],
'http://boxnovel.org/': [
'http://boxnovel.org/novel/martial-god-asura'
]
}
| [
6738,
2779,
2414,
1330,
875,
375,
395,
1806,
355,
275,
2414,
12501,
1098,
198,
198,
40845,
62,
32165,
942,
796,
685,
198,
220,
220,
220,
705,
5450,
1378,
2596,
672,
417,
571,
13,
1326,
14,
3256,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
64,
844,
67,
89,
82,
13,
785,
14,
3256,
198,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
521,
1952,
544,
13,
785,
14,
3256,
198,
220,
220,
220,
275,
2414,
12501,
1098,
7203,
64,
17184,
15,
66,
36905,
21,
31633,
24,
73,
65,
2481,
88,
56,
18564,
23160,
48397,
85,
43,
76,
45,
85,
65,
50,
23,
28,
1911,
268,
8189,
3419,
737,
12501,
1098,
3419,
198,
60,
198,
198,
9288,
62,
7220,
62,
15414,
82,
796,
1391,
198,
220,
220,
220,
275,
2414,
12501,
1098,
7203,
64,
17184,
15,
66,
36905,
21,
31633,
24,
73,
65,
2481,
88,
56,
18564,
23160,
48397,
85,
43,
76,
45,
85,
65,
50,
23,
28,
1911,
268,
8189,
3419,
737,
12501,
1098,
33529,
685,
198,
220,
220,
220,
220,
220,
220,
220,
275,
2414,
12501,
1098,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
64,
17184,
15,
66,
36905,
21,
31633,
24,
73,
65,
2481,
88,
56,
18564,
23160,
48397,
85,
43,
76,
45,
85,
65,
50,
24,
549,
18,
57,
23160,
34,
3829,
66,
18,
53,
5173,
54,
26059,
43,
54,
20,
85,
43,
54,
79,
85,
65,
18,
52,
8671,
38,
23,
83,
11215,
37,
4372,
54,
2290,
43,
54,
20,
85,
43,
54,
14981,
43,
86,
855,
1911,
268,
8189,
3419,
737,
12501,
1098,
3419,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
82,
10823,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
82,
10823,
13,
785,
14,
3919,
626,
14,
1169,
12,
7783,
263,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
74,
1434,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
46453,
83,
2040,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
46453,
83,
2040,
13,
785,
14,
24875,
14,
3919,
626,
14,
64,
12,
7109,
34765,
12,
22019,
15023,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
3919,
626,
12853,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
3919,
626,
12853,
13,
785,
14,
67,
403,
6281,
12,
19774,
13,
6494,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
46200,
1694,
1475,
402,
9872,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
2503,
13,
76,
620,
259,
23397,
626,
41519,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
2503,
13,
76,
620,
259,
23397,
626,
41519,
13,
785,
14,
64,
12,
28895,
12,
9579,
12,
316,
1142,
414,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
4801,
342,
3919,
626,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
4801,
342,
3919,
626,
82,
13,
785,
14,
10745,
6269,
12,
1670,
3263,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
49459,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
49459,
3919,
626,
13,
785,
14,
3919,
626,
14,
3364,
12,
1659,
12,
70,
12978,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3524,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3524,
3919,
626,
13,
785,
14,
3919,
626,
14,
1169,
12,
2118,
12,
1659,
12,
1820,
12,
6042,
12,
271,
12,
1640,
12,
5832,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
40820,
26939,
8537,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
66,
26505,
22977,
13,
14036,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
66,
26505,
22977,
13,
14036,
14,
21953,
12,
17585,
12,
392,
12,
22977,
2971,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
18250,
3262,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
18250,
3262,
13,
785,
14,
268,
14,
2070,
14,
66,
10757,
12,
75,
2419,
12,
16,
12,
65,
15801,
24339,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
66,
10757,
11914,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
18755,
16762,
75,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
18755,
16762,
75,
13,
785,
14,
3919,
626,
14,
1169,
12,
11576,
395,
12,
25604,
12,
25344,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
76,
13,
354,
1127,
891,
415,
292,
2047,
78,
626,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
76,
13,
354,
1127,
891,
415,
292,
2047,
78,
626,
82,
13,
785,
14,
2548,
2548,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
76,
13,
3919,
626,
43639,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
76,
13,
3919,
626,
43639,
13,
785,
14,
3919,
626,
14,
1169,
12,
1455,
437,
12,
1659,
12,
1169,
12,
1102,
66,
549,
500,
12,
82,
12,
29642,
12,
2229,
9620,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
76,
13,
398,
5109,
23205,
12106,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
76,
13,
398,
5109,
23205,
12106,
13,
785,
14,
87,
7258,
71,
7258,
14,
22745,
13,
6494,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
2503,
13,
83,
1134,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
2503,
13,
83,
1134,
3919,
626,
13,
785,
14,
2070,
14,
9630,
30,
312,
28,
22,
1558,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
544,
6894,
13,
1073,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
30553,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
76,
13,
86,
2821,
544,
6894,
13,
1073,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
76,
13,
86,
2821,
544,
6894,
13,
1073,
14,
3041,
13211,
341,
12,
5189,
12,
464,
12,
33004,
395,
12,
43117,
12,
13482,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
1326,
295,
78,
626,
13,
312,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
1326,
295,
78,
626,
13,
312,
14,
3919,
626,
14,
1169,
12,
1455,
437,
560,
12,
1326,
3147,
291,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
16762,
992,
12,
3919,
626,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
16762,
992,
12,
3919,
626,
82,
13,
785,
14,
3919,
626,
82,
14,
18223,
12,
81,
18173,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
18223,
22740,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
13466,
2971,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
13466,
2971,
3919,
626,
13,
785,
14,
3919,
626,
62,
28011,
940,
2548,
405,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
13822,
498,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
47427,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
47427,
13,
785,
14,
2949,
626,
14,
13615,
278,
12,
6738,
12,
1169,
12,
24675,
16906,
12,
10603,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
8608,
16906,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
10396,
533,
3919,
626,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
10396,
533,
3919,
626,
82,
13,
785,
14,
3919,
626,
14,
7079,
540,
12,
20123,
495,
12,
38458,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
13,
25119,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
13,
25119,
14,
12853,
12,
14306,
12,
30342,
12,
45394,
12,
27729,
12,
929,
12,
64,
12,
1559,
12,
1136,
12,
64,
12,
5787,
12,
48912,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
312,
80,
19825,
13,
385,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
312,
80,
19825,
13,
385,
14,
3919,
626,
14,
33350,
1203,
12,
13822,
498,
12,
25344,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
439,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
439,
13,
785,
14,
3919,
626,
14,
37725,
12,
10603,
12,
26125,
12,
38667,
12,
44,
496,
13,
6494,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
39969,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
43639,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
43639,
13,
785,
14,
3919,
626,
14,
1169,
12,
1455,
437,
12,
1659,
12,
1169,
12,
1102,
66,
549,
500,
12,
82,
12,
29642,
12,
2229,
9620,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
961,
2971,
3919,
626,
13,
2398,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
961,
2971,
3919,
626,
13,
2398,
14,
4852,
12,
69,
16421,
12,
35580,
12,
24120,
959,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
398,
5109,
23205,
12106,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
398,
5109,
23205,
12106,
13,
785,
14,
87,
666,
36072,
14,
28072,
13,
6494,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3287,
282,
6344,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3287,
282,
6344,
13,
785,
14,
24046,
14,
21777,
1238,
14,
13552,
12,
1659,
12,
40684,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
13552,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
40075,
903,
40140,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
40075,
903,
40140,
13,
785,
14,
25076,
14,
22,
2327,
1120,
14,
23922,
12,
6042,
12,
1659,
12,
1169,
12,
1069,
29590,
12,
8608,
16906,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
40820,
26939,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
12384,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
12384,
3919,
626,
13,
785,
14,
2070,
14,
6469,
1065,
4089,
23906,
4059,
21,
22515,
14,
51,
4454,
12,
7676,
4087,
12,
39,
385,
3903,
4,
18,
32,
12,
23037,
12,
1462,
12,
12468,
12,
17309,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
13822,
498,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
6894,
3919,
626,
13,
25119,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
6894,
3919,
626,
13,
25119,
14,
3919,
626,
14,
82,
14057,
12,
5715,
278,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
544,
6894,
13,
1073,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
544,
6894,
13,
1073,
14,
3041,
13211,
341,
12,
5189,
12,
464,
12,
33004,
395,
12,
43117,
12,
13482,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
30553,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
260,
1014,
265,
13,
18664,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
260,
1014,
265,
13,
18664,
14,
3919,
626,
14,
38182,
14400,
12,
30553,
12,
27830,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
544,
6894,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
544,
6894,
13,
785,
14,
3919,
626,
14,
13822,
498,
12,
25344,
12,
292,
5330,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
13822,
498,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
20123,
1469,
78,
626,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
20123,
1469,
78,
626,
82,
13,
785,
14,
3919,
626,
14,
316,
35220,
12,
36955,
6784,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
44335,
961,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
44335,
961,
13,
785,
14,
2070,
14,
49170,
14,
1795,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
2503,
13,
44335,
961,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
2503,
13,
44335,
961,
13,
785,
14,
2070,
14,
49170,
14,
1795,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
961,
3919,
626,
12853,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
961,
3919,
626,
12853,
13,
785,
14,
10572,
12,
1659,
12,
439,
12,
5305,
907,
13,
6494,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
40820,
26939,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
1820,
261,
7745,
261,
270,
26084,
49905,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
1820,
261,
7745,
261,
270,
26084,
49905,
13,
785,
14,
4852,
12,
27604,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
1820,
261,
7745,
261,
270,
26084,
49905,
13,
785,
14,
22872,
14,
25344,
12,
1659,
12,
1452,
21361,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
65,
9608,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
65,
9608,
3919,
626,
13,
785,
14,
12106,
14,
344,
78,
12,
1616,
12,
1326,
12,
2188,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
67,
8101,
293,
4599,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
86,
2821,
544,
6894,
13,
25119,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
86,
2821,
544,
6894,
13,
25119,
14,
45994,
12,
45394,
12,
48912,
12,
31227,
12,
1462,
12,
1818,
12,
10424,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
40820,
26939,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
85,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
85,
13,
785,
14,
15,
14,
27371,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
12853,
3919,
626,
13,
12583,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
12853,
3919,
626,
13,
12583,
14,
3919,
626,
12,
64,
12,
10594,
12,
316,
35220,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10594,
15851,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
403,
3997,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
3919,
626,
403,
3997,
13,
785,
14,
9630,
14,
3919,
626,
14,
10951,
14,
312,
14,
1314,
13,
6494,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
1831,
13,
35217,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
1831,
13,
35217,
13,
785,
14,
23344,
14,
3070,
14,
14844,
12,
3364,
12,
1559,
12,
259,
12,
6270,
12,
16762,
75,
13,
6494,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2971,
12,
3919,
626,
13,
25119,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2971,
12,
3919,
626,
13,
25119,
14,
18223,
12,
774,
81,
1236,
605,
12,
2934,
414,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
774,
81,
1236,
605,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
260,
24280,
13,
25119,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
260,
24280,
13,
25119,
14,
3919,
626,
14,
4739,
485,
12,
2902,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
73,
959,
9019,
23778,
13,
31522,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
73,
959,
9019,
23778,
13,
31522,
14,
3919,
626,
14,
32826,
12,
1169,
12,
70,
12978,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
1078,
15636,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
1078,
15636,
13,
785,
14,
13571,
14,
5774,
1120,
2816,
3134,
12,
33983,
12,
43395,
12,
73,
9587,
2550,
12,
4,
36,
17,
4,
24,
34,
4,
5824,
4,
25425,
4,
33,
23,
4,
23,
37,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
2188,
13,
312,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
2188,
13,
312,
14,
3919,
626,
14,
1169,
12,
44092,
6386,
12,
5715,
278,
12,
10057,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
88,
2724,
2879,
626,
13,
1326,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
88,
2724,
2879,
626,
13,
1326,
14,
3919,
626,
14,
1169,
12,
12227,
12,
4976,
12,
1659,
12,
615,
283,
501,
14,
3256,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
292,
666,
71,
11369,
396,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
292,
666,
71,
11369,
396,
13,
785,
14,
25076,
14,
5562,
12,
2435,
12,
72,
12,
23442,
12,
260,
13211,
515,
12,
292,
12,
64,
12,
6649,
524,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
41304,
2971,
3919,
626,
82,
13,
10951,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
41304,
2971,
3919,
626,
82,
13,
10951,
14,
3919,
626,
14,
82,
14057,
12,
5715,
278,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
25119,
12853,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
25119,
12853,
13,
785,
14,
3919,
626,
14,
34748,
1314,
21315,
2816,
405,
1314,
2414,
37283,
11442,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
30243,
12,
41519,
13,
2398,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
30243,
12,
41519,
13,
2398,
14,
3919,
626,
14,
65,
558,
2481,
66,
24,
65,
940,
67,
2682,
68,
24,
14,
6894,
12,
1659,
12,
40820,
26939,
13,
6494,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
24408,
24046,
13,
3262,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
24408,
24046,
13,
3262,
14,
82,
14,
22,
25022,
36330,
14,
16,
14,
12025,
12,
1890,
12,
86,
14124,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
16762,
75,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
16762,
75,
3919,
626,
13,
785,
14,
9535,
1496,
12,
259,
12,
64,
12,
28004,
605,
12,
312,
349,
12,
67,
20058,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
4775,
1069,
17040,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
4775,
1069,
17040,
13,
785,
14,
25076,
14,
7645,
76,
4254,
12,
32741,
12,
1169,
12,
9410,
12,
1659,
12,
1169,
12,
22606,
12,
28230,
12,
42820,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
7645,
17660,
521,
78,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
7645,
17660,
521,
78,
13,
785,
14,
26567,
12,
47562,
12,
24267,
268,
12,
13376,
12,
69,
615,
8167,
12,
5036,
72,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2596,
672,
417,
571,
13,
1326,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2596,
672,
417,
571,
13,
1326,
14,
568,
89,
33425,
11979,
12,
74,
8726,
64,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
3919,
626,
1806,
272,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
3919,
626,
1806,
272,
13,
785,
14,
25076,
14,
1169,
12,
1712,
12,
33983,
12,
45394,
12,
259,
12,
23569,
12,
9866,
12,
14664,
12,
79,
321,
13653,
12,
22095,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
86,
2821,
544,
6894,
13,
15654,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
86,
2821,
544,
6894,
13,
15654,
14,
3919,
626,
14,
8807,
12,
72,
12,
5715,
12,
929,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
312,
13,
16762,
75,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
312,
13,
16762,
75,
3919,
626,
13,
785,
14,
1169,
12,
11576,
395,
12,
14382,
12,
9423,
2586,
12,
25344,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
1477,
1040,
10145,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
1477,
1040,
10145,
13,
785,
14,
461,
4669,
8719,
12,
260,
2926,
280,
12,
8461,
12,
77,
15927,
12,
23955,
320,
292,
268,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
45928,
12,
6615,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
45928,
12,
6615,
13,
785,
14,
3919,
626,
14,
505,
12,
84,
10950,
12,
260,
24280,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2070,
13,
80,
19825,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2070,
13,
80,
19825,
13,
785,
14,
10951,
14,
8784,
36445,
2154,
3459,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
41304,
12,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
41304,
12,
3919,
626,
13,
785,
14,
1169,
12,
11085,
12,
2875,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
30243,
12,
41519,
13,
2398,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
30243,
12,
41519,
13,
2398,
14,
3919,
626,
14,
64,
20,
1453,
68,
16799,
67,
2425,
6814,
15,
67,
17,
14,
6511,
12,
12583,
12,
16345,
11567,
13,
6494,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
64,
844,
67,
89,
82,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
64,
844,
67,
89,
82,
13,
785,
14,
67,
14,
2791,
14,
28933,
3510,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
25119,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
25119,
13,
785,
14,
3919,
626,
14,
1169,
62,
272,
998,
291,
62,
5936,
419,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
19,
35836,
7592,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
19,
35836,
7592,
13,
785,
14,
83,
1072,
72,
12,
16211,
3301,
12,
6649,
524,
12,
67,
25014,
12,
3464,
12,
675,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
4868,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
4868,
3919,
626,
13,
785,
14,
3919,
626,
14,
1820,
12,
82,
11720,
12,
66,
2053,
12,
1050,
259,
919,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
39532,
313,
26084,
49905,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
39532,
313,
26084,
49905,
13,
785,
14,
5661,
12,
11718,
12,
271,
12,
16340,
33494,
12,
4360,
12,
18820,
12,
66,
2306,
699,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
498,
68,
2064,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
86,
2821,
498,
68,
2064,
13,
785,
14,
3919,
626,
14,
22995,
14,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
8019,
364,
20928,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
8019,
364,
20928,
13,
785,
14,
3919,
626,
14,
13424,
12,
343,
684,
12,
4743,
652,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
521,
1952,
544,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
521,
1952,
544,
13,
785,
14,
48005,
14,
38182,
14400,
12,
50139,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
521,
1952,
544,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
12384,
3919,
626,
521,
1952,
544,
13,
785,
14,
48005,
14,
38182,
14400,
12,
50139,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
83,
1134,
3919,
626,
13,
785,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
83,
1134,
3919,
626,
13,
785,
14,
2070,
14,
9630,
30,
312,
28,
22,
1558,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
4023,
1378,
3524,
3919,
626,
13,
2398,
14,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4023,
1378,
3524,
3919,
626,
13,
2398,
14,
3919,
626,
14,
13822,
498,
12,
25344,
12,
292,
5330,
6,
198,
220,
220,
220,
2361,
198,
92,
198
] | 2.000632 | 4,748 |
#!/usr/bin/env python
# coding: utf-8
# In[1]:
import pandas as pd
import re
# In[2]:
# In[3]:
def textreader(text):
'''Opens textfile and returns the content as a string'''
with open(text, 'rt', encoding="utf8") as wiki:
txtstring = wiki.read()
return txtstring
# In[44]:
def replace_from_dict(text, dictionary):
'''Replaces words in text with new words in dictionary'''
for word in dictionary:
text = text.replace(word, dictionary[word])
return text
# In[172]:
def get_ref(text):
'''
Finds references between the <ref>- and </ref>-tags
and returns them as a list of strings
'''
ref = re.findall("\<ref.+?\<\/ref\>", text)
return ref
# In[171]:
def getrefurl(ref):
'''Finds the reference url in references and returns it as a string'''
url = re.search("http.+?(?=\s|\|title=|\|titel|\}\})", ref)
url = url.group()
return url
# In[30]:
def get_domain_name(url):
'''
Finds the domain name of the reference url and
returns that name as a string.
'''
domain_name = re.search('(?<=\/\/).+?(?=\/)', url)
domain_name = domain_name.group()
if domain_name.startswith('www.'):
domain_name = domain_name.replace('www.', '')
return domain_name
# In[32]:
# In[36]:
def create_ref_dict(refs):
'''
Takes a list of references, extracts the reference url and name,
and returns a dictionary sorted on the referenceurl as key.
'''
ref_dict = {}
ref_counts = {}
for ref in refs:
ref_dict, ref_counts = update_ref_dict(ref, ref_dict, ref_counts)
return ref_dict
# In[79]:
def get_ref_tag(text):
'''
Finds references between the <ref>- and </ref>-tags
and returns them as a list of strings
'''
ref = re.findall("\<ref name\=.+?\/\>", text)
#ref = re.findall("\<ref.+?\<\/ref\>|\<ref name\=.+?\/\>", text)
#ref = re.findall("\<ref.+?(?!\"\s\/\>)\<\/ref>", text)
#ref = re.findall("\<ref.+?\<\/ref\>", text)
return set(ref)
# In[130]:
def get_spec_ref(text, ref_tag):
'''
Finds references between the <ref>- and </ref>-tags
and returns them as a list of strings
'''
#ref = re.findall("\<ref name\=.+?\/\>", text)
#ref = re.findall("\<ref.+?\<\/ref\>|\<ref name\=.+?\/\>", text)
#ref = re.findall("\<ref.+?(?!\"\s\/\>)\<\/ref>", text)
ref = re.findall(f'\<ref name\=\"{ref_tag}\"\>.+?\<\/ref\>', text)
ref = ref[0]
return ref
# In[115]:
# In[136]:
# In[49]:
# In[66]:
# In[169]:
def reference_sorter(text):
'''
Does a bunch of stuff that should be broken out in different functions.
'''
references = get_ref(text)
reference_dict = create_ref_dict(references)
reference_list = []
reference_text = '== Referenser ==\n<references>\n'
text = text.replace('== Kllor ==', '== Referenser ==')
text = text.replace('<references/>', '')
for entry in reference_dict:
for reference in reference_dict[entry]['refs']:
text = text.replace(reference, '<ref name="{}" />'.format(reference_dict[entry]['refname']))
reference_list.append('<ref name="{}">{}</ref>'.format(reference_dict[entry]['refname'], entry))
for reference in reference_list:
reference_text += reference +'\n'
reference_text += '</references>'
text = re.split('== Referenser ==', text)
text = text[0] + reference_text + text[-1]
return text
# In[134]:
# In[173]:
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
2,
554,
58,
16,
5974,
628,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
302,
628,
198,
2,
554,
58,
17,
5974,
628,
220,
220,
220,
220,
198,
220,
220,
220,
220,
628,
198,
2,
554,
58,
18,
5974,
628,
198,
4299,
2420,
46862,
7,
5239,
2599,
198,
220,
220,
220,
705,
7061,
18257,
641,
2420,
7753,
290,
5860,
262,
2695,
355,
257,
4731,
7061,
6,
198,
220,
220,
220,
351,
1280,
7,
5239,
11,
705,
17034,
3256,
21004,
2625,
40477,
23,
4943,
355,
22719,
25,
198,
220,
220,
220,
220,
220,
220,
220,
256,
742,
8841,
796,
22719,
13,
961,
3419,
198,
220,
220,
220,
1441,
256,
742,
8841,
628,
198,
2,
554,
58,
2598,
5974,
628,
198,
4299,
6330,
62,
6738,
62,
11600,
7,
5239,
11,
22155,
2599,
198,
220,
220,
220,
705,
7061,
3041,
23625,
2456,
287,
2420,
351,
649,
2456,
287,
22155,
7061,
6,
198,
220,
220,
220,
329,
1573,
287,
22155,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
2420,
13,
33491,
7,
4775,
11,
22155,
58,
4775,
12962,
198,
220,
220,
220,
1441,
2420,
628,
198,
2,
554,
58,
23628,
5974,
628,
198,
4299,
651,
62,
5420,
7,
5239,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
9938,
82,
10288,
1022,
262,
1279,
5420,
29,
12,
290,
7359,
5420,
29,
12,
31499,
220,
198,
220,
220,
220,
220,
220,
220,
290,
5860,
606,
355,
257,
1351,
286,
13042,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1006,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
49778,
11139,
5420,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1441,
1006,
628,
198,
2,
554,
58,
27192,
5974,
628,
198,
4299,
651,
5420,
6371,
7,
5420,
2599,
198,
220,
220,
220,
705,
7061,
16742,
82,
262,
4941,
19016,
287,
10288,
290,
5860,
340,
355,
257,
4731,
7061,
6,
198,
220,
220,
220,
19016,
796,
302,
13,
12947,
7203,
4023,
13,
10,
30,
7,
30,
28,
59,
82,
91,
59,
91,
7839,
28,
91,
59,
91,
83,
270,
417,
91,
59,
32239,
30072,
1600,
1006,
8,
198,
220,
220,
220,
19016,
796,
19016,
13,
8094,
3419,
198,
220,
220,
220,
1441,
19016,
628,
198,
2,
554,
58,
1270,
5974,
628,
198,
4299,
651,
62,
27830,
62,
3672,
7,
6371,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
9938,
82,
262,
7386,
1438,
286,
262,
4941,
19016,
290,
220,
198,
220,
220,
220,
5860,
326,
1438,
355,
257,
4731,
13,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7386,
62,
3672,
796,
302,
13,
12947,
10786,
7,
30,
27,
28,
45422,
737,
10,
30,
7,
30,
28,
11139,
8,
3256,
19016,
8,
198,
220,
220,
220,
7386,
62,
3672,
796,
7386,
62,
3672,
13,
8094,
3419,
198,
220,
220,
220,
611,
7386,
62,
3672,
13,
9688,
2032,
342,
10786,
2503,
2637,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
3672,
796,
7386,
62,
3672,
13,
33491,
10786,
2503,
2637,
11,
10148,
8,
198,
220,
220,
220,
1441,
7386,
62,
3672,
628,
198,
2,
554,
58,
2624,
5974,
628,
198,
198,
2,
554,
58,
2623,
5974,
628,
198,
4299,
2251,
62,
5420,
62,
11600,
7,
5420,
82,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
33687,
257,
1351,
286,
10288,
11,
32139,
262,
4941,
19016,
290,
1438,
11,
220,
198,
220,
220,
220,
290,
5860,
257,
22155,
23243,
319,
262,
4941,
6371,
355,
1994,
13,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1006,
62,
11600,
796,
23884,
198,
220,
220,
220,
1006,
62,
9127,
82,
796,
23884,
198,
220,
220,
220,
329,
1006,
287,
1006,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1006,
62,
11600,
11,
1006,
62,
9127,
82,
796,
4296,
62,
5420,
62,
11600,
7,
5420,
11,
1006,
62,
11600,
11,
1006,
62,
9127,
82,
8,
198,
220,
220,
220,
1441,
1006,
62,
11600,
198,
220,
220,
220,
220,
628,
198,
2,
554,
58,
3720,
5974,
628,
198,
4299,
651,
62,
5420,
62,
12985,
7,
5239,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
9938,
82,
10288,
1022,
262,
1279,
5420,
29,
12,
290,
7359,
5420,
29,
12,
31499,
220,
198,
220,
220,
220,
220,
220,
220,
290,
5860,
606,
355,
257,
1351,
286,
13042,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1006,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
1438,
59,
28,
13,
10,
30,
11139,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
49778,
11139,
5420,
59,
29,
91,
49778,
5420,
1438,
59,
28,
13,
10,
30,
11139,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
7,
12248,
7879,
59,
82,
11139,
59,
29,
19415,
27,
11139,
5420,
29,
1600,
2420,
8,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
49778,
11139,
5420,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1441,
900,
7,
5420,
8,
628,
198,
2,
554,
58,
12952,
5974,
628,
198,
4299,
651,
62,
16684,
62,
5420,
7,
5239,
11,
1006,
62,
12985,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
9938,
82,
10288,
1022,
262,
1279,
5420,
29,
12,
290,
7359,
5420,
29,
12,
31499,
220,
198,
220,
220,
220,
220,
220,
220,
290,
5860,
606,
355,
257,
1351,
286,
13042,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
1438,
59,
28,
13,
10,
30,
11139,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
49778,
11139,
5420,
59,
29,
91,
49778,
5420,
1438,
59,
28,
13,
10,
30,
11139,
59,
29,
1600,
2420,
8,
198,
220,
220,
220,
1303,
5420,
796,
302,
13,
19796,
439,
7203,
49778,
5420,
13,
10,
30,
7,
12248,
7879,
59,
82,
11139,
59,
29,
19415,
27,
11139,
5420,
29,
1600,
2420,
8,
198,
220,
220,
220,
1006,
796,
302,
13,
19796,
439,
7,
69,
6,
49778,
5420,
1438,
59,
17553,
90,
5420,
62,
12985,
92,
7879,
59,
28401,
10,
30,
49778,
11139,
5420,
59,
29,
3256,
2420,
8,
198,
220,
220,
220,
1006,
796,
1006,
58,
15,
60,
198,
220,
220,
220,
1441,
1006,
628,
198,
2,
554,
58,
15363,
5974,
628,
198,
198,
2,
554,
58,
20809,
5974,
628,
198,
198,
2,
554,
58,
2920,
5974,
628,
198,
198,
2,
554,
58,
2791,
5974,
628,
198,
198,
2,
554,
58,
22172,
5974,
628,
198,
4299,
4941,
62,
82,
4337,
7,
5239,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
8314,
257,
7684,
286,
3404,
326,
815,
307,
5445,
503,
287,
1180,
5499,
13,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
10288,
796,
651,
62,
5420,
7,
5239,
8,
198,
220,
220,
220,
4941,
62,
11600,
796,
2251,
62,
5420,
62,
11600,
7,
5420,
4972,
8,
198,
220,
220,
220,
4941,
62,
4868,
796,
220,
17635,
198,
220,
220,
220,
4941,
62,
5239,
796,
705,
855,
6524,
14226,
2655,
6624,
59,
77,
27,
5420,
4972,
29,
59,
77,
6,
628,
220,
220,
220,
2420,
796,
2420,
13,
33491,
10786,
855,
509,
14127,
6624,
3256,
705,
855,
6524,
14226,
2655,
6624,
11537,
198,
220,
220,
220,
2420,
796,
2420,
13,
33491,
10786,
27,
5420,
4972,
15913,
3256,
10148,
8,
628,
220,
220,
220,
329,
5726,
287,
4941,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
4941,
287,
4941,
62,
11600,
58,
13000,
7131,
6,
5420,
82,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
796,
2420,
13,
33491,
7,
35790,
11,
705,
27,
5420,
1438,
2625,
90,
36786,
11037,
4458,
18982,
7,
35790,
62,
11600,
58,
13000,
7131,
6,
5420,
3672,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
4941,
62,
4868,
13,
33295,
10786,
27,
5420,
1438,
2625,
90,
92,
5320,
90,
92,
3556,
5420,
29,
4458,
18982,
7,
35790,
62,
11600,
58,
13000,
7131,
6,
5420,
3672,
6,
4357,
5726,
4008,
198,
220,
220,
220,
329,
4941,
287,
4941,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4941,
62,
5239,
15853,
4941,
1343,
6,
59,
77,
6,
198,
220,
220,
220,
4941,
62,
5239,
15853,
705,
3556,
5420,
4972,
29,
6,
198,
220,
220,
220,
2420,
796,
302,
13,
35312,
10786,
855,
6524,
14226,
2655,
6624,
3256,
2420,
8,
198,
220,
220,
220,
2420,
796,
2420,
58,
15,
60,
1343,
4941,
62,
5239,
1343,
2420,
58,
12,
16,
60,
628,
220,
220,
220,
1441,
2420,
628,
198,
2,
554,
58,
19880,
5974,
628,
220,
220,
220,
220,
220,
220,
220,
220,
628,
198,
2,
554,
58,
25399,
5974,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
628
] | 2.344918 | 1,525 |
import logging
import json
from dataclasses import dataclass
from redis import Redis
from typing import Iterable, Tuple, List, Iterator, Union, Dict
from typing_extensions import TypedDict
from backend import settings
from caching.scripts import RedisScriptsPool
from share.metaclasses import Singleton
from radar.models import AlienBody
from radar.validation import validate_body_str_profile
logger = logging.getLogger(__name__)
BodiesUpdate = TypedDict('BodiesUpdate', {'dropped_keys': List[str],
'new_records': Dict[str, str]})
| [
11748,
18931,
198,
11748,
33918,
198,
6738,
4818,
330,
28958,
1330,
4818,
330,
31172,
198,
6738,
2266,
271,
1330,
2297,
271,
198,
6738,
19720,
1330,
40806,
540,
11,
309,
29291,
11,
7343,
11,
40806,
1352,
11,
4479,
11,
360,
713,
198,
6738,
19720,
62,
2302,
5736,
1330,
17134,
276,
35,
713,
198,
198,
6738,
30203,
1330,
6460,
198,
6738,
40918,
13,
46521,
1330,
2297,
271,
7391,
82,
27201,
198,
6738,
2648,
13,
4164,
330,
28958,
1330,
5573,
10565,
198,
6738,
13428,
13,
27530,
1330,
17610,
25842,
198,
6738,
13428,
13,
12102,
341,
1330,
26571,
62,
2618,
62,
2536,
62,
13317,
628,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
33,
5042,
10260,
796,
17134,
276,
35,
713,
10786,
33,
5042,
10260,
3256,
1391,
6,
22285,
1496,
62,
13083,
10354,
7343,
58,
2536,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3605,
62,
8344,
3669,
10354,
360,
713,
58,
2536,
11,
965,
60,
30072,
628,
198
] | 2.919192 | 198 |
# coding: utf-8
from cms.plugin_base import CMSPluginBase
from cms.plugin_pool import plugin_pool
from django import forms
from django.utils.translation import ugettext_lazy as _
from djangocms_baseplugins.baseplugin import defaults
from djangocms_baseplugins.baseplugin.cms_plugins import BasePluginMixin
from djangocms_baseplugins.baseplugin.utils import get_fields_from_fieldsets, get_baseplugin_widgets
from . import conf
from .models import Spacer
plugin_pool.register_plugin(SpacerPlugin)
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
6738,
269,
907,
13,
33803,
62,
8692,
1330,
40773,
37233,
14881,
198,
6738,
269,
907,
13,
33803,
62,
7742,
1330,
13877,
62,
7742,
198,
6738,
42625,
14208,
1330,
5107,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
198,
198,
6738,
42625,
648,
420,
907,
62,
8692,
37390,
13,
8692,
33803,
1330,
26235,
198,
6738,
42625,
648,
420,
907,
62,
8692,
37390,
13,
8692,
33803,
13,
46406,
62,
37390,
1330,
7308,
37233,
35608,
259,
198,
6738,
42625,
648,
420,
907,
62,
8692,
37390,
13,
8692,
33803,
13,
26791,
1330,
651,
62,
25747,
62,
6738,
62,
25747,
1039,
11,
651,
62,
8692,
33803,
62,
28029,
11407,
198,
6738,
764,
1330,
1013,
198,
6738,
764,
27530,
1330,
1338,
11736,
628,
628,
198,
33803,
62,
7742,
13,
30238,
62,
33803,
7,
4561,
11736,
37233,
8,
198
] | 3.355705 | 149 |
"""Utility functions for plotting.
Author: Seth Axen
E-mail: seth.axen@gmail.com"""
from collections import deque
import numpy as np
def rgb_to_hsv(rgb):
"""Convert RGB colors to HSV colors."""
r, g, b = tuple(map(float, rgb))
if any([r > 1, g > 1, b > 1]):
r /= 255.
g /= 255.
b /= 255.
mmax = max(r, g, b)
mmin = min(r, g, b)
c = mmax - mmin
if (c == 0.):
hp = 0.
elif (mmax == r):
hp = ((g - b) / c) % 6
elif (mmax == g):
hp = ((b - r) / c) + 2
elif (mmax == b):
hp = ((r - g) / c) + 4
h = 60 * hp
v = mmax
if (c == 0):
s = 0
else:
s = c / v
return (h, s, v)
def hsv_to_rgb(hsv):
"""Convert HSV colors to RGB colors."""
h, s, v = tuple(map(float, hsv))
c = v * s
m = v - c
hp = h / 60.
x = c * (1. - abs((hp % 2) - 1.))
hp = int(hp)
rgb = deque((c + m, x + m, m))
if (hp % 2):
rgb.reverse()
rgb.rotate((hp - 3) / 2)
else:
rgb.rotate(hp / 2)
return tuple(rgb)
def rgb_to_yuv(rgb):
"""Convert RGB colors to Y'UV colors, useful for comparison."""
rgbv = np.array(rgb).reshape(3, 1)
if np.any(rgbv > 1.):
rgbv = rgbv / 255.
yuv = np.dot(np.array([[ .299, .587, .114],
[-.14713, -.28886, .436],
[ .615, -.51499, -.10001]], dtype=np.double),
rgbv)
return list(yuv)
def yuv_to_rgb(yuv):
"""Convert Y'UV colors to RGB colors."""
yuvv = np.array(yuv).reshape(3, 1)
rgb = np.dot(np.array([[1., 0., 1.13983],
[1., -.39465, -.58060],
[1., 2.03211, 0.]], dtype=np.double),
yuvv)
return list(rgb)
def compute_yuv_dist(rgb1, rgb2):
"""Compute Euclidean Y'UV distance between RGB colors."""
yuv1 = rgb_to_yuv(rgb1)
yuv2 = rgb_to_yuv(rgb2)
return float(sum((np.array(yuv1) - np.array(yuv2))**2)**.5)
def lighten_rgb(rgb, p=0.):
"""Lighten RGB colors by percentage p of total."""
h, s, v = rgb_to_hsv(rgb)
hsv = (h, s, min(1, v + p))
return hsv_to_rgb(hsv)
| [
37811,
18274,
879,
5499,
329,
29353,
13,
198,
198,
13838,
25,
20194,
12176,
268,
198,
36,
12,
4529,
25,
900,
71,
13,
897,
268,
31,
14816,
13,
785,
37811,
198,
6738,
17268,
1330,
390,
4188,
198,
198,
11748,
299,
32152,
355,
45941,
628,
198,
4299,
46140,
62,
1462,
62,
11994,
85,
7,
81,
22296,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
25228,
7577,
284,
18070,
53,
7577,
526,
15931,
198,
220,
220,
220,
374,
11,
308,
11,
275,
796,
46545,
7,
8899,
7,
22468,
11,
46140,
4008,
198,
220,
220,
220,
611,
597,
26933,
81,
1875,
352,
11,
308,
1875,
352,
11,
275,
1875,
352,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
1220,
28,
14280,
13,
198,
220,
220,
220,
220,
220,
220,
220,
308,
1220,
28,
14280,
13,
198,
220,
220,
220,
220,
220,
220,
220,
275,
1220,
28,
14280,
13,
198,
220,
220,
220,
8085,
897,
796,
3509,
7,
81,
11,
308,
11,
275,
8,
198,
220,
220,
220,
285,
1084,
796,
949,
7,
81,
11,
308,
11,
275,
8,
198,
220,
220,
220,
269,
796,
8085,
897,
532,
285,
1084,
198,
220,
220,
220,
611,
357,
66,
6624,
657,
47308,
198,
220,
220,
220,
220,
220,
220,
220,
27673,
796,
657,
13,
198,
220,
220,
220,
1288,
361,
357,
3020,
897,
6624,
374,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
27673,
796,
14808,
70,
532,
275,
8,
1220,
269,
8,
4064,
718,
198,
220,
220,
220,
1288,
361,
357,
3020,
897,
6624,
308,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
27673,
796,
14808,
65,
532,
374,
8,
1220,
269,
8,
1343,
362,
198,
220,
220,
220,
1288,
361,
357,
3020,
897,
6624,
275,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
27673,
796,
14808,
81,
532,
308,
8,
1220,
269,
8,
1343,
604,
198,
220,
220,
220,
289,
796,
3126,
1635,
27673,
198,
220,
220,
220,
410,
796,
8085,
897,
198,
220,
220,
220,
611,
357,
66,
6624,
657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
657,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
264,
796,
269,
1220,
410,
198,
220,
220,
220,
1441,
357,
71,
11,
264,
11,
410,
8,
628,
198,
4299,
289,
21370,
62,
1462,
62,
81,
22296,
7,
11994,
85,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
18070,
53,
7577,
284,
25228,
7577,
526,
15931,
198,
220,
220,
220,
289,
11,
264,
11,
410,
796,
46545,
7,
8899,
7,
22468,
11,
289,
21370,
4008,
198,
220,
220,
220,
269,
796,
410,
1635,
264,
198,
220,
220,
220,
285,
796,
410,
532,
269,
198,
220,
220,
220,
27673,
796,
289,
1220,
3126,
13,
198,
220,
220,
220,
2124,
796,
269,
1635,
357,
16,
13,
532,
2352,
19510,
24831,
4064,
362,
8,
532,
352,
2014,
8,
198,
220,
220,
220,
27673,
796,
493,
7,
24831,
8,
198,
220,
220,
220,
46140,
796,
390,
4188,
19510,
66,
1343,
285,
11,
2124,
1343,
285,
11,
285,
4008,
198,
220,
220,
220,
611,
357,
24831,
4064,
362,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
46140,
13,
50188,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
46140,
13,
10599,
378,
19510,
24831,
532,
513,
8,
1220,
362,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
46140,
13,
10599,
378,
7,
24831,
1220,
362,
8,
198,
220,
220,
220,
1441,
46545,
7,
81,
22296,
8,
628,
198,
4299,
46140,
62,
1462,
62,
88,
14795,
7,
81,
22296,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
25228,
7577,
284,
575,
6,
31667,
7577,
11,
4465,
329,
7208,
526,
15931,
198,
220,
220,
220,
46140,
85,
796,
45941,
13,
18747,
7,
81,
22296,
737,
3447,
1758,
7,
18,
11,
352,
8,
198,
220,
220,
220,
611,
45941,
13,
1092,
7,
81,
22296,
85,
1875,
352,
47308,
198,
220,
220,
220,
220,
220,
220,
220,
46140,
85,
796,
46140,
85,
1220,
14280,
13,
198,
220,
220,
220,
331,
14795,
796,
45941,
13,
26518,
7,
37659,
13,
18747,
26933,
58,
764,
22579,
11,
220,
220,
220,
764,
44617,
11,
220,
220,
220,
764,
16562,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25915,
13,
20198,
1485,
11,
532,
13,
2078,
44980,
11,
220,
764,
43690,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
764,
47007,
11,
220,
220,
532,
13,
47396,
2079,
11,
532,
13,
3064,
486,
60,
4357,
288,
4906,
28,
37659,
13,
23352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
46140,
85,
8,
198,
220,
220,
220,
1441,
1351,
7,
88,
14795,
8,
628,
198,
4299,
331,
14795,
62,
1462,
62,
81,
22296,
7,
88,
14795,
2599,
198,
220,
220,
220,
37227,
3103,
1851,
575,
6,
31667,
7577,
284,
25228,
7577,
526,
15931,
198,
220,
220,
220,
331,
14795,
85,
796,
45941,
13,
18747,
7,
88,
14795,
737,
3447,
1758,
7,
18,
11,
352,
8,
198,
220,
220,
220,
46140,
796,
45941,
13,
26518,
7,
37659,
13,
18747,
26933,
58,
16,
1539,
657,
1539,
220,
220,
220,
220,
220,
352,
13,
1485,
4089,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
16,
1539,
532,
13,
34626,
2996,
11,
532,
13,
39322,
1899,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
16,
1539,
362,
13,
49959,
1157,
11,
657,
8183,
4357,
288,
4906,
28,
37659,
13,
23352,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
14795,
85,
8,
198,
220,
220,
220,
1441,
1351,
7,
81,
22296,
8,
628,
198,
4299,
24061,
62,
88,
14795,
62,
17080,
7,
81,
22296,
16,
11,
46140,
17,
2599,
198,
220,
220,
220,
37227,
7293,
1133,
48862,
485,
272,
575,
6,
31667,
5253,
1022,
25228,
7577,
526,
15931,
198,
220,
220,
220,
331,
14795,
16,
796,
46140,
62,
1462,
62,
88,
14795,
7,
81,
22296,
16,
8,
198,
220,
220,
220,
331,
14795,
17,
796,
46140,
62,
1462,
62,
88,
14795,
7,
81,
22296,
17,
8,
198,
220,
220,
220,
1441,
12178,
7,
16345,
19510,
37659,
13,
18747,
7,
88,
14795,
16,
8,
532,
45941,
13,
18747,
7,
88,
14795,
17,
4008,
1174,
17,
8,
1174,
13,
20,
8,
628,
198,
4299,
1657,
268,
62,
81,
22296,
7,
81,
22296,
11,
279,
28,
15,
47308,
198,
220,
220,
220,
37227,
15047,
268,
25228,
7577,
416,
5873,
279,
286,
2472,
526,
15931,
198,
220,
220,
220,
289,
11,
264,
11,
410,
796,
46140,
62,
1462,
62,
11994,
85,
7,
81,
22296,
8,
198,
220,
220,
220,
289,
21370,
796,
357,
71,
11,
264,
11,
949,
7,
16,
11,
410,
1343,
279,
4008,
198,
220,
220,
220,
1441,
289,
21370,
62,
1462,
62,
81,
22296,
7,
11994,
85,
8,
198
] | 1.80976 | 1,209 |
import pytest
from utils.process import run, silent_run, RunError
from utils.fs import in_temp_dir
| [
11748,
12972,
9288,
198,
198,
6738,
3384,
4487,
13,
14681,
1330,
1057,
11,
10574,
62,
5143,
11,
5660,
12331,
198,
6738,
3384,
4487,
13,
9501,
1330,
287,
62,
29510,
62,
15908,
628
] | 3.15625 | 32 |
#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2017, Anaconda, Inc. All rights reserved.
#
# Powered by the Bokeh Development Team.
#
# The full license is in the file LICENSE.txt, distributed with this software.
#-----------------------------------------------------------------------------
''' Internal utility functions used by ``bokeh.client``
'''
#-----------------------------------------------------------------------------
# Boilerplate
#-----------------------------------------------------------------------------
from __future__ import absolute_import, division, print_function, unicode_literals
import logging
log = logging.getLogger(__name__)
from bokeh.util.api import public, internal ; public, internal
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# Standard library imports
# External imports
# Bokeh imports
#-----------------------------------------------------------------------------
# Globals and constants
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Public API
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Internal API
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Private API
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------
| [
2,
10097,
32501,
198,
2,
15069,
357,
66,
8,
2321,
532,
2177,
11,
1052,
330,
13533,
11,
3457,
13,
1439,
2489,
10395,
13,
198,
2,
198,
2,
45090,
416,
262,
347,
2088,
71,
7712,
4816,
13,
198,
2,
198,
2,
383,
1336,
5964,
318,
287,
262,
2393,
38559,
24290,
13,
14116,
11,
9387,
351,
428,
3788,
13,
198,
2,
10097,
32501,
198,
7061,
6,
18628,
10361,
5499,
973,
416,
7559,
65,
2088,
71,
13,
16366,
15506,
198,
198,
7061,
6,
198,
198,
2,
10097,
32501,
198,
2,
3248,
5329,
6816,
198,
2,
10097,
32501,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
11,
7297,
11,
3601,
62,
8818,
11,
28000,
1098,
62,
17201,
874,
198,
198,
11748,
18931,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
6738,
1489,
365,
71,
13,
22602,
13,
15042,
1330,
1171,
11,
5387,
2162,
1171,
11,
5387,
198,
198,
2,
10097,
32501,
198,
2,
1846,
3742,
198,
2,
10097,
32501,
198,
198,
2,
8997,
5888,
17944,
198,
198,
2,
34579,
17944,
198,
198,
2,
347,
2088,
71,
17944,
198,
198,
2,
10097,
32501,
198,
2,
40713,
874,
290,
38491,
198,
2,
10097,
32501,
198,
198,
2,
10097,
32501,
198,
2,
5094,
7824,
198,
2,
10097,
32501,
198,
198,
2,
10097,
32501,
198,
2,
18628,
7824,
198,
2,
10097,
32501,
198,
198,
2,
10097,
32501,
198,
2,
15348,
7824,
198,
2,
10097,
32501,
198,
198,
2,
10097,
32501,
198,
2,
6127,
198,
2,
10097,
32501,
198
] | 7.580645 | 248 |
# 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.
# ==============================================================================
"""Contains the definition of the Inception Resnet V2 architecture.
As described in http://arxiv.org/abs/1602.07261.
Inception-v4, Inception-ResNet and the Impact of Residual Connections
on Learning
Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke, Alex Alemi
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import tensorflow as tf
slim = tf.contrib.slim
def block35(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
"""Builds the 35x35 resnet block."""
with tf.variable_scope(scope, 'Block35', [net], reuse=reuse):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 32, 1, scope='Conv2d_1x1')
with tf.variable_scope('Branch_1'):
tower_conv1_0 = slim.conv2d(net, 32, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1_0, 32, 3, scope='Conv2d_0b_3x3')
with tf.variable_scope('Branch_2'):
tower_conv2_0 = slim.conv2d(net, 32, 1, scope='Conv2d_0a_1x1')
tower_conv2_1 = slim.conv2d(tower_conv2_0, 48, 3, scope='Conv2d_0b_3x3')
tower_conv2_2 = slim.conv2d(tower_conv2_1, 64, 3, scope='Conv2d_0c_3x3')
mixed = tf.concat(axis=3, values=[tower_conv, tower_conv1_1, tower_conv2_2])
up = slim.conv2d(mixed, net.get_shape()[3], 1, normalizer_fn=None,
activation_fn=None, scope='Conv2d_1x1')
net += scale * up
if activation_fn:
net = activation_fn(net)
return net
def block17(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
"""Builds the 17x17 resnet block."""
with tf.variable_scope(scope, 'Block17', [net], reuse=reuse):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 192, 1, scope='Conv2d_1x1')
with tf.variable_scope('Branch_1'):
tower_conv1_0 = slim.conv2d(net, 128, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1_0, 160, [1, 7],
scope='Conv2d_0b_1x7')
tower_conv1_2 = slim.conv2d(tower_conv1_1, 192, [7, 1],
scope='Conv2d_0c_7x1')
mixed = tf.concat(axis=3, values=[tower_conv, tower_conv1_2])
up = slim.conv2d(mixed, net.get_shape()[3], 1, normalizer_fn=None,
activation_fn=None, scope='Conv2d_1x1')
net += scale * up
if activation_fn:
net = activation_fn(net)
return net
def block8(net, scale=1.0, activation_fn=tf.nn.relu, scope=None, reuse=None):
"""Builds the 8x8 resnet block."""
with tf.variable_scope(scope, 'Block8', [net], reuse=reuse):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 192, 1, scope='Conv2d_1x1')
with tf.variable_scope('Branch_1'):
tower_conv1_0 = slim.conv2d(net, 192, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1_0, 224, [1, 3],
scope='Conv2d_0b_1x3')
tower_conv1_2 = slim.conv2d(tower_conv1_1, 256, [3, 1],
scope='Conv2d_0c_3x1')
mixed = tf.concat(axis=3, values=[tower_conv, tower_conv1_2])
up = slim.conv2d(mixed, net.get_shape()[3], 1, normalizer_fn=None,
activation_fn=None, scope='Conv2d_1x1')
net += scale * up
if activation_fn:
net = activation_fn(net)
return net
def inception_resnet_v2_base(inputs,
final_endpoint='Conv2d_7b_1x1',
output_stride=16,
align_feature_maps=False,
scope=None):
"""Inception model from http://arxiv.org/abs/1602.07261.
Constructs an Inception Resnet v2 network from inputs to the given final
endpoint. This method can construct the network up to the final inception
block Conv2d_7b_1x1.
Args:
inputs: a tensor of size [batch_size, height, width, channels].
final_endpoint: specifies the endpoint to construct the network up to. It
can be one of ['Conv2d_1a_3x3', 'Conv2d_2a_3x3', 'Conv2d_2b_3x3',
'MaxPool_3a_3x3', 'Conv2d_3b_1x1', 'Conv2d_4a_3x3', 'MaxPool_5a_3x3',
'Mixed_5b', 'Mixed_6a', 'PreAuxLogits', 'Mixed_7a', 'Conv2d_7b_1x1']
output_stride: A scalar that specifies the requested ratio of input to
output spatial resolution. Only supports 8 and 16.
align_feature_maps: When true, changes all the VALID paddings in the network
to SAME padding so that the feature maps are aligned.
scope: Optional variable_scope.
Returns:
tensor_out: output tensor corresponding to the final_endpoint.
end_points: a set of activations for external use, for example summaries or
losses.
Raises:
ValueError: if final_endpoint is not set to one of the predefined values,
or if the output_stride is not 8 or 16, or if the output_stride is 8 and
we request an end point after 'PreAuxLogits'.
"""
if output_stride != 8 and output_stride != 16:
raise ValueError('output_stride must be 8 or 16.')
padding = 'SAME' if align_feature_maps else 'VALID'
end_points = {}
with tf.variable_scope(scope, 'InceptionResnetV2', [inputs]):
with slim.arg_scope([slim.conv2d, slim.max_pool2d, slim.avg_pool2d],
stride=1, padding='SAME'):
# 149 x 149 x 32
net = slim.conv2d(inputs, 32, 3, stride=2, padding=padding,
scope='Conv2d_1a_3x3')
if add_and_check_final('Conv2d_1a_3x3', net): return net, end_points
# 147 x 147 x 32
net = slim.conv2d(net, 32, 3, padding=padding,
scope='Conv2d_2a_3x3')
if add_and_check_final('Conv2d_2a_3x3', net): return net, end_points
# 147 x 147 x 64
net = slim.conv2d(net, 64, 3, scope='Conv2d_2b_3x3')
if add_and_check_final('Conv2d_2b_3x3', net): return net, end_points
# 73 x 73 x 64
net = slim.max_pool2d(net, 3, stride=2, padding=padding,
scope='MaxPool_3a_3x3')
if add_and_check_final('MaxPool_3a_3x3', net): return net, end_points
# 73 x 73 x 80
net = slim.conv2d(net, 80, 1, padding=padding,
scope='Conv2d_3b_1x1')
if add_and_check_final('Conv2d_3b_1x1', net): return net, end_points
# 71 x 71 x 192
net = slim.conv2d(net, 192, 3, padding=padding,
scope='Conv2d_4a_3x3')
if add_and_check_final('Conv2d_4a_3x3', net): return net, end_points
# 35 x 35 x 192
net = slim.max_pool2d(net, 3, stride=2, padding=padding,
scope='MaxPool_5a_3x3')
if add_and_check_final('MaxPool_5a_3x3', net): return net, end_points
# 35 x 35 x 320
with tf.variable_scope('Mixed_5b'):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 96, 1, scope='Conv2d_1x1')
with tf.variable_scope('Branch_1'):
tower_conv1_0 = slim.conv2d(net, 48, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1_0, 64, 5,
scope='Conv2d_0b_5x5')
with tf.variable_scope('Branch_2'):
tower_conv2_0 = slim.conv2d(net, 64, 1, scope='Conv2d_0a_1x1')
tower_conv2_1 = slim.conv2d(tower_conv2_0, 96, 3,
scope='Conv2d_0b_3x3')
tower_conv2_2 = slim.conv2d(tower_conv2_1, 96, 3,
scope='Conv2d_0c_3x3')
with tf.variable_scope('Branch_3'):
tower_pool = slim.avg_pool2d(net, 3, stride=1, padding='SAME',
scope='AvgPool_0a_3x3')
tower_pool_1 = slim.conv2d(tower_pool, 64, 1,
scope='Conv2d_0b_1x1')
net = tf.concat(
[tower_conv, tower_conv1_1, tower_conv2_2, tower_pool_1], 3)
if add_and_check_final('Mixed_5b', net): return net, end_points
# TODO(alemi): Register intermediate endpoints
net = slim.repeat(net, 10, block35, scale=0.17)
# 17 x 17 x 1088 if output_stride == 8,
# 33 x 33 x 1088 if output_stride == 16
use_atrous = output_stride == 8
with tf.variable_scope('Mixed_6a'):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 384, 3, stride=1 if use_atrous else 2,
padding=padding,
scope='Conv2d_1a_3x3')
with tf.variable_scope('Branch_1'):
tower_conv1_0 = slim.conv2d(net, 256, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1_0, 256, 3,
scope='Conv2d_0b_3x3')
tower_conv1_2 = slim.conv2d(tower_conv1_1, 384, 3,
stride=1 if use_atrous else 2,
padding=padding,
scope='Conv2d_1a_3x3')
with tf.variable_scope('Branch_2'):
tower_pool = slim.max_pool2d(net, 3, stride=1 if use_atrous else 2,
padding=padding,
scope='MaxPool_1a_3x3')
net = tf.concat([tower_conv, tower_conv1_2, tower_pool], 3)
if add_and_check_final('Mixed_6a', net): return net, end_points
# TODO(alemi): register intermediate endpoints
with slim.arg_scope([slim.conv2d], rate=2 if use_atrous else 1):
net = slim.repeat(net, 20, block17, scale=0.10)
if add_and_check_final('PreAuxLogits', net): return net, end_points
if output_stride == 8:
# TODO(gpapan): Properly support output_stride for the rest of the net.
raise ValueError('output_stride==8 is only supported up to the '
'PreAuxlogits end_point for now.')
# 8 x 8 x 2080
with tf.variable_scope('Mixed_7a'):
with tf.variable_scope('Branch_0'):
tower_conv = slim.conv2d(net, 256, 1, scope='Conv2d_0a_1x1')
tower_conv_1 = slim.conv2d(tower_conv, 384, 3, stride=2,
padding=padding,
scope='Conv2d_1a_3x3')
with tf.variable_scope('Branch_1'):
tower_conv1 = slim.conv2d(net, 256, 1, scope='Conv2d_0a_1x1')
tower_conv1_1 = slim.conv2d(tower_conv1, 288, 3, stride=2,
padding=padding,
scope='Conv2d_1a_3x3')
with tf.variable_scope('Branch_2'):
tower_conv2 = slim.conv2d(net, 256, 1, scope='Conv2d_0a_1x1')
tower_conv2_1 = slim.conv2d(tower_conv2, 288, 3,
scope='Conv2d_0b_3x3')
tower_conv2_2 = slim.conv2d(tower_conv2_1, 320, 3, stride=2,
padding=padding,
scope='Conv2d_1a_3x3')
with tf.variable_scope('Branch_3'):
tower_pool = slim.max_pool2d(net, 3, stride=2,
padding=padding,
scope='MaxPool_1a_3x3')
net = tf.concat(
[tower_conv_1, tower_conv1_1, tower_conv2_2, tower_pool], 3)
if add_and_check_final('Mixed_7a', net): return net, end_points
# TODO(alemi): register intermediate endpoints
net = slim.repeat(net, 9, block8, scale=0.20)
net = block8(net, activation_fn=None)
# 8 x 8 x 1536
net = slim.conv2d(net, 1536, 1, scope='Conv2d_7b_1x1')
if add_and_check_final('Conv2d_7b_1x1', net): return net, end_points
raise ValueError('final_endpoint (%s) not recognized', final_endpoint)
def inception_resnet_v2(inputs, num_classes=1001, is_training=True,
dropout_keep_prob=0.8,
reuse=None,
scope='InceptionResnetV2',
create_aux_logits=True):
"""Creates the Inception Resnet V2 model.
Args:
inputs: a 4-D tensor of size [batch_size, height, width, 3].
num_classes: number of predicted classes.
is_training: whether is training or not.
dropout_keep_prob: float, the fraction to keep before final layer.
reuse: whether or not the network and its variables should be reused. To be
able to reuse 'scope' must be given.
scope: Optional variable_scope.
create_aux_logits: Whether to include the auxilliary logits.
Returns:
logits: the logits outputs of the model.
end_points: the set of end_points from the inception model.
"""
end_points = {}
with tf.variable_scope(scope, 'InceptionResnetV2', [inputs, num_classes],
reuse=reuse) as scope:
with slim.arg_scope([slim.batch_norm, slim.dropout],
is_training=is_training):
net, end_points = inception_resnet_v2_base(inputs, scope=scope)
if create_aux_logits:
with tf.variable_scope('AuxLogits'):
aux = end_points['PreAuxLogits']
aux = slim.avg_pool2d(aux, 5, stride=3, padding='VALID',
scope='Conv2d_1a_3x3')
aux = slim.conv2d(aux, 128, 1, scope='Conv2d_1b_1x1')
aux = slim.conv2d(aux, 768, aux.get_shape()[1:3],
padding='VALID', scope='Conv2d_2a_5x5')
aux = slim.flatten(aux)
aux = slim.fully_connected(aux, num_classes, activation_fn=None,
scope='Logits')
end_points['AuxLogits'] = aux
with tf.variable_scope('Logits'):
net = slim.avg_pool2d(net, net.get_shape()[1:3], padding='VALID',
scope='AvgPool_1a_8x8')
net = slim.flatten(net)
net = slim.dropout(net, dropout_keep_prob, is_training=is_training,
scope='Dropout')
end_points['PreLogitsFlatten'] = net
logits = slim.fully_connected(net, num_classes, activation_fn=None,
scope='Logits')
end_points['Logits'] = logits
end_points['Predictions'] = tf.nn.softmax(logits, name='Predictions')
return logits, end_points
inception_resnet_v2.default_image_size = 299
def inception_resnet_v2_arg_scope(weight_decay=0.00004,
batch_norm_decay=0.9997,
batch_norm_epsilon=0.001,
trainable=True):
"""Returns the scope with the default parameters for inception_resnet_v2.
Args:
weight_decay: the weight decay for weights variables.
batch_norm_decay: decay for the moving average of batch_norm momentums.
batch_norm_epsilon: small float added to variance to avoid dividing by zero.
Returns:
a arg_scope with the parameters needed for inception_resnet_v2.
"""
# Set weight_decay for weights in conv2d and fully_connected layers.
with slim.arg_scope([slim.conv2d, slim.fully_connected],
weights_regularizer=slim.l2_regularizer(weight_decay),
biases_regularizer=slim.l2_regularizer(weight_decay),
trainable=trainable):
batch_norm_params = {
'decay': batch_norm_decay,
'epsilon': batch_norm_epsilon,
'trainable': trainable
}
# Set activation_fn and parameters for batch_norm.
with slim.arg_scope([slim.conv2d], activation_fn=tf.nn.relu,
normalizer_fn=slim.batch_norm,
normalizer_params=batch_norm_params) as scope:
return scope
| [
2,
15069,
1584,
383,
309,
22854,
37535,
46665,
13,
1439,
6923,
33876,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
2,
38093,
25609,
28,
198,
37811,
4264,
1299,
262,
6770,
286,
262,
554,
4516,
1874,
3262,
569,
17,
10959,
13,
198,
198,
1722,
3417,
287,
2638,
1378,
283,
87,
452,
13,
2398,
14,
8937,
14,
1433,
2999,
13,
2998,
30057,
13,
628,
220,
554,
4516,
12,
85,
19,
11,
554,
4516,
12,
4965,
7934,
290,
262,
17677,
286,
1874,
312,
723,
8113,
507,
198,
220,
220,
220,
319,
18252,
198,
220,
4302,
27974,
1533,
4716,
11,
36106,
314,
2364,
68,
11,
18653,
6656,
15710,
66,
365,
11,
4422,
9300,
11632,
198,
37811,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
6738,
11593,
37443,
834,
1330,
7297,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
628,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
198,
82,
2475,
796,
48700,
13,
3642,
822,
13,
82,
2475,
628,
198,
4299,
2512,
2327,
7,
3262,
11,
5046,
28,
16,
13,
15,
11,
14916,
62,
22184,
28,
27110,
13,
20471,
13,
260,
2290,
11,
8354,
28,
14202,
11,
32349,
28,
14202,
2599,
198,
220,
37227,
15580,
82,
262,
3439,
87,
2327,
581,
3262,
2512,
526,
15931,
198,
220,
351,
48700,
13,
45286,
62,
29982,
7,
29982,
11,
705,
12235,
2327,
3256,
685,
3262,
4357,
32349,
28,
260,
1904,
2599,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
3933,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
3933,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
15,
11,
3933,
11,
513,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
17,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
3933,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
62,
15,
11,
4764,
11,
513,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
62,
16,
11,
5598,
11,
513,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
66,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
7668,
796,
48700,
13,
1102,
9246,
7,
22704,
28,
18,
11,
3815,
41888,
36170,
62,
42946,
11,
10580,
62,
42946,
16,
62,
16,
11,
10580,
62,
42946,
17,
62,
17,
12962,
198,
220,
220,
220,
510,
796,
18862,
13,
42946,
17,
67,
7,
76,
2966,
11,
2010,
13,
1136,
62,
43358,
3419,
58,
18,
4357,
352,
11,
3487,
7509,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14916,
62,
22184,
28,
14202,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
2010,
15853,
5046,
1635,
510,
198,
220,
220,
220,
611,
14916,
62,
22184,
25,
198,
220,
220,
220,
220,
220,
2010,
796,
14916,
62,
22184,
7,
3262,
8,
198,
220,
1441,
2010,
628,
198,
4299,
2512,
1558,
7,
3262,
11,
5046,
28,
16,
13,
15,
11,
14916,
62,
22184,
28,
27110,
13,
20471,
13,
260,
2290,
11,
8354,
28,
14202,
11,
32349,
28,
14202,
2599,
198,
220,
37227,
15580,
82,
262,
1596,
87,
1558,
581,
3262,
2512,
526,
15931,
198,
220,
351,
48700,
13,
45286,
62,
29982,
7,
29982,
11,
705,
12235,
1558,
3256,
685,
3262,
4357,
32349,
28,
260,
1904,
2599,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17817,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
13108,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
15,
11,
13454,
11,
685,
16,
11,
767,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
16,
87,
22,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
16,
11,
17817,
11,
685,
22,
11,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
66,
62,
22,
87,
16,
11537,
198,
220,
220,
220,
7668,
796,
48700,
13,
1102,
9246,
7,
22704,
28,
18,
11,
3815,
41888,
36170,
62,
42946,
11,
10580,
62,
42946,
16,
62,
17,
12962,
198,
220,
220,
220,
510,
796,
18862,
13,
42946,
17,
67,
7,
76,
2966,
11,
2010,
13,
1136,
62,
43358,
3419,
58,
18,
4357,
352,
11,
3487,
7509,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14916,
62,
22184,
28,
14202,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
2010,
15853,
5046,
1635,
510,
198,
220,
220,
220,
611,
14916,
62,
22184,
25,
198,
220,
220,
220,
220,
220,
2010,
796,
14916,
62,
22184,
7,
3262,
8,
198,
220,
1441,
2010,
628,
198,
4299,
2512,
23,
7,
3262,
11,
5046,
28,
16,
13,
15,
11,
14916,
62,
22184,
28,
27110,
13,
20471,
13,
260,
2290,
11,
8354,
28,
14202,
11,
32349,
28,
14202,
2599,
198,
220,
37227,
15580,
82,
262,
807,
87,
23,
581,
3262,
2512,
526,
15931,
198,
220,
351,
48700,
13,
45286,
62,
29982,
7,
29982,
11,
705,
12235,
23,
3256,
685,
3262,
4357,
32349,
28,
260,
1904,
2599,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17817,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17817,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
15,
11,
26063,
11,
685,
16,
11,
513,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
16,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
16,
11,
17759,
11,
685,
18,
11,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
66,
62,
18,
87,
16,
11537,
198,
220,
220,
220,
7668,
796,
48700,
13,
1102,
9246,
7,
22704,
28,
18,
11,
3815,
41888,
36170,
62,
42946,
11,
10580,
62,
42946,
16,
62,
17,
12962,
198,
220,
220,
220,
510,
796,
18862,
13,
42946,
17,
67,
7,
76,
2966,
11,
2010,
13,
1136,
62,
43358,
3419,
58,
18,
4357,
352,
11,
3487,
7509,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14916,
62,
22184,
28,
14202,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
2010,
15853,
5046,
1635,
510,
198,
220,
220,
220,
611,
14916,
62,
22184,
25,
198,
220,
220,
220,
220,
220,
2010,
796,
14916,
62,
22184,
7,
3262,
8,
198,
220,
1441,
2010,
628,
198,
4299,
30839,
62,
411,
3262,
62,
85,
17,
62,
8692,
7,
15414,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
437,
4122,
11639,
3103,
85,
17,
67,
62,
22,
65,
62,
16,
87,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5072,
62,
2536,
485,
28,
1433,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10548,
62,
30053,
62,
31803,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
28,
14202,
2599,
198,
220,
37227,
818,
4516,
2746,
422,
220,
2638,
1378,
283,
87,
452,
13,
2398,
14,
8937,
14,
1433,
2999,
13,
2998,
30057,
13,
628,
220,
28407,
82,
281,
554,
4516,
1874,
3262,
410,
17,
3127,
422,
17311,
284,
262,
1813,
2457,
198,
220,
36123,
13,
770,
2446,
460,
5678,
262,
3127,
510,
284,
262,
2457,
30839,
198,
220,
2512,
34872,
17,
67,
62,
22,
65,
62,
16,
87,
16,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17311,
25,
257,
11192,
273,
286,
2546,
685,
43501,
62,
7857,
11,
6001,
11,
9647,
11,
9619,
4083,
198,
220,
220,
220,
2457,
62,
437,
4122,
25,
26052,
262,
36123,
284,
5678,
262,
3127,
510,
284,
13,
632,
198,
220,
220,
220,
220,
220,
460,
307,
530,
286,
37250,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
3256,
705,
3103,
85,
17,
67,
62,
17,
64,
62,
18,
87,
18,
3256,
705,
3103,
85,
17,
67,
62,
17,
65,
62,
18,
87,
18,
3256,
198,
220,
220,
220,
220,
220,
705,
11518,
27201,
62,
18,
64,
62,
18,
87,
18,
3256,
705,
3103,
85,
17,
67,
62,
18,
65,
62,
16,
87,
16,
3256,
705,
3103,
85,
17,
67,
62,
19,
64,
62,
18,
87,
18,
3256,
705,
11518,
27201,
62,
20,
64,
62,
18,
87,
18,
3256,
198,
220,
220,
220,
220,
220,
705,
44,
2966,
62,
20,
65,
3256,
705,
44,
2966,
62,
21,
64,
3256,
705,
6719,
32,
2821,
11187,
896,
3256,
705,
44,
2966,
62,
22,
64,
3256,
705,
3103,
85,
17,
67,
62,
22,
65,
62,
16,
87,
16,
20520,
198,
220,
220,
220,
5072,
62,
2536,
485,
25,
317,
16578,
283,
326,
26052,
262,
9167,
8064,
286,
5128,
284,
198,
220,
220,
220,
220,
220,
5072,
21739,
6323,
13,
5514,
6971,
807,
290,
1467,
13,
198,
220,
220,
220,
10548,
62,
30053,
62,
31803,
25,
1649,
2081,
11,
2458,
477,
262,
26173,
2389,
14098,
654,
287,
262,
3127,
198,
220,
220,
220,
220,
220,
284,
311,
10067,
24511,
523,
326,
262,
3895,
8739,
389,
19874,
13,
198,
220,
220,
220,
8354,
25,
32233,
7885,
62,
29982,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
11192,
273,
62,
448,
25,
5072,
11192,
273,
11188,
284,
262,
2457,
62,
437,
4122,
13,
198,
220,
220,
220,
886,
62,
13033,
25,
257,
900,
286,
1753,
602,
329,
7097,
779,
11,
329,
1672,
30114,
3166,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9089,
13,
628,
220,
7567,
2696,
25,
198,
220,
220,
220,
11052,
12331,
25,
611,
2457,
62,
437,
4122,
318,
407,
900,
284,
530,
286,
262,
2747,
18156,
3815,
11,
198,
220,
220,
220,
220,
220,
393,
611,
262,
5072,
62,
2536,
485,
318,
407,
807,
393,
1467,
11,
393,
611,
262,
5072,
62,
2536,
485,
318,
807,
290,
198,
220,
220,
220,
220,
220,
356,
2581,
281,
886,
966,
706,
705,
6719,
32,
2821,
11187,
896,
4458,
198,
220,
37227,
198,
220,
611,
5072,
62,
2536,
485,
14512,
807,
290,
5072,
62,
2536,
485,
14512,
1467,
25,
198,
220,
220,
220,
5298,
11052,
12331,
10786,
22915,
62,
2536,
485,
1276,
307,
807,
393,
1467,
2637,
8,
628,
220,
24511,
796,
705,
50,
10067,
6,
611,
10548,
62,
30053,
62,
31803,
2073,
705,
23428,
2389,
6,
628,
220,
886,
62,
13033,
796,
23884,
628,
220,
351,
48700,
13,
45286,
62,
29982,
7,
29982,
11,
705,
818,
4516,
4965,
3262,
53,
17,
3256,
685,
15414,
82,
60,
2599,
198,
220,
220,
220,
351,
18862,
13,
853,
62,
29982,
26933,
82,
2475,
13,
42946,
17,
67,
11,
18862,
13,
9806,
62,
7742,
17,
67,
11,
18862,
13,
615,
70,
62,
7742,
17,
67,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33769,
28,
16,
11,
24511,
11639,
50,
10067,
6,
2599,
198,
220,
220,
220,
220,
220,
1303,
24041,
2124,
24041,
2124,
3933,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
15414,
82,
11,
3933,
11,
513,
11,
33769,
28,
17,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
220,
220,
1303,
22909,
2124,
22909,
2124,
3933,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
3933,
11,
513,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
17,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
17,
64,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
22909,
2124,
22909,
2124,
5598,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
5598,
11,
513,
11,
8354,
11639,
3103,
85,
17,
67,
62,
17,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
17,
65,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
8854,
2124,
8854,
2124,
5598,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
9806,
62,
7742,
17,
67,
7,
3262,
11,
513,
11,
33769,
28,
17,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11518,
27201,
62,
18,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
11518,
27201,
62,
18,
64,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
8854,
2124,
8854,
2124,
4019,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
4019,
11,
352,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
18,
65,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
18,
65,
62,
16,
87,
16,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
9166,
2124,
9166,
2124,
17817,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17817,
11,
513,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
19,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
19,
64,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
3439,
2124,
3439,
2124,
17817,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
9806,
62,
7742,
17,
67,
7,
3262,
11,
513,
11,
33769,
28,
17,
11,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11518,
27201,
62,
20,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
11518,
27201,
62,
20,
64,
62,
18,
87,
18,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
220,
220,
1303,
3439,
2124,
3439,
2124,
20959,
198,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
44,
2966,
62,
20,
65,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
9907,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
4764,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
15,
11,
5598,
11,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
20,
87,
20,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
17,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
5598,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
62,
15,
11,
9907,
11,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
62,
16,
11,
9907,
11,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
66,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
18,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
7742,
796,
18862,
13,
615,
70,
62,
7742,
17,
67,
7,
3262,
11,
513,
11,
33769,
28,
16,
11,
24511,
11639,
50,
10067,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
48997,
27201,
62,
15,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
7742,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
7742,
11,
5598,
11,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
48700,
13,
1102,
9246,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
36170,
62,
42946,
11,
10580,
62,
42946,
16,
62,
16,
11,
10580,
62,
42946,
17,
62,
17,
11,
10580,
62,
7742,
62,
16,
4357,
513,
8,
628,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
44,
2966,
62,
20,
65,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
198,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
282,
43967,
2599,
17296,
19898,
886,
13033,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
44754,
7,
3262,
11,
838,
11,
2512,
2327,
11,
5046,
28,
15,
13,
1558,
8,
628,
220,
220,
220,
220,
220,
1303,
1596,
2124,
1596,
2124,
838,
3459,
611,
5072,
62,
2536,
485,
6624,
807,
11,
198,
220,
220,
220,
220,
220,
1303,
4747,
2124,
4747,
2124,
838,
3459,
611,
5072,
62,
2536,
485,
6624,
1467,
198,
220,
220,
220,
220,
220,
779,
62,
265,
7596,
796,
5072,
62,
2536,
485,
6624,
807,
628,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
44,
2966,
62,
21,
64,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
40400,
11,
513,
11,
33769,
28,
16,
611,
779,
62,
265,
7596,
2073,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
15,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17759,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
15,
11,
17759,
11,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
62,
16,
11,
40400,
11,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33769,
28,
16,
611,
779,
62,
265,
7596,
2073,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
17,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
7742,
796,
18862,
13,
9806,
62,
7742,
17,
67,
7,
3262,
11,
513,
11,
33769,
28,
16,
611,
779,
62,
265,
7596,
2073,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11518,
27201,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
48700,
13,
1102,
9246,
26933,
36170,
62,
42946,
11,
10580,
62,
42946,
16,
62,
17,
11,
10580,
62,
7742,
4357,
513,
8,
628,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
44,
2966,
62,
21,
64,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
282,
43967,
2599,
7881,
19898,
886,
13033,
198,
220,
220,
220,
220,
220,
351,
18862,
13,
853,
62,
29982,
26933,
82,
2475,
13,
42946,
17,
67,
4357,
2494,
28,
17,
611,
779,
62,
265,
7596,
2073,
352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
44754,
7,
3262,
11,
1160,
11,
2512,
1558,
11,
5046,
28,
15,
13,
940,
8,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
6719,
32,
2821,
11187,
896,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
220,
220,
611,
5072,
62,
2536,
485,
6624,
807,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
31197,
2674,
2599,
45989,
306,
1104,
5072,
62,
2536,
485,
329,
262,
1334,
286,
262,
2010,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
10786,
22915,
62,
2536,
485,
855,
23,
318,
691,
4855,
510,
284,
262,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6719,
32,
2821,
6404,
896,
886,
62,
4122,
329,
783,
2637,
8,
628,
220,
220,
220,
220,
220,
1303,
807,
2124,
807,
2124,
1160,
1795,
198,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
44,
2966,
62,
22,
64,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
15,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17759,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
11,
40400,
11,
513,
11,
33769,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
16,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17759,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
16,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
16,
11,
35419,
11,
513,
11,
33769,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
17,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
17759,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
15,
64,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
16,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
11,
35419,
11,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
15,
65,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
42946,
17,
62,
17,
796,
18862,
13,
42946,
17,
67,
7,
36170,
62,
42946,
17,
62,
16,
11,
20959,
11,
513,
11,
33769,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
33,
25642,
62,
18,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10580,
62,
7742,
796,
18862,
13,
9806,
62,
7742,
17,
67,
7,
3262,
11,
513,
11,
33769,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
28,
39231,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11518,
27201,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
48700,
13,
1102,
9246,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
36170,
62,
42946,
62,
16,
11,
10580,
62,
42946,
16,
62,
16,
11,
10580,
62,
42946,
17,
62,
17,
11,
10580,
62,
7742,
4357,
513,
8,
628,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
44,
2966,
62,
22,
64,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
282,
43967,
2599,
7881,
19898,
886,
13033,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
44754,
7,
3262,
11,
860,
11,
2512,
23,
11,
5046,
28,
15,
13,
1238,
8,
198,
220,
220,
220,
220,
220,
2010,
796,
2512,
23,
7,
3262,
11,
14916,
62,
22184,
28,
14202,
8,
628,
220,
220,
220,
220,
220,
1303,
807,
2124,
807,
2124,
1315,
2623,
198,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
42946,
17,
67,
7,
3262,
11,
1315,
2623,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
22,
65,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
611,
751,
62,
392,
62,
9122,
62,
20311,
10786,
3103,
85,
17,
67,
62,
22,
65,
62,
16,
87,
16,
3256,
2010,
2599,
1441,
2010,
11,
886,
62,
13033,
628,
220,
220,
220,
5298,
11052,
12331,
10786,
20311,
62,
437,
4122,
37633,
82,
8,
407,
8018,
3256,
2457,
62,
437,
4122,
8,
628,
198,
4299,
30839,
62,
411,
3262,
62,
85,
17,
7,
15414,
82,
11,
997,
62,
37724,
28,
47705,
11,
318,
62,
34409,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4268,
448,
62,
14894,
62,
1676,
65,
28,
15,
13,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32349,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
818,
4516,
4965,
3262,
53,
17,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2251,
62,
14644,
62,
6404,
896,
28,
17821,
2599,
198,
220,
37227,
16719,
274,
262,
554,
4516,
1874,
3262,
569,
17,
2746,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
17311,
25,
257,
604,
12,
35,
11192,
273,
286,
2546,
685,
43501,
62,
7857,
11,
6001,
11,
9647,
11,
513,
4083,
198,
220,
220,
220,
997,
62,
37724,
25,
1271,
286,
11001,
6097,
13,
198,
220,
220,
220,
318,
62,
34409,
25,
1771,
318,
3047,
393,
407,
13,
198,
220,
220,
220,
4268,
448,
62,
14894,
62,
1676,
65,
25,
12178,
11,
262,
13390,
284,
1394,
878,
2457,
7679,
13,
198,
220,
220,
220,
32349,
25,
1771,
393,
407,
262,
3127,
290,
663,
9633,
815,
307,
46823,
13,
1675,
307,
198,
220,
220,
220,
220,
220,
1498,
284,
32349,
705,
29982,
6,
1276,
307,
1813,
13,
198,
220,
220,
220,
8354,
25,
32233,
7885,
62,
29982,
13,
198,
220,
220,
220,
2251,
62,
14644,
62,
6404,
896,
25,
10127,
284,
2291,
262,
27506,
359,
8042,
2604,
896,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
2604,
896,
25,
262,
2604,
896,
23862,
286,
262,
2746,
13,
198,
220,
220,
220,
886,
62,
13033,
25,
262,
900,
286,
886,
62,
13033,
422,
262,
30839,
2746,
13,
198,
220,
37227,
198,
220,
886,
62,
13033,
796,
23884,
628,
220,
351,
48700,
13,
45286,
62,
29982,
7,
29982,
11,
705,
818,
4516,
4965,
3262,
53,
17,
3256,
685,
15414,
82,
11,
997,
62,
37724,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32349,
28,
260,
1904,
8,
355,
8354,
25,
198,
220,
220,
220,
351,
18862,
13,
853,
62,
29982,
26933,
82,
2475,
13,
43501,
62,
27237,
11,
18862,
13,
14781,
448,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
34409,
28,
271,
62,
34409,
2599,
628,
220,
220,
220,
220,
220,
2010,
11,
886,
62,
13033,
796,
30839,
62,
411,
3262,
62,
85,
17,
62,
8692,
7,
15414,
82,
11,
8354,
28,
29982,
8,
628,
220,
220,
220,
220,
220,
611,
2251,
62,
14644,
62,
6404,
896,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
32,
2821,
11187,
896,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
886,
62,
13033,
17816,
6719,
32,
2821,
11187,
896,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
18862,
13,
615,
70,
62,
7742,
17,
67,
7,
14644,
11,
642,
11,
33769,
28,
18,
11,
24511,
11639,
23428,
2389,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
3103,
85,
17,
67,
62,
16,
64,
62,
18,
87,
18,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
18862,
13,
42946,
17,
67,
7,
14644,
11,
13108,
11,
352,
11,
8354,
11639,
3103,
85,
17,
67,
62,
16,
65,
62,
16,
87,
16,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
18862,
13,
42946,
17,
67,
7,
14644,
11,
46720,
11,
27506,
13,
1136,
62,
43358,
3419,
58,
16,
25,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24511,
11639,
23428,
2389,
3256,
8354,
11639,
3103,
85,
17,
67,
62,
17,
64,
62,
20,
87,
20,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
18862,
13,
2704,
41769,
7,
14644,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27506,
796,
18862,
13,
2759,
62,
15236,
7,
14644,
11,
997,
62,
37724,
11,
14916,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11187,
896,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
13033,
17816,
32,
2821,
11187,
896,
20520,
796,
27506,
628,
220,
220,
220,
220,
220,
351,
48700,
13,
45286,
62,
29982,
10786,
11187,
896,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
615,
70,
62,
7742,
17,
67,
7,
3262,
11,
2010,
13,
1136,
62,
43358,
3419,
58,
16,
25,
18,
4357,
24511,
11639,
23428,
2389,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
48997,
27201,
62,
16,
64,
62,
23,
87,
23,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
2704,
41769,
7,
3262,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2010,
796,
18862,
13,
14781,
448,
7,
3262,
11,
4268,
448,
62,
14894,
62,
1676,
65,
11,
318,
62,
34409,
28,
271,
62,
34409,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
26932,
448,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
886,
62,
13033,
17816,
6719,
11187,
896,
7414,
41769,
20520,
796,
2010,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
896,
796,
18862,
13,
2759,
62,
15236,
7,
3262,
11,
997,
62,
37724,
11,
14916,
62,
22184,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8354,
11639,
11187,
896,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
13033,
17816,
11187,
896,
20520,
796,
2604,
896,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
13033,
17816,
39156,
9278,
20520,
796,
48700,
13,
20471,
13,
4215,
9806,
7,
6404,
896,
11,
1438,
11639,
39156,
9278,
11537,
628,
220,
220,
220,
1441,
2604,
896,
11,
886,
62,
13033,
198,
924,
1159,
62,
411,
3262,
62,
85,
17,
13,
12286,
62,
9060,
62,
7857,
796,
31011,
628,
198,
4299,
30839,
62,
411,
3262,
62,
85,
17,
62,
853,
62,
29982,
7,
6551,
62,
12501,
323,
28,
15,
13,
2388,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
27237,
62,
12501,
323,
28,
15,
13,
2079,
5607,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
27237,
62,
538,
18217,
261,
28,
15,
13,
8298,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4512,
540,
28,
17821,
2599,
198,
220,
37227,
35561,
262,
8354,
351,
262,
4277,
10007,
329,
30839,
62,
411,
3262,
62,
85,
17,
13,
628,
220,
943,
14542,
25,
198,
220,
220,
220,
3463,
62,
12501,
323,
25,
262,
3463,
22119,
329,
19590,
9633,
13,
198,
220,
220,
220,
15458,
62,
27237,
62,
12501,
323,
25,
22119,
329,
262,
3867,
2811,
286,
15458,
62,
27237,
2589,
5700,
13,
198,
220,
220,
220,
15458,
62,
27237,
62,
538,
18217,
261,
25,
1402,
12178,
2087,
284,
24198,
284,
3368,
27241,
416,
6632,
13,
628,
220,
16409,
25,
198,
220,
220,
220,
257,
1822,
62,
29982,
351,
262,
10007,
2622,
329,
30839,
62,
411,
3262,
62,
85,
17,
13,
198,
220,
37227,
198,
220,
1303,
5345,
3463,
62,
12501,
323,
329,
19590,
287,
3063,
17,
67,
290,
3938,
62,
15236,
11685,
13,
198,
220,
351,
18862,
13,
853,
62,
29982,
26933,
82,
2475,
13,
42946,
17,
67,
11,
18862,
13,
2759,
62,
15236,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19590,
62,
16338,
7509,
28,
82,
2475,
13,
75,
17,
62,
16338,
7509,
7,
6551,
62,
12501,
323,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29275,
62,
16338,
7509,
28,
82,
2475,
13,
75,
17,
62,
16338,
7509,
7,
6551,
62,
12501,
323,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4512,
540,
28,
27432,
540,
2599,
628,
220,
220,
220,
15458,
62,
27237,
62,
37266,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
12501,
323,
10354,
15458,
62,
27237,
62,
12501,
323,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
538,
18217,
261,
10354,
15458,
62,
27237,
62,
538,
18217,
261,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
27432,
540,
10354,
4512,
540,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
1303,
5345,
14916,
62,
22184,
290,
10007,
329,
15458,
62,
27237,
13,
198,
220,
220,
220,
351,
18862,
13,
853,
62,
29982,
26933,
82,
2475,
13,
42946,
17,
67,
4357,
14916,
62,
22184,
28,
27110,
13,
20471,
13,
260,
2290,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3487,
7509,
62,
22184,
28,
82,
2475,
13,
43501,
62,
27237,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3487,
7509,
62,
37266,
28,
43501,
62,
27237,
62,
37266,
8,
355,
8354,
25,
198,
220,
220,
220,
220,
220,
1441,
8354,
198
] | 2.021242 | 8,003 |
import struct
from typing import Tuple
from ledgercomm import Transport
from boilerplate_client.boilerplate_cmd_builder import BoilerplateCommandBuilder, InsType
from boilerplate_client.button import Button
from boilerplate_client.exception import DeviceException
from boilerplate_client.transaction import Transaction
from neo3.network import payloads
| [
11748,
2878,
198,
6738,
19720,
1330,
309,
29291,
198,
198,
6738,
37208,
9503,
1330,
19940,
198,
198,
6738,
36741,
6816,
62,
16366,
13,
2127,
5329,
6816,
62,
28758,
62,
38272,
1330,
3248,
5329,
6816,
21575,
32875,
11,
7088,
6030,
198,
6738,
36741,
6816,
62,
16366,
13,
16539,
1330,
20969,
198,
6738,
36741,
6816,
62,
16366,
13,
1069,
4516,
1330,
16232,
16922,
198,
6738,
36741,
6816,
62,
16366,
13,
7645,
2673,
1330,
45389,
198,
6738,
19102,
18,
13,
27349,
1330,
21437,
82,
198
] | 4.329268 | 82 |
import clpy
import clpy.sparse.base
_preamble_atomic_add = '''
#if __CUDA_ARCH__ < 600
__device__ double atomicAdd(double* address, double val) {
unsigned long long* address_as_ull =
(unsigned long long*)address;
unsigned long long old = *address_as_ull, assumed;
do {
assumed = old;
old = atomicCAS(address_as_ull, assumed,
__double_as_longlong(val +
__longlong_as_double(assumed)));
} while (assumed != old);
return __longlong_as_double(old);
}
#endif
'''
| [
11748,
537,
9078,
198,
11748,
537,
9078,
13,
82,
29572,
13,
8692,
628,
198,
62,
79,
1476,
903,
62,
47116,
62,
2860,
796,
705,
7061,
198,
2,
361,
11593,
43633,
5631,
62,
31315,
834,
1279,
10053,
198,
834,
25202,
834,
4274,
17226,
4550,
7,
23352,
9,
2209,
11,
4274,
1188,
8,
1391,
198,
220,
220,
220,
22165,
890,
890,
9,
2209,
62,
292,
62,
724,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
43375,
890,
890,
28104,
21975,
26,
198,
220,
220,
220,
22165,
890,
890,
1468,
796,
1635,
21975,
62,
292,
62,
724,
11,
9672,
26,
198,
220,
220,
220,
466,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
9672,
796,
1468,
26,
198,
220,
220,
220,
220,
220,
220,
220,
1468,
796,
17226,
34,
1921,
7,
21975,
62,
292,
62,
724,
11,
9672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11593,
23352,
62,
292,
62,
6511,
6511,
7,
2100,
1343,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11593,
6511,
6511,
62,
292,
62,
23352,
7,
562,
18940,
4008,
1776,
198,
220,
220,
220,
1782,
981,
357,
562,
18940,
14512,
1468,
1776,
198,
220,
220,
220,
1441,
11593,
6511,
6511,
62,
292,
62,
23352,
7,
727,
1776,
198,
92,
198,
2,
32088,
198,
7061,
6,
628,
628
] | 2.103571 | 280 |
from pytest import raises
from discopy.cartesian import *
| [
6738,
12972,
9288,
1330,
12073,
198,
6738,
1221,
11081,
13,
26674,
35610,
1330,
1635,
628,
628,
628,
628
] | 3.611111 | 18 |
# A part of NonVisual Desktop Access (NVDA)
# Copyright (C) 2007-2021 NV Access Limited, Babbage B.V., James Teh, Leonard de Ruijter,
# Thomas Stivers, Accessolutions, Julien Cochuyt
# This file is covered by the GNU General Public License.
# See the file COPYING for more details.
from typing import Any, Callable, Union
import os
import itertools
import collections
import winsound
import time
import weakref
import wx
import core
from logHandler import log
import documentBase
import review
import scriptHandler
import eventHandler
import nvwave
import queueHandler
import gui
import ui
import cursorManager
from scriptHandler import script, isScriptWaiting, willSayAllResume
import aria
import controlTypes
from controlTypes import OutputReason
import config
import textInfos
import braille
import vision
import speech
from speech import sayAll
import treeInterceptorHandler
import inputCore
import api
import gui.guiHelper
from gui.dpiScalingHelper import DpiScalingHelperMixinWithoutInit
from NVDAObjects import NVDAObject
import gui.contextHelp
from abc import ABCMeta, abstractmethod
import globalVars
from typing import Optional
def reportPassThrough(treeInterceptor,onlyIfChanged=True):
"""Reports the pass through mode if it has changed.
@param treeInterceptor: The current Browse Mode treeInterceptor.
@type treeInterceptor: L{BrowseModeTreeInterceptor}
@param onlyIfChanged: if true reporting will not happen if the last reportPassThrough reported the same thing.
@type onlyIfChanged: bool
"""
if not onlyIfChanged or treeInterceptor.passThrough != reportPassThrough.last:
if config.conf["virtualBuffers"]["passThroughAudioIndication"]:
sound = "focusMode.wav" if treeInterceptor.passThrough else "browseMode.wav"
nvwave.playWaveFile(os.path.join(globalVars.appDir, "waves", sound))
else:
if treeInterceptor.passThrough:
# Translators: The mode to interact with controls in documents
ui.message(_("Focus mode"))
else:
# Translators: The mode that presents text in a flat representation
# that can be navigated with the cursor keys like in a text document
ui.message(_("Browse mode"))
reportPassThrough.last = treeInterceptor.passThrough
reportPassThrough.last = False
def rename(self,newName):
"""
Renames this item with the new name.
"""
raise NotImplementedError
def report(self,readUnit=None):
info=self.textInfo
# If we are dealing with a form field, ensure we don't read the whole content if it's an editable text.
if self.itemType == "formField":
if self.obj.role == controlTypes.Role.EDITABLETEXT:
readUnit = textInfos.UNIT_LINE
if readUnit:
fieldInfo = info.copy()
info.collapse()
info.move(readUnit, 1, endPoint="end")
if info.compareEndPoints(fieldInfo, "endToEnd") > 0:
# We've expanded past the end of the field, so limit to the end of the field.
info.setEndPoint(fieldInfo, "endToEnd")
speech.speakTextInfo(info, reason=OutputReason.QUICKNAV)
def activate(self):
self.textInfo.obj._activatePosition(info=self.textInfo)
def moveTo(self):
if self.document.passThrough and getattr(self, "obj", False):
if controlTypes.State.FOCUSABLE in self.obj.states:
self.obj.setFocus()
return
self.document.passThrough = False
reportPassThrough(self.document)
info = self.textInfo.copy()
info.collapse()
self.document._set_selection(info, reason=OutputReason.QUICKNAV)
def _getLabelForProperties(self, labelPropertyGetter: Callable[[str], Optional[Any]]):
"""
Fetches required properties for this L{TextInfoQuickNavItem} and constructs a label to be shown in an elements list.
This can be used by subclasses to implement the L{label} property.
@Param labelPropertyGetter: A callable taking 1 argument, specifying the property to fetch.
For example, if L{itemType} is landmark, the callable must return the landmark type when "landmark" is passed as the property argument.
Alternative property names might be name or value.
The callable must return None if the property doesn't exist.
An expected callable might be get method on a L{Dict},
or "lambda property: getattr(self.obj, property, None)" for an L{NVDAObject}.
"""
content = self.textInfo.text.strip()
if self.itemType == "heading":
# Output: displayed text of the heading.
return content
labelParts = None
name = labelPropertyGetter("name")
if self.itemType == "landmark":
landmark = aria.landmarkRoles.get(labelPropertyGetter("landmark"))
# Example output: main menu; navigation
labelParts = (name, landmark)
else:
role: Union[controlTypes.Role, int] = labelPropertyGetter("role")
role = controlTypes.Role(role)
roleText = role.displayString
# Translators: Reported label in the elements list for an element which which has no name and value
unlabeled = _("Unlabeled")
realStates = labelPropertyGetter("states")
labeledStates = " ".join(controlTypes.processAndLabelStates(role, realStates, OutputReason.FOCUS))
if self.itemType == "formField":
if role in (
controlTypes.Role.BUTTON,
controlTypes.Role.DROPDOWNBUTTON,
controlTypes.Role.TOGGLEBUTTON,
controlTypes.Role.SPLITBUTTON,
controlTypes.Role.MENUBUTTON,
controlTypes.Role.DROPDOWNBUTTONGRID,
controlTypes.Role.TREEVIEWBUTTON
):
# Example output: Mute; toggle button; pressed
labelParts = (content or name or unlabeled, roleText, labeledStates)
else:
# Example output: Find a repository...; edit; has auto complete; NVDA
labelParts = (name or unlabeled, roleText, labeledStates, content)
elif self.itemType in ("link", "button"):
# Example output: You have unread notifications; visited
labelParts = (content or name or unlabeled, labeledStates)
if labelParts:
label = "; ".join(lp for lp in labelParts if lp)
else:
label = content
return label
class BrowseModeTreeInterceptor(treeInterceptorHandler.TreeInterceptor):
scriptCategory = inputCore.SCRCAT_BROWSEMODE
_disableAutoPassThrough = False
APPLICATION_ROLES = (controlTypes.Role.APPLICATION, controlTypes.Role.DIALOG)
def event_treeInterceptor_gainFocus(self):
"""Triggered when this browse mode interceptor gains focus.
This event is only fired upon entering this treeInterceptor when it was not the current treeInterceptor before.
This is different to L{event_gainFocus}, which is fired when an object inside this treeInterceptor gains focus, even if that object is in the same treeInterceptor.
"""
reportPassThrough(self)
ALWAYS_SWITCH_TO_PASS_THROUGH_ROLES = frozenset({
controlTypes.Role.COMBOBOX,
controlTypes.Role.EDITABLETEXT,
controlTypes.Role.LIST,
controlTypes.Role.LISTITEM,
controlTypes.Role.SLIDER,
controlTypes.Role.TABCONTROL,
controlTypes.Role.MENUBAR,
controlTypes.Role.POPUPMENU,
controlTypes.Role.TREEVIEW,
controlTypes.Role.TREEVIEWITEM,
controlTypes.Role.SPINBUTTON,
controlTypes.Role.TABLEROW,
controlTypes.Role.TABLECELL,
controlTypes.Role.TABLEROWHEADER,
controlTypes.Role.TABLECOLUMNHEADER,
})
SWITCH_TO_PASS_THROUGH_ON_FOCUS_ROLES = frozenset({
controlTypes.Role.LISTITEM,
controlTypes.Role.RADIOBUTTON,
controlTypes.Role.TAB,
controlTypes.Role.MENUITEM,
controlTypes.Role.RADIOMENUITEM,
controlTypes.Role.CHECKMENUITEM,
})
IGNORE_DISABLE_PASS_THROUGH_WHEN_FOCUSED_ROLES = frozenset({
controlTypes.Role.MENUITEM,
controlTypes.Role.RADIOMENUITEM,
controlTypes.Role.CHECKMENUITEM,
controlTypes.Role.TABLECELL,
})
def shouldPassThrough(self, obj, reason: Optional[OutputReason] = None):
"""Determine whether pass through mode should be enabled (focus mode) or disabled (browse mode) for a given object.
@param obj: The object in question.
@type obj: L{NVDAObjects.NVDAObject}
@param reason: The reason for this query;
one of the output reasons, or C{None} for manual pass through mode activation by the user.
@return: C{True} if pass through mode (focus mode) should be enabled, C{False} if it should be disabled (browse mode).
"""
if reason and (
self.disableAutoPassThrough
or (reason == OutputReason.FOCUS and not config.conf["virtualBuffers"]["autoPassThroughOnFocusChange"])
or (reason == OutputReason.CARET and not config.conf["virtualBuffers"]["autoPassThroughOnCaretMove"])
):
# This check relates to auto pass through and auto pass through is disabled, so don't change the pass through state.
return self.passThrough
if reason == OutputReason.QUICKNAV:
return False
states = obj.states
role = obj.role
if controlTypes.State.EDITABLE in states and controlTypes.State.UNAVAILABLE not in states:
return True
# Menus sometimes get focus due to menuStart events even though they don't report as focused/focusable.
if not obj.isFocusable and controlTypes.State.FOCUSED not in states and role != controlTypes.Role.POPUPMENU:
return False
# many controls that are read-only should not switch to passThrough.
# However, there are exceptions.
if controlTypes.State.READONLY in states:
# #13221: For Slack message lists, and the MS Edge downloads window, switch to passthrough
# even though the list item and list are read-only, but focusable.
if (
role == controlTypes.Role.LISTITEM and controlTypes.State.FOCUSED in states
and obj.parent.role == controlTypes.Role.LIST and controlTypes.State.FOCUSABLE in obj.parent.states
):
return True
# Certain controls such as combo boxes and readonly edits are read-only but still interactive.
# #5118: read-only ARIA grids should also be allowed (focusable table cells, rows and headers).
if role not in (
controlTypes.Role.EDITABLETEXT, controlTypes.Role.COMBOBOX, controlTypes.Role.TABLEROW,
controlTypes.Role.TABLECELL, controlTypes.Role.TABLEROWHEADER, controlTypes.Role.TABLECOLUMNHEADER
):
return False
# Any roles or states for which we always switch to passThrough
if role in self.ALWAYS_SWITCH_TO_PASS_THROUGH_ROLES or controlTypes.State.EDITABLE in states:
return True
# focus is moving to this control. Perhaps after pressing tab or clicking a button that brings up a menu (via javascript)
if reason == OutputReason.FOCUS:
if role in self.SWITCH_TO_PASS_THROUGH_ON_FOCUS_ROLES:
return True
# If this is a focus change, pass through should be enabled for certain ancestor containers.
# this is done last for performance considerations. Walking up the through the parents could be costly
while obj and obj != self.rootNVDAObject:
if obj.role == controlTypes.Role.TOOLBAR:
return True
obj = obj.parent
return False
singleLetterNavEnabled=True #: Whether single letter navigation scripts should be active (true) or if these letters should fall to the application.
# Translators: the description for the toggleSingleLetterNavigation command in browse mode.
script_toggleSingleLetterNav.__doc__=_("Toggles single letter navigation on and off. When on, single letter keys in browse mode jump to various kinds of elements on the page. When off, these keys are passed to the application")
def _iterNodesByType(self,itemType,direction="next",pos=None):
"""
Yields L{QuickNavItem} objects representing the ordered positions in this document according to the type being searched for (e.g. link, heading, table etc).
@param itemType: the type being searched for (e.g. link, heading, table etc)
@type itemType: string
@param direction: the direction in which to search (next, previous, up)
@type direction: string
@param pos: the position in the document from where to start the search.
@type pos: Usually an L{textInfos.TextInfo}
@raise NotImplementedError: This type is not supported by this BrowseMode implementation
"""
raise NotImplementedError
# Translators: the description for the Elements List command in browse mode.
script_elementsList.__doc__ = _("Lists various types of elements in this document")
script_elementsList.ignoreTreeInterceptorPassThrough = True
def _activateNVDAObject(self, obj):
"""Activate an object in response to a user request.
This should generally perform the default action or click on the object.
@param obj: The object to activate.
@type obj: L{NVDAObjects.NVDAObject}
"""
try:
obj.doAction()
except NotImplementedError:
log.debugWarning("doAction not implemented")
# Translators: the description for the activatePosition script on browseMode documents.
script_activatePosition.__doc__ = _("Activates the current object in the document")
def _focusLastFocusableObject(self, activatePosition=False):
"""Used when auto focus focusable elements is disabled to sync the focus
to the browse mode cursor.
When auto focus focusable elements is disabled, NVDA doesn't focus elements
as the user moves the browse mode cursor. However, there are some cases
where the user always wants to interact with the focus; e.g. if they press
the applications key to open the context menu. In these cases, this method
is called first to sync the focus to the browse mode cursor.
"""
obj = self.currentFocusableNVDAObject
if obj!=self.rootNVDAObject and self._shouldSetFocusToObj(obj) and obj!= api.getFocusObject():
obj.setFocus()
# We might be about to activate or pass through a key which will cause
# this object to change (e.g. checking a check box). However, we won't
# actually get the focus event until after the change has occurred.
# Therefore, we must cache properties for speech before the change occurs.
speech.speakObject(obj, OutputReason.ONLYCACHE)
self._objPendingFocusBeforeActivate = obj
if activatePosition:
# Make sure we activate the object at the caret, which is not necessarily focusable.
self._activatePosition()
# Translators: the description for the passThrough script on browseMode documents.
script_passThrough.__doc__ = _("Passes gesture through to the application")
script_disablePassThrough.ignoreTreeInterceptorPassThrough = True
__gestures={
"kb:NVDA+f7": "elementsList",
"kb:enter": "activatePosition",
"kb:numpadEnter": "activatePosition",
"kb:space": "activatePosition",
"kb:NVDA+shift+space":"toggleSingleLetterNav",
"kb:escape": "disablePassThrough",
"kb:control+enter": "passThrough",
"kb:control+numpadEnter": "passThrough",
"kb:shift+enter": "passThrough",
"kb:shift+numpadEnter": "passThrough",
"kb:control+shift+enter": "passThrough",
"kb:control+shift+numpadEnter": "passThrough",
"kb:alt+enter": "passThrough",
"kb:alt+numpadEnter": "passThrough",
"kb:applications": "passThrough",
"kb:shift+applications": "passThrough",
"kb:shift+f10": "passThrough",
}
# Add quick navigation scripts.
qn = BrowseModeTreeInterceptor.addQuickNav
qn("heading", key="h",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading"))
qn("heading1", key="1",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 1"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 1"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 1"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 1"))
qn("heading2", key="2",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 2"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 2"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 2"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 2"))
qn("heading3", key="3",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 3"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 3"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 3"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 3"))
qn("heading4", key="4",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 4"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 4"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 4"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 4"))
qn("heading5", key="5",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 5"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 5"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 5"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 5"))
qn("heading6", key="6",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next heading at level 6"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next heading at level 6"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous heading at level 6"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous heading at level 6"))
qn("table", key="t",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next table"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next table"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous table"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous table"),
readUnit=textInfos.UNIT_LINE)
qn("link", key="k",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next link"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next link"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous link"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous link"))
qn("visitedLink", key="v",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next visited link"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next visited link"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous visited link"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous visited link"))
qn("unvisitedLink", key="u",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next unvisited link"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next unvisited link"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous unvisited link"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous unvisited link"))
qn("formField", key="f",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next form field"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next form field"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous form field"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous form field"))
qn("list", key="l",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next list"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next list"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous list"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous list"),
readUnit=textInfos.UNIT_LINE)
qn("listItem", key="i",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next list item"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next list item"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous list item"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous list item"))
qn("button", key="b",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next button"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next button"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous button"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous button"))
qn("edit", key="e",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next edit field"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next edit field"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous edit field"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous edit field"),
readUnit=textInfos.UNIT_LINE)
qn("frame", key="m",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next frame"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next frame"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous frame"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous frame"),
readUnit=textInfos.UNIT_LINE)
qn("separator", key="s",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next separator"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next separator"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous separator"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous separator"))
qn("radioButton", key="r",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next radio button"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next radio button"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous radio button"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous radio button"))
qn("comboBox", key="c",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next combo box"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next combo box"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous combo box"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous combo box"))
qn("checkBox", key="x",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next check box"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next check box"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous check box"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous check box"))
qn("graphic", key="g",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next graphic"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next graphic"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous graphic"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous graphic"))
qn("blockQuote", key="q",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next block quote"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next block quote"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous block quote"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous block quote"))
qn("notLinkBlock", key="n",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("skips forward past a block of links"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no more text after a block of links"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("skips backward past a block of links"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no more text before a block of links"),
readUnit=textInfos.UNIT_LINE)
qn("landmark", key="d",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next landmark"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next landmark"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous landmark"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous landmark"),
readUnit=textInfos.UNIT_LINE)
qn("embeddedObject", key="o",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next embedded object"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next embedded object"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous embedded object"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous embedded object"))
qn("annotation", key="a",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next annotation"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next annotation"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous annotation"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous annotation"))
qn("error", key="w",
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next error"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next error"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous error"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous error"))
qn(
"article", key=None,
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next article"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next article"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous article"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous article")
)
qn(
"grouping", key=None,
# Translators: Input help message for a quick navigation command in browse mode.
nextDoc=_("moves to the next grouping"),
# Translators: Message presented when the browse mode element is not found.
nextError=_("no next grouping"),
# Translators: Input help message for a quick navigation command in browse mode.
prevDoc=_("moves to the previous grouping"),
# Translators: Message presented when the browse mode element is not found.
prevError=_("no previous grouping")
)
del qn
| [
2,
317,
636,
286,
8504,
36259,
27850,
8798,
357,
27159,
5631,
8,
201,
198,
2,
15069,
357,
34,
8,
4343,
12,
1238,
2481,
23973,
8798,
15302,
11,
347,
32061,
347,
13,
53,
1539,
3700,
1665,
71,
11,
20131,
390,
11667,
2926,
353,
11,
201,
198,
2,
5658,
520,
1191,
11,
8798,
14191,
11,
5979,
2013,
33005,
4669,
83,
201,
198,
2,
770,
2393,
318,
5017,
416,
262,
22961,
3611,
5094,
13789,
13,
201,
198,
2,
4091,
262,
2393,
27975,
45761,
329,
517,
3307,
13,
201,
198,
201,
198,
6738,
19720,
1330,
4377,
11,
4889,
540,
11,
4479,
201,
198,
11748,
28686,
201,
198,
11748,
340,
861,
10141,
201,
198,
11748,
17268,
201,
198,
11748,
7864,
633,
201,
198,
11748,
640,
201,
198,
11748,
4939,
5420,
201,
198,
201,
198,
11748,
266,
87,
201,
198,
11748,
4755,
201,
198,
6738,
2604,
25060,
1330,
2604,
201,
198,
11748,
3188,
14881,
201,
198,
11748,
2423,
201,
198,
11748,
4226,
25060,
201,
198,
11748,
1785,
25060,
201,
198,
11748,
299,
85,
19204,
201,
198,
11748,
16834,
25060,
201,
198,
11748,
11774,
201,
198,
11748,
334,
72,
201,
198,
11748,
23493,
13511,
201,
198,
6738,
4226,
25060,
1330,
4226,
11,
318,
7391,
33484,
1780,
11,
481,
25515,
3237,
4965,
2454,
201,
198,
11748,
257,
7496,
201,
198,
11748,
1630,
31431,
201,
198,
6738,
1630,
31431,
1330,
25235,
45008,
201,
198,
11748,
4566,
201,
198,
11748,
2420,
18943,
418,
201,
198,
11748,
8290,
8270,
201,
198,
11748,
5761,
201,
198,
11748,
4046,
201,
198,
6738,
4046,
1330,
910,
3237,
201,
198,
11748,
5509,
9492,
49492,
25060,
201,
198,
11748,
5128,
14055,
201,
198,
11748,
40391,
201,
198,
11748,
11774,
13,
48317,
47429,
201,
198,
6738,
11774,
13,
67,
14415,
3351,
4272,
47429,
1330,
360,
14415,
3351,
4272,
47429,
35608,
259,
16249,
31768,
201,
198,
6738,
23973,
5631,
10267,
82,
1330,
23973,
5631,
10267,
201,
198,
11748,
11774,
13,
22866,
22087,
201,
198,
6738,
450,
66,
1330,
9738,
48526,
11,
12531,
24396,
201,
198,
11748,
3298,
53,
945,
201,
198,
6738,
19720,
1330,
32233,
201,
198,
201,
198,
201,
198,
4299,
989,
14478,
15046,
7,
21048,
9492,
49492,
11,
8807,
1532,
31813,
28,
17821,
2599,
201,
198,
197,
37811,
37844,
262,
1208,
832,
4235,
611,
340,
468,
3421,
13,
201,
198,
197,
31,
17143,
5509,
9492,
49492,
25,
383,
1459,
44775,
10363,
5509,
9492,
49492,
13,
201,
198,
197,
31,
4906,
5509,
9492,
49492,
25,
406,
90,
32635,
325,
19076,
27660,
9492,
49492,
92,
201,
198,
197,
31,
17143,
691,
1532,
31813,
25,
611,
2081,
6447,
481,
407,
1645,
611,
262,
938,
989,
14478,
15046,
2098,
262,
976,
1517,
13,
201,
198,
197,
31,
4906,
691,
1532,
31813,
25,
20512,
201,
198,
197,
37811,
201,
198,
197,
361,
407,
691,
1532,
31813,
393,
5509,
9492,
49492,
13,
6603,
15046,
14512,
989,
14478,
15046,
13,
12957,
25,
201,
198,
197,
197,
361,
4566,
13,
10414,
14692,
32844,
36474,
364,
1,
7131,
1,
6603,
15046,
21206,
5497,
3299,
1,
5974,
201,
198,
197,
197,
197,
23661,
796,
366,
37635,
19076,
13,
45137,
1,
611,
5509,
9492,
49492,
13,
6603,
15046,
2073,
366,
25367,
325,
19076,
13,
45137,
1,
201,
198,
197,
197,
197,
48005,
19204,
13,
1759,
39709,
8979,
7,
418,
13,
6978,
13,
22179,
7,
20541,
53,
945,
13,
1324,
35277,
11,
366,
32569,
1600,
2128,
4008,
201,
198,
197,
197,
17772,
25,
201,
198,
197,
197,
197,
361,
5509,
9492,
49492,
13,
6603,
15046,
25,
201,
198,
197,
197,
197,
197,
2,
3602,
75,
2024,
25,
383,
4235,
284,
9427,
351,
6973,
287,
4963,
201,
198,
197,
197,
197,
197,
9019,
13,
20500,
28264,
7203,
34888,
4235,
48774,
201,
198,
197,
197,
197,
17772,
25,
201,
198,
197,
197,
197,
197,
2,
3602,
75,
2024,
25,
383,
4235,
326,
10969,
2420,
287,
257,
6228,
10552,
201,
198,
197,
197,
197,
197,
2,
326,
460,
307,
20436,
515,
351,
262,
23493,
8251,
588,
287,
257,
2420,
3188,
201,
198,
197,
197,
197,
197,
9019,
13,
20500,
28264,
7203,
32635,
325,
4235,
48774,
201,
198,
197,
197,
13116,
14478,
15046,
13,
12957,
796,
5509,
9492,
49492,
13,
6603,
15046,
201,
198,
13116,
14478,
15046,
13,
12957,
796,
10352,
201,
198,
201,
198,
197,
4299,
36265,
7,
944,
11,
3605,
5376,
2599,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
26764,
1047,
428,
2378,
351,
262,
649,
1438,
13,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
40225,
1892,
3546,
1154,
12061,
12331,
201,
198,
201,
198,
197,
4299,
989,
7,
944,
11,
961,
26453,
28,
14202,
2599,
201,
198,
197,
197,
10951,
28,
944,
13,
5239,
12360,
201,
198,
197,
197,
2,
1002,
356,
389,
7219,
351,
257,
1296,
2214,
11,
4155,
356,
836,
470,
1100,
262,
2187,
2695,
611,
340,
338,
281,
4370,
540,
2420,
13,
201,
198,
197,
197,
361,
2116,
13,
9186,
6030,
6624,
366,
687,
15878,
1298,
201,
198,
197,
197,
197,
361,
2116,
13,
26801,
13,
18090,
6624,
1630,
31431,
13,
47445,
13,
24706,
17534,
32541,
25,
201,
198,
197,
197,
197,
197,
961,
26453,
796,
2420,
18943,
418,
13,
4944,
2043,
62,
24027,
201,
198,
197,
197,
361,
1100,
26453,
25,
201,
198,
197,
197,
197,
3245,
12360,
796,
7508,
13,
30073,
3419,
201,
198,
197,
197,
197,
10951,
13,
26000,
7512,
3419,
201,
198,
197,
197,
197,
10951,
13,
21084,
7,
961,
26453,
11,
352,
11,
886,
12727,
2625,
437,
4943,
201,
198,
197,
197,
197,
361,
7508,
13,
5589,
533,
12915,
40710,
7,
3245,
12360,
11,
366,
437,
2514,
12915,
4943,
1875,
657,
25,
201,
198,
197,
197,
197,
197,
2,
775,
1053,
9902,
1613,
262,
886,
286,
262,
2214,
11,
523,
4179,
284,
262,
886,
286,
262,
2214,
13,
201,
198,
197,
197,
197,
197,
10951,
13,
2617,
12915,
12727,
7,
3245,
12360,
11,
366,
437,
2514,
12915,
4943,
201,
198,
197,
197,
45862,
13,
47350,
8206,
12360,
7,
10951,
11,
1738,
28,
26410,
45008,
13,
10917,
11860,
4535,
53,
8,
201,
198,
201,
198,
197,
4299,
15155,
7,
944,
2599,
201,
198,
197,
197,
944,
13,
5239,
12360,
13,
26801,
13557,
39022,
26545,
7,
10951,
28,
944,
13,
5239,
12360,
8,
201,
198,
201,
198,
197,
4299,
1445,
2514,
7,
944,
2599,
201,
198,
197,
197,
361,
2116,
13,
22897,
13,
6603,
15046,
290,
651,
35226,
7,
944,
11,
366,
26801,
1600,
10352,
2599,
201,
198,
197,
197,
197,
361,
1630,
31431,
13,
9012,
13,
37,
4503,
2937,
17534,
287,
2116,
13,
26801,
13,
27219,
25,
201,
198,
197,
197,
197,
197,
944,
13,
26801,
13,
2617,
34888,
3419,
201,
198,
197,
197,
197,
197,
7783,
201,
198,
197,
197,
197,
944,
13,
22897,
13,
6603,
15046,
796,
10352,
201,
198,
197,
197,
197,
13116,
14478,
15046,
7,
944,
13,
22897,
8,
201,
198,
197,
197,
10951,
796,
2116,
13,
5239,
12360,
13,
30073,
3419,
201,
198,
197,
197,
10951,
13,
26000,
7512,
3419,
201,
198,
197,
197,
944,
13,
22897,
13557,
2617,
62,
49283,
7,
10951,
11,
1738,
28,
26410,
45008,
13,
10917,
11860,
4535,
53,
8,
201,
198,
201,
198,
197,
4299,
4808,
1136,
33986,
1890,
2964,
18200,
7,
944,
11,
6167,
21746,
3855,
353,
25,
4889,
540,
30109,
2536,
4357,
32233,
58,
7149,
11907,
2599,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
37,
316,
2052,
2672,
6608,
329,
428,
406,
90,
8206,
12360,
21063,
30575,
7449,
92,
290,
34175,
257,
6167,
284,
307,
3402,
287,
281,
4847,
1351,
13,
201,
198,
197,
197,
1212,
460,
307,
973,
416,
850,
37724,
284,
3494,
262,
406,
90,
18242,
92,
3119,
13,
201,
198,
197,
197,
31,
22973,
6167,
21746,
3855,
353,
25,
317,
869,
540,
2263,
352,
4578,
11,
31577,
262,
3119,
284,
21207,
13,
201,
198,
197,
197,
197,
1890,
1672,
11,
611,
406,
90,
9186,
6030,
92,
318,
20533,
11,
262,
869,
540,
1276,
1441,
262,
20533,
2099,
618,
366,
1044,
4102,
1,
318,
3804,
355,
262,
3119,
4578,
13,
201,
198,
197,
197,
197,
49788,
3119,
3891,
1244,
307,
1438,
393,
1988,
13,
201,
198,
197,
197,
197,
464,
869,
540,
1276,
1441,
6045,
611,
262,
3119,
1595,
470,
2152,
13,
201,
198,
197,
197,
197,
2025,
2938,
869,
540,
1244,
307,
651,
2446,
319,
257,
406,
90,
35,
713,
5512,
201,
198,
197,
197,
197,
273,
366,
50033,
3119,
25,
651,
35226,
7,
944,
13,
26801,
11,
3119,
11,
6045,
16725,
329,
281,
406,
90,
27159,
5631,
10267,
27422,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
11299,
796,
2116,
13,
5239,
12360,
13,
5239,
13,
36311,
3419,
201,
198,
197,
197,
361,
2116,
13,
9186,
6030,
6624,
366,
33878,
1298,
201,
198,
197,
197,
197,
2,
25235,
25,
9066,
2420,
286,
262,
9087,
13,
201,
198,
197,
197,
197,
7783,
2695,
201,
198,
197,
197,
18242,
42670,
796,
6045,
201,
198,
197,
197,
3672,
796,
6167,
21746,
3855,
353,
7203,
3672,
4943,
201,
198,
197,
197,
361,
2116,
13,
9186,
6030,
6624,
366,
1044,
4102,
1298,
201,
198,
197,
197,
197,
1044,
4102,
796,
257,
7496,
13,
1044,
4102,
49,
4316,
13,
1136,
7,
18242,
21746,
3855,
353,
7203,
1044,
4102,
48774,
201,
198,
197,
197,
197,
2,
17934,
5072,
25,
1388,
6859,
26,
16408,
201,
198,
197,
197,
197,
18242,
42670,
796,
357,
3672,
11,
20533,
8,
201,
198,
197,
197,
17772,
25,
220,
201,
198,
197,
197,
197,
18090,
25,
4479,
58,
13716,
31431,
13,
47445,
11,
493,
60,
796,
6167,
21746,
3855,
353,
7203,
18090,
4943,
201,
198,
197,
197,
197,
18090,
796,
1630,
31431,
13,
47445,
7,
18090,
8,
201,
198,
197,
197,
197,
18090,
8206,
796,
2597,
13,
13812,
10100,
201,
198,
197,
197,
197,
2,
3602,
75,
2024,
25,
30588,
6167,
287,
262,
4847,
1351,
329,
281,
5002,
543,
543,
468,
645,
1438,
290,
1988,
201,
198,
197,
197,
197,
403,
18242,
276,
796,
4808,
7203,
3118,
18242,
276,
4943,
201,
198,
197,
197,
197,
5305,
42237,
796,
6167,
21746,
3855,
353,
7203,
27219,
4943,
201,
198,
197,
197,
197,
18242,
276,
42237,
796,
366,
27071,
22179,
7,
13716,
31431,
13,
14681,
1870,
33986,
42237,
7,
18090,
11,
1103,
42237,
11,
25235,
45008,
13,
37,
4503,
2937,
4008,
201,
198,
197,
197,
197,
361,
2116,
13,
9186,
6030,
6624,
366,
687,
15878,
1298,
201,
198,
197,
197,
197,
197,
361,
2597,
287,
357,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
47526,
11357,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
7707,
3185,
41925,
47526,
11357,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
51,
7730,
38,
2538,
47526,
11357,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
4303,
43,
2043,
47526,
11357,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
49275,
10526,
3843,
11357,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
7707,
3185,
41925,
47526,
11357,
10761,
2389,
11,
201,
198,
197,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
51,
11587,
28206,
47526,
11357,
201,
198,
197,
197,
197,
197,
2599,
201,
198,
197,
197,
197,
197,
197,
2,
17934,
5072,
25,
337,
1133,
26,
19846,
4936,
26,
12070,
201,
198,
197,
197,
197,
197,
197,
18242,
42670,
796,
357,
11299,
393,
1438,
393,
9642,
9608,
276,
11,
2597,
8206,
11,
15494,
42237,
8,
201,
198,
197,
197,
197,
197,
17772,
25,
201,
198,
197,
197,
197,
197,
197,
2,
17934,
5072,
25,
9938,
257,
16099,
986,
26,
4370,
26,
468,
8295,
1844,
26,
23973,
5631,
201,
198,
197,
197,
197,
197,
197,
18242,
42670,
796,
357,
3672,
393,
9642,
9608,
276,
11,
2597,
8206,
11,
15494,
42237,
11,
2695,
8,
201,
198,
197,
197,
197,
417,
361,
2116,
13,
9186,
6030,
287,
5855,
8726,
1600,
366,
16539,
1,
2599,
201,
198,
197,
197,
197,
197,
2,
17934,
5072,
25,
921,
423,
555,
961,
19605,
26,
8672,
201,
198,
197,
197,
197,
197,
18242,
42670,
796,
357,
11299,
393,
1438,
393,
9642,
9608,
276,
11,
15494,
42237,
8,
201,
198,
197,
197,
361,
6167,
42670,
25,
201,
198,
197,
197,
197,
18242,
796,
366,
26,
27071,
22179,
7,
34431,
329,
300,
79,
287,
6167,
42670,
611,
300,
79,
8,
201,
198,
197,
197,
17772,
25,
201,
198,
197,
197,
197,
18242,
796,
2695,
201,
198,
197,
197,
7783,
6167,
201,
198,
201,
198,
4871,
44775,
19076,
27660,
9492,
49492,
7,
21048,
9492,
49492,
25060,
13,
27660,
9492,
49492,
2599,
201,
198,
197,
12048,
27313,
796,
5128,
14055,
13,
6173,
7397,
1404,
62,
11473,
22845,
3620,
16820,
201,
198,
197,
62,
40223,
27722,
14478,
15046,
796,
10352,
201,
198,
197,
2969,
31484,
6234,
62,
49,
3535,
1546,
796,
357,
13716,
31431,
13,
47445,
13,
2969,
31484,
6234,
11,
1630,
31431,
13,
47445,
13,
35,
12576,
7730,
8,
201,
198,
201,
198,
197,
4299,
1785,
62,
21048,
9492,
49492,
62,
48544,
34888,
7,
944,
2599,
201,
198,
197,
197,
37811,
2898,
328,
10446,
618,
428,
25675,
4235,
15788,
273,
8810,
2962,
13,
201,
198,
197,
197,
1212,
1785,
318,
691,
6294,
2402,
8218,
428,
5509,
9492,
49492,
618,
340,
373,
407,
262,
1459,
5509,
9492,
49492,
878,
13,
201,
198,
197,
197,
1212,
318,
1180,
284,
406,
90,
15596,
62,
48544,
34888,
5512,
543,
318,
6294,
618,
281,
2134,
2641,
428,
5509,
9492,
49492,
8810,
2962,
11,
772,
611,
326,
2134,
318,
287,
262,
976,
5509,
9492,
49492,
13,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
13116,
14478,
15046,
7,
944,
8,
201,
198,
201,
198,
197,
1847,
42451,
62,
17887,
31949,
62,
10468,
62,
47924,
62,
4221,
49,
32632,
62,
49,
3535,
1546,
796,
8400,
8247,
316,
15090,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
9858,
8202,
39758,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
24706,
17534,
32541,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
45849,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
45849,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
8634,
41237,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
5603,
2749,
1340,
5446,
3535,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49275,
10526,
1503,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
47,
3185,
52,
5868,
1677,
52,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
51,
11587,
28206,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
51,
11587,
28206,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
4303,
1268,
47526,
11357,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
5603,
9148,
1137,
3913,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
38148,
5222,
3069,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
5603,
9148,
1137,
3913,
37682,
1137,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
38148,
25154,
5883,
45,
37682,
1137,
11,
201,
198,
197,
197,
30072,
201,
198,
201,
198,
197,
17887,
31949,
62,
10468,
62,
47924,
62,
4221,
49,
32632,
62,
1340,
62,
37,
4503,
2937,
62,
49,
3535,
1546,
796,
8400,
8247,
316,
15090,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
45849,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49,
2885,
9399,
47526,
11357,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
5603,
33,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49275,
52,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49,
2885,
40,
2662,
1677,
52,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
50084,
49275,
52,
2043,
3620,
11,
201,
198,
197,
197,
30072,
201,
198,
201,
198,
197,
16284,
6965,
62,
26288,
17534,
62,
47924,
62,
4221,
49,
32632,
62,
12418,
1677,
62,
37,
4503,
2937,
1961,
62,
49,
3535,
1546,
796,
8400,
8247,
316,
15090,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49275,
52,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
49,
2885,
40,
2662,
1677,
52,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
50084,
49275,
52,
2043,
3620,
11,
201,
198,
197,
197,
13716,
31431,
13,
47445,
13,
38148,
5222,
3069,
11,
201,
198,
197,
197,
30072,
201,
198,
201,
198,
197,
4299,
815,
14478,
15046,
7,
944,
11,
26181,
11,
1738,
25,
32233,
58,
26410,
45008,
60,
796,
6045,
2599,
201,
198,
197,
197,
37811,
35,
2357,
3810,
1771,
1208,
832,
4235,
815,
307,
9343,
357,
37635,
4235,
8,
393,
10058,
357,
25367,
325,
4235,
8,
329,
257,
1813,
2134,
13,
201,
198,
197,
197,
31,
17143,
26181,
25,
383,
2134,
287,
1808,
13,
201,
198,
197,
197,
31,
4906,
26181,
25,
406,
90,
27159,
5631,
10267,
82,
13,
27159,
5631,
10267,
92,
201,
198,
197,
197,
31,
17143,
1738,
25,
383,
1738,
329,
428,
12405,
26,
201,
198,
197,
197,
505,
286,
262,
5072,
3840,
11,
393,
327,
90,
14202,
92,
329,
10107,
1208,
832,
4235,
14916,
416,
262,
2836,
13,
201,
198,
197,
197,
31,
7783,
25,
327,
90,
17821,
92,
611,
1208,
832,
4235,
357,
37635,
4235,
8,
815,
307,
9343,
11,
327,
90,
25101,
92,
611,
340,
815,
307,
10058,
357,
25367,
325,
4235,
737,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
361,
1738,
290,
357,
201,
198,
197,
197,
197,
944,
13,
40223,
27722,
14478,
15046,
201,
198,
197,
197,
197,
273,
357,
41181,
6624,
25235,
45008,
13,
37,
4503,
2937,
290,
407,
4566,
13,
10414,
14692,
32844,
36474,
364,
1,
7131,
1,
23736,
14478,
15046,
2202,
34888,
19400,
8973,
8,
201,
198,
197,
197,
197,
273,
357,
41181,
6624,
25235,
45008,
13,
20034,
2767,
290,
407,
4566,
13,
10414,
14692,
32844,
36474,
364,
1,
7131,
1,
23736,
14478,
15046,
2202,
34,
8984,
21774,
8973,
8,
201,
198,
197,
197,
2599,
201,
198,
197,
197,
197,
2,
770,
2198,
18436,
284,
8295,
1208,
832,
290,
8295,
1208,
832,
318,
10058,
11,
523,
836,
470,
1487,
262,
1208,
832,
1181,
13,
201,
198,
197,
197,
197,
7783,
2116,
13,
6603,
15046,
201,
198,
197,
197,
361,
1738,
6624,
25235,
45008,
13,
10917,
11860,
4535,
53,
25,
201,
198,
197,
197,
197,
7783,
10352,
201,
198,
197,
197,
27219,
796,
26181,
13,
27219,
201,
198,
197,
197,
18090,
796,
26181,
13,
18090,
201,
198,
197,
197,
361,
1630,
31431,
13,
9012,
13,
24706,
17534,
287,
2585,
290,
1630,
31431,
13,
9012,
13,
52,
4535,
11731,
4146,
17534,
407,
287,
2585,
25,
201,
198,
197,
197,
197,
7783,
6407,
201,
198,
197,
197,
2,
6065,
385,
3360,
651,
2962,
2233,
284,
6859,
10434,
2995,
772,
996,
484,
836,
470,
989,
355,
5670,
14,
37635,
540,
13,
201,
198,
197,
197,
361,
407,
26181,
13,
271,
34888,
540,
290,
1630,
31431,
13,
9012,
13,
37,
4503,
2937,
1961,
407,
287,
2585,
290,
2597,
14512,
1630,
31431,
13,
47445,
13,
47,
3185,
52,
5868,
1677,
52,
25,
201,
198,
197,
197,
197,
7783,
10352,
201,
198,
197,
197,
2,
867,
6973,
326,
389,
1100,
12,
8807,
815,
407,
5078,
284,
1208,
15046,
13,
220,
201,
198,
197,
197,
2,
2102,
11,
612,
389,
13269,
13,
201,
198,
197,
197,
361,
1630,
31431,
13,
9012,
13,
15675,
1340,
11319,
287,
2585,
25,
201,
198,
197,
197,
197,
2,
1303,
1485,
26115,
25,
1114,
36256,
3275,
8341,
11,
290,
262,
6579,
13113,
21333,
4324,
11,
5078,
284,
38836,
48476,
740,
201,
198,
197,
197,
197,
2,
772,
996,
262,
1351,
2378,
290,
1351,
389,
1100,
12,
8807,
11,
475,
2962,
540,
13,
201,
198,
197,
197,
197,
361,
357,
201,
198,
197,
197,
197,
197,
18090,
6624,
1630,
31431,
13,
47445,
13,
45849,
2043,
3620,
290,
1630,
31431,
13,
9012,
13,
37,
4503,
2937,
1961,
287,
2585,
201,
198,
197,
197,
197,
197,
392,
26181,
13,
8000,
13,
18090,
6624,
1630,
31431,
13,
47445,
13,
45849,
290,
1630,
31431,
13,
9012,
13,
37,
4503,
2937,
17534,
287,
26181,
13,
8000,
13,
27219,
201,
198,
197,
197,
197,
2599,
201,
198,
197,
197,
197,
197,
7783,
6407,
201,
198,
197,
197,
197,
2,
16272,
6973,
884,
355,
14831,
10559,
290,
1100,
8807,
31671,
389,
1100,
12,
8807,
475,
991,
14333,
13,
201,
198,
197,
197,
197,
2,
1303,
20,
16817,
25,
1100,
12,
8807,
5923,
3539,
50000,
815,
635,
307,
3142,
357,
37635,
540,
3084,
4778,
11,
15274,
290,
24697,
737,
201,
198,
197,
197,
197,
361,
2597,
407,
287,
357,
201,
198,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
24706,
17534,
32541,
11,
1630,
31431,
13,
47445,
13,
9858,
8202,
39758,
11,
1630,
31431,
13,
47445,
13,
5603,
9148,
1137,
3913,
11,
201,
198,
197,
197,
197,
197,
13716,
31431,
13,
47445,
13,
38148,
5222,
3069,
11,
1630,
31431,
13,
47445,
13,
5603,
9148,
1137,
3913,
37682,
1137,
11,
1630,
31431,
13,
47445,
13,
38148,
25154,
5883,
45,
37682,
1137,
201,
198,
197,
197,
197,
2599,
201,
198,
197,
197,
197,
197,
7783,
10352,
201,
198,
197,
197,
2,
4377,
9176,
393,
2585,
329,
543,
356,
1464,
5078,
284,
1208,
15046,
201,
198,
197,
197,
361,
2597,
287,
2116,
13,
1847,
42451,
62,
17887,
31949,
62,
10468,
62,
47924,
62,
4221,
49,
32632,
62,
49,
3535,
1546,
393,
1630,
31431,
13,
9012,
13,
24706,
17534,
287,
2585,
25,
201,
198,
197,
197,
197,
7783,
6407,
201,
198,
197,
197,
2,
2962,
318,
3867,
284,
428,
1630,
13,
8673,
706,
12273,
7400,
393,
12264,
257,
4936,
326,
6774,
510,
257,
6859,
357,
8869,
44575,
8,
201,
198,
197,
197,
361,
1738,
6624,
25235,
45008,
13,
37,
4503,
2937,
25,
201,
198,
197,
197,
197,
361,
2597,
287,
2116,
13,
17887,
31949,
62,
10468,
62,
47924,
62,
4221,
49,
32632,
62,
1340,
62,
37,
4503,
2937,
62,
49,
3535,
1546,
25,
201,
198,
197,
197,
197,
197,
7783,
6407,
201,
198,
197,
197,
197,
2,
1002,
428,
318,
257,
2962,
1487,
11,
1208,
832,
815,
307,
9343,
329,
1728,
31836,
16472,
13,
201,
198,
197,
197,
197,
2,
428,
318,
1760,
938,
329,
2854,
18506,
13,
21276,
510,
262,
832,
262,
3397,
714,
307,
16378,
201,
198,
197,
197,
197,
4514,
26181,
290,
26181,
14512,
2116,
13,
15763,
27159,
5631,
10267,
25,
201,
198,
197,
197,
197,
197,
361,
26181,
13,
18090,
6624,
1630,
31431,
13,
47445,
13,
10468,
3535,
33,
1503,
25,
201,
198,
197,
197,
197,
197,
197,
7783,
6407,
201,
198,
197,
197,
197,
197,
26801,
796,
26181,
13,
8000,
201,
198,
197,
197,
7783,
10352,
201,
198,
201,
198,
197,
29762,
45708,
30575,
20491,
28,
17821,
1303,
25,
10127,
2060,
3850,
16408,
14750,
815,
307,
4075,
357,
7942,
8,
393,
611,
777,
7475,
815,
2121,
284,
262,
3586,
13,
201,
198,
197,
2,
3602,
75,
2024,
25,
262,
6764,
329,
262,
19846,
28008,
45708,
30575,
7065,
3141,
287,
25675,
4235,
13,
201,
198,
197,
12048,
62,
44256,
28008,
45708,
30575,
13,
834,
15390,
834,
28,
62,
7203,
51,
48549,
2060,
3850,
16408,
319,
290,
572,
13,
1649,
319,
11,
2060,
3850,
8251,
287,
25675,
4235,
4391,
284,
2972,
6982,
286,
4847,
319,
262,
2443,
13,
1649,
572,
11,
777,
8251,
389,
3804,
284,
262,
3586,
4943,
201,
198,
201,
198,
197,
4299,
4808,
2676,
45,
4147,
3886,
6030,
7,
944,
11,
9186,
6030,
11,
37295,
2625,
19545,
1600,
1930,
28,
14202,
2599,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
56,
1164,
82,
406,
90,
21063,
30575,
7449,
92,
5563,
10200,
262,
6149,
6116,
287,
428,
3188,
1864,
284,
262,
2099,
852,
16499,
329,
357,
68,
13,
70,
13,
2792,
11,
9087,
11,
3084,
3503,
737,
201,
198,
197,
197,
31,
17143,
2378,
6030,
25,
262,
2099,
852,
16499,
329,
357,
68,
13,
70,
13,
2792,
11,
9087,
11,
3084,
3503,
8,
201,
198,
197,
197,
31,
4906,
2378,
6030,
25,
4731,
201,
198,
197,
197,
31,
17143,
4571,
25,
262,
4571,
287,
543,
284,
2989,
357,
19545,
11,
2180,
11,
510,
8,
201,
198,
197,
197,
31,
4906,
4571,
25,
4731,
201,
198,
197,
197,
31,
17143,
1426,
25,
262,
2292,
287,
262,
3188,
422,
810,
284,
923,
262,
2989,
13,
201,
198,
197,
197,
31,
4906,
1426,
25,
19672,
281,
406,
90,
5239,
18943,
418,
13,
8206,
12360,
92,
220,
201,
198,
197,
197,
31,
40225,
1892,
3546,
1154,
12061,
12331,
25,
770,
2099,
318,
407,
4855,
416,
428,
44775,
19076,
7822,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
40225,
1892,
3546,
1154,
12061,
12331,
201,
198,
201,
198,
197,
2,
3602,
75,
2024,
25,
262,
6764,
329,
262,
26632,
7343,
3141,
287,
25675,
4235,
13,
201,
198,
197,
12048,
62,
68,
3639,
8053,
13,
834,
15390,
834,
796,
4808,
7203,
43,
1023,
2972,
3858,
286,
4847,
287,
428,
3188,
4943,
201,
198,
197,
12048,
62,
68,
3639,
8053,
13,
46430,
27660,
9492,
49492,
14478,
15046,
796,
6407,
201,
198,
201,
198,
197,
4299,
4808,
39022,
27159,
5631,
10267,
7,
944,
11,
26181,
2599,
201,
198,
197,
197,
37811,
25526,
378,
281,
2134,
287,
2882,
284,
257,
2836,
2581,
13,
201,
198,
197,
197,
1212,
815,
4143,
1620,
262,
4277,
2223,
393,
3904,
319,
262,
2134,
13,
201,
198,
197,
197,
31,
17143,
26181,
25,
383,
2134,
284,
15155,
13,
201,
198,
197,
197,
31,
4906,
26181,
25,
406,
90,
27159,
5631,
10267,
82,
13,
27159,
5631,
10267,
92,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
28311,
25,
201,
198,
197,
197,
197,
26801,
13,
4598,
12502,
3419,
201,
198,
197,
197,
16341,
1892,
3546,
1154,
12061,
12331,
25,
201,
198,
197,
197,
197,
6404,
13,
24442,
20361,
7203,
4598,
12502,
407,
9177,
4943,
201,
198,
197,
2,
3602,
75,
2024,
25,
262,
6764,
329,
262,
15155,
26545,
4226,
319,
25675,
19076,
4963,
13,
201,
198,
197,
12048,
62,
39022,
26545,
13,
834,
15390,
834,
796,
4808,
7203,
25526,
689,
262,
1459,
2134,
287,
262,
3188,
4943,
201,
198,
201,
198,
197,
4299,
4808,
37635,
5956,
34888,
540,
10267,
7,
944,
11,
15155,
26545,
28,
25101,
2599,
201,
198,
197,
197,
37811,
38052,
618,
8295,
2962,
2962,
540,
4847,
318,
10058,
284,
17510,
262,
2962,
201,
198,
197,
197,
1462,
262,
25675,
4235,
23493,
13,
201,
198,
197,
197,
2215,
8295,
2962,
2962,
540,
4847,
318,
10058,
11,
23973,
5631,
1595,
470,
2962,
4847,
201,
198,
197,
197,
292,
262,
2836,
6100,
262,
25675,
4235,
23493,
13,
2102,
11,
612,
389,
617,
2663,
201,
198,
197,
197,
3003,
262,
2836,
1464,
3382,
284,
9427,
351,
262,
2962,
26,
304,
13,
70,
13,
611,
484,
1803,
201,
198,
197,
197,
1169,
5479,
1994,
284,
1280,
262,
4732,
6859,
13,
554,
777,
2663,
11,
428,
2446,
201,
198,
197,
197,
271,
1444,
717,
284,
17510,
262,
2962,
284,
262,
25675,
4235,
23493,
13,
201,
198,
197,
197,
37811,
201,
198,
197,
197,
26801,
796,
2116,
13,
14421,
34888,
540,
27159,
5631,
10267,
201,
198,
197,
197,
361,
26181,
0,
28,
944,
13,
15763,
27159,
5631,
10267,
290,
2116,
13557,
21754,
7248,
34888,
2514,
49201,
7,
26801,
8,
290,
26181,
0,
28,
40391,
13,
1136,
34888,
10267,
33529,
201,
198,
197,
197,
197,
26801,
13,
2617,
34888,
3419,
201,
198,
197,
197,
197,
2,
775,
1244,
307,
546,
284,
15155,
393,
1208,
832,
257,
1994,
543,
481,
2728,
201,
198,
197,
197,
197,
2,
428,
2134,
284,
1487,
357,
68,
13,
70,
13,
10627,
257,
2198,
3091,
737,
2102,
11,
356,
1839,
470,
201,
198,
197,
197,
197,
2,
1682,
651,
262,
2962,
1785,
1566,
706,
262,
1487,
468,
5091,
13,
201,
198,
197,
197,
197,
2,
8447,
11,
356,
1276,
12940,
6608,
329,
4046,
878,
262,
1487,
8833,
13,
201,
198,
197,
197,
197,
45862,
13,
47350,
10267,
7,
26801,
11,
25235,
45008,
13,
1340,
11319,
34,
2246,
13909,
8,
201,
198,
197,
197,
197,
944,
13557,
26801,
47,
1571,
34888,
8421,
25526,
378,
796,
26181,
201,
198,
197,
197,
361,
15155,
26545,
25,
201,
198,
197,
197,
197,
2,
6889,
1654,
356,
15155,
262,
2134,
379,
262,
1337,
83,
11,
543,
318,
407,
6646,
2962,
540,
13,
201,
198,
197,
197,
197,
944,
13557,
39022,
26545,
3419,
201,
198,
197,
2,
3602,
75,
2024,
25,
262,
6764,
329,
262,
1208,
15046,
4226,
319,
25675,
19076,
4963,
13,
201,
198,
197,
12048,
62,
6603,
15046,
13,
834,
15390,
834,
796,
4808,
7203,
47,
13978,
18342,
832,
284,
262,
3586,
4943,
201,
198,
197,
12048,
62,
40223,
14478,
15046,
13,
46430,
27660,
9492,
49492,
14478,
15046,
796,
6407,
201,
198,
201,
198,
201,
198,
197,
834,
3495,
942,
34758,
201,
198,
197,
197,
1,
32812,
25,
27159,
5631,
10,
69,
22,
1298,
366,
68,
3639,
8053,
1600,
201,
198,
197,
197,
1,
32812,
25,
9255,
1298,
366,
39022,
26545,
1600,
201,
198,
197,
197,
1,
32812,
25,
77,
931,
324,
17469,
1298,
366,
39022,
26545,
1600,
201,
198,
197,
197,
1,
32812,
25,
13200,
1298,
366,
39022,
26545,
1600,
201,
198,
197,
197,
1,
32812,
25,
27159,
5631,
10,
30846,
10,
13200,
2404,
44256,
28008,
45708,
30575,
1600,
201,
198,
197,
197,
1,
32812,
25,
41915,
1298,
366,
40223,
14478,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
13716,
10,
9255,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
13716,
10,
77,
931,
324,
17469,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
30846,
10,
9255,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
30846,
10,
77,
931,
324,
17469,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
13716,
10,
30846,
10,
9255,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
13716,
10,
30846,
10,
77,
931,
324,
17469,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
2501,
10,
9255,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
2501,
10,
77,
931,
324,
17469,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
1324,
677,
602,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
30846,
10,
1324,
677,
602,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
197,
1,
32812,
25,
30846,
10,
69,
940,
1298,
366,
6603,
15046,
1600,
201,
198,
197,
92,
201,
198,
201,
198,
2,
3060,
2068,
16408,
14750,
13,
201,
198,
80,
77,
796,
44775,
19076,
27660,
9492,
49492,
13,
2860,
21063,
30575,
201,
198,
80,
77,
7203,
33878,
1600,
1994,
2625,
71,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
48774,
201,
198,
80,
77,
7203,
33878,
16,
1600,
1994,
2625,
16,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
352,
48774,
201,
198,
80,
77,
7203,
33878,
17,
1600,
1994,
2625,
17,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
362,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
362,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
362,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
362,
48774,
201,
198,
80,
77,
7203,
33878,
18,
1600,
1994,
2625,
18,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
513,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
513,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
513,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
513,
48774,
201,
198,
80,
77,
7203,
33878,
19,
1600,
1994,
2625,
19,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
604,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
604,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
604,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
604,
48774,
201,
198,
80,
77,
7203,
33878,
20,
1600,
1994,
2625,
20,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
642,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
642,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
642,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
642,
48774,
201,
198,
80,
77,
7203,
33878,
21,
1600,
1994,
2625,
21,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
9087,
379,
1241,
718,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
9087,
379,
1241,
718,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
9087,
379,
1241,
718,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
9087,
379,
1241,
718,
48774,
201,
198,
80,
77,
7203,
11487,
1600,
1994,
2625,
83,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
3084,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
3084,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
3084,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
3084,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
8726,
1600,
1994,
2625,
74,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
2792,
48774,
201,
198,
80,
77,
7203,
4703,
863,
11280,
1600,
1994,
2625,
85,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
8672,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
8672,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
8672,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
8672,
2792,
48774,
201,
198,
80,
77,
7203,
403,
4703,
863,
11280,
1600,
1994,
2625,
84,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
555,
4703,
863,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
555,
4703,
863,
2792,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
555,
4703,
863,
2792,
12340,
220,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
555,
4703,
863,
2792,
48774,
201,
198,
80,
77,
7203,
687,
15878,
1600,
1994,
2625,
69,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
1296,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
1296,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
1296,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
1296,
2214,
48774,
201,
198,
80,
77,
7203,
4868,
1600,
1994,
2625,
75,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
1351,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
1351,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
1351,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
1351,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
4868,
7449,
1600,
1994,
2625,
72,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
1351,
2378,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
1351,
2378,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
1351,
2378,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
1351,
2378,
48774,
201,
198,
80,
77,
7203,
16539,
1600,
1994,
2625,
65,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
4936,
48774,
201,
198,
80,
77,
7203,
19312,
1600,
1994,
2625,
68,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
4370,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
4370,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
4370,
2214,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
4370,
2214,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
14535,
1600,
1994,
2625,
76,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
5739,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
5739,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
5739,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
5739,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
25512,
1352,
1600,
1994,
2625,
82,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
2880,
1352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
2880,
1352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
2880,
1352,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
2880,
1352,
48774,
201,
198,
80,
77,
7203,
37004,
21864,
1600,
1994,
2625,
81,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
5243,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
5243,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
5243,
4936,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
5243,
4936,
48774,
201,
198,
80,
77,
7203,
785,
2127,
14253,
1600,
1994,
2625,
66,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
14831,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
14831,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
14831,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
14831,
3091,
48774,
201,
198,
80,
77,
7203,
9122,
14253,
1600,
1994,
2625,
87,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
2198,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
2198,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
2198,
3091,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
2198,
3091,
48774,
201,
198,
80,
77,
7203,
70,
22262,
1600,
1994,
2625,
70,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
13028,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
13028,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
13028,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
13028,
48774,
201,
198,
80,
77,
7203,
9967,
25178,
1600,
1994,
2625,
80,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
2512,
9577,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
2512,
9577,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
2512,
9577,
12340,
220,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
2512,
9577,
48774,
201,
198,
80,
77,
7203,
1662,
11280,
12235,
1600,
1994,
2625,
77,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
8135,
2419,
2651,
1613,
257,
2512,
286,
6117,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
517,
2420,
706,
257,
2512,
286,
6117,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
8135,
2419,
19528,
1613,
257,
2512,
286,
6117,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
517,
2420,
878,
257,
2512,
286,
6117,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
1044,
4102,
1600,
1994,
2625,
67,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
20533,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
20533,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
20533,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
20533,
12340,
201,
198,
197,
961,
26453,
28,
5239,
18943,
418,
13,
4944,
2043,
62,
24027,
8,
201,
198,
80,
77,
7203,
20521,
9395,
10267,
1600,
1994,
2625,
78,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
14553,
2134,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
14553,
2134,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
14553,
2134,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
14553,
2134,
48774,
201,
198,
80,
77,
7203,
1236,
14221,
1600,
1994,
2625,
64,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
23025,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
23025,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
23025,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
23025,
48774,
201,
198,
80,
77,
7203,
18224,
1600,
1994,
2625,
86,
1600,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
4049,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
4049,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
4049,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
4049,
48774,
201,
198,
80,
77,
7,
201,
198,
197,
1,
20205,
1600,
1994,
28,
14202,
11,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
2708,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
2708,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
2708,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
2708,
4943,
201,
198,
8,
201,
198,
80,
77,
7,
201,
198,
197,
1,
8094,
278,
1600,
1994,
28,
14202,
11,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
19545,
23579,
28,
62,
7203,
76,
5241,
284,
262,
1306,
36115,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
19545,
12331,
28,
62,
7203,
3919,
1306,
36115,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
23412,
1037,
3275,
329,
257,
2068,
16408,
3141,
287,
25675,
4235,
13,
201,
198,
197,
47050,
23579,
28,
62,
7203,
76,
5241,
284,
262,
2180,
36115,
12340,
201,
198,
197,
2,
3602,
75,
2024,
25,
16000,
5545,
618,
262,
25675,
4235,
5002,
318,
407,
1043,
13,
201,
198,
197,
47050,
12331,
28,
62,
7203,
3919,
2180,
36115,
4943,
201,
198,
8,
201,
198,
12381,
10662,
77,
201,
198,
201,
198,
201,
198
] | 3.222813 | 9,600 |
# -*- coding: utf-8 -*-
# This code is part of Qiskit.
#
# (C) Copyright IBM 2017, 2021.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
#from math import *
from math import sin, cos
from qiskit_metal import draw, Dict
from qiskit_metal.qlibrary.core.base import QComponent
import numpy as np
#from ... import config
#if not config.is_building_docs():
# from qiskit_metal import is_true
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
2,
770,
2438,
318,
636,
286,
1195,
1984,
270,
13,
198,
2,
198,
2,
357,
34,
8,
15069,
19764,
2177,
11,
33448,
13,
198,
2,
198,
2,
770,
2438,
318,
11971,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
13,
921,
743,
198,
2,
7330,
257,
4866,
286,
428,
5964,
287,
262,
38559,
24290,
13,
14116,
2393,
287,
262,
6808,
8619,
198,
2,
286,
428,
2723,
5509,
393,
379,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
13,
198,
2,
198,
2,
4377,
19008,
393,
27255,
2499,
286,
428,
2438,
1276,
12377,
428,
198,
2,
6634,
4003,
11,
290,
9518,
3696,
761,
284,
3283,
257,
4003,
12739,
198,
2,
326,
484,
423,
587,
14294,
422,
262,
47324,
13,
198,
198,
2,
6738,
10688,
1330,
1635,
198,
6738,
10688,
1330,
7813,
11,
8615,
198,
6738,
10662,
1984,
270,
62,
28469,
1330,
3197,
11,
360,
713,
198,
6738,
10662,
1984,
270,
62,
28469,
13,
13976,
4115,
13,
7295,
13,
8692,
1330,
1195,
21950,
198,
11748,
299,
32152,
355,
45941,
198,
198,
2,
6738,
2644,
1330,
4566,
198,
2,
361,
407,
4566,
13,
271,
62,
16894,
62,
31628,
33529,
198,
2,
220,
220,
220,
422,
10662,
1984,
270,
62,
28469,
1330,
318,
62,
7942,
628
] | 3.350877 | 228 |
# Copyright 2019-present NAVER Corp.
# Apache License v2.0
# Wonseok Hwang
import os, json
from copy import deepcopy
from matplotlib.pylab import *
import torch
import torch.nn as nn
import torch.nn.functional as F
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
from sqlova.utils.utils import topk_multi_dim
from sqlova.utils.utils_wikisql import *
# where column predict
# where op predict
def Loss_selectwhere_startend_v2(score_select_column, s_sa, s_wn, s_wc, s_wo,
s_wv, ground_truth_select_column, g_sa, g_wn, g_wc, g_wo, g_wvi):
"""
:param s_wv: score [ B, n_conds, T, score]
:param g_wn: [ B ]
:param g_wvi: [B, conds, pnt], e.g. [[[0, 6, 7, 8, 15], [0, 1, 2, 3, 4, 15]], [[0, 1, 2, 3, 16], [0, 7, 8, 9, 16]]]
:return:
"""
loss = 0
# loss += Loss_sc(score_select_column, ground_truth_select_column)
# loss += Loss_sa(s_sa, g_sa)
# loss += Loss_wn(s_wn, g_wn)
# loss += Loss_wc(s_wc, g_wc)
# loss += Loss_wo(s_wo, g_wn, g_wo)
# loss += Loss_wv_se(s_wv, g_wn, g_wvi)
return loss
def Loss_sw_se(score_select_column, s_sa, s_wn, s_wc, s_wo,
s_wv, ground_truth_select_column, g_sa, g_wn, g_wc, g_wo, g_wvi):
"""
:param s_wv: score [ B, n_conds, T, score]
:param g_wn: [ B ]
:param g_wvi: [B, conds, pnt], e.g. [[[0, 6, 7, 8, 15], [0, 1, 2, 3, 4, 15]], [[0, 1, 2, 3, 16], [0, 7, 8, 9, 16]]]
:return:
"""
loss = 0
loss += Loss_sc(score_select_column, ground_truth_select_column)
loss += Loss_sa(s_sa, g_sa)
loss += Loss_wn(s_wn, g_wn)
loss += Loss_wc(s_wc, g_wc)
loss += Loss_wo(s_wo, g_wn, g_wo)
loss += Loss_wv_se(s_wv, g_wn, g_wvi)
return loss
def Loss_sc(s_sc, g_sc):
loss = F.cross_entropy(s_sc, torch.tensor(g_sc).to(device))
return loss
def Loss_sa(s_sa, g_sa):
loss = F.cross_entropy(s_sa, torch.tensor(g_sa).to(device))
return loss
def Loss_wn(s_wn, g_wn):
loss = F.cross_entropy(s_wn, torch.tensor(g_wn).to(device))
return loss
def Loss_wc(s_wc, g_wc):
# Construct index matrix
bS, max_h_len = s_wc.shape
im = torch.zeros([bS, max_h_len]).to(device)
for b, g_wc1 in enumerate(g_wc):
for g_wc11 in g_wc1:
im[b, g_wc11] = 1.0
# Construct prob.
p = F.sigmoid(s_wc)
loss = F.binary_cross_entropy(p, im)
return loss
def Loss_wo(s_wo, g_wn, g_wo):
# Construct index matrix
loss = 0
for b, g_wn1 in enumerate(g_wn):
if g_wn1 == 0:
continue
g_wo1 = g_wo[b]
s_wo1 = s_wo[b]
loss += F.cross_entropy(s_wo1[:g_wn1], torch.tensor(g_wo1).to(device))
return loss
def Loss_wv_se(s_wv, g_wn, g_wvi):
"""
s_wv: [bS, 4, mL, 2], 4 stands for maximum # of condition, 2 tands for start & end logits.
g_wvi: [ [1, 3, 2], [4,3] ] (when B=2, wn(b=1) = 3, wn(b=2) = 2).
"""
loss = 0
# g_wvi = torch.tensor(g_wvi).to(device)
for b, g_wvi1 in enumerate(g_wvi):
# for i_wn, g_wvi11 in enumerate(g_wvi1):
g_wn1 = len(g_wvi1) #
# g_wn1 = g_wn[b] #
if g_wn1 == 0:
continue
g_wvi1 = torch.tensor(g_wvi1)[:g_wn1].to(device) #
g_st1 = g_wvi1[:,0]
g_ed1 = g_wvi1[:,1]
# loss from the start position
loss += F.cross_entropy(s_wv[b,:g_wn1,:,0], g_st1)
# print("st_login: ", s_wv[b,:g_wn1,:,0], g_st1, loss)
# loss from the end position
loss += F.cross_entropy(s_wv[b,:g_wn1,:,1], g_ed1)
# print("ed_login: ", s_wv[b,:g_wn1,:,1], g_ed1, loss)
return loss
# ========= Decoder-Layer ===========
# ============= Shallow-Layer ===============
def Loss_s2s(score, g_pnt_idxs):
"""
score = [B, T, max_seq_length]
"""
# WHERE string part
loss = 0
for b, g_pnt_idxs1 in enumerate(g_pnt_idxs):
ed = len(g_pnt_idxs1) - 1
score_part = score[b, :ed]
loss += F.cross_entropy(score_part, torch.tensor(g_pnt_idxs1[1:]).to(device)) # +1 shift.
return loss
| [
2,
15069,
13130,
12,
25579,
11746,
5959,
11421,
13,
198,
2,
24843,
13789,
410,
17,
13,
15,
198,
198,
2,
370,
2591,
482,
367,
47562,
198,
198,
11748,
28686,
11,
33918,
198,
6738,
4866,
1330,
2769,
30073,
198,
6738,
2603,
29487,
8019,
13,
79,
2645,
397,
1330,
1635,
198,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
628,
198,
25202,
796,
28034,
13,
25202,
7203,
66,
15339,
1,
611,
28034,
13,
66,
15339,
13,
271,
62,
15182,
3419,
2073,
366,
36166,
4943,
198,
198,
6738,
44161,
10071,
13,
26791,
13,
26791,
1330,
1353,
74,
62,
41684,
62,
27740,
198,
6738,
44161,
10071,
13,
26791,
13,
26791,
62,
20763,
271,
13976,
1330,
1635,
628,
198,
198,
2,
810,
5721,
4331,
198,
198,
2,
810,
1034,
4331,
198,
198,
4299,
22014,
62,
19738,
3003,
62,
9688,
437,
62,
85,
17,
7,
26675,
62,
19738,
62,
28665,
11,
264,
62,
11400,
11,
264,
62,
675,
11,
264,
62,
86,
66,
11,
264,
62,
21638,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
62,
86,
85,
11,
2323,
62,
35310,
62,
19738,
62,
28665,
11,
308,
62,
11400,
11,
308,
62,
675,
11,
308,
62,
86,
66,
11,
308,
62,
21638,
11,
308,
62,
86,
8903,
2599,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1058,
17143,
264,
62,
86,
85,
25,
4776,
220,
685,
347,
11,
299,
62,
17561,
82,
11,
309,
11,
4776,
60,
198,
220,
220,
220,
1058,
17143,
308,
62,
675,
25,
685,
347,
2361,
198,
220,
220,
220,
1058,
17143,
308,
62,
86,
8903,
25,
685,
33,
11,
1779,
82,
11,
279,
429,
4357,
304,
13,
70,
13,
16410,
58,
15,
11,
718,
11,
767,
11,
807,
11,
1315,
4357,
685,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
1315,
60,
4357,
16410,
15,
11,
352,
11,
362,
11,
513,
11,
1467,
4357,
685,
15,
11,
767,
11,
807,
11,
860,
11,
1467,
11907,
60,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2994,
796,
657,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
1416,
7,
26675,
62,
19738,
62,
28665,
11,
2323,
62,
35310,
62,
19738,
62,
28665,
8,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
11400,
7,
82,
62,
11400,
11,
308,
62,
11400,
8,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
675,
7,
82,
62,
675,
11,
308,
62,
675,
8,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
86,
66,
7,
82,
62,
86,
66,
11,
308,
62,
86,
66,
8,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
21638,
7,
82,
62,
21638,
11,
308,
62,
675,
11,
308,
62,
21638,
8,
198,
220,
220,
220,
1303,
2994,
15853,
22014,
62,
86,
85,
62,
325,
7,
82,
62,
86,
85,
11,
308,
62,
675,
11,
308,
62,
86,
8903,
8,
628,
220,
220,
220,
1441,
2994,
198,
198,
4299,
22014,
62,
2032,
62,
325,
7,
26675,
62,
19738,
62,
28665,
11,
264,
62,
11400,
11,
264,
62,
675,
11,
264,
62,
86,
66,
11,
264,
62,
21638,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
62,
86,
85,
11,
2323,
62,
35310,
62,
19738,
62,
28665,
11,
308,
62,
11400,
11,
308,
62,
675,
11,
308,
62,
86,
66,
11,
308,
62,
21638,
11,
308,
62,
86,
8903,
2599,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1058,
17143,
264,
62,
86,
85,
25,
4776,
220,
685,
347,
11,
299,
62,
17561,
82,
11,
309,
11,
4776,
60,
198,
220,
220,
220,
1058,
17143,
308,
62,
675,
25,
685,
347,
2361,
198,
220,
220,
220,
1058,
17143,
308,
62,
86,
8903,
25,
685,
33,
11,
1779,
82,
11,
279,
429,
4357,
304,
13,
70,
13,
16410,
58,
15,
11,
718,
11,
767,
11,
807,
11,
1315,
4357,
685,
15,
11,
352,
11,
362,
11,
513,
11,
604,
11,
1315,
60,
4357,
16410,
15,
11,
352,
11,
362,
11,
513,
11,
1467,
4357,
685,
15,
11,
767,
11,
807,
11,
860,
11,
1467,
11907,
60,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2994,
796,
657,
198,
220,
220,
220,
2994,
15853,
22014,
62,
1416,
7,
26675,
62,
19738,
62,
28665,
11,
2323,
62,
35310,
62,
19738,
62,
28665,
8,
198,
220,
220,
220,
2994,
15853,
22014,
62,
11400,
7,
82,
62,
11400,
11,
308,
62,
11400,
8,
198,
220,
220,
220,
2994,
15853,
22014,
62,
675,
7,
82,
62,
675,
11,
308,
62,
675,
8,
198,
220,
220,
220,
2994,
15853,
22014,
62,
86,
66,
7,
82,
62,
86,
66,
11,
308,
62,
86,
66,
8,
198,
220,
220,
220,
2994,
15853,
22014,
62,
21638,
7,
82,
62,
21638,
11,
308,
62,
675,
11,
308,
62,
21638,
8,
198,
220,
220,
220,
2994,
15853,
22014,
62,
86,
85,
62,
325,
7,
82,
62,
86,
85,
11,
308,
62,
675,
11,
308,
62,
86,
8903,
8,
628,
220,
220,
220,
1441,
2994,
198,
198,
4299,
22014,
62,
1416,
7,
82,
62,
1416,
11,
308,
62,
1416,
2599,
198,
220,
220,
220,
2994,
796,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
1416,
11,
28034,
13,
83,
22854,
7,
70,
62,
1416,
737,
1462,
7,
25202,
4008,
198,
220,
220,
220,
1441,
2994,
628,
198,
4299,
22014,
62,
11400,
7,
82,
62,
11400,
11,
308,
62,
11400,
2599,
198,
220,
220,
220,
2994,
796,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
11400,
11,
28034,
13,
83,
22854,
7,
70,
62,
11400,
737,
1462,
7,
25202,
4008,
198,
220,
220,
220,
1441,
2994,
198,
198,
4299,
22014,
62,
675,
7,
82,
62,
675,
11,
308,
62,
675,
2599,
198,
220,
220,
220,
2994,
796,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
675,
11,
28034,
13,
83,
22854,
7,
70,
62,
675,
737,
1462,
7,
25202,
4008,
628,
220,
220,
220,
1441,
2994,
198,
198,
4299,
22014,
62,
86,
66,
7,
82,
62,
86,
66,
11,
308,
62,
86,
66,
2599,
628,
220,
220,
220,
1303,
28407,
6376,
17593,
198,
220,
220,
220,
275,
50,
11,
3509,
62,
71,
62,
11925,
796,
264,
62,
86,
66,
13,
43358,
198,
220,
220,
220,
545,
796,
28034,
13,
9107,
418,
26933,
65,
50,
11,
3509,
62,
71,
62,
11925,
35944,
1462,
7,
25202,
8,
198,
220,
220,
220,
329,
275,
11,
308,
62,
86,
66,
16,
287,
27056,
378,
7,
70,
62,
86,
66,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
329,
308,
62,
86,
66,
1157,
287,
308,
62,
86,
66,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
545,
58,
65,
11,
308,
62,
86,
66,
1157,
60,
796,
352,
13,
15,
198,
220,
220,
220,
1303,
28407,
1861,
13,
198,
220,
220,
220,
279,
796,
376,
13,
82,
17225,
1868,
7,
82,
62,
86,
66,
8,
198,
220,
220,
220,
2994,
796,
376,
13,
39491,
62,
19692,
62,
298,
28338,
7,
79,
11,
545,
8,
628,
220,
220,
220,
1441,
2994,
628,
198,
4299,
22014,
62,
21638,
7,
82,
62,
21638,
11,
308,
62,
675,
11,
308,
62,
21638,
2599,
628,
220,
220,
220,
1303,
28407,
6376,
17593,
198,
220,
220,
220,
2994,
796,
657,
198,
220,
220,
220,
329,
275,
11,
308,
62,
675,
16,
287,
27056,
378,
7,
70,
62,
675,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
308,
62,
675,
16,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
21638,
16,
796,
308,
62,
21638,
58,
65,
60,
198,
220,
220,
220,
220,
220,
220,
220,
264,
62,
21638,
16,
796,
264,
62,
21638,
58,
65,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
15853,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
21638,
16,
58,
25,
70,
62,
675,
16,
4357,
28034,
13,
83,
22854,
7,
70,
62,
21638,
16,
737,
1462,
7,
25202,
4008,
628,
220,
220,
220,
1441,
2994,
198,
198,
4299,
22014,
62,
86,
85,
62,
325,
7,
82,
62,
86,
85,
11,
308,
62,
675,
11,
308,
62,
86,
8903,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
264,
62,
86,
85,
25,
220,
220,
685,
65,
50,
11,
604,
11,
36226,
11,
362,
4357,
604,
6296,
329,
5415,
1303,
286,
4006,
11,
362,
256,
1746,
329,
923,
1222,
886,
2604,
896,
13,
198,
220,
220,
220,
308,
62,
86,
8903,
25,
220,
685,
685,
16,
11,
513,
11,
362,
4357,
685,
19,
11,
18,
60,
2361,
357,
12518,
347,
28,
17,
11,
266,
77,
7,
65,
28,
16,
8,
796,
513,
11,
266,
77,
7,
65,
28,
17,
8,
796,
362,
737,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2994,
796,
657,
198,
220,
220,
220,
1303,
308,
62,
86,
8903,
796,
28034,
13,
83,
22854,
7,
70,
62,
86,
8903,
737,
1462,
7,
25202,
8,
198,
220,
220,
220,
329,
275,
11,
308,
62,
86,
8903,
16,
287,
27056,
378,
7,
70,
62,
86,
8903,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
329,
1312,
62,
675,
11,
308,
62,
86,
8903,
1157,
287,
27056,
378,
7,
70,
62,
86,
8903,
16,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
675,
16,
796,
18896,
7,
70,
62,
86,
8903,
16,
8,
220,
1303,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
308,
62,
675,
16,
796,
308,
62,
675,
58,
65,
60,
220,
1303,
220,
198,
220,
220,
220,
220,
220,
220,
220,
611,
308,
62,
675,
16,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
86,
8903,
16,
796,
28034,
13,
83,
22854,
7,
70,
62,
86,
8903,
16,
38381,
25,
70,
62,
675,
16,
4083,
1462,
7,
25202,
8,
1303,
220,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
301,
16,
796,
308,
62,
86,
8903,
16,
58,
45299,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
276,
16,
796,
308,
62,
86,
8903,
16,
58,
45299,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2994,
422,
262,
923,
2292,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
15853,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
86,
85,
58,
65,
11,
25,
70,
62,
675,
16,
11,
45299,
15,
4357,
308,
62,
301,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
301,
62,
38235,
25,
33172,
264,
62,
86,
85,
58,
65,
11,
25,
70,
62,
675,
16,
11,
45299,
15,
4357,
308,
62,
301,
16,
11,
2994,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2994,
422,
262,
886,
2292,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
15853,
376,
13,
19692,
62,
298,
28338,
7,
82,
62,
86,
85,
58,
65,
11,
25,
70,
62,
675,
16,
11,
45299,
16,
4357,
308,
62,
276,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3601,
7203,
276,
62,
38235,
25,
33172,
264,
62,
86,
85,
58,
65,
11,
25,
70,
62,
675,
16,
11,
45299,
16,
4357,
308,
62,
276,
16,
11,
2994,
8,
628,
220,
220,
220,
1441,
2994,
628,
628,
198,
2,
796,
2559,
34580,
12,
49925,
796,
2559,
855,
628,
198,
198,
2,
796,
25609,
220,
911,
12154,
12,
49925,
796,
25609,
855,
628,
198,
4299,
22014,
62,
82,
17,
82,
7,
26675,
11,
308,
62,
79,
429,
62,
312,
34223,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4776,
796,
685,
33,
11,
309,
11,
3509,
62,
41068,
62,
13664,
60,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
33411,
4731,
636,
198,
220,
220,
220,
2994,
796,
657,
628,
220,
220,
220,
329,
275,
11,
308,
62,
79,
429,
62,
312,
34223,
16,
287,
27056,
378,
7,
70,
62,
79,
429,
62,
312,
34223,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1225,
796,
18896,
7,
70,
62,
79,
429,
62,
312,
34223,
16,
8,
532,
352,
198,
220,
220,
220,
220,
220,
220,
220,
4776,
62,
3911,
796,
4776,
58,
65,
11,
1058,
276,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
15853,
376,
13,
19692,
62,
298,
28338,
7,
26675,
62,
3911,
11,
28034,
13,
83,
22854,
7,
70,
62,
79,
429,
62,
312,
34223,
16,
58,
16,
25,
35944,
1462,
7,
25202,
4008,
220,
1303,
1343,
16,
6482,
13,
198,
220,
220,
220,
1441,
2994,
198
] | 1.912207 | 2,130 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = 'Michael Liao'
'''
async web application.
'''
import logging; logging.basicConfig(level=logging.INFO)
import asyncio, os, json, time
from datetime import datetime
from aiohttp import web
loop = asyncio.get_event_loop()
loop.run_until_complete(init(loop))
loop.run_forever()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
834,
9800,
834,
796,
705,
13256,
406,
13481,
6,
198,
198,
7061,
6,
198,
292,
13361,
3992,
3586,
13,
198,
7061,
6,
198,
198,
11748,
18931,
26,
18931,
13,
35487,
16934,
7,
5715,
28,
6404,
2667,
13,
10778,
8,
198,
198,
11748,
30351,
952,
11,
28686,
11,
33918,
11,
640,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
198,
6738,
257,
952,
4023,
1330,
3992,
198,
198,
26268,
796,
30351,
952,
13,
1136,
62,
15596,
62,
26268,
3419,
198,
26268,
13,
5143,
62,
28446,
62,
20751,
7,
15003,
7,
26268,
4008,
198,
26268,
13,
5143,
62,
754,
332,
3419,
198
] | 2.72 | 125 |
from __future__ import print_function
import os
import numpy as np
import matplotlib.pyplot as plt
import flopy
fb = flopy.modflow.Modflow.load('freyberg', version='mf2005', model_ws=os.path.join('..', 'data', 'freyberg'), verbose=True)
dis = fb.dis
top = fb.dis.top
fb.dis.top.plot(grid=True, colorbar=True)
fb.dis.botm.plot(grid=True, colorbar=True)
fb.dis.plot()
plt.show()
fb.dis.plot()
plt.show()
fig = plt.figure(figsize=(8, 8))
ax = fig.add_subplot(1,2,1, aspect='equal')
fb.dis.top.plot(grid=True, axes=ax, colorbar=True)
ax = fig.add_subplot(1,2,2, aspect='equal')
fb.dis.botm.plot(grid=True, axes=ax, colorbar=True)
plt.show()
print('this is the end my friend') | [
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
11748,
28686,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
198,
11748,
781,
11081,
628,
198,
21855,
796,
781,
11081,
13,
4666,
11125,
13,
5841,
11125,
13,
2220,
10786,
37425,
3900,
3256,
2196,
11639,
76,
69,
14315,
3256,
2746,
62,
18504,
28,
418,
13,
6978,
13,
22179,
10786,
492,
3256,
705,
7890,
3256,
705,
37425,
3900,
33809,
15942,
577,
28,
17821,
8,
198,
198,
6381,
796,
277,
65,
13,
6381,
198,
198,
4852,
796,
277,
65,
13,
6381,
13,
4852,
198,
198,
21855,
13,
6381,
13,
4852,
13,
29487,
7,
25928,
28,
17821,
11,
3124,
5657,
28,
17821,
8,
198,
21855,
13,
6381,
13,
13645,
76,
13,
29487,
7,
25928,
28,
17821,
11,
3124,
5657,
28,
17821,
8,
198,
198,
21855,
13,
6381,
13,
29487,
3419,
198,
489,
83,
13,
12860,
3419,
198,
198,
21855,
13,
6381,
13,
29487,
3419,
198,
489,
83,
13,
12860,
3419,
628,
198,
5647,
796,
458,
83,
13,
26875,
7,
5647,
7857,
16193,
23,
11,
807,
4008,
198,
897,
796,
2336,
13,
2860,
62,
7266,
29487,
7,
16,
11,
17,
11,
16,
11,
4843,
11639,
40496,
11537,
198,
21855,
13,
6381,
13,
4852,
13,
29487,
7,
25928,
28,
17821,
11,
34197,
28,
897,
11,
220,
3124,
5657,
28,
17821,
8,
198,
897,
796,
2336,
13,
2860,
62,
7266,
29487,
7,
16,
11,
17,
11,
17,
11,
4843,
11639,
40496,
11537,
198,
21855,
13,
6381,
13,
13645,
76,
13,
29487,
7,
25928,
28,
17821,
11,
34197,
28,
897,
11,
3124,
5657,
28,
17821,
8,
198,
489,
83,
13,
12860,
3419,
198,
198,
4798,
10786,
5661,
318,
262,
886,
616,
1545,
11537
] | 2.4 | 285 |
from chia import components
from chia.components.sample_transformers import identity
from chia.components.sample_transformers.sample_transformer import SampleTransformer
__all__ = ["SampleTransformer", "SampleTransformerFactory"]
| [
6738,
442,
544,
1330,
6805,
198,
6738,
442,
544,
13,
5589,
3906,
13,
39873,
62,
35636,
364,
1330,
5369,
198,
6738,
442,
544,
13,
5589,
3906,
13,
39873,
62,
35636,
364,
13,
39873,
62,
7645,
16354,
1330,
27565,
8291,
16354,
628,
198,
198,
834,
439,
834,
796,
14631,
36674,
8291,
16354,
1600,
366,
36674,
8291,
16354,
22810,
8973,
198
] | 3.949153 | 59 |
#
names = []
names.append('singi')
names.append('lily')
names.append('sam')
print('I find a big dining-table,I can invite more friends.')
names.insert(0, 'xiaoling')
names.insert(2, 'fangsi')
names.append('zhangqing')
greets = ',would you like to have dinner with me ?'
print(names[0]+greets)
print(names[1]+greets)
print(names[2]+greets)
print(names[3]+greets)
print(names[4]+greets)
print(names[5]+greets) | [
2,
220,
198,
198,
14933,
796,
17635,
198,
14933,
13,
33295,
10786,
12215,
72,
11537,
198,
14933,
13,
33295,
10786,
75,
813,
11537,
198,
14933,
13,
33295,
10786,
37687,
11537,
198,
198,
4798,
10786,
40,
1064,
257,
1263,
17423,
12,
11487,
11,
40,
460,
14037,
517,
2460,
2637,
8,
198,
198,
14933,
13,
28463,
7,
15,
11,
705,
36072,
40949,
11537,
198,
14933,
13,
28463,
7,
17,
11,
705,
69,
648,
13396,
11537,
198,
14933,
13,
33295,
10786,
23548,
648,
80,
278,
11537,
198,
198,
16694,
1039,
796,
46083,
19188,
345,
588,
284,
423,
8073,
351,
502,
5633,
6,
198,
4798,
7,
14933,
58,
15,
48688,
16694,
1039,
8,
198,
4798,
7,
14933,
58,
16,
48688,
16694,
1039,
8,
198,
4798,
7,
14933,
58,
17,
48688,
16694,
1039,
8,
198,
4798,
7,
14933,
58,
18,
48688,
16694,
1039,
8,
198,
4798,
7,
14933,
58,
19,
48688,
16694,
1039,
8,
198,
4798,
7,
14933,
58,
20,
48688,
16694,
1039,
8
] | 2.591195 | 159 |
from django.template.defaultfilters import slugify
from django.test import TestCase
from package.models import Package, Version
from pypi.slurper import Slurper
TEST_PACKAGE_NAME = 'Django'
TEST_PACKAGE_VERSION = '1.3'
TEST_PACKAGE_REPO_NAME = 'django-uni-form' | [
6738,
42625,
14208,
13,
28243,
13,
12286,
10379,
1010,
1330,
31065,
1958,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
198,
198,
6738,
5301,
13,
27530,
1330,
15717,
11,
10628,
198,
6738,
279,
4464,
72,
13,
6649,
333,
525,
1330,
3454,
333,
525,
198,
198,
51,
6465,
62,
47,
8120,
11879,
62,
20608,
796,
705,
35,
73,
14208,
6,
198,
51,
6465,
62,
47,
8120,
11879,
62,
43717,
796,
705,
16,
13,
18,
6,
198,
51,
6465,
62,
47,
8120,
11879,
62,
2200,
16402,
62,
20608,
796,
705,
28241,
14208,
12,
35657,
12,
687,
6
] | 2.739583 | 96 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
| [
2,
19617,
28,
40477,
12,
23,
198,
2,
16529,
35937,
198,
2,
15069,
357,
66,
8,
5413,
10501,
13,
1439,
2489,
10395,
13,
198,
2,
49962,
739,
262,
17168,
13789,
13,
4091,
13789,
13,
14116,
287,
262,
1628,
6808,
329,
198,
2,
5964,
1321,
13,
198,
2,
198,
2,
6127,
7560,
416,
5413,
357,
49,
8,
11160,
19452,
6127,
35986,
13,
198,
2,
19179,
743,
2728,
11491,
4069,
290,
481,
307,
2626,
611,
262,
2438,
318,
198,
2,
16935,
515,
13,
198,
2,
16529,
35937,
198,
198,
6738,
13845,
2118,
13,
46911,
1634,
1330,
9104,
628
] | 5.354167 | 96 |
import inspect
import numpy as np
from pandas._libs import reduction as libreduction
from pandas.util._decorators import cache_readonly
from pandas.core.dtypes.common import (
is_dict_like,
is_extension_array_dtype,
is_list_like,
is_sequence,
)
from pandas.core.dtypes.generic import ABCSeries
def frame_apply(
obj,
func,
axis=0,
raw=False,
result_type=None,
ignore_failures=False,
args=None,
kwds=None,
):
""" construct and return a row or column based frame apply object """
axis = obj._get_axis_number(axis)
if axis == 0:
klass = FrameRowApply
elif axis == 1:
klass = FrameColumnApply
return klass(
obj,
func,
raw=raw,
result_type=result_type,
ignore_failures=ignore_failures,
args=args,
kwds=kwds,
)
def apply_empty_result(self):
"""
we have an empty result; at least 1 axis is 0
we will try to apply the function to an empty
series in order to see if this is a reduction function
"""
# we are not asked to reduce or infer reduction
# so just return a copy of the existing object
if self.result_type not in ["reduce", None]:
return self.obj.copy()
# we may need to infer
should_reduce = self.result_type == "reduce"
from pandas import Series
if not should_reduce:
try:
r = self.f(Series([]))
except Exception:
pass
else:
should_reduce = not isinstance(r, Series)
if should_reduce:
if len(self.agg_axis):
r = self.f(Series([]))
else:
r = np.nan
return self.obj._constructor_sliced(r, index=self.agg_axis)
else:
return self.obj.copy()
def apply_raw(self):
""" apply to the values as a numpy array """
try:
result = libreduction.compute_reduction(self.values, self.f, axis=self.axis)
except ValueError as err:
if "Function does not reduce" not in str(err):
# catch only ValueError raised intentionally in libreduction
raise
result = np.apply_along_axis(self.f, self.axis, self.values)
# TODO: mixed type case
if result.ndim == 2:
return self.obj._constructor(result, index=self.index, columns=self.columns)
else:
return self.obj._constructor_sliced(result, index=self.agg_axis)
class FrameRowApply(FrameApply):
axis = 0
def wrap_results_for_axis(self):
""" return the results for the rows """
results = self.results
result = self.obj._constructor(data=results)
if not isinstance(results[0], ABCSeries):
if len(result.index) == len(self.res_columns):
result.index = self.res_columns
if len(result.columns) == len(self.res_index):
result.columns = self.res_index
return result
class FrameColumnApply(FrameApply):
axis = 1
def wrap_results_for_axis(self):
""" return the results for the columns """
results = self.results
# we have requested to expand
if self.result_type == "expand":
result = self.infer_to_same_shape()
# we have a non-series and don't want inference
elif not isinstance(results[0], ABCSeries):
from pandas import Series
result = Series(results)
result.index = self.res_index
# we may want to infer results
else:
result = self.infer_to_same_shape()
return result
def infer_to_same_shape(self):
""" infer the results to the same shape as the input object """
results = self.results
result = self.obj._constructor(data=results)
result = result.T
# set the index
result.index = self.res_index
# infer dtypes
result = result.infer_objects()
return result
| [
11748,
10104,
198,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
19798,
292,
13557,
8019,
82,
1330,
7741,
355,
9195,
445,
8110,
198,
6738,
19798,
292,
13,
22602,
13557,
12501,
273,
2024,
1330,
12940,
62,
961,
8807,
198,
198,
6738,
19798,
292,
13,
7295,
13,
67,
19199,
13,
11321,
1330,
357,
198,
220,
220,
220,
318,
62,
11600,
62,
2339,
11,
198,
220,
220,
220,
318,
62,
2302,
3004,
62,
18747,
62,
67,
4906,
11,
198,
220,
220,
220,
318,
62,
4868,
62,
2339,
11,
198,
220,
220,
220,
318,
62,
43167,
11,
198,
8,
198,
6738,
19798,
292,
13,
7295,
13,
67,
19199,
13,
41357,
1330,
9738,
27996,
628,
198,
4299,
5739,
62,
39014,
7,
198,
220,
220,
220,
26181,
11,
198,
220,
220,
220,
25439,
11,
198,
220,
220,
220,
16488,
28,
15,
11,
198,
220,
220,
220,
8246,
28,
25101,
11,
198,
220,
220,
220,
1255,
62,
4906,
28,
14202,
11,
198,
220,
220,
220,
8856,
62,
32165,
942,
28,
25101,
11,
198,
220,
220,
220,
26498,
28,
14202,
11,
198,
220,
220,
220,
479,
86,
9310,
28,
14202,
11,
198,
2599,
198,
220,
220,
220,
37227,
5678,
290,
1441,
257,
5752,
393,
5721,
1912,
5739,
4174,
2134,
37227,
628,
220,
220,
220,
16488,
796,
26181,
13557,
1136,
62,
22704,
62,
17618,
7,
22704,
8,
198,
220,
220,
220,
611,
16488,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
479,
31172,
796,
25184,
25166,
44836,
198,
220,
220,
220,
1288,
361,
16488,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
479,
31172,
796,
25184,
39470,
44836,
628,
220,
220,
220,
1441,
479,
31172,
7,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
11,
198,
220,
220,
220,
220,
220,
220,
220,
25439,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8246,
28,
1831,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
62,
4906,
28,
20274,
62,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8856,
62,
32165,
942,
28,
46430,
62,
32165,
942,
11,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
28,
22046,
11,
198,
220,
220,
220,
220,
220,
220,
220,
479,
86,
9310,
28,
46265,
9310,
11,
198,
220,
220,
220,
1267,
628,
198,
220,
220,
220,
825,
4174,
62,
28920,
62,
20274,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
356,
423,
281,
6565,
1255,
26,
379,
1551,
352,
16488,
318,
657,
628,
220,
220,
220,
220,
220,
220,
220,
356,
481,
1949,
284,
4174,
262,
2163,
284,
281,
6565,
198,
220,
220,
220,
220,
220,
220,
220,
2168,
287,
1502,
284,
766,
611,
428,
318,
257,
7741,
2163,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
389,
407,
1965,
284,
4646,
393,
13249,
7741,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
523,
655,
1441,
257,
4866,
286,
262,
4683,
2134,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
20274,
62,
4906,
407,
287,
14631,
445,
7234,
1600,
6045,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26801,
13,
30073,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
743,
761,
284,
13249,
198,
220,
220,
220,
220,
220,
220,
220,
815,
62,
445,
7234,
796,
2116,
13,
20274,
62,
4906,
6624,
366,
445,
7234,
1,
628,
220,
220,
220,
220,
220,
220,
220,
422,
19798,
292,
1330,
7171,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
815,
62,
445,
7234,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
69,
7,
27996,
7,
21737,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
815,
62,
445,
7234,
796,
407,
318,
39098,
7,
81,
11,
7171,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
815,
62,
445,
7234,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
944,
13,
9460,
62,
22704,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
796,
2116,
13,
69,
7,
27996,
7,
21737,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
374,
796,
45941,
13,
12647,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26801,
13557,
41571,
273,
62,
82,
677,
276,
7,
81,
11,
6376,
28,
944,
13,
9460,
62,
22704,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26801,
13,
30073,
3419,
628,
220,
220,
220,
825,
4174,
62,
1831,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4174,
284,
262,
3815,
355,
257,
299,
32152,
7177,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
9195,
445,
8110,
13,
5589,
1133,
62,
445,
8110,
7,
944,
13,
27160,
11,
2116,
13,
69,
11,
16488,
28,
944,
13,
22704,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
11052,
12331,
355,
11454,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
366,
22203,
857,
407,
4646,
1,
407,
287,
965,
7,
8056,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4929,
691,
11052,
12331,
4376,
16464,
287,
9195,
445,
8110,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
45941,
13,
39014,
62,
24176,
62,
22704,
7,
944,
13,
69,
11,
2116,
13,
22704,
11,
2116,
13,
27160,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
25,
7668,
2099,
1339,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1255,
13,
358,
320,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26801,
13557,
41571,
273,
7,
20274,
11,
6376,
28,
944,
13,
9630,
11,
15180,
28,
944,
13,
28665,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
26801,
13557,
41571,
273,
62,
82,
677,
276,
7,
20274,
11,
6376,
28,
944,
13,
9460,
62,
22704,
8,
628,
198,
4871,
25184,
25166,
44836,
7,
19778,
44836,
2599,
198,
220,
220,
220,
16488,
796,
657,
628,
220,
220,
220,
825,
14441,
62,
43420,
62,
1640,
62,
22704,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1441,
262,
2482,
329,
262,
15274,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2482,
796,
2116,
13,
43420,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
26801,
13557,
41571,
273,
7,
7890,
28,
43420,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
43420,
58,
15,
4357,
9738,
27996,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
20274,
13,
9630,
8,
6624,
18896,
7,
944,
13,
411,
62,
28665,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
9630,
796,
2116,
13,
411,
62,
28665,
82,
628,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
20274,
13,
28665,
82,
8,
6624,
18896,
7,
944,
13,
411,
62,
9630,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
28665,
82,
796,
2116,
13,
411,
62,
9630,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
198,
4871,
25184,
39470,
44836,
7,
19778,
44836,
2599,
198,
220,
220,
220,
16488,
796,
352,
628,
220,
220,
220,
825,
14441,
62,
43420,
62,
1640,
62,
22704,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1441,
262,
2482,
329,
262,
15180,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2482,
796,
2116,
13,
43420,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
423,
9167,
284,
4292,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2116,
13,
20274,
62,
4906,
6624,
366,
11201,
392,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
259,
2232,
62,
1462,
62,
31642,
62,
43358,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
423,
257,
1729,
12,
25076,
290,
836,
470,
765,
32278,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
407,
318,
39098,
7,
43420,
58,
15,
4357,
9738,
27996,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
422,
19798,
292,
1330,
7171,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
7171,
7,
43420,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
9630,
796,
2116,
13,
411,
62,
9630,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
356,
743,
765,
284,
13249,
2482,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
259,
2232,
62,
1462,
62,
31642,
62,
43358,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
220,
220,
220,
825,
13249,
62,
1462,
62,
31642,
62,
43358,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13249,
262,
2482,
284,
262,
976,
5485,
355,
262,
5128,
2134,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2482,
796,
2116,
13,
43420,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
2116,
13,
26801,
13557,
41571,
273,
7,
7890,
28,
43420,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1255,
13,
51,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
900,
262,
6376,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
9630,
796,
2116,
13,
411,
62,
9630,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13249,
288,
19199,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
1255,
13,
259,
2232,
62,
48205,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
198
] | 2.246162 | 1,824 |
# -*- coding: utf-8 -*-
"""
@date: 2021/5/16 10:22
@file: test_shufflenetv1.py
@author: zj
@description:
"""
import torch
from zcls.config import cfg
from zcls.config.key_word import KEY_OUTPUT
from zcls.model.recognizers.build import build_recognizer
if __name__ == '__main__':
test_shufflenet()
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
37811,
198,
31,
4475,
25,
33448,
14,
20,
14,
1433,
838,
25,
1828,
198,
31,
7753,
25,
1332,
62,
1477,
1648,
11925,
316,
85,
16,
13,
9078,
198,
31,
9800,
25,
1976,
73,
198,
31,
11213,
25,
220,
198,
37811,
198,
198,
11748,
28034,
198,
198,
6738,
1976,
565,
82,
13,
11250,
1330,
30218,
70,
198,
6738,
1976,
565,
82,
13,
11250,
13,
2539,
62,
4775,
1330,
35374,
62,
2606,
7250,
3843,
198,
6738,
1976,
565,
82,
13,
19849,
13,
26243,
11341,
13,
11249,
1330,
1382,
62,
26243,
7509,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1332,
62,
1477,
1648,
11925,
316,
3419,
198
] | 2.395349 | 129 |
#!/usr/bin/env pytest
###############################################################################
# $Id$
#
# Project: GDAL/OGR Test Suite
# Purpose: Test /vsis3
# Author: Even Rouault <even dot rouault at spatialys dot com>
#
###############################################################################
# Copyright (c) 2015, Even Rouault <even dot rouault at spatialys dot com>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
###############################################################################
import json
import os.path
import stat
import sys
from osgeo import gdal
import gdaltest
import webserver
import pytest
def open_for_read(uri):
"""
Opens a test file for reading.
"""
return gdal.VSIFOpenExL(uri, 'rb', 1)
###############################################################################
###############################################################################
# Test AWS_NO_SIGN_REQUEST=YES
###############################################################################
# Test Sync() and multithreaded download
###############################################################################
# Test Sync() and multithreaded download and CHUNK_SIZE
###############################################################################
# Error cases
###############################################################################
###############################################################################
# Test with a fake AWS server
###############################################################################
# Test re-opening after changing configuration option (#2294)
###############################################################################
# Test ReadDir() with a fake AWS server
###############################################################################
# Test OpenDir() with a fake AWS server
###############################################################################
# Test simple PUT support with a fake AWS server
###############################################################################
# Test simple PUT support with retry logic
###############################################################################
# Test simple DELETE support with a fake AWS server
###############################################################################
# Test DeleteObjects with a fake AWS server
###############################################################################
# Test RmdirRecursive() with a fake AWS server
###############################################################################
# Test multipart upload with a fake AWS server
###############################################################################
# Test multipart upload with retry logic
###############################################################################
# Test Mkdir() / Rmdir()
###############################################################################
# Test handling of file and directory with same name
###############################################################################
# Test vsisync() with SYNC_STRATEGY=ETAG
###############################################################################
# Test vsisync() with SYNC_STRATEGY=TIMESTAMP
###############################################################################
# Test vsisync() with SYNC_STRATEGY=OVERWRITE
###############################################################################
# Test vsisync() with source and target in /vsis3
###############################################################################
# Test rename
###############################################################################
# Test rename
###############################################################################
# Test rename onto existing dir is not allowed
###############################################################################
# Test Sync() and multithreaded download and CHUNK_SIZE
###############################################################################
# Test reading/writing metadata
###############################################################################
# Test that we take into account directory listing to avoid useless
# requests
###############################################################################
# Test w+ access
###############################################################################
# Test w+ access
###############################################################################
# Test w+ access
###############################################################################
# Test w+ access
###############################################################################
# Read credentials from simulated ~/.aws/credentials
###############################################################################
# Read credentials from simulated ~/.aws/config
###############################################################################
# Read credentials from simulated ~/.aws/credentials and ~/.aws/config
###############################################################################
# Read credentials from simulated ~/.aws/credentials and ~/.aws/config with
# a non default profile
###############################################################################
# Read credentials from simulated ~/.aws/credentials and ~/.aws/config
###############################################################################
# Read credentials from simulated EC2 instance
###############################################################################
# Read credentials from simulated EC2 instance that only supports IMDSv1
###############################################################################
# Read credentials from simulated EC2 instance with expiration of the
# cached credentials
###############################################################################
###############################################################################
# Nominal cases (require valid credentials)
###############################################################################
| [
2,
48443,
14629,
14,
8800,
14,
24330,
12972,
9288,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
720,
7390,
3,
198,
2,
198,
2,
4935,
25,
220,
27044,
1847,
14,
49656,
6208,
26264,
198,
2,
32039,
25,
220,
6208,
1220,
85,
13429,
18,
198,
2,
6434,
25,
220,
220,
3412,
13876,
1721,
1279,
10197,
16605,
13805,
1721,
379,
21739,
893,
16605,
401,
29,
198,
2,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
15069,
357,
66,
8,
1853,
11,
3412,
13876,
1721,
1279,
10197,
16605,
13805,
1721,
379,
21739,
893,
16605,
401,
29,
198,
2,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
198,
2,
4866,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
366,
25423,
12340,
198,
2,
284,
1730,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
198,
2,
262,
2489,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
198,
2,
290,
14,
273,
3677,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
198,
2,
10442,
318,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
198,
2,
198,
2,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
198,
2,
287,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
2,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
198,
2,
6375,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
198,
2,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
198,
2,
3336,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
198,
2,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
198,
2,
16034,
11,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
25401,
198,
2,
5550,
1847,
20754,
3268,
3336,
47466,
13,
198,
29113,
29113,
7804,
4242,
21017,
198,
198,
11748,
33918,
198,
11748,
28686,
13,
6978,
198,
11748,
1185,
198,
11748,
25064,
198,
6738,
28686,
469,
78,
1330,
308,
31748,
628,
198,
11748,
308,
67,
2501,
395,
198,
11748,
2639,
18497,
198,
11748,
12972,
9288,
628,
198,
4299,
1280,
62,
1640,
62,
961,
7,
9900,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
8670,
641,
257,
1332,
2393,
329,
3555,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
308,
31748,
13,
20304,
5064,
11505,
3109,
43,
7,
9900,
11,
705,
26145,
3256,
352,
8,
198,
198,
29113,
29113,
7804,
4242,
21017,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
30865,
62,
15285,
62,
46224,
62,
2200,
35780,
28,
43335,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
35908,
3419,
290,
1963,
342,
961,
276,
4321,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
35908,
3419,
290,
1963,
342,
961,
276,
4321,
290,
5870,
4944,
42,
62,
33489,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
13047,
2663,
628,
198,
29113,
29113,
7804,
4242,
21017,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
302,
12,
29443,
706,
5609,
8398,
3038,
17426,
1828,
5824,
8,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
4149,
35277,
3419,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
4946,
35277,
3419,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
2829,
350,
3843,
1104,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
2829,
350,
3843,
1104,
351,
1005,
563,
9156,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
2829,
5550,
2538,
9328,
1104,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
23520,
10267,
82,
351,
257,
8390,
30865,
4382,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
371,
9132,
343,
6690,
30753,
3419,
351,
257,
8390,
30865,
4382,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
18540,
433,
9516,
351,
257,
8390,
30865,
4382,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
18540,
433,
9516,
351,
1005,
563,
9156,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
24798,
15908,
3419,
1220,
371,
9132,
343,
3419,
628,
198,
220,
220,
220,
220,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
9041,
286,
2393,
290,
8619,
351,
976,
1438,
628,
198,
220,
220,
220,
220,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
3691,
271,
13361,
3419,
351,
19704,
7792,
62,
18601,
6158,
31212,
28,
2767,
4760,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
3691,
271,
13361,
3419,
351,
19704,
7792,
62,
18601,
6158,
31212,
28,
51,
3955,
6465,
23518,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
3691,
271,
13361,
3419,
351,
19704,
7792,
62,
18601,
6158,
31212,
28,
41983,
18564,
12709,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
3691,
271,
13361,
3419,
351,
2723,
290,
2496,
287,
1220,
85,
13429,
18,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
36265,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
36265,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
36265,
4291,
4683,
26672,
318,
407,
3142,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
35908,
3419,
290,
1963,
342,
961,
276,
4321,
290,
5870,
4944,
42,
62,
33489,
628,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
3555,
14,
16502,
20150,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
326,
356,
1011,
656,
1848,
8619,
13487,
284,
3368,
13894,
198,
2,
7007,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
266,
10,
1895,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
266,
10,
1895,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
266,
10,
1895,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
6208,
266,
10,
1895,
198,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
39763,
8356,
14,
66,
445,
14817,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
220,
39763,
8356,
14,
11250,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
39763,
8356,
14,
66,
445,
14817,
290,
39763,
8356,
14,
11250,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
39763,
8356,
14,
66,
445,
14817,
290,
39763,
8356,
14,
11250,
351,
198,
2,
257,
1729,
4277,
7034,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
39763,
8356,
14,
66,
445,
14817,
290,
39763,
8356,
14,
11250,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
13182,
17,
4554,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
13182,
17,
4554,
326,
691,
6971,
8959,
5258,
85,
16,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
4149,
18031,
422,
28590,
13182,
17,
4554,
351,
28385,
286,
262,
198,
2,
39986,
18031,
628,
198,
29113,
29113,
7804,
4242,
21017,
628,
198,
29113,
29113,
7804,
4242,
21017,
198,
2,
21198,
1292,
2663,
357,
46115,
4938,
18031,
8,
628,
198,
29113,
29113,
7804,
4242,
21017,
628
] | 5.671395 | 1,269 |
import os.path
from collections import Counter
import pytest
INPUT_TXT = os.path.join(os.path.dirname(__file__), 'input.txt')
INPUT_S = '''\
3,4,3,1,2
'''
EXPECTED = 5934
if __name__ == '__main__':
raise SystemExit(main())
| [
11748,
28686,
13,
6978,
198,
6738,
17268,
1330,
15034,
198,
198,
11748,
12972,
9288,
198,
198,
1268,
30076,
62,
51,
25010,
796,
28686,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
828,
705,
15414,
13,
14116,
11537,
628,
198,
198,
1268,
30076,
62,
50,
796,
705,
7061,
59,
198,
18,
11,
19,
11,
18,
11,
16,
11,
17,
198,
7061,
6,
198,
49864,
9782,
1961,
796,
7863,
2682,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
5298,
4482,
30337,
7,
12417,
28955,
198
] | 2.383838 | 99 |
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://localhost:8000')
assert 'Django' in browser.title | [
6738,
384,
11925,
1505,
1330,
3992,
26230,
198,
198,
40259,
796,
3992,
26230,
13,
13543,
12792,
3419,
198,
40259,
13,
1136,
10786,
4023,
1378,
36750,
25,
33942,
11537,
198,
198,
30493,
705,
35,
73,
14208,
6,
287,
6444,
13,
7839
] | 3.3 | 40 |
#!/usr/bin/env python3
"""
For the last column, print only the first character.
Usage:
$ printf "100,200\n0,\n" | python3 first_char_last_column.py
Should print "100,2\n0,"
"""
import csv
from sys import stdin, stdout
if __name__ == "__main__":
main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
37811,
198,
1890,
262,
938,
5721,
11,
3601,
691,
262,
717,
2095,
13,
198,
28350,
25,
628,
220,
220,
220,
720,
30812,
366,
3064,
11,
2167,
59,
77,
15,
11,
59,
77,
1,
930,
21015,
18,
717,
62,
10641,
62,
12957,
62,
28665,
13,
9078,
198,
198,
19926,
3601,
366,
3064,
11,
17,
59,
77,
15,
553,
198,
37811,
198,
198,
11748,
269,
21370,
198,
6738,
25064,
1330,
14367,
259,
11,
14367,
448,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.582524 | 103 |
from pathlib import Path
root = Path(__file__).parent.absolute()
import envo
envo.add_source_roots([root])
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
from envo import Env, Namespace, env_var, logger, run
from env_comm import StickybeakCommEnv as ParentEnv
p = Namespace("p")
ThisEnv = StickybeakCiEnv
| [
6738,
3108,
8019,
1330,
10644,
198,
198,
15763,
796,
10644,
7,
834,
7753,
834,
737,
8000,
13,
48546,
3419,
198,
198,
11748,
551,
13038,
198,
198,
268,
13038,
13,
2860,
62,
10459,
62,
19150,
26933,
15763,
12962,
198,
198,
6738,
3108,
8019,
1330,
10644,
198,
6738,
19720,
1330,
4377,
11,
360,
713,
11,
7343,
11,
32233,
11,
309,
29291,
198,
198,
6738,
551,
13038,
1330,
2039,
85,
11,
28531,
10223,
11,
17365,
62,
7785,
11,
49706,
11,
1057,
198,
198,
6738,
17365,
62,
9503,
1330,
520,
17479,
1350,
461,
6935,
4834,
85,
355,
16774,
4834,
85,
198,
198,
79,
796,
28531,
10223,
7203,
79,
4943,
628,
198,
198,
1212,
4834,
85,
796,
520,
17479,
1350,
461,
34,
72,
4834,
85,
198
] | 2.85124 | 121 |
from __future__ import print_function
import zmq
import time
ADDR='tcp://127.0.0.1:11155'
ctx = zmq.Context()
srv = ctx.socket(zmq.REP)
srv.bind(ADDR)
#srv.setsockopt(zmq.RCVTIMEO, 3000);
while True:
try:
msg = srv.recv()
except Exception as e:
print('zmq socket revc timedout:', e)
else:
print('client says: %s' % msg)
srv.send('hi from server')
time.sleep(2)
| [
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
11748,
1976,
76,
80,
198,
11748,
640,
198,
198,
2885,
7707,
11639,
83,
13155,
1378,
16799,
13,
15,
13,
15,
13,
16,
25,
1157,
18742,
6,
198,
198,
49464,
796,
1976,
76,
80,
13,
21947,
3419,
198,
27891,
85,
796,
269,
17602,
13,
44971,
7,
89,
76,
80,
13,
35316,
8,
198,
27891,
85,
13,
21653,
7,
2885,
7707,
8,
198,
2,
27891,
85,
13,
28709,
735,
8738,
7,
89,
76,
80,
13,
7397,
36392,
3955,
4720,
11,
20343,
1776,
628,
198,
4514,
6407,
25,
198,
220,
1949,
25,
198,
220,
220,
220,
31456,
796,
19677,
85,
13,
8344,
85,
3419,
198,
220,
2845,
35528,
355,
304,
25,
198,
220,
220,
220,
3601,
10786,
89,
76,
80,
17802,
2710,
66,
28805,
448,
25,
3256,
304,
8,
198,
220,
2073,
25,
198,
220,
220,
220,
3601,
10786,
16366,
1139,
25,
4064,
82,
6,
4064,
31456,
8,
198,
220,
220,
220,
19677,
85,
13,
21280,
10786,
5303,
422,
4382,
11537,
198,
220,
220,
220,
220,
198,
220,
640,
13,
42832,
7,
17,
8,
198
] | 2.176796 | 181 |
"""Strip/reset AST in-place to match state after semantic analysis pass 1.
Fine-grained incremental mode reruns semantic analysis (passes 2 and 3)
and type checking for *existing* AST nodes (targets) when changes are
propagated using fine-grained dependencies. AST nodes attributes are
often changed during semantic analysis passes 2 and 3, and running
semantic analysis again on those nodes would produce incorrect
results, since these passes aren't idempotent. This pass resets AST
nodes to reflect the state after semantic analysis pass 1, so that we
can rerun semantic analysis.
(The above is in contrast to behavior with modules that have source code
changes, for which we reparse the entire module and reconstruct a fresh
AST. No stripping is required in this case. Both modes of operation should
have the same outcome.)
Notes:
* This is currently pretty fragile, as we must carefully undo whatever
changes can be made in semantic analysis passes 2 and 3, including changes
to symbol tables.
* We reuse existing AST nodes because it makes it relatively straightforward
to reprocess only a single target within a module efficiently. If there
was a way to parse a single target within a file, in time proportional to
the size of the target, we'd rather create fresh AST nodes than strip them.
Alas, no such facility exists and building it is non-trivial.
* Currently we don't actually reset all changes, but only those known to affect
non-idempotent semantic analysis behavior.
TODO: It would be more principled and less fragile to reset everything
changed in semantic analysis pass 2 and later.
* Reprocessing may recreate AST nodes (such as Var nodes, and TypeInfo nodes
created with assignment statements) that will get different identities from
the original AST. Thus running an AST merge is necessary after stripping,
even though some identities are preserved.
"""
import contextlib
from typing import Union, Iterator, Optional
from mypy.nodes import (
Node, FuncDef, NameExpr, MemberExpr, RefExpr, MypyFile, FuncItem, ClassDef, AssignmentStmt,
ImportFrom, Import, TypeInfo, SymbolTable, Var, CallExpr, Decorator, OverloadedFuncDef,
SuperExpr, UNBOUND_IMPORTED, GDEF, MDEF, IndexExpr
)
from mypy.traverser import TraverserVisitor
def strip_target(node: Union[MypyFile, FuncItem, OverloadedFuncDef]) -> None:
"""Reset a fine-grained incremental target to state after semantic analysis pass 1.
NOTE: Currently we opportunistically only reset changes that are known to otherwise
cause trouble.
"""
visitor = NodeStripVisitor()
if isinstance(node, MypyFile):
visitor.strip_file_top_level(node)
else:
node.accept(visitor)
# TODO: handle more node types
def is_self_member_ref(memberexpr: MemberExpr) -> bool:
"""Does memberexpr refer to an attribute of self?"""
# TODO: Merge with is_self_member_ref in semanal.py.
if not isinstance(memberexpr.expr, NameExpr):
return False
node = memberexpr.expr.node
return isinstance(node, Var) and node.is_self
| [
37811,
1273,
5528,
14,
42503,
29273,
287,
12,
5372,
284,
2872,
1181,
706,
37865,
3781,
1208,
352,
13,
198,
198,
34389,
12,
2164,
1328,
29497,
4235,
302,
48381,
37865,
3781,
357,
6603,
274,
362,
290,
513,
8,
198,
392,
2099,
10627,
329,
1635,
25687,
9,
29273,
13760,
357,
83,
853,
1039,
8,
618,
2458,
389,
198,
22930,
363,
515,
1262,
3734,
12,
2164,
1328,
20086,
13,
220,
29273,
13760,
12608,
389,
198,
28950,
3421,
1141,
37865,
3781,
8318,
362,
290,
513,
11,
290,
2491,
198,
43616,
5109,
3781,
757,
319,
883,
13760,
561,
4439,
11491,
198,
43420,
11,
1201,
777,
8318,
3588,
470,
4686,
368,
13059,
298,
13,
770,
1208,
581,
1039,
29273,
198,
77,
4147,
284,
4079,
262,
1181,
706,
37865,
3781,
1208,
352,
11,
523,
326,
356,
198,
5171,
302,
5143,
37865,
3781,
13,
198,
198,
7,
464,
2029,
318,
287,
6273,
284,
4069,
351,
13103,
326,
423,
2723,
2438,
198,
36653,
11,
329,
543,
356,
1128,
17208,
262,
2104,
8265,
290,
31081,
257,
4713,
198,
11262,
13,
1400,
37727,
318,
2672,
287,
428,
1339,
13,
5747,
12881,
286,
4905,
815,
198,
14150,
262,
976,
8055,
2014,
198,
198,
16130,
25,
198,
198,
9,
770,
318,
3058,
2495,
21049,
11,
355,
356,
1276,
7773,
23981,
4232,
198,
220,
2458,
460,
307,
925,
287,
37865,
3781,
8318,
362,
290,
513,
11,
1390,
2458,
198,
220,
284,
6194,
8893,
13,
198,
198,
9,
775,
32349,
4683,
29273,
13760,
780,
340,
1838,
340,
5365,
15836,
198,
220,
284,
43969,
919,
691,
257,
2060,
2496,
1626,
257,
8265,
18306,
13,
1002,
612,
198,
220,
373,
257,
835,
284,
21136,
257,
2060,
2496,
1626,
257,
2393,
11,
287,
640,
27111,
284,
198,
220,
262,
2546,
286,
262,
2496,
11,
356,
1549,
2138,
2251,
4713,
29273,
13760,
621,
10283,
606,
13,
198,
220,
45315,
11,
645,
884,
6841,
7160,
290,
2615,
340,
318,
1729,
12,
83,
15104,
498,
13,
198,
198,
9,
16888,
356,
836,
470,
1682,
13259,
477,
2458,
11,
475,
691,
883,
1900,
284,
2689,
198,
220,
1729,
12,
28913,
13059,
298,
37865,
3781,
4069,
13,
198,
220,
16926,
46,
25,
632,
561,
307,
517,
48070,
290,
1342,
21049,
284,
13259,
2279,
198,
220,
220,
220,
220,
220,
3421,
287,
37865,
3781,
1208,
362,
290,
1568,
13,
198,
198,
9,
1432,
305,
919,
278,
743,
32049,
29273,
13760,
357,
10508,
355,
12372,
13760,
11,
290,
5994,
12360,
13760,
198,
220,
2727,
351,
16237,
6299,
8,
326,
481,
651,
1180,
18413,
422,
198,
220,
262,
2656,
29273,
13,
6660,
2491,
281,
29273,
20121,
318,
3306,
706,
37727,
11,
198,
220,
772,
996,
617,
18413,
389,
17232,
13,
198,
37811,
198,
198,
11748,
4732,
8019,
198,
6738,
19720,
1330,
4479,
11,
40806,
1352,
11,
32233,
198,
198,
6738,
616,
9078,
13,
77,
4147,
1330,
357,
198,
220,
220,
220,
19081,
11,
11138,
66,
7469,
11,
6530,
3109,
1050,
11,
10239,
3109,
1050,
11,
6524,
3109,
1050,
11,
2011,
9078,
8979,
11,
11138,
66,
7449,
11,
5016,
7469,
11,
50144,
1273,
16762,
11,
198,
220,
220,
220,
17267,
4863,
11,
17267,
11,
5994,
12360,
11,
38357,
10962,
11,
12372,
11,
4889,
3109,
1050,
11,
4280,
273,
1352,
11,
3827,
14578,
37,
19524,
7469,
11,
198,
220,
220,
220,
3115,
3109,
1050,
11,
4725,
33,
15919,
62,
3955,
15490,
1961,
11,
402,
32988,
11,
337,
32988,
11,
12901,
3109,
1050,
198,
8,
198,
6738,
616,
9078,
13,
9535,
690,
263,
1330,
4759,
690,
263,
15854,
2072,
628,
198,
4299,
10283,
62,
16793,
7,
17440,
25,
4479,
58,
3666,
9078,
8979,
11,
11138,
66,
7449,
11,
3827,
14578,
37,
19524,
7469,
12962,
4613,
6045,
25,
198,
220,
220,
220,
37227,
4965,
316,
257,
3734,
12,
2164,
1328,
29497,
2496,
284,
1181,
706,
37865,
3781,
1208,
352,
13,
628,
220,
220,
220,
24550,
25,
16888,
356,
2755,
16772,
691,
13259,
2458,
326,
389,
1900,
284,
4306,
198,
220,
220,
220,
220,
220,
220,
220,
2728,
5876,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
21493,
796,
19081,
1273,
5528,
15854,
2072,
3419,
198,
220,
220,
220,
611,
318,
39098,
7,
17440,
11,
2011,
9078,
8979,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
21493,
13,
36311,
62,
7753,
62,
4852,
62,
5715,
7,
17440,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
13,
13635,
7,
4703,
2072,
8,
628,
198,
220,
220,
220,
1303,
16926,
46,
25,
5412,
517,
10139,
3858,
628,
198,
4299,
318,
62,
944,
62,
19522,
62,
5420,
7,
11883,
65,
567,
87,
1050,
25,
10239,
3109,
1050,
8,
4613,
20512,
25,
198,
220,
220,
220,
37227,
13921,
1066,
65,
567,
87,
1050,
3522,
284,
281,
11688,
286,
2116,
1701,
15931,
198,
220,
220,
220,
1303,
16926,
46,
25,
39407,
351,
318,
62,
944,
62,
19522,
62,
5420,
287,
5026,
272,
282,
13,
9078,
13,
198,
220,
220,
220,
611,
407,
318,
39098,
7,
11883,
65,
567,
87,
1050,
13,
31937,
11,
6530,
3109,
1050,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
10139,
796,
1066,
65,
567,
87,
1050,
13,
31937,
13,
17440,
198,
220,
220,
220,
1441,
318,
39098,
7,
17440,
11,
12372,
8,
290,
10139,
13,
271,
62,
944,
628
] | 3.568129 | 866 |
import os
import sys
import shutil
cwd_path = os.getcwd()
sys.path.append(os.path.join(os.path.dirname(cwd_path), 'rt-thread', 'tools'))
# BSP dist function
| [
11748,
28686,
198,
11748,
25064,
198,
11748,
4423,
346,
198,
66,
16993,
62,
6978,
796,
28686,
13,
1136,
66,
16993,
3419,
198,
17597,
13,
6978,
13,
33295,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
66,
16993,
62,
6978,
828,
705,
17034,
12,
16663,
3256,
705,
31391,
6,
4008,
198,
198,
2,
347,
4303,
1233,
2163,
198
] | 2.507937 | 63 |
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
"""This module contains utilities for using multi-methods in
spack. You can think of multi-methods like overloaded methods --
they're methods with the same name, and we need to select a version
of the method based on some criteria. e.g., for overloaded
methods, you would select a version of the method to call based on
the types of its arguments.
In spack, multi-methods are used to ease the life of package
authors. They allow methods like install() (or other methods
called by install()) to declare multiple versions to be called when
the package is instantiated with different specs. e.g., if the
package is built with OpenMPI on x86_64,, you might want to call a
different install method than if it was built for mpich2 on
BlueGene/Q. Likewise, you might want to do a different type of
install for different versions of the package.
Multi-methods provide a simple decorator-based syntax for this that
avoids overly complicated rat nests of if statements. Obviously,
depending on the scenario, regular old conditionals might be clearer,
so package authors should use their judgement.
"""
import functools
import inspect
from llnl.util.lang import caller_locals
import spack.architecture
import spack.error
from spack.spec import Spec
| [
2,
15069,
2211,
12,
1238,
2481,
13914,
45036,
3549,
2351,
4765,
11,
11419,
290,
584,
198,
2,
1338,
441,
4935,
34152,
13,
4091,
262,
1353,
12,
5715,
27975,
38162,
9947,
2393,
329,
3307,
13,
198,
2,
198,
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
357,
25189,
4891,
12,
17,
13,
15,
6375,
17168,
8,
198,
198,
37811,
1212,
8265,
4909,
20081,
329,
1262,
5021,
12,
24396,
82,
287,
198,
2777,
441,
13,
921,
460,
892,
286,
5021,
12,
24396,
82,
588,
50068,
5050,
1377,
198,
9930,
821,
5050,
351,
262,
976,
1438,
11,
290,
356,
761,
284,
2922,
257,
2196,
198,
1659,
262,
2446,
1912,
319,
617,
9987,
13,
220,
304,
13,
70,
1539,
329,
50068,
198,
24396,
82,
11,
345,
561,
2922,
257,
2196,
286,
262,
2446,
284,
869,
1912,
319,
198,
1169,
3858,
286,
663,
7159,
13,
198,
198,
818,
599,
441,
11,
5021,
12,
24396,
82,
389,
973,
284,
10152,
262,
1204,
286,
5301,
198,
41617,
13,
220,
1119,
1249,
5050,
588,
2721,
3419,
357,
273,
584,
5050,
198,
7174,
416,
2721,
28955,
284,
13627,
3294,
6300,
284,
307,
1444,
618,
198,
1169,
5301,
318,
9113,
12931,
351,
1180,
25274,
13,
220,
304,
13,
70,
1539,
611,
262,
198,
26495,
318,
3170,
351,
4946,
7378,
40,
319,
2124,
4521,
62,
2414,
9832,
345,
1244,
765,
284,
869,
257,
198,
39799,
2721,
2446,
621,
611,
340,
373,
3170,
329,
29034,
488,
17,
319,
198,
14573,
39358,
14,
48,
13,
220,
22660,
11,
345,
1244,
765,
284,
466,
257,
1180,
2099,
286,
198,
17350,
329,
1180,
6300,
286,
262,
5301,
13,
198,
198,
29800,
12,
24396,
82,
2148,
257,
2829,
11705,
1352,
12,
3106,
15582,
329,
428,
326,
198,
615,
10994,
17698,
8253,
4227,
44382,
286,
611,
6299,
13,
220,
16263,
11,
198,
44023,
319,
262,
8883,
11,
3218,
1468,
4006,
874,
1244,
307,
22363,
11,
198,
568,
5301,
7035,
815,
779,
511,
23071,
13,
198,
37811,
198,
198,
11748,
1257,
310,
10141,
198,
11748,
10104,
198,
198,
6738,
32660,
21283,
13,
22602,
13,
17204,
1330,
24955,
62,
17946,
874,
198,
198,
11748,
599,
441,
13,
998,
5712,
495,
198,
11748,
599,
441,
13,
18224,
198,
6738,
599,
441,
13,
16684,
1330,
18291,
628,
628,
628
] | 3.932249 | 369 |
# Copyright (c) 2009 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.
{
'conditions': [
['OS!="win"', {
'variables': {
'config_h_dir':
'.', # crafted for gcc/linux.
},
}, { # else, OS=="win"
'variables': {
'config_h_dir':
'vsprojects', # crafted for msvc.
},
'target_defaults': {
'msvs_disabled_warnings': [
4018, # signed/unsigned mismatch in comparison
4244, # implicit conversion, possible loss of data
4355, # 'this' used in base member initializer list
],
'defines!': [
'WIN32_LEAN_AND_MEAN', # Protobuf defines this itself.
],
},
}]
],
'targets': [
# The "lite" lib is about 1/7th the size of the heavy lib,
# but it doesn't support some of the more exotic features of
# protobufs, like reflection. To generate C++ code that can link
# against the lite version of the library, add the option line:
#
# option optimize_for = LITE_RUNTIME;
#
# to your .proto file.
{
'target_name': 'protobuf_lite',
'type': '<(library)',
'toolsets': ['host', 'target'],
'sources': [
'src/google/protobuf/stubs/common.h',
'src/google/protobuf/stubs/once.h',
'src/google/protobuf/extension_set.h',
'src/google/protobuf/generated_message_util.h',
'src/google/protobuf/message_lite.h',
'src/google/protobuf/repeated_field.h',
'src/google/protobuf/unknown_field_set.cc',
'src/google/protobuf/unknown_field_set.h',
'src/google/protobuf/wire_format_lite.h',
'src/google/protobuf/wire_format_lite_inl.h',
'src/google/protobuf/io/coded_stream.h',
'src/google/protobuf/io/zero_copy_stream.h',
'src/google/protobuf/io/zero_copy_stream_impl_lite.h',
'src/google/protobuf/stubs/common.cc',
'src/google/protobuf/stubs/once.cc',
'src/google/protobuf/stubs/hash.h',
'src/google/protobuf/stubs/map-util.h',
'src/google/protobuf/stubs/stl_util-inl.h',
'src/google/protobuf/extension_set.cc',
'src/google/protobuf/generated_message_util.cc',
'src/google/protobuf/message_lite.cc',
'src/google/protobuf/repeated_field.cc',
'src/google/protobuf/wire_format_lite.cc',
'src/google/protobuf/io/coded_stream.cc',
'src/google/protobuf/io/coded_stream_inl.h',
'src/google/protobuf/io/zero_copy_stream.cc',
'src/google/protobuf/io/zero_copy_stream_impl_lite.cc',
'<(config_h_dir)/config.h',
],
'include_dirs': [
'<(config_h_dir)',
'src',
],
# This macro must be defined to suppress the use of dynamic_cast<>,
# which requires RTTI.
'defines': [
'GOOGLE_PROTOBUF_NO_RTTI',
],
'direct_dependent_settings': {
'include_dirs': [
'<(config_h_dir)',
'src',
],
'defines': [
'GOOGLE_PROTOBUF_NO_RTTI',
],
},
},
# This is the full, heavy protobuf lib that's needed for c++ .proto's
# that don't specify the LITE_RUNTIME option. The protocol
# compiler itself (protoc) falls into that category.
#
# DO NOT LINK AGAINST THIS TARGET IN CHROME CODE --agl
{
'target_name': 'protobuf_full_do_not_use',
'type': '<(library)',
'toolsets': ['host','target'],
'sources': [
'src/google/protobuf/descriptor.h',
'src/google/protobuf/descriptor.pb.h',
'src/google/protobuf/descriptor_database.h',
'src/google/protobuf/dynamic_message.h',
'src/google/protobuf/generated_message_reflection.h',
'src/google/protobuf/message.h',
'src/google/protobuf/reflection_ops.h',
'src/google/protobuf/service.h',
'src/google/protobuf/text_format.h',
'src/google/protobuf/unknown_field_set.h',
'src/google/protobuf/wire_format.h',
'src/google/protobuf/io/gzip_stream.h',
'src/google/protobuf/io/printer.h',
'src/google/protobuf/io/tokenizer.h',
'src/google/protobuf/io/zero_copy_stream_impl.h',
'src/google/protobuf/compiler/code_generator.h',
'src/google/protobuf/compiler/command_line_interface.h',
'src/google/protobuf/compiler/importer.h',
'src/google/protobuf/compiler/parser.h',
'src/google/protobuf/stubs/strutil.cc',
'src/google/protobuf/stubs/strutil.h',
'src/google/protobuf/stubs/substitute.cc',
'src/google/protobuf/stubs/substitute.h',
'src/google/protobuf/stubs/structurally_valid.cc',
'src/google/protobuf/descriptor.cc',
'src/google/protobuf/descriptor.pb.cc',
'src/google/protobuf/descriptor_database.cc',
'src/google/protobuf/dynamic_message.cc',
'src/google/protobuf/extension_set_heavy.cc',
'src/google/protobuf/generated_message_reflection.cc',
'src/google/protobuf/message.cc',
'src/google/protobuf/reflection_ops.cc',
'src/google/protobuf/service.cc',
'src/google/protobuf/text_format.cc',
'src/google/protobuf/unknown_field_set.cc',
'src/google/protobuf/wire_format.cc',
# This file pulls in zlib, but it's not actually used by protoc, so
# instead of compiling zlib for the host, let's just exclude this.
# 'src/src/google/protobuf/io/gzip_stream.cc',
'src/google/protobuf/io/printer.cc',
'src/google/protobuf/io/tokenizer.cc',
'src/google/protobuf/io/zero_copy_stream_impl.cc',
'src/google/protobuf/compiler/importer.cc',
'src/google/protobuf/compiler/parser.cc',
],
'dependencies': [
'protobuf_lite',
],
'export_dependent_settings': [
'protobuf_lite',
],
},
{
'target_name': 'protoc',
'type': 'executable',
'toolsets': ['host'],
'sources': [
'src/google/protobuf/compiler/code_generator.cc',
'src/google/protobuf/compiler/command_line_interface.cc',
'src/google/protobuf/compiler/plugin.cc',
'src/google/protobuf/compiler/plugin.pb.cc',
'src/google/protobuf/compiler/subprocess.cc',
'src/google/protobuf/compiler/subprocess.h',
'src/google/protobuf/compiler/zip_writer.cc',
'src/google/protobuf/compiler/zip_writer.h',
'src/google/protobuf/compiler/cpp/cpp_enum.cc',
'src/google/protobuf/compiler/cpp/cpp_enum.h',
'src/google/protobuf/compiler/cpp/cpp_enum_field.cc',
'src/google/protobuf/compiler/cpp/cpp_enum_field.h',
'src/google/protobuf/compiler/cpp/cpp_extension.cc',
'src/google/protobuf/compiler/cpp/cpp_extension.h',
'src/google/protobuf/compiler/cpp/cpp_field.cc',
'src/google/protobuf/compiler/cpp/cpp_field.h',
'src/google/protobuf/compiler/cpp/cpp_file.cc',
'src/google/protobuf/compiler/cpp/cpp_file.h',
'src/google/protobuf/compiler/cpp/cpp_generator.cc',
'src/google/protobuf/compiler/cpp/cpp_helpers.cc',
'src/google/protobuf/compiler/cpp/cpp_helpers.h',
'src/google/protobuf/compiler/cpp/cpp_message.cc',
'src/google/protobuf/compiler/cpp/cpp_message.h',
'src/google/protobuf/compiler/cpp/cpp_message_field.cc',
'src/google/protobuf/compiler/cpp/cpp_message_field.h',
'src/google/protobuf/compiler/cpp/cpp_primitive_field.cc',
'src/google/protobuf/compiler/cpp/cpp_primitive_field.h',
'src/google/protobuf/compiler/cpp/cpp_service.cc',
'src/google/protobuf/compiler/cpp/cpp_service.h',
'src/google/protobuf/compiler/cpp/cpp_string_field.cc',
'src/google/protobuf/compiler/cpp/cpp_string_field.h',
'src/google/protobuf/compiler/java/java_enum.cc',
'src/google/protobuf/compiler/java/java_enum.h',
'src/google/protobuf/compiler/java/java_enum_field.cc',
'src/google/protobuf/compiler/java/java_enum_field.h',
'src/google/protobuf/compiler/java/java_extension.cc',
'src/google/protobuf/compiler/java/java_extension.h',
'src/google/protobuf/compiler/java/java_field.cc',
'src/google/protobuf/compiler/java/java_field.h',
'src/google/protobuf/compiler/java/java_file.cc',
'src/google/protobuf/compiler/java/java_file.h',
'src/google/protobuf/compiler/java/java_generator.cc',
'src/google/protobuf/compiler/java/java_helpers.cc',
'src/google/protobuf/compiler/java/java_helpers.h',
'src/google/protobuf/compiler/java/java_message.cc',
'src/google/protobuf/compiler/java/java_message.h',
'src/google/protobuf/compiler/java/java_message_field.cc',
'src/google/protobuf/compiler/java/java_message_field.h',
'src/google/protobuf/compiler/java/java_primitive_field.cc',
'src/google/protobuf/compiler/java/java_primitive_field.h',
'src/google/protobuf/compiler/java/java_service.cc',
'src/google/protobuf/compiler/java/java_service.h',
'src/google/protobuf/compiler/java/java_string_field.cc',
'src/google/protobuf/compiler/java/java_string_field.h',
'src/google/protobuf/compiler/python/python_generator.cc',
'src/google/protobuf/compiler/main.cc',
],
'dependencies': [
'protobuf_full_do_not_use',
],
'include_dirs': [
'<(config_h_dir)',
'src/src',
],
},
{
# Generate the python module needed by all protoc-generated Python code.
'target_name': 'py_proto',
'type': 'none',
'copies': [
{
'destination': '<(PRODUCT_DIR)/pyproto/google/',
'files': [
# google/ module gets an empty __init__.py.
'__init__.py',
],
},
{
'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf',
'files': [
'python/google/protobuf/__init__.py',
'python/google/protobuf/descriptor.py',
'python/google/protobuf/message.py',
'python/google/protobuf/reflection.py',
'python/google/protobuf/service.py',
'python/google/protobuf/service_reflection.py',
'python/google/protobuf/text_format.py',
# TODO(ncarter): protoc's python generator treats descriptor.proto
# specially, but it's not possible to trigger the special treatment
# unless you run protoc from ./src/src (the treatment is based
# on the path to the .proto file matching a constant exactly).
# I'm not sure how to convince gyp to execute a rule from a
# different directory. Until this is resolved, use a copy of
# descriptor_pb2.py that I manually generated.
'descriptor_pb2.py',
],
},
{
'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf/internal',
'files': [
'python/google/protobuf/internal/__init__.py',
'python/google/protobuf/internal/api_implementation.py',
'python/google/protobuf/internal/containers.py',
'python/google/protobuf/internal/cpp_message.py',
'python/google/protobuf/internal/decoder.py',
'python/google/protobuf/internal/encoder.py',
'python/google/protobuf/internal/generator_test.py',
'python/google/protobuf/internal/message_listener.py',
'python/google/protobuf/internal/python_message.py',
'python/google/protobuf/internal/type_checkers.py',
'python/google/protobuf/internal/wire_format.py',
],
},
],
# # We can't generate a proper descriptor_pb2.py -- see earlier comment.
# 'rules': [
# {
# 'rule_name': 'genproto',
# 'extension': 'proto',
# 'inputs': [
# '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
# ],
# 'variables': {
# # The protoc compiler requires a proto_path argument with the
# # directory containing the .proto file.
# 'rule_input_relpath': 'src/google/protobuf',
# },
# 'outputs': [
# '<(PRODUCT_DIR)/pyproto/google/protobuf/<(RULE_INPUT_ROOT)_pb2.py',
# ],
# 'action': [
# '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
# '-I./src',
# '-I.',
# '--python_out=<(PRODUCT_DIR)/pyproto/google/protobuf',
# 'google/protobuf/descriptor.proto',
# ],
# 'message': 'Generating Python code from <(RULE_INPUT_PATH)',
# },
# ],
# 'dependencies': [
# 'protoc#host',
# ],
# 'sources': [
# 'src/google/protobuf/descriptor.proto',
# ],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2:
| [
2,
15069,
357,
66,
8,
3717,
383,
18255,
1505,
46665,
13,
1439,
2489,
10395,
13,
198,
2,
5765,
286,
428,
2723,
2438,
318,
21825,
416,
257,
347,
10305,
12,
7635,
5964,
326,
460,
307,
198,
2,
1043,
287,
262,
38559,
24290,
2393,
13,
198,
198,
90,
198,
220,
705,
17561,
1756,
10354,
685,
198,
220,
220,
220,
37250,
2640,
0,
2625,
5404,
1,
3256,
1391,
198,
220,
220,
220,
220,
220,
705,
25641,
2977,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11250,
62,
71,
62,
15908,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2637,
11,
220,
1303,
18025,
329,
49582,
14,
23289,
13,
198,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
1391,
220,
1303,
2073,
11,
7294,
855,
1,
5404,
1,
198,
220,
220,
220,
220,
220,
705,
25641,
2977,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11250,
62,
71,
62,
15908,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
14259,
42068,
3256,
220,
1303,
18025,
329,
13845,
28435,
13,
198,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
705,
16793,
62,
12286,
82,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
907,
14259,
62,
47730,
62,
40539,
654,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22219,
23,
11,
220,
1303,
4488,
14,
43375,
46318,
287,
7208,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
25707,
11,
220,
1303,
16992,
11315,
11,
1744,
2994,
286,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
604,
28567,
11,
220,
1303,
705,
5661,
6,
973,
287,
2779,
2888,
4238,
7509,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4299,
1127,
0,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
37620,
2624,
62,
2538,
1565,
62,
6981,
62,
11682,
1565,
3256,
220,
1303,
5038,
672,
3046,
15738,
428,
2346,
13,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
1782,
60,
198,
220,
16589,
198,
220,
705,
83,
853,
1039,
10354,
685,
198,
220,
220,
220,
1303,
383,
366,
36890,
1,
9195,
318,
546,
352,
14,
22,
400,
262,
2546,
286,
262,
4334,
9195,
11,
198,
220,
220,
220,
1303,
475,
340,
1595,
470,
1104,
617,
286,
262,
517,
21036,
3033,
286,
198,
220,
220,
220,
1303,
1237,
672,
3046,
82,
11,
588,
14580,
13,
220,
1675,
7716,
327,
4880,
2438,
326,
460,
2792,
198,
220,
220,
220,
1303,
1028,
262,
300,
578,
2196,
286,
262,
5888,
11,
751,
262,
3038,
1627,
25,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
220,
220,
3038,
27183,
62,
1640,
796,
406,
12709,
62,
49,
4944,
34694,
26,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
284,
534,
764,
1676,
1462,
2393,
13,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
705,
16793,
62,
3672,
10354,
705,
11235,
672,
3046,
62,
36890,
3256,
198,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
27,
7,
32016,
8,
3256,
198,
220,
220,
220,
220,
220,
705,
31391,
1039,
10354,
37250,
4774,
3256,
705,
16793,
6,
4357,
198,
220,
220,
220,
220,
220,
705,
82,
2203,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
11321,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
27078,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
2302,
3004,
62,
2617,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
27568,
62,
20500,
62,
22602,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20500,
62,
36890,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
45956,
515,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
34680,
62,
3245,
62,
2617,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
34680,
62,
3245,
62,
2617,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
21809,
62,
18982,
62,
36890,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
21809,
62,
18982,
62,
36890,
62,
259,
75,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
40976,
62,
5532,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
62,
23928,
62,
36890,
13,
71,
3256,
628,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
11321,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
27078,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
17831,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
8899,
12,
22602,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
301,
75,
62,
22602,
12,
259,
75,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
2302,
3004,
62,
2617,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
27568,
62,
20500,
62,
22602,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20500,
62,
36890,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
45956,
515,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
21809,
62,
18982,
62,
36890,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
40976,
62,
5532,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
40976,
62,
5532,
62,
259,
75,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
62,
23928,
62,
36890,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
11250,
62,
71,
62,
15908,
20679,
11250,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
705,
17256,
62,
15908,
82,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
11250,
62,
71,
62,
15908,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
1303,
770,
15021,
1276,
307,
5447,
284,
18175,
262,
779,
286,
8925,
62,
2701,
27,
22330,
198,
220,
220,
220,
220,
220,
1303,
543,
4433,
11923,
25621,
13,
198,
220,
220,
220,
220,
220,
705,
4299,
1127,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
38,
6684,
38,
2538,
62,
4805,
2394,
9864,
36820,
62,
15285,
62,
14181,
25621,
3256,
198,
220,
220,
220,
220,
220,
16589,
628,
220,
220,
220,
220,
220,
705,
12942,
62,
21186,
62,
33692,
10354,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
17256,
62,
15908,
82,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
11250,
62,
71,
62,
15908,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
705,
4299,
1127,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
38,
6684,
38,
2538,
62,
4805,
2394,
9864,
36820,
62,
15285,
62,
14181,
25621,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1303,
770,
318,
262,
1336,
11,
4334,
1237,
672,
3046,
9195,
326,
338,
2622,
329,
269,
4880,
764,
1676,
1462,
338,
198,
220,
220,
220,
1303,
326,
836,
470,
11986,
262,
406,
12709,
62,
49,
4944,
34694,
3038,
13,
220,
383,
8435,
198,
220,
220,
220,
1303,
17050,
2346,
357,
11235,
420,
8,
8953,
656,
326,
6536,
13,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
8410,
5626,
34426,
36218,
38604,
12680,
309,
46095,
3268,
32567,
13649,
42714,
220,
1377,
363,
75,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
705,
16793,
62,
3672,
10354,
705,
11235,
672,
3046,
62,
12853,
62,
4598,
62,
1662,
62,
1904,
3256,
198,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
27,
7,
32016,
8,
3256,
198,
220,
220,
220,
220,
220,
705,
31391,
1039,
10354,
37250,
4774,
41707,
16793,
6,
4357,
198,
220,
220,
220,
220,
220,
705,
82,
2203,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
40842,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
62,
48806,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
67,
28995,
62,
20500,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
27568,
62,
20500,
62,
5420,
1564,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20500,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5420,
1564,
62,
2840,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
15271,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5239,
62,
18982,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
34680,
62,
3245,
62,
2617,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
21809,
62,
18982,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
70,
13344,
62,
5532,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
1050,
3849,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
30001,
7509,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
62,
23928,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
8189,
62,
8612,
1352,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
21812,
62,
1370,
62,
39994,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
320,
26634,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
48610,
13,
71,
3256,
628,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
2536,
22602,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
2536,
22602,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
7266,
301,
3678,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
7266,
301,
3678,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
301,
23161,
14,
7249,
20221,
62,
12102,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
40842,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
62,
48806,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
67,
28995,
62,
20500,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
2302,
3004,
62,
2617,
62,
23701,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
27568,
62,
20500,
62,
5420,
1564,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20500,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5420,
1564,
62,
2840,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
15271,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5239,
62,
18982,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
34680,
62,
3245,
62,
2617,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
21809,
62,
18982,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
770,
2393,
16194,
287,
1976,
8019,
11,
475,
340,
338,
407,
1682,
973,
416,
1237,
420,
11,
523,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
2427,
286,
33393,
1976,
8019,
329,
262,
2583,
11,
1309,
338,
655,
19607,
428,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
705,
10677,
14,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
70,
13344,
62,
5532,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
1050,
3849,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
30001,
7509,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
952,
14,
22570,
62,
30073,
62,
5532,
62,
23928,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
320,
26634,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
48610,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
705,
45841,
3976,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11235,
672,
3046,
62,
36890,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
705,
39344,
62,
21186,
62,
33692,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11235,
672,
3046,
62,
36890,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
705,
16793,
62,
3672,
10354,
705,
11235,
420,
3256,
198,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
18558,
18187,
3256,
198,
220,
220,
220,
220,
220,
705,
31391,
1039,
10354,
37250,
4774,
6,
4357,
198,
220,
220,
220,
220,
220,
705,
82,
2203,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
8189,
62,
8612,
1352,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
21812,
62,
1370,
62,
39994,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
33803,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
33803,
13,
40842,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
7266,
14681,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
7266,
14681,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
13344,
62,
16002,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
13344,
62,
16002,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
44709,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
44709,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
44709,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
44709,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
2302,
3004,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
2302,
3004,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
7753,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
7753,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
8612,
1352,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
16794,
364,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
16794,
364,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
20500,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
20500,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
20500,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
20500,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
19795,
1800,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
19795,
1800,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
15271,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
15271,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
8841,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
20322,
14,
20322,
62,
8841,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
44709,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
44709,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
44709,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
44709,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
2302,
3004,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
2302,
3004,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
7753,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
7753,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
8612,
1352,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
16794,
364,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
16794,
364,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
20500,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
20500,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
20500,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
20500,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
19795,
1800,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
19795,
1800,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
15271,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
15271,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
8841,
62,
3245,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12355,
14,
12355,
62,
8841,
62,
3245,
13,
71,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
29412,
14,
29412,
62,
8612,
1352,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
5589,
5329,
14,
12417,
13,
535,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
705,
45841,
3976,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
11235,
672,
3046,
62,
12853,
62,
4598,
62,
1662,
62,
1904,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
705,
17256,
62,
15908,
82,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
11250,
62,
71,
62,
15908,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
10677,
3256,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
1303,
2980,
378,
262,
21015,
8265,
2622,
416,
477,
1237,
420,
12,
27568,
11361,
2438,
13,
198,
220,
220,
220,
220,
220,
705,
16793,
62,
3672,
10354,
705,
9078,
62,
1676,
1462,
3256,
198,
220,
220,
220,
220,
220,
705,
4906,
10354,
705,
23108,
3256,
198,
220,
220,
220,
220,
220,
705,
22163,
444,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16520,
1883,
10354,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
9078,
1676,
1462,
14,
13297,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16624,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
23645,
14,
8265,
3011,
281,
6565,
11593,
15003,
834,
13,
9078,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
834,
15003,
834,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16520,
1883,
10354,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
9078,
1676,
1462,
14,
13297,
14,
11235,
672,
3046,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16624,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
834,
15003,
834,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
20500,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
5420,
1564,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
15271,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
15271,
62,
5420,
1564,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
5239,
62,
18982,
13,
9078,
3256,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
16926,
46,
7,
10782,
2571,
2599,
1237,
420,
338,
21015,
17301,
18432,
43087,
13,
1676,
1462,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
20905,
11,
475,
340,
338,
407,
1744,
284,
7616,
262,
2041,
3513,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
4556,
345,
1057,
1237,
420,
422,
24457,
10677,
14,
10677,
357,
1169,
3513,
318,
1912,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
319,
262,
3108,
284,
262,
764,
1676,
1462,
2393,
12336,
257,
6937,
3446,
737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
314,
1101,
407,
1654,
703,
284,
11508,
308,
4464,
284,
12260,
257,
3896,
422,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1180,
8619,
13,
220,
14303,
428,
318,
12939,
11,
779,
257,
4866,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
43087,
62,
40842,
17,
13,
9078,
326,
314,
14500,
7560,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
20147,
1968,
273,
62,
40842,
17,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16520,
1883,
10354,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
9078,
1676,
1462,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
16624,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
834,
15003,
834,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
15042,
62,
320,
32851,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
3642,
50221,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
20322,
62,
20500,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
12501,
12342,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
12685,
12342,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
8612,
1352,
62,
9288,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
20500,
62,
4868,
877,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
29412,
62,
20500,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
4906,
62,
9122,
364,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
29412,
14,
13297,
14,
11235,
672,
3046,
14,
32538,
14,
21809,
62,
18982,
13,
9078,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
1303,
775,
460,
470,
7716,
257,
1774,
43087,
62,
40842,
17,
13,
9078,
1377,
766,
2961,
2912,
13,
198,
220,
1303,
220,
220,
705,
38785,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
1391,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
25135,
62,
3672,
10354,
705,
5235,
1676,
1462,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
2302,
3004,
10354,
705,
1676,
1462,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
15414,
82,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
27,
7,
6369,
2943,
3843,
17534,
62,
47,
31688,
10426,
8,
11235,
420,
27,
7,
6369,
2943,
3843,
17534,
62,
12564,
5777,
10426,
8,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
25641,
2977,
10354,
1391,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1237,
420,
17050,
4433,
257,
44876,
62,
6978,
4578,
351,
262,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8619,
7268,
262,
764,
1676,
1462,
2393,
13,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25135,
62,
15414,
62,
2411,
6978,
10354,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22915,
82,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
9078,
1676,
1462,
14,
13297,
14,
11235,
672,
3046,
14,
27,
7,
49,
24212,
62,
1268,
30076,
62,
13252,
2394,
8,
62,
40842,
17,
13,
9078,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2673,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
27,
7,
4805,
28644,
62,
34720,
20679,
27,
7,
6369,
2943,
3843,
17534,
62,
47,
31688,
10426,
8,
11235,
420,
27,
7,
6369,
2943,
3843,
17534,
62,
12564,
5777,
10426,
8,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
40,
19571,
10677,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
12,
40,
2637,
11,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
438,
29412,
62,
448,
28,
27,
7,
4805,
28644,
62,
34720,
20679,
9078,
1676,
1462,
14,
13297,
14,
11235,
672,
3046,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
1676,
1462,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
705,
20500,
10354,
705,
8645,
803,
11361,
2438,
422,
1279,
7,
49,
24212,
62,
1268,
30076,
62,
34219,
8,
3256,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
1303,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
220,
220,
705,
45841,
3976,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
11235,
420,
2,
4774,
3256,
198,
220,
1303,
220,
220,
220,
220,
16589,
198,
220,
1303,
220,
220,
220,
220,
705,
82,
2203,
10354,
685,
198,
220,
1303,
220,
220,
220,
220,
220,
220,
705,
10677,
14,
13297,
14,
11235,
672,
3046,
14,
20147,
1968,
273,
13,
1676,
1462,
3256,
198,
220,
1303,
220,
220,
220,
220,
16589,
198,
220,
220,
220,
220,
8964,
198,
220,
16589,
198,
92,
198,
198,
2,
10714,
15965,
2977,
25,
198,
2,
7400,
12,
10394,
25,
17,
198,
2,
33793,
12,
8658,
82,
12,
14171,
25,
45991,
198,
2,
5268,
25,
198,
2,
43907,
25,
900,
4292,
8658,
7400,
11338,
28,
17,
6482,
10394,
28,
17,
25,
198
] | 2.060592 | 6,354 |
# def mul(a):
# return lambda b:b*a
# singler = mul(1) # addition = lambda b:b*1
# doubler = mul(2) # addition = lambda b:b*2
# tripler = mul(3) # addition = lambda b:b*3
# print(doubler(7)) # 7*2 = 14
# print(tripler(7)) # 7*3 = 21
# print(singler(7)) # 7*1 = 7
stud = BatchA("Thakor")
print(stud.printName())
rgb(255, 255, 255) # White
rgb(255, 0, 0) # Red
rgb(0, 0, 0) # Black
rgb(0, 255, 255) # Cyan
rgb(255, 255, 0) # Yellow
#00ff00 //green
#1e90ff //dodgerblue
| [
2,
825,
35971,
7,
64,
2599,
198,
2,
220,
197,
7783,
37456,
275,
25,
65,
9,
64,
198,
198,
2,
1702,
1754,
796,
35971,
7,
16,
8,
220,
220,
220,
1303,
3090,
796,
37456,
275,
25,
65,
9,
16,
198,
2,
3385,
1754,
796,
35971,
7,
17,
8,
220,
220,
220,
1303,
3090,
796,
37456,
275,
25,
65,
9,
17,
198,
2,
1333,
20053,
796,
35971,
7,
18,
8,
220,
220,
220,
1303,
3090,
796,
37456,
275,
25,
65,
9,
18,
198,
198,
2,
3601,
7,
67,
12944,
1754,
7,
22,
4008,
220,
1303,
220,
767,
9,
17,
796,
1478,
198,
2,
3601,
7,
28461,
20053,
7,
22,
4008,
220,
1303,
220,
767,
9,
18,
796,
2310,
198,
2,
3601,
7,
12215,
1754,
7,
22,
4008,
220,
1303,
220,
767,
9,
16,
796,
767,
628,
198,
19149,
796,
347,
963,
32,
7203,
817,
461,
273,
4943,
198,
4798,
7,
19149,
13,
4798,
5376,
28955,
628,
628,
628,
628,
628,
198,
81,
22296,
7,
13381,
11,
14280,
11,
14280,
8,
220,
220,
220,
1303,
2635,
198,
81,
22296,
7,
13381,
11,
657,
11,
657,
8,
220,
220,
220,
1303,
2297,
198,
81,
22296,
7,
15,
11,
657,
11,
657,
8,
220,
220,
220,
1303,
2619,
198,
81,
22296,
7,
15,
11,
14280,
11,
14280,
8,
220,
220,
220,
1303,
41025,
198,
81,
22296,
7,
13381,
11,
14280,
11,
657,
8,
220,
220,
220,
1303,
12550,
628,
198,
2,
405,
487,
405,
220,
220,
3373,
14809,
198,
2,
16,
68,
3829,
487,
220,
220,
3373,
67,
375,
1362,
17585,
628
] | 2.011628 | 258 |
"""
Create diaries in A5 and A4 sizes based on PDF templates.
Julio Vega
"""
import datetime
import math
import sys
from io import BytesIO
from pathlib import Path
from PyPDF2 import PdfFileReader, PdfFileWriter
from reportlab.lib.pagesizes import A5, A4
from reportlab.lib.utils import ImageReader
from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFError, TTFont
from reportlab.pdfgen import canvas
def resource_path(relative_path):
""" Get absolute path to resource, works for dev and for PyInstaller """
base_path = getattr(sys, '_MEIPASS', Path(__file__).resolve().parent)
return base_path / Path(relative_path)
CORNER_DIR = resource_path("input/1_diaries_to_create/resources")
LOGO_PATH = resource_path(CORNER_DIR / Path("logo.png"))
DEFAULT_FONT = resource_path(CORNER_DIR / Path('FreeSansLocal.ttf'))
CREATED_DIARIES_DIR = resource_path("output/created_diaries/")
#############################################################
#############################################################
#############################################################
##### Algorithm to convert A4 pages into an A5 booklet ######
#############################################################
#############################################################
#############################################################
## Adapted from the work by Luke Plant, https://bitbucket.org/spookylukey/booklet-maker/src
def build_booklet(pages):
''' Build booklet '''
# Double sized page, with double-sided printing, fits 4 of the original.
sheet_count = int(math.ceil(len(pages) / 4.0))
booklet = [Sheet() for i in range(0, sheet_count)]
# Assign input pages to sheets
# This is the core algo. To understand it:
# * pick up 3 A4 sheets, landscape
# * number the sheets from 1 to 3, starting with bottom one
# * fold the stack in the middle to form an A5 booklet
# * work out what order you need to use the front left,
# front right, back left and back right sides.
for container, page in zip(containers(), pages):
container.page = page
return booklet
def add_double_page(writer, page_size, print_page):
''' Adds a double page '''
width, height = page_size
page = writer.insertBlankPage(width=width, height=height, index=writer.getNumPages())
# Merge the left page
l_page = print_page.left.page
if l_page is not None:
page.mergePage(l_page)
# Merge the right page with translation
r_page = print_page.right.page
if r_page is not None:
page.mergeTranslatedPage(r_page, width / 2, 0)
def convert_to_a5_booklet(input_file, blanks=0):
'''Converts a PDF into a double sided A5 file to print as an A4 (two A5 pages per A4 page)'''
# Create internal dir to save the a5 files
a5_booklets_dir = CREATED_DIARIES_DIR
Path.mkdir(a5_booklets_dir, parents=True, exist_ok=True)
# Create the a5 booklet's name
a5_booklet_name = Path(input_file).stem + "_as_a5_booklet"
a5_booklet = a5_booklets_dir / Path("{}.pdf".format(a5_booklet_name))
reader = PdfFileReader(open(input_file, "rb"))
pages = [reader.getPage(p) for p in range(0, reader.getNumPages())]
for index in range(0, blanks):
pages.insert(0, None)
sheets = build_booklet(pages)
writer = PdfFileWriter()
firs_page = reader.getPage(0)
input_width = firs_page.mediaBox.getWidth()
output_width = input_width * 2
input_height = firs_page.mediaBox.getHeight()
output_height = input_height
page_size = (output_width, output_height)
# We want to group fronts and backs together.
for sheet in sheets:
add_double_page(writer, page_size, sheet.back)
add_double_page(writer, page_size, sheet.front)
with open(a5_booklet, "wb") as a5_booklet_stream:
writer.write(a5_booklet_stream)
return a5_booklet
#############################################################
#############################################################
#############################################################
########## Create A4 paper diary ############
#############################################################
#############################################################
#############################################################
def create_diary_cover(participant_id, email, font):
'''Create cover of the A5 diary'''
packet = BytesIO()
cover_canvas = canvas.Canvas(packet, pagesize=A4)
width, height = A4
# Centering the logo or participant ID
if Path.exists(LOGO_PATH):
logo = ImageReader(LOGO_PATH)
cover_canvas.drawImage(logo, x=(width * (1/6.0)),
y=(height/4),
width=width * (4/6.0),
preserveAspectRatio=True,
mask='auto')
else:
cover_canvas.setFont(font, 50)
cover_canvas.drawCentredString(width/2, height/2, participant_id)
# Lost legend
if not (email is None or email == ""):
cover_canvas.setFont(font, 15)
cover_canvas.drawCentredString(width/2, 50,
"If you find this document, please email " + email)
cover_canvas.save()
packet.seek(0)
return PdfFileReader(packet).getPage(0)
def create_a4_diary(pdf_template, pages, top_left_text, email=None, font='Arial'):
"""Creates an A4 document with [PAGES] from [STARTING_DATE]"""
starting_date = parse_date(top_left_text)
font = set_active_font(font)
# Create output folder/file
if not Path(pdf_template).exists():
raise ValueError("Template does not exist {}".format(pdf_template))
Path.mkdir(CREATED_DIARIES_DIR, parents=True, exist_ok=True)
a4_document_name = Path(pdf_template).stem
a4_document_path = CREATED_DIARIES_DIR / Path("{}_document.pdf".format(a4_document_name))
pdf_file = PdfFileWriter()
# Cover
pdf_file.addPage(create_diary_cover(a4_document_name, email, font))
pdf_file.addBlankPage()
# Pages
for page in range(1, pages+1):
if starting_date is not None:
top_left_text = starting_date.strftime('%A, %d %b %Y')
starting_date += datetime.timedelta(days=1)
new_page = create_diary_page(pdf_template, font, top_left_text,page, a4_document_name)
pdf_file.addPage(new_page)
# Backcover
pdf_file.addBlankPage()
# Save a4 document
with open(a4_document_path, "wb") as output_stream:
pdf_file.write(output_stream)
return a4_document_path
def set_active_font(font):
"""Register the font to use in header and footer of the diary"""
try:
pdfmetrics.registerFont(TTFont(font, font + '.ttf'))
except TTFError:
font = 'FreeSansLocal'
pdfmetrics.registerFont(TTFont(font, DEFAULT_FONT))
return font | [
37811,
198,
16447,
2566,
3166,
287,
317,
20,
290,
317,
19,
10620,
1912,
319,
12960,
24019,
13,
198,
198,
16980,
952,
30310,
198,
37811,
198,
11748,
4818,
8079,
198,
11748,
10688,
198,
11748,
25064,
198,
6738,
33245,
1330,
2750,
4879,
9399,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
6738,
9485,
20456,
17,
1330,
350,
7568,
8979,
33634,
11,
350,
7568,
8979,
34379,
198,
6738,
989,
23912,
13,
8019,
13,
31126,
4340,
1330,
317,
20,
11,
317,
19,
198,
6738,
989,
23912,
13,
8019,
13,
26791,
1330,
7412,
33634,
198,
6738,
989,
23912,
13,
12315,
8692,
1330,
37124,
4164,
10466,
198,
6738,
989,
23912,
13,
12315,
8692,
13,
926,
10331,
82,
1330,
309,
10234,
12331,
11,
309,
10234,
756,
198,
6738,
989,
23912,
13,
12315,
5235,
1330,
21978,
628,
198,
4299,
8271,
62,
6978,
7,
43762,
62,
6978,
2599,
198,
220,
220,
220,
37227,
3497,
4112,
3108,
284,
8271,
11,
2499,
329,
1614,
290,
329,
9485,
15798,
263,
37227,
198,
220,
220,
220,
2779,
62,
6978,
796,
651,
35226,
7,
17597,
11,
705,
62,
11682,
4061,
10705,
3256,
10644,
7,
834,
7753,
834,
737,
411,
6442,
22446,
8000,
8,
198,
220,
220,
220,
1441,
2779,
62,
6978,
1220,
10644,
7,
43762,
62,
6978,
8,
198,
198,
44879,
21479,
62,
34720,
796,
8271,
62,
6978,
7203,
15414,
14,
16,
62,
10989,
3166,
62,
1462,
62,
17953,
14,
37540,
4943,
198,
25294,
46,
62,
34219,
796,
8271,
62,
6978,
7,
44879,
21479,
62,
34720,
1220,
10644,
7203,
6404,
78,
13,
11134,
48774,
198,
7206,
38865,
62,
37,
35830,
796,
8271,
62,
6978,
7,
44879,
21479,
62,
34720,
1220,
10644,
10786,
11146,
50,
504,
14565,
13,
926,
69,
6,
4008,
198,
43387,
11617,
62,
17931,
1503,
11015,
62,
34720,
796,
8271,
62,
6978,
7203,
22915,
14,
25598,
62,
10989,
3166,
14,
4943,
198,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
4242,
2,
978,
42289,
284,
10385,
317,
19,
5468,
656,
281,
317,
20,
42702,
46424,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
2235,
30019,
276,
422,
262,
670,
416,
11336,
16561,
11,
3740,
1378,
2545,
27041,
316,
13,
2398,
14,
2777,
29655,
2290,
2539,
14,
2070,
1616,
12,
10297,
14,
10677,
628,
628,
198,
4299,
1382,
62,
2070,
1616,
7,
31126,
2599,
198,
220,
220,
220,
705,
7061,
10934,
42702,
705,
7061,
198,
220,
220,
220,
1303,
11198,
19943,
2443,
11,
351,
4274,
12,
22339,
13570,
11,
11414,
604,
286,
262,
2656,
13,
198,
220,
220,
220,
9629,
62,
9127,
796,
493,
7,
11018,
13,
344,
346,
7,
11925,
7,
31126,
8,
1220,
604,
13,
15,
4008,
628,
220,
220,
220,
42702,
796,
685,
3347,
316,
3419,
329,
1312,
287,
2837,
7,
15,
11,
9629,
62,
9127,
15437,
628,
220,
220,
220,
1303,
2195,
570,
5128,
5468,
284,
15747,
628,
220,
220,
220,
1303,
770,
318,
262,
4755,
435,
2188,
13,
1675,
1833,
340,
25,
198,
220,
220,
220,
1303,
1635,
2298,
510,
513,
317,
19,
15747,
11,
10747,
198,
220,
220,
220,
1303,
1635,
1271,
262,
15747,
422,
352,
284,
513,
11,
3599,
351,
4220,
530,
198,
220,
220,
220,
1303,
1635,
5591,
262,
8931,
287,
262,
3504,
284,
1296,
281,
317,
20,
42702,
198,
220,
220,
220,
1303,
1635,
670,
503,
644,
1502,
345,
761,
284,
779,
262,
2166,
1364,
11,
198,
220,
220,
220,
1303,
220,
220,
2166,
826,
11,
736,
1364,
290,
736,
826,
5389,
13,
628,
220,
220,
220,
329,
9290,
11,
2443,
287,
19974,
7,
3642,
50221,
22784,
5468,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
9290,
13,
7700,
796,
2443,
628,
220,
220,
220,
1441,
42702,
628,
198,
4299,
751,
62,
23352,
62,
7700,
7,
16002,
11,
2443,
62,
7857,
11,
3601,
62,
7700,
2599,
198,
220,
220,
220,
705,
7061,
34333,
257,
4274,
2443,
705,
7061,
198,
220,
220,
220,
9647,
11,
6001,
796,
2443,
62,
7857,
198,
220,
220,
220,
2443,
796,
6260,
13,
28463,
3629,
962,
9876,
7,
10394,
28,
10394,
11,
6001,
28,
17015,
11,
6376,
28,
16002,
13,
1136,
33111,
47798,
28955,
628,
220,
220,
220,
1303,
39407,
262,
1364,
2443,
198,
220,
220,
220,
300,
62,
7700,
796,
3601,
62,
7700,
13,
9464,
13,
7700,
198,
220,
220,
220,
611,
300,
62,
7700,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2443,
13,
647,
469,
9876,
7,
75,
62,
7700,
8,
628,
220,
220,
220,
1303,
39407,
262,
826,
2443,
351,
11059,
198,
220,
220,
220,
374,
62,
7700,
796,
3601,
62,
7700,
13,
3506,
13,
7700,
198,
220,
220,
220,
611,
374,
62,
7700,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2443,
13,
647,
469,
8291,
17249,
9876,
7,
81,
62,
7700,
11,
9647,
1220,
362,
11,
657,
8,
628,
198,
4299,
10385,
62,
1462,
62,
64,
20,
62,
2070,
1616,
7,
15414,
62,
7753,
11,
698,
2283,
28,
15,
2599,
198,
220,
220,
220,
705,
7061,
3103,
24040,
257,
12960,
656,
257,
4274,
34384,
317,
20,
2393,
284,
3601,
355,
281,
317,
19,
357,
11545,
317,
20,
5468,
583,
317,
19,
2443,
8,
7061,
6,
628,
220,
220,
220,
1303,
13610,
5387,
26672,
284,
3613,
262,
257,
20,
3696,
220,
220,
220,
220,
198,
220,
220,
220,
257,
20,
62,
2070,
5289,
62,
15908,
796,
29244,
11617,
62,
17931,
1503,
11015,
62,
34720,
198,
220,
220,
220,
10644,
13,
28015,
15908,
7,
64,
20,
62,
2070,
5289,
62,
15908,
11,
3397,
28,
17821,
11,
2152,
62,
482,
28,
17821,
8,
628,
220,
220,
220,
1303,
13610,
262,
257,
20,
42702,
338,
1438,
198,
220,
220,
220,
257,
20,
62,
2070,
1616,
62,
3672,
796,
10644,
7,
15414,
62,
7753,
737,
927,
1343,
45434,
292,
62,
64,
20,
62,
2070,
1616,
1,
198,
220,
220,
220,
257,
20,
62,
2070,
1616,
796,
257,
20,
62,
2070,
5289,
62,
15908,
1220,
10644,
7203,
90,
27422,
12315,
1911,
18982,
7,
64,
20,
62,
2070,
1616,
62,
3672,
4008,
628,
220,
220,
220,
9173,
796,
350,
7568,
8979,
33634,
7,
9654,
7,
15414,
62,
7753,
11,
366,
26145,
48774,
198,
220,
220,
220,
5468,
796,
685,
46862,
13,
1136,
9876,
7,
79,
8,
329,
279,
287,
2837,
7,
15,
11,
9173,
13,
1136,
33111,
47798,
3419,
15437,
198,
220,
220,
220,
329,
6376,
287,
2837,
7,
15,
11,
698,
2283,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5468,
13,
28463,
7,
15,
11,
6045,
8,
628,
220,
220,
220,
15747,
796,
1382,
62,
2070,
1616,
7,
31126,
8,
628,
220,
220,
220,
6260,
796,
350,
7568,
8979,
34379,
3419,
198,
220,
220,
220,
277,
17062,
62,
7700,
796,
9173,
13,
1136,
9876,
7,
15,
8,
198,
220,
220,
220,
5128,
62,
10394,
796,
277,
17062,
62,
7700,
13,
11431,
14253,
13,
1136,
30916,
3419,
198,
220,
220,
220,
5072,
62,
10394,
796,
5128,
62,
10394,
1635,
362,
198,
220,
220,
220,
5128,
62,
17015,
796,
277,
17062,
62,
7700,
13,
11431,
14253,
13,
1136,
23106,
3419,
198,
220,
220,
220,
5072,
62,
17015,
796,
5128,
62,
17015,
628,
220,
220,
220,
2443,
62,
7857,
796,
357,
22915,
62,
10394,
11,
5072,
62,
17015,
8,
628,
220,
220,
220,
1303,
775,
765,
284,
1448,
29324,
290,
12983,
1978,
13,
198,
220,
220,
220,
329,
9629,
287,
15747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
751,
62,
23352,
62,
7700,
7,
16002,
11,
2443,
62,
7857,
11,
9629,
13,
1891,
8,
198,
220,
220,
220,
220,
220,
220,
220,
751,
62,
23352,
62,
7700,
7,
16002,
11,
2443,
62,
7857,
11,
9629,
13,
8534,
8,
628,
220,
220,
220,
351,
1280,
7,
64,
20,
62,
2070,
1616,
11,
366,
39346,
4943,
355,
257,
20,
62,
2070,
1616,
62,
5532,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
13564,
7,
64,
20,
62,
2070,
1616,
62,
5532,
8,
198,
220,
220,
220,
1441,
257,
20,
62,
2070,
1616,
198,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
7804,
2235,
13610,
317,
19,
3348,
26339,
1303,
7804,
21017,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
29113,
14468,
7804,
4242,
2,
198,
198,
4299,
2251,
62,
67,
8042,
62,
9631,
7,
48013,
415,
62,
312,
11,
3053,
11,
10369,
2599,
198,
220,
220,
220,
705,
7061,
16447,
3002,
286,
262,
317,
20,
26339,
7061,
6,
628,
220,
220,
220,
19638,
796,
2750,
4879,
9399,
3419,
198,
220,
220,
220,
3002,
62,
5171,
11017,
796,
21978,
13,
6090,
11017,
7,
8002,
316,
11,
5468,
1096,
28,
32,
19,
8,
198,
220,
220,
220,
9647,
11,
6001,
796,
317,
19,
628,
220,
220,
220,
1303,
1979,
1586,
262,
11112,
393,
18399,
4522,
198,
220,
220,
220,
611,
10644,
13,
1069,
1023,
7,
25294,
46,
62,
34219,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11112,
796,
7412,
33634,
7,
25294,
46,
62,
34219,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3002,
62,
5171,
11017,
13,
19334,
5159,
7,
6404,
78,
11,
2124,
16193,
10394,
1635,
357,
16,
14,
21,
13,
15,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
16193,
17015,
14,
19,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9647,
28,
10394,
1635,
357,
19,
14,
21,
13,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12201,
1722,
806,
29665,
952,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9335,
11639,
23736,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3002,
62,
5171,
11017,
13,
2617,
23252,
7,
10331,
11,
2026,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3002,
62,
5171,
11017,
13,
19334,
19085,
445,
10100,
7,
10394,
14,
17,
11,
6001,
14,
17,
11,
18399,
62,
312,
8,
628,
220,
220,
220,
1303,
9164,
8177,
198,
220,
220,
220,
611,
407,
357,
12888,
318,
6045,
393,
3053,
6624,
13538,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3002,
62,
5171,
11017,
13,
2617,
23252,
7,
10331,
11,
1315,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3002,
62,
5171,
11017,
13,
19334,
19085,
445,
10100,
7,
10394,
14,
17,
11,
2026,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1532,
345,
1064,
428,
3188,
11,
3387,
3053,
366,
1343,
3053,
8,
628,
220,
220,
220,
3002,
62,
5171,
11017,
13,
21928,
3419,
198,
220,
220,
220,
19638,
13,
36163,
7,
15,
8,
198,
220,
220,
220,
1441,
350,
7568,
8979,
33634,
7,
8002,
316,
737,
1136,
9876,
7,
15,
8,
198,
198,
4299,
2251,
62,
64,
19,
62,
67,
8042,
7,
12315,
62,
28243,
11,
5468,
11,
1353,
62,
9464,
62,
5239,
11,
3053,
28,
14202,
11,
10369,
11639,
32,
4454,
6,
2599,
198,
220,
220,
220,
37227,
16719,
274,
281,
317,
19,
3188,
351,
685,
4537,
48075,
60,
422,
685,
2257,
7227,
2751,
62,
35,
6158,
60,
37811,
628,
220,
220,
220,
3599,
62,
4475,
796,
21136,
62,
4475,
7,
4852,
62,
9464,
62,
5239,
8,
198,
220,
220,
220,
10369,
796,
900,
62,
5275,
62,
10331,
7,
10331,
8,
628,
220,
220,
220,
1303,
13610,
5072,
9483,
14,
7753,
198,
220,
220,
220,
611,
407,
10644,
7,
12315,
62,
28243,
737,
1069,
1023,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
30800,
857,
407,
2152,
23884,
1911,
18982,
7,
12315,
62,
28243,
4008,
628,
220,
220,
220,
10644,
13,
28015,
15908,
7,
43387,
11617,
62,
17931,
1503,
11015,
62,
34720,
11,
3397,
28,
17821,
11,
2152,
62,
482,
28,
17821,
8,
198,
220,
220,
220,
257,
19,
62,
22897,
62,
3672,
796,
10644,
7,
12315,
62,
28243,
737,
927,
198,
220,
220,
220,
257,
19,
62,
22897,
62,
6978,
796,
29244,
11617,
62,
17931,
1503,
11015,
62,
34720,
1220,
10644,
7203,
90,
92,
62,
22897,
13,
12315,
1911,
18982,
7,
64,
19,
62,
22897,
62,
3672,
4008,
628,
220,
220,
220,
37124,
62,
7753,
796,
350,
7568,
8979,
34379,
3419,
628,
220,
220,
220,
1303,
17546,
198,
220,
220,
220,
37124,
62,
7753,
13,
2860,
9876,
7,
17953,
62,
67,
8042,
62,
9631,
7,
64,
19,
62,
22897,
62,
3672,
11,
3053,
11,
10369,
4008,
198,
220,
220,
220,
37124,
62,
7753,
13,
2860,
3629,
962,
9876,
3419,
628,
220,
220,
220,
1303,
28221,
198,
220,
220,
220,
329,
2443,
287,
2837,
7,
16,
11,
5468,
10,
16,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
3599,
62,
4475,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1353,
62,
9464,
62,
5239,
796,
3599,
62,
4475,
13,
2536,
31387,
10786,
4,
32,
11,
4064,
67,
4064,
65,
4064,
56,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3599,
62,
4475,
15853,
4818,
8079,
13,
16514,
276,
12514,
7,
12545,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
649,
62,
7700,
796,
2251,
62,
67,
8042,
62,
7700,
7,
12315,
62,
28243,
11,
10369,
11,
1353,
62,
9464,
62,
5239,
11,
7700,
11,
257,
19,
62,
22897,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
37124,
62,
7753,
13,
2860,
9876,
7,
3605,
62,
7700,
8,
628,
220,
220,
220,
1303,
5157,
9631,
198,
220,
220,
220,
37124,
62,
7753,
13,
2860,
3629,
962,
9876,
3419,
628,
220,
220,
220,
1303,
12793,
257,
19,
3188,
198,
220,
220,
220,
351,
1280,
7,
64,
19,
62,
22897,
62,
6978,
11,
366,
39346,
4943,
355,
5072,
62,
5532,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37124,
62,
7753,
13,
13564,
7,
22915,
62,
5532,
8,
628,
220,
220,
220,
1441,
257,
19,
62,
22897,
62,
6978,
198,
198,
4299,
900,
62,
5275,
62,
10331,
7,
10331,
2599,
198,
220,
220,
220,
37227,
38804,
262,
10369,
284,
779,
287,
13639,
290,
2366,
263,
286,
262,
26339,
37811,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37124,
4164,
10466,
13,
30238,
23252,
7,
51,
10234,
756,
7,
10331,
11,
10369,
1343,
45302,
926,
69,
6,
4008,
198,
220,
220,
220,
2845,
309,
10234,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10369,
796,
705,
11146,
50,
504,
14565,
6,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37124,
4164,
10466,
13,
30238,
23252,
7,
51,
10234,
756,
7,
10331,
11,
5550,
38865,
62,
37,
35830,
4008,
198,
220,
220,
220,
1441,
10369
] | 2.724192 | 2,538 |
#!/usr/bin/env python
import urllib2
import httplib
from urlparse import urlparse
import csv
from wextractor.extractors.extractor import Extractor
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
2956,
297,
571,
17,
198,
11748,
1841,
489,
571,
198,
6738,
19016,
29572,
1330,
19016,
29572,
198,
11748,
269,
21370,
198,
198,
6738,
356,
742,
40450,
13,
2302,
974,
669,
13,
2302,
40450,
1330,
29677,
273,
198
] | 3.104167 | 48 |
#!/usr/bin/env python
# Copyright 2014-2019 The PySCF Developers. 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.
'''
Interface to geometry optimizer pyberny https://github.com/jhrmnn/pyberny
'''
from __future__ import absolute_import
import pkg_resources
try:
dist = pkg_resources.get_distribution('pyberny')
except pkg_resources.DistributionNotFound:
dist = None
if dist is None or [int(x) for x in dist.version.split('.')] < [0, 6, 2]:
msg = ('Geometry optimizer Pyberny not found or outdated. Install or update '
'with:\n\n\tpip install -U pyberny')
raise ImportError(msg)
import time
import numpy
import logging
from pyscf import lib
from pyscf.geomopt.addons import (as_pyscf_method, dump_mol_geometry,
symmetrize)
from pyscf import __config__
from pyscf.grad.rhf import GradientsBasics
from berny import Berny, geomlib, coords
# Overwrite pyberny's atomic unit
coords.angstrom = 1./lib.param.BOHR
INCLUDE_GHOST = getattr(__config__, 'geomopt_berny_solver_optimize_include_ghost', True)
ASSERT_CONV = getattr(__config__, 'geomopt_berny_solver_optimize_assert_convergence', True)
def to_berny_log(pyscf_log):
'''Adapter to allow pyberny to use pyscf.logger
'''
log = logging.getLogger('{}.{}'.format(__name__, id(pyscf_log)))
log.addHandler(PyscfHandler())
log.setLevel('INFO')
return log
def kernel(method, assert_convergence=ASSERT_CONV,
include_ghost=INCLUDE_GHOST, callback=None, **kwargs):
'''Optimize geometry with pyberny for the given method.
To adjust the convergence threshold, parameters can be set in kwargs as
below:
.. code-block:: python
conv_params = { # They are default settings
'gradientmax': 0.45e-3, # Eh/[Bohr|rad]
'gradientrms': 0.15e-3, # Eh/[Bohr|rad]
'stepmax': 1.8e-3, # [Bohr|rad]
'steprms': 1.2e-3, # [Bohr|rad]
}
from pyscf.geomopt import berny_solver
opt = berny_solver.GeometryOptimizer(method)
opt.params = conv_params
opt.kernel()
'''
t0 = time.clock(), time.time()
mol = method.mol.copy()
if 'log' in kwargs:
log = lib.logger.new_logger(method, kwargs['log'])
elif 'verbose' in kwargs:
log = lib.logger.new_logger(method, kwargs['verbose'])
else:
log = lib.logger.new_logger(method)
if isinstance(method, lib.GradScanner):
g_scanner = method
elif isinstance(method, GradientsBasics):
g_scanner = method.as_scanner()
elif getattr(method, 'nuc_grad_method', None):
g_scanner = method.nuc_grad_method().as_scanner()
else:
raise NotImplementedError('Nuclear gradients of %s not available' % method)
if not include_ghost:
g_scanner.atmlst = numpy.where(method.mol.atom_charges() != 0)[0]
# When symmetry is enabled, the molecule may be shifted or rotated to make
# the z-axis be the main axis. The transformation can cause inconsistency
# between the optimization steps. The transformation is muted by setting
# an explict point group to the keyword mol.symmetry (see symmetry
# detection code in Mole.build function).
if mol.symmetry:
mol.symmetry = mol.topgroup
# temporary interface, taken from berny.py optimize function
berny_log = to_berny_log(log)
geom = to_berny_geom(mol, include_ghost)
optimizer = Berny(geom, logger=berny_log, **kwargs)
t1 = t0
e_last = 0
for cycle, geom in enumerate(optimizer):
if log.verbose >= lib.logger.NOTE:
log.note('\nGeometry optimization cycle %d', cycle+1)
dump_mol_geometry(mol, geom.coords, log)
if mol.symmetry:
geom.coords = symmetrize(mol, geom.coords)
mol.set_geom_(_geom_to_atom(mol, geom, include_ghost), unit='Bohr')
energy, gradients = g_scanner(mol)
log.note('cycle %d: E = %.12g dE = %g norm(grad) = %g', cycle+1,
energy, energy - e_last, numpy.linalg.norm(gradients))
e_last = energy
if callable(callback):
callback(locals())
if assert_convergence and not g_scanner.converged:
raise RuntimeError('Nuclear gradients of %s not converged' % method)
optimizer.send((energy, gradients))
t1 = log.timer('geomoetry optimization cycle %d'%cycle, *t1)
t0 = log.timer('geomoetry optimization', *t0)
return optimizer._converged, mol
def optimize(method, assert_convergence=ASSERT_CONV,
include_ghost=INCLUDE_GHOST, callback=None, **kwargs):
'''Optimize geometry with pyberny for the given method.
To adjust the convergence threshold, parameters can be set in kwargs as
below:
.. code-block:: python
conv_params = { # They are default settings
'gradientmax': 0.45e-3, # Eh/[Bohr|rad]
'gradientrms': 0.15e-3, # Eh/[Bohr|rad]
'stepmax': 1.8e-3, # [Bohr|rad]
'steprms': 1.2e-3, # [Bohr|rad]
}
from pyscf.geomopt import berny_solver
newmol = berny_solver.optimize(method, **conv_params)
'''
return kernel(method, assert_convergence, include_ghost, callback,
**kwargs)[1]
optimize = kernel
del(INCLUDE_GHOST, ASSERT_CONV)
if __name__ == '__main__':
from pyscf import gto
from pyscf import scf, dft, cc, mp
mol = gto.M(atom='''
C 1.1879 -0.3829 0.0000
C 0.0000 0.5526 0.0000
O -1.1867 -0.2472 0.0000
H -1.9237 0.3850 0.0000
H 2.0985 0.2306 0.0000
H 1.1184 -1.0093 0.8869
H 1.1184 -1.0093 -0.8869
H -0.0227 1.1812 0.8852
H -0.0227 1.1812 -0.8852
''',
basis='3-21g')
mf = scf.RHF(mol)
conv_params = {
'gradientmax': 6e-3, # Eh/Bohr
'gradientrms': 2e-3, # Eh/Bohr
'stepmax': 2e-2, # Bohr
'steprms': 1.5e-2, # Bohr
}
mol1 = optimize(mf, **conv_params)
print(mf.kernel() - -153.219208484874)
print(scf.RHF(mol1).kernel() - -153.222680852335)
mf = dft.RKS(mol)
mf.xc = 'pbe,'
mf.conv_tol = 1e-7
mol1 = optimize(mf)
mymp2 = mp.MP2(scf.RHF(mol))
mol1 = optimize(mymp2)
mycc = cc.CCSD(scf.RHF(mol))
mol1 = optimize(mycc)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
15069,
1946,
12,
23344,
383,
9485,
6173,
37,
34152,
13,
1439,
6923,
33876,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
7061,
6,
198,
39317,
284,
22939,
6436,
7509,
12972,
527,
3281,
3740,
1378,
12567,
13,
785,
14,
73,
11840,
10295,
77,
14,
9078,
527,
3281,
198,
7061,
6,
198,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
11748,
279,
10025,
62,
37540,
198,
28311,
25,
198,
220,
220,
220,
1233,
796,
279,
10025,
62,
37540,
13,
1136,
62,
17080,
3890,
10786,
9078,
527,
3281,
11537,
198,
16341,
279,
10025,
62,
37540,
13,
20344,
3890,
3673,
21077,
25,
198,
220,
220,
220,
1233,
796,
6045,
198,
361,
1233,
318,
6045,
393,
685,
600,
7,
87,
8,
329,
2124,
287,
1233,
13,
9641,
13,
35312,
10786,
2637,
15437,
1279,
685,
15,
11,
718,
11,
362,
5974,
198,
220,
220,
220,
31456,
796,
19203,
10082,
15748,
6436,
7509,
9485,
527,
3281,
407,
1043,
393,
23572,
13,
15545,
393,
4296,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
4480,
7479,
77,
59,
77,
59,
34788,
541,
2721,
532,
52,
12972,
527,
3281,
11537,
198,
220,
220,
220,
5298,
17267,
12331,
7,
19662,
8,
198,
198,
11748,
640,
198,
11748,
299,
32152,
198,
11748,
18931,
198,
6738,
279,
893,
12993,
1330,
9195,
198,
6738,
279,
893,
12993,
13,
469,
296,
8738,
13,
39996,
1330,
357,
292,
62,
79,
893,
12993,
62,
24396,
11,
10285,
62,
43132,
62,
469,
15748,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23606,
316,
380,
2736,
8,
198,
6738,
279,
893,
12993,
1330,
11593,
11250,
834,
198,
6738,
279,
893,
12993,
13,
9744,
13,
17179,
69,
1330,
17701,
2334,
15522,
873,
198,
198,
6738,
275,
1142,
88,
1330,
6206,
88,
11,
4903,
296,
8019,
11,
763,
3669,
198,
198,
2,
3827,
13564,
12972,
527,
3281,
338,
17226,
4326,
198,
1073,
3669,
13,
648,
20282,
796,
352,
19571,
8019,
13,
17143,
13,
8202,
17184,
198,
198,
1268,
5097,
52,
7206,
62,
17511,
10892,
796,
651,
35226,
7,
834,
11250,
834,
11,
705,
469,
296,
8738,
62,
527,
3281,
62,
82,
14375,
62,
40085,
1096,
62,
17256,
62,
38933,
3256,
6407,
8,
198,
10705,
17395,
62,
10943,
53,
796,
651,
35226,
7,
834,
11250,
834,
11,
705,
469,
296,
8738,
62,
527,
3281,
62,
82,
14375,
62,
40085,
1096,
62,
30493,
62,
1102,
332,
12745,
3256,
6407,
8,
628,
198,
4299,
284,
62,
527,
3281,
62,
6404,
7,
79,
893,
12993,
62,
6404,
2599,
198,
220,
220,
220,
705,
7061,
47307,
284,
1249,
12972,
527,
3281,
284,
779,
279,
893,
12993,
13,
6404,
1362,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
2604,
796,
18931,
13,
1136,
11187,
1362,
10786,
90,
27422,
90,
92,
4458,
18982,
7,
834,
3672,
834,
11,
4686,
7,
79,
893,
12993,
62,
6404,
22305,
198,
220,
220,
220,
2604,
13,
2860,
25060,
7,
47,
893,
12993,
25060,
28955,
198,
220,
220,
220,
2604,
13,
2617,
4971,
10786,
10778,
11537,
198,
220,
220,
220,
1441,
2604,
628,
198,
4299,
9720,
7,
24396,
11,
6818,
62,
1102,
332,
12745,
28,
10705,
17395,
62,
10943,
53,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
38933,
28,
1268,
5097,
52,
7206,
62,
17511,
10892,
11,
23838,
28,
14202,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
705,
7061,
27871,
48439,
22939,
351,
12972,
527,
3281,
329,
262,
1813,
2446,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1675,
4532,
262,
40826,
11387,
11,
10007,
460,
307,
900,
287,
479,
86,
22046,
355,
198,
220,
220,
220,
2174,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
198,
220,
220,
220,
220,
220,
220,
220,
3063,
62,
37266,
796,
1391,
220,
1303,
1119,
389,
4277,
6460,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
9806,
10354,
657,
13,
2231,
68,
12,
18,
11,
220,
1303,
31480,
14,
58,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
81,
907,
10354,
657,
13,
1314,
68,
12,
18,
11,
220,
1303,
31480,
14,
58,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
9806,
10354,
352,
13,
23,
68,
12,
18,
11,
220,
220,
220,
220,
220,
220,
1303,
685,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
81,
907,
10354,
352,
13,
17,
68,
12,
18,
11,
220,
220,
220,
220,
220,
220,
1303,
685,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
422,
279,
893,
12993,
13,
469,
296,
8738,
1330,
275,
1142,
88,
62,
82,
14375,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
796,
275,
1142,
88,
62,
82,
14375,
13,
10082,
15748,
27871,
320,
7509,
7,
24396,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
13,
37266,
796,
3063,
62,
37266,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
13,
33885,
3419,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
256,
15,
796,
640,
13,
15750,
22784,
640,
13,
2435,
3419,
198,
220,
220,
220,
18605,
796,
2446,
13,
43132,
13,
30073,
3419,
198,
220,
220,
220,
611,
705,
6404,
6,
287,
479,
86,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
796,
9195,
13,
6404,
1362,
13,
3605,
62,
6404,
1362,
7,
24396,
11,
479,
86,
22046,
17816,
6404,
6,
12962,
198,
220,
220,
220,
1288,
361,
705,
19011,
577,
6,
287,
479,
86,
22046,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
796,
9195,
13,
6404,
1362,
13,
3605,
62,
6404,
1362,
7,
24396,
11,
479,
86,
22046,
17816,
19011,
577,
6,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
796,
9195,
13,
6404,
1362,
13,
3605,
62,
6404,
1362,
7,
24396,
8,
628,
220,
220,
220,
611,
318,
39098,
7,
24396,
11,
9195,
13,
42731,
33351,
1008,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
35836,
1008,
796,
2446,
198,
220,
220,
220,
1288,
361,
318,
39098,
7,
24396,
11,
17701,
2334,
15522,
873,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
35836,
1008,
796,
2446,
13,
292,
62,
35836,
1008,
3419,
198,
220,
220,
220,
1288,
361,
651,
35226,
7,
24396,
11,
705,
77,
1229,
62,
9744,
62,
24396,
3256,
6045,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
35836,
1008,
796,
2446,
13,
77,
1229,
62,
9744,
62,
24396,
22446,
292,
62,
35836,
1008,
3419,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
10786,
45,
4016,
3915,
2334,
286,
4064,
82,
407,
1695,
6,
4064,
2446,
8,
198,
220,
220,
220,
611,
407,
2291,
62,
38933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
308,
62,
35836,
1008,
13,
265,
4029,
301,
796,
299,
32152,
13,
3003,
7,
24396,
13,
43132,
13,
37696,
62,
34948,
3419,
14512,
657,
38381,
15,
60,
628,
220,
220,
220,
1303,
1649,
40686,
318,
9343,
11,
262,
27756,
743,
307,
14869,
393,
38375,
284,
787,
198,
220,
220,
220,
1303,
262,
1976,
12,
22704,
307,
262,
1388,
16488,
13,
383,
13389,
460,
2728,
43831,
198,
220,
220,
220,
1303,
1022,
262,
23989,
4831,
13,
383,
13389,
318,
38952,
416,
4634,
198,
220,
220,
220,
1303,
281,
1193,
713,
966,
1448,
284,
262,
21179,
18605,
13,
1837,
3020,
11973,
357,
3826,
40686,
198,
220,
220,
220,
1303,
13326,
2438,
287,
25726,
13,
11249,
2163,
737,
198,
220,
220,
220,
611,
18605,
13,
1837,
3020,
11973,
25,
198,
220,
220,
220,
220,
220,
220,
220,
18605,
13,
1837,
3020,
11973,
796,
18605,
13,
4852,
8094,
198,
198,
2,
8584,
7071,
11,
2077,
422,
275,
1142,
88,
13,
9078,
27183,
2163,
198,
220,
220,
220,
275,
1142,
88,
62,
6404,
796,
284,
62,
527,
3281,
62,
6404,
7,
6404,
8,
198,
220,
220,
220,
4903,
296,
796,
284,
62,
527,
3281,
62,
469,
296,
7,
43132,
11,
2291,
62,
38933,
8,
198,
220,
220,
220,
6436,
7509,
796,
6206,
88,
7,
469,
296,
11,
49706,
28,
527,
3281,
62,
6404,
11,
12429,
46265,
22046,
8,
628,
220,
220,
220,
256,
16,
796,
256,
15,
198,
220,
220,
220,
304,
62,
12957,
796,
657,
198,
220,
220,
220,
329,
6772,
11,
4903,
296,
287,
27056,
378,
7,
40085,
7509,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2604,
13,
19011,
577,
18189,
9195,
13,
6404,
1362,
13,
16580,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
11295,
10786,
59,
77,
10082,
15748,
23989,
6772,
4064,
67,
3256,
6772,
10,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10285,
62,
43132,
62,
469,
15748,
7,
43132,
11,
4903,
296,
13,
1073,
3669,
11,
2604,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
18605,
13,
1837,
3020,
11973,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4903,
296,
13,
1073,
3669,
796,
23606,
316,
380,
2736,
7,
43132,
11,
4903,
296,
13,
1073,
3669,
8,
628,
220,
220,
220,
220,
220,
220,
220,
18605,
13,
2617,
62,
469,
296,
62,
28264,
469,
296,
62,
1462,
62,
37696,
7,
43132,
11,
4903,
296,
11,
2291,
62,
38933,
828,
4326,
11639,
33,
1219,
81,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2568,
11,
3915,
2334,
796,
308,
62,
35836,
1008,
7,
43132,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
11295,
10786,
13696,
4064,
67,
25,
412,
796,
4064,
13,
1065,
70,
220,
288,
36,
796,
4064,
70,
220,
2593,
7,
9744,
8,
796,
4064,
70,
3256,
6772,
10,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2568,
11,
2568,
532,
304,
62,
12957,
11,
299,
32152,
13,
75,
1292,
70,
13,
27237,
7,
9744,
2334,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
304,
62,
12957,
796,
2568,
198,
220,
220,
220,
220,
220,
220,
220,
611,
869,
540,
7,
47423,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23838,
7,
17946,
874,
28955,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6818,
62,
1102,
332,
12745,
290,
407,
308,
62,
35836,
1008,
13,
1102,
332,
2004,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
43160,
12331,
10786,
45,
4016,
3915,
2334,
286,
4064,
82,
407,
6718,
2004,
6,
4064,
2446,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6436,
7509,
13,
21280,
19510,
22554,
11,
3915,
2334,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
256,
16,
796,
2604,
13,
45016,
10786,
469,
17902,
11973,
23989,
6772,
4064,
67,
6,
4,
13696,
11,
1635,
83,
16,
8,
628,
220,
220,
220,
256,
15,
796,
2604,
13,
45016,
10786,
469,
17902,
11973,
23989,
3256,
1635,
83,
15,
8,
198,
220,
220,
220,
1441,
6436,
7509,
13557,
1102,
332,
2004,
11,
18605,
198,
198,
4299,
27183,
7,
24396,
11,
6818,
62,
1102,
332,
12745,
28,
10705,
17395,
62,
10943,
53,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2291,
62,
38933,
28,
1268,
5097,
52,
7206,
62,
17511,
10892,
11,
23838,
28,
14202,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
705,
7061,
27871,
48439,
22939,
351,
12972,
527,
3281,
329,
262,
1813,
2446,
13,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1675,
4532,
262,
40826,
11387,
11,
10007,
460,
307,
900,
287,
479,
86,
22046,
355,
198,
220,
220,
220,
2174,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
21015,
198,
220,
220,
220,
220,
220,
220,
220,
3063,
62,
37266,
796,
1391,
220,
1303,
1119,
389,
4277,
6460,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
9806,
10354,
657,
13,
2231,
68,
12,
18,
11,
220,
1303,
31480,
14,
58,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
81,
907,
10354,
657,
13,
1314,
68,
12,
18,
11,
220,
1303,
31480,
14,
58,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
9806,
10354,
352,
13,
23,
68,
12,
18,
11,
220,
220,
220,
220,
220,
220,
1303,
685,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
81,
907,
10354,
352,
13,
17,
68,
12,
18,
11,
220,
220,
220,
220,
220,
220,
1303,
685,
33,
1219,
81,
91,
6335,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
422,
279,
893,
12993,
13,
469,
296,
8738,
1330,
275,
1142,
88,
62,
82,
14375,
198,
220,
220,
220,
220,
220,
220,
220,
649,
43132,
796,
275,
1142,
88,
62,
82,
14375,
13,
40085,
1096,
7,
24396,
11,
12429,
42946,
62,
37266,
8,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1441,
9720,
7,
24396,
11,
6818,
62,
1102,
332,
12745,
11,
2291,
62,
38933,
11,
23838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
38381,
16,
60,
198,
220,
220,
220,
27183,
796,
9720,
198,
198,
12381,
7,
1268,
5097,
52,
7206,
62,
17511,
10892,
11,
24994,
17395,
62,
10943,
53,
8,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
422,
279,
893,
12993,
1330,
308,
1462,
198,
220,
220,
220,
422,
279,
893,
12993,
1330,
629,
69,
11,
288,
701,
11,
36624,
11,
29034,
198,
220,
220,
220,
18605,
796,
308,
1462,
13,
44,
7,
37696,
28,
7061,
6,
198,
34,
220,
220,
220,
220,
220,
220,
352,
13,
1507,
3720,
220,
532,
15,
13,
2548,
1959,
657,
13,
2388,
198,
34,
220,
220,
220,
220,
220,
220,
657,
13,
2388,
220,
657,
13,
2816,
2075,
220,
657,
13,
2388,
198,
46,
220,
220,
220,
220,
220,
220,
532,
16,
13,
1507,
3134,
532,
15,
13,
1731,
4761,
657,
13,
2388,
198,
39,
220,
220,
220,
220,
220,
220,
532,
16,
13,
24,
24693,
657,
13,
2548,
1120,
220,
657,
13,
2388,
198,
39,
220,
220,
220,
220,
220,
220,
362,
13,
2931,
5332,
220,
657,
13,
19214,
21,
220,
657,
13,
2388,
198,
39,
220,
220,
220,
220,
220,
220,
352,
13,
1157,
5705,
220,
532,
16,
13,
405,
6052,
657,
13,
3459,
3388,
198,
39,
220,
220,
220,
220,
220,
220,
352,
13,
1157,
5705,
220,
532,
16,
13,
405,
6052,
532,
15,
13,
3459,
3388,
198,
39,
220,
220,
220,
220,
220,
220,
532,
15,
13,
15,
24403,
352,
13,
1507,
1065,
220,
657,
13,
3459,
4309,
198,
39,
220,
220,
220,
220,
220,
220,
532,
15,
13,
15,
24403,
352,
13,
1507,
1065,
220,
532,
15,
13,
3459,
4309,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10148,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4308,
11639,
18,
12,
2481,
70,
11537,
628,
220,
220,
220,
285,
69,
796,
629,
69,
13,
49,
29567,
7,
43132,
8,
198,
220,
220,
220,
3063,
62,
37266,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
9806,
10354,
718,
68,
12,
18,
11,
220,
1303,
31480,
14,
33,
1219,
81,
198,
220,
220,
220,
220,
220,
220,
220,
705,
49607,
81,
907,
10354,
362,
68,
12,
18,
11,
220,
1303,
31480,
14,
33,
1219,
81,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
9806,
10354,
362,
68,
12,
17,
11,
220,
220,
220,
220,
220,
1303,
44366,
81,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9662,
81,
907,
10354,
352,
13,
20,
68,
12,
17,
11,
220,
220,
220,
1303,
44366,
81,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
18605,
16,
796,
27183,
7,
76,
69,
11,
12429,
42946,
62,
37266,
8,
198,
220,
220,
220,
3601,
7,
76,
69,
13,
33885,
3419,
532,
532,
21395,
13,
28896,
21315,
2780,
2780,
4524,
8,
198,
220,
220,
220,
3601,
7,
1416,
69,
13,
49,
29567,
7,
43132,
16,
737,
33885,
3419,
532,
532,
21395,
13,
1828,
2075,
1795,
5332,
1954,
2327,
8,
628,
220,
220,
220,
285,
69,
796,
288,
701,
13,
49,
27015,
7,
43132,
8,
198,
220,
220,
220,
285,
69,
13,
25306,
796,
705,
79,
1350,
4032,
198,
220,
220,
220,
285,
69,
13,
42946,
62,
83,
349,
796,
352,
68,
12,
22,
198,
220,
220,
220,
18605,
16,
796,
27183,
7,
76,
69,
8,
628,
220,
220,
220,
616,
3149,
17,
796,
29034,
13,
7378,
17,
7,
1416,
69,
13,
49,
29567,
7,
43132,
4008,
198,
220,
220,
220,
18605,
16,
796,
27183,
7,
1820,
3149,
17,
8,
628,
220,
220,
220,
616,
535,
796,
36624,
13,
4093,
10305,
7,
1416,
69,
13,
49,
29567,
7,
43132,
4008,
198,
220,
220,
220,
18605,
16,
796,
27183,
7,
1820,
535,
8,
198
] | 2.242067 | 3,057 |
# Copyright (c) 2017-2018 {Flair Inc.} WESLEY PENG
#
# 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 taf.foundation.utils import ConnectionCache
| [
2,
15069,
357,
66,
8,
2177,
12,
7908,
1391,
7414,
958,
3457,
44587,
370,
1546,
25173,
350,
26808,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
6738,
256,
1878,
13,
42526,
13,
26791,
1330,
26923,
30562,
628
] | 3.810651 | 169 |
import crypto_tools
from itertools import cycle
vigenere.little_doc = vigenere_little_doc
vigenere.full_doc = vigenere_full_doc
| [
11748,
21473,
62,
31391,
198,
6738,
340,
861,
10141,
1330,
6772,
628,
628,
628,
198,
198,
85,
9324,
567,
13,
31629,
62,
15390,
796,
410,
9324,
567,
62,
31629,
62,
15390,
198,
85,
9324,
567,
13,
12853,
62,
15390,
796,
410,
9324,
567,
62,
12853,
62,
15390,
198
] | 2.8125 | 48 |
"""
Contexts are the "values" that Python would return. However Contexts are at the
same time also the "contexts" that a user is currently sitting in.
A ContextSet is typically used to specify the return of a function or any other
static analysis operation. In jedi there are always multiple returns and not
just one.
"""
from functools import reduce
from operator import add
from parso.python.tree import ExprStmt, SyncCompFor
from jedi import debug
from jedi._compatibility import zip_longest, unicode
from jedi.parser_utils import clean_scope_docstring
from jedi.common import BaseContextSet, BaseContext
from jedi.evaluate.helpers import SimpleGetItemNotFound
from jedi.evaluate.utils import safe_property
from jedi.evaluate.cache import evaluator_as_method_param_cache
from jedi.cache import memoize_method
_sentinel = object()
def iterate_contexts(contexts, contextualized_node=None, is_async=False):
"""
Calls `iterate`, on all contexts but ignores the ordering and just returns
all contexts that the iterate functions yield.
"""
return ContextSet.from_sets(
lazy_context.infer()
for lazy_context in contexts.iterate(contextualized_node, is_async=is_async)
)
class LazyContextWrapper(_ContextWrapperBase):
class ContextWrapper(_ContextWrapperBase):
class TreeContext(Context):
class ContextualizedNode(object):
class ContextualizedName(ContextualizedNode):
# TODO merge with TreeNameDefinition?!
def assignment_indexes(self):
"""
Returns an array of tuple(int, node) of the indexes that are used in
tuple assignments.
For example if the name is ``y`` in the following code::
x, (y, z) = 2, ''
would result in ``[(1, xyz_node), (0, yz_node)]``.
When searching for b in the case ``a, *b, c = [...]`` it will return::
[(slice(1, -1), abc_node)]
"""
indexes = []
is_star_expr = False
node = self.node.parent
compare = self.node
while node is not None:
if node.type in ('testlist', 'testlist_comp', 'testlist_star_expr', 'exprlist'):
for i, child in enumerate(node.children):
if child == compare:
index = int(i / 2)
if is_star_expr:
from_end = int((len(node.children) - i) / 2)
index = slice(index, -from_end)
indexes.insert(0, (index, node))
break
else:
raise LookupError("Couldn't find the assignment.")
is_star_expr = False
elif node.type == 'star_expr':
is_star_expr = True
elif isinstance(node, (ExprStmt, SyncCompFor)):
break
compare = node
node = node.parent
return indexes
class ContextSet(BaseContextSet):
NO_CONTEXTS = ContextSet([])
| [
37811,
198,
21947,
82,
389,
262,
366,
27160,
1,
326,
11361,
561,
1441,
13,
2102,
30532,
82,
389,
379,
262,
198,
31642,
640,
635,
262,
366,
22866,
82,
1,
326,
257,
2836,
318,
3058,
5586,
287,
13,
198,
198,
32,
30532,
7248,
318,
6032,
973,
284,
11986,
262,
1441,
286,
257,
2163,
393,
597,
584,
198,
12708,
3781,
4905,
13,
554,
474,
13740,
612,
389,
1464,
3294,
5860,
290,
407,
198,
3137,
530,
13,
198,
37811,
198,
6738,
1257,
310,
10141,
1330,
4646,
198,
6738,
10088,
1330,
751,
198,
6738,
1582,
568,
13,
29412,
13,
21048,
1330,
1475,
1050,
1273,
16762,
11,
35908,
7293,
1890,
198,
198,
6738,
474,
13740,
1330,
14257,
198,
6738,
474,
13740,
13557,
5589,
25901,
1330,
19974,
62,
6511,
395,
11,
28000,
1098,
198,
6738,
474,
13740,
13,
48610,
62,
26791,
1330,
3424,
62,
29982,
62,
15390,
8841,
198,
6738,
474,
13740,
13,
11321,
1330,
7308,
21947,
7248,
11,
7308,
21947,
198,
6738,
474,
13740,
13,
49786,
13,
16794,
364,
1330,
17427,
3855,
7449,
3673,
21077,
198,
6738,
474,
13740,
13,
49786,
13,
26791,
1330,
3338,
62,
26745,
198,
6738,
474,
13740,
13,
49786,
13,
23870,
1330,
5418,
84,
1352,
62,
292,
62,
24396,
62,
17143,
62,
23870,
198,
6738,
474,
13740,
13,
23870,
1330,
16155,
1096,
62,
24396,
198,
198,
62,
34086,
20538,
796,
2134,
3419,
628,
628,
198,
4299,
11629,
378,
62,
22866,
82,
7,
22866,
82,
11,
38356,
1143,
62,
17440,
28,
14202,
11,
318,
62,
292,
13361,
28,
25101,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27592,
4600,
2676,
378,
47671,
319,
477,
26307,
475,
24245,
262,
16216,
290,
655,
5860,
198,
220,
220,
220,
477,
26307,
326,
262,
11629,
378,
5499,
7800,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
30532,
7248,
13,
6738,
62,
28709,
7,
198,
220,
220,
220,
220,
220,
220,
220,
16931,
62,
22866,
13,
259,
2232,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
16931,
62,
22866,
287,
26307,
13,
2676,
378,
7,
22866,
723,
1143,
62,
17440,
11,
318,
62,
292,
13361,
28,
271,
62,
292,
13361,
8,
198,
220,
220,
220,
1267,
628,
198,
198,
4871,
406,
12582,
21947,
36918,
2848,
28264,
21947,
36918,
2848,
14881,
2599,
628,
198,
4871,
30532,
36918,
2848,
28264,
21947,
36918,
2848,
14881,
2599,
628,
198,
4871,
12200,
21947,
7,
21947,
2599,
628,
198,
4871,
30532,
723,
1143,
19667,
7,
15252,
2599,
628,
198,
4871,
30532,
723,
1143,
5376,
7,
21947,
723,
1143,
19667,
2599,
198,
220,
220,
220,
1303,
16926,
46,
20121,
351,
12200,
5376,
36621,
12248,
628,
220,
220,
220,
825,
16237,
62,
9630,
274,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
281,
7177,
286,
46545,
7,
600,
11,
10139,
8,
286,
262,
39199,
326,
389,
973,
287,
198,
220,
220,
220,
220,
220,
220,
220,
46545,
25815,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1114,
1672,
611,
262,
1438,
318,
7559,
88,
15506,
287,
262,
1708,
2438,
3712,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
11,
357,
88,
11,
1976,
8,
796,
362,
11,
10148,
628,
220,
220,
220,
220,
220,
220,
220,
561,
1255,
287,
7559,
58,
7,
16,
11,
2124,
45579,
62,
17440,
828,
357,
15,
11,
331,
89,
62,
17440,
15437,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
1649,
10342,
329,
275,
287,
262,
1339,
7559,
64,
11,
1635,
65,
11,
269,
796,
26894,
15506,
340,
481,
1441,
3712,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47527,
48369,
7,
16,
11,
532,
16,
828,
450,
66,
62,
17440,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
39199,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
318,
62,
7364,
62,
31937,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
10139,
796,
2116,
13,
17440,
13,
8000,
198,
220,
220,
220,
220,
220,
220,
220,
8996,
796,
2116,
13,
17440,
198,
220,
220,
220,
220,
220,
220,
220,
981,
10139,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
10139,
13,
4906,
287,
19203,
9288,
4868,
3256,
705,
9288,
4868,
62,
5589,
3256,
705,
9288,
4868,
62,
7364,
62,
31937,
3256,
705,
31937,
4868,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
1200,
287,
27056,
378,
7,
17440,
13,
17197,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1200,
6624,
8996,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
493,
7,
72,
1220,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
62,
7364,
62,
31937,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
422,
62,
437,
796,
493,
19510,
11925,
7,
17440,
13,
17197,
8,
532,
1312,
8,
1220,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6376,
796,
16416,
7,
9630,
11,
532,
6738,
62,
437,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39199,
13,
28463,
7,
15,
11,
357,
9630,
11,
10139,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
6803,
929,
12331,
7203,
23722,
77,
470,
1064,
262,
16237,
19570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
7364,
62,
31937,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
10139,
13,
4906,
6624,
705,
7364,
62,
31937,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
7364,
62,
31937,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
318,
39098,
7,
17440,
11,
357,
3109,
1050,
1273,
16762,
11,
35908,
7293,
1890,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8996,
796,
10139,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10139,
796,
10139,
13,
8000,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
39199,
628,
198,
198,
4871,
30532,
7248,
7,
14881,
21947,
7248,
2599,
628,
198,
15285,
62,
37815,
6369,
4694,
796,
30532,
7248,
26933,
12962,
628
] | 2.438725 | 1,224 |
from typing import Tuple
import click
from .cmd import KiwiCommandType, KiwiCommand
from .decorators import kiwi_command
from ..executable import COMPOSE_EXE
from ..instance import Instance
from ..project import Project
| [
6738,
19720,
1330,
309,
29291,
198,
198,
11748,
3904,
198,
198,
6738,
764,
28758,
1330,
40011,
72,
21575,
6030,
11,
40011,
72,
21575,
198,
6738,
764,
12501,
273,
2024,
1330,
479,
14246,
72,
62,
21812,
198,
6738,
11485,
18558,
18187,
1330,
24301,
14058,
62,
6369,
36,
198,
6738,
11485,
39098,
1330,
2262,
590,
198,
6738,
11485,
16302,
1330,
4935,
628
] | 3.716667 | 60 |
from . import ip
__all__ = ['ip']
| [
6738,
764,
1330,
20966,
628,
198,
834,
439,
834,
796,
37250,
541,
20520,
198
] | 2.571429 | 14 |
from itertools import groupby
| [
6738,
340,
861,
10141,
1330,
1448,
1525,
628
] | 3.875 | 8 |
# -*- coding: UTF-8 -*-
# !/usr/bin/python
# @time :2019/5/10 9:13
# @author :Mo
# @function :path of FeatureProject
import pathlib
import sys
import os
# base dir
projectdir = str(pathlib.Path(os.path.abspath(__file__)).parent.parent)
sys.path.append(projectdir)
# path of BERT model
model_dir = projectdir + '/Data/chinese_L-12_H-768_A-12'
config_name = model_dir + '/bert_config.json'
ckpt_name = model_dir + '/bert_model.ckpt'
vocab_file = model_dir + '/vocab.txt'
# gpu
gpu_memory_fraction = 0.32
#
layer_indexes = [-2]
#
max_seq_len = 32
| [
2,
532,
9,
12,
19617,
25,
41002,
12,
23,
532,
9,
12,
201,
198,
2,
5145,
14,
14629,
14,
8800,
14,
29412,
201,
198,
2,
2488,
2435,
220,
220,
220,
220,
1058,
23344,
14,
20,
14,
940,
860,
25,
1485,
201,
198,
2,
2488,
9800,
220,
220,
1058,
16632,
201,
198,
2,
2488,
8818,
1058,
6978,
286,
27018,
16775,
201,
198,
11748,
3108,
8019,
201,
198,
11748,
25064,
201,
198,
11748,
28686,
201,
198,
201,
198,
201,
198,
2,
2779,
26672,
201,
198,
16302,
15908,
796,
965,
7,
6978,
8019,
13,
15235,
7,
418,
13,
6978,
13,
397,
2777,
776,
7,
834,
7753,
834,
29720,
8000,
13,
8000,
8,
201,
198,
17597,
13,
6978,
13,
33295,
7,
16302,
15908,
8,
201,
198,
201,
198,
201,
198,
2,
3108,
286,
347,
17395,
2746,
201,
198,
19849,
62,
15908,
796,
1628,
15908,
1343,
31051,
6601,
14,
354,
3762,
62,
43,
12,
1065,
62,
39,
12,
30610,
62,
32,
12,
1065,
6,
201,
198,
11250,
62,
3672,
796,
2746,
62,
15908,
1343,
31051,
4835,
62,
11250,
13,
17752,
6,
201,
198,
694,
457,
62,
3672,
796,
2746,
62,
15908,
1343,
31051,
4835,
62,
19849,
13,
694,
457,
6,
201,
198,
18893,
397,
62,
7753,
796,
2746,
62,
15908,
1343,
31051,
18893,
397,
13,
14116,
6,
201,
198,
2,
308,
19944,
201,
198,
46999,
62,
31673,
62,
69,
7861,
796,
657,
13,
2624,
201,
198,
2,
220,
201,
198,
29289,
62,
9630,
274,
796,
25915,
17,
60,
201,
198,
2,
220,
201,
198,
9806,
62,
41068,
62,
11925,
796,
3933,
201,
198
] | 2.255814 | 258 |
"""Test for .prep.read module
"""
from hidrokit.prep import read
import numpy as np
import pandas as pd
A = pd.DataFrame(
data=[
[1, 3, 4, np.nan, 2, np.nan],
[np.nan, 2, 3, np.nan, 1, 4],
[2, np.nan, 1, 3, 4, np.nan]
],
columns=['A', 'B', 'C', 'D', 'E', 'F']
)
A_date = A.set_index(pd.date_range("20190617", "20190619"))
res_A_number = {'A': [1], 'B': [2], 'C': [], 'D': [0, 1], 'E': [], 'F': [0, 2]}
res_A_date = {'A': ['0618'], 'B': ['0619'], 'C': [],
'D': ['0617', '0618'], 'E': [], 'F': ['0617', '0619']}
| [
37811,
14402,
329,
764,
46012,
13,
961,
8265,
198,
37811,
198,
198,
6738,
24519,
305,
15813,
13,
46012,
1330,
1100,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
32,
796,
279,
67,
13,
6601,
19778,
7,
198,
220,
220,
220,
1366,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
685,
16,
11,
513,
11,
604,
11,
45941,
13,
12647,
11,
362,
11,
45941,
13,
12647,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
685,
37659,
13,
12647,
11,
362,
11,
513,
11,
45941,
13,
12647,
11,
352,
11,
604,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
685,
17,
11,
45941,
13,
12647,
11,
352,
11,
513,
11,
604,
11,
45941,
13,
12647,
60,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
15180,
28,
17816,
32,
3256,
705,
33,
3256,
705,
34,
3256,
705,
35,
3256,
705,
36,
3256,
705,
37,
20520,
198,
8,
198,
198,
32,
62,
4475,
796,
317,
13,
2617,
62,
9630,
7,
30094,
13,
4475,
62,
9521,
7203,
23344,
3312,
1558,
1600,
366,
23344,
3312,
1129,
48774,
198,
198,
411,
62,
32,
62,
17618,
796,
1391,
6,
32,
10354,
685,
16,
4357,
705,
33,
10354,
685,
17,
4357,
705,
34,
10354,
685,
4357,
705,
35,
10354,
685,
15,
11,
352,
4357,
705,
36,
10354,
685,
4357,
705,
37,
10354,
685,
15,
11,
362,
48999,
198,
411,
62,
32,
62,
4475,
796,
1391,
6,
32,
10354,
37250,
3312,
1507,
6,
4357,
705,
33,
10354,
37250,
3312,
1129,
6,
4357,
705,
34,
10354,
685,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35,
10354,
37250,
3312,
1558,
3256,
705,
3312,
1507,
6,
4357,
705,
36,
10354,
685,
4357,
705,
37,
10354,
37250,
3312,
1558,
3256,
705,
3312,
1129,
20520,
92,
628,
198
] | 1.867987 | 303 |
from flasgger import swag_from
from app.blueprints.base_blueprint import Blueprint, BaseBlueprint, request, Security, Auth
from app.controllers.department_controller import DepartmentController
url_prefix = '{}/departments'.format(BaseBlueprint.base_url_prefix)
department_blueprint = Blueprint('department', __name__, url_prefix=url_prefix)
department_controller = DepartmentController(request)
| [
6738,
781,
292,
26679,
1330,
1509,
363,
62,
6738,
198,
198,
6738,
598,
13,
17585,
17190,
13,
8692,
62,
17585,
4798,
1330,
39932,
11,
7308,
14573,
4798,
11,
2581,
11,
4765,
11,
26828,
198,
6738,
598,
13,
3642,
36667,
13,
10378,
1823,
62,
36500,
1330,
2732,
22130,
198,
198,
6371,
62,
40290,
796,
705,
90,
92,
14,
10378,
32514,
4458,
18982,
7,
14881,
14573,
4798,
13,
8692,
62,
6371,
62,
40290,
8,
198,
10378,
1823,
62,
17585,
4798,
796,
39932,
10786,
10378,
1823,
3256,
11593,
3672,
834,
11,
19016,
62,
40290,
28,
6371,
62,
40290,
8,
198,
10378,
1823,
62,
36500,
796,
2732,
22130,
7,
25927,
8,
198
] | 3.685185 | 108 |
import argparse
from keras import optimizers
import matplotlib.pyplot as plt
import numpy as np
import datetime
from keras.callbacks import TensorBoard
import glob
import os
import tensorflow as tf
from models import *
from utils.lr_controller import ReduceLROnPlateau
from utils.data_loader import data_loader, data_loader_multi_channel
from utils.utils import img_comp
from utils.loss import loss_mse_ssim
parser = argparse.ArgumentParser()
parser.add_argument("--gpu_id", type=int, default=1)
parser.add_argument("--gpu_memory_fraction", type=float, default=0.3)
parser.add_argument("--mixed_precision_training", type=int, default=1)
parser.add_argument("--data_dir", type=str, default="../dataset/train/F-actin")
parser.add_argument("--save_weights_dir", type=str, default="../trained_models")
parser.add_argument("--model_name", type=str, default="DFCAN")
parser.add_argument("--patch_height", type=int, default=128)
parser.add_argument("--patch_width", type=int, default=128)
parser.add_argument("--input_channels", type=int, default=9)
parser.add_argument("--scale_factor", type=int, default=2)
parser.add_argument("--norm_flag", type=int, default=1)
parser.add_argument("--iterations", type=int, default=1000000)
parser.add_argument("--sample_interval", type=int, default=1000)
parser.add_argument("--validate_interval", type=int, default=2000)
parser.add_argument("--validate_num", type=int, default=500)
parser.add_argument("--batch_size", type=int, default=4)
parser.add_argument("--start_lr", type=float, default=1e-4)
parser.add_argument("--lr_decay_factor", type=float, default=0.5)
parser.add_argument("--load_weights", type=int, default=0)
parser.add_argument("--optimizer_name", type=str, default="adam")
args = parser.parse_args()
gpu_id = str(args.gpu_id)
gpu_memory_fraction = args.gpu_memory_fraction
mixed_precision_training = str(args.mixed_precision_training)
data_dir = args.data_dir
save_weights_dir = args.save_weights_dir
validate_interval = args.validate_interval
batch_size = args.batch_size
start_lr = args.start_lr
lr_decay_factor = args.lr_decay_factor
patch_height = args.patch_height
patch_width = args.patch_width
input_channels = args.input_channels
scale_factor = args.scale_factor
norm_flag = args.norm_flag
validate_num = args.validate_num
iterations = args.iterations
load_weights = args.load_weights
optimizer_name = args.optimizer_name
model_name = args.model_name
sample_interval = args.sample_interval
os.environ["TF_ENABLE_AUTO_MIXED_PRECISION"] = mixed_precision_training
os.environ["CUDA_VISIBLE_DEVICES"] = gpu_id
gpu_options = tf.GPUOptions(per_process_gpu_memory_fraction=gpu_memory_fraction)
tf.Session(config=tf.ConfigProto(gpu_options=gpu_options))
data_name = data_dir.split('/')[-1]
if input_channels == 1:
save_weights_name = model_name + '-SISR_' + data_name
cur_data_loader = data_loader
train_images_path = data_dir + '/training_wf/'
validate_images_path = data_dir + '/validate_wf/'
else:
save_weights_name = model_name + '-SIM_' + data_name
cur_data_loader = data_loader_multi_channel
train_images_path = data_dir + '/training/'
validate_images_path = data_dir + '/validate/'
save_weights_path = save_weights_dir + '/' + save_weights_name + '/'
train_gt_path = data_dir + '/training_gt/'
validate_gt_path = data_dir + '/validate_gt/'
sample_path = save_weights_path + 'sampled_img/'
if not os.path.exists(save_weights_path):
os.mkdir(save_weights_path)
if not os.path.exists(sample_path):
os.mkdir(sample_path)
# --------------------------------------------------------------------------------
# select models and optimizer
# --------------------------------------------------------------------------------
modelFns = {'DFCAN': DFCAN16.DFCAN}
modelFN = modelFns[model_name]
optimizer_g = optimizers.adam(lr=start_lr, beta_1=0.9, beta_2=0.999)
# --------------------------------------------------------------------------------
# define combined model
# --------------------------------------------------------------------------------
g = modelFN((patch_height, patch_width, input_channels))
g.compile(loss=loss_mse_ssim, optimizer=optimizer_g)
lr_controller = ReduceLROnPlateau(model=g, factor=lr_decay_factor, patience=10, mode='min', min_delta=1e-4,
cooldown=0, min_lr=start_lr * 0.1, verbose=1)
# --------------------------------------------------------------------------------
# about Tensorboard
# --------------------------------------------------------------------------------
log_path = save_weights_path + 'graph'
if not os.path.exists(log_path):
os.mkdir(log_path)
callback = TensorBoard(log_path)
callback.set_model(g)
train_names = 'training_loss'
val_names = ['val_MSE', 'val_SSIM', 'val_PSNR', 'val_NRMSE']
# --------------------------------------------------------------------------------
# Sample and validate
# --------------------------------------------------------------------------------
# --------------------------------------------------------------------------------
# if exist, load weights
# --------------------------------------------------------------------------------
if load_weights:
if os.path.exists(save_weights_path + 'weights.best'):
g.save_weights(save_weights_path + 'weights.best')
print('Loading weights successfully: ' + save_weights_path + 'weights.best')
elif os.path.exists(save_weights_path + 'weights.latest'):
g.save_weights(save_weights_path + 'weights.latest')
print('Loading weights successfully: ' + save_weights_path + 'weights.latest')
# --------------------------------------------------------------------------------
# training
# --------------------------------------------------------------------------------
start_time = datetime.datetime.now()
loss_record = []
validate_nrmse = [np.Inf]
lr_controller.on_train_begin()
images_path = glob.glob(train_images_path + '/*')
for it in range(iterations):
# ------------------------------------
# train generator
# ------------------------------------
input_g, gt_g = cur_data_loader(images_path, train_images_path, train_gt_path, patch_height, patch_width,
batch_size, norm_flag=norm_flag, scale=scale_factor)
loss_generator = g.train_on_batch(input_g, gt_g)
loss_record.append(loss_generator)
elapsed_time = datetime.datetime.now() - start_time
print("%d epoch: time: %s, g_loss = %s" % (it + 1, elapsed_time, loss_generator))
if (it + 1) % sample_interval == 0:
images_path = glob.glob(train_images_path + '/*')
Validate(it + 1, sample=1)
if (it + 1) % validate_interval == 0:
Validate(it + 1, sample=0)
write_log(callback, train_names, np.mean(loss_record), it + 1)
loss_record = []
| [
11748,
1822,
29572,
198,
6738,
41927,
292,
1330,
6436,
11341,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
4818,
8079,
198,
6738,
41927,
292,
13,
13345,
10146,
1330,
309,
22854,
29828,
198,
11748,
15095,
198,
11748,
28686,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
6738,
4981,
1330,
1635,
198,
6738,
3384,
4487,
13,
14050,
62,
36500,
1330,
44048,
35972,
2202,
3646,
378,
559,
198,
6738,
3384,
4487,
13,
7890,
62,
29356,
1330,
1366,
62,
29356,
11,
1366,
62,
29356,
62,
41684,
62,
17620,
198,
6738,
3384,
4487,
13,
26791,
1330,
33705,
62,
5589,
198,
6738,
3384,
4487,
13,
22462,
1330,
2994,
62,
76,
325,
62,
824,
320,
198,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
46999,
62,
312,
1600,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
46999,
62,
31673,
62,
69,
7861,
1600,
2099,
28,
22468,
11,
4277,
28,
15,
13,
18,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
76,
2966,
62,
3866,
16005,
62,
34409,
1600,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
7890,
62,
15908,
1600,
2099,
28,
2536,
11,
4277,
2625,
40720,
19608,
292,
316,
14,
27432,
14,
37,
12,
529,
259,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
21928,
62,
43775,
62,
15908,
1600,
2099,
28,
2536,
11,
4277,
2625,
40720,
35311,
62,
27530,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
19849,
62,
3672,
1600,
2099,
28,
2536,
11,
4277,
2625,
35,
4851,
1565,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
17147,
62,
17015,
1600,
2099,
28,
600,
11,
4277,
28,
12762,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
17147,
62,
10394,
1600,
2099,
28,
600,
11,
4277,
28,
12762,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
15414,
62,
354,
8961,
1600,
2099,
28,
600,
11,
4277,
28,
24,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9888,
62,
31412,
1600,
2099,
28,
600,
11,
4277,
28,
17,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
27237,
62,
32109,
1600,
2099,
28,
600,
11,
4277,
28,
16,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2676,
602,
1600,
2099,
28,
600,
11,
4277,
28,
16,
10535,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
39873,
62,
3849,
2100,
1600,
2099,
28,
600,
11,
4277,
28,
12825,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
12102,
378,
62,
3849,
2100,
1600,
2099,
28,
600,
11,
4277,
28,
11024,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
12102,
378,
62,
22510,
1600,
2099,
28,
600,
11,
4277,
28,
4059,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
43501,
62,
7857,
1600,
2099,
28,
600,
11,
4277,
28,
19,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9688,
62,
14050,
1600,
2099,
28,
22468,
11,
4277,
28,
16,
68,
12,
19,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
14050,
62,
12501,
323,
62,
31412,
1600,
2099,
28,
22468,
11,
4277,
28,
15,
13,
20,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2220,
62,
43775,
1600,
2099,
28,
600,
11,
4277,
28,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
40085,
7509,
62,
3672,
1600,
2099,
28,
2536,
11,
4277,
2625,
324,
321,
4943,
198,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
46999,
62,
312,
796,
965,
7,
22046,
13,
46999,
62,
312,
8,
198,
46999,
62,
31673,
62,
69,
7861,
796,
26498,
13,
46999,
62,
31673,
62,
69,
7861,
198,
76,
2966,
62,
3866,
16005,
62,
34409,
796,
965,
7,
22046,
13,
76,
2966,
62,
3866,
16005,
62,
34409,
8,
198,
7890,
62,
15908,
796,
26498,
13,
7890,
62,
15908,
198,
21928,
62,
43775,
62,
15908,
796,
26498,
13,
21928,
62,
43775,
62,
15908,
198,
12102,
378,
62,
3849,
2100,
796,
26498,
13,
12102,
378,
62,
3849,
2100,
198,
43501,
62,
7857,
796,
26498,
13,
43501,
62,
7857,
198,
9688,
62,
14050,
796,
26498,
13,
9688,
62,
14050,
198,
14050,
62,
12501,
323,
62,
31412,
796,
26498,
13,
14050,
62,
12501,
323,
62,
31412,
198,
17147,
62,
17015,
796,
26498,
13,
17147,
62,
17015,
198,
17147,
62,
10394,
796,
26498,
13,
17147,
62,
10394,
198,
15414,
62,
354,
8961,
796,
26498,
13,
15414,
62,
354,
8961,
198,
9888,
62,
31412,
796,
26498,
13,
9888,
62,
31412,
198,
27237,
62,
32109,
796,
26498,
13,
27237,
62,
32109,
198,
12102,
378,
62,
22510,
796,
26498,
13,
12102,
378,
62,
22510,
198,
2676,
602,
796,
26498,
13,
2676,
602,
198,
2220,
62,
43775,
796,
26498,
13,
2220,
62,
43775,
198,
40085,
7509,
62,
3672,
796,
26498,
13,
40085,
7509,
62,
3672,
198,
19849,
62,
3672,
796,
26498,
13,
19849,
62,
3672,
198,
39873,
62,
3849,
2100,
796,
26498,
13,
39873,
62,
3849,
2100,
198,
198,
418,
13,
268,
2268,
14692,
10234,
62,
1677,
17534,
62,
39371,
46,
62,
8895,
55,
1961,
62,
47,
38827,
42446,
8973,
796,
7668,
62,
3866,
16005,
62,
34409,
198,
418,
13,
268,
2268,
14692,
43633,
5631,
62,
29817,
34563,
62,
39345,
34444,
8973,
796,
308,
19944,
62,
312,
198,
46999,
62,
25811,
796,
48700,
13,
33346,
29046,
7,
525,
62,
14681,
62,
46999,
62,
31673,
62,
69,
7861,
28,
46999,
62,
31673,
62,
69,
7861,
8,
198,
27110,
13,
36044,
7,
11250,
28,
27110,
13,
16934,
2964,
1462,
7,
46999,
62,
25811,
28,
46999,
62,
25811,
4008,
198,
198,
7890,
62,
3672,
796,
1366,
62,
15908,
13,
35312,
10786,
14,
11537,
58,
12,
16,
60,
198,
361,
5128,
62,
354,
8961,
6624,
352,
25,
198,
220,
220,
220,
3613,
62,
43775,
62,
3672,
796,
2746,
62,
3672,
1343,
705,
12,
50,
1797,
49,
62,
6,
1343,
1366,
62,
3672,
198,
220,
220,
220,
1090,
62,
7890,
62,
29356,
796,
1366,
62,
29356,
198,
220,
220,
220,
4512,
62,
17566,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
34409,
62,
86,
69,
14,
6,
198,
220,
220,
220,
26571,
62,
17566,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
12102,
378,
62,
86,
69,
14,
6,
198,
17772,
25,
198,
220,
220,
220,
3613,
62,
43775,
62,
3672,
796,
2746,
62,
3672,
1343,
705,
12,
48913,
62,
6,
1343,
1366,
62,
3672,
198,
220,
220,
220,
1090,
62,
7890,
62,
29356,
796,
1366,
62,
29356,
62,
41684,
62,
17620,
198,
220,
220,
220,
4512,
62,
17566,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
34409,
14,
6,
198,
220,
220,
220,
26571,
62,
17566,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
12102,
378,
14,
6,
198,
21928,
62,
43775,
62,
6978,
796,
3613,
62,
43775,
62,
15908,
1343,
31051,
6,
1343,
3613,
62,
43775,
62,
3672,
1343,
31051,
6,
198,
27432,
62,
13655,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
34409,
62,
13655,
14,
6,
198,
12102,
378,
62,
13655,
62,
6978,
796,
1366,
62,
15908,
1343,
31051,
12102,
378,
62,
13655,
14,
6,
198,
39873,
62,
6978,
796,
3613,
62,
43775,
62,
6978,
1343,
705,
37687,
10137,
62,
9600,
14,
6,
198,
198,
361,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
21928,
62,
43775,
62,
6978,
2599,
198,
220,
220,
220,
28686,
13,
28015,
15908,
7,
21928,
62,
43775,
62,
6978,
8,
198,
361,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
39873,
62,
6978,
2599,
198,
220,
220,
220,
28686,
13,
28015,
15908,
7,
39873,
62,
6978,
8,
198,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2922,
4981,
290,
6436,
7509,
198,
2,
16529,
1783,
198,
19849,
37,
5907,
796,
1391,
6,
35,
4851,
1565,
10354,
360,
4851,
1565,
1433,
13,
35,
4851,
1565,
92,
198,
19849,
43221,
796,
2746,
37,
5907,
58,
19849,
62,
3672,
60,
198,
40085,
7509,
62,
70,
796,
6436,
11341,
13,
324,
321,
7,
14050,
28,
9688,
62,
14050,
11,
12159,
62,
16,
28,
15,
13,
24,
11,
12159,
62,
17,
28,
15,
13,
17032,
8,
198,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8160,
5929,
2746,
198,
2,
16529,
1783,
198,
70,
796,
2746,
43221,
19510,
17147,
62,
17015,
11,
8529,
62,
10394,
11,
5128,
62,
354,
8961,
4008,
198,
70,
13,
5589,
576,
7,
22462,
28,
22462,
62,
76,
325,
62,
824,
320,
11,
6436,
7509,
28,
40085,
7509,
62,
70,
8,
198,
14050,
62,
36500,
796,
44048,
35972,
2202,
3646,
378,
559,
7,
19849,
28,
70,
11,
5766,
28,
14050,
62,
12501,
323,
62,
31412,
11,
16336,
28,
940,
11,
4235,
11639,
1084,
3256,
949,
62,
67,
12514,
28,
16,
68,
12,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20869,
28,
15,
11,
949,
62,
14050,
28,
9688,
62,
14050,
1635,
657,
13,
16,
11,
15942,
577,
28,
16,
8,
198,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
546,
309,
22854,
3526,
198,
2,
16529,
1783,
198,
6404,
62,
6978,
796,
3613,
62,
43775,
62,
6978,
1343,
705,
34960,
6,
198,
361,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
6404,
62,
6978,
2599,
198,
220,
220,
220,
28686,
13,
28015,
15908,
7,
6404,
62,
6978,
8,
198,
47423,
796,
309,
22854,
29828,
7,
6404,
62,
6978,
8,
198,
47423,
13,
2617,
62,
19849,
7,
70,
8,
198,
27432,
62,
14933,
796,
705,
34409,
62,
22462,
6,
198,
2100,
62,
14933,
796,
37250,
2100,
62,
44,
5188,
3256,
705,
2100,
62,
5432,
3955,
3256,
705,
2100,
62,
3705,
24723,
3256,
705,
2100,
62,
24723,
44,
5188,
20520,
628,
198,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27565,
290,
26571,
198,
2,
16529,
1783,
628,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2152,
11,
3440,
19590,
198,
2,
16529,
1783,
198,
361,
3440,
62,
43775,
25,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
21928,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
13466,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
13,
21928,
62,
43775,
7,
21928,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
13466,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
19031,
19590,
7675,
25,
705,
1343,
3613,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
13466,
11537,
198,
220,
220,
220,
1288,
361,
28686,
13,
6978,
13,
1069,
1023,
7,
21928,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
42861,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
308,
13,
21928,
62,
43775,
7,
21928,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
42861,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
19031,
19590,
7675,
25,
705,
1343,
3613,
62,
43775,
62,
6978,
1343,
705,
43775,
13,
42861,
11537,
628,
198,
2,
16529,
1783,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3047,
198,
2,
16529,
1783,
198,
9688,
62,
2435,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
198,
22462,
62,
22105,
796,
17635,
198,
12102,
378,
62,
77,
26224,
325,
796,
685,
37659,
13,
18943,
60,
198,
14050,
62,
36500,
13,
261,
62,
27432,
62,
27471,
3419,
198,
17566,
62,
6978,
796,
15095,
13,
4743,
672,
7,
27432,
62,
17566,
62,
6978,
1343,
705,
15211,
11537,
198,
1640,
340,
287,
2837,
7,
2676,
602,
2599,
198,
220,
220,
220,
1303,
20368,
650,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
4512,
17301,
198,
220,
220,
220,
1303,
20368,
650,
198,
220,
220,
220,
5128,
62,
70,
11,
308,
83,
62,
70,
796,
1090,
62,
7890,
62,
29356,
7,
17566,
62,
6978,
11,
4512,
62,
17566,
62,
6978,
11,
4512,
62,
13655,
62,
6978,
11,
8529,
62,
17015,
11,
8529,
62,
10394,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
11,
2593,
62,
32109,
28,
27237,
62,
32109,
11,
5046,
28,
9888,
62,
31412,
8,
198,
220,
220,
220,
2994,
62,
8612,
1352,
796,
308,
13,
27432,
62,
261,
62,
43501,
7,
15414,
62,
70,
11,
308,
83,
62,
70,
8,
198,
220,
220,
220,
2994,
62,
22105,
13,
33295,
7,
22462,
62,
8612,
1352,
8,
628,
220,
220,
220,
42118,
62,
2435,
796,
4818,
8079,
13,
19608,
8079,
13,
2197,
3419,
532,
923,
62,
2435,
198,
220,
220,
220,
3601,
7203,
4,
67,
36835,
25,
640,
25,
4064,
82,
11,
308,
62,
22462,
796,
4064,
82,
1,
4064,
357,
270,
1343,
352,
11,
42118,
62,
2435,
11,
2994,
62,
8612,
1352,
4008,
628,
220,
220,
220,
611,
357,
270,
1343,
352,
8,
4064,
6291,
62,
3849,
2100,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4263,
62,
6978,
796,
15095,
13,
4743,
672,
7,
27432,
62,
17566,
62,
6978,
1343,
705,
15211,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3254,
20540,
7,
270,
1343,
352,
11,
6291,
28,
16,
8,
628,
220,
220,
220,
611,
357,
270,
1343,
352,
8,
4064,
26571,
62,
3849,
2100,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3254,
20540,
7,
270,
1343,
352,
11,
6291,
28,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3551,
62,
6404,
7,
47423,
11,
4512,
62,
14933,
11,
45941,
13,
32604,
7,
22462,
62,
22105,
828,
340,
1343,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2994,
62,
22105,
796,
17635,
198
] | 2.891187 | 2,417 |
import pandas as pd
from catalyst.constants import LOG_LEVEL
from catalyst.exchange.utils.stats_utils import prepare_stats
from catalyst.gens.sim_engine import (
BAR,
SESSION_START
)
from logbook import Logger
log = Logger('LiveGraphClock', level=LOG_LEVEL)
| [
11748,
19798,
292,
355,
279,
67,
198,
6738,
31357,
13,
9979,
1187,
1330,
41605,
62,
2538,
18697,
198,
6738,
31357,
13,
1069,
3803,
13,
26791,
13,
34242,
62,
26791,
1330,
8335,
62,
34242,
198,
6738,
31357,
13,
70,
641,
13,
14323,
62,
18392,
1330,
357,
198,
220,
220,
220,
31597,
11,
198,
220,
220,
220,
311,
47621,
62,
2257,
7227,
198,
8,
198,
6738,
2604,
2070,
1330,
5972,
1362,
198,
198,
6404,
796,
5972,
1362,
10786,
18947,
37065,
44758,
3256,
1241,
28,
25294,
62,
2538,
18697,
8,
628
] | 3.045455 | 88 |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import inspect
from task.models import InveraTask
from api.utils import send_test_csv_report
from django.contrib.auth.models import User
from rest_framework.test import APIClient, APITestCase
from rest_framework.reverse import reverse
from rest_framework import status
TEST_RESULTS = []
RECIPIENTS = ['email@destino.com']
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
11748,
10104,
198,
198,
6738,
4876,
13,
27530,
1330,
554,
332,
64,
25714,
198,
6738,
40391,
13,
26791,
1330,
3758,
62,
9288,
62,
40664,
62,
13116,
198,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
11787,
198,
6738,
1334,
62,
30604,
13,
9288,
1330,
3486,
2149,
75,
1153,
11,
3486,
2043,
395,
20448,
198,
6738,
1334,
62,
30604,
13,
50188,
1330,
9575,
198,
6738,
1334,
62,
30604,
1330,
3722,
198,
198,
51,
6465,
62,
46274,
796,
17635,
198,
38827,
4061,
40,
15365,
796,
37250,
12888,
31,
16520,
2879,
13,
785,
20520,
628,
628,
628
] | 3.185484 | 124 |
from chill import *
source('/uufs/chpc.utah.edu/common/home/u1142914/lib/ytopt_vinu/polybench/polybench-code/stencils/seidel-2d/kernel.c')
destination('/uufs/chpc.utah.edu/common/home/u1142914/lib/ytopt_vinu/experiments/seidel-2d/tmp_files/6745.c')
procedure('kernel_seidel_2d')
loop(0)
known(' n > 2 ')
tile(0,2,16,2)
tile(0,4,16,4)
| [
6738,
20493,
1330,
1635,
198,
10459,
10786,
14,
84,
3046,
82,
14,
354,
14751,
13,
315,
993,
13,
15532,
14,
11321,
14,
11195,
14,
84,
1157,
11785,
1415,
14,
8019,
14,
88,
4852,
83,
62,
7114,
84,
14,
35428,
26968,
14,
35428,
26968,
12,
8189,
14,
26400,
2856,
82,
14,
325,
5943,
12,
17,
67,
14,
33885,
13,
66,
11537,
198,
16520,
1883,
10786,
14,
84,
3046,
82,
14,
354,
14751,
13,
315,
993,
13,
15532,
14,
11321,
14,
11195,
14,
84,
1157,
11785,
1415,
14,
8019,
14,
88,
4852,
83,
62,
7114,
84,
14,
23100,
6800,
14,
325,
5943,
12,
17,
67,
14,
22065,
62,
16624,
14,
3134,
2231,
13,
66,
11537,
198,
1676,
771,
495,
10786,
33885,
62,
325,
5943,
62,
17,
67,
11537,
198,
26268,
7,
15,
8,
198,
198,
4002,
10786,
299,
1875,
362,
705,
8,
198,
198,
40927,
7,
15,
11,
17,
11,
1433,
11,
17,
8,
198,
40927,
7,
15,
11,
19,
11,
1433,
11,
19,
8,
198
] | 2.04878 | 164 |
import json
import aiohttp
| [
11748,
33918,
198,
198,
11748,
257,
952,
4023,
628,
628,
198
] | 2.909091 | 11 |
"""Unit tests for nautobot_device_onboarding.netdev_keeper module and its classes.
(c) 2020-2021 Network To Code
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 socket import gaierror
from unittest import mock
from django.test import TestCase
from nautobot.dcim.models import Site, DeviceRole, Platform
from nautobot_device_onboarding.exceptions import OnboardException
from nautobot_device_onboarding.helpers import onboarding_task_fqdn_to_ip
from nautobot_device_onboarding.models import OnboardingTask
| [
37811,
26453,
5254,
329,
299,
2306,
672,
313,
62,
25202,
62,
261,
27794,
13,
3262,
7959,
62,
13884,
8265,
290,
663,
6097,
13,
198,
198,
7,
66,
8,
12131,
12,
1238,
2481,
7311,
1675,
6127,
198,
26656,
15385,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
5832,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
1639,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
28042,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
17080,
6169,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
54,
10554,
12425,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
6214,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2475,
20597,
739,
262,
13789,
13,
198,
37811,
198,
198,
6738,
17802,
1330,
31986,
959,
1472,
198,
6738,
555,
715,
395,
1330,
15290,
198,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
198,
6738,
299,
2306,
672,
313,
13,
17896,
320,
13,
27530,
1330,
14413,
11,
16232,
47445,
11,
19193,
198,
198,
6738,
299,
2306,
672,
313,
62,
25202,
62,
261,
27794,
13,
1069,
11755,
1330,
1550,
3526,
16922,
198,
6738,
299,
2306,
672,
313,
62,
25202,
62,
261,
27794,
13,
16794,
364,
1330,
25863,
278,
62,
35943,
62,
69,
80,
32656,
62,
1462,
62,
541,
198,
6738,
299,
2306,
672,
313,
62,
25202,
62,
261,
27794,
13,
27530,
1330,
1550,
27794,
25714,
628
] | 3.630037 | 273 |
# Created by ay27 at 17/4/9
import os
import matplotlib.pyplot as plt
import struct
import numpy as np
if __name__ == '__main__':
# read_image('../../data/ilsvrc2012/img.bin')
# read_label('../../data/ilsvrc2012/label.bin', '../../data/ilsvrc2012/val.txt')
# read_image('../../build/cifar100_train_image.bin')
# read_label('../../build/cifar100_train_label.bin')
read_image('../../build/val_data_8.bin')
for i in range(10):
read_label('../../build/val_label_%d.bin' % i)
# labels = []
# for i in range(10):
# labels.append(read_label('../../build/val_label_%d.bin' % i))
#
# ground = []
# with open('../../build/shuffled_list') as file:
# ground.append() | [
2,
15622,
416,
38762,
1983,
379,
1596,
14,
19,
14,
24,
198,
11748,
28686,
198,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
2878,
198,
11748,
299,
32152,
355,
45941,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
1100,
62,
9060,
10786,
40720,
40720,
7890,
14,
4487,
85,
6015,
6999,
14,
9600,
13,
8800,
11537,
198,
220,
220,
220,
1303,
1100,
62,
18242,
10786,
40720,
40720,
7890,
14,
4487,
85,
6015,
6999,
14,
18242,
13,
8800,
3256,
705,
40720,
40720,
7890,
14,
4487,
85,
6015,
6999,
14,
2100,
13,
14116,
11537,
198,
220,
220,
220,
1303,
1100,
62,
9060,
10786,
40720,
40720,
11249,
14,
66,
361,
283,
3064,
62,
27432,
62,
9060,
13,
8800,
11537,
198,
220,
220,
220,
1303,
1100,
62,
18242,
10786,
40720,
40720,
11249,
14,
66,
361,
283,
3064,
62,
27432,
62,
18242,
13,
8800,
11537,
628,
220,
220,
220,
1100,
62,
9060,
10786,
40720,
40720,
11249,
14,
2100,
62,
7890,
62,
23,
13,
8800,
11537,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
940,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1100,
62,
18242,
10786,
40720,
40720,
11249,
14,
2100,
62,
18242,
62,
4,
67,
13,
8800,
6,
4064,
1312,
8,
628,
220,
220,
220,
1303,
14722,
796,
17635,
198,
220,
220,
220,
1303,
329,
1312,
287,
2837,
7,
940,
2599,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
14722,
13,
33295,
7,
961,
62,
18242,
10786,
40720,
40720,
11249,
14,
2100,
62,
18242,
62,
4,
67,
13,
8800,
6,
4064,
1312,
4008,
198,
220,
220,
220,
1303,
198,
220,
220,
220,
1303,
2323,
796,
17635,
198,
220,
220,
220,
1303,
351,
1280,
10786,
40720,
40720,
11249,
14,
1477,
1648,
992,
62,
4868,
11537,
355,
2393,
25,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2323,
13,
33295,
3419
] | 2.329073 | 313 |
# Copyright (c) Pymatgen Development Team.
# Distributed under the terms of the MIT License.
"""
Test for the piezo tensor class
"""
__author__ = "Shyam Dwaraknath"
__version__ = "0.1"
__maintainer__ = "Shyam Dwaraknath"
__email__ = "shyamd@lbl.gov"
__status__ = "Development"
__date__ = "4/1/16"
import os
import unittest
import numpy as np
from pymatgen.analysis.piezo import PiezoTensor
from pymatgen.util.testing import PymatgenTest
if __name__ == "__main__":
unittest.main()
| [
2,
15069,
357,
66,
8,
350,
4948,
265,
5235,
7712,
4816,
13,
198,
2,
4307,
6169,
739,
262,
2846,
286,
262,
17168,
13789,
13,
628,
198,
37811,
198,
14402,
329,
262,
2508,
10872,
11192,
273,
1398,
198,
37811,
198,
198,
834,
9800,
834,
796,
366,
2484,
88,
321,
21469,
461,
77,
776,
1,
198,
834,
9641,
834,
796,
366,
15,
13,
16,
1,
198,
834,
76,
2913,
10613,
834,
796,
366,
2484,
88,
321,
21469,
461,
77,
776,
1,
198,
834,
12888,
834,
796,
366,
1477,
88,
28745,
31,
75,
2436,
13,
9567,
1,
198,
834,
13376,
834,
796,
366,
41206,
1,
198,
834,
4475,
834,
796,
366,
19,
14,
16,
14,
1433,
1,
198,
198,
11748,
28686,
198,
11748,
555,
715,
395,
198,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
279,
4948,
265,
5235,
13,
20930,
13,
21749,
10872,
1330,
21690,
10872,
51,
22854,
198,
6738,
279,
4948,
265,
5235,
13,
22602,
13,
33407,
1330,
350,
4948,
265,
5235,
14402,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 2.636364 | 187 |
# Copyright 2011 Justin Santa Barbara
# 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.
"""
Driver base-classes:
(Beginning of) the contract that compute drivers must follow, and shared
types that support that contract
"""
import sys
from oslo_log import log as logging
from oslo_utils import importutils
import nova.conf
from nova.i18n import _, _LE, _LI
from nova import utils
from nova.virt import event as virtevent
CONF = nova.conf.CONF
LOG = logging.getLogger(__name__)
def get_block_device_info(instance, block_device_mapping):
"""Converts block device mappings for an instance to driver format.
Virt drivers expect block device mapping to be presented in the format
of a dict containing the following keys:
- root_device_name: device name of the root disk
- ephemerals: a (potentially empty) list of DriverEphemeralBlockDevice
instances
- swap: An instance of DriverSwapBlockDevice or None
- block_device_mapping: a (potentially empty) list of
DriverVolumeBlockDevice or any of it's more
specialized subclasses.
"""
from nova.virt import block_device as virt_block_device
block_device_info = {
'root_device_name': instance.root_device_name,
'ephemerals': virt_block_device.convert_ephemerals(
block_device_mapping),
'block_device_mapping':
virt_block_device.convert_all_volumes(*block_device_mapping)
}
swap_list = virt_block_device.convert_swap(block_device_mapping)
block_device_info['swap'] = virt_block_device.get_swap(swap_list)
return block_device_info
def load_compute_driver(virtapi, compute_driver=None):
"""Load a compute driver module.
Load the compute driver module specified by the compute_driver
configuration option or, if supplied, the driver name supplied as an
argument.
Compute drivers constructors take a VirtAPI object as their first object
and this must be supplied.
:param virtapi: a VirtAPI instance
:param compute_driver: a compute driver name to override the config opt
:returns: a ComputeDriver instance
"""
if not compute_driver:
compute_driver = CONF.compute_driver
if not compute_driver:
LOG.error(_LE("Compute driver option required, but not specified"))
sys.exit(1)
LOG.info(_LI("Loading compute driver '%s'"), compute_driver)
try:
driver = importutils.import_object(
'nova.virt.%s' % compute_driver,
virtapi)
return utils.check_isinstance(driver, ComputeDriver)
except ImportError:
LOG.exception(_LE("Unable to load the virtualization driver"))
sys.exit(1)
| [
2,
15069,
2813,
10799,
8909,
16685,
198,
2,
1439,
6923,
33876,
13,
198,
2,
198,
2,
220,
220,
220,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
345,
743,
198,
2,
220,
220,
220,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
921,
743,
7330,
198,
2,
220,
220,
220,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
220,
220,
220,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
220,
220,
220,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
42881,
198,
2,
220,
220,
220,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
4091,
262,
198,
2,
220,
220,
220,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
11247,
198,
2,
220,
220,
220,
739,
262,
13789,
13,
198,
198,
37811,
198,
32103,
2779,
12,
37724,
25,
628,
220,
220,
220,
357,
45198,
286,
8,
262,
2775,
326,
24061,
6643,
1276,
1061,
11,
290,
4888,
198,
220,
220,
220,
3858,
326,
1104,
326,
2775,
198,
37811,
198,
198,
11748,
25064,
198,
198,
6738,
28686,
5439,
62,
6404,
1330,
2604,
355,
18931,
198,
6738,
28686,
5439,
62,
26791,
1330,
1330,
26791,
198,
198,
11748,
645,
6862,
13,
10414,
198,
6738,
645,
6862,
13,
72,
1507,
77,
1330,
4808,
11,
4808,
2538,
11,
4808,
31271,
198,
6738,
645,
6862,
1330,
3384,
4487,
198,
6738,
645,
6862,
13,
48940,
1330,
1785,
355,
5709,
660,
1151,
198,
198,
10943,
37,
796,
645,
6862,
13,
10414,
13,
10943,
37,
198,
25294,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628,
198,
198,
4299,
651,
62,
9967,
62,
25202,
62,
10951,
7,
39098,
11,
2512,
62,
25202,
62,
76,
5912,
2599,
198,
220,
220,
220,
37227,
3103,
24040,
2512,
3335,
285,
39242,
329,
281,
4554,
284,
4639,
5794,
13,
628,
220,
220,
220,
11285,
6643,
1607,
2512,
3335,
16855,
284,
307,
5545,
287,
262,
5794,
198,
220,
220,
220,
286,
257,
8633,
7268,
262,
1708,
8251,
25,
628,
220,
220,
220,
532,
6808,
62,
25202,
62,
3672,
25,
3335,
1438,
286,
262,
6808,
11898,
198,
220,
220,
220,
532,
2462,
39557,
874,
25,
257,
357,
13059,
3746,
6565,
8,
1351,
286,
12434,
13807,
39557,
282,
12235,
24728,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10245,
198,
220,
220,
220,
532,
16075,
25,
1052,
4554,
286,
12434,
10462,
499,
12235,
24728,
393,
6045,
198,
220,
220,
220,
532,
2512,
62,
25202,
62,
76,
5912,
25,
257,
357,
13059,
3746,
6565,
8,
1351,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12434,
31715,
12235,
24728,
393,
597,
286,
340,
338,
517,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16976,
850,
37724,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
422,
645,
6862,
13,
48940,
1330,
2512,
62,
25202,
355,
4118,
62,
9967,
62,
25202,
628,
220,
220,
220,
2512,
62,
25202,
62,
10951,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
15763,
62,
25202,
62,
3672,
10354,
4554,
13,
15763,
62,
25202,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
538,
39557,
874,
10354,
4118,
62,
9967,
62,
25202,
13,
1102,
1851,
62,
538,
39557,
874,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2512,
62,
25202,
62,
76,
5912,
828,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9967,
62,
25202,
62,
76,
5912,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4118,
62,
9967,
62,
25202,
13,
1102,
1851,
62,
439,
62,
10396,
8139,
46491,
9967,
62,
25202,
62,
76,
5912,
8,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
16075,
62,
4868,
796,
4118,
62,
9967,
62,
25202,
13,
1102,
1851,
62,
2032,
499,
7,
9967,
62,
25202,
62,
76,
5912,
8,
198,
220,
220,
220,
2512,
62,
25202,
62,
10951,
17816,
2032,
499,
20520,
796,
4118,
62,
9967,
62,
25202,
13,
1136,
62,
2032,
499,
7,
2032,
499,
62,
4868,
8,
628,
220,
220,
220,
1441,
2512,
62,
25202,
62,
10951,
628,
628,
628,
628,
198,
4299,
3440,
62,
5589,
1133,
62,
26230,
7,
48940,
15042,
11,
24061,
62,
26230,
28,
14202,
2599,
198,
220,
220,
220,
37227,
8912,
257,
24061,
4639,
8265,
13,
628,
220,
220,
220,
8778,
262,
24061,
4639,
8265,
7368,
416,
262,
24061,
62,
26230,
198,
220,
220,
220,
8398,
3038,
393,
11,
611,
14275,
11,
262,
4639,
1438,
14275,
355,
281,
198,
220,
220,
220,
4578,
13,
628,
220,
220,
220,
3082,
1133,
6643,
5678,
669,
1011,
257,
11285,
17614,
2134,
355,
511,
717,
2134,
198,
220,
220,
220,
290,
428,
1276,
307,
14275,
13,
628,
220,
220,
220,
1058,
17143,
4118,
15042,
25,
257,
11285,
17614,
4554,
198,
220,
220,
220,
1058,
17143,
24061,
62,
26230,
25,
257,
24061,
4639,
1438,
284,
20957,
262,
4566,
2172,
198,
220,
220,
220,
1058,
7783,
82,
25,
257,
3082,
1133,
32103,
4554,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
407,
24061,
62,
26230,
25,
198,
220,
220,
220,
220,
220,
220,
220,
24061,
62,
26230,
796,
7102,
37,
13,
5589,
1133,
62,
26230,
628,
220,
220,
220,
611,
407,
24061,
62,
26230,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41605,
13,
18224,
28264,
2538,
7203,
7293,
1133,
4639,
3038,
2672,
11,
475,
407,
7368,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628,
220,
220,
220,
41605,
13,
10951,
28264,
31271,
7203,
19031,
24061,
4639,
705,
4,
82,
6,
12340,
24061,
62,
26230,
8,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4639,
796,
1330,
26791,
13,
11748,
62,
15252,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
38438,
13,
48940,
13,
4,
82,
6,
4064,
24061,
62,
26230,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4118,
15042,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
3384,
4487,
13,
9122,
62,
271,
39098,
7,
26230,
11,
3082,
1133,
32103,
8,
198,
220,
220,
220,
2845,
17267,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
41605,
13,
1069,
4516,
28264,
2538,
7203,
3118,
540,
284,
3440,
262,
7166,
1634,
4639,
48774,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628
] | 2.870322 | 1,149 |
from direct.showbase import DirectObject
from otp.otpbase import OTPGlobals
import sys
from direct.gui.DirectGui import *
from pandac.PandaModules import *
from otp.otpbase import OTPLocalizer
| [
6738,
1277,
13,
12860,
8692,
1330,
4128,
10267,
198,
6738,
30972,
79,
13,
313,
79,
8692,
1330,
21676,
6968,
75,
672,
874,
198,
11748,
25064,
198,
6738,
1277,
13,
48317,
13,
13470,
8205,
72,
1330,
1635,
198,
6738,
19798,
330,
13,
47,
5282,
5841,
5028,
1330,
1635,
198,
6738,
30972,
79,
13,
313,
79,
8692,
1330,
21676,
6489,
4374,
7509,
198
] | 3.163934 | 61 |
import argparse
import json
import numpy as np
import pandas as pd
import os
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split
from sklearn.metrics import classification_report,f1_score
from keras.models import Sequential
from keras.layers import Dense, Dropout
from keras import backend as K
from keras.utils.vis_utils import plot_model
from sklearn.externals import joblib
import time
def get_embeddings(sentences_list,layer_json):
'''
:param sentences_list: the path o the sentences.txt
:param layer_json: the path of the json file that contains the embeddings of the sentences
:return: Dictionary with key each sentence of the sentences_list and as value the embedding
'''
sentences = dict()#dict with key the index of each line of the sentences_list.txt and as value the sentence
embeddings = dict()##dict with key the index of each sentence and as value the its embedding
sentence_emb = dict()#key:sentence,value:its embedding
with open(sentences_list,'r') as file:
for index,line in enumerate(file):
sentences[index] = line.strip()
with open(layer_json, 'r',encoding='utf-8') as f:
for line in f:
embeddings[json.loads(line)['linex_index']] = np.asarray(json.loads(line)['features'])
for key,value in sentences.items():
sentence_emb[value] = embeddings[key]
return sentence_emb
def train_classifier(sentences_list,layer_json,dataset_csv,filename):
'''
:param sentences_list: the path o the sentences.txt
:param layer_json: the path of the json file that contains the embeddings of the sentences
:param dataset_csv: the path of the dataset
:param filename: The path of the pickle file that the model will be stored
:return:
'''
dataset = pd.read_csv(dataset_csv)
bert_dict = get_embeddings(sentences_list,layer_json)
length = list()
sentence_emb = list()
previous_emb = list()
next_list = list()
section_list = list()
label = list()
errors = 0
for row in dataset.iterrows():
sentence = row[1][0].strip()
previous = row[1][1].strip()
nexts = row[1][2].strip()
section = row[1][3].strip()
if sentence in bert_dict:
sentence_emb.append(bert_dict[sentence])
else:
sentence_emb.append(np.zeros(768))
print(sentence)
errors += 1
if previous in bert_dict:
previous_emb.append(bert_dict[previous])
else:
previous_emb.append(np.zeros(768))
if nexts in bert_dict:
next_list.append(bert_dict[nexts])
else:
next_list.append(np.zeros(768))
if section in bert_dict:
section_list.append(bert_dict[section])
else:
section_list.append(np.zeros(768))
length.append(row[1][4])
label.append(row[1][5])
sentence_emb = np.asarray(sentence_emb)
print(sentence_emb.shape)
next_emb = np.asarray(next_list)
print(next_emb.shape)
previous_emb = np.asarray(previous_emb)
print(previous_emb.shape)
section_emb = np.asarray(section_list)
print(sentence_emb.shape)
length = np.asarray(length)
print(length.shape)
label = np.asarray(label)
print(errors)
features = np.concatenate([sentence_emb, previous_emb, next_emb,section_emb], axis=1)
features = np.column_stack([features, length]) # np.append(features,length,axis=1)
print(features.shape)
X_train, X_val, y_train, y_val = train_test_split(features, label, test_size=0.33, random_state=42)
log = LogisticRegression(random_state=0, solver='newton-cg', max_iter=1000, C=0.1)
log.fit(X_train, y_train)
#save the model
_ = joblib.dump(log, filename, compress=9)
predictions = log.predict(X_val)
print("###########################################")
print("Results using embeddings from the",layer_json,"file")
print(classification_report(y_val, predictions))
print("F1 score using Logistic Regression:",f1_score(y_val, predictions))
print("###########################################")
#train a DNN
f1_results = list()
for i in range(3):
model = Sequential()
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dense(128, activation='relu', trainable=True))
model.add(Dropout(0.30))
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dropout(0.25))
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dropout(0.35))
model.add(Dense(1, activation='sigmoid'))
# compile network
model.compile(loss='binary_crossentropy', optimizer='sgd', metrics=[f1])
# fit network
model.fit(X_train, y_train, epochs=100, batch_size=64)
loss, f_1 = model.evaluate(X_val, y_val, verbose=1)
print('\nTest F1: %f' % (f_1 * 100))
f1_results.append(f_1)
model = None
print("###########################################")
print("Results using embeddings from the", layer_json, "file")
# evaluate
print(np.mean(f1_results))
print("###########################################")
def parameter_tuning_LR(sentences_list,layer_json,dataset_csv):
'''
:param sentences_list: the path o the sentences.txt
:param layer_json: the path of the json file that contains the embeddings of the sentences
:param dataset_csv: the path of the dataset
:return:
'''
dataset = pd.read_csv(dataset_csv)
bert_dict = get_embeddings(sentences_list,layer_json)
length = list()
sentence_emb = list()
previous_emb = list()
next_list = list()
section_list = list()
label = list()
errors = 0
for row in dataset.iterrows():
sentence = row[1][0].strip()
previous = row[1][1].strip()
nexts = row[1][2].strip()
section = row[1][3].strip()
if sentence in bert_dict:
sentence_emb.append(bert_dict[sentence])
else:
sentence_emb.append(np.zeros(768))
print(sentence)
errors += 1
if previous in bert_dict:
previous_emb.append(bert_dict[previous])
else:
previous_emb.append(np.zeros(768))
if nexts in bert_dict:
next_list.append(bert_dict[nexts])
else:
next_list.append(np.zeros(768))
if section in bert_dict:
section_list.append(bert_dict[section])
else:
section_list.append(np.zeros(768))
length.append(row[1][4])
label.append(row[1][5])
sentence_emb = np.asarray(sentence_emb)
print(sentence_emb.shape)
next_emb = np.asarray(next_list)
print(next_emb.shape)
previous_emb = np.asarray(previous_emb)
print(previous_emb.shape)
section_emb = np.asarray(section_list)
print(sentence_emb.shape)
length = np.asarray(length)
print(length.shape)
label = np.asarray(label)
print(errors)
features = np.concatenate([sentence_emb, previous_emb, next_emb,section_emb], axis=1)
features = np.column_stack([features, length])
print(features.shape)
X_train, X_val, y_train, y_val = train_test_split(features, label, test_size=0.33, random_state=42)
C = [0.1,1,2,5,10]
solver = ['newton-cg','saga','sag']
best_params = dict()
best_score = 0.0
for c in C:
for s in solver:
start = time.time()
log = LogisticRegression(random_state=0, solver=s, max_iter=1000, C=c)
log.fit(X_train, y_train)
predictions = log.predict(X_val)
print("###########################################")
print("LR with C =",c,'and solver = ',s)
print("Results using embeddings from the", layer_json, "file")
print(classification_report(y_val, predictions))
f1 = f1_score(y_val, predictions)
if f1 > best_score:
best_score = f1
best_params['c'] = c
best_params['solver'] = s
print("F1 score using Logistic Regression:",f1)
print("###########################################")
end = time.time()
running_time = end - start
print("Running time:"+str(running_time))
def visualize_DNN(file_to_save):
'''
Save the DNN architecture to a png file. Better use the Visulize_DNN.ipynd
:param file_to_save: the png file that the architecture of the DNN will be saved.
:return: None
'''
model = Sequential()
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dense(128, activation='relu', trainable=True))
model.add(Dropout(0.30))
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dropout(0.25))
model.add(Dense(64, activation='relu', trainable=True))
model.add(Dropout(0.35))
model.add(Dense(1, activation='sigmoid'))
plot_model(model, to_file=file_to_save, show_shapes=True)
if __name__ == '__main__':
#save_model('sentences_list.txt','Fudan_output_layer_-1.json','train_sentences1.csv','summarizer1.pkl')
ap = argparse.ArgumentParser()
ap.add_argument("-s", "--sentences", required=True, help="sentences list")
ap.add_argument("-o", "--output", required=True, help="output")
ap.add_argument("-ts", "--train set", required=True, help="path to train set")
ap.add_argument("-sp", "--summarizer path", required=True, help="path to save summarizer")
args = vars(ap.parse_args())
layer = train_classifier(args['sentences'], args['output'], args['train set'],args['summarizer path'])
#layer_1 = train_classifier('sentences_list.txt', 'new_output_layer_-1.json', 'train_sentences1.csv','fine_tune_BERT_sentence_classification1.pkl')
#layer_2 = train_classifier('sentences_list.txt','new_output_layer_-2.json','train_sentences1.csv','fine_tune_BERT_sentence_classification2.pkl')
#layer_3 = train_classifier('sentences_list.txt','new_output_layer_-3.json','train_sentences1.csv','fine_tune_BERT_sentence_classification3.pkl')
#layer_4 = train_classifier('sentences_list.txt','new_output_layer_-4.json','train_sentences1.csv','fine_tune_BERT_sentence_classification4.pkl')
#tuning = parameter_tuning_LR('sentences_list.txt','new_output_layer_-1.json','train_sentences1.csv')
#layer_1 = train_classifier('sentences_list.txt','output_layer_-1.json','train_sentences1.csv','fine_tune_BERT_sentence_classification.pkl')
#layer_2 = train_classifier('sentences_list.txt','output_layer_-2.json','train_sentences1.csv','fine_tune_BERT_sentence_classification.pkl')
#layer_3 = train_classifier('sentences_list.txt','output_layer_-3.json','train_sentences1.csv','fine_tune_BERT_sentence_classification.pkl')
#layer_4 = train_classifier('sentences_list.txt','output_layer_-4.json','train_sentences1.csv','fine_tune_BERT_sentence_classification.pkl')
| [
11748,
1822,
29572,
198,
11748,
33918,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
19798,
292,
355,
279,
67,
198,
11748,
28686,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
5972,
2569,
8081,
2234,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
17923,
62,
13116,
11,
69,
16,
62,
26675,
198,
6738,
41927,
292,
13,
27530,
1330,
24604,
1843,
198,
6738,
41927,
292,
13,
75,
6962,
1330,
360,
1072,
11,
14258,
448,
198,
6738,
41927,
292,
1330,
30203,
355,
509,
198,
6738,
41927,
292,
13,
26791,
13,
4703,
62,
26791,
1330,
7110,
62,
19849,
198,
6738,
1341,
35720,
13,
1069,
759,
874,
1330,
1693,
8019,
198,
11748,
640,
628,
198,
4299,
651,
62,
20521,
67,
654,
7,
34086,
3007,
62,
4868,
11,
29289,
62,
17752,
2599,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
1058,
17143,
13439,
62,
4868,
25,
262,
3108,
267,
262,
13439,
13,
14116,
198,
220,
220,
220,
1058,
17143,
7679,
62,
17752,
25,
262,
3108,
286,
262,
33918,
2393,
326,
4909,
262,
11525,
67,
654,
286,
262,
13439,
198,
220,
220,
220,
1058,
7783,
25,
28261,
351,
1994,
1123,
6827,
286,
262,
13439,
62,
4868,
290,
355,
1988,
262,
11525,
12083,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
13439,
796,
8633,
3419,
2,
11600,
351,
1994,
262,
6376,
286,
1123,
1627,
286,
262,
13439,
62,
4868,
13,
14116,
290,
355,
1988,
262,
6827,
198,
220,
220,
220,
11525,
67,
654,
796,
8633,
3419,
2235,
11600,
351,
1994,
262,
6376,
286,
1123,
6827,
290,
355,
1988,
262,
663,
11525,
12083,
198,
220,
220,
220,
6827,
62,
24419,
796,
8633,
3419,
2,
2539,
25,
34086,
594,
11,
8367,
25,
896,
11525,
12083,
628,
220,
220,
220,
351,
1280,
7,
34086,
3007,
62,
4868,
4032,
81,
11537,
355,
2393,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
6376,
11,
1370,
287,
27056,
378,
7,
7753,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13439,
58,
9630,
60,
796,
1627,
13,
36311,
3419,
628,
220,
220,
220,
351,
1280,
7,
29289,
62,
17752,
11,
705,
81,
3256,
12685,
7656,
11639,
40477,
12,
23,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11525,
67,
654,
58,
17752,
13,
46030,
7,
1370,
8,
17816,
1370,
87,
62,
9630,
6,
11907,
796,
45941,
13,
292,
18747,
7,
17752,
13,
46030,
7,
1370,
8,
17816,
40890,
6,
12962,
628,
628,
220,
220,
220,
329,
1994,
11,
8367,
287,
13439,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
6827,
62,
24419,
58,
8367,
60,
796,
11525,
67,
654,
58,
2539,
60,
628,
198,
220,
220,
220,
1441,
6827,
62,
24419,
198,
198,
4299,
4512,
62,
4871,
7483,
7,
34086,
3007,
62,
4868,
11,
29289,
62,
17752,
11,
19608,
292,
316,
62,
40664,
11,
34345,
2599,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
1058,
17143,
13439,
62,
4868,
25,
262,
3108,
267,
262,
13439,
13,
14116,
198,
220,
220,
220,
1058,
17143,
7679,
62,
17752,
25,
262,
3108,
286,
262,
33918,
2393,
326,
4909,
262,
11525,
67,
654,
286,
262,
13439,
198,
220,
220,
220,
1058,
17143,
27039,
62,
40664,
25,
262,
3108,
286,
262,
27039,
198,
220,
220,
220,
1058,
17143,
29472,
25,
383,
3108,
286,
262,
2298,
293,
2393,
326,
262,
2746,
481,
307,
8574,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
27039,
796,
279,
67,
13,
961,
62,
40664,
7,
19608,
292,
316,
62,
40664,
8,
198,
220,
220,
220,
275,
861,
62,
11600,
796,
651,
62,
20521,
67,
654,
7,
34086,
3007,
62,
4868,
11,
29289,
62,
17752,
8,
628,
198,
220,
220,
220,
4129,
796,
1351,
3419,
198,
220,
220,
220,
6827,
62,
24419,
796,
1351,
3419,
198,
220,
220,
220,
2180,
62,
24419,
796,
1351,
3419,
198,
220,
220,
220,
1306,
62,
4868,
796,
1351,
3419,
198,
220,
220,
220,
2665,
62,
4868,
796,
1351,
3419,
198,
220,
220,
220,
6167,
796,
1351,
3419,
198,
220,
220,
220,
8563,
796,
657,
198,
220,
220,
220,
329,
5752,
287,
27039,
13,
2676,
8516,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
6827,
796,
5752,
58,
16,
7131,
15,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2180,
796,
5752,
58,
16,
7131,
16,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
82,
796,
5752,
58,
16,
7131,
17,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2665,
796,
5752,
58,
16,
7131,
18,
4083,
36311,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6827,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6827,
62,
24419,
13,
33295,
7,
4835,
62,
11600,
58,
34086,
594,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6827,
62,
24419,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
34086,
594,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8563,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2180,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
62,
24419,
13,
33295,
7,
4835,
62,
11600,
58,
3866,
1442,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
62,
24419,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1306,
82,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
4868,
13,
33295,
7,
4835,
62,
11600,
58,
19545,
82,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
4868,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2665,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2665,
62,
4868,
13,
33295,
7,
4835,
62,
11600,
58,
5458,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2665,
62,
4868,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
4129,
13,
33295,
7,
808,
58,
16,
7131,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
6167,
13,
33295,
7,
808,
58,
16,
7131,
20,
12962,
628,
220,
220,
220,
6827,
62,
24419,
796,
45941,
13,
292,
18747,
7,
34086,
594,
62,
24419,
8,
198,
220,
220,
220,
3601,
7,
34086,
594,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
1306,
62,
24419,
796,
45941,
13,
292,
18747,
7,
19545,
62,
4868,
8,
198,
220,
220,
220,
3601,
7,
19545,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
2180,
62,
24419,
796,
45941,
13,
292,
18747,
7,
3866,
1442,
62,
24419,
8,
198,
220,
220,
220,
3601,
7,
3866,
1442,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
2665,
62,
24419,
796,
45941,
13,
292,
18747,
7,
5458,
62,
4868,
8,
198,
220,
220,
220,
3601,
7,
34086,
594,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
4129,
796,
45941,
13,
292,
18747,
7,
13664,
8,
198,
220,
220,
220,
3601,
7,
13664,
13,
43358,
8,
198,
220,
220,
220,
6167,
796,
45941,
13,
292,
18747,
7,
18242,
8,
198,
220,
220,
220,
3601,
7,
48277,
8,
198,
220,
220,
220,
3033,
796,
45941,
13,
1102,
9246,
268,
378,
26933,
34086,
594,
62,
24419,
11,
2180,
62,
24419,
11,
1306,
62,
24419,
11,
5458,
62,
24419,
4357,
16488,
28,
16,
8,
198,
220,
220,
220,
3033,
796,
45941,
13,
28665,
62,
25558,
26933,
40890,
11,
4129,
12962,
220,
1303,
45941,
13,
33295,
7,
40890,
11,
13664,
11,
22704,
28,
16,
8,
198,
220,
220,
220,
3601,
7,
40890,
13,
43358,
8,
628,
220,
220,
220,
1395,
62,
27432,
11,
1395,
62,
2100,
11,
331,
62,
27432,
11,
331,
62,
2100,
796,
4512,
62,
9288,
62,
35312,
7,
40890,
11,
6167,
11,
1332,
62,
7857,
28,
15,
13,
2091,
11,
4738,
62,
5219,
28,
3682,
8,
628,
220,
220,
220,
2604,
796,
5972,
2569,
8081,
2234,
7,
25120,
62,
5219,
28,
15,
11,
1540,
332,
11639,
3605,
1122,
12,
66,
70,
3256,
3509,
62,
2676,
28,
12825,
11,
327,
28,
15,
13,
16,
8,
198,
220,
220,
220,
2604,
13,
11147,
7,
55,
62,
27432,
11,
331,
62,
27432,
8,
628,
220,
220,
220,
1303,
21928,
262,
2746,
198,
220,
220,
220,
4808,
796,
1693,
8019,
13,
39455,
7,
6404,
11,
29472,
11,
27413,
28,
24,
8,
628,
220,
220,
220,
16277,
796,
2604,
13,
79,
17407,
7,
55,
62,
2100,
8,
198,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
198,
220,
220,
220,
3601,
7203,
25468,
1262,
11525,
67,
654,
422,
262,
1600,
29289,
62,
17752,
553,
7753,
4943,
198,
220,
220,
220,
3601,
7,
4871,
2649,
62,
13116,
7,
88,
62,
2100,
11,
16277,
4008,
198,
220,
220,
220,
3601,
7203,
37,
16,
4776,
1262,
5972,
2569,
3310,
2234,
25,
1600,
69,
16,
62,
26675,
7,
88,
62,
2100,
11,
16277,
4008,
198,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
628,
198,
220,
220,
220,
1303,
27432,
257,
360,
6144,
198,
220,
220,
220,
277,
16,
62,
43420,
796,
1351,
3419,
198,
220,
220,
220,
329,
1312,
287,
2837,
7,
18,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
796,
24604,
1843,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
12762,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
1270,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
1495,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
2327,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
16,
11,
14916,
11639,
82,
17225,
1868,
6,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
17632,
3127,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
5589,
576,
7,
22462,
11639,
39491,
62,
19692,
298,
28338,
3256,
6436,
7509,
11639,
82,
21287,
3256,
20731,
41888,
69,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4197,
3127,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
13,
11147,
7,
55,
62,
27432,
11,
331,
62,
27432,
11,
36835,
82,
28,
3064,
11,
15458,
62,
7857,
28,
2414,
8,
628,
628,
220,
220,
220,
220,
220,
220,
220,
2994,
11,
277,
62,
16,
796,
2746,
13,
49786,
7,
55,
62,
2100,
11,
331,
62,
2100,
11,
15942,
577,
28,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
59,
77,
14402,
376,
16,
25,
4064,
69,
6,
4064,
357,
69,
62,
16,
1635,
1802,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
277,
16,
62,
43420,
13,
33295,
7,
69,
62,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2746,
796,
6045,
628,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
198,
220,
220,
220,
3601,
7203,
25468,
1262,
11525,
67,
654,
422,
262,
1600,
7679,
62,
17752,
11,
366,
7753,
4943,
198,
220,
220,
220,
1303,
13446,
198,
220,
220,
220,
3601,
7,
37659,
13,
32604,
7,
69,
16,
62,
43420,
4008,
198,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
628,
198,
4299,
11507,
62,
28286,
278,
62,
35972,
7,
34086,
3007,
62,
4868,
11,
29289,
62,
17752,
11,
19608,
292,
316,
62,
40664,
2599,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
1058,
17143,
13439,
62,
4868,
25,
262,
3108,
267,
262,
13439,
13,
14116,
198,
220,
220,
220,
1058,
17143,
7679,
62,
17752,
25,
262,
3108,
286,
262,
33918,
2393,
326,
4909,
262,
11525,
67,
654,
286,
262,
13439,
198,
220,
220,
220,
1058,
17143,
27039,
62,
40664,
25,
262,
3108,
286,
262,
27039,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
27039,
796,
279,
67,
13,
961,
62,
40664,
7,
19608,
292,
316,
62,
40664,
8,
198,
220,
220,
220,
275,
861,
62,
11600,
796,
651,
62,
20521,
67,
654,
7,
34086,
3007,
62,
4868,
11,
29289,
62,
17752,
8,
628,
198,
220,
220,
220,
4129,
796,
1351,
3419,
198,
220,
220,
220,
6827,
62,
24419,
796,
1351,
3419,
198,
220,
220,
220,
2180,
62,
24419,
796,
1351,
3419,
198,
220,
220,
220,
1306,
62,
4868,
796,
1351,
3419,
198,
220,
220,
220,
2665,
62,
4868,
796,
1351,
3419,
198,
220,
220,
220,
6167,
796,
1351,
3419,
198,
220,
220,
220,
8563,
796,
657,
198,
220,
220,
220,
329,
5752,
287,
27039,
13,
2676,
8516,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
6827,
796,
5752,
58,
16,
7131,
15,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2180,
796,
5752,
58,
16,
7131,
16,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
82,
796,
5752,
58,
16,
7131,
17,
4083,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2665,
796,
5752,
58,
16,
7131,
18,
4083,
36311,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6827,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6827,
62,
24419,
13,
33295,
7,
4835,
62,
11600,
58,
34086,
594,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6827,
62,
24419,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
34086,
594,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8563,
15853,
352,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2180,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
62,
24419,
13,
33295,
7,
4835,
62,
11600,
58,
3866,
1442,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2180,
62,
24419,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1306,
82,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
4868,
13,
33295,
7,
4835,
62,
11600,
58,
19545,
82,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
4868,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2665,
287,
275,
861,
62,
11600,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2665,
62,
4868,
13,
33295,
7,
4835,
62,
11600,
58,
5458,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2665,
62,
4868,
13,
33295,
7,
37659,
13,
9107,
418,
7,
30610,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
4129,
13,
33295,
7,
808,
58,
16,
7131,
19,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
6167,
13,
33295,
7,
808,
58,
16,
7131,
20,
12962,
628,
220,
220,
220,
6827,
62,
24419,
796,
45941,
13,
292,
18747,
7,
34086,
594,
62,
24419,
8,
198,
220,
220,
220,
3601,
7,
34086,
594,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
1306,
62,
24419,
796,
45941,
13,
292,
18747,
7,
19545,
62,
4868,
8,
198,
220,
220,
220,
3601,
7,
19545,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
2180,
62,
24419,
796,
45941,
13,
292,
18747,
7,
3866,
1442,
62,
24419,
8,
198,
220,
220,
220,
3601,
7,
3866,
1442,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
2665,
62,
24419,
796,
45941,
13,
292,
18747,
7,
5458,
62,
4868,
8,
198,
220,
220,
220,
3601,
7,
34086,
594,
62,
24419,
13,
43358,
8,
198,
220,
220,
220,
4129,
796,
45941,
13,
292,
18747,
7,
13664,
8,
198,
220,
220,
220,
3601,
7,
13664,
13,
43358,
8,
198,
220,
220,
220,
6167,
796,
45941,
13,
292,
18747,
7,
18242,
8,
198,
220,
220,
220,
3601,
7,
48277,
8,
198,
220,
220,
220,
3033,
796,
45941,
13,
1102,
9246,
268,
378,
26933,
34086,
594,
62,
24419,
11,
2180,
62,
24419,
11,
1306,
62,
24419,
11,
5458,
62,
24419,
4357,
16488,
28,
16,
8,
198,
220,
220,
220,
3033,
796,
45941,
13,
28665,
62,
25558,
26933,
40890,
11,
4129,
12962,
198,
220,
220,
220,
3601,
7,
40890,
13,
43358,
8,
628,
220,
220,
220,
1395,
62,
27432,
11,
1395,
62,
2100,
11,
331,
62,
27432,
11,
331,
62,
2100,
796,
4512,
62,
9288,
62,
35312,
7,
40890,
11,
6167,
11,
1332,
62,
7857,
28,
15,
13,
2091,
11,
4738,
62,
5219,
28,
3682,
8,
628,
220,
220,
220,
327,
796,
685,
15,
13,
16,
11,
16,
11,
17,
11,
20,
11,
940,
60,
198,
220,
220,
220,
1540,
332,
796,
37250,
3605,
1122,
12,
66,
70,
41707,
82,
8126,
41707,
82,
363,
20520,
198,
220,
220,
220,
1266,
62,
37266,
796,
8633,
3419,
198,
220,
220,
220,
1266,
62,
26675,
796,
657,
13,
15,
198,
220,
220,
220,
329,
269,
287,
327,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
264,
287,
1540,
332,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
796,
5972,
2569,
8081,
2234,
7,
25120,
62,
5219,
28,
15,
11,
1540,
332,
28,
82,
11,
3509,
62,
2676,
28,
12825,
11,
327,
28,
66,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
11147,
7,
55,
62,
27432,
11,
331,
62,
27432,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16277,
796,
2604,
13,
79,
17407,
7,
55,
62,
2100,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
35972,
351,
327,
796,
1600,
66,
4032,
392,
1540,
332,
796,
46083,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
25468,
1262,
11525,
67,
654,
422,
262,
1600,
7679,
62,
17752,
11,
366,
7753,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
4871,
2649,
62,
13116,
7,
88,
62,
2100,
11,
16277,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
16,
796,
277,
16,
62,
26675,
7,
88,
62,
2100,
11,
16277,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
277,
16,
1875,
1266,
62,
26675,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1266,
62,
26675,
796,
277,
16,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1266,
62,
37266,
17816,
66,
20520,
796,
269,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1266,
62,
37266,
17816,
82,
14375,
20520,
796,
264,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
37,
16,
4776,
1262,
5972,
2569,
3310,
2234,
25,
1600,
69,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
29113,
7804,
21017,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
796,
640,
13,
2435,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2491,
62,
2435,
796,
886,
532,
923,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
28768,
640,
11097,
10,
2536,
7,
20270,
62,
2435,
4008,
628,
198,
198,
4299,
38350,
62,
35,
6144,
7,
7753,
62,
1462,
62,
21928,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
12793,
262,
360,
6144,
10959,
284,
257,
279,
782,
2393,
13,
11625,
779,
262,
6911,
377,
1096,
62,
35,
6144,
13,
541,
88,
358,
198,
220,
220,
220,
1058,
17143,
2393,
62,
1462,
62,
21928,
25,
262,
279,
782,
2393,
326,
262,
10959,
286,
262,
360,
6144,
481,
307,
7448,
13,
198,
220,
220,
220,
1058,
7783,
25,
6045,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
2746,
796,
24604,
1843,
3419,
198,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
12762,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
1270,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
1495,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
2414,
11,
14916,
11639,
260,
2290,
3256,
4512,
540,
28,
17821,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
26932,
448,
7,
15,
13,
2327,
4008,
198,
220,
220,
220,
2746,
13,
2860,
7,
35,
1072,
7,
16,
11,
14916,
11639,
82,
17225,
1868,
6,
4008,
628,
220,
220,
220,
7110,
62,
19849,
7,
19849,
11,
284,
62,
7753,
28,
7753,
62,
1462,
62,
21928,
11,
905,
62,
1477,
7916,
28,
17821,
8,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
628,
220,
220,
220,
1303,
21928,
62,
19849,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
37,
463,
272,
62,
22915,
62,
29289,
22955,
16,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
16345,
3876,
7509,
16,
13,
79,
41582,
11537,
198,
220,
220,
220,
2471,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
2471,
13,
2860,
62,
49140,
7203,
12,
82,
1600,
366,
438,
34086,
3007,
1600,
2672,
28,
17821,
11,
1037,
2625,
34086,
3007,
1351,
4943,
198,
220,
220,
220,
2471,
13,
2860,
62,
49140,
7203,
12,
78,
1600,
366,
438,
22915,
1600,
2672,
28,
17821,
11,
1037,
2625,
22915,
4943,
198,
220,
220,
220,
2471,
13,
2860,
62,
49140,
7203,
12,
912,
1600,
366,
438,
27432,
900,
1600,
2672,
28,
17821,
11,
1037,
2625,
6978,
284,
4512,
900,
4943,
198,
220,
220,
220,
2471,
13,
2860,
62,
49140,
7203,
12,
2777,
1600,
366,
438,
16345,
3876,
7509,
3108,
1600,
2672,
28,
17821,
11,
1037,
2625,
6978,
284,
3613,
15676,
7509,
4943,
628,
220,
220,
220,
26498,
796,
410,
945,
7,
499,
13,
29572,
62,
22046,
28955,
198,
220,
220,
220,
7679,
796,
4512,
62,
4871,
7483,
7,
22046,
17816,
34086,
3007,
6,
4357,
26498,
17816,
22915,
6,
4357,
26498,
17816,
27432,
900,
6,
4357,
22046,
17816,
16345,
3876,
7509,
3108,
6,
12962,
198,
220,
220,
220,
1303,
29289,
62,
16,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
3256,
705,
3605,
62,
22915,
62,
29289,
22955,
16,
13,
17752,
3256,
705,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
16,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
17,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
3605,
62,
22915,
62,
29289,
22955,
17,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
17,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
18,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
3605,
62,
22915,
62,
29289,
22955,
18,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
18,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
19,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
3605,
62,
22915,
62,
29289,
22955,
19,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
19,
13,
79,
41582,
11537,
628,
220,
220,
220,
1303,
28286,
278,
796,
11507,
62,
28286,
278,
62,
35972,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
3605,
62,
22915,
62,
29289,
22955,
16,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
11537,
198,
220,
220,
220,
1303,
29289,
62,
16,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
22915,
62,
29289,
22955,
16,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
17,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
22915,
62,
29289,
22955,
17,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
18,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
22915,
62,
29289,
22955,
18,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
13,
79,
41582,
11537,
198,
220,
220,
220,
1303,
29289,
62,
19,
796,
4512,
62,
4871,
7483,
10786,
34086,
3007,
62,
4868,
13,
14116,
41707,
22915,
62,
29289,
22955,
19,
13,
17752,
41707,
27432,
62,
34086,
3007,
16,
13,
40664,
41707,
38125,
62,
83,
1726,
62,
13246,
51,
62,
34086,
594,
62,
4871,
2649,
13,
79,
41582,
11537,
628
] | 2.426749 | 4,546 |
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import time
from unittest import TestCase
import mock
from mesos.interface.mesos_pb2 import TaskState
from apache.aurora.executor.common.status_checker import StatusChecker
from apache.aurora.executor.status_manager import StatusManager
| [
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
2,
198,
198,
11748,
640,
198,
6738,
555,
715,
395,
1330,
6208,
20448,
198,
198,
11748,
15290,
198,
6738,
18842,
418,
13,
39994,
13,
6880,
418,
62,
40842,
17,
1330,
15941,
9012,
198,
198,
6738,
2471,
4891,
13,
2899,
5799,
13,
18558,
38409,
13,
11321,
13,
13376,
62,
9122,
263,
1330,
12678,
9787,
263,
198,
6738,
2471,
4891,
13,
2899,
5799,
13,
18558,
38409,
13,
13376,
62,
37153,
1330,
12678,
13511,
628,
198
] | 3.674419 | 215 |
'''
-------------------------------------------------------------------------------------------------
This code accompanies the paper titled "Human injury-based safety decision of automated vehicles"
Author: Qingfan Wang, Qing Zhou, Miao Lin, Bingbing Nie
Corresponding author: Bingbing Nie (nbb@tsinghua.edu.cn)
-------------------------------------------------------------------------------------------------
'''
import torch
import numpy as np
from torch import nn
from torch.nn.utils import weight_norm
__author__ = "Qingfan Wang"
def Collision_cond(veh_striking_list, V1_v, V2_v, delta_angle, veh_param):
''' Estimate the collision condition. '''
(veh_l, veh_w, veh_cgf, veh_cgs, veh_k, veh_m) = veh_param
delta_angle_2 = np.arccos(np.abs(np.cos(delta_angle)))
if -1e-6 < delta_angle_2 < 1e-6:
delta_angle_2 = 1e-6
delta_v1_list = []
delta_v2_list = []
# Estimate the collision condition (delat-v) according to the principal impact direction.
for veh_striking in veh_striking_list:
if veh_striking[0] == 1:
veh_ca = np.arctan(veh_cgf[0] / veh_cgs[0])
veh_a2 = np.abs(veh_cgs[1] - veh_striking[3])
veh_RDS = np.abs(V1_v * np.cos(delta_angle) - V2_v)
veh_a1 = np.abs(np.sqrt(veh_cgf[0] ** 2 + veh_cgs[0] ** 2) * np.cos(veh_ca + delta_angle_2))
if (veh_striking[1]+1) in [16, 1, 2, 3, 17, 20, 21] and (veh_striking[2]+1) in [16, 1, 2, 3, 17, 20, 21]:
veh_e = 2 / veh_RDS
else:
veh_e = 0.5 / veh_RDS
elif veh_striking[0] == 2:
veh_ca = np.arctan(veh_cgf[0] / veh_cgs[0])
veh_a2 = np.abs(veh_cgf[1] - veh_striking[3])
veh_a1 = np.abs(np.sqrt(veh_cgf[0] ** 2 + veh_cgs[0] ** 2) * np.cos(delta_angle_2 - veh_ca + np.pi / 2))
veh_RDS = V1_v * np.sin(delta_angle_2)
veh_e = 1.5 / veh_RDS
elif veh_striking[0] == 3:
veh_ca = np.arctan(veh_cgf[1] / veh_cgs[1])
veh_a1 = np.abs(veh_cgs[0] - veh_striking[3])
veh_RDS = np.abs(V2_v * np.cos(delta_angle) - V1_v)
veh_a2 = np.abs(np.sqrt(veh_cgf[1] ** 2 + veh_cgs[1] ** 2) * np.cos(veh_ca + delta_angle_2))
if (veh_striking[1]+1) in [16, 1, 2, 3, 17, 20, 21] and (veh_striking[2]+1) in [16, 1, 2, 3, 17, 20, 21]:
veh_e = 2 / veh_RDS
else:
veh_e = 0.5 / veh_RDS
elif veh_striking[0] == 4:
veh_ca = np.arctan(veh_cgf[1] / veh_cgs[1])
veh_a1 = np.abs(veh_cgf[0] - veh_striking[3])
veh_a2 = np.abs(np.sqrt(veh_cgf[1] ** 2 + veh_cgs[1] ** 2) * np.cos(delta_angle_2 - veh_ca + np.pi / 2))
veh_RDS = V2_v * np.sin(delta_angle_2)
veh_e = 1.5 / veh_RDS
# Obtain delta-v based on the plane 2-DOF rigid-body collision model with momentum conservation.
veh_y1 = veh_k[0] ** 2 / (veh_a1 ** 2 + veh_k[0] ** 2)
veh_y2 = veh_k[1] ** 2 / (veh_a2 ** 2 + veh_k[1] ** 2)
delta_v1 = (1 + veh_e) * veh_m[1] * veh_y1 * veh_y2 * veh_RDS / (veh_m[0] * veh_y1 + veh_m[1] * veh_y2)
delta_v2 = (1 + veh_e) * veh_m[0] * veh_y1 * veh_y2 * veh_RDS / (veh_m[0] * veh_y1 + veh_m[1] * veh_y2)
delta_v1_list.append(delta_v1)
delta_v2_list.append(delta_v2)
delta_v1_ = max(delta_v1_list)
delta_v2_ = max(delta_v2_list)
index = delta_v1_list.index(max(delta_v1_list))
return delta_v1_, delta_v2_, index | [
7061,
6,
198,
10097,
3880,
12,
198,
1212,
2438,
48159,
262,
3348,
11946,
366,
20490,
5095,
12,
3106,
3747,
2551,
286,
16359,
5672,
1,
198,
13838,
25,
28927,
24408,
15233,
11,
28927,
32222,
11,
337,
13481,
5164,
11,
21631,
4623,
399,
494,
198,
10606,
5546,
278,
1772,
25,
21631,
4623,
399,
494,
357,
77,
11848,
31,
912,
278,
33061,
13,
15532,
13,
31522,
8,
198,
10097,
3880,
12,
198,
7061,
6,
628,
198,
11748,
28034,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
28034,
1330,
299,
77,
198,
6738,
28034,
13,
20471,
13,
26791,
1330,
3463,
62,
27237,
628,
198,
834,
9800,
834,
796,
366,
48,
278,
24408,
15233,
1,
628,
198,
4299,
7778,
1166,
62,
17561,
7,
33892,
62,
33565,
3364,
62,
4868,
11,
569,
16,
62,
85,
11,
569,
17,
62,
85,
11,
25979,
62,
9248,
11,
2844,
62,
17143,
2599,
198,
220,
220,
220,
705,
7061,
10062,
1920,
262,
17661,
4006,
13,
705,
7061,
628,
220,
220,
220,
357,
33892,
62,
75,
11,
2844,
62,
86,
11,
2844,
62,
66,
70,
69,
11,
2844,
62,
66,
14542,
11,
2844,
62,
74,
11,
2844,
62,
76,
8,
796,
2844,
62,
17143,
628,
220,
220,
220,
25979,
62,
9248,
62,
17,
796,
45941,
13,
283,
535,
418,
7,
37659,
13,
8937,
7,
37659,
13,
6966,
7,
67,
12514,
62,
9248,
22305,
198,
220,
220,
220,
611,
532,
16,
68,
12,
21,
1279,
25979,
62,
9248,
62,
17,
1279,
352,
68,
12,
21,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
9248,
62,
17,
796,
352,
68,
12,
21,
628,
220,
220,
220,
25979,
62,
85,
16,
62,
4868,
796,
17635,
198,
220,
220,
220,
25979,
62,
85,
17,
62,
4868,
796,
17635,
628,
220,
220,
220,
1303,
10062,
1920,
262,
17661,
4006,
357,
12381,
265,
12,
85,
8,
1864,
284,
262,
10033,
2928,
4571,
13,
198,
220,
220,
220,
329,
2844,
62,
33565,
3364,
287,
2844,
62,
33565,
3364,
62,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2844,
62,
33565,
3364,
58,
15,
60,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
6888,
796,
45941,
13,
283,
310,
272,
7,
33892,
62,
66,
70,
69,
58,
15,
60,
1220,
2844,
62,
66,
14542,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
17,
796,
45941,
13,
8937,
7,
33892,
62,
66,
14542,
58,
16,
60,
532,
2844,
62,
33565,
3364,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
49,
5258,
796,
45941,
13,
8937,
7,
53,
16,
62,
85,
1635,
45941,
13,
6966,
7,
67,
12514,
62,
9248,
8,
532,
569,
17,
62,
85,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
16,
796,
45941,
13,
8937,
7,
37659,
13,
31166,
17034,
7,
33892,
62,
66,
70,
69,
58,
15,
60,
12429,
362,
1343,
2844,
62,
66,
14542,
58,
15,
60,
12429,
362,
8,
1635,
45941,
13,
6966,
7,
33892,
62,
6888,
1343,
25979,
62,
9248,
62,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
33892,
62,
33565,
3364,
58,
16,
48688,
16,
8,
287,
685,
1433,
11,
352,
11,
362,
11,
513,
11,
1596,
11,
1160,
11,
2310,
60,
290,
357,
33892,
62,
33565,
3364,
58,
17,
48688,
16,
8,
287,
685,
1433,
11,
352,
11,
362,
11,
513,
11,
1596,
11,
1160,
11,
2310,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
362,
1220,
2844,
62,
49,
5258,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
657,
13,
20,
1220,
2844,
62,
49,
5258,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2844,
62,
33565,
3364,
58,
15,
60,
6624,
362,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
6888,
796,
45941,
13,
283,
310,
272,
7,
33892,
62,
66,
70,
69,
58,
15,
60,
1220,
2844,
62,
66,
14542,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
17,
796,
45941,
13,
8937,
7,
33892,
62,
66,
70,
69,
58,
16,
60,
532,
2844,
62,
33565,
3364,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
16,
796,
45941,
13,
8937,
7,
37659,
13,
31166,
17034,
7,
33892,
62,
66,
70,
69,
58,
15,
60,
12429,
362,
1343,
2844,
62,
66,
14542,
58,
15,
60,
12429,
362,
8,
1635,
45941,
13,
6966,
7,
67,
12514,
62,
9248,
62,
17,
532,
2844,
62,
6888,
1343,
45941,
13,
14415,
1220,
362,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
49,
5258,
796,
569,
16,
62,
85,
1635,
45941,
13,
31369,
7,
67,
12514,
62,
9248,
62,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
352,
13,
20,
1220,
2844,
62,
49,
5258,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2844,
62,
33565,
3364,
58,
15,
60,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
6888,
796,
45941,
13,
283,
310,
272,
7,
33892,
62,
66,
70,
69,
58,
16,
60,
1220,
2844,
62,
66,
14542,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
16,
796,
45941,
13,
8937,
7,
33892,
62,
66,
14542,
58,
15,
60,
532,
2844,
62,
33565,
3364,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
49,
5258,
796,
45941,
13,
8937,
7,
53,
17,
62,
85,
1635,
45941,
13,
6966,
7,
67,
12514,
62,
9248,
8,
532,
569,
16,
62,
85,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
17,
796,
45941,
13,
8937,
7,
37659,
13,
31166,
17034,
7,
33892,
62,
66,
70,
69,
58,
16,
60,
12429,
362,
1343,
2844,
62,
66,
14542,
58,
16,
60,
12429,
362,
8,
1635,
45941,
13,
6966,
7,
33892,
62,
6888,
1343,
25979,
62,
9248,
62,
17,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
33892,
62,
33565,
3364,
58,
16,
48688,
16,
8,
287,
685,
1433,
11,
352,
11,
362,
11,
513,
11,
1596,
11,
1160,
11,
2310,
60,
290,
357,
33892,
62,
33565,
3364,
58,
17,
48688,
16,
8,
287,
685,
1433,
11,
352,
11,
362,
11,
513,
11,
1596,
11,
1160,
11,
2310,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
362,
1220,
2844,
62,
49,
5258,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
657,
13,
20,
1220,
2844,
62,
49,
5258,
628,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
2844,
62,
33565,
3364,
58,
15,
60,
6624,
604,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
6888,
796,
45941,
13,
283,
310,
272,
7,
33892,
62,
66,
70,
69,
58,
16,
60,
1220,
2844,
62,
66,
14542,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
16,
796,
45941,
13,
8937,
7,
33892,
62,
66,
70,
69,
58,
15,
60,
532,
2844,
62,
33565,
3364,
58,
18,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
64,
17,
796,
45941,
13,
8937,
7,
37659,
13,
31166,
17034,
7,
33892,
62,
66,
70,
69,
58,
16,
60,
12429,
362,
1343,
2844,
62,
66,
14542,
58,
16,
60,
12429,
362,
8,
1635,
45941,
13,
6966,
7,
67,
12514,
62,
9248,
62,
17,
532,
2844,
62,
6888,
1343,
45941,
13,
14415,
1220,
362,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
49,
5258,
796,
569,
17,
62,
85,
1635,
45941,
13,
31369,
7,
67,
12514,
62,
9248,
62,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
68,
796,
352,
13,
20,
1220,
2844,
62,
49,
5258,
628,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1835,
3153,
25979,
12,
85,
1912,
319,
262,
6614,
362,
12,
18227,
37,
20831,
12,
2618,
17661,
2746,
351,
12858,
14903,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
88,
16,
796,
2844,
62,
74,
58,
15,
60,
12429,
362,
1220,
357,
33892,
62,
64,
16,
12429,
362,
1343,
2844,
62,
74,
58,
15,
60,
12429,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2844,
62,
88,
17,
796,
2844,
62,
74,
58,
16,
60,
12429,
362,
1220,
357,
33892,
62,
64,
17,
12429,
362,
1343,
2844,
62,
74,
58,
16,
60,
12429,
362,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
85,
16,
796,
357,
16,
1343,
2844,
62,
68,
8,
1635,
2844,
62,
76,
58,
16,
60,
1635,
2844,
62,
88,
16,
1635,
2844,
62,
88,
17,
1635,
2844,
62,
49,
5258,
1220,
357,
33892,
62,
76,
58,
15,
60,
1635,
2844,
62,
88,
16,
1343,
2844,
62,
76,
58,
16,
60,
1635,
2844,
62,
88,
17,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
85,
17,
796,
357,
16,
1343,
2844,
62,
68,
8,
1635,
2844,
62,
76,
58,
15,
60,
1635,
2844,
62,
88,
16,
1635,
2844,
62,
88,
17,
1635,
2844,
62,
49,
5258,
1220,
357,
33892,
62,
76,
58,
15,
60,
1635,
2844,
62,
88,
16,
1343,
2844,
62,
76,
58,
16,
60,
1635,
2844,
62,
88,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
85,
16,
62,
4868,
13,
33295,
7,
67,
12514,
62,
85,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25979,
62,
85,
17,
62,
4868,
13,
33295,
7,
67,
12514,
62,
85,
17,
8,
628,
220,
220,
220,
25979,
62,
85,
16,
62,
796,
3509,
7,
67,
12514,
62,
85,
16,
62,
4868,
8,
198,
220,
220,
220,
25979,
62,
85,
17,
62,
796,
3509,
7,
67,
12514,
62,
85,
17,
62,
4868,
8,
198,
220,
220,
220,
6376,
796,
25979,
62,
85,
16,
62,
4868,
13,
9630,
7,
9806,
7,
67,
12514,
62,
85,
16,
62,
4868,
4008,
628,
220,
220,
220,
1441,
25979,
62,
85,
16,
62,
11,
25979,
62,
85,
17,
62,
11,
6376
] | 1.936807 | 1,804 |
# Training to a set of multiple objects (e.g. ShapeNet or DTU)
# tensorboard logs available in logs/<expname>
import sys
import os
sys.path.insert(
0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src"))
)
import warnings
import trainlib
from model import make_model, loss
from render import NeRFRenderer
from data import get_split_dataset
import util
import numpy as np
import torch.nn.functional as F
import torch
from dotmap import DotMap
args, conf = util.args.parse_args(extra_args, training=True, default_ray_batch_size=128)
device = util.get_cuda(args.gpu_id[0])
dset, val_dset, _ = get_split_dataset(args.dataset_format, args.datadir)
print(
"dset z_near {}, z_far {}, lindisp {}".format(dset.z_near, dset.z_far, dset.lindisp)
)
net = make_model(conf["model"]).to(device=device)
net.stop_encoder_grad = args.freeze_enc
if args.freeze_enc:
print("Encoder frozen")
net.encoder.eval()
renderer = NeRFRenderer.from_conf(conf["renderer"], lindisp=dset.lindisp,).to(
device=device
)
# Parallize
render_par = renderer.bind_parallel(net, args.gpu_id).eval()
nviews = list(map(int, args.nviews.split()))
trainer = PixelNeRFTrainer()
trainer.start()
| [
2,
13614,
284,
257,
900,
286,
3294,
5563,
357,
68,
13,
70,
13,
25959,
7934,
393,
24311,
52,
8,
198,
2,
11192,
273,
3526,
17259,
1695,
287,
17259,
14,
27,
11201,
3672,
29,
198,
198,
11748,
25064,
198,
11748,
28686,
198,
198,
17597,
13,
6978,
13,
28463,
7,
198,
220,
220,
220,
657,
11,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
7,
834,
7753,
834,
828,
366,
492,
1600,
366,
10677,
48774,
198,
8,
198,
198,
11748,
14601,
198,
11748,
4512,
8019,
198,
6738,
2746,
1330,
787,
62,
19849,
11,
2994,
198,
6738,
8543,
1330,
3169,
49,
10913,
437,
11882,
198,
6738,
1366,
1330,
651,
62,
35312,
62,
19608,
292,
316,
198,
11748,
7736,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
11748,
28034,
198,
6738,
16605,
8899,
1330,
22875,
13912,
628,
198,
198,
22046,
11,
1013,
796,
7736,
13,
22046,
13,
29572,
62,
22046,
7,
26086,
62,
22046,
11,
3047,
28,
17821,
11,
4277,
62,
2433,
62,
43501,
62,
7857,
28,
12762,
8,
198,
25202,
796,
7736,
13,
1136,
62,
66,
15339,
7,
22046,
13,
46999,
62,
312,
58,
15,
12962,
198,
198,
67,
2617,
11,
1188,
62,
67,
2617,
11,
4808,
796,
651,
62,
35312,
62,
19608,
292,
316,
7,
22046,
13,
19608,
292,
316,
62,
18982,
11,
26498,
13,
19608,
324,
343,
8,
198,
4798,
7,
198,
220,
220,
220,
366,
67,
2617,
1976,
62,
40093,
1391,
5512,
1976,
62,
16370,
1391,
5512,
300,
521,
8802,
23884,
1911,
18982,
7,
67,
2617,
13,
89,
62,
40093,
11,
288,
2617,
13,
89,
62,
16370,
11,
288,
2617,
13,
75,
521,
8802,
8,
198,
8,
198,
198,
3262,
796,
787,
62,
19849,
7,
10414,
14692,
19849,
8973,
737,
1462,
7,
25202,
28,
25202,
8,
198,
3262,
13,
11338,
62,
12685,
12342,
62,
9744,
796,
26498,
13,
5787,
2736,
62,
12685,
198,
361,
26498,
13,
5787,
2736,
62,
12685,
25,
198,
220,
220,
220,
3601,
7203,
27195,
12342,
12912,
4943,
198,
220,
220,
220,
2010,
13,
12685,
12342,
13,
18206,
3419,
198,
198,
10920,
11882,
796,
3169,
49,
10913,
437,
11882,
13,
6738,
62,
10414,
7,
10414,
14692,
10920,
11882,
33116,
300,
521,
8802,
28,
67,
2617,
13,
75,
521,
8802,
11,
737,
1462,
7,
198,
220,
220,
220,
3335,
28,
25202,
198,
8,
198,
198,
2,
2547,
439,
1096,
198,
13287,
62,
1845,
796,
9851,
11882,
13,
21653,
62,
1845,
29363,
7,
3262,
11,
26498,
13,
46999,
62,
312,
737,
18206,
3419,
198,
198,
77,
33571,
796,
1351,
7,
8899,
7,
600,
11,
26498,
13,
77,
33571,
13,
35312,
3419,
4008,
628,
198,
198,
2213,
10613,
796,
11349,
8199,
32754,
2898,
10613,
3419,
198,
2213,
10613,
13,
9688,
3419,
198
] | 2.595238 | 462 |
import os
import sys
from pathlib import Path
from typing import Sequence
from napari_plugin_engine.dist import standard_metadata
from napari_plugin_engine.exceptions import PluginError
from qtpy.QtCore import QEvent, QProcess, QProcessEnvironment, QSize, Qt, Slot
from qtpy.QtGui import QFont, QMovie
from qtpy.QtWidgets import (
QCheckBox,
QDialog,
QFrame,
QHBoxLayout,
QLabel,
QLineEdit,
QListWidget,
QListWidgetItem,
QPushButton,
QSizePolicy,
QSplitter,
QTextEdit,
QVBoxLayout,
QWidget,
)
import napari.resources
from ...plugins import plugin_manager
from ...plugins.pypi import (
ProjectInfo,
iter_napari_plugin_info,
normalized_name,
)
from ...utils._appdirs import user_plugin_dir, user_site_packages
from ...utils.misc import parse_version, running_as_bundled_app
from ...utils.translations import trans
from ..qthreading import create_worker
from ..widgets.qt_eliding_label import ElidingLabel
from ..widgets.qt_plugin_sorter import QtPluginSorter
from .qt_plugin_report import QtPluginErrReporter
# TODO: add error icon and handle pip install errors
# TODO: add queue to handle clicks when already processing
class QtPluginDialog(QDialog):
if __name__ == "__main__":
from qtpy.QtWidgets import QApplication
app = QApplication([])
w = QtPluginDialog()
w.show()
app.exec_()
| [
11748,
28686,
198,
11748,
25064,
198,
6738,
3108,
8019,
1330,
10644,
198,
6738,
19720,
1330,
45835,
198,
198,
6738,
25422,
2743,
62,
33803,
62,
18392,
13,
17080,
1330,
3210,
62,
38993,
198,
6738,
25422,
2743,
62,
33803,
62,
18392,
13,
1069,
11755,
1330,
42636,
12331,
198,
6738,
10662,
83,
9078,
13,
48,
83,
14055,
1330,
1195,
9237,
11,
1195,
18709,
11,
1195,
18709,
31441,
11,
1195,
10699,
11,
33734,
11,
32026,
198,
6738,
10662,
83,
9078,
13,
48,
83,
8205,
72,
1330,
1195,
23252,
11,
1195,
25097,
198,
6738,
10662,
83,
9078,
13,
48,
83,
54,
312,
11407,
1330,
357,
198,
220,
220,
220,
1195,
9787,
14253,
11,
198,
220,
220,
220,
1195,
44204,
11,
198,
220,
220,
220,
1195,
19778,
11,
198,
220,
220,
220,
1195,
39,
14253,
32517,
11,
198,
220,
220,
220,
1195,
33986,
11,
198,
220,
220,
220,
1195,
13949,
18378,
11,
198,
220,
220,
220,
1195,
8053,
38300,
11,
198,
220,
220,
220,
1195,
8053,
38300,
7449,
11,
198,
220,
220,
220,
1195,
49222,
21864,
11,
198,
220,
220,
220,
1195,
10699,
36727,
11,
198,
220,
220,
220,
1195,
26568,
1967,
11,
198,
220,
220,
220,
1195,
8206,
18378,
11,
198,
220,
220,
220,
1195,
53,
14253,
32517,
11,
198,
220,
220,
220,
1195,
38300,
11,
198,
8,
198,
198,
11748,
25422,
2743,
13,
37540,
198,
198,
6738,
2644,
37390,
1330,
13877,
62,
37153,
198,
6738,
2644,
37390,
13,
79,
4464,
72,
1330,
357,
198,
220,
220,
220,
4935,
12360,
11,
198,
220,
220,
220,
11629,
62,
77,
499,
2743,
62,
33803,
62,
10951,
11,
198,
220,
220,
220,
39279,
62,
3672,
11,
198,
8,
198,
6738,
2644,
26791,
13557,
1324,
15908,
82,
1330,
2836,
62,
33803,
62,
15908,
11,
2836,
62,
15654,
62,
43789,
198,
6738,
2644,
26791,
13,
44374,
1330,
21136,
62,
9641,
11,
2491,
62,
292,
62,
65,
917,
992,
62,
1324,
198,
6738,
2644,
26791,
13,
7645,
49905,
1330,
1007,
198,
6738,
11485,
80,
16663,
278,
1330,
2251,
62,
28816,
198,
6738,
11485,
28029,
11407,
13,
39568,
62,
417,
2530,
62,
18242,
1330,
2574,
2530,
33986,
198,
6738,
11485,
28029,
11407,
13,
39568,
62,
33803,
62,
82,
4337,
1330,
33734,
37233,
50,
4337,
198,
6738,
764,
39568,
62,
33803,
62,
13116,
1330,
33734,
37233,
9139,
81,
6207,
4337,
198,
198,
2,
16926,
46,
25,
751,
4049,
7196,
290,
5412,
7347,
2721,
8563,
628,
198,
2,
16926,
46,
25,
751,
16834,
284,
5412,
25785,
618,
1541,
7587,
628,
628,
198,
4871,
33734,
37233,
44204,
7,
48,
44204,
2599,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
422,
10662,
83,
9078,
13,
48,
83,
54,
312,
11407,
1330,
1195,
23416,
628,
220,
220,
220,
598,
796,
1195,
23416,
26933,
12962,
198,
220,
220,
220,
266,
796,
33734,
37233,
44204,
3419,
198,
220,
220,
220,
266,
13,
12860,
3419,
198,
220,
220,
220,
598,
13,
18558,
62,
3419,
198
] | 2.863354 | 483 |
__all__ = ('create_partial_webhook_from_id', )
from scarletio import export
from ..core import USERS
from .preinstanced import WebhookType
from .webhook import Webhook
| [
834,
439,
834,
796,
19203,
17953,
62,
47172,
62,
12384,
25480,
62,
6738,
62,
312,
3256,
1267,
198,
198,
6738,
10153,
1616,
952,
1330,
10784,
198,
198,
6738,
11485,
7295,
1330,
1294,
4877,
198,
198,
6738,
764,
3866,
8625,
2903,
1330,
5313,
25480,
6030,
198,
6738,
764,
12384,
25480,
1330,
5313,
25480,
628
] | 3.245283 | 53 |
SCRABBLE_LETTER_VALUES = {
'a': 1, 'b': 3, 'c': 3, 'd': 2, 'e': 1, 'f': 4, 'g': 2, 'h': 4, 'i': 1, 'j': 8, 'k': 5, 'l': 1, 'm': 3, 'n': 1,
'o': 1, 'p': 3, 'q': 10, 'r': 1, 's': 1, 't': 1, 'u': 1, 'v': 4, 'w': 4, 'x': 8, 'y': 4, 'z': 10
}
def getWordScore(word, n):
"""
Returns the score for a word. Assumes the word is a valid word.
The score for a word is the sum of the points for letters in the
word, multiplied by the length of the word, PLUS 50 points if all n
letters are used on the first turn.
Letters are scored as in Scrabble; A is worth 1, B is worth 3, C is
worth 3, D is worth 2, E is worth 1, and so on (see SCRABBLE_LETTER_VALUES)
word: string (lowercase letters)
n: integer (HAND_SIZE; i.e., hand size required for additional points)
returns: int >= 0
"""
total_points = 0
for letter in word:
total_points += SCRABBLE_LETTER_VALUES[letter]
total_points *= len(word)
if len(word) == n:
total_points += 50
return total_points
print(getWordScore('waybill', 7))
| [
6173,
3861,
15199,
2538,
62,
28882,
5781,
62,
23428,
35409,
796,
1391,
198,
220,
220,
220,
705,
64,
10354,
352,
11,
705,
65,
10354,
513,
11,
705,
66,
10354,
513,
11,
705,
67,
10354,
362,
11,
705,
68,
10354,
352,
11,
705,
69,
10354,
604,
11,
705,
70,
10354,
362,
11,
705,
71,
10354,
604,
11,
705,
72,
10354,
352,
11,
705,
73,
10354,
807,
11,
705,
74,
10354,
642,
11,
705,
75,
10354,
352,
11,
705,
76,
10354,
513,
11,
705,
77,
10354,
352,
11,
198,
220,
220,
220,
705,
78,
10354,
352,
11,
705,
79,
10354,
513,
11,
705,
80,
10354,
838,
11,
705,
81,
10354,
352,
11,
705,
82,
10354,
352,
11,
705,
83,
10354,
352,
11,
705,
84,
10354,
352,
11,
705,
85,
10354,
604,
11,
705,
86,
10354,
604,
11,
705,
87,
10354,
807,
11,
705,
88,
10354,
604,
11,
705,
89,
10354,
838,
198,
92,
198,
198,
4299,
651,
26449,
26595,
7,
4775,
11,
299,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
262,
4776,
329,
257,
1573,
13,
2195,
8139,
262,
1573,
318,
257,
4938,
1573,
13,
628,
220,
220,
220,
383,
4776,
329,
257,
1573,
318,
262,
2160,
286,
262,
2173,
329,
7475,
287,
262,
198,
220,
220,
220,
1573,
11,
33096,
416,
262,
4129,
286,
262,
1573,
11,
48635,
2026,
2173,
611,
477,
299,
198,
220,
220,
220,
7475,
389,
973,
319,
262,
717,
1210,
13,
628,
220,
220,
220,
24501,
389,
7781,
355,
287,
1446,
25619,
903,
26,
317,
318,
2861,
352,
11,
347,
318,
2861,
513,
11,
327,
318,
198,
220,
220,
220,
2861,
513,
11,
360,
318,
2861,
362,
11,
412,
318,
2861,
352,
11,
290,
523,
319,
357,
3826,
6374,
3861,
15199,
2538,
62,
28882,
5781,
62,
23428,
35409,
8,
628,
220,
220,
220,
1573,
25,
4731,
357,
21037,
7442,
7475,
8,
198,
220,
220,
220,
299,
25,
18253,
357,
39,
6981,
62,
33489,
26,
1312,
13,
68,
1539,
1021,
2546,
2672,
329,
3224,
2173,
8,
198,
220,
220,
220,
5860,
25,
493,
18189,
657,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2472,
62,
13033,
796,
657,
198,
220,
220,
220,
329,
3850,
287,
1573,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
13033,
15853,
6374,
3861,
15199,
2538,
62,
28882,
5781,
62,
23428,
35409,
58,
9291,
60,
198,
220,
220,
220,
2472,
62,
13033,
1635,
28,
18896,
7,
4775,
8,
198,
220,
220,
220,
611,
18896,
7,
4775,
8,
6624,
299,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
13033,
15853,
2026,
198,
220,
220,
220,
1441,
2472,
62,
13033,
198,
198,
4798,
7,
1136,
26449,
26595,
10786,
1014,
35546,
3256,
767,
4008,
198
] | 2.376392 | 449 |
# coding: utf-8
"""
LUSID API
# Introduction This page documents the [LUSID APIs](https://www.lusid.com/api/swagger), which allows authorised clients to query and update their data within the LUSID platform. SDKs to interact with the LUSID APIs are available in the following languages : * [C#](https://github.com/finbourne/lusid-sdk-csharp) * [Java](https://github.com/finbourne/lusid-sdk-java) * [JavaScript](https://github.com/finbourne/lusid-sdk-js) * [Python](https://github.com/finbourne/lusid-sdk-python) # Data Model The LUSID API has a relatively lightweight but extremely powerful data model. One of the goals of LUSID was not to enforce on clients a single rigid data model but rather to provide a flexible foundation onto which clients can map their own data models. The core entities in LUSID provide a minimal structure and set of relationships, and the data model can be extended using Properties. The LUSID data model is exposed through the LUSID APIs. The APIs provide access to both business objects and the meta data used to configure the systems behaviours. The key business entities are: - * **Portfolios** A portfolio is a container for transactions and holdings (a **Transaction Portfolio**) or constituents (a **Reference Portfolio**). * **Derived Portfolios**. Derived Portfolios allow Portfolios to be created based on other Portfolios, by overriding or adding specific items. * **Holdings** A Holding is a quantity of an Instrument or a balance of cash within a Portfolio. Holdings can only be adjusted via Transactions. * **Transactions** A Transaction is an economic event that occurs in a Portfolio, causing its holdings to change. * **Corporate Actions** A corporate action is a market event which occurs to an Instrument and thus applies to all portfolios which holding the instrument. Examples are stock splits or mergers. * **Constituents** A constituent is a record in a Reference Portfolio containing an Instrument and an associated weight. * **Instruments** An instrument represents a currency, tradable instrument or OTC contract that is attached to a transaction and a holding. * **Properties** All major entities allow additional user defined properties to be associated with them. For example, a Portfolio manager may be associated with a portfolio. Meta data includes: - * **Transaction Types** Transactions are booked with a specific transaction type. The types are client defined and are used to map the Transaction to a series of movements which update the portfolio holdings. * **Properties Types** Types of user defined properties used within the system. ## Scope All data in LUSID is segregated at the client level. Entities in LUSID are identifiable by a unique code. Every entity lives within a logical data partition known as a Scope. Scope is an identity namespace allowing two entities with the same unique code to co-exist within individual address spaces. For example, prices for equities from different vendors may be uploaded into different scopes such as `client/vendor1` and `client/vendor2`. A portfolio may then be valued using either of the price sources by referencing the appropriate scope. LUSID Clients cannot access scopes of other clients. ## Instruments LUSID has its own built-in instrument master which you can use to master your own instrument universe. Every instrument must be created with one or more unique market identifiers, such as [FIGI](https://openfigi.com/). For any non-listed instruments (eg OTCs), you can upload an instrument against a custom ID of your choosing. In addition, LUSID will allocate each instrument a unique 'LUSID instrument identifier'. The LUSID instrument identifier is what is used when uploading transactions, holdings, prices, etc. The API exposes an `instrument/lookup` endpoint which can be used to lookup these LUSID identifiers using their market identifiers. Cash can be referenced using the ISO currency code prefixed with \"`CCY_`\" e.g. `CCY_GBP` ## Instrument Data Instrument data can be uploaded to the system using the [Instrument Properties](#tag/InstrumentProperties) endpoint. | Field|Type|Description | | ---|---|--- | | Key|propertykey|The key of the property. This takes the format {domain}/{scope}/{code} e.g. 'Instrument/system/Name' or 'Transaction/strategy/quantsignal'. | | Value|string|The value of the property. | | EffectiveFrom|datetimeoffset|The effective datetime from which the property is valid. | | EffectiveUntil|datetimeoffset|The effective datetime until which the property is valid. If not supplied this will be valid indefinitely, potentially overwriting values with EffectiveFrom's in the future. | ## Transaction Portfolios Portfolios are the top-level entity containers within LUSID, containing transactions, corporate actions and holdings. The transactions build up the portfolio holdings on which valuations, analytics profit & loss and risk can be calculated. Properties can be associated with Portfolios to add in additional data. Portfolio properties can be changed over time, for example to allow a Portfolio Manager to be linked with a Portfolio. Additionally, portfolios can be securitised and held by other portfolios, allowing LUSID to perform \"drill-through\" into underlying fund holdings ### Derived Portfolios LUSID also allows for a portfolio to be composed of another portfolio via derived portfolios. A derived portfolio can contain its own transactions and also inherits any transactions from its parent portfolio. Any changes made to the parent portfolio are automatically reflected in derived portfolio. Derived portfolios in conjunction with scopes are a powerful construct. For example, to do pre-trade what-if analysis, a derived portfolio could be created a new namespace linked to the underlying live (parent) portfolio. Analysis can then be undertaken on the derived portfolio without affecting the live portfolio. ### Transactions A transaction represents an economic activity against a Portfolio. Transactions are processed according to a configuration. This will tell the LUSID engine how to interpret the transaction and correctly update the holdings. LUSID comes with a set of transaction types you can use out of the box, or you can configure your own set(s) of transactions. For more details see the [LUSID Getting Started Guide for transaction configuration.](https://support.lusid.com/configuring-transaction-types) | Field|Type|Description | | ---|---|--- | | TransactionId|string|The unique identifier for the transaction. | | Type|string|The type of the transaction e.g. 'Buy', 'Sell'. The transaction type should have been pre-configured via the System Configuration API endpoint. If it hasn't been pre-configured the transaction will still be updated or inserted however you will be unable to generate the resultant holdings for the portfolio that contains this transaction as LUSID does not know how to process it. | | InstrumentIdentifiers|map|A set of instrument identifiers to use to resolve the transaction to a unique instrument. | | TransactionDate|dateorcutlabel|The date of the transaction. | | SettlementDate|dateorcutlabel|The settlement date of the transaction. | | Units|decimal|The number of units transacted in the associated instrument. | | TransactionPrice|transactionprice|The price for each unit of the transacted instrument in the transaction currency. | | TotalConsideration|currencyandamount|The total value of the transaction in the settlement currency. | | ExchangeRate|decimal|The exchange rate between the transaction and settlement currency. For example if the transaction currency is in USD and the settlement currency is in GBP this this the USD/GBP rate. | | TransactionCurrency|currency|The transaction currency. | | Properties|map|Set of unique transaction properties and associated values to store with the transaction. Each property must be from the 'Transaction' domain. | | CounterpartyId|string|The identifier for the counterparty of the transaction. | | Source|string|The source of the transaction. This is used to look up the appropriate transaction group set in the transaction type configuration. | From these fields, the following values can be calculated * **Transaction value in Transaction currency**: TotalConsideration / ExchangeRate * **Transaction value in Portfolio currency**: Transaction value in Transaction currency * TradeToPortfolioRate #### Example Transactions ##### A Common Purchase Example Three example transactions are shown in the table below. They represent a purchase of USD denominated IBM shares within a Sterling denominated portfolio. * The first two transactions are for separate buy and fx trades * Buying 500 IBM shares for $71,480.00 * A spot foreign exchange conversion to fund the IBM purchase. (Buy $71,480.00 for £54,846.60) * The third transaction is an alternate version of the above trades. Buying 500 IBM shares and settling directly in Sterling. | Column | Buy Trade | Fx Trade | Buy Trade with foreign Settlement | | ----- | ----- | ----- | ----- | | TransactionId | FBN00001 | FBN00002 | FBN00003 | | Type | Buy | FxBuy | Buy | | InstrumentIdentifiers | { \"figi\", \"BBG000BLNNH6\" } | { \"CCY\", \"CCY_USD\" } | { \"figi\", \"BBG000BLNNH6\" } | | TransactionDate | 2018-08-02 | 2018-08-02 | 2018-08-02 | | SettlementDate | 2018-08-06 | 2018-08-06 | 2018-08-06 | | Units | 500 | 71480 | 500 | | TransactionPrice | 142.96 | 1 | 142.96 | | TradeCurrency | USD | USD | USD | | ExchangeRate | 1 | 0.7673 | 0.7673 | | TotalConsideration.Amount | 71480.00 | 54846.60 | 54846.60 | | TotalConsideration.Currency | USD | GBP | GBP | | Trade/default/TradeToPortfolioRate* | 0.7673 | 0.7673 | 0.7673 | [* This is a property field] ##### A Forward FX Example LUSID has a flexible transaction modelling system, meaning there are a number of different ways of modelling forward fx trades. The default LUSID transaction types are FwdFxBuy and FwdFxSell. Using these transaction types, LUSID will generate two holdings for each Forward FX trade, one for each currency in the trade. An example Forward Fx trade to sell GBP for USD in a JPY-denominated portfolio is shown below: | Column | Forward 'Sell' Trade | Notes | | ----- | ----- | ---- | | TransactionId | FBN00004 | | | Type | FwdFxSell | | | InstrumentIdentifiers | { \"Instrument/default/Currency\", \"GBP\" } | | | TransactionDate | 2018-08-02 | | | SettlementDate | 2019-02-06 | Six month forward | | Units | 10000.00 | Units of GBP | | TransactionPrice | 1 | | | TradeCurrency | GBP | Currency being sold | | ExchangeRate | 1.3142 | Agreed rate between GBP and USD | | TotalConsideration.Amount | 13142.00 | Amount in the settlement currency, USD | | TotalConsideration.Currency | USD | Settlement currency | | Trade/default/TradeToPortfolioRate | 142.88 | Rate between trade currency, GBP and portfolio base currency, JPY | Please note that exactly the same economic behaviour could be modelled using the FwdFxBuy Transaction Type with the amounts and rates reversed. ### Holdings A holding represents a position in an instrument or cash on a given date. | Field|Type|Description | | ---|---|--- | | InstrumentUid|string|The unqiue Lusid Instrument Id (LUID) of the instrument that the holding is in. | | SubHoldingKeys|map|The sub-holding properties which identify the holding. Each property will be from the 'Transaction' domain. These are configured when a transaction portfolio is created. | | Properties|map|The properties which have been requested to be decorated onto the holding. These will be from the 'Instrument' or 'Holding' domain. | | HoldingType|string|The type of the holding e.g. Position, Balance, CashCommitment, Receivable, ForwardFX etc. | | Units|decimal|The total number of units of the holding. | | SettledUnits|decimal|The total number of settled units of the holding. | | Cost|currencyandamount|The total cost of the holding in the transaction currency. | | CostPortfolioCcy|currencyandamount|The total cost of the holding in the portfolio currency. | | Transaction|transaction|The transaction associated with an unsettled holding. | ## Corporate Actions Corporate actions are represented within LUSID in terms of a set of instrument-specific 'transitions'. These transitions are used to specify the participants of the corporate action, and the effect that the corporate action will have on holdings in those participants. ### Corporate Action | Field|Type|Description | | ---|---|--- | | CorporateActionCode|code|The unique identifier of this corporate action | | Description|string| | | AnnouncementDate|datetimeoffset|The announcement date of the corporate action | | ExDate|datetimeoffset|The ex date of the corporate action | | RecordDate|datetimeoffset|The record date of the corporate action | | PaymentDate|datetimeoffset|The payment date of the corporate action | | Transitions|corporateactiontransition[]|The transitions that result from this corporate action | ### Transition | Field|Type|Description | | ---|---|--- | | InputTransition|corporateactiontransitioncomponent|Indicating the basis of the corporate action - which security and how many units | | OutputTransitions|corporateactiontransitioncomponent[]|What will be generated relative to the input transition | ### Example Corporate Action Transitions #### A Dividend Action Transition In this example, for each share of IBM, 0.20 units (or 20 pence) of GBP are generated. | Column | Input Transition | Output Transition | | ----- | ----- | ----- | | Instrument Identifiers | { \"figi\" : \"BBG000BLNNH6\" } | { \"ccy\" : \"CCY_GBP\" } | | Units Factor | 1 | 0.20 | | Cost Factor | 1 | 0 | #### A Split Action Transition In this example, for each share of IBM, we end up with 2 units (2 shares) of IBM, with total value unchanged. | Column | Input Transition | Output Transition | | ----- | ----- | ----- | | Instrument Identifiers | { \"figi\" : \"BBG000BLNNH6\" } | { \"figi\" : \"BBG000BLNNH6\" } | | Units Factor | 1 | 2 | | Cost Factor | 1 | 1 | #### A Spinoff Action Transition In this example, for each share of IBM, we end up with 1 unit (1 share) of IBM and 3 units (3 shares) of Celestica, with 85% of the value remaining on the IBM share, and 5% in each Celestica share (15% total). | Column | Input Transition | Output Transition 1 | Output Transition 2 | | ----- | ----- | ----- | ----- | | Instrument Identifiers | { \"figi\" : \"BBG000BLNNH6\" } | { \"figi\" : \"BBG000BLNNH6\" } | { \"figi\" : \"BBG000HBGRF3\" } | | Units Factor | 1 | 1 | 3 | | Cost Factor | 1 | 0.85 | 0.15 | ## Reference Portfolios Reference portfolios are portfolios that contain constituents with weights. They are designed to represent entities such as indices and benchmarks. ### Constituents | Field|Type|Description | | ---|---|--- | | InstrumentIdentifiers|map|Unique instrument identifiers | | InstrumentUid|string|LUSID's internal unique instrument identifier, resolved from the instrument identifiers | | Currency|decimal| | | Weight|decimal| | | FloatingWeight|decimal| | ## Portfolio Groups Portfolio groups allow the construction of a hierarchy from portfolios and groups. Portfolio operations on the group are executed on an aggregated set of portfolios in the hierarchy. For example: * Global Portfolios _(group)_ * APAC _(group)_ * Hong Kong _(portfolio)_ * Japan _(portfolio)_ * Europe _(group)_ * France _(portfolio)_ * Germany _(portfolio)_ * UK _(portfolio)_ In this example **Global Portfolios** is a group that consists of an aggregate of **Hong Kong**, **Japan**, **France**, **Germany** and **UK** portfolios. ## Properties Properties are key-value pairs that can be applied to any entity within a domain (where a domain is `trade`, `portfolio`, `security` etc). Properties must be defined before use with a `PropertyDefinition` and can then subsequently be added to entities. ## Schema A detailed description of the entities used by the API and parameters for endpoints which take a JSON document can be retrieved via the `schema` endpoint. ## Meta data The following headers are returned on all responses from LUSID | Name | Purpose | | --- | --- | | lusid-meta-duration | Duration of the request | | lusid-meta-success | Whether or not LUSID considered the request to be successful | | lusid-meta-requestId | The unique identifier for the request | | lusid-schema-url | Url of the schema for the data being returned | | lusid-property-schema-url | Url of the schema for any properties | # Error Codes | Code|Name|Description | | ---|---|--- | | <a name=\"-10\">-10</a>|Server Configuration Error| | | <a name=\"-1\">-1</a>|Unknown error|An unexpected error was encountered on our side. | | <a name=\"102\">102</a>|Version Not Found| | | <a name=\"103\">103</a>|Api Rate Limit Violation| | | <a name=\"104\">104</a>|Instrument Not Found| | | <a name=\"105\">105</a>|Property Not Found| | | <a name=\"106\">106</a>|Portfolio Recursion Depth| | | <a name=\"108\">108</a>|Group Not Found| | | <a name=\"109\">109</a>|Portfolio Not Found| | | <a name=\"110\">110</a>|Property Schema Not Found| | | <a name=\"111\">111</a>|Portfolio Ancestry Not Found| | | <a name=\"112\">112</a>|Portfolio With Id Already Exists| | | <a name=\"113\">113</a>|Orphaned Portfolio| | | <a name=\"119\">119</a>|Missing Base Claims| | | <a name=\"121\">121</a>|Property Not Defined| | | <a name=\"122\">122</a>|Cannot Delete System Property| | | <a name=\"123\">123</a>|Cannot Modify Immutable Property Field| | | <a name=\"124\">124</a>|Property Already Exists| | | <a name=\"125\">125</a>|Invalid Property Life Time| | | <a name=\"126\">126</a>|Property Constraint Style Excludes Properties| | | <a name=\"127\">127</a>|Cannot Modify Default Data Type| | | <a name=\"128\">128</a>|Group Already Exists| | | <a name=\"129\">129</a>|No Such Data Type| | | <a name=\"130\">130</a>|Undefined Value For Data Type| | | <a name=\"131\">131</a>|Unsupported Value Type Defined On Data Type| | | <a name=\"132\">132</a>|Validation Error| | | <a name=\"133\">133</a>|Loop Detected In Group Hierarchy| | | <a name=\"134\">134</a>|Undefined Acceptable Values| | | <a name=\"135\">135</a>|Sub Group Already Exists| | | <a name=\"138\">138</a>|Price Source Not Found| | | <a name=\"139\">139</a>|Analytic Store Not Found| | | <a name=\"141\">141</a>|Analytic Store Already Exists| | | <a name=\"143\">143</a>|Client Instrument Already Exists| | | <a name=\"144\">144</a>|Duplicate In Parameter Set| | | <a name=\"147\">147</a>|Results Not Found| | | <a name=\"148\">148</a>|Order Field Not In Result Set| | | <a name=\"149\">149</a>|Operation Failed| | | <a name=\"150\">150</a>|Elastic Search Error| | | <a name=\"151\">151</a>|Invalid Parameter Value| | | <a name=\"153\">153</a>|Command Processing Failure| | | <a name=\"154\">154</a>|Entity State Construction Failure| | | <a name=\"155\">155</a>|Entity Timeline Does Not Exist| | | <a name=\"156\">156</a>|Concurrency Conflict Failure| | | <a name=\"157\">157</a>|Invalid Request| | | <a name=\"158\">158</a>|Event Publish Unknown| | | <a name=\"159\">159</a>|Event Query Failure| | | <a name=\"160\">160</a>|Blob Did Not Exist| | | <a name=\"162\">162</a>|Sub System Request Failure| | | <a name=\"163\">163</a>|Sub System Configuration Failure| | | <a name=\"165\">165</a>|Failed To Delete| | | <a name=\"166\">166</a>|Upsert Client Instrument Failure| | | <a name=\"167\">167</a>|Illegal As At Interval| | | <a name=\"168\">168</a>|Illegal Bitemporal Query| | | <a name=\"169\">169</a>|Invalid Alternate Id| | | <a name=\"170\">170</a>|Cannot Add Source Portfolio Property Explicitly| | | <a name=\"171\">171</a>|Entity Already Exists In Group| | | <a name=\"173\">173</a>|Entity With Id Already Exists| | | <a name=\"174\">174</a>|Derived Portfolio Details Do Not Exist| | | <a name=\"176\">176</a>|Portfolio With Name Already Exists| | | <a name=\"177\">177</a>|Invalid Transactions| | | <a name=\"178\">178</a>|Reference Portfolio Not Found| | | <a name=\"179\">179</a>|Duplicate Id| | | <a name=\"180\">180</a>|Command Retrieval Failure| | | <a name=\"181\">181</a>|Data Filter Application Failure| | | <a name=\"182\">182</a>|Search Failed| | | <a name=\"183\">183</a>|Movements Engine Configuration Key Failure| | | <a name=\"184\">184</a>|Fx Rate Source Not Found| | | <a name=\"185\">185</a>|Accrual Source Not Found| | | <a name=\"186\">186</a>|Access Denied| | | <a name=\"187\">187</a>|Invalid Identity Token| | | <a name=\"188\">188</a>|Invalid Request Headers| | | <a name=\"189\">189</a>|Price Not Found| | | <a name=\"190\">190</a>|Invalid Sub Holding Keys Provided| | | <a name=\"191\">191</a>|Duplicate Sub Holding Keys Provided| | | <a name=\"192\">192</a>|Cut Definition Not Found| | | <a name=\"193\">193</a>|Cut Definition Invalid| | | <a name=\"194\">194</a>|Time Variant Property Deletion Date Unspecified| | | <a name=\"195\">195</a>|Perpetual Property Deletion Date Specified| | | <a name=\"196\">196</a>|Time Variant Property Upsert Date Unspecified| | | <a name=\"197\">197</a>|Perpetual Property Upsert Date Specified| | | <a name=\"200\">200</a>|Invalid Unit For Data Type| | | <a name=\"201\">201</a>|Invalid Type For Data Type| | | <a name=\"202\">202</a>|Invalid Value For Data Type| | | <a name=\"203\">203</a>|Unit Not Defined For Data Type| | | <a name=\"204\">204</a>|Units Not Supported On Data Type| | | <a name=\"205\">205</a>|Cannot Specify Units On Data Type| | | <a name=\"206\">206</a>|Unit Schema Inconsistent With Data Type| | | <a name=\"207\">207</a>|Unit Definition Not Specified| | | <a name=\"208\">208</a>|Duplicate Unit Definitions Specified| | | <a name=\"209\">209</a>|Invalid Units Definition| | | <a name=\"210\">210</a>|Invalid Instrument Identifier Unit| | | <a name=\"211\">211</a>|Holdings Adjustment Does Not Exist| | | <a name=\"212\">212</a>|Could Not Build Excel Url| | | <a name=\"213\">213</a>|Could Not Get Excel Version| | | <a name=\"214\">214</a>|Instrument By Code Not Found| | | <a name=\"215\">215</a>|Entity Schema Does Not Exist| | | <a name=\"216\">216</a>|Feature Not Supported On Portfolio Type| | | <a name=\"217\">217</a>|Quote Not Found| | | <a name=\"218\">218</a>|Invalid Quote Identifier| | | <a name=\"219\">219</a>|Invalid Metric For Data Type| | | <a name=\"220\">220</a>|Invalid Instrument Definition| | | <a name=\"221\">221</a>|Instrument Upsert Failure| | | <a name=\"222\">222</a>|Reference Portfolio Request Not Supported| | | <a name=\"223\">223</a>|Transaction Portfolio Request Not Supported| | | <a name=\"224\">224</a>|Invalid Property Value Assignment| | | <a name=\"230\">230</a>|Transaction Type Not Found| | | <a name=\"231\">231</a>|Transaction Type Duplication| | | <a name=\"232\">232</a>|Portfolio Does Not Exist At Given Date| | | <a name=\"233\">233</a>|Query Parser Failure| | | <a name=\"234\">234</a>|Duplicate Constituent| | | <a name=\"235\">235</a>|Unresolved Instrument Constituent| | | <a name=\"236\">236</a>|Unresolved Instrument In Transition| | | <a name=\"237\">237</a>|Missing Side Definitions| | | <a name=\"299\">299</a>|Invalid Recipe| | | <a name=\"300\">300</a>|Missing Recipe| | | <a name=\"301\">301</a>|Dependencies| | | <a name=\"304\">304</a>|Portfolio Preprocess Failure| | | <a name=\"310\">310</a>|Valuation Engine Failure| | | <a name=\"311\">311</a>|Task Factory Failure| | | <a name=\"312\">312</a>|Task Evaluation Failure| | | <a name=\"313\">313</a>|Task Generation Failure| | | <a name=\"314\">314</a>|Engine Configuration Failure| | | <a name=\"315\">315</a>|Model Specification Failure| | | <a name=\"320\">320</a>|Market Data Key Failure| | | <a name=\"321\">321</a>|Market Resolver Failure| | | <a name=\"322\">322</a>|Market Data Failure| | | <a name=\"330\">330</a>|Curve Failure| | | <a name=\"331\">331</a>|Volatility Surface Failure| | | <a name=\"332\">332</a>|Volatility Cube Failure| | | <a name=\"350\">350</a>|Instrument Failure| | | <a name=\"351\">351</a>|Cash Flows Failure| | | <a name=\"352\">352</a>|Reference Data Failure| | | <a name=\"360\">360</a>|Aggregation Failure| | | <a name=\"361\">361</a>|Aggregation Measure Failure| | | <a name=\"370\">370</a>|Result Retrieval Failure| | | <a name=\"371\">371</a>|Result Processing Failure| | | <a name=\"372\">372</a>|Vendor Result Processing Failure| | | <a name=\"373\">373</a>|Vendor Result Mapping Failure| | | <a name=\"374\">374</a>|Vendor Library Unauthorised| | | <a name=\"375\">375</a>|Vendor Connectivity Error| | | <a name=\"376\">376</a>|Vendor Interface Error| | | <a name=\"377\">377</a>|Vendor Pricing Failure| | | <a name=\"378\">378</a>|Vendor Translation Failure| | | <a name=\"379\">379</a>|Vendor Key Mapping Failure| | | <a name=\"380\">380</a>|Vendor Reflection Failure| | | <a name=\"390\">390</a>|Attempt To Upsert Duplicate Quotes| | | <a name=\"391\">391</a>|Corporate Action Source Does Not Exist| | | <a name=\"392\">392</a>|Corporate Action Source Already Exists| | | <a name=\"393\">393</a>|Instrument Identifier Already In Use| | | <a name=\"394\">394</a>|Properties Not Found| | | <a name=\"395\">395</a>|Batch Operation Aborted| | | <a name=\"400\">400</a>|Invalid Iso4217 Currency Code| | | <a name=\"401\">401</a>|Cannot Assign Instrument Identifier To Currency| | | <a name=\"402\">402</a>|Cannot Assign Currency Identifier To Non Currency| | | <a name=\"403\">403</a>|Currency Instrument Cannot Be Deleted| | | <a name=\"404\">404</a>|Currency Instrument Cannot Have Economic Definition| | | <a name=\"405\">405</a>|Currency Instrument Cannot Have Lookthrough Portfolio| | | <a name=\"406\">406</a>|Cannot Create Currency Instrument With Multiple Identifiers| | | <a name=\"407\">407</a>|Specified Currency Is Undefined| | | <a name=\"410\">410</a>|Index Does Not Exist| | | <a name=\"411\">411</a>|Sort Field Does Not Exist| | | <a name=\"413\">413</a>|Negative Pagination Parameters| | | <a name=\"414\">414</a>|Invalid Search Syntax| | | <a name=\"415\">415</a>|Filter Execution Timeout| | | <a name=\"420\">420</a>|Side Definition Inconsistent| | | <a name=\"450\">450</a>|Invalid Quote Access Metadata Rule| | | <a name=\"451\">451</a>|Access Metadata Not Found| | | <a name=\"452\">452</a>|Invalid Access Metadata Identifier| | | <a name=\"460\">460</a>|Standard Resource Not Found| | | <a name=\"461\">461</a>|Standard Resource Conflict| | | <a name=\"462\">462</a>|Calendar Not Found| | | <a name=\"463\">463</a>|Date In A Calendar Not Found| | | <a name=\"464\">464</a>|Invalid Date Source Data| | | <a name=\"465\">465</a>|Invalid Timezone| | | <a name=\"601\">601</a>|Person Identifier Already In Use| | | <a name=\"602\">602</a>|Person Not Found| | | <a name=\"603\">603</a>|Cannot Set Identifier| | | <a name=\"617\">617</a>|Invalid Recipe Specification In Request| | | <a name=\"618\">618</a>|Inline Recipe Deserialisation Failure| | | <a name=\"619\">619</a>|Identifier Types Not Set For Entity| | | <a name=\"620\">620</a>|Cannot Delete All Client Defined Identifiers| | | <a name=\"650\">650</a>|The Order requested was not found.| | | <a name=\"654\">654</a>|The Allocation requested was not found.| | | <a name=\"655\">655</a>|Cannot build the fx forward target with the given holdings.| | | <a name=\"656\">656</a>|Group does not contain expected entities.| | | <a name=\"667\">667</a>|Relation definition already exists| | | <a name=\"673\">673</a>|Missing entitlements for entities in Group| | | <a name=\"674\">674</a>|Next Best Action not found| | | <a name=\"676\">676</a>|Relation definition not defined| | | <a name=\"677\">677</a>|Invalid entity identifier for relation| | | <a name=\"681\">681</a>|Sorting by specified field not supported|One or more of the provided fields to order by were either invalid or not supported. | | <a name=\"682\">682</a>|Too many fields to sort by|The number of fields to sort the data by exceeds the number allowed by the endpoint | | <a name=\"684\">684</a>|Sequence Not Found| | | <a name=\"685\">685</a>|Sequence Already Exists| | | <a name=\"686\">686</a>|Non-cycling sequence has been exhausted| | | <a name=\"687\">687</a>|Legal Entity Identifier Already In Use| | | <a name=\"688\">688</a>|Legal Entity Not Found| | | <a name=\"689\">689</a>|The supplied pagination token is invalid| | | <a name=\"690\">690</a>|Property Type Is Not Supported| | | <a name=\"691\">691</a>|Multiple Tax-lots For Currency Type Is Not Supported| | # noqa: E501
The version of the OpenAPI document: 0.11.2275
Contact: info@finbourne.com
Generated by: https://openapi-generator.tech
"""
import pprint
import re # noqa: F401
import six
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, LusidInstrument):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
37811,
198,
220,
220,
220,
406,
2937,
2389,
7824,
628,
220,
220,
220,
1303,
22395,
220,
770,
2443,
4963,
262,
685,
43,
2937,
2389,
23113,
16151,
5450,
1378,
2503,
13,
41790,
312,
13,
785,
14,
15042,
14,
2032,
7928,
828,
543,
3578,
39019,
7534,
284,
12405,
290,
4296,
511,
1366,
1626,
262,
406,
2937,
2389,
3859,
13,
220,
26144,
82,
284,
9427,
351,
262,
406,
2937,
2389,
23113,
389,
1695,
287,
262,
1708,
8950,
1058,
220,
1635,
685,
34,
2,
16151,
5450,
1378,
12567,
13,
785,
14,
15643,
12544,
14,
41790,
312,
12,
21282,
74,
12,
66,
48554,
8,
1635,
685,
29584,
16151,
5450,
1378,
12567,
13,
785,
14,
15643,
12544,
14,
41790,
312,
12,
21282,
74,
12,
12355,
8,
1635,
685,
29584,
7391,
16151,
5450,
1378,
12567,
13,
785,
14,
15643,
12544,
14,
41790,
312,
12,
21282,
74,
12,
8457,
8,
1635,
685,
37906,
16151,
5450,
1378,
12567,
13,
785,
14,
15643,
12544,
14,
41790,
312,
12,
21282,
74,
12,
29412,
8,
220,
1303,
6060,
9104,
220,
383,
406,
2937,
2389,
7824,
468,
257,
5365,
18700,
475,
4457,
3665,
1366,
2746,
13,
1881,
286,
262,
4661,
286,
406,
2937,
2389,
373,
407,
284,
4605,
319,
7534,
257,
2060,
20831,
1366,
2746,
475,
2138,
284,
2148,
257,
12846,
8489,
4291,
543,
7534,
460,
3975,
511,
898,
1366,
4981,
13,
220,
383,
4755,
12066,
287,
406,
2937,
2389,
2148,
257,
10926,
4645,
290,
900,
286,
6958,
11,
290,
262,
1366,
2746,
460,
307,
7083,
1262,
24946,
13,
220,
383,
406,
2937,
2389,
1366,
2746,
318,
7362,
832,
262,
406,
2937,
2389,
23113,
13,
220,
383,
23113,
2148,
1895,
284,
1111,
1597,
5563,
290,
262,
13634,
1366,
973,
284,
17425,
262,
3341,
38975,
13,
220,
220,
383,
1994,
1597,
12066,
389,
25,
532,
1635,
12429,
13924,
45242,
1174,
317,
15320,
318,
257,
9290,
329,
8945,
290,
27572,
357,
64,
12429,
48720,
4347,
13652,
1174,
8,
393,
22573,
357,
64,
12429,
26687,
4347,
13652,
1174,
737,
1635,
12429,
28532,
1572,
4347,
45242,
1174,
13,
9626,
1572,
4347,
45242,
1249,
4347,
45242,
284,
307,
2727,
1912,
319,
584,
4347,
45242,
11,
416,
44987,
393,
4375,
2176,
3709,
13,
1635,
12429,
26807,
654,
1174,
317,
31703,
318,
257,
12040,
286,
281,
42410,
393,
257,
5236,
286,
5003,
1626,
257,
4347,
13652,
13,
220,
31681,
460,
691,
307,
12328,
2884,
46192,
13,
1635,
12429,
8291,
4658,
1174,
317,
45389,
318,
281,
3034,
1785,
326,
8833,
287,
257,
4347,
13652,
11,
6666,
663,
27572,
284,
1487,
13,
1635,
12429,
10606,
38133,
24439,
1174,
317,
6355,
2223,
318,
257,
1910,
1785,
543,
8833,
284,
281,
42410,
290,
4145,
8991,
284,
477,
47837,
543,
4769,
262,
8875,
13,
220,
21066,
389,
4283,
30778,
393,
4017,
5355,
13,
1635,
12429,
34184,
34272,
658,
1174,
317,
39384,
318,
257,
1700,
287,
257,
20984,
4347,
13652,
7268,
281,
42410,
290,
281,
3917,
3463,
13,
1635,
12429,
818,
2536,
2886,
1174,
220,
1052,
8875,
6870,
257,
7395,
11,
2083,
540,
8875,
393,
440,
4825,
2775,
326,
318,
7223,
284,
257,
8611,
290,
257,
4769,
13,
1635,
12429,
2964,
18200,
1174,
1439,
1688,
12066,
1249,
3224,
2836,
5447,
6608,
284,
307,
3917,
351,
606,
13,
220,
220,
1114,
1672,
11,
257,
4347,
13652,
4706,
743,
307,
3917,
351,
257,
15320,
13,
220,
30277,
1366,
3407,
25,
532,
1635,
12429,
48720,
24897,
1174,
46192,
389,
21765,
351,
257,
2176,
8611,
2099,
13,
220,
383,
3858,
389,
5456,
5447,
290,
389,
973,
284,
3975,
262,
45389,
284,
257,
2168,
286,
8650,
543,
4296,
262,
15320,
27572,
13,
220,
1635,
12429,
2964,
18200,
24897,
1174,
24897,
286,
2836,
5447,
6608,
973,
1626,
262,
1080,
13,
220,
22492,
41063,
220,
1439,
1366,
287,
406,
2937,
2389,
318,
38135,
379,
262,
5456,
1241,
13,
220,
7232,
871,
287,
406,
2937,
2389,
389,
34450,
416,
257,
3748,
2438,
13,
220,
3887,
9312,
3160,
1626,
257,
12219,
1366,
18398,
1900,
355,
257,
41063,
13,
220,
41063,
318,
281,
5369,
25745,
5086,
734,
12066,
351,
262,
976,
3748,
2438,
284,
763,
12,
38476,
1626,
1981,
2209,
9029,
13,
220,
1114,
1672,
11,
4536,
329,
1602,
871,
422,
1180,
17192,
743,
307,
19144,
656,
1180,
629,
13920,
884,
355,
4600,
16366,
14,
85,
18738,
16,
63,
290,
4600,
16366,
14,
85,
18738,
17,
44646,
220,
317,
15320,
743,
788,
307,
17560,
1262,
2035,
286,
262,
2756,
4237,
416,
32578,
262,
5035,
8354,
13,
220,
406,
2937,
2389,
1012,
2334,
2314,
1895,
629,
13920,
286,
584,
7534,
13,
220,
22492,
43953,
220,
406,
2937,
2389,
468,
663,
898,
3170,
12,
259,
8875,
4958,
543,
345,
460,
779,
284,
4958,
534,
898,
8875,
6881,
13,
220,
3887,
8875,
1276,
307,
2727,
351,
530,
393,
517,
3748,
1910,
42814,
11,
884,
355,
685,
16254,
40,
16151,
5450,
1378,
9654,
5647,
72,
13,
785,
14,
737,
1114,
597,
1729,
12,
17935,
12834,
357,
1533,
440,
4825,
82,
828,
345,
460,
9516,
281,
8875,
1028,
257,
2183,
4522,
286,
534,
11236,
13,
220,
554,
3090,
11,
406,
2937,
2389,
481,
31935,
1123,
8875,
257,
3748,
705,
43,
2937,
2389,
8875,
27421,
4458,
383,
406,
2937,
2389,
8875,
27421,
318,
644,
318,
973,
618,
33794,
8945,
11,
27572,
11,
4536,
11,
3503,
13,
383,
7824,
32142,
281,
4600,
259,
43872,
14,
5460,
929,
63,
36123,
543,
460,
307,
973,
284,
35847,
777,
406,
2937,
2389,
42814,
1262,
511,
1910,
42814,
13,
220,
16210,
460,
307,
20717,
1262,
262,
19694,
7395,
2438,
7694,
2966,
351,
19990,
63,
4093,
56,
62,
63,
7879,
304,
13,
70,
13,
4600,
4093,
56,
62,
4579,
47,
63,
220,
22492,
42410,
6060,
220,
42410,
1366,
460,
307,
19144,
284,
262,
1080,
1262,
262,
685,
818,
43872,
24946,
16151,
2,
12985,
14,
818,
43872,
2964,
18200,
8,
36123,
13,
220,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
7383,
91,
26745,
2539,
91,
464,
1994,
286,
262,
3119,
13,
770,
2753,
262,
5794,
1391,
27830,
92,
14,
90,
29982,
92,
14,
90,
8189,
92,
304,
13,
70,
13,
705,
818,
43872,
14,
10057,
14,
5376,
6,
393,
705,
48720,
14,
2536,
4338,
14,
421,
1187,
570,
282,
4458,
930,
930,
11052,
91,
8841,
91,
464,
1988,
286,
262,
3119,
13,
930,
930,
29455,
4863,
91,
19608,
8079,
28968,
91,
464,
4050,
4818,
8079,
422,
543,
262,
3119,
318,
4938,
13,
930,
930,
29455,
18273,
91,
19608,
8079,
28968,
91,
464,
4050,
4818,
8079,
1566,
543,
262,
3119,
318,
4938,
13,
1002,
407,
14275,
428,
481,
307,
4938,
24391,
11,
6196,
6993,
799,
278,
3815,
351,
29455,
4863,
338,
287,
262,
2003,
13,
930,
220,
220,
22492,
45389,
4347,
45242,
220,
4347,
45242,
389,
262,
1353,
12,
5715,
9312,
16472,
1626,
406,
2937,
2389,
11,
7268,
8945,
11,
6355,
4028,
290,
27572,
13,
220,
220,
220,
383,
8945,
1382,
510,
262,
15320,
27572,
319,
543,
1188,
6055,
11,
23696,
7630,
1222,
2994,
290,
2526,
460,
307,
10488,
13,
220,
24946,
460,
307,
3917,
351,
4347,
45242,
284,
751,
287,
3224,
1366,
13,
220,
4347,
13652,
6608,
460,
307,
3421,
625,
640,
11,
329,
1672,
284,
1249,
257,
4347,
13652,
9142,
284,
307,
6692,
351,
257,
4347,
13652,
13,
220,
12032,
11,
47837,
460,
307,
792,
333,
270,
1417,
290,
2714,
416,
584,
47837,
11,
5086,
406,
2937,
2389,
284,
1620,
19990,
7109,
359,
12,
9579,
7879,
656,
10238,
1814,
27572,
220,
44386,
9626,
1572,
4347,
45242,
220,
406,
2937,
2389,
635,
3578,
329,
257,
15320,
284,
307,
13160,
286,
1194,
15320,
2884,
10944,
47837,
13,
220,
317,
10944,
15320,
460,
3994,
663,
898,
8945,
290,
635,
10639,
896,
597,
8945,
422,
663,
2560,
15320,
13,
220,
4377,
2458,
925,
284,
262,
2560,
15320,
389,
6338,
12548,
287,
10944,
15320,
13,
220,
9626,
1572,
47837,
287,
17856,
351,
629,
13920,
389,
257,
3665,
5678,
13,
220,
1114,
1672,
11,
284,
466,
662,
12,
25351,
644,
12,
361,
3781,
11,
257,
10944,
15320,
714,
307,
2727,
257,
649,
25745,
6692,
284,
262,
10238,
2107,
357,
8000,
8,
15320,
13,
220,
14691,
460,
788,
307,
21846,
319,
262,
10944,
15320,
1231,
13891,
262,
2107,
15320,
13,
220,
44386,
46192,
220,
317,
8611,
6870,
281,
3034,
3842,
1028,
257,
4347,
13652,
13,
220,
46192,
389,
13686,
1864,
284,
257,
8398,
13,
770,
481,
1560,
262,
406,
2937,
2389,
3113,
703,
284,
6179,
262,
8611,
290,
9380,
4296,
262,
27572,
13,
406,
2937,
2389,
2058,
351,
257,
900,
286,
8611,
3858,
345,
460,
779,
503,
286,
262,
3091,
11,
393,
345,
460,
17425,
534,
898,
900,
7,
82,
8,
286,
8945,
13,
220,
1114,
517,
3307,
766,
262,
685,
43,
2937,
2389,
18067,
31026,
10005,
329,
8611,
8398,
8183,
7,
5450,
1378,
11284,
13,
41790,
312,
13,
785,
14,
11250,
870,
12,
7645,
2673,
12,
19199,
8,
220,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
45389,
7390,
91,
8841,
91,
464,
3748,
27421,
329,
262,
8611,
13,
930,
930,
5994,
91,
8841,
91,
464,
2099,
286,
262,
8611,
304,
13,
70,
13,
705,
14518,
3256,
705,
50,
695,
4458,
383,
8611,
2099,
815,
423,
587,
662,
12,
11250,
1522,
2884,
262,
4482,
28373,
7824,
36123,
13,
1002,
340,
5818,
470,
587,
662,
12,
11250,
1522,
262,
8611,
481,
991,
307,
6153,
393,
18846,
2158,
345,
481,
307,
5906,
284,
7716,
262,
43440,
27572,
329,
262,
15320,
326,
4909,
428,
8611,
355,
406,
2937,
2389,
857,
407,
760,
703,
284,
1429,
340,
13,
930,
930,
42410,
33234,
13350,
91,
8899,
91,
32,
900,
286,
8875,
42814,
284,
779,
284,
10568,
262,
8611,
284,
257,
3748,
8875,
13,
930,
930,
3602,
31538,
91,
4475,
273,
8968,
18242,
91,
464,
3128,
286,
262,
8611,
13,
930,
930,
45404,
10430,
91,
4475,
273,
8968,
18242,
91,
464,
9443,
3128,
286,
262,
8611,
13,
930,
930,
27719,
91,
12501,
4402,
91,
464,
1271,
286,
4991,
1007,
23800,
287,
262,
3917,
8875,
13,
930,
930,
45389,
18124,
91,
7645,
2673,
20888,
91,
464,
2756,
329,
1123,
4326,
286,
262,
1007,
23800,
8875,
287,
262,
8611,
7395,
13,
930,
930,
7472,
19626,
341,
91,
34415,
392,
17287,
91,
464,
2472,
1988,
286,
262,
8611,
287,
262,
9443,
7395,
13,
930,
930,
12516,
32184,
91,
12501,
4402,
91,
464,
5163,
2494,
1022,
262,
8611,
290,
9443,
7395,
13,
1114,
1672,
611,
262,
8611,
7395,
318,
287,
11403,
290,
262,
9443,
7395,
318,
287,
13124,
47,
428,
428,
262,
11403,
14,
4579,
47,
2494,
13,
930,
930,
45389,
34,
13382,
91,
34415,
91,
464,
8611,
7395,
13,
930,
930,
24946,
91,
8899,
91,
7248,
286,
3748,
8611,
6608,
290,
3917,
3815,
284,
3650,
351,
262,
8611,
13,
5501,
3119,
1276,
307,
422,
262,
705,
48720,
6,
7386,
13,
930,
930,
15034,
10608,
7390,
91,
8841,
91,
464,
27421,
329,
262,
3753,
10608,
286,
262,
8611,
13,
930,
930,
8090,
91,
8841,
91,
464,
2723,
286,
262,
8611,
13,
770,
318,
973,
284,
804,
510,
262,
5035,
8611,
1448,
900,
287,
262,
8611,
2099,
8398,
13,
930,
220,
220,
3574,
777,
7032,
11,
262,
1708,
3815,
460,
307,
10488,
220,
1635,
12429,
48720,
1988,
287,
45389,
7395,
1174,
25,
7472,
19626,
341,
1220,
12516,
32184,
220,
1635,
12429,
48720,
1988,
287,
4347,
13652,
7395,
1174,
25,
45389,
1988,
287,
45389,
7395,
1635,
9601,
2514,
13924,
13652,
32184,
220,
1303,
21017,
17934,
46192,
220,
46424,
317,
8070,
27637,
17934,
7683,
1672,
8945,
389,
3402,
287,
262,
3084,
2174,
13,
220,
220,
1119,
2380,
257,
5001,
286,
11403,
2853,
50251,
19764,
7303,
1626,
257,
23647,
2853,
50251,
15320,
13,
220,
220,
1635,
383,
717,
734,
8945,
389,
329,
4553,
2822,
290,
277,
87,
17674,
220,
220,
220,
1635,
9842,
1112,
5323,
19764,
7303,
329,
720,
4869,
11,
22148,
13,
405,
220,
220,
220,
1635,
317,
4136,
3215,
5163,
11315,
284,
1814,
262,
19764,
5001,
13,
357,
14518,
720,
4869,
11,
22148,
13,
405,
329,
1222,
2,
24136,
26,
4051,
11,
23,
3510,
13,
1899,
8,
220,
1635,
383,
2368,
8611,
318,
281,
13527,
2196,
286,
262,
2029,
17674,
13,
9842,
1112,
5323,
19764,
7303,
290,
25446,
3264,
287,
23647,
13,
220,
930,
29201,
930,
220,
11763,
9601,
930,
376,
87,
9601,
930,
11763,
9601,
351,
3215,
45404,
930,
930,
37404,
930,
37404,
930,
37404,
930,
37404,
930,
930,
45389,
7390,
930,
13186,
45,
2388,
16,
930,
13186,
45,
2388,
17,
930,
13186,
45,
2388,
18,
930,
930,
5994,
930,
11763,
930,
376,
87,
14518,
930,
11763,
930,
930,
42410,
33234,
13350,
930,
1391,
19990,
5647,
72,
34607,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
1391,
19990,
4093,
56,
34607,
19990,
4093,
56,
62,
29072,
7879,
1782,
930,
1391,
19990,
5647,
72,
34607,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
930,
3602,
31538,
930,
2864,
12,
2919,
12,
2999,
930,
2864,
12,
2919,
12,
2999,
930,
2864,
12,
2919,
12,
2999,
930,
930,
45404,
10430,
930,
2864,
12,
2919,
12,
3312,
930,
2864,
12,
2919,
12,
3312,
930,
2864,
12,
2919,
12,
3312,
930,
930,
27719,
930,
5323,
930,
767,
1415,
1795,
930,
5323,
930,
930,
45389,
18124,
930,
25181,
13,
4846,
930,
352,
930,
25181,
13,
4846,
930,
930,
9601,
34,
13382,
930,
11403,
930,
11403,
930,
11403,
930,
930,
12516,
32184,
930,
352,
930,
657,
13,
32059,
18,
930,
657,
13,
32059,
18,
930,
930,
7472,
19626,
341,
13,
31264,
930,
767,
1415,
1795,
13,
405,
930,
642,
2780,
3510,
13,
1899,
930,
642,
2780,
3510,
13,
1899,
930,
930,
7472,
19626,
341,
13,
34,
13382,
930,
11403,
930,
13124,
47,
930,
13124,
47,
930,
930,
9601,
14,
12286,
14,
35965,
2514,
13924,
13652,
32184,
5,
459,
26,
930,
657,
13,
32059,
18,
930,
657,
13,
32059,
18,
930,
657,
13,
32059,
18,
930,
220,
49082,
459,
26,
770,
318,
257,
3119,
2214,
60,
220,
46424,
317,
19530,
19534,
17934,
220,
406,
2937,
2389,
468,
257,
12846,
8611,
38591,
1080,
11,
3616,
612,
389,
257,
1271,
286,
1180,
2842,
286,
38591,
2651,
277,
87,
17674,
13,
220,
383,
4277,
406,
2937,
2389,
8611,
3858,
389,
376,
16993,
37,
87,
14518,
290,
376,
16993,
37,
87,
50,
695,
13,
8554,
777,
8611,
3858,
11,
406,
2937,
2389,
481,
7716,
734,
27572,
329,
1123,
19530,
19534,
3292,
11,
530,
329,
1123,
7395,
287,
262,
3292,
13,
220,
1052,
1672,
19530,
376,
87,
3292,
284,
3677,
13124,
47,
329,
11403,
287,
257,
21331,
56,
12,
6559,
50251,
15320,
318,
3402,
2174,
25,
220,
930,
29201,
930,
19530,
705,
50,
695,
6,
9601,
930,
11822,
930,
930,
37404,
930,
37404,
930,
13498,
930,
930,
45389,
7390,
930,
13186,
45,
2388,
19,
930,
930,
930,
5994,
930,
376,
16993,
37,
87,
50,
695,
930,
930,
930,
42410,
33234,
13350,
930,
1391,
19990,
818,
43872,
14,
12286,
14,
34,
13382,
34607,
19990,
4579,
47,
7879,
1782,
930,
930,
930,
3602,
31538,
930,
2864,
12,
2919,
12,
2999,
930,
930,
930,
45404,
10430,
930,
13130,
12,
2999,
12,
3312,
930,
9699,
1227,
2651,
930,
930,
27719,
930,
33028,
13,
405,
930,
27719,
286,
13124,
47,
930,
930,
45389,
18124,
930,
352,
930,
930,
930,
9601,
34,
13382,
930,
13124,
47,
930,
20113,
852,
2702,
930,
930,
12516,
32184,
930,
352,
13,
18,
23726,
930,
2449,
15977,
2494,
1022,
13124,
47,
290,
11403,
930,
930,
7472,
19626,
341,
13,
31264,
930,
1511,
23726,
13,
405,
930,
26308,
287,
262,
9443,
7395,
11,
11403,
930,
930,
7472,
19626,
341,
13,
34,
13382,
930,
11403,
930,
45404,
7395,
930,
930,
9601,
14,
12286,
14,
35965,
2514,
13924,
13652,
32184,
930,
25181,
13,
3459,
930,
14806,
1022,
3292,
7395,
11,
13124,
47,
290,
15320,
2779,
7395,
11,
21331,
56,
930,
220,
4222,
3465,
326,
3446,
262,
976,
3034,
9172,
714,
307,
953,
11978,
1262,
262,
376,
16993,
37,
87,
14518,
45389,
5994,
351,
262,
6867,
290,
3965,
17687,
13,
220,
44386,
31681,
220,
317,
4769,
6870,
257,
2292,
287,
281,
8875,
393,
5003,
319,
257,
1813,
3128,
13,
220,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
42410,
52,
312,
91,
8841,
91,
464,
555,
40603,
518,
406,
385,
312,
42410,
5121,
357,
43,
27586,
8,
286,
262,
8875,
326,
262,
4769,
318,
287,
13,
930,
930,
3834,
26807,
278,
40729,
91,
8899,
91,
464,
850,
12,
19216,
6608,
543,
5911,
262,
4769,
13,
5501,
3119,
481,
307,
422,
262,
705,
48720,
6,
7386,
13,
2312,
389,
17839,
618,
257,
8611,
15320,
318,
2727,
13,
930,
930,
24946,
91,
8899,
91,
464,
6608,
543,
423,
587,
9167,
284,
307,
24789,
4291,
262,
4769,
13,
2312,
481,
307,
422,
262,
705,
818,
43872,
6,
393,
705,
26807,
278,
6,
7386,
13,
930,
930,
31703,
6030,
91,
8841,
91,
464,
2099,
286,
262,
4769,
304,
13,
70,
13,
23158,
11,
22924,
11,
16210,
6935,
270,
434,
11,
19520,
21911,
11,
19530,
17213,
3503,
13,
930,
930,
27719,
91,
12501,
4402,
91,
464,
2472,
1271,
286,
4991,
286,
262,
4769,
13,
930,
930,
41479,
992,
3118,
896,
91,
12501,
4402,
91,
464,
2472,
1271,
286,
10282,
4991,
286,
262,
4769,
13,
930,
930,
6446,
91,
34415,
392,
17287,
91,
464,
2472,
1575,
286,
262,
4769,
287,
262,
8611,
7395,
13,
930,
930,
6446,
13924,
13652,
34,
948,
91,
34415,
392,
17287,
91,
464,
2472,
1575,
286,
262,
4769,
287,
262,
15320,
7395,
13,
930,
930,
45389,
91,
7645,
2673,
91,
464,
8611,
3917,
351,
281,
29286,
992,
4769,
13,
930,
220,
220,
22492,
26040,
24439,
220,
26040,
4028,
389,
7997,
1626,
406,
2937,
2389,
287,
2846,
286,
257,
900,
286,
8875,
12,
11423,
705,
7645,
1756,
4458,
220,
2312,
27188,
389,
973,
284,
11986,
262,
6809,
286,
262,
6355,
2223,
11,
290,
262,
1245,
326,
262,
6355,
2223,
481,
423,
319,
27572,
287,
883,
6809,
13,
220,
44386,
26040,
7561,
220,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
26040,
31573,
91,
8189,
91,
464,
3748,
27421,
286,
428,
6355,
2223,
930,
930,
12489,
91,
8841,
91,
220,
930,
930,
43470,
434,
10430,
91,
19608,
8079,
28968,
91,
464,
8009,
3128,
286,
262,
6355,
2223,
930,
930,
1475,
10430,
91,
19608,
8079,
28968,
91,
464,
409,
3128,
286,
262,
6355,
2223,
930,
930,
13266,
10430,
91,
19608,
8079,
28968,
91,
464,
1700,
3128,
286,
262,
6355,
2223,
930,
930,
28784,
10430,
91,
19608,
8079,
28968,
91,
464,
6074,
3128,
286,
262,
6355,
2223,
930,
930,
3602,
1756,
91,
10215,
38133,
2673,
7645,
653,
21737,
91,
464,
27188,
326,
1255,
422,
428,
6355,
2223,
930,
220,
220,
44386,
40658,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
23412,
8291,
653,
91,
10215,
38133,
2673,
7645,
653,
42895,
91,
5497,
12364,
262,
4308,
286,
262,
6355,
2223,
532,
543,
2324,
290,
703,
867,
4991,
930,
930,
25235,
8291,
1756,
91,
10215,
38133,
2673,
7645,
653,
42895,
21737,
91,
2061,
481,
307,
7560,
3585,
284,
262,
5128,
6801,
930,
220,
220,
44386,
17934,
26040,
7561,
3602,
1756,
220,
1303,
21017,
317,
360,
1699,
437,
7561,
40658,
220,
554,
428,
1672,
11,
329,
1123,
2648,
286,
19764,
11,
657,
13,
1238,
4991,
357,
273,
1160,
279,
594,
8,
286,
13124,
47,
389,
7560,
13,
220,
930,
29201,
930,
220,
23412,
40658,
930,
25235,
40658,
930,
930,
37404,
930,
37404,
930,
37404,
930,
930,
42410,
11440,
13350,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
1391,
19990,
535,
88,
7879,
1058,
19990,
4093,
56,
62,
4579,
47,
7879,
1782,
930,
930,
27719,
27929,
930,
352,
930,
657,
13,
1238,
930,
930,
6446,
27929,
930,
352,
930,
657,
930,
220,
1303,
21017,
317,
27758,
7561,
40658,
220,
554,
428,
1672,
11,
329,
1123,
2648,
286,
19764,
11,
356,
886,
510,
351,
362,
4991,
357,
17,
7303,
8,
286,
19764,
11,
351,
2472,
1988,
21588,
13,
220,
930,
29201,
930,
220,
23412,
40658,
930,
25235,
40658,
930,
930,
37404,
930,
37404,
930,
37404,
930,
930,
42410,
11440,
13350,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
930,
27719,
27929,
930,
352,
930,
362,
930,
930,
6446,
27929,
930,
352,
930,
352,
930,
220,
1303,
21017,
317,
28002,
2364,
7561,
40658,
220,
554,
428,
1672,
11,
329,
1123,
2648,
286,
19764,
11,
356,
886,
510,
351,
352,
4326,
357,
16,
2648,
8,
286,
19764,
290,
513,
4991,
357,
18,
7303,
8,
286,
47245,
3970,
11,
351,
7600,
4,
286,
262,
1988,
5637,
319,
262,
19764,
2648,
11,
290,
642,
4,
287,
1123,
47245,
3970,
2648,
357,
1314,
4,
2472,
737,
220,
930,
29201,
930,
220,
23412,
40658,
930,
25235,
40658,
352,
930,
25235,
40658,
362,
930,
930,
37404,
930,
37404,
930,
37404,
930,
37404,
930,
930,
42410,
11440,
13350,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
9148,
6144,
39,
21,
7879,
1782,
930,
1391,
19990,
5647,
72,
7879,
1058,
19990,
15199,
38,
830,
32886,
10761,
37,
18,
7879,
1782,
930,
930,
27719,
27929,
930,
352,
930,
352,
930,
513,
930,
930,
6446,
27929,
930,
352,
930,
657,
13,
5332,
930,
657,
13,
1314,
930,
220,
22492,
20984,
4347,
45242,
20984,
47837,
389,
47837,
326,
3994,
22573,
351,
19590,
13,
220,
1119,
389,
3562,
284,
2380,
12066,
884,
355,
36525,
290,
31747,
13,
220,
44386,
4757,
34272,
658,
930,
7663,
91,
6030,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
42410,
33234,
13350,
91,
8899,
91,
40257,
8875,
42814,
930,
930,
42410,
52,
312,
91,
8841,
91,
43,
2937,
2389,
338,
5387,
3748,
8875,
27421,
11,
12939,
422,
262,
8875,
42814,
930,
930,
20113,
91,
12501,
4402,
91,
220,
930,
930,
14331,
91,
12501,
4402,
91,
220,
930,
930,
49768,
25844,
91,
12501,
4402,
91,
220,
930,
220,
220,
22492,
4347,
13652,
27441,
4347,
13652,
2628,
1249,
262,
5103,
286,
257,
18911,
422,
47837,
290,
2628,
13,
220,
4347,
13652,
4560,
319,
262,
1448,
389,
10945,
319,
281,
13262,
515,
900,
286,
47837,
287,
262,
18911,
13,
220,
220,
1114,
1672,
25,
220,
220,
1635,
8060,
4347,
45242,
4808,
7,
8094,
8,
62,
220,
220,
1635,
3486,
2246,
4808,
7,
8094,
8,
62,
220,
220,
220,
220,
1635,
9764,
9071,
4808,
7,
634,
13652,
8,
62,
220,
220,
220,
220,
1635,
2869,
4808,
7,
634,
13652,
8,
62,
220,
220,
1635,
2031,
4808,
7,
8094,
8,
62,
220,
220,
220,
220,
1635,
4881,
4808,
7,
634,
13652,
8,
62,
220,
220,
220,
220,
1635,
4486,
4808,
7,
634,
13652,
8,
62,
220,
220,
1635,
3482,
4808,
7,
634,
13652,
8,
62,
220,
220,
554,
428,
1672,
12429,
22289,
4347,
45242,
1174,
318,
257,
1448,
326,
10874,
286,
281,
19406,
286,
12429,
48559,
9071,
1174,
11,
12429,
16504,
1174,
11,
12429,
28572,
1174,
11,
12429,
27079,
1174,
290,
12429,
15039,
1174,
47837,
13,
220,
22492,
24946,
220,
24946,
389,
1994,
12,
8367,
14729,
326,
460,
307,
5625,
284,
597,
9312,
1626,
257,
7386,
357,
3003,
257,
7386,
318,
4600,
25351,
47671,
4600,
634,
13652,
47671,
4600,
12961,
63,
3503,
737,
220,
24946,
1276,
307,
5447,
878,
779,
351,
257,
4600,
21746,
36621,
63,
290,
460,
788,
12412,
307,
2087,
284,
12066,
13,
220,
220,
22492,
10011,
2611,
220,
317,
6496,
6764,
286,
262,
12066,
973,
416,
262,
7824,
290,
10007,
329,
886,
13033,
543,
1011,
257,
19449,
3188,
460,
307,
29517,
2884,
262,
4600,
15952,
2611,
63,
36123,
13,
220,
22492,
30277,
1366,
220,
383,
1708,
24697,
389,
4504,
319,
477,
9109,
422,
406,
2937,
2389,
220,
930,
6530,
930,
32039,
930,
930,
11420,
930,
11420,
930,
930,
300,
385,
312,
12,
28961,
12,
32257,
930,
22920,
286,
262,
2581,
930,
930,
300,
385,
312,
12,
28961,
12,
13138,
930,
10127,
393,
407,
406,
2937,
2389,
3177,
262,
2581,
284,
307,
4388,
930,
930,
300,
385,
312,
12,
28961,
12,
25927,
7390,
930,
383,
3748,
27421,
329,
262,
2581,
930,
930,
300,
385,
312,
12,
15952,
2611,
12,
6371,
930,
8799,
75,
286,
262,
32815,
329,
262,
1366,
852,
4504,
930,
930,
300,
385,
312,
12,
26745,
12,
15952,
2611,
12,
6371,
930,
8799,
75,
286,
262,
32815,
329,
597,
6608,
930,
220,
220,
1303,
13047,
44380,
220,
930,
6127,
91,
5376,
91,
11828,
930,
930,
11420,
91,
6329,
91,
6329,
930,
930,
1279,
64,
1438,
17553,
12,
940,
38214,
12,
940,
3556,
64,
29,
91,
10697,
28373,
13047,
91,
220,
930,
930,
1279,
64,
1438,
17553,
12,
16,
38214,
12,
16,
3556,
64,
29,
91,
20035,
4049,
91,
2025,
10059,
4049,
373,
12956,
319,
674,
1735,
13,
930,
930,
1279,
64,
1438,
17553,
15377,
38214,
15377,
3556,
64,
29,
91,
14815,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
15197,
38214,
15197,
3556,
64,
29,
91,
32,
14415,
14806,
27272,
13085,
341,
91,
220,
930,
930,
1279,
64,
1438,
17553,
13464,
38214,
13464,
3556,
64,
29,
91,
818,
43872,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
13348,
38214,
13348,
3556,
64,
29,
91,
21746,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
15801,
38214,
15801,
3556,
64,
29,
91,
13924,
13652,
3311,
24197,
36350,
91,
220,
930,
930,
1279,
64,
1438,
17553,
15711,
38214,
15711,
3556,
64,
29,
91,
13247,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
14454,
38214,
14454,
3556,
64,
29,
91,
13924,
13652,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
11442,
38214,
11442,
3556,
64,
29,
91,
21746,
10011,
2611,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
16243,
38214,
16243,
3556,
64,
29,
91,
13924,
13652,
31200,
563,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
14686,
38214,
14686,
3556,
64,
29,
91,
13924,
13652,
2080,
5121,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
16616,
38214,
16616,
3556,
64,
29,
91,
5574,
19080,
276,
4347,
13652,
91,
220,
930,
930,
1279,
64,
1438,
17553,
16315,
38214,
16315,
3556,
64,
29,
91,
43730,
7308,
36880,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19244,
38214,
19244,
3556,
64,
29,
91,
21746,
1892,
2896,
1389,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18376,
38214,
18376,
3556,
64,
29,
91,
34,
34574,
23520,
4482,
14161,
91,
220,
930,
930,
1279,
64,
1438,
17553,
10163,
38214,
10163,
3556,
64,
29,
91,
34,
34574,
3401,
1958,
9543,
18187,
14161,
7663,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17464,
38214,
17464,
3556,
64,
29,
91,
21746,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
11623,
38214,
11623,
3556,
64,
29,
91,
44651,
14161,
5155,
3862,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19420,
38214,
19420,
3556,
64,
29,
91,
21746,
1482,
2536,
2913,
17738,
1475,
13955,
24946,
91,
220,
930,
930,
1279,
64,
1438,
17553,
16799,
38214,
16799,
3556,
64,
29,
91,
34,
34574,
3401,
1958,
15161,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
12762,
38214,
12762,
3556,
64,
29,
91,
13247,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18741,
38214,
18741,
3556,
64,
29,
91,
2949,
8013,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
12952,
38214,
12952,
3556,
64,
29,
91,
31319,
18156,
11052,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22042,
38214,
22042,
3556,
64,
29,
91,
3118,
15999,
11052,
5994,
2896,
1389,
1550,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19924,
38214,
19924,
3556,
64,
29,
91,
7762,
24765,
13047,
91,
220,
930,
930,
1279,
64,
1438,
17553,
16945,
38214,
16945,
3556,
64,
29,
91,
39516,
46497,
554,
4912,
36496,
9282,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19880,
38214,
19880,
3556,
64,
29,
91,
31319,
18156,
21699,
540,
27068,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17059,
38214,
17059,
3556,
64,
29,
91,
7004,
4912,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20107,
38214,
20107,
3556,
64,
29,
91,
18124,
8090,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20219,
38214,
20219,
3556,
64,
29,
91,
37702,
13370,
9363,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23756,
38214,
23756,
3556,
64,
29,
91,
37702,
13370,
9363,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21139,
38214,
21139,
3556,
64,
29,
91,
11792,
42410,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18444,
38214,
18444,
3556,
64,
29,
91,
35660,
489,
5344,
554,
25139,
2357,
5345,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20198,
38214,
20198,
3556,
64,
29,
91,
25468,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18294,
38214,
18294,
3556,
64,
29,
91,
18743,
7663,
1892,
554,
25414,
5345,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19442,
38214,
19442,
3556,
64,
29,
91,
32180,
22738,
91,
220,
930,
930,
1279,
64,
1438,
17553,
8628,
38214,
8628,
3556,
64,
29,
91,
9527,
3477,
11140,
13047,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24309,
38214,
24309,
3556,
64,
29,
91,
44651,
25139,
2357,
11052,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21395,
38214,
21395,
3556,
64,
29,
91,
21575,
28403,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21526,
38214,
21526,
3556,
64,
29,
91,
32398,
1812,
20395,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18742,
38214,
18742,
3556,
64,
29,
91,
32398,
43040,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21599,
38214,
21599,
3556,
64,
29,
91,
3103,
34415,
27863,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18458,
38214,
18458,
3556,
64,
29,
91,
44651,
19390,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21273,
38214,
21273,
3556,
64,
29,
91,
9237,
8525,
1836,
16185,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19707,
38214,
19707,
3556,
64,
29,
91,
9237,
43301,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
14198,
38214,
14198,
3556,
64,
29,
91,
3629,
672,
7731,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25061,
38214,
25061,
3556,
64,
29,
91,
7004,
4482,
19390,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24136,
38214,
24136,
3556,
64,
29,
91,
7004,
4482,
28373,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20986,
38214,
20986,
3556,
64,
29,
91,
37,
6255,
1675,
23520,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23055,
38214,
23055,
3556,
64,
29,
91,
52,
862,
861,
20985,
42410,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21940,
38214,
21940,
3556,
64,
29,
91,
33666,
18011,
1081,
1629,
4225,
2100,
91,
220,
930,
930,
1279,
64,
1438,
17553,
14656,
38214,
14656,
3556,
64,
29,
91,
33666,
18011,
4722,
368,
35738,
43301,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22172,
38214,
22172,
3556,
64,
29,
91,
44651,
42400,
5121,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17279,
38214,
17279,
3556,
64,
29,
91,
34,
34574,
3060,
8090,
4347,
13652,
14161,
11884,
306,
91,
220,
930,
930,
1279,
64,
1438,
17553,
27192,
38214,
27192,
3556,
64,
29,
91,
32398,
27511,
1475,
1023,
554,
4912,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25399,
38214,
25399,
3556,
64,
29,
91,
32398,
2080,
5121,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22985,
38214,
22985,
3556,
64,
29,
91,
28532,
1572,
4347,
13652,
14890,
2141,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24096,
38214,
24096,
3556,
64,
29,
91,
13924,
13652,
2080,
6530,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22413,
38214,
22413,
3556,
64,
29,
91,
44651,
46192,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23188,
38214,
23188,
3556,
64,
29,
91,
26687,
4347,
13652,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21738,
38214,
21738,
3556,
64,
29,
91,
35660,
489,
5344,
5121,
91,
220,
930,
930,
1279,
64,
1438,
17553,
15259,
38214,
15259,
3556,
64,
29,
91,
21575,
4990,
380,
18206,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
27057,
38214,
27057,
3556,
64,
29,
91,
6601,
25853,
15678,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24294,
38214,
24294,
3556,
64,
29,
91,
18243,
22738,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24839,
38214,
24839,
3556,
64,
29,
91,
21774,
902,
7117,
28373,
7383,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22883,
38214,
22883,
3556,
64,
29,
91,
37,
87,
14806,
8090,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21652,
38214,
21652,
3556,
64,
29,
91,
17320,
622,
282,
8090,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25096,
38214,
25096,
3556,
64,
29,
91,
15457,
5601,
798,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23451,
38214,
23451,
3556,
64,
29,
91,
44651,
27207,
29130,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20356,
38214,
20356,
3556,
64,
29,
91,
44651,
19390,
7123,
364,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23362,
38214,
23362,
3556,
64,
29,
91,
18124,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19782,
38214,
19782,
3556,
64,
29,
91,
44651,
3834,
31703,
26363,
29750,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26492,
38214,
26492,
3556,
64,
29,
91,
35660,
489,
5344,
3834,
31703,
26363,
29750,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17477,
38214,
17477,
3556,
64,
29,
91,
26254,
30396,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24943,
38214,
24943,
3556,
64,
29,
91,
26254,
30396,
17665,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22913,
38214,
22913,
3556,
64,
29,
91,
7575,
38215,
14161,
1024,
1616,
295,
7536,
791,
23599,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22186,
38214,
22186,
3556,
64,
29,
91,
5990,
6449,
723,
14161,
1024,
1616,
295,
7536,
18291,
1431,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25272,
38214,
25272,
3556,
64,
29,
91,
7575,
38215,
14161,
35949,
861,
7536,
791,
23599,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24991,
38214,
24991,
3556,
64,
29,
91,
5990,
6449,
723,
14161,
35949,
861,
7536,
18291,
1431,
91,
220,
930,
930,
1279,
64,
1438,
17553,
2167,
38214,
2167,
3556,
64,
29,
91,
44651,
11801,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
1264,
38214,
1264,
3556,
64,
29,
91,
44651,
5994,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19004,
38214,
19004,
3556,
64,
29,
91,
44651,
11052,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22416,
38214,
22416,
3556,
64,
29,
91,
26453,
1892,
2896,
1389,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18638,
38214,
18638,
3556,
64,
29,
91,
3118,
896,
1892,
36848,
1550,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21261,
38214,
21261,
3556,
64,
29,
91,
34,
34574,
18291,
1958,
27719,
1550,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22136,
38214,
22136,
3556,
64,
29,
91,
26453,
10011,
2611,
3457,
684,
7609,
2080,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22745,
38214,
22745,
3556,
64,
29,
91,
26453,
30396,
1892,
18291,
1431,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21315,
38214,
21315,
3556,
64,
29,
91,
35660,
489,
5344,
11801,
45205,
18291,
1431,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22567,
38214,
22567,
3556,
64,
29,
91,
44651,
27719,
30396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21536,
38214,
21536,
3556,
64,
29,
91,
44651,
42410,
11440,
7483,
11801,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21895,
38214,
21895,
3556,
64,
29,
91,
26807,
654,
20292,
434,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21777,
38214,
21777,
3556,
64,
29,
91,
23722,
1892,
10934,
24134,
8799,
75,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26427,
38214,
26427,
3556,
64,
29,
91,
23722,
1892,
3497,
24134,
10628,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22291,
38214,
22291,
3556,
64,
29,
91,
818,
43872,
2750,
6127,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23349,
38214,
23349,
3556,
64,
29,
91,
32398,
10011,
2611,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20666,
38214,
20666,
3556,
64,
29,
91,
38816,
1892,
36848,
1550,
4347,
13652,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24591,
38214,
24591,
3556,
64,
29,
91,
25178,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
28727,
38214,
28727,
3556,
64,
29,
91,
44651,
19879,
11440,
7483,
91,
220,
930,
930,
1279,
64,
1438,
17553,
28896,
38214,
28896,
3556,
64,
29,
91,
44651,
3395,
1173,
1114,
6060,
5994,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17572,
38214,
17572,
3556,
64,
29,
91,
44651,
42410,
30396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26115,
38214,
26115,
3556,
64,
29,
91,
818,
43872,
35949,
861,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23148,
38214,
23148,
3556,
64,
29,
91,
26687,
4347,
13652,
19390,
1892,
36848,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22047,
38214,
22047,
3556,
64,
29,
91,
48720,
4347,
13652,
19390,
1892,
36848,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24137,
38214,
24137,
3556,
64,
29,
91,
44651,
14161,
11052,
50144,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19214,
38214,
19214,
3556,
64,
29,
91,
48720,
5994,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25667,
38214,
25667,
3556,
64,
29,
91,
48720,
5994,
49821,
3299,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24339,
38214,
24339,
3556,
64,
29,
91,
13924,
13652,
8314,
1892,
1475,
396,
1629,
11259,
7536,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25429,
38214,
25429,
3556,
64,
29,
91,
20746,
23042,
263,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24409,
38214,
24409,
3556,
64,
29,
91,
35660,
489,
5344,
4757,
34272,
298,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22370,
38214,
22370,
3556,
64,
29,
91,
3118,
411,
5634,
42410,
4757,
34272,
298,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24940,
38214,
24940,
3556,
64,
29,
91,
3118,
411,
5634,
42410,
554,
40658,
91,
220,
930,
930,
1279,
64,
1438,
17553,
24693,
38214,
24693,
3556,
64,
29,
91,
43730,
12075,
45205,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22579,
38214,
22579,
3556,
64,
29,
91,
44651,
26694,
91,
220,
930,
930,
1279,
64,
1438,
17553,
6200,
38214,
6200,
3556,
64,
29,
91,
43730,
26694,
91,
220,
930,
930,
1279,
64,
1438,
17553,
18938,
38214,
18938,
3556,
64,
29,
91,
35,
2690,
3976,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21288,
38214,
21288,
3556,
64,
29,
91,
13924,
13652,
3771,
14681,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26717,
38214,
26717,
3556,
64,
29,
91,
7762,
2288,
7117,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
36244,
38214,
36244,
3556,
64,
29,
91,
25714,
19239,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
27970,
38214,
27970,
3556,
64,
29,
91,
25714,
34959,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25838,
38214,
25838,
3556,
64,
29,
91,
25714,
16588,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
33638,
38214,
33638,
3556,
64,
29,
91,
13798,
28373,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
27936,
38214,
27936,
3556,
64,
29,
91,
17633,
18291,
2649,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
19504,
38214,
19504,
3556,
64,
29,
91,
27470,
6060,
7383,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
36453,
38214,
36453,
3556,
64,
29,
91,
27470,
1874,
14375,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
37283,
38214,
37283,
3556,
64,
29,
91,
27470,
6060,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26073,
38214,
26073,
3556,
64,
29,
91,
26628,
303,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
31697,
38214,
31697,
3556,
64,
29,
91,
16598,
18486,
20321,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
32148,
38214,
32148,
3556,
64,
29,
91,
16598,
18486,
23315,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
14877,
38214,
14877,
3556,
64,
29,
91,
818,
43872,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35273,
38214,
35273,
3556,
64,
29,
91,
35361,
1610,
1666,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
33394,
38214,
33394,
3556,
64,
29,
91,
26687,
6060,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
15277,
38214,
15277,
3556,
64,
29,
91,
46384,
43068,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35195,
38214,
35195,
3556,
64,
29,
91,
46384,
43068,
24291,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
20167,
38214,
20167,
3556,
64,
29,
91,
23004,
4990,
380,
18206,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
38056,
38214,
38056,
3556,
64,
29,
91,
23004,
28403,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
36720,
38214,
36720,
3556,
64,
29,
91,
53,
18738,
25414,
28403,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
34770,
38214,
34770,
3556,
64,
29,
91,
53,
18738,
25414,
337,
5912,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
31020,
38214,
31020,
3556,
64,
29,
91,
53,
18738,
10074,
791,
9800,
1417,
91,
220,
930,
930,
1279,
64,
1438,
17553,
22318,
38214,
22318,
3556,
64,
29,
91,
53,
18738,
8113,
3458,
13047,
91,
220,
930,
930,
1279,
64,
1438,
17553,
32128,
38214,
32128,
3556,
64,
29,
91,
53,
18738,
26491,
13047,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26514,
38214,
26514,
3556,
64,
29,
91,
53,
18738,
45030,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
30695,
38214,
30695,
3556,
64,
29,
91,
53,
18738,
33322,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
29088,
38214,
29088,
3556,
64,
29,
91,
53,
18738,
7383,
337,
5912,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
23734,
38214,
23734,
3556,
64,
29,
91,
53,
18738,
6524,
1564,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
25964,
38214,
25964,
3556,
64,
29,
91,
37177,
1675,
35949,
861,
49821,
5344,
2264,
6421,
91,
220,
930,
930,
1279,
64,
1438,
17553,
37710,
38214,
37710,
3556,
64,
29,
91,
10606,
38133,
7561,
8090,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
32321,
38214,
32321,
3556,
64,
29,
91,
10606,
38133,
7561,
8090,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26007,
38214,
26007,
3556,
64,
29,
91,
818,
43872,
11440,
7483,
27511,
554,
5765,
91,
220,
930,
930,
1279,
64,
1438,
17553,
34626,
38214,
34626,
3556,
64,
29,
91,
2964,
18200,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
31010,
38214,
31010,
3556,
64,
29,
91,
33,
963,
14680,
2275,
9741,
91,
220,
930,
930,
1279,
64,
1438,
17553,
7029,
38214,
7029,
3556,
64,
29,
91,
44651,
314,
568,
3682,
1558,
20113,
6127,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21844,
38214,
21844,
3556,
64,
29,
91,
34,
34574,
2195,
570,
42410,
11440,
7483,
1675,
20113,
91,
220,
930,
930,
1279,
64,
1438,
17553,
32531,
38214,
32531,
3556,
64,
29,
91,
34,
34574,
2195,
570,
20113,
11440,
7483,
1675,
8504,
20113,
91,
220,
930,
930,
1279,
64,
1438,
17553,
31552,
38214,
31552,
3556,
64,
29,
91,
34,
13382,
42410,
26003,
1355,
1024,
33342,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26429,
38214,
26429,
3556,
64,
29,
91,
34,
13382,
42410,
26003,
8192,
11279,
30396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
26598,
38214,
26598,
3556,
64,
29,
91,
34,
13382,
42410,
26003,
8192,
6803,
9579,
4347,
13652,
91,
220,
930,
930,
1279,
64,
1438,
17553,
29703,
38214,
29703,
3556,
64,
29,
91,
34,
34574,
13610,
20113,
42410,
2080,
20401,
11440,
13350,
91,
220,
930,
930,
1279,
64,
1438,
17553,
30120,
38214,
30120,
3556,
64,
29,
91,
22882,
1431,
20113,
1148,
13794,
18156,
91,
220,
930,
930,
1279,
64,
1438,
17553,
33289,
38214,
33289,
3556,
64,
29,
91,
15732,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
42224,
38214,
42224,
3556,
64,
29,
91,
42758,
7663,
8314,
1892,
1475,
396,
91,
220,
930,
930,
1279,
64,
1438,
17553,
44103,
38214,
44103,
3556,
64,
29,
91,
32863,
876,
31525,
1883,
40117,
91,
220,
930,
930,
1279,
64,
1438,
17553,
37309,
38214,
37309,
3556,
64,
29,
91,
44651,
11140,
26375,
897,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35038,
38214,
35038,
3556,
64,
29,
91,
22417,
37497,
3862,
448,
91,
220,
930,
930,
1279,
64,
1438,
17553,
27211,
38214,
27211,
3556,
64,
29,
91,
24819,
30396,
3457,
684,
7609,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17885,
38214,
17885,
3556,
64,
29,
91,
44651,
19879,
8798,
3395,
14706,
14330,
91,
220,
930,
930,
1279,
64,
1438,
17553,
36330,
38214,
36330,
3556,
64,
29,
91,
15457,
3395,
14706,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
37730,
38214,
37730,
3556,
64,
29,
91,
44651,
8798,
3395,
14706,
11440,
7483,
91,
220,
930,
930,
1279,
64,
1438,
17553,
34716,
38214,
34716,
3556,
64,
29,
91,
23615,
20857,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
40652,
38214,
40652,
3556,
64,
29,
91,
23615,
20857,
27863,
91,
220,
930,
930,
1279,
64,
1438,
17553,
39997,
38214,
39997,
3556,
64,
29,
91,
9771,
9239,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
38380,
38214,
38380,
3556,
64,
29,
91,
10430,
554,
317,
26506,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
44578,
38214,
44578,
3556,
64,
29,
91,
44651,
7536,
8090,
6060,
91,
220,
930,
930,
1279,
64,
1438,
17553,
42018,
38214,
42018,
3556,
64,
29,
91,
44651,
3862,
11340,
91,
220,
930,
930,
1279,
64,
1438,
17553,
41706,
38214,
41706,
3556,
64,
29,
91,
15439,
11440,
7483,
27511,
554,
5765,
91,
220,
930,
930,
1279,
64,
1438,
17553,
31418,
38214,
31418,
3556,
64,
29,
91,
15439,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35642,
38214,
35642,
3556,
64,
29,
91,
34,
34574,
5345,
11440,
7483,
91,
220,
930,
930,
1279,
64,
1438,
17553,
47941,
38214,
47941,
3556,
64,
29,
91,
44651,
26694,
18291,
2649,
554,
19390,
91,
220,
930,
930,
1279,
64,
1438,
17553,
47448,
38214,
47448,
3556,
64,
29,
91,
818,
1370,
26694,
2935,
48499,
5612,
25743,
91,
220,
930,
930,
1279,
64,
1438,
17553,
21,
1129,
38214,
21,
1129,
3556,
64,
29,
91,
33234,
7483,
24897,
1892,
5345,
1114,
20885,
91,
220,
930,
930,
1279,
64,
1438,
17553,
38850,
38214,
38850,
3556,
64,
29,
91,
34,
34574,
23520,
1439,
20985,
2896,
1389,
11440,
13350,
91,
220,
930,
930,
1279,
64,
1438,
17553,
17544,
38214,
17544,
3556,
64,
29,
91,
464,
8284,
9167,
373,
407,
1043,
13,
91,
220,
930,
930,
1279,
64,
1438,
17553,
39111,
38214,
39111,
3556,
64,
29,
91,
464,
1439,
5040,
9167,
373,
407,
1043,
13,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35916,
38214,
35916,
3556,
64,
29,
91,
34,
34574,
1382,
262,
277,
87,
2651,
2496,
351,
262,
1813,
27572,
13,
91,
220,
930,
930,
1279,
64,
1438,
17553,
37466,
38214,
37466,
3556,
64,
29,
91,
13247,
857,
407,
3994,
2938,
12066,
13,
91,
220,
930,
930,
1279,
64,
1438,
17553,
28933,
38214,
28933,
3556,
64,
29,
91,
6892,
341,
6770,
1541,
7160,
91,
220,
930,
930,
1279,
64,
1438,
17553,
45758,
38214,
45758,
3556,
64,
29,
91,
43730,
44594,
902,
329,
12066,
287,
4912,
91,
220,
930,
930,
1279,
64,
1438,
17553,
45385,
38214,
45385,
3556,
64,
29,
91,
10019,
6705,
7561,
407,
1043,
91,
220,
930,
930,
1279,
64,
1438,
17553,
42548,
38214,
42548,
3556,
64,
29,
91,
6892,
341,
6770,
407,
5447,
91,
220,
930,
930,
1279,
64,
1438,
17553,
40179,
38214,
40179,
3556,
64,
29,
91,
44651,
9312,
27421,
329,
8695,
91,
220,
930,
930,
1279,
64,
1438,
17553,
48564,
38214,
48564,
3556,
64,
29,
91,
50,
24707,
416,
7368,
2214,
407,
4855,
91,
3198,
393,
517,
286,
262,
2810,
7032,
284,
1502,
416,
547,
2035,
12515,
393,
407,
4855,
13,
930,
930,
1279,
64,
1438,
17553,
43950,
38214,
43950,
3556,
64,
29,
91,
23307,
867,
7032,
284,
3297,
416,
91,
464,
1271,
286,
7032,
284,
3297,
262,
1366,
416,
21695,
262,
1271,
3142,
416,
262,
36123,
930,
930,
1279,
64,
1438,
17553,
41580,
38214,
41580,
3556,
64,
29,
91,
44015,
594,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35978,
38214,
35978,
3556,
64,
29,
91,
44015,
594,
27511,
1475,
1023,
91,
220,
930,
930,
1279,
64,
1438,
17553,
33808,
38214,
33808,
3556,
64,
29,
91,
15419,
12,
948,
8493,
8379,
468,
587,
19064,
91,
220,
930,
930,
1279,
64,
1438,
17553,
39925,
38214,
39925,
3556,
64,
29,
91,
38263,
20885,
11440,
7483,
27511,
554,
5765,
91,
220,
930,
930,
1279,
64,
1438,
17553,
34427,
38214,
34427,
3556,
64,
29,
91,
38263,
20885,
1892,
4062,
91,
220,
930,
930,
1279,
64,
1438,
17553,
40523,
38214,
40523,
3556,
64,
29,
91,
464,
14275,
42208,
1883,
11241,
318,
12515,
91,
220,
930,
930,
1279,
64,
1438,
17553,
35844,
38214,
35844,
3556,
64,
29,
91,
21746,
5994,
1148,
1892,
36848,
91,
220,
930,
930,
1279,
64,
1438,
17553,
49541,
38214,
49541,
3556,
64,
29,
91,
31217,
9241,
12,
75,
1747,
1114,
20113,
5994,
1148,
1892,
36848,
91,
220,
930,
220,
220,
1303,
645,
20402,
25,
412,
33548,
628,
220,
220,
220,
383,
2196,
286,
262,
4946,
17614,
3188,
25,
657,
13,
1157,
13,
1828,
2425,
198,
220,
220,
220,
14039,
25,
7508,
31,
15643,
12544,
13,
785,
198,
220,
220,
220,
2980,
515,
416,
25,
3740,
1378,
9654,
15042,
12,
8612,
1352,
13,
13670,
198,
37811,
628,
198,
11748,
279,
4798,
198,
11748,
302,
220,
1303,
645,
20402,
25,
376,
21844,
198,
198,
11748,
2237,
628,
220,
220,
220,
825,
284,
62,
11600,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
2746,
6608,
355,
257,
8633,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
23884,
628,
220,
220,
220,
220,
220,
220,
220,
329,
708,
81,
11,
4808,
287,
2237,
13,
2676,
23814,
7,
944,
13,
9654,
15042,
62,
19199,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
796,
651,
35226,
7,
944,
11,
708,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
318,
39098,
7,
8367,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1351,
7,
8899,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
2124,
25,
2124,
13,
1462,
62,
11600,
3419,
611,
468,
35226,
7,
87,
11,
366,
1462,
62,
11600,
4943,
2073,
2124,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
468,
35226,
7,
8367,
11,
366,
1462,
62,
11600,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1988,
13,
1462,
62,
11600,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
318,
39098,
7,
8367,
11,
8633,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
8633,
7,
8899,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
37456,
2378,
25,
357,
9186,
58,
15,
4357,
2378,
58,
16,
4083,
1462,
62,
11600,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
468,
35226,
7,
9186,
58,
16,
4357,
366,
1462,
62,
11600,
4943,
2073,
2378,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
13,
23814,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
58,
35226,
60,
796,
1988,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1255,
628,
220,
220,
220,
825,
284,
62,
2536,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
4731,
10552,
286,
262,
2746,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
279,
4798,
13,
79,
18982,
7,
944,
13,
1462,
62,
11600,
28955,
628,
220,
220,
220,
825,
11593,
260,
1050,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1890,
4600,
4798,
63,
290,
4600,
381,
22272,
63,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
1462,
62,
2536,
3419,
628,
220,
220,
220,
825,
11593,
27363,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
2081,
611,
1111,
5563,
389,
4961,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
318,
39098,
7,
847,
11,
406,
385,
312,
818,
43872,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
834,
11600,
834,
6624,
584,
13,
834,
11600,
834,
628,
220,
220,
220,
825,
11593,
710,
834,
7,
944,
11,
584,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
2081,
611,
1111,
5563,
389,
407,
4961,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
407,
2116,
6624,
584,
198
] | 3.393807 | 8,913 |
import os
import sys
import sqlite3
con = None
filename = 'certificado'
# Abrir banco de dados para ler nomes.
try:
con = sqlite3.connect('math.db')
cur = con.cursor()
cur.execute('select * from math')
data = cur.fetchall()
except sqlite3.Error, e:
print "Error %s:" % e.args[0]
sys.exit(1)
finally:
if con:
con.close()
# Gerar um certificado para cada nome.
for row in data:
f = open(filename+'.tex','r+')
old = f.readlines()
if old[0][1:4] == 'def':
offset = 1
else:
offset = 0
f.seek(0)
f.write('\\def\\name {'+row[0]+'}\n')
f.writelines(old[offset:])
f.close()
# Compilar arquivo LaTeX
try:
os.system('pdflatex '+filename+'.tex')
os.system('mv '+filename+'.pdf '+filename+'_'+row[0].replace(' ','_')+'.pdf')
#os.system('xdg-open '+filename+'.pdf &')
except OSError:
print('LaTeX not installed.')
| [
11748,
28686,
198,
11748,
25064,
198,
11748,
44161,
578,
18,
198,
198,
1102,
796,
6045,
198,
34345,
796,
705,
22583,
811,
4533,
6,
198,
198,
2,
317,
1671,
343,
3958,
1073,
390,
9955,
418,
31215,
300,
263,
299,
2586,
13,
198,
28311,
25,
198,
220,
220,
220,
369,
796,
44161,
578,
18,
13,
8443,
10786,
11018,
13,
9945,
11537,
198,
220,
220,
220,
1090,
796,
369,
13,
66,
21471,
3419,
220,
220,
220,
220,
198,
220,
220,
220,
1090,
13,
41049,
10786,
19738,
1635,
422,
10688,
11537,
198,
220,
220,
220,
1366,
796,
1090,
13,
69,
7569,
439,
3419,
198,
198,
16341,
44161,
578,
18,
13,
12331,
11,
304,
25,
628,
220,
220,
220,
3601,
366,
12331,
4064,
82,
11097,
4064,
304,
13,
22046,
58,
15,
60,
198,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
198,
198,
69,
3289,
25,
628,
220,
220,
220,
611,
369,
25,
198,
220,
220,
220,
220,
220,
220,
220,
369,
13,
19836,
3419,
198,
198,
2,
13573,
283,
23781,
8700,
4533,
31215,
269,
4763,
299,
462,
13,
198,
1640,
5752,
287,
1366,
25,
198,
220,
220,
220,
277,
796,
1280,
7,
34345,
10,
4458,
16886,
41707,
81,
10,
11537,
198,
220,
220,
220,
1468,
796,
277,
13,
961,
6615,
3419,
198,
220,
220,
220,
611,
1468,
58,
15,
7131,
16,
25,
19,
60,
6624,
705,
4299,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
352,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11677,
796,
657,
198,
220,
220,
220,
277,
13,
36163,
7,
15,
8,
198,
220,
220,
220,
277,
13,
13564,
10786,
6852,
4299,
6852,
3672,
1391,
6,
10,
808,
58,
15,
48688,
6,
32239,
77,
11537,
198,
220,
220,
220,
277,
13,
8933,
20655,
7,
727,
58,
28968,
25,
12962,
198,
220,
220,
220,
277,
13,
19836,
3419,
198,
198,
2,
3082,
1794,
610,
421,
23593,
4689,
49568,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
10786,
30094,
2704,
378,
87,
705,
10,
34345,
10,
4458,
16886,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
10786,
76,
85,
705,
10,
34345,
10,
4458,
12315,
705,
10,
34345,
10,
6,
62,
6,
10,
808,
58,
15,
4083,
33491,
10786,
705,
4032,
62,
11537,
10,
4458,
12315,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
418,
13,
10057,
10786,
24954,
70,
12,
9654,
705,
10,
34345,
10,
4458,
12315,
1222,
11537,
198,
220,
220,
220,
2845,
440,
5188,
81,
1472,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
14772,
49568,
407,
6589,
2637,
8,
198
] | 2.122449 | 441 |
from pathlib import Path
from meth5.meth5 import MetH5File
| [
6738,
3108,
8019,
1330,
10644,
198,
6738,
11248,
20,
13,
76,
2788,
20,
1330,
3395,
39,
20,
8979,
628
] | 3.157895 | 19 |
#!/usr/bin/env python
# script to make seasonal means and stddev images of 4-day sig0
# values.
import os
import sys
import glob
import numpy as np
import sirpy2 as sp2
import argparse
from osgeo import gdal
DATADIR = "./"
NODATA_VALUE = -9999.0
Q2M = {
"JAS": list(range(7, 10)),
"OND": list(range(10, 13)),
"JFM": list(range(1, 4)),
"AMJ": list(range(4, 7)),
}
# this allows GDAL to throw Python Exceptions
gdal.UseExceptions()
if __name__ == "__main__":
# set up arguments
parser = argparse.ArgumentParser(
"script to make quarterly " + "means and stdevs of qscat dB values"
)
parser.add_argument(
"-v",
"--verbose",
help="increase output verbosity",
action="store_true",
default=False,
)
parser.add_argument(
"-q",
"--quarter",
nargs="?",
choices=("JAS", "OND", "JFM", "AMJ"),
default="JAS",
const="JAS",
help="Quarter for aggregation. Default=JAS",
)
parser.add_argument("region", help="BYU region string (e.g. SAm, NAm, Ama, etc.)")
parser.add_argument(
"year", type=int, help="Year e.g. 1999 (qscat data start in 1999)"
)
args = parser.parse_args()
verbose = args.verbose
year = args.year
quarter = args.quarter
# region list (LAEA regions only)
valid_region_list = [
"Grn",
"Ala",
"CAm",
"NAm",
"SAm",
"NAf",
"SAf",
"Sib",
"Eur",
"SAs",
"ChJ",
"Ind",
"Aus",
"Ber",
]
region = args.region
try:
region_index = valid_region_list.index(region)
except Exception:
sys.stderr.write("Region not valid.\n")
sys.stderr.write("Valid regions are:\n")
sys.stderr.write("{}\n".format(valid_region_list))
sys.exit(1)
if verbose:
print("region: {}".format(region))
print("year: {}".format(year))
print("quarter: {}".format(quarter))
# set data dir
indir = os.path.join(DATADIR, "geotiffs", region, str(year))
outdir = indir
if year == 1999:
year2 = 99
else:
year2 = "{:02d}".format(year - 2000)
monthlist = Q2M[quarter]
# make a list of files for this year
filepatt = "quev-a-{}{}-*.tif".format(region, year2)
globpatt = os.path.join(indir, filepatt)
if verbose:
print("glob pattern: {}".format(globpatt))
filelist = glob.glob(globpatt)
qlist = []
for filepath in filelist:
fn = os.path.basename(filepath)
if verbose:
print(fn)
fn_dt = sp2.fn2dt(fn, date_flag="center")
iyear = fn_dt.year
imonth = fn_dt.month
iday = fn_dt.day
if imonth in monthlist:
qlist.append(fn)
if verbose:
print("{}: {}-{}-{}".format(fn, iyear, imonth, iday))
print("{}-{}: {}".format(year, quarter, qlist))
if len(qlist) == 0:
warnmsg = "No images found for this quarter.\n"
sys.stdout.write(warnmsg)
sys.exit(0)
# loop over images for this quarter
db_quarter = []
for i, image in enumerate(qlist):
a_imgpath = os.path.join(indir, image)
try:
a_ds = gdal.Open(a_imgpath)
except Exception:
print("Unable to open {}".format(a_imgpath))
sys.exit(1)
try:
srcband = a_ds.GetRasterBand(1)
except Exception:
print("Band ({}) not found".format(1))
sys.exit(1)
a_data = srcband.ReadAsArray()
a_mask = a_data == NODATA_VALUE
# if this is the first image get projection and geotransform
if i == 0:
prj = a_ds.GetProjection()
gt = a_ds.GetGeoTransform()
ny, nx = a_data.shape
db_data = a_data
db_masked = np.ma.MaskedArray(db_data, a_mask)
# add image to db_quarter list
db_quarter.append(db_masked)
# close datasets
a_ds = None
# stack list into array and find mean and std
dbarray = np.ma.stack(db_quarter, axis=2)
dbmean = np.ma.mean(dbarray, axis=2)
dbstd = np.ma.std(dbarray, axis=2)
print(dbmean.shape)
# finally, save as a geotiff
output_format = "GTiff"
driver = gdal.GetDriverByName(output_format)
dst_filename = "{}-quev-mean-db-{}-{}.tif"
dst_filename = dst_filename.format(region, year, quarter)
dst_dir = os.path.join(DATADIR, "geotiffs", region, str(year))
dst_path = os.path.join(dst_dir, dst_filename)
if verbose:
print("Output file for sig0 means: {}".format(dst_path))
dst_ds = driver.Create(dst_path, nx, ny, 1, gdal.GDT_Float32)
dst_data = np.ma.filled(dbmean, fill_value=NODATA_VALUE)
dst_ds.GetRasterBand(1).WriteArray(dst_data)
dst_ds.GetRasterBand(1).SetNoDataValue(NODATA_VALUE)
print("gt: {}".format(gt))
dst_ds.SetGeoTransform(gt)
dst_ds.SetProjection(prj)
dst_ds = None
dbmean_min = dbmean.min()
dbmean_max = dbmean.max()
dbmean_median = np.ma.median(dbmean)
print("Quarterly ({}) Mean Stats".format(quarter))
print(" Min: {}".format(dbmean_min))
print(" Max: {}".format(dbmean_max))
print(" Median: {}".format(dbmean_median))
# repeat for standard deviation
output_format = "GTiff"
driver = gdal.GetDriverByName(output_format)
dst_filename = "{}-quev-std-db-{}-{}.tif".format(region, year, quarter)
dst_dir = os.path.join(DATADIR, "geotiffs", region, str(year))
dst_path = os.path.join(dst_dir, dst_filename)
if verbose:
print("Output file: {}".format(dst_path))
dst_ds = driver.Create(dst_path, nx, ny, 1, gdal.GDT_Float32)
dst_data = np.ma.filled(dbstd, fill_value=NODATA_VALUE)
dst_ds.GetRasterBand(1).WriteArray(dst_data)
dst_ds.GetRasterBand(1).SetNoDataValue(NODATA_VALUE)
print("gt: {}".format(gt))
dst_ds.SetGeoTransform(gt)
dst_ds.SetProjection(prj)
dst_ds = None
dbstd_min = dbstd.min()
dbstd_max = dbstd.max()
dbstd_median = np.ma.median(dbstd)
print("Quarterly ({}) Stdev Stats".format(quarter))
print(" Min: {}".format(dbstd_min))
print(" Max: {}".format(dbstd_max))
print(" Median: {}".format(dbstd_median))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
4226,
284,
787,
21819,
1724,
290,
336,
1860,
1990,
4263,
286,
604,
12,
820,
43237,
15,
198,
2,
3815,
13,
198,
198,
11748,
28686,
198,
11748,
25064,
198,
11748,
15095,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
15967,
9078,
17,
355,
599,
17,
198,
11748,
1822,
29572,
198,
6738,
28686,
469,
78,
1330,
308,
31748,
198,
198,
35,
1404,
2885,
4663,
796,
366,
19571,
1,
198,
45,
3727,
13563,
62,
39488,
796,
532,
24214,
13,
15,
198,
198,
48,
17,
44,
796,
1391,
198,
220,
220,
220,
366,
41,
1921,
1298,
1351,
7,
9521,
7,
22,
11,
838,
36911,
198,
220,
220,
220,
366,
18672,
1298,
1351,
7,
9521,
7,
940,
11,
1511,
36911,
198,
220,
220,
220,
366,
41,
23264,
1298,
1351,
7,
9521,
7,
16,
11,
604,
36911,
198,
220,
220,
220,
366,
2390,
41,
1298,
1351,
7,
9521,
7,
19,
11,
767,
36911,
198,
92,
198,
198,
2,
428,
3578,
27044,
1847,
284,
3714,
11361,
1475,
11755,
198,
21287,
282,
13,
11041,
3109,
11755,
3419,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
628,
220,
220,
220,
1303,
900,
510,
7159,
198,
220,
220,
220,
30751,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12048,
284,
787,
27868,
366,
1343,
366,
1326,
504,
290,
336,
7959,
82,
286,
10662,
1416,
265,
30221,
3815,
1,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
27444,
85,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
438,
19011,
577,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
24988,
589,
5072,
15942,
16579,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
2625,
8095,
62,
7942,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
28,
25101,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
27444,
80,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
438,
24385,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
299,
22046,
2625,
35379,
198,
220,
220,
220,
220,
220,
220,
220,
7747,
28,
7203,
41,
1921,
1600,
366,
18672,
1600,
366,
41,
23264,
1600,
366,
2390,
41,
12340,
198,
220,
220,
220,
220,
220,
220,
220,
4277,
2625,
41,
1921,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1500,
2625,
41,
1921,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
1037,
2625,
4507,
2571,
329,
46500,
13,
15161,
28,
41,
1921,
1600,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7203,
36996,
1600,
1037,
2625,
17513,
52,
3814,
4731,
357,
68,
13,
70,
13,
311,
5840,
11,
399,
5840,
11,
1703,
64,
11,
3503,
2014,
4943,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
7,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1941,
1600,
2099,
28,
600,
11,
1037,
2625,
17688,
304,
13,
70,
13,
7358,
357,
80,
1416,
265,
1366,
923,
287,
7358,
16725,
198,
220,
220,
220,
1267,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
220,
220,
220,
15942,
577,
796,
26498,
13,
19011,
577,
198,
220,
220,
220,
614,
796,
26498,
13,
1941,
198,
220,
220,
220,
3860,
796,
26498,
13,
24385,
628,
220,
220,
220,
1303,
3814,
1351,
357,
13534,
16412,
7652,
691,
8,
198,
220,
220,
220,
4938,
62,
36996,
62,
4868,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
366,
8642,
77,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
2348,
64,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
34,
5840,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4535,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4090,
76,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4535,
69,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4090,
69,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
50,
571,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
36,
333,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
50,
1722,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
1925,
41,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5497,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
32,
385,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
24814,
1600,
198,
220,
220,
220,
2361,
198,
220,
220,
220,
3814,
796,
26498,
13,
36996,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3814,
62,
9630,
796,
4938,
62,
36996,
62,
4868,
13,
9630,
7,
36996,
8,
198,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
301,
1082,
81,
13,
13564,
7203,
47371,
407,
4938,
13,
59,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
301,
1082,
81,
13,
13564,
7203,
47139,
7652,
389,
7479,
77,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
301,
1082,
81,
13,
13564,
7203,
90,
32239,
77,
1911,
18982,
7,
12102,
62,
36996,
62,
4868,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
36996,
25,
23884,
1911,
18982,
7,
36996,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
1941,
25,
23884,
1911,
18982,
7,
1941,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
24385,
25,
23884,
1911,
18982,
7,
24385,
4008,
628,
220,
220,
220,
1303,
900,
1366,
26672,
198,
220,
220,
220,
773,
343,
796,
28686,
13,
6978,
13,
22179,
7,
35,
1404,
2885,
4663,
11,
366,
469,
313,
10203,
1600,
3814,
11,
965,
7,
1941,
4008,
198,
220,
220,
220,
503,
15908,
796,
773,
343,
198,
220,
220,
220,
611,
614,
6624,
7358,
25,
198,
220,
220,
220,
220,
220,
220,
220,
614,
17,
796,
7388,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
614,
17,
796,
45144,
25,
2999,
67,
92,
1911,
18982,
7,
1941,
532,
4751,
8,
628,
220,
220,
220,
1227,
4868,
796,
1195,
17,
44,
58,
24385,
60,
628,
220,
220,
220,
1303,
787,
257,
1351,
286,
3696,
329,
428,
614,
198,
220,
220,
220,
2393,
79,
1078,
796,
366,
421,
1990,
12,
64,
12,
90,
18477,
92,
12,
24620,
49929,
1911,
18982,
7,
36996,
11,
614,
17,
8,
198,
220,
220,
220,
15095,
79,
1078,
796,
28686,
13,
6978,
13,
22179,
7,
521,
343,
11,
2393,
79,
1078,
8,
198,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
4743,
672,
3912,
25,
23884,
1911,
18982,
7,
4743,
672,
79,
1078,
4008,
198,
220,
220,
220,
2393,
4868,
796,
15095,
13,
4743,
672,
7,
4743,
672,
79,
1078,
8,
628,
220,
220,
220,
10662,
4868,
796,
17635,
198,
220,
220,
220,
329,
2393,
6978,
287,
2393,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
24714,
796,
28686,
13,
6978,
13,
12093,
12453,
7,
7753,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
22184,
8,
198,
220,
220,
220,
220,
220,
220,
220,
24714,
62,
28664,
796,
599,
17,
13,
22184,
17,
28664,
7,
22184,
11,
3128,
62,
32109,
2625,
16159,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
1941,
796,
24714,
62,
28664,
13,
1941,
198,
220,
220,
220,
220,
220,
220,
220,
545,
261,
400,
796,
24714,
62,
28664,
13,
8424,
198,
220,
220,
220,
220,
220,
220,
220,
220,
2567,
796,
24714,
62,
28664,
13,
820,
198,
220,
220,
220,
220,
220,
220,
220,
611,
545,
261,
400,
287,
1227,
4868,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10662,
4868,
13,
33295,
7,
22184,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
90,
38362,
23884,
12,
90,
92,
12,
90,
92,
1911,
18982,
7,
22184,
11,
1312,
1941,
11,
545,
261,
400,
11,
220,
2567,
4008,
628,
220,
220,
220,
3601,
7203,
90,
92,
12,
90,
38362,
23884,
1911,
18982,
7,
1941,
11,
3860,
11,
10662,
4868,
4008,
628,
220,
220,
220,
611,
18896,
7,
80,
4868,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
9828,
19662,
796,
366,
2949,
4263,
1043,
329,
428,
3860,
13,
59,
77,
1,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
19282,
448,
13,
13564,
7,
40539,
19662,
8,
198,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
15,
8,
628,
220,
220,
220,
1303,
9052,
625,
4263,
329,
428,
3860,
198,
220,
220,
220,
20613,
62,
24385,
796,
17635,
198,
220,
220,
220,
329,
1312,
11,
2939,
287,
27056,
378,
7,
80,
4868,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
257,
62,
9600,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
521,
343,
11,
2939,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
62,
9310,
796,
308,
31748,
13,
11505,
7,
64,
62,
9600,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
3118,
540,
284,
1280,
23884,
1911,
18982,
7,
64,
62,
9600,
6978,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12351,
3903,
796,
257,
62,
9310,
13,
3855,
49,
1603,
31407,
7,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
31407,
37913,
30072,
407,
1043,
1911,
18982,
7,
16,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7,
16,
8,
628,
220,
220,
220,
220,
220,
220,
220,
257,
62,
7890,
796,
12351,
3903,
13,
5569,
1722,
19182,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
257,
62,
27932,
796,
257,
62,
7890,
6624,
399,
3727,
13563,
62,
39488,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
611,
428,
318,
262,
717,
2939,
651,
20128,
290,
4903,
313,
26084,
687,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
778,
73,
796,
257,
62,
9310,
13,
3855,
16775,
295,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
83,
796,
257,
62,
9310,
13,
3855,
10082,
78,
41762,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
299,
88,
11,
299,
87,
796,
257,
62,
7890,
13,
43358,
628,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
7890,
796,
257,
62,
7890,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
27932,
276,
796,
45941,
13,
2611,
13,
45195,
276,
19182,
7,
9945,
62,
7890,
11,
257,
62,
27932,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
751,
2939,
284,
20613,
62,
24385,
1351,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
24385,
13,
33295,
7,
9945,
62,
27932,
276,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
1969,
40522,
198,
220,
220,
220,
220,
220,
220,
220,
257,
62,
9310,
796,
6045,
628,
220,
220,
220,
1303,
8931,
1351,
656,
7177,
290,
1064,
1612,
290,
14367,
198,
220,
220,
220,
288,
5657,
2433,
796,
45941,
13,
2611,
13,
25558,
7,
9945,
62,
24385,
11,
16488,
28,
17,
8,
198,
220,
220,
220,
20613,
32604,
796,
45941,
13,
2611,
13,
32604,
7,
67,
5657,
2433,
11,
16488,
28,
17,
8,
198,
220,
220,
220,
20613,
19282,
796,
45941,
13,
2611,
13,
19282,
7,
67,
5657,
2433,
11,
16488,
28,
17,
8,
198,
220,
220,
220,
3601,
7,
9945,
32604,
13,
43358,
8,
628,
220,
220,
220,
1303,
3443,
11,
3613,
355,
257,
4903,
313,
733,
198,
220,
220,
220,
5072,
62,
18982,
796,
366,
19555,
733,
1,
198,
220,
220,
220,
4639,
796,
308,
31748,
13,
3855,
32103,
3886,
5376,
7,
22915,
62,
18982,
8,
198,
220,
220,
220,
29636,
62,
34345,
796,
45144,
92,
12,
421,
1990,
12,
32604,
12,
9945,
12,
90,
92,
12,
90,
27422,
49929,
1,
198,
220,
220,
220,
29636,
62,
34345,
796,
29636,
62,
34345,
13,
18982,
7,
36996,
11,
614,
11,
3860,
8,
198,
220,
220,
220,
29636,
62,
15908,
796,
28686,
13,
6978,
13,
22179,
7,
35,
1404,
2885,
4663,
11,
366,
469,
313,
10203,
1600,
3814,
11,
965,
7,
1941,
4008,
198,
220,
220,
220,
29636,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
67,
301,
62,
15908,
11,
29636,
62,
34345,
8,
198,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
26410,
2393,
329,
43237,
15,
1724,
25,
23884,
1911,
18982,
7,
67,
301,
62,
6978,
4008,
628,
220,
220,
220,
29636,
62,
9310,
796,
4639,
13,
16447,
7,
67,
301,
62,
6978,
11,
299,
87,
11,
299,
88,
11,
352,
11,
308,
31748,
13,
38,
24544,
62,
43879,
2624,
8,
198,
220,
220,
220,
29636,
62,
7890,
796,
45941,
13,
2611,
13,
20286,
7,
9945,
32604,
11,
6070,
62,
8367,
28,
45,
3727,
13563,
62,
39488,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
3855,
49,
1603,
31407,
7,
16,
737,
16594,
19182,
7,
67,
301,
62,
7890,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
3855,
49,
1603,
31407,
7,
16,
737,
7248,
2949,
6601,
11395,
7,
45,
3727,
13563,
62,
39488,
8,
198,
220,
220,
220,
3601,
7203,
13655,
25,
23884,
1911,
18982,
7,
13655,
4008,
198,
220,
220,
220,
29636,
62,
9310,
13,
7248,
10082,
78,
41762,
7,
13655,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
7248,
16775,
295,
7,
1050,
73,
8,
198,
220,
220,
220,
29636,
62,
9310,
796,
6045,
628,
220,
220,
220,
20613,
32604,
62,
1084,
796,
20613,
32604,
13,
1084,
3419,
198,
220,
220,
220,
20613,
32604,
62,
9806,
796,
20613,
32604,
13,
9806,
3419,
198,
220,
220,
220,
20613,
32604,
62,
1150,
666,
796,
45941,
13,
2611,
13,
1150,
666,
7,
9945,
32604,
8,
628,
220,
220,
220,
3601,
7203,
4507,
2571,
306,
37913,
30072,
22728,
20595,
1911,
18982,
7,
24385,
4008,
198,
220,
220,
220,
3601,
7203,
220,
1855,
25,
23884,
1911,
18982,
7,
9945,
32604,
62,
1084,
4008,
198,
220,
220,
220,
3601,
7203,
220,
5436,
25,
23884,
1911,
18982,
7,
9945,
32604,
62,
9806,
4008,
198,
220,
220,
220,
3601,
7203,
220,
26178,
25,
23884,
1911,
18982,
7,
9945,
32604,
62,
1150,
666,
4008,
628,
220,
220,
220,
1303,
9585,
329,
3210,
28833,
198,
220,
220,
220,
5072,
62,
18982,
796,
366,
19555,
733,
1,
198,
220,
220,
220,
4639,
796,
308,
31748,
13,
3855,
32103,
3886,
5376,
7,
22915,
62,
18982,
8,
198,
220,
220,
220,
29636,
62,
34345,
796,
45144,
92,
12,
421,
1990,
12,
19282,
12,
9945,
12,
90,
92,
12,
90,
27422,
49929,
1911,
18982,
7,
36996,
11,
614,
11,
3860,
8,
198,
220,
220,
220,
29636,
62,
15908,
796,
28686,
13,
6978,
13,
22179,
7,
35,
1404,
2885,
4663,
11,
366,
469,
313,
10203,
1600,
3814,
11,
965,
7,
1941,
4008,
198,
220,
220,
220,
29636,
62,
6978,
796,
28686,
13,
6978,
13,
22179,
7,
67,
301,
62,
15908,
11,
29636,
62,
34345,
8,
198,
220,
220,
220,
611,
15942,
577,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
26410,
2393,
25,
23884,
1911,
18982,
7,
67,
301,
62,
6978,
4008,
628,
220,
220,
220,
29636,
62,
9310,
796,
4639,
13,
16447,
7,
67,
301,
62,
6978,
11,
299,
87,
11,
299,
88,
11,
352,
11,
308,
31748,
13,
38,
24544,
62,
43879,
2624,
8,
198,
220,
220,
220,
29636,
62,
7890,
796,
45941,
13,
2611,
13,
20286,
7,
9945,
19282,
11,
6070,
62,
8367,
28,
45,
3727,
13563,
62,
39488,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
3855,
49,
1603,
31407,
7,
16,
737,
16594,
19182,
7,
67,
301,
62,
7890,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
3855,
49,
1603,
31407,
7,
16,
737,
7248,
2949,
6601,
11395,
7,
45,
3727,
13563,
62,
39488,
8,
198,
220,
220,
220,
3601,
7203,
13655,
25,
23884,
1911,
18982,
7,
13655,
4008,
198,
220,
220,
220,
29636,
62,
9310,
13,
7248,
10082,
78,
41762,
7,
13655,
8,
198,
220,
220,
220,
29636,
62,
9310,
13,
7248,
16775,
295,
7,
1050,
73,
8,
198,
220,
220,
220,
29636,
62,
9310,
796,
6045,
628,
220,
220,
220,
20613,
19282,
62,
1084,
796,
20613,
19282,
13,
1084,
3419,
198,
220,
220,
220,
20613,
19282,
62,
9806,
796,
20613,
19282,
13,
9806,
3419,
198,
220,
220,
220,
20613,
19282,
62,
1150,
666,
796,
45941,
13,
2611,
13,
1150,
666,
7,
9945,
19282,
8,
628,
220,
220,
220,
3601,
7203,
4507,
2571,
306,
37913,
30072,
520,
7959,
20595,
1911,
18982,
7,
24385,
4008,
198,
220,
220,
220,
3601,
7203,
220,
1855,
25,
23884,
1911,
18982,
7,
9945,
19282,
62,
1084,
4008,
198,
220,
220,
220,
3601,
7203,
220,
5436,
25,
23884,
1911,
18982,
7,
9945,
19282,
62,
9806,
4008,
198,
220,
220,
220,
3601,
7203,
220,
26178,
25,
23884,
1911,
18982,
7,
9945,
19282,
62,
1150,
666,
4008,
198
] | 2.115694 | 2,982 |
primeiro = int(input('Digite o priemiro termo da PA: '))
razo = int(input('Digite a razo da PA: '))
termo = primeiro
cont = 1
total = 0
mais = 10
while mais != 0:
total += mais
while cont <= total:
print(f'{termo} ', end='')
termo += razo
cont += 1
print('Pausa')
mais = int(input('Quantos termos voc quer usar a mais? '))
print(f'a progresso foi finalizada com {total} termos mostrados')
| [
35505,
7058,
796,
493,
7,
15414,
10786,
19511,
578,
267,
1293,
368,
7058,
3381,
78,
12379,
8147,
25,
705,
4008,
198,
3247,
78,
796,
493,
7,
15414,
10786,
19511,
578,
257,
374,
44299,
12379,
8147,
25,
705,
4008,
198,
4354,
78,
796,
6994,
7058,
198,
3642,
796,
352,
198,
23350,
796,
657,
198,
2611,
271,
796,
838,
198,
4514,
285,
15152,
14512,
657,
25,
198,
220,
220,
220,
2472,
15853,
285,
15152,
198,
220,
220,
220,
981,
542,
19841,
2472,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
69,
6,
90,
4354,
78,
92,
46083,
886,
28,
7061,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3381,
78,
15853,
374,
44299,
198,
220,
220,
220,
220,
220,
220,
220,
542,
15853,
352,
198,
220,
220,
220,
3601,
10786,
47,
8717,
64,
11537,
198,
220,
220,
220,
285,
15152,
796,
493,
7,
15414,
10786,
24915,
418,
3381,
418,
12776,
42517,
514,
283,
257,
285,
15152,
30,
705,
4008,
198,
4798,
7,
69,
6,
64,
1172,
33852,
11511,
72,
2457,
528,
4763,
401,
1391,
23350,
92,
3381,
418,
749,
6335,
418,
11537,
198
] | 2.318919 | 185 |
from lxml.etree import Element, QName
from typing import Union, List, Any
from tqdm import tqdm
import logging
from arxml_data_extractor.handler import value_handler
from arxml_data_extractor.handler.path_handler import PathHandler
from arxml_data_extractor.asr.asr_parser import AsrParser
from arxml_data_extractor.query.data_query import DataQuery
from arxml_data_extractor.query.data_object import DataObject
from arxml_data_extractor.query.data_value import DataValue
| [
6738,
300,
19875,
13,
316,
631,
1330,
11703,
11,
1195,
5376,
201,
198,
6738,
19720,
1330,
4479,
11,
7343,
11,
4377,
201,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
201,
198,
11748,
18931,
201,
198,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
30281,
1330,
1988,
62,
30281,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
30281,
13,
6978,
62,
30281,
1330,
10644,
25060,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
292,
81,
13,
292,
81,
62,
48610,
1330,
1081,
81,
46677,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
22766,
13,
7890,
62,
22766,
1330,
6060,
20746,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
22766,
13,
7890,
62,
15252,
1330,
6060,
10267,
201,
198,
6738,
610,
19875,
62,
7890,
62,
2302,
40450,
13,
22766,
13,
7890,
62,
8367,
1330,
6060,
11395,
201,
198,
201,
198
] | 3.135484 | 155 |
# -*- coding: utf-8 -*-
"""
Tencent is pleased to support the open source community by making BK-BASE available.
Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
BK-BASE is licensed under the MIT License.
License for BK-BASE :
--------------------------------------------------------------------
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
from copy import deepcopy
from datamanage.pro import exceptions as dm_pro_errors
from datamanage.utils.api import MetaApi
from datamanage.pro.utils.time import utc_to_local, str_to_datetime
from datamanage.pro.lifecycle.models_dict import (
DATASET_CREATE_MAPPINGS,
DATASET_CREATE_EVENT_INFO_DICT,
DataTraceShowType,
ComplexSearchBackendType,
DataTraceFinishStatus,
)
def get_dataset_create_info(dataset_id, dataset_type):
"""
:param dataset_id: id
:param dataset_type:
:return:
:rtype: list
"""
# 1)dgraph
data_set_create_info_statement = """
{
get_dataset_create_info(func: eq(%s, "%s")){created_by created_at}
}
""" % (
DATASET_CREATE_MAPPINGS[dataset_type]['data_set_pk'],
dataset_id,
)
query_result = MetaApi.complex_search(
{"backend_type": ComplexSearchBackendType.DGRAPH.value, "statement": data_set_create_info_statement}, raw=True
)
create_info_ret = query_result['data']['data']['get_dataset_create_info']
if not (isinstance(create_info_ret, list) and create_info_ret):
raise dm_pro_errors.GetDataSetCreateInfoError(message_kv={'dataset_id': dataset_id})
# 2)
create_trace_dict = deepcopy(DATASET_CREATE_EVENT_INFO_DICT)
create_trace_dict.update(
{
"sub_type": dataset_type,
"sub_type_alias": DATASET_CREATE_MAPPINGS[dataset_type]['data_set_create_alias'],
"description": DATASET_CREATE_MAPPINGS[dataset_type]['data_set_create_alias'],
"created_at": utc_to_local(create_info_ret[0]['created_at']),
"created_by": create_info_ret[0]['created_by'],
"show_type": DataTraceShowType.DISPLAY.value,
"datetime": str_to_datetime(utc_to_local(create_info_ret[0]['created_at'])),
"status": DataTraceFinishStatus.STATUS,
"status_alias": DataTraceFinishStatus.STATUS_ALIAS,
}
)
return [create_trace_dict]
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
24893,
1087,
318,
10607,
284,
1104,
262,
1280,
2723,
2055,
416,
1642,
347,
42,
12,
33,
11159,
220,
1695,
13,
198,
15269,
357,
34,
8,
33448,
2320,
43,
317,
1959,
15302,
11,
257,
9368,
1087,
1664,
13,
220,
1439,
2489,
10395,
13,
198,
33,
42,
12,
33,
11159,
220,
318,
11971,
739,
262,
17168,
13789,
13,
198,
34156,
329,
347,
42,
12,
33,
11159,
1058,
198,
10097,
650,
198,
5990,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
4866,
286,
428,
3788,
290,
3917,
198,
22897,
341,
3696,
357,
1169,
366,
25423,
12340,
284,
1730,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
198,
1169,
2489,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
9088,
286,
262,
10442,
11,
198,
392,
284,
8749,
6506,
284,
4150,
262,
10442,
318,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
198,
464,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
287,
477,
9088,
393,
8904,
198,
634,
507,
286,
262,
10442,
13,
198,
10970,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
6375,
8959,
49094,
11,
47783,
2751,
21728,
5626,
198,
43,
3955,
22061,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
198,
15285,
49261,
50163,
3336,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
43031,
25382,
11,
198,
12418,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
16034,
11,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
198,
15821,
37485,
6375,
3336,
23210,
6375,
25401,
5550,
1847,
20754,
3268,
3336,
47466,
13,
198,
37811,
628,
198,
6738,
4866,
1330,
2769,
30073,
198,
198,
6738,
4818,
10546,
496,
13,
1676,
1330,
13269,
355,
288,
76,
62,
1676,
62,
48277,
198,
6738,
4818,
10546,
496,
13,
26791,
13,
15042,
1330,
30277,
32,
14415,
198,
6738,
4818,
10546,
496,
13,
1676,
13,
26791,
13,
2435,
1330,
3384,
66,
62,
1462,
62,
12001,
11,
965,
62,
1462,
62,
19608,
8079,
198,
6738,
4818,
10546,
496,
13,
1676,
13,
36195,
47510,
13,
27530,
62,
11600,
1330,
357,
198,
220,
220,
220,
360,
1404,
1921,
2767,
62,
43387,
6158,
62,
44,
24805,
20754,
11,
198,
220,
220,
220,
360,
1404,
1921,
2767,
62,
43387,
6158,
62,
20114,
3525,
62,
10778,
62,
35,
18379,
11,
198,
220,
220,
220,
6060,
2898,
558,
15307,
6030,
11,
198,
220,
220,
220,
19157,
18243,
7282,
437,
6030,
11,
198,
220,
220,
220,
6060,
2898,
558,
48658,
19580,
11,
198,
8,
628,
198,
4299,
651,
62,
19608,
292,
316,
62,
17953,
62,
10951,
7,
19608,
292,
316,
62,
312,
11,
27039,
62,
4906,
2599,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1058,
17143,
27039,
62,
312,
25,
4686,
198,
220,
220,
220,
1058,
17143,
27039,
62,
4906,
25,
220,
628,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
1058,
81,
4906,
25,
1351,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
352,
8,
67,
34960,
198,
220,
220,
220,
1366,
62,
2617,
62,
17953,
62,
10951,
62,
26090,
796,
37227,
198,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
651,
62,
19608,
292,
316,
62,
17953,
62,
10951,
7,
20786,
25,
37430,
7,
4,
82,
11,
36521,
82,
48774,
90,
25598,
62,
1525,
2727,
62,
265,
92,
198,
220,
220,
220,
1782,
198,
220,
220,
220,
37227,
4064,
357,
198,
220,
220,
220,
220,
220,
220,
220,
360,
1404,
1921,
2767,
62,
43387,
6158,
62,
44,
24805,
20754,
58,
19608,
292,
316,
62,
4906,
7131,
6,
7890,
62,
2617,
62,
79,
74,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
27039,
62,
312,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
12405,
62,
20274,
796,
30277,
32,
14415,
13,
41887,
62,
12947,
7,
198,
220,
220,
220,
220,
220,
220,
220,
19779,
1891,
437,
62,
4906,
1298,
19157,
18243,
7282,
437,
6030,
13,
35,
10761,
31300,
13,
8367,
11,
366,
26090,
1298,
1366,
62,
2617,
62,
17953,
62,
10951,
62,
26090,
5512,
8246,
28,
17821,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2251,
62,
10951,
62,
1186,
796,
12405,
62,
20274,
17816,
7890,
6,
7131,
6,
7890,
6,
7131,
6,
1136,
62,
19608,
292,
316,
62,
17953,
62,
10951,
20520,
198,
220,
220,
220,
611,
407,
357,
271,
39098,
7,
17953,
62,
10951,
62,
1186,
11,
1351,
8,
290,
2251,
62,
10951,
62,
1186,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
288,
76,
62,
1676,
62,
48277,
13,
3855,
6601,
7248,
16447,
12360,
12331,
7,
20500,
62,
74,
85,
34758,
6,
19608,
292,
316,
62,
312,
10354,
27039,
62,
312,
30072,
628,
220,
220,
220,
1303,
362,
8,
198,
220,
220,
220,
2251,
62,
40546,
62,
11600,
796,
2769,
30073,
7,
35,
1404,
1921,
2767,
62,
43387,
6158,
62,
20114,
3525,
62,
10778,
62,
35,
18379,
8,
198,
220,
220,
220,
2251,
62,
40546,
62,
11600,
13,
19119,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7266,
62,
4906,
1298,
27039,
62,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
7266,
62,
4906,
62,
26011,
1298,
360,
1404,
1921,
2767,
62,
43387,
6158,
62,
44,
24805,
20754,
58,
19608,
292,
316,
62,
4906,
7131,
6,
7890,
62,
2617,
62,
17953,
62,
26011,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
360,
1404,
1921,
2767,
62,
43387,
6158,
62,
44,
24805,
20754,
58,
19608,
292,
316,
62,
4906,
7131,
6,
7890,
62,
2617,
62,
17953,
62,
26011,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25598,
62,
265,
1298,
3384,
66,
62,
1462,
62,
12001,
7,
17953,
62,
10951,
62,
1186,
58,
15,
7131,
6,
25598,
62,
265,
20520,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25598,
62,
1525,
1298,
2251,
62,
10951,
62,
1186,
58,
15,
7131,
6,
25598,
62,
1525,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12860,
62,
4906,
1298,
6060,
2898,
558,
15307,
6030,
13,
26288,
31519,
13,
8367,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
19608,
8079,
1298,
965,
62,
1462,
62,
19608,
8079,
7,
315,
66,
62,
1462,
62,
12001,
7,
17953,
62,
10951,
62,
1186,
58,
15,
7131,
6,
25598,
62,
265,
6,
12962,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13376,
1298,
6060,
2898,
558,
48658,
19580,
13,
35744,
2937,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13376,
62,
26011,
1298,
6060,
2898,
558,
48658,
19580,
13,
35744,
2937,
62,
1847,
43429,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
685,
17953,
62,
40546,
62,
11600,
60,
198
] | 2.700162 | 1,234 |
import locale
import glob
import os
import os.path
import requests
import tarfile
import sys
import re
import gensim
from gensim.models.doc2vec import TaggedDocument
from collections import namedtuple
from gensim.models import Doc2Vec
import gensim.models.doc2vec
from collections import OrderedDict
import multiprocessing
from gensim.test.test_doc2vec import ConcatenatedDoc2Vec
import pickle
reload(sys)
sys.setdefaultencoding("utf-8")
#dirname = '/scratch/ap4608/judge_data'
#locale.setlocale(locale.LC_ALL, 'C')
#
#
## Convert text to lower-case and strip punctuation/symbols from words
#def normalize_text(text):
# norm_text = text.lower()
#
# # Replace breaks with spaces
# norm_text = norm_text.replace('<br />', ' ')
#
# # Pad punctuation with spaces on both sides
# for char in ['.', '"', ',', '(', ')', '!', '?', ';', ':']:
# norm_text = norm_text.replace(char, ' ' + char + ' ')
#
# return norm_text
#
#
## Concat and normalize test/train data
#folders = os.listdir(dirname)
#alldata = ''
#
#for fol in folders:
# temp = ''
# output = fol.replace('/', '-') + '.txt'
#
# # Is there a better pattern to use?
# txt_files = glob.glob('/'.join([dirname, fol, '*.txt']))
#
# for txt in txt_files:
# with open(txt, 'r') as t:
# control_chars = [chr(0x85)]
# t_clean = t.read()
#
# t_clean = t_clean.replace('\n', ' ')
# t_clean = re.sub(r'[^\x00-\x7F]+',' ', t_clean)
#
# for c in control_chars:
# t_clean = t_clean.replace(c, ' ')
#
# temp += t_clean
#
# temp += "\n"
#
# temp_norm = normalize_text(temp)
#
# if len(temp_norm) == 1:
# continue
#
# with open('/'.join([dirname, output]), 'w') as n:
# n.write(temp_norm)
#
# alldata += temp_norm
#
#with open('/'.join([dirname, 'alldata-id.txt']), 'w') as f:
# for idx, line in enumerate(alldata.splitlines()):
# num_line = "_*{0} {1}\n".format(idx, line)
# f.write(num_line)
#
#SentimentDocument = namedtuple('SentimentDocument', 'words tags split sentiment')
#
#alldocs = [] # will hold all docs in original order
#with open(os.path.join(dirname, 'alldata-id.txt')) as alldata:
# for line_no, line in enumerate(alldata):
# tokens = gensim.utils.to_unicode(line).split()
# words = tokens[1:]
# tags = [line_no] # `tags = [tokens[0]]` would also work at extra memory cost
# split = ['train','test','extra','extra'][line_no//25000] # 25k train, 25k test, 25k extra
# sentiment = [1.0, 0.0, 1.0, 0.0, None, None, None, None][line_no//12500] # [12.5K pos, 12.5K neg]*2 then unknown
# alldocs.append(SentimentDocument(words, tags, split, sentiment))
#
#train_docs = [doc for doc in alldocs if doc.split == 'train']
#test_docs = [doc for doc in alldocs if doc.split == 'test']
#doc_list = alldocs[:] # for reshuffling per pass
#
#cores = multiprocessing.cpu_count()
#assert gensim.models.doc2vec.FAST_VERSION > -1, "this will be painfully slow otherwise"
#
#simple_models = [
# # PV-DM w/concatenation - window=5 (both sides) approximates paper's 10-word total window size
# Doc2Vec(dm=1, dm_concat=1, size=100, window=5, negative=5, hs=0, min_count=2, workers=cores),
# # PV-DBOW
# Doc2Vec(dm=0, size=100, negative=5, hs=0, min_count=2, workers=cores),
# # PV-DM w/average
# Doc2Vec(dm=1, dm_mean=1, size=100, window=10, negative=5, hs=0, min_count=2, workers=cores),
#]
#
## speed setup by sharing results of 1st model's vocabulary scan
#simple_models[0].build_vocab(alldocs) # PV-DM/concat requires one special NULL word so it serves as template
#for model in simple_models[1:]:
# model.reset_from(simple_models[0])
#
#models_by_name = OrderedDict((str(model), model) for model in simple_models)
#
#models_by_name['dbow+dmm'] = ConcatenatedDoc2Vec([simple_models[1], simple_models[2]])
#models_by_name['dbow+dmc'] = ConcatenatedDoc2Vec([simple_models[1], simple_models[0]])
#
## Create a document vector list and save it
#doc_vec_list = [x.docvecs for x in simple_models]
docvecs = pickle.load(open('docvecs.p', 'rb'))
print len(docvecs)
print len(docvecs[0])
print docvecs[0]
for i,x in enumerate(docvecs):
with open('docvecs_'+str(i)+'.txt','w') as f:
for vec in x:
f.write(vec)
f.write("\n")
# pickle.dump(models_by_name, open('model.p', 'wb'))
| [
11748,
36693,
198,
11748,
15095,
198,
11748,
28686,
198,
11748,
28686,
13,
6978,
198,
11748,
7007,
198,
11748,
13422,
7753,
198,
11748,
25064,
198,
11748,
302,
198,
198,
11748,
308,
641,
320,
198,
6738,
308,
641,
320,
13,
27530,
13,
15390,
17,
35138,
1330,
309,
14655,
24941,
198,
6738,
17268,
1330,
3706,
83,
29291,
198,
198,
6738,
308,
641,
320,
13,
27530,
1330,
14432,
17,
53,
721,
198,
11748,
308,
641,
320,
13,
27530,
13,
15390,
17,
35138,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
11748,
18540,
305,
919,
278,
198,
198,
6738,
308,
641,
320,
13,
9288,
13,
9288,
62,
15390,
17,
35138,
1330,
1482,
9246,
268,
515,
23579,
17,
53,
721,
198,
198,
11748,
2298,
293,
628,
198,
260,
2220,
7,
17597,
8,
198,
17597,
13,
2617,
12286,
12685,
7656,
7203,
40477,
12,
23,
4943,
628,
198,
2,
15908,
3672,
796,
31051,
1416,
36722,
14,
499,
19,
28688,
14,
10456,
469,
62,
7890,
6,
198,
2,
17946,
1000,
13,
2617,
17946,
1000,
7,
17946,
1000,
13,
5639,
62,
7036,
11,
705,
34,
11537,
198,
2,
198,
2,
198,
2235,
38240,
2420,
284,
2793,
12,
7442,
290,
10283,
21025,
2288,
14,
1837,
2022,
10220,
422,
2456,
198,
2,
4299,
3487,
1096,
62,
5239,
7,
5239,
2599,
198,
2,
220,
220,
220,
2593,
62,
5239,
796,
2420,
13,
21037,
3419,
198,
2,
198,
2,
220,
220,
220,
1303,
40177,
9457,
351,
9029,
198,
2,
220,
220,
220,
2593,
62,
5239,
796,
2593,
62,
5239,
13,
33491,
10786,
27,
1671,
11037,
3256,
705,
705,
8,
198,
2,
198,
2,
220,
220,
220,
1303,
15744,
21025,
2288,
351,
9029,
319,
1111,
5389,
198,
2,
220,
220,
220,
329,
1149,
287,
37250,
2637,
11,
705,
1,
3256,
46083,
3256,
29513,
3256,
705,
8,
3256,
705,
0,
3256,
705,
30,
3256,
705,
26,
3256,
705,
32105,
5974,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2593,
62,
5239,
796,
2593,
62,
5239,
13,
33491,
7,
10641,
11,
705,
705,
1343,
1149,
1343,
705,
705,
8,
198,
2,
198,
2,
220,
220,
220,
1441,
2593,
62,
5239,
198,
2,
198,
2,
198,
2235,
1482,
9246,
290,
3487,
1096,
1332,
14,
27432,
1366,
198,
2,
11379,
364,
796,
28686,
13,
4868,
15908,
7,
15908,
3672,
8,
198,
2,
282,
335,
1045,
796,
10148,
198,
2,
198,
2,
1640,
5955,
287,
24512,
25,
198,
2,
220,
220,
220,
20218,
796,
10148,
198,
2,
220,
220,
220,
5072,
796,
5955,
13,
33491,
10786,
14,
3256,
705,
12,
11537,
1343,
45302,
14116,
6,
198,
2,
198,
2,
220,
220,
220,
1303,
1148,
612,
257,
1365,
3912,
284,
779,
30,
198,
2,
220,
220,
220,
256,
742,
62,
16624,
796,
15095,
13,
4743,
672,
10786,
14,
4458,
22179,
26933,
15908,
3672,
11,
5955,
11,
705,
24620,
14116,
20520,
4008,
198,
2,
198,
2,
220,
220,
220,
329,
256,
742,
287,
256,
742,
62,
16624,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
14116,
11,
705,
81,
11537,
355,
256,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1630,
62,
354,
945,
796,
685,
354,
81,
7,
15,
87,
5332,
15437,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
27773,
796,
256,
13,
961,
3419,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
27773,
796,
256,
62,
27773,
13,
33491,
10786,
59,
77,
3256,
705,
705,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
27773,
796,
302,
13,
7266,
7,
81,
6,
58,
61,
59,
87,
405,
12,
59,
87,
22,
37,
48688,
41707,
46083,
256,
62,
27773,
8,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
269,
287,
1630,
62,
354,
945,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
62,
27773,
796,
256,
62,
27773,
13,
33491,
7,
66,
11,
705,
705,
8,
198,
2,
198,
2,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20218,
15853,
256,
62,
27773,
198,
2,
198,
2,
220,
220,
220,
20218,
15853,
37082,
77,
1,
198,
2,
198,
2,
220,
220,
220,
20218,
62,
27237,
796,
3487,
1096,
62,
5239,
7,
29510,
8,
198,
2,
198,
2,
220,
220,
220,
611,
18896,
7,
29510,
62,
27237,
8,
6624,
352,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
2,
198,
2,
220,
220,
220,
351,
1280,
10786,
14,
4458,
22179,
26933,
15908,
3672,
11,
5072,
46570,
705,
86,
11537,
355,
299,
25,
198,
2,
220,
220,
220,
220,
220,
220,
220,
299,
13,
13564,
7,
29510,
62,
27237,
8,
198,
2,
198,
2,
220,
220,
220,
477,
7890,
15853,
20218,
62,
27237,
198,
2,
198,
2,
4480,
1280,
10786,
14,
4458,
22179,
26933,
15908,
3672,
11,
705,
282,
335,
1045,
12,
312,
13,
14116,
20520,
828,
705,
86,
11537,
355,
277,
25,
198,
2,
220,
220,
220,
329,
4686,
87,
11,
1627,
287,
27056,
378,
7,
282,
335,
1045,
13,
35312,
6615,
3419,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
997,
62,
1370,
796,
45434,
9,
90,
15,
92,
1391,
16,
32239,
77,
1911,
18982,
7,
312,
87,
11,
1627,
8,
198,
2,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
22510,
62,
1370,
8,
198,
2,
198,
2,
31837,
3681,
24941,
796,
3706,
83,
29291,
10786,
31837,
3681,
24941,
3256,
705,
10879,
15940,
6626,
15598,
11537,
198,
2,
198,
2,
282,
335,
420,
82,
796,
17635,
220,
1303,
481,
1745,
477,
34165,
287,
2656,
1502,
198,
2,
4480,
1280,
7,
418,
13,
6978,
13,
22179,
7,
15908,
3672,
11,
705,
282,
335,
1045,
12,
312,
13,
14116,
6,
4008,
355,
477,
7890,
25,
198,
2,
220,
220,
220,
329,
1627,
62,
3919,
11,
1627,
287,
27056,
378,
7,
282,
335,
1045,
2599,
198,
2,
220,
220,
220,
220,
220,
220,
220,
16326,
796,
308,
641,
320,
13,
26791,
13,
1462,
62,
46903,
1098,
7,
1370,
737,
35312,
3419,
198,
2,
220,
220,
220,
220,
220,
220,
220,
2456,
796,
16326,
58,
16,
47715,
198,
2,
220,
220,
220,
220,
220,
220,
220,
15940,
796,
685,
1370,
62,
3919,
60,
1303,
4600,
31499,
796,
685,
83,
482,
641,
58,
15,
11907,
63,
561,
635,
670,
379,
3131,
4088,
1575,
198,
2,
220,
220,
220,
220,
220,
220,
220,
6626,
796,
37250,
27432,
41707,
9288,
41707,
26086,
41707,
26086,
6,
7131,
1370,
62,
3919,
1003,
1495,
830,
60,
220,
1303,
1679,
74,
4512,
11,
1679,
74,
1332,
11,
1679,
74,
3131,
198,
2,
220,
220,
220,
220,
220,
220,
220,
15598,
796,
685,
16,
13,
15,
11,
657,
13,
15,
11,
352,
13,
15,
11,
657,
13,
15,
11,
6045,
11,
6045,
11,
6045,
11,
6045,
7131,
1370,
62,
3919,
1003,
1065,
4059,
60,
1303,
685,
1065,
13,
20,
42,
1426,
11,
1105,
13,
20,
42,
2469,
60,
9,
17,
788,
6439,
198,
2,
220,
220,
220,
220,
220,
220,
220,
477,
31628,
13,
33295,
7,
31837,
3681,
24941,
7,
10879,
11,
15940,
11,
6626,
11,
15598,
4008,
198,
2,
198,
2,
27432,
62,
31628,
796,
685,
15390,
329,
2205,
287,
477,
31628,
611,
2205,
13,
35312,
6624,
705,
27432,
20520,
198,
2,
9288,
62,
31628,
796,
685,
15390,
329,
2205,
287,
477,
31628,
611,
2205,
13,
35312,
6624,
705,
9288,
20520,
198,
2,
15390,
62,
4868,
796,
477,
31628,
58,
47715,
220,
1303,
329,
27179,
1648,
1359,
583,
1208,
198,
2,
198,
2,
66,
2850,
796,
18540,
305,
919,
278,
13,
36166,
62,
9127,
3419,
198,
2,
30493,
308,
641,
320,
13,
27530,
13,
15390,
17,
35138,
13,
37,
11262,
62,
43717,
1875,
532,
16,
11,
366,
5661,
481,
307,
32258,
3105,
4306,
1,
198,
2,
198,
2,
36439,
62,
27530,
796,
685,
198,
2,
220,
220,
220,
1303,
31392,
12,
23127,
266,
14,
1102,
9246,
268,
341,
532,
4324,
28,
20,
357,
16885,
5389,
8,
5561,
26748,
3348,
338,
838,
12,
4775,
2472,
4324,
2546,
198,
2,
220,
220,
220,
14432,
17,
53,
721,
7,
36020,
28,
16,
11,
288,
76,
62,
1102,
9246,
28,
16,
11,
2546,
28,
3064,
11,
4324,
28,
20,
11,
4633,
28,
20,
11,
289,
82,
28,
15,
11,
949,
62,
9127,
28,
17,
11,
3259,
28,
66,
2850,
828,
198,
2,
220,
220,
220,
1303,
31392,
12,
11012,
3913,
220,
198,
2,
220,
220,
220,
14432,
17,
53,
721,
7,
36020,
28,
15,
11,
2546,
28,
3064,
11,
4633,
28,
20,
11,
289,
82,
28,
15,
11,
949,
62,
9127,
28,
17,
11,
3259,
28,
66,
2850,
828,
198,
2,
220,
220,
220,
1303,
31392,
12,
23127,
266,
14,
23913,
198,
2,
220,
220,
220,
14432,
17,
53,
721,
7,
36020,
28,
16,
11,
288,
76,
62,
32604,
28,
16,
11,
2546,
28,
3064,
11,
4324,
28,
940,
11,
4633,
28,
20,
11,
289,
82,
28,
15,
11,
949,
62,
9127,
28,
17,
11,
3259,
28,
66,
2850,
828,
198,
2,
60,
198,
2,
198,
2235,
2866,
9058,
416,
7373,
2482,
286,
352,
301,
2746,
338,
25818,
9367,
198,
2,
36439,
62,
27530,
58,
15,
4083,
11249,
62,
18893,
397,
7,
282,
335,
420,
82,
8,
220,
1303,
31392,
12,
23127,
14,
1102,
9246,
4433,
530,
2041,
15697,
1573,
523,
340,
9179,
355,
11055,
198,
2,
1640,
2746,
287,
2829,
62,
27530,
58,
16,
25,
5974,
198,
2,
220,
220,
220,
2746,
13,
42503,
62,
6738,
7,
36439,
62,
27530,
58,
15,
12962,
198,
2,
198,
2,
27530,
62,
1525,
62,
3672,
796,
14230,
1068,
35,
713,
19510,
2536,
7,
19849,
828,
2746,
8,
329,
2746,
287,
2829,
62,
27530,
8,
198,
2,
198,
2,
27530,
62,
1525,
62,
3672,
17816,
67,
8176,
10,
67,
3020,
20520,
796,
1482,
9246,
268,
515,
23579,
17,
53,
721,
26933,
36439,
62,
27530,
58,
16,
4357,
2829,
62,
27530,
58,
17,
11907,
8,
198,
2,
27530,
62,
1525,
62,
3672,
17816,
67,
8176,
10,
67,
23209,
20520,
796,
1482,
9246,
268,
515,
23579,
17,
53,
721,
26933,
36439,
62,
27530,
58,
16,
4357,
2829,
62,
27530,
58,
15,
11907,
8,
198,
2,
198,
2235,
13610,
257,
3188,
15879,
1351,
290,
3613,
340,
198,
2,
15390,
62,
35138,
62,
4868,
796,
685,
87,
13,
15390,
303,
6359,
329,
2124,
287,
2829,
62,
27530,
60,
198,
15390,
303,
6359,
796,
2298,
293,
13,
2220,
7,
9654,
10786,
15390,
303,
6359,
13,
79,
3256,
705,
26145,
6,
4008,
198,
4798,
18896,
7,
15390,
303,
6359,
8,
198,
4798,
18896,
7,
15390,
303,
6359,
58,
15,
12962,
198,
4798,
2205,
303,
6359,
58,
15,
60,
198,
198,
1640,
1312,
11,
87,
287,
27056,
378,
7,
15390,
303,
6359,
2599,
198,
197,
4480,
1280,
10786,
15390,
303,
6359,
62,
6,
10,
2536,
7,
72,
47762,
4458,
14116,
41707,
86,
11537,
355,
277,
25,
198,
197,
197,
1640,
43030,
287,
2124,
25,
198,
197,
197,
197,
69,
13,
13564,
7,
35138,
8,
198,
197,
197,
197,
69,
13,
13564,
7203,
59,
77,
4943,
198,
198,
2,
2298,
293,
13,
39455,
7,
27530,
62,
1525,
62,
3672,
11,
1280,
10786,
19849,
13,
79,
3256,
705,
39346,
6,
4008,
198
] | 2.341922 | 1,863 |
import unittest
from caravan.task import Task
from caravan.tables import Tables
if __name__ == '__main__':
unittest.main()
| [
11748,
555,
715,
395,
198,
6738,
44321,
13,
35943,
1330,
15941,
198,
6738,
44321,
13,
83,
2977,
1330,
33220,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
555,
715,
395,
13,
12417,
3419,
198
] | 3.023256 | 43 |
# -*- coding: utf-8 -*-
import os
import json
from splash import defaults
from splash.utils import to_bytes, path_join_secure
from splash.errors import BadOption
def save_args_to_cache(self, cache):
"""
Process save_args and put all values to cache.
Return a list of (name, key) pairs.
"""
save_args = self.get_save_args()
save_values = [self.data.get(name) for name in save_args]
keys = cache.add_many(save_values)
return list(zip(save_args, keys))
def validate_size_str(size_str):
"""
Validate size string in WxH format.
Can be used to validate both viewport and window size strings. Does not
special-case ``'full'`` viewport. Raises ``ValueError`` if anything goes
wrong.
:param size_str: string to validate
"""
max_width = defaults.VIEWPORT_MAX_WIDTH
max_heigth = defaults.VIEWPORT_MAX_HEIGTH
max_area = defaults.VIEWPORT_MAX_AREA
try:
w, h = map(int, size_str.split('x'))
except ValueError:
raise ValueError("Invalid viewport format: %s" % size_str)
else:
if not ((0 < w <= max_width) and (0 < h <= max_heigth) and
(w * h < max_area)):
raise ValueError("Viewport (%dx%d, area=%d) is out of range (%dx%d, area=%d)" %
(w, h, w * h, max_width, max_heigth, max_area))
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
11748,
28686,
198,
11748,
33918,
198,
198,
6738,
22870,
1330,
26235,
198,
6738,
22870,
13,
26791,
1330,
284,
62,
33661,
11,
3108,
62,
22179,
62,
22390,
198,
6738,
22870,
13,
48277,
1330,
7772,
19722,
628,
198,
220,
220,
220,
825,
3613,
62,
22046,
62,
1462,
62,
23870,
7,
944,
11,
12940,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10854,
3613,
62,
22046,
290,
1234,
477,
3815,
284,
12940,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8229,
257,
1351,
286,
357,
3672,
11,
1994,
8,
14729,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
22046,
796,
2116,
13,
1136,
62,
21928,
62,
22046,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
27160,
796,
685,
944,
13,
7890,
13,
1136,
7,
3672,
8,
329,
1438,
287,
3613,
62,
22046,
60,
198,
220,
220,
220,
220,
220,
220,
220,
8251,
796,
12940,
13,
2860,
62,
21834,
7,
21928,
62,
27160,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1351,
7,
13344,
7,
21928,
62,
22046,
11,
8251,
4008,
628,
198,
4299,
26571,
62,
7857,
62,
2536,
7,
7857,
62,
2536,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3254,
20540,
2546,
4731,
287,
370,
87,
39,
5794,
13,
628,
220,
220,
220,
1680,
307,
973,
284,
26571,
1111,
1570,
634,
290,
4324,
2546,
13042,
13,
220,
8314,
407,
198,
220,
220,
220,
2041,
12,
7442,
7559,
6,
12853,
6,
15506,
1570,
634,
13,
220,
7567,
2696,
7559,
11395,
12331,
15506,
611,
1997,
2925,
198,
220,
220,
220,
2642,
13,
628,
220,
220,
220,
1058,
17143,
2546,
62,
2536,
25,
4731,
284,
26571,
628,
220,
220,
220,
37227,
198,
220,
220,
220,
3509,
62,
10394,
796,
26235,
13,
28206,
15490,
62,
22921,
62,
54,
2389,
4221,
198,
220,
220,
220,
3509,
62,
258,
328,
400,
796,
26235,
13,
28206,
15490,
62,
22921,
62,
13909,
3528,
4221,
198,
220,
220,
220,
3509,
62,
20337,
796,
26235,
13,
28206,
15490,
62,
22921,
62,
12203,
32,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
266,
11,
289,
796,
3975,
7,
600,
11,
2546,
62,
2536,
13,
35312,
10786,
87,
6,
4008,
198,
220,
220,
220,
2845,
11052,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
44651,
1570,
634,
5794,
25,
4064,
82,
1,
4064,
2546,
62,
2536,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
14808,
15,
1279,
266,
19841,
3509,
62,
10394,
8,
290,
357,
15,
1279,
289,
19841,
3509,
62,
258,
328,
400,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
86,
1635,
289,
1279,
3509,
62,
20337,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
11052,
12331,
7203,
7680,
634,
37633,
34350,
4,
67,
11,
1989,
28,
4,
67,
8,
318,
503,
286,
2837,
37633,
34350,
4,
67,
11,
1989,
28,
4,
67,
16725,
4064,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
86,
11,
289,
11,
266,
1635,
289,
11,
3509,
62,
10394,
11,
3509,
62,
258,
328,
400,
11,
3509,
62,
20337,
4008,
198
] | 2.333895 | 593 |
# code....
a = 1
b = 2
c = 3
s = a+b+c
r = s/3
print(r)
# code....
'''
def average():
a=1
b=2
c=3
s=a+b+c
r=s/3
print(r)
average()
'''
'''
#input
#parameter
#argument
def average(a,b,c):
s=a+b+c
r=s/3
print(r)
average(10,20,30)
'''
print(average(10, 20, 30))
| [
2,
2438,
1106,
198,
64,
796,
352,
198,
65,
796,
362,
198,
66,
796,
513,
198,
82,
796,
257,
10,
65,
10,
66,
198,
81,
796,
264,
14,
18,
198,
4798,
7,
81,
8,
198,
2,
2438,
1106,
198,
198,
7061,
6,
198,
4299,
2811,
33529,
198,
220,
220,
220,
257,
28,
16,
198,
220,
220,
220,
275,
28,
17,
198,
220,
220,
220,
269,
28,
18,
198,
220,
220,
220,
264,
28,
64,
10,
65,
10,
66,
198,
220,
220,
220,
374,
28,
82,
14,
18,
198,
220,
220,
220,
3601,
7,
81,
8,
198,
23913,
3419,
198,
7061,
6,
198,
198,
7061,
6,
198,
2,
15414,
198,
2,
17143,
2357,
198,
2,
49140,
198,
4299,
2811,
7,
64,
11,
65,
11,
66,
2599,
198,
220,
220,
220,
264,
28,
64,
10,
65,
10,
66,
198,
220,
220,
220,
374,
28,
82,
14,
18,
198,
220,
220,
220,
3601,
7,
81,
8,
198,
23913,
7,
940,
11,
1238,
11,
1270,
8,
198,
7061,
6,
628,
198,
198,
4798,
7,
23913,
7,
940,
11,
1160,
11,
1542,
4008,
198
] | 1.675978 | 179 |
#!/usr/bin/env python
# runs after the job (and after the default post-filter)
from galaxy.tools.parameters import DataToolParameter
# Older py compatibility
try:
set()
except:
from sets import Set as set
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
2,
4539,
706,
262,
1693,
357,
392,
706,
262,
4277,
1281,
12,
24455,
8,
198,
6738,
16161,
13,
31391,
13,
17143,
7307,
1330,
6060,
25391,
36301,
198,
2,
35527,
12972,
17764,
198,
28311,
25,
198,
220,
220,
220,
900,
3419,
198,
16341,
25,
198,
220,
220,
220,
422,
5621,
1330,
5345,
355,
900,
628
] | 3.359375 | 64 |
#!/usr/bin/env python2
# Copyright (c) 2014-2015 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
# Exercise the listtransactions API
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
def check_array_result(object_array, to_match, expected):
"""
Pass in array of JSON objects, a dictionary with key/value pairs
to match against, and another dictionary with expected key/value
pairs.
"""
num_matched = 0
for item in object_array:
all_match = True
for key,value in to_match.items():
if item[key] != value:
all_match = False
if not all_match:
continue
for key,value in expected.items():
if item[key] != value:
raise AssertionError("%s : expected %s=%s"%(str(item), str(key), str(value)))
num_matched = num_matched+1
if num_matched == 0:
raise AssertionError("No objects matched %s"%(str(to_match)))
if __name__ == '__main__':
ListTransactionsTest().main()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
17,
198,
2,
15069,
357,
66,
8,
1946,
12,
4626,
383,
6185,
7231,
6505,
198,
2,
4307,
6169,
739,
262,
17168,
3788,
5964,
11,
766,
262,
19249,
198,
2,
2393,
27975,
45761,
393,
2638,
1378,
2503,
13,
44813,
1668,
13,
2398,
14,
677,
4541,
14,
2781,
12,
43085,
13,
10121,
13,
198,
198,
2,
32900,
262,
1351,
7645,
4658,
7824,
198,
198,
6738,
1332,
62,
30604,
13,
9288,
62,
30604,
1330,
6185,
14402,
21055,
6433,
198,
6738,
1332,
62,
30604,
13,
22602,
1330,
1635,
628,
198,
4299,
2198,
62,
18747,
62,
20274,
7,
15252,
62,
18747,
11,
284,
62,
15699,
11,
2938,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6251,
287,
7177,
286,
19449,
5563,
11,
257,
22155,
351,
1994,
14,
8367,
14729,
198,
220,
220,
220,
284,
2872,
1028,
11,
290,
1194,
22155,
351,
2938,
1994,
14,
8367,
198,
220,
220,
220,
14729,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
997,
62,
31409,
796,
657,
198,
220,
220,
220,
329,
2378,
287,
2134,
62,
18747,
25,
198,
220,
220,
220,
220,
220,
220,
220,
477,
62,
15699,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
8367,
287,
284,
62,
15699,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2378,
58,
2539,
60,
14512,
1988,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
477,
62,
15699,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
477,
62,
15699,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
8367,
287,
2938,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
2378,
58,
2539,
60,
14512,
1988,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
2195,
861,
295,
12331,
7203,
4,
82,
1058,
2938,
4064,
82,
28,
4,
82,
1,
4,
7,
2536,
7,
9186,
828,
965,
7,
2539,
828,
965,
7,
8367,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
997,
62,
31409,
796,
997,
62,
31409,
10,
16,
198,
220,
220,
220,
611,
997,
62,
31409,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
2195,
861,
295,
12331,
7203,
2949,
5563,
14451,
4064,
82,
1,
4,
7,
2536,
7,
1462,
62,
15699,
22305,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
7343,
8291,
4658,
14402,
22446,
12417,
3419,
628
] | 2.629464 | 448 |
# -*- coding: utf-8 -*-
'''
Salt module to manage unix mounts and the fstab file
'''
from __future__ import absolute_import
# Import python libs
import os
import re
import logging
# Import salt libs
import salt.utils
from salt._compat import string_types
from salt.utils import which as _which
from salt.exceptions import CommandNotFoundError, CommandExecutionError
# Set up logger
log = logging.getLogger(__name__)
# Define the module's virtual name
__virtualname__ = 'mount'
def __virtual__():
'''
Only load on POSIX-like systems
'''
# Disable on Windows, a specific file module exists:
if salt.utils.is_windows():
return False
return True
def _active_mounts(ret):
'''
List active mounts on Linux systems
'''
_list = _list_mounts()
filename = '/proc/self/mounts'
if not os.access(filename, os.R_OK):
msg = 'File not readable {0}'
raise CommandExecutionError(msg.format(filename))
with salt.utils.fopen(filename) as ifile:
for line in ifile:
comps = line.split()
ret[comps[1]] = {'device': comps[0],
'alt_device': _list.get(comps[1], None),
'fstype': comps[2],
'opts': comps[3].split(',')}
return ret
def _active_mounts_freebsd(ret):
'''
List active mounts on FreeBSD systems
'''
for line in __salt__['cmd.run_stdout']('mount -p').split('\n'):
comps = re.sub(r"\s+", " ", line).split()
ret[comps[1]] = {'device': comps[0],
'fstype': comps[2],
'opts': comps[3].split(',')}
return ret
def _active_mounts_solaris(ret):
'''
List active mounts on Solaris systems
'''
for line in __salt__['cmd.run_stdout']('mount -v').split('\n'):
comps = re.sub(r"\s+", " ", line).split()
ret[comps[2]] = {'device': comps[0],
'fstype': comps[4],
'opts': comps[5].split('/')}
return ret
def _active_mounts_openbsd(ret):
'''
List active mounts on OpenBSD systems
'''
for line in __salt__['cmd.run_stdout']('mount -v').split('\n'):
comps = re.sub(r"\s+", " ", line).split()
nod = __salt__['cmd.run_stdout']('ls -l {0}'.format(comps[0]))
nod = ' '.join(nod.split()).split(" ")
parens = re.findall(r'\((.*?)\)', line, re.DOTALL)
ret[comps[3]] = {'device': comps[0],
'fstype': comps[5],
'opts': parens[1].split(", "),
'major': str(nod[4].strip(",")),
'minor': str(nod[5]),
'device_uuid': parens[0]}
return ret
def _active_mounts_darwin(ret):
'''
List active mounts on Mac OS systems
'''
for line in __salt__['cmd.run_stdout']('mount').split('\n'):
comps = re.sub(r"\s+", " ", line).split()
parens = re.findall(r'\((.*?)\)', line, re.DOTALL)[0].split(", ")
ret[comps[2]] = {'device': comps[0],
'fstype': parens[0],
'opts': parens[1:]}
return ret
def active(extended=False):
'''
List the active mounts.
CLI Example:
.. code-block:: bash
salt '*' mount.active
'''
ret = {}
if __grains__['os'] == 'FreeBSD':
_active_mounts_freebsd(ret)
elif __grains__['os'] == 'Solaris':
_active_mounts_solaris(ret)
elif __grains__['os'] == 'OpenBSD':
_active_mounts_openbsd(ret)
elif __grains__['os'] in ['MacOS', 'Darwin']:
_active_mounts_darwin(ret)
else:
if extended:
try:
_active_mountinfo(ret)
except CommandExecutionError:
_active_mounts(ret)
else:
_active_mounts(ret)
return ret
def fstab(config='/etc/fstab'):
'''
List the contents of the fstab
CLI Example:
.. code-block:: bash
salt '*' mount.fstab
'''
ret = {}
if not os.path.isfile(config):
return ret
with salt.utils.fopen(config) as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
continue
if not line.strip():
# Blank line
continue
comps = line.split()
if len(comps) != 6:
# Invalid entry
continue
ret[comps[1]] = {'device': comps[0],
'fstype': comps[2],
'opts': comps[3].split(','),
'dump': comps[4],
'pass': comps[5]}
return ret
def rm_fstab(name, device, config='/etc/fstab'):
'''
Remove the mount point from the fstab
CLI Example:
.. code-block:: bash
salt '*' mount.rm_fstab /mnt/foo
'''
contents = fstab(config)
if name not in contents:
return True
# The entry is present, get rid of it
lines = []
try:
with salt.utils.fopen(config, 'r') as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
lines.append(line)
continue
if not line.strip():
# Blank line
lines.append(line)
continue
comps = line.split()
if len(comps) != 6:
# Invalid entry
lines.append(line)
continue
comps = line.split()
if device:
if comps[1] == name and comps[0] == device:
continue
else:
if comps[1] == name:
continue
lines.append(line)
except (IOError, OSError) as exc:
msg = "Couldn't read from {0}: {1}"
raise CommandExecutionError(msg.format(config, str(exc)))
try:
with salt.utils.fopen(config, 'w+') as ofile:
ofile.writelines(lines)
except (IOError, OSError) as exc:
msg = "Couldn't write to {0}: {1}"
raise CommandExecutionError(msg.format(config, str(exc)))
return True
def set_fstab(
name,
device,
fstype,
opts='defaults',
dump=0,
pass_num=0,
config='/etc/fstab',
test=False,
**kwargs):
'''
Verify that this mount is represented in the fstab, change the mount
to match the data passed, or add the mount if it is not present.
CLI Example:
.. code-block:: bash
salt '*' mount.set_fstab /mnt/foo /dev/sdz1 ext4
'''
# Fix the opts type if it is a list
if isinstance(opts, list):
opts = ','.join(opts)
lines = []
change = False
present = False
if not os.path.isfile(config):
raise CommandExecutionError('Bad config file "{0}"'.format(config))
try:
with salt.utils.fopen(config, 'r') as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
lines.append(line)
continue
if not line.strip():
# Blank line
lines.append(line)
continue
comps = line.split()
if len(comps) != 6:
# Invalid entry
lines.append(line)
continue
if comps[1] == name or comps[0] == device:
# check to see if there are changes
# and fix them if there are any
present = True
if comps[0] != device:
change = True
comps[0] = device
if comps[1] != name:
change = True
comps[1] = name
if comps[2] != fstype:
change = True
comps[2] = fstype
if comps[3] != opts:
change = True
comps[3] = opts
if comps[4] != str(dump):
change = True
comps[4] = str(dump)
if comps[5] != str(pass_num):
change = True
comps[5] = str(pass_num)
if change:
log.debug(
'fstab entry for mount point {0} needs to be '
'updated'.format(name)
)
newline = (
'{0}\t\t{1}\t{2}\t{3}\t{4} {5}\n'.format(
device, name, fstype, opts, dump, pass_num
)
)
lines.append(newline)
else:
lines.append(line)
except (IOError, OSError) as exc:
msg = 'Couldn\'t read from {0}: {1}'
raise CommandExecutionError(msg.format(config, str(exc)))
if change:
if not salt.utils.test_mode(test=test, **kwargs):
try:
with salt.utils.fopen(config, 'w+') as ofile:
# The line was changed, commit it!
ofile.writelines(lines)
except (IOError, OSError):
msg = 'File not writable {0}'
raise CommandExecutionError(msg.format(config))
return 'change'
if not change:
if present:
# The right entry is already here
return 'present'
else:
if not salt.utils.test_mode(test=test, **kwargs):
# The entry is new, add it to the end of the fstab
newline = '{0}\t\t{1}\t{2}\t{3}\t{4} {5}\n'.format(device,
name,
fstype,
opts,
dump,
pass_num)
lines.append(newline)
try:
with salt.utils.fopen(config, 'w+') as ofile:
# The line was changed, commit it!
ofile.writelines(lines)
except (IOError, OSError):
raise CommandExecutionError(
'File not writable {0}'.format(
config
)
)
return 'new'
def rm_automaster(name, device, config='/etc/auto_salt'):
'''
Remove the mount point from the auto_master
CLI Example:
.. code-block:: bash
salt '*' mount.rm_automaster /mnt/foo
'''
contents = automaster(config)
if name not in contents:
return True
# The entry is present, get rid of it
lines = []
try:
with salt.utils.fopen(config, 'r') as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
lines.append(line)
continue
if not line.strip():
# Blank line
lines.append(line)
continue
comps = line.split()
if len(comps) != 3:
# Invalid entry
lines.append(line)
continue
comps = line.split()
prefix = "/.."
name_chk = comps[0].replace(prefix, "")
device_fmt = comps[2].split(":")
if device:
if name_chk == name and device_fmt[1] == device:
continue
else:
if name_chk == name:
continue
lines.append(line)
except (IOError, OSError) as exc:
msg = "Couldn't read from {0}: {1}"
raise CommandExecutionError(msg.format(config, str(exc)))
try:
with salt.utils.fopen(config, 'w+') as ofile:
ofile.writelines(lines)
except (IOError, OSError) as exc:
msg = "Couldn't write to {0}: {1}"
raise CommandExecutionError(msg.format(config, str(exc)))
# Update automount
__salt__['cmd.run']('automount -cv')
return True
def set_automaster(
name,
device,
fstype,
opts='',
config='/etc/auto_salt',
test=False,
**kwargs):
'''
Verify that this mount is represented in the auto_salt, change the mount
to match the data passed, or add the mount if it is not present.
CLI Example:
.. code-block:: bash
salt '*' mount.set_automaster /mnt/foo /dev/sdz1 ext4
'''
# Fix the opts type if it is a list
if isinstance(opts, list):
opts = ','.join(opts)
lines = []
change = False
present = False
automaster_file = "/etc/auto_master"
if not os.path.isfile(config):
__salt__['file.touch'](config)
__salt__['file.append'](automaster_file, "/-\t\t\t{0}".format(config))
name = "/..{0}".format(name)
device_fmt = "{0}:{1}".format(fstype, device)
type_opts = "-fstype={0},{1}".format(fstype, opts)
if fstype == 'smbfs':
device_fmt = device_fmt.replace(fstype, "")
try:
with salt.utils.fopen(config, 'r') as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
lines.append(line)
continue
if not line.strip():
# Blank line
lines.append(line)
continue
comps = line.split()
if len(comps) != 3:
# Invalid entry
lines.append(line)
continue
if comps[0] == name or comps[2] == device_fmt:
# check to see if there are changes
# and fix them if there are any
present = True
if comps[0] != name:
change = True
comps[0] = name
if comps[1] != type_opts:
change = True
comps[1] = type_opts
if comps[2] != device_fmt:
change = True
comps[2] = device_fmt
if change:
log.debug(
'auto_master entry for mount point {0} needs to be '
'updated'.format(name)
)
newline = (
'{0}\t{1}\t{2}\n'.format(
name, type_opts, device_fmt)
)
lines.append(newline)
else:
lines.append(line)
except (IOError, OSError) as exc:
msg = 'Couldn\'t read from {0}: {1}'
raise CommandExecutionError(msg.format(config, str(exc)))
if change:
if not salt.utils.test_mode(test=test, **kwargs):
try:
with salt.utils.fopen(config, 'w+') as ofile:
# The line was changed, commit it!
ofile.writelines(lines)
except (IOError, OSError):
msg = 'File not writable {0}'
raise CommandExecutionError(msg.format(config))
return 'change'
if not change:
if present:
# The right entry is already here
return 'present'
else:
if not salt.utils.test_mode(test=test, **kwargs):
# The entry is new, add it to the end of the fstab
newline = (
'{0}\t{1}\t{2}\n'.format(
name, type_opts, device_fmt)
)
lines.append(newline)
try:
with salt.utils.fopen(config, 'w+') as ofile:
# The line was changed, commit it!
ofile.writelines(lines)
except (IOError, OSError):
raise CommandExecutionError(
'File not writable {0}'.format(
config
)
)
return 'new'
def automaster(config='/etc/auto_salt'):
'''
List the contents of the fstab
CLI Example:
.. code-block:: bash
salt '*' mount.fstab
'''
ret = {}
if not os.path.isfile(config):
return ret
with salt.utils.fopen(config) as ifile:
for line in ifile:
if line.startswith('#'):
# Commented
continue
if not line.strip():
# Blank line
continue
comps = line.split()
if len(comps) != 3:
# Invalid entry
continue
prefix = "/.."
name = comps[0].replace(prefix, "")
device_fmt = comps[2].split(":")
opts = comps[1].split(',')
ret[name] = {'device': device_fmt[1],
'fstype': opts[0],
'opts': opts[1:]}
return ret
def mount(name, device, mkmnt=False, fstype='', opts='defaults', user=None):
'''
Mount a device
CLI Example:
.. code-block:: bash
salt '*' mount.mount /mnt/foo /dev/sdz1 True
'''
# Darwin doesn't expect defaults when mounting without other options
if 'defaults' in opts and __grains__['os'] in ['MacOS', 'Darwin']:
opts = None
if isinstance(opts, string_types):
opts = opts.split(',')
if not os.path.exists(name) and mkmnt:
__salt__['file.mkdir'](name=name, user=user)
args = ''
if opts is not None:
lopts = ','.join(opts)
args = '-o {0}'.format(lopts)
if fstype:
args += ' -t {0}'.format(fstype)
cmd = 'mount {0} {1} {2} '.format(args, device, name)
out = __salt__['cmd.run_all'](cmd, runas=user)
if out['retcode']:
return out['stderr']
return True
def remount(name, device, mkmnt=False, fstype='', opts='defaults', user=None):
'''
Attempt to remount a device, if the device is not already mounted, mount
is called
CLI Example:
.. code-block:: bash
salt '*' mount.remount /mnt/foo /dev/sdz1 True
'''
force_mount = False
if __grains__['os'] in ['MacOS', 'Darwin']:
if opts == 'defaults':
opts = 'noowners'
if fstype == 'smbfs':
force_mount = True
if isinstance(opts, string_types):
opts = opts.split(',')
mnts = active()
if name in mnts:
# The mount point is mounted, attempt to remount it with the given data
if 'remount' not in opts and __grains__['os'] not in ['OpenBSD', 'MacOS', 'Darwin']:
opts.append('remount')
if force_mount:
# We need to force the mount but first we should unmount
umount(name, device, user=user)
lopts = ','.join(opts)
args = '-o {0}'.format(lopts)
if fstype:
args += ' -t {0}'.format(fstype)
if __grains__['os'] not in ['OpenBSD', 'MacOS', 'Darwin'] or force_mount:
cmd = 'mount {0} {1} {2} '.format(args, device, name)
else:
cmd = 'mount -u {0} {1} {2} '.format(args, device, name)
out = __salt__['cmd.run_all'](cmd, runas=user)
if out['retcode']:
return out['stderr']
return True
# Mount a filesystem that isn't already
return mount(name, device, mkmnt, fstype, opts, user=user)
def umount(name, device=None, user=None):
'''
Attempt to unmount a device by specifying the directory it is mounted on
CLI Example:
.. code-block:: bash
salt '*' mount.umount /mnt/foo
.. versionadded:: Lithium
salt '*' mount.umount /mnt/foo /dev/xvdc1
'''
mnts = active()
if name not in mnts:
return "{0} does not have anything mounted".format(name)
if not device:
cmd = 'umount {0}'.format(name)
else:
cmd = 'umount {0}'.format(device)
out = __salt__['cmd.run_all'](cmd, runas=user)
if out['retcode']:
return out['stderr']
return True
def is_fuse_exec(cmd):
'''
Returns true if the command passed is a fuse mountable application.
CLI Example:
.. code-block:: bash
salt '*' mount.is_fuse_exec sshfs
'''
cmd_path = _which(cmd)
# No point in running ldd on a command that doesn't exist
if not cmd_path:
return False
elif not _which('ldd'):
raise CommandNotFoundError('ldd')
out = __salt__['cmd.run']('ldd {0}'.format(cmd_path))
return 'libfuse' in out
def swaps():
'''
Return a dict containing information on active swap
CLI Example:
.. code-block:: bash
salt '*' mount.swaps
'''
ret = {}
if __grains__['os'] != 'OpenBSD':
with salt.utils.fopen('/proc/swaps') as fp_:
for line in fp_:
if line.startswith('Filename'):
continue
comps = line.split()
ret[comps[0]] = {'type': comps[1],
'size': comps[2],
'used': comps[3],
'priority': comps[4]}
else:
for line in __salt__['cmd.run_stdout']('swapctl -kl').splitlines():
if line.startswith(('Device', 'Total')):
continue
swap_type = "file"
comps = line.split()
if comps[0].startswith('/dev/'):
swap_type = "partition"
ret[comps[0]] = {'type': swap_type,
'size': comps[1],
'used': comps[2],
'priority': comps[5]}
return ret
def swapon(name, priority=None):
'''
Activate a swap disk
CLI Example:
.. code-block:: bash
salt '*' mount.swapon /root/swapfile
'''
ret = {}
on_ = swaps()
if name in on_:
ret['stats'] = on_[name]
ret['new'] = False
return ret
cmd = 'swapon {0}'.format(name)
if priority:
cmd += ' -p {0}'.format(priority)
__salt__['cmd.run'](cmd)
on_ = swaps()
if name in on_:
ret['stats'] = on_[name]
ret['new'] = True
return ret
return ret
def swapoff(name):
'''
Deactivate a named swap mount
CLI Example:
.. code-block:: bash
salt '*' mount.swapoff /root/swapfile
'''
on_ = swaps()
if name in on_:
if __grains__['os'] != 'OpenBSD':
__salt__['cmd.run']('swapoff {0}'.format(name))
else:
__salt__['cmd.run']('swapctl -d {0}'.format(name))
on_ = swaps()
if name in on_:
return False
return True
return None
def is_mounted(name):
'''
.. versionadded:: 2014.7.0
Provide information if the path is mounted
CLI Example:
.. code-block:: bash
salt '*' mount.is_mounted /mnt/share
'''
active_ = active()
if name in active_:
return True
else:
return False
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
7061,
6,
198,
43061,
8265,
284,
6687,
555,
844,
30790,
290,
262,
277,
39029,
2393,
198,
7061,
6,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
198,
2,
17267,
21015,
9195,
82,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
18931,
198,
198,
2,
17267,
8268,
9195,
82,
198,
11748,
8268,
13,
26791,
198,
6738,
8268,
13557,
5589,
265,
1330,
4731,
62,
19199,
198,
6738,
8268,
13,
26791,
1330,
543,
355,
4808,
4758,
198,
6738,
8268,
13,
1069,
11755,
1330,
9455,
3673,
21077,
12331,
11,
9455,
23002,
1009,
12331,
198,
198,
2,
5345,
510,
49706,
198,
6404,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
198,
198,
2,
2896,
500,
262,
8265,
338,
7166,
1438,
198,
834,
32844,
3672,
834,
796,
705,
14948,
6,
628,
198,
4299,
11593,
32844,
834,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5514,
3440,
319,
28069,
10426,
12,
2339,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
31529,
319,
3964,
11,
257,
2176,
2393,
8265,
7160,
25,
198,
220,
220,
220,
611,
8268,
13,
26791,
13,
271,
62,
28457,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
1441,
6407,
628,
628,
198,
4299,
4808,
5275,
62,
14948,
82,
7,
1186,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
4075,
30790,
319,
7020,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
4808,
4868,
796,
4808,
4868,
62,
14948,
82,
3419,
198,
220,
220,
220,
29472,
796,
31051,
36942,
14,
944,
14,
14948,
82,
6,
198,
220,
220,
220,
611,
407,
28686,
13,
15526,
7,
34345,
11,
28686,
13,
49,
62,
11380,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
705,
8979,
407,
31744,
1391,
15,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
34345,
4008,
628,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
34345,
8,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
16,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2501,
62,
25202,
10354,
4808,
4868,
13,
1136,
7,
785,
862,
58,
16,
4357,
6045,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
552,
82,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
552,
82,
58,
18,
4083,
35312,
7,
3256,
11537,
92,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
4808,
5275,
62,
14948,
82,
62,
5787,
1443,
67,
7,
1186,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
4075,
30790,
319,
35841,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
1627,
287,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
14948,
532,
79,
27691,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
302,
13,
7266,
7,
81,
1,
59,
82,
10,
1600,
366,
33172,
1627,
737,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
16,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
552,
82,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
552,
82,
58,
18,
4083,
35312,
7,
3256,
11537,
92,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
4808,
5275,
62,
14948,
82,
62,
82,
6192,
271,
7,
1186,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
4075,
30790,
319,
12347,
271,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
1627,
287,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
14948,
532,
85,
27691,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
302,
13,
7266,
7,
81,
1,
59,
82,
10,
1600,
366,
33172,
1627,
737,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
17,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
552,
82,
58,
19,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
552,
82,
58,
20,
4083,
35312,
10786,
14,
11537,
92,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
4808,
5275,
62,
14948,
82,
62,
9654,
1443,
67,
7,
1186,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
4075,
30790,
319,
4946,
21800,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
1627,
287,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
14948,
532,
85,
27691,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
302,
13,
7266,
7,
81,
1,
59,
82,
10,
1600,
366,
33172,
1627,
737,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
18666,
796,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
7278,
532,
75,
1391,
15,
92,
4458,
18982,
7,
785,
862,
58,
15,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
18666,
796,
705,
45302,
22179,
7,
77,
375,
13,
35312,
3419,
737,
35312,
7203,
366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
279,
5757,
82,
796,
302,
13,
19796,
439,
7,
81,
6,
59,
19510,
15885,
10091,
22725,
3256,
1627,
11,
302,
13,
35,
2394,
7036,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
18,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
552,
82,
58,
20,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
279,
5757,
82,
58,
16,
4083,
35312,
7,
1600,
366,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
22478,
10354,
965,
7,
77,
375,
58,
19,
4083,
36311,
7,
2430,
36911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1084,
273,
10354,
965,
7,
77,
375,
58,
20,
46570,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
25202,
62,
12303,
312,
10354,
279,
5757,
82,
58,
15,
48999,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
4808,
5275,
62,
14948,
82,
62,
27455,
5404,
7,
1186,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
4075,
30790,
319,
4100,
7294,
3341,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
329,
1627,
287,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
14948,
27691,
35312,
10786,
59,
77,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
302,
13,
7266,
7,
81,
1,
59,
82,
10,
1600,
366,
33172,
1627,
737,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
279,
5757,
82,
796,
302,
13,
19796,
439,
7,
81,
6,
59,
19510,
15885,
10091,
22725,
3256,
1627,
11,
302,
13,
35,
2394,
7036,
38381,
15,
4083,
35312,
7,
1600,
366,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
17,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
279,
5757,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
279,
5757,
82,
58,
16,
47715,
92,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
4075,
7,
2302,
1631,
28,
25101,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
262,
4075,
30790,
13,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
5275,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1005,
796,
23884,
198,
220,
220,
220,
611,
11593,
2164,
1299,
834,
17816,
418,
20520,
6624,
705,
11146,
21800,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
62,
5787,
1443,
67,
7,
1186,
8,
198,
220,
220,
220,
1288,
361,
11593,
2164,
1299,
834,
17816,
418,
20520,
6624,
705,
38825,
271,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
62,
82,
6192,
271,
7,
1186,
8,
198,
220,
220,
220,
1288,
361,
11593,
2164,
1299,
834,
17816,
418,
20520,
6624,
705,
11505,
21800,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
62,
9654,
1443,
67,
7,
1186,
8,
198,
220,
220,
220,
1288,
361,
11593,
2164,
1299,
834,
17816,
418,
20520,
287,
37250,
14155,
2640,
3256,
705,
32708,
5404,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
62,
27455,
5404,
7,
1186,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
7083,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
10951,
7,
1186,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
9455,
23002,
1009,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
7,
1186,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
5275,
62,
14948,
82,
7,
1186,
8,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
277,
39029,
7,
11250,
11639,
14,
14784,
14,
69,
39029,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
262,
10154,
286,
262,
277,
39029,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
69,
39029,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1005,
796,
23884,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
4468,
576,
7,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
198,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
8,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
718,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
16,
11907,
796,
1391,
6,
25202,
10354,
552,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
552,
82,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
552,
82,
58,
18,
4083,
35312,
7,
3256,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
39455,
10354,
552,
82,
58,
19,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
6603,
10354,
552,
82,
58,
20,
48999,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
42721,
62,
69,
39029,
7,
3672,
11,
3335,
11,
4566,
11639,
14,
14784,
14,
69,
39029,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
17220,
262,
3817,
966,
422,
262,
277,
39029,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
26224,
62,
69,
39029,
1220,
76,
429,
14,
21943,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
10154,
796,
277,
39029,
7,
11250,
8,
198,
220,
220,
220,
611,
1438,
407,
287,
10154,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
1303,
383,
5726,
318,
1944,
11,
651,
5755,
286,
340,
198,
220,
220,
220,
3951,
796,
17635,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
81,
11537,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
718,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
16,
60,
6624,
1438,
290,
552,
82,
58,
15,
60,
6624,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
16,
60,
6624,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
23722,
77,
470,
1100,
422,
1391,
15,
38362,
1391,
16,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
23722,
77,
470,
3551,
284,
1391,
15,
38362,
1391,
16,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
198,
220,
220,
220,
1441,
6407,
628,
198,
4299,
900,
62,
69,
39029,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3335,
11,
198,
220,
220,
220,
220,
220,
220,
220,
277,
301,
2981,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
11639,
12286,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
10285,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1208,
62,
22510,
28,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
11639,
14,
14784,
14,
69,
39029,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
49899,
326,
428,
3817,
318,
7997,
287,
262,
277,
39029,
11,
1487,
262,
3817,
198,
220,
220,
220,
284,
2872,
262,
1366,
3804,
11,
393,
751,
262,
3817,
611,
340,
318,
407,
1944,
13,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2617,
62,
69,
39029,
1220,
76,
429,
14,
21943,
1220,
7959,
14,
21282,
89,
16,
1070,
19,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
13268,
262,
2172,
82,
2099,
611,
340,
318,
257,
1351,
198,
220,
220,
220,
611,
318,
39098,
7,
404,
912,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
705,
4032,
13,
22179,
7,
404,
912,
8,
198,
220,
220,
220,
3951,
796,
17635,
198,
220,
220,
220,
1487,
796,
10352,
198,
220,
220,
220,
1944,
796,
10352,
628,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
4468,
576,
7,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
10786,
22069,
4566,
2393,
45144,
15,
36786,
4458,
18982,
7,
11250,
4008,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
81,
11537,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
718,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
16,
60,
6624,
1438,
393,
552,
82,
58,
15,
60,
6624,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
284,
766,
611,
612,
389,
2458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
4259,
606,
611,
612,
389,
597,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1944,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
15,
60,
14512,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
15,
60,
796,
3335,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
16,
60,
14512,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
16,
60,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
17,
60,
14512,
277,
301,
2981,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
17,
60,
796,
277,
301,
2981,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
18,
60,
14512,
2172,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
18,
60,
796,
2172,
82,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
19,
60,
14512,
965,
7,
39455,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
19,
60,
796,
965,
7,
39455,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
20,
60,
14512,
965,
7,
6603,
62,
22510,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
20,
60,
796,
965,
7,
6603,
62,
22510,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
24442,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
39029,
5726,
329,
3817,
966,
1391,
15,
92,
2476,
284,
307,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43162,
4458,
18982,
7,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
1370,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
90,
15,
32239,
83,
59,
83,
90,
16,
32239,
83,
90,
17,
32239,
83,
90,
18,
32239,
83,
90,
19,
92,
1391,
20,
32239,
77,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3335,
11,
1438,
11,
277,
301,
2981,
11,
2172,
82,
11,
10285,
11,
1208,
62,
22510,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
3605,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
705,
23722,
77,
43054,
83,
1100,
422,
1391,
15,
38362,
1391,
16,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
628,
220,
220,
220,
611,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8268,
13,
26791,
13,
9288,
62,
14171,
7,
9288,
28,
9288,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1627,
373,
3421,
11,
4589,
340,
0,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
705,
8979,
407,
1991,
540,
1391,
15,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
3803,
6,
628,
220,
220,
220,
611,
407,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1944,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
826,
5726,
318,
1541,
994,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
25579,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8268,
13,
26791,
13,
9288,
62,
14171,
7,
9288,
28,
9288,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
5726,
318,
649,
11,
751,
340,
284,
262,
886,
286,
262,
277,
39029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
1370,
796,
705,
90,
15,
32239,
83,
59,
83,
90,
16,
32239,
83,
90,
17,
32239,
83,
90,
18,
32239,
83,
90,
19,
92,
1391,
20,
32239,
77,
4458,
18982,
7,
25202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
301,
2981,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10285,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
62,
22510,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
3605,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1627,
373,
3421,
11,
4589,
340,
0,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8979,
407,
1991,
540,
1391,
15,
92,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
705,
3605,
6,
628,
198,
4299,
42721,
62,
2306,
296,
1603,
7,
3672,
11,
3335,
11,
4566,
11639,
14,
14784,
14,
23736,
62,
82,
2501,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
17220,
262,
3817,
966,
422,
262,
8295,
62,
9866,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
26224,
62,
2306,
296,
1603,
1220,
76,
429,
14,
21943,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
10154,
796,
3557,
1603,
7,
11250,
8,
198,
220,
220,
220,
611,
1438,
407,
287,
10154,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
1303,
383,
5726,
318,
1944,
11,
651,
5755,
286,
340,
198,
220,
220,
220,
3951,
796,
17635,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
81,
11537,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21231,
796,
12813,
492,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
62,
354,
74,
796,
552,
82,
58,
15,
4083,
33491,
7,
40290,
11,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
69,
16762,
796,
552,
82,
58,
17,
4083,
35312,
7,
2404,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
62,
354,
74,
6624,
1438,
290,
3335,
62,
69,
16762,
58,
16,
60,
6624,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
62,
354,
74,
6624,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
23722,
77,
470,
1100,
422,
1391,
15,
38362,
1391,
16,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
366,
23722,
77,
470,
3551,
284,
1391,
15,
38362,
1391,
16,
36786,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
628,
220,
220,
220,
1303,
10133,
3557,
608,
198,
220,
220,
220,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
20520,
10786,
2306,
296,
608,
532,
33967,
11537,
198,
220,
220,
220,
1441,
6407,
628,
198,
4299,
900,
62,
2306,
296,
1603,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3335,
11,
198,
220,
220,
220,
220,
220,
220,
220,
277,
301,
2981,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
11639,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
11639,
14,
14784,
14,
23736,
62,
82,
2501,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
28,
25101,
11,
198,
220,
220,
220,
220,
220,
220,
220,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
49899,
326,
428,
3817,
318,
7997,
287,
262,
8295,
62,
82,
2501,
11,
1487,
262,
3817,
198,
220,
220,
220,
284,
2872,
262,
1366,
3804,
11,
393,
751,
262,
3817,
611,
340,
318,
407,
1944,
13,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2617,
62,
2306,
296,
1603,
1220,
76,
429,
14,
21943,
1220,
7959,
14,
21282,
89,
16,
1070,
19,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1303,
13268,
262,
2172,
82,
2099,
611,
340,
318,
257,
1351,
198,
220,
220,
220,
611,
318,
39098,
7,
404,
912,
11,
1351,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
705,
4032,
13,
22179,
7,
404,
912,
8,
198,
220,
220,
220,
3951,
796,
17635,
198,
220,
220,
220,
1487,
796,
10352,
198,
220,
220,
220,
1944,
796,
10352,
198,
220,
220,
220,
3557,
1603,
62,
7753,
796,
12813,
14784,
14,
23736,
62,
9866,
1,
628,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
4468,
576,
7,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11593,
82,
2501,
834,
17816,
7753,
13,
29332,
6,
16151,
11250,
8,
198,
220,
220,
220,
220,
220,
220,
220,
11593,
82,
2501,
834,
17816,
7753,
13,
33295,
6,
16151,
2306,
296,
1603,
62,
7753,
11,
12813,
12,
59,
83,
59,
83,
59,
83,
90,
15,
92,
1911,
18982,
7,
11250,
4008,
628,
220,
220,
220,
1438,
796,
12813,
492,
90,
15,
92,
1911,
18982,
7,
3672,
8,
198,
220,
220,
220,
3335,
62,
69,
16762,
796,
45144,
15,
92,
29164,
16,
92,
1911,
18982,
7,
69,
301,
2981,
11,
3335,
8,
198,
220,
220,
220,
2099,
62,
404,
912,
796,
27444,
69,
301,
2981,
34758,
15,
5512,
90,
16,
92,
1911,
18982,
7,
69,
301,
2981,
11,
2172,
82,
8,
628,
220,
220,
220,
611,
277,
301,
2981,
6624,
705,
82,
2022,
9501,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
69,
16762,
796,
3335,
62,
69,
16762,
13,
33491,
7,
69,
301,
2981,
11,
366,
4943,
628,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
81,
11537,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
15,
60,
6624,
1438,
393,
552,
82,
58,
17,
60,
6624,
3335,
62,
69,
16762,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2198,
284,
766,
611,
612,
389,
2458,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
290,
4259,
606,
611,
612,
389,
597,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1944,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
15,
60,
14512,
1438,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
15,
60,
796,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
16,
60,
14512,
2099,
62,
404,
912,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
16,
60,
796,
2099,
62,
404,
912,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
17,
60,
14512,
3335,
62,
69,
16762,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1487,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
58,
17,
60,
796,
3335,
62,
69,
16762,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2604,
13,
24442,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
23736,
62,
9866,
5726,
329,
3817,
966,
1391,
15,
92,
2476,
284,
307,
705,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
43162,
4458,
18982,
7,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
1370,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
90,
15,
32239,
83,
90,
16,
32239,
83,
90,
17,
32239,
77,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
2099,
62,
404,
912,
11,
3335,
62,
69,
16762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
3605,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
1370,
8,
198,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
8,
355,
2859,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
705,
23722,
77,
43054,
83,
1100,
422,
1391,
15,
38362,
1391,
16,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
11,
965,
7,
41194,
22305,
628,
220,
220,
220,
611,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8268,
13,
26791,
13,
9288,
62,
14171,
7,
9288,
28,
9288,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1627,
373,
3421,
11,
4589,
340,
0,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31456,
796,
705,
8979,
407,
1991,
540,
1391,
15,
92,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
19662,
13,
18982,
7,
11250,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
3803,
6,
628,
220,
220,
220,
611,
407,
1487,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1944,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
826,
5726,
318,
1541,
994,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
25579,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
8268,
13,
26791,
13,
9288,
62,
14171,
7,
9288,
28,
9288,
11,
12429,
46265,
22046,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
5726,
318,
649,
11,
751,
340,
284,
262,
886,
286,
262,
277,
39029,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
1370,
796,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
90,
15,
32239,
83,
90,
16,
32239,
83,
90,
17,
32239,
77,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
11,
2099,
62,
404,
912,
11,
3335,
62,
69,
16762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3951,
13,
33295,
7,
3605,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
11,
705,
86,
10,
11537,
355,
286,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
1627,
373,
3421,
11,
4589,
340,
0,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
576,
13,
8933,
20655,
7,
6615,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
357,
9399,
12331,
11,
440,
5188,
81,
1472,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
23002,
1009,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
8979,
407,
1991,
540,
1391,
15,
92,
4458,
18982,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1441,
705,
3605,
6,
628,
198,
4299,
3557,
1603,
7,
11250,
11639,
14,
14784,
14,
23736,
62,
82,
2501,
6,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
7343,
262,
10154,
286,
262,
277,
39029,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
69,
39029,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1005,
796,
23884,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
4468,
576,
7,
11250,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
198,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
7,
11250,
8,
355,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
611,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
2,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
955,
12061,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
13,
36311,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
31990,
1627,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
785,
862,
8,
14512,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
17665,
5726,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21231,
796,
12813,
492,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
552,
82,
58,
15,
4083,
33491,
7,
40290,
11,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3335,
62,
69,
16762,
796,
552,
82,
58,
17,
4083,
35312,
7,
2404,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
552,
82,
58,
16,
4083,
35312,
7,
3256,
11537,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
3672,
60,
796,
1391,
6,
25202,
10354,
3335,
62,
69,
16762,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
69,
301,
2981,
10354,
2172,
82,
58,
15,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
404,
912,
10354,
2172,
82,
58,
16,
47715,
92,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
3817,
7,
3672,
11,
3335,
11,
285,
13276,
429,
28,
25101,
11,
277,
301,
2981,
11639,
3256,
2172,
82,
11639,
12286,
82,
3256,
2836,
28,
14202,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
5628,
257,
3335,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
14948,
1220,
76,
429,
14,
21943,
1220,
7959,
14,
21282,
89,
16,
6407,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
1303,
21450,
1595,
470,
1607,
26235,
618,
17260,
1231,
584,
3689,
198,
220,
220,
220,
611,
705,
12286,
82,
6,
287,
2172,
82,
290,
11593,
2164,
1299,
834,
17816,
418,
20520,
287,
37250,
14155,
2640,
3256,
705,
32708,
5404,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
6045,
628,
220,
220,
220,
611,
318,
39098,
7,
404,
912,
11,
4731,
62,
19199,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
2172,
82,
13,
35312,
7,
3256,
11537,
628,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
3672,
8,
290,
285,
13276,
429,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11593,
82,
2501,
834,
17816,
7753,
13,
28015,
15908,
6,
16151,
3672,
28,
3672,
11,
2836,
28,
7220,
8,
628,
220,
220,
220,
26498,
796,
10148,
198,
220,
220,
220,
611,
2172,
82,
318,
407,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
300,
404,
912,
796,
705,
4032,
13,
22179,
7,
404,
912,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
705,
12,
78,
1391,
15,
92,
4458,
18982,
7,
75,
404,
912,
8,
198,
220,
220,
220,
611,
277,
301,
2981,
25,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
15853,
705,
532,
83,
1391,
15,
92,
4458,
18982,
7,
69,
301,
2981,
8,
198,
220,
220,
220,
23991,
796,
705,
14948,
1391,
15,
92,
1391,
16,
92,
1391,
17,
92,
45302,
18982,
7,
22046,
11,
3335,
11,
1438,
8,
198,
220,
220,
220,
503,
796,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
439,
6,
16151,
28758,
11,
1057,
292,
28,
7220,
8,
198,
220,
220,
220,
611,
503,
17816,
1186,
8189,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
503,
17816,
301,
1082,
81,
20520,
198,
220,
220,
220,
1441,
6407,
628,
198,
4299,
816,
608,
7,
3672,
11,
3335,
11,
285,
13276,
429,
28,
25101,
11,
277,
301,
2981,
11639,
3256,
2172,
82,
11639,
12286,
82,
3256,
2836,
28,
14202,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
25770,
284,
816,
608,
257,
3335,
11,
611,
262,
3335,
318,
407,
1541,
12623,
11,
3817,
198,
220,
220,
220,
318,
1444,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2787,
608,
1220,
76,
429,
14,
21943,
1220,
7959,
14,
21282,
89,
16,
6407,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
2700,
62,
14948,
796,
10352,
198,
220,
220,
220,
611,
11593,
2164,
1299,
834,
17816,
418,
20520,
287,
37250,
14155,
2640,
3256,
705,
32708,
5404,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2172,
82,
6624,
705,
12286,
82,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
705,
3919,
15605,
6,
198,
220,
220,
220,
220,
220,
220,
220,
611,
277,
301,
2981,
6624,
705,
82,
2022,
9501,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2700,
62,
14948,
796,
6407,
628,
220,
220,
220,
611,
318,
39098,
7,
404,
912,
11,
4731,
62,
19199,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
796,
2172,
82,
13,
35312,
7,
3256,
11537,
198,
220,
220,
220,
285,
429,
82,
796,
4075,
3419,
198,
220,
220,
220,
611,
1438,
287,
285,
429,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
383,
3817,
966,
318,
12623,
11,
2230,
284,
816,
608,
340,
351,
262,
1813,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
611,
705,
2787,
608,
6,
407,
287,
2172,
82,
290,
11593,
2164,
1299,
834,
17816,
418,
20520,
407,
287,
37250,
11505,
21800,
3256,
705,
14155,
2640,
3256,
705,
32708,
5404,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2172,
82,
13,
33295,
10786,
2787,
608,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2700,
62,
14948,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
775,
761,
284,
2700,
262,
3817,
475,
717,
356,
815,
555,
14948,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
334,
14948,
7,
3672,
11,
3335,
11,
2836,
28,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
300,
404,
912,
796,
705,
4032,
13,
22179,
7,
404,
912,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26498,
796,
705,
12,
78,
1391,
15,
92,
4458,
18982,
7,
75,
404,
912,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
277,
301,
2981,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26498,
15853,
705,
532,
83,
1391,
15,
92,
4458,
18982,
7,
69,
301,
2981,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
11593,
2164,
1299,
834,
17816,
418,
20520,
407,
287,
37250,
11505,
21800,
3256,
705,
14155,
2640,
3256,
705,
32708,
5404,
20520,
393,
2700,
62,
14948,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
14948,
1391,
15,
92,
1391,
16,
92,
1391,
17,
92,
45302,
18982,
7,
22046,
11,
3335,
11,
1438,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
14948,
532,
84,
1391,
15,
92,
1391,
16,
92,
1391,
17,
92,
45302,
18982,
7,
22046,
11,
3335,
11,
1438,
8,
198,
220,
220,
220,
220,
220,
220,
220,
503,
796,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
439,
6,
16151,
28758,
11,
1057,
292,
28,
7220,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
503,
17816,
1186,
8189,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
503,
17816,
301,
1082,
81,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
1303,
5628,
257,
29905,
326,
2125,
470,
1541,
198,
220,
220,
220,
1441,
3817,
7,
3672,
11,
3335,
11,
285,
13276,
429,
11,
277,
301,
2981,
11,
2172,
82,
11,
2836,
28,
7220,
8,
628,
198,
4299,
334,
14948,
7,
3672,
11,
3335,
28,
14202,
11,
2836,
28,
14202,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
25770,
284,
555,
14948,
257,
3335,
416,
31577,
262,
8619,
340,
318,
12623,
319,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
388,
608,
1220,
76,
429,
14,
21943,
628,
220,
220,
220,
220,
220,
220,
220,
11485,
2196,
29373,
3712,
19730,
1505,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
388,
608,
1220,
76,
429,
14,
21943,
1220,
7959,
14,
87,
85,
17896,
16,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
285,
429,
82,
796,
4075,
3419,
198,
220,
220,
220,
611,
1438,
407,
287,
285,
429,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45144,
15,
92,
857,
407,
423,
1997,
12623,
1911,
18982,
7,
3672,
8,
628,
220,
220,
220,
611,
407,
3335,
25,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
388,
608,
1391,
15,
92,
4458,
18982,
7,
3672,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
705,
388,
608,
1391,
15,
92,
4458,
18982,
7,
25202,
8,
198,
220,
220,
220,
503,
796,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
439,
6,
16151,
28758,
11,
1057,
292,
28,
7220,
8,
198,
220,
220,
220,
611,
503,
17816,
1186,
8189,
6,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
503,
17816,
301,
1082,
81,
20520,
198,
220,
220,
220,
1441,
6407,
628,
198,
4299,
318,
62,
69,
1904,
62,
18558,
7,
28758,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
16409,
2081,
611,
262,
3141,
3804,
318,
257,
32738,
3817,
540,
3586,
13,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
271,
62,
69,
1904,
62,
18558,
26678,
9501,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
23991,
62,
6978,
796,
4808,
4758,
7,
28758,
8,
628,
220,
220,
220,
1303,
1400,
966,
287,
2491,
300,
1860,
319,
257,
3141,
326,
1595,
470,
2152,
198,
220,
220,
220,
611,
407,
23991,
62,
6978,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
1288,
361,
407,
4808,
4758,
10786,
335,
67,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
9455,
3673,
21077,
12331,
10786,
335,
67,
11537,
628,
220,
220,
220,
503,
796,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
20520,
10786,
335,
67,
1391,
15,
92,
4458,
18982,
7,
28758,
62,
6978,
4008,
198,
220,
220,
220,
1441,
705,
8019,
69,
1904,
6,
287,
503,
628,
198,
4299,
43997,
33529,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
8229,
257,
8633,
7268,
1321,
319,
4075,
16075,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2032,
1686,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1005,
796,
23884,
198,
220,
220,
220,
611,
11593,
2164,
1299,
834,
17816,
418,
20520,
14512,
705,
11505,
21800,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
351,
8268,
13,
26791,
13,
69,
9654,
10786,
14,
36942,
14,
2032,
1686,
11537,
355,
277,
79,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
277,
79,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
10786,
35063,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
15,
11907,
796,
1391,
6,
4906,
10354,
552,
82,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7857,
10354,
552,
82,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1484,
10354,
552,
82,
58,
18,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49336,
10354,
552,
82,
58,
19,
48999,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
62,
19282,
448,
20520,
10786,
2032,
499,
34168,
532,
41582,
27691,
35312,
6615,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
7,
10786,
24728,
3256,
705,
14957,
11537,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16075,
62,
4906,
796,
366,
7753,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
552,
82,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
552,
82,
58,
15,
4083,
9688,
2032,
342,
10786,
14,
7959,
14,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16075,
62,
4906,
796,
366,
3911,
653,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1005,
58,
785,
862,
58,
15,
11907,
796,
1391,
6,
4906,
10354,
16075,
62,
4906,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
7857,
10354,
552,
82,
58,
16,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
1484,
10354,
552,
82,
58,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
49336,
10354,
552,
82,
58,
20,
48999,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
1509,
9184,
7,
3672,
11,
8475,
28,
14202,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
33120,
257,
16075,
11898,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2032,
9184,
1220,
15763,
14,
2032,
499,
7753,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1005,
796,
23884,
198,
220,
220,
220,
319,
62,
796,
43997,
3419,
198,
220,
220,
220,
611,
1438,
287,
319,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
17816,
34242,
20520,
796,
319,
62,
58,
3672,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
17816,
3605,
20520,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
198,
220,
220,
220,
23991,
796,
705,
2032,
9184,
1391,
15,
92,
4458,
18982,
7,
3672,
8,
198,
220,
220,
220,
611,
8475,
25,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
15853,
705,
532,
79,
1391,
15,
92,
4458,
18982,
7,
49336,
8,
198,
220,
220,
220,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
6,
16151,
28758,
8,
198,
220,
220,
220,
319,
62,
796,
43997,
3419,
198,
220,
220,
220,
611,
1438,
287,
319,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
17816,
34242,
20520,
796,
319,
62,
58,
3672,
60,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
17816,
3605,
20520,
796,
6407,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
198,
220,
220,
220,
1441,
1005,
628,
198,
4299,
16075,
2364,
7,
3672,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
1024,
39022,
257,
3706,
16075,
3817,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
2032,
499,
2364,
1220,
15763,
14,
2032,
499,
7753,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
319,
62,
796,
43997,
3419,
198,
220,
220,
220,
611,
1438,
287,
319,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
11593,
2164,
1299,
834,
17816,
418,
20520,
14512,
705,
11505,
21800,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
20520,
10786,
2032,
499,
2364,
1391,
15,
92,
4458,
18982,
7,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11593,
82,
2501,
834,
17816,
28758,
13,
5143,
20520,
10786,
2032,
499,
34168,
532,
67,
1391,
15,
92,
4458,
18982,
7,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
319,
62,
796,
43997,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
287,
319,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
1441,
6045,
628,
198,
4299,
318,
62,
29728,
7,
3672,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
11485,
2196,
29373,
3712,
1946,
13,
22,
13,
15,
628,
220,
220,
220,
44290,
1321,
611,
262,
3108,
318,
12623,
628,
220,
220,
220,
43749,
17934,
25,
628,
220,
220,
220,
11485,
2438,
12,
9967,
3712,
27334,
628,
220,
220,
220,
220,
220,
220,
220,
8268,
705,
9,
6,
3817,
13,
271,
62,
29728,
1220,
76,
429,
14,
20077,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
4075,
62,
796,
4075,
3419,
198,
220,
220,
220,
611,
1438,
287,
4075,
62,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
10352,
198
] | 1.816444 | 13,075 |
from django.contrib import admin
from base.models import Topic, Photo
admin.site.register(Topic, TopicAdmin)
admin.site.register(Photo, PhotoAdmin)
| [
6738,
42625,
14208,
13,
3642,
822,
1330,
13169,
198,
198,
6738,
2779,
13,
27530,
1330,
47373,
11,
5555,
628,
628,
198,
198,
28482,
13,
15654,
13,
30238,
7,
33221,
11,
47373,
46787,
8,
198,
28482,
13,
15654,
13,
30238,
7,
6191,
11,
5555,
46787,
8,
198
] | 3.347826 | 46 |
#################################################################
# MET v2 Metadate Explorer Tool
#
# This Software is Open Source. See License: https://github.com/TERENA/met/blob/master/LICENSE.md
# Copyright (c) 2012, TERENA All rights reserved.
#
# This Software is based on MET v1 developed for TERENA by Yaco Sistemas, http://www.yaco.es/
# MET v2 was developed for TERENA by Tamim Ziai, DAASI International GmbH, http://www.daasi.de
# Current version of MET has been revised for performance improvements by Andrea Biancini,
# Consortium GARR, http://www.garr.it
##########################################################################
from django.db import models
from django.utils.translation import ugettext_lazy as _
| [
29113,
29113,
2,
198,
2,
31243,
410,
17,
3395,
324,
378,
19142,
16984,
198,
2,
198,
2,
770,
10442,
318,
4946,
8090,
13,
4091,
13789,
25,
3740,
1378,
12567,
13,
785,
14,
5781,
45510,
14,
4164,
14,
2436,
672,
14,
9866,
14,
43,
2149,
24290,
13,
9132,
198,
2,
15069,
357,
66,
8,
2321,
11,
28994,
45510,
1439,
2489,
10395,
13,
198,
2,
198,
2,
770,
10442,
318,
1912,
319,
31243,
410,
16,
4166,
329,
28994,
45510,
416,
575,
10602,
311,
396,
368,
292,
11,
2638,
1378,
2503,
13,
88,
10602,
13,
274,
14,
198,
2,
31243,
410,
17,
373,
4166,
329,
28994,
45510,
416,
11552,
320,
1168,
544,
72,
11,
17051,
1921,
40,
4037,
402,
2022,
39,
11,
2638,
1378,
2503,
13,
6814,
17053,
13,
2934,
198,
2,
9236,
2196,
286,
31243,
468,
587,
15556,
329,
2854,
8561,
416,
23174,
41227,
66,
5362,
11,
198,
2,
42727,
402,
26465,
11,
2638,
1378,
2503,
13,
70,
3258,
13,
270,
198,
29113,
29113,
7804,
2235,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
4981,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
334,
1136,
5239,
62,
75,
12582,
355,
4808,
628
] | 3.82199 | 191 |
import traceback
from pprint import pformat
from threading import Thread
import itchat
import logging
from wxpy.chat import Chat
from wxpy.chats import Chats
from wxpy.friend import Friend
from wxpy.group import Group
from wxpy.message import MessageConfigs, Messages, Message, MessageConfig
from wxpy.mp import MP
from wxpy.response import ResponseError
from wxpy.user import User
from wxpy.utils.constants import SYSTEM
from wxpy.utils.tools import handle_response, get_user_name, wrap_user_name, ensure_list
logger = logging.getLogger('wxpy')
# chats
def except_self(self, chats_or_dicts):
"""
:param chats_or_dicts:
:return:
"""
return list(filter(lambda x: get_user_name(x) != self.self.user_name, chats_or_dicts))
def chats(self, update=False):
"""
:param update:
:return:
"""
return Chats(self.friends(update) + self.groups(update) + self.mps(update), self)
def friends(self, update=False):
"""
:param update:
:return:
"""
ret = do()
ret.source = self
return ret
def search(self, name=None, **attributes):
"""
:param name: ()
:param attributes: sex(), province(), city() province=''
:return:
"""
return self.chats().search(name, **attributes)
# add / create
def create_group(self, users, topic=None):
"""
:param users:
:param topic:
:return:
"""
ret = request()
user_name = ret.get('ChatRoomName')
if user_name:
return Group(self.core.update_chatroom(userName=user_name))
else:
raise ResponseError('Failed to create group:\n{}'.format(pformat(ret)))
# messages
def _process_message(self, msg):
"""
"""
if not self.alive:
return
func, run_async = self.message_configs.get_func(msg)
if not func:
return
if run_async:
Thread(target=process).start()
else:
process()
def register(
self, chats=None, msg_types=None,
except_self=True, run_async=True, enabled=True
):
"""
:param chats:
:param msg_types: (SYSTEM )
:param except_self:
:param run_async:
:param enabled:
"""
return register
def start(self, block=True):
"""
:param block: False
"""
if block:
listen()
else:
t = Thread(target=listen, daemon=True)
t.start()
| [
11748,
12854,
1891,
198,
6738,
279,
4798,
1330,
279,
18982,
198,
6738,
4704,
278,
1330,
14122,
198,
198,
11748,
340,
17006,
198,
11748,
18931,
198,
198,
6738,
266,
87,
9078,
13,
17006,
1330,
24101,
198,
6738,
266,
87,
9078,
13,
354,
1381,
1330,
609,
1381,
198,
6738,
266,
87,
9078,
13,
6726,
1330,
9182,
198,
6738,
266,
87,
9078,
13,
8094,
1330,
4912,
198,
6738,
266,
87,
9078,
13,
20500,
1330,
16000,
16934,
82,
11,
43534,
11,
16000,
11,
16000,
16934,
198,
6738,
266,
87,
9078,
13,
3149,
1330,
4904,
198,
6738,
266,
87,
9078,
13,
26209,
1330,
18261,
12331,
198,
6738,
266,
87,
9078,
13,
7220,
1330,
11787,
198,
6738,
266,
87,
9078,
13,
26791,
13,
9979,
1187,
1330,
36230,
198,
6738,
266,
87,
9078,
13,
26791,
13,
31391,
1330,
5412,
62,
26209,
11,
651,
62,
7220,
62,
3672,
11,
14441,
62,
7220,
62,
3672,
11,
4155,
62,
4868,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
49345,
9078,
11537,
628,
220,
220,
220,
1303,
40815,
628,
220,
220,
220,
825,
2845,
62,
944,
7,
944,
11,
40815,
62,
273,
62,
11600,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
40815,
62,
273,
62,
11600,
82,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1351,
7,
24455,
7,
50033,
2124,
25,
651,
62,
7220,
62,
3672,
7,
87,
8,
14512,
2116,
13,
944,
13,
7220,
62,
3672,
11,
40815,
62,
273,
62,
11600,
82,
4008,
628,
220,
220,
220,
825,
40815,
7,
944,
11,
4296,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4296,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
609,
1381,
7,
944,
13,
36154,
7,
19119,
8,
1343,
2116,
13,
24432,
7,
19119,
8,
1343,
2116,
13,
76,
862,
7,
19119,
828,
2116,
8,
628,
220,
220,
220,
825,
2460,
7,
944,
11,
4296,
28,
25101,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4296,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1005,
796,
466,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1005,
13,
10459,
796,
2116,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
1005,
628,
220,
220,
220,
825,
2989,
7,
944,
11,
1438,
28,
14202,
11,
12429,
1078,
7657,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1438,
25,
220,
7499,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
12608,
25,
220,
1714,
22784,
8473,
22784,
1748,
3419,
220,
8473,
28,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
354,
1381,
22446,
12947,
7,
3672,
11,
12429,
1078,
7657,
8,
628,
220,
220,
220,
1303,
751,
1220,
2251,
628,
220,
220,
220,
825,
2251,
62,
8094,
7,
944,
11,
2985,
11,
7243,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2985,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
7243,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
7783,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1005,
796,
2581,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2836,
62,
3672,
796,
1005,
13,
1136,
10786,
30820,
41178,
5376,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
611,
2836,
62,
3672,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
4912,
7,
944,
13,
7295,
13,
19119,
62,
17006,
3823,
7,
7220,
5376,
28,
7220,
62,
3672,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
18261,
12331,
10786,
37,
6255,
284,
2251,
1448,
7479,
77,
90,
92,
4458,
18982,
7,
79,
18982,
7,
1186,
22305,
628,
220,
220,
220,
1303,
6218,
628,
220,
220,
220,
825,
4808,
14681,
62,
20500,
7,
944,
11,
31456,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2116,
13,
282,
425,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
25439,
11,
1057,
62,
292,
13361,
796,
2116,
13,
20500,
62,
11250,
82,
13,
1136,
62,
20786,
7,
19662,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
25439,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1057,
62,
292,
13361,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14122,
7,
16793,
28,
14681,
737,
9688,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1429,
3419,
628,
220,
220,
220,
825,
7881,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
40815,
28,
14202,
11,
31456,
62,
19199,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2845,
62,
944,
28,
17821,
11,
1057,
62,
292,
13361,
28,
17821,
11,
9343,
28,
17821,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
40815,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
31456,
62,
19199,
25,
220,
357,
23060,
25361,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2845,
62,
944,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
1057,
62,
292,
13361,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
9343,
25,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
7881,
628,
220,
220,
220,
825,
923,
7,
944,
11,
2512,
28,
17821,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
220,
628,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
2512,
25,
220,
10352,
220,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
2512,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6004,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
796,
14122,
7,
16793,
28,
4868,
268,
11,
33386,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
256,
13,
9688,
3419,
198
] | 2.098926 | 1,304 |
# Set up configuration variables
__all__ = ['custom_viewer', 'qglue', 'test']
import os
import sys
from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution('glue-core').version
except DistributionNotFound:
__version__ = 'undefined'
from ._mpl_backend import MatplotlibBackendSetter
sys.meta_path.append(MatplotlibBackendSetter())
from glue.viewers.custom.helper import custom_viewer
# Load user's configuration file
from .config import load_configuration
env = load_configuration()
from .qglue import qglue
from .main import load_plugins # noqa
from glue._settings_helpers import load_settings
load_settings()
# In PyQt 5.5+, PyQt overrides the default exception catching and fatally
# crashes the Qt application without printing out any details about the error.
# Below we revert the exception hook to the original Python one. Note that we
# can't just do sys.excepthook = sys.__excepthook__ otherwise PyQt will detect
# the default excepthook is in place and override it.
sys.excepthook = handle_exception
| [
2,
5345,
510,
8398,
9633,
198,
198,
834,
439,
834,
796,
37250,
23144,
62,
1177,
263,
3256,
705,
80,
4743,
518,
3256,
705,
9288,
20520,
198,
198,
11748,
28686,
198,
198,
11748,
25064,
198,
198,
6738,
279,
10025,
62,
37540,
1330,
651,
62,
17080,
3890,
11,
27484,
3673,
21077,
198,
198,
28311,
25,
198,
220,
220,
220,
11593,
9641,
834,
796,
651,
62,
17080,
3890,
10786,
4743,
518,
12,
7295,
27691,
9641,
198,
16341,
27484,
3673,
21077,
25,
198,
220,
220,
220,
11593,
9641,
834,
796,
705,
917,
18156,
6,
198,
198,
6738,
47540,
76,
489,
62,
1891,
437,
1330,
6550,
29487,
8019,
7282,
437,
7248,
353,
198,
17597,
13,
28961,
62,
6978,
13,
33295,
7,
19044,
29487,
8019,
7282,
437,
7248,
353,
28955,
198,
198,
6738,
22749,
13,
1177,
364,
13,
23144,
13,
2978,
525,
1330,
2183,
62,
1177,
263,
198,
198,
2,
8778,
2836,
338,
8398,
2393,
198,
6738,
764,
11250,
1330,
3440,
62,
11250,
3924,
198,
24330,
796,
3440,
62,
11250,
3924,
3419,
198,
198,
6738,
764,
80,
4743,
518,
1330,
10662,
4743,
518,
198,
198,
6738,
764,
12417,
1330,
3440,
62,
37390,
220,
1303,
645,
20402,
628,
198,
198,
6738,
22749,
13557,
33692,
62,
16794,
364,
1330,
3440,
62,
33692,
198,
2220,
62,
33692,
3419,
628,
198,
2,
554,
9485,
48,
83,
642,
13,
20,
28200,
9485,
48,
83,
23170,
1460,
262,
4277,
6631,
16508,
290,
27546,
198,
2,
17616,
262,
33734,
3586,
1231,
13570,
503,
597,
3307,
546,
262,
4049,
13,
198,
2,
10383,
356,
34052,
262,
6631,
8011,
284,
262,
2656,
11361,
530,
13,
5740,
326,
356,
198,
2,
460,
470,
655,
466,
25064,
13,
1069,
344,
79,
400,
566,
796,
25064,
13,
834,
1069,
344,
79,
400,
566,
834,
4306,
9485,
48,
83,
481,
4886,
198,
2,
262,
4277,
43748,
79,
400,
566,
318,
287,
1295,
290,
20957,
340,
13,
628,
198,
198,
17597,
13,
1069,
344,
79,
400,
566,
796,
5412,
62,
1069,
4516,
198
] | 3.340557 | 323 |
from algovision import app
if(__name__=="__main__"):
app.run(debug=True,host='0.0.0.0')
| [
6738,
435,
9567,
1166,
1330,
598,
198,
198,
361,
7,
834,
3672,
834,
855,
1,
834,
12417,
834,
1,
2599,
198,
220,
220,
220,
598,
13,
5143,
7,
24442,
28,
17821,
11,
4774,
11639,
15,
13,
15,
13,
15,
13,
15,
11537,
198
] | 2.162791 | 43 |
"""
Base settings for Proxito
Some of these settings will eventually be backported into the main settings file,
but currently we have them to be able to run the site with the old middleware for
a staged rollout of the proxito code.
"""
| [
37811,
198,
14881,
6460,
329,
1041,
87,
10094,
198,
198,
4366,
286,
777,
6460,
481,
4191,
307,
736,
9213,
656,
262,
1388,
6460,
2393,
11,
198,
4360,
3058,
356,
423,
606,
284,
307,
1498,
284,
1057,
262,
2524,
351,
262,
1468,
3504,
1574,
329,
198,
64,
23393,
38180,
286,
262,
14793,
10094,
2438,
13,
198,
37811,
628
] | 4.175439 | 57 |
"""Test the search module"""
from collections.abc import Iterable, Sized
from io import StringIO
from itertools import chain, product
from functools import partial
import pickle
import sys
from types import GeneratorType
import re
import numpy as np
import scipy.sparse as sp
import pytest
from sklearn.utils.fixes import sp_version
from sklearn.utils._testing import assert_raises
from sklearn.utils._testing import assert_warns
from sklearn.utils._testing import assert_warns_message
from sklearn.utils._testing import assert_raise_message
from sklearn.utils._testing import assert_array_equal
from sklearn.utils._testing import assert_array_almost_equal
from sklearn.utils._testing import assert_allclose
from sklearn.utils._testing import assert_almost_equal
from sklearn.utils._testing import ignore_warnings
from sklearn.utils._mocking import CheckingClassifier, MockDataFrame
from scipy.stats import bernoulli, expon, uniform
from sklearn.base import BaseEstimator, ClassifierMixin
from sklearn.base import clone
from sklearn.exceptions import NotFittedError
from sklearn.datasets import make_classification
from sklearn.datasets import make_blobs
from sklearn.datasets import make_multilabel_classification
from sklearn.model_selection import fit_grid_point
from sklearn.model_selection import train_test_split
from sklearn.model_selection import KFold
from sklearn.model_selection import StratifiedKFold
from sklearn.model_selection import StratifiedShuffleSplit
from sklearn.model_selection import LeaveOneGroupOut
from sklearn.model_selection import LeavePGroupsOut
from sklearn.model_selection import GroupKFold
from sklearn.model_selection import GroupShuffleSplit
from sklearn.model_selection import GridSearchCV
from sklearn.model_selection import RandomizedSearchCV
from sklearn.model_selection import ParameterGrid
from sklearn.model_selection import ParameterSampler
from sklearn.model_selection._search import BaseSearchCV
from sklearn.model_selection._validation import FitFailedWarning
from sklearn.svm import LinearSVC, SVC
from sklearn.tree import DecisionTreeRegressor
from sklearn.tree import DecisionTreeClassifier
from sklearn.cluster import KMeans
from sklearn.neighbors import KernelDensity
from sklearn.neighbors import KNeighborsClassifier
from sklearn.metrics import f1_score
from sklearn.metrics import recall_score
from sklearn.metrics import accuracy_score
from sklearn.metrics import make_scorer
from sklearn.metrics import roc_auc_score
from sklearn.metrics.pairwise import euclidean_distances
from sklearn.impute import SimpleImputer
from sklearn.pipeline import Pipeline
from sklearn.linear_model import Ridge, SGDClassifier, LinearRegression
from sklearn.experimental import enable_hist_gradient_boosting # noqa
from sklearn.ensemble import HistGradientBoostingClassifier
from sklearn.model_selection.tests.common import OneTimeSplitter
# Neither of the following two estimators inherit from BaseEstimator,
# to test hyperparameter search on user-defined classifiers.
X = np.array([[-1, -1], [-2, -1], [1, 1], [2, 1]])
y = np.array([1, 1, 2, 2])
def test_grid_search_score_method():
X, y = make_classification(n_samples=100, n_classes=2, flip_y=.2,
random_state=0)
clf = LinearSVC(random_state=0)
grid = {'C': [.1]}
search_no_scoring = GridSearchCV(clf, grid, scoring=None).fit(X, y)
search_accuracy = GridSearchCV(clf, grid, scoring='accuracy').fit(X, y)
search_no_score_method_auc = GridSearchCV(LinearSVCNoScore(), grid,
scoring='roc_auc'
).fit(X, y)
search_auc = GridSearchCV(clf, grid, scoring='roc_auc').fit(X, y)
# Check warning only occurs in situation where behavior changed:
# estimator requires score method to compete with scoring parameter
score_no_scoring = search_no_scoring.score(X, y)
score_accuracy = search_accuracy.score(X, y)
score_no_score_auc = search_no_score_method_auc.score(X, y)
score_auc = search_auc.score(X, y)
# ensure the test is sane
assert score_auc < 1.0
assert score_accuracy < 1.0
assert score_auc != score_accuracy
assert_almost_equal(score_accuracy, score_no_scoring)
assert_almost_equal(score_auc, score_no_score_auc)
def test_grid_search_groups():
# Check if ValueError (when groups is None) propagates to GridSearchCV
# And also check if groups is correctly passed to the cv object
rng = np.random.RandomState(0)
X, y = make_classification(n_samples=15, n_classes=2, random_state=0)
groups = rng.randint(0, 3, 15)
clf = LinearSVC(random_state=0)
grid = {'C': [1]}
group_cvs = [LeaveOneGroupOut(), LeavePGroupsOut(2),
GroupKFold(n_splits=3), GroupShuffleSplit()]
for cv in group_cvs:
gs = GridSearchCV(clf, grid, cv=cv)
assert_raise_message(ValueError,
"The 'groups' parameter should not be None.",
gs.fit, X, y)
gs.fit(X, y, groups=groups)
non_group_cvs = [StratifiedKFold(), StratifiedShuffleSplit()]
for cv in non_group_cvs:
gs = GridSearchCV(clf, grid, cv=cv)
# Should not raise an error
gs.fit(X, y)
def test_refit_callable():
"""
Test refit=callable, which adds flexibility in identifying the
"best" estimator.
"""
def refit_callable(cv_results):
"""
A dummy function tests `refit=callable` interface.
Return the index of a model that has the least
`mean_test_score`.
"""
# Fit a dummy clf with `refit=True` to get a list of keys in
# clf.cv_results_.
X, y = make_classification(n_samples=100, n_features=4,
random_state=42)
clf = GridSearchCV(LinearSVC(random_state=42), {'C': [0.01, 0.1, 1]},
scoring='precision', refit=True)
clf.fit(X, y)
# Ensure that `best_index_ != 0` for this dummy clf
assert clf.best_index_ != 0
# Assert every key matches those in `cv_results`
for key in clf.cv_results_.keys():
assert key in cv_results
return cv_results['mean_test_score'].argmin()
X, y = make_classification(n_samples=100, n_features=4,
random_state=42)
clf = GridSearchCV(LinearSVC(random_state=42), {'C': [0.01, 0.1, 1]},
scoring='precision', refit=refit_callable)
clf.fit(X, y)
assert clf.best_index_ == 0
# Ensure `best_score_` is disabled when using `refit=callable`
assert not hasattr(clf, 'best_score_')
def test_refit_callable_invalid_type():
"""
Test implementation catches the errors when 'best_index_' returns an
invalid result.
"""
def refit_callable_invalid_type(cv_results):
"""
A dummy function tests when returned 'best_index_' is not integer.
"""
return None
X, y = make_classification(n_samples=100, n_features=4,
random_state=42)
clf = GridSearchCV(LinearSVC(random_state=42), {'C': [0.1, 1]},
scoring='precision', refit=refit_callable_invalid_type)
with pytest.raises(TypeError,
match='best_index_ returned is not an integer'):
clf.fit(X, y)
def test_refit_callable_multi_metric():
"""
Test refit=callable in multiple metric evaluation setting
"""
def refit_callable(cv_results):
"""
A dummy function tests `refit=callable` interface.
Return the index of a model that has the least
`mean_test_prec`.
"""
assert 'mean_test_prec' in cv_results
return cv_results['mean_test_prec'].argmin()
X, y = make_classification(n_samples=100, n_features=4,
random_state=42)
scoring = {'Accuracy': make_scorer(accuracy_score), 'prec': 'precision'}
clf = GridSearchCV(LinearSVC(random_state=42), {'C': [0.01, 0.1, 1]},
scoring=scoring, refit=refit_callable)
clf.fit(X, y)
assert clf.best_index_ == 0
# Ensure `best_score_` is disabled when using `refit=callable`
assert not hasattr(clf, 'best_score_')
def compare_cv_results_multimetric_with_single(
search_multi, search_acc, search_rec):
"""Compare multi-metric cv_results with the ensemble of multiple
single metric cv_results from single metric grid/random search"""
assert search_multi.multimetric_
assert_array_equal(sorted(search_multi.scorer_),
('accuracy', 'recall'))
cv_results_multi = search_multi.cv_results_
cv_results_acc_rec = {re.sub('_score$', '_accuracy', k): v
for k, v in search_acc.cv_results_.items()}
cv_results_acc_rec.update({re.sub('_score$', '_recall', k): v
for k, v in search_rec.cv_results_.items()})
# Check if score and timing are reasonable, also checks if the keys
# are present
assert all((np.all(cv_results_multi[k] <= 1) for k in (
'mean_score_time', 'std_score_time', 'mean_fit_time',
'std_fit_time')))
# Compare the keys, other than time keys, among multi-metric and
# single metric grid search results. np.testing.assert_equal performs a
# deep nested comparison of the two cv_results dicts
np.testing.assert_equal({k: v for k, v in cv_results_multi.items()
if not k.endswith('_time')},
{k: v for k, v in cv_results_acc_rec.items()
if not k.endswith('_time')})
def compare_refit_methods_when_refit_with_acc(search_multi, search_acc, refit):
"""Compare refit multi-metric search methods with single metric methods"""
assert search_acc.refit == refit
if refit:
assert search_multi.refit == 'accuracy'
else:
assert not search_multi.refit
return # search cannot predict/score without refit
X, y = make_blobs(n_samples=100, n_features=4, random_state=42)
for method in ('predict', 'predict_proba', 'predict_log_proba'):
assert_almost_equal(getattr(search_multi, method)(X),
getattr(search_acc, method)(X))
assert_almost_equal(search_multi.score(X, y), search_acc.score(X, y))
for key in ('best_index_', 'best_score_', 'best_params_'):
assert getattr(search_multi, key) == getattr(search_acc, key)
# FIXME remove test_fit_grid_point as the function will be removed on 0.25
# FIXME remove test_fit_grid_point_deprecated as
# fit_grid_point will be removed on 0.25
def test_fit_grid_point_deprecated():
X, y = make_classification(random_state=0)
svc = LinearSVC(random_state=0)
scorer = make_scorer(accuracy_score)
msg = ("fit_grid_point is deprecated in version 0.23 "
"and will be removed in version 0.25")
params = {'C': 0.1}
train, test = next(StratifiedKFold().split(X, y))
with pytest.warns(FutureWarning, match=msg):
fit_grid_point(X, y, svc, params, train, test, scorer, verbose=False)
def test_pickle():
# Test that a fit search can be pickled
clf = MockClassifier()
grid_search = GridSearchCV(clf, {'foo_param': [1, 2, 3]}, refit=True, cv=3)
grid_search.fit(X, y)
grid_search_pickled = pickle.loads(pickle.dumps(grid_search))
assert_array_almost_equal(grid_search.predict(X),
grid_search_pickled.predict(X))
random_search = RandomizedSearchCV(clf, {'foo_param': [1, 2, 3]},
refit=True, n_iter=3, cv=3)
random_search.fit(X, y)
random_search_pickled = pickle.loads(pickle.dumps(random_search))
assert_array_almost_equal(random_search.predict(X),
random_search_pickled.predict(X))
def test_grid_search_with_multioutput_data():
# Test search with multi-output estimator
X, y = make_multilabel_classification(return_indicator=True,
random_state=0)
est_parameters = {"max_depth": [1, 2, 3, 4]}
cv = KFold()
estimators = [DecisionTreeRegressor(random_state=0),
DecisionTreeClassifier(random_state=0)]
# Test with grid search cv
for est in estimators:
grid_search = GridSearchCV(est, est_parameters, cv=cv)
grid_search.fit(X, y)
res_params = grid_search.cv_results_['params']
for cand_i in range(len(res_params)):
est.set_params(**res_params[cand_i])
for i, (train, test) in enumerate(cv.split(X, y)):
est.fit(X[train], y[train])
correct_score = est.score(X[test], y[test])
assert_almost_equal(
correct_score,
grid_search.cv_results_['split%d_test_score' % i][cand_i])
# Test with a randomized search
for est in estimators:
random_search = RandomizedSearchCV(est, est_parameters,
cv=cv, n_iter=3)
random_search.fit(X, y)
res_params = random_search.cv_results_['params']
for cand_i in range(len(res_params)):
est.set_params(**res_params[cand_i])
for i, (train, test) in enumerate(cv.split(X, y)):
est.fit(X[train], y[train])
correct_score = est.score(X[test], y[test])
assert_almost_equal(
correct_score,
random_search.cv_results_['split%d_test_score'
% i][cand_i])
def test_search_cv__pairwise_property_delegated_to_base_estimator():
"""
Test implementation of BaseSearchCV has the _pairwise property
which matches the _pairwise property of its estimator.
This test make sure _pairwise is delegated to the base estimator.
Non-regression test for issue #13920.
"""
est = BaseEstimator()
attr_message = "BaseSearchCV _pairwise property must match estimator"
for _pairwise_setting in [True, False]:
setattr(est, '_pairwise', _pairwise_setting)
cv = GridSearchCV(est, {'n_neighbors': [10]})
assert _pairwise_setting == cv._pairwise, attr_message
def test_search_cv__pairwise_property_equivalence_of_precomputed():
"""
Test implementation of BaseSearchCV has the _pairwise property
which matches the _pairwise property of its estimator.
This test ensures the equivalence of 'precomputed'.
Non-regression test for issue #13920.
"""
n_samples = 50
n_splits = 2
X, y = make_classification(n_samples=n_samples, random_state=0)
grid_params = {'n_neighbors': [10]}
# defaults to euclidean metric (minkowski p = 2)
clf = KNeighborsClassifier()
cv = GridSearchCV(clf, grid_params, cv=n_splits)
cv.fit(X, y)
preds_original = cv.predict(X)
# precompute euclidean metric to validate _pairwise is working
X_precomputed = euclidean_distances(X)
clf = KNeighborsClassifier(metric='precomputed')
cv = GridSearchCV(clf, grid_params, cv=n_splits)
cv.fit(X_precomputed, y)
preds_precomputed = cv.predict(X_precomputed)
attr_message = "GridSearchCV not identical with precomputed metric"
assert (preds_original == preds_precomputed).all(), attr_message
| [
37811,
14402,
262,
2989,
8265,
37811,
198,
198,
6738,
17268,
13,
39305,
1330,
40806,
540,
11,
311,
1143,
198,
6738,
33245,
1330,
10903,
9399,
198,
6738,
340,
861,
10141,
1330,
6333,
11,
1720,
198,
6738,
1257,
310,
10141,
1330,
13027,
198,
11748,
2298,
293,
198,
11748,
25064,
198,
6738,
3858,
1330,
35986,
6030,
198,
11748,
302,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
629,
541,
88,
13,
82,
29572,
355,
599,
198,
11748,
12972,
9288,
198,
198,
6738,
1341,
35720,
13,
26791,
13,
42624,
1330,
599,
62,
9641,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
430,
2696,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
40539,
82,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
40539,
82,
62,
20500,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
40225,
62,
20500,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
18747,
62,
40496,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
18747,
62,
28177,
62,
40496,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
439,
19836,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
6818,
62,
28177,
62,
40496,
198,
6738,
1341,
35720,
13,
26791,
13557,
33407,
1330,
8856,
62,
40539,
654,
198,
6738,
1341,
35720,
13,
26791,
13557,
76,
8629,
1330,
39432,
9487,
7483,
11,
44123,
6601,
19778,
198,
198,
6738,
629,
541,
88,
13,
34242,
1330,
275,
1142,
280,
15516,
11,
1033,
261,
11,
8187,
198,
198,
6738,
1341,
35720,
13,
8692,
1330,
7308,
22362,
320,
1352,
11,
5016,
7483,
35608,
259,
198,
6738,
1341,
35720,
13,
8692,
1330,
17271,
198,
6738,
1341,
35720,
13,
1069,
11755,
1330,
1892,
37,
2175,
12331,
198,
6738,
1341,
35720,
13,
19608,
292,
1039,
1330,
787,
62,
4871,
2649,
198,
6738,
1341,
35720,
13,
19608,
292,
1039,
1330,
787,
62,
2436,
8158,
198,
6738,
1341,
35720,
13,
19608,
292,
1039,
1330,
787,
62,
16680,
346,
9608,
62,
4871,
2649,
198,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4197,
62,
25928,
62,
4122,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4512,
62,
9288,
62,
35312,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
509,
37,
727,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
29186,
1431,
42,
37,
727,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
29186,
1431,
2484,
18137,
41205,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
17446,
3198,
13247,
7975,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
17446,
6968,
14459,
7975,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4912,
42,
37,
727,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
4912,
2484,
18137,
41205,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
24846,
18243,
33538,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
14534,
1143,
18243,
33538,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
25139,
2357,
41339,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
1330,
25139,
2357,
16305,
20053,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
13557,
12947,
1330,
7308,
18243,
33538,
198,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
13557,
12102,
341,
1330,
25048,
37,
6255,
20361,
198,
198,
6738,
1341,
35720,
13,
82,
14761,
1330,
44800,
50,
15922,
11,
311,
15922,
198,
6738,
1341,
35720,
13,
21048,
1330,
26423,
27660,
8081,
44292,
198,
6738,
1341,
35720,
13,
21048,
1330,
26423,
27660,
9487,
7483,
198,
6738,
1341,
35720,
13,
565,
5819,
1330,
509,
5308,
504,
198,
6738,
1341,
35720,
13,
710,
394,
32289,
1330,
32169,
35,
6377,
198,
6738,
1341,
35720,
13,
710,
394,
32289,
1330,
509,
46445,
32289,
9487,
7483,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
277,
16,
62,
26675,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
10014,
62,
26675,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
9922,
62,
26675,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
787,
62,
1416,
11934,
198,
6738,
1341,
35720,
13,
4164,
10466,
1330,
686,
66,
62,
14272,
62,
26675,
198,
6738,
1341,
35720,
13,
4164,
10466,
13,
24874,
3083,
1330,
304,
36616,
485,
272,
62,
17080,
1817,
198,
6738,
1341,
35720,
13,
11011,
1133,
1330,
17427,
3546,
10549,
198,
6738,
1341,
35720,
13,
79,
541,
4470,
1330,
37709,
198,
6738,
1341,
35720,
13,
29127,
62,
19849,
1330,
20614,
11,
26147,
35,
9487,
7483,
11,
44800,
8081,
2234,
198,
6738,
1341,
35720,
13,
23100,
9134,
1330,
7139,
62,
10034,
62,
49607,
62,
39521,
278,
220,
1303,
645,
20402,
198,
6738,
1341,
35720,
13,
1072,
11306,
1330,
5590,
42731,
1153,
45686,
278,
9487,
7483,
198,
198,
6738,
1341,
35720,
13,
19849,
62,
49283,
13,
41989,
13,
11321,
1330,
1881,
7575,
26568,
1967,
628,
198,
2,
16126,
286,
262,
1708,
734,
3959,
2024,
16955,
422,
7308,
22362,
320,
1352,
11,
198,
2,
284,
1332,
8718,
17143,
2357,
2989,
319,
2836,
12,
23211,
1398,
13350,
13,
628,
198,
198,
55,
796,
45941,
13,
18747,
26933,
58,
12,
16,
11,
532,
16,
4357,
25915,
17,
11,
532,
16,
4357,
685,
16,
11,
352,
4357,
685,
17,
11,
352,
11907,
8,
198,
88,
796,
45941,
13,
18747,
26933,
16,
11,
352,
11,
362,
11,
362,
12962,
628,
628,
628,
628,
198,
4299,
1332,
62,
25928,
62,
12947,
62,
26675,
62,
24396,
33529,
198,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
37724,
28,
17,
11,
14283,
62,
88,
28,
13,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
537,
69,
796,
44800,
50,
15922,
7,
25120,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
10706,
796,
1391,
6,
34,
10354,
685,
13,
16,
48999,
628,
220,
220,
220,
2989,
62,
3919,
62,
46536,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
11,
9689,
28,
14202,
737,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
2989,
62,
4134,
23843,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
11,
9689,
11639,
4134,
23843,
27691,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
2989,
62,
3919,
62,
26675,
62,
24396,
62,
14272,
796,
24846,
18243,
33538,
7,
14993,
451,
50,
15922,
2949,
26595,
22784,
10706,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9689,
11639,
12204,
62,
14272,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6739,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
2989,
62,
14272,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
11,
9689,
11639,
12204,
62,
14272,
27691,
11147,
7,
55,
11,
331,
8,
628,
220,
220,
220,
1303,
6822,
6509,
691,
8833,
287,
3074,
810,
4069,
3421,
25,
198,
220,
220,
220,
1303,
3959,
1352,
4433,
4776,
2446,
284,
9320,
351,
9689,
11507,
198,
220,
220,
220,
4776,
62,
3919,
62,
46536,
796,
2989,
62,
3919,
62,
46536,
13,
26675,
7,
55,
11,
331,
8,
198,
220,
220,
220,
4776,
62,
4134,
23843,
796,
2989,
62,
4134,
23843,
13,
26675,
7,
55,
11,
331,
8,
198,
220,
220,
220,
4776,
62,
3919,
62,
26675,
62,
14272,
796,
2989,
62,
3919,
62,
26675,
62,
24396,
62,
14272,
13,
26675,
7,
55,
11,
331,
8,
198,
220,
220,
220,
4776,
62,
14272,
796,
2989,
62,
14272,
13,
26675,
7,
55,
11,
331,
8,
628,
220,
220,
220,
1303,
4155,
262,
1332,
318,
33241,
198,
220,
220,
220,
6818,
4776,
62,
14272,
1279,
352,
13,
15,
198,
220,
220,
220,
6818,
4776,
62,
4134,
23843,
1279,
352,
13,
15,
198,
220,
220,
220,
6818,
4776,
62,
14272,
14512,
4776,
62,
4134,
23843,
628,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
26675,
62,
4134,
23843,
11,
4776,
62,
3919,
62,
46536,
8,
198,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
26675,
62,
14272,
11,
4776,
62,
3919,
62,
26675,
62,
14272,
8,
628,
198,
4299,
1332,
62,
25928,
62,
12947,
62,
24432,
33529,
198,
220,
220,
220,
1303,
6822,
611,
11052,
12331,
357,
12518,
2628,
318,
6045,
8,
8928,
689,
284,
24846,
18243,
33538,
198,
220,
220,
220,
1303,
843,
635,
2198,
611,
2628,
318,
9380,
3804,
284,
262,
269,
85,
2134,
198,
220,
220,
220,
374,
782,
796,
45941,
13,
25120,
13,
29531,
9012,
7,
15,
8,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
1314,
11,
299,
62,
37724,
28,
17,
11,
4738,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
2628,
796,
374,
782,
13,
25192,
600,
7,
15,
11,
513,
11,
1315,
8,
628,
220,
220,
220,
537,
69,
796,
44800,
50,
15922,
7,
25120,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
10706,
796,
1391,
6,
34,
10354,
685,
16,
48999,
628,
220,
220,
220,
1448,
62,
66,
14259,
796,
685,
35087,
3198,
13247,
7975,
22784,
17446,
6968,
14459,
7975,
7,
17,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4912,
42,
37,
727,
7,
77,
62,
22018,
896,
28,
18,
828,
4912,
2484,
18137,
41205,
3419,
60,
198,
220,
220,
220,
329,
269,
85,
287,
1448,
62,
66,
14259,
25,
198,
220,
220,
220,
220,
220,
220,
220,
308,
82,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
11,
269,
85,
28,
33967,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
62,
40225,
62,
20500,
7,
11395,
12331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
464,
705,
24432,
6,
11507,
815,
407,
307,
6045,
33283,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
308,
82,
13,
11147,
11,
1395,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
308,
82,
13,
11147,
7,
55,
11,
331,
11,
2628,
28,
24432,
8,
628,
220,
220,
220,
1729,
62,
8094,
62,
66,
14259,
796,
685,
1273,
10366,
1431,
42,
37,
727,
22784,
29186,
1431,
2484,
18137,
41205,
3419,
60,
198,
220,
220,
220,
329,
269,
85,
287,
1729,
62,
8094,
62,
66,
14259,
25,
198,
220,
220,
220,
220,
220,
220,
220,
308,
82,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
11,
269,
85,
28,
33967,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
10358,
407,
5298,
281,
4049,
198,
220,
220,
220,
220,
220,
220,
220,
308,
82,
13,
11147,
7,
55,
11,
331,
8,
628,
628,
628,
628,
628,
628,
628,
198,
198,
4299,
1332,
62,
5420,
270,
62,
13345,
540,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6208,
1006,
270,
28,
13345,
540,
11,
543,
6673,
13688,
287,
13720,
262,
198,
220,
220,
220,
366,
13466,
1,
3959,
1352,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
1006,
270,
62,
13345,
540,
7,
33967,
62,
43420,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
317,
31548,
2163,
5254,
4600,
5420,
270,
28,
13345,
540,
63,
7071,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8229,
262,
6376,
286,
257,
2746,
326,
468,
262,
1551,
198,
220,
220,
220,
220,
220,
220,
220,
4600,
32604,
62,
9288,
62,
26675,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
25048,
257,
31548,
537,
69,
351,
4600,
5420,
270,
28,
17821,
63,
284,
651,
257,
1351,
286,
8251,
287,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
537,
69,
13,
33967,
62,
43420,
44807,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
40890,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
3682,
8,
198,
220,
220,
220,
220,
220,
220,
220,
537,
69,
796,
24846,
18243,
33538,
7,
14993,
451,
50,
15922,
7,
25120,
62,
5219,
28,
3682,
828,
1391,
6,
34,
10354,
685,
15,
13,
486,
11,
657,
13,
16,
11,
352,
60,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9689,
11639,
3866,
16005,
3256,
1006,
270,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
537,
69,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
48987,
326,
4600,
13466,
62,
9630,
62,
14512,
657,
63,
329,
428,
31548,
537,
69,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
537,
69,
13,
13466,
62,
9630,
62,
14512,
657,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2195,
861,
790,
1994,
7466,
883,
287,
4600,
33967,
62,
43420,
63,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
287,
537,
69,
13,
33967,
62,
43420,
44807,
13083,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
1994,
287,
269,
85,
62,
43420,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
269,
85,
62,
43420,
17816,
32604,
62,
9288,
62,
26675,
6,
4083,
853,
1084,
3419,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
40890,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
3682,
8,
198,
220,
220,
220,
537,
69,
796,
24846,
18243,
33538,
7,
14993,
451,
50,
15922,
7,
25120,
62,
5219,
28,
3682,
828,
1391,
6,
34,
10354,
685,
15,
13,
486,
11,
657,
13,
16,
11,
352,
60,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9689,
11639,
3866,
16005,
3256,
1006,
270,
28,
5420,
270,
62,
13345,
540,
8,
198,
220,
220,
220,
537,
69,
13,
11147,
7,
55,
11,
331,
8,
628,
220,
220,
220,
6818,
537,
69,
13,
13466,
62,
9630,
62,
6624,
657,
198,
220,
220,
220,
1303,
48987,
4600,
13466,
62,
26675,
62,
63,
318,
10058,
618,
1262,
4600,
5420,
270,
28,
13345,
540,
63,
198,
220,
220,
220,
6818,
407,
468,
35226,
7,
565,
69,
11,
705,
13466,
62,
26675,
62,
11537,
628,
198,
4299,
1332,
62,
5420,
270,
62,
13345,
540,
62,
259,
12102,
62,
4906,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6208,
7822,
17591,
262,
8563,
618,
705,
13466,
62,
9630,
62,
6,
5860,
281,
198,
220,
220,
220,
12515,
1255,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
1006,
270,
62,
13345,
540,
62,
259,
12102,
62,
4906,
7,
33967,
62,
43420,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
317,
31548,
2163,
5254,
618,
4504,
705,
13466,
62,
9630,
62,
6,
318,
407,
18253,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
40890,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
3682,
8,
628,
220,
220,
220,
537,
69,
796,
24846,
18243,
33538,
7,
14993,
451,
50,
15922,
7,
25120,
62,
5219,
28,
3682,
828,
1391,
6,
34,
10354,
685,
15,
13,
16,
11,
352,
60,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9689,
11639,
3866,
16005,
3256,
1006,
270,
28,
5420,
270,
62,
13345,
540,
62,
259,
12102,
62,
4906,
8,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
6030,
12331,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2872,
11639,
13466,
62,
9630,
62,
4504,
318,
407,
281,
18253,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
537,
69,
13,
11147,
7,
55,
11,
331,
8,
628,
198,
198,
4299,
1332,
62,
5420,
270,
62,
13345,
540,
62,
41684,
62,
4164,
1173,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6208,
1006,
270,
28,
13345,
540,
287,
3294,
18663,
12660,
4634,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
1006,
270,
62,
13345,
540,
7,
33967,
62,
43420,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
317,
31548,
2163,
5254,
4600,
5420,
270,
28,
13345,
540,
63,
7071,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8229,
262,
6376,
286,
257,
2746,
326,
468,
262,
1551,
198,
220,
220,
220,
220,
220,
220,
220,
4600,
32604,
62,
9288,
62,
3866,
66,
44646,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
705,
32604,
62,
9288,
62,
3866,
66,
6,
287,
269,
85,
62,
43420,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
269,
85,
62,
43420,
17816,
32604,
62,
9288,
62,
3866,
66,
6,
4083,
853,
1084,
3419,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
40890,
28,
19,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
3682,
8,
198,
220,
220,
220,
9689,
796,
1391,
6,
17320,
23843,
10354,
787,
62,
1416,
11934,
7,
4134,
23843,
62,
26675,
828,
705,
3866,
66,
10354,
705,
3866,
16005,
6,
92,
198,
220,
220,
220,
537,
69,
796,
24846,
18243,
33538,
7,
14993,
451,
50,
15922,
7,
25120,
62,
5219,
28,
3682,
828,
1391,
6,
34,
10354,
685,
15,
13,
486,
11,
657,
13,
16,
11,
352,
60,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9689,
28,
46536,
11,
1006,
270,
28,
5420,
270,
62,
13345,
540,
8,
198,
220,
220,
220,
537,
69,
13,
11147,
7,
55,
11,
331,
8,
628,
220,
220,
220,
6818,
537,
69,
13,
13466,
62,
9630,
62,
6624,
657,
198,
220,
220,
220,
1303,
48987,
4600,
13466,
62,
26675,
62,
63,
318,
10058,
618,
1262,
4600,
5420,
270,
28,
13345,
540,
63,
198,
220,
220,
220,
6818,
407,
468,
35226,
7,
565,
69,
11,
705,
13466,
62,
26675,
62,
11537,
628,
628,
628,
628,
628,
628,
628,
628,
198,
4299,
8996,
62,
33967,
62,
43420,
62,
16680,
320,
19482,
62,
4480,
62,
29762,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2989,
62,
41684,
11,
2989,
62,
4134,
11,
2989,
62,
8344,
2599,
198,
220,
220,
220,
37227,
41488,
5021,
12,
4164,
1173,
269,
85,
62,
43420,
351,
262,
34549,
286,
3294,
198,
220,
220,
220,
2060,
18663,
269,
85,
62,
43420,
422,
2060,
18663,
10706,
14,
25120,
2989,
37811,
628,
220,
220,
220,
6818,
2989,
62,
41684,
13,
16680,
320,
19482,
62,
198,
220,
220,
220,
6818,
62,
18747,
62,
40496,
7,
82,
9741,
7,
12947,
62,
41684,
13,
1416,
11934,
62,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
19203,
4134,
23843,
3256,
705,
8344,
439,
6,
4008,
628,
220,
220,
220,
269,
85,
62,
43420,
62,
41684,
796,
2989,
62,
41684,
13,
33967,
62,
43420,
62,
198,
220,
220,
220,
269,
85,
62,
43420,
62,
4134,
62,
8344,
796,
1391,
260,
13,
7266,
10786,
62,
26675,
3,
3256,
705,
62,
4134,
23843,
3256,
479,
2599,
410,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
11,
410,
287,
2989,
62,
4134,
13,
33967,
62,
43420,
44807,
23814,
3419,
92,
198,
220,
220,
220,
269,
85,
62,
43420,
62,
4134,
62,
8344,
13,
19119,
15090,
260,
13,
7266,
10786,
62,
26675,
3,
3256,
705,
62,
8344,
439,
3256,
479,
2599,
410,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
479,
11,
410,
287,
2989,
62,
8344,
13,
33967,
62,
43420,
44807,
23814,
3419,
30072,
628,
220,
220,
220,
1303,
6822,
611,
4776,
290,
10576,
389,
6397,
11,
635,
8794,
611,
262,
8251,
198,
220,
220,
220,
1303,
389,
1944,
198,
220,
220,
220,
6818,
477,
19510,
37659,
13,
439,
7,
33967,
62,
43420,
62,
41684,
58,
74,
60,
19841,
352,
8,
329,
479,
287,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
32604,
62,
26675,
62,
2435,
3256,
705,
19282,
62,
26675,
62,
2435,
3256,
705,
32604,
62,
11147,
62,
2435,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
19282,
62,
11147,
62,
2435,
6,
22305,
628,
220,
220,
220,
1303,
27814,
262,
8251,
11,
584,
621,
640,
8251,
11,
1871,
5021,
12,
4164,
1173,
290,
198,
220,
220,
220,
1303,
2060,
18663,
10706,
2989,
2482,
13,
45941,
13,
33407,
13,
30493,
62,
40496,
17706,
257,
198,
220,
220,
220,
1303,
2769,
28376,
7208,
286,
262,
734,
269,
85,
62,
43420,
8633,
82,
198,
220,
220,
220,
45941,
13,
33407,
13,
30493,
62,
40496,
15090,
74,
25,
410,
329,
479,
11,
410,
287,
269,
85,
62,
43420,
62,
41684,
13,
23814,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
479,
13,
437,
2032,
342,
10786,
62,
2435,
11537,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1391,
74,
25,
410,
329,
479,
11,
410,
287,
269,
85,
62,
43420,
62,
4134,
62,
8344,
13,
23814,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
479,
13,
437,
2032,
342,
10786,
62,
2435,
11537,
30072,
628,
198,
4299,
8996,
62,
5420,
270,
62,
24396,
82,
62,
12518,
62,
5420,
270,
62,
4480,
62,
4134,
7,
12947,
62,
41684,
11,
2989,
62,
4134,
11,
1006,
270,
2599,
198,
220,
220,
220,
37227,
41488,
1006,
270,
5021,
12,
4164,
1173,
2989,
5050,
351,
2060,
18663,
5050,
37811,
198,
220,
220,
220,
6818,
2989,
62,
4134,
13,
5420,
270,
6624,
1006,
270,
198,
220,
220,
220,
611,
1006,
270,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
2989,
62,
41684,
13,
5420,
270,
6624,
705,
4134,
23843,
6,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
407,
2989,
62,
41684,
13,
5420,
270,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
220,
1303,
2989,
2314,
4331,
14,
26675,
1231,
1006,
270,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
2436,
8158,
7,
77,
62,
82,
12629,
28,
3064,
11,
299,
62,
40890,
28,
19,
11,
4738,
62,
5219,
28,
3682,
8,
198,
220,
220,
220,
329,
2446,
287,
19203,
79,
17407,
3256,
705,
79,
17407,
62,
1676,
7012,
3256,
705,
79,
17407,
62,
6404,
62,
1676,
7012,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
1136,
35226,
7,
12947,
62,
41684,
11,
2446,
5769,
55,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
651,
35226,
7,
12947,
62,
4134,
11,
2446,
5769,
55,
4008,
198,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
12947,
62,
41684,
13,
26675,
7,
55,
11,
331,
828,
2989,
62,
4134,
13,
26675,
7,
55,
11,
331,
4008,
198,
220,
220,
220,
329,
1994,
287,
19203,
13466,
62,
9630,
62,
3256,
705,
13466,
62,
26675,
62,
3256,
705,
13466,
62,
37266,
62,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
651,
35226,
7,
12947,
62,
41684,
11,
1994,
8,
6624,
651,
35226,
7,
12947,
62,
4134,
11,
1994,
8,
628,
628,
628,
198,
2,
44855,
11682,
4781,
1332,
62,
11147,
62,
25928,
62,
4122,
355,
262,
2163,
481,
307,
4615,
319,
657,
13,
1495,
628,
198,
2,
44855,
11682,
4781,
1332,
62,
11147,
62,
25928,
62,
4122,
62,
10378,
31023,
355,
198,
2,
4197,
62,
25928,
62,
4122,
481,
307,
4615,
319,
657,
13,
1495,
198,
4299,
1332,
62,
11147,
62,
25928,
62,
4122,
62,
10378,
31023,
33529,
198,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
25120,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
264,
28435,
796,
44800,
50,
15922,
7,
25120,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
30664,
796,
787,
62,
1416,
11934,
7,
4134,
23843,
62,
26675,
8,
198,
220,
220,
220,
31456,
796,
5855,
11147,
62,
25928,
62,
4122,
318,
39224,
287,
2196,
657,
13,
1954,
366,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
392,
481,
307,
4615,
287,
2196,
657,
13,
1495,
4943,
198,
220,
220,
220,
42287,
796,
1391,
6,
34,
10354,
657,
13,
16,
92,
198,
220,
220,
220,
4512,
11,
1332,
796,
1306,
7,
1273,
10366,
1431,
42,
37,
727,
22446,
35312,
7,
55,
11,
331,
4008,
628,
220,
220,
220,
351,
12972,
9288,
13,
40539,
82,
7,
29783,
20361,
11,
2872,
28,
19662,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
4197,
62,
25928,
62,
4122,
7,
55,
11,
331,
11,
264,
28435,
11,
42287,
11,
4512,
11,
1332,
11,
30664,
11,
15942,
577,
28,
25101,
8,
628,
198,
4299,
1332,
62,
27729,
293,
33529,
198,
220,
220,
220,
1303,
6208,
326,
257,
4197,
2989,
460,
307,
2298,
992,
198,
220,
220,
220,
537,
69,
796,
44123,
9487,
7483,
3419,
198,
220,
220,
220,
10706,
62,
12947,
796,
24846,
18243,
33538,
7,
565,
69,
11,
1391,
6,
21943,
62,
17143,
10354,
685,
16,
11,
362,
11,
513,
60,
5512,
1006,
270,
28,
17821,
11,
269,
85,
28,
18,
8,
198,
220,
220,
220,
10706,
62,
12947,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
10706,
62,
12947,
62,
27729,
992,
796,
2298,
293,
13,
46030,
7,
27729,
293,
13,
67,
8142,
7,
25928,
62,
12947,
4008,
198,
220,
220,
220,
6818,
62,
18747,
62,
28177,
62,
40496,
7,
25928,
62,
12947,
13,
79,
17407,
7,
55,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10706,
62,
12947,
62,
27729,
992,
13,
79,
17407,
7,
55,
4008,
628,
220,
220,
220,
4738,
62,
12947,
796,
14534,
1143,
18243,
33538,
7,
565,
69,
11,
1391,
6,
21943,
62,
17143,
10354,
685,
16,
11,
362,
11,
513,
60,
5512,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1006,
270,
28,
17821,
11,
299,
62,
2676,
28,
18,
11,
269,
85,
28,
18,
8,
198,
220,
220,
220,
4738,
62,
12947,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
4738,
62,
12947,
62,
27729,
992,
796,
2298,
293,
13,
46030,
7,
27729,
293,
13,
67,
8142,
7,
25120,
62,
12947,
4008,
198,
220,
220,
220,
6818,
62,
18747,
62,
28177,
62,
40496,
7,
25120,
62,
12947,
13,
79,
17407,
7,
55,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
12947,
62,
27729,
992,
13,
79,
17407,
7,
55,
4008,
628,
198,
4299,
1332,
62,
25928,
62,
12947,
62,
4480,
62,
41684,
22915,
62,
7890,
33529,
198,
220,
220,
220,
1303,
6208,
2989,
351,
5021,
12,
22915,
3959,
1352,
628,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
16680,
346,
9608,
62,
4871,
2649,
7,
7783,
62,
521,
26407,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
5219,
28,
15,
8,
628,
220,
220,
220,
1556,
62,
17143,
7307,
796,
19779,
9806,
62,
18053,
1298,
685,
16,
11,
362,
11,
513,
11,
604,
48999,
198,
220,
220,
220,
269,
85,
796,
509,
37,
727,
3419,
628,
220,
220,
220,
3959,
2024,
796,
685,
10707,
1166,
27660,
8081,
44292,
7,
25120,
62,
5219,
28,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26423,
27660,
9487,
7483,
7,
25120,
62,
5219,
28,
15,
15437,
628,
220,
220,
220,
1303,
6208,
351,
10706,
2989,
269,
85,
198,
220,
220,
220,
329,
1556,
287,
3959,
2024,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10706,
62,
12947,
796,
24846,
18243,
33538,
7,
395,
11,
1556,
62,
17143,
7307,
11,
269,
85,
28,
33967,
8,
198,
220,
220,
220,
220,
220,
220,
220,
10706,
62,
12947,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
581,
62,
37266,
796,
10706,
62,
12947,
13,
33967,
62,
43420,
62,
17816,
37266,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2658,
62,
72,
287,
2837,
7,
11925,
7,
411,
62,
37266,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1556,
13,
2617,
62,
37266,
7,
1174,
411,
62,
37266,
58,
46188,
62,
72,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
357,
27432,
11,
1332,
8,
287,
27056,
378,
7,
33967,
13,
35312,
7,
55,
11,
331,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1556,
13,
11147,
7,
55,
58,
27432,
4357,
331,
58,
27432,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3376,
62,
26675,
796,
1556,
13,
26675,
7,
55,
58,
9288,
4357,
331,
58,
9288,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3376,
62,
26675,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10706,
62,
12947,
13,
33967,
62,
43420,
62,
17816,
35312,
4,
67,
62,
9288,
62,
26675,
6,
4064,
1312,
7131,
46188,
62,
72,
12962,
628,
220,
220,
220,
1303,
6208,
351,
257,
23925,
2989,
198,
220,
220,
220,
329,
1556,
287,
3959,
2024,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
12947,
796,
14534,
1143,
18243,
33538,
7,
395,
11,
1556,
62,
17143,
7307,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
85,
28,
33967,
11,
299,
62,
2676,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
12947,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
220,
220,
220,
220,
581,
62,
37266,
796,
4738,
62,
12947,
13,
33967,
62,
43420,
62,
17816,
37266,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2658,
62,
72,
287,
2837,
7,
11925,
7,
411,
62,
37266,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1556,
13,
2617,
62,
37266,
7,
1174,
411,
62,
37266,
58,
46188,
62,
72,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
357,
27432,
11,
1332,
8,
287,
27056,
378,
7,
33967,
13,
35312,
7,
55,
11,
331,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1556,
13,
11147,
7,
55,
58,
27432,
4357,
331,
58,
27432,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3376,
62,
26675,
796,
1556,
13,
26675,
7,
55,
58,
9288,
4357,
331,
58,
9288,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6818,
62,
28177,
62,
40496,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3376,
62,
26675,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4738,
62,
12947,
13,
33967,
62,
43420,
62,
17816,
35312,
4,
67,
62,
9288,
62,
26675,
6,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4064,
1312,
7131,
46188,
62,
72,
12962,
628,
628,
628,
628,
628,
628,
628,
628,
198,
198,
4299,
1332,
62,
12947,
62,
33967,
834,
24874,
3083,
62,
26745,
62,
2934,
1455,
515,
62,
1462,
62,
8692,
62,
395,
320,
1352,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6208,
7822,
286,
7308,
18243,
33538,
468,
262,
4808,
24874,
3083,
3119,
198,
220,
220,
220,
543,
7466,
262,
4808,
24874,
3083,
3119,
286,
663,
3959,
1352,
13,
198,
220,
220,
220,
770,
1332,
787,
1654,
4808,
24874,
3083,
318,
49711,
284,
262,
2779,
3959,
1352,
13,
628,
220,
220,
220,
8504,
12,
2301,
2234,
1332,
329,
2071,
1303,
20219,
1238,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1556,
796,
7308,
22362,
320,
1352,
3419,
198,
220,
220,
220,
708,
81,
62,
20500,
796,
366,
14881,
18243,
33538,
4808,
24874,
3083,
3119,
1276,
2872,
3959,
1352,
1,
628,
220,
220,
220,
329,
4808,
24874,
3083,
62,
33990,
287,
685,
17821,
11,
10352,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
395,
11,
705,
62,
24874,
3083,
3256,
4808,
24874,
3083,
62,
33990,
8,
198,
220,
220,
220,
220,
220,
220,
220,
269,
85,
796,
24846,
18243,
33538,
7,
395,
11,
1391,
6,
77,
62,
710,
394,
32289,
10354,
685,
940,
60,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
4808,
24874,
3083,
62,
33990,
6624,
269,
85,
13557,
24874,
3083,
11,
708,
81,
62,
20500,
628,
198,
4299,
1332,
62,
12947,
62,
33967,
834,
24874,
3083,
62,
26745,
62,
4853,
2473,
594,
62,
1659,
62,
3866,
785,
17128,
33529,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6208,
7822,
286,
7308,
18243,
33538,
468,
262,
4808,
24874,
3083,
3119,
198,
220,
220,
220,
543,
7466,
262,
4808,
24874,
3083,
3119,
286,
663,
3959,
1352,
13,
198,
220,
220,
220,
770,
1332,
19047,
262,
6854,
594,
286,
705,
3866,
785,
17128,
4458,
628,
220,
220,
220,
8504,
12,
2301,
2234,
1332,
329,
2071,
1303,
20219,
1238,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
299,
62,
82,
12629,
796,
2026,
198,
220,
220,
220,
299,
62,
22018,
896,
796,
362,
198,
220,
220,
220,
1395,
11,
331,
796,
787,
62,
4871,
2649,
7,
77,
62,
82,
12629,
28,
77,
62,
82,
12629,
11,
4738,
62,
5219,
28,
15,
8,
198,
220,
220,
220,
10706,
62,
37266,
796,
1391,
6,
77,
62,
710,
394,
32289,
10354,
685,
940,
48999,
628,
220,
220,
220,
1303,
26235,
284,
304,
36616,
485,
272,
18663,
357,
76,
676,
12079,
279,
796,
362,
8,
198,
220,
220,
220,
537,
69,
796,
509,
46445,
32289,
9487,
7483,
3419,
198,
220,
220,
220,
269,
85,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
62,
37266,
11,
269,
85,
28,
77,
62,
22018,
896,
8,
198,
220,
220,
220,
269,
85,
13,
11147,
7,
55,
11,
331,
8,
198,
220,
220,
220,
2747,
82,
62,
14986,
796,
269,
85,
13,
79,
17407,
7,
55,
8,
628,
220,
220,
220,
1303,
662,
5589,
1133,
304,
36616,
485,
272,
18663,
284,
26571,
4808,
24874,
3083,
318,
1762,
198,
220,
220,
220,
1395,
62,
3866,
785,
17128,
796,
304,
36616,
485,
272,
62,
17080,
1817,
7,
55,
8,
198,
220,
220,
220,
537,
69,
796,
509,
46445,
32289,
9487,
7483,
7,
4164,
1173,
11639,
3866,
785,
17128,
11537,
198,
220,
220,
220,
269,
85,
796,
24846,
18243,
33538,
7,
565,
69,
11,
10706,
62,
37266,
11,
269,
85,
28,
77,
62,
22018,
896,
8,
198,
220,
220,
220,
269,
85,
13,
11147,
7,
55,
62,
3866,
785,
17128,
11,
331,
8,
198,
220,
220,
220,
2747,
82,
62,
3866,
785,
17128,
796,
269,
85,
13,
79,
17407,
7,
55,
62,
3866,
785,
17128,
8,
628,
220,
220,
220,
708,
81,
62,
20500,
796,
366,
41339,
18243,
33538,
407,
10411,
351,
662,
785,
17128,
18663,
1,
198,
220,
220,
220,
6818,
357,
28764,
82,
62,
14986,
6624,
2747,
82,
62,
3866,
785,
17128,
737,
439,
22784,
708,
81,
62,
20500,
628,
198
] | 2.389223 | 6,477 |
# Generated by Django 3.2.7 on 2021-09-13 03:52
import uuid
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
513,
13,
17,
13,
22,
319,
33448,
12,
2931,
12,
1485,
7643,
25,
4309,
198,
198,
11748,
334,
27112,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.810811 | 37 |
import re
import sys
input_file = open(str(sys.argv[1]), 'r') # Open file for reading
line = input_file.read()
# "if z then while x * 4 - 2 do skip endwhile else x := 7 endif; y := 1"
input_string = line.strip("\n")
lexer = Lexer(input_string)
hashtable = {}
tokens_list = []
new = [] # keeping track of current char.
curr_char = lexer.get_char()
while (curr_char != None):
while (curr_char == ' ' or curr_char == ''):
curr_char = lexer.get_char()
if (curr_char.isdigit()):
token_check(digit(curr_char, lexer))
curr_char = new.pop()
elif (curr_char.isalpha()):
token_check(longest_sub_string(curr_char, lexer))
curr_char = new.pop()
elif curr_char in "+-/*();":
token_check(symbol(curr_char, lexer))
curr_char = new.pop()
elif curr_char == ":":
token_check(assignment(curr_char, lexer))
curr_char = new.pop()
if curr_char == "=":
curr_char = lexer.get_char()
else:
token_check(curr_char)
curr_char = lexer.get_char()
# print(tokens_list)
# print(tokens())
| [
11748,
302,
198,
11748,
25064,
628,
198,
198,
15414,
62,
7753,
796,
1280,
7,
2536,
7,
17597,
13,
853,
85,
58,
16,
46570,
705,
81,
11537,
220,
1303,
4946,
2393,
329,
3555,
198,
1370,
796,
5128,
62,
7753,
13,
961,
3419,
198,
2,
366,
361,
1976,
788,
981,
2124,
1635,
604,
532,
362,
466,
14267,
886,
4514,
2073,
2124,
19039,
767,
45762,
26,
331,
19039,
352,
1,
198,
15414,
62,
8841,
796,
1627,
13,
36311,
7203,
59,
77,
4943,
198,
2588,
263,
796,
17210,
263,
7,
15414,
62,
8841,
8,
198,
198,
17831,
11487,
796,
23884,
198,
83,
482,
641,
62,
4868,
796,
17635,
628,
628,
628,
198,
3605,
796,
17635,
220,
1303,
5291,
2610,
286,
1459,
1149,
13,
198,
22019,
81,
62,
10641,
796,
31191,
263,
13,
1136,
62,
10641,
3419,
198,
4514,
357,
22019,
81,
62,
10641,
14512,
6045,
2599,
628,
220,
220,
220,
981,
357,
22019,
81,
62,
10641,
6624,
705,
705,
393,
1090,
81,
62,
10641,
6624,
10148,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
31191,
263,
13,
1136,
62,
10641,
3419,
628,
220,
220,
220,
611,
357,
22019,
81,
62,
10641,
13,
9409,
328,
270,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
62,
9122,
7,
27003,
7,
22019,
81,
62,
10641,
11,
31191,
263,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
649,
13,
12924,
3419,
628,
220,
220,
220,
1288,
361,
357,
22019,
81,
62,
10641,
13,
271,
26591,
3419,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
62,
9122,
7,
6511,
395,
62,
7266,
62,
8841,
7,
22019,
81,
62,
10641,
11,
31191,
263,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
649,
13,
12924,
3419,
628,
220,
220,
220,
1288,
361,
1090,
81,
62,
10641,
287,
43825,
12,
15211,
9783,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
62,
9122,
7,
1837,
23650,
7,
22019,
81,
62,
10641,
11,
31191,
263,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
649,
13,
12924,
3419,
628,
220,
220,
220,
1288,
361,
1090,
81,
62,
10641,
6624,
366,
25,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
62,
9122,
7,
562,
16747,
7,
22019,
81,
62,
10641,
11,
31191,
263,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
649,
13,
12924,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1090,
81,
62,
10641,
6624,
366,
28,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
31191,
263,
13,
1136,
62,
10641,
3419,
628,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
11241,
62,
9122,
7,
22019,
81,
62,
10641,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1090,
81,
62,
10641,
796,
31191,
263,
13,
1136,
62,
10641,
3419,
628,
198,
2,
3601,
7,
83,
482,
641,
62,
4868,
8,
198,
2,
3601,
7,
83,
482,
641,
28955,
198
] | 2.164063 | 512 |
import sys
sys.path.append('/usr/local/lib/python3.4/site-packages/')
from warc_dedup import deduplicate
if __name__ == '__main__':
main()
| [
11748,
25064,
198,
17597,
13,
6978,
13,
33295,
10786,
14,
14629,
14,
12001,
14,
8019,
14,
29412,
18,
13,
19,
14,
15654,
12,
43789,
14,
11537,
198,
198,
6738,
1175,
66,
62,
9395,
929,
1330,
4648,
84,
489,
5344,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
628
] | 2.534483 | 58 |
import os
import requests
import xmltodict
import csv
import json
# # # # # # # # # #
# FRED DATA BELOW #
# # # # # # # # # #
FRED_BASE_URL = 'https://api.stlouisfed.org/fred/'
GEOFRED_BASE_URL = 'https://api.stlouisfed.org/geofred/'
FRED_SERIES_OBS_URL = FRED_BASE_URL + 'series/observations?'
GEOFRED_SERIES_META_URL = GEOFRED_BASE_URL + 'series/group?'
GEOFRED_REGIONAL_SERIES_URL = GEOFRED_BASE_URL + 'series/data?'
# # # # # # # # # # # # # # # #
# GOVERNMENT YIELD CURVE DATA #
# # # # # # # # # # # # # # # #
GOV_YIELD_URL = 'https://data.treasury.gov/feed.svc/DailyTreasuryYieldCurveRateData?$filter=month(NEW_DATE)%20eq%204%20and%20year(NEW_DATE)%20eq%202019'
| [
11748,
28686,
198,
11748,
7007,
198,
11748,
2124,
76,
2528,
375,
713,
198,
11748,
269,
21370,
198,
11748,
33918,
198,
198,
2,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
198,
2,
8782,
1961,
42865,
45339,
1303,
198,
2,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
198,
198,
10913,
1961,
62,
33,
11159,
62,
21886,
796,
705,
5450,
1378,
15042,
13,
301,
75,
280,
4468,
276,
13,
2398,
14,
39193,
14,
6,
198,
38,
4720,
10913,
1961,
62,
33,
11159,
62,
21886,
796,
705,
5450,
1378,
15042,
13,
301,
75,
280,
4468,
276,
13,
2398,
14,
469,
1659,
445,
14,
6,
198,
198,
10913,
1961,
62,
35009,
11015,
62,
46,
4462,
62,
21886,
796,
8782,
1961,
62,
33,
11159,
62,
21886,
1343,
705,
25076,
14,
672,
3168,
602,
8348,
198,
198,
38,
4720,
10913,
1961,
62,
35009,
11015,
62,
44,
20892,
62,
21886,
796,
402,
4720,
10913,
1961,
62,
33,
11159,
62,
21886,
1343,
705,
25076,
14,
8094,
8348,
198,
198,
38,
4720,
10913,
1961,
62,
31553,
2849,
1847,
62,
35009,
11015,
62,
21886,
796,
402,
4720,
10913,
1961,
62,
33,
11159,
62,
21886,
1343,
705,
25076,
14,
7890,
8348,
198,
198,
2,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
198,
2,
10351,
5959,
45,
10979,
575,
49979,
327,
4261,
6089,
42865,
1303,
198,
2,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
1303,
198,
198,
38,
8874,
62,
56,
49979,
62,
21886,
796,
705,
5450,
1378,
7890,
13,
33945,
11579,
13,
9567,
14,
12363,
13,
21370,
66,
14,
28545,
31055,
11579,
56,
1164,
26628,
303,
32184,
6601,
30,
3,
24455,
28,
8424,
7,
13965,
62,
35,
6158,
8,
4,
1238,
27363,
4,
18638,
4,
1238,
392,
4,
1238,
1941,
7,
13965,
62,
35,
6158,
8,
4,
1238,
27363,
4,
1238,
23344,
6,
198
] | 2.173633 | 311 |
'''
This is the Settings File for the Mattermost-Octane Bridge.
You can change various variables here to customize and set up the client.
'''
'''----------------------Mattermost Webhook Configuration----------------------'''
#URL of the webhook from mattermost. To create one go to `Main Menu -> Integrations -> Incoming Webhooks` and press `Add Incoming Webhook`
mm_webhook_url = 'http://localhost:8065/hooks/yuro8xrfeffj787cj1bwc4ziue'
#Override the channel to send the notifications to, use the channel name as a String
mm_channel = None
#Set a custom Username to display in Mattermost
mm_username = 'Defect Notification'
#Set a custom Profile Image for the Client
mm_profileimage = 'https://i.imgur.com/7Wg3Tgs.png' #Telekom T Image
#The latter two need to be enabled in the settings.json of the Mattermost server
'''----------------------------Flask Configuration----------------------------'''
#set external IP for the Flask Server to create a Webhook for ALM Octane
#local: 127.0.0.1 / False
#default external: 0.0.0.0 (will default to only available external adress)
external_ip = False
#default: 5000
port = 5000
#external webhook verify token can be set here, if set as `None` it will be autogenerated & changed on each startup.
wh_token = None
| [
7061,
6,
198,
1212,
318,
262,
16163,
9220,
329,
262,
16900,
1712,
12,
12349,
1531,
10290,
13,
198,
1639,
460,
1487,
2972,
9633,
994,
284,
24184,
290,
900,
510,
262,
5456,
13,
198,
7061,
6,
628,
198,
7061,
6,
19351,
438,
44,
1436,
1712,
5313,
25480,
28373,
19351,
438,
7061,
6,
198,
198,
2,
21886,
286,
262,
3992,
25480,
422,
2300,
1712,
13,
1675,
2251,
530,
467,
284,
4600,
13383,
21860,
4613,
15995,
9143,
4613,
554,
4976,
5313,
25480,
82,
63,
290,
1803,
4600,
4550,
554,
4976,
5313,
25480,
63,
198,
3020,
62,
12384,
25480,
62,
6371,
796,
705,
4023,
1378,
36750,
25,
1795,
2996,
14,
25480,
82,
14,
88,
1434,
23,
87,
81,
5036,
487,
73,
41019,
66,
73,
16,
65,
86,
66,
19,
17027,
518,
6,
198,
198,
2,
37961,
262,
6518,
284,
3758,
262,
19605,
284,
11,
779,
262,
6518,
1438,
355,
257,
10903,
198,
3020,
62,
17620,
796,
6045,
198,
198,
2,
7248,
257,
2183,
50069,
284,
3359,
287,
16900,
1712,
198,
3020,
62,
29460,
796,
705,
7469,
478,
42808,
6,
198,
198,
2,
7248,
257,
2183,
13118,
7412,
329,
262,
20985,
198,
3020,
62,
13317,
9060,
796,
705,
5450,
1378,
72,
13,
19791,
13,
785,
14,
22,
54,
70,
18,
51,
14542,
13,
11134,
6,
1303,
31709,
74,
296,
309,
7412,
198,
198,
2,
464,
6846,
734,
761,
284,
307,
9343,
287,
262,
6460,
13,
17752,
286,
262,
16900,
1712,
4382,
628,
198,
7061,
6,
1783,
10541,
7414,
2093,
28373,
1783,
10541,
7061,
6,
628,
198,
2,
2617,
7097,
6101,
329,
262,
46947,
9652,
284,
2251,
257,
5313,
25480,
329,
8355,
44,
2556,
1531,
198,
2,
12001,
25,
18112,
13,
15,
13,
15,
13,
16,
1220,
10352,
198,
2,
12286,
7097,
25,
657,
13,
15,
13,
15,
13,
15,
357,
10594,
4277,
284,
691,
1695,
7097,
512,
601,
8,
198,
22615,
62,
541,
796,
10352,
198,
198,
2,
12286,
25,
23336,
198,
634,
796,
23336,
198,
198,
2,
22615,
3992,
25480,
11767,
11241,
460,
307,
900,
994,
11,
611,
900,
355,
4600,
14202,
63,
340,
481,
307,
1960,
519,
877,
515,
1222,
3421,
319,
1123,
13693,
13,
198,
1929,
62,
30001,
796,
6045,
198
] | 3.532033 | 359 |
print(1) | [
220,
3601,
7,
16,
8
] | 2 | 5 |
# -*- encoding:utf-8 -*-
# @Time : 2021/1/3 15:15
# @Author : gfjiang
import os.path as osp
import mmcv
import numpy as np
import cvtools
import matplotlib.pyplot as plt
import cv2.cv2 as cv
from functools import partial
import torch
import math
from cvtools.utils.path import add_prefix_filename_suffix
from mmdet.ops import nms
from mmdet.apis import init_detector, inference_detector
def get_image_name_for_hook(module, work_dir='./'):
"""
Generate image filename for hook function
Parameters:
-----------
module: module of neural network
"""
# os.makedirs(work_dir, exist_ok=True)
module_name = str(module)
base_name = module_name.split('(')[0]
index = 0
image_name = '.' # '.' is surely exist, to make first loop condition True
while osp.exists(image_name):
index += 1
image_name = osp.join(
work_dir, 'feats', '%s_%d.png' % (base_name, index))
return image_name
if __name__ == '__main__':
config_file = 'configs/DOTA/faster_rcnn_RoITrans_r50_fpn_1x_dota_1gpus_mdanet2.py'
pth_file = 'work_dirs/faster_rcnn_RoITrans_r50_fpn_1x_dota_1gpus_mdanet2/epoch_12.pth'
detector = AerialDetectionOBB(config_file, pth_file)
detector('/media/data/DOTA/crop/P2701_2926_1597_3949_2620.png', vis=True,
save_root='work_dirs/attention_vis/')
detector.save_results('work_dirs/faster_rcnn_RoITrans_r50_fpn_1x_dota_1gpus_mdanet2/detect_result.txt')
| [
2,
532,
9,
12,
21004,
25,
40477,
12,
23,
532,
9,
12,
198,
2,
2488,
7575,
220,
220,
220,
1058,
33448,
14,
16,
14,
18,
1315,
25,
1314,
198,
2,
2488,
13838,
220,
1058,
308,
69,
39598,
198,
11748,
28686,
13,
6978,
355,
267,
2777,
198,
11748,
8085,
33967,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
269,
85,
31391,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
269,
85,
17,
13,
33967,
17,
355,
269,
85,
198,
6738,
1257,
310,
10141,
1330,
13027,
198,
11748,
28034,
198,
11748,
10688,
198,
6738,
269,
85,
31391,
13,
26791,
13,
6978,
1330,
751,
62,
40290,
62,
34345,
62,
37333,
844,
198,
198,
6738,
8085,
15255,
13,
2840,
1330,
299,
907,
198,
6738,
8085,
15255,
13,
499,
271,
1330,
2315,
62,
15255,
9250,
11,
32278,
62,
15255,
9250,
628,
198,
198,
4299,
651,
62,
9060,
62,
3672,
62,
1640,
62,
25480,
7,
21412,
11,
670,
62,
15908,
28,
4458,
14,
6,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
2980,
378,
2939,
29472,
329,
8011,
2163,
628,
220,
220,
220,
40117,
25,
198,
220,
220,
220,
24200,
6329,
198,
220,
220,
220,
8265,
25,
8265,
286,
17019,
3127,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
28686,
13,
76,
4335,
17062,
7,
1818,
62,
15908,
11,
2152,
62,
482,
28,
17821,
8,
198,
220,
220,
220,
8265,
62,
3672,
796,
965,
7,
21412,
8,
198,
220,
220,
220,
2779,
62,
3672,
796,
8265,
62,
3672,
13,
35312,
10786,
10786,
38381,
15,
60,
198,
220,
220,
220,
6376,
796,
657,
198,
220,
220,
220,
2939,
62,
3672,
796,
705,
2637,
220,
1303,
705,
2637,
318,
10403,
2152,
11,
284,
787,
717,
9052,
4006,
6407,
198,
220,
220,
220,
981,
267,
2777,
13,
1069,
1023,
7,
9060,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
6376,
15853,
352,
198,
220,
220,
220,
220,
220,
220,
220,
2939,
62,
3672,
796,
267,
2777,
13,
22179,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
670,
62,
15908,
11,
705,
5036,
1381,
3256,
705,
4,
82,
62,
4,
67,
13,
11134,
6,
4064,
357,
8692,
62,
3672,
11,
6376,
4008,
198,
220,
220,
220,
1441,
2939,
62,
3672,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
4566,
62,
7753,
796,
705,
11250,
82,
14,
35,
29009,
14,
69,
1603,
62,
6015,
20471,
62,
15450,
2043,
26084,
62,
81,
1120,
62,
69,
21999,
62,
16,
87,
62,
67,
4265,
62,
16,
31197,
385,
62,
9132,
272,
316,
17,
13,
9078,
6,
198,
220,
220,
220,
279,
400,
62,
7753,
796,
705,
1818,
62,
15908,
82,
14,
69,
1603,
62,
6015,
20471,
62,
15450,
2043,
26084,
62,
81,
1120,
62,
69,
21999,
62,
16,
87,
62,
67,
4265,
62,
16,
31197,
385,
62,
9132,
272,
316,
17,
14,
538,
5374,
62,
1065,
13,
79,
400,
6,
198,
220,
220,
220,
31029,
796,
47475,
11242,
3213,
9864,
33,
7,
11250,
62,
7753,
11,
279,
400,
62,
7753,
8,
198,
220,
220,
220,
31029,
10786,
14,
11431,
14,
7890,
14,
35,
29009,
14,
31476,
14,
47,
1983,
486,
62,
1959,
2075,
62,
1314,
5607,
62,
2670,
2920,
62,
2075,
1238,
13,
11134,
3256,
1490,
28,
17821,
11,
220,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3613,
62,
15763,
11639,
1818,
62,
15908,
82,
14,
1078,
1463,
62,
4703,
14,
11537,
198,
220,
220,
220,
31029,
13,
21928,
62,
43420,
10786,
1818,
62,
15908,
82,
14,
69,
1603,
62,
6015,
20471,
62,
15450,
2043,
26084,
62,
81,
1120,
62,
69,
21999,
62,
16,
87,
62,
67,
4265,
62,
16,
31197,
385,
62,
9132,
272,
316,
17,
14,
15255,
478,
62,
20274,
13,
14116,
11537,
198
] | 2.304416 | 634 |
# -*- coding: utf-8 -*-
"""
tradingAPI.low_level
~~~~~~~~~~~~~~
This module provides the low level functions with the service.
"""
import time
import re
from datetime import datetime
from pyvirtualdisplay import Display
from bs4 import BeautifulSoup
from splinter import Browser
from .glob import Glob
from .links import path
from .utils import num, expect, get_pip
# exceptions
from tradingAPI import exceptions
import selenium.common.exceptions
# logging
import logging
logger = logging.getLogger('tradingAPI.low_level')
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
37811,
198,
2213,
4980,
17614,
13,
9319,
62,
5715,
198,
15116,
8728,
4907,
198,
198,
1212,
8265,
3769,
262,
1877,
1241,
5499,
351,
262,
2139,
13,
198,
37811,
198,
198,
11748,
640,
198,
11748,
302,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
12972,
32844,
13812,
1330,
16531,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
198,
6738,
4328,
3849,
1330,
34270,
198,
6738,
764,
4743,
672,
1330,
40713,
198,
6738,
764,
28751,
1330,
3108,
198,
6738,
764,
26791,
1330,
997,
11,
1607,
11,
651,
62,
79,
541,
198,
2,
13269,
198,
6738,
7313,
17614,
1330,
13269,
198,
11748,
384,
11925,
1505,
13,
11321,
13,
1069,
11755,
198,
198,
2,
18931,
198,
11748,
18931,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
10786,
2213,
4980,
17614,
13,
9319,
62,
5715,
11537,
628,
628,
198
] | 3.493421 | 152 |