A basic python script to parse the included census data and process it for later analysis.
7ZN6HHL2PQTLSZCD3AHXWAUE5ZGNY4S5PFR2XCDYR35GFGASPDLQC
DATA_A = "2021Census_T24A_AUST_LGA.csv"
DATA_B = "2021Census_T24B_AUST_LGA.csv"
DATA_C = "2021Census_T24C_AUST_LGA.csv"
DATA_D = "2021Census_T24D_AUST_LGA.csv"
# First step: clean & merge data from multiple files
def merge_files(files):
# Set up our variables
categories = []
years = {}
for filename in files:
file = open(filename, "r").readlines()
# Split each row on the comma
file = [[col.strip() for col in row.split(",")] for row in file]
# First line in file (file[0]) is headings
first_line = file[0]
# Don't need the first column, as it says 'STE_CODE_2021'
# Example value for `categories_for_file`:
# ['C11_Neg_Ni_inc_R1_74', 'C11_Neg_Ni_inc_R75_99', 'C11_Neg_Ni_inc_R100_149', etc]
categories_for_file = first_line[1:]
# When we need to use categories, use `categories_for_file`
# The `file` variable should be JUST data, so remove the first line
# Example value:
"""
[
['1', '400', '505', etc],
['2', '241', '297', etc],
etc
]
"""
file = file[1:]
# Get a list of all the areas (states, could later be LGAs)
# Should end up looking like:
# ['1', '2', '3', etc]
areas = []
for row in range(len(file)):
# Area code is the first column of each row
# Example value: '1'
first_cell = file[row][0]
# Add that to list of all areas
areas.append(first_cell)
# Remove this column from the row
file[row] = file[row][1:]
# Go through ALL the data in the file column-by-column
for column in range(len(categories_for_file)):
# Example category: 'C11_Neg_Ni_inc_R1_74'
category = categories_for_file[column]
# Example value: 'C11_Neg_Ni_inc_R1_74'
# Split the category up into parts (separated by underscores)
category = category.split("_")
# Example value for category: ['C11', 'Neg', 'Ni', etc]
# Year is always prefixed, so get everything before first underscore
# Example value: 'C11' (first item in category)
year = category[0]
# Category is everything after the first underscore
# Example value: 'Neg_Ni_inc_R1_74'
category = "_".join(category[1:])
# Add that category to the list of categories (without year)
# Example value: 'Neg_Ni_inc_R1_74' (no year included!!)
# TODO: assert all categories are the same across years
categories.append(category)
# Set up the year if none exists
# Example year: 'C11'
if year not in years:
years[year] = {}
# Should look like:
"""
{
'C11': {},
}
"""
# Now add every row in this column
for row in range(len(file)):
# years[year] is a dict mapping states to rows
# Every key is essentially one row of data in the csv
# It will end up looking something like:
"""
{
'1': [1, 2, 3, etc],
'2': [3, 1, 2, etc],
etc
}
"""
# Example value: first row (row = 0), area = '1'
area = areas[row]
# If the area hasn't been seen before
if area not in years[year]:
# Add an empty list
years[year][area] = []
# This is the very big long row for the current year
current_cell = file[row][column]
# Add the current cell to the relevant dataset
years[year][area].append(current_cell)
return (categories, years)
# Simple function that says whether or not to use a category
def should_keep(category):
# If any of these phrases are in the category, it's not allowed!
bad_words = ["Neg_Ni_inc", "4000more", "R650more", "R_NS", "R_Tot", "PI_S"]
for bad_word in bad_words:
if bad_word in category:
# Bad word! Tell them not to use this category
return False
# Made it to the end without any bad words, should be fine
return True
# Take a valid category and return the mean income & rent
def split_category(category):
# Example category: '1_149_R1_74'
parts = category.split("_")
# Make sure it's a valid category
if not should_keep(category):
print(category)
assert should_keep(category) is True
# All valid categories have 4 parts
assert len(parts) == 4
# Split up the parts
min_income = int(parts[0])
max_income = int(parts[1])
max_rent = int(parts[3])
# `min_rent` is special because it has the 'R' prefix
min_rent = parts[2]
# Make sure the first character is an 'R'
assert min_rent[0] == "R"
# Then we can just convert it into an int like the others
min_rent = int(min_rent[1:])
mean_income = round((min_income + max_income) / 2)
mean_rent = round((min_rent + max_rent) / 2)
return (mean_income, mean_rent)
# Second step: split 2-variable categories into table
def reshape_into_table(categories, years):
# Example value: 'C11'
for year in years:
# Example value: '1'
for area in years[year]:
# TODO: categories may change between iterations
# This should look like:
"""
[
# This is income of $1-$149
[
# This is rent of $1-$74
1535,
# This is rent of $75-$99
1580,
etc
],
# This is income of $150-$299
[
# This is rent of $1-$74
4591,
# This is rent of $75-$99
2188,
etc
],
etc
]
"""
new_data = []
# The last mean income we saw
last_income = None
# Make sure there are as many categories as data
assert len(years[year][area]) == len(categories)
# Go through each 2-variable category and data pair
for column in range(len(categories)):
# Get the relevant category
category = categories[column]
# Check if the category is part of our dataset
if should_keep(category) is True:
income, rent = split_category(category)
# Check if we've hit a new income bracket
if last_income != income:
new_data.append([])
last_income = income
# Append our rent information to the most recent bracket
# The most recent bracket will always be the one we want
current_cell = years[year][area][column]
current_cell = int(current_cell)
new_data[-1].append(current_cell)
# Update this from old->new data
years[year][area] = new_data
incomes = []
rents = []
for category in categories:
if should_keep(category):
(mean_income, mean_rent) = split_category(category)
if mean_income not in incomes:
incomes.append(mean_income)
if mean_rent not in rents:
rents.append(mean_rent)
return ((incomes, rents), years)
(categories, years) = merge_files(["2021Census_T24A_AUST_STE.csv"])
(categories, years) = reshape_into_table(categories, years)
print(categories)
"""
# Just for checking
for category in range(len(categories)):
print(f"{categories[category]}:")
for _index, (year, states) in enumerate(years.items()):
for _index, (state, data) in enumerate(states.items()):
print(f" {state}: {year}: first: {data[0]}, last: {data[-1]}")
"""
LGA_CODE_2021,C21_1500_1999_R100_149,C21_1500_1999_R150_199,C21_1500_1999_R200_224,C21_1500_1999_R225_274,C21_1500_1999_R275_349,C21_1500_1999_R350_449,C21_1500_1999_R450_549,C21_1500_1999_R550_649,C21_1500_1999_R650more,C21_1500_1999_R_NS,C21_1500_1999_R_Tot,C21_2000_2499_R1_74,C21_2000_2499_R75_99,C21_2000_2499_R100_149,C21_2000_2499_R150_199,C21_2000_2499_R200_224,C21_2000_2499_R225_274,C21_2000_2499_R275_349,C21_2000_2499_R350_449,C21_2000_2499_R450_549,C21_2000_2499_R550_649,C21_2000_2499_R650more,C21_2000_2499_R_NS,C21_2000_2499_R_Tot,C21_2500_2999_R1_74,C21_2500_2999_R75_99,C21_2500_2999_R100_149,C21_2500_2999_R150_199,C21_2500_2999_R200_224,C21_2500_2999_R225_274,C21_2500_2999_R275_349,C21_2500_2999_R350_449,C21_2500_2999_R450_549,C21_2500_2999_R550_649,C21_2500_2999_R650more,C21_2500_2999_R_NS,C21_2500_2999_R_Tot,C21_3000_3999_R1_74,C21_3000_3999_R75_99,C21_3000_3999_R100_149,C21_3000_3999_R150_199,C21_3000_3999_R200_224,C21_3000_3999_R225_274,C21_3000_3999_R275_349,C21_3000_3999_R350_449,C21_3000_3999_R450_549,C21_3000_3999_R550_649,C21_3000_3999_R650more,C21_3000_3999_R_NS,C21_3000_3999_R_Tot,C21_4000more_R1_74,C21_4000more_R75_99,C21_4000more_R100_149,C21_4000more_R150_199,C21_4000more_R200_224,C21_4000more_R225_274,C21_4000more_R275_349,C21_4000more_R350_449,C21_4000more_R450_549,C21_4000more_R550_649,C21_4000more_R650more,C21_4000more_R_NS,C21_4000more_R_Tot,C21_PI_S_R1_74,C21_PI_S_R75_99,C21_PI_S_R100_149,C21_PI_S_R150_199,C21_PI_S_R200_224,C21_PI_S_R225_274,C21_PI_S_R275_349,C21_PI_S_R350_449,C21_PI_S_R450_549,C21_PI_S_R550_649,C21_PI_S_R650more,C21_PI_S_R_NS,C21_PI_S_R_Tot,C21_AI_NS_R1_74,C21_AI_NS_R75_99,C21_AI_NS_R100_149,C21_AI_NS_R150_199,C21_AI_NS_R200_224,C21_AI_NS_R225_274,C21_AI_NS_R275_349,C21_AI_NS_R350_449,C21_AI_NS_R450_549,C21_AI_NS_R550_649,C21_AI_NS_R650more,C21_AI_NS_R_NS,C21_AI_NS_R_Tot,C21_Tot_R1_74,C21_Tot_R75_99,C21_Tot_R100_149,C21_Tot_R150_199,C21_Tot_R200_224,C21_Tot_R225_274,C21_Tot_R275_349,C21_Tot_R350_449,C21_Tot_R450_549,C21_Tot_R550_649,C21_Tot_R650more,C21_Tot_R_NS,C21_Tot_R_Tot
LGA10050,14,56,76,160,323,225,37,6,3,15,922,5,3,7,41,38,90,244,253,49,8,6,16,753,0,0,8,8,14,26,72,110,29,6,3,9,293,0,0,0,10,10,24,69,132,59,14,8,3,334,4,0,9,11,4,15,20,61,57,16,18,15,222,0,0,10,16,24,30,71,74,24,3,4,18,281,0,3,15,34,15,18,13,4,4,3,0,50,163,44,92,472,1129,686,1328,1779,1341,318,81,54,289,7603
LGA10180,12,15,41,92,125,147,25,5,0,16,486,0,0,15,8,18,53,96,137,29,4,8,9,377,5,0,0,3,4,13,29,66,15,6,0,4,141,0,0,0,0,12,13,24,68,26,5,0,0,146,0,0,3,3,0,10,6,45,30,13,6,9,127,0,0,3,8,15,24,41,47,13,0,0,10,166,0,0,3,13,10,11,13,6,0,0,0,11,67,26,38,130,383,360,687,911,850,184,43,34,140,3769
LGA10250,9,3,9,17,54,158,163,114,61,17,599,5,0,7,4,9,11,49,148,138,104,83,18,564,0,0,3,3,4,3,20,56,74,88,66,9,326,0,0,0,0,4,6,6,43,66,93,93,4,305,0,0,5,0,0,0,6,18,20,42,128,3,237,0,0,5,9,3,7,14,44,75,52,48,10,271,4,0,15,11,7,10,12,7,5,6,7,23,96,30,22,338,188,132,247,588,1075,900,664,597,169,4952
LGA10300,3,4,6,3,3,0,0,0,0,0,26,4,0,0,4,3,0,3,3,0,0,0,0,22,0,0,0,0,0,0,4,0,0,0,0,0,7,4,0,0,6,0,4,0,0,0,0,0,0,13,0,0,0,0,4,0,0,0,0,0,4,0,9,0,0,0,0,0,0,3,0,0,0,0,0,8,0,0,0,4,0,0,0,3,0,0,0,6,5,17,9,10,38,34,31,22,9,0,0,5,15,191
LGA10470,13,14,26,69,195,229,60,8,4,19,628,5,0,3,4,15,40,141,238,88,11,10,10,567,0,0,0,9,4,14,64,119,66,4,0,8,293,0,0,0,3,3,11,57,97,62,3,5,8,253,0,0,7,10,0,5,23,42,49,9,5,5,162,4,0,10,3,11,14,60,74,31,3,0,15,230,0,0,17,8,4,9,17,9,0,0,0,27,89,44,47,260,303,319,554,1293,1356,465,54,25,194,4905
LGA10500,20,32,27,59,177,927,1132,676,543,68,3662,8,0,19,14,17,45,155,768,1289,952,693,71,4035,0,0,4,8,9,29,58,313,624,648,548,48,2294,5,0,7,20,20,33,52,300,740,953,1108,53,3289,4,3,3,9,11,33,42,126,388,579,1294,53,2540,5,0,18,12,14,20,58,147,225,228,317,127,1163,3,3,34,13,8,6,10,35,35,30,16,99,296,106,131,1019,535,352,582,1416,5159,6678,5275,5443,872,27556
LGA10550,6,9,10,40,87,138,47,4,13,12,364,0,0,7,6,8,21,63,109,41,17,5,13,277,3,0,3,3,4,13,21,70,35,9,7,8,166,5,0,0,0,10,0,12,45,28,3,8,3,125,0,0,6,4,6,8,9,22,22,19,10,6,112,0,0,4,4,6,16,30,40,23,4,0,5,125,0,0,9,4,7,10,10,9,3,0,0,22,72,33,20,217,206,233,401,671,815,288,61,59,156,3161
LGA10600,3,6,5,5,22,63,12,0,3,9,129,0,0,3,4,4,4,11,34,23,6,3,7,96,4,0,0,0,0,3,3,13,6,0,4,0,39,0,0,0,3,0,0,0,12,13,3,4,0,39,0,0,0,0,0,0,3,6,7,3,0,0,31,0,0,5,0,0,3,11,21,13,0,0,4,68,0,0,0,8,0,0,7,3,0,0,0,0,23,8,6,39,80,58,117,250,360,144,39,27,56,1192
LGA10650,8,7,10,5,18,15,0,0,0,3,72,5,3,5,4,9,8,13,7,0,0,0,5,52,0,0,0,3,4,0,10,4,0,0,0,0,29,0,0,0,3,3,0,8,3,0,0,0,0,23,0,0,0,0,0,3,3,0,0,0,0,0,12,0,0,4,6,6,5,3,4,0,0,0,0,24,0,0,5,6,5,3,0,0,0,0,0,9,27,12,22,96,127,96,111,117,46,7,0,5,29,671
LGA10750,44,68,49,143,638,2321,1354,559,174,100,5468,3,9,12,43,52,103,464,2093,1574,868,255,80,5555,6,0,16,19,18,48,165,1061,1058,652,228,61,3334,8,5,6,25,24,47,139,935,1119,1021,415,56,3806,0,4,35,20,8,27,83,444,640,813,574,63,2711,3,7,66,58,41,55,155,545,432,261,126,181,1932,17,14,118,49,15,19,45,76,32,13,11,229,640,259,425,2309,1747,986,1582,4419,13171,8384,5042,2062,1421,41814
LGA10800,6,6,8,6,11,0,0,0,0,12,62,4,0,15,3,0,11,11,3,0,0,0,3,56,0,0,0,6,0,0,3,0,0,0,0,0,13,0,0,3,4,3,7,5,9,0,0,4,4,45,0,0,3,0,0,9,4,4,4,0,0,0,27,0,0,3,5,0,11,5,0,0,0,0,3,31,4,0,5,0,3,0,0,0,0,0,0,0,13,27,11,71,76,38,71,62,26,7,0,4,41,434
LGA10850,8,11,6,9,19,18,5,0,0,0,73,0,0,0,5,0,8,24,17,0,0,0,0,65,0,0,0,0,0,8,9,17,0,0,0,0,42,0,0,0,0,0,4,7,12,4,0,0,3,26,0,0,5,0,0,4,3,8,5,0,0,7,22,0,0,0,0,3,6,11,3,0,0,0,0,32,0,0,5,0,3,0,0,0,0,0,0,0,18,15,9,52,65,63,114,146,96,21,6,3,36,614
LGA10900,0,15,14,25,71,264,225,69,23,15,718,5,0,6,7,8,19,45,212,234,69,27,20,653,0,0,0,3,0,12,14,97,140,39,20,4,327,0,0,0,0,0,6,11,67,143,54,38,14,332,0,0,0,0,0,7,3,32,61,54,67,9,238,0,0,3,5,3,8,15,62,44,20,13,16,191,0,0,4,12,3,8,8,12,7,0,0,25,75,12,26,80,316,146,344,700,1765,1291,378,226,195,5487
LGA10950,0,4,0,7,3,4,0,0,0,5,26,6,3,8,0,4,0,3,5,0,0,3,3,37,0,0,4,0,4,4,5,0,0,0,0,0,17,3,4,3,0,0,3,4,0,0,0,0,0,21,0,9,4,4,0,3,9,0,0,0,0,8,26,0,0,4,3,0,6,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,5,20,9,47,43,30,41,34,12,6,0,3,23,270
LGA11150,0,7,3,14,0,0,0,0,0,7,33,14,3,4,0,0,4,0,3,0,0,3,3,46,0,0,0,0,0,4,0,0,0,0,0,0,10,7,3,0,4,4,0,3,0,0,0,0,0,26,8,0,3,0,5,3,0,3,0,0,0,6,33,3,0,0,0,0,0,0,0,0,0,0,3,18,0,0,0,3,0,0,0,0,0,0,0,5,8,43,19,34,46,24,54,18,11,4,0,3,38,290
LGA11200,4,9,0,3,0,0,0,0,0,0,16,0,0,0,13,0,4,0,0,0,0,0,5,24,0,0,0,3,0,0,0,0,0,0,0,5,9,4,0,3,0,0,0,0,0,0,0,0,0,12,6,0,0,0,0,0,0,3,0,0,0,0,15,3,0,5,3,0,0,0,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,8,27,16,47,90,13,16,3,7,0,0,0,31,249
LGA11250,6,27,28,49,33,21,0,0,0,15,197,17,7,3,16,20,31,32,25,3,5,0,6,166,4,5,7,5,14,19,28,9,0,0,3,3,101,0,4,3,14,7,17,26,20,3,0,0,13,98,6,11,0,5,9,9,9,10,6,0,0,12,76,0,7,3,13,8,18,15,8,0,0,0,3,72,5,4,3,9,0,4,0,5,0,0,0,6,38,57,59,137,380,297,382,244,129,21,9,14,110,1842
LGA11300,6,7,7,22,59,170,241,168,97,19,798,0,4,6,13,5,17,35,162,339,185,119,23,911,0,0,5,3,7,9,14,83,168,139,82,15,525,0,0,3,11,3,14,19,72,219,203,144,17,708,0,3,3,6,4,6,9,35,121,174,215,20,600,0,0,9,10,3,7,6,48,69,57,72,29,317,0,0,0,4,0,4,3,4,10,9,9,14,58,19,15,236,150,135,234,402,1062,1837,1407,969,245,6718
LGA11350,0,7,9,5,19,61,113,89,162,18,483,0,0,4,4,3,6,12,63,101,103,169,18,467,0,0,0,4,3,3,3,16,47,59,146,8,292,0,0,0,0,0,3,3,21,26,52,192,9,308,0,0,0,4,0,7,0,3,11,22,266,12,329,0,0,0,6,4,4,4,15,36,39,123,16,253,0,0,6,7,4,0,4,4,8,0,10,20,56,19,11,60,175,128,197,274,523,607,586,1308,200,4087
LGA11400,9,5,12,6,31,11,0,0,0,3,88,6,0,3,6,11,16,11,14,5,0,5,5,76,0,0,0,3,0,7,13,7,3,0,0,12,51,0,0,0,5,3,9,6,12,0,0,3,11,41,4,7,0,0,0,3,10,8,0,6,4,0,31,0,0,0,7,0,7,6,10,0,0,0,3,38,0,0,0,0,0,5,0,4,0,0,0,0,15,33,18,65,104,89,151,147,83,14,7,12,66,779
LGA11450,5,5,8,30,68,268,594,263,40,31,1321,0,0,4,9,4,9,59,204,704,361,69,24,1444,0,0,0,5,5,6,13,100,497,286,55,14,983,0,0,0,4,0,21,17,59,486,348,89,13,1043,0,0,4,5,6,6,10,27,265,315,122,19,772,0,0,3,5,0,7,7,44,162,117,26,35,411,0,0,9,5,0,0,0,13,16,6,4,39,91,22,19,162,141,87,220,517,1436,3709,2109,494,337,9255
LGA11500,31,49,28,69,327,1271,511,131,31,60,2516,0,0,11,26,26,55,192,1056,590,165,36,42,2199,0,0,8,15,4,19,74,540,371,155,37,22,1252,0,0,10,9,3,26,53,432,396,211,56,20,1227,5,0,13,11,3,9,30,163,202,169,77,22,706,0,10,23,35,22,36,61,278,186,81,24,89,842,11,7,62,21,10,9,25,53,24,10,5,120,347,125,223,1464,1065,587,948,2409,7272,3198,1169,339,765,19568
LGA11520,10,11,13,21,41,221,470,300,251,41,1374,0,0,9,7,7,25,43,201,614,447,453,34,1847,0,0,6,3,10,14,11,82,284,313,343,18,1081,0,0,3,12,0,24,19,100,410,555,716,30,1868,0,0,4,9,4,16,32,55,305,538,1599,38,2588,0,4,13,5,7,15,15,13,67,101,191,44,479,0,0,17,5,0,5,6,10,17,13,11,45,132,38,44,412,219,127,211,334,1317,3073,2821,4121,438,13167
LGA11570,55,72,57,151,575,1707,1382,652,454,139,5270,3,5,26,32,34,94,401,1294,1320,691,478,100,4486,0,0,15,15,20,43,183,619,758,467,420,64,2611,9,0,17,19,16,33,133,479,765,581,675,60,2789,0,3,14,18,14,26,74,228,400,442,760,64,2038,4,9,42,54,33,65,153,393,416,246,250,207,1878,16,8,124,50,25,27,45,94,57,34,32,258,762,292,571,3183,2121,1238,1966,4824,11094,8983,4703,4018,1921,44914
LGA11600,7,0,3,10,13,0,0,0,0,12,42,0,0,0,11,6,5,14,0,0,0,0,7,50,0,0,3,3,3,3,4,0,0,0,0,5,23,0,0,4,0,3,5,0,3,0,0,0,6,22,3,0,0,3,0,3,4,0,0,0,0,9,18,0,0,0,0,4,0,0,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,4,22,7,27,48,40,46,45,9,0,3,4,49,297
LGA11650,32,51,42,107,466,2058,1260,370,181,93,4685,4,7,13,26,36,70,265,1500,1331,454,207,80,4000,4,4,9,12,12,29,115,679,720,346,206,31,2163,0,0,4,10,9,24,90,476,736,422,326,43,2145,0,0,7,6,10,20,45,209,360,304,520,32,1520,3,0,24,44,27,47,128,439,394,170,124,91,1496,12,7,102,62,25,53,83,94,31,9,14,188,679,185,240,1649,1504,1048,1852,4717,12117,7348,2715,1889,1218,36489
LGA11700,0,5,0,4,0,0,0,0,0,5,31,6,3,5,3,0,0,7,0,0,0,0,7,30,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,17,8,0,3,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,6,9,48,14,38,55,26,19,16,3,0,0,0,40,257
LGA11720,4,14,12,39,223,341,99,14,4,14,776,5,0,0,7,12,19,137,296,131,9,6,9,632,0,0,5,0,7,10,54,139,71,4,3,4,301,0,0,0,4,0,8,35,131,85,7,6,10,286,0,0,0,3,4,7,24,53,54,14,22,8,182,4,0,3,8,5,14,63,103,31,3,10,14,256,0,0,6,14,9,14,18,18,4,0,0,30,117,17,20,144,327,254,605,1720,2128,621,73,64,220,6193
LGA11730,11,13,11,48,134,224,96,25,14,31,607,0,0,3,11,4,34,105,149,52,18,12,8,399,3,0,0,6,4,10,34,70,36,5,9,11,178,0,0,0,0,6,17,20,48,35,10,10,8,155,6,0,0,6,7,9,12,24,29,15,19,10,128,0,0,5,7,13,23,39,72,32,12,4,8,215,0,0,18,14,10,20,22,18,0,0,4,34,129,35,29,244,413,330,689,1219,1345,435,118,119,239,5209
LGA11750,3,14,3,10,10,0,0,0,0,10,65,5,7,19,20,8,10,14,0,0,0,0,8,89,0,0,0,3,5,8,8,0,0,0,0,3,27,4,4,8,11,6,7,12,3,0,0,0,0,60,3,3,12,11,0,0,8,4,0,0,0,3,47,0,3,4,7,0,6,6,0,0,0,0,3,28,0,0,0,3,4,0,0,0,0,0,0,7,19,38,28,72,90,58,76,73,14,3,0,6,51,500
LGA11800,18,13,15,54,160,439,293,87,30,22,1133,0,0,10,17,11,29,87,305,262,78,34,17,851,0,0,3,5,7,14,35,105,174,72,36,14,456,0,0,3,8,4,7,28,85,134,98,49,17,430,5,0,10,4,3,8,17,39,57,75,68,16,307,0,0,3,12,8,19,56,114,94,55,19,22,405,0,0,5,32,4,18,24,23,3,0,4,60,183,41,35,259,585,294,716,1545,2591,1639,601,328,357,8992
LGA12000,3,0,4,9,3,0,0,0,0,0,21,0,0,0,0,3,3,6,8,0,0,0,0,24,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,3,0,0,0,0,9,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,3,0,0,0,0,0,15,0,0,5,0,0,0,0,0,0,0,0,0,8,10,7,46,34,36,35,43,31,6,0,0,17,268
LGA12150,0,14,3,10,4,0,0,0,0,0,45,11,8,9,6,3,11,0,0,0,0,0,6,49,0,0,3,0,3,3,0,0,0,0,0,0,14,0,0,0,0,5,0,6,0,0,0,0,0,16,0,0,0,4,3,3,0,0,0,0,0,0,16,0,0,0,4,3,7,0,0,0,0,0,0,21,0,0,3,6,0,3,3,0,0,0,0,0,16,31,20,32,115,65,80,26,3,0,0,3,27,404
LGA12160,4,24,9,22,29,10,0,0,4,11,111,0,0,0,15,3,12,11,8,0,0,0,3,73,0,0,0,5,0,11,10,4,4,0,0,0,36,3,0,3,0,4,5,8,11,0,0,0,0,40,0,0,5,0,6,0,12,10,0,0,0,4,38,3,0,7,6,3,5,11,5,0,0,0,0,37,0,0,3,4,4,7,9,0,0,0,0,0,30,24,13,121,208,120,186,188,64,5,0,9,65,1004
LGA12350,7,22,15,42,46,6,0,0,0,9,147,0,0,0,11,9,13,25,15,0,0,0,7,89,0,0,0,3,5,9,14,4,0,0,0,0,37,5,0,4,0,3,8,7,6,0,0,0,4,39,0,0,0,3,0,6,3,3,0,0,0,5,22,0,0,5,3,6,15,16,4,0,0,0,3,52,0,0,3,12,9,8,0,3,0,0,0,3,41,21,21,125,251,166,308,234,85,9,0,4,76,1305
LGA12380,32,51,46,109,420,1395,1070,348,203,82,3764,0,3,26,29,46,48,323,1351,1188,401,188,79,3674,3,0,11,22,15,23,134,676,686,291,181,48,2086,3,0,15,16,18,28,117,746,989,427,255,59,2670,4,4,29,12,18,24,47,399,634,406,345,75,1992,3,6,25,33,20,30,99,340,393,206,134,188,1478,11,3,61,39,8,15,37,66,54,12,5,178,486,187,370,1769,1278,755,1120,2939,9136,7547,3030,1722,1375,31228
LGA12390,7,44,56,127,274,240,51,6,3,32,851,3,6,16,17,36,85,205,277,55,5,3,14,730,0,0,5,7,6,29,99,140,35,7,6,11,343,0,0,4,9,14,32,54,152,65,7,4,8,353,0,4,10,4,10,19,31,89,47,20,13,25,261,0,3,9,25,20,29,73,108,32,7,8,22,329,4,0,26,16,9,16,6,14,4,0,0,45,139,43,55,368,553,450,894,1526,1569,352,69,51,287,6206
LGA12700,0,4,6,7,15,27,3,0,0,4,65,0,0,0,0,0,3,10,30,0,4,0,0,56,0,0,0,0,0,0,9,11,6,0,0,5,39,0,0,0,0,6,0,0,8,8,0,0,0,22,0,0,5,5,0,4,4,3,0,0,0,0,18,0,0,0,4,4,3,6,16,3,3,0,0,41,0,0,0,0,3,0,0,0,0,0,0,4,14,7,9,19,48,38,85,118,146,35,12,7,32,541
LGA12730,9,17,10,21,16,5,0,0,0,4,77,0,6,3,6,5,14,19,8,0,0,0,11,79,0,0,0,0,0,3,9,4,0,0,0,5,27,0,0,0,0,5,0,3,7,0,0,0,3,15,0,0,0,0,0,3,0,3,5,0,0,0,20,0,0,3,3,0,11,13,4,0,0,0,0,35,3,0,3,4,0,3,0,3,0,0,0,12,29,18,17,113,182,81,180,150,49,6,0,6,57,847
LGA12750,5,21,9,29,92,166,70,19,8,29,452,0,0,5,3,11,15,55,161,79,17,8,17,373,0,0,4,0,3,6,16,67,46,14,0,5,163,0,0,0,4,5,4,10,67,36,16,3,9,149,0,0,0,5,0,4,10,29,22,13,19,13,108,0,0,0,7,8,6,22,70,21,9,0,8,155,5,0,14,7,6,14,18,9,0,0,0,22,100,20,17,195,282,243,447,756,1134,402,123,68,224,3929
LGA12850,31,35,46,101,340,778,828,266,116,72,2627,4,3,11,23,26,50,222,536,573,255,95,54,1848,0,0,8,12,12,30,94,263,354,150,91,33,1052,3,0,10,12,4,21,58,276,332,194,121,28,1049,0,0,7,12,8,12,42,126,182,96,107,27,619,0,3,21,27,29,22,106,217,213,77,51,91,851,4,7,44,19,9,27,40,72,40,17,10,119,394,120,216,1362,1294,773,1386,3404,6154,5096,1706,811,980,23316
LGA12870,5,13,10,26,40,24,0,0,0,5,125,3,0,3,4,7,18,39,21,0,0,5,3,106,3,0,0,3,4,4,11,9,0,0,0,0,34,3,0,5,0,0,4,9,9,0,0,0,6,45,0,0,3,3,0,0,9,5,0,0,0,0,18,0,0,0,6,4,7,9,3,0,0,0,7,47,0,0,6,10,4,4,4,4,0,0,0,0,37,27,17,96,198,110,212,262,97,10,6,5,51,1092
LGA12900,0,10,7,27,22,10,4,0,0,11,95,0,0,3,5,6,17,25,20,0,0,0,9,85,0,0,0,0,0,0,14,8,0,0,0,7,36,0,0,0,0,4,0,5,8,4,0,0,3,30,0,0,4,7,4,3,10,4,0,0,0,4,37,0,0,6,10,4,6,3,6,0,0,0,0,38,4,0,14,10,3,9,3,5,0,0,0,5,37,25,18,115,150,113,206,172,92,12,5,7,77,983
LGA12930,16,27,15,44,163,779,717,311,156,58,2287,6,3,16,13,17,37,130,698,823,411,245,50,2454,0,0,4,7,14,28,49,348,542,302,189,21,1511,0,0,8,13,10,40,46,314,660,453,360,38,1947,0,5,3,7,5,24,25,120,362,314,502,35,1412,0,0,7,11,9,18,43,143,208,135,87,76,749,0,0,43,12,3,5,14,25,15,17,8,58,198,60,76,696,432,267,474,1211,4485,4798,2585,1849,609,17546
LGA12950,6,11,4,8,0,3,3,0,0,3,35,0,0,3,9,5,16,3,0,0,0,0,0,34,0,0,0,4,0,0,0,0,0,0,0,0,11,0,0,0,0,0,9,0,0,0,0,0,0,11,0,0,0,0,0,4,0,0,0,0,0,0,14,0,0,0,0,5,3,3,0,0,0,0,6,22,4,0,3,0,3,5,0,0,0,0,0,6,16,15,7,47,103,56,94,32,6,4,0,0,32,391
LGA13010,4,12,7,21,36,5,0,0,0,7,90,0,0,0,9,6,14,9,3,4,0,0,5,50,0,0,0,6,0,3,5,0,0,0,0,5,25,3,0,0,4,0,9,6,0,0,0,0,4,16,0,0,0,0,4,0,0,0,0,0,0,5,14,0,0,0,4,0,9,8,0,0,0,0,3,31,0,0,3,12,7,5,0,0,0,0,0,3,34,19,7,81,203,131,240,140,26,9,0,3,45,913
LGA13310,6,7,17,32,132,183,36,6,3,7,429,0,0,0,3,14,33,107,173,52,9,3,17,410,0,0,4,0,4,7,25,89,27,3,0,3,172,0,0,3,6,0,6,26,88,32,3,0,3,176,0,0,0,3,0,3,11,35,24,7,8,3,101,0,4,4,6,0,9,27,58,14,3,0,9,140,0,0,18,19,0,5,16,0,4,0,3,31,93,20,53,273,287,177,350,837,1042,261,42,29,156,3532
LGA13340,4,11,10,14,20,3,0,0,0,7,73,0,0,5,6,7,9,7,9,0,0,0,8,56,0,0,0,0,3,5,6,6,0,0,0,4,25,0,0,0,6,4,10,11,7,0,0,0,0,36,0,0,0,3,0,4,8,5,0,0,0,4,20,0,0,4,0,7,9,3,0,0,0,0,0,32,0,0,6,8,0,0,0,0,0,0,0,3,14,6,5,75,131,72,123,104,44,9,3,0,37,618
LGA13450,9,24,33,76,137,117,19,6,4,13,438,0,0,5,20,27,57,96,140,27,3,0,7,387,0,0,0,11,15,28,40,74,21,3,0,8,192,0,0,7,9,10,29,57,77,27,0,0,6,224,0,0,8,8,6,13,23,61,21,8,3,3,142,3,0,5,10,0,25,41,43,10,0,0,16,151,3,0,9,10,3,5,4,3,0,0,0,15,67,27,25,168,329,265,482,681,739,143,25,14,151,3057
LGA13550,5,7,7,18,49,53,20,0,5,3,162,0,0,3,3,9,20,41,49,18,3,0,7,155,0,0,0,0,0,4,13,30,14,3,0,0,64,0,0,0,5,5,7,16,27,17,3,0,7,94,0,0,0,3,5,7,5,30,20,7,10,3,84,0,0,0,4,3,7,18,14,9,0,0,5,65,0,0,3,12,3,6,3,3,0,0,0,12,46,19,15,54,132,122,216,311,285,108,26,19,77,1381
LGA13660,0,8,8,16,0,0,0,0,5,7,46,0,0,4,4,3,6,4,0,0,0,0,4,27,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,0,0,5,0,0,0,0,0,4,10,0,0,0,0,0,3,4,0,0,0,0,6,11,4,0,0,0,3,10,3,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,3,7,18,6,51,44,52,90,32,8,0,0,4,42,353
LGA13800,0,7,14,44,71,308,187,65,29,20,750,3,0,0,9,4,33,62,271,207,73,50,12,728,0,0,0,6,0,13,31,127,129,47,35,13,397,0,0,3,3,6,15,22,99,131,71,66,14,429,0,0,0,0,5,11,17,35,44,53,80,14,257,0,0,0,3,6,9,15,72,62,29,25,17,243,0,0,6,21,4,7,8,11,5,0,0,29,89,18,29,142,294,162,342,687,1800,1104,426,347,224,5573
LGA13850,6,9,3,5,9,0,0,0,0,3,36,0,0,8,14,3,0,3,0,0,0,0,9,37,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,16,0,0,3,7,0,8,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,13,18,3,61,94,43,40,21,4,0,0,0,24,316
LGA13910,8,15,19,56,63,24,0,0,4,10,196,6,0,8,9,10,32,57,24,5,0,0,6,148,0,0,0,4,5,12,28,10,3,0,0,4,66,3,0,4,7,4,10,14,12,0,0,0,7,53,3,0,0,3,0,6,4,9,0,0,0,0,40,0,0,0,9,9,15,17,12,0,0,0,4,69,0,0,10,13,9,8,11,0,0,0,0,13,64,36,20,100,250,214,455,400,148,18,3,13,112,1771
LGA14000,4,15,16,23,69,438,452,224,146,31,1427,0,0,7,5,14,18,55,357,570,322,298,23,1668,0,0,0,4,11,10,18,152,316,194,215,13,939,0,0,0,3,9,11,15,184,448,319,500,29,1522,0,0,8,5,12,9,14,110,329,307,987,44,1812,0,5,0,3,4,14,12,48,111,75,121,40,431,0,6,5,3,0,7,4,8,8,8,10,30,86,34,43,198,301,206,330,565,2477,3106,1786,2573,409,12031
LGA14100,0,4,0,0,6,19,24,19,25,0,96,0,0,0,0,0,0,5,14,32,20,37,11,119,0,0,0,0,0,0,0,7,12,15,29,0,72,0,0,0,0,0,0,3,9,22,29,56,0,115,0,0,0,0,0,0,0,3,16,29,193,10,250,0,0,0,0,0,0,0,3,0,4,14,4,29,0,0,0,4,0,0,0,0,0,0,0,5,14,3,11,69,75,28,44,71,119,161,141,418,45,1174
LGA14170,10,32,37,81,330,1299,1033,525,541,65,3963,4,5,13,16,33,66,190,962,1332,832,971,45,4470,4,0,13,8,10,32,56,321,625,503,758,28,2350,0,0,10,11,8,37,56,362,755,922,1872,54,4080,8,0,10,12,8,21,50,177,451,674,3985,71,5469,3,3,14,12,10,23,45,153,199,185,665,75,1385,0,4,39,19,9,5,7,35,24,13,16,112,284,93,137,1045,717,510,1013,2332,6327,5990,4295,9510,795,32762
LGA14220,5,11,16,32,70,38,6,0,0,9,195,0,0,0,10,7,21,56,38,0,0,0,7,140,0,0,5,3,4,6,21,17,5,0,0,0,74,5,0,0,0,3,3,12,14,5,0,0,5,49,5,3,5,4,5,3,6,14,3,0,3,0,55,0,0,4,9,8,14,23,23,0,0,0,3,84,0,0,3,13,11,10,11,0,0,0,0,10,62,49,21,131,254,187,327,506,233,31,6,12,95,1854
LGA14300,0,5,8,18,19,9,0,0,0,4,60,0,0,0,7,3,8,11,15,0,0,0,3,48,0,0,0,0,0,3,16,5,0,0,0,0,28,0,0,0,0,3,5,5,6,0,0,0,0,26,0,0,4,0,0,4,5,9,0,0,0,0,27,0,0,0,8,0,3,3,4,0,0,0,0,21,0,0,0,4,0,0,6,4,0,0,0,0,19,16,14,53,67,54,112,126,76,3,0,0,20,536
LGA14350,4,11,11,25,85,95,13,0,5,13,258,0,0,0,4,11,17,52,80,19,8,8,7,207,0,0,0,5,0,9,23,37,13,8,4,5,98,0,0,0,0,5,8,17,34,16,5,14,3,94,0,0,0,0,6,0,11,13,8,3,0,6,55,0,0,7,10,11,16,30,40,5,0,4,12,132,0,0,7,16,15,8,16,11,0,0,0,28,103,24,16,83,276,244,442,752,684,122,43,37,124,2847
LGA14400,0,0,0,3,7,44,70,46,19,8,205,0,6,0,3,7,4,5,33,77,46,24,4,211,0,0,0,0,3,0,6,10,39,41,18,3,126,0,0,0,3,0,0,6,10,44,44,32,0,148,0,0,0,0,0,0,3,11,21,57,50,3,149,0,0,0,0,5,0,0,11,26,28,13,3,85,0,0,3,3,0,0,3,3,4,0,0,3,20,6,9,24,61,44,45,101,282,416,326,201,58,1573
LGA14500,9,3,0,4,22,128,235,167,226,27,819,0,0,0,0,0,9,15,101,258,264,359,31,1038,0,0,0,0,6,6,9,47,112,145,244,6,574,0,0,0,3,4,5,9,55,169,263,575,21,1114,0,0,4,0,0,8,19,43,147,310,1790,34,2370,0,0,0,0,0,4,5,18,32,62,210,23,365,0,0,0,0,0,0,0,0,3,3,18,28,62,12,7,48,42,42,95,173,738,1396,1613,3921,259,8348
LGA14550,0,5,9,14,23,14,6,0,0,4,69,0,0,0,5,0,14,10,8,3,0,0,0,46,0,0,0,0,0,0,0,7,0,0,0,0,19,0,0,0,0,0,5,0,0,4,0,0,3,11,0,0,0,0,0,0,5,0,0,0,0,0,12,0,0,3,0,3,6,8,9,0,0,0,3,35,0,0,0,0,0,3,4,0,0,0,0,0,12,25,3,51,103,85,136,188,93,13,4,3,41,735
LGA14600,6,14,13,11,11,0,0,0,0,4,77,9,3,8,11,13,6,10,4,0,0,0,7,67,3,0,0,0,5,6,0,0,0,0,0,5,27,6,0,3,3,0,0,5,8,0,0,0,0,26,3,0,0,4,0,0,0,7,0,0,0,3,21,0,0,0,8,6,3,5,3,0,0,0,0,32,3,0,3,7,3,0,3,0,0,0,0,5,21,56,22,85,176,86,72,45,19,3,0,9,58,626
LGA14650,25,44,35,86,300,969,512,139,63,42,2220,3,0,16,24,31,54,209,850,654,215,64,45,2156,0,0,13,6,4,20,81,354,398,144,65,24,1106,0,0,3,3,5,14,61,279,403,222,110,19,1114,4,4,15,16,4,8,31,108,192,182,141,19,717,6,0,14,25,20,39,90,271,228,91,43,84,908,9,7,49,43,14,19,28,49,16,9,6,102,356,113,139,1298,1207,714,1208,2501,5815,3389,1202,584,729,18909
LGA14700,3,5,4,7,22,188,249,117,106,8,703,0,0,0,6,0,17,14,171,317,170,141,18,852,0,0,0,0,5,3,4,73,129,101,118,4,432,0,0,0,0,3,8,10,53,207,216,271,11,782,0,0,0,0,5,9,11,54,167,236,906,17,1397,0,0,3,0,0,0,5,24,42,36,60,10,194,0,0,5,0,0,0,0,4,3,0,7,14,39,21,25,76,103,47,104,166,923,1425,1010,1751,132,5778
LGA14750,11,12,20,36,45,11,0,0,0,0,139,3,0,4,14,16,16,35,16,0,0,0,4,108,0,0,3,0,4,14,15,15,0,0,0,7,57,0,0,0,7,0,8,9,15,0,0,4,3,48,0,0,0,4,5,3,8,4,0,0,0,0,29,0,0,0,0,6,4,13,7,0,0,0,0,33,0,0,0,3,3,7,3,0,0,0,0,5,27,8,18,112,159,164,248,267,93,7,3,0,55,1132
LGA14850,7,10,20,48,140,192,74,24,7,6,541,0,5,5,4,11,20,89,159,69,25,11,14,409,0,0,0,0,4,7,25,87,49,13,5,3,206,0,0,3,4,0,9,10,49,34,26,8,0,155,7,0,10,7,5,4,7,26,28,19,10,8,119,0,0,4,6,13,23,34,62,32,6,4,14,197,0,0,13,11,5,15,12,9,4,0,0,24,86,38,26,319,351,346,624,1036,1171,425,144,75,166,4723
LGA14870,6,4,9,27,81,57,4,0,0,9,206,0,0,0,6,11,27,56,52,3,0,3,6,158,0,0,0,0,3,3,22,22,8,0,0,0,60,0,0,5,6,0,4,15,22,7,0,0,0,66,0,3,6,0,4,3,11,18,8,3,7,9,69,0,0,6,0,6,7,22,15,0,0,0,8,63,3,0,19,10,12,6,5,5,0,0,0,13,66,27,39,224,179,172,363,583,311,49,7,16,96,2063
LGA14900,17,39,30,174,331,948,886,406,131,70,3039,4,0,10,27,15,144,234,749,827,430,150,63,2652,0,0,7,4,12,84,78,349,522,352,105,24,1552,0,0,6,10,10,99,90,297,502,417,161,40,1634,0,3,4,10,9,33,47,122,268,288,250,30,1060,8,9,23,27,13,79,91,225,218,135,58,109,995,0,14,51,28,5,16,39,41,41,20,4,152,416,188,294,1384,982,603,1690,2789,6174,5475,2842,1128,977,24530
LGA14920,5,3,9,15,23,3,0,0,0,0,69,5,0,0,4,5,14,25,9,3,0,0,10,73,0,0,0,0,0,3,11,0,0,0,0,0,22,0,3,0,0,0,4,4,4,0,0,0,3,25,0,0,0,0,0,5,10,5,0,3,0,4,24,0,0,0,4,0,3,5,0,0,0,0,7,22,0,0,5,7,3,0,3,0,0,0,0,10,22,11,8,53,139,95,134,151,31,9,3,0,56,696
LGA14950,0,0,0,8,0,0,0,0,0,0,17,0,0,4,5,4,6,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,3,0,11,0,0,0,3,4,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,4,12,8,15,40,33,46,18,9,5,0,0,13,187
LGA15050,8,13,18,87,204,648,289,38,4,28,1350,0,0,5,5,14,67,148,576,328,45,7,31,1233,3,0,6,9,9,66,51,260,226,33,17,15,691,0,0,3,5,4,36,57,225,249,75,17,10,674,0,0,3,0,3,19,19,92,139,64,14,5,365,0,0,4,9,12,49,60,166,131,28,7,32,499,0,0,4,33,6,13,27,13,6,0,0,53,169,30,29,221,572,352,896,1609,3500,1800,334,85,352,9782
LGA15240,11,33,48,72,262,359,133,22,6,29,988,0,0,5,11,20,47,128,288,109,20,11,22,661,0,0,4,10,5,16,49,121,61,20,10,11,314,4,4,3,3,3,18,33,93,78,25,4,12,279,0,0,6,13,11,10,28,55,51,25,19,5,219,0,0,4,17,10,43,77,137,56,10,9,25,388,3,0,18,37,29,51,39,35,11,0,3,62,279,57,47,265,816,623,1233,2230,2411,811,174,105,392,9162
LGA15270,0,14,6,19,53,95,57,3,0,13,265,9,0,0,5,7,16,61,113,69,13,10,12,312,0,0,0,3,0,3,23,48,45,10,0,4,138,0,0,3,6,3,9,24,74,55,11,4,14,195,0,0,0,0,5,5,13,35,54,16,13,5,143,0,3,4,0,6,5,18,36,25,0,0,9,110,0,0,5,15,5,4,10,7,0,0,0,15,60,25,14,80,190,156,261,488,625,359,66,38,111,2420
LGA15300,12,34,20,23,34,29,6,0,0,29,189,7,7,9,22,20,17,25,25,8,0,0,18,155,0,0,6,6,10,10,17,22,6,0,0,4,90,0,0,6,10,3,8,13,24,10,0,0,9,86,5,7,3,4,0,3,8,9,7,3,0,14,61,0,0,0,7,11,7,14,14,3,0,4,12,86,0,3,7,21,5,7,5,0,0,0,0,24,75,38,40,109,336,181,184,199,165,50,9,11,166,1499
LGA15350,0,5,0,3,14,116,132,84,86,6,450,0,0,0,0,4,0,4,98,175,143,132,3,565,0,0,0,0,0,0,5,15,43,61,76,7,208,0,0,0,0,0,0,4,21,82,110,179,8,418,0,0,3,0,0,0,8,17,64,111,836,18,1065,0,0,0,0,0,0,0,9,22,25,79,14,141,0,0,0,0,0,0,0,3,3,0,4,12,26,6,3,16,47,29,37,70,548,785,636,1566,113,3853
LGA15520,9,10,3,6,27,38,14,0,4,10,131,3,5,3,3,4,9,22,23,13,5,5,14,102,0,3,0,0,10,5,8,10,6,0,0,0,43,0,0,0,0,3,4,3,8,19,7,0,8,45,0,0,0,0,3,3,0,11,10,0,0,9,37,0,0,0,9,0,3,10,12,5,6,0,9,46,4,0,3,4,0,0,0,0,0,0,0,10,21,37,10,80,127,78,124,156,147,77,14,13,90,960
LGA15560,4,3,4,7,4,0,0,0,0,8,36,0,3,3,3,3,4,5,0,0,0,0,5,39,0,0,4,0,0,3,0,0,0,0,0,7,14,0,0,0,5,0,0,0,0,0,0,0,5,20,0,0,0,0,3,3,0,0,0,0,0,6,15,0,0,0,3,0,5,0,0,0,0,0,4,15,3,0,4,4,0,0,0,0,0,0,0,0,12,21,13,42,63,48,51,32,7,5,0,0,44,318
LGA15650,4,17,9,37,75,103,11,0,3,18,269,5,0,8,11,15,25,69,132,28,6,0,15,305,0,0,0,0,4,13,26,60,12,0,0,5,119,0,0,0,3,7,8,23,67,24,3,3,4,142,0,0,0,5,8,5,19,54,11,4,0,11,117,0,0,0,0,0,12,29,37,5,0,0,4,88,0,0,6,15,6,7,5,0,0,0,0,18,58,17,8,73,223,162,314,478,627,107,10,15,112,2147
LGA15700,3,12,8,21,41,58,22,5,0,7,180,3,0,0,0,5,5,22,43,16,3,0,6,108,0,0,0,3,0,9,7,26,13,5,3,0,68,0,0,0,0,0,0,6,26,9,6,0,0,52,0,0,0,0,5,0,0,14,11,0,4,0,36,0,0,0,7,0,8,21,26,5,0,0,7,90,0,0,6,15,7,11,8,5,0,0,0,21,75,25,17,94,244,178,232,426,477,132,22,29,93,1970
LGA15750,11,11,20,23,28,41,5,3,0,14,153,15,0,4,19,19,18,35,43,4,0,4,20,179,0,0,8,4,3,0,14,20,0,0,0,3,58,6,0,3,6,3,11,20,38,5,4,0,3,109,0,0,5,13,6,7,9,22,10,0,4,5,85,0,0,8,5,9,7,11,17,4,0,0,7,60,0,0,8,12,12,0,0,5,0,0,0,6,50,43,18,114,211,193,184,217,269,38,12,11,111,1424
LGA15800,3,6,13,12,8,0,0,0,0,0,50,4,0,4,3,4,12,9,0,0,0,0,0,48,0,0,0,0,0,3,3,0,0,0,0,0,15,0,0,4,6,0,4,3,3,0,0,0,0,21,0,0,0,0,0,0,4,0,0,0,0,0,13,0,0,6,3,4,7,5,0,0,0,0,0,19,0,0,0,3,0,3,0,0,0,0,0,4,15,14,9,77,106,99,104,70,16,5,4,0,32,539
LGA15850,4,5,6,15,21,5,0,0,0,7,57,3,0,3,7,3,8,6,8,0,0,0,3,50,0,0,0,3,0,4,5,0,0,0,0,8,23,0,0,4,0,4,4,7,0,0,0,0,0,24,0,0,0,0,0,0,4,3,0,0,4,0,19,0,0,0,0,3,4,12,4,0,0,0,8,32,0,0,4,7,0,0,0,0,0,0,0,7,17,7,14,71,78,59,114,111,36,5,3,10,43,550
LGA15900,30,57,51,115,353,1244,885,240,117,58,3143,0,0,14,30,31,63,251,1092,1023,349,158,48,3068,3,0,10,17,14,23,93,463,581,211,138,23,1580,0,0,18,22,8,36,84,430,617,407,242,24,1885,4,3,13,13,17,12,32,192,319,318,489,35,1446,3,5,24,34,24,35,96,323,358,213,177,70,1349,8,9,53,21,13,15,33,37,14,5,7,110,323,158,244,1696,1076,753,1331,2816,6854,5136,2115,1516,761,24466
LGA15950,3,10,3,9,102,553,533,319,349,38,1922,0,0,3,9,0,18,51,440,828,587,593,47,2586,0,0,0,3,3,9,21,60,239,281,347,14,974,0,0,3,0,10,15,20,139,447,687,995,31,2340,5,0,0,5,7,15,33,109,412,804,3321,59,4761,0,0,9,3,0,9,6,25,58,90,275,32,504,0,0,0,0,4,8,3,13,15,16,28,55,142,34,24,157,255,114,183,532,2347,3324,3200,6447,405,17021
LGA15990,9,8,16,34,65,310,752,755,864,62,2887,4,0,4,4,21,31,47,225,809,997,1333,74,3558,5,0,4,7,5,12,33,73,362,541,968,43,2064,6,0,4,6,15,15,39,82,372,752,2046,69,3399,3,0,7,8,13,19,40,79,192,493,4683,93,5619,7,0,0,8,9,15,13,43,117,153,609,78,1057,7,4,22,24,11,8,4,8,29,26,41,84,269,85,88,363,556,333,400,639,1827,4067,4658,11786,807,25599
LGA16100,4,3,8,10,22,15,3,0,0,6,67,0,0,0,0,5,12,17,12,0,0,0,4,46,0,0,0,0,0,0,19,3,3,0,0,0,23,0,0,0,0,0,0,5,3,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,6,7,0,0,0,0,18,0,0,0,0,0,0,3,0,0,0,0,3,9,6,8,45,38,39,54,120,73,12,0,0,34,434
LGA16150,3,8,25,58,184,267,94,15,4,32,690,0,0,3,9,27,42,115,263,134,22,13,18,637,0,0,3,4,3,18,61,138,93,14,5,13,354,0,0,3,0,10,21,30,115,113,23,14,26,349,0,0,8,8,8,7,16,62,97,39,28,32,308,0,0,6,8,7,21,64,75,45,11,5,18,256,0,6,23,17,6,7,12,10,0,0,0,27,111,37,50,303,340,285,614,1138,1453,693,153,86,287,5437
LGA16200,7,11,9,36,51,37,3,0,0,11,170,4,0,3,13,15,26,46,47,3,0,0,6,166,0,0,0,0,3,16,22,19,0,0,0,0,66,0,0,3,4,3,15,20,35,8,0,0,0,84,3,0,0,0,3,3,20,6,7,0,0,4,49,0,0,0,3,6,11,11,8,3,0,0,3,51,0,0,17,3,3,0,0,0,0,0,0,11,38,24,32,167,232,179,257,328,202,39,8,13,81,1555
LGA16260,44,40,44,118,526,1987,1838,685,379,92,5757,4,0,8,30,31,102,365,1959,2424,907,476,107,6422,0,4,12,14,19,67,152,897,1347,641,320,57,3526,6,0,11,23,29,95,148,994,1933,1012,569,67,4884,3,3,11,26,15,43,84,603,1427,1038,1029,71,4357,6,10,16,31,17,66,110,281,450,246,185,139,1560,9,8,48,26,12,15,20,59,44,24,15,133,398,154,292,1566,912,651,1198,3116,11166,12897,5775,3581,1221,42523
LGA16350,16,31,29,125,442,1729,857,209,61,65,3579,5,5,20,24,17,58,249,1428,991,312,84,60,3254,5,0,3,13,9,30,93,688,589,255,80,39,1806,5,0,3,6,6,24,71,547,607,355,135,18,1778,3,0,9,10,10,29,39,218,278,280,165,26,1058,3,0,18,32,13,24,74,332,222,123,62,85,986,7,3,35,25,15,20,27,41,14,3,10,131,336,123,186,936,827,510,1278,3291,9219,4900,1838,721,834,24655
LGA16380,9,12,7,36,146,478,293,69,33,31,1125,3,0,4,6,9,23,81,349,297,92,40,26,924,0,0,0,0,0,11,19,143,180,43,23,4,439,3,0,0,0,0,5,23,105,176,69,35,5,439,4,0,0,0,6,4,25,46,87,70,68,9,323,0,3,8,10,6,7,46,144,102,36,16,24,397,3,0,7,37,9,32,27,29,10,3,0,47,205,47,35,206,589,278,740,1548,2997,1716,495,278,338,9267
LGA16400,9,12,14,71,151,384,237,57,24,19,980,0,4,11,12,13,56,93,262,232,74,28,18,802,0,0,0,4,4,41,37,119,129,45,16,9,407,0,0,8,3,0,31,36,83,124,57,35,14,392,4,0,3,8,0,9,16,45,63,46,35,6,230,0,0,6,9,6,57,62,98,87,37,10,24,394,0,0,3,26,10,17,15,17,0,0,4,46,135,30,23,202,383,246,726,1349,2178,1283,404,191,279,7287
LGA16490,9,18,43,128,197,238,173,53,25,26,922,0,0,3,11,24,62,130,230,214,86,57,17,831,0,0,7,0,5,24,64,126,125,67,52,5,478,0,0,0,13,10,35,83,138,136,79,118,13,626,0,0,8,3,4,13,62,116,83,86,156,7,539,0,0,5,3,3,27,38,41,51,25,34,16,250,0,4,10,14,5,7,5,4,4,0,4,24,71,26,41,246,292,317,750,1045,1344,989,440,476,210,6193
LGA16550,18,30,17,38,93,442,829,575,469,67,2574,0,0,10,13,12,39,68,341,899,847,820,49,3099,0,0,4,6,6,21,36,108,372,533,630,37,1752,0,0,5,13,13,23,46,137,497,909,1378,29,3052,3,3,12,17,3,22,46,110,267,675,3097,54,4311,3,0,10,23,19,18,33,63,178,212,504,76,1142,3,5,78,21,7,11,6,24,16,20,38,103,326,128,226,1469,652,372,488,857,2401,4496,4605,7647,754,24089
LGA16610,0,12,10,24,68,97,16,3,5,14,251,0,0,0,9,9,21,50,71,20,0,0,0,176,0,0,0,5,3,6,22,33,9,4,4,0,85,0,0,0,4,0,10,14,22,4,0,4,0,59,0,0,0,3,3,5,4,4,6,0,0,0,31,0,0,5,6,0,14,31,24,3,0,0,3,101,0,0,7,7,14,16,3,0,0,0,0,8,63,19,13,119,244,198,354,589,532,111,26,27,85,2314
LGA16700,15,20,17,37,235,883,717,359,249,48,2584,0,0,12,19,25,56,159,798,933,632,376,59,3075,0,0,8,9,10,18,72,334,421,372,256,15,1515,0,0,12,13,17,29,59,365,665,596,570,42,2354,3,0,11,17,5,16,46,177,446,603,1007,31,2360,5,5,0,15,4,23,41,96,120,128,137,73,641,4,0,4,11,3,4,4,23,21,4,13,81,177,59,49,282,638,306,589,1711,5028,4732,3436,3068,642,20540
LGA16900,11,11,14,15,76,276,354,116,31,17,921,0,0,3,5,10,7,29,214,318,163,40,8,796,0,0,4,6,0,8,17,91,184,126,29,5,473,0,0,0,3,4,4,11,70,162,160,56,17,491,0,0,3,5,3,3,12,26,67,100,85,16,311,0,0,7,10,5,9,18,62,100,62,26,20,327,7,0,23,17,4,12,10,15,11,0,0,39,145,50,67,568,414,264,346,712,1691,1819,904,322,266,7408
LGA16950,7,18,35,77,252,513,282,43,15,51,1306,0,0,10,8,20,85,146,404,270,55,27,40,1058,0,0,0,4,9,68,67,197,155,38,14,15,561,0,0,4,5,5,57,53,129,161,53,32,14,511,0,4,10,8,5,18,30,73,88,37,52,21,344,4,0,6,9,5,39,70,142,63,23,6,31,418,3,0,11,33,9,22,32,26,7,3,0,66,219,55,45,301,699,522,1102,2104,3270,1505,305,202,469,10587
LGA17000,6,5,8,37,54,105,29,3,0,13,260,0,0,3,6,3,30,51,107,31,11,4,15,253,0,0,0,6,0,16,33,60,30,0,0,0,144,0,0,0,0,0,12,24,71,43,7,4,5,174,0,0,0,8,0,8,15,42,38,20,9,7,150,0,0,6,3,0,17,21,37,15,3,8,8,114,0,0,0,3,0,0,3,3,0,0,0,14,37,16,7,59,169,123,271,412,645,245,57,32,108,2145
LGA17040,7,7,14,33,57,54,23,3,24,33,264,0,4,5,7,10,25,44,70,31,8,34,26,279,0,0,0,3,0,22,15,25,21,8,26,3,132,7,0,4,16,8,16,7,37,21,12,38,29,186,0,3,0,3,0,10,16,28,31,15,104,47,273,3,0,0,3,4,3,21,21,16,10,23,11,108,0,0,3,8,4,6,9,0,8,0,0,15,50,32,31,93,187,128,316,368,344,189,80,334,246,2342
LGA17080,7,13,25,32,39,26,3,0,3,19,171,0,0,5,24,15,31,37,19,8,0,3,14,156,5,0,0,4,8,15,11,14,0,0,4,0,56,0,0,0,3,8,14,14,25,7,0,0,13,75,4,0,5,4,3,10,11,11,0,0,4,4,55,3,0,5,10,11,11,15,13,0,0,0,3,68,0,3,13,7,3,3,0,5,0,0,0,11,41,28,16,147,240,174,291,243,152,18,3,25,124,1457
LGA17100,13,13,10,23,63,319,302,111,70,16,941,0,0,3,15,7,7,41,318,438,143,81,25,1077,0,0,9,10,3,9,13,144,249,84,61,17,597,0,0,5,4,6,9,12,166,394,170,113,22,910,0,3,6,8,4,7,13,76,221,142,193,17,690,0,0,7,8,10,10,18,52,97,49,44,32,334,0,0,5,4,0,3,0,12,21,0,0,32,85,13,42,289,188,122,170,360,1860,2359,946,687,288,7327
LGA17150,17,14,8,39,86,620,771,413,342,47,2355,0,0,3,6,14,28,61,496,849,611,576,43,2698,0,0,0,8,7,19,27,189,411,423,417,26,1529,6,0,0,6,3,37,35,183,513,557,968,15,2326,3,0,6,5,3,21,17,79,233,361,1275,30,2034,6,0,16,16,7,28,15,90,149,151,262,53,795,0,0,27,12,7,7,7,12,15,17,19,64,198,86,106,791,402,238,441,845,3415,4300,3134,4365,548,18669
LGA17200,32,39,47,120,361,1471,2046,1304,1390,132,6973,7,4,26,18,19,88,249,1096,2618,2312,2284,143,8882,0,0,10,13,19,31,81,185,715,1178,1470,68,3769,10,0,17,20,29,56,115,316,1147,1974,3721,108,7511,6,0,20,34,19,47,107,275,927,1885,8471,173,11972,6,13,40,39,25,41,57,96,237,400,1314,179,2451,16,22,129,29,18,22,20,36,73,67,107,229,759,307,659,2990,1372,778,1399,3067,7134,11269,11401,21404,1808,63583
LGA17310,14,44,49,120,329,304,46,13,12,26,964,5,0,7,21,37,79,226,309,60,16,7,26,784,4,0,4,6,10,35,101,171,37,8,9,11,390,0,3,0,3,9,22,68,141,45,11,6,7,325,3,4,13,12,10,20,30,76,45,10,12,19,253,0,0,0,13,16,46,92,102,23,6,3,17,319,0,3,10,36,24,30,32,13,0,0,3,38,193,51,64,237,633,576,1192,2125,1787,331,72,61,319,7449
LGA17350,4,6,3,13,15,9,0,0,0,6,53,0,0,0,6,6,17,15,5,0,0,0,0,48,0,0,0,3,4,3,3,3,0,0,0,0,21,0,0,3,0,0,0,9,5,0,0,0,0,17,0,0,0,0,0,4,6,5,0,0,0,0,22,0,0,4,4,0,5,9,6,0,0,0,7,24,0,0,0,3,0,3,0,0,0,0,0,3,13,10,25,62,91,71,121,111,35,3,0,0,31,556
LGA17400,0,4,4,14,20,5,0,0,0,0,49,0,0,0,0,0,13,10,0,0,0,0,3,30,0,0,3,0,3,0,0,0,0,0,0,3,14,0,0,0,0,0,0,0,4,0,0,0,0,12,0,0,0,6,6,0,4,0,0,0,0,5,18,0,0,0,4,5,3,7,3,0,0,0,0,23,0,0,3,0,0,3,0,5,0,0,0,8,25,6,3,44,89,61,144,96,45,0,0,3,55,551
LGA17420,8,6,6,27,29,207,410,392,274,33,1390,9,0,7,10,5,21,34,175,468,583,410,26,1744,0,0,0,6,3,10,22,76,263,401,363,21,1157,3,0,3,7,8,13,23,77,376,669,730,31,1941,0,0,4,0,5,11,14,56,259,635,1402,35,2408,0,0,0,5,0,16,12,31,103,158,208,46,574,0,0,0,0,0,0,0,7,14,21,9,33,97,26,9,88,100,89,184,290,1197,2620,3459,3842,369,12271
LGA17550,13,16,11,36,96,306,296,166,115,38,1092,0,0,0,10,7,9,51,216,287,181,152,25,951,0,0,4,8,8,4,32,93,139,109,89,6,495,0,0,3,5,4,8,21,58,102,103,158,21,489,0,0,4,3,3,3,16,29,51,57,165,6,354,0,0,11,13,17,10,31,107,115,86,97,31,514,0,0,28,20,5,26,23,23,7,14,4,57,212,44,48,491,398,294,559,1086,2339,1761,999,1013,387,9422
LGA17620,4,7,11,27,60,28,11,0,5,11,164,3,0,13,13,10,22,44,41,7,0,0,12,167,0,0,0,0,0,11,17,19,6,0,3,6,67,0,0,0,7,4,10,16,14,12,0,0,6,80,0,0,0,0,0,3,11,18,9,5,0,4,44,0,0,0,3,0,10,7,19,3,0,0,5,54,0,0,0,7,9,4,11,0,0,0,0,10,37,18,9,89,167,122,239,336,195,61,8,16,113,1375
LGA17640,3,3,3,12,11,19,7,0,0,3,60,0,0,0,3,9,5,13,13,0,0,0,7,44,4,0,3,0,0,0,5,5,0,0,0,0,22,0,0,0,0,0,0,6,11,3,0,4,0,22,0,0,0,5,0,3,8,6,3,0,0,4,25,0,0,0,0,6,0,0,3,6,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,4,6,7,35,40,27,71,91,74,17,3,8,43,425
LGA17650,0,8,8,8,8,14,3,0,0,4,43,0,0,0,5,0,0,10,11,0,0,0,7,39,0,0,0,0,0,0,3,0,0,0,0,7,19,3,0,0,0,8,5,4,8,0,0,0,5,17,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,6,4,0,3,0,0,0,13,0,0,0,0,3,0,0,0,0,0,0,0,7,9,0,37,67,50,65,79,47,13,0,0,23,405
LGA17750,28,52,63,136,385,330,85,7,0,22,1103,0,0,3,45,34,116,265,332,101,20,5,33,961,3,0,0,17,15,59,107,162,67,16,0,9,464,0,4,3,6,13,56,97,160,91,11,5,12,458,5,6,12,8,10,24,28,88,80,20,19,17,305,0,0,7,20,15,39,79,104,49,7,6,22,353,3,7,21,34,8,16,23,11,4,0,4,60,180,56,89,458,778,668,1236,2131,1774,574,107,55,324,8264
LGA17850,3,3,4,7,3,0,0,0,0,6,29,0,0,3,3,4,3,0,0,0,0,0,0,19,0,0,0,0,4,0,3,0,0,0,0,6,10,3,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,4,0,0,0,0,3,8,0,0,0,0,0,0,3,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,5,8,3,3,40,43,32,45,26,6,0,0,0,31,242
LGA17900,4,4,9,5,4,0,0,0,0,9,58,19,0,0,4,12,10,0,0,0,0,0,6,57,10,0,0,0,3,8,0,0,0,0,0,0,23,14,6,0,4,7,6,0,6,0,0,3,6,44,15,0,4,5,0,3,4,0,0,0,0,6,37,6,0,3,3,0,3,7,0,0,0,0,6,32,0,0,0,7,0,0,0,0,0,0,0,4,15,95,22,48,113,74,87,27,9,3,0,6,80,574
LGA17950,5,12,6,7,9,0,0,0,0,4,29,0,0,0,0,3,0,7,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,4,6,0,0,0,0,19,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0,0,0,0,18,0,0,5,4,0,0,0,0,0,0,0,0,5,3,7,32,39,48,32,29,13,4,0,3,17,231
LGA18020,15,18,20,18,8,0,0,0,0,10,93,3,3,13,9,9,25,7,0,0,0,0,6,72,3,0,3,0,3,0,0,3,0,0,0,4,20,4,3,0,4,9,5,7,0,0,0,0,0,30,0,0,3,0,0,3,6,0,0,0,0,4,22,0,0,5,3,9,3,3,0,0,0,0,4,29,0,0,0,8,7,0,0,0,0,0,0,5,17,25,28,111,161,118,130,64,10,3,3,4,93,752
LGA18050,0,4,3,7,33,188,316,332,437,21,1336,0,0,3,4,0,8,36,118,345,474,757,22,1775,0,0,0,0,0,3,22,28,101,234,472,16,888,0,0,3,4,4,7,19,35,154,380,1223,33,1863,0,0,3,3,7,11,14,54,144,340,3400,64,4044,3,0,5,0,4,8,18,15,41,82,396,56,620,0,0,12,6,0,3,0,9,9,15,38,69,175,31,33,217,103,83,112,350,996,1631,2266,7364,411,13592
LGA18100,0,8,4,3,0,0,0,0,0,0,20,0,0,0,3,12,4,3,0,0,0,0,0,18,0,0,0,3,3,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,4,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,10,26,4,43,60,54,57,12,6,0,0,5,13,276
LGA18200,0,4,8,6,11,8,0,0,0,3,51,3,0,5,4,0,5,5,4,0,0,0,5,38,0,0,3,0,3,0,0,10,0,0,0,0,25,3,0,0,0,0,0,0,7,0,0,0,0,15,0,0,5,0,5,7,0,0,0,0,0,4,15,0,0,4,5,7,3,5,0,5,0,0,0,29,0,0,0,5,8,0,0,0,0,0,0,10,15,28,8,64,119,98,73,55,32,9,4,8,36,534
LGA18250,0,4,9,9,35,180,383,226,260,31,1153,8,0,4,6,0,19,25,187,470,362,399,27,1507,0,0,3,0,3,9,13,50,202,192,245,11,726,3,0,4,5,4,8,20,64,312,404,537,29,1385,4,0,5,4,6,9,12,56,261,424,1676,34,2492,0,0,3,3,0,13,10,20,52,63,176,34,388,4,0,0,4,4,0,0,6,12,6,13,46,91,38,8,126,183,99,179,302,1103,2383,2114,3824,347,10710
LGA18350,11,3,7,23,39,140,131,77,32,21,479,0,4,4,5,10,14,37,102,127,86,47,17,452,0,0,3,6,3,0,16,47,82,69,46,6,279,0,0,3,0,5,7,8,38,82,69,62,9,282,0,0,0,3,4,8,12,22,41,64,150,10,313,0,0,0,3,3,0,12,45,41,33,33,17,190,0,0,3,16,0,8,7,7,9,0,0,25,70,9,17,72,234,138,222,404,872,808,521,465,195,3961
LGA18400,4,4,5,10,35,150,119,42,20,18,406,0,0,0,4,4,0,25,118,109,49,17,13,350,3,0,0,0,5,3,15,42,79,46,25,9,215,0,0,0,4,0,4,14,45,67,56,37,8,226,0,0,5,3,0,6,9,20,36,44,40,3,158,0,0,0,4,0,0,7,36,30,18,10,8,122,0,0,0,6,3,0,3,9,5,0,3,13,43,15,7,50,136,81,130,329,835,639,302,196,134,2846
LGA18450,31,49,53,119,354,1004,832,306,124,63,2933,0,0,12,21,31,56,187,813,865,460,186,37,2672,0,0,3,15,12,24,84,331,498,307,188,21,1482,4,0,6,10,16,33,68,276,459,401,267,27,1571,4,0,22,11,13,12,48,125,242,313,453,37,1272,9,7,30,51,23,36,80,242,267,231,159,65,1197,19,16,117,36,19,24,34,37,22,11,11,118,447,229,320,2369,1309,874,1462,3012,5873,4745,2550,1613,827,25180
LGA18500,3,4,5,8,29,114,182,160,254,19,787,0,0,0,0,0,7,29,99,206,224,383,21,977,0,0,0,0,0,0,11,13,50,95,226,6,405,4,0,0,5,4,9,14,31,80,219,608,20,979,0,0,5,0,3,4,12,31,85,216,2261,39,2665,0,0,0,0,0,0,11,12,26,53,320,21,446,0,0,0,0,0,0,0,4,4,3,19,27,66,16,4,66,55,37,100,304,647,969,1219,4544,227,8191
LGA18710,6,3,0,10,35,44,22,7,4,7,142,0,0,0,5,3,5,18,38,22,10,8,10,123,0,0,6,3,0,0,11,16,16,5,6,0,70,6,0,0,0,0,4,8,22,24,6,6,9,76,4,0,0,0,0,0,8,20,9,17,22,15,92,0,0,0,5,3,0,6,14,8,0,0,6,44,0,0,0,0,0,0,0,5,0,0,0,0,10,9,6,43,58,45,63,191,246,127,56,57,73,972
LGA19399,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,9,0,6,3,4,10,0,0,0,0,0,0,0,4,0,0,0,0,11,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,6,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,8,11,7,11,7,17,9,0,3,24,105
LGA19499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA19799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA20110,4,6,6,15,36,31,14,0,0,4,117,0,0,4,3,7,15,38,33,12,0,0,6,127,0,0,0,6,4,3,11,18,7,0,5,7,64,0,0,3,0,0,8,14,22,14,0,5,3,67,0,0,0,0,0,6,6,6,16,0,17,12,54,0,0,0,0,5,5,12,8,6,0,4,0,40,0,0,4,4,0,0,3,0,0,0,0,0,22,19,10,77,120,102,165,236,178,67,15,46,59,1088
LGA20260,6,8,12,35,37,16,6,3,3,7,136,4,3,4,7,11,20,24,17,3,0,0,4,90,0,0,0,0,0,12,8,7,0,0,4,6,45,0,0,6,0,0,3,10,8,4,0,0,3,41,0,0,0,4,0,4,0,8,4,0,0,5,22,3,0,3,5,4,4,8,7,0,0,0,0,38,0,0,10,4,6,7,0,0,0,0,0,8,37,20,23,111,138,108,227,186,101,26,6,14,55,1005
LGA20570,33,67,65,257,698,552,61,4,10,35,1796,3,5,14,30,49,147,497,530,73,8,7,31,1389,0,5,8,19,15,48,197,279,62,4,15,11,670,8,4,3,3,16,41,177,311,82,15,14,13,687,4,4,5,10,8,21,58,170,93,23,17,11,433,7,4,15,24,19,65,160,200,39,7,10,25,578,0,3,41,29,19,39,32,10,0,0,0,75,257,121,123,904,1084,873,2465,4282,3228,555,88,99,476,14298
LGA20660,17,26,19,61,264,779,302,75,41,38,1628,6,3,15,11,15,37,162,724,415,121,75,40,1629,5,0,4,9,3,19,69,387,291,122,39,21,965,0,0,3,6,3,23,80,403,437,194,74,12,1251,6,3,9,12,8,11,52,188,309,232,230,19,1073,5,7,18,17,5,28,49,137,113,59,42,45,521,4,0,32,14,9,3,10,16,9,5,4,57,149,110,88,696,404,246,492,1623,4316,2381,932,590,481,12372
LGA20740,4,17,13,42,109,155,45,9,6,13,406,0,0,7,5,7,28,75,120,38,0,0,14,288,0,0,0,4,4,14,31,52,23,3,3,10,143,0,0,5,3,0,13,24,57,34,0,9,0,146,0,0,6,0,0,9,24,27,19,10,7,5,112,0,0,8,3,6,20,39,43,15,5,5,7,151,0,0,11,8,3,14,23,6,0,0,0,23,84,31,21,186,189,200,490,1058,863,243,35,50,160,3537
LGA20830,14,8,29,46,137,220,20,0,3,15,500,0,4,6,11,9,24,96,216,34,3,3,10,416,0,0,4,3,6,3,44,124,19,3,0,3,217,0,0,3,10,3,10,39,105,33,6,3,3,214,0,0,8,3,6,6,11,64,18,3,0,10,141,0,0,6,5,6,11,43,58,22,0,0,11,168,0,0,8,9,0,3,12,0,0,0,0,24,66,39,27,238,239,232,445,1113,1287,187,32,34,178,4048
LGA20910,3,9,10,18,57,237,223,108,146,22,826,4,0,7,9,6,8,37,215,264,132,206,35,931,0,0,3,3,5,4,19,88,144,100,178,15,557,0,0,0,4,6,8,27,92,209,221,375,19,961,5,0,14,6,5,9,16,80,172,259,1420,33,2009,0,0,5,4,6,5,8,27,54,33,153,34,330,0,4,9,5,5,0,7,4,10,0,11,43,103,68,53,365,217,114,197,482,1408,1487,1054,2773,343,8557
LGA21010,5,4,10,24,55,35,4,0,0,4,146,0,0,4,10,12,21,36,20,11,5,0,10,120,0,0,0,0,3,9,14,14,0,0,0,0,41,0,0,0,0,3,3,15,13,4,0,0,0,40,3,0,0,3,4,0,12,9,11,0,0,4,49,0,0,4,9,3,9,21,8,3,0,0,9,64,0,0,10,10,0,4,4,0,0,0,0,11,45,10,17,120,185,143,244,313,167,41,7,8,91,1356
LGA21110,8,23,28,50,330,913,417,161,223,45,2207,0,0,3,21,14,48,211,933,613,261,314,27,2441,0,0,3,12,11,13,62,372,393,194,219,24,1299,0,0,5,12,15,23,70,483,619,353,563,36,2181,3,5,11,6,5,7,58,269,493,478,1809,58,3208,0,0,10,3,8,6,27,120,162,108,265,44,759,0,0,8,0,0,5,10,16,15,6,14,53,136,67,60,352,282,319,470,1889,4913,3478,1872,3963,550,18208
LGA21180,23,51,36,135,720,1007,143,15,40,77,2267,10,4,18,26,20,83,531,920,163,24,28,61,1881,0,0,12,18,20,40,292,577,100,16,20,28,1134,0,8,14,17,6,23,236,526,158,20,20,31,1060,7,5,9,14,6,19,118,370,158,27,24,32,786,6,0,17,26,20,47,217,342,69,12,16,105,888,4,0,21,7,7,19,65,37,8,0,5,89,263,116,109,603,703,502,1287,4995,6411,1098,183,270,931,17203
LGA21270,10,5,5,11,0,3,0,0,0,3,45,4,0,13,4,3,0,0,0,0,0,0,0,25,4,0,6,6,4,0,0,0,0,0,0,3,15,0,0,8,4,5,3,0,0,0,0,0,0,21,0,0,0,0,5,6,7,0,0,0,0,0,14,0,0,0,3,3,0,0,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,6,11,42,17,89,94,59,40,15,3,0,0,0,43,395
LGA21370,27,22,32,71,106,79,25,5,3,17,399,3,0,11,23,27,56,75,101,16,0,4,16,325,0,0,7,3,6,21,28,42,9,0,3,3,127,0,0,5,6,4,18,21,33,21,0,0,9,120,3,0,0,5,9,7,9,16,20,0,3,7,82,0,0,4,11,11,20,25,30,9,0,0,9,137,0,0,16,23,11,12,3,0,0,0,0,27,95,51,63,387,488,385,570,619,451,125,10,29,204,3384
LGA21450,8,14,10,40,363,878,86,19,13,33,1470,0,0,8,11,10,20,241,791,106,10,16,29,1251,0,0,3,5,3,20,113,445,82,21,8,17,716,3,0,12,3,3,11,88,344,82,19,14,12,579,0,0,0,5,6,4,30,179,69,11,23,6,336,0,0,6,6,9,7,63,210,25,6,13,46,401,3,0,4,3,0,10,24,22,3,0,4,40,118,48,35,189,179,149,379,2292,4685,601,113,135,350,9151
LGA21610,31,33,32,63,724,2535,405,43,72,96,4049,0,4,22,24,21,48,509,2315,497,70,83,83,3685,0,4,15,12,15,32,218,1316,357,54,33,54,2099,5,4,7,11,9,22,192,1183,426,82,52,68,2071,3,0,17,10,9,12,94,540,372,112,67,40,1274,3,0,11,21,19,33,186,664,192,37,19,131,1321,3,0,18,13,5,21,46,66,13,4,0,130,319,103,102,685,517,354,757,4904,13912,2998,505,472,1101,26404
LGA21670,8,3,4,32,23,11,0,0,0,3,91,0,0,0,4,10,19,12,6,0,4,0,0,48,0,0,0,0,4,7,8,0,0,0,0,0,24,0,0,4,0,4,5,4,0,0,0,0,3,28,0,0,0,0,0,3,4,0,0,0,0,0,16,0,0,0,7,6,9,12,3,0,0,0,0,48,0,3,11,3,9,11,3,0,0,0,0,9,63,17,31,143,161,170,352,218,41,7,5,9,73,1229
LGA21750,8,11,7,41,72,48,6,0,5,13,212,4,0,9,0,13,27,53,54,7,0,6,12,187,0,0,3,0,4,11,21,20,3,0,5,5,74,0,0,6,3,4,12,24,27,10,0,3,9,84,0,0,5,0,0,0,3,19,8,0,8,9,60,0,0,0,3,10,15,20,23,0,0,0,9,82,0,0,6,4,5,9,3,5,0,0,0,20,51,33,18,198,167,185,370,456,318,53,8,30,138,1976
LGA21830,8,10,11,31,26,9,0,0,0,14,124,3,0,11,10,12,19,18,9,0,0,0,10,101,4,0,6,3,0,7,14,3,0,0,0,9,48,0,0,7,0,0,0,9,8,0,0,0,4,32,0,0,4,0,5,0,3,4,3,4,4,9,30,0,0,4,4,7,13,14,5,0,0,0,5,55,5,0,11,0,0,9,3,0,0,0,0,5,31,29,26,166,148,153,260,190,57,8,5,10,114,1163
LGA21890,26,42,39,112,691,1343,456,157,112,60,3050,6,0,20,25,18,58,419,1229,650,274,149,50,2899,3,0,13,11,12,22,156,606,467,231,134,22,1684,3,0,17,13,7,27,132,599,569,448,315,37,2162,3,4,16,16,11,10,60,275,377,370,676,36,1853,8,5,28,31,13,20,101,239,201,148,178,79,1035,3,8,40,13,14,18,26,25,5,8,8,96,259,169,177,1138,691,527,1175,4250,6948,3421,1839,1778,768,22882
LGA22110,17,28,25,80,152,98,10,0,9,17,439,3,0,8,16,19,54,103,99,14,0,9,6,335,4,0,6,7,3,19,30,51,8,0,0,4,131,3,0,3,3,5,5,29,46,16,0,6,7,129,3,0,10,3,4,6,21,29,10,5,3,0,86,0,0,11,11,6,42,47,48,12,0,0,14,196,4,5,28,18,11,16,7,12,6,0,0,33,144,62,58,345,409,340,775,976,639,88,16,30,219,3975
LGA22170,20,21,24,73,474,1042,259,39,45,52,2055,5,4,8,13,22,33,313,859,332,64,42,26,1713,0,0,4,5,5,16,104,434,211,37,27,17,856,0,0,6,5,5,15,88,327,275,68,44,21,863,6,0,6,8,5,10,35,122,132,63,75,12,462,0,0,10,11,7,25,106,232,96,31,20,54,597,0,0,27,10,11,23,42,26,16,0,9,95,258,92,82,625,510,439,1164,3500,5474,1794,394,341,559,14973
LGA22250,10,23,15,20,14,3,0,0,0,0,87,0,0,4,4,15,17,7,3,0,0,0,4,60,0,0,9,3,5,6,7,0,0,0,0,0,32,0,0,0,5,0,3,4,0,0,0,0,0,22,0,0,7,6,6,3,0,0,0,0,0,3,24,0,0,0,6,7,5,5,0,0,0,0,0,23,0,0,4,10,5,0,0,0,0,0,0,13,39,18,30,111,207,152,140,57,19,9,0,7,60,807
LGA22310,15,24,31,115,445,868,462,192,229,41,2418,9,5,12,20,11,63,281,871,676,288,307,53,2592,0,0,3,5,7,20,96,386,472,234,234,15,1492,0,0,5,13,8,18,102,437,676,401,515,45,2212,6,0,11,11,6,14,46,219,453,436,1335,32,2577,5,8,5,9,8,22,55,140,140,111,172,59,728,3,0,5,8,5,18,13,23,12,0,15,79,177,88,57,374,392,315,1129,2679,4905,3901,2043,3276,575,19732
LGA22410,8,25,26,35,41,28,6,0,0,12,184,0,0,6,17,14,24,38,35,0,4,5,6,154,0,0,6,3,5,11,14,11,0,0,0,4,49,0,0,5,4,5,6,10,9,3,0,6,5,50,0,0,0,8,4,3,4,10,10,0,0,10,44,3,0,3,3,10,11,12,15,3,0,4,4,69,0,0,10,11,3,7,0,0,0,0,0,18,46,33,23,209,295,217,268,270,177,29,8,15,94,1634
LGA22490,0,0,5,3,22,24,11,0,0,9,75,0,0,0,0,0,3,10,20,14,0,0,7,66,0,0,0,0,0,0,8,18,10,0,0,0,40,0,0,0,0,3,0,7,17,9,3,5,4,42,0,0,0,0,0,0,0,7,10,0,0,0,30,0,0,0,0,5,0,3,9,3,0,0,3,31,0,0,3,0,3,0,3,0,0,0,0,5,14,9,9,25,34,39,42,127,168,71,13,6,59,602
LGA22620,22,60,57,225,608,463,68,15,7,35,1574,0,0,16,31,39,167,481,446,72,7,5,27,1299,0,0,3,23,18,59,201,250,66,6,0,14,636,5,0,7,14,14,24,174,287,74,12,9,13,630,0,0,3,3,8,17,51,123,97,21,12,9,356,3,0,24,26,22,67,155,141,51,12,8,24,532,9,4,35,24,15,34,27,8,4,4,0,56,232,113,114,799,942,836,2201,3824,2680,541,95,73,432,12655
LGA22670,31,41,40,149,706,961,176,43,51,58,2259,3,8,24,34,18,126,537,942,197,44,37,61,2025,6,0,15,10,7,36,264,591,185,38,32,44,1214,5,3,19,13,13,29,190,532,202,73,38,33,1151,6,3,19,14,5,25,126,334,170,66,40,29,841,8,3,24,24,14,50,212,332,92,36,21,112,935,4,6,37,20,7,24,29,25,12,0,6,86,249,123,164,900,745,482,1685,4922,6162,1442,382,352,855,18231
LGA22750,52,82,70,247,1030,1614,411,57,38,69,3691,5,3,38,42,45,145,722,1659,554,85,65,76,3438,0,3,20,20,25,61,284,848,358,75,55,28,1775,4,8,15,19,30,48,198,842,544,124,85,39,1951,5,5,16,22,10,37,97,370,434,216,191,51,1449,7,5,45,53,28,86,218,419,223,66,31,75,1266,3,16,58,40,26,61,69,36,17,3,6,148,487,242,233,1467,1497,1246,2768,6719,9584,3247,739,606,994,29331
LGA22830,21,58,60,181,291,156,19,0,4,27,816,0,0,15,24,63,116,208,195,37,3,7,16,685,0,0,6,17,16,64,111,102,19,0,5,4,344,0,0,8,6,13,27,66,79,41,4,0,14,262,0,0,10,12,9,16,40,75,46,3,8,13,238,0,0,10,15,20,32,76,64,18,3,3,21,275,0,5,19,26,19,27,18,7,0,0,0,43,170,61,77,548,768,735,1418,1728,1059,237,31,55,308,7024
LGA22910,7,5,8,13,29,37,14,3,6,3,122,0,0,3,3,6,5,23,25,12,0,0,6,78,0,0,0,0,4,5,4,14,0,0,5,0,29,0,0,0,0,0,7,3,9,7,0,0,9,36,0,0,0,0,0,0,5,13,12,3,4,0,41,0,0,3,0,5,5,7,3,3,3,0,3,37,0,0,9,4,4,0,3,0,0,0,0,9,20,5,15,109,77,90,113,251,213,62,19,35,60,1040
LGA22980,5,10,13,10,3,0,0,0,0,0,44,0,4,7,4,3,3,0,0,0,0,0,3,25,0,0,6,3,5,7,0,0,0,0,0,0,15,0,0,0,0,4,3,0,0,0,0,0,0,12,0,0,0,3,3,0,5,0,0,0,0,0,11,0,0,3,0,5,7,0,0,0,0,0,4,19,0,0,3,8,0,0,0,0,0,0,0,4,19,20,18,64,111,73,56,18,5,0,0,7,33,408
LGA23110,5,14,11,54,354,516,201,58,48,25,1303,7,0,5,10,10,30,228,496,306,107,73,38,1300,4,0,9,0,5,19,104,274,163,86,56,16,725,4,0,0,6,3,18,87,306,315,178,148,18,1088,3,0,0,6,9,7,44,157,221,239,324,27,1034,0,4,7,11,10,6,63,100,59,41,49,49,403,6,4,14,5,3,8,15,16,5,0,4,62,146,63,78,367,299,236,472,2170,2971,1560,801,801,431,10265
LGA23190,13,18,21,35,79,39,0,0,0,12,222,3,4,4,9,16,37,55,47,9,0,0,4,195,0,0,0,0,5,15,19,27,6,0,0,4,79,3,0,0,0,0,13,25,31,10,0,8,6,101,5,0,0,0,3,12,14,18,11,0,0,7,80,0,0,3,8,6,16,9,7,0,0,0,4,65,0,0,5,8,12,3,0,0,0,0,0,21,65,38,31,205,295,276,385,427,257,45,3,22,123,2114
LGA23270,17,22,26,61,532,1571,233,29,49,56,2606,0,5,12,13,12,37,395,1360,249,39,34,50,2209,0,3,7,4,7,13,192,747,145,26,15,28,1194,3,6,19,3,9,17,149,625,222,30,27,31,1138,7,0,6,11,3,6,70,339,165,38,27,33,691,6,3,11,22,7,22,133,395,118,20,23,107,857,3,3,17,7,7,12,41,52,9,0,4,101,249,102,106,609,525,318,703,4203,9569,1623,237,319,857,19173
LGA23350,5,9,8,25,38,21,6,0,0,4,123,0,0,5,3,8,8,37,38,8,3,0,3,118,0,0,0,0,0,12,20,14,6,0,0,0,52,0,0,0,3,3,6,16,19,4,0,0,3,48,0,0,0,6,0,0,3,12,5,0,0,3,32,0,0,0,3,0,5,16,6,5,0,3,0,47,0,0,3,0,3,0,8,0,0,0,0,8,26,17,12,91,112,100,155,254,172,40,11,13,47,1025
LGA23430,18,22,21,48,304,918,426,140,79,57,2031,0,0,15,11,15,35,208,795,591,221,129,42,2066,0,0,3,3,7,20,85,368,408,152,100,23,1163,0,0,9,10,10,11,76,385,489,298,204,25,1513,0,3,0,10,10,10,29,163,306,291,445,23,1288,4,0,11,4,3,7,40,148,130,81,70,67,558,0,3,18,9,3,11,11,23,6,5,7,71,168,79,83,566,427,273,618,2192,4875,3113,1386,1198,605,15405
LGA23670,14,22,15,27,209,972,402,70,33,29,1791,0,0,8,16,7,18,146,905,526,81,37,32,1777,0,0,3,7,3,7,86,465,357,78,24,11,1061,0,0,5,16,7,4,35,410,427,133,45,17,1114,5,0,6,3,3,3,14,157,256,107,70,17,650,3,0,7,14,3,13,33,194,138,35,20,39,508,5,0,11,0,3,4,14,13,11,0,6,63,132,80,72,462,321,214,382,1457,5230,2712,603,308,439,12279
LGA23810,16,51,103,171,219,149,27,4,0,16,774,11,5,14,31,50,116,189,122,21,4,3,17,571,0,0,3,9,24,48,67,65,27,3,0,0,252,0,0,6,11,15,26,62,77,21,3,0,11,229,0,3,6,16,10,30,29,54,31,0,7,8,192,0,0,14,25,30,62,71,43,6,0,0,23,285,10,3,42,43,24,27,14,5,0,0,4,59,234,140,142,828,1217,1125,1620,1495,788,185,19,36,322,7918
LGA23940,11,13,0,5,0,7,0,0,0,8,47,3,0,13,3,4,0,0,0,0,0,0,6,30,0,0,6,0,6,0,6,0,0,0,0,0,21,0,0,0,5,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0,0,7,14,14,29,95,77,49,38,27,12,3,0,0,35,377
LGA24130,8,9,11,23,62,118,54,10,10,11,307,3,5,5,6,6,9,39,120,67,32,10,12,302,0,0,4,3,0,0,17,39,64,13,6,7,156,0,0,3,4,0,0,18,55,61,31,20,7,194,0,0,5,5,3,3,11,40,67,50,36,9,216,0,3,0,0,0,3,6,35,27,18,6,9,104,0,0,8,3,6,0,6,3,6,0,0,18,51,23,24,115,119,73,145,367,737,454,178,102,134,2471
LGA24210,3,8,4,23,73,386,374,154,120,20,1165,0,0,4,8,10,8,50,423,389,195,132,32,1256,0,0,0,3,4,9,23,222,228,137,89,13,728,0,0,0,5,3,6,12,211,298,228,177,33,979,0,0,0,8,0,7,14,121,244,246,414,33,1086,0,0,3,7,0,4,14,75,116,81,73,43,416,0,0,0,3,0,4,8,22,8,4,5,32,90,28,12,109,137,94,154,529,2686,2429,1326,1220,421,9148
LGA24250,0,3,3,5,27,29,6,0,0,9,89,0,0,0,0,0,8,12,36,8,0,4,0,70,0,0,5,0,0,0,6,13,5,0,0,0,31,0,0,0,0,0,0,0,14,3,0,3,0,36,0,0,0,0,4,3,3,10,4,0,0,8,28,0,0,0,6,3,3,5,8,3,0,0,4,29,0,0,0,0,0,3,4,0,0,0,0,3,10,9,8,54,44,35,66,126,190,41,3,12,45,640
LGA24330,24,38,35,113,447,808,301,89,48,33,1942,5,5,11,15,11,63,313,695,490,127,84,29,1843,3,0,6,15,8,23,110,393,347,132,52,22,1102,0,4,11,4,5,19,109,403,482,254,119,22,1431,4,10,3,11,10,9,53,229,347,292,272,19,1260,7,0,18,23,12,26,82,145,128,57,46,53,594,0,4,33,9,8,14,7,15,7,4,7,56,164,122,153,788,542,418,986,2651,4071,2579,1070,732,463,14584
LGA24410,8,13,15,22,258,711,247,53,38,34,1411,0,0,5,6,9,16,175,737,333,63,34,22,1408,0,0,0,0,4,6,58,353,225,81,16,12,764,0,0,3,0,0,8,35,327,276,92,46,17,809,4,0,7,3,0,3,12,132,195,97,66,21,544,0,6,5,9,0,0,45,176,95,33,27,47,443,0,0,14,6,3,3,11,20,4,0,0,60,133,56,58,392,334,185,311,1752,4411,1814,488,302,401,10508
LGA24600,40,77,81,244,1404,2773,1058,347,306,121,6467,13,3,22,57,63,151,970,2623,1495,457,456,91,6386,3,0,10,23,15,44,252,868,732,298,287,31,2561,0,5,15,27,17,57,292,1121,1140,589,590,75,3928,8,0,12,13,14,28,173,780,968,746,1634,69,4454,3,0,18,24,26,44,142,424,306,179,346,120,1646,8,3,38,20,14,25,58,73,38,17,40,127,460,150,217,993,1068,1027,2413,9292,15692,8324,3423,4471,1337,48409
LGA24650,14,22,17,46,511,988,172,26,20,37,1855,5,0,8,3,9,37,373,853,176,23,21,37,1551,0,0,8,12,3,17,171,510,125,12,15,28,901,3,0,3,9,4,6,131,436,158,18,15,20,802,0,0,0,4,0,0,55,245,152,33,8,17,527,4,3,6,5,6,11,114,257,70,12,14,55,551,0,4,11,13,3,9,31,25,10,0,0,54,153,52,40,187,269,191,606,3653,5548,1150,166,151,473,12486
LGA24780,30,49,48,107,284,161,17,4,5,22,749,11,0,20,25,26,84,195,168,26,4,4,25,589,4,4,14,6,17,31,88,81,26,11,3,9,291,4,0,20,7,18,24,60,88,22,10,16,15,282,9,0,17,9,4,14,33,60,32,3,11,5,207,0,0,14,29,23,38,73,67,13,3,0,25,290,4,4,23,29,18,24,26,6,0,5,4,51,206,125,89,580,718,649,1119,1658,974,183,43,78,308,6532
LGA24850,3,10,18,67,137,227,20,3,9,9,506,0,0,3,7,16,58,112,187,14,7,0,13,419,0,0,0,5,0,37,61,105,16,7,7,9,237,0,0,0,5,0,23,41,121,19,5,0,7,224,0,0,5,0,0,3,18,57,22,5,3,9,118,3,0,5,8,4,26,41,63,11,3,3,15,182,0,0,9,4,5,9,16,6,5,0,0,27,83,31,29,189,153,168,485,938,1221,144,37,41,167,3606
LGA24900,14,33,30,53,60,55,4,4,4,13,273,0,0,10,15,16,40,61,37,9,0,0,18,218,0,0,10,11,5,17,33,32,8,0,0,5,117,0,0,5,5,13,12,22,30,0,0,3,5,96,0,0,10,5,7,3,6,19,3,0,4,4,64,0,0,9,14,4,26,22,23,0,0,0,10,112,5,0,16,12,3,10,10,0,0,0,0,24,79,28,20,294,379,291,496,486,321,43,10,24,151,2551
LGA24970,23,47,31,47,244,1054,593,214,136,64,2462,5,0,17,31,15,31,187,1009,811,339,213,64,2722,0,0,17,22,10,12,86,547,575,276,151,38,1738,3,3,14,23,13,13,78,592,840,467,273,50,2378,6,5,18,32,14,12,36,320,619,556,534,40,2189,4,6,22,31,5,11,52,232,248,149,126,110,1004,0,6,16,7,9,11,8,24,22,9,8,68,188,99,84,671,590,373,494,1650,6260,5040,2507,1814,799,20386
LGA25060,21,36,25,75,482,855,345,98,67,37,2047,4,8,9,13,12,62,331,879,474,156,101,37,2093,4,4,5,6,4,16,129,444,295,139,107,17,1172,3,0,4,11,7,14,94,467,485,263,179,29,1562,3,0,9,6,4,12,35,249,355,304,465,33,1492,4,3,17,13,8,18,75,152,107,64,72,45,573,9,0,34,11,5,13,8,23,5,4,0,73,185,132,159,767,471,342,812,2686,4764,2569,1179,1122,544,15555
LGA25150,14,6,4,19,84,159,19,5,4,14,322,0,0,0,5,8,11,67,119,20,3,3,4,245,0,0,5,0,0,7,18,80,9,4,6,0,129,0,0,0,3,0,5,35,74,12,0,5,10,148,4,0,0,0,0,8,21,54,13,3,4,0,107,5,0,0,0,7,4,15,42,3,0,0,8,83,0,0,8,6,3,12,3,3,0,0,0,20,53,20,20,139,121,93,245,599,826,101,22,23,121,2343
LGA25250,30,41,37,100,724,1723,613,192,171,63,3704,3,0,13,30,28,73,425,1676,873,318,223,57,3728,0,0,10,17,8,38,142,767,612,271,185,34,2072,8,5,16,21,22,32,158,886,860,533,401,49,2973,0,0,7,17,11,18,56,412,611,451,635,29,2260,3,5,19,25,15,21,100,303,272,171,260,97,1296,0,8,23,8,9,13,17,39,23,4,6,111,259,103,140,809,560,444,1076,4076,9056,4755,2227,2141,799,26179
LGA25340,9,12,14,82,252,628,297,109,78,43,1537,4,0,11,11,19,56,163,493,324,115,80,33,1310,3,3,10,9,9,42,75,214,199,90,74,22,743,9,0,6,0,5,36,54,191,221,110,134,25,770,4,0,8,10,0,11,29,98,156,114,281,33,739,4,3,11,17,8,28,86,176,98,53,61,42,589,4,8,20,11,13,21,56,28,12,0,10,85,260,87,69,521,370,276,801,2263,3739,1901,762,903,539,12234
LGA25430,4,3,0,15,34,52,12,0,0,0,131,0,0,0,0,6,0,38,35,14,0,0,3,111,0,0,0,0,0,4,12,14,9,3,0,0,41,0,0,6,5,0,0,12,20,4,0,3,0,45,0,0,0,0,0,3,3,16,9,0,4,0,44,0,0,4,3,0,0,12,15,10,0,0,5,52,0,0,4,0,0,7,0,0,0,0,0,10,28,19,18,116,90,67,143,364,285,81,16,14,59,1274
LGA25490,11,12,19,21,33,27,6,0,0,12,146,7,0,10,7,11,13,26,20,7,5,3,13,112,0,0,7,0,4,4,12,9,3,0,0,0,42,0,0,8,3,5,3,7,11,6,0,0,6,50,0,3,5,4,5,0,6,13,0,4,3,10,45,0,0,5,3,3,5,5,3,7,0,0,9,46,0,0,4,3,0,3,0,3,0,0,3,8,20,34,17,114,113,116,145,175,153,34,12,17,92,1024
LGA25620,0,3,10,16,22,25,5,0,0,6,83,0,0,3,7,0,11,26,17,0,0,0,12,76,0,0,4,3,0,0,8,13,3,0,0,0,33,0,0,0,0,0,4,8,6,3,0,0,0,25,0,0,5,0,3,0,3,8,0,3,3,5,30,0,0,3,0,4,4,11,7,0,0,0,8,42,0,0,0,0,3,3,0,3,0,0,0,7,22,19,6,63,70,92,152,205,134,21,8,14,56,843
LGA25710,0,5,4,3,21,100,55,28,15,10,239,0,0,0,0,4,3,18,72,66,37,15,3,216,0,0,0,3,0,0,0,41,47,29,12,7,139,0,0,4,0,0,0,5,43,63,57,33,4,214,0,0,4,5,0,4,0,18,53,61,60,8,220,0,0,3,0,0,0,8,17,25,13,15,14,92,0,0,0,0,3,0,7,0,0,0,0,4,19,14,9,73,57,43,61,186,498,423,261,176,88,1885
LGA25810,7,13,17,30,12,7,0,0,5,6,100,0,0,11,13,5,24,18,13,0,0,4,7,84,0,0,7,0,4,15,3,9,0,0,0,0,37,4,6,0,4,3,4,13,0,0,0,0,0,35,0,0,3,0,0,0,4,6,0,0,0,0,31,0,0,5,4,9,8,4,0,0,0,0,0,31,0,5,5,9,3,5,0,0,0,0,0,11,37,20,20,139,242,136,202,128,44,9,4,17,70,1029
LGA25900,24,23,33,125,667,1461,630,220,209,59,3467,3,0,10,25,21,73,386,1270,1031,352,358,55,3576,0,0,7,6,4,27,91,412,517,241,202,21,1530,0,0,6,12,3,28,110,528,760,553,614,41,2657,3,0,12,18,7,22,60,290,574,642,1800,48,3477,0,5,21,12,17,14,57,149,166,106,230,63,839,7,0,44,7,15,14,28,25,16,9,8,121,301,113,151,1046,572,550,1157,3685,6457,4584,2440,3863,779,25402
LGA25990,0,5,4,12,6,0,0,0,0,5,36,0,0,0,4,5,3,7,3,0,0,0,4,32,0,0,6,0,0,0,4,5,0,0,0,0,12,0,0,0,0,0,0,3,4,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,3,4,4,4,0,5,0,0,0,0,19,0,0,0,3,0,0,0,0,0,0,0,0,10,12,9,54,59,49,66,60,21,0,0,4,27,354
LGA26080,0,0,0,0,5,16,5,0,4,0,32,0,0,0,0,0,0,3,11,5,0,0,0,22,0,0,0,0,0,0,0,4,0,0,0,0,10,0,0,0,0,0,0,0,7,3,0,0,0,15,0,0,0,0,0,0,0,8,13,3,5,0,28,0,0,0,0,0,0,0,3,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,6,5,0,5,13,6,11,42,74,28,4,8,14,219
LGA26170,4,15,8,46,72,32,5,0,0,11,199,6,0,5,5,9,25,38,32,7,3,7,10,146,0,0,4,3,4,6,17,20,3,0,0,11,68,0,0,0,3,4,3,22,17,7,0,3,7,72,0,0,0,0,0,8,9,18,3,0,0,5,45,0,0,0,0,6,8,25,17,0,0,6,3,64,0,0,9,6,5,9,5,4,0,0,0,20,57,34,34,159,175,169,383,477,237,36,5,26,141,1875
LGA26260,10,15,17,40,33,14,0,0,0,5,155,5,0,11,4,18,27,29,22,0,0,0,6,122,0,3,0,7,4,9,20,16,3,0,0,5,56,0,0,0,4,3,0,15,9,0,0,0,0,31,0,0,0,0,3,3,0,4,3,0,3,3,37,5,0,9,10,4,9,12,7,0,0,0,4,56,6,0,11,8,7,6,0,0,0,0,0,11,48,40,29,206,224,176,266,233,96,25,8,10,81,1397
LGA26350,13,29,18,91,604,1171,454,170,203,49,2819,4,7,8,20,17,58,372,1228,714,295,274,47,3035,3,0,0,8,8,24,91,401,446,202,207,29,1426,0,6,10,8,11,24,110,497,642,502,504,24,2336,7,0,10,13,12,22,61,317,504,581,1746,49,3315,3,3,12,20,4,13,39,127,150,104,250,47,770,5,3,21,15,5,7,23,20,9,10,16,75,209,85,114,606,460,330,876,3232,5709,3695,2163,3634,574,21470
LGA26430,4,7,8,18,22,19,3,0,0,6,98,0,0,0,3,0,4,17,19,9,0,4,4,59,0,0,0,0,0,0,13,7,0,0,0,0,28,0,0,0,0,0,0,5,8,3,0,0,7,35,0,0,0,0,0,5,3,0,4,0,5,4,23,0,0,5,0,0,8,16,0,0,0,0,4,36,4,0,0,4,0,0,5,0,0,0,0,14,25,25,13,75,92,72,148,193,121,26,3,9,69,844
LGA26490,8,7,8,11,21,64,94,38,14,12,282,0,0,5,4,7,9,21,61,87,62,21,11,310,0,0,6,6,0,4,9,37,79,44,5,3,197,0,0,6,0,6,4,10,34,111,83,43,11,309,0,0,4,3,0,4,8,27,79,108,94,18,347,0,0,0,0,5,4,6,33,45,25,16,14,145,0,0,0,0,0,0,5,6,3,4,0,9,28,23,8,76,79,80,118,219,445,671,442,232,122,2503
LGA26610,32,40,25,62,48,21,0,0,0,18,261,0,7,15,16,22,48,62,38,8,0,0,16,235,3,3,3,10,3,20,29,20,8,3,0,3,120,6,5,13,9,3,16,31,26,7,0,8,6,122,0,7,3,3,3,7,17,12,7,0,4,6,68,0,6,14,19,7,15,14,15,3,0,5,12,111,0,3,13,12,4,10,3,0,0,0,0,23,75,48,89,294,366,251,432,370,199,50,15,16,169,2290
LGA26670,5,8,9,5,9,0,0,0,0,4,42,4,0,0,4,3,8,7,3,0,0,0,4,38,0,0,5,8,0,8,9,0,0,0,0,0,19,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,4,0,0,0,0,0,0,0,6,13,3,53,68,50,71,68,15,3,0,7,21,366
LGA26700,4,17,20,56,95,76,3,0,0,15,297,4,0,4,8,22,42,72,73,7,0,5,11,248,0,0,0,3,4,12,27,42,7,4,0,5,109,0,0,0,0,8,20,27,44,19,0,4,0,116,7,0,0,4,8,10,19,24,17,0,3,9,95,0,0,8,12,9,20,25,23,6,0,0,9,107,0,0,12,12,4,6,0,6,0,0,0,20,57,44,25,228,317,288,526,569,430,72,9,22,149,2680
LGA26730,9,21,21,57,163,162,28,3,5,10,493,4,0,8,8,19,29,116,134,35,0,7,12,373,0,0,5,0,7,21,56,93,27,3,0,9,221,0,5,0,8,4,11,27,72,30,14,7,7,180,0,0,10,3,0,10,17,56,26,13,7,0,144,0,0,8,6,5,13,27,45,18,7,0,8,142,7,3,15,6,9,14,13,5,0,4,0,30,99,60,41,341,287,305,596,982,904,235,50,34,163,3999
LGA26810,16,34,25,83,129,87,21,0,0,19,428,4,0,5,15,18,50,77,99,18,0,3,22,316,0,0,3,4,5,25,38,43,9,3,0,8,138,0,0,3,5,5,29,45,50,19,0,0,8,165,0,3,4,3,4,10,24,35,11,6,0,19,119,0,0,9,15,9,25,52,26,5,0,0,9,152,0,3,16,6,9,19,6,4,0,0,0,30,107,51,41,309,425,387,771,830,545,115,12,24,209,3715
LGA26890,9,0,0,3,0,0,0,0,0,7,30,4,0,7,3,3,4,0,0,0,0,0,0,19,0,0,0,7,0,0,0,0,0,0,0,3,11,0,0,3,0,0,0,0,0,0,0,0,0,9,4,0,0,0,3,0,0,0,0,0,0,0,6,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,14,22,68,47,32,16,6,0,0,0,5,29,242
LGA26980,14,33,29,54,264,1054,462,149,95,57,2217,0,4,18,40,16,47,195,1003,624,249,119,41,2351,0,0,16,21,4,25,100,519,472,181,99,29,1459,0,4,8,11,7,22,76,499,640,308,201,30,1811,5,5,12,17,3,7,43,295,460,369,409,35,1649,5,0,18,24,18,11,33,207,181,84,105,91,773,3,4,12,4,9,16,14,26,23,7,4,56,177,105,106,691,588,440,656,1896,6298,3968,1670,1308,737,18467
LGA27070,11,18,16,62,609,1660,236,27,42,54,2760,3,3,9,16,13,46,450,1666,265,39,51,57,2612,0,5,15,3,0,17,217,913,201,19,33,30,1462,0,8,18,9,9,21,166,876,228,34,31,35,1436,7,3,15,9,4,5,65,412,209,46,24,25,824,0,0,20,12,11,18,124,450,113,19,16,99,885,0,0,0,6,4,11,27,64,3,0,4,102,226,75,54,300,338,233,515,4112,10301,1733,257,315,809,19038
LGA27170,5,20,37,147,210,248,20,4,3,15,726,0,3,0,12,29,96,191,230,43,5,0,8,622,0,0,0,12,9,41,87,136,26,0,5,5,310,0,0,0,4,4,24,66,114,56,8,5,6,289,3,0,4,3,3,6,18,59,25,7,7,6,143,0,3,12,11,7,43,50,70,13,4,0,16,229,0,0,13,10,4,13,7,4,3,0,0,40,103,52,69,385,402,384,1039,1273,1269,247,33,29,212,5393
LGA27260,30,30,21,78,1040,2369,260,33,73,74,4028,6,3,11,32,16,67,806,2508,376,56,63,79,4026,0,7,19,10,14,33,329,1521,262,34,52,44,2319,4,3,17,10,9,30,266,1621,393,70,53,39,2518,4,0,17,8,9,17,133,968,401,135,69,44,1786,5,5,12,20,14,28,219,774,135,31,24,146,1412,3,0,12,9,3,18,34,63,9,4,9,128,289,86,74,435,415,284,835,6622,14893,2288,439,471,955,27795
LGA27350,24,35,17,65,397,976,434,194,193,47,2395,5,0,9,17,20,53,207,994,780,442,326,41,2896,3,3,13,9,4,28,63,274,472,346,336,23,1574,0,0,6,16,13,22,71,371,696,732,745,35,2717,6,0,9,10,10,25,64,228,560,800,2079,33,3821,0,4,30,31,10,28,45,90,151,160,489,73,1114,3,4,33,8,7,8,4,17,9,7,12,73,183,147,320,1332,816,447,736,2074,4314,3701,2946,4484,609,21920
LGA27450,23,17,17,31,154,547,186,24,20,39,1061,0,0,11,13,20,30,106,481,219,53,22,34,991,4,0,0,4,9,10,44,248,157,32,31,10,548,0,0,8,5,15,14,41,155,165,68,32,11,516,0,0,0,5,4,3,17,93,91,41,32,5,296,0,0,5,10,12,8,41,145,68,24,16,35,369,0,4,8,9,0,9,13,16,10,5,0,40,110,56,58,321,303,271,435,1264,3046,1240,293,204,386,7880
LGA27630,8,9,4,8,3,0,0,0,0,6,39,8,0,4,11,5,4,0,0,0,0,0,0,37,0,0,0,4,0,7,0,0,0,0,0,0,14,0,0,4,6,4,0,0,0,0,0,0,0,13,0,0,4,0,0,0,0,0,0,0,0,4,7,3,0,0,3,3,0,0,0,0,0,0,0,11,5,0,0,0,3,0,0,0,0,0,0,12,17,37,14,95,135,70,35,9,4,0,0,5,43,452
LGA29399,0,4,0,0,0,0,0,6,3,4,10,0,0,4,0,0,0,0,0,0,0,6,6,17,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,7,4,17,0,0,0,0,0,3,0,3,0,0,19,5,36,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,6,13,9,12,4,10,3,0,51,24,138
LGA29499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA29799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA30250,11,0,0,0,0,0,0,0,0,5,19,0,0,3,0,0,0,0,0,0,0,0,3,11,3,4,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,7,0,0,9,10,0,0,0,0,0,0,0,0,22,0,0,3,0,0,0,0,0,0,0,0,0,4,25,15,113,33,4,0,0,0,0,0,0,22,220
LGA30300,8,8,7,11,10,5,0,0,0,11,82,7,3,3,3,4,8,10,0,0,0,0,5,56,7,3,0,0,6,6,4,0,0,0,0,4,33,6,0,0,0,0,10,7,0,0,0,0,3,33,0,0,0,0,3,6,0,0,4,0,0,4,30,4,0,0,0,3,8,4,0,0,0,0,5,34,6,0,0,0,0,0,0,0,0,0,0,3,4,52,23,75,80,84,104,73,19,4,0,4,70,590
LGA30370,12,22,15,35,40,26,0,0,0,13,192,15,21,17,16,20,35,49,33,7,0,0,27,232,9,8,4,4,9,18,23,17,7,0,0,4,102,9,19,13,7,8,13,30,39,7,0,0,18,163,3,12,16,3,3,10,15,49,11,0,0,14,143,0,7,3,14,16,17,21,22,4,0,6,10,109,0,0,8,3,0,3,0,6,0,0,0,13,34,86,88,200,164,151,242,273,220,31,3,6,167,1643
LGA30410,5,8,3,3,0,0,0,0,0,8,40,10,3,4,0,7,3,7,0,0,0,0,13,47,7,0,0,0,0,5,0,3,0,0,0,4,18,6,7,0,0,0,6,6,3,0,0,0,7,29,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,5,3,0,3,0,3,0,0,0,10,28,0,0,0,0,0,5,0,0,0,0,0,0,12,46,22,38,53,28,34,17,7,5,0,4,64,322
LGA30450,0,0,0,0,0,0,0,0,0,3,8,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,6,3,8,6,13,6,0,0,0,0,0,0,4,19,48
LGA30760,3,10,8,0,0,0,0,0,0,3,27,5,0,4,4,0,0,0,0,0,0,0,9,23,0,0,0,6,0,0,0,0,0,0,0,5,8,6,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,16,0,4,0,4,0,0,0,0,0,0,0,0,6,24,14,36,72,20,17,4,6,0,0,4,32,224
LGA30900,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,11,4,16,5,5,0,0,0,0,0,4,17,64
LGA31000,201,346,296,785,3333,11584,5361,1491,799,424,24682,18,17,131,223,204,497,2072,10677,7220,2356,1229,359,25001,9,10,80,108,103,254,762,4839,4555,1799,973,171,13663,18,5,86,134,94,273,726,4483,5585,3115,2180,242,16942,19,6,63,100,85,141,361,2035,3415,3080,5378,249,14925,33,18,132,207,134,233,578,2558,2343,1184,1174,512,9114,31,41,178,79,60,98,127,291,158,58,83,585,1788,1231,1314,6809,5496,3718,7913,21733,60723,37059,15484,13251,4994,179709
LGA31750,0,7,0,0,0,0,0,0,0,5,8,0,0,0,5,0,0,0,0,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,8,23,0,4,0,0,0,0,3,21,61
LGA31820,26,41,54,186,548,283,35,6,24,33,1255,11,6,17,16,26,106,355,279,38,4,10,38,904,0,0,9,13,10,43,143,148,33,9,9,17,436,0,0,11,6,13,26,111,112,31,14,14,16,359,3,3,15,9,9,22,76,69,35,10,24,14,300,0,5,25,18,18,59,169,116,23,5,3,38,472,4,7,25,30,12,53,54,6,0,0,0,85,289,130,159,594,778,845,2011,3626,1674,281,84,115,481,10782
LGA31900,20,16,29,48,42,14,0,0,0,9,178,10,0,12,13,21,46,40,20,3,0,0,7,176,9,4,3,5,12,13,20,10,7,0,0,0,80,10,4,3,3,3,11,19,10,3,0,0,3,77,11,0,0,5,4,19,3,11,0,0,0,6,62,7,0,3,14,11,11,28,5,0,3,0,5,85,0,3,6,3,6,8,4,0,0,0,0,9,40,68,35,139,255,299,418,259,77,23,3,6,87,1663
LGA31950,0,0,0,0,0,0,0,0,0,3,11,0,0,7,0,0,0,0,0,0,0,0,3,18,0,0,0,0,0,3,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,15,14,5,7,0,3,0,0,0,24,83
LGA32080,31,61,69,250,588,1138,414,80,41,67,2762,4,9,25,32,54,150,441,934,484,125,56,60,2379,3,5,15,19,16,68,151,405,300,96,41,22,1147,9,4,16,16,13,37,120,354,356,137,82,29,1160,6,5,8,15,10,43,55,173,218,122,176,28,853,6,15,39,57,39,122,199,415,257,89,56,75,1370,3,9,36,34,25,46,51,38,17,4,3,113,372,201,232,931,1170,1069,2691,4376,6111,2688,804,552,825,21654
LGA32250,6,10,3,9,8,5,0,0,4,9,58,11,0,0,5,7,5,6,0,0,0,3,3,42,0,0,4,3,0,5,0,0,0,0,3,6,22,10,6,0,0,0,4,0,0,0,0,0,9,26,5,0,0,6,3,4,0,5,0,0,0,4,28,3,3,7,3,8,3,9,3,0,0,0,5,50,0,0,0,0,0,0,0,3,0,0,0,0,12,40,24,46,63,33,48,39,20,3,4,12,68,409
LGA32260,8,19,49,105,132,48,12,0,8,17,408,3,3,15,13,21,67,85,62,6,0,8,22,296,6,9,7,0,4,24,41,34,9,0,5,4,145,4,0,9,3,4,29,32,34,11,0,8,7,152,3,0,7,10,3,9,17,25,8,6,13,11,111,0,8,4,24,15,30,62,30,4,0,4,7,190,0,0,3,17,11,19,16,5,6,5,0,18,114,60,49,168,414,410,847,840,385,87,25,73,192,3547
LGA32270,39,28,40,74,112,115,18,0,7,55,552,80,22,45,34,26,64,124,129,28,3,11,78,631,32,8,15,5,20,18,59,70,27,7,0,20,282,125,32,19,21,17,30,62,112,47,7,0,29,505,151,28,22,18,9,21,44,67,43,8,3,41,456,40,8,18,23,18,32,39,83,26,6,3,26,308,5,7,7,10,5,3,0,3,0,0,0,27,61,532,164,321,307,287,489,678,723,197,43,30,388,4161
LGA32310,14,12,26,32,31,21,4,0,0,14,159,8,3,13,11,12,34,23,14,0,0,0,12,134,4,5,5,0,0,15,13,8,4,0,3,3,73,3,10,7,5,3,9,16,11,0,0,0,12,76,8,0,7,3,3,3,9,11,6,0,0,3,54,3,4,4,11,11,16,12,12,0,0,0,7,77,0,0,3,0,4,5,0,0,0,0,0,7,26,45,38,145,181,175,246,154,104,17,3,15,111,1235
LGA32330,16,5,0,0,0,0,0,0,0,0,25,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,20,63,183,33,3,0,0,0,0,0,0,3,307
LGA32450,0,5,7,4,13,3,0,0,0,16,66,10,0,10,4,5,6,18,12,8,0,0,17,83,4,0,0,0,0,3,10,11,4,0,0,0,27,11,0,0,0,0,0,8,12,4,0,0,7,46,7,0,0,6,0,3,4,7,0,0,0,3,28,4,3,5,4,8,4,6,5,0,0,0,3,34,0,0,4,0,0,0,4,4,0,0,0,5,23,58,22,48,49,50,52,70,60,17,0,5,89,526
LGA32500,6,0,3,6,13,19,0,0,3,19,94,23,0,4,3,4,3,9,15,0,0,7,22,96,4,0,4,4,6,4,7,0,0,0,4,7,34,16,0,3,4,3,5,0,3,7,0,0,12,52,7,0,0,0,0,3,3,3,6,0,9,12,40,3,3,3,9,6,0,9,7,0,0,0,0,43,0,0,3,0,4,0,0,0,0,0,0,6,17,97,20,82,60,45,51,73,63,18,8,25,130,672
LGA32600,0,0,0,0,0,0,0,0,0,5,11,5,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,9,7,6,0,0,0,0,0,0,12,46
LGA32750,5,3,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,3,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,8,9,0,0,4,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,12,3,14,9,0,3,5,3,0,0,0,26,73
LGA32770,10,9,0,0,0,0,0,0,0,0,28,5,3,13,3,0,0,0,0,0,0,0,0,20,8,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,7,0,0,0,0,0,0,0,0,0,11,3,5,3,0,3,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,5,61,26,84,61,6,3,0,0,0,0,0,9,260
LGA32810,5,4,8,19,35,72,32,13,15,6,224,0,3,0,7,0,3,28,54,32,5,13,4,160,0,0,0,4,0,4,12,29,21,5,16,9,89,0,0,0,0,0,5,0,14,10,8,14,10,65,0,0,0,0,3,7,4,8,12,6,50,11,106,0,0,3,3,4,8,13,25,13,3,4,5,81,0,0,0,5,4,7,6,3,0,0,5,17,39,30,28,67,133,90,196,321,358,159,58,142,113,1688
LGA33100,0,0,0,0,0,0,0,0,4,9,20,0,0,0,0,4,4,0,0,0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,6,0,10,0,0,0,0,3,0,0,0,0,0,6,0,12,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,5,12,0,8,18,9,11,7,0,0,0,19,39,119
LGA33200,0,9,10,3,0,0,0,0,0,8,37,0,0,0,0,0,3,5,0,0,0,0,6,20,0,0,3,0,0,0,0,0,0,0,0,3,9,0,3,0,0,0,0,0,0,0,0,0,4,7,6,0,0,0,0,0,0,0,0,0,0,4,12,7,0,0,5,5,0,0,0,0,0,0,0,11,0,0,3,3,0,0,0,0,0,0,0,0,9,17,16,19,54,27,9,9,9,0,0,3,42,198
LGA33220,16,32,40,124,354,467,78,11,17,31,1181,0,0,7,7,27,76,215,390,71,10,22,25,859,0,0,0,6,8,21,91,182,34,10,15,10,385,3,0,3,0,6,13,67,139,57,11,13,12,326,5,0,9,11,6,12,31,96,42,18,30,19,273,0,0,11,20,13,51,147,207,41,13,4,30,536,6,6,29,20,22,62,53,32,7,3,0,74,316,107,87,538,671,757,1722,3083,2949,465,115,164,488,11143
LGA33360,34,82,93,177,333,220,13,0,12,30,1008,7,4,21,39,46,115,281,265,36,6,7,46,870,0,5,23,9,8,33,131,149,24,5,8,15,419,5,5,12,16,9,40,127,169,48,11,16,32,481,4,0,8,19,5,30,78,108,50,13,25,22,362,0,4,15,25,24,70,121,122,24,5,4,31,449,4,4,16,18,7,14,21,12,0,0,0,48,136,145,96,508,987,791,1258,2091,1448,239,58,112,387,8123
LGA33430,52,88,92,138,669,3823,3709,1367,832,216,11007,13,6,29,46,56,99,347,2895,3678,1620,1155,168,10112,4,0,17,34,19,51,114,1209,1998,1023,885,96,5452,4,0,19,21,23,42,91,859,1755,1257,1387,115,5570,8,0,13,28,19,29,64,397,797,812,2021,103,4289,9,0,48,67,53,51,169,949,1229,728,759,306,4366,16,13,58,43,27,39,82,197,102,55,61,348,1030,325,370,1848,1586,1242,2081,6497,23035,20728,9439,8775,2629,78555
LGA33610,7,8,14,20,43,18,4,0,0,15,145,13,4,6,8,8,18,31,30,13,0,0,5,134,0,4,8,6,4,5,13,18,4,0,0,8,70,11,0,3,0,0,5,9,18,7,0,4,9,77,0,0,0,0,0,6,7,8,4,0,3,4,37,0,0,3,5,4,13,18,14,3,0,0,12,74,3,0,0,4,4,0,3,0,0,0,0,8,24,55,33,105,129,131,193,241,161,48,3,8,112,1208
LGA33620,8,15,18,56,186,138,16,0,3,16,462,4,3,7,11,18,26,119,123,27,0,9,15,356,0,0,6,9,6,10,40,53,18,4,0,7,153,7,0,0,8,6,14,26,49,14,3,6,0,132,0,0,0,0,4,9,16,31,19,0,6,16,107,5,0,9,8,5,20,68,70,17,6,0,24,228,3,0,10,14,8,14,13,0,0,0,0,19,91,55,46,219,353,404,809,1453,886,146,23,52,215,4666
LGA33800,12,13,21,19,23,9,3,0,0,6,120,5,4,5,6,9,22,18,6,0,0,0,7,84,0,0,8,7,11,13,5,0,0,0,0,0,45,11,0,3,5,6,8,6,5,0,0,0,7,48,7,4,0,0,0,3,8,0,0,0,3,0,28,4,0,3,5,3,6,12,4,0,0,0,0,37,0,0,8,12,3,6,0,0,0,0,0,9,43,50,26,126,246,169,256,130,32,5,0,11,72,1118
LGA33830,8,4,0,0,0,0,0,0,0,0,25,0,4,10,3,0,0,0,0,0,0,0,0,19,3,0,0,5,0,0,0,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,8,3,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,4,4,36,45,91,43,7,3,6,0,0,0,0,14,241
LGA33960,34,63,53,421,1502,2027,199,30,22,85,4449,5,0,20,25,25,296,1013,1936,332,46,21,57,3773,0,0,4,16,13,156,428,999,218,38,15,23,1920,6,0,9,4,6,127,297,846,280,77,21,26,1695,7,0,22,14,11,42,133,364,156,70,49,28,894,8,3,25,35,36,180,401,605,121,37,16,104,1576,8,10,41,17,15,67,82,55,10,0,3,138,445,165,188,855,887,849,4331,9805,10745,1620,368,195,937,30950
LGA33980,33,21,19,35,49,65,23,4,4,46,399,254,28,46,19,13,38,68,75,36,14,14,79,677,80,23,22,6,11,17,28,39,14,12,4,11,265,316,20,43,19,8,18,46,58,43,13,10,53,637,508,74,59,9,7,19,48,53,36,30,31,60,921,91,21,8,8,8,23,31,23,14,6,7,15,264,7,3,3,4,6,0,0,7,0,0,0,23,54,1422,223,296,154,140,231,358,393,184,75,74,364,3918
LGA34420,6,4,0,0,0,0,0,0,0,0,22,6,0,8,0,0,0,0,0,0,0,0,6,16,5,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,10,0,0,3,4,0,0,0,0,0,0,0,3,17,4,5,8,0,0,0,0,0,0,0,0,9,23,46,28,86,28,0,0,0,0,0,0,0,25,215
LGA34530,3,0,14,21,90,143,56,9,12,16,364,4,0,4,8,12,14,57,153,71,12,22,23,374,0,0,0,0,5,3,24,69,50,7,5,5,174,3,0,0,3,0,9,25,86,38,24,11,11,216,0,0,0,4,5,0,10,37,45,23,12,7,160,3,0,5,0,9,14,35,90,69,19,11,13,265,0,0,3,5,3,4,8,3,4,3,0,15,45,39,38,119,186,157,290,663,930,401,104,79,161,3163
LGA34570,5,6,0,0,0,0,0,0,0,4,19,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,25,6,44,19,4,0,0,0,0,0,5,13,119
LGA34580,10,16,21,60,155,102,19,5,4,13,400,0,0,6,7,13,37,120,95,27,6,4,7,318,0,0,6,0,4,12,54,38,13,6,0,11,150,0,0,14,4,9,10,37,41,11,0,0,10,137,0,0,18,0,5,9,30,40,14,5,8,4,129,0,0,10,3,3,27,73,56,18,6,8,20,229,0,0,5,5,7,5,15,4,0,0,0,11,59,18,18,181,125,194,468,1216,637,158,37,37,162,3256
LGA34590,54,93,55,190,1456,2819,466,122,44,100,5436,8,7,28,45,29,103,914,2451,552,149,70,72,4429,6,3,20,15,14,42,390,1216,347,107,39,48,2242,8,0,6,11,14,38,234,952,379,130,68,29,1864,0,3,14,7,9,21,102,408,184,121,99,31,995,11,12,36,57,30,72,425,957,222,90,52,182,2145,11,13,54,25,14,60,82,110,7,8,9,223,609,326,387,1440,1315,795,2634,10748,15808,2981,895,497,1359,39190
LGA34710,6,14,10,9,18,3,0,0,0,10,75,22,0,4,4,9,8,8,7,4,0,0,9,73,12,0,0,0,0,6,11,0,0,0,0,3,39,6,3,4,3,0,9,8,5,3,0,0,0,39,4,6,3,0,7,0,0,5,0,0,0,4,24,4,0,4,0,3,10,9,0,0,0,0,3,39,0,3,4,0,0,3,0,0,0,0,0,3,18,61,29,69,70,53,89,70,26,12,4,11,68,561
LGA34770,28,45,66,157,358,624,181,27,15,44,1558,16,4,18,40,39,97,302,636,269,35,24,47,1530,3,0,8,14,25,41,128,355,186,31,9,16,830,8,0,14,23,25,40,94,345,265,66,17,30,928,3,0,11,13,14,26,64,201,192,79,52,23,687,5,3,26,40,30,67,160,388,216,59,16,72,1077,0,3,25,18,14,20,19,22,9,0,0,67,216,172,132,607,824,738,1385,2388,3682,1572,339,172,576,12580
LGA34800,0,0,4,0,0,0,0,0,0,0,12,0,0,0,0,4,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,3,7,0,0,4,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,19,4,16,4,0,0,0,0,0,29,85
LGA34830,6,9,0,0,0,0,0,0,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,4,15,7,44,23,0,0,0,0,0,0,0,9,95
LGA34860,15,26,25,39,45,19,0,0,4,30,228,11,12,11,20,22,25,45,34,0,0,0,38,215,13,3,10,13,5,13,29,17,0,0,0,7,108,21,3,14,14,3,20,26,27,0,0,0,14,145,10,6,3,4,7,4,14,19,0,0,0,15,90,5,5,8,11,13,15,22,21,0,0,0,11,116,0,0,7,8,0,3,0,0,0,0,0,11,26,97,46,144,295,190,237,273,164,20,5,9,190,1670
LGA34880,16,15,11,26,77,65,15,4,0,9,247,5,0,3,3,15,19,41,46,7,3,3,9,158,0,7,5,3,8,9,17,35,4,4,0,3,96,0,0,7,3,3,8,14,31,7,0,0,0,79,6,3,9,5,0,7,10,11,3,4,3,7,70,3,0,3,16,9,23,33,34,8,0,0,12,139,0,4,0,11,3,10,9,0,0,0,4,15,68,55,51,172,255,182,288,484,363,73,22,18,124,2083
LGA35010,36,99,67,378,1519,4013,964,179,82,104,7475,13,3,27,38,36,226,881,3478,1176,232,112,100,6327,4,0,19,21,14,125,300,1617,781,209,109,60,3254,5,3,31,22,17,83,236,1279,885,313,142,50,3061,9,8,37,19,9,32,121,556,508,255,246,53,1853,6,7,65,47,40,129,429,1254,470,151,94,169,2871,11,13,69,25,41,75,136,113,32,10,9,244,761,338,357,1822,1524,1233,3879,12206,21807,6261,1624,963,1583,53605
LGA35250,3,0,0,0,0,0,0,0,0,4,17,6,0,5,0,0,0,0,0,0,0,0,4,11,0,0,0,4,0,0,0,0,0,0,0,0,9,8,0,0,3,0,0,0,0,0,0,0,0,17,0,0,3,0,0,0,0,0,0,0,0,3,5,8,3,12,6,0,0,0,0,0,0,0,0,30,0,3,0,3,0,0,0,0,0,0,0,0,8,64,27,91,23,0,4,4,0,0,0,3,17,230
LGA35300,21,26,38,59,62,67,36,10,5,34,406,36,3,14,45,30,58,68,116,46,13,12,54,491,24,4,10,7,6,18,34,68,35,13,0,14,224,61,18,5,3,13,28,46,84,85,26,10,19,396,34,15,10,16,5,16,17,70,70,43,14,24,334,10,0,15,12,12,23,22,37,21,20,3,8,187,4,0,4,4,0,0,7,0,0,0,0,18,47,252,104,223,286,222,346,387,561,314,122,51,253,3122
LGA35600,10,19,18,8,3,0,0,0,0,12,82,11,4,3,10,5,7,0,3,0,0,0,7,52,7,5,0,4,8,0,7,0,0,0,0,0,24,12,5,8,4,9,3,3,0,0,0,0,5,35,3,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,6,7,4,0,0,0,0,0,0,25,0,0,3,10,0,0,0,0,0,0,0,9,20,59,24,62,119,86,52,19,7,0,0,7,51,495
LGA35670,3,4,0,0,0,0,0,0,0,0,11,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,12,7,3,0,0,0,0,0,0,3,34,3,4,18,14,0,0,0,0,0,0,0,0,46,17,22,72,47,6,5,6,0,0,0,0,13,189
LGA35740,0,9,8,10,41,148,181,102,108,26,622,0,0,0,3,3,9,22,91,171,105,118,21,547,0,0,0,4,0,0,11,31,76,64,66,10,257,0,0,4,0,0,0,15,28,47,76,139,13,327,0,0,3,0,0,4,8,17,28,29,273,15,380,4,0,3,15,5,0,13,42,57,50,64,21,273,0,0,10,3,0,3,0,7,15,10,13,19,82,40,30,174,135,112,176,379,914,1057,640,1005,228,4897
LGA35760,10,11,13,19,15,5,0,0,0,13,107,4,6,10,10,15,12,18,0,0,0,0,5,80,3,0,11,0,4,14,3,3,0,0,0,0,31,3,3,14,4,0,6,7,0,0,0,3,8,47,0,5,3,0,0,4,9,6,0,0,4,6,35,0,0,4,3,3,10,4,3,0,0,0,3,40,0,0,3,4,0,7,3,10,4,5,0,4,44,43,41,165,188,142,179,105,40,9,4,12,96,1019
LGA35780,32,17,0,6,3,0,0,0,0,8,76,12,10,19,17,0,0,0,0,0,0,0,8,67,11,0,13,4,0,0,0,0,0,0,0,3,41,15,0,16,9,0,0,0,6,0,0,0,4,47,4,3,7,8,6,0,0,0,0,0,0,4,29,18,4,25,20,0,0,0,0,0,0,0,3,79,0,3,3,8,0,0,0,0,0,0,0,5,20,91,54,281,147,13,11,11,11,0,0,4,51,673
LGA35790,18,14,0,5,0,0,0,0,0,0,52,7,0,17,10,5,0,0,0,0,0,0,3,37,0,0,6,3,0,0,0,0,0,0,0,0,17,0,0,0,5,0,4,0,0,0,0,0,0,18,0,0,0,3,0,0,0,0,0,0,0,0,13,3,0,11,8,3,0,0,0,0,0,0,4,32,0,0,0,4,0,0,0,0,0,0,0,3,4,50,53,187,129,9,8,0,0,0,0,0,16,458
LGA35800,5,5,3,0,0,0,0,0,0,13,26,6,0,4,0,4,0,0,0,0,0,0,3,24,0,0,0,0,0,7,0,0,0,0,0,0,9,3,0,0,0,3,0,0,0,0,0,0,3,13,5,0,0,5,0,0,0,0,0,0,0,3,8,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,6,0,0,0,0,0,0,0,0,0,4,34,20,73,51,18,17,7,0,0,0,9,34,264
LGA36070,6,5,0,0,0,0,0,0,0,0,17,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,3,9,26,12,42,28,0,0,0,0,0,0,0,25,137
LGA36150,0,0,0,0,0,0,0,0,0,3,7,0,0,7,3,0,0,0,0,0,0,0,5,14,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,4,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,16,4,31,26,3,0,3,0,0,0,3,14,96
LGA36250,18,25,17,38,111,725,620,111,40,37,1739,4,0,4,3,11,22,71,566,731,157,70,27,1669,3,0,4,7,5,14,28,216,462,131,56,19,931,0,0,0,6,8,8,19,184,446,187,110,14,980,9,0,0,4,3,9,11,79,193,151,179,14,651,3,0,11,23,11,42,57,180,248,78,58,45,755,5,4,25,15,13,23,13,32,17,4,5,78,223,131,124,671,536,376,776,1180,4075,3664,996,595,455,13577
LGA36300,0,3,0,3,0,0,0,0,0,4,15,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,15,11,3,4,0,5,0,0,5,15,68
LGA36370,24,41,73,211,396,317,54,4,5,55,1205,0,3,18,33,59,140,315,325,69,10,11,39,1018,6,0,7,7,13,47,134,204,49,10,3,12,492,0,0,5,16,12,38,112,182,59,22,0,20,470,3,3,12,14,14,28,60,103,50,33,11,19,346,0,6,19,34,40,63,176,166,53,18,0,27,601,5,3,22,27,13,30,28,14,4,0,5,68,224,167,154,536,793,837,1805,2513,1952,415,108,50,506,9844
LGA36510,13,11,19,34,105,97,34,15,6,18,365,0,5,6,5,13,19,98,81,36,17,17,9,307,8,0,3,0,3,21,29,45,20,9,12,4,159,0,0,3,7,4,7,28,45,21,17,6,5,146,0,0,0,7,0,7,14,20,13,19,11,5,89,4,3,7,4,4,10,33,42,20,12,9,9,149,0,0,3,7,3,9,19,6,3,0,0,21,70,39,21,126,161,179,428,1025,737,247,115,81,171,3340
LGA36580,4,8,8,26,84,75,9,5,3,8,232,0,0,5,0,9,11,65,53,8,6,0,7,161,0,0,0,0,3,5,38,28,7,0,7,0,83,4,4,0,3,0,6,29,20,5,0,0,0,75,0,0,3,5,0,3,13,28,6,5,0,8,68,0,0,0,5,9,10,39,44,7,0,0,4,119,0,0,0,0,3,5,5,3,3,0,0,11,32,21,5,56,104,132,312,687,414,53,18,12,98,1912
LGA36630,22,26,47,92,114,38,0,0,3,20,384,12,6,9,15,21,71,95,34,3,0,5,13,288,3,3,3,7,6,19,38,20,0,0,0,4,109,5,4,10,0,8,22,27,25,4,4,0,10,114,3,0,6,5,8,17,17,24,7,0,4,0,93,5,0,9,13,9,42,43,26,4,0,0,23,170,0,0,8,11,9,18,0,0,0,0,0,11,78,89,66,238,403,436,855,723,236,31,11,31,183,3301
LGA36660,10,23,30,106,154,44,5,0,0,19,402,5,0,9,11,13,52,101,52,4,0,3,13,260,0,0,9,6,4,25,30,18,7,0,3,0,100,3,4,12,0,10,14,39,20,9,0,0,9,117,0,0,0,3,0,4,21,12,5,3,8,8,74,6,0,6,10,13,47,67,26,4,0,0,8,188,5,0,9,21,6,20,9,0,0,0,0,17,93,45,34,201,416,412,974,1000,284,46,11,28,166,3603
LGA36720,26,48,50,82,348,1559,1716,614,276,100,4836,6,5,16,19,40,65,231,1194,1725,693,332,77,4400,4,0,10,18,16,35,98,492,933,535,291,53,2491,3,0,3,21,13,25,73,391,891,624,458,61,2565,7,3,16,16,14,15,41,162,464,432,682,58,1910,8,3,27,34,18,33,111,416,748,387,232,122,2141,12,11,49,21,24,25,52,79,49,16,18,163,521,213,279,1157,986,724,1344,3677,9292,9783,4208,2842,1198,35701
LGA36820,12,14,19,51,84,71,3,0,0,9,269,12,3,0,9,22,31,60,58,3,0,5,13,213,5,0,0,10,3,13,27,35,8,0,3,13,105,5,6,5,0,7,4,23,33,4,0,3,3,101,13,0,0,7,0,9,16,21,7,0,8,4,76,0,7,0,12,13,21,61,44,10,0,3,5,173,0,3,4,15,10,14,14,3,0,0,0,29,96,76,37,147,300,252,499,635,400,51,6,39,142,2586
LGA36910,44,65,92,383,1099,907,131,15,12,60,2829,15,6,36,44,65,240,791,830,149,26,13,48,2274,7,5,18,18,20,115,351,458,102,20,11,16,1144,5,4,14,18,17,71,228,340,165,27,15,25,931,7,0,13,9,19,45,116,177,129,65,30,20,637,5,5,31,41,30,118,335,359,92,21,15,75,1131,3,7,28,32,27,59,50,27,7,5,0,88,322,181,218,932,1063,1352,3608,6776,4684,972,247,136,708,20877
LGA36950,6,5,7,17,9,6,0,3,0,18,89,22,0,10,7,3,19,9,3,4,5,3,18,105,9,0,8,0,0,7,7,5,0,0,7,5,54,25,0,3,5,5,12,19,5,0,0,4,16,98,18,0,8,6,4,8,11,4,4,0,3,14,68,16,0,0,19,9,8,15,12,4,0,5,7,92,3,0,0,3,0,0,0,0,0,0,0,17,31,130,17,71,81,39,99,92,39,15,9,22,114,729
LGA36960,33,45,0,0,0,0,0,0,0,12,106,11,3,19,26,3,0,0,0,0,0,0,3,62,8,0,3,15,0,0,0,0,0,0,0,0,32,6,0,8,12,0,0,0,0,0,0,0,5,29,5,0,0,6,0,0,0,0,0,0,0,8,15,9,8,21,34,0,0,0,0,0,0,0,3,81,0,3,7,5,0,0,0,0,0,0,0,6,13,97,85,342,325,14,10,4,0,0,0,0,61,937
LGA37010,60,89,121,629,1149,1283,166,22,25,83,3662,13,5,36,59,73,412,843,1300,229,40,30,81,3116,3,4,20,25,32,266,388,722,164,48,25,28,1712,0,3,16,30,19,163,297,712,261,68,47,25,1650,6,0,16,16,19,56,116,341,230,89,102,28,1026,8,9,44,42,56,207,401,595,169,55,28,84,1697,16,10,42,31,33,42,34,28,6,6,3,118,366,268,277,1230,1334,1517,4625,6684,7066,1490,396,333,948,26163
LGA37300,0,0,0,11,3,0,14,9,15,11,86,22,0,0,0,3,6,19,13,16,21,29,11,139,10,0,0,0,0,3,5,3,8,10,25,4,81,36,3,5,0,0,5,0,7,13,28,44,5,150,41,3,4,4,0,0,0,0,22,21,60,13,177,10,0,0,0,0,0,0,3,19,13,33,6,88,0,0,0,0,0,0,0,0,0,0,3,8,12,150,18,13,10,13,39,31,33,100,111,215,69,803
LGA37310,26,33,71,132,138,39,3,3,5,50,527,14,6,17,38,34,119,125,41,8,0,8,64,479,3,6,23,10,16,46,53,16,0,0,0,17,191,15,0,20,14,16,31,71,17,5,0,4,20,207,0,0,10,12,9,28,61,29,10,5,8,49,236,0,3,7,25,22,62,54,29,4,0,0,29,245,0,0,13,13,8,9,4,0,0,0,5,18,81,103,63,356,501,536,993,860,227,33,7,34,377,4088
LGA37340,16,21,34,57,138,153,59,19,20,38,577,11,0,11,22,23,57,136,156,72,20,23,52,578,3,0,3,9,8,16,49,76,38,21,13,4,256,9,4,10,0,10,16,52,77,46,14,24,19,285,10,0,9,12,13,8,30,57,49,22,40,26,274,4,3,9,14,11,21,60,87,57,14,13,16,311,0,0,11,15,10,11,12,10,4,0,0,31,108,85,60,266,427,309,607,972,980,463,147,188,295,4796
LGA37400,0,6,4,0,0,0,0,0,0,0,20,0,0,0,0,5,0,0,0,0,0,0,3,14,3,0,0,0,4,4,0,0,0,0,0,7,21,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,14,13,30,26,22,20,7,0,0,0,8,32,170
LGA37550,8,0,0,0,0,0,0,0,0,0,16,3,0,0,6,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,4,0,0,0,0,0,0,0,0,0,8,4,0,0,6,0,0,0,0,0,0,0,0,5,0,0,9,9,0,0,0,0,0,0,0,0,24,0,0,3,0,0,0,0,0,0,0,0,0,9,43,40,108,51,4,7,0,0,0,0,0,8,271
LGA37570,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,37,11,16,5,0,0,0,0,0,0,0,0,73
LGA37600,12,41,0,0,0,0,0,0,0,0,66,0,0,10,16,0,0,0,0,0,0,0,0,31,5,0,0,14,0,0,0,0,0,0,0,0,23,6,0,3,7,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,21,5,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,104,189,5,3,0,0,0,0,0,3,384
LGA39499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA39799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA40070,8,10,12,31,146,364,177,49,53,16,852,0,0,8,10,0,20,95,301,228,60,27,11,763,0,0,0,9,8,3,28,118,102,44,12,5,329,0,0,0,3,6,0,28,156,156,76,56,8,487,0,0,5,3,0,0,12,91,131,75,117,14,449,0,3,0,9,6,9,25,54,54,25,25,15,218,0,5,3,7,0,0,3,9,19,4,7,17,78,35,54,269,371,202,305,879,2210,1427,520,394,164,6836
LGA40120,3,4,11,11,53,78,33,0,3,9,220,0,0,0,8,3,9,35,75,36,14,9,8,190,0,0,0,6,0,8,9,36,18,10,0,3,102,0,0,0,3,4,5,10,24,26,13,15,4,101,0,0,0,0,0,0,5,16,19,19,23,8,99,0,0,0,0,0,8,27,30,11,8,9,4,108,0,0,0,0,5,3,6,0,0,0,0,5,17,14,13,38,94,81,131,359,430,203,89,69,63,1585
LGA40150,4,4,7,7,4,18,3,4,0,4,57,0,0,0,0,4,4,12,6,5,0,0,0,36,0,0,0,0,0,3,4,3,0,0,0,0,10,0,0,0,0,0,0,7,0,0,0,0,3,13,0,0,0,0,0,0,3,5,3,0,0,6,15,0,6,0,3,0,3,0,11,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,3,7,6,21,28,23,67,83,71,28,3,4,26,369
LGA40220,3,16,9,23,85,62,11,0,4,5,221,0,0,5,8,3,17,48,48,8,4,4,3,145,5,0,3,0,4,0,18,28,3,0,0,8,72,0,0,0,0,0,3,11,16,4,0,5,4,46,0,0,0,4,3,4,6,12,5,8,4,3,50,0,0,3,0,3,10,44,36,5,0,0,6,110,0,0,3,3,4,10,0,3,0,0,0,4,30,23,14,98,219,147,419,684,385,47,12,26,85,2155
LGA40250,8,4,0,0,0,0,0,0,0,17,53,6,7,3,0,0,0,0,0,0,0,0,10,23,5,3,4,0,0,0,0,0,0,0,0,9,21,3,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,3,3,8,22,15,0,0,0,0,0,0,0,0,4,52,3,8,4,0,0,0,0,0,0,0,0,11,31,87,153,69,6,0,0,3,0,0,0,0,85,414
LGA40310,7,8,8,23,76,54,5,0,0,9,187,3,0,3,4,9,30,61,51,4,0,4,5,177,0,0,0,5,0,7,30,38,8,4,0,3,89,0,0,0,0,5,0,18,35,6,0,0,0,71,0,0,0,0,3,3,11,22,3,0,0,0,53,0,0,5,0,5,11,32,30,0,0,0,3,82,0,0,4,6,0,0,0,0,0,0,0,10,27,10,18,100,127,129,296,545,347,42,12,12,64,1703
LGA40430,5,0,0,0,4,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,4,3,0,0,0,0,0,10,0,0,0,0,0,7,0,0,0,0,0,4,10,7,6,23,37,25,35,30,4,5,0,0,27,203
LGA40520,12,27,13,46,14,10,0,0,3,7,129,0,0,6,14,8,24,19,9,0,0,6,4,92,0,0,0,3,5,5,10,12,0,0,0,0,38,0,0,4,4,8,6,16,11,0,0,0,3,53,0,0,3,3,4,5,4,3,0,0,0,4,21,0,0,0,7,7,11,8,0,0,0,0,3,43,0,0,11,0,0,5,0,0,0,0,0,13,34,23,33,189,243,217,291,145,57,10,0,8,87,1303
LGA40700,9,15,9,27,146,163,77,26,14,8,480,0,0,3,3,3,19,121,161,91,40,25,5,470,0,0,0,4,4,8,36,79,59,36,25,6,257,0,0,3,6,6,3,38,51,75,49,58,9,297,0,0,0,4,5,3,19,35,76,75,142,9,369,3,0,8,12,6,5,23,29,38,20,34,9,181,0,0,0,0,6,0,9,3,6,0,0,9,33,29,26,146,131,100,292,954,915,549,289,345,102,3860
LGA40910,9,5,13,70,189,256,122,14,4,3,687,0,0,4,12,9,50,158,309,144,22,5,18,732,0,0,3,10,3,19,67,150,85,25,5,7,369,0,0,0,9,3,13,54,159,107,33,15,9,397,0,0,4,4,3,8,25,67,90,43,22,7,256,0,0,10,8,8,17,38,78,56,13,9,24,262,3,0,17,5,6,0,4,7,0,0,0,30,66,29,43,398,313,175,564,1266,1675,814,182,80,191,5727
LGA41010,3,3,5,11,10,4,0,0,0,6,47,0,6,0,10,3,6,14,9,4,0,0,3,52,0,0,5,0,0,4,11,0,0,0,0,4,23,0,0,9,3,4,4,3,4,0,0,0,4,39,0,3,3,3,0,0,3,0,0,0,0,6,24,0,3,4,6,0,4,9,5,0,0,0,3,38,0,11,0,3,0,0,0,0,0,0,0,13,32,32,49,72,74,51,87,87,21,4,7,6,65,542
LGA41060,29,35,42,190,513,725,235,51,29,34,1886,0,0,12,29,28,119,368,803,288,65,26,33,1769,0,0,10,10,19,46,135,420,192,38,28,13,913,0,0,6,11,11,27,105,382,255,84,62,13,960,0,0,7,11,12,14,44,168,178,103,144,9,695,3,10,23,32,21,56,105,233,137,36,46,52,735,4,10,56,35,17,22,20,19,4,3,0,84,280,133,264,1431,1117,650,1641,3182,4350,1640,449,378,515,15745
LGA41140,5,6,8,25,30,7,0,0,3,9,95,0,0,0,4,4,22,35,14,0,0,0,6,85,0,0,4,0,6,4,9,3,0,0,0,3,41,0,0,0,4,5,4,3,6,0,0,0,5,31,0,0,0,3,0,0,3,0,0,0,4,0,16,0,0,0,4,6,10,8,3,0,0,0,3,40,0,0,4,0,4,0,0,0,0,0,0,3,17,16,5,82,97,109,161,184,62,4,0,13,56,797
LGA41190,3,5,7,0,0,0,0,0,0,0,13,0,0,0,6,0,3,5,0,0,0,0,5,9,0,0,0,0,0,5,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,3,3,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,6,0,30,36,14,10,5,4,0,0,0,16,129
LGA41330,7,6,3,4,4,0,0,0,0,3,37,0,4,4,7,4,5,0,0,0,0,0,4,39,0,0,5,3,4,0,0,0,0,0,0,0,9,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,3,0,0,0,0,0,4,7,0,0,3,3,4,3,0,0,0,0,0,0,16,0,0,0,4,6,0,0,0,0,0,0,4,10,14,18,37,77,34,33,3,4,0,0,5,32,261
LGA41560,7,6,15,36,54,8,5,4,0,4,137,0,0,9,11,4,18,48,12,0,0,6,13,121,0,0,3,0,0,8,18,8,0,0,0,3,41,0,0,0,8,0,4,14,12,0,0,3,0,51,0,0,0,3,3,7,11,0,0,0,3,6,33,0,0,4,9,6,14,18,5,0,0,0,5,62,0,0,6,8,0,14,4,0,0,0,0,14,50,19,20,152,211,160,413,378,80,17,8,23,76,1557
LGA41750,3,0,0,0,5,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,22,15,4,5,5,0,0,0,8,9,76
LGA41830,0,9,4,3,0,0,0,0,0,5,25,0,0,3,6,0,6,0,0,0,0,0,0,11,0,0,3,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,12,3,33,41,20,27,4,10,0,0,10,23,179
LGA41960,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,14,24,15,26,8,4,0,0,5,20,127
LGA42030,3,3,10,60,131,74,9,0,0,8,302,0,0,4,0,10,32,90,54,15,0,0,3,220,0,0,0,0,0,18,35,42,10,0,0,0,107,0,0,0,0,4,12,31,31,10,3,3,0,85,0,0,0,3,0,9,10,22,7,4,4,0,61,0,0,3,4,0,29,43,42,6,0,0,10,147,6,0,16,4,0,12,6,6,0,0,0,11,58,18,39,245,137,158,583,919,463,79,23,13,98,2775
LGA42110,4,0,6,7,3,3,0,0,0,8,30,5,0,6,5,0,0,8,0,0,0,0,9,32,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,3,8,4,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,4,3,14,8,53,76,50,56,25,10,6,0,3,29,325
LGA42250,7,0,8,3,12,4,0,0,0,3,35,0,0,0,7,11,8,3,3,0,0,0,0,40,0,0,0,0,4,3,0,0,0,0,0,0,19,0,0,0,3,0,3,0,0,0,0,0,0,10,0,0,0,3,0,0,4,4,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,3,8,9,45,52,48,57,37,16,4,0,4,24,312
LGA42600,6,13,9,72,188,195,86,27,16,12,615,0,0,0,9,5,36,129,181,98,41,22,6,527,0,0,9,3,4,12,40,85,56,20,17,3,245,0,0,4,8,0,6,50,94,98,55,41,12,362,0,0,0,0,0,4,15,48,67,53,98,4,294,0,0,4,3,0,7,30,59,40,25,23,7,209,0,0,8,3,3,7,14,5,0,0,9,28,72,10,23,206,234,141,559,1209,1160,574,253,258,146,4775
LGA42750,3,17,13,12,18,3,3,0,3,4,68,0,0,0,3,7,14,6,0,0,0,0,3,40,0,0,0,0,5,9,0,4,0,0,0,0,20,0,0,3,5,3,6,0,5,0,0,10,4,30,0,0,3,0,0,0,6,0,0,0,6,10,23,0,0,0,0,6,4,8,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,4,18,10,49,97,78,85,64,19,5,0,24,50,493
LGA43080,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,8,20,4,9,0,0,0,0,0,3,56
LGA43220,0,4,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,19,31,4,0,5,0,0,0,0,14,78
LGA43360,4,5,7,4,0,0,0,0,0,4,27,0,0,0,0,0,5,0,0,0,0,0,0,16,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,3,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,3,4,3,24,51,32,51,20,4,0,0,0,20,203
LGA43650,0,8,4,22,27,21,7,0,0,3,87,0,0,6,0,0,15,27,22,9,0,0,6,85,0,0,3,0,4,11,14,13,4,0,0,0,54,0,0,0,0,4,0,15,11,9,0,0,5,42,0,0,0,0,0,4,0,11,3,0,0,0,16,0,0,0,3,5,6,4,9,8,0,0,0,36,0,0,0,3,0,0,0,0,0,0,0,0,10,9,8,52,59,57,130,154,125,50,13,0,25,688
LGA43710,4,11,3,3,12,3,0,0,0,5,41,0,5,3,6,3,4,6,8,0,0,0,0,35,0,0,0,4,0,0,8,3,0,0,0,0,18,0,0,0,5,0,0,3,5,4,0,3,0,23,0,0,5,0,0,0,0,0,0,0,0,3,14,0,0,4,0,3,3,3,3,3,0,0,0,16,0,0,0,0,0,3,4,0,0,0,0,0,16,8,14,36,57,31,48,54,36,4,0,15,32,337
LGA43790,11,19,6,37,25,3,0,0,0,5,111,0,0,7,12,10,21,22,9,0,0,0,5,86,0,0,0,9,5,10,5,5,0,0,0,0,35,0,0,4,0,0,4,3,6,0,0,3,3,38,0,0,9,5,3,0,3,8,0,0,0,0,19,0,0,0,4,3,10,7,3,0,0,0,5,35,0,0,4,11,4,6,0,3,0,0,0,6,34,30,27,138,236,165,225,146,50,8,0,15,62,1112
LGA44000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,19
LGA44060,24,26,30,78,293,579,179,27,19,31,1298,3,3,17,25,23,68,227,562,230,33,8,14,1211,0,0,8,6,4,22,107,302,175,23,14,8,670,0,0,18,19,12,22,82,324,213,42,18,8,748,3,0,10,16,0,11,19,119,148,52,30,5,426,0,3,24,25,12,31,79,197,115,17,11,34,543,0,0,53,36,6,9,10,16,3,4,0,65,203,104,166,1198,1058,451,885,2006,3376,1356,250,109,429,11387
LGA44210,3,9,11,11,3,0,0,0,0,9,51,0,0,5,0,6,12,14,4,0,0,3,0,40,0,0,0,4,0,3,7,0,0,0,0,5,14,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,5,3,3,0,0,6,0,12,4,0,0,5,0,11,3,4,0,0,0,4,34,0,0,4,7,4,4,0,0,0,0,0,3,20,18,16,84,136,103,133,85,25,7,0,16,43,659
LGA44340,13,13,7,75,179,167,80,18,17,15,586,0,0,5,7,8,48,142,181,87,25,18,3,523,0,0,5,3,5,18,40,88,61,37,20,11,295,0,0,0,7,4,8,37,89,69,45,30,0,294,0,0,3,0,4,0,13,39,63,52,80,9,265,0,0,5,8,0,17,37,70,30,17,12,10,213,0,4,6,6,6,6,3,4,0,0,0,19,54,26,29,223,241,150,532,1063,1097,524,221,207,140,4457
LGA44550,6,12,4,24,98,213,24,4,9,9,415,0,0,4,6,3,14,76,216,49,9,0,0,376,0,0,3,3,0,9,24,109,30,10,3,0,196,0,0,0,0,0,0,23,88,36,6,4,0,168,0,0,3,0,4,9,9,41,17,5,3,6,98,0,0,0,0,0,14,37,114,23,5,0,8,208,0,0,10,4,0,3,5,5,0,0,0,18,46,20,22,183,139,102,220,764,1244,254,50,30,96,3118
LGA44620,20,59,40,115,111,23,0,0,4,10,391,4,0,7,39,28,68,85,44,12,0,0,6,289,0,0,8,5,8,25,42,28,6,0,0,0,119,0,0,0,11,7,13,25,26,7,0,3,0,100,0,0,4,7,4,9,21,28,8,5,5,7,89,0,0,11,11,8,38,32,22,6,0,0,3,130,3,5,18,14,7,3,0,3,0,0,0,26,74,36,81,469,755,432,730,611,227,44,9,18,140,3540
LGA44830,0,11,6,0,0,0,0,0,4,0,19,0,0,3,5,4,0,0,0,0,0,0,0,16,0,0,0,5,3,0,0,0,0,0,0,0,8,0,0,0,0,0,7,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,7,10,0,0,3,5,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,8,4,27,45,29,21,11,0,0,9,6,20,173
LGA45040,5,16,29,109,75,11,0,5,3,10,265,3,0,5,15,15,69,58,5,0,3,0,14,182,0,0,0,4,7,26,18,5,5,0,0,3,66,0,0,0,5,0,15,23,3,0,0,0,0,46,0,0,0,3,6,15,13,4,3,0,0,7,43,0,3,4,11,13,31,36,12,0,4,0,0,111,3,3,15,13,11,10,3,0,0,0,0,36,88,26,39,312,320,332,920,480,91,20,16,8,149,2718
LGA45090,9,22,12,30,32,5,0,0,0,5,108,4,0,7,10,5,19,24,0,0,0,0,7,86,0,0,0,8,3,13,14,0,0,0,0,0,44,0,0,4,0,11,8,5,0,0,0,0,5,36,0,0,5,0,0,8,5,0,0,0,0,5,20,3,0,0,9,3,3,5,0,0,0,0,10,37,0,0,4,8,0,0,4,0,0,0,0,3,18,24,13,83,162,104,189,146,14,3,0,8,66,803
LGA45120,8,7,3,0,5,0,0,0,0,4,33,0,0,0,4,3,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,6,5,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,61,75,67,63,28,0,0,0,4,21,339
LGA45290,8,21,17,63,252,236,121,22,18,14,777,5,0,6,8,8,58,173,220,141,44,17,17,704,0,0,10,6,9,15,63,116,66,31,18,3,327,0,0,3,4,3,15,38,127,132,64,31,8,423,3,0,4,7,0,4,20,53,102,88,126,12,411,0,0,4,0,8,15,50,64,64,27,14,14,249,0,5,14,7,0,7,11,9,0,0,3,26,77,48,80,392,291,187,539,1393,1355,801,334,262,181,5866
LGA45340,20,37,35,104,710,778,76,12,8,40,1833,0,0,5,18,19,79,498,615,79,18,6,17,1361,0,0,3,15,10,22,183,334,81,13,8,14,683,3,0,3,7,7,26,126,269,75,16,10,15,550,0,0,15,11,10,6,30,87,46,21,14,14,259,0,0,23,29,22,44,237,292,51,17,6,37,764,4,3,53,15,14,25,38,27,3,0,3,69,258,115,209,1283,893,615,1565,5314,4279,559,137,98,469,15525
LGA45400,0,3,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,10,13,4,7,0,0,0,0,0,7,39
LGA45540,3,6,0,0,0,0,0,0,0,3,20,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,4,3,5,43,68,19,3,0,3,0,0,5,19,169
LGA45680,24,43,62,327,595,256,19,8,9,29,1374,0,0,11,22,43,187,415,213,22,0,3,13,933,0,0,5,18,16,84,187,124,11,3,0,5,451,0,0,0,3,6,53,103,92,20,4,5,3,288,0,0,8,9,7,47,36,46,13,3,0,7,180,4,3,34,24,37,170,237,106,7,0,7,25,659,9,8,71,36,31,35,33,14,7,5,0,85,322,119,193,1250,1076,900,3061,4164,1407,134,31,29,471,12838
LGA45890,25,42,66,259,624,904,160,16,17,39,2159,0,0,28,36,45,180,515,855,203,22,18,37,1954,0,0,7,16,20,79,202,471,133,22,7,15,986,5,0,10,14,11,69,157,438,194,35,16,24,970,0,6,17,20,10,29,83,202,143,47,17,22,594,3,4,32,41,35,93,171,304,94,15,18,44,841,7,10,69,42,11,24,23,27,3,0,0,112,332,155,318,1966,1624,845,2214,4103,4995,1241,231,138,709,18533
LGA46090,14,51,32,70,43,17,0,0,3,13,248,0,0,8,42,28,36,37,17,5,0,3,20,199,0,0,0,5,9,12,20,9,6,0,0,0,67,0,0,10,9,11,10,18,15,5,0,3,19,104,0,0,11,5,5,11,12,3,4,5,7,16,83,0,0,9,14,17,35,21,9,0,0,0,9,115,0,0,10,13,5,3,4,0,0,0,0,14,54,30,71,321,455,270,345,268,84,36,16,25,146,2055
LGA46300,4,17,15,49,68,39,0,4,0,14,217,0,0,4,12,7,28,51,31,4,0,0,0,144,0,0,3,8,0,9,23,22,0,0,0,3,66,0,0,0,6,7,4,13,22,11,0,6,0,63,0,0,0,5,0,6,5,18,8,0,7,0,53,0,3,9,9,8,23,38,26,0,0,0,5,120,0,11,16,6,3,3,4,3,0,0,0,14,59,28,72,233,298,209,366,451,222,24,13,15,85,2010
LGA46450,5,42,26,46,21,4,0,0,0,5,167,0,0,4,31,23,29,40,9,0,0,0,6,146,0,0,0,7,11,18,20,5,0,0,0,0,56,0,0,3,16,11,13,16,3,0,0,0,5,60,0,0,0,11,3,10,12,14,0,0,0,6,61,0,0,5,20,13,24,8,0,0,0,0,3,78,3,0,25,22,10,3,5,0,0,0,0,16,88,34,52,412,657,304,361,190,53,13,5,3,99,2184
LGA46510,5,3,11,51,126,152,43,8,5,0,402,0,0,8,3,10,29,116,143,64,19,0,3,400,0,0,3,7,5,18,39,79,48,9,6,5,224,0,0,3,9,0,12,39,81,51,24,9,4,220,0,0,0,6,0,0,19,38,56,22,28,9,177,0,0,5,5,0,12,24,53,41,7,6,3,159,0,0,9,9,0,4,3,4,0,0,0,3,30,17,33,180,139,79,320,795,822,375,91,71,70,2991
LGA46670,11,20,17,28,16,9,4,0,0,6,114,3,0,5,12,13,15,8,9,0,0,0,4,65,4,0,0,4,10,5,0,4,0,0,0,8,33,0,0,0,3,0,8,8,8,4,0,0,4,43,0,0,5,0,0,9,4,8,0,0,4,3,38,0,0,4,10,8,22,6,4,4,0,0,3,58,0,0,10,10,7,6,0,0,0,4,4,8,49,30,28,147,213,176,206,115,55,19,3,13,70,1073
LGA46860,0,0,4,4,3,0,0,0,0,0,14,0,0,0,0,3,6,10,0,0,0,0,4,26,0,0,0,0,0,3,4,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,3,0,7,0,0,0,5,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,5,25,21,29,36,6,3,0,10,23,162
LGA46970,9,10,7,12,26,18,3,0,0,5,88,0,6,34,23,5,15,30,37,3,0,0,21,164,0,0,7,9,5,10,15,22,0,0,0,0,64,0,0,35,32,8,11,9,39,16,0,0,6,173,0,6,32,56,29,20,20,30,19,5,0,16,219,0,0,11,5,12,4,3,14,4,0,4,10,64,0,0,0,0,0,0,0,0,0,0,0,5,4,4,6,138,136,62,78,151,176,45,8,4,71,873
LGA47140,35,39,50,238,833,566,55,6,7,40,1874,4,0,19,31,33,123,635,499,72,15,12,19,1463,6,0,6,7,11,60,259,285,36,10,9,15,708,0,0,4,11,12,35,186,207,71,20,16,11,567,0,0,3,9,5,20,83,112,41,15,8,14,321,0,4,26,29,25,53,236,199,30,13,9,59,679,5,12,77,20,14,30,31,20,5,0,3,90,300,109,201,1342,928,752,2070,5456,3234,445,110,92,591,15325
LGA47290,8,8,0,3,0,0,0,0,0,6,18,3,0,4,4,5,3,0,0,0,0,0,0,24,0,0,0,3,0,4,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,12,3,41,46,22,16,7,0,0,0,0,16,157
LGA47490,0,0,3,3,0,0,0,0,0,0,14,0,0,0,0,0,5,6,0,0,0,0,0,12,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,4,0,6,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,10,24,19,30,32,10,0,0,15,17,165
LGA47630,15,25,11,23,5,0,0,0,0,13,86,0,0,3,7,14,16,8,3,0,0,0,7,69,5,0,3,4,0,9,7,0,0,0,0,0,36,0,0,3,0,0,3,0,0,0,0,0,5,27,7,3,0,5,0,7,5,0,0,0,0,3,27,0,0,3,4,6,11,0,0,0,0,0,3,27,0,0,4,4,0,5,4,0,0,0,0,0,15,22,20,89,136,91,120,49,7,3,0,0,48,578
LGA47700,12,13,20,56,329,443,51,6,4,12,957,4,0,8,15,9,33,205,399,76,6,6,10,770,0,0,0,3,3,10,87,223,59,6,5,12,415,0,0,3,5,8,18,63,222,81,12,4,8,420,0,0,4,7,0,5,19,91,54,6,9,7,199,0,0,4,16,8,19,84,145,28,12,7,19,336,0,0,28,7,9,9,19,9,0,4,0,37,106,50,103,630,353,210,473,1984,2507,421,63,40,223,7066
LGA47800,10,4,3,8,3,0,0,0,0,14,53,0,0,10,12,13,4,10,0,0,0,0,3,48,0,0,0,4,0,5,0,0,0,0,0,0,15,0,0,0,0,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,4,4,8,0,0,0,3,0,3,0,0,0,0,0,4,21,3,0,0,4,0,5,0,0,0,0,0,4,18,23,24,91,103,75,99,30,11,4,4,4,55,502
LGA47910,0,0,7,5,7,5,0,0,0,0,21,0,0,3,4,0,4,3,4,0,0,0,5,22,0,0,0,4,3,0,4,0,0,0,0,0,10,0,0,0,3,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,3,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,5,0,4,23,54,38,50,34,13,4,0,3,22,250
LGA47980,5,16,14,53,194,208,80,29,20,10,632,0,0,4,9,5,32,157,199,123,44,25,5,598,0,0,0,3,3,20,73,85,77,34,22,8,322,0,0,3,3,6,18,48,103,105,62,61,9,421,0,0,7,5,4,10,18,55,100,76,153,6,419,0,0,3,4,8,8,34,54,46,21,23,11,211,0,0,10,10,0,0,3,0,0,0,0,19,49,25,39,262,233,122,459,1088,1136,668,317,348,114,4812
LGA48050,0,6,0,15,53,42,7,0,6,3,127,0,0,0,0,3,5,32,27,3,0,0,4,78,0,0,0,0,0,0,22,14,0,0,0,0,47,0,0,0,0,3,4,10,15,0,0,0,5,35,0,0,0,0,0,0,5,10,4,0,0,5,20,0,0,3,4,0,10,30,23,3,0,0,4,77,0,0,0,4,0,3,4,0,0,0,0,10,27,9,3,57,148,97,295,522,271,32,9,19,69,1526
LGA48130,8,10,12,30,11,0,0,0,0,13,80,0,0,4,5,4,20,4,5,0,0,0,8,56,0,0,3,5,3,9,0,3,0,0,0,0,23,0,4,0,0,4,3,0,0,0,0,0,0,15,0,0,0,4,0,3,0,0,0,0,0,0,8,0,0,4,3,10,11,5,0,0,0,0,0,35,0,0,0,0,6,0,0,0,0,0,0,9,19,13,8,74,89,100,173,64,16,6,0,5,64,598
LGA48260,0,0,8,9,20,38,24,5,5,3,120,0,0,0,3,0,5,15,56,22,0,5,3,109,0,0,0,0,0,0,4,14,7,5,4,0,39,0,0,0,3,0,0,8,28,19,7,18,0,79,0,0,3,0,0,0,0,19,17,10,33,0,91,0,0,3,0,0,3,4,13,12,0,10,0,47,0,0,0,3,0,0,0,0,0,0,0,7,9,3,23,69,56,30,35,109,278,129,39,86,37,893
LGA48340,9,32,17,24,8,0,0,0,0,5,106,0,0,3,8,11,19,7,0,0,0,0,5,55,6,0,4,3,6,3,3,0,0,0,0,4,22,0,0,5,0,5,0,0,0,0,0,0,3,12,0,0,0,6,0,3,0,6,0,0,0,0,17,0,0,4,5,6,8,0,3,0,0,0,4,35,0,0,0,11,3,0,0,0,0,0,0,9,32,25,20,161,339,137,156,35,14,3,0,6,62,958
LGA48410,29,27,31,176,352,331,114,35,16,15,1138,0,0,15,35,26,141,304,332,175,46,15,16,1097,0,3,6,15,13,67,150,231,145,38,12,11,688,0,0,13,4,13,49,87,203,182,50,25,18,648,0,0,8,7,11,16,34,91,121,64,35,16,411,6,0,12,18,15,43,77,146,90,20,11,24,441,0,0,21,18,0,6,4,9,3,0,4,32,101,74,124,692,555,399,1286,2162,2124,1066,293,142,282,9196
LGA48540,29,91,35,75,54,25,0,0,0,12,327,0,0,29,57,40,32,68,17,3,0,7,18,278,0,0,9,25,14,15,28,20,0,0,0,9,106,0,0,13,27,18,22,42,22,4,4,4,8,165,6,0,14,14,10,14,28,24,8,0,8,14,135,0,8,14,34,11,30,24,7,5,0,0,7,127,0,12,34,17,0,9,6,3,0,0,0,33,107,76,189,858,965,395,429,405,145,26,8,31,193,3716
LGA48640,0,6,0,0,0,0,0,0,0,3,13,0,5,6,5,0,0,0,0,0,0,0,0,15,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,30,22,11,8,0,0,0,0,0,14,92
LGA48750,0,3,0,5,15,14,7,0,0,9,45,0,0,0,0,0,3,4,6,0,0,0,0,19,0,0,0,0,0,4,6,3,0,0,0,0,11,0,0,0,0,0,0,0,3,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,5,3,8,0,0,0,0,0,0,4,5,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3,23,51,37,67,96,77,17,0,4,25,409
LGA48830,11,16,7,29,6,4,5,0,4,14,93,0,0,10,7,11,14,15,0,0,0,3,4,62,0,0,0,3,3,4,0,0,0,0,0,4,21,0,0,3,5,0,0,0,0,0,0,0,12,28,0,0,0,6,0,4,0,0,5,0,4,9,24,0,0,7,5,10,8,8,0,0,0,0,7,38,0,0,11,6,5,3,0,0,0,0,0,16,47,30,30,135,152,130,204,84,20,5,4,26,116,946
LGA49399,13,4,0,0,3,0,0,0,3,33,86,9,6,8,3,0,0,0,0,0,0,0,27,62,4,0,0,4,0,0,0,3,0,0,0,4,16,4,0,6,0,0,0,0,0,0,0,0,11,28,3,3,5,0,0,0,0,0,0,0,0,6,14,5,4,7,0,0,0,0,0,0,0,0,0,31,9,9,9,0,0,0,0,0,0,0,0,9,34,103,86,96,31,11,8,7,4,3,0,10,150,514
LGA49499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA49799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA50080,3,21,18,31,178,158,30,4,3,21,476,0,0,6,11,15,22,116,148,31,5,8,11,368,0,0,6,11,0,10,49,73,17,3,4,9,177,0,0,5,5,7,9,34,82,32,9,5,7,189,5,3,0,7,4,7,22,45,23,9,7,13,143,0,0,4,8,13,22,54,91,28,0,0,13,232,4,3,16,11,3,0,4,4,5,0,0,24,78,41,43,317,340,251,433,1088,955,206,31,33,190,3938
LGA50210,7,14,40,113,282,340,75,9,11,16,923,5,0,6,15,21,76,177,258,115,14,5,12,703,0,0,11,6,6,18,76,142,53,14,3,11,350,0,0,0,6,5,17,58,151,86,13,3,7,344,0,3,6,4,4,13,36,82,68,26,6,12,259,5,0,7,15,12,49,134,170,66,18,10,24,499,4,0,11,14,14,19,14,17,3,0,0,40,133,43,42,296,383,420,1082,2066,1859,620,113,51,256,7242
LGA50250,18,7,4,0,5,5,0,3,11,32,130,143,4,19,7,3,0,3,11,7,5,12,50,269,53,6,5,4,5,0,0,4,3,0,0,12,96,192,9,16,11,11,3,6,7,8,8,10,41,300,222,8,26,13,3,4,3,4,3,9,18,58,364,92,6,8,3,4,0,0,0,0,0,0,15,126,4,0,0,0,0,0,0,0,0,0,0,13,19,798,34,109,52,41,29,33,41,29,17,59,248,1495
LGA50280,7,4,11,7,37,89,29,3,0,14,204,4,0,8,6,3,4,22,76,33,5,8,9,175,0,0,0,0,4,7,14,44,19,3,3,4,95,0,0,0,6,0,3,3,29,26,0,9,8,93,0,0,0,0,3,0,10,12,19,4,25,6,84,0,0,0,0,0,7,12,38,28,12,5,12,133,0,0,0,0,0,3,0,0,0,0,12,3,22,17,10,79,79,71,111,236,475,199,51,78,100,1512
LGA50350,4,4,3,9,64,91,18,4,0,5,204,0,0,3,4,0,6,49,87,28,5,3,3,196,0,0,0,0,4,4,18,48,16,3,3,0,104,0,0,0,4,4,7,20,47,22,10,7,4,108,0,0,0,5,0,0,6,22,19,8,5,6,67,0,0,3,4,3,4,20,39,20,0,0,3,104,0,0,8,4,0,5,6,3,0,0,0,9,28,16,13,156,92,69,139,429,554,138,34,21,72,1735
LGA50420,17,18,49,151,305,446,113,16,10,26,1146,0,0,6,20,26,86,207,495,166,27,13,26,1084,0,0,4,11,14,25,75,234,136,17,11,4,530,0,0,3,7,12,29,112,254,162,53,30,9,669,0,5,10,7,3,21,45,110,170,71,44,13,491,0,0,14,12,14,30,117,195,135,35,23,37,606,0,3,10,13,5,6,13,12,10,0,0,31,108,55,75,455,362,481,1076,2048,2662,1134,264,142,283,9026
LGA50490,14,16,24,72,283,443,90,17,8,17,986,3,0,8,12,19,49,234,434,141,23,11,18,944,0,0,5,11,5,20,98,216,88,14,8,10,462,0,0,3,7,8,19,89,258,137,30,20,10,587,7,0,5,10,5,9,45,139,98,34,16,17,378,0,5,11,16,6,22,91,234,106,22,9,33,565,3,0,25,4,0,3,9,11,0,0,0,32,97,65,98,555,306,252,572,1770,2599,825,169,98,270,7586
LGA50560,0,0,3,0,4,0,0,0,0,0,6,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,4,12,15,11,15,13,4,0,0,0,9,83
LGA50630,0,0,3,0,10,7,0,0,0,5,26,0,0,0,0,0,3,11,9,0,0,0,7,22,0,0,0,0,0,0,5,0,0,0,0,0,9,0,0,5,0,0,0,7,11,0,0,0,0,20,0,0,0,0,0,0,0,3,0,0,0,0,11,0,0,0,0,0,0,0,9,0,0,0,5,14,0,4,0,0,0,0,0,0,0,0,0,0,5,6,7,9,12,12,22,51,37,4,0,0,16,178
LGA50770,0,0,0,0,4,0,0,0,0,4,12,0,0,0,4,9,0,3,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,9,5,0,13,15,28,23,17,7,0,0,0,13,121
LGA50840,0,8,0,11,5,15,0,0,0,3,44,5,0,0,0,0,4,17,5,3,0,0,4,35,0,0,0,0,5,4,0,8,0,0,0,0,16,0,0,0,0,0,0,5,6,0,0,0,0,18,3,0,0,0,0,6,4,5,0,0,0,0,21,0,0,0,0,0,0,3,9,0,0,0,0,13,0,0,0,0,4,0,0,0,0,0,0,3,9,14,4,19,42,26,45,103,69,3,0,0,26,359
LGA50910,0,0,4,5,0,0,0,0,0,0,12,0,0,0,0,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,14,9,22,17,5,0,0,0,0,9,68
LGA50980,18,20,29,34,50,64,41,18,34,35,345,3,3,25,19,23,30,52,78,55,23,48,49,409,4,0,5,13,9,24,19,34,35,28,37,21,231,3,0,19,19,10,33,46,34,37,30,71,27,335,4,0,9,13,13,31,34,32,37,31,116,31,359,5,11,10,20,16,27,23,22,33,28,53,30,285,0,12,17,11,4,9,7,3,0,0,0,40,94,96,128,313,273,174,268,379,435,295,174,394,370,3299
LGA51080,3,5,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,3,7,21,10,6,0,0,0,0,0,10,61
LGA51120,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,6,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,24,14,11,3,7,0,0,0,0,3,70
LGA51190,12,21,21,77,242,152,26,4,5,7,575,0,0,4,9,17,49,144,127,23,7,7,5,397,0,0,0,0,10,19,50,63,18,0,0,6,181,0,0,0,6,6,16,52,96,24,4,5,5,214,0,6,0,6,0,6,24,40,30,19,16,10,158,0,3,3,8,10,35,87,66,14,7,7,9,249,0,0,9,14,5,18,10,6,0,0,0,25,91,30,59,320,355,291,754,1455,931,187,54,49,187,4659
LGA51260,11,5,10,9,63,192,67,15,13,17,397,0,0,3,3,10,12,56,149,83,14,7,19,359,0,0,0,0,3,3,20,89,55,10,9,8,201,0,0,0,4,0,0,21,85,60,22,16,12,226,3,0,3,4,0,4,8,47,60,21,51,22,221,6,3,0,5,7,10,29,116,96,21,7,16,311,0,0,8,9,3,7,7,9,6,0,0,24,71,33,27,246,217,158,215,547,1205,588,148,145,192,3713
LGA51310,3,4,7,36,53,34,40,16,24,4,228,0,0,0,4,10,27,37,56,47,36,39,4,259,0,0,0,0,0,5,9,26,32,21,30,4,126,0,0,3,0,0,9,13,43,53,43,78,7,253,0,0,3,0,0,0,9,35,62,77,293,7,480,0,0,0,4,5,4,10,18,32,22,60,5,164,0,0,0,0,0,3,0,0,0,0,3,0,12,5,5,40,39,83,261,285,327,315,249,562,61,2229
LGA51330,33,33,18,71,359,570,171,33,13,20,1317,0,4,30,23,17,60,281,620,204,40,28,32,1332,5,0,15,10,11,27,147,319,149,38,19,18,756,0,5,19,15,6,23,136,364,200,67,44,9,890,0,6,15,13,5,6,71,248,186,90,76,19,733,3,3,19,29,11,39,144,392,142,45,27,50,899,0,3,12,10,0,3,19,20,5,5,0,34,111,51,87,601,418,243,599,2339,3806,1362,370,249,381,10504
LGA51400,0,13,5,11,30,83,13,0,0,11,165,0,0,0,0,0,8,20,95,14,5,6,4,144,0,0,0,0,0,5,17,49,14,4,0,3,86,0,0,4,0,0,8,13,57,21,8,0,4,108,0,0,0,0,0,3,3,23,17,0,3,6,63,0,0,0,5,3,9,14,52,14,0,3,7,105,0,0,0,0,0,0,3,0,0,0,0,10,20,4,12,76,112,57,89,227,544,106,20,6,68,1330
LGA51470,0,4,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,18,4,6,0,0,0,0,0,23,70
LGA51540,10,15,10,17,27,10,7,0,10,19,115,0,5,3,11,9,22,19,18,5,0,7,20,118,3,3,3,10,3,10,8,8,4,0,4,0,60,6,6,6,6,0,14,8,18,10,0,15,7,85,0,0,9,10,7,9,10,10,5,4,21,13,94,3,3,4,3,0,4,6,8,0,0,0,3,44,6,0,4,5,0,7,0,0,0,0,3,6,23,45,58,107,148,75,142,137,95,32,9,74,128,1046
LGA51610,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,4,0,0,6,15,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,8,12,3,7,14,0,6,15,66
LGA51680,3,0,0,0,3,6,0,0,3,0,17,0,0,0,0,0,0,0,0,4,0,0,0,12,0,0,0,0,0,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,6,0,0,0,0,17,0,0,0,3,0,5,3,0,0,6,0,0,18,0,0,0,4,0,0,0,5,0,6,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0,13,16,9,15,34,34,17,11,6,11,164
LGA51710,6,6,0,3,3,3,0,0,0,6,26,6,0,0,3,0,3,0,3,0,0,0,5,27,4,0,6,3,0,0,0,0,0,0,0,0,14,14,5,5,0,0,0,3,0,0,0,0,9,31,9,3,3,3,0,0,0,0,0,0,0,0,23,0,0,0,4,3,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,35,26,32,32,13,12,13,16,4,3,4,24,213
LGA51750,0,6,0,10,22,38,25,24,15,4,135,0,0,3,0,0,3,19,33,36,13,21,0,131,0,0,0,0,0,4,4,13,21,16,21,0,82,0,0,3,0,0,0,7,14,26,22,46,0,127,0,0,0,0,0,0,4,20,23,29,147,12,242,0,0,0,0,0,0,0,17,20,19,22,0,75,0,0,0,0,0,0,0,3,0,0,4,3,12,3,0,21,22,28,53,143,256,233,175,324,42,1297
LGA51820,13,24,23,69,280,676,240,36,23,33,1417,7,0,13,24,24,45,219,647,304,53,24,30,1393,0,0,9,15,0,24,87,330,164,47,17,18,717,0,0,8,9,6,20,67,355,270,93,37,20,896,5,0,9,12,6,16,31,212,209,87,89,16,691,5,0,12,18,8,36,98,309,222,54,28,39,827,0,0,22,12,11,6,9,23,9,3,0,50,144,75,99,545,499,382,716,1869,4092,1785,440,276,366,11144
LGA51860,0,0,0,3,0,0,0,3,0,3,12,7,0,0,0,0,5,0,0,0,0,0,0,14,0,0,4,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,6,0,0,3,0,0,0,15,5,0,0,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,8,0,0,0,0,0,4,18,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,7,0,0,21,4,0,6,3,0,16,89
LGA51890,0,5,10,18,22,0,0,0,0,3,58,0,0,0,3,5,12,18,8,0,0,0,3,51,0,0,0,4,3,6,9,0,0,0,0,0,19,0,0,0,0,0,5,10,7,0,0,0,0,30,0,0,0,0,0,4,3,4,0,0,0,7,20,0,0,5,0,0,8,13,14,3,0,0,0,43,0,0,0,5,0,4,0,0,0,0,0,8,18,3,7,73,68,87,186,150,58,8,0,0,48,688
LGA51960,6,11,14,8,5,0,0,0,0,4,44,0,0,3,16,9,14,10,6,0,0,0,3,59,0,0,0,0,0,9,0,0,0,0,0,0,11,0,0,3,3,10,10,3,4,0,0,0,5,34,0,3,3,9,5,11,6,6,0,0,0,3,49,0,0,3,13,0,8,5,0,0,0,0,0,39,0,0,0,5,0,0,0,0,0,0,0,4,11,6,6,60,109,64,90,52,17,0,0,0,24,421
LGA52030,0,5,0,0,0,0,0,0,0,0,12,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,4,9,17,18,6,5,0,0,3,11,86
LGA52100,3,0,0,0,0,0,0,0,0,3,13,3,0,0,0,4,4,0,0,0,0,0,4,19,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,21,18,18,11,4,6,0,3,0,10,88
LGA52170,0,0,0,4,14,17,12,4,6,4,70,0,0,0,0,0,3,9,15,17,14,21,4,82,0,0,0,0,0,0,3,10,14,4,12,5,41,0,0,0,0,0,0,0,14,26,15,36,7,105,0,0,0,0,0,0,7,11,27,24,189,5,263,0,0,0,0,0,0,5,4,13,12,24,7,67,0,0,0,0,0,0,0,0,0,0,8,3,12,4,11,24,10,18,16,62,116,146,86,329,28,847
LGA52240,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,5,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,18,40,11,8,5,0,0,0,0,14,95
LGA52310,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,8,6,5,7,7,3,0,0,0,9,49
LGA52380,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,3,0,0,4,0,0,0,0,15,34
LGA52450,0,6,7,3,0,0,0,0,0,3,24,0,0,0,0,0,6,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,21,18,14,28,14,0,0,0,0,14,121
LGA52520,5,3,0,0,0,0,0,0,0,3,14,0,0,0,0,0,7,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,4,3,7,14,10,8,25,14,9,4,0,0,16,108
LGA52590,0,0,0,3,17,7,0,0,0,8,44,0,0,0,0,4,5,10,8,6,0,0,3,33,0,0,0,0,0,0,0,7,0,0,0,5,17,0,0,0,0,0,0,9,7,3,0,0,3,29,0,0,5,0,0,0,3,0,0,0,0,4,21,0,0,0,0,0,3,0,20,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,27,9,19,40,87,69,9,0,10,37,311
LGA52660,0,0,9,7,40,55,6,0,0,0,127,0,0,5,3,5,5,33,64,9,0,0,0,125,0,0,0,4,0,6,23,38,9,0,0,6,80,0,0,0,0,3,6,12,39,9,0,0,4,83,0,0,0,0,0,0,6,27,17,3,0,9,55,0,0,4,0,6,8,19,49,5,0,0,9,93,0,0,5,0,0,0,0,0,0,0,0,4,7,7,8,35,36,57,79,294,382,69,12,4,55,1035
LGA52730,4,5,3,8,16,12,4,0,0,3,52,0,0,0,0,0,0,8,9,4,0,0,6,40,0,0,0,0,0,3,10,5,3,0,5,0,22,0,0,0,0,0,5,3,7,0,0,4,3,23,0,0,0,0,0,0,7,4,3,4,5,4,29,0,0,4,0,0,6,11,14,4,3,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,55,49,31,60,148,105,27,7,21,28,531
LGA52800,33,20,7,12,11,12,4,0,0,21,182,29,13,18,12,6,19,11,15,0,0,0,10,137,9,4,7,0,5,4,13,4,6,0,0,15,63,19,3,10,7,3,7,4,10,8,3,5,18,97,7,4,12,3,8,12,4,3,3,3,5,15,85,25,19,22,12,3,11,15,6,4,0,0,15,130,9,17,6,4,0,4,0,0,0,0,0,10,50,381,252,236,129,54,97,82,80,18,7,14,157,1507
LGA52870,0,0,0,0,12,10,0,0,0,0,30,0,0,0,4,5,3,6,13,0,0,0,4,40,0,0,0,0,0,0,9,9,3,0,0,0,20,0,0,0,0,0,0,0,9,0,0,0,0,15,0,0,0,0,0,0,3,0,4,0,0,0,11,0,0,4,0,0,0,4,8,6,0,0,0,20,0,0,0,0,0,0,5,0,0,0,0,0,8,5,3,26,35,29,49,95,63,7,0,8,29,357
LGA52940,0,0,0,0,0,0,0,0,0,0,10,3,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,15,8,11,3,5,4,0,0,0,16,65
LGA53010,0,0,4,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,7,12,3,7,0,0,0,0,0,5,35
LGA53080,0,6,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,7,12,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,4,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,9,8,11,29,8,0,4,0,0,0,4,25,98
LGA53150,0,0,0,6,12,24,20,8,3,0,71,0,0,3,0,3,4,10,26,15,7,12,0,81,0,0,0,0,0,0,4,8,10,3,4,0,35,0,0,0,0,0,0,0,15,14,14,12,0,53,0,0,0,0,0,3,0,11,15,21,53,0,106,0,0,0,0,0,5,6,13,17,5,13,0,57,0,0,0,0,0,0,0,0,0,0,0,0,4,6,10,20,19,17,52,81,152,115,73,115,15,663
LGA53220,35,19,7,7,5,9,9,10,9,33,173,39,4,31,14,7,3,4,10,12,10,3,46,180,9,0,45,4,4,0,3,7,11,8,0,14,110,33,8,90,10,20,0,3,11,10,6,10,32,228,56,7,120,10,16,3,3,4,9,14,16,45,293,20,0,47,4,6,0,5,3,3,0,0,14,110,8,0,5,0,0,0,0,0,0,0,0,10,26,294,56,410,82,60,22,33,57,73,43,29,243,1416
LGA53290,9,5,11,22,37,35,6,3,6,14,158,0,0,9,12,13,24,53,45,7,0,6,22,181,3,0,0,0,9,14,15,25,5,0,0,9,76,0,0,0,0,4,17,26,45,12,3,0,0,118,0,0,5,0,0,13,11,17,9,0,6,17,71,0,0,5,12,13,22,31,30,6,0,3,6,116,0,0,3,3,4,3,0,0,0,0,0,13,34,23,19,149,138,126,241,324,260,49,15,20,125,1475
LGA53360,5,4,4,13,3,9,11,3,10,15,75,0,0,5,11,15,17,8,17,12,7,5,4,91,0,0,4,3,7,9,4,9,8,7,6,8,62,0,0,0,4,0,14,4,11,12,4,21,4,82,0,0,0,0,4,7,8,13,3,9,35,21,106,0,0,0,5,4,4,7,6,15,9,4,0,48,4,0,0,5,0,0,0,0,0,0,0,3,22,20,15,46,57,39,85,45,96,81,39,106,98,724
LGA53430,11,3,7,32,69,143,83,41,26,13,428,0,0,4,5,4,20,61,150,118,57,41,15,477,0,0,0,0,4,3,21,43,61,46,24,4,204,0,0,0,0,0,4,13,66,97,66,61,6,336,0,0,5,0,8,5,13,35,72,95,187,6,427,0,0,10,11,10,10,21,47,96,46,61,15,331,0,3,19,0,3,4,4,6,3,0,12,26,77,52,73,465,214,153,287,507,834,666,399,453,169,4273
LGA53570,3,5,3,11,7,14,0,0,0,12,54,0,0,3,3,0,8,11,3,0,0,0,8,39,0,0,5,0,0,5,4,5,0,0,0,0,21,0,0,6,0,3,0,0,5,5,0,0,0,14,4,0,0,3,0,0,4,4,0,0,0,0,6,0,0,0,0,0,3,3,9,4,0,0,0,34,0,0,0,0,0,0,0,4,0,0,0,5,10,11,10,30,22,26,58,64,68,12,0,0,50,352
LGA53640,0,4,0,0,5,0,0,0,0,4,7,0,0,0,4,0,6,0,0,0,0,0,0,12,0,0,4,0,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,19,21,13,19,4,0,0,0,0,12,101
LGA53710,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,4,6,10,21,14,17,4,0,5,0,0,3,74
LGA53780,21,15,47,138,487,529,112,15,9,38,1426,4,5,12,6,22,94,308,479,152,13,4,31,1129,6,0,5,6,10,23,139,281,95,18,5,6,603,0,0,3,12,10,34,125,243,137,18,13,10,607,0,5,7,6,10,18,46,149,109,36,3,18,407,7,0,11,26,12,40,195,293,105,23,18,47,772,4,0,8,15,8,19,18,13,3,0,0,54,143,67,80,428,498,470,1179,3109,3251,930,153,91,430,10677
LGA53800,17,32,56,79,181,76,7,0,3,33,487,0,0,17,25,37,78,155,97,19,4,3,23,452,0,0,5,6,14,24,106,62,8,4,3,8,242,0,0,5,9,14,28,67,90,23,4,5,21,267,0,4,3,8,3,21,35,48,28,0,5,15,162,0,0,9,21,25,43,103,71,14,3,0,13,312,6,0,14,13,6,9,8,0,0,0,0,19,66,37,48,316,561,507,787,1103,614,111,30,28,225,4372
LGA53920,19,7,3,0,4,0,0,0,3,13,85,8,3,9,5,0,0,3,0,0,0,5,10,51,3,3,5,8,3,0,3,0,0,0,0,5,29,7,3,4,8,0,0,0,0,0,0,5,10,32,0,0,4,0,0,8,3,0,0,0,0,10,28,17,13,12,6,3,0,3,0,0,0,0,7,65,15,3,4,0,0,0,0,0,0,0,0,7,32,201,129,154,62,14,28,30,12,3,0,9,98,752
LGA53990,4,15,19,30,63,75,16,3,0,12,239,3,0,6,3,14,22,64,112,17,0,0,15,256,0,0,0,0,5,10,25,53,14,0,0,4,116,0,0,0,0,0,4,33,48,19,5,6,10,125,0,0,3,0,3,5,17,41,17,10,4,14,115,0,0,6,3,10,11,46,80,16,5,0,13,191,0,0,7,6,4,0,3,0,0,0,0,11,30,11,15,118,111,150,219,555,676,119,24,16,95,2113
LGA54060,0,0,3,6,10,3,0,0,6,7,32,0,0,4,0,0,12,11,4,0,0,4,0,38,0,0,0,0,4,0,10,4,0,0,4,4,22,0,0,0,0,0,5,4,5,0,0,0,0,16,0,0,0,0,0,3,4,4,0,3,9,0,18,0,0,3,0,0,7,12,8,0,0,0,0,28,0,0,5,0,0,0,0,0,0,0,0,0,6,0,8,45,42,33,82,92,46,6,6,17,36,402
LGA54130,11,5,4,0,0,0,0,0,0,7,27,0,0,6,0,3,0,4,0,0,0,0,3,16,0,0,0,0,0,0,0,0,0,0,0,4,4,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,6,3,11,10,23,20,14,19,8,3,5,0,4,25,131
LGA54170,8,19,15,30,168,505,246,68,39,24,1132,0,0,8,16,19,24,129,554,254,116,65,23,1205,4,0,3,11,5,19,62,272,234,74,46,13,740,0,0,6,12,3,14,71,250,242,172,124,20,911,0,0,4,3,3,9,23,117,194,157,275,11,802,0,0,6,4,6,12,58,267,191,115,98,29,802,0,0,5,0,4,3,8,21,16,3,0,38,105,32,24,215,251,181,349,1291,3391,1811,806,735,289,9375
LGA54200,9,5,12,20,89,236,65,7,10,11,461,4,0,4,4,5,8,71,210,89,15,8,8,425,0,0,0,3,4,8,34,110,50,7,6,4,233,0,0,0,4,4,5,37,100,73,15,5,5,251,0,0,4,0,4,4,13,63,62,26,16,5,197,0,0,6,8,9,4,30,117,70,23,9,28,300,0,0,4,0,3,0,7,3,0,0,0,14,36,18,20,147,139,109,169,704,1400,550,115,62,158,3579
LGA54280,34,38,47,82,145,138,24,14,0,34,552,3,3,17,32,32,79,132,161,65,9,7,43,572,0,3,4,11,12,47,57,84,30,15,3,10,277,0,0,14,16,23,50,107,166,71,36,9,24,505,0,6,15,14,15,49,76,116,81,51,30,30,476,0,6,15,15,14,22,60,67,36,21,5,8,268,0,0,11,3,0,3,8,3,3,0,0,24,64,15,47,279,238,265,504,845,877,329,151,62,228,3852
LGA54310,25,14,31,46,61,58,42,27,44,42,429,38,18,40,22,33,42,58,73,50,45,77,58,557,22,14,12,16,14,21,21,31,24,24,52,31,279,70,26,29,35,26,42,68,46,54,57,133,76,655,354,31,71,75,28,58,73,42,64,43,238,130,1207,54,10,17,23,14,19,30,30,25,20,67,29,333,4,0,0,3,0,0,3,0,3,0,4,15,38,595,119,286,253,188,291,387,346,299,251,661,456,4134
LGA54340,0,11,7,17,14,0,0,0,0,3,63,0,0,3,15,9,9,7,6,0,0,0,0,48,0,0,4,5,0,7,3,0,0,0,0,0,26,0,0,0,0,4,5,6,0,0,0,0,0,21,0,0,0,0,0,7,5,0,0,0,0,0,18,0,0,4,3,4,9,9,3,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,6,10,9,15,68,105,59,80,65,21,0,4,5,24,455
LGA54410,0,0,0,3,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,22,27,12,14,8,0,0,0,0,11,103
LGA54480,0,3,0,0,0,0,0,0,0,4,10,0,0,0,3,0,0,0,0,0,0,0,4,11,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,8,10,0,0,0,0,0,0,0,15,46
LGA54550,3,0,5,7,0,0,0,0,0,3,22,0,0,0,3,0,3,4,0,0,0,0,0,16,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,3,3,0,0,0,0,0,15,0,0,0,0,0,0,0,5,0,0,0,4,9,0,0,0,4,0,0,4,0,0,0,0,3,16,0,0,5,0,0,0,0,0,0,0,0,0,4,8,8,35,35,31,24,30,7,0,0,0,18,202
LGA54620,3,3,0,0,0,0,0,0,0,4,13,4,0,0,3,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,13,4,15,18,3,6,5,0,0,0,7,12,96
LGA54690,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,7,0,0,0,0,0,0,0,3,35
LGA54760,0,5,0,0,0,0,0,0,0,0,5,0,0,3,0,0,7,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,10,19,6,3,3,0,0,0,0,4,49
LGA54830,5,9,23,58,191,233,17,0,5,14,558,0,0,6,5,7,22,112,201,26,3,0,10,395,0,0,0,4,4,23,50,116,26,0,4,5,237,0,0,0,0,3,24,50,120,28,0,3,5,233,0,0,5,7,3,4,20,57,25,8,4,8,141,0,0,5,4,13,37,91,138,30,0,5,21,339,3,4,9,7,4,4,6,12,0,0,0,19,68,35,33,238,296,248,578,1167,1368,189,21,28,163,4347
LGA54900,0,3,5,5,0,0,0,0,0,4,16,0,0,0,9,4,0,0,0,0,0,0,7,19,0,0,0,0,3,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,4,0,0,0,0,0,0,0,0,4,3,12,14,24,19,13,3,3,0,0,0,18,109
LGA54970,0,0,0,0,0,0,0,0,0,9,19,0,0,0,0,0,0,0,0,0,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,8,5,9,8,0,0,0,0,0,29,132
LGA55040,4,3,0,0,0,3,0,0,0,7,32,7,0,3,3,0,3,0,4,0,0,0,11,24,9,0,0,0,0,0,0,0,0,0,0,0,7,15,0,0,3,0,3,0,0,0,0,0,4,19,5,0,0,4,0,0,0,0,7,0,0,8,26,7,0,0,0,0,0,3,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,63,7,17,26,5,8,10,13,7,0,0,36,191
LGA55110,9,23,31,116,291,311,61,14,4,21,882,4,0,11,8,12,64,243,287,71,20,12,15,740,0,0,3,3,6,27,92,140,53,7,7,4,330,3,0,3,5,4,20,95,172,65,23,5,10,410,0,0,4,6,3,17,48,111,84,28,14,10,334,3,0,8,22,23,50,184,262,104,27,13,36,722,4,0,23,23,9,18,24,22,4,0,3,58,188,52,48,409,623,497,1357,2678,2311,582,140,85,328,9112
LGA55180,7,12,9,17,37,14,6,0,0,3,111,0,0,0,0,0,12,19,11,6,0,0,3,58,5,0,3,3,0,4,10,8,0,0,0,0,34,0,0,0,0,4,8,6,4,0,0,0,7,32,0,0,0,0,0,0,4,4,0,0,10,0,26,0,0,0,0,3,5,16,7,0,0,0,0,38,0,0,3,5,0,4,3,0,0,0,0,4,29,27,9,105,169,100,143,196,86,17,4,21,57,921
LGA55250,10,0,0,3,0,0,0,0,0,8,20,0,0,5,0,4,0,5,0,0,0,0,10,18,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,5,7,4,0,7,0,0,0,0,0,0,0,0,4,9,0,0,0,3,0,0,0,0,0,0,0,9,14,28,12,43,15,6,12,4,5,0,0,0,40,164
LGA55320,18,18,22,38,136,352,204,77,38,21,917,5,0,8,10,16,38,108,335,247,95,70,28,952,0,0,0,10,0,9,53,157,163,77,50,12,535,0,0,3,7,3,8,78,211,251,130,106,18,807,0,0,9,6,6,9,22,126,228,197,377,20,1002,0,0,11,11,7,10,37,157,146,80,82,23,577,0,0,15,9,0,9,6,10,0,4,5,27,81,43,50,454,320,199,376,1083,2239,1570,768,798,260,8156
LGA55390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,7,0,0,0,0,0,0,0,10,40
LGA55460,6,5,5,12,11,3,0,0,0,3,49,0,0,0,3,3,7,11,12,4,0,0,4,44,0,0,0,0,0,4,0,3,0,0,0,3,13,0,0,0,0,0,7,3,4,0,0,0,5,19,0,0,0,0,0,3,4,3,0,0,0,0,14,0,0,0,9,0,4,4,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,4,0,16,44,84,29,75,48,32,8,0,3,33,370
LGA55530,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,3,9,28
LGA55600,0,4,8,5,3,0,3,0,0,0,23,0,3,0,4,9,9,3,6,0,0,0,5,27,0,0,0,3,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,11,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,0,0,0,6,5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,22,25,36,55,25,5,5,0,0,17,198
LGA55670,0,0,0,5,0,0,0,0,0,4,7,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,7,10,8,3,0,0,0,0,14,56
LGA55740,0,4,8,15,30,23,11,7,12,3,115,0,0,0,5,0,17,25,28,10,5,15,7,108,0,0,0,0,0,3,9,11,4,4,6,0,43,0,0,0,0,3,5,10,12,19,4,18,0,78,0,0,0,0,0,3,3,6,18,15,91,3,135,0,0,0,3,0,7,17,8,5,3,17,5,62,0,0,8,0,0,9,0,0,0,0,0,4,21,12,13,92,51,86,193,235,160,107,38,173,43,1208
LGA55810,0,0,0,0,0,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,4,15,6,5,0,0,0,0,0,9,55
LGA55880,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,10,14,0,0,0,0,0,0,0,9,40
LGA55950,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,3,11,3,10,10,0,0,0,0,0,3,6,51
LGA56090,7,6,6,10,41,61,18,8,4,8,164,0,0,3,0,0,16,32,49,25,6,0,6,141,0,0,4,0,0,3,9,29,19,0,0,0,67,0,0,0,3,0,5,3,34,28,7,4,0,89,0,0,4,0,3,6,3,17,17,13,14,3,78,0,0,5,6,3,6,13,46,45,24,9,10,159,0,0,3,11,0,4,3,4,3,0,0,15,40,25,11,87,79,56,127,298,437,195,68,32,83,1507
LGA56160,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,0,3,16,34
LGA56230,0,0,3,13,49,28,12,0,4,8,123,0,0,0,3,3,15,39,44,7,4,4,7,124,0,0,0,0,0,0,20,32,3,0,0,3,57,0,0,4,0,3,0,23,18,3,6,0,4,69,0,0,0,0,3,0,5,18,8,0,0,0,42,0,0,3,0,11,6,33,39,8,0,0,9,115,0,0,3,4,0,7,4,6,0,0,0,8,27,11,11,52,84,103,167,404,292,63,10,10,60,1270
LGA56300,0,0,0,0,6,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,3,0,0,0,0,5,6,0,0,0,0,0,0,0,4,0,0,0,3,9,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,15,13,24,41,10,0,0,0,13,125
LGA56370,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,7,9,15,8,9,3,0,0,0,0,0,10,62
LGA56460,0,5,14,20,28,9,0,0,0,4,67,0,0,4,7,8,15,14,8,0,0,0,0,55,0,0,0,0,4,6,10,3,0,0,0,0,19,0,0,0,0,0,12,6,7,0,0,0,4,28,0,0,0,0,4,3,3,7,0,0,0,0,17,0,0,0,8,4,0,9,7,0,0,0,0,32,0,0,3,4,4,3,0,0,0,0,0,3,15,3,13,71,56,91,136,104,49,5,0,3,27,552
LGA56580,0,3,0,4,5,34,31,14,20,0,124,0,0,0,5,0,22,7,31,32,23,41,7,162,0,0,0,0,0,16,7,16,25,4,22,0,95,0,0,0,0,4,33,15,13,34,16,70,3,184,0,0,3,0,0,7,9,19,24,37,335,14,453,0,0,0,3,4,11,16,9,15,13,67,9,144,0,0,6,0,0,3,0,0,0,0,5,4,15,8,8,84,64,23,121,105,219,209,152,614,57,1663
LGA56620,0,0,0,0,0,0,0,0,0,11,47,9,0,0,0,0,0,0,0,0,0,0,10,26,0,0,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,4,4,22,13,0,0,0,0,0,0,0,0,0,0,30,10,10,0,0,0,0,0,0,0,0,0,4,16,177,51,17,4,0,0,0,0,0,0,0,49,294
LGA56730,7,10,8,38,30,22,0,4,0,5,116,0,0,0,3,10,17,33,16,0,0,0,6,91,0,0,0,3,0,6,14,8,0,0,0,6,44,0,0,0,0,4,5,22,12,4,0,0,4,53,0,0,0,5,4,3,18,8,3,0,0,0,44,0,0,8,0,7,11,19,10,5,0,0,3,62,0,0,4,0,3,0,5,0,0,0,0,5,21,7,18,93,99,92,236,227,121,24,0,3,55,981
LGA56790,0,5,6,8,8,0,4,0,3,3,43,0,0,7,0,4,0,10,6,0,0,4,11,47,0,0,0,0,0,0,3,0,0,0,0,4,21,0,0,0,0,3,9,4,5,0,0,8,8,39,4,0,0,0,0,0,6,0,0,0,5,10,32,0,0,0,0,0,6,4,0,0,0,3,0,14,0,0,0,0,0,0,3,0,0,0,0,0,9,6,0,23,44,42,56,63,25,13,3,37,73,395
LGA56860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,3,0,0,0,0,0,0,0,0,0,18
LGA56930,0,0,0,3,0,0,0,0,0,3,14,0,0,0,0,0,0,3,0,5,0,4,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,0,0,0,0,21,0,23,0,0,0,0,0,0,0,0,6,0,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,23,12,11,14,0,37,6,107
LGA57000,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,4,5,0,0,0,0,5,32
LGA57080,6,14,21,51,158,502,203,75,50,24,1102,0,0,3,0,10,53,143,496,299,102,80,22,1224,0,0,0,9,4,9,46,159,130,44,35,3,441,0,0,0,4,9,10,49,251,255,104,98,18,794,0,0,4,0,0,6,40,200,264,183,335,22,1062,0,0,8,0,4,12,32,125,122,55,53,21,437,5,6,7,5,0,4,7,11,14,6,21,26,111,35,34,247,209,163,488,1067,2602,1675,700,777,233,8231
LGA57140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,3,4,4,20,18,10,24,11,0,0,0,0,10,104
LGA57210,3,5,5,13,6,5,3,0,0,5,41,0,0,0,0,3,13,7,4,0,0,3,5,34,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,3,0,3,0,0,0,0,0,10,0,0,0,0,0,0,4,0,0,0,0,3,10,0,0,3,4,5,6,4,0,0,0,0,3,24,0,0,0,9,0,4,0,0,0,0,0,0,12,12,5,40,80,54,103,49,17,9,0,6,28,395
LGA57280,31,39,25,37,31,48,41,12,22,58,368,78,9,49,30,24,45,40,67,54,33,45,75,542,14,4,34,13,10,14,17,26,23,17,19,24,230,101,9,117,18,35,32,22,37,55,39,76,73,620,169,12,177,27,33,33,24,44,65,50,101,94,828,47,10,40,11,7,15,15,24,19,14,32,35,266,6,7,12,6,5,5,0,5,0,0,3,30,85,493,77,548,203,178,248,226,304,304,177,337,451,3554
LGA57350,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4,15,7,10,5,0,0,0,0,0,8,54
LGA57420,3,4,4,3,7,4,0,0,0,12,30,0,0,4,4,5,15,7,0,0,0,0,4,38,0,0,3,0,3,0,0,3,0,0,0,6,19,0,0,0,0,0,0,3,6,0,0,0,7,22,0,0,3,0,0,0,0,0,3,0,0,11,25,0,0,0,3,0,0,0,6,0,0,0,5,16,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,32,20,22,42,27,23,3,0,4,62,239
LGA57490,8,17,41,150,500,627,100,12,8,33,1500,4,0,6,14,21,103,328,613,112,18,14,28,1274,0,0,0,9,14,54,140,343,75,10,3,8,662,0,0,5,5,8,46,132,349,129,24,12,17,724,0,0,3,10,3,27,69,205,100,44,16,13,486,0,0,12,24,17,91,259,532,126,25,9,58,1146,3,0,13,13,4,15,37,21,6,3,6,52,178,51,60,390,505,516,1453,3504,4232,823,161,96,399,12188
LGA57630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10
LGA57700,0,4,4,6,27,96,24,9,8,6,179,0,0,0,0,0,4,27,88,27,3,4,3,165,0,0,0,5,3,6,8,35,10,3,0,0,72,0,0,0,0,0,0,7,45,24,6,6,3,94,0,0,0,0,0,4,3,29,16,11,3,4,67,0,0,0,0,3,3,19,64,22,6,5,3,127,0,0,0,0,0,0,0,5,0,0,0,3,11,5,5,17,32,38,60,228,615,172,45,30,55,1301
LGA57770,0,0,6,6,9,0,0,0,0,5,28,0,0,0,0,0,0,5,3,0,0,3,9,31,0,0,0,3,0,4,7,3,0,0,0,7,23,4,0,0,3,0,0,0,6,0,0,3,11,28,4,0,0,0,3,0,0,9,3,0,15,9,35,0,0,0,0,0,6,5,0,0,0,0,18,33,0,0,0,0,0,3,0,0,0,0,3,3,12,8,7,28,21,20,28,39,19,6,5,37,86,308
LGA57840,20,16,18,47,237,288,106,30,41,11,819,0,0,7,11,12,33,175,306,142,65,50,21,818,0,0,10,8,4,17,79,153,94,31,31,3,433,0,0,4,3,14,12,68,139,154,83,71,15,557,0,0,0,4,0,14,45,116,137,144,248,10,727,3,0,6,14,4,19,74,128,70,44,55,23,440,0,0,9,3,7,6,7,5,9,0,0,25,73,38,63,327,246,161,446,1423,1702,905,460,547,206,6519
LGA57910,47,63,102,394,1159,1299,373,98,77,71,3699,0,0,21,64,76,372,842,1308,509,168,135,63,3567,0,0,12,36,33,129,374,684,353,127,78,21,1855,6,0,17,24,27,101,339,748,520,262,228,50,2314,8,0,15,20,13,47,147,458,419,331,635,47,2138,13,4,26,32,47,76,348,592,345,170,180,100,1931,6,12,59,30,13,22,51,36,19,10,9,124,399,194,295,1808,1361,1110,2970,7242,8143,3184,1344,1478,924,30044
LGA57980,0,0,5,32,58,113,58,24,33,4,345,0,0,4,8,0,15,40,111,79,57,37,0,347,0,0,0,0,0,7,15,42,39,25,29,3,156,0,0,0,0,5,9,26,57,93,53,59,3,309,4,0,0,0,0,7,11,45,95,108,246,7,518,0,0,3,3,0,6,10,21,38,40,31,4,147,0,0,9,3,0,6,3,0,4,0,7,15,40,30,44,200,77,67,252,375,614,522,342,481,79,3087
LGA58050,18,32,22,103,470,632,142,21,11,32,1495,3,0,3,10,15,75,345,599,180,23,13,29,1302,0,0,12,10,6,31,130,295,130,20,7,11,651,0,0,7,11,10,31,110,281,153,38,15,11,660,0,3,7,7,4,12,53,139,107,49,32,20,433,3,3,15,9,21,54,195,355,122,31,21,59,892,6,5,25,12,9,11,23,16,6,3,5,74,201,74,81,629,541,350,1045,3187,3905,1100,225,149,485,11773
LGA58190,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,3,0,0,0,0,0,8,32
LGA58260,0,4,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,4,0,9,11,5,12,0,0,0,0,0,0,16,60
LGA58330,0,0,0,5,4,6,0,0,0,3,25,0,0,0,0,0,0,10,7,0,0,0,4,19,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,3,3,3,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,6,0,0,0,0,0,0,5,0,0,14,8,22,37,61,41,4,4,0,18,211
LGA58400,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,4,6,0,0,0,0,0,0,0,28
LGA58470,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,4,0,0,0,0,0,0,0,0,13,37
LGA58510,9,13,26,95,202,322,92,36,16,20,831,0,0,7,12,32,64,176,386,144,53,15,20,912,0,0,7,6,12,17,69,179,97,41,20,14,457,0,0,3,0,10,20,61,204,175,64,33,11,577,5,0,9,4,6,11,28,129,143,90,99,19,537,0,0,8,11,8,23,60,129,91,41,32,21,422,0,0,18,9,3,12,8,0,3,4,0,28,89,47,54,375,368,338,745,1284,1993,910,357,244,203,6932
LGA58540,0,4,3,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,4,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,8,11,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,4,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,23,14,12,5,0,0,0,0,0,19,79
LGA58570,0,11,24,71,142,355,140,46,23,16,826,0,0,9,6,13,36,118,364,227,76,29,7,895,0,0,0,5,3,11,34,181,157,48,22,12,487,0,0,8,10,7,10,41,220,255,107,66,5,721,0,0,3,0,11,0,25,139,203,134,217,5,759,0,0,3,9,7,10,34,122,138,51,39,18,430,3,3,9,3,0,10,5,8,10,4,4,19,75,25,35,256,224,201,495,877,1996,1373,525,439,158,6599
LGA58610,0,4,0,7,0,0,0,0,0,0,18,0,0,0,3,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,6,4,0,0,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,19,40,18,29,19,0,3,0,0,13,151
LGA58680,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,0,5,0,0,0,0,5,23
LGA58760,18,26,32,85,482,902,264,38,19,49,1928,0,4,13,20,15,56,370,843,352,78,34,23,1806,0,0,5,6,9,31,165,422,237,57,16,26,980,0,0,8,3,8,17,119,410,306,89,33,27,1019,3,0,3,5,5,14,57,236,241,87,62,25,738,0,3,12,18,23,42,210,552,291,63,36,65,1312,9,3,15,4,8,14,28,37,5,0,4,69,189,71,83,555,537,381,1058,3797,5829,2152,502,244,522,15726
LGA58820,0,0,5,5,12,6,0,0,0,0,29,0,0,0,0,0,4,13,4,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,5,0,0,0,0,13,0,0,0,0,3,3,0,4,0,0,0,5,23,0,0,0,0,0,6,6,5,3,0,0,0,13,0,0,0,0,0,3,0,0,0,0,0,7,11,6,0,14,20,33,63,76,30,4,3,0,26,284
LGA58890,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,12,17,0,0,0,0,0,0,0,7,52
LGA59030,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,14,23
LGA59100,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,8,5,9,0,0,0,0,0,6,42
LGA59170,0,0,4,4,3,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,3,5,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,3,5,18,7,15,15,8,0,0,0,0,5,81
LGA59250,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,17,6,0,0,0,6,0,0,0,18,56
LGA59310,0,3,3,4,0,0,0,0,0,3,20,0,0,0,5,0,0,0,0,0,0,0,5,11,0,0,3,0,0,0,3,0,0,0,0,3,7,0,0,3,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,5,5,3,36,34,15,24,12,4,0,0,0,17,152
LGA59320,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,3,3,0,0,0,0,0,0,26
LGA59330,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,15,4,6,0,0,0,0,0,3,50
LGA59340,17,32,16,21,21,32,11,4,3,15,189,0,5,23,22,12,21,21,32,19,0,10,31,192,3,0,10,11,5,6,10,22,14,7,4,12,108,0,4,8,10,22,11,11,23,15,13,9,21,149,5,0,11,7,15,11,15,12,18,14,26,20,162,7,8,12,12,5,12,11,28,7,11,3,14,131,3,4,15,0,4,0,4,5,0,0,0,15,44,101,84,181,157,127,140,168,202,98,54,77,199,1586
LGA59350,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,7,4,0,0,0,0,0,0,12,39
LGA59360,4,5,0,0,0,0,0,0,0,11,19,0,0,5,3,6,0,0,0,0,0,0,12,30,0,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,11,4,30,29,16,9,0,3,0,0,5,36,140
LGA59370,0,3,0,7,12,0,0,0,0,3,30,4,0,6,0,3,6,13,9,0,0,0,7,40,0,0,0,0,4,0,3,0,0,0,0,0,16,0,0,0,0,0,5,5,3,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,4,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,4,5,33,24,21,43,67,41,0,0,0,14,243
LGA59499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3
LGA60210,0,4,5,15,13,7,0,0,6,3,59,0,0,6,0,4,7,7,4,0,0,0,3,36,0,0,0,0,0,3,0,3,0,0,0,0,13,0,0,4,0,3,4,0,0,0,0,4,0,22,0,0,0,0,0,0,3,0,0,0,3,8,15,0,0,0,0,0,7,12,4,0,0,0,0,29,0,0,3,0,3,0,0,0,0,0,0,8,7,12,12,68,77,80,148,125,42,7,5,13,51,632
LGA60410,0,8,8,30,63,96,13,6,0,0,241,4,0,3,0,3,16,44,58,13,11,0,0,151,0,0,0,0,0,5,9,26,12,0,0,0,63,0,0,0,0,0,8,7,22,10,3,0,0,49,0,0,3,0,0,0,8,12,6,0,0,3,40,0,0,4,12,3,23,19,16,7,0,0,0,87,0,0,8,17,3,13,8,3,0,0,0,22,74,20,26,124,279,215,377,484,518,98,21,7,89,2266
LGA60610,6,14,15,78,72,27,0,0,0,7,228,0,0,9,7,15,55,65,27,6,7,0,4,185,0,0,0,6,4,27,23,11,10,0,0,3,74,0,0,0,3,3,16,18,28,6,0,0,0,73,0,0,4,5,3,6,17,19,13,3,0,3,71,0,0,5,16,13,22,36,21,5,0,0,5,126,0,8,10,22,8,5,0,0,0,0,0,15,68,25,36,240,430,320,686,551,194,40,14,7,81,2620
LGA60810,5,8,21,47,64,23,0,0,0,0,161,0,0,3,6,12,18,65,30,4,0,0,7,139,0,0,0,8,3,11,19,21,0,0,0,6,70,0,0,5,0,4,5,8,26,0,0,0,0,54,0,0,0,0,0,5,13,11,4,0,0,5,45,0,0,4,9,5,15,23,11,0,0,0,4,73,0,0,3,9,5,5,3,5,0,0,0,10,44,28,39,194,227,239,422,481,197,19,5,5,87,1941
LGA61010,0,3,0,0,4,3,0,0,0,4,20,0,0,0,0,0,5,3,4,0,0,0,4,16,4,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,3,0,9,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,25,6,18,26,18,21,29,18,0,0,4,39,195
LGA61210,5,10,6,27,21,3,0,0,0,7,84,0,0,6,6,9,11,18,0,0,0,3,7,66,0,0,3,0,0,4,5,3,0,0,0,0,28,0,0,0,0,0,4,0,0,0,0,5,10,26,0,0,0,3,0,3,0,3,0,0,0,3,15,0,0,5,3,9,8,10,0,0,0,0,4,38,0,0,0,3,0,0,0,0,0,0,0,3,9,28,12,90,100,105,166,104,24,6,0,6,57,685
LGA61410,8,20,15,44,131,272,159,26,15,19,697,0,0,5,5,8,18,79,238,162,49,18,10,597,0,0,0,6,7,4,24,98,88,41,8,5,279,0,0,3,3,6,5,27,99,100,49,20,7,323,0,0,3,3,0,6,11,32,59,38,35,11,214,0,0,3,15,8,13,31,74,47,29,10,8,236,7,0,27,14,8,3,4,10,3,0,0,24,97,42,50,436,364,239,413,876,1579,842,287,129,186,5446
LGA61510,3,5,3,7,19,34,5,0,0,0,80,3,0,0,0,3,9,26,17,5,0,4,0,65,0,0,0,0,0,3,4,10,0,0,0,0,18,0,0,0,0,0,0,9,3,0,0,0,0,18,0,0,0,0,0,0,4,0,0,0,4,8,13,0,0,0,3,6,8,15,12,4,0,0,0,53,0,0,0,5,3,0,6,0,0,0,0,0,22,16,22,89,85,89,102,241,176,27,7,12,48,901
LGA61610,8,17,21,87,140,49,6,0,3,16,348,0,0,7,7,13,49,82,41,4,0,0,4,211,0,0,3,7,8,13,46,25,0,6,3,0,111,0,0,9,4,8,10,28,19,0,5,0,0,74,0,0,10,4,3,14,22,12,3,0,0,0,60,0,4,10,16,11,26,31,18,3,0,0,11,128,0,3,11,15,12,26,18,0,0,0,0,24,110,42,60,359,394,376,822,923,293,34,12,12,145,3470
LGA61810,0,6,10,9,10,7,0,0,0,7,64,0,0,3,0,0,8,12,4,0,0,0,9,37,3,0,0,0,4,0,4,0,0,0,0,4,15,0,0,0,0,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,4,4,0,0,0,8,12,0,0,0,3,0,6,9,5,0,0,0,3,21,0,0,7,0,0,0,0,0,0,0,0,3,14,28,4,82,84,82,105,96,35,5,0,8,39,572
LGA62010,8,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,4,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,7,45,25,11,0,10,0,0,0,3,16,118
LGA62210,0,5,7,18,19,13,0,0,0,4,73,0,0,4,0,3,10,10,0,0,0,0,0,35,0,0,0,5,0,0,5,0,0,0,0,0,13,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,3,0,0,0,3,0,0,0,0,13,0,4,0,0,3,11,7,4,0,0,0,0,27,0,0,4,12,5,0,0,0,0,0,0,9,31,7,15,116,141,116,181,134,35,10,0,4,38,804
LGA62410,3,12,4,13,11,9,0,0,0,6,59,5,0,4,6,3,11,8,7,0,0,0,10,55,0,0,0,0,0,9,4,3,0,0,3,0,24,0,0,0,0,0,0,5,3,0,0,0,9,18,0,0,0,0,4,6,0,0,0,0,3,5,17,0,0,0,0,0,4,8,5,3,0,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,5,16,0,40,63,49,96,92,52,8,3,12,44,485
LGA62610,16,14,30,54,159,331,119,14,10,15,773,0,0,5,17,16,41,126,312,108,27,3,9,671,0,0,9,8,3,13,68,164,87,19,6,10,375,0,0,3,12,10,16,42,131,109,20,12,4,369,0,0,12,11,6,7,18,61,89,26,8,4,234,0,0,13,21,17,12,57,124,65,15,5,19,344,3,3,46,19,9,7,8,19,0,0,3,28,157,54,111,740,606,369,636,1280,2140,803,152,72,233,7198
LGA62810,6,31,28,73,166,339,223,99,60,28,1053,0,4,8,21,13,41,105,249,260,120,91,19,922,0,0,6,12,10,15,41,131,135,79,50,13,481,3,0,7,9,14,9,42,102,172,139,99,14,622,0,0,6,6,0,6,24,48,103,110,182,28,522,0,0,4,9,14,19,33,93,103,83,76,29,469,0,0,14,7,0,8,4,3,0,0,0,18,56,47,59,426,490,273,540,1090,1737,1413,817,673,266,7828
LGA63010,3,8,3,25,31,41,11,5,0,0,124,0,0,6,0,3,5,25,38,6,0,0,4,90,0,0,5,0,0,3,10,16,3,0,0,0,40,0,0,0,3,8,12,8,9,4,0,0,0,45,6,0,0,0,0,0,6,0,0,0,3,0,25,0,0,0,9,0,0,19,10,7,0,0,0,51,0,0,5,5,6,3,0,0,0,0,0,8,26,20,12,65,102,106,157,287,237,53,10,7,50,1110
LGA63210,0,0,4,10,11,0,0,0,0,0,28,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,3,0,4,6,5,0,0,0,0,0,20,0,0,3,0,0,0,0,0,0,0,0,7,6,14,7,41,46,38,82,60,9,0,0,4,20,320
LGA63410,0,3,0,5,6,0,0,0,0,0,19,0,0,0,0,4,4,3,0,0,0,0,5,21,4,0,0,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,5,8,21,11,25,23,21,24,25,6,0,0,0,17,167
LGA63610,9,6,13,21,57,175,102,39,12,9,454,0,0,8,7,4,11,33,116,118,33,19,3,350,0,0,0,4,3,4,18,59,61,29,6,0,191,0,0,3,3,0,0,14,54,69,28,17,7,198,0,0,3,5,5,3,10,23,40,29,19,0,140,0,0,3,4,0,4,10,46,46,24,6,10,156,0,0,7,3,0,0,9,0,0,0,0,10,38,27,21,187,201,109,172,397,943,630,242,95,105,3140
LGA63810,5,3,6,25,54,18,0,0,0,8,122,0,4,0,7,3,12,40,23,0,0,0,0,82,6,0,0,0,4,7,17,7,0,0,0,0,40,0,0,0,0,3,4,12,19,0,0,0,5,46,0,0,0,3,0,5,10,3,0,0,0,3,29,0,0,0,4,4,9,8,7,0,0,0,3,42,0,0,3,7,4,0,4,0,0,0,0,9,29,17,15,54,103,103,295,315,129,19,7,4,51,1104
LGA64010,14,46,55,149,330,311,53,18,5,23,1014,0,0,11,25,26,108,267,278,80,26,10,13,857,0,0,6,19,13,35,117,148,59,3,3,5,410,4,0,10,10,10,28,92,133,56,14,9,7,368,0,0,11,4,6,14,42,70,61,19,17,17,263,3,5,11,22,24,76,94,99,36,4,9,33,419,7,3,23,31,14,28,21,12,0,0,0,36,168,79,142,698,1037,836,1681,2321,1755,469,113,70,299,9495
LGA64210,0,17,10,34,61,59,15,0,0,7,203,6,0,5,8,13,28,44,38,7,0,0,3,143,0,0,8,0,8,4,13,24,5,0,0,0,60,0,0,0,0,0,7,14,19,8,0,0,0,54,0,0,0,0,0,7,4,7,10,3,3,3,43,0,0,5,3,13,6,15,15,4,0,0,0,62,0,0,4,5,0,4,3,0,0,0,0,11,27,16,19,127,185,189,330,421,273,74,7,12,69,1723
LGA64610,0,8,8,29,35,19,3,0,4,11,130,7,0,0,8,11,6,24,24,4,0,3,12,104,0,0,5,0,0,11,15,6,4,0,0,0,44,0,0,0,0,4,5,17,5,3,0,0,5,38,0,0,0,3,0,0,8,4,0,0,0,3,17,0,0,5,3,8,7,13,7,6,0,0,0,48,0,0,3,8,3,4,5,0,0,0,0,10,34,24,20,118,160,121,183,275,131,30,5,3,79,1151
LGA64810,0,0,9,8,29,66,35,4,0,5,156,0,0,0,0,0,5,31,49,30,5,3,3,136,0,0,0,0,3,0,4,32,20,7,0,0,65,0,0,0,0,0,0,9,18,18,0,0,0,46,0,0,0,0,0,0,4,6,3,5,0,3,26,0,0,0,0,0,0,15,16,4,0,0,0,43,0,0,4,0,0,7,8,3,0,0,0,3,30,9,5,51,60,66,94,278,419,165,19,16,42,1223
LGA65010,0,0,3,6,7,7,0,0,0,3,37,0,0,0,3,0,4,0,9,4,0,0,7,18,0,0,3,5,0,0,5,3,0,0,0,0,15,0,0,0,0,6,6,0,6,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,5,4,3,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,0,0,0,7,9,5,32,46,25,49,62,52,8,0,0,31,332
LGA65210,0,3,7,0,4,4,0,0,0,0,16,0,0,0,0,0,0,4,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,4,0,8,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,4,0,0,0,0,0,3,5,10,11,22,29,22,42,22,6,0,0,28,194
LGA65410,0,3,11,34,42,28,0,0,0,3,125,0,0,4,3,0,15,30,14,4,0,0,5,79,0,0,0,0,0,9,16,9,4,0,0,0,39,0,0,0,0,0,0,14,10,0,0,0,0,35,0,0,0,0,0,3,5,3,0,0,0,0,29,0,0,0,3,10,3,12,12,0,0,0,0,51,0,0,10,8,0,6,7,0,0,0,0,4,37,15,25,180,228,184,290,300,114,17,5,8,64,1428
LGA65610,6,13,9,10,4,0,0,0,0,7,69,18,0,4,10,10,6,0,0,0,0,0,8,65,0,0,4,6,0,0,0,0,0,0,0,0,15,16,4,0,3,0,4,0,0,0,0,0,0,35,9,0,0,4,0,4,3,5,0,0,0,11,33,0,0,4,8,0,6,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,3,76,18,98,168,59,51,15,15,3,0,7,56,570
LGA65810,4,13,8,31,73,68,18,0,0,0,218,0,0,3,5,8,17,44,59,25,5,0,5,169,0,0,0,0,0,11,14,36,14,4,0,0,87,0,0,0,0,3,4,12,35,24,7,0,0,87,0,0,0,3,0,5,10,14,13,4,4,0,46,5,0,3,0,4,12,19,33,6,3,0,9,92,0,0,0,0,3,3,4,6,0,0,0,11,31,9,13,91,151,151,269,465,451,120,35,15,57,1826
LGA69499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA69799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70200,13,15,6,30,92,132,104,31,18,37,505,0,3,14,11,6,21,96,171,117,53,24,39,546,0,3,4,3,6,11,17,68,83,40,17,11,274,5,0,0,8,0,3,34,88,100,69,52,23,395,5,7,12,5,9,0,21,44,86,84,114,24,417,3,11,19,7,11,11,15,47,69,35,36,31,303,0,8,9,0,0,3,4,6,4,0,0,22,61,100,157,321,198,138,233,522,807,678,350,300,350,4145
LGA70420,17,15,3,15,12,11,5,0,0,39,141,10,3,4,9,0,9,12,11,6,0,0,35,99,14,0,10,0,3,7,3,7,0,0,0,12,49,5,3,3,8,0,4,6,0,4,7,4,30,68,8,3,4,6,0,3,4,6,0,0,7,21,55,29,12,13,10,0,7,4,9,0,0,0,16,89,20,5,0,9,0,0,0,5,0,0,0,10,48,241,95,137,120,21,57,60,51,20,12,13,233,1068
LGA70540,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,4,13,15,14,0,0,0,0,0,0,0,0,0,44
LGA70620,4,7,0,4,0,0,0,0,0,19,71,8,3,5,0,0,0,0,0,0,0,0,16,48,0,0,0,0,0,0,0,0,0,0,0,3,11,6,3,0,0,0,0,0,0,0,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,6,7,16,9,4,7,4,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,4,13,208,156,58,39,10,5,0,0,0,0,4,83,569
LGA70700,0,0,0,0,3,0,0,0,0,5,13,0,0,4,0,0,0,5,8,0,0,3,8,23,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,3,3,15,0,0,0,0,0,0,0,4,3,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,10,13,21,18,7,18,20,17,3,0,15,42,176
LGA71000,16,31,54,198,393,579,334,141,81,62,1898,4,0,12,24,35,188,417,615,402,203,121,69,2094,3,0,4,8,10,117,181,319,310,139,71,26,1191,0,0,4,13,8,105,182,394,410,254,226,38,1641,0,0,10,15,11,48,86,244,281,278,524,54,1557,3,10,25,26,16,162,134,234,207,147,166,60,1199,4,15,17,19,9,3,14,12,15,3,4,51,157,121,246,564,485,420,1413,2343,3234,2353,1316,1307,691,14500
LGA71150,0,0,0,0,0,4,3,4,8,0,21,0,0,0,0,0,0,0,7,11,13,10,0,39,0,0,0,0,0,0,0,0,5,5,3,0,11,0,0,0,0,0,0,0,0,6,0,3,0,10,0,0,0,0,0,0,0,4,3,0,27,0,37,0,0,0,0,0,0,0,0,3,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,38,32,55,5,156
LGA71300,22,26,17,15,6,0,0,0,0,21,177,35,17,12,11,3,7,4,0,0,0,0,17,107,13,4,0,7,11,7,0,0,0,0,0,11,62,6,9,8,16,9,12,0,0,0,0,4,15,75,4,7,0,0,3,6,0,0,0,0,4,6,29,43,12,16,26,11,12,0,0,4,0,0,6,130,7,0,4,3,0,0,0,0,0,0,0,4,27,418,188,119,155,74,73,23,6,3,0,4,124,1188
LGA72200,11,12,3,36,27,33,23,5,4,20,186,4,0,5,12,7,42,25,73,32,10,10,17,238,0,0,4,4,6,38,20,36,26,8,3,7,150,3,5,9,5,4,62,29,42,36,11,11,18,232,3,0,4,12,5,18,22,36,32,10,32,10,174,0,0,8,9,6,21,14,22,28,9,4,14,132,0,0,11,9,0,0,3,3,0,0,0,9,39,31,38,148,130,87,267,207,308,199,65,73,170,1714
LGA72300,4,9,13,11,37,35,26,12,12,17,187,5,0,7,0,9,11,15,26,27,18,12,24,149,0,0,0,0,5,3,7,32,14,21,17,7,106,0,0,8,0,4,0,12,25,20,21,19,4,119,0,0,3,0,0,5,6,18,22,18,32,13,125,0,0,6,0,7,3,13,24,21,14,15,11,109,3,0,0,0,0,0,3,0,3,0,0,10,31,18,10,67,41,85,112,163,249,189,120,146,142,1347
LGA72330,20,9,3,0,5,3,0,0,0,32,130,13,9,6,6,0,4,0,0,0,0,0,29,60,4,3,4,0,0,3,0,0,0,0,0,13,38,7,7,0,5,0,5,0,0,0,0,3,8,37,4,0,0,0,0,0,0,0,0,0,3,12,22,30,17,9,3,3,0,0,0,0,0,0,7,75,12,9,5,0,0,0,0,0,0,0,0,21,46,320,146,123,57,22,15,13,10,3,0,16,169,889
LGA72800,5,11,9,74,118,256,165,66,19,24,750,0,0,3,3,10,55,90,266,192,91,36,27,776,0,0,0,3,0,50,46,125,151,87,36,8,501,0,0,0,0,0,38,38,120,140,106,63,16,528,0,0,0,0,0,11,16,53,77,87,63,24,333,0,3,14,8,3,57,49,112,140,105,37,31,554,8,3,13,4,3,0,5,7,5,3,0,26,67,65,143,273,191,108,442,685,1397,1097,612,292,304,5605
LGA73600,25,8,4,0,6,0,4,0,0,24,145,23,12,13,6,6,5,6,3,0,0,6,23,96,23,6,8,0,0,7,0,0,0,0,3,10,64,3,6,6,0,6,3,7,0,0,0,3,13,51,5,0,8,0,7,0,5,0,3,0,10,18,51,15,14,0,0,3,0,0,0,0,0,0,3,40,0,0,3,0,0,0,0,0,0,0,0,0,3,375,139,163,64,29,28,29,15,8,0,24,139,1014
LGA74050,9,0,4,0,0,0,0,0,0,4,26,6,3,0,0,0,0,0,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,4,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,3,25,9,6,3,3,0,0,0,0,0,0,0,51,6,0,0,0,0,0,0,0,0,0,0,5,9,184,130,87,38,9,3,0,4,0,0,0,30,497
LGA74550,7,8,0,0,0,0,0,0,3,5,46,4,5,7,4,6,0,0,0,0,0,0,10,33,0,0,0,3,3,0,0,0,0,0,0,3,21,7,0,0,0,0,3,0,0,0,0,0,12,28,3,4,0,5,0,3,0,0,0,0,0,10,20,11,7,9,3,0,6,0,0,0,0,0,9,34,4,0,3,0,0,0,0,0,0,0,0,7,13,130,73,64,44,15,13,5,7,6,0,5,81,439
LGA74560,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,5,5,4,3,6,0,0,4,33
LGA74660,23,21,5,4,0,0,8,0,3,28,149,36,9,12,13,3,5,6,0,0,0,6,23,125,17,0,10,4,4,3,0,5,3,0,3,9,50,20,3,9,3,3,0,0,3,0,0,4,22,73,12,5,8,0,0,0,7,5,5,0,6,27,73,39,10,14,5,0,0,0,0,0,0,0,14,92,9,5,3,4,0,0,0,0,0,0,0,14,36,353,113,153,104,31,22,19,16,18,4,25,189,1041
LGA74680,0,0,0,0,0,0,0,0,0,0,25,6,0,4,0,0,0,0,0,0,0,0,4,17,3,0,0,0,0,0,0,0,0,0,0,7,9,0,0,5,0,0,0,0,0,0,0,0,6,16,0,0,4,0,0,0,0,0,0,0,0,0,7,49,10,4,0,0,0,0,0,0,0,0,5,66,13,0,0,0,0,0,0,0,0,0,0,0,9,257,31,59,9,3,0,0,0,0,0,0,32,402
LGA79399,18,18,22,4,6,4,3,4,8,37,154,32,15,23,10,8,5,6,8,5,0,7,41,164,19,10,10,7,9,8,3,4,3,0,7,22,101,39,30,10,12,12,10,0,4,4,0,11,47,194,64,33,14,11,7,0,0,6,0,3,14,35,200,26,21,12,4,4,0,0,0,0,5,0,17,84,4,0,0,0,0,0,0,0,0,0,0,13,27,227,172,169,113,119,44,50,46,31,17,54,293,1328
LGA79499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA79799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89399,92,110,86,288,553,2395,2176,811,375,135,7060,10,7,34,53,59,209,430,2068,2757,1400,643,147,7823,12,0,26,26,27,145,206,868,1613,897,463,76,4359,7,6,26,57,40,168,283,956,1926,1643,1112,128,6344,4,0,36,58,41,106,231,585,1315,1569,2421,142,6513,5,18,74,69,43,102,104,313,555,493,448,175,2413,6,10,64,15,6,12,17,28,38,36,27,193,462,519,551,3601,1843,1100,2027,3372,10827,13054,7804,6069,1765,52522
LGA89499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99399,7,0,0,5,12,6,0,0,0,3,45,0,0,0,0,4,7,7,4,0,0,0,0,29,0,0,0,5,0,3,0,4,3,0,0,0,17,3,0,0,3,5,5,0,3,0,0,0,3,20,0,0,0,0,0,0,0,5,0,0,0,0,11,4,0,0,0,0,0,7,3,6,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,3,6,30,6,24,42,44,46,64,36,10,5,6,23,333
LGA99499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA_CODE_2021,C16_2500_2999_R650more,C16_2500_2999_R_NS,C16_2500_2999_R_Tot,C16_3000_3999_R1_74,C16_3000_3999_R75_99,C16_3000_3999_R100_149,C16_3000_3999_R150_199,C16_3000_3999_R200_224,C16_3000_3999_R225_274,C16_3000_3999_R275_349,C16_3000_3999_R350_449,C16_3000_3999_R450_549,C16_3000_3999_R550_649,C16_3000_3999_R650more,C16_3000_3999_R_NS,C16_3000_3999_R_Tot,C16_4000more_R1_74,C16_4000more_R75_99,C16_4000more_R100_149,C16_4000more_R150_199,C16_4000more_R200_224,C16_4000more_R225_274,C16_4000more_R275_349,C16_4000more_R350_449,C16_4000more_R450_549,C16_4000more_R550_649,C16_4000more_R650more,C16_4000more_R_NS,C16_4000more_R_Tot,C16_PI_S_R1_74,C16_PI_S_R75_99,C16_PI_S_R100_149,C16_PI_S_R150_199,C16_PI_S_R200_224,C16_PI_S_R225_274,C16_PI_S_R275_349,C16_PI_S_R350_449,C16_PI_S_R450_549,C16_PI_S_R550_649,C16_PI_S_R650more,C16_PI_S_R_NS,C16_PI_S_R_Tot,C16_AI_NS_R1_74,C16_AI_NS_R75_99,C16_AI_NS_R100_149,C16_AI_NS_R150_199,C16_AI_NS_R200_224,C16_AI_NS_R225_274,C16_AI_NS_R275_349,C16_AI_NS_R350_449,C16_AI_NS_R450_549,C16_AI_NS_R550_649,C16_AI_NS_R650more,C16_AI_NS_R_NS,C16_AI_NS_R_Tot,C16_Tot_R1_74,C16_Tot_R75_99,C16_Tot_R100_149,C16_Tot_R150_199,C16_Tot_R200_224,C16_Tot_R225_274,C16_Tot_R275_349,C16_Tot_R350_449,C16_Tot_R450_549,C16_Tot_R550_649,C16_Tot_R650more,C16_Tot_R_NS,C16_Tot_R_Tot,C21_Neg_Ni_inc_R1_74,C21_Neg_Ni_inc_R75_99,C21_Neg_Ni_inc_R100_149,C21_Neg_Ni_inc_R150_199,C21_Neg_Ni_inc_R200_224,C21_Neg_Ni_inc_R225_274,C21_Neg_Ni_inc_R275_349,C21_Neg_Ni_inc_R350_449,C21_Neg_Ni_inc_R450_549,C21_Neg_Ni_inc_R550_649,C21_Neg_Ni_inc_R650more,C21_Neg_Ni_inc_R_NS,C21_Neg_Ni_inc_R_Tot,C21_1_149_R1_74,C21_1_149_R75_99,C21_1_149_R100_149,C21_1_149_R150_149,C21_1_149_R200_224,C21_1_149_R225_274,C21_1_149_R275_349,C21_1_149_R350_449,C21_1_149_R450_549,C21_1_149_R550_649,C21_1_149_R650more,C21_1_149_R_NS,C21_1_149_R_Tot,C21_150_299_R1_74,C21_150_299_R75_99,C21_150_299_R100_149,C21_150_299_R150_199,C21_150_299_R150_224,C21_150_299_R225_274,C21_150_299_R275_349,C21_150_299_R350_449,C21_150_299_R450_549,C21_150_299_R550_649,C21_150_299_R650more,C21_150_299_R_NS,C21_150_299_R_Tot,C21_300_399_R1_74,C21_300_399_R75_99,C21_300_399_R100_149,C21_300_399_R150_199,C21_300_399_R200_224,C21_300_399_R225_274,C21_300_399_R275_349,C21_300_399_R350_449,C21_300_399_R450_549,C21_300_399_R550_649,C21_300_399_R650more,C21_300_399_R_NS,C21_300_399_R_Tot,C21_400_499_R1_74,C21_400_499_R75_99,C21_400_499_R100_149,C21_400_499_R150_199,C21_400_499_R200_224,C21_400_499_R225_274,C21_400_499_R275_349,C21_400_499_R350_449,C21_400_499_R450_549,C21_400_499_R550_649,C21_400_499_R650more,C21_400_499_R_NS,C21_400_499_R_Tot,C21_500_649_R1_74,C21_500_649_R75_99,C21_500_649_R100_149,C21_500_649_R150_199,C21_500_649_R200_224,C21_500_649_R225_274,C21_500_649_R275_349,C21_500_649_R350_449,C21_500_649_R450_549,C21_500_649_R550_649,C21_500_649_R650more,C21_500_649_R_NS,C21_500_649_R_Tot,C21_650_799_R1_74,C21_650_799_R75_99,C21_650_799_R100_149,C21_650_799_R150_199,C21_650_799_R200_224,C21_650_799_R225_274,C21_650_799_R275_349,C21_650_799_R350_449,C21_650_799_R450_549,C21_650_799_R550_649,C21_650_799_R650more,C21_650_799_R_NS,C21_650_799_R_Tot,C21_800_999_R1_74,C21_800_999_R75_99,C21_800_999_R100_149,C21_800_999_R150_199,C21_800_999_R200_224,C21_800_999_R225_274,C21_800_999_R275_349,C21_800_999_R350_449,C21_800_999_R450_549,C21_800_999_R550_649,C21_800_999_R650more,C21_800_999_R_NS,C21_800_999_R_Tot,C21_1000_1249_R1_74,C21_1000_1249_R75_99,C21_1000_1249_R100_149,C21_1000_1249_R150_199,C21_1000_1249_R200_224,C21_1000_1249_R225_274,C21_1000_1249_R275_349,C21_1000_1249_R350_449,C21_1000_1249_R450_549,C21_1000_1249_R550_649,C21_1000_1249_R650more,C21_1000_1249_R_NS,C21_1000_1249_R_Tot,C21_1250_1499_R1_74,C21_1250_1499_R75_99,C21_1250_1499_R100_149,C21_1250_1499_R150_199,C21_1250_1499_R200_224,C21_1250_1499_R225_274,C21_1250_1499_R275_349,C21_1250_1499_R350_449,C21_1250_1499_R450_549,C21_1250_1499_R550_649,C21_1250_1499_R650more,C21_1250_1499_R_NS,C21_1250_1499_R_Tot,C21_1500_1999_R1_74,C21_1500_1999_R75_99
LGA10050,0,4,164,0,0,5,9,0,20,18,58,18,3,3,4,142,0,0,0,7,0,6,9,23,13,6,0,6,66,3,5,22,28,29,65,81,80,14,0,0,11,337,0,6,31,42,15,20,14,5,0,0,0,44,176,57,100,736,1261,730,1321,1295,714,115,17,20,199,6566,0,7,13,29,9,18,18,5,4,0,0,24,120,0,5,8,4,6,9,0,3,0,0,0,3,42,11,11,30,42,18,18,18,8,0,3,0,16,169,5,22,68,109,28,39,36,12,0,0,0,12,321,4,6,128,164,73,113,57,18,3,5,0,16,591,3,8,65,210,103,157,106,49,10,0,3,20,733,0,9,37,136,73,126,139,67,5,0,0,14,621,6,4,28,98,76,177,149,74,8,0,6,16,642,6,9,15,95,74,164,217,108,14,0,3,20,718,0,3,15,71,54,125,226,131,20,11,0,17,674,0,0
LGA10180,0,0,95,0,0,0,6,4,14,12,40,16,0,0,5,91,0,0,5,0,0,0,0,19,9,3,0,0,33,0,4,11,19,16,37,62,58,11,4,3,0,227,0,0,9,31,13,15,8,3,3,3,0,21,102,43,58,282,488,407,633,783,593,108,21,13,106,3534,0,0,6,5,3,11,17,10,3,0,0,4,61,5,0,3,7,0,3,6,3,0,0,0,0,28,0,12,10,17,14,13,20,6,0,0,0,9,97,0,3,18,52,29,17,14,11,3,0,4,7,157,0,4,16,58,32,38,50,20,0,0,0,8,229,0,4,6,80,38,87,77,37,0,0,4,4,346,0,0,13,34,39,74,73,39,9,5,0,8,295,3,0,6,30,28,91,91,61,4,4,6,8,338,4,0,4,25,37,66,118,79,13,3,7,10,364,4,0,10,14,29,68,112,75,10,0,0,8,335,4,0
LGA10250,11,5,147,0,0,4,5,3,0,12,35,33,26,22,0,149,0,0,0,0,0,0,7,9,25,17,12,6,72,0,0,13,8,5,17,53,100,61,31,16,10,300,0,0,26,12,10,12,24,11,11,0,0,24,127,24,31,390,225,209,400,919,1211,611,218,123,144,4507,0,0,6,4,3,3,4,3,3,0,6,14,63,0,4,11,4,3,0,0,3,4,3,0,7,36,4,0,17,5,7,7,11,8,7,0,0,3,67,0,6,57,18,10,16,26,11,3,0,3,10,164,8,0,122,38,14,22,41,24,7,3,5,18,311,4,0,33,28,23,37,81,66,31,7,15,16,348,4,4,11,27,14,29,64,100,41,21,12,10,331,0,0,28,6,19,27,81,108,53,17,11,7,364,0,0,4,11,14,26,76,138,80,53,30,3,433,0,3,6,9,5,14,45,133,136,56,32,9,454,3,0
LGA10300,0,0,11,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,4,18,0,0,0,6,6,0,0,0,0,0,0,0,12,19,7,39,70,32,17,4,6,0,0,0,29,217,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,4,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,5,5,0,0,0,0,0,0,16,0,0,0,5,0,8,0,0,0,0,0,0,17,0,0,0,0,4,0,0,0,0,0,0,0,15,7,0
LGA10470,0,4,156,0,0,0,0,5,12,26,61,9,0,0,4,122,0,0,0,0,0,0,12,19,11,0,0,0,42,0,0,12,23,24,32,78,79,11,0,0,12,277,0,0,23,7,3,5,16,5,0,0,0,23,93,61,46,325,432,371,732,1215,890,92,7,12,144,4333,0,3,7,4,8,3,10,4,5,0,0,14,63,0,0,6,0,0,5,5,5,4,0,0,0,21,5,9,14,8,6,9,7,4,0,0,0,4,73,0,11,33,35,19,15,24,12,0,0,0,11,168,10,7,67,40,35,32,44,25,0,0,0,10,280,3,0,31,57,36,68,95,43,8,0,0,12,356,3,0,14,33,47,57,87,66,9,0,0,13,335,0,3,25,44,46,74,141,88,14,0,0,10,451,0,5,10,19,36,64,185,128,29,0,0,15,498,0,3,6,14,25,53,138,160,32,3,3,10,444,0,0
LGA10500,335,23,1483,4,5,11,4,9,18,37,209,399,509,547,31,1771,0,0,0,3,0,11,18,58,127,222,426,24,897,3,0,24,24,15,43,65,274,318,291,320,86,1466,14,5,75,10,6,9,9,34,33,31,27,63,318,151,119,1074,519,349,473,1055,4808,4737,3619,3179,722,20801,11,7,44,22,5,13,52,108,164,111,126,50,719,0,3,14,9,0,5,14,22,24,23,13,11,144,15,33,58,25,9,8,23,39,46,22,21,18,314,16,36,230,63,23,27,42,78,64,28,23,31,665,13,9,371,70,27,26,52,150,100,48,34,30,937,3,14,68,72,37,48,107,246,169,72,48,30,912,16,5,48,73,49,55,122,271,251,119,75,33,1113,8,8,41,31,34,68,141,431,325,160,119,47,1423,3,0,20,26,32,60,177,591,517,258,175,53,1922,4,0,18,20,25,44,135,617,587,356,265,51,2121,0,3
LGA10550,0,3,54,0,0,0,0,0,0,11,21,9,0,3,3,54,0,0,3,0,3,0,4,8,4,0,5,0,19,0,0,11,15,14,26,57,38,3,4,0,11,191,4,3,8,15,9,5,5,0,0,0,4,15,71,33,41,278,347,339,529,710,436,44,7,24,115,2919,0,0,6,5,5,3,7,9,0,0,0,7,56,0,0,7,0,6,7,0,9,0,0,0,4,32,8,0,15,12,8,6,7,4,0,0,0,3,57,4,0,26,23,22,19,22,8,3,0,0,4,131,3,3,57,30,33,33,38,21,3,0,0,17,235,0,3,29,54,38,72,63,48,9,0,0,9,329,5,3,15,18,14,42,68,45,18,0,3,8,247,0,0,12,12,29,32,71,61,11,0,3,7,242,4,0,11,9,23,32,79,88,19,8,0,11,289,0,0,8,6,16,37,82,92,35,0,4,14,305,6,0
LGA10600,0,0,23,0,0,0,0,0,0,8,8,6,0,0,4,26,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,3,0,3,8,22,26,4,0,0,5,73,3,0,4,4,0,4,6,4,0,0,0,12,37,17,10,101,110,82,187,299,263,45,11,12,37,1184,0,0,3,0,0,0,4,7,0,0,0,3,21,0,0,0,4,0,0,3,0,0,0,0,0,7,0,0,5,0,0,3,0,0,0,0,0,0,14,0,0,10,12,11,10,17,11,4,0,0,8,69,5,3,0,10,3,18,12,13,3,0,0,5,84,0,0,3,12,18,26,26,22,6,0,0,0,105,0,0,5,15,0,19,27,36,8,0,0,10,114,0,0,3,4,7,8,40,35,19,3,0,4,119,0,0,0,4,3,14,35,41,10,5,0,0,115,5,0,0,4,4,9,27,41,13,8,0,0,105,0,0
LGA10650,0,0,10,0,0,0,0,5,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,10,11,8,9,0,0,0,0,0,49,0,3,7,8,0,0,0,3,0,0,0,0,25,20,45,132,202,109,106,60,15,0,0,5,39,740,0,0,3,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,8,0,0,3,3,4,9,0,0,0,0,0,0,23,0,11,23,21,3,7,9,0,0,0,0,3,72,0,0,16,17,22,16,3,0,0,0,0,6,86,0,0,4,8,5,8,11,5,0,0,0,0,57,0,0,8,16,8,13,9,3,0,0,0,4,66,6,0,8,14,9,12,22,0,0,0,0,0,73,0,0,0,10,7,15,12,0,0,0,0,0,51,0,0
LGA10750,115,36,1842,14,3,18,15,21,33,111,510,526,329,180,33,1789,0,0,7,11,4,14,44,203,209,233,190,29,937,12,13,82,107,72,115,288,696,392,197,110,150,2219,26,21,131,76,37,32,64,114,34,13,7,198,756,390,337,2361,1786,1009,1481,4518,11007,4973,2152,1031,1134,32194,20,29,97,57,39,35,94,201,83,40,24,116,837,6,19,30,16,10,11,19,33,18,3,4,20,195,45,100,127,62,36,33,54,79,31,14,4,37,620,49,101,447,144,70,74,131,174,48,16,4,53,1316,28,41,798,289,98,113,168,253,77,20,10,86,1976,14,28,173,205,123,153,305,450,125,55,20,49,1702,15,31,131,330,113,184,379,725,247,94,21,58,2326,16,12,122,151,149,218,460,961,315,121,54,82,2646,8,9,52,102,93,179,581,1303,543,196,58,82,3205,11,3,46,98,68,147,545,1519,681,282,86,57,3547,8,9
LGA10800,0,0,6,0,0,0,3,0,5,7,4,0,0,0,0,26,0,0,0,0,0,3,6,3,0,0,0,0,11,0,5,3,3,0,5,0,0,0,0,0,4,27,5,0,0,3,0,0,0,0,0,0,0,5,17,37,16,67,101,43,74,21,7,4,0,3,29,408,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,4,6,0,0,0,0,0,0,0,0,8,4,0,6,10,0,0,3,0,0,0,0,0,32,0,0,3,6,4,0,0,0,5,0,0,0,29,0,0,8,6,0,4,0,0,0,0,0,4,27,0,0,0,13,9,4,3,0,0,0,0,0,30,0,0,3,3,5,6,6,0,0,0,0,3,21,0,0,0,6,8,3,4,0,0,0,0,4,28,3,0
LGA10850,0,0,21,0,0,0,0,0,4,8,0,0,0,0,0,17,0,0,0,0,0,0,0,6,0,0,0,0,9,0,0,0,0,8,10,12,6,0,0,0,0,33,0,0,0,0,8,3,0,0,0,0,0,3,15,10,8,54,83,92,127,101,37,8,0,7,25,551,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,6,6,0,0,3,0,0,0,0,0,28,0,0,8,10,9,10,0,0,0,0,0,3,45,0,0,17,12,3,9,8,0,0,0,0,0,53,0,0,0,10,6,19,10,3,0,0,0,4,57,0,0,5,4,8,17,12,3,0,0,0,0,46,0,0,4,3,0,11,16,6,0,0,0,0,43,0,0,0,0,8,10,24,8,0,0,0,8,60,0,0
LGA10900,4,7,202,4,0,0,5,0,5,20,59,56,32,13,5,193,0,0,0,0,0,3,3,24,32,25,14,0,103,0,0,0,10,4,29,45,132,49,17,8,9,305,7,3,7,27,4,13,17,17,7,0,0,34,139,34,28,135,358,215,490,979,1774,691,203,77,172,5157,0,0,0,6,5,8,18,24,6,0,5,17,85,0,0,0,0,0,3,3,7,0,5,0,5,28,0,8,4,19,3,5,8,15,5,0,3,5,87,0,4,18,38,12,19,30,25,14,8,0,12,181,6,0,17,90,24,38,61,62,18,5,7,17,331,4,0,12,86,36,63,118,131,36,11,4,16,510,0,0,12,13,9,30,69,147,49,6,0,5,328,0,0,0,9,13,27,81,173,71,4,4,9,380,0,0,5,7,10,42,93,214,101,25,3,9,505,0,0,0,6,13,26,64,223,146,24,9,8,523,0,0
LGA10950,0,0,9,0,0,3,0,0,4,0,0,0,0,0,0,17,0,0,3,0,0,0,0,0,0,0,0,0,12,0,0,4,0,4,0,4,0,0,0,0,3,18,0,0,0,5,3,0,0,0,0,0,0,0,13,24,16,46,66,47,35,22,4,0,0,4,25,282,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,8,0,0,5,3,0,0,0,0,0,0,0,4,12,0,0,4,4,3,4,4,0,0,0,0,0,25,0,0,0,9,3,0,0,0,0,0,0,0,16,0,0,5,6,0,4,0,0,0,0,0,0,17,0,0,0,9,0,0,0,0,0,0,0,0,19,4,0,0,5,4,4,0,0,0,0,0,4,22,3,0
LGA11150,0,0,16,14,0,3,0,0,0,4,0,0,0,0,0,28,0,0,0,3,0,0,0,0,0,0,0,0,3,3,0,0,6,4,0,0,0,0,0,0,0,19,0,0,4,0,0,4,0,0,0,0,0,3,13,69,14,49,74,35,26,18,0,5,0,5,25,320,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,7,0,0,0,0,0,0,10,0,0,5,3,0,4,0,0,0,0,0,0,12,0,4,3,6,0,0,0,0,0,0,0,0,17,0,0,0,5,0,10,0,0,0,0,0,0,18,3,0,0,7,3,4,6,0,0,0,0,9,32,7,0
LGA11200,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,3,10,10,5,0,0,0,0,0,0,0,0,22,6,4,5,0,3,0,0,0,0,0,0,0,20,41,116,65,47,10,8,0,0,0,0,0,13,300,0,0,3,0,0,0,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,8,0,0,0,0,0,0,0,4,16,0,0,7,8,0,0,0,0,0,0,0,0,21,0,5,6,9,0,0,0,0,0,0,0,9,18,0,0,6,9,0,0,0,0,0,0,0,0,15,0,0,4,8,0,0,0,0,0,0,0,5,20,0,0,8,5,0,0,0,0,0,0,0,0,19,0,0,3,10,4,0,0,0,0,0,0,3,25,0,0,3,10,0,0,0,0,0,0,0,0,14,0,0
LGA11250,0,5,56,4,6,3,10,4,12,15,12,0,0,0,4,74,6,0,4,0,0,4,3,8,0,3,0,4,29,0,3,9,16,13,17,17,11,0,0,0,0,102,4,0,21,27,8,0,0,0,0,0,0,12,64,73,74,204,450,265,259,178,64,5,4,13,72,1653,0,0,0,12,5,4,10,4,0,0,0,3,36,0,0,0,6,4,0,0,0,0,0,0,0,17,0,0,11,17,9,5,0,0,0,0,0,4,49,3,0,10,40,3,16,9,0,0,0,0,9,101,6,8,16,61,32,20,8,0,0,0,0,8,163,0,4,30,54,40,34,13,0,0,0,3,8,182,0,0,9,29,32,34,17,4,0,0,0,3,127,0,0,6,28,28,41,25,5,0,0,0,7,148,5,4,9,32,23,34,18,5,0,0,6,7,139,5,0,4,32,34,38,19,8,3,0,0,9,149,14,11
LGA11300,73,9,346,0,0,0,3,3,6,3,44,124,86,90,8,370,0,0,0,0,6,4,0,23,48,41,106,4,236,0,0,3,3,8,6,8,37,82,69,68,31,315,3,0,5,3,4,0,3,7,11,11,14,15,79,26,23,204,133,85,141,241,682,1348,856,949,219,4900,0,0,5,9,5,13,18,40,87,95,44,19,347,0,0,0,0,0,0,0,7,12,11,4,0,41,4,0,17,3,6,4,6,10,11,14,7,8,93,3,0,57,18,14,16,13,22,26,24,15,5,215,3,6,76,14,4,7,16,24,35,18,8,6,220,0,0,18,8,22,17,34,38,57,44,18,10,261,0,0,7,13,18,29,33,52,68,44,21,17,305,0,0,8,12,9,29,36,64,87,45,26,12,329,0,0,4,4,12,24,49,107,119,83,44,12,456,0,0,4,11,4,23,43,117,166,94,51,21,532,0,0
LGA11350,43,5,124,0,0,0,5,3,0,4,10,19,27,47,4,118,0,0,0,0,6,3,4,3,10,15,56,0,81,0,0,3,5,10,7,34,70,92,73,76,11,386,0,0,3,11,0,4,6,12,10,4,11,18,62,15,15,79,234,160,220,391,743,603,417,450,129,3458,0,0,3,0,5,5,4,7,5,3,8,4,50,0,0,0,0,0,4,3,4,5,8,5,3,25,0,0,7,9,3,6,4,6,3,4,0,7,56,0,0,13,23,13,12,13,10,3,7,7,8,117,0,0,8,37,23,19,33,19,10,7,11,12,195,0,0,8,44,24,30,49,67,38,19,27,23,332,0,0,0,12,10,20,35,38,38,31,25,9,226,0,0,6,6,10,16,35,58,43,36,40,13,272,0,0,6,7,11,26,27,62,65,43,53,6,304,0,0,3,4,4,19,16,60,65,63,70,6,327,0,0
LGA11400,0,0,20,0,0,0,6,0,5,6,3,0,0,0,0,20,0,0,0,5,4,0,0,0,0,0,0,0,18,0,4,7,13,7,7,7,0,0,0,0,3,49,0,0,4,6,4,5,0,0,0,0,0,9,26,48,19,94,161,103,124,100,37,10,3,9,61,759,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,6,4,0,0,0,0,0,13,0,0,6,0,6,5,0,0,0,0,0,0,23,0,9,16,9,6,8,4,0,0,0,0,9,53,0,0,6,14,17,14,4,4,0,0,0,0,60,0,0,8,7,13,22,14,5,0,0,0,3,69,4,3,3,10,8,13,10,4,0,0,0,5,66,0,0,3,9,5,21,18,5,0,0,0,4,68,4,0,4,15,6,16,18,4,0,0,0,5,76,5,0
LGA11450,22,0,444,0,0,0,3,0,7,9,39,196,111,20,4,394,0,0,5,0,0,0,6,16,92,97,29,5,250,0,3,0,8,4,11,25,77,143,73,18,19,388,0,0,7,3,0,4,4,8,18,4,0,33,84,25,19,166,94,81,163,287,1177,1815,778,166,163,4947,0,0,3,3,0,6,13,29,42,24,3,32,156,3,0,0,0,0,0,0,0,4,6,3,0,20,5,0,12,3,3,0,7,4,8,0,0,8,46,0,4,28,13,3,9,19,25,22,6,4,5,144,3,3,54,20,10,16,25,31,39,16,6,13,227,0,3,15,27,6,24,40,69,64,29,7,12,294,4,0,11,23,6,25,45,86,107,52,14,23,399,0,0,9,7,19,19,69,141,158,73,14,18,514,0,0,4,8,9,25,68,182,244,84,21,20,669,0,0,0,0,7,14,53,153,297,125,30,23,722,6,0
LGA11500,14,16,761,0,0,8,6,9,15,47,242,165,51,9,12,575,0,0,3,9,4,5,22,74,84,36,14,6,255,6,11,46,82,48,61,168,417,161,47,15,57,1123,10,10,82,41,14,20,37,56,15,0,4,105,392,209,185,1506,1158,688,880,2698,6105,1810,398,116,539,16296,5,6,51,26,12,14,42,89,45,4,4,62,374,0,12,15,12,9,9,5,24,6,0,0,14,99,23,57,94,48,19,23,32,39,6,4,0,30,363,30,61,279,90,41,37,75,95,24,3,4,38,781,20,27,519,152,52,76,120,151,35,9,8,57,1218,15,12,127,137,66,93,216,316,81,24,4,24,1125,5,11,70,219,80,129,228,450,114,23,13,17,1355,5,6,76,96,98,135,295,623,138,26,12,54,1569,4,3,34,69,79,121,355,768,218,66,11,52,1777,10,4,28,47,38,79,287,927,250,79,17,36,1807,5,3
LGA11520,319,7,916,6,0,5,0,5,14,17,52,320,421,706,21,1570,0,0,0,3,3,8,12,25,138,282,798,15,1282,4,0,9,12,14,16,21,55,154,204,346,46,886,0,4,26,14,6,3,5,11,37,19,30,25,176,60,49,416,228,133,188,329,829,2676,2682,3825,362,11777,4,0,27,4,0,9,10,29,79,47,54,39,298,0,0,5,0,0,0,0,7,13,7,10,5,51,0,9,24,7,0,0,0,5,15,7,21,6,105,3,14,87,40,12,6,19,33,27,17,19,14,273,10,7,109,47,15,18,12,36,44,23,18,13,345,5,0,24,27,12,10,20,58,68,49,39,16,338,4,4,15,18,16,15,25,58,100,54,65,27,394,0,3,17,14,10,9,27,109,123,84,76,19,509,5,0,13,13,10,7,27,142,196,119,118,21,681,3,4,24,9,7,11,37,158,231,153,141,20,793,5,0
LGA11570,164,32,1619,3,0,18,22,12,8,74,307,416,314,293,35,1495,0,4,10,9,4,12,23,91,165,166,244,20,741,13,13,77,134,83,92,269,751,630,320,194,177,2767,23,10,162,65,24,30,54,110,61,29,20,193,785,489,461,3263,2173,1298,1440,4414,11287,7036,3244,1865,1495,38453,31,54,167,103,56,83,173,320,207,100,72,186,1544,10,22,34,32,17,8,24,49,28,16,11,19,270,54,159,245,95,52,46,63,121,73,28,19,64,1021,49,159,788,270,99,100,167,254,130,41,11,113,2191,35,65,1081,361,162,173,270,375,223,87,44,120,2996,21,39,203,296,132,163,363,602,337,129,75,83,2438,11,27,166,335,162,274,443,871,519,197,126,118,3242,16,13,118,170,172,273,518,1032,607,224,124,97,3372,10,3,53,119,115,225,690,1331,774,358,206,118,4004,0,8,45,78,66,176,534,1339,977,403,255,102,3990,11,6
LGA11600,0,0,9,0,0,0,5,0,0,0,0,0,0,0,3,18,3,0,0,0,0,0,0,0,0,0,0,0,4,6,0,4,9,5,0,0,0,0,0,0,6,17,0,0,0,0,0,0,5,0,0,0,0,6,13,30,9,51,54,34,29,11,0,0,0,3,40,259,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,5,0,0,0,0,0,0,0,15,0,0,0,5,8,5,0,0,0,0,0,3,18,0,0,3,5,0,6,0,4,0,0,0,0,18,0,0,0,4,3,0,4,0,0,0,0,5,13,5,0,5,0,7,4,4,0,0,0,0,0,19,4,0,4,4,3,7,3,0,0,0,0,3,24,5,0
LGA11650,44,20,1274,3,5,10,15,14,32,99,366,350,154,107,28,1171,0,0,8,4,7,16,33,111,139,89,121,18,543,12,7,48,77,50,122,375,775,388,110,73,79,2121,23,9,149,89,61,69,147,97,28,17,8,164,852,242,233,1797,1858,1414,2441,6736,10439,4066,1105,653,916,31899,4,12,58,38,13,47,74,139,76,25,20,88,594,8,5,27,17,5,16,19,38,19,7,7,15,179,29,58,118,58,36,45,57,68,14,9,6,26,526,28,63,326,160,86,125,212,215,58,10,7,64,1353,34,31,560,285,158,243,317,381,108,28,20,94,2261,5,15,133,298,211,329,681,746,216,54,21,74,2782,12,17,94,181,116,215,485,985,325,77,36,69,2615,11,7,89,113,102,206,572,1188,412,110,47,80,2938,8,3,43,83,86,167,639,1458,587,128,69,74,3360,9,4,19,54,65,115,456,1430,698,193,88,71,3198,10,10
LGA11700,0,0,10,6,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,4,3,4,3,0,3,4,0,0,0,0,0,3,21,6,0,4,0,0,0,0,0,0,0,0,0,7,55,22,78,30,10,7,6,0,0,0,0,21,228,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,7,0,0,0,0,0,0,0,3,10,0,0,0,5,0,0,0,0,0,0,0,4,8,4,0,4,6,0,0,0,0,0,0,0,0,18,0,0,0,4,0,3,0,0,0,0,0,0,15,0,0,7,8,7,0,0,0,0,0,0,0,20,6,0,8,6,0,0,3,0,0,0,0,4,26,5,0,7,3,6,0,0,0,0,0,0,0,32,9,3,0,3,0,3,0,0,0,0,0,3,17,8,0
LGA11720,0,4,146,0,0,4,3,0,7,24,46,7,4,0,3,108,0,0,0,0,0,8,14,23,4,5,3,0,58,4,0,12,13,12,28,102,64,7,5,0,15,263,8,0,21,15,10,20,37,12,0,0,0,32,152,54,43,346,437,339,935,1796,1030,79,32,28,174,5291,0,0,5,11,6,10,16,30,4,3,4,15,101,0,0,4,7,0,6,3,3,0,0,0,5,28,0,9,15,10,12,14,15,11,0,0,0,8,85,0,0,29,36,18,35,34,31,0,0,0,15,202,3,0,27,79,23,55,88,47,11,0,0,23,360,3,0,20,63,51,113,172,92,13,0,0,6,549,0,3,9,23,26,70,203,152,23,0,0,19,536,4,0,6,19,25,76,215,173,23,5,0,8,555,0,0,4,18,17,58,225,232,27,0,5,15,617,0,0,0,8,16,58,191,276,48,3,3,9,606,0,0
LGA11730,0,4,78,4,0,8,5,0,11,26,34,11,4,9,6,117,0,0,0,0,0,3,4,16,7,0,11,5,57,4,0,15,26,17,62,113,57,10,5,0,6,318,3,9,32,20,13,23,18,12,0,0,0,25,155,58,72,385,580,501,979,1358,611,128,41,67,174,4961,0,0,11,8,3,6,8,16,6,0,4,8,81,0,0,0,0,4,0,4,9,3,0,0,0,33,0,3,17,18,13,15,15,13,0,0,0,16,111,0,6,25,35,31,38,54,34,4,0,0,12,239,7,3,63,74,42,67,83,54,10,0,5,17,416,0,10,38,100,74,119,114,66,12,3,6,20,554,4,4,17,53,46,77,148,100,15,0,0,18,477,4,6,22,30,31,68,142,121,21,9,7,14,475,0,0,10,25,29,75,170,184,45,4,10,24,582,0,0,5,14,16,58,123,150,35,11,10,10,429,0,0
LGA11750,0,4,36,3,4,7,26,0,4,3,0,0,0,0,0,58,0,6,3,14,3,4,0,5,0,0,0,4,29,0,0,0,12,3,4,3,0,0,0,0,0,34,0,0,0,0,0,3,0,0,0,0,0,3,14,47,30,86,166,63,68,62,17,0,0,9,34,585,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,8,3,0,0,0,0,0,0,0,16,8,3,4,0,3,0,0,0,0,0,0,0,25,3,0,3,0,4,0,4,0,0,0,0,0,17,0,0,5,9,0,5,0,0,0,0,0,5,21,4,0,4,0,6,4,3,0,0,0,0,4,19,0,0,4,8,8,6,6,3,0,0,0,7,38,3,0,4,5,9,8,0,0,0,0,0,0,25,6,0
LGA11800,3,5,236,3,0,7,5,4,9,16,78,74,23,8,3,238,0,0,0,3,0,3,12,35,40,17,12,0,120,6,0,15,18,7,45,113,186,82,13,5,27,513,0,6,38,31,27,18,34,25,9,0,9,48,235,67,50,632,570,515,1076,1897,2312,692,133,89,289,8310,0,0,3,15,3,14,28,23,21,0,3,17,131,6,3,3,5,6,8,3,10,3,0,0,0,50,3,5,20,34,12,17,18,15,9,4,3,27,167,3,7,28,85,28,46,45,42,14,0,5,23,339,5,8,35,129,47,78,131,81,30,6,0,26,570,0,4,48,117,57,136,225,171,57,7,11,19,855,5,0,24,36,32,95,165,209,75,8,9,20,682,4,0,16,30,25,73,174,244,90,23,5,26,709,5,0,13,33,20,69,176,322,128,25,19,28,840,0,0,14,13,16,31,159,365,190,50,21,19,886,0,0
LGA12000,0,3,12,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,3,4,0,0,0,0,0,4,11,0,0,3,0,0,0,0,0,0,0,0,0,9,18,15,37,48,31,42,27,8,0,0,0,6,236,0,0,0,3,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,4,0,3,0,0,0,0,0,0,0,7,0,0,14,4,0,4,0,0,0,0,0,3,29,0,0,7,4,3,4,4,0,0,0,0,0,27,0,0,3,0,7,5,3,4,0,0,0,0,24,0,0,0,3,4,4,3,0,0,0,0,0,21,3,0,0,6,3,3,8,3,0,0,0,3,26,0,0,0,5,4,0,6,0,0,0,0,3,24,0,0
LGA12150,0,0,9,0,0,0,0,0,5,0,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,3,8,0,0,3,11,0,5,0,0,0,0,0,5,24,4,0,0,0,0,3,4,0,0,0,0,5,11,38,9,64,109,52,51,10,5,0,0,0,29,372,0,0,0,5,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,10,0,3,5,7,5,0,0,0,0,0,0,3,25,0,0,0,14,10,6,0,0,0,0,0,3,30,0,5,3,12,0,3,0,0,0,0,0,6,28,0,0,0,12,3,5,0,0,0,0,0,0,30,0,0,3,11,5,11,0,0,0,0,0,0,29,0,0,0,7,7,5,0,0,0,0,0,5,29,0,4,0,14,10,5,3,0,0,0,0,0,27,7,5
LGA12160,0,0,14,0,0,9,4,0,4,0,0,0,0,0,0,16,0,0,0,0,0,0,8,0,0,0,0,0,9,0,0,3,12,8,19,9,0,0,0,0,0,54,3,0,9,4,3,4,0,0,0,0,0,9,33,47,26,180,205,146,193,84,16,0,0,6,47,953,0,0,0,5,6,4,0,0,0,0,0,0,18,0,0,3,0,0,5,3,0,0,0,0,0,9,3,3,5,3,4,0,0,0,0,0,0,3,28,0,4,20,15,8,9,3,0,0,0,0,0,58,0,0,22,26,12,16,0,0,0,0,0,3,85,3,0,18,32,25,16,16,0,0,0,0,0,120,3,3,14,25,11,21,13,5,0,0,0,0,97,0,0,0,21,13,26,10,5,0,0,0,0,82,0,0,12,12,14,18,27,3,0,0,0,14,96,0,0,0,11,4,13,16,4,0,0,0,4,57,0,0
LGA12350,0,0,14,3,0,0,0,5,0,3,0,0,0,0,4,23,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,3,11,10,14,8,5,0,0,0,3,56,0,0,7,8,4,0,0,0,0,0,0,10,34,30,26,202,349,188,234,85,17,4,6,10,51,1203,0,0,0,0,3,5,0,0,0,0,0,0,15,0,0,0,7,7,0,0,0,0,0,0,0,9,0,4,5,9,0,3,0,0,0,0,0,5,28,0,5,24,25,7,13,8,0,0,0,0,4,86,3,5,33,32,10,21,11,0,0,0,0,3,123,0,3,17,45,20,27,11,4,3,0,0,4,139,0,0,9,27,16,41,16,4,0,0,0,3,127,4,0,10,17,25,33,23,4,0,0,0,7,125,5,0,5,26,27,36,21,7,0,0,0,5,130,0,0,3,8,9,31,26,10,0,0,3,4,103,0,4
LGA12380,89,26,1327,5,7,14,14,3,12,46,356,461,169,100,29,1222,4,0,12,10,5,5,34,164,216,139,89,13,679,6,13,80,69,33,55,143,634,488,185,89,117,1919,10,17,87,39,12,12,34,69,60,21,10,128,494,292,301,1709,1259,713,920,2149,8795,5683,1862,876,975,25528,14,22,98,56,36,55,100,231,186,60,34,126,1015,11,9,21,15,5,14,11,27,15,12,4,15,167,37,98,116,66,38,37,39,85,57,18,9,53,650,38,91,383,143,58,53,91,166,76,15,8,80,1207,20,50,566,214,86,97,118,259,150,51,23,56,1691,12,29,123,148,73,103,183,360,219,71,34,32,1386,8,16,110,219,106,138,251,520,300,106,58,75,1902,10,11,86,95,93,142,301,661,401,134,56,63,2050,6,0,43,74,64,126,350,874,533,208,93,82,2461,5,6,25,50,40,86,323,989,600,257,90,68,2548,4,3
LGA12390,0,3,172,7,0,6,7,0,15,31,71,12,5,4,0,163,0,0,0,3,0,4,7,29,10,3,0,4,74,3,5,30,39,26,57,101,64,13,0,0,24,361,4,6,34,30,10,22,16,5,0,0,0,32,151,102,76,527,744,529,899,1262,786,113,18,39,202,5298,0,3,6,8,8,15,10,15,4,0,0,18,94,0,0,5,3,0,3,3,3,0,0,0,0,30,3,6,24,21,12,12,10,3,0,0,0,9,107,8,10,47,41,26,21,24,10,4,0,3,12,190,7,5,92,84,36,44,55,36,0,0,0,24,393,3,4,41,70,50,72,91,50,6,4,0,13,396,0,9,19,52,37,75,100,68,9,0,0,13,382,5,0,25,43,49,107,125,84,11,4,0,19,471,0,0,15,58,38,101,197,120,14,0,0,15,560,3,0,17,32,41,112,174,166,23,4,4,14,584,6,5
LGA12700,0,0,12,0,0,0,0,3,0,8,4,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,4,9,12,7,0,0,0,0,38,0,0,0,0,0,0,4,0,0,0,0,4,8,9,9,43,63,51,107,120,58,8,4,4,27,511,0,0,0,3,0,0,0,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,3,0,0,0,0,4,14,0,0,0,3,7,13,8,8,0,0,0,0,38,0,0,0,16,0,17,14,7,0,0,0,5,54,0,0,0,6,0,10,11,13,0,0,0,0,45,0,0,0,6,7,8,10,5,3,0,0,0,42,0,0,0,0,0,9,11,10,6,0,0,4,43,0,0,0,0,0,0,12,15,0,0,0,4,38,0,0
LGA12730,0,3,25,0,0,4,3,3,0,8,3,0,0,0,3,28,0,0,0,0,0,0,0,4,0,0,0,4,10,4,0,12,9,5,8,15,6,0,0,0,6,57,0,0,14,11,3,5,0,0,0,0,0,12,46,19,21,179,225,129,133,109,30,6,0,13,61,922,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,23,0,3,15,22,5,9,0,0,0,0,0,0,54,0,5,20,18,11,7,8,0,0,0,0,3,71,0,0,13,23,9,24,11,0,0,0,0,0,82,0,0,9,18,7,24,18,5,0,0,0,4,89,3,0,11,23,9,16,15,0,0,0,0,4,86,0,0,5,18,11,24,22,0,0,0,0,3,86,0,0,3,18,5,17,13,0,0,0,0,4,63,0,5
LGA12750,4,0,66,0,0,3,9,6,7,8,15,6,0,3,3,64,0,0,0,0,0,0,6,15,0,0,4,0,35,0,0,8,25,17,28,55,47,9,0,0,11,212,4,7,12,17,15,20,18,5,0,0,0,19,119,38,36,269,475,360,692,909,583,71,9,36,142,3634,0,0,7,8,3,0,4,8,3,0,0,9,61,0,0,6,5,0,0,3,7,0,0,0,0,25,0,4,14,4,8,13,7,9,3,0,0,4,79,6,6,33,22,11,32,25,11,0,0,0,6,146,3,5,54,47,41,60,65,36,0,0,0,17,331,0,0,14,56,48,75,88,65,14,0,7,20,378,6,6,14,31,29,43,92,82,17,0,6,10,334,3,0,13,35,29,57,82,103,24,3,0,17,363,0,4,9,23,26,46,84,102,17,8,6,13,337,0,0,7,15,19,37,83,147,46,7,4,17,378,0,0
LGA12850,37,14,646,3,4,12,9,7,22,53,151,185,73,18,18,546,0,0,8,9,3,9,18,59,75,29,24,9,228,7,15,42,65,52,69,218,436,297,71,24,76,1385,13,4,54,38,20,30,62,73,58,13,3,82,463,209,187,1403,1290,862,1317,3630,5584,3413,680,271,717,19570,17,16,73,83,41,89,167,223,158,56,26,110,1045,0,12,15,14,4,12,24,24,17,8,0,16,138,23,45,97,57,19,29,70,83,57,12,10,28,520,25,75,295,154,66,89,159,157,79,13,0,51,1166,12,21,463,218,101,130,217,277,139,29,15,56,1681,4,11,83,154,78,143,311,324,196,56,15,40,1412,7,11,69,219,109,195,366,652,406,83,23,85,2220,6,5,74,127,111,189,434,638,421,96,35,65,2205,3,8,30,66,67,123,436,810,519,142,43,62,2312,0,8,32,55,48,109,330,714,592,168,55,54,2158,9,6
LGA12870,0,0,24,0,0,0,3,3,0,7,0,0,0,6,0,26,0,0,0,0,0,0,7,0,0,0,3,4,13,0,3,0,10,11,19,10,6,0,0,0,0,55,3,0,8,15,8,4,4,0,0,0,0,9,46,25,32,117,234,145,226,156,24,3,0,8,36,1014,0,0,0,4,3,4,0,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,3,9,4,4,5,0,0,0,0,0,30,0,0,14,13,5,8,3,0,0,0,0,5,45,5,0,17,18,9,16,7,0,0,0,0,8,79,0,3,20,46,13,22,17,9,0,0,0,3,131,0,0,3,13,12,23,27,3,3,0,0,3,98,3,0,8,29,6,14,26,5,0,0,0,0,86,0,3,0,15,16,29,26,5,0,0,0,3,95,0,0,3,11,12,22,24,0,0,0,0,5,81,4,0
LGA12900,0,5,14,0,0,4,0,3,3,5,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,9,12,10,7,4,0,0,0,0,5,38,6,5,9,6,7,3,0,0,0,0,0,7,40,29,30,165,223,160,144,63,16,4,0,3,56,904,0,0,0,3,0,3,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,8,0,3,12,3,0,3,0,0,0,0,0,0,22,0,4,16,9,9,11,0,0,0,0,0,4,47,4,3,30,16,8,12,7,0,0,0,0,3,92,6,5,14,12,8,26,12,4,0,0,0,7,85,3,0,8,18,17,19,13,0,0,0,0,5,94,4,0,7,24,12,25,18,0,0,0,0,7,96,0,0,7,16,11,16,19,7,0,0,0,6,79,3,0,5,14,4,18,20,8,0,0,0,5,77,0,0
LGA12930,129,24,1034,0,0,8,9,5,7,31,164,349,260,213,31,1072,0,0,0,0,3,3,6,56,151,158,184,7,580,0,0,11,20,19,34,50,208,307,210,138,59,1063,8,4,34,9,4,10,12,33,35,16,18,52,233,84,88,596,387,297,394,847,3996,4318,2334,1294,509,15144,0,3,28,16,6,24,40,102,72,33,19,41,385,3,0,12,3,0,6,11,19,14,3,3,4,74,3,17,51,19,11,7,11,37,14,3,9,17,200,6,25,137,41,22,17,28,85,51,19,13,21,469,10,6,234,63,25,28,43,100,68,30,17,28,673,3,6,52,60,29,37,97,191,119,54,14,18,687,10,4,23,49,34,45,83,217,167,66,26,34,768,3,0,30,33,38,48,116,341,230,78,41,40,996,4,0,15,24,22,49,160,435,330,152,60,27,1291,0,0,12,21,25,37,155,521,394,189,75,34,1467,0,0
LGA12950,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,7,10,7,6,0,0,0,0,0,3,27,0,0,7,6,0,0,0,0,0,0,0,3,17,7,3,84,133,67,47,8,0,0,0,3,25,379,0,0,0,6,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,7,4,9,0,0,0,0,0,0,0,21,0,0,5,14,5,9,0,0,0,0,0,0,39,0,0,0,16,3,9,0,0,0,0,0,0,39,0,0,5,3,10,9,5,0,0,0,0,0,32,0,0,0,3,0,5,5,0,0,0,0,0,24,0,0,0,4,6,13,0,0,0,0,0,9,37,0,4,11,12,4,12,7,0,0,0,0,0,41,0,0
LGA13010,0,0,14,0,0,0,3,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,3,4,0,0,0,0,9,3,0,0,7,11,20,10,3,0,0,0,4,48,0,0,4,8,7,5,0,0,0,0,0,3,33,13,14,142,196,133,202,76,12,3,5,5,45,849,0,0,4,9,0,8,0,0,0,0,0,0,22,0,0,4,0,3,3,0,0,0,0,0,0,8,0,0,3,10,3,3,0,0,0,0,0,0,26,0,0,10,27,13,10,0,0,0,0,0,5,59,5,4,17,33,17,26,5,0,0,0,0,0,106,0,0,13,41,16,26,11,0,0,0,0,3,112,0,4,7,17,17,26,15,3,0,0,0,4,86,0,0,10,10,15,23,10,4,0,0,0,0,79,0,0,6,9,9,22,17,3,0,0,0,3,71,0,0,5,10,9,27,11,3,3,0,0,4,71,3,0
LGA13310,0,0,110,0,0,6,0,8,11,26,32,10,0,0,8,101,0,0,0,0,0,0,10,12,9,0,0,7,44,3,3,15,19,12,28,39,28,9,0,4,8,171,4,0,13,13,4,8,12,0,0,0,4,18,76,59,47,317,414,263,493,801,458,67,8,9,119,3054,0,0,7,7,6,6,9,5,0,0,0,4,51,0,4,5,3,0,0,4,3,0,0,0,0,22,7,12,26,10,3,0,9,5,0,0,0,8,74,4,12,42,25,13,12,17,8,0,0,0,3,138,5,9,82,57,12,34,43,17,0,0,4,10,270,0,0,21,63,21,46,74,42,10,0,0,11,295,0,4,15,36,22,43,65,62,12,0,0,11,262,0,0,16,15,19,42,84,59,9,0,0,4,263,0,0,10,17,24,46,99,99,18,0,0,10,319,0,5,16,11,12,24,90,111,27,6,7,9,308,0,0
LGA13340,0,0,23,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,3,3,0,0,0,0,0,0,0,11,0,0,6,3,10,6,7,3,0,0,0,3,30,0,0,0,7,0,0,0,0,0,0,0,8,19,13,19,91,148,95,87,57,16,0,0,0,36,560,0,0,0,6,0,3,3,0,0,0,0,0,12,0,0,0,0,0,3,0,0,0,0,4,0,5,0,0,0,0,3,0,0,0,0,0,0,0,14,0,0,0,9,0,3,0,0,0,0,0,0,18,0,0,14,13,4,7,0,0,0,0,0,6,48,0,0,13,17,3,5,5,4,0,0,0,3,53,0,3,8,9,6,11,11,0,0,0,0,3,51,0,0,5,7,8,13,13,0,0,0,0,5,51,0,0,3,15,7,9,7,0,0,0,0,0,47,0,0,4,12,7,13,10,9,0,0,0,3,55,0,0
LGA13450,0,6,112,0,0,3,8,4,14,22,29,6,0,0,0,82,0,0,4,8,0,7,9,14,4,0,0,5,45,0,0,10,36,19,35,37,27,0,0,0,11,174,0,5,12,27,12,7,9,6,0,0,0,25,108,45,42,242,600,319,561,470,254,24,4,9,103,2669,0,3,8,9,7,13,13,11,0,0,0,4,58,0,0,3,4,0,0,3,0,0,0,0,8,16,3,0,8,13,4,10,0,5,0,0,0,6,41,0,6,15,27,17,13,14,8,0,0,0,6,102,7,7,41,38,22,26,19,9,0,0,0,6,173,0,0,14,39,25,28,21,10,0,0,0,9,150,0,0,11,28,13,35,39,17,0,0,0,12,162,0,0,11,29,27,50,37,44,6,0,0,3,210,0,0,9,29,34,47,65,62,7,5,0,12,271,4,0,4,24,25,45,76,66,3,0,6,11,259,0,0
LGA13550,0,0,57,0,0,5,8,3,13,24,32,17,0,0,3,98,0,0,0,4,0,0,8,17,3,0,0,5,46,5,0,7,5,8,10,18,20,0,4,0,0,80,0,0,3,12,3,3,11,0,0,0,0,18,52,30,20,98,188,172,226,278,213,55,5,10,67,1374,0,0,0,5,0,4,5,0,0,0,0,3,17,0,0,3,0,0,0,0,0,0,0,0,0,4,6,0,9,10,3,5,3,0,0,0,0,0,28,0,4,5,8,5,8,6,3,0,0,0,0,45,4,3,10,19,12,18,12,7,0,0,0,8,90,0,3,6,13,21,32,20,9,0,0,0,4,107,0,0,10,11,14,27,15,15,3,0,0,6,99,0,0,5,10,12,12,42,11,4,0,0,0,99,0,0,4,11,11,24,34,23,4,0,0,11,118,0,0,0,9,12,19,30,15,3,0,0,10,106,6,0
LGA13660,0,0,9,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,3,0,0,0,0,0,14,0,0,3,3,4,0,0,0,0,0,0,0,16,27,10,94,85,58,47,18,6,0,0,0,32,364,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,5,5,0,6,0,0,0,0,0,0,15,0,0,7,6,4,8,0,0,0,0,0,0,30,0,0,10,4,3,10,4,0,0,0,0,3,32,0,0,4,7,3,12,7,0,0,0,0,3,27,0,0,4,6,7,5,7,0,0,0,0,3,40,0,0,4,7,6,3,4,0,0,0,0,3,27,5,0,4,9,3,14,0,0,0,0,0,5,39,0,0
LGA13800,12,5,259,0,0,0,3,0,11,19,68,78,34,21,5,245,0,0,0,0,0,10,13,17,31,17,35,3,120,5,0,3,5,11,37,37,101,64,22,15,15,310,0,0,6,21,13,6,10,28,6,0,6,24,116,45,28,131,343,219,432,767,1721,776,198,157,171,4996,0,0,0,8,5,10,11,16,13,0,0,19,86,0,0,4,0,3,0,0,11,3,0,0,0,22,3,4,8,19,8,5,5,15,4,0,0,9,77,0,8,30,36,11,13,20,26,4,0,0,8,151,0,7,46,70,18,28,35,54,14,6,0,10,297,0,5,9,57,24,39,73,95,35,5,5,9,356,0,4,5,19,19,36,69,117,35,9,3,12,338,0,0,12,9,13,27,90,155,49,16,15,16,400,0,0,6,12,12,29,84,185,75,20,11,12,444,0,0,6,12,8,30,71,212,105,27,21,19,504,3,0
LGA13850,0,0,10,0,0,3,5,0,0,0,0,0,0,0,0,13,0,0,4,0,0,3,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,0,0,0,11,0,0,5,7,0,0,0,0,0,0,0,0,12,20,12,90,93,39,20,4,5,4,0,0,17,298,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,0,0,0,9,0,0,6,5,5,0,0,0,0,0,0,0,10,4,0,11,15,3,7,0,0,0,0,0,0,32,0,0,4,12,3,5,0,0,0,0,0,0,26,0,0,5,9,6,3,0,0,0,0,0,0,22,0,0,8,6,3,3,0,0,0,0,0,0,17,0,0,0,10,9,0,0,0,0,0,0,0,24,5,0,0,7,3,5,0,0,0,0,0,0,25,7,0
LGA13910,0,5,42,0,0,0,5,4,8,11,5,0,0,0,6,36,0,0,0,7,0,0,0,0,0,0,0,0,9,5,0,8,9,15,27,23,6,0,0,0,6,100,0,0,12,10,7,7,0,0,0,0,0,20,71,54,15,182,348,281,399,236,56,9,6,4,83,1675,0,0,0,3,8,6,6,4,0,0,0,0,28,0,0,0,0,0,3,0,0,0,0,0,0,10,3,5,0,3,0,9,7,0,0,0,0,5,30,5,3,17,28,8,17,11,0,0,0,0,3,87,6,0,13,37,28,39,16,4,0,0,0,16,164,0,0,10,39,28,38,23,0,0,0,0,3,154,4,3,7,22,24,57,31,11,0,0,0,4,165,0,0,0,20,25,58,34,8,0,0,0,7,162,4,4,14,24,26,50,33,16,5,0,0,5,183,0,0,10,19,11,44,38,14,0,0,0,9,146,9,3
LGA14000,183,8,740,0,3,3,5,4,12,15,79,284,282,368,19,1072,0,0,0,3,0,3,9,28,103,157,445,15,777,0,0,8,10,15,34,31,73,163,127,180,43,694,7,6,15,10,6,3,3,20,28,10,10,37,140,55,70,377,241,187,243,484,1494,2675,1743,1819,363,9750,0,0,3,8,0,12,13,60,44,16,31,38,231,3,0,3,4,0,0,6,16,13,0,5,9,64,0,7,19,25,11,3,8,18,12,13,10,17,146,4,5,47,60,13,26,10,41,26,10,4,19,268,10,5,40,60,31,27,34,78,44,22,13,15,373,4,3,20,58,29,65,60,79,74,23,18,21,441,0,0,18,24,20,27,56,144,76,34,29,23,466,0,6,6,11,15,37,69,188,132,38,38,19,570,0,0,10,5,10,22,48,264,231,75,57,23,748,0,5,8,13,7,25,52,292,219,110,86,20,842,7,5
LGA14100,29,3,75,0,0,0,0,0,0,0,8,15,21,63,0,116,0,0,0,0,0,0,0,0,7,14,102,4,134,0,0,0,0,0,0,0,11,5,14,37,6,65,0,3,14,0,0,0,0,0,0,0,0,0,20,17,17,154,62,18,32,50,111,148,135,343,41,1126,3,0,6,0,0,0,0,0,5,0,5,3,25,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,11,4,3,0,3,0,0,0,0,0,30,0,3,18,20,0,0,0,0,0,0,0,3,49,0,0,20,15,5,5,8,10,0,0,0,0,68,0,0,8,18,8,3,11,10,0,0,6,0,60,0,0,0,0,3,12,7,3,0,9,9,4,53,0,0,0,3,0,13,11,9,9,5,12,0,53,0,0,0,0,0,0,12,10,11,7,17,0,60,0,0,0,0,0,4,5,17,19,8,11,4,71,0,0
LGA14170,713,36,2318,8,0,5,11,6,26,54,311,667,722,1609,46,3465,4,3,4,3,9,14,36,101,217,365,2024,39,2818,10,3,32,25,30,44,85,256,418,325,935,95,2258,6,17,53,30,18,14,37,60,40,17,49,91,423,143,169,1058,768,574,1089,2175,5959,5794,3921,7398,736,29790,3,10,38,31,18,27,50,87,64,35,35,61,458,6,3,16,11,4,10,13,29,9,5,10,6,117,21,32,85,43,28,23,19,34,21,7,20,22,350,11,39,246,86,50,73,101,113,53,21,23,35,850,11,16,335,115,62,67,84,137,58,14,27,40,987,5,12,77,118,76,141,200,233,106,48,41,21,1078,4,5,50,72,49,108,186,316,154,75,84,36,1146,6,3,62,55,46,107,304,454,218,75,77,38,1448,6,0,15,51,40,129,359,760,336,147,169,44,2054,4,0,14,35,26,67,276,841,553,209,219,38,2280,0,0
LGA14220,0,0,32,0,0,4,0,3,0,16,4,0,0,0,0,28,0,0,0,0,0,0,6,0,0,0,0,0,11,7,0,10,12,7,20,33,6,0,0,0,8,108,3,0,13,16,10,8,4,0,0,0,0,14,77,72,34,200,335,240,373,374,84,6,0,3,79,1808,0,3,0,0,0,0,3,0,0,0,0,8,24,0,0,3,0,0,0,0,0,0,0,0,0,11,0,0,11,7,9,12,0,4,0,0,0,0,40,10,0,13,19,10,6,10,0,0,0,0,5,86,20,3,23,45,23,28,15,6,0,0,3,8,165,0,0,22,38,25,39,48,6,0,0,0,4,175,4,3,11,23,18,33,47,12,0,0,0,4,150,0,0,13,29,23,36,63,20,3,0,0,8,205,0,0,12,14,13,32,55,22,0,0,4,7,159,0,3,9,17,17,36,68,27,0,0,0,15,190,0,0
LGA14300,0,0,12,5,0,0,0,0,6,4,0,0,0,0,0,21,0,0,0,0,0,0,5,0,0,0,6,0,5,0,0,0,7,5,7,3,0,0,0,0,0,25,0,0,5,0,3,0,0,0,0,0,0,6,13,12,18,57,76,68,95,68,16,0,0,0,25,437,0,0,0,5,8,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,3,0,0,3,5,0,3,0,0,0,0,0,0,24,0,4,15,5,3,9,6,0,0,0,0,0,42,0,0,15,15,3,12,9,0,0,0,0,5,62,4,0,5,5,4,10,5,0,0,0,0,0,31,4,0,3,3,10,18,17,0,0,0,0,0,55,0,0,8,4,6,10,13,6,0,0,0,3,45,0,0,5,0,4,9,11,3,0,0,0,4,35,0,0
LGA14350,0,0,48,0,0,0,8,4,4,13,7,3,0,0,4,46,0,0,0,0,0,0,3,3,0,0,0,3,21,0,0,6,19,19,38,44,24,5,0,0,9,162,0,0,21,27,15,27,17,4,0,0,0,14,127,35,28,215,439,344,600,647,257,37,10,25,89,2726,0,0,6,6,4,10,8,3,0,4,0,7,45,0,0,0,4,0,5,0,3,0,0,0,0,24,0,0,0,5,4,16,10,9,0,0,0,0,51,4,0,11,23,30,20,20,8,0,0,5,10,140,5,4,16,65,33,57,57,21,6,0,3,4,270,0,3,8,44,34,79,89,37,5,0,3,14,312,4,0,6,26,24,51,79,62,4,4,5,8,268,0,0,3,10,27,48,90,72,12,7,0,10,271,0,0,13,16,22,33,74,91,14,3,3,10,278,0,0,4,13,10,36,84,82,7,4,0,6,249,3,0
LGA14400,6,3,80,0,0,0,0,0,0,9,17,25,12,12,0,75,0,0,0,0,0,0,0,3,12,17,15,0,50,0,0,0,0,0,4,7,41,28,7,7,0,105,0,0,0,0,0,0,0,6,0,4,3,6,27,11,15,33,67,49,89,200,426,322,105,79,60,1451,0,0,0,5,0,6,4,3,0,6,4,0,18,0,0,0,0,0,0,0,4,0,0,0,0,10,0,0,4,0,4,0,0,0,0,0,0,4,10,0,0,0,10,0,6,0,5,3,5,4,3,38,0,0,0,13,3,9,6,10,5,4,0,0,53,0,0,6,14,9,4,15,20,7,10,0,5,83,0,0,0,0,9,0,13,17,21,0,3,0,69,3,0,3,0,8,9,9,22,18,11,4,4,84,0,0,3,0,0,0,14,37,30,17,9,0,118,0,0,0,0,5,3,9,39,48,23,8,5,133,0,0
LGA14500,239,9,470,0,0,3,4,3,11,14,24,120,177,704,21,1074,0,0,0,7,0,7,7,12,49,108,974,19,1191,0,0,0,3,5,0,3,22,50,69,343,18,521,0,0,0,0,0,0,0,0,12,7,23,19,58,21,31,63,63,50,76,149,334,988,1169,3342,219,6514,3,0,6,3,0,3,0,21,28,44,78,22,207,0,0,0,4,0,0,0,0,5,9,22,4,40,0,0,5,0,0,0,5,8,8,8,13,4,56,0,0,0,4,3,3,11,20,19,15,17,4,88,0,3,8,5,5,3,13,26,19,18,19,7,119,0,6,7,13,3,15,10,26,52,24,37,3,198,0,0,0,4,0,5,23,25,42,49,43,9,203,0,0,0,3,3,3,8,51,49,44,59,11,252,0,0,0,5,6,11,21,82,87,83,95,16,399,0,0,0,0,3,4,15,87,114,92,118,13,457,0,0
LGA14550,0,0,4,0,0,0,0,0,4,5,5,0,0,0,0,8,0,0,0,0,0,0,0,4,0,0,0,0,8,6,0,0,8,10,10,4,0,0,0,0,0,39,0,0,0,3,4,9,0,0,0,0,0,0,11,23,11,83,155,105,167,113,25,4,0,5,29,709,0,0,4,0,5,3,0,0,0,0,0,4,11,0,0,0,4,0,0,0,0,0,0,0,0,9,5,0,0,4,0,0,0,0,0,0,0,0,13,3,0,10,10,3,10,8,0,0,0,0,8,53,3,0,10,13,14,8,16,3,0,0,0,5,73,0,0,6,18,12,27,24,10,4,0,0,0,106,3,0,0,6,14,17,29,3,0,0,0,0,77,0,0,4,8,10,14,19,9,0,0,0,3,70,0,0,0,13,6,14,24,7,0,0,0,3,70,0,0,5,4,4,5,19,11,0,0,0,0,55,0,0
LGA14600,0,0,20,4,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,3,0,0,0,0,0,5,0,6,7,21,5,3,0,0,0,0,0,0,38,0,3,6,7,0,0,0,0,0,0,0,3,16,63,31,116,205,63,73,22,7,0,0,4,40,629,0,0,0,7,0,0,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,22,0,0,4,8,4,0,0,0,0,0,0,0,26,5,4,16,21,0,0,0,0,0,0,0,5,56,0,0,11,14,3,8,0,0,0,0,0,5,41,0,0,8,19,10,5,0,0,0,0,0,6,43,0,3,6,13,15,0,0,0,0,0,0,0,44,3,7,3,19,3,9,0,0,0,0,0,6,48,10,0,9,12,12,10,3,0,0,0,0,4,62,6,3
LGA14650,8,11,573,0,0,12,8,4,7,41,138,188,75,24,10,506,0,0,10,5,5,4,19,61,79,40,34,5,264,3,5,42,40,40,71,219,342,134,38,18,40,978,12,6,81,67,26,25,60,47,9,3,0,87,422,164,160,1437,1364,928,1323,3647,4763,1636,383,163,502,16479,10,7,17,18,22,24,36,55,35,11,0,73,310,5,6,12,3,6,11,12,18,0,0,0,20,97,17,26,69,46,25,27,31,36,13,0,5,25,319,20,33,232,120,55,64,80,72,14,3,0,23,716,12,14,518,216,97,141,145,163,50,8,7,59,1427,9,11,115,225,143,218,265,274,81,23,3,30,1396,4,7,61,182,80,123,239,387,115,12,9,34,1262,6,10,87,97,84,130,301,533,162,28,16,43,1496,4,8,37,68,57,149,321,668,231,47,16,55,1656,0,0,30,63,29,85,281,731,298,66,24,30,1648,5,0
LGA14700,69,9,401,0,0,5,0,0,3,9,35,155,172,271,9,660,0,0,0,0,0,4,5,16,72,97,368,8,569,0,0,0,4,0,3,10,31,76,52,124,17,319,0,7,4,0,0,3,0,7,10,7,6,16,60,31,38,118,52,41,54,154,612,1415,859,1180,108,4679,0,0,0,3,0,4,5,10,13,15,23,5,78,0,0,4,0,0,0,0,0,3,0,4,5,18,0,0,5,4,4,0,0,8,5,3,3,0,44,0,3,11,24,9,3,5,14,8,7,10,9,100,5,8,17,30,4,10,3,16,14,9,4,3,117,0,9,8,18,6,5,16,21,24,8,10,4,131,3,0,7,8,0,9,13,40,28,9,9,0,133,0,0,0,0,0,3,18,53,37,20,17,5,169,0,0,6,0,6,11,31,89,70,36,19,4,282,5,0,0,0,4,12,11,101,93,42,39,6,316,0,0
LGA14750,0,0,36,0,0,0,6,6,10,6,5,0,0,0,0,28,0,0,0,3,0,3,3,0,0,0,0,0,13,0,0,0,11,9,10,5,3,0,0,0,4,43,0,0,11,20,5,3,0,0,0,0,0,7,42,24,18,159,282,156,216,133,27,0,3,7,32,1054,0,0,0,0,6,3,0,0,0,0,0,9,19,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,7,7,0,5,4,0,0,0,0,0,25,0,4,15,9,8,4,0,0,0,0,0,9,48,0,0,16,22,13,15,5,0,0,0,0,4,80,0,0,13,14,13,23,18,3,0,0,0,5,90,3,6,3,11,16,20,22,4,0,0,0,4,97,0,0,8,16,18,22,33,0,0,0,0,4,108,0,0,11,21,14,24,24,9,0,0,0,5,108,0,0,15,15,18,34,30,9,0,0,0,5,113,0,0
LGA14850,0,3,85,0,0,7,0,0,7,11,33,10,3,6,4,83,0,0,0,0,0,6,3,4,12,0,0,0,29,0,5,13,22,20,49,82,63,10,0,0,9,283,3,0,15,16,0,13,13,9,0,0,0,28,99,55,51,372,567,418,809,1290,692,121,23,20,142,4556,0,3,7,5,5,6,13,11,0,0,0,14,54,0,0,0,3,4,6,7,7,0,0,0,0,27,8,3,29,17,12,16,11,4,0,0,4,8,110,0,4,47,46,26,33,26,14,3,0,0,3,224,6,4,94,79,49,52,58,29,8,0,0,20,391,3,4,33,79,74,131,117,44,9,7,4,16,518,0,3,28,31,37,74,95,87,19,4,3,14,379,3,0,25,26,24,73,118,112,17,6,5,11,416,0,0,15,21,33,66,123,146,33,6,3,11,452,6,4,10,8,21,51,142,140,45,7,4,16,448,4,0
LGA14870,0,0,34,4,0,4,3,0,0,12,17,0,0,0,3,38,0,0,0,0,0,4,4,7,4,0,4,0,26,6,0,13,10,9,19,20,8,0,0,0,8,85,0,0,13,5,6,12,6,0,0,0,0,14,57,51,16,240,306,218,418,373,138,17,3,6,80,1876,0,0,8,0,6,5,8,6,0,0,0,8,37,3,4,0,4,0,0,4,0,0,0,0,0,14,3,4,20,9,0,17,5,0,0,0,0,0,58,3,14,36,13,9,22,10,3,0,0,4,8,110,7,0,70,20,23,40,28,6,0,0,0,10,194,0,5,17,29,33,40,59,11,0,0,0,5,211,0,0,17,41,18,47,55,12,6,0,0,4,201,3,0,9,16,24,36,66,20,5,0,0,4,183,0,0,8,9,9,44,72,21,0,0,0,3,173,0,0,10,7,16,26,72,41,4,0,4,7,179,0,3
LGA14900,38,18,914,0,0,8,13,5,54,57,155,299,166,64,12,834,0,0,0,6,6,15,14,60,109,106,60,10,385,12,3,47,56,35,110,172,338,316,134,51,94,1364,26,3,84,35,23,20,47,62,33,8,6,110,454,275,214,1461,1025,557,1190,2735,4699,3917,1276,443,705,18498,15,24,74,37,19,58,76,153,102,47,21,84,704,10,12,25,14,14,13,17,23,16,6,4,20,159,30,73,84,52,31,30,41,56,41,17,3,23,491,37,80,312,119,53,80,91,119,60,12,9,60,1042,18,24,462,168,85,114,169,217,120,41,8,61,1479,8,19,95,120,65,131,210,314,159,80,16,34,1262,13,9,72,162,78,170,289,477,316,92,27,46,1754,10,10,70,82,89,165,330,621,369,120,33,53,1946,8,9,39,61,44,180,365,716,483,173,59,58,2187,3,6,36,36,39,119,297,748,541,214,71,60,2172,5,0
LGA14920,0,4,14,0,0,0,5,0,9,3,0,0,0,0,0,19,0,0,0,3,0,0,5,0,0,0,0,0,11,3,0,3,5,3,11,3,0,0,0,0,5,36,0,0,8,11,0,8,0,0,0,0,0,0,26,22,19,125,183,107,148,83,14,0,0,8,55,753,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,4,7,4,5,0,0,0,0,0,0,16,0,0,0,20,8,5,5,0,3,0,0,0,39,0,0,6,16,11,12,3,0,0,0,0,6,62,0,0,4,23,8,17,11,0,0,0,0,0,64,0,0,6,16,10,11,9,0,0,0,0,4,65,0,0,5,9,13,11,8,0,0,0,0,3,52,3,0,0,19,6,15,12,4,0,0,0,3,64,0,0,5,5,15,12,10,0,0,0,0,8,69,4,0
LGA14950,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,6,3,0,0,0,0,0,0,13,0,0,0,0,3,0,0,0,0,0,0,0,6,14,11,27,54,24,25,5,3,0,0,0,9,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,6,4,0,7,0,0,0,0,0,0,0,21,0,0,5,3,6,0,6,0,0,0,0,0,20,0,0,0,3,0,9,0,0,0,0,0,0,15,0,0,0,5,3,5,0,0,0,0,0,0,21,0,0,0,0,4,6,5,0,0,0,0,0,17,0,0,0,4,0,6,0,0,0,0,0,0,13,0,0
LGA15050,0,0,334,0,0,4,3,5,21,43,145,46,12,3,7,281,0,0,0,4,3,3,15,55,28,5,4,3,118,3,0,18,22,16,63,112,191,38,8,0,19,493,3,3,31,21,9,15,29,21,4,0,0,45,175,86,75,551,660,381,813,2148,2647,330,56,24,213,7985,0,0,7,13,7,16,16,32,10,6,4,23,121,0,0,11,5,6,7,0,8,4,0,0,3,44,5,5,21,25,16,12,19,13,4,0,0,15,125,5,0,34,79,30,41,34,37,7,0,0,11,284,6,8,48,161,56,76,90,67,11,4,4,26,546,0,5,18,106,58,115,136,128,35,0,0,23,621,3,3,11,35,38,79,147,186,52,10,4,24,597,4,3,13,33,37,81,203,278,71,7,0,24,754,0,6,12,26,23,60,234,346,103,9,0,22,844,0,0,9,17,15,75,164,413,137,16,0,14,866,0,4
LGA15240,4,10,162,0,0,0,5,3,11,38,49,18,0,7,7,150,0,0,0,0,3,9,13,18,12,0,5,4,61,0,9,21,33,44,79,137,126,29,0,6,19,501,8,0,55,55,25,53,32,20,0,0,0,59,310,77,80,679,1232,923,1678,2292,1321,206,22,62,311,8895,0,0,4,19,9,26,30,17,12,0,0,25,140,0,0,7,10,5,13,12,15,0,0,0,6,58,4,3,22,34,21,40,32,15,0,0,3,14,194,4,6,36,101,52,67,75,36,8,0,0,25,409,11,11,43,172,102,129,174,76,13,0,8,39,773,9,0,39,156,130,227,278,143,28,7,3,16,1035,6,3,22,89,55,148,249,210,48,10,11,26,865,0,4,14,50,62,150,252,229,46,6,6,18,851,6,0,16,39,38,92,272,291,60,17,0,28,856,8,5,13,34,26,88,233,303,96,13,3,30,849,4,0
LGA15270,0,3,79,0,0,0,0,9,4,25,34,20,3,0,3,99,0,0,0,0,0,3,10,16,9,0,0,8,56,3,0,0,15,10,6,51,39,9,0,3,0,145,0,6,0,11,8,6,7,4,0,0,0,15,56,35,17,112,289,234,346,615,440,79,15,12,95,2292,0,0,3,3,0,0,10,3,3,4,0,7,33,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,7,15,6,3,10,5,4,0,0,5,48,0,0,12,29,17,13,14,3,4,0,0,3,91,0,0,16,32,19,34,28,4,3,0,0,3,143,0,0,9,35,28,34,39,21,10,0,0,6,182,0,0,3,14,10,34,46,39,3,3,0,3,169,0,0,6,9,16,30,52,38,3,0,0,10,169,0,0,6,10,17,26,47,47,15,0,0,4,181,0,0,0,7,9,23,43,52,23,0,0,6,165,5,0
LGA15300,0,6,66,5,0,10,0,0,5,4,4,3,0,0,12,54,0,0,4,3,0,5,0,0,6,0,0,3,23,0,0,20,30,19,14,12,9,3,0,4,11,128,8,0,13,19,6,6,0,0,0,0,0,14,76,85,70,257,454,173,192,171,91,45,6,12,128,1682,3,3,4,3,5,0,0,0,0,0,0,6,31,0,0,0,5,3,0,0,0,0,0,0,0,6,4,3,5,15,0,0,0,0,0,0,0,0,26,6,4,6,24,3,3,0,0,0,0,0,0,49,4,5,13,34,17,11,6,0,0,0,0,5,94,0,6,7,37,14,15,10,0,0,0,0,5,105,0,0,4,23,8,22,8,8,3,0,0,3,80,0,5,10,34,18,20,18,5,0,3,0,13,120,3,0,15,39,14,23,18,9,0,0,0,9,137,0,9,7,18,9,21,20,16,3,0,0,12,107,6,7
LGA15350,72,4,212,4,0,0,0,5,0,6,30,89,123,334,9,600,0,3,0,0,0,6,3,14,39,78,473,10,622,3,0,0,0,0,0,6,22,36,53,161,12,285,0,0,0,0,0,0,3,8,5,0,9,18,43,14,5,39,38,30,39,78,576,779,618,1413,103,3726,0,0,0,0,0,0,0,10,19,8,30,6,76,0,0,0,0,0,0,0,0,0,0,5,0,13,0,0,0,0,4,3,0,8,8,0,3,0,29,0,0,0,9,4,0,0,12,14,3,3,5,47,0,4,3,7,3,9,3,9,12,5,9,3,72,0,0,3,13,0,4,6,22,26,12,14,3,99,0,0,0,3,3,5,4,21,17,14,21,4,91,0,0,0,0,5,0,10,44,31,14,13,3,118,0,0,0,0,3,3,10,65,58,19,35,4,197,4,0,0,0,0,5,5,77,62,33,42,3,232,0,0
LGA15520,0,5,33,0,0,0,0,3,4,5,9,5,0,0,0,34,0,0,0,0,0,0,0,8,0,0,0,0,12,3,0,4,6,6,10,7,3,0,0,0,4,46,9,0,5,3,0,4,0,0,0,0,0,3,22,55,30,132,132,95,139,147,99,28,3,9,42,914,0,0,0,5,0,0,5,3,0,0,3,0,19,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,3,0,3,0,0,0,0,0,15,0,0,6,10,8,8,6,0,0,0,0,0,31,6,0,14,9,7,11,4,0,0,0,0,8,64,3,0,11,20,16,13,14,5,0,0,0,0,85,5,0,13,10,8,19,14,7,8,0,0,3,73,0,4,6,12,11,12,22,10,4,0,4,8,88,3,0,4,14,13,18,12,8,0,0,0,11,84,3,0,3,11,4,10,14,17,5,0,0,8,78,3,0
LGA15560,0,0,15,0,5,4,3,0,3,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,12,0,0,0,0,0,0,0,0,30,3,0,6,7,0,0,0,0,0,0,0,0,27,15,17,84,143,47,29,12,8,0,4,0,26,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,3,0,4,0,0,0,0,0,0,0,0,4,3,0,4,6,3,0,4,0,0,0,0,0,25,3,0,3,12,7,3,0,0,0,0,0,0,23,0,0,0,8,5,0,5,0,0,0,0,0,15,0,0,6,3,3,4,0,0,0,0,0,4,30,0,0,3,10,6,3,0,0,0,0,0,0,30,0,0,0,5,3,5,0,0,0,0,0,3,28,3,0
LGA15650,0,3,71,0,0,7,6,4,16,40,13,0,3,0,4,91,0,0,0,3,0,7,26,8,0,0,0,0,45,0,0,3,12,19,34,31,16,0,0,0,4,130,0,0,5,18,7,5,10,0,0,0,0,12,61,23,29,127,379,232,528,606,131,21,3,7,84,2178,0,0,0,5,3,3,7,0,0,0,0,4,25,0,0,0,5,0,0,0,0,0,0,0,0,11,0,0,11,11,3,5,5,0,0,0,0,0,41,0,0,13,25,4,14,9,3,0,0,0,4,82,0,3,6,35,16,19,16,0,0,0,0,4,102,0,5,8,32,24,36,28,22,0,0,0,6,171,0,3,7,23,15,40,33,10,5,0,4,4,135,0,0,4,12,11,33,43,33,0,0,0,4,140,4,0,3,17,18,31,59,55,4,0,6,14,198,0,0,0,12,9,20,45,41,7,0,0,8,133,0,0
LGA15700,0,5,36,0,0,0,0,0,3,6,7,13,5,0,0,41,0,0,0,0,0,7,0,4,3,0,0,0,21,4,0,4,15,12,23,35,29,4,0,0,3,127,0,0,12,17,11,11,13,3,0,0,0,7,76,30,19,258,287,209,338,463,250,45,14,28,85,2017,0,0,7,13,3,3,17,3,3,0,0,4,49,0,0,0,0,0,0,6,3,0,0,0,4,10,0,0,3,13,6,10,7,0,0,0,0,0,42,0,0,14,33,19,12,12,4,0,0,0,3,97,3,6,18,57,32,23,32,15,0,0,0,7,200,3,0,20,37,36,47,48,33,5,0,0,5,232,0,0,0,15,27,16,65,45,3,0,6,5,199,4,4,10,12,10,38,60,52,5,5,0,5,204,0,0,5,7,15,21,38,52,9,0,3,9,162,0,0,3,8,9,20,32,69,16,0,0,6,171,0,0
LGA15750,0,0,48,3,0,4,3,6,0,13,17,0,0,0,4,66,0,0,0,0,0,0,0,12,4,0,0,0,29,0,0,10,16,0,14,13,14,4,0,0,0,69,3,0,4,14,5,3,5,0,0,0,0,16,43,60,34,195,260,146,169,202,196,25,4,6,88,1370,0,0,3,6,3,0,6,5,0,0,0,3,33,0,0,4,0,0,0,5,0,0,0,0,0,10,0,3,7,12,3,0,0,0,0,0,0,7,31,4,0,15,21,8,0,9,0,0,0,0,5,59,4,0,12,31,19,13,9,3,0,0,0,8,88,0,0,12,28,18,29,9,5,0,0,0,0,101,0,0,4,10,15,16,9,21,0,0,0,0,82,0,3,7,19,17,20,22,11,0,0,0,8,112,0,0,10,14,17,22,24,15,3,0,4,4,114,3,5,0,13,12,13,22,20,4,0,0,7,97,7,0
LGA15800,0,0,14,0,0,3,0,0,4,3,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9,0,6,0,0,0,0,0,4,18,0,0,3,7,3,4,0,0,0,0,0,10,26,25,17,88,178,72,82,20,9,0,0,4,31,520,0,0,0,0,3,0,0,0,0,0,0,3,15,0,0,0,4,0,0,0,0,0,0,0,0,9,0,3,3,4,0,0,0,0,0,0,0,0,13,0,0,10,6,8,6,0,0,0,0,0,0,29,0,0,12,14,8,8,6,0,0,0,0,0,44,0,0,8,16,15,15,10,0,0,0,0,0,59,0,0,5,8,10,9,0,3,0,0,0,0,41,0,0,6,9,11,11,4,0,0,0,0,0,48,3,0,5,14,8,12,0,3,0,0,0,0,52,0,3,12,7,11,17,6,0,0,0,0,0,56,3,5
LGA15850,0,0,13,0,0,4,0,0,7,0,4,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,5,4,5,4,0,0,0,4,32,0,0,11,5,0,4,0,0,0,0,0,8,29,20,28,99,111,77,121,76,21,0,0,5,21,578,0,0,0,0,4,0,0,3,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,7,4,0,0,0,0,0,15,0,0,13,4,7,6,0,0,0,0,0,0,31,0,4,16,13,12,12,6,0,0,0,0,0,50,0,0,10,10,7,6,3,0,0,0,0,0,45,0,0,3,5,4,9,9,0,0,0,0,0,26,0,0,3,5,7,8,11,0,0,0,0,0,40,0,0,3,9,3,8,11,0,0,0,0,3,45,0,0,3,7,5,16,16,0,0,0,0,5,58,0,0
LGA15900,35,8,944,0,4,14,16,11,27,77,260,271,112,94,15,890,0,0,7,5,5,3,18,85,138,100,106,9,475,5,4,47,47,40,66,218,483,305,103,100,56,1470,16,17,110,39,26,29,51,46,12,4,12,101,462,326,254,1939,1321,947,1630,3961,6344,2543,708,548,619,21138,9,14,52,35,16,33,46,65,41,15,14,45,388,7,14,24,13,11,7,7,21,11,5,4,8,135,30,75,119,53,23,27,27,46,18,5,5,26,465,25,63,373,133,66,53,89,80,35,17,5,51,979,35,36,598,157,98,136,155,135,47,17,9,61,1470,13,21,123,177,108,199,280,288,92,19,15,46,1388,6,9,72,106,77,148,230,366,132,41,17,21,1229,10,3,93,96,82,174,340,560,187,52,20,45,1678,3,0,46,67,61,150,373,732,311,82,49,38,1909,3,6,35,50,60,102,326,778,454,115,48,43,2019,3,0
LGA15950,337,13,1120,0,0,0,3,4,17,26,147,496,753,1378,28,2852,7,0,3,4,4,9,14,44,183,446,1738,26,2474,0,5,8,11,3,10,20,44,162,190,544,40,1034,0,4,14,3,3,4,7,16,19,30,52,60,213,55,35,309,131,96,159,385,1953,3173,3142,5494,367,15288,0,0,13,4,4,3,13,26,37,32,70,22,239,0,0,0,4,4,0,0,4,4,5,19,4,48,7,0,11,17,8,7,0,5,9,8,10,8,105,7,8,40,48,12,12,10,30,25,19,23,21,246,0,4,38,57,18,9,18,38,35,16,19,11,262,3,0,9,47,22,14,36,80,69,39,33,8,367,0,0,9,15,6,25,38,77,66,31,53,11,334,0,0,5,10,5,7,48,151,101,66,68,15,486,0,4,3,11,9,10,73,275,171,73,114,14,761,3,0,3,3,3,16,58,309,265,135,129,19,940,0,0
LGA15990,794,24,1807,3,0,3,3,13,19,26,81,394,554,1744,29,2872,4,0,3,6,0,20,19,51,129,252,2125,42,2642,4,0,17,14,12,24,35,108,278,299,861,81,1730,4,10,36,16,9,4,14,29,41,33,70,111,372,115,153,702,351,239,381,672,2341,4633,3725,8471,647,22431,0,5,10,13,12,9,23,39,58,41,85,38,324,4,0,4,9,0,0,0,13,13,11,23,12,96,6,0,27,30,4,13,6,12,20,15,26,13,180,10,13,57,120,40,13,25,35,35,24,39,39,454,15,47,103,129,39,32,26,47,64,23,40,20,599,4,5,51,97,63,49,66,117,117,69,79,27,746,5,0,26,30,31,41,48,120,148,107,144,37,735,5,8,19,14,20,32,71,167,216,131,158,34,871,7,0,11,9,21,42,76,237,353,225,287,42,1304,4,0,5,15,14,27,53,213,412,298,357,33,1437,3,3
LGA16100,0,4,6,0,0,0,0,0,3,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,4,0,5,5,3,0,0,0,0,0,23,0,0,3,3,0,4,0,0,0,0,0,0,17,13,15,49,49,57,98,74,21,3,0,0,21,398,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,4,10,0,0,5,0,3,0,0,0,0,0,0,0,13,0,5,18,3,3,0,4,4,0,0,0,3,39,0,0,0,7,9,4,9,0,0,0,0,0,34,0,0,5,0,7,7,10,8,0,0,0,0,25,0,0,7,0,0,3,8,9,0,0,0,4,26,0,0,5,9,10,10,16,8,0,0,0,6,46,0,0,3,6,4,6,9,8,0,0,0,0,35,0,0
LGA16150,0,3,163,0,0,0,8,9,16,42,100,15,5,7,3,202,0,0,3,0,0,6,8,37,18,6,4,0,89,4,0,17,23,18,44,67,95,16,5,3,10,307,0,5,25,27,12,15,11,8,0,0,0,23,125,60,59,376,530,460,862,1232,951,127,27,18,159,4867,3,0,3,9,5,9,10,12,5,0,0,25,94,0,4,6,0,0,4,0,4,0,0,0,3,23,4,4,23,16,6,16,11,4,5,5,0,11,100,8,17,35,31,17,24,28,13,3,0,0,11,189,0,4,111,49,34,45,44,13,8,0,8,17,330,0,3,27,80,42,73,82,54,13,4,3,12,390,0,5,17,36,25,69,90,68,11,3,0,13,334,0,0,14,25,30,72,98,92,22,4,0,15,380,5,0,8,24,29,65,150,129,20,3,9,14,445,0,0,9,8,19,60,141,138,40,5,3,7,436,0,0
LGA16200,0,3,35,0,0,0,6,3,4,22,8,0,0,0,0,42,0,0,0,5,3,3,12,0,0,0,0,0,26,3,0,6,11,11,23,21,8,0,0,0,0,88,4,0,21,3,0,4,4,5,0,0,0,13,55,40,42,262,298,198,263,247,56,3,3,4,71,1487,0,0,0,0,0,3,0,0,0,0,0,3,14,0,0,3,4,0,0,0,0,0,0,0,0,12,0,4,13,12,6,0,4,0,0,0,0,0,39,0,0,20,12,8,3,7,0,0,0,0,5,59,4,8,46,32,16,19,3,0,0,0,0,7,141,0,0,17,45,21,25,15,3,0,0,0,7,134,0,6,13,29,15,19,23,5,0,0,0,6,116,3,0,11,28,17,30,26,12,4,0,0,12,140,3,0,4,18,21,22,36,14,0,0,0,3,124,0,4,8,20,22,22,41,11,0,0,4,0,134,0,0
LGA16260,193,27,2307,4,5,20,6,21,49,65,566,1003,591,354,47,2726,0,0,9,7,11,10,29,164,423,392,378,24,1450,7,3,46,32,30,118,106,434,522,329,182,103,1914,17,10,71,27,11,11,25,66,66,23,38,122,484,278,245,1549,961,563,948,1802,8726,8956,4109,2135,905,31176,11,24,87,48,33,46,80,204,218,105,65,96,1024,4,15,14,13,4,3,16,44,39,19,12,13,191,26,80,88,49,14,22,32,60,49,15,19,36,484,37,74,356,88,55,48,84,158,115,34,19,47,1119,28,27,549,137,90,65,108,192,156,42,25,61,1474,8,21,120,110,78,69,161,307,241,89,36,37,1272,6,15,78,128,68,116,191,452,342,127,54,58,1634,5,6,68,64,62,99,288,700,513,159,83,52,2107,7,4,34,50,46,121,378,1069,794,265,112,79,2958,7,0,23,38,38,108,370,1196,955,360,178,73,3333,5,3
LGA16350,17,13,1035,0,0,6,5,12,22,50,360,256,114,45,18,896,3,0,0,4,8,4,24,96,102,83,46,7,385,5,4,28,41,18,62,154,473,241,80,29,60,1173,8,0,51,34,21,21,57,56,14,0,0,122,389,148,129,931,767,527,1208,3199,7668,2782,762,276,582,18976,10,9,27,20,8,27,56,107,40,10,16,80,408,8,6,9,13,6,8,18,21,0,8,0,12,102,21,58,70,28,20,21,25,44,16,0,8,25,334,17,46,188,99,53,59,91,123,24,4,5,35,746,16,24,357,146,68,107,156,191,46,18,8,40,1167,5,6,62,119,70,172,331,359,107,24,15,42,1303,3,11,45,114,55,139,326,555,126,29,8,37,1451,9,5,36,67,62,185,425,685,206,41,30,47,1799,5,4,22,46,46,162,464,1027,322,70,30,48,2245,3,6,16,35,28,99,393,1126,436,92,30,46,2300,4,3
LGA16380,11,0,251,4,0,8,3,7,5,26,66,56,33,14,4,220,0,0,0,5,0,0,6,20,38,27,13,8,118,0,4,18,23,20,41,86,188,68,25,8,24,507,3,9,30,22,20,35,42,33,7,3,4,35,252,80,74,561,563,481,1001,1821,2307,719,195,87,238,8111,0,0,3,19,10,15,21,33,15,0,0,17,133,0,0,6,6,3,3,3,9,0,6,5,6,45,3,0,10,38,15,15,23,23,6,0,6,9,145,0,5,30,88,20,45,51,52,4,0,3,13,328,7,8,45,144,50,89,113,91,18,5,3,26,593,3,8,22,105,53,148,234,194,58,3,3,12,840,4,0,19,38,30,106,194,238,59,19,8,24,746,0,0,19,31,22,75,216,300,105,16,7,29,819,0,0,17,29,33,85,194,376,124,15,9,26,898,0,0,11,14,11,48,143,390,166,40,17,20,873,9,4
LGA16400,6,3,263,0,0,3,4,0,30,41,52,54,21,13,3,214,0,0,0,0,0,6,10,27,27,12,10,0,96,0,3,17,20,22,103,75,157,57,29,7,12,502,5,3,27,20,12,20,19,28,5,0,6,26,163,47,51,418,393,367,1032,1627,1765,543,128,86,187,6645,0,0,3,9,0,10,24,22,16,3,0,17,116,0,0,4,0,0,0,4,5,0,0,0,3,27,0,3,16,7,5,14,18,15,3,0,0,9,95,5,4,21,52,22,24,45,28,7,0,4,12,221,4,0,34,94,37,61,75,49,15,4,8,14,397,0,0,33,58,50,76,180,115,27,8,5,12,564,0,0,10,38,26,80,143,187,35,6,3,18,556,0,0,21,22,12,66,157,204,61,11,6,17,588,0,0,9,21,19,62,162,274,112,15,3,20,704,0,0,4,16,16,48,139,273,135,25,11,15,687,3,3
LGA16490,15,3,304,3,0,0,7,5,29,81,78,80,43,34,9,373,0,0,0,3,0,5,44,45,42,29,31,4,204,0,0,11,18,22,38,46,75,44,29,15,22,312,5,0,11,8,6,8,3,19,3,0,0,22,91,37,39,264,544,491,822,1066,1330,545,228,131,161,5666,0,3,9,6,5,12,14,10,4,3,9,10,76,0,0,0,0,0,0,0,0,0,0,0,5,7,9,10,6,11,0,3,3,9,3,0,0,5,65,6,10,48,23,15,20,16,12,4,0,0,5,163,3,0,73,43,41,40,26,19,9,4,0,8,266,0,5,24,56,45,60,42,38,16,4,0,6,300,0,9,17,32,28,53,48,38,9,0,3,12,250,0,4,14,26,30,89,75,64,28,10,4,14,366,0,0,13,26,40,87,124,134,56,19,7,8,503,3,5,8,14,22,92,107,139,65,10,9,20,481,5,0
LGA16550,566,25,1717,6,0,8,6,7,22,44,100,427,726,1215,27,2597,3,0,4,6,8,18,30,39,165,368,1564,43,2240,5,11,32,32,17,46,63,95,323,385,786,76,1862,9,0,97,24,16,16,17,56,50,53,92,107,548,242,201,1493,693,405,538,803,2219,4462,4824,6922,714,23517,6,8,50,23,12,19,46,61,90,61,61,65,503,0,4,26,3,0,0,11,4,19,18,15,10,123,27,65,92,30,18,13,12,21,32,18,20,24,369,31,69,356,75,30,19,24,53,46,26,19,52,799,13,27,550,124,44,51,36,46,62,29,30,45,1052,10,8,102,93,30,35,64,110,122,57,49,29,707,4,12,54,94,50,39,62,119,153,81,66,25,764,3,6,48,40,55,62,102,192,188,104,85,37,919,5,6,26,25,25,48,104,286,321,200,147,34,1229,0,7,17,19,21,32,71,281,419,234,220,37,1359,0,0
LGA16610,0,0,53,0,0,0,0,4,3,7,6,4,0,0,3,25,0,0,0,0,0,3,3,4,0,0,0,0,6,4,0,5,3,8,34,48,12,9,0,0,5,129,0,0,7,33,14,13,12,7,0,0,0,9,98,39,20,189,401,271,576,642,177,33,8,14,87,2460,0,0,3,7,3,3,4,3,0,0,0,3,26,0,0,0,0,0,3,0,4,0,0,0,0,15,5,0,3,6,9,3,0,0,0,0,0,3,25,0,0,14,25,17,13,19,11,0,0,0,4,102,0,4,33,38,44,41,37,16,5,0,0,9,219,0,0,15,52,32,51,69,37,0,0,0,7,260,0,0,9,20,13,43,69,39,12,4,3,8,220,0,4,10,27,24,36,58,47,7,3,0,6,226,0,0,10,11,13,37,73,57,12,0,0,14,232,4,0,3,6,11,35,65,61,14,0,5,3,208,3,0
LGA16700,215,16,1131,3,0,4,10,10,25,29,206,364,350,386,25,1416,0,4,4,9,0,11,7,78,158,166,428,16,883,6,8,17,17,16,29,40,173,210,152,212,56,917,5,0,21,9,3,7,9,31,25,14,16,51,205,98,93,647,456,272,420,894,3851,3791,2263,2267,518,15573,5,3,18,30,15,32,51,144,139,89,52,55,631,0,6,7,12,7,15,9,29,20,15,7,8,126,3,7,24,23,11,19,32,45,33,20,14,11,248,11,8,60,114,35,42,50,105,43,18,29,22,541,12,8,52,143,41,58,71,126,59,28,20,34,649,0,0,21,113,37,39,101,179,120,57,28,25,728,5,3,14,46,19,74,136,219,138,59,51,20,786,4,8,20,23,17,52,176,350,192,105,55,36,1038,0,0,4,26,22,47,233,561,300,149,84,40,1458,4,0,3,13,21,43,224,583,383,191,123,42,1627,4,0
LGA16900,0,5,235,6,0,5,0,3,3,12,60,61,45,9,8,197,0,0,0,4,4,6,10,19,33,27,14,4,115,0,3,14,25,22,21,74,113,69,31,11,12,392,4,0,34,21,12,14,17,10,3,0,3,45,158,59,54,587,484,308,494,1012,1861,814,274,61,180,6196,0,0,13,10,5,0,7,21,20,11,0,27,118,4,0,6,8,0,4,0,4,5,0,0,0,33,8,18,29,23,14,10,11,8,4,9,0,10,138,9,24,120,34,19,17,27,21,3,0,3,16,297,4,9,217,71,35,31,46,61,21,9,4,21,514,0,9,46,73,39,53,88,91,43,18,4,10,470,8,8,27,70,37,58,80,112,89,20,7,11,516,9,0,31,34,48,45,115,171,107,18,3,15,599,0,3,12,26,23,37,78,219,160,42,6,20,627,4,0,21,6,13,20,74,226,190,59,14,17,636,3,0
LGA16950,3,3,256,0,0,7,7,6,12,36,68,25,3,10,7,196,0,7,0,4,3,10,23,32,17,10,6,5,109,6,3,17,47,31,105,169,152,24,8,3,29,592,6,0,43,47,27,27,47,23,0,0,5,69,294,87,111,578,994,707,1609,2738,1799,274,55,85,331,9377,4,0,17,9,8,11,13,36,19,0,3,30,155,0,0,7,7,4,9,7,12,0,0,0,4,51,4,10,32,42,17,12,27,18,0,0,3,13,176,5,4,53,98,31,42,68,47,8,0,0,18,376,8,4,43,178,78,125,131,87,24,6,0,39,728,0,0,32,140,94,162,262,173,31,5,9,28,948,6,0,25,46,70,131,211,284,69,8,3,23,867,4,8,14,44,41,93,220,326,85,7,4,27,874,5,0,19,26,43,81,260,407,104,13,10,25,993,9,0,9,21,36,64,255,404,143,16,4,32,1008,6,0
LGA17000,0,3,94,0,0,3,3,0,9,39,46,9,3,0,8,128,0,0,0,0,0,0,15,21,17,4,4,0,64,5,4,5,9,3,27,34,42,8,3,3,12,150,0,0,5,5,4,4,3,5,0,0,0,15,45,32,32,153,227,150,332,577,436,103,14,11,87,2146,0,0,0,7,0,4,10,4,0,0,0,13,34,0,0,3,0,3,0,0,0,0,0,0,0,12,0,0,12,4,3,0,10,5,0,0,0,4,42,0,0,12,19,13,10,3,7,0,0,0,3,66,0,0,4,40,12,24,27,9,0,0,0,7,133,0,0,12,28,17,19,32,17,7,0,0,3,139,0,0,0,11,11,26,36,32,10,0,0,4,131,0,0,0,12,16,30,40,33,10,0,0,6,152,0,0,6,13,7,18,27,50,4,0,0,12,139,0,0,0,7,6,18,33,64,14,5,5,7,155,0,0
LGA17040,32,6,97,4,0,0,0,7,8,12,25,0,0,39,9,109,0,0,3,5,0,6,3,6,0,4,64,4,91,0,0,4,9,14,23,25,17,6,6,14,6,121,0,0,4,11,9,11,4,6,0,0,6,13,63,37,42,174,296,231,361,267,206,41,33,276,107,2078,0,0,0,0,6,11,4,5,4,0,0,3,21,0,0,0,0,0,0,0,0,0,0,3,0,7,5,4,8,5,0,4,0,0,0,0,5,7,39,0,0,11,16,15,6,11,9,0,0,5,6,70,4,5,15,23,10,15,8,8,4,5,8,7,114,0,6,9,29,15,30,24,11,3,0,4,8,144,0,0,3,17,16,28,37,11,4,4,14,8,141,0,0,8,21,14,31,45,27,7,0,12,17,182,5,5,5,16,13,46,32,14,10,0,17,8,168,0,6,10,10,6,24,42,38,11,4,14,14,178,0,0
LGA17080,4,0,29,0,0,6,0,0,0,8,3,0,0,0,3,21,0,0,0,5,0,0,3,0,0,0,0,0,11,0,0,3,21,9,20,11,11,0,0,0,3,80,6,0,11,12,4,0,0,0,0,0,0,3,38,59,38,184,346,181,191,165,42,0,3,12,61,1275,0,0,3,5,0,5,0,3,0,0,0,6,20,0,0,0,3,6,5,0,0,0,0,0,0,17,0,3,10,7,0,6,0,0,0,0,0,0,27,0,4,15,11,5,8,4,0,0,0,0,3,56,0,5,33,27,16,21,3,9,0,0,0,12,119,0,0,15,33,20,29,13,0,0,0,0,5,123,3,0,9,26,17,23,20,6,0,0,0,6,115,0,0,12,19,18,35,18,9,0,0,0,3,121,3,0,6,23,16,30,25,11,0,0,0,13,123,0,0,7,19,10,35,29,18,0,0,5,12,131,0,0
LGA17100,47,5,366,0,0,5,4,7,12,9,59,161,94,79,9,432,0,0,6,3,8,0,6,27,78,73,141,4,353,0,0,13,3,12,7,12,77,123,77,60,28,410,0,0,9,6,4,8,0,5,3,3,6,6,55,39,32,250,134,123,116,195,1060,1642,868,651,194,5295,0,0,10,11,3,3,13,37,47,15,14,25,182,0,0,3,4,0,4,0,5,4,4,0,0,30,4,5,17,11,4,3,4,11,7,3,5,8,79,0,18,51,20,4,3,9,27,16,13,4,17,183,4,9,70,20,12,15,11,34,28,11,3,9,226,0,0,17,17,13,6,18,55,63,13,10,14,227,0,0,16,11,14,17,39,80,83,30,14,11,312,0,3,13,11,22,15,25,128,90,35,18,16,362,0,0,14,9,10,11,47,173,132,61,16,19,498,0,6,19,5,9,13,37,216,172,57,40,21,588,4,0
LGA17150,244,15,1224,0,0,10,3,4,30,24,188,378,294,460,16,1419,0,0,0,4,0,20,10,57,119,178,465,18,877,4,5,13,15,15,56,35,191,235,170,277,58,1081,3,0,49,18,8,16,20,38,29,13,16,88,297,114,105,795,438,314,511,1017,4005,3522,2103,2368,518,15818,5,4,28,8,3,13,19,46,39,19,34,44,268,4,6,6,5,0,0,6,14,15,5,9,13,80,7,20,52,18,11,15,17,20,12,7,12,16,201,17,39,201,51,18,18,27,55,39,20,11,22,509,13,13,285,65,29,28,53,84,73,25,20,39,729,6,9,54,68,35,42,98,168,122,48,36,29,709,4,4,33,62,31,38,66,175,132,58,51,37,697,6,0,37,38,18,36,94,315,205,84,71,28,932,3,4,17,22,16,44,120,419,326,141,101,31,1241,0,3,8,14,7,29,96,447,386,205,149,28,1382,3,0
LGA17200,1561,62,3392,11,0,28,19,11,28,82,240,832,1486,3923,101,6759,9,7,8,14,4,31,40,79,271,738,4209,96,5497,16,10,76,81,38,51,94,181,360,577,2077,190,3741,31,24,180,36,30,19,138,158,126,142,373,229,1487,579,464,3240,1295,833,1127,3212,5214,7425,8893,19756,1734,53768,21,28,74,47,34,56,135,258,440,385,527,138,2139,10,23,44,20,11,10,26,30,56,28,55,24,339,61,180,214,76,34,18,51,60,87,62,92,43,966,58,194,685,134,67,103,133,145,123,83,107,94,1909,41,69,1175,239,72,78,116,166,150,88,116,93,2402,15,41,211,222,73,137,236,285,245,146,166,72,1844,18,33,116,222,108,169,271,361,281,188,215,65,2046,13,23,107,117,106,204,348,538,446,244,277,75,2500,12,12,55,45,59,133,461,889,758,419,450,78,3380,9,6,29,50,37,83,298,932,936,631,633,88,3736,15,13
LGA17310,3,6,191,0,3,6,8,7,13,44,58,33,0,3,9,181,0,0,7,4,3,10,22,27,13,0,4,6,98,0,8,16,25,22,71,104,102,28,7,5,21,405,4,4,24,40,13,27,26,10,3,0,0,31,192,87,88,476,835,564,1120,1795,1014,190,26,29,265,6502,0,3,4,5,10,14,28,17,3,0,0,26,111,0,0,7,8,4,5,6,3,0,0,0,3,36,6,5,13,29,16,27,15,11,0,0,0,17,143,4,14,31,72,49,46,48,19,4,0,3,16,297,9,3,34,114,72,104,83,31,5,0,0,17,467,0,6,24,103,84,148,118,59,13,3,3,14,559,0,4,24,55,47,110,187,77,7,6,0,20,529,3,5,21,50,43,138,228,108,18,3,3,22,650,7,0,15,44,57,144,280,164,18,3,0,25,752,0,0,9,24,36,113,245,187,23,0,5,23,672,4,6
LGA17350,0,0,6,0,0,0,0,0,3,3,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,10,6,0,0,0,0,0,0,20,6,0,5,3,0,0,0,0,0,0,0,4,19,30,15,99,117,67,92,34,5,0,4,3,20,492,0,0,4,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,8,0,3,0,0,0,0,0,0,0,10,5,0,11,3,3,0,0,0,0,0,0,0,20,0,8,14,12,5,14,9,0,0,0,0,0,69,0,3,11,14,11,16,5,0,0,0,0,4,59,0,0,4,9,9,12,9,0,0,0,0,0,47,0,3,4,10,7,11,8,3,0,0,0,0,46,0,0,4,6,6,18,8,0,0,0,0,3,51,0,0,0,3,4,10,14,0,0,0,0,3,39,0,0
LGA17400,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3,5,4,3,0,0,0,0,0,0,29,0,0,3,6,0,7,0,0,0,0,0,9,26,13,20,102,147,101,101,34,3,0,0,9,24,558,0,0,0,4,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,7,0,3,0,0,0,0,0,0,3,16,0,0,6,11,5,14,0,0,0,0,0,5,37,0,5,4,9,9,12,6,0,0,0,0,12,51,0,0,8,20,9,22,6,0,0,0,0,0,75,0,0,0,10,13,14,7,4,0,0,0,9,49,0,0,0,8,8,12,5,6,0,0,0,3,43,0,0,4,3,0,19,13,3,0,0,0,5,47,0,0,0,8,9,8,15,8,0,0,0,0,47,0,0
LGA17420,235,7,761,0,0,0,3,3,6,29,32,209,336,438,11,1080,0,0,5,0,0,4,12,18,104,221,556,13,942,0,0,6,5,0,13,23,51,112,200,265,29,717,0,0,3,6,6,0,0,4,12,19,6,22,83,20,10,89,101,75,165,250,630,1875,2268,2309,235,8013,0,0,0,9,3,3,3,24,38,42,32,31,188,0,0,6,0,0,0,0,9,13,9,9,5,55,0,0,0,4,5,6,3,13,0,7,12,3,61,0,3,7,4,5,8,3,12,19,18,11,10,104,6,3,16,9,15,7,10,35,46,24,15,17,198,0,0,9,14,14,15,20,56,52,42,30,8,261,0,0,12,7,8,10,25,67,77,70,38,13,325,0,0,7,10,8,10,25,96,108,71,54,11,401,5,0,6,9,3,11,29,144,169,138,115,15,638,3,0,3,8,8,15,23,123,198,200,132,31,735,3,0
LGA17550,18,4,262,0,0,5,5,5,8,21,70,64,39,27,14,259,0,0,0,0,0,0,5,20,23,17,36,0,108,0,6,15,23,18,43,108,203,119,39,31,21,620,0,0,41,34,23,32,42,33,9,0,3,59,279,51,55,546,605,463,833,2052,2676,1157,336,252,341,9367,0,0,10,7,7,13,20,30,13,13,5,20,133,0,0,4,5,4,0,3,9,3,0,3,3,44,3,5,29,7,5,17,22,26,8,5,8,4,142,8,7,90,34,29,26,39,41,23,0,5,23,318,9,5,176,73,40,67,88,93,36,15,10,20,613,3,6,44,84,47,130,186,195,76,28,27,27,837,5,5,24,49,26,52,120,232,78,30,17,24,674,3,10,22,31,30,62,136,276,135,46,38,26,818,6,0,11,19,31,56,104,326,147,74,52,25,859,0,4,10,11,24,35,105,288,229,82,62,21,870,3,0
LGA17620,0,10,47,0,0,0,0,5,11,6,16,4,0,0,4,53,0,0,0,0,0,3,4,5,3,0,0,0,18,0,0,7,5,6,25,12,10,0,0,0,12,75,3,0,7,6,3,8,3,4,0,0,0,7,43,22,21,119,197,169,314,254,104,26,8,8,83,1324,0,0,3,8,0,0,4,3,0,0,0,4,19,0,0,0,0,0,3,3,0,0,0,0,0,8,0,0,5,6,6,4,3,0,0,0,0,0,22,0,0,7,13,3,7,9,0,0,0,0,3,42,3,0,25,18,14,21,9,6,0,0,0,4,94,0,0,6,28,15,26,22,5,0,0,0,6,112,0,0,6,14,11,26,18,9,0,0,0,3,91,0,5,3,9,13,25,28,13,0,0,0,7,111,0,0,3,15,15,20,37,11,6,0,3,13,127,0,0,5,10,7,26,39,20,0,0,0,13,127,4,0
LGA17640,0,0,8,0,0,0,0,0,3,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,4,5,0,4,10,0,0,0,0,0,28,0,0,0,3,0,0,0,0,0,0,0,0,8,14,15,48,55,62,82,69,11,6,0,7,24,404,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,4,0,0,0,0,0,0,4,16,0,0,7,5,0,7,4,0,0,0,0,0,29,0,0,3,8,9,9,11,4,0,0,0,4,38,0,0,5,3,0,7,5,3,0,0,0,8,28,0,0,4,6,0,11,0,4,0,0,0,4,24,0,0,3,3,0,7,8,3,0,0,0,6,30,0,0,4,0,0,6,12,11,0,0,0,9,44,0,0
LGA17650,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,7,3,0,0,0,0,4,30,0,0,4,3,0,0,3,0,0,0,0,0,10,20,8,47,98,42,80,65,18,7,4,6,25,413,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,10,0,0,9,5,0,6,0,5,0,0,0,0,22,0,0,3,6,3,4,6,0,0,0,0,0,30,0,0,6,9,15,10,4,3,0,0,0,0,47,0,0,5,14,3,7,6,0,0,0,0,3,39,0,0,0,4,9,9,10,3,0,0,0,0,34,0,0,3,7,5,6,10,0,0,0,0,5,32,0,0,0,3,6,4,15,4,0,0,0,0,33,0,0
LGA17750,0,8,292,4,3,5,12,9,22,57,91,40,9,5,7,259,0,0,8,5,0,10,22,33,18,3,7,4,102,4,3,17,38,24,83,128,95,33,4,0,22,454,0,0,38,39,18,27,23,9,7,0,0,42,196,100,105,589,1040,572,1300,2075,1134,242,40,33,220,7451,4,6,10,9,9,11,25,8,3,0,0,22,105,0,4,12,3,5,8,8,5,4,0,0,5,45,10,25,26,27,20,14,17,9,0,0,0,8,154,6,21,70,69,37,44,33,14,3,0,0,5,304,5,11,127,96,67,72,91,35,4,0,0,16,522,0,4,49,119,82,123,135,47,7,0,3,22,591,3,7,25,88,67,118,145,62,6,3,3,21,547,0,0,37,81,91,127,191,92,21,0,5,14,661,4,6,19,65,66,143,232,156,22,11,4,22,752,4,5,13,50,58,132,270,164,37,3,4,19,751,8,0
LGA17850,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,0,0,0,5,8,8,57,66,41,31,4,0,0,0,0,29,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,10,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,9,4,5,3,0,0,0,0,0,0,27,0,0,8,6,0,6,0,0,0,0,0,0,22,0,0,4,0,5,4,4,0,0,0,0,0,19,0,0,0,4,0,5,3,0,0,0,0,3,15,0,0,3,0,7,3,0,0,0,0,0,4,20,0,0,4,5,6,3,5,0,0,0,0,0,25,0,0
LGA17900,0,4,27,10,4,5,4,3,0,0,0,0,0,0,3,22,7,4,0,0,0,0,0,0,0,0,0,0,15,7,0,0,11,10,10,0,0,0,0,0,10,59,3,0,3,13,9,0,3,0,0,0,0,4,37,138,33,129,237,114,56,23,9,0,0,3,65,806,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,11,3,0,6,9,0,0,0,0,0,0,0,0,17,7,6,12,13,7,0,0,0,0,0,0,5,51,3,0,9,9,3,5,0,0,3,0,0,5,33,4,0,0,11,10,11,6,0,0,0,0,10,47,0,0,4,10,3,9,4,0,0,0,0,13,49,0,0,3,9,5,12,0,3,0,0,0,0,43,6,0,4,8,10,9,0,0,0,0,0,0,41,6,4
LGA17950,0,0,10,0,0,3,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,6,0,0,0,0,0,0,6,17,0,0,11,3,0,0,0,0,0,0,0,3,15,9,12,75,61,30,24,4,0,0,0,0,18,249,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,3,4,0,3,0,0,0,0,0,0,15,0,0,9,4,0,6,0,0,0,0,0,0,16,0,0,0,9,3,0,3,0,0,0,0,0,18,0,0,5,4,6,7,0,0,0,0,0,5,22,0,0,0,0,3,3,0,0,0,0,0,0,13,0,0,0,4,11,0,0,0,0,0,0,0,17,0,0
LGA18020,0,0,20,0,0,0,7,4,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,14,15,10,4,0,0,0,0,4,44,0,3,3,15,0,0,0,0,0,0,0,4,23,39,29,167,270,134,72,22,8,5,4,7,53,803,0,0,4,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,3,0,0,0,0,0,0,5,18,0,0,5,10,5,3,0,0,0,0,0,4,32,3,6,26,17,6,7,3,0,0,0,0,15,87,0,4,14,26,13,7,0,0,0,0,0,4,67,0,4,3,15,18,15,6,0,0,0,0,0,58,0,3,10,18,9,13,7,0,0,0,0,7,68,0,0,5,19,13,15,3,0,0,0,0,3,64,5,0,3,9,10,11,6,0,0,0,0,5,53,6,0
LGA18050,427,16,862,0,0,0,3,3,13,18,57,169,341,1186,22,1819,0,0,3,3,4,4,10,24,64,193,1593,30,1926,0,0,4,5,0,10,23,49,125,196,703,54,1167,0,0,11,12,0,3,6,31,27,32,75,29,225,35,29,261,141,87,135,376,1095,1685,2133,5551,345,11877,0,0,9,3,5,0,10,20,26,17,76,17,184,4,0,0,0,0,0,3,4,4,3,6,5,27,0,4,17,4,3,0,5,3,4,3,10,3,74,4,10,47,15,7,3,13,18,22,6,22,13,184,0,6,86,16,16,12,14,31,19,14,26,19,246,3,4,13,25,7,15,30,49,39,39,38,11,269,0,3,13,12,8,10,22,74,55,42,59,10,306,0,0,6,8,8,12,36,95,72,63,70,11,386,0,0,0,8,8,9,44,118,122,95,148,17,563,3,0,0,0,3,7,33,125,161,119,166,10,643,3,0
LGA18100,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,3,0,0,0,0,0,0,7,0,0,8,0,0,0,0,0,0,0,0,0,11,30,8,71,53,46,17,3,0,0,0,0,14,246,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,20,7,5,8,3,3,6,0,0,0,0,0,0,30,5,0,11,11,7,7,0,0,0,0,0,0,35,0,0,0,11,10,8,0,0,0,0,0,0,30,0,0,3,4,3,5,0,0,0,0,0,0,21,0,0,3,4,0,7,3,0,0,0,0,0,24,0,0,0,3,6,4,0,3,0,0,0,4,26,0,0
LGA18200,0,0,14,0,0,0,0,0,0,3,5,0,0,0,0,12,0,0,4,0,0,0,0,0,0,0,0,0,7,8,0,7,3,3,4,4,5,0,0,0,0,40,3,0,7,10,3,0,0,0,0,0,0,9,31,50,15,107,169,68,56,34,27,0,0,10,26,566,0,0,0,10,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,5,4,0,0,0,0,0,13,0,0,7,10,4,0,0,0,0,0,0,0,28,0,0,7,11,7,4,0,0,0,0,0,3,41,0,0,7,12,10,9,4,0,0,0,0,3,52,0,0,9,11,6,7,3,0,0,0,0,3,41,0,0,3,11,11,8,11,0,0,0,0,0,51,4,0,3,7,9,6,3,0,0,0,0,0,42,0,0,3,23,11,7,10,0,0,0,5,5,67,7,0
LGA18250,236,15,677,4,0,3,5,0,7,12,43,228,361,686,24,1369,0,0,0,5,5,3,9,19,89,251,914,14,1308,0,0,6,7,5,13,14,31,113,162,318,39,705,5,0,5,3,0,5,3,8,18,14,58,45,165,36,26,206,135,90,101,224,676,1990,2229,3567,324,9597,0,0,8,9,6,0,9,32,62,47,89,20,278,0,0,0,0,3,6,3,3,8,14,16,9,66,5,3,8,9,4,4,0,15,20,11,18,4,100,0,0,37,31,8,9,15,20,27,11,12,10,188,0,0,32,40,16,12,16,24,37,23,27,13,245,5,0,8,29,12,13,22,56,54,24,36,8,265,0,0,7,16,9,17,18,49,69,41,37,10,273,0,0,5,10,5,22,32,74,87,63,48,19,363,0,0,3,12,3,19,34,127,146,103,98,19,562,5,0,0,3,6,13,38,130,182,104,129,25,621,0,0
LGA18350,13,0,134,0,0,0,0,4,0,11,37,44,28,24,4,158,0,0,0,0,0,3,3,12,18,18,27,0,87,0,0,4,3,7,9,38,61,48,27,31,9,250,0,0,6,23,3,0,14,6,4,0,0,18,80,22,17,93,260,206,280,595,905,478,206,158,144,3355,0,0,0,5,4,0,5,9,7,12,12,12,70,0,0,0,0,3,0,0,7,0,0,0,3,26,0,0,5,10,4,7,3,12,3,6,0,3,48,0,0,8,31,10,11,9,23,6,0,8,9,120,0,6,13,58,26,29,34,26,8,4,13,7,213,0,3,5,46,22,28,49,44,26,3,5,8,248,0,0,5,22,14,32,32,67,32,21,12,8,246,0,0,3,11,11,23,42,84,55,27,9,11,283,5,0,4,3,10,20,51,110,71,27,22,12,338,0,0,9,8,9,19,37,89,85,29,14,14,312,0,0
LGA18400,6,0,107,6,0,0,0,0,9,10,32,29,25,18,0,120,0,0,0,0,0,0,6,10,11,20,10,3,61,0,0,6,6,10,3,17,57,36,15,16,0,162,0,0,0,8,0,12,9,7,0,0,0,19,55,13,15,46,155,102,138,348,696,334,146,95,93,2172,0,0,0,0,5,0,5,6,7,5,0,16,39,0,0,0,8,0,0,0,0,0,0,0,3,10,0,0,5,5,5,0,5,0,0,0,0,0,22,0,0,3,16,5,5,7,15,0,5,0,7,67,0,0,10,34,12,13,20,23,10,0,4,5,127,0,0,5,30,13,15,35,43,20,4,4,7,172,0,0,5,6,10,25,32,67,18,3,5,9,178,0,0,0,6,4,25,41,66,31,7,3,7,196,5,0,3,3,5,11,44,118,46,16,10,3,259,0,0,0,7,6,9,41,88,65,5,15,15,245,5,0
LGA18450,57,14,862,0,0,17,7,13,18,75,198,223,131,77,10,780,0,0,0,4,8,5,27,67,104,91,98,11,410,9,6,72,88,41,90,220,414,259,109,91,65,1459,20,14,138,62,23,47,49,53,21,10,10,129,573,327,280,2514,1687,1119,1933,3791,5411,2677,1004,635,711,22089,14,11,64,26,29,39,61,68,44,27,18,56,464,11,12,39,10,4,9,11,12,14,0,0,18,147,45,91,139,46,30,32,33,38,22,12,10,33,536,34,99,498,124,83,75,119,100,33,10,14,47,1248,31,26,875,229,117,153,187,172,75,18,12,92,1993,17,10,198,197,133,217,333,304,124,30,16,49,1624,10,23,116,234,96,167,305,409,182,63,15,45,1668,13,11,134,103,101,203,382,489,235,83,31,45,1823,9,10,49,79,77,164,407,679,380,115,46,37,2040,4,0,35,67,50,111,330,755,449,169,68,37,2058,4,0
LGA18500,252,0,467,0,0,0,5,4,0,18,47,91,219,844,26,1258,0,0,0,0,0,4,8,10,36,133,1351,21,1574,0,0,0,5,3,4,15,24,54,96,523,32,756,0,0,3,4,0,0,0,11,9,13,40,32,114,15,9,60,51,61,77,319,664,905,1260,4074,231,7730,0,0,3,0,0,3,13,17,14,12,53,19,136,0,0,3,0,0,0,0,3,0,4,13,4,30,0,0,0,3,0,4,7,0,9,3,13,5,54,0,0,15,4,0,3,12,8,9,5,19,4,82,5,0,19,10,0,5,11,25,14,16,22,7,139,5,0,9,9,9,13,21,29,34,28,27,8,183,0,0,4,9,4,12,21,33,39,30,47,13,200,0,0,3,7,0,6,39,58,51,36,58,10,267,0,0,3,0,0,12,45,87,72,52,100,9,381,0,0,0,0,3,15,27,81,85,61,112,3,396,3,0
LGA18710,4,0,43,0,0,5,0,0,0,9,10,15,8,3,0,55,0,0,0,0,0,4,4,10,7,0,7,0,38,0,0,0,0,0,8,18,12,7,0,5,0,51,0,0,6,0,0,0,3,0,0,0,0,6,22,16,20,32,73,48,106,242,199,71,32,21,47,920,0,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,4,3,0,0,4,5,0,4,0,6,27,0,5,7,10,7,3,3,12,0,0,0,6,43,0,0,12,12,8,0,15,9,0,0,0,0,60,0,0,7,9,0,4,6,17,0,0,0,5,42,0,0,0,11,11,14,21,20,4,0,0,8,87,0,0,0,0,7,3,20,17,3,0,0,3,57,0,0,0,0,5,5,25,19,18,6,0,4,81,0,0
LGA19399,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,4,12,0,15,3,5,4,4,5,0,0,0,18,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0,4,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,4,0,0,0,4,9,3,0
LGA19499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA19799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA20110,9,0,21,0,0,5,0,0,0,5,7,4,0,20,3,41,4,0,0,0,0,0,5,4,5,3,32,5,57,0,0,4,7,0,7,11,7,0,0,0,4,51,0,0,8,8,5,6,0,0,0,0,0,12,33,17,28,118,218,149,203,155,72,16,7,94,54,1125,0,0,0,0,0,0,0,0,3,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,6,0,0,12,7,4,4,0,0,0,0,0,7,43,5,0,8,13,9,14,9,6,0,0,0,3,69,0,4,12,17,15,22,16,0,5,0,0,0,100,3,0,9,12,13,11,20,5,0,0,3,7,79,0,0,10,12,12,24,23,16,0,0,0,0,105,0,0,0,14,10,13,21,3,0,0,0,4,75,0,0,5,9,13,19,24,19,0,4,7,4,94,0,0
LGA20260,0,3,26,0,0,0,4,0,0,7,4,0,0,5,5,30,0,0,0,0,0,3,0,5,8,0,0,5,19,4,0,10,13,5,20,4,0,0,0,0,14,70,0,0,11,9,11,0,0,0,0,0,4,11,48,34,25,169,221,138,172,92,30,17,0,14,84,980,0,0,4,3,0,0,6,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,9,0,5,6,4,0,9,0,0,0,0,0,0,23,0,4,7,7,4,7,5,0,0,0,0,3,32,0,0,23,13,12,15,5,3,0,0,0,6,83,3,0,16,16,13,15,7,4,0,0,0,4,88,0,6,11,19,3,26,18,3,0,0,0,7,93,3,0,7,12,15,18,16,3,3,0,0,3,84,0,0,5,18,11,22,20,17,0,0,0,0,96,5,0,0,12,7,21,23,8,4,0,0,0,88,0,0
LGA20570,0,4,285,0,0,10,14,9,29,78,97,20,3,8,0,271,0,0,9,6,10,12,39,50,22,3,0,0,144,9,13,35,55,50,189,215,110,17,3,12,29,727,8,5,58,53,37,52,24,15,0,0,4,72,322,125,142,1214,1426,1241,3297,2846,1042,171,37,65,349,11958,5,4,14,18,13,28,45,16,11,0,7,34,187,4,8,10,0,4,8,8,11,0,0,0,10,68,18,22,43,43,24,23,21,22,4,0,0,22,232,14,25,135,94,62,113,87,26,8,0,0,19,593,12,12,249,155,74,202,126,65,0,0,5,36,938,13,9,110,203,145,340,309,94,10,0,4,20,1255,9,7,65,129,99,275,351,148,24,4,0,34,1157,8,7,77,103,102,297,419,181,16,5,6,32,1248,3,6,38,94,104,299,557,286,31,0,0,34,1465,3,6,27,60,65,252,527,326,36,0,5,33,1345,11,3
LGA20660,15,9,680,3,0,12,4,6,18,83,245,189,58,46,7,658,0,0,6,3,0,7,26,85,111,51,63,8,368,4,5,23,25,11,44,149,226,108,34,34,37,696,8,3,40,13,9,15,24,24,9,6,4,58,216,103,108,722,400,301,671,2766,3501,1259,321,296,373,10831,8,3,23,8,3,16,31,60,34,9,7,44,242,4,4,4,5,0,5,14,23,8,0,0,4,68,15,17,41,15,6,8,17,27,10,6,0,15,178,16,20,115,36,16,16,48,65,16,6,0,23,371,16,15,206,52,19,35,72,101,27,6,6,28,586,4,0,89,73,34,44,127,141,41,7,5,31,597,4,5,36,58,37,38,142,185,69,21,6,18,619,5,3,44,35,29,64,151,266,74,16,14,21,712,4,4,22,24,30,49,181,381,108,30,19,29,889,4,0,18,18,16,35,158,440,143,37,14,29,899,3,0
LGA20740,0,0,57,0,0,5,0,0,11,12,13,7,0,0,5,56,0,0,0,6,5,0,10,10,3,0,0,0,33,0,0,6,13,18,44,52,24,4,0,0,5,175,0,3,27,17,3,16,6,6,0,0,5,30,116,32,27,249,339,426,934,734,296,31,10,23,132,3236,0,0,10,3,8,12,14,3,0,0,0,8,57,0,0,4,4,6,8,0,6,0,0,0,0,23,0,3,11,6,10,9,19,10,0,0,0,0,68,0,7,28,17,20,38,32,14,0,0,0,12,171,4,3,53,34,29,51,71,33,3,0,0,19,295,3,0,21,35,32,72,129,45,4,0,3,5,349,3,0,9,30,25,42,123,64,10,4,0,13,311,0,0,7,13,15,56,121,74,8,0,3,12,307,3,3,5,17,19,52,129,87,19,0,4,8,339,3,0,3,4,20,35,102,81,21,9,4,7,282,3,0
LGA20830,0,4,98,0,0,5,6,4,9,26,27,4,0,0,0,76,0,0,0,3,0,4,19,21,3,0,8,0,58,0,5,9,12,14,40,71,33,3,0,3,9,190,0,3,17,9,13,14,13,4,0,0,0,19,90,37,41,274,381,355,855,1004,342,36,14,14,119,3479,0,0,0,9,0,6,13,12,6,0,0,12,50,0,0,3,4,0,0,6,6,0,0,0,0,17,3,4,10,3,5,14,13,6,0,0,0,6,69,6,3,36,21,16,16,34,11,4,0,0,12,153,7,4,66,33,26,39,54,23,0,0,0,7,262,6,0,18,39,40,76,114,53,6,0,0,11,357,0,0,18,31,28,43,98,61,6,3,4,12,311,0,0,20,14,24,60,125,78,7,0,3,12,352,4,0,14,16,15,46,141,113,10,5,0,12,365,0,0,11,13,20,44,132,149,6,0,3,10,389,3,4
LGA20910,99,8,456,0,0,4,7,3,7,28,98,212,133,497,18,1012,3,0,4,4,0,4,11,35,103,137,643,23,970,0,0,6,5,3,12,32,67,105,78,243,26,586,9,0,22,16,4,6,11,22,12,4,16,31,153,85,52,492,214,135,258,744,1549,1317,790,2004,265,7914,0,4,11,0,0,8,14,25,19,13,44,26,178,0,0,4,0,0,8,3,7,7,6,6,8,56,12,4,31,10,9,4,13,3,8,3,7,0,118,8,10,71,23,8,13,14,28,15,7,18,15,226,10,12,111,36,8,14,26,38,24,20,15,14,337,10,8,35,20,13,36,43,81,36,19,19,15,332,9,5,20,27,10,14,35,80,50,13,32,11,301,3,4,19,23,19,15,41,93,63,26,42,19,358,4,0,13,10,11,14,69,140,81,45,50,12,446,0,0,6,10,7,18,54,159,116,44,62,14,490,0,0
LGA21010,0,0,21,0,0,0,0,0,0,8,0,0,0,0,0,14,0,0,0,0,0,6,4,0,0,0,0,0,8,0,0,10,11,11,18,15,0,0,0,0,7,69,0,0,11,12,6,8,4,0,0,0,0,13,59,24,27,194,312,210,274,150,39,0,0,3,63,1311,0,0,0,4,0,5,3,0,0,0,0,6,22,0,0,0,0,0,0,0,0,0,0,0,3,4,0,3,4,4,5,5,5,0,0,0,0,0,33,0,0,21,9,7,10,3,0,0,0,0,4,58,0,3,33,33,20,23,13,11,0,0,0,9,141,0,0,11,34,24,18,23,6,0,0,0,7,130,0,0,10,29,13,32,28,9,0,0,0,4,125,5,0,13,14,22,27,24,11,0,0,0,0,121,0,0,6,20,8,31,26,14,0,0,0,4,109,0,0,8,7,11,20,42,16,0,0,0,3,109,0,0
LGA21110,203,16,1341,4,0,10,4,8,16,93,471,476,268,472,34,1857,4,3,9,9,9,5,20,143,253,265,874,13,1602,7,5,17,18,10,27,93,352,244,183,337,65,1361,5,5,23,19,13,14,21,42,34,12,16,74,275,77,69,389,413,426,756,2326,5547,3049,1527,2715,552,17850,6,0,12,8,13,18,52,96,50,30,84,48,420,3,0,4,7,3,9,10,22,21,4,32,11,113,8,8,28,8,16,21,25,45,25,9,33,18,229,4,12,51,19,34,26,44,64,22,15,22,14,334,8,7,101,38,24,29,58,82,36,16,29,30,470,15,5,33,39,49,57,104,124,74,31,33,24,599,4,0,21,26,31,31,137,172,85,30,50,19,606,3,0,21,23,18,40,176,233,97,32,73,30,738,7,3,6,21,29,45,266,420,157,47,117,41,1161,0,7,11,15,17,40,258,550,206,90,91,26,1297,6,3
LGA21180,11,20,679,0,0,8,4,10,25,206,213,44,8,9,13,546,6,3,3,0,3,12,73,95,25,3,10,6,244,10,8,37,55,56,119,508,319,40,6,28,86,1252,5,4,24,26,25,39,87,37,0,0,14,80,337,119,88,632,850,848,1943,6735,3080,351,79,202,674,15592,8,0,22,33,30,58,144,135,21,3,9,90,561,9,0,4,4,10,14,32,29,4,5,4,18,116,11,7,40,31,19,40,75,55,12,3,5,33,329,26,17,92,75,56,67,143,109,13,0,0,44,638,11,14,133,92,37,96,175,162,15,0,4,53,793,7,9,55,78,72,136,284,224,29,0,5,22,928,4,4,44,77,52,109,389,323,25,7,10,61,1106,6,9,37,52,47,158,509,392,50,8,29,68,1369,10,0,35,48,46,128,520,563,58,9,15,60,1485,9,6,25,40,28,120,549,647,73,17,31,65,1610,8,7
LGA21270,0,0,10,0,0,5,5,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,6,3,0,0,0,0,0,0,4,20,5,0,4,3,0,0,0,0,0,0,0,0,17,50,16,119,99,27,13,8,5,0,4,5,24,363,0,0,0,3,0,0,0,0,0,0,0,5,7,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,4,8,5,0,4,5,0,0,0,0,0,0,0,0,11,14,4,11,10,8,0,0,0,0,0,0,3,46,6,0,16,20,3,6,0,0,0,0,0,0,49,3,4,0,3,7,4,0,0,0,0,0,0,29,0,0,3,13,10,3,0,0,0,0,0,7,38,0,0,9,7,3,3,3,0,0,0,0,0,42,0,0,8,6,3,4,0,0,0,0,0,5,27,3,3
LGA21370,0,6,64,3,0,0,3,9,7,9,12,3,0,0,4,59,0,0,0,3,4,9,4,9,6,0,3,0,32,5,4,15,29,24,47,29,21,6,0,0,0,183,3,4,43,21,12,12,7,5,0,0,0,15,122,69,69,495,584,437,594,448,200,38,8,19,138,3091,0,0,11,10,3,3,4,0,4,0,0,15,52,0,0,4,0,0,5,3,0,0,0,0,4,17,4,5,13,18,5,12,5,4,0,0,0,3,75,10,10,57,38,23,15,17,3,4,0,0,3,173,9,14,93,61,40,41,36,6,4,0,0,26,326,7,7,47,100,53,70,39,16,0,0,0,11,352,0,4,30,40,47,59,50,20,3,0,5,13,275,0,0,30,41,44,49,60,21,0,0,3,13,277,3,0,25,40,40,64,76,29,5,0,6,16,302,4,0,18,36,25,52,68,35,6,0,3,12,258,9,3
LGA21450,6,7,313,0,0,3,5,6,9,61,89,26,7,3,3,209,0,0,0,0,0,4,24,42,17,7,0,0,99,0,0,5,8,21,42,177,153,18,4,4,35,473,0,6,11,3,4,24,26,16,0,0,0,32,115,53,29,206,183,225,768,3081,1822,206,57,59,240,6922,0,0,7,5,0,6,34,44,8,0,4,31,142,0,0,0,3,0,0,9,10,5,0,0,3,39,6,0,7,4,4,10,18,23,3,0,0,8,85,7,7,36,13,7,11,44,42,7,0,0,10,180,7,5,38,18,13,38,112,87,10,0,0,13,339,0,5,11,31,23,56,203,152,9,4,8,11,511,3,6,8,19,10,28,213,214,14,4,0,21,532,4,0,11,19,14,32,213,317,28,4,11,26,681,0,0,7,18,23,43,280,416,39,3,9,23,862,5,0,7,11,13,37,243,509,40,4,14,22,913,3,3
LGA21610,21,19,992,0,0,8,11,4,11,150,436,105,23,23,15,785,0,6,3,0,0,0,68,153,60,25,14,4,344,6,4,20,34,25,73,413,590,95,26,26,89,1397,3,5,32,23,16,29,71,46,3,5,3,107,338,109,86,681,586,450,1360,6818,7126,910,189,264,709,19285,9,4,22,5,6,3,95,144,52,9,11,102,465,0,9,11,3,0,6,22,23,8,3,0,9,88,10,4,44,19,8,11,47,75,13,0,3,19,260,12,17,91,39,20,16,106,117,21,0,3,31,467,14,19,184,53,42,57,197,231,27,0,11,45,874,10,15,54,68,33,94,359,411,58,7,9,38,1163,3,10,43,72,34,70,355,654,71,10,15,54,1395,13,4,42,54,50,99,527,877,112,25,24,72,1883,8,3,36,40,30,92,618,1247,146,17,38,66,2341,4,7,27,36,29,72,603,1514,234,27,32,68,2647,6,0
LGA21670,0,0,9,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,9,6,19,11,0,0,0,0,4,54,4,0,9,16,7,3,0,0,0,0,0,16,58,41,21,186,283,199,281,72,10,6,0,8,44,1150,0,0,0,5,5,4,0,0,0,0,0,9,23,0,0,0,0,0,0,0,0,0,0,0,5,13,0,6,8,5,0,6,0,0,0,0,0,0,33,4,3,16,21,21,21,6,4,0,0,0,0,88,4,5,30,32,23,35,8,0,0,0,0,11,143,0,3,22,29,32,48,12,9,0,0,0,6,155,4,0,11,15,13,39,24,6,0,0,0,7,121,5,0,15,9,13,31,30,0,0,0,0,0,109,0,0,8,17,18,40,26,5,0,0,0,3,120,0,3,4,6,8,40,36,0,0,0,0,10,106,0,0
LGA21750,4,3,33,0,0,0,0,9,4,12,6,0,0,0,3,35,0,0,0,0,5,5,6,3,0,0,0,5,24,0,0,3,12,14,27,27,4,0,0,0,7,96,0,3,11,16,5,12,3,3,0,0,4,15,73,45,32,213,294,268,366,305,94,7,0,17,105,1743,3,0,0,5,3,4,4,0,0,0,0,5,31,0,0,8,0,0,0,0,0,0,0,0,4,12,0,0,10,7,3,3,5,4,0,0,0,3,47,0,0,24,15,11,16,9,5,6,0,0,9,100,0,0,43,17,17,19,26,0,0,0,0,11,140,0,0,22,29,25,45,33,16,4,0,0,5,180,0,0,14,13,24,25,32,18,0,0,0,10,139,6,3,16,17,22,35,42,21,11,0,5,9,176,0,0,17,21,19,58,59,25,4,0,0,10,219,0,3,7,7,22,41,47,36,3,5,4,8,174,3,0
LGA21830,0,5,28,0,0,3,0,3,6,9,5,0,0,0,0,24,0,0,0,5,0,3,0,0,0,0,4,0,10,0,0,5,13,9,14,7,4,0,0,0,5,57,3,0,15,9,6,4,0,0,0,0,3,9,45,35,32,205,260,192,199,70,24,9,3,11,90,1132,4,0,9,0,3,6,0,0,0,0,0,9,24,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,7,0,6,3,0,0,0,0,0,0,22,0,0,17,9,9,9,4,0,0,0,0,3,52,3,9,33,14,11,17,4,6,0,0,0,6,93,0,5,16,24,21,28,5,0,0,0,0,0,101,0,5,14,19,13,23,16,0,0,0,0,8,106,4,6,8,17,20,31,18,6,0,0,0,5,121,4,0,12,16,13,30,18,4,0,0,0,9,110,0,0,7,21,16,23,27,5,3,0,0,9,112,3,0
LGA21890,70,25,1174,3,0,11,14,8,19,132,351,328,205,126,14,1211,0,0,5,6,7,3,42,114,145,121,146,13,606,5,5,31,40,35,84,295,393,257,141,103,92,1471,10,6,74,18,20,41,63,48,16,10,10,74,392,200,164,1205,834,763,1937,5431,5308,2354,1017,826,680,20722,14,10,53,28,19,38,78,108,25,11,14,47,433,4,9,20,11,7,10,25,18,8,0,0,4,122,35,33,70,33,21,28,45,35,22,3,3,28,349,29,34,206,72,61,72,161,97,21,8,7,54,832,21,31,361,99,65,69,156,112,40,15,6,52,1024,13,11,94,88,67,143,290,222,50,12,13,40,1037,10,15,53,88,54,132,322,254,71,23,29,35,1067,9,3,64,61,55,147,428,423,94,29,30,40,1374,12,3,34,27,32,146,592,588,133,41,38,50,1706,4,3,26,34,28,124,569,793,235,72,52,35,1991,4,6
LGA22110,0,0,84,4,0,4,8,5,7,20,7,3,0,0,6,57,3,0,4,0,0,4,9,12,0,0,0,0,31,4,0,16,31,35,49,54,27,3,0,0,4,224,0,9,29,36,14,16,14,3,0,0,3,28,151,80,95,455,632,498,830,738,272,10,13,17,153,3794,0,3,5,5,9,3,12,3,0,0,0,12,59,0,0,0,8,0,0,0,4,0,0,0,4,23,5,0,13,18,7,15,11,5,0,0,3,8,81,4,9,42,36,30,46,15,3,4,0,0,13,200,7,13,81,56,39,64,33,15,3,4,0,25,324,6,3,41,69,66,119,93,22,0,0,0,11,428,3,3,21,50,40,86,101,37,3,0,0,20,370,9,6,27,39,26,71,106,39,3,0,0,14,346,0,3,17,36,31,86,100,47,5,0,4,12,349,6,0,15,25,26,63,118,65,5,0,0,19,334,8,0
LGA22170,4,12,542,4,4,3,5,5,15,107,168,79,19,16,10,430,0,0,0,0,6,6,38,50,31,27,9,14,179,5,0,25,31,30,109,332,257,59,17,21,50,924,5,5,50,24,23,34,61,25,3,0,7,83,318,104,95,729,692,726,2026,5183,3194,560,171,177,482,14134,4,0,15,11,18,33,71,61,13,9,0,36,272,0,4,3,4,8,13,16,7,6,0,3,7,73,11,15,38,22,15,34,33,27,4,0,3,9,224,13,21,91,35,30,72,97,76,5,4,5,17,473,13,12,195,68,65,127,214,142,18,3,10,37,906,13,6,60,77,72,206,345,233,41,12,8,26,1108,9,4,41,88,46,116,314,304,54,11,13,35,1041,6,4,39,52,58,151,384,402,67,12,13,45,1230,8,6,33,36,29,134,469,528,121,24,17,28,1430,4,0,25,29,30,85,387,645,136,20,18,34,1409,5,0
LGA22250,0,0,6,0,0,3,0,4,0,0,0,0,0,0,0,11,0,0,0,0,0,8,0,0,0,0,0,0,7,3,0,13,17,7,9,4,0,0,0,0,3,54,0,3,5,4,3,0,0,0,0,0,0,6,32,41,43,186,278,94,62,17,4,4,0,8,46,784,0,0,3,3,0,5,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,5,4,0,0,0,0,0,0,0,14,0,0,7,8,8,4,3,0,0,0,0,0,38,0,6,18,29,14,10,0,0,0,0,0,0,83,0,0,15,41,13,13,3,0,0,0,0,0,89,0,0,7,22,14,12,5,0,0,0,0,3,69,0,4,12,19,21,11,0,0,0,0,0,7,74,0,0,6,19,18,17,5,0,0,0,4,0,73,0,0,5,20,15,20,4,4,0,0,0,8,72,0,4
LGA22310,117,7,1098,0,3,6,9,4,20,92,335,409,275,286,23,1466,0,0,6,6,6,9,23,107,182,187,447,20,987,4,0,14,15,14,44,144,271,212,125,177,55,1062,0,0,13,11,6,29,27,40,23,17,15,73,266,72,70,363,451,389,1700,2943,4786,2928,1396,1733,502,17334,8,0,21,15,5,41,67,132,101,36,56,52,530,0,0,3,6,5,10,17,23,21,7,11,10,108,10,8,17,13,17,27,34,39,28,4,18,12,224,9,10,68,37,32,64,62,58,31,16,16,20,430,7,6,105,56,17,73,101,117,48,12,31,21,605,5,3,37,61,54,140,181,169,80,23,28,18,797,6,4,22,41,27,102,177,207,94,47,33,28,799,3,3,17,32,24,149,254,301,136,65,63,30,1064,4,0,20,16,28,146,379,426,223,86,91,31,1456,3,0,13,25,26,101,370,500,252,89,125,30,1527,4,0
LGA22410,0,4,36,0,0,8,3,0,4,10,3,0,0,0,4,44,0,0,0,0,0,0,4,5,0,0,0,0,11,0,3,11,24,11,18,9,6,5,0,0,8,95,0,3,16,13,8,4,6,4,0,0,0,10,54,41,43,300,426,238,303,180,38,12,7,10,76,1651,0,3,3,4,4,6,6,0,0,0,0,0,26,0,0,5,0,0,0,0,0,0,0,0,0,7,5,4,4,11,5,6,0,0,0,0,0,3,33,4,4,29,25,8,11,4,0,0,0,0,3,88,5,5,49,26,17,15,9,3,0,0,0,7,139,0,5,26,42,35,34,21,5,0,0,0,6,173,4,0,15,28,22,23,23,10,0,0,0,0,131,4,3,18,26,28,26,26,14,3,0,0,8,147,0,0,7,35,26,30,21,16,0,0,0,9,149,0,0,6,22,15,26,31,19,5,0,0,3,134,4,0
LGA22490,0,0,22,0,0,0,0,0,0,0,3,0,0,0,0,12,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,5,0,6,6,13,0,0,0,0,35,0,0,0,3,0,6,0,0,0,0,0,5,11,12,5,45,53,55,80,139,118,11,0,0,27,548,0,0,0,0,0,0,0,0,0,0,0,9,17,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,3,0,0,3,0,0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,3,16,0,0,0,3,0,4,7,0,0,0,0,0,24,0,0,4,9,0,7,15,14,4,0,0,0,59,0,0,4,5,9,4,6,3,0,0,0,0,34,0,0,4,4,4,5,10,6,0,0,0,5,39,0,0,3,0,4,4,13,22,0,0,0,4,56,0,0,0,0,0,6,14,19,8,0,0,7,60,0,0
LGA22620,0,8,276,3,0,12,11,12,37,83,99,14,4,3,8,280,0,0,3,3,3,8,22,32,14,5,0,3,96,8,4,34,54,51,153,213,109,14,4,5,17,663,3,4,53,53,35,48,26,14,0,0,5,50,281,122,114,1011,1350,1169,2893,3196,1025,122,38,45,326,11413,3,3,19,13,9,23,33,20,5,0,4,26,154,6,3,8,10,4,13,8,3,0,0,0,9,58,21,25,39,36,20,36,26,12,3,0,0,8,222,14,27,130,72,53,95,84,24,3,0,0,23,519,13,22,224,124,90,155,122,39,8,0,0,45,836,9,16,96,165,140,308,254,85,7,0,3,31,1119,9,9,40,115,84,234,297,116,11,0,4,37,959,5,3,60,100,88,286,383,170,26,3,0,32,1160,5,3,45,61,95,276,435,221,22,9,4,20,1195,3,0,25,56,69,187,484,271,32,7,8,25,1170,4,4
LGA22670,20,18,631,0,4,8,9,12,30,186,154,39,19,11,17,490,0,0,4,10,0,16,81,104,36,7,13,11,283,6,8,32,45,25,170,465,283,49,16,22,94,1227,5,0,38,30,16,51,68,38,6,5,3,75,338,143,133,883,921,853,2605,6229,3317,516,144,245,678,16670,8,10,37,36,18,79,142,118,21,9,10,67,544,8,6,12,8,8,17,23,28,9,0,0,10,118,17,31,44,27,19,45,56,41,12,4,3,28,326,17,20,155,63,30,70,122,71,16,6,4,35,605,16,34,223,98,58,121,194,119,21,3,11,51,952,5,13,76,111,54,180,267,169,34,7,9,28,953,8,14,59,87,40,168,399,274,54,15,23,45,1185,7,4,55,79,74,213,501,435,66,10,28,48,1520,5,0,33,49,44,217,552,523,80,18,28,54,1595,9,7,29,41,43,147,596,659,118,10,29,66,1748,0,5
LGA22750,13,12,799,0,4,8,12,11,28,147,307,119,30,14,16,714,3,0,9,8,8,14,30,123,89,33,22,20,350,5,6,59,79,56,199,450,412,105,36,30,71,1508,15,13,84,92,48,89,89,33,4,0,7,151,628,227,237,1726,2037,1727,4158,6933,4592,843,224,213,801,23724,9,10,25,39,18,45,89,84,32,8,7,68,436,10,5,20,13,12,7,10,22,14,4,0,12,131,44,40,68,54,32,67,43,56,15,0,3,36,448,42,38,211,132,94,115,172,112,12,4,6,52,1005,51,25,428,214,175,213,257,157,39,3,9,53,1626,18,16,165,295,219,410,614,380,55,14,12,64,2256,16,15,92,163,117,288,581,496,72,14,11,49,1908,14,13,81,140,159,325,712,642,90,16,21,61,2270,12,10,80,106,106,349,826,838,161,18,21,64,2593,3,4,48,72,76,270,792,1011,219,28,23,49,2600,4,9
LGA22830,0,5,171,0,0,3,3,11,20,38,50,11,4,4,7,150,4,0,0,0,7,7,22,30,0,0,0,3,85,0,8,32,60,58,90,105,44,13,0,3,19,433,4,8,51,52,18,23,9,5,0,0,0,48,221,87,114,720,1149,1018,1288,1198,427,49,16,25,242,6343,3,0,14,18,17,21,20,16,3,0,0,22,130,0,0,5,7,5,10,12,3,0,0,0,4,43,7,13,31,35,15,13,17,6,0,0,0,8,140,13,14,86,63,26,51,29,14,0,0,0,14,309,9,15,113,102,77,84,53,20,3,0,0,25,507,8,10,74,116,81,153,110,41,5,0,5,18,620,4,10,40,87,72,142,136,41,8,0,6,16,557,4,7,38,73,96,161,153,56,3,0,6,23,622,3,0,31,54,80,171,180,82,7,6,0,21,645,6,3,27,58,62,151,211,94,21,4,3,18,652,3,3
LGA22910,3,0,13,0,0,0,4,0,3,4,3,0,0,0,3,20,0,0,0,0,0,0,0,5,0,0,3,0,12,0,0,0,3,5,8,19,7,3,0,0,4,45,0,4,3,6,0,10,0,0,0,0,0,6,29,12,20,105,107,121,176,238,105,21,0,20,39,969,0,0,5,0,0,0,0,4,0,0,0,4,22,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,5,4,0,0,0,0,20,0,3,14,10,0,0,7,0,0,0,0,0,40,0,6,33,16,6,6,15,15,0,0,0,6,117,0,0,14,12,11,16,30,6,0,0,0,3,102,0,0,3,7,7,10,23,17,3,0,0,4,81,0,0,7,6,11,25,36,18,0,0,0,4,104,0,0,3,13,9,17,34,19,4,0,6,3,103,0,0,0,4,12,10,33,23,3,4,0,3,89,0,0
LGA22980,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,5,9,0,0,0,0,0,0,0,0,18,0,0,9,4,0,0,0,0,0,0,0,0,18,30,18,123,118,31,10,3,0,0,0,0,16,359,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,3,0,0,3,0,0,0,0,0,0,11,0,0,8,3,7,0,0,0,0,0,0,0,25,8,5,10,10,0,0,0,0,0,0,0,0,35,3,0,4,21,5,0,0,0,0,0,0,0,45,0,4,5,12,4,0,0,0,0,0,0,5,28,0,4,3,9,9,7,0,0,0,0,0,5,31,0,0,0,13,3,9,0,0,0,0,0,0,32,0,0,9,9,6,3,0,0,0,0,0,4,36,0,7
LGA23110,20,6,538,0,0,4,7,6,14,110,167,199,86,76,11,682,0,0,3,0,0,0,35,84,105,87,94,8,426,0,4,15,13,16,44,176,159,81,46,42,47,636,0,3,28,13,6,21,21,21,9,0,7,46,190,46,82,450,407,315,922,2866,2161,1042,431,389,333,9446,0,4,13,6,7,12,45,37,16,7,8,32,188,6,0,3,0,3,0,11,14,0,0,0,5,46,12,20,19,7,9,11,26,16,3,5,0,8,130,9,19,79,47,22,23,61,34,4,5,5,23,325,8,8,110,56,31,36,77,67,14,4,3,28,447,5,4,25,33,32,60,155,96,24,5,11,18,465,3,7,22,27,21,70,158,115,34,6,15,15,489,4,0,20,33,32,52,203,176,47,12,13,29,610,9,0,22,19,15,40,261,249,71,20,16,19,739,0,0,9,9,16,35,284,297,83,36,27,30,826,0,5
LGA23190,0,4,39,0,0,0,4,8,3,9,9,0,0,0,0,36,0,0,0,5,0,5,6,6,0,3,0,0,22,4,6,3,16,14,20,21,8,0,0,0,3,89,0,7,9,15,4,5,3,0,0,0,0,11,74,25,74,222,468,238,319,280,134,16,0,8,94,1901,0,0,7,6,3,5,3,0,0,0,0,4,33,0,0,0,0,5,5,0,0,0,0,0,0,13,7,0,12,8,3,3,10,0,0,0,0,3,53,6,3,17,26,17,18,6,0,0,0,0,5,101,0,9,49,50,34,22,13,8,3,0,0,10,204,0,3,21,38,38,45,35,10,0,0,0,5,211,4,0,18,28,26,35,27,7,0,0,0,3,148,3,3,23,30,25,38,45,11,3,0,0,13,186,3,4,12,25,27,40,39,15,3,0,0,15,182,3,0,6,31,35,45,43,18,0,0,0,0,183,0,0
LGA23270,14,13,563,6,0,6,6,4,17,168,221,33,3,10,13,486,0,0,0,0,5,3,42,91,31,5,6,4,195,3,0,34,40,27,68,420,313,34,12,18,54,1021,9,5,32,19,11,21,70,53,4,0,6,68,298,107,84,637,537,445,1106,6605,3833,353,72,228,529,14527,7,9,27,21,8,23,110,187,28,3,7,78,503,3,0,8,5,0,3,20,36,6,0,5,19,110,17,24,35,17,12,15,65,79,13,0,7,25,319,8,13,101,46,24,37,129,128,18,0,4,33,537,11,13,148,74,38,60,177,269,23,0,17,45,879,3,7,63,64,35,78,332,381,45,5,8,33,1057,11,8,40,87,39,64,398,654,53,8,16,54,1432,6,6,36,46,39,95,469,779,72,10,25,61,1641,9,0,36,40,36,92,457,956,90,9,25,60,1813,6,3,26,35,22,64,531,1006,133,17,32,55,1944,4,3
LGA23350,0,3,38,0,0,4,0,0,6,5,11,0,0,0,4,31,0,0,3,4,0,5,0,0,0,0,0,0,13,0,0,4,12,3,13,8,3,0,0,5,4,61,0,0,8,9,3,4,4,0,0,0,0,0,29,22,15,142,175,128,192,187,81,9,3,11,44,1014,0,0,6,0,3,3,0,0,0,0,0,0,11,0,0,0,0,0,3,3,0,0,0,0,0,8,5,0,6,0,0,0,0,0,0,0,0,0,17,0,0,16,6,4,9,7,4,0,0,0,7,46,0,0,15,20,14,9,3,0,4,0,0,9,84,0,0,10,30,11,18,14,8,0,0,0,4,92,0,0,3,7,9,11,15,8,0,0,0,3,72,0,3,6,7,11,5,22,9,0,0,0,0,67,3,3,6,6,19,23,24,11,0,0,4,0,96,0,0,5,4,13,15,32,20,5,0,0,0,90,0,4
LGA23430,54,15,853,4,0,4,8,0,11,98,246,234,118,90,9,831,0,0,6,0,0,5,24,84,128,108,98,11,447,4,3,20,23,18,31,168,281,161,70,46,56,875,4,6,30,17,11,12,46,43,17,6,3,66,251,80,80,591,504,385,1161,3274,4325,1863,698,542,491,13991,14,0,28,17,6,25,37,94,38,15,13,50,336,3,5,10,5,0,5,12,22,15,0,0,13,94,15,13,30,16,3,13,16,25,20,8,3,14,181,10,20,101,45,19,24,62,75,30,4,3,38,427,7,17,181,74,29,49,109,101,24,10,11,46,662,4,9,64,83,48,87,203,168,66,17,11,26,786,4,3,39,49,26,65,171,237,78,27,12,19,729,3,3,26,19,36,85,267,344,101,21,28,24,963,8,3,12,29,14,78,309,486,166,51,37,41,1220,8,0,13,14,20,44,252,530,210,53,34,38,1222,0,0
LGA23670,13,9,640,3,0,3,7,3,7,52,218,124,38,12,7,479,0,0,0,0,4,0,7,77,87,33,13,3,229,0,3,16,18,13,14,130,288,101,18,20,44,676,9,0,26,11,12,10,18,41,9,0,0,67,197,72,83,529,345,268,525,2485,4237,1047,203,161,400,10354,6,0,21,12,10,8,21,56,20,5,10,37,210,0,3,6,0,0,0,4,19,12,0,0,9,54,13,10,18,5,12,7,15,26,4,0,0,12,135,8,12,81,20,18,11,30,61,13,0,5,24,290,11,9,141,32,21,38,56,93,20,0,5,20,463,0,5,45,40,26,57,120,163,36,5,9,15,527,5,11,33,36,19,41,147,233,67,8,7,27,637,6,3,20,28,28,42,167,375,81,16,7,23,797,9,3,20,35,22,57,209,514,126,19,16,30,1061,3,3,17,17,16,33,146,578,201,22,21,25,1089,3,4
LGA23810,0,9,146,3,3,13,13,8,13,30,32,6,0,3,3,134,0,0,4,8,0,7,12,17,3,0,0,4,65,4,3,36,76,43,62,87,27,6,0,0,19,361,3,24,72,66,29,20,15,5,0,0,0,53,280,177,293,1124,1867,1017,1313,935,347,33,5,25,234,7363,5,4,25,38,22,18,13,4,0,0,0,22,163,4,0,6,17,15,9,3,0,0,0,0,9,70,22,30,55,49,29,28,15,4,0,0,0,19,241,21,25,137,123,65,65,34,3,0,0,0,23,499,20,16,230,205,127,84,50,20,3,0,0,27,783,6,13,85,192,166,171,96,27,6,4,6,15,784,13,6,65,138,117,202,119,32,3,0,0,26,722,8,13,59,136,137,186,139,53,8,3,4,23,765,7,8,31,83,112,195,162,46,9,0,0,21,673,0,5,31,61,77,182,217,79,15,0,0,17,688,7,6
LGA23940,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,15,10,3,0,0,0,0,0,0,6,34,0,4,0,4,0,0,0,0,0,0,0,0,16,16,49,93,118,42,24,12,0,4,0,3,23,388,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,10,0,3,12,9,0,0,0,0,0,0,0,0,23,4,8,8,6,4,0,0,0,0,0,0,8,41,0,0,11,9,4,0,0,0,0,0,0,0,32,0,4,6,10,3,6,0,3,0,0,0,0,34,0,3,11,7,3,9,3,0,0,0,0,6,48,0,0,0,13,6,9,4,0,0,0,0,3,37,0,0,7,3,3,6,0,3,0,0,0,0,26,0,0
LGA24130,8,3,103,0,0,0,0,0,5,14,36,27,9,4,5,109,0,0,0,0,0,0,5,31,19,7,10,0,79,0,0,3,10,5,17,46,42,17,5,4,6,151,0,0,5,0,7,0,6,9,0,0,0,14,38,37,46,116,112,134,235,598,597,174,51,44,98,2243,0,0,3,6,0,4,9,11,6,0,3,10,48,0,0,0,7,0,0,0,3,0,0,0,0,16,0,6,10,0,5,0,0,8,0,0,0,0,33,4,3,11,10,5,5,8,14,0,0,0,3,63,0,4,30,10,10,17,20,22,13,0,4,13,138,0,4,10,17,10,19,48,44,6,4,4,5,169,0,0,12,16,6,18,31,39,15,6,3,3,141,5,4,12,6,11,15,32,56,20,6,3,9,169,4,0,9,13,8,14,41,69,24,3,8,9,197,0,0,5,8,4,7,23,71,27,13,3,8,176,4,0
LGA24210,38,13,460,0,0,0,6,3,0,20,173,200,121,70,18,614,0,0,5,0,0,3,13,76,129,97,95,8,432,3,0,7,12,0,4,48,169,169,79,53,32,573,0,0,8,0,0,5,9,33,21,4,14,39,136,20,12,133,159,76,183,750,2626,1696,715,466,337,7180,3,0,3,3,4,4,21,85,81,31,36,48,310,0,0,0,5,0,0,5,15,18,3,3,9,64,0,0,3,6,6,3,5,25,17,0,12,10,79,0,4,11,7,3,10,9,47,31,14,7,9,153,0,0,27,15,12,12,19,69,51,9,9,22,248,4,0,22,19,6,14,46,110,71,15,13,18,337,0,0,9,16,4,22,49,153,68,32,23,19,395,0,4,10,12,7,17,66,199,107,37,25,29,505,3,3,0,12,6,11,64,273,135,75,41,29,652,0,0,3,7,4,5,47,273,183,71,43,30,672,3,0
LGA24250,0,0,16,0,0,0,0,0,0,4,0,0,0,0,5,18,0,0,0,0,0,3,0,0,0,0,0,0,10,4,0,0,6,0,0,10,6,0,0,0,0,39,0,0,4,3,3,4,6,0,0,0,0,3,18,10,7,59,70,65,75,166,52,3,8,10,37,569,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,13,0,0,10,0,0,3,0,0,0,0,0,6,14,0,0,14,5,3,5,8,0,0,0,0,0,35,0,3,4,3,3,10,15,5,0,0,0,0,58,0,0,6,9,0,7,11,6,0,0,0,0,45,0,0,4,5,6,6,13,16,0,0,0,0,48,0,0,0,7,6,8,13,26,0,0,0,8,65,3,0,0,7,3,8,10,18,3,0,0,4,52,0,0
LGA24330,24,10,785,0,0,13,6,3,19,95,265,252,127,66,21,860,0,0,5,0,5,4,36,100,141,70,65,12,433,5,7,23,38,30,55,183,271,125,56,37,45,872,8,0,43,16,23,23,41,25,10,0,8,49,265,133,111,817,693,733,1383,3220,3614,1484,496,375,467,13526,12,9,37,29,16,25,41,36,21,4,5,30,271,4,8,15,7,3,8,4,21,10,0,0,13,82,25,23,53,39,11,21,32,14,8,0,4,19,244,29,41,145,51,41,61,62,50,16,0,7,22,527,9,17,240,62,45,61,74,66,21,3,7,20,619,5,11,55,65,54,103,160,99,18,3,15,22,606,3,8,40,74,35,103,177,145,49,16,16,28,685,9,7,43,48,51,125,286,202,78,19,14,29,917,0,3,32,43,43,112,341,332,117,20,20,27,1090,4,5,16,29,28,103,348,430,137,42,26,25,1208,3,3
LGA24410,11,3,473,0,0,0,6,0,10,57,202,121,26,16,11,451,0,0,0,0,0,0,8,57,46,30,11,6,164,0,7,7,19,7,22,131,206,71,25,13,23,544,0,8,17,14,12,6,37,20,3,0,4,57,174,71,60,436,374,235,566,3044,3200,800,168,125,326,9403,7,3,8,11,3,8,45,48,30,9,3,37,214,0,6,6,4,0,7,3,13,12,0,0,11,55,8,9,16,14,9,4,19,26,4,5,5,12,130,9,8,76,20,12,18,54,61,11,0,0,18,295,0,5,116,39,24,27,79,84,21,3,7,30,435,3,8,41,69,38,41,141,172,29,4,4,17,575,4,3,20,50,17,29,183,195,48,15,6,22,580,4,3,23,32,19,44,205,322,61,13,13,24,758,3,0,14,19,15,33,224,487,98,17,22,22,956,5,5,18,16,12,33,201,541,122,18,19,18,997,0,4
LGA24600,288,22,1817,8,0,16,18,7,27,92,558,880,594,737,51,2995,0,0,6,7,7,10,24,186,474,419,735,35,1903,8,5,37,48,26,55,148,418,595,415,561,89,2406,17,8,73,30,21,71,175,267,210,123,202,160,1353,191,161,1129,894,570,1624,4178,9293,8784,5337,4927,1278,38383,13,12,37,54,65,170,632,1011,468,144,140,162,2912,4,8,16,22,13,37,126,145,70,19,32,20,507,19,63,78,59,47,101,198,234,99,35,33,30,993,15,49,194,97,87,163,329,266,99,47,28,56,1422,17,24,254,126,81,129,301,329,134,30,34,76,1537,13,8,60,127,121,255,509,522,182,57,50,63,1962,8,10,59,110,96,227,588,634,229,62,74,58,2160,9,13,67,94,102,256,921,844,303,77,95,62,2836,13,7,41,79,103,289,1255,1408,466,130,150,81,4014,3,4,39,58,77,195,1139,1628,557,175,176,105,4155,0,3
LGA24650,9,14,421,0,5,3,4,3,24,99,158,35,10,6,8,348,0,0,0,0,0,9,31,54,30,9,6,5,137,0,0,7,7,21,94,189,157,33,6,12,37,559,9,8,11,14,6,32,41,27,4,0,0,37,182,40,47,185,295,334,1754,3224,2120,329,55,76,304,8767,0,3,6,5,8,17,61,81,14,0,8,34,242,4,4,4,7,5,4,8,10,4,0,0,7,53,3,4,9,14,0,13,42,29,6,5,0,6,139,3,0,29,24,15,29,85,60,11,0,5,8,276,9,6,51,24,20,52,164,131,14,0,3,22,494,4,4,9,44,16,92,277,217,21,5,4,25,715,0,5,9,26,24,47,371,301,33,10,5,29,856,7,4,12,31,24,88,396,369,48,4,18,35,1029,5,0,13,11,11,77,432,498,47,7,5,32,1138,4,0,4,19,24,62,440,518,85,17,13,27,1211,6,5
LGA24780,0,7,121,7,4,8,7,7,18,32,26,6,5,0,5,130,0,0,0,3,3,9,15,7,0,0,3,4,51,5,5,10,50,40,62,103,47,8,0,5,13,348,16,12,40,47,22,26,22,0,5,0,0,41,228,126,134,700,1273,751,1167,1074,305,46,20,45,254,5904,0,4,14,21,11,19,21,6,4,0,0,16,121,6,0,7,0,8,0,3,4,5,0,6,0,37,10,18,31,19,13,19,12,11,0,0,0,11,139,3,10,72,57,57,48,40,9,0,0,0,8,314,14,14,115,91,66,83,61,22,3,0,0,21,481,6,18,63,111,84,134,90,36,7,0,0,17,565,12,6,42,83,68,121,123,50,9,0,0,19,537,12,3,43,76,75,130,145,43,4,0,5,29,567,10,4,28,55,69,132,182,90,9,0,4,24,606,5,3,24,48,50,101,214,88,13,3,5,19,564,18,6
LGA24850,0,5,108,0,0,0,0,0,20,38,20,4,0,4,5,87,0,0,0,0,6,3,12,9,4,0,4,0,46,3,0,0,15,13,46,71,32,6,0,4,11,195,0,0,13,6,7,15,8,4,0,0,0,20,82,33,32,197,284,251,654,1013,326,43,4,22,121,2982,0,0,9,0,0,6,13,24,0,0,5,12,67,0,4,3,0,0,0,3,9,0,0,0,4,25,0,0,12,4,6,5,11,4,0,0,0,5,43,9,0,29,15,9,5,22,12,0,0,0,8,113,6,7,50,17,21,32,36,16,7,0,0,9,203,3,3,24,27,24,40,67,33,4,0,3,9,240,0,0,12,17,20,38,75,59,8,3,0,9,245,3,6,15,15,21,39,90,75,8,0,3,7,278,3,6,5,13,19,52,109,103,5,5,4,8,322,0,0,9,6,9,46,85,119,9,0,0,9,296,0,0
LGA24900,0,0,58,0,0,3,0,6,10,9,4,3,0,0,0,30,0,0,0,6,0,0,5,5,0,0,0,0,20,4,0,8,32,13,33,23,14,0,0,0,7,131,3,5,28,12,20,8,3,6,0,0,0,18,106,44,35,369,533,352,444,336,131,9,3,18,119,2391,0,3,4,9,8,7,3,4,0,0,0,7,50,0,0,3,0,0,0,0,0,0,0,0,0,6,0,4,11,9,3,15,3,0,0,0,0,0,45,4,4,35,31,14,16,3,0,0,0,0,8,112,10,3,67,48,26,30,17,5,0,0,0,12,217,0,4,45,57,36,52,40,12,0,0,0,4,245,3,4,25,34,35,46,41,20,0,0,0,11,207,4,0,22,42,36,63,48,18,4,0,0,13,245,0,0,11,32,25,54,47,31,0,0,0,3,211,0,0,10,23,30,60,62,31,9,7,5,9,245,0,0
LGA24970,64,22,1192,4,0,12,20,8,16,78,433,402,199,97,27,1291,0,0,8,12,6,14,24,167,242,169,113,18,776,0,0,22,32,18,30,141,429,277,140,98,67,1251,7,5,23,11,7,18,25,44,27,16,19,72,273,97,78,761,701,343,740,2613,6251,3460,1436,930,644,18053,9,0,27,31,26,42,62,198,128,65,65,82,739,3,0,16,17,0,10,17,40,29,15,9,12,167,17,19,24,26,18,14,24,69,43,11,23,20,296,14,17,107,44,28,25,41,97,34,12,13,28,468,3,7,193,61,59,36,71,137,78,21,22,44,737,11,10,45,60,46,49,110,204,86,42,27,25,707,8,7,33,53,30,47,98,258,126,50,41,31,765,4,3,34,52,27,45,145,358,183,67,46,45,997,4,0,38,39,22,49,204,502,296,100,54,38,1355,3,0,25,24,26,42,181,611,328,108,75,46,1466,8,9
LGA25060,36,11,847,0,0,13,6,3,20,108,314,289,128,88,24,1000,0,0,4,3,4,3,30,110,164,117,123,9,568,5,6,26,30,26,42,162,277,173,88,45,53,931,16,6,41,20,5,7,34,37,7,9,10,62,268,165,150,896,603,366,1218,3080,4102,1725,652,501,450,13904,6,3,26,20,9,15,44,56,22,11,11,47,287,4,6,15,5,4,4,14,15,7,3,3,3,87,33,32,60,32,13,16,30,26,18,7,3,23,287,14,41,138,35,30,45,82,64,18,0,7,26,504,17,20,237,77,48,49,82,67,20,4,3,21,659,8,11,55,54,35,89,150,122,35,11,8,26,602,7,13,32,58,35,69,166,157,48,14,12,26,647,5,7,49,43,47,121,247,265,66,24,11,27,909,4,0,31,39,32,106,371,414,119,40,29,40,1222,4,0,19,18,25,84,347,498,142,48,33,29,1238,5,3
LGA25150,0,0,84,0,0,0,0,0,10,20,28,4,0,0,0,69,0,0,0,0,0,0,12,7,0,0,0,0,30,0,0,6,8,9,19,37,14,0,0,0,7,94,0,4,11,8,3,12,8,0,0,0,0,12,52,26,27,168,170,209,386,656,209,14,9,18,76,1962,0,0,4,0,0,3,8,7,0,0,0,13,41,0,0,4,6,0,0,0,0,0,0,0,6,13,0,5,9,4,3,8,7,4,0,0,0,0,38,3,8,26,11,14,5,22,3,0,0,0,6,91,6,4,36,18,7,25,26,17,0,0,0,9,154,0,0,12,27,11,55,61,21,4,0,0,0,191,0,0,6,13,7,19,56,51,0,0,0,7,162,0,0,10,12,13,28,51,46,4,0,0,8,178,0,0,3,11,8,26,60,64,4,0,0,11,185,0,0,3,0,5,15,68,86,5,0,0,5,192,0,0
LGA25250,88,28,1608,5,0,9,9,7,26,162,509,443,242,117,26,1561,4,0,0,13,4,4,37,159,182,153,163,19,742,7,3,31,37,39,89,341,510,352,204,174,100,1889,8,7,49,20,20,40,63,53,22,5,13,74,373,135,129,874,705,586,1754,5454,7088,3113,1293,1028,672,22825,11,7,32,11,20,40,81,100,44,13,19,55,420,0,4,3,6,4,8,15,24,13,3,3,21,108,14,26,69,11,16,20,48,66,13,10,6,19,316,16,24,149,65,26,65,138,113,31,3,10,31,681,16,24,230,71,52,61,136,138,29,9,6,41,809,5,13,70,76,49,134,255,258,53,17,17,31,988,7,9,44,53,41,85,302,375,91,34,35,42,1105,3,3,43,46,51,129,403,488,123,26,39,42,1402,4,4,29,36,31,139,559,749,215,71,52,48,1928,0,3,21,25,25,95,519,936,285,89,75,45,2124,4,5
LGA25340,25,13,461,0,0,3,0,8,22,48,96,98,39,53,11,383,3,0,0,0,10,6,23,46,66,41,95,11,296,4,7,26,25,26,68,202,216,88,38,33,34,762,5,0,37,32,21,45,57,31,3,4,4,71,310,88,67,617,580,536,1528,3469,2735,925,296,363,424,11625,0,0,14,4,7,17,44,33,21,12,17,34,197,4,0,11,5,0,0,11,7,4,0,5,5,54,4,9,23,11,5,17,25,25,13,3,5,15,160,12,17,81,19,17,28,60,64,8,10,8,31,346,9,13,171,52,34,62,154,105,41,5,15,34,701,6,5,50,69,43,149,292,238,53,14,14,31,965,3,4,22,44,34,65,247,279,79,20,17,29,845,3,4,38,43,29,77,230,309,83,22,23,23,882,5,0,29,32,28,66,269,405,140,35,36,33,1081,4,3,16,17,17,49,223,444,160,38,45,37,1050,8,3
LGA25430,0,0,28,0,0,0,0,3,0,8,9,0,0,5,0,28,0,0,0,0,0,0,0,3,0,0,0,0,14,0,0,0,5,7,11,31,10,6,0,5,0,74,0,3,14,9,3,7,8,0,0,0,0,6,45,25,7,146,133,119,233,376,121,16,7,13,50,1254,0,0,3,0,3,0,7,6,0,0,0,0,19,0,0,0,0,0,0,0,6,0,0,0,0,5,0,3,5,4,0,0,3,4,0,0,0,0,28,0,4,21,3,4,3,12,6,0,0,0,5,64,3,6,40,17,12,21,22,11,0,0,0,7,142,3,0,9,22,10,18,24,16,0,0,0,3,113,4,0,10,10,15,13,48,14,0,0,3,3,116,0,0,0,6,7,31,49,20,6,0,0,3,128,0,0,6,7,11,16,31,25,9,0,5,12,111,0,0,3,6,0,12,39,35,3,0,5,0,102,0,0
LGA25490,0,0,28,0,0,0,3,0,4,5,5,0,0,0,3,27,0,0,0,0,0,0,3,5,0,0,0,4,20,0,0,3,7,12,13,11,3,0,0,0,5,57,0,0,9,9,0,4,4,0,0,0,0,5,37,38,23,140,180,114,171,148,90,13,3,12,68,989,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,3,16,5,0,10,7,4,3,8,5,0,0,0,5,34,0,4,25,15,7,12,8,3,0,0,0,5,74,0,0,6,10,7,17,9,6,0,0,0,0,68,0,0,7,16,11,18,8,12,0,0,0,8,79,9,0,6,14,10,14,20,16,0,0,0,7,93,4,4,10,5,11,8,16,10,0,0,0,5,78,0,4,10,10,10,18,22,16,0,0,0,11,93,6,0
LGA25620,0,0,15,0,0,0,0,0,5,0,6,0,0,0,0,16,0,0,0,0,0,0,0,3,0,0,0,0,5,0,0,3,5,4,12,11,0,6,0,0,0,45,0,0,9,6,4,5,5,0,0,0,0,4,25,22,14,79,126,112,180,133,53,10,3,7,40,779,0,0,0,0,4,8,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,5,3,0,0,0,0,0,0,0,13,0,0,11,7,3,11,4,3,0,0,0,3,43,0,3,15,12,6,11,11,3,0,0,0,3,74,0,0,9,10,13,27,16,9,0,0,0,5,90,0,0,4,8,6,16,10,3,0,0,5,0,62,0,0,0,6,6,16,13,6,0,0,0,4,56,0,0,3,9,9,16,35,16,0,0,0,6,94,0,0,0,0,14,13,25,14,0,0,0,3,69,3,4
LGA25710,5,5,106,0,0,0,3,0,4,6,40,50,21,17,5,142,0,0,0,0,0,5,3,8,34,21,21,0,86,0,0,0,5,0,0,25,46,29,16,9,7,141,0,0,3,0,0,3,3,0,0,0,0,15,32,14,14,99,51,48,71,340,563,297,116,79,88,1789,0,0,0,0,0,5,3,17,3,3,0,4,41,0,0,5,0,0,0,0,0,0,0,0,0,6,0,3,5,0,0,0,4,9,0,0,0,0,24,0,0,5,4,0,6,3,8,0,4,0,3,39,0,0,22,7,4,8,11,16,6,0,0,4,86,0,0,4,6,8,5,12,24,9,0,0,0,83,0,0,0,3,4,9,19,34,9,5,0,6,89,0,0,5,5,8,4,18,26,33,3,0,3,110,0,0,5,6,3,6,24,39,15,3,6,9,120,0,0,0,5,0,7,17,47,28,16,11,11,139,0,0
LGA25810,0,5,21,0,0,0,4,0,4,0,0,0,0,0,6,21,0,0,0,0,0,3,0,0,0,0,0,4,13,3,0,7,13,10,13,4,0,0,0,0,0,53,0,0,7,10,3,0,0,0,0,0,0,9,35,24,27,230,323,146,125,41,13,3,0,18,62,1015,0,0,3,5,4,3,0,0,0,0,0,4,19,0,0,0,3,0,0,0,0,0,0,0,0,5,4,0,0,0,0,3,4,0,0,0,0,0,16,0,3,11,11,4,9,3,0,0,0,0,3,48,0,4,32,34,10,8,0,0,0,0,0,7,98,0,5,18,35,18,26,11,0,0,0,0,5,117,0,0,14,32,15,21,13,0,0,0,0,0,91,4,0,12,30,17,22,13,0,0,0,0,7,102,0,0,6,21,22,14,11,4,0,0,0,0,76,0,5,5,22,17,14,18,3,0,0,4,12,95,0,0
LGA25900,211,19,1590,5,0,4,8,8,28,114,551,749,512,614,39,2628,0,0,0,0,3,11,24,121,294,391,876,22,1755,6,0,16,42,21,29,133,376,356,236,366,43,1621,7,10,60,36,22,35,42,73,29,29,52,103,484,143,146,1125,783,529,1445,3707,6447,4162,2326,3027,646,24494,16,11,29,12,11,27,47,87,68,26,34,55,419,3,0,13,4,8,5,14,25,9,8,3,19,120,14,24,65,42,20,42,50,48,18,8,6,30,362,24,35,208,95,63,67,111,86,25,9,21,41,787,17,30,370,83,83,116,109,97,45,18,26,45,1028,3,12,76,80,109,140,230,156,72,23,30,25,949,3,14,66,54,33,116,213,192,69,26,42,36,871,9,12,42,28,55,137,405,351,119,41,58,31,1288,10,7,36,39,47,124,605,571,191,65,84,46,1819,3,0,19,29,25,92,499,701,271,98,132,47,1919,0,8
LGA25990,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,3,5,3,5,0,0,0,0,18,0,0,0,0,0,3,0,0,0,0,0,3,10,19,10,60,68,50,48,26,10,4,4,3,25,334,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,5,0,0,6,0,0,0,0,0,0,10,0,0,3,4,0,0,0,0,0,0,0,0,14,4,0,10,11,8,9,6,0,0,0,0,4,44,0,0,3,14,14,4,3,0,0,0,0,0,40,0,0,4,3,10,3,9,0,0,0,0,0,23,0,0,0,5,0,10,7,0,0,0,0,0,29,4,0,10,6,3,5,4,4,0,0,0,4,37,0,0,6,6,5,4,8,0,0,0,0,0,31,0,0
LGA26080,0,0,12,0,0,0,0,0,0,3,3,5,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,7,4,4,10,21,8,22,64,51,9,3,4,11,207,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,6,0,0,0,0,0,6,0,0,0,4,0,3,8,0,0,0,0,0,17,0,0,6,5,0,0,7,7,0,0,0,0,25,0,0,0,0,0,0,5,6,0,0,0,0,15,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,0,0,6,5,8,0,0,0,3,22,0,0,0,0,0,0,3,7,0,0,0,3,16,0,0
LGA26170,0,0,46,3,0,5,4,0,12,7,6,0,0,0,0,38,0,0,0,5,0,4,0,0,0,0,0,0,19,0,0,8,18,10,21,28,5,0,0,0,3,91,0,0,11,8,11,5,3,0,0,0,6,11,60,55,61,181,282,291,504,294,49,7,3,23,91,1845,0,0,4,0,5,5,6,0,0,0,0,8,32,0,0,0,0,0,0,0,0,0,0,0,0,5,4,6,10,10,6,6,5,0,0,0,0,10,52,3,7,17,3,9,13,8,0,0,0,0,6,72,6,4,41,24,23,36,22,3,0,0,0,11,172,3,0,24,31,32,60,39,9,0,0,0,5,203,0,0,14,16,12,39,49,18,0,0,3,8,161,0,0,13,18,15,47,55,22,0,0,0,11,188,4,0,10,13,26,41,47,24,7,0,0,8,179,3,0,7,16,8,29,62,23,3,0,0,10,169,0,0
LGA26260,0,0,33,0,0,0,0,0,11,13,0,0,0,0,0,28,3,0,0,3,0,0,0,3,0,0,0,0,17,4,5,8,10,15,23,11,0,0,0,0,0,80,4,3,16,3,5,3,0,0,0,0,0,3,45,59,42,252,268,186,249,119,23,9,0,7,52,1265,0,0,3,0,5,3,0,0,4,0,0,0,15,0,0,5,7,0,0,0,0,0,0,0,0,14,0,3,7,3,4,0,3,0,0,0,0,0,27,3,6,22,12,14,10,3,0,0,0,0,4,73,3,5,48,18,8,10,4,0,0,0,0,6,115,3,0,20,36,29,29,16,3,0,0,0,3,147,0,3,26,43,9,23,20,0,0,0,0,0,131,4,0,8,22,16,31,16,5,3,0,0,5,111,4,0,19,23,23,31,23,9,0,0,0,6,135,0,0,9,9,21,26,31,10,0,0,0,15,126,4,3
LGA26350,172,22,1355,0,0,5,8,9,19,108,485,544,429,523,38,2176,0,0,0,3,6,10,38,168,259,354,775,25,1643,8,4,13,29,18,19,126,352,301,228,313,61,1476,4,5,46,16,4,38,44,61,31,18,31,76,358,84,107,782,488,310,1051,3241,5855,3366,2063,2558,589,20507,5,8,17,16,24,35,88,113,50,26,54,39,478,0,3,10,8,4,5,26,24,12,8,19,11,130,18,34,41,21,10,33,28,30,20,8,17,17,275,15,32,109,40,29,50,88,70,32,16,13,25,516,5,9,228,58,35,48,89,87,40,17,20,33,669,0,3,50,69,45,96,193,148,66,24,35,14,741,3,3,25,66,33,79,200,170,80,31,39,30,760,0,0,32,31,38,106,287,247,97,47,51,19,954,0,0,16,21,27,100,483,443,166,66,86,34,1451,3,0,13,19,15,77,453,616,207,67,103,27,1594,3,0
LGA26430,0,4,15,0,0,0,0,0,3,4,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,3,16,8,7,0,0,0,4,36,0,0,7,7,0,3,3,0,0,0,0,5,33,26,13,115,144,108,155,84,35,6,5,7,44,732,0,0,0,3,0,0,5,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,7,5,0,0,0,0,0,0,16,3,0,9,3,3,0,8,9,0,0,0,5,34,8,0,19,15,8,7,16,3,0,0,0,6,85,4,0,4,16,11,16,13,8,0,0,0,6,82,4,6,3,4,5,20,15,16,0,0,0,3,71,0,0,4,11,9,22,23,9,0,0,0,4,73,0,0,10,9,4,23,21,10,0,0,0,3,95,0,0,7,3,6,16,23,9,5,0,0,3,66,0,0
LGA26490,10,3,135,0,0,0,0,0,10,12,36,47,15,6,4,129,0,0,0,0,0,3,3,23,35,14,8,0,86,0,0,5,4,6,4,23,65,52,7,3,0,172,0,0,0,4,0,0,5,5,4,3,0,9,34,17,9,72,89,85,156,355,655,387,84,41,79,2030,0,0,0,3,3,0,0,0,8,9,3,8,29,0,0,0,0,0,0,0,0,4,0,0,0,15,0,3,4,0,5,3,5,3,0,3,3,0,30,0,0,9,4,11,3,11,3,3,4,0,4,51,0,0,13,7,9,10,11,11,13,0,3,4,83,0,0,11,11,11,13,25,29,13,5,0,7,123,5,0,0,11,3,13,24,25,20,9,5,4,115,0,0,5,5,10,11,18,30,25,7,5,8,126,0,0,0,10,10,6,28,38,40,11,6,8,153,0,0,5,6,0,9,26,42,34,17,7,6,156,0,0
LGA26610,0,5,43,3,3,4,5,8,7,4,8,0,0,0,0,31,0,0,7,0,5,8,6,4,0,0,0,0,20,3,0,19,24,22,18,16,6,0,0,0,8,119,4,16,24,26,3,11,4,3,0,0,0,17,116,73,70,340,477,308,367,173,82,4,5,11,98,1997,0,0,9,7,4,5,0,0,0,0,0,8,43,0,0,5,5,4,3,0,0,0,0,0,0,11,6,6,7,12,0,5,0,0,0,0,0,3,44,6,9,26,25,8,10,4,5,0,0,0,5,104,0,9,42,28,14,18,12,3,0,0,0,10,146,0,0,24,39,30,32,14,7,0,0,0,12,166,8,0,23,38,27,42,21,3,0,0,0,6,169,3,8,34,49,24,48,32,12,7,0,0,10,232,0,6,19,35,24,49,33,11,0,0,0,10,192,0,3,13,26,31,40,48,11,0,0,3,12,193,4,4
LGA26670,0,0,12,0,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6,3,4,0,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,6,16,12,84,121,42,55,24,9,0,0,0,15,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,5,0,0,6,5,0,0,0,0,0,0,0,0,8,3,4,4,4,5,3,0,0,0,0,0,0,26,0,4,4,13,3,9,3,0,0,0,0,0,35,0,0,12,10,5,7,7,0,0,0,0,3,43,0,0,5,4,4,6,10,0,0,0,0,5,28,0,0,8,3,5,6,4,4,0,0,0,3,36,0,0,3,3,4,10,9,0,0,0,0,0,31,0,0
LGA26700,0,0,49,0,0,0,0,3,6,8,13,0,0,0,7,39,0,0,0,0,3,0,5,5,6,0,0,0,19,0,0,8,15,11,22,30,11,0,0,0,6,110,4,0,16,27,3,10,5,0,0,0,0,24,92,40,36,334,499,311,528,408,146,13,3,6,96,2429,0,0,8,9,4,8,5,4,0,0,0,8,47,0,0,3,6,0,0,0,0,0,0,0,5,15,7,5,11,10,9,8,3,3,0,0,0,4,57,4,3,38,27,15,14,9,4,0,0,0,3,122,12,6,65,39,31,29,22,8,0,0,0,12,213,0,0,26,62,47,63,37,17,0,0,0,12,266,0,4,13,32,36,50,43,20,0,0,0,0,199,0,9,21,33,27,61,58,27,5,0,3,17,251,0,0,7,26,32,61,68,37,3,0,3,6,243,0,0,6,24,12,59,64,33,3,0,0,10,221,5,0
LGA26730,0,3,116,0,5,12,0,0,7,23,50,11,0,4,0,110,0,0,0,0,0,0,15,21,9,0,0,5,45,0,3,5,19,24,39,61,46,8,0,0,8,208,6,3,16,16,19,25,14,0,0,0,0,21,123,59,52,407,466,448,756,969,496,73,12,16,122,3866,0,3,3,6,10,6,17,3,0,0,0,7,62,0,0,3,3,0,4,5,0,0,0,0,3,19,9,14,18,3,5,14,5,8,3,0,0,8,83,3,8,44,26,20,16,14,8,3,0,0,6,148,8,8,87,29,32,46,40,23,4,0,0,8,284,3,5,43,48,58,96,65,43,0,0,0,8,371,8,0,26,36,30,64,83,39,6,0,0,8,311,0,4,30,46,41,60,92,63,12,4,0,8,365,0,0,25,18,28,66,106,71,13,4,0,11,356,0,0,4,10,21,61,135,87,19,0,3,5,357,6,0
LGA26810,0,6,91,0,3,8,5,8,25,27,34,11,4,0,13,137,0,0,0,0,0,8,20,27,5,0,0,0,65,3,0,11,36,28,47,49,33,3,0,0,24,237,3,4,17,14,6,22,3,0,0,0,0,22,97,79,64,464,631,457,746,580,278,54,10,23,177,3569,0,0,6,9,6,9,21,0,0,0,0,11,72,5,0,0,0,3,3,4,0,0,0,0,0,21,0,12,15,7,18,10,5,3,0,0,0,5,86,7,0,44,41,30,28,16,4,0,0,0,6,172,6,3,75,54,43,58,37,4,0,0,0,14,311,5,0,32,69,64,108,46,17,6,0,3,16,357,3,3,27,56,34,84,73,26,6,0,0,4,311,6,4,27,41,45,86,79,33,6,0,3,16,347,0,3,15,34,42,79,96,47,4,0,0,9,329,5,0,17,25,27,70,85,48,9,0,0,17,295,8,5
LGA26890,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,7,0,6,0,0,0,0,0,0,5,14,5,0,3,0,0,0,0,0,0,0,0,0,7,29,28,71,46,8,3,0,0,0,0,0,22,203,0,5,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,3,5,5,3,6,0,0,0,0,0,0,0,0,0,13,3,4,7,7,0,0,0,0,0,0,0,0,19,0,0,5,9,0,0,0,0,0,0,0,0,18,0,6,11,3,4,0,0,0,0,0,0,0,18,0,4,7,10,0,3,0,0,0,0,0,0,25,0,0,6,6,0,0,0,0,0,0,0,0,18,0,0,7,4,9,0,0,0,0,0,0,3,21,3,0
LGA26980,61,21,963,0,3,16,14,5,8,71,339,280,109,100,18,961,0,0,8,6,5,7,33,124,153,99,110,15,547,11,5,24,40,22,29,136,398,215,77,72,65,1085,7,4,38,14,13,24,14,52,32,11,13,62,291,108,135,757,625,592,850,2584,5628,2444,835,691,595,15836,3,5,24,32,36,48,52,201,143,47,35,77,705,0,3,10,4,6,4,12,55,30,10,6,8,158,17,12,35,27,26,22,27,83,35,5,19,25,328,14,19,120,49,43,33,57,101,35,17,8,28,518,16,12,209,72,43,48,75,142,49,15,22,43,751,11,12,79,93,60,84,136,240,81,24,19,44,888,3,12,35,66,46,44,145,279,120,32,29,44,851,8,7,42,47,35,75,187,373,123,50,40,35,1022,0,7,20,28,43,76,255,538,231,57,54,55,1357,11,3,23,42,27,45,225,689,249,65,55,40,1467,9,8
LGA27070,14,9,738,0,0,8,7,4,14,142,272,58,7,9,16,528,0,0,0,3,0,4,54,122,29,9,3,4,240,3,0,9,33,7,62,402,366,58,11,12,63,1034,6,0,11,13,10,20,92,42,8,4,4,68,273,83,46,307,380,256,969,6809,4927,562,121,209,518,15182,7,0,19,13,9,10,86,159,34,0,10,77,429,0,0,4,6,0,4,16,32,3,3,0,13,79,7,3,13,11,12,16,45,85,10,5,3,22,230,13,13,43,32,15,16,101,155,13,6,6,23,437,3,3,45,35,26,22,159,196,21,4,5,31,567,0,3,19,39,21,53,278,364,43,4,8,36,879,7,5,27,43,27,63,336,492,52,5,9,45,1103,10,4,23,33,26,60,404,691,64,14,26,49,1394,5,3,22,27,19,63,520,970,97,11,22,51,1811,5,0,3,23,22,31,498,1113,134,16,19,48,1911,7,9
LGA27170,0,6,193,0,0,8,6,5,24,36,42,12,0,0,0,133,0,0,0,0,0,6,10,22,0,5,0,4,41,0,0,19,18,39,69,81,72,4,0,0,6,321,0,0,21,21,11,9,17,7,0,0,0,41,140,57,45,494,606,632,1125,1223,655,63,10,25,144,5068,0,3,12,8,0,12,7,4,3,0,0,16,67,3,0,5,4,0,11,0,0,0,0,0,0,30,7,11,22,16,0,8,9,0,0,0,0,5,72,8,13,56,43,22,31,20,9,0,0,0,18,220,12,15,130,40,42,68,34,12,0,4,0,17,378,3,0,42,71,50,115,51,24,3,0,5,14,380,3,0,26,55,48,83,96,62,9,0,0,10,395,3,3,28,47,41,127,137,71,16,0,0,12,480,0,0,19,28,47,131,128,100,8,0,0,16,480,5,0,6,28,35,95,151,129,20,0,3,9,474,3,3
LGA27260,16,17,1121,4,0,4,9,5,43,294,438,113,36,15,5,967,3,0,4,0,0,14,112,202,72,22,14,15,460,4,3,27,26,22,107,538,390,81,22,18,81,1314,4,0,13,13,16,31,71,46,3,0,5,95,302,64,44,332,417,477,2171,8574,5068,756,185,237,556,18897,5,0,22,14,9,12,118,203,32,13,9,58,504,0,0,3,0,4,3,25,33,3,0,6,10,95,5,0,14,12,4,17,53,82,10,0,0,13,220,4,14,51,40,12,36,150,139,10,0,4,17,479,12,7,74,35,27,62,232,234,17,5,10,35,738,5,8,33,51,32,113,415,363,44,8,5,25,1100,0,0,25,55,31,73,505,604,45,6,21,56,1415,9,7,43,47,27,78,665,813,72,15,26,58,1852,10,0,20,26,44,96,782,1173,92,12,30,65,2352,3,0,16,21,16,70,851,1424,135,20,31,57,2660,3,10
LGA27350,228,17,1466,0,5,13,0,11,10,70,302,701,624,534,39,2299,0,0,0,7,3,18,25,95,282,435,876,28,1771,5,9,51,61,26,43,103,218,351,332,505,73,1777,8,12,73,13,21,12,27,36,18,15,17,73,326,202,252,1520,849,535,891,2115,3721,3612,2602,2884,579,19761,10,10,48,29,12,9,29,51,34,19,23,42,307,4,12,20,14,4,6,3,13,12,3,3,4,93,20,73,104,50,16,22,23,22,9,4,3,21,366,26,76,278,89,45,38,51,41,25,8,10,36,726,20,44,442,117,46,41,44,50,29,10,19,36,912,19,17,99,103,50,62,102,74,29,10,28,32,636,3,19,76,117,57,72,146,139,59,18,29,31,764,3,29,62,78,77,85,194,164,94,38,50,33,902,3,12,38,55,35,97,308,339,126,66,62,29,1177,0,0,31,29,20,71,314,472,189,97,82,25,1337,7,7
LGA27450,7,4,286,0,6,4,0,0,7,26,98,53,13,7,12,230,0,0,3,3,0,4,12,32,38,10,8,0,115,4,6,13,10,11,26,126,179,49,16,10,35,476,4,3,16,9,10,17,22,22,5,0,0,60,180,81,65,349,348,383,697,2002,2359,470,100,86,324,7273,3,0,5,8,5,8,27,27,14,0,0,38,133,0,0,0,3,4,4,5,11,0,0,0,3,42,4,6,17,15,7,3,10,16,6,0,0,7,95,9,9,45,26,10,17,26,40,13,0,0,16,207,10,11,70,41,32,38,65,63,19,3,0,28,368,0,7,48,42,50,85,164,141,23,5,8,17,579,3,11,29,38,15,43,125,182,41,4,15,20,519,4,3,24,28,25,53,140,229,53,10,4,27,594,4,5,17,23,34,55,159,286,77,13,13,32,719,4,0,10,21,20,41,133,352,100,12,13,24,735,0,0
LGA27630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,16,0,0,0,0,0,0,0,0,24,0,0,0,5,0,0,0,0,0,0,0,10,14,38,27,105,139,23,8,4,4,0,0,0,30,379,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,5,0,8,10,8,5,0,0,0,0,0,0,3,25,7,3,12,18,4,0,0,0,0,0,0,0,46,5,0,12,19,11,3,0,0,0,0,0,8,56,5,0,3,18,12,6,0,0,0,0,0,0,36,5,0,5,15,11,4,0,0,0,0,0,4,44,0,0,6,17,6,0,0,0,0,0,0,5,41,0,5,9,11,6,0,0,0,0,0,0,9,40,4,0
LGA29399,4,5,13,0,0,0,0,0,0,0,0,0,0,18,3,31,0,0,0,0,0,0,0,0,0,0,55,10,64,0,0,0,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,0,6,0,9,3,5,4,9,3,8,14,3,9,8,131,41,229,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,0,4,0,0,0,0,0,3,0,9,0,0,0,3,0,5,0,0,0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,4,0,8,0,0,0,0,0,0,0,0,0,0,3,5,15,0,0
LGA29499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA29799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA30250,0,0,4,4,0,3,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,50,25,113,42,5,0,0,0,0,0,0,8,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,4,3,0,0,0,0,0,0,0,0,9,0,4,10,4,0,0,0,0,0,0,0,0,16,3,0,4,0,0,0,0,0,0,0,0,0,14,3,0,9,0,0,0,0,0,0,0,0,3,16,0,4,12,0,0,3,0,0,0,0,0,0,23,4,3,17,6,0,0,0,0,0,0,0,0,26,0,3,17,8,0,0,0,0,0,0,0,0,29,0,0
LGA30300,0,4,17,0,0,0,0,0,0,0,6,0,0,0,3,9,0,0,3,0,0,0,0,4,0,0,0,0,6,0,0,0,6,3,3,3,0,0,0,0,6,27,0,0,0,0,5,0,0,0,0,0,0,3,8,33,12,75,76,55,56,59,22,6,0,3,48,437,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,3,6,0,0,4,3,0,0,0,0,0,0,0,0,12,0,3,8,6,0,0,0,0,0,0,0,0,28,5,0,15,9,8,6,3,0,0,0,0,0,41,0,0,7,9,10,8,4,0,0,0,0,0,30,4,0,3,17,7,10,7,0,0,0,0,4,54,0,3,4,3,6,11,6,0,0,0,0,3,36,4,0,6,3,11,10,6,4,0,0,0,5,55,3,0,3,8,9,13,7,0,0,0,0,7,61,7,0
LGA30370,0,10,82,12,11,10,4,0,14,32,22,8,5,6,3,122,0,10,11,9,0,9,14,17,6,0,0,10,82,6,8,8,21,9,12,18,5,3,0,0,12,96,4,3,4,3,6,0,3,3,0,0,0,9,38,88,84,211,171,128,200,266,185,26,3,9,119,1496,3,0,5,3,0,0,4,0,0,0,0,5,27,0,0,4,0,0,0,0,0,0,0,0,0,7,3,6,6,6,0,0,7,4,0,0,0,0,29,7,4,6,7,9,3,0,0,0,0,0,4,48,8,3,38,7,10,10,6,0,0,0,0,6,86,4,0,15,11,11,22,7,5,0,0,0,3,83,0,0,12,26,16,23,5,5,0,0,0,8,96,0,0,9,9,16,13,11,4,0,0,0,11,71,4,0,12,14,20,23,19,15,0,0,0,15,123,7,0,15,6,15,19,21,6,4,0,0,17,115,16,9
LGA30410,0,4,14,3,0,3,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,4,6,4,0,5,3,0,3,0,3,0,0,0,0,27,0,0,5,0,0,3,0,0,0,0,0,0,5,37,15,57,35,27,28,11,5,0,0,0,45,257,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,7,3,3,0,0,0,0,0,0,0,0,0,0,12,0,6,4,5,0,0,0,0,0,0,0,0,14,0,0,3,6,0,4,0,0,0,0,0,0,17,4,0,5,9,5,4,0,0,0,0,0,0,15,6,0,3,4,4,4,0,0,0,0,0,3,23,0,0,3,3,3,0,0,0,0,0,0,8,21,0,6,6,9,6,3,0,0,0,0,0,8,33,9,4
LGA30450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,12,7,3,0,0,0,0,0,0,0,11,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA30760,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,3,0,3,0,0,0,0,0,0,13,0,4,3,0,0,0,0,0,0,0,0,0,5,34,12,60,45,19,14,0,0,0,0,0,9,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,3,0,0,0,0,0,0,0,0,7,0,5,4,10,0,0,0,0,0,0,0,0,18,0,0,3,14,3,0,0,0,0,0,0,0,30,0,0,3,12,0,0,0,0,0,0,0,0,12,5,0,3,5,0,0,0,0,0,0,0,0,17,0,0,0,3,0,0,0,0,0,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,7,11,4,0
LGA30900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,8,7,3,8,0,0,0,0,0,6,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,3,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,4,11,5,0
LGA31000,626,115,9569,15,11,81,82,73,134,511,2835,3387,1846,1655,158,10793,4,0,26,36,34,55,170,824,1409,1252,2122,96,6032,51,31,198,285,202,331,1056,3620,2611,1200,1136,414,11132,48,72,247,153,86,127,205,417,216,91,112,517,2301,1065,1436,6691,5975,3729,7641,20822,51558,26462,10266,8747,3877,148259,54,44,181,165,102,181,367,896,593,252,172,360,3366,31,23,72,39,31,43,103,194,143,38,48,66,829,248,174,344,202,127,143,218,376,188,56,47,164,2275,259,273,1142,554,260,419,591,687,227,82,47,237,4779,190,388,2182,648,339,542,849,966,337,120,88,298,6948,81,91,685,771,540,1035,1733,1873,534,181,101,213,7820,61,55,478,632,366,727,1758,2448,802,212,134,226,7897,60,65,408,554,377,910,2384,3853,1112,316,192,271,10504,42,32,263,437,347,957,2988,5957,1857,477,258,330,13946,34,39,189,298,264,669,2781,7029,2621,663,348,287,15234,39,24
LGA31750,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,15,0,0,0,0,0,4,0,0,6,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,3,0,0,0,0,0,0,0,0,8,0,0
LGA31820,0,12,210,0,0,5,10,8,25,59,49,13,0,0,7,193,0,0,0,8,6,9,27,23,7,0,0,9,82,0,8,16,27,22,117,210,89,6,0,3,34,546,5,7,33,38,42,56,51,13,3,4,0,66,331,109,157,631,1024,1045,2488,3219,963,119,24,65,363,10209,5,7,9,10,17,31,38,14,4,0,0,36,170,5,5,8,4,3,8,15,5,0,0,0,3,58,19,15,37,25,20,22,29,6,0,0,0,15,199,26,22,79,63,73,82,69,16,3,0,4,21,461,17,26,145,115,108,184,164,44,13,4,0,37,846,4,14,57,140,176,297,307,57,7,0,3,33,1095,7,8,39,93,71,254,339,95,19,8,4,25,962,6,13,49,82,91,242,388,108,14,6,7,29,1034,9,4,23,61,80,228,398,154,9,9,10,22,1009,3,6,28,42,56,154,421,176,15,3,8,22,928,10,9
LGA31900,0,4,48,6,3,3,0,0,12,7,8,0,0,0,0,46,8,0,0,0,0,3,4,3,0,0,0,0,25,4,0,6,9,25,23,20,8,0,0,0,7,99,3,0,5,11,13,5,5,0,0,0,0,11,64,63,42,154,302,297,416,251,74,15,9,4,74,1711,0,0,0,4,0,9,0,0,0,0,0,7,32,0,0,0,3,0,3,0,0,0,0,0,0,10,0,6,8,8,0,4,0,0,0,0,0,4,30,3,0,9,20,21,10,3,0,0,0,0,3,79,6,5,21,27,22,17,8,0,0,0,0,11,113,0,5,11,41,39,30,12,0,0,0,0,4,144,0,0,15,27,27,46,14,0,0,0,0,6,139,0,3,9,23,30,41,13,0,0,0,0,4,121,3,4,11,22,34,45,27,9,0,0,0,3,154,4,0,10,24,17,50,25,5,3,0,0,9,144,5,4
LGA31950,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,15,12,4,6,0,0,0,0,0,5,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,6,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,3,0,7,0,0
LGA32080,28,14,824,0,4,9,19,15,48,118,268,160,64,39,13,748,6,0,4,7,7,7,28,114,92,49,49,7,374,10,5,65,109,84,201,392,502,186,47,32,54,1692,20,10,53,78,51,60,69,54,20,5,16,111,544,229,232,1117,1846,1656,3331,5459,5254,1387,364,318,574,21780,10,7,22,31,28,43,53,64,25,5,8,43,353,3,4,8,6,0,9,14,16,3,0,3,5,85,34,22,52,49,30,59,44,35,7,4,5,26,360,29,39,141,95,84,116,88,79,9,0,3,47,728,27,39,231,149,100,232,177,125,20,7,8,51,1164,21,19,98,188,185,366,350,232,48,9,11,38,1559,18,18,64,121,128,257,408,328,78,22,5,58,1497,17,16,58,127,103,325,498,434,103,18,18,57,1779,9,12,60,91,110,312,585,622,128,36,22,49,2050,8,6,28,71,58,253,550,727,210,48,24,46,2030,7,10
LGA32250,0,4,13,5,0,0,3,0,0,0,0,0,0,0,0,16,0,0,3,5,0,0,0,0,0,0,0,6,14,0,0,13,16,7,4,0,0,0,0,0,3,41,3,0,3,4,0,4,0,0,0,0,0,3,22,32,17,55,79,36,28,24,9,5,0,0,30,311,0,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,9,0,0,0,0,0,0,0,3,22,0,7,4,0,0,6,0,0,0,0,0,0,19,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,7,0,0,5,0,0,0,0,0,4,17,0,0,6,3,0,4,3,0,0,0,0,4,29,4,0,3,4,0,5,3,3,0,0,0,5,26,0,0,0,5,0,5,4,4,0,0,0,7,31,3,0
LGA32260,0,0,81,0,3,7,8,3,13,19,17,8,0,0,6,87,0,4,4,3,0,0,11,9,0,0,6,0,37,0,0,10,36,21,61,44,30,3,0,0,9,213,0,0,20,29,17,20,14,3,0,0,11,24,129,45,51,264,600,491,767,678,274,32,12,50,126,3395,0,0,3,5,5,5,8,8,3,0,0,10,53,0,0,0,0,0,6,5,0,0,0,0,3,21,0,3,3,13,3,13,11,0,0,0,0,6,52,3,9,14,47,16,17,5,7,3,0,0,6,137,5,5,30,40,42,58,36,5,0,0,0,11,237,0,3,17,70,66,83,46,14,5,0,0,7,299,8,6,11,46,57,90,89,19,6,0,0,14,329,3,0,14,36,50,124,73,33,3,0,4,16,346,4,3,8,44,37,80,90,25,9,3,5,20,327,0,5,12,30,32,86,100,37,6,0,6,10,333,5,4
LGA32270,0,14,250,153,24,17,12,25,37,55,43,4,0,4,30,414,124,8,6,5,8,8,22,33,11,0,6,21,243,43,14,19,30,29,39,67,39,12,7,4,17,322,4,4,9,8,9,10,7,0,0,0,0,15,66,677,167,335,501,400,519,543,302,67,19,27,260,3817,3,0,0,5,9,5,6,10,0,0,0,8,46,0,0,0,0,0,0,3,0,0,0,0,0,14,6,6,4,4,4,8,0,4,0,0,0,8,36,4,9,23,18,0,5,9,0,0,0,0,12,76,6,19,41,21,18,15,6,8,0,3,0,3,142,3,3,16,26,15,18,21,11,0,0,0,9,132,5,5,16,25,26,31,37,17,5,0,0,16,177,3,3,19,23,20,45,46,17,0,0,0,20,199,15,11,16,29,31,79,62,38,3,0,4,20,303,14,4,23,20,31,38,50,41,3,0,0,22,247,50,14
LGA32310,0,0,38,4,0,7,0,0,11,7,10,0,0,0,9,42,0,0,4,5,0,0,4,0,0,0,0,3,20,0,0,8,11,12,7,15,16,0,0,0,9,87,0,3,4,19,5,4,4,3,0,0,0,10,48,33,36,106,246,171,219,148,79,3,3,3,75,1123,0,0,0,3,0,0,0,0,0,0,0,5,15,0,0,3,3,0,0,0,0,0,0,0,0,12,0,0,12,3,4,4,0,0,0,0,0,3,21,4,0,4,20,7,9,0,0,0,0,0,8,54,0,0,28,16,13,13,4,5,0,0,0,3,85,0,0,4,27,16,29,5,6,0,0,0,3,89,0,0,11,26,21,15,3,0,0,0,3,8,88,3,3,8,21,21,15,12,3,0,0,4,6,92,6,0,10,13,12,23,10,7,0,0,0,9,92,4,5,12,10,12,27,15,10,0,0,0,7,97,0,5
LGA32330,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,19,87,136,29,5,9,0,0,0,0,0,5,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8,0,0,0,0,0,0,0,0,0,24,0,8,11,5,0,0,0,0,0,0,0,0,21,9,6,13,0,0,0,0,0,0,0,0,0,25,0,3,23,11,0,0,0,0,0,0,0,0,36,3,7,29,0,0,0,0,0,0,0,0,0,41,0,3,18,5,0,0,0,0,0,0,0,0,33,6,6,22,9,0,0,0,0,0,0,0,0,34,0,3,22,3,0,0,0,0,0,0,0,0,25,0,0
LGA32450,0,0,22,8,0,4,0,0,3,3,9,7,0,0,3,47,0,0,0,0,4,0,0,5,5,0,0,4,16,3,5,0,6,0,0,6,0,3,0,0,5,35,0,0,3,0,0,4,0,0,0,0,0,3,14,60,30,43,59,32,36,49,56,19,0,6,50,422,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,12,5,4,3,7,0,0,0,0,0,0,0,0,18,4,0,6,11,4,0,0,0,0,0,0,8,34,0,0,5,9,0,0,3,0,0,0,0,4,23,0,0,7,0,0,5,0,0,0,0,0,4,17,0,0,7,0,3,6,3,0,0,0,0,7,32,7,0,3,4,3,0,3,0,0,0,0,5,26,3,3,0,3,3,5,5,3,0,0,0,7,41,9,0
LGA32500,0,3,24,9,0,0,3,0,0,0,3,0,0,0,6,30,3,0,0,0,0,0,0,5,4,0,3,0,11,3,0,9,3,4,8,3,6,0,4,4,0,44,0,0,0,3,0,0,0,5,0,0,4,8,29,78,15,67,73,36,44,72,63,8,4,21,69,551,0,0,0,6,0,0,0,0,0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,16,0,0,6,0,0,4,0,0,0,0,0,4,13,3,0,12,6,5,4,0,0,0,0,0,3,44,4,5,3,5,3,4,3,0,0,0,0,8,36,0,0,3,0,3,0,12,4,0,0,0,4,36,0,0,5,7,3,3,7,3,0,0,3,3,46,3,0,4,4,5,4,7,4,0,0,0,13,48,3,0,11,8,5,3,7,9,0,0,0,7,52,19,6
LGA32600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,9,11,0,0,0,0,0,0,0,4,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0
LGA32750,0,0,8,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,10,6,0,5,10,0,0,0,0,9,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0
LGA32770,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,4,32,32,105,58,8,5,5,0,0,0,0,5,239,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,5,4,0,9,7,0,0,0,0,0,0,0,0,13,3,0,6,0,0,0,0,0,0,0,0,0,16,8,6,0,0,0,0,0,0,0,0,0,0,19,0,0,6,3,0,0,0,0,0,0,0,0,15,3,0,16,10,0,0,0,0,0,0,0,0,31,0,0,6,11,3,3,0,0,0,0,0,0,27,12,8,8,9,0,0,0,0,0,0,0,0,29,3,0
LGA32810,11,7,66,0,0,0,3,0,5,4,11,6,6,22,3,64,0,0,0,0,0,0,3,6,5,3,41,6,65,0,0,8,10,6,19,27,27,9,0,0,10,121,6,0,3,11,4,7,5,9,0,0,25,14,88,30,26,74,149,156,213,351,284,93,27,154,83,1638,0,0,0,0,0,3,4,0,0,0,0,8,19,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,5,0,0,0,0,9,0,0,3,0,23,7,3,3,11,3,6,11,5,0,0,0,3,61,0,0,11,19,7,20,21,6,0,4,0,10,115,0,5,6,22,20,37,30,20,6,0,0,0,151,0,0,4,19,6,21,30,28,6,6,4,12,130,3,5,0,13,5,19,38,32,4,0,0,5,136,4,0,3,7,10,24,38,29,8,7,6,8,143,0,0,4,7,3,16,44,29,11,5,6,3,136,4,9
LGA33100,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,12,15,0,6,6,0,0,0,4,16,72,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,3,5,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0
LGA33200,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,8,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,4,25,9,37,38,14,0,0,0,0,0,0,16,155,0,0,0,4,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,6,6,0,0,0,0,0,0,0,16,0,0,4,3,0,0,0,0,0,0,0,0,11,0,0,0,6,3,0,0,0,0,0,0,0,13,0,0,0,6,3,0,0,0,0,0,0,3,14,0,0,4,7,0,0,0,0,0,0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,4,14,6,0
LGA33220,4,14,205,0,0,3,11,4,17,58,58,18,0,5,0,175,3,0,3,5,10,8,24,38,7,3,14,7,120,9,3,17,35,35,142,232,119,13,0,8,36,653,12,8,38,53,22,62,49,23,5,3,3,89,359,115,110,582,1101,943,2612,3512,1389,178,39,87,393,11076,0,3,14,14,15,24,25,33,7,0,3,23,157,0,0,4,6,6,3,19,11,0,0,4,3,58,16,13,33,26,18,41,22,17,0,0,0,18,199,13,15,69,61,57,90,81,38,8,0,0,44,470,16,16,162,118,119,190,184,75,9,7,6,42,942,6,3,64,109,146,326,286,119,13,3,9,28,1100,4,6,49,90,95,190,389,218,10,3,4,38,1103,10,9,36,66,67,177,360,242,20,10,4,35,1053,11,0,25,48,69,192,420,305,36,14,14,31,1166,0,0,15,31,41,127,335,374,31,8,10,27,1000,4,3
LGA33360,0,6,389,4,8,23,30,48,89,135,87,35,10,7,28,507,4,4,14,6,27,50,65,52,30,5,6,15,272,10,3,13,51,66,125,155,76,16,8,0,18,551,5,9,18,25,15,18,19,0,0,0,3,34,142,119,139,567,1043,1043,1673,1583,763,172,56,53,274,7492,0,7,12,11,14,13,14,10,0,0,0,21,110,7,3,3,7,6,5,0,5,0,0,0,3,33,27,6,30,31,18,11,14,6,3,0,0,3,150,20,16,64,76,40,34,22,14,0,0,0,9,292,19,13,89,121,71,71,78,24,0,0,3,20,511,10,12,55,174,120,111,94,33,0,0,5,19,644,10,4,43,119,86,144,156,43,4,0,4,23,633,4,7,42,91,83,128,175,75,7,4,3,21,642,10,3,22,83,95,138,194,79,9,4,6,25,666,8,3,27,66,60,133,244,118,10,0,12,23,706,9,9
LGA33430,355,45,3750,10,0,23,10,17,36,167,830,1008,556,594,49,3308,3,0,3,13,9,14,44,262,396,298,604,27,1677,12,5,56,74,59,121,552,1918,1180,528,486,191,5193,13,31,105,72,30,91,228,249,137,69,68,288,1375,354,405,1861,1931,1260,3287,12445,27453,13050,4591,3834,1759,72236,11,11,42,49,26,68,113,327,286,144,146,190,1419,11,8,24,10,18,14,34,91,47,38,19,33,347,36,51,92,58,43,58,95,133,110,53,55,60,839,52,72,331,142,85,130,245,417,183,76,54,115,1902,54,105,528,200,166,207,462,700,301,94,74,131,3024,22,19,189,269,198,374,981,1321,583,191,111,121,4382,25,26,130,175,103,239,752,1723,878,265,179,135,4632,17,28,112,143,125,225,863,2255,1206,403,233,160,5769,15,9,84,129,106,196,793,2905,1685,578,367,167,7039,16,12,71,93,74,130,625,2842,2188,735,442,160,7382,19,6
LGA33610,4,6,53,5,0,8,3,0,3,8,8,5,0,0,0,39,0,0,0,4,0,0,7,5,0,0,0,10,22,5,0,9,5,5,9,15,9,0,0,0,4,60,0,3,7,6,9,0,0,0,0,0,0,4,36,45,28,129,212,152,159,219,79,16,0,12,97,1155,0,0,0,0,0,0,3,0,0,0,0,4,14,0,0,0,0,3,0,0,0,0,0,0,0,7,0,3,3,0,3,3,0,0,0,0,0,6,15,0,0,12,9,3,11,0,0,0,0,0,0,45,0,0,14,14,13,13,6,4,0,0,0,4,76,0,0,9,22,17,27,8,4,0,0,0,0,88,0,0,5,16,17,18,19,6,0,0,0,10,94,0,0,6,18,13,18,16,18,0,0,0,6,101,5,4,11,4,5,12,23,16,3,0,0,10,94,3,5,10,10,13,22,32,12,0,0,0,10,115,8,3
LGA33620,0,0,91,0,4,0,0,3,9,28,14,4,0,3,9,67,0,0,0,0,0,8,12,4,0,0,0,0,33,0,5,9,17,16,75,103,27,7,4,0,14,273,3,4,12,23,12,34,23,0,3,0,0,40,152,53,74,299,561,573,1408,1402,273,36,19,16,178,4890,0,0,3,3,5,12,11,7,0,0,0,7,56,0,0,4,6,0,3,4,0,0,0,0,0,18,7,8,10,12,11,18,16,0,0,0,0,6,92,9,10,26,34,21,33,39,13,0,0,0,12,202,8,3,52,67,54,102,64,26,4,0,0,13,396,0,5,27,80,93,168,157,39,4,0,0,21,597,3,0,17,29,42,99,173,58,0,4,5,9,444,0,4,19,27,42,91,180,73,6,4,3,17,463,3,3,14,29,31,80,171,98,11,0,4,11,449,4,0,8,23,23,55,167,101,15,4,11,16,430,4,6
LGA33800,0,0,27,0,4,0,0,0,0,7,0,0,0,0,0,19,0,0,0,0,0,5,7,5,0,0,0,0,22,0,0,4,5,8,12,9,4,5,0,0,3,50,0,0,8,13,0,7,0,0,0,0,0,11,38,37,27,162,234,139,195,106,22,3,5,3,40,961,0,0,3,5,0,5,0,0,0,0,0,0,17,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,4,8,4,4,0,0,0,0,0,8,30,0,7,14,18,7,9,0,0,0,0,0,4,55,3,3,25,38,15,15,0,0,0,0,0,9,110,0,4,9,43,32,30,3,0,0,0,0,9,128,0,0,10,17,16,30,12,0,0,0,0,9,94,0,0,3,29,15,22,12,0,0,0,0,9,95,6,0,11,18,20,24,12,0,0,0,0,5,97,0,0,4,21,18,26,13,0,0,0,0,3,86,8,3
LGA33830,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,0,62,25,68,37,0,0,0,0,0,0,0,15,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,4,0,0,0,0,0,0,0,0,0,29,0,5,5,0,0,0,0,0,0,0,0,0,15,3,11,12,7,0,0,0,0,0,0,0,3,44,7,0,10,0,0,0,0,0,0,0,0,0,10,0,0,4,5,0,0,0,0,0,0,0,0,18,0,0,8,3,0,0,0,0,0,0,0,0,25,3,0,6,5,0,0,0,0,0,0,0,0,16,0,0,4,6,0,0,0,0,0,0,0,0,12,7,5
LGA33960,9,15,1128,3,0,8,10,13,53,194,364,81,23,13,16,768,0,0,4,0,4,17,66,124,43,26,7,5,295,4,4,31,41,48,291,610,543,98,23,8,63,1771,4,7,42,33,29,79,99,45,3,0,0,100,454,120,177,837,1005,933,4451,9476,6483,705,165,105,609,25065,5,3,25,39,18,65,107,69,8,3,6,78,429,3,0,3,10,3,19,31,10,0,0,0,15,95,14,20,34,34,27,66,78,38,0,0,0,22,343,28,27,85,76,48,174,197,68,9,0,0,38,753,28,43,232,115,102,313,358,154,13,3,4,45,1402,12,26,84,129,179,542,713,274,17,7,5,53,2044,3,18,75,119,85,412,895,465,33,3,3,50,2170,7,12,58,79,98,552,1120,659,41,0,5,60,2699,8,12,52,69,57,511,1215,912,76,15,13,59,2988,9,3,34,52,73,394,1248,1261,104,23,9,75,3276,8,0
LGA33980,3,16,367,335,55,37,18,12,34,30,29,5,0,4,35,591,314,43,30,13,12,14,25,34,8,8,0,27,522,117,20,25,22,16,37,27,19,0,0,0,19,302,11,3,0,3,0,5,3,0,0,0,0,15,36,1522,262,310,343,278,345,308,189,49,12,9,247,3868,3,0,0,0,0,0,3,3,0,0,0,6,21,10,0,0,0,4,0,0,0,0,0,0,0,13,0,0,0,0,3,0,0,3,0,0,0,0,11,0,0,7,5,3,3,4,5,0,0,0,7,31,3,5,11,8,5,12,0,5,0,0,0,3,54,9,0,12,19,6,8,9,10,0,0,0,5,66,9,4,8,4,7,18,10,9,0,4,0,6,85,8,10,8,14,17,16,17,15,0,0,0,10,113,19,11,17,15,12,13,24,18,4,0,0,21,153,22,10,5,11,15,13,18,30,5,0,0,22,156,91,23
LGA34420,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,141,33,34,12,5,0,0,0,0,0,0,8,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,0,4,5,0,0,0,0,0,0,0,0,3,16,3,5,8,4,0,0,0,0,0,0,0,0,17,0,5,0,0,0,0,0,0,0,0,0,0,5,6,0,11,0,0,0,0,0,0,0,0,0,13,4,4,8,10,0,0,0,0,0,0,0,0,18,4,0,6,3,0,0,0,0,0,0,0,0,13,7,3,11,3,0,0,0,0,0,0,0,0,25,0,6
LGA34530,0,0,131,0,0,0,4,3,8,6,53,20,6,8,4,107,0,0,0,0,0,6,6,19,17,0,4,0,57,0,0,8,14,9,15,77,101,37,6,0,6,281,0,0,9,8,6,7,14,4,3,0,0,19,83,36,49,176,222,177,399,911,826,197,27,37,105,3158,0,0,0,7,0,3,4,7,4,0,0,9,36,0,0,3,4,0,0,0,6,3,0,0,0,20,0,0,7,9,3,5,10,3,0,0,0,5,48,3,8,14,18,9,12,16,7,0,0,0,4,97,11,11,28,45,16,34,28,17,0,0,0,9,194,0,0,10,34,26,44,70,29,6,0,0,6,228,3,0,11,18,13,33,61,59,9,0,6,12,229,0,4,10,15,21,41,61,72,9,0,3,8,238,0,3,10,7,7,26,86,69,21,6,0,8,242,0,0,3,11,13,21,68,81,20,6,0,17,236,3,3
LGA34570,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,8,3,9,14,3,0,0,0,0,0,0,0,8,37,4,0,10,0,0,0,0,0,0,0,0,0,17,30,11,44,23,3,0,0,3,0,0,0,26,145,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,7,0,0,0,0,0,0,0,0,0,6,0,3,4,0,0,0,0,0,0,0,0,0,7,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,11,0,0,0,0,0,0,0,0,0,11,0,0,5,3,0,0,0,0,0,0,0,0,5,4,3
LGA34580,0,3,98,0,4,0,3,0,10,23,16,3,0,0,0,68,0,0,4,0,0,3,19,11,0,5,0,5,44,0,0,10,9,13,41,84,54,13,0,6,6,231,0,4,6,7,8,18,22,6,0,0,0,14,93,19,27,146,194,227,685,1161,429,51,19,28,96,3092,0,0,8,0,5,9,18,14,0,0,0,6,59,0,0,0,0,0,3,4,0,0,0,5,4,15,0,0,5,0,5,6,8,0,0,0,6,7,45,0,3,19,11,12,12,27,9,3,0,0,5,95,3,3,22,8,14,45,49,11,4,0,0,14,176,0,3,9,24,27,45,77,29,6,0,0,8,241,0,0,12,10,16,40,132,34,3,0,0,12,262,0,3,14,11,16,63,126,37,11,0,0,17,298,0,0,11,12,21,47,143,53,10,0,0,8,304,0,4,11,3,18,46,146,75,8,0,0,13,320,4,0
LGA34590,21,6,1262,6,8,12,19,13,25,147,481,185,49,28,19,979,0,0,8,8,4,11,64,163,66,34,24,6,392,19,9,63,93,43,129,627,872,229,58,43,107,2270,10,13,39,53,26,83,119,112,18,0,3,134,617,262,365,1337,1448,857,2908,9951,11388,1974,460,233,886,32067,8,13,26,36,22,59,170,155,25,3,12,103,635,5,9,20,7,9,9,37,42,6,3,0,29,179,52,36,67,37,21,53,93,82,13,3,5,30,494,54,65,159,101,60,137,228,141,20,5,3,53,1036,49,107,405,145,86,272,476,322,36,7,8,73,1978,28,22,141,187,123,461,911,561,60,6,5,64,2584,17,30,126,169,78,271,1037,889,96,17,19,87,2832,26,24,124,179,102,317,1340,1233,110,31,21,85,3602,22,17,88,106,81,323,1462,1568,198,37,20,95,4012,17,9,66,87,48,207,1379,1897,249,51,32,69,4114,16,12
LGA34710,0,0,24,7,4,0,0,0,3,0,6,0,0,0,4,24,0,0,0,0,0,0,0,0,0,0,0,3,7,0,4,0,0,6,9,8,4,0,0,0,3,35,0,0,0,5,0,3,0,0,0,0,0,9,17,39,29,57,66,64,77,70,35,4,3,9,47,510,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,0,0,0,0,15,0,5,7,6,5,3,0,0,0,0,0,3,31,0,0,3,9,8,0,0,0,0,0,0,5,27,0,0,7,10,3,8,0,0,0,0,0,0,31,0,0,8,0,4,8,4,0,0,0,0,7,42,0,0,9,12,7,8,0,0,0,0,0,3,46,0,0,4,8,3,13,10,5,0,0,4,6,54,8,0
LGA34770,0,6,578,3,12,14,23,16,38,117,231,68,19,13,14,561,6,0,4,4,4,11,62,96,39,13,13,4,254,7,3,30,44,57,161,327,334,71,8,4,47,1096,3,18,31,31,22,40,40,24,0,0,0,72,291,164,167,756,1261,1173,2171,3425,2437,399,88,56,430,12530,7,0,19,10,12,21,25,26,8,0,0,43,175,7,3,9,3,7,3,9,5,5,0,0,6,56,21,11,36,22,14,20,13,21,7,0,0,18,180,27,21,66,74,42,47,44,27,8,0,0,26,394,13,22,145,100,63,80,94,69,19,0,3,33,644,16,13,69,140,107,169,147,108,26,5,5,35,830,10,12,42,85,69,132,181,129,28,4,3,32,725,12,12,34,77,71,143,210,164,34,4,0,32,799,5,11,26,63,82,166,285,240,49,9,4,33,981,9,0,27,50,53,137,257,318,77,15,7,27,975,4,9
LGA34800,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,18,7,6,0,0,0,0,0,4,11,74,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,11,0,0,5,0,0,0,0,0,0,0,0,5,13,0,0
LGA34830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,30,26,3,0,0,0,0,0,0,8,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,9,0,4,4,3,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,5,14,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0
LGA34860,0,0,75,14,3,3,5,8,4,18,7,6,3,0,0,73,0,0,0,3,3,0,6,9,3,3,3,8,37,8,6,9,9,11,13,28,20,4,0,0,8,106,0,3,5,11,3,0,0,0,0,0,0,7,32,90,43,112,211,164,214,283,126,29,11,5,97,1384,0,0,6,7,4,3,0,0,0,0,0,0,19,0,0,0,7,0,0,0,0,0,0,0,0,8,0,0,4,7,3,0,0,0,0,0,0,0,18,0,4,5,23,12,4,0,0,0,0,0,8,49,4,5,19,27,9,4,3,3,0,0,0,8,81,0,0,8,26,13,7,12,0,0,0,0,8,75,4,3,10,17,22,24,4,0,0,0,0,3,95,4,0,5,28,16,13,17,3,0,0,0,19,103,5,4,12,36,17,24,23,6,0,0,0,12,144,12,0,12,28,17,34,26,5,0,0,0,20,151,18,3
LGA34880,0,0,57,0,0,0,0,4,6,13,8,4,5,0,0,44,0,0,6,0,0,0,6,12,0,0,0,4,25,0,3,11,21,11,24,27,22,6,0,0,0,131,10,9,10,20,7,7,7,4,0,0,0,7,84,75,52,224,306,180,295,416,229,38,11,14,77,1913,0,6,6,8,4,0,9,0,0,0,0,9,38,0,0,4,0,0,0,6,5,0,0,0,0,12,0,5,12,11,8,5,6,3,0,0,0,4,51,4,9,13,19,9,20,18,4,0,0,0,11,98,5,0,26,40,21,23,17,8,0,0,0,3,150,0,6,15,26,26,31,37,11,0,0,0,4,155,6,5,13,23,20,27,40,15,5,0,0,10,162,0,7,19,24,22,35,49,16,3,0,0,13,189,0,0,16,22,11,18,66,31,3,0,0,15,195,3,0,14,12,8,37,45,33,11,0,0,8,183,6,0
LGA35010,50,14,2000,4,0,13,14,9,54,177,698,328,126,82,26,1530,0,0,5,9,8,16,66,222,152,100,78,13,674,13,6,44,76,63,232,708,1219,290,91,56,122,2922,17,27,101,64,44,118,155,125,28,6,15,232,926,290,375,1899,1829,1521,4920,13532,16322,3114,852,526,1172,46347,10,12,32,31,18,60,142,166,40,14,17,100,647,10,6,19,12,10,23,41,39,8,8,5,13,181,45,32,100,48,34,59,117,69,16,5,0,41,571,63,78,241,117,80,190,340,222,35,6,0,72,1432,59,92,567,222,162,391,638,365,50,4,11,98,2664,28,35,190,235,223,725,1387,768,102,12,14,83,3809,23,32,128,205,135,351,1313,1268,144,31,24,92,3741,14,23,110,158,150,375,1511,1736,227,43,27,101,4480,8,13,70,118,114,375,1667,2243,352,48,26,105,5139,10,6,76,102,81,292,1421,2624,475,97,46,100,5320,19,6
LGA35250,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,4,7,4,11,0,0,0,4,0,0,0,0,0,26,0,4,5,4,0,0,0,0,0,0,0,4,16,53,24,85,34,3,11,3,0,0,0,3,16,237,4,0,9,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,3,8,3,10,3,0,0,0,0,0,0,0,0,30,0,0,11,0,0,0,0,0,0,0,0,0,15,7,3,5,0,0,0,0,0,0,0,0,0,16,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,9,0,0,0,0,0,0,0,0,0,18,0,3,5,5,0,0,0,0,0,0,0,0,16,0,0,8,0,0,0,0,0,0,0,0,3,15,10,0
LGA35300,0,9,230,31,12,8,9,7,17,35,88,58,19,13,18,309,16,3,3,3,5,4,23,41,36,12,9,12,160,10,5,23,23,17,14,32,32,28,12,7,19,208,7,4,4,11,3,4,4,0,0,0,0,11,52,187,63,205,277,219,288,413,507,282,76,37,148,2711,3,4,3,3,0,6,0,0,5,0,6,8,37,0,0,4,4,0,0,6,0,0,0,0,3,12,6,10,14,5,7,4,5,0,0,0,0,6,58,3,12,22,10,6,5,3,0,0,0,0,5,62,4,9,24,19,10,3,8,4,0,0,0,6,87,3,4,25,28,17,11,11,0,0,0,0,6,107,5,3,16,18,18,13,19,13,0,0,3,3,111,3,3,12,25,13,28,28,12,0,0,0,7,141,9,6,19,31,25,36,27,39,8,6,0,12,200,15,0,17,21,23,40,32,34,10,0,4,16,217,35,13
LGA35600,0,0,15,10,0,0,8,0,4,0,0,0,0,4,0,27,0,0,0,0,0,5,0,0,0,0,0,0,7,4,0,7,5,7,3,5,3,0,0,0,0,34,0,0,4,6,0,0,0,0,0,0,0,10,27,63,13,66,113,73,63,23,8,4,0,7,36,464,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,0,4,7,6,0,0,0,0,0,0,0,0,16,0,0,5,10,4,0,0,0,0,0,0,3,26,0,0,4,14,8,0,0,0,0,0,0,6,34,0,0,0,9,5,9,0,0,0,0,0,0,24,0,0,11,18,13,0,0,0,0,0,0,3,43,0,0,4,11,10,3,4,0,0,0,0,0,41,6,0,4,6,7,12,0,0,0,0,0,9,43,19,0
LGA35670,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,21,26,109,60,0,5,4,0,0,0,0,3,232,4,5,16,5,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,3,5,0,4,4,0,0,0,0,0,0,0,0,9,0,0,7,0,0,0,0,0,0,0,0,0,9,3,0
LGA35740,26,3,206,0,0,0,0,0,0,3,26,63,28,42,6,183,0,0,0,0,0,0,5,8,16,24,56,3,116,0,0,6,14,10,4,40,115,101,30,43,13,378,9,3,3,12,7,4,8,19,10,5,11,24,96,30,42,191,187,191,307,842,1546,921,356,378,152,5137,0,0,0,7,4,4,8,6,15,0,24,10,77,0,0,0,0,0,0,0,3,3,0,9,0,24,10,3,13,5,0,0,5,14,11,5,3,9,67,3,6,20,9,9,9,13,13,7,3,8,15,110,6,3,66,22,12,25,28,28,11,7,12,13,231,0,0,13,21,17,44,68,80,52,9,13,10,333,0,0,10,18,17,15,40,87,59,22,23,9,288,0,5,11,15,11,19,35,80,86,39,26,14,348,0,3,9,15,10,23,46,127,100,47,35,13,435,0,3,6,6,16,13,31,124,142,67,65,18,490,0,4
LGA35760,0,6,23,0,0,4,0,3,0,4,0,0,0,0,8,27,0,0,3,4,0,0,0,0,0,0,0,0,19,3,5,9,3,5,7,0,0,0,0,0,9,40,5,7,15,9,6,9,0,0,0,0,0,3,60,59,45,212,239,144,152,57,10,3,0,9,78,1009,0,0,0,3,0,0,0,0,0,0,0,6,19,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,3,4,3,3,0,0,0,0,0,0,18,0,3,11,9,6,3,0,0,0,0,0,3,47,0,5,25,21,19,7,5,0,0,0,0,5,88,0,0,19,33,15,7,0,0,0,0,0,3,79,0,0,17,25,12,20,11,0,0,0,0,9,103,3,0,6,22,13,21,13,0,0,0,0,0,84,10,7,16,16,14,13,10,3,0,0,0,6,88,3,0,7,19,18,28,9,6,0,0,0,9,105,7,3
LGA35780,0,0,26,9,0,4,8,0,0,0,0,0,0,0,5,25,8,0,3,3,0,0,0,0,0,0,0,0,14,5,5,15,9,3,0,0,0,0,0,0,4,35,0,0,0,0,0,0,0,0,0,0,0,0,3,97,75,266,133,15,3,5,3,0,0,7,34,638,0,0,5,0,0,0,0,0,0,0,0,3,8,0,0,3,0,0,0,0,0,0,0,0,0,10,5,0,9,3,0,0,0,0,0,0,0,0,20,0,0,15,0,0,0,0,0,0,0,0,0,19,3,3,14,5,0,0,0,0,0,0,0,0,28,0,0,20,5,0,0,0,0,0,0,0,0,31,5,6,26,11,0,0,0,3,0,0,0,0,46,3,13,18,9,0,0,0,4,0,0,0,0,45,3,5,28,18,0,3,0,0,0,0,0,4,68,4,4,23,8,0,0,0,0,0,0,0,0,48,5,0
LGA35790,0,0,19,4,0,8,3,0,0,0,0,0,0,0,0,15,7,0,0,0,0,0,0,0,0,0,0,0,4,0,3,15,5,0,0,0,0,0,0,0,0,28,0,0,4,0,0,0,0,0,0,0,0,0,0,62,60,189,109,6,3,5,0,0,0,0,17,444,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,6,9,16,0,0,0,0,0,0,0,0,0,29,5,0,10,3,0,0,0,0,0,0,0,0,28,3,7,11,11,0,0,0,0,0,0,0,0,31,7,3,17,8,0,0,0,0,0,0,0,0,28,5,4,25,14,0,0,0,0,0,0,0,0,49,0,8,26,12,0,0,0,0,0,0,0,0,47,0,7,23,11,0,0,0,0,0,0,0,0,40,0,0,13,15,0,0,0,0,0,0,0,0,30,7,4
LGA35800,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,9,0,4,0,0,0,0,0,0,0,18,0,0,6,0,0,0,0,0,0,0,0,3,13,25,28,65,34,5,3,0,0,0,0,0,24,184,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,11,0,0,0,0,0,0,0,0,0,30,3,6,15,9,0,6,0,0,0,0,0,0,33,0,4,10,7,0,0,0,0,0,0,0,0,15,0,0,10,4,0,0,0,0,0,0,0,0,21,0,0,6,4,0,0,0,0,0,0,0,0,15,0,0,3,6,0,6,0,0,0,0,0,0,15,0,0,10,7,0,0,0,0,0,0,0,6,28,4,0
LGA36070,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,64,31,69,14,0,0,0,0,0,0,0,12,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,4,4,3,0,0,0,0,0,0,0,0,0,12,5,0,4,0,0,0,0,0,0,0,0,0,6,0,0,8,0,0,0,0,0,0,0,0,0,7,6,0,7,4,0,0,0,0,0,0,0,4,17,4,0,7,3,0,0,0,0,0,0,0,7,13,0,0,5,5,0,0,0,0,0,0,0,4,15,4,3
LGA36150,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,41,19,11,0,0,0,0,0,0,9,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,9,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0
LGA36250,30,6,651,0,0,7,12,3,16,15,128,274,106,73,16,640,0,0,0,0,0,0,4,51,102,72,85,4,332,4,3,19,21,16,40,83,277,261,66,47,36,866,5,3,38,15,12,19,23,27,23,0,6,81,257,123,147,685,688,436,831,1378,4192,2862,599,372,399,12711,0,6,21,9,9,16,15,42,28,8,8,26,183,6,3,15,7,0,8,4,9,5,0,0,0,60,23,15,48,23,13,22,13,14,11,3,0,20,213,24,28,111,52,35,38,36,65,23,4,8,24,437,20,37,255,91,47,89,76,88,42,13,0,25,783,16,9,46,85,70,170,150,219,62,10,9,27,871,4,4,44,69,49,89,165,286,100,23,7,33,865,13,8,34,44,50,83,146,399,129,23,13,18,964,4,4,24,39,20,72,151,463,232,35,18,19,1084,0,3,14,31,23,42,116,504,330,65,13,28,1169,3,3
LGA36300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,17,0,17,19,3,3,6,0,0,0,0,11,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,5,0,0,0,0,0,0,7,4,0
LGA36370,6,0,349,0,0,7,7,8,28,77,108,21,8,6,4,273,0,0,0,0,3,15,25,34,30,6,11,4,128,4,9,19,34,46,112,213,129,20,4,0,29,630,10,6,28,28,23,31,36,11,5,0,3,49,242,149,169,601,833,965,1925,2906,1278,176,50,53,332,9443,12,3,14,17,16,28,20,16,8,0,3,25,159,3,0,5,5,8,8,6,3,0,0,0,5,49,28,18,26,32,21,29,12,4,0,0,0,8,176,23,26,59,64,42,69,45,24,4,0,0,24,369,34,45,119,107,73,136,67,36,8,0,0,41,667,18,10,68,138,121,212,151,51,10,3,0,31,807,17,6,46,95,89,154,187,81,8,0,0,33,714,7,8,40,68,104,225,236,101,7,0,3,34,830,3,9,37,70,85,208,287,121,11,4,3,38,867,3,4,20,35,70,182,288,195,26,0,5,27,860,7,4
LGA36510,8,3,98,0,0,3,3,3,5,12,27,9,3,4,4,75,0,0,0,0,4,4,11,14,9,3,5,0,48,0,0,4,10,19,31,71,59,20,5,4,13,228,4,0,9,6,7,10,16,8,0,0,0,19,78,38,27,149,229,263,503,896,685,195,63,43,128,3221,0,0,5,0,6,10,12,11,5,0,0,12,48,0,0,0,0,0,0,4,0,0,0,0,0,15,0,0,0,0,5,7,21,3,4,0,0,4,51,3,0,14,16,3,14,23,12,0,0,0,4,92,4,6,23,19,23,55,61,21,0,4,0,3,219,6,4,12,28,40,82,109,43,11,0,6,5,336,5,0,8,18,13,53,118,67,22,4,5,11,318,0,0,13,14,20,42,102,74,14,13,0,14,303,0,0,11,17,12,40,132,87,24,6,3,26,360,0,0,10,10,15,25,116,84,27,8,10,9,313,3,0
LGA36580,0,3,52,0,0,4,6,6,0,23,6,0,0,0,3,49,0,4,0,4,0,3,10,6,0,0,4,0,35,0,0,5,3,5,37,44,19,0,0,0,10,127,0,0,3,3,6,3,8,3,0,0,0,8,39,20,16,72,185,202,450,837,200,30,10,14,72,2106,0,0,0,0,0,6,13,5,0,0,0,3,24,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,5,0,4,0,0,0,0,0,11,0,0,0,3,4,16,7,7,0,0,0,3,50,0,0,12,16,17,31,28,4,0,0,0,11,122,0,0,4,19,26,52,55,13,0,0,0,0,180,0,0,3,15,9,41,66,20,0,0,0,13,179,0,0,9,4,13,40,76,39,0,0,3,6,201,0,0,6,5,13,43,95,31,6,0,0,10,208,4,0,3,11,9,16,69,37,6,0,0,7,170,0,0
LGA36630,0,6,92,0,3,3,11,7,15,20,14,0,0,0,9,80,0,0,0,3,7,6,9,10,0,0,0,0,36,4,3,13,14,18,58,50,20,0,0,0,3,186,0,0,23,29,12,15,4,0,0,0,0,21,110,92,72,282,636,578,873,545,116,6,13,18,110,3343,0,0,3,3,3,15,3,4,0,0,4,16,52,0,0,6,0,4,3,0,0,0,0,0,3,11,0,0,4,11,16,11,4,0,3,0,0,4,63,6,3,19,23,24,22,12,0,0,0,0,8,125,3,13,47,69,52,65,22,8,0,0,0,20,302,4,4,41,91,58,96,40,7,0,0,0,9,343,0,3,15,38,44,80,68,10,0,0,0,7,275,8,3,18,31,46,103,85,8,0,0,3,15,322,4,3,15,29,38,102,73,15,4,3,0,16,299,10,3,12,21,34,75,82,18,0,0,0,10,281,12,13
LGA36660,3,7,59,0,0,0,0,8,4,25,15,0,0,0,4,56,0,0,0,0,4,4,3,3,0,0,0,0,19,4,0,13,23,25,74,64,9,5,0,0,4,222,0,3,24,19,17,27,16,3,0,0,0,20,130,52,48,302,593,505,1106,691,147,14,6,22,121,3612,0,0,3,7,10,9,8,11,0,0,0,4,54,0,0,5,0,0,0,6,0,0,0,0,0,20,0,0,12,11,6,9,8,0,0,0,0,8,59,3,4,17,25,20,33,18,5,0,0,0,3,129,6,4,32,66,59,79,37,8,5,3,0,12,311,0,0,35,82,74,130,59,14,0,0,0,17,414,4,8,16,46,48,113,86,11,0,0,0,3,346,0,0,15,36,44,100,124,16,0,0,0,14,364,3,0,3,34,42,123,113,19,0,0,0,19,365,9,0,9,21,22,90,120,31,4,0,3,9,313,6,0
LGA36720,70,13,1417,3,0,9,10,6,30,65,320,419,207,128,13,1211,0,0,3,3,0,10,26,92,208,121,145,14,617,11,4,32,49,26,68,315,816,620,203,118,77,2334,11,22,59,32,35,66,110,127,51,12,12,147,674,179,334,1250,1164,892,2031,6428,10604,5661,1557,927,840,31871,6,9,21,16,18,14,43,91,69,43,43,74,446,3,3,9,11,3,5,20,39,25,5,17,9,155,32,28,55,35,16,31,44,54,45,15,7,22,370,35,58,213,72,69,63,114,138,67,28,20,57,934,29,80,363,141,63,147,273,247,115,35,26,72,1586,20,17,115,170,122,280,516,543,221,72,28,53,2150,15,27,81,133,64,139,429,701,398,103,57,62,2202,12,20,79,101,79,156,478,931,489,152,76,70,2644,15,9,46,82,53,120,470,1091,776,198,111,74,3041,8,3,24,58,55,102,334,1176,1056,259,167,84,3319,8,7
LGA36820,0,0,41,3,0,0,3,5,0,12,16,4,0,0,0,50,0,0,0,5,0,3,5,5,0,0,0,3,29,3,3,12,21,21,34,53,23,0,0,4,11,184,6,0,9,24,10,14,10,0,0,3,0,25,104,47,42,195,336,320,520,608,217,19,7,15,125,2469,0,0,3,3,3,7,5,0,0,0,0,5,34,0,0,5,0,3,0,0,0,0,0,0,0,13,3,3,5,14,5,8,4,0,0,0,0,0,53,4,5,14,22,15,22,8,0,0,0,0,3,113,4,9,29,34,28,53,23,6,0,0,0,13,192,11,0,18,50,42,82,58,13,0,0,0,7,281,0,0,8,24,29,48,51,19,6,0,0,12,197,5,6,20,31,23,50,72,26,0,0,3,13,236,0,0,8,30,22,46,68,27,0,0,0,7,219,5,0,8,23,23,50,68,37,0,0,3,4,220,6,3
LGA36910,3,17,620,7,5,7,11,8,43,154,217,71,13,6,19,555,3,0,6,5,7,5,49,86,43,8,10,8,228,15,0,37,61,48,159,373,271,69,15,4,44,1086,7,10,35,49,47,58,54,15,3,0,5,62,358,168,226,982,1493,1568,3516,5808,3036,484,94,67,516,17961,4,8,24,13,22,53,64,38,11,4,3,54,300,0,3,5,17,4,18,17,7,3,0,4,11,93,23,17,48,25,21,57,43,11,11,3,3,23,274,18,44,119,69,81,118,96,20,7,3,3,33,620,29,47,233,133,145,296,245,60,7,6,6,41,1256,6,14,89,186,254,489,430,130,16,0,5,34,1649,8,15,85,116,157,348,563,180,16,14,4,31,1542,3,18,71,92,169,424,725,244,34,12,3,46,1845,11,9,44,104,142,430,786,390,46,7,6,41,2031,6,3,39,70,87,340,816,499,49,16,6,57,1993,16,8
LGA36950,0,9,50,16,0,7,0,0,5,5,5,0,0,0,12,50,10,0,4,5,0,0,3,3,0,0,8,10,37,19,3,14,7,4,12,19,4,4,0,0,7,96,0,0,0,0,3,3,8,0,0,0,0,7,23,126,19,71,52,31,71,100,36,16,8,14,74,608,0,0,4,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,4,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,4,5,0,0,3,0,0,0,0,0,23,0,0,4,5,0,0,0,0,0,0,0,0,15,5,0,5,12,0,4,0,0,0,0,0,0,29,0,0,0,7,5,9,5,3,0,0,0,6,33,4,6,6,3,3,9,6,0,0,0,0,4,42,6,4,5,5,4,10,3,4,0,0,0,11,43,19,0
LGA36960,0,6,27,5,0,3,6,0,0,0,0,0,0,0,8,19,0,0,5,0,0,0,0,0,0,0,0,3,5,16,9,19,26,0,0,4,0,0,0,0,6,80,3,0,9,9,0,0,0,0,0,0,0,6,29,191,101,294,242,3,6,4,0,0,0,0,64,912,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,4,10,25,9,0,0,0,0,0,0,0,5,48,9,6,30,10,0,0,0,0,0,0,0,0,53,5,15,33,22,0,0,0,0,0,0,0,3,78,5,8,27,15,0,0,0,0,0,0,0,0,52,4,11,37,30,0,0,0,0,0,0,0,0,80,11,9,34,26,0,3,0,0,0,0,0,3,89,3,10,37,37,3,0,0,0,0,0,0,4,94,8,4,38,29,0,3,0,0,0,0,0,4,85,11,4
LGA37010,15,18,1193,3,0,8,21,21,67,186,358,151,44,17,15,888,3,0,3,6,6,14,72,125,87,43,30,7,412,6,9,58,72,76,346,616,654,163,47,24,68,2147,17,23,46,52,40,58,80,41,8,8,10,127,516,217,279,1206,1569,1661,4738,7661,5775,1018,301,241,663,25322,10,13,27,28,35,68,78,60,12,8,3,71,399,11,7,13,14,13,16,23,16,6,4,4,13,130,47,38,56,45,41,60,54,31,8,3,3,28,417,40,41,178,100,95,134,108,52,4,0,0,38,796,30,52,272,149,159,245,177,91,10,4,4,46,1244,24,24,108,218,236,456,336,151,28,0,14,52,1653,20,15,103,147,133,434,451,233,30,6,9,63,1633,15,27,95,143,174,448,570,321,46,9,16,58,1939,14,9,68,101,160,521,787,489,39,13,13,52,2268,5,11,67,85,117,461,871,643,84,20,14,73,2450,13,11
LGA37300,19,3,76,30,0,0,0,0,0,0,0,12,17,40,9,124,18,0,0,0,0,0,0,0,3,14,18,3,69,12,0,0,0,0,0,0,0,5,11,8,9,50,0,0,0,0,0,0,0,0,0,0,0,6,3,125,7,17,18,6,17,38,26,75,87,171,60,660,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,10,0,6,0,0,0,0,0,0,0,0,0,0,8,7,0,5,0,0,4,0,0,4,3,5,0,29,4,0,0,0,0,5,0,0,0,5,0,5,23,13,0
LGA37310,0,12,134,7,7,18,14,16,27,39,26,0,0,0,6,161,0,0,3,5,6,17,15,13,5,0,4,5,77,10,0,9,41,47,59,67,24,0,0,0,12,285,3,0,18,10,11,11,8,5,0,0,0,23,94,90,78,375,696,620,848,652,174,19,3,19,201,3778,0,0,4,3,3,7,3,0,0,0,0,7,38,0,0,0,5,0,0,5,0,0,0,0,3,13,0,0,15,9,8,5,8,0,0,0,0,3,53,7,3,22,37,18,18,6,0,0,0,0,7,111,13,8,48,54,34,48,13,3,0,0,0,10,229,4,6,61,75,71,79,40,9,0,0,0,14,359,10,3,26,47,70,75,46,0,0,0,0,7,289,4,5,17,53,57,116,63,7,0,0,0,19,339,5,8,19,51,42,121,87,7,0,0,0,28,367,12,3,24,30,44,93,87,16,3,3,4,28,350,20,13
LGA37340,0,13,179,4,4,6,9,5,11,33,37,21,7,11,9,160,0,0,0,4,4,11,14,18,19,4,10,9,91,11,0,11,17,16,34,75,84,28,8,4,7,299,5,0,23,23,7,12,14,4,4,3,6,30,142,73,65,270,428,354,721,961,755,211,62,74,167,4142,0,0,6,19,5,11,14,11,3,0,3,0,77,0,0,4,3,5,0,5,0,0,0,0,0,22,6,5,16,9,7,9,6,3,6,0,5,8,78,6,7,27,16,12,15,22,8,0,0,3,15,129,4,0,42,58,21,40,42,10,0,0,3,10,239,0,4,33,81,49,64,61,32,10,5,0,6,349,3,4,14,52,28,68,77,45,19,3,4,17,333,4,7,22,44,30,86,81,67,20,4,3,13,383,10,7,14,19,38,66,102,92,34,11,9,16,411,3,0,14,19,21,63,94,80,29,8,9,18,365,10,4
LGA37400,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,4,19,10,28,33,16,8,0,4,0,0,0,8,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,11,3,0,8,0,0,0,0,0,0,0,0,0,21,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,6,0,3,0,3,4,0,0,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,5,0,4,5,0,0,0,0,0,4,17,5,0
LGA37550,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,14,4,0,0,8,0,0,0,0,0,0,0,0,10,45,23,114,42,0,4,0,0,0,0,0,8,234,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,12,10,6,5,0,0,0,0,0,0,0,0,31,7,5,10,3,0,0,0,0,0,0,0,0,25,4,4,15,6,0,0,0,0,0,0,0,0,22,3,4,17,6,0,0,0,0,0,0,0,0,27,0,9,14,9,0,0,0,0,0,0,0,0,21,3,7,6,9,0,0,0,0,0,0,0,0,28,0,0,12,0,0,0,0,0,0,0,0,0,18,0,5,3,3,0,0,0,0,0,0,0,0,12,0,0
LGA37570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,38,9,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,5,3,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,14,3,0,4,3,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA37600,0,0,17,3,3,3,7,0,0,0,0,0,0,0,0,11,0,0,0,6,0,0,0,0,0,0,0,0,3,0,3,21,26,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,4,4,20,32,142,178,6,4,0,0,0,0,0,7,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,4,3,8,4,0,0,0,0,0,0,0,0,22,0,3,3,6,0,0,0,0,0,0,0,0,11,0,5,10,6,0,0,0,0,0,0,0,0,18,0,0,6,7,0,0,0,0,0,0,0,0,13,0,11,7,16,0,0,0,0,0,0,0,0,35,0,0,12,15,0,0,0,0,0,0,0,4,33,0,5,17,12,0,0,0,0,0,0,0,0,32,0,9,12,29,0,0,0,0,0,0,0,0,52,4,6
LGA39499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA39799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA40070,11,3,208,0,0,0,3,0,3,24,90,108,43,47,3,326,0,0,0,0,0,8,3,34,46,31,33,3,158,3,0,3,7,6,15,38,86,74,30,29,15,297,5,9,16,9,8,8,19,45,28,8,14,21,182,72,123,235,281,151,288,847,1539,935,300,271,148,5189,5,4,3,13,15,25,41,152,130,55,25,9,484,0,0,3,0,4,4,6,37,26,11,5,0,108,8,17,30,30,10,16,15,44,31,12,6,4,222,5,18,54,62,18,23,42,40,27,6,8,11,309,3,8,93,64,24,13,24,48,23,14,3,8,326,0,0,33,67,36,27,64,98,31,16,6,7,389,0,0,8,23,17,30,57,88,57,15,5,7,303,0,0,11,22,21,28,74,147,60,14,13,9,401,5,0,8,19,22,39,126,228,84,31,16,12,578,0,0,5,18,7,29,103,239,98,14,11,15,537,0,0
LGA40120,5,3,66,0,0,0,5,0,0,6,12,17,11,10,4,75,0,0,0,0,0,0,3,11,10,3,11,0,41,0,0,3,3,7,4,35,26,10,8,9,0,119,0,0,7,3,0,0,4,3,0,0,0,11,28,17,16,80,94,85,149,408,339,116,46,48,63,1465,0,0,0,3,0,0,6,0,3,0,0,0,12,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,3,3,5,4,3,0,0,0,0,18,0,0,5,8,8,0,6,9,0,0,0,3,46,0,4,9,20,14,7,22,8,0,0,0,0,85,0,0,4,5,10,27,34,15,5,0,0,10,105,0,3,0,17,14,10,35,18,4,0,0,0,102,0,0,0,3,6,13,35,35,10,3,0,0,112,0,0,5,9,3,10,37,31,15,3,0,5,126,0,0,0,9,9,15,32,43,14,9,0,4,132,0,0
LGA40150,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,0,3,0,0,0,19,0,0,6,0,0,0,0,0,0,0,0,0,18,11,12,28,31,54,68,79,37,7,5,0,19,340,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,0,0,3,0,0,3,3,0,0,4,0,0,0,0,0,16,0,0,7,6,0,5,3,0,0,0,0,4,22,0,0,0,5,0,9,9,4,0,0,0,0,30,3,0,0,0,0,12,8,10,0,0,0,0,37,0,0,5,4,3,4,8,7,0,0,0,0,18,3,0,0,0,7,10,14,0,0,0,0,0,36,5,0,0,0,4,3,12,13,0,0,0,0,43,0,0
LGA40220,0,0,43,0,0,0,0,0,4,13,9,0,0,0,0,26,0,0,0,0,0,0,3,5,0,0,0,0,8,0,0,3,14,14,29,48,17,5,0,0,11,131,0,0,3,8,6,5,12,0,3,0,0,10,57,30,43,134,233,203,512,638,160,21,4,13,63,2046,0,0,0,0,4,6,4,0,0,0,0,6,21,0,0,0,0,0,3,4,0,0,0,0,0,14,3,3,5,13,0,14,11,5,0,0,0,3,59,4,5,28,24,0,23,18,9,0,0,0,4,108,5,0,18,38,30,40,23,6,5,0,0,7,172,4,0,15,55,35,82,60,11,0,0,0,3,262,0,0,0,19,14,51,82,32,0,0,6,6,212,4,0,6,12,12,53,85,46,9,0,5,7,226,3,0,4,10,14,45,90,35,0,0,0,9,221,0,0,0,10,10,27,82,41,4,0,0,11,188,0,0
LGA40250,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,33,3,0,0,0,0,0,0,0,0,9,54,7,3,0,0,0,0,0,0,0,0,0,9,21,80,210,11,0,0,0,4,0,0,0,0,55,369,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,8,5,7,0,0,0,0,0,0,0,0,0,22,4,12,6,0,0,0,0,0,0,0,0,3,23,9,12,10,5,0,0,0,0,0,0,0,0,37,4,17,6,0,0,0,0,0,0,0,0,5,30,8,23,6,0,0,0,0,0,0,0,0,7,46,3,19,9,0,0,0,0,0,0,0,0,4,35,13,17
LGA40310,0,0,56,0,0,4,0,0,3,19,17,0,0,0,5,49,0,0,0,0,0,0,8,9,0,0,0,0,18,0,0,4,8,5,20,37,17,0,0,0,0,91,0,4,9,7,0,3,0,0,0,0,0,8,29,26,30,112,171,184,349,532,165,16,4,7,72,1677,0,0,5,6,0,4,0,0,0,0,0,4,18,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,9,3,0,8,5,0,0,0,0,0,31,0,0,14,9,3,15,9,0,0,0,0,0,53,0,7,22,15,8,24,19,13,0,0,0,4,94,0,3,12,41,27,40,36,6,0,0,0,5,178,0,0,10,16,11,44,46,19,0,0,0,0,151,0,0,7,10,14,32,61,18,0,0,0,0,143,3,0,0,6,19,32,73,23,4,0,0,4,171,3,0,4,3,18,23,70,30,7,0,0,7,169,0,0
LGA40430,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,4,7,9,28,58,34,25,13,0,0,0,3,9,181,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,8,0,0,0,0,0,0,0,0,15,3,0,3,6,0,5,0,0,0,0,0,3,22,0,0,0,9,0,4,4,0,0,0,0,0,21,0,0,0,6,3,3,7,0,0,0,0,0,21,0,0,3,0,4,6,9,0,0,0,0,7,21,0,0,0,6,0,3,5,0,0,0,0,0,14,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0
LGA40520,0,0,27,0,0,8,4,0,4,0,0,0,0,0,0,22,0,0,0,0,0,4,0,3,0,0,0,0,15,4,0,3,15,11,13,8,0,0,0,0,4,62,4,3,10,12,11,3,0,0,0,0,0,12,58,34,66,208,423,182,184,68,22,0,3,9,68,1268,3,0,0,0,7,5,0,0,0,0,0,6,18,0,0,3,0,3,0,0,0,0,0,0,0,4,4,3,8,19,3,3,0,0,0,0,0,0,37,0,5,25,21,8,16,3,0,0,0,0,8,87,0,4,58,31,21,21,0,5,0,0,0,4,150,0,5,19,36,22,26,9,4,0,0,0,3,122,0,0,15,30,38,27,15,5,0,0,0,4,136,0,0,6,22,25,32,13,0,0,0,0,4,107,0,0,6,18,24,34,16,0,0,0,0,7,113,4,5,15,15,26,30,18,0,0,0,0,5,116,0,0
LGA40700,15,6,160,0,0,4,0,0,8,17,52,54,35,49,3,219,0,0,3,0,0,3,0,18,35,23,54,4,151,0,0,7,3,0,17,67,60,48,26,27,3,269,0,4,8,3,0,10,12,0,5,0,0,13,52,30,64,152,152,126,456,1011,737,454,194,204,96,3670,0,0,3,3,0,7,18,24,15,5,8,11,94,0,0,0,0,0,3,6,4,0,0,0,0,17,4,4,11,5,0,3,5,13,0,4,0,0,49,7,6,17,7,4,13,22,12,3,0,0,0,98,9,4,34,12,11,24,35,21,6,0,0,5,159,0,0,33,23,11,36,81,34,10,7,8,10,247,0,4,9,7,15,29,66,45,16,6,3,6,205,3,0,5,5,12,44,87,62,19,3,3,4,252,0,0,9,11,7,41,115,79,28,5,11,5,315,3,5,3,6,9,22,126,112,34,9,10,8,344,0,0
LGA40910,0,0,172,0,0,4,3,0,5,27,71,27,6,3,4,154,0,0,0,3,0,0,9,20,16,11,6,4,61,0,0,9,13,16,23,65,84,21,3,5,13,245,5,3,7,3,9,14,18,8,0,0,0,21,86,51,168,403,298,225,656,1426,1155,240,60,29,178,4894,0,0,21,10,0,6,26,20,9,4,0,12,108,0,3,0,5,0,3,3,0,6,0,0,0,26,9,8,22,16,7,3,13,16,5,4,0,0,93,10,13,64,29,15,15,30,25,5,0,0,7,207,5,5,151,56,21,41,46,26,13,3,3,13,376,0,5,44,60,22,69,101,63,19,4,0,16,405,4,0,13,34,24,53,98,73,16,3,6,6,326,0,3,21,25,13,74,107,105,35,3,0,11,396,0,0,10,23,16,63,159,146,47,8,4,17,491,0,0,7,16,14,57,163,167,69,6,5,10,516,3,0
LGA41010,0,3,29,0,0,3,0,0,4,0,0,0,0,5,17,37,0,0,0,0,0,0,0,0,0,0,0,0,12,3,3,4,4,4,11,11,3,0,0,0,4,43,5,15,0,3,0,0,0,0,0,0,0,10,37,36,48,63,70,49,83,69,19,4,0,13,97,559,0,0,3,3,0,0,0,0,0,0,0,5,19,0,0,0,0,0,3,0,0,0,0,0,0,0,5,7,0,3,4,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,13,6,4,11,3,7,9,0,0,0,0,0,0,38,0,4,4,9,0,9,0,0,0,0,0,0,35,5,3,8,3,5,6,6,0,0,0,0,3,37,0,3,5,3,0,9,6,0,0,0,0,4,39,0,0,0,9,7,4,3,0,0,0,0,5,31,0,7,3,9,9,11,13,0,0,0,0,8,56,0,0
LGA41060,19,4,501,4,0,12,6,0,14,55,175,104,35,29,12,451,0,3,3,0,4,4,22,69,55,33,47,4,248,3,10,38,63,35,82,209,298,95,25,21,35,925,13,59,82,30,24,22,31,35,14,3,3,90,404,290,764,1455,1047,708,1869,3350,3081,761,250,200,480,14253,3,8,40,24,11,25,44,41,16,3,0,33,245,8,11,19,16,6,12,15,9,3,5,3,3,91,33,56,88,56,18,22,21,28,8,0,4,18,355,24,65,265,118,51,84,74,43,12,0,3,47,781,24,46,548,190,71,100,117,65,16,3,0,38,1220,11,21,136,199,79,158,210,145,30,10,3,16,1014,7,8,62,143,82,159,243,180,36,4,3,33,962,4,7,69,87,98,241,331,261,60,12,7,36,1199,0,10,38,57,45,219,433,359,70,9,6,24,1280,0,4,23,51,65,162,407,481,91,14,13,26,1352,3,0
LGA41140,0,0,10,0,0,0,0,4,5,6,3,0,0,0,0,21,0,0,0,0,0,0,0,8,0,0,0,0,12,0,0,0,3,6,16,13,4,0,0,0,6,47,0,0,0,3,5,0,6,0,0,0,0,3,23,10,28,98,129,113,176,127,35,9,0,7,44,773,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,6,4,0,0,0,4,0,0,0,0,0,0,0,13,0,0,17,3,3,0,3,0,0,0,0,0,24,3,0,23,14,10,4,0,0,0,0,0,0,60,0,0,7,19,10,23,13,5,0,0,0,3,83,0,0,6,15,10,7,8,3,0,0,0,4,59,0,0,4,10,12,15,15,3,0,0,0,0,63,0,0,4,4,5,26,16,3,0,0,0,8,70,0,0,3,4,13,18,27,6,0,0,4,4,80,0,0
LGA41190,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,3,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,10,6,23,42,19,7,3,0,6,3,9,14,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,9,0,3,0,0,0,0,0,0,0,10,0,0,3,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,13,0,0,8,5,0,0,0,0,0,0,0,0,11,0,0,4,4,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0
LGA41330,0,4,11,0,4,5,0,0,0,0,0,0,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,10,0,5,0,0,0,0,0,4,16,0,0,3,4,0,0,0,0,0,0,0,13,18,12,16,60,64,29,17,7,0,0,0,0,37,238,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,4,0,0,0,0,0,0,0,0,6,5,0,5,6,0,0,0,0,0,0,0,4,17,0,0,4,13,3,0,0,0,0,0,0,0,20,0,0,4,10,0,0,0,0,0,0,0,0,10,0,0,6,7,0,0,0,0,0,0,0,0,15,0,0,5,0,3,0,0,0,0,0,0,0,11,3,0,0,7,0,0,0,0,0,0,0,7,21,0,0,4,7,5,4,0,0,0,0,0,3,21,0,4
LGA41560,5,0,24,0,0,3,0,0,3,5,4,0,0,0,0,27,0,0,0,0,0,0,4,3,0,0,0,0,15,0,0,3,10,9,25,20,3,0,0,0,6,80,0,14,10,17,3,13,6,0,0,0,0,12,79,23,77,153,254,177,454,262,52,7,3,6,63,1540,0,0,0,5,0,0,3,0,0,0,0,0,17,0,0,0,6,0,0,4,0,0,0,0,0,13,0,9,13,5,0,4,7,4,0,0,0,0,43,0,5,21,17,12,12,4,0,0,0,0,0,70,8,0,51,25,30,36,19,5,3,0,0,12,189,0,0,10,35,22,62,21,0,6,0,0,4,159,0,0,8,31,18,52,42,0,0,0,0,3,161,0,0,9,21,12,58,44,4,0,0,0,11,158,4,3,8,13,16,43,29,7,0,0,4,0,127,0,0,5,9,11,44,35,4,0,0,4,6,130,0,0
LGA41750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,5,3,6,21,14,5,3,0,0,0,3,3,9,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,3,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,4,0,0,0,0,0,0,0,6,4,0,0,3,0,0,0,0,0,0,0,5,11,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0
LGA41830,0,0,5,0,0,0,3,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,16,8,3,0,0,0,0,0,0,0,0,0,0,7,19,9,35,40,23,23,8,0,0,0,4,12,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,10,3,0,4,6,0,3,0,0,0,0,0,0,22,0,0,4,0,3,0,0,0,0,0,0,3,12,5,0,3,0,3,0,0,0,0,0,0,0,8,0,0,6,3,0,0,0,0,0,0,0,6,19,0,0,0,4,0,6,0,0,0,0,0,0,13,0,0,0,0,5,0,0,0,0,0,0,0,9,0,0
LGA41960,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,19,23,20,32,0,4,3,4,5,8,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,7,0,0,0,3,0,3,0,0,0,0,0,0,9,0,0,0,3,3,0,0,0,0,0,0,0,7,0,0,0,0,0,3,3,0,0,0,0,0,16,0,0,0,8,0,9,0,3,0,0,0,0,16,0,0
LGA42030,0,3,51,0,0,0,0,0,11,14,5,3,0,0,0,37,0,0,0,0,0,6,9,11,5,0,0,0,29,0,0,0,4,7,38,67,20,5,0,0,8,157,0,12,6,8,0,15,13,0,0,0,0,19,75,32,113,205,197,189,682,874,201,33,9,11,80,2638,0,0,5,0,3,4,9,6,0,0,0,6,36,0,0,0,0,0,0,0,3,0,0,0,3,15,7,4,15,7,9,7,3,3,0,0,0,13,59,0,12,41,11,9,23,18,5,0,0,0,5,130,5,9,93,20,23,46,38,13,0,0,0,10,256,0,0,19,18,29,80,69,25,0,0,0,6,246,0,3,15,22,16,63,88,31,5,0,0,7,244,0,0,16,12,20,70,94,30,0,0,0,5,260,0,0,4,13,22,56,137,38,8,3,3,4,290,0,0,5,10,10,67,104,53,4,6,0,9,260,0,0
LGA42110,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,5,7,0,0,0,0,0,0,21,3,0,0,0,0,0,0,0,0,0,0,4,10,12,26,66,64,49,43,9,5,0,0,0,18,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,10,0,0,0,0,0,0,0,0,16,0,3,8,11,5,5,0,0,0,0,0,0,27,0,0,10,11,3,3,0,0,0,0,0,0,38,0,0,4,12,0,4,3,0,0,0,0,5,33,0,0,4,11,9,8,5,0,0,0,0,0,34,0,0,4,7,3,6,0,0,0,0,0,3,16,3,0,3,3,0,13,3,3,0,0,0,0,34,0,0
LGA42250,0,0,10,0,0,0,0,0,0,0,3,0,0,0,0,8,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,3,5,5,0,3,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,3,7,15,13,66,84,44,40,27,21,0,0,4,15,334,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,0,0,0,0,0,0,0,18,0,0,4,5,3,0,0,0,0,0,0,0,16,0,3,10,9,3,3,0,0,0,0,0,0,31,0,0,5,5,5,7,4,0,0,0,0,0,23,5,0,3,5,3,12,0,0,0,0,0,5,33,0,0,0,4,0,6,8,0,0,0,0,0,20,0,0,3,5,9,3,3,0,0,0,0,3,30,0,0
LGA42600,4,5,169,0,0,5,6,0,4,28,66,50,41,34,0,244,0,0,0,0,0,5,4,17,32,28,42,6,132,0,0,8,5,3,36,71,71,43,12,21,14,284,4,4,9,12,0,13,18,3,4,0,4,20,99,30,87,213,229,201,742,1246,938,387,160,166,144,4532,0,3,0,5,0,5,21,14,8,3,8,4,59,0,0,0,0,0,6,4,0,0,0,0,6,18,4,8,11,4,3,10,7,9,3,0,0,3,63,0,4,34,22,6,27,26,17,3,0,0,6,157,0,0,62,45,21,32,53,21,4,0,0,21,263,0,5,31,53,33,88,103,44,12,6,0,3,376,0,0,10,28,6,45,116,60,16,0,0,10,304,0,0,11,14,13,64,138,81,18,9,3,10,359,0,4,0,14,11,76,159,116,38,7,3,11,430,5,0,10,12,12,62,125,125,33,13,8,7,412,0,0
LGA42750,0,0,9,0,0,0,0,0,3,5,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,4,0,6,0,0,3,5,0,8,0,0,0,0,0,0,20,0,0,3,3,0,5,0,0,0,0,3,4,15,14,13,73,121,55,79,31,5,4,0,18,23,433,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,5,0,0,0,0,0,0,0,8,0,3,4,3,3,4,0,0,0,0,0,4,25,3,7,8,15,6,3,3,0,0,0,0,4,48,0,3,3,13,6,8,0,0,0,0,0,5,42,3,0,3,9,4,7,5,0,0,0,0,3,33,0,0,9,11,5,6,0,0,0,0,0,0,35,0,0,4,11,3,11,0,0,0,0,0,0,42,0,0,4,4,6,14,14,4,0,0,0,3,45,0,0
LGA43080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,9,4,23,12,9,3,0,0,0,0,0,18,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,3,4,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,4,7,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA43220,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,14,23,24,0,0,0,0,0,0,0,6,69,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,9,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,8,0,0,0,0,0,0,0,3,13,0,0
LGA43360,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,4,16,0,0,4,0,0,0,0,0,0,0,0,0,4,3,9,42,69,43,28,3,5,0,0,0,16,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,3,0,0,0,3,0,0,5,0,0,0,0,0,15,0,0,6,18,10,3,0,0,0,0,0,0,29,0,0,4,4,4,5,5,0,0,0,0,0,21,0,0,3,9,4,9,0,0,0,0,0,3,24,3,0,5,4,4,10,6,0,0,0,0,0,29,0,0,3,0,4,8,0,0,0,0,0,3,22,0,0
LGA43650,0,0,29,0,0,3,0,5,4,6,8,9,0,0,0,28,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,4,0,11,13,4,0,0,0,8,46,0,0,0,0,0,5,0,0,0,0,0,0,10,9,12,55,76,75,149,142,106,25,4,3,32,689,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,11,0,0,7,0,4,0,0,0,0,0,0,0,13,0,0,3,5,6,9,7,0,0,0,0,0,36,0,0,10,13,4,17,13,4,0,0,0,0,60,4,0,0,8,7,10,18,9,0,4,0,3,63,0,0,0,8,12,12,8,8,5,0,0,0,44,0,5,7,9,3,10,16,0,0,0,0,4,58,0,0,0,3,6,16,19,12,0,0,0,4,54,0,0
LGA43710,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,5,0,4,6,0,0,0,0,0,24,0,0,5,13,0,0,0,0,0,0,0,0,18,9,9,40,68,38,39,53,22,3,0,3,22,311,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,6,12,0,0,0,3,3,4,0,0,0,0,0,0,16,0,0,3,9,7,4,5,0,0,0,0,0,21,0,3,0,5,4,9,0,0,0,0,0,0,26,0,0,3,9,4,4,3,7,0,0,0,0,24,0,0,6,0,3,3,3,0,0,0,0,4,21,0,0,0,7,0,7,5,0,0,0,0,4,37,0,0
LGA43790,0,0,18,0,0,6,5,0,0,6,5,0,0,0,5,20,0,0,3,0,0,0,3,0,0,0,0,0,7,5,5,14,13,10,11,4,0,3,0,0,0,62,3,5,12,11,8,0,0,0,0,0,0,7,52,43,58,204,309,152,149,76,22,9,0,4,45,1066,0,0,5,4,5,5,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,9,4,3,0,0,0,0,0,0,19,0,4,19,16,9,7,0,0,0,0,0,4,64,7,7,42,23,9,15,9,0,0,0,0,6,122,4,0,19,44,16,20,9,3,0,0,0,5,110,0,4,9,23,22,22,13,6,0,0,4,5,110,8,0,11,21,17,16,10,3,0,0,0,10,97,0,0,3,20,25,28,18,0,0,0,0,0,100,5,5,6,21,21,26,17,0,0,0,3,4,117,0,0
LGA44000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA44060,0,7,352,3,0,9,3,5,11,52,157,69,15,12,3,341,0,0,0,3,0,6,12,55,30,12,6,5,125,3,4,25,34,28,49,151,227,70,4,9,33,641,9,35,45,29,11,15,27,18,5,0,5,60,252,191,550,1148,931,496,1008,2511,2757,518,93,78,368,10648,9,4,29,27,0,16,20,38,24,0,4,29,192,7,10,17,12,4,4,16,19,11,0,3,12,117,25,48,90,47,16,12,21,15,9,0,0,20,303,12,54,237,119,43,47,58,38,11,3,0,31,651,17,26,376,242,50,53,58,49,12,0,0,47,933,10,8,133,188,65,83,125,95,23,6,4,22,769,0,3,65,117,63,99,147,170,34,7,0,25,728,4,3,47,75,62,139,184,195,28,9,0,33,774,0,3,27,38,36,98,292,298,61,8,0,18,894,5,3,18,36,24,89,267,358,94,10,0,22,935,4,0
LGA44210,0,0,14,0,0,0,0,0,0,0,0,0,0,3,0,9,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,3,5,7,6,6,0,0,0,0,3,43,0,0,3,5,0,0,0,0,0,0,0,0,20,20,19,111,171,104,109,42,4,0,3,3,37,630,0,0,4,4,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,3,0,3,0,0,0,0,0,0,18,0,0,16,16,4,4,4,0,0,0,0,4,47,0,8,19,22,9,10,3,4,0,0,0,3,79,3,3,11,27,17,12,9,0,0,0,0,4,90,0,0,6,20,9,16,17,0,0,0,3,0,73,3,0,6,11,15,16,4,0,0,0,0,0,59,3,0,4,10,10,21,6,0,0,0,0,0,52,0,0,0,7,12,8,5,4,0,0,0,3,45,0,3
LGA44340,5,0,201,0,0,4,6,5,7,16,55,38,22,16,6,172,0,0,0,4,0,4,8,22,32,20,28,0,120,0,0,4,11,7,33,68,83,26,15,18,10,274,0,5,3,5,4,11,13,0,0,4,0,15,68,30,102,223,255,199,719,1047,978,313,140,115,137,4254,0,0,7,4,6,16,18,10,10,0,0,7,72,0,5,5,0,0,3,0,7,3,0,0,3,26,6,4,11,5,5,11,8,9,5,0,0,7,70,5,6,27,26,13,24,23,17,4,0,0,4,142,4,4,52,45,10,28,36,34,13,0,0,10,237,0,0,39,44,16,56,79,29,9,0,0,12,290,0,3,17,17,15,50,78,49,11,0,0,6,261,6,0,16,15,14,55,102,74,16,10,3,15,314,4,0,14,18,11,75,130,103,27,3,7,7,393,3,0,6,14,15,53,137,115,39,17,5,5,411,0,0
LGA44550,0,0,100,0,0,6,0,0,3,13,38,13,0,0,0,77,0,0,0,0,0,0,8,14,9,3,0,0,45,3,0,6,8,3,23,49,38,10,3,5,4,157,0,0,8,9,3,4,20,8,0,0,0,12,65,40,65,164,159,105,334,905,764,103,27,13,81,2750,0,0,8,4,6,0,9,7,5,0,0,4,37,0,0,0,3,0,6,3,4,0,0,0,0,13,0,3,8,0,0,9,3,0,4,0,0,6,36,0,7,30,8,7,0,18,6,0,0,0,3,83,3,0,63,14,15,18,41,27,0,0,0,11,192,0,0,11,23,18,36,94,51,10,0,0,6,254,0,0,15,30,9,20,74,49,6,0,0,0,214,0,0,13,12,14,19,77,71,12,0,5,3,235,3,0,7,15,7,23,98,102,13,0,0,3,280,0,0,4,11,8,16,79,133,22,0,0,8,282,0,0
LGA44620,0,0,68,0,0,4,13,7,16,13,11,3,0,0,0,68,0,0,0,3,0,4,0,6,0,0,0,0,17,0,0,14,27,31,46,28,7,0,0,4,7,167,4,5,29,24,8,5,0,0,0,0,0,27,102,60,187,668,818,508,709,319,94,10,3,10,111,3514,0,0,16,9,4,4,0,0,0,0,0,8,44,0,10,0,3,3,3,0,0,0,0,0,3,25,7,12,35,23,13,9,3,0,0,0,0,0,104,3,26,78,60,20,10,11,3,0,0,3,5,212,12,12,135,83,37,32,14,0,0,0,0,10,335,5,4,47,122,58,68,27,8,0,0,0,8,349,5,11,40,98,42,69,35,8,4,0,0,7,304,0,3,38,82,56,89,57,13,4,0,0,4,341,0,5,7,66,49,91,72,7,0,0,0,16,314,0,0,17,68,36,83,70,20,0,0,0,8,307,0,0
LGA44830,0,0,7,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,4,0,0,0,0,0,0,14,3,0,0,4,0,0,0,0,0,0,0,0,8,14,4,32,53,25,11,5,4,0,0,3,10,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,0,7,0,4,0,0,0,0,0,0,12,0,0,0,0,3,4,0,0,0,0,0,0,12,0,0,4,4,0,0,0,0,0,0,0,0,11,0,0,3,0,4,0,0,0,0,0,0,3,13,4,4,5,6,7,4,0,0,0,0,0,0,17,0,0
LGA45040,0,4,52,0,0,7,4,4,11,8,0,0,0,0,3,33,0,0,0,7,3,8,5,5,0,0,0,0,25,0,3,12,17,18,51,22,3,0,0,0,8,141,3,13,17,9,10,12,8,0,0,0,0,25,96,48,153,313,416,372,890,271,33,12,7,8,114,2638,0,0,11,3,11,13,4,4,0,0,0,16,52,0,4,5,4,4,0,0,0,0,0,0,0,25,9,8,13,10,6,11,0,0,0,0,0,5,64,4,7,49,27,13,39,13,5,0,0,0,4,158,5,6,111,32,29,64,16,12,0,0,0,17,295,0,6,32,46,52,86,30,4,5,0,0,11,260,0,0,10,50,37,112,40,7,0,0,0,12,262,5,0,19,36,35,113,46,7,0,4,0,13,277,0,6,9,23,41,117,44,7,0,0,0,4,258,0,6,9,23,29,100,66,8,0,0,0,8,244,0,0
LGA45090,0,0,21,0,0,6,9,0,8,5,0,0,0,0,0,25,0,0,0,0,3,3,3,0,0,0,0,0,12,4,0,3,11,6,14,5,0,0,0,0,3,46,0,5,3,5,5,3,0,0,0,0,0,5,29,32,34,142,176,106,174,77,7,0,0,7,54,802,0,0,6,5,0,0,0,0,0,0,0,5,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,6,0,0,0,0,0,0,0,14,0,0,3,13,0,8,0,0,0,0,0,3,24,0,0,13,33,11,7,0,0,0,0,0,0,68,3,0,9,17,7,9,4,0,3,0,0,0,63,0,0,7,8,10,21,10,0,0,0,0,3,64,0,0,11,16,8,18,11,0,0,0,0,6,69,3,0,3,6,7,20,13,0,0,0,0,8,68,0,3,8,8,14,22,10,5,0,0,0,4,75,0,7
LGA45120,0,0,6,0,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,3,0,3,3,0,0,0,0,4,16,0,0,0,3,0,0,0,0,0,0,0,5,10,22,35,59,90,52,42,15,3,0,0,3,16,345,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,6,5,0,0,0,0,0,0,0,0,19,0,0,17,7,11,3,0,0,0,0,0,4,42,0,4,8,9,7,5,3,0,0,0,0,0,42,0,0,4,14,4,6,0,0,0,0,0,0,29,0,0,0,6,11,9,3,0,0,0,0,0,41,6,0,0,4,5,8,5,0,0,0,0,4,25,0,0,4,3,9,8,4,0,0,0,0,8,35,0,0
LGA45290,5,0,180,0,0,0,4,3,10,28,70,59,37,27,3,242,0,0,0,0,3,0,5,29,45,38,43,3,171,6,0,12,14,5,36,64,100,54,17,25,10,343,0,10,15,5,4,9,3,7,0,4,0,20,82,85,220,405,285,207,791,1333,1076,457,188,168,159,5374,5,3,14,4,9,6,28,24,22,7,9,19,137,3,0,12,6,0,0,6,6,0,0,3,0,36,17,15,26,6,0,7,17,4,4,0,0,6,110,6,15,82,33,8,26,25,15,3,0,0,8,221,3,17,131,49,25,35,33,30,3,7,0,15,349,0,11,40,73,35,70,83,45,20,5,5,3,393,0,3,9,19,14,46,90,55,10,4,0,5,272,4,0,21,19,27,52,130,72,25,7,6,10,379,0,0,9,9,25,57,192,132,34,10,6,13,496,0,0,12,17,8,58,177,155,46,16,3,5,493,8,3
LGA45340,6,4,329,0,0,5,4,3,10,61,98,27,4,0,5,236,3,0,0,8,0,3,18,33,7,4,3,6,86,3,8,29,40,33,93,336,221,20,15,6,31,830,9,29,44,34,20,30,46,17,7,0,7,87,329,198,615,1050,1052,679,2288,5889,2418,211,66,68,441,14978,3,6,28,11,8,14,47,32,4,0,0,39,196,3,3,12,11,4,9,8,13,0,0,0,11,76,19,51,83,41,15,32,49,28,0,0,0,22,350,20,57,216,92,40,64,130,41,11,0,0,24,705,14,38,525,114,69,142,213,77,9,3,3,42,1249,12,12,111,162,97,261,459,156,16,5,4,38,1328,3,7,60,146,77,208,545,218,13,0,8,18,1318,3,6,70,86,92,187,648,343,28,5,7,35,1514,10,0,34,56,50,193,702,446,26,4,9,26,1546,6,8,19,42,45,147,680,518,35,12,9,24,1541,3,6
LGA45400,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,9,7,6,0,0,0,0,0,0,12,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0
LGA45540,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,6,9,14,11,50,59,9,3,0,0,0,0,0,7,160,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,23,0,5,4,11,0,0,0,0,0,0,0,0,21,0,0,7,11,3,0,0,0,0,0,0,5,24,0,0,0,0,4,0,0,0,0,0,0,0,17,0,0,3,7,0,0,0,0,0,0,0,0,18,0,0,5,5,0,0,0,0,0,0,0,0,10,0,0,0,8,3,0,0,0,0,0,0,4,12,0,0
LGA45680,0,3,164,0,4,6,6,12,27,45,15,7,0,0,5,128,0,0,3,4,9,12,8,8,0,0,0,4,52,8,8,35,58,59,212,186,38,13,6,3,42,666,12,35,66,53,34,55,35,3,0,0,0,85,375,254,557,1163,1334,1300,3418,3034,461,64,23,34,388,12045,6,9,16,22,27,35,44,13,4,0,0,53,231,4,7,20,11,8,17,15,0,0,0,0,10,98,23,50,74,35,23,52,48,9,0,0,0,24,341,22,63,183,122,47,122,85,9,0,0,0,33,688,8,18,466,161,90,211,137,26,0,0,4,48,1175,13,14,114,162,110,300,297,52,6,0,0,20,1094,10,6,68,160,110,336,409,81,9,3,0,31,1222,4,4,78,102,138,383,480,90,3,5,3,29,1319,4,8,39,80,89,372,540,130,6,4,0,28,1301,0,3,30,57,55,326,509,140,13,4,0,30,1165,5,5
LGA45890,8,8,454,6,8,19,18,3,21,95,184,46,13,7,10,424,0,0,3,6,0,10,35,51,32,14,9,5,164,13,9,65,65,42,133,275,275,43,18,11,39,975,23,66,83,62,30,42,30,27,0,3,3,115,480,329,992,1902,1610,999,2437,4209,3221,402,103,95,631,16924,14,10,42,37,23,33,47,64,13,5,0,52,346,5,13,38,21,11,3,15,10,4,0,0,16,135,28,88,144,94,33,25,37,25,4,0,0,28,504,23,92,392,190,51,76,100,54,4,0,0,47,1041,28,32,689,308,96,139,144,82,15,6,3,58,1607,11,19,168,296,114,173,248,128,19,8,8,39,1229,10,19,82,207,88,260,311,211,36,9,0,52,1286,8,10,103,126,122,272,406,278,33,9,3,46,1421,9,9,65,89,66,279,513,407,70,14,7,44,1557,5,8,47,67,46,207,501,538,95,14,9,33,1574,6,3
LGA46090,0,0,46,0,0,5,10,5,3,14,10,0,3,0,6,50,0,5,0,0,3,3,11,0,6,0,0,5,23,0,7,9,22,11,19,14,8,3,0,0,12,109,8,16,25,17,6,4,5,4,0,0,3,15,103,50,111,334,489,227,264,194,59,7,0,9,123,1867,0,0,8,3,8,0,3,0,0,0,0,3,32,5,5,5,6,0,0,0,0,0,0,0,0,21,7,15,20,9,3,4,4,0,0,0,0,0,65,0,12,37,30,7,5,0,0,0,0,0,5,100,3,13,86,36,23,8,4,0,0,0,0,10,186,0,7,30,53,22,21,11,0,0,0,0,4,154,4,0,18,62,30,23,10,8,0,0,0,8,163,6,5,25,47,23,26,26,0,4,0,0,10,162,0,5,14,48,22,47,18,5,0,0,3,12,164,3,8,14,32,21,32,25,3,0,0,5,11,145,0,3
LGA46300,0,0,48,0,0,0,7,0,5,14,8,5,0,0,0,39,0,0,3,0,0,0,0,3,3,0,0,0,16,0,3,11,9,11,11,27,17,4,0,0,5,104,6,12,11,17,9,14,3,0,0,0,0,16,81,46,135,232,311,195,304,415,140,27,9,7,73,1891,0,4,7,5,3,6,0,4,0,0,0,5,35,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,13,10,3,3,4,3,0,0,0,0,46,3,15,49,26,12,8,3,0,0,0,0,4,124,5,13,71,38,16,16,9,7,0,0,0,8,182,0,6,21,41,32,44,25,7,0,0,0,0,182,0,4,13,48,19,38,37,10,0,0,0,0,168,0,4,12,28,35,40,53,12,0,0,0,6,185,4,3,7,27,30,48,67,12,0,0,4,3,205,0,0,3,19,17,30,56,16,0,0,0,0,147,0,0
LGA46450,0,0,42,0,3,7,0,3,9,6,3,0,0,0,0,31,0,0,0,5,0,5,8,8,0,0,0,7,26,0,0,19,30,12,27,15,3,0,0,0,4,104,4,12,23,19,7,0,3,0,0,0,0,21,85,52,166,388,667,224,301,134,36,5,0,3,90,2073,0,0,5,6,8,4,0,0,0,0,0,6,33,0,0,5,9,0,0,0,0,0,0,0,3,21,7,18,27,25,4,6,0,0,0,0,0,6,93,0,10,61,46,8,10,0,0,0,0,0,7,151,10,9,161,77,32,25,9,0,0,0,0,15,337,0,4,35,91,28,29,14,0,0,0,0,0,206,0,0,17,74,36,41,11,0,0,0,5,3,188,3,0,22,62,36,36,12,0,0,0,0,4,191,0,3,8,51,35,34,20,0,0,0,0,5,163,0,0,11,48,26,34,20,5,0,0,0,8,152,0,0
LGA46510,5,0,95,0,0,0,0,0,7,25,38,24,3,7,0,103,0,0,0,0,0,4,4,18,16,6,6,0,51,0,0,0,3,3,18,50,61,20,6,0,4,174,0,5,4,4,0,3,0,3,4,0,0,12,31,22,72,144,144,96,465,666,546,177,45,25,56,2463,0,7,3,3,6,0,11,8,6,0,0,5,47,0,0,0,0,0,3,0,5,0,0,0,0,19,5,3,8,0,0,0,15,5,3,0,0,3,49,3,11,34,16,0,8,16,9,3,0,0,0,103,0,4,56,12,7,14,18,14,0,0,0,3,138,0,4,27,35,11,25,32,19,6,0,0,4,163,3,0,5,6,7,19,40,17,10,0,0,5,120,0,0,9,0,15,41,73,35,13,3,4,6,193,0,0,0,5,8,43,105,73,19,6,3,8,271,0,0,6,15,3,38,110,85,20,6,0,0,277,0,0
LGA46670,0,0,13,0,0,0,0,0,0,3,4,0,0,0,0,21,0,0,6,5,0,0,5,0,0,0,5,0,15,0,0,7,18,5,6,6,0,0,0,0,4,49,0,0,3,9,9,0,0,0,0,0,0,7,31,40,67,183,348,130,116,78,23,3,0,19,39,1051,3,4,0,6,0,0,0,0,0,0,0,0,16,0,0,5,4,0,0,0,0,0,0,0,0,9,0,0,6,6,3,4,0,0,0,0,0,5,24,0,3,16,23,6,10,0,0,0,0,0,0,57,0,6,24,14,8,17,3,0,0,0,0,4,77,0,4,16,30,21,17,4,0,3,0,0,7,102,6,3,9,27,19,23,10,0,0,0,0,8,93,0,0,12,18,21,17,15,4,3,0,0,5,100,0,0,13,15,18,30,9,0,0,0,0,4,91,3,3,7,17,21,17,20,3,0,0,0,7,105,4,0
LGA46860,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,8,3,14,32,22,33,22,0,0,0,7,7,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,4,5,0,5,0,0,0,0,0,14,0,0,0,3,0,0,3,0,0,0,0,0,8,0,0,0,5,0,7,0,0,0,0,0,0,13,0,0,0,3,0,0,3,0,0,0,0,4,10,0,0,0,0,0,3,4,0,0,0,0,3,18,0,0
LGA46970,0,0,104,0,0,26,42,25,11,13,12,4,5,0,0,146,0,0,16,36,10,9,6,3,0,0,0,0,83,0,0,7,18,13,10,8,8,0,0,0,0,61,0,0,5,0,0,0,0,0,0,0,0,3,9,4,7,149,226,132,121,88,53,5,6,6,25,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,11,3,0,0,0,0,9,0,0,0,0,0,0,5,0,0,0,0,0,12,0,0,0,0,0,0,9,4,0,0,0,0,15,0,0,3,3,0,8,17,4,3,0,0,5,43,0,0
LGA47140,5,8,339,0,0,6,6,5,19,91,72,19,9,5,6,232,0,0,4,0,3,11,24,30,10,5,0,4,94,7,13,37,44,39,134,320,127,22,12,5,47,802,12,28,57,36,39,42,47,13,0,0,0,88,358,203,609,1081,1170,975,2455,5212,1614,230,62,55,521,14201,7,7,34,26,13,37,79,43,11,0,4,51,307,6,6,10,9,8,13,23,9,0,0,0,15,107,21,49,68,34,19,44,49,25,3,0,0,30,337,19,49,227,84,45,88,129,47,9,0,0,24,725,15,25,491,117,80,148,177,63,7,0,0,38,1161,9,12,129,153,95,221,336,144,12,4,0,24,1131,5,13,69,158,92,227,431,186,12,4,0,44,1244,5,6,60,106,106,271,600,195,19,6,4,42,1414,0,4,49,48,94,277,710,274,33,8,6,40,1535,3,9,33,54,58,198,646,369,28,9,5,35,1449,0,5
LGA47290,0,3,4,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,5,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,9,16,3,44,47,14,4,0,0,0,0,0,17,145,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,5,7,0,0,0,0,0,0,0,0,12,0,0,4,3,4,0,0,0,0,0,0,0,9,0,0,5,5,0,0,0,0,0,0,0,5,13,0,0,4,0,5,3,0,0,0,0,0,5,14,0,0
LGA47490,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,6,4,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,13,10,22,38,25,30,15,4,0,0,5,4,159,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,4,0,5,0,0,0,0,3,14,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,0,3,0,3,0,0,0,0,0,4,12,0,0,0,0,5,5,0,0,0,0,0,4,17,0,0,0,4,0,3,3,0,0,0,0,0,19,0,0,0,5,4,5,0,0,0,0,0,5,13,3,0
LGA47630,0,0,16,0,0,4,3,6,7,0,0,0,0,0,5,19,0,0,0,0,6,0,0,0,0,0,0,0,6,6,0,7,6,5,7,0,0,0,0,0,4,27,0,0,10,6,0,0,0,0,0,0,0,0,17,25,19,108,137,91,62,15,0,3,0,0,30,502,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,6,10,3,3,0,0,0,0,0,0,26,0,0,10,12,6,0,0,0,0,0,0,3,45,0,4,4,7,3,7,6,0,0,0,0,0,35,3,0,8,14,3,10,0,0,0,0,0,0,44,5,5,7,8,16,16,0,0,0,0,0,0,55,0,0,8,13,11,17,9,0,0,0,0,9,55,0,0
LGA47700,0,0,210,0,0,0,4,4,14,48,75,16,5,0,0,176,0,0,0,0,0,4,7,26,11,0,3,3,47,0,0,18,17,13,29,128,106,25,0,5,21,374,6,11,24,9,8,13,21,11,3,0,0,33,132,81,252,477,380,269,771,2580,1409,146,17,26,205,6618,0,0,13,6,3,13,15,37,3,0,0,19,117,0,5,7,4,4,0,6,9,0,0,0,3,42,13,22,39,12,9,8,18,5,0,0,0,6,118,5,46,108,22,13,17,26,33,0,0,0,5,286,8,5,249,48,20,38,73,52,5,0,0,13,520,0,4,52,49,24,62,170,59,10,4,3,11,446,9,10,43,67,23,40,162,110,4,0,0,13,476,0,8,29,36,26,54,198,163,17,4,0,15,536,3,4,15,25,34,62,293,231,17,4,0,20,705,0,0,9,21,10,39,219,285,22,0,3,17,629,4,0
LGA47800,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,5,7,4,5,0,0,0,0,0,0,29,0,0,0,9,0,0,0,0,0,0,0,5,12,44,34,101,106,75,37,6,3,0,0,0,32,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,5,3,3,0,0,0,0,0,0,0,15,0,3,5,7,4,6,0,0,0,0,0,3,19,4,3,13,10,0,9,0,0,0,0,0,0,37,0,0,15,11,9,9,4,0,0,0,0,0,49,3,0,3,11,11,10,0,0,0,0,0,3,37,0,0,6,10,6,6,0,0,0,0,0,9,44,5,0,8,14,10,18,0,0,0,0,0,6,65,0,0,9,7,9,7,9,0,0,0,0,5,47,4,0
LGA47910,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,5,3,5,0,0,0,0,0,17,0,0,0,3,0,0,0,0,0,0,0,0,3,9,9,29,68,21,39,27,4,4,5,4,9,232,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,10,0,0,5,7,3,0,0,0,0,0,0,0,25,0,0,3,12,8,7,0,0,0,0,0,0,30,0,0,0,4,4,9,4,0,0,0,0,0,22,0,0,0,6,4,7,0,0,0,0,0,0,20,0,0,0,0,0,7,3,5,0,0,3,3,25,0,0,3,3,5,4,3,0,5,0,0,5,20,0,0
LGA47980,12,6,220,0,0,8,3,6,4,23,93,66,26,33,5,266,0,0,0,0,0,0,7,28,37,26,61,3,156,0,0,9,4,14,25,77,90,48,20,30,9,320,3,3,12,6,4,11,11,7,8,0,3,18,88,49,99,234,259,193,604,1142,954,480,178,191,110,4486,0,0,0,7,0,12,15,8,9,0,3,5,71,4,0,0,0,4,0,7,7,0,0,0,0,21,11,10,15,11,9,3,12,6,0,0,5,5,79,4,9,51,19,6,24,20,15,3,3,0,7,154,3,5,88,36,12,21,30,11,5,7,10,10,224,0,3,26,67,10,53,60,51,7,5,3,9,291,0,0,15,20,23,38,60,61,17,9,3,4,243,0,0,17,11,8,59,90,55,22,3,8,4,281,0,0,10,15,16,62,147,111,39,12,13,3,431,0,0,9,8,9,33,125,108,37,13,13,5,347,0,0
LGA48050,0,0,24,0,0,0,0,0,0,5,6,0,0,0,3,19,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,0,3,6,23,37,4,0,0,0,3,78,0,0,3,3,3,20,3,0,0,0,0,9,45,12,25,105,144,136,405,487,88,10,4,8,51,1473,0,0,0,0,3,0,7,0,0,0,0,0,19,0,0,0,0,0,0,0,4,0,0,0,0,11,0,0,0,3,3,11,5,0,0,0,0,0,29,0,0,8,14,10,20,13,6,0,0,0,3,76,0,0,9,36,11,32,33,11,0,0,3,5,152,5,0,10,35,18,74,52,11,5,0,0,6,216,0,0,12,12,6,36,70,27,4,0,0,10,178,0,0,3,11,10,24,72,14,0,0,6,7,139,4,0,0,8,12,31,62,24,0,0,0,6,150,0,0,4,10,7,25,58,35,0,0,5,8,150,0,0
LGA48130,0,0,22,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,3,10,10,4,6,0,0,0,0,5,31,0,3,0,4,0,0,0,0,0,0,0,0,13,21,22,74,128,104,113,27,8,0,0,3,24,517,0,0,0,3,0,3,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,4,3,0,3,0,0,0,0,0,0,11,0,0,11,16,5,0,9,0,0,0,0,0,35,0,0,12,14,7,9,0,0,0,0,0,0,47,0,0,14,10,12,14,4,0,0,0,0,3,65,0,0,5,11,14,12,4,0,0,0,0,0,46,0,0,7,3,9,15,10,0,0,0,0,6,54,0,0,13,8,5,19,6,0,0,0,0,9,59,0,0,0,4,10,15,5,0,0,0,0,12,47,0,0
LGA48260,5,0,28,0,0,0,0,0,0,5,13,16,5,8,0,50,0,0,0,0,0,0,0,4,8,9,16,0,43,0,0,0,0,8,0,7,14,7,3,5,0,48,3,0,4,5,0,0,0,5,5,0,0,6,30,30,39,90,38,34,47,135,198,93,36,54,32,820,0,3,0,3,0,0,5,4,3,0,4,0,14,0,3,0,0,0,0,0,0,0,0,0,3,9,3,8,0,3,0,0,0,0,0,0,3,0,26,0,8,8,6,4,0,4,0,0,0,0,0,41,0,3,32,10,0,3,5,9,5,0,0,7,68,0,0,3,14,0,3,8,6,0,0,0,0,49,0,0,3,0,3,3,5,18,3,0,0,0,36,0,0,6,3,3,0,7,14,4,0,0,0,44,0,0,0,0,0,7,13,26,6,0,0,3,60,0,0,0,0,0,3,5,26,11,0,3,3,55,0,0
LGA48340,0,0,9,3,0,7,3,0,5,0,0,0,0,0,0,16,0,0,5,3,0,0,0,0,0,0,0,0,14,0,4,10,7,5,4,4,0,0,0,0,7,46,3,9,13,3,4,4,0,0,0,0,0,11,49,41,62,269,297,122,82,32,4,0,3,4,50,964,0,0,0,3,0,0,0,0,0,0,0,3,9,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,10,12,0,0,0,0,0,0,0,0,30,0,3,18,32,4,0,0,0,0,0,0,3,58,0,3,27,47,11,12,0,0,0,0,0,3,101,0,0,26,55,19,12,6,0,0,0,0,5,117,8,5,14,39,18,11,0,0,0,0,0,3,97,4,0,10,36,16,13,0,4,0,0,0,4,89,4,0,15,29,10,10,3,0,0,0,0,4,77,3,0,17,26,11,14,8,0,0,0,0,4,80,8,0
LGA48410,4,5,301,3,0,7,6,4,17,43,110,64,12,11,0,274,0,0,0,0,0,3,10,40,24,6,6,7,101,3,5,17,14,21,59,125,199,62,20,8,18,550,9,20,30,17,7,20,19,9,0,0,0,26,154,158,269,604,656,525,1509,1976,1728,502,102,75,255,8353,3,5,17,15,7,15,28,16,14,3,4,20,147,4,0,10,9,0,3,8,4,0,0,0,9,47,12,40,48,12,9,17,16,12,4,0,3,12,193,12,25,111,37,27,47,39,32,3,5,0,12,355,11,16,235,61,34,68,69,30,12,0,0,18,564,8,11,49,110,50,104,121,76,19,8,6,15,573,4,4,30,57,32,85,115,81,26,3,0,10,453,3,0,41,38,47,129,189,122,31,7,0,21,637,0,4,24,42,44,178,280,190,64,8,9,13,845,0,0,19,39,40,133,291,222,77,11,3,15,860,5,4
LGA48540,0,0,72,0,3,9,22,7,15,26,14,0,0,0,0,95,0,0,0,6,0,0,16,16,5,0,0,4,47,0,4,26,36,27,30,15,11,0,0,0,11,157,8,19,33,20,8,5,10,0,0,0,0,27,125,171,264,715,862,393,430,318,80,15,0,8,150,3404,0,13,15,15,4,5,4,0,0,0,0,14,65,0,14,11,12,0,0,0,0,0,0,0,3,47,16,40,51,32,11,3,6,0,0,0,0,13,170,17,52,130,58,19,4,0,0,0,0,0,13,297,11,16,265,96,21,17,8,6,0,0,0,13,443,3,12,67,82,36,28,25,10,0,0,0,4,264,0,7,57,113,33,38,21,3,0,0,0,7,287,0,10,43,131,50,40,23,3,3,0,0,5,319,4,3,47,90,53,51,32,4,0,0,0,13,294,3,3,42,73,38,42,44,5,4,0,0,9,281,0,3
LGA48640,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,32,20,22,5,0,0,0,0,0,5,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,3,0,0,0,0,0,0,9,0,0,4,4,0,0,0,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,8,8,5,0,0,0,0,0,0,0,15,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0
LGA48750,0,0,4,0,0,0,0,0,0,0,4,4,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,4,12,0,0,0,0,0,18,0,0,0,0,0,3,0,0,0,0,0,0,10,9,8,30,56,57,101,89,23,5,3,4,18,401,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,9,6,0,6,4,0,0,0,0,20,0,0,4,4,5,9,4,5,0,0,0,0,35,0,0,0,15,7,9,15,5,0,0,0,0,55,0,0,0,6,5,9,5,9,0,0,0,5,37,0,0,3,4,3,6,6,9,0,0,0,0,38,0,0,0,5,7,5,11,6,0,0,0,4,42,0,0,0,6,3,3,13,13,0,0,0,0,36,0,0
LGA48830,0,0,15,0,0,0,6,0,3,0,0,0,0,0,0,10,0,0,0,0,6,0,0,0,0,0,0,0,5,0,0,9,7,15,16,3,0,0,0,3,0,50,0,0,10,6,0,5,4,0,0,0,0,4,33,32,64,131,159,141,180,39,14,8,0,12,43,820,0,0,0,0,0,3,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,6,8,3,0,6,9,6,0,0,0,0,0,0,3,30,0,3,11,5,7,5,0,0,0,0,0,7,51,10,10,30,19,14,18,8,0,0,0,0,9,122,5,0,17,27,12,25,5,0,0,0,0,4,96,0,5,15,11,10,33,9,5,0,0,0,7,90,0,0,5,14,12,15,7,0,0,0,0,0,54,6,0,5,8,17,18,8,4,0,0,0,13,80,0,0,10,15,14,26,12,0,0,0,6,9,95,3,0
LGA49399,0,13,22,4,4,3,4,0,0,0,0,0,0,0,6,19,0,0,0,0,0,0,0,0,0,0,0,0,5,23,6,3,0,0,0,0,0,0,0,0,7,43,15,15,0,0,0,0,0,0,0,0,0,15,52,147,93,77,38,10,4,4,9,4,0,9,95,481,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3,6,4,0,0,0,0,0,0,0,0,0,5,23,4,6,9,0,0,0,0,0,0,0,0,8,19,5,5,11,0,0,0,0,0,0,0,0,3,33,4,0,3,4,0,0,0,0,0,0,0,3,17,7,9,3,3,0,0,0,0,0,0,0,0,33,3,6,8,5,0,0,0,0,0,0,0,8,39,6,11,9,3,0,0,0,0,0,0,0,6,40,14,6,4,0,0,0,0,0,0,0,0,13,32,14,12
LGA49499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA49799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA50080,3,0,142,0,0,6,3,4,10,35,35,16,0,0,6,124,0,0,0,3,3,0,13,18,7,0,0,0,53,3,0,12,19,14,25,71,64,12,0,0,4,223,3,0,15,8,7,6,17,9,3,4,0,20,95,52,79,330,365,262,506,1049,756,109,10,20,127,3672,3,0,8,4,4,0,14,10,0,0,0,15,56,0,0,3,6,0,7,5,0,0,0,0,3,24,0,7,12,8,0,12,15,9,0,0,0,9,81,9,5,56,39,21,13,23,9,0,0,0,10,185,3,4,105,57,33,37,53,25,5,0,0,4,321,0,0,41,63,37,58,85,45,7,0,0,11,352,3,4,22,44,28,43,90,47,3,5,3,5,299,4,0,9,28,17,61,104,56,10,0,0,14,306,0,0,11,15,22,54,128,72,10,0,4,16,334,3,3,8,8,21,48,120,91,8,0,0,9,319,5,0
LGA50210,0,4,237,0,0,3,0,5,0,27,73,59,12,8,9,199,0,0,0,0,7,3,10,30,36,7,11,0,106,0,4,11,8,14,21,125,135,69,11,10,27,438,4,7,17,6,4,13,24,19,3,0,0,26,137,53,59,328,299,204,539,1880,1853,504,99,54,184,6066,0,0,4,8,13,25,34,20,8,0,0,33,145,4,0,3,4,6,4,6,5,0,0,0,7,32,3,4,28,13,10,23,26,15,4,0,0,14,141,7,9,48,37,40,39,59,13,4,4,0,12,262,5,3,88,70,38,65,79,38,0,0,0,11,405,3,3,30,65,49,141,150,70,15,0,0,21,548,0,3,17,41,49,123,195,101,15,0,3,14,564,3,3,17,23,51,127,220,110,30,0,4,19,602,0,0,18,26,43,121,265,148,38,6,0,14,670,4,0,5,18,23,115,246,185,48,5,0,11,659,3,0
LGA50250,6,8,133,193,7,11,6,0,4,9,4,8,3,8,24,274,225,9,7,7,0,0,0,0,4,7,13,26,309,98,10,8,0,0,3,0,5,0,0,3,9,140,10,0,8,0,0,0,0,0,0,0,0,5,28,1030,48,97,57,24,23,47,39,27,20,62,154,1620,6,0,0,0,0,0,0,0,0,0,0,5,17,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,11,8,0,4,0,0,0,0,0,0,0,0,0,17,4,3,3,3,0,0,0,0,0,0,0,6,18,9,0,0,0,0,0,0,0,4,0,0,0,20,7,3,0,0,0,0,0,4,0,0,0,5,30,0,0,0,0,0,6,0,0,3,0,5,10,32,9,0,7,0,0,5,0,0,0,0,0,9,47,40,0
LGA50280,3,3,52,0,0,0,0,0,0,9,19,10,0,0,4,48,0,0,0,0,0,3,3,8,4,3,13,3,41,0,0,3,4,0,9,27,52,30,0,3,4,134,0,0,3,5,9,0,4,9,0,0,3,9,46,15,13,100,105,93,145,294,427,123,16,35,67,1426,0,0,0,3,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,5,0,0,0,0,0,11,4,0,10,0,4,0,3,0,3,0,0,0,25,0,0,11,8,5,3,0,0,0,0,0,6,36,0,0,15,5,7,6,13,11,0,0,0,5,66,0,0,7,19,7,11,21,21,4,5,0,0,94,0,0,4,15,4,7,25,28,3,4,0,7,107,0,0,12,0,8,18,24,24,3,3,0,7,87,0,0,5,3,7,14,18,57,11,3,5,0,131,0,0,4,3,8,10,31,50,13,0,0,10,136,0,3
LGA50350,0,0,74,0,0,0,0,0,0,5,38,17,4,3,0,72,0,0,0,4,0,0,8,9,13,3,0,0,37,0,0,13,4,3,5,15,53,29,5,3,7,131,0,0,10,5,0,0,5,4,0,0,0,9,37,26,29,151,111,57,77,316,570,183,30,16,52,1621,0,0,4,0,0,4,4,4,0,0,0,8,30,4,0,0,0,0,0,4,0,0,0,0,0,12,0,3,8,7,0,5,3,5,0,0,0,6,30,4,0,29,10,3,7,20,5,0,0,0,7,84,0,3,50,12,13,9,18,8,5,0,0,3,117,0,3,26,12,14,24,30,17,0,0,0,6,122,0,0,11,14,7,11,25,27,0,0,0,3,108,0,0,9,8,12,12,47,35,5,0,0,0,127,0,0,6,3,5,12,52,52,8,0,0,4,144,4,0,3,3,3,15,38,67,10,0,0,0,139,0,0
LGA50420,11,4,453,0,0,0,5,6,8,41,154,145,50,15,13,437,0,0,0,3,3,3,10,45,94,44,23,6,233,0,4,9,20,14,28,77,223,161,35,18,30,622,0,6,31,11,4,14,21,26,6,0,3,26,139,63,124,460,315,331,635,1604,2553,1266,291,101,237,7972,5,4,18,9,9,21,35,36,8,5,0,17,160,0,4,11,0,4,3,6,6,3,0,0,5,51,7,14,17,21,11,17,14,15,0,0,0,12,136,12,16,79,37,33,61,48,30,7,0,0,17,341,13,9,161,45,42,65,73,57,12,0,0,16,503,3,5,34,51,56,112,151,58,22,3,0,9,506,3,4,22,45,50,101,167,112,21,0,3,14,544,0,0,31,25,55,121,206,155,36,7,3,14,652,0,5,22,30,52,115,245,180,59,8,0,23,734,4,0,10,18,42,110,232,258,69,11,6,15,772,6,0
LGA50490,4,8,326,0,0,8,3,0,7,22,129,127,24,14,4,332,0,0,3,3,3,0,16,41,73,33,9,4,187,0,4,12,19,14,18,80,178,123,33,10,24,523,10,5,33,3,3,3,12,23,0,0,4,31,124,73,97,545,299,170,296,1048,2052,973,169,78,174,5979,0,10,9,7,9,15,37,38,9,0,3,16,155,5,3,7,0,0,3,3,9,6,0,0,8,42,19,29,23,11,8,10,12,5,0,0,0,6,136,14,21,99,34,17,16,37,33,3,0,0,21,292,0,4,226,39,24,25,51,27,8,0,0,25,439,3,3,50,44,28,57,78,53,9,0,0,6,336,3,3,24,39,25,54,112,81,19,5,0,8,381,0,5,20,16,31,73,150,141,28,4,0,16,488,0,0,15,17,24,81,213,215,35,6,7,13,630,5,3,7,21,21,54,232,259,51,9,3,19,680,0,0
LGA50560,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,0,4,4,0,17,11,12,17,12,0,0,0,0,3,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,3,6,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0
LGA50630,0,0,12,0,6,3,0,0,0,0,3,0,0,0,0,16,0,0,0,0,0,0,0,4,0,0,0,0,10,0,0,0,0,0,0,8,5,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,6,21,12,10,9,22,33,45,9,0,0,9,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,5,0,0,0,0,0,9,3,0,0,0,0,0,13,0,0,0,0,3,6,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,3,0,4,7,0,0,0,0,15,0,0,0,0,0,0,3,3,0,0,0,4,13,0,0
LGA50770,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,7,9,6,27,19,14,15,12,4,0,0,0,7,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,9,0,0,6,3,3,0,0,0,0,0,0,0,10,0,0,4,4,3,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,4,6,0,0,0,0,0,7,14,0,0,0,0,4,3,0,0,0,0,0,0,9,0,0,0,0,0,5,3,0,0,0,0,0,9,0,0
LGA50840,0,0,6,0,0,0,0,0,0,4,7,0,0,0,0,8,6,0,0,0,0,0,0,3,0,0,0,0,10,0,0,0,0,0,0,12,3,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,8,13,4,45,46,30,58,93,40,0,0,0,12,332,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,3,0,0,0,0,0,10,3,0,4,11,4,4,7,5,0,0,0,0,35,0,3,7,5,3,7,8,0,0,0,0,0,33,0,0,3,3,5,0,12,0,0,0,0,0,25,0,0,0,6,0,6,13,4,0,0,0,0,27,0,0,0,6,0,3,9,10,0,0,0,0,32,0,0,0,0,0,3,14,0,0,0,0,4,23,0,0
LGA50910,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,5,19,16,11,14,8,0,0,0,0,6,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,0,0,10,0,0
LGA50980,32,11,221,3,4,0,22,19,18,28,18,25,30,61,21,262,0,0,0,6,7,16,13,14,23,17,66,6,180,9,8,24,28,13,30,40,26,28,29,39,22,292,6,8,10,15,0,5,5,4,3,3,10,20,95,154,102,291,290,190,270,319,338,289,195,324,207,2965,4,0,5,4,0,4,0,8,3,0,0,11,35,6,0,8,4,0,0,0,7,0,0,0,3,26,10,7,15,13,4,0,0,0,0,0,3,3,63,11,18,32,37,13,5,7,7,0,0,4,17,145,10,10,51,17,9,6,12,4,0,0,0,15,124,0,9,28,16,7,12,15,7,0,0,0,14,118,7,15,25,18,7,9,18,17,8,3,7,20,157,6,10,24,14,8,12,17,22,11,0,4,22,156,9,8,19,20,17,17,31,46,10,5,9,14,209,5,10,15,12,9,15,40,34,13,4,9,25,199,0,11
LGA51080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,15,20,5,4,0,0,0,0,0,3,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,7,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0
LGA51120,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,5,3,6,18,22,19,12,5,5,0,0,0,0,6,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,3,0,3,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0
LGA51190,0,0,149,0,0,4,5,4,8,42,59,16,0,3,4,145,0,0,0,0,5,0,12,31,22,6,0,0,73,0,0,17,15,6,34,99,90,13,4,0,18,302,4,3,20,17,9,9,26,4,0,0,0,25,114,56,52,333,348,207,638,1489,871,122,32,24,134,4307,0,3,8,8,3,8,11,8,4,0,0,12,71,0,0,7,0,0,5,7,0,0,0,0,5,29,0,11,23,18,12,11,15,3,0,0,0,0,94,4,16,65,22,25,31,24,14,0,0,4,8,223,6,9,105,55,28,54,72,21,5,0,0,20,366,5,0,26,82,48,105,117,39,3,0,0,8,432,3,5,22,45,38,75,126,43,0,0,3,12,378,3,6,6,22,28,97,136,55,7,0,0,11,378,0,6,12,21,21,90,175,97,11,4,3,13,446,0,0,9,9,22,68,152,90,10,5,0,13,380,0,5
LGA51260,0,8,164,0,5,0,3,4,0,10,55,42,4,0,9,135,0,0,0,0,4,4,8,31,21,11,10,0,86,0,0,7,16,11,10,36,128,69,11,6,9,300,0,5,20,9,4,5,7,14,0,4,6,23,95,22,44,287,269,138,192,585,1352,406,52,47,124,3512,0,0,7,4,0,9,6,7,3,0,3,11,46,0,0,0,0,0,0,4,0,3,0,0,5,16,6,7,8,0,0,4,0,9,3,0,4,9,52,0,3,44,20,7,17,19,19,5,0,5,9,141,3,0,82,35,15,21,32,22,4,0,0,9,235,3,0,30,51,22,33,52,63,17,5,4,5,275,0,4,12,34,17,24,65,92,22,5,4,7,293,4,0,10,18,19,29,54,85,28,5,5,8,261,4,0,9,11,12,20,55,113,38,3,8,19,302,0,0,9,3,16,14,65,127,45,15,9,11,317,0,0
LGA51310,31,0,127,0,0,0,0,0,3,12,17,49,47,130,5,269,0,0,0,6,0,0,3,9,23,38,173,0,257,0,0,0,0,3,4,19,26,27,35,74,5,206,0,0,5,3,0,4,6,0,5,3,4,11,37,11,5,40,39,49,158,305,276,302,232,522,53,2006,0,0,0,0,0,9,0,0,6,4,4,5,30,0,0,0,0,0,0,0,0,0,3,0,0,10,0,0,0,0,0,4,0,5,0,0,0,0,14,0,3,3,0,0,7,11,0,5,3,0,0,38,0,0,11,4,11,7,7,6,7,0,0,3,50,0,0,3,4,10,20,26,8,3,0,4,3,82,0,0,0,0,7,21,20,11,9,0,5,0,74,0,0,3,0,13,31,20,19,3,5,10,5,114,0,0,3,0,9,29,37,32,15,7,10,8,149,0,0,0,3,6,34,25,35,11,12,9,0,145,0,0
LGA51330,20,9,510,0,0,3,7,0,6,33,194,144,64,23,11,492,0,0,5,4,0,4,17,70,88,34,29,4,256,8,0,28,30,18,18,82,310,162,43,34,22,762,3,0,24,10,7,6,10,14,6,6,3,40,138,111,96,637,431,239,312,1312,3455,1461,376,223,286,8938,4,0,14,14,9,18,39,51,24,4,3,28,217,0,0,12,5,0,7,13,11,10,0,0,16,76,7,19,23,19,10,8,22,24,7,0,0,13,158,12,14,85,35,15,19,58,52,7,0,0,21,314,4,10,167,43,28,46,78,64,10,0,4,17,473,0,6,54,46,24,53,100,102,26,5,8,20,431,9,8,34,36,31,62,136,124,19,4,0,24,491,5,0,32,34,21,48,164,213,46,14,10,16,599,0,0,26,31,17,56,291,295,73,13,8,30,825,0,5,14,34,19,61,281,344,77,15,10,17,875,0,3
LGA51400,0,0,67,0,0,0,0,4,0,4,30,16,4,0,4,64,0,0,0,0,0,0,0,16,12,4,0,0,34,0,0,3,5,0,0,7,54,13,0,0,4,97,0,0,6,0,0,0,0,0,0,0,0,7,19,8,12,81,111,51,68,208,546,91,18,3,38,1234,0,0,3,0,0,0,0,9,0,0,0,4,20,0,0,0,0,0,3,0,0,0,0,0,0,7,0,3,5,6,0,3,0,0,0,0,0,0,17,0,0,11,13,4,0,8,10,0,0,0,0,45,0,0,34,29,3,10,7,10,4,0,0,0,99,0,4,9,14,5,6,14,8,0,0,0,4,70,0,0,0,20,9,9,23,26,3,0,0,0,91,0,0,0,0,9,9,18,29,0,0,0,4,71,0,0,5,0,6,4,34,39,5,0,0,0,100,0,0,0,8,10,0,27,62,4,0,0,0,116,0,0
LGA51470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,8,5,0,5,0,0,0,0,9,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,11,0,0
LGA51540,5,0,37,0,0,0,5,0,9,0,12,3,0,6,11,45,3,0,3,0,4,3,3,3,0,0,12,4,39,6,0,10,6,4,6,10,11,0,0,0,7,69,0,5,11,3,4,0,7,0,0,0,0,18,44,51,28,117,135,64,97,151,69,31,11,43,69,864,0,0,0,0,0,0,5,0,0,0,0,0,14,0,0,3,0,0,0,5,0,0,0,0,0,12,7,5,8,0,3,3,0,0,0,0,0,0,32,0,5,15,7,0,4,0,0,0,0,0,6,41,6,3,17,13,6,5,6,0,0,0,0,5,56,3,5,7,19,9,4,0,0,0,0,0,5,58,6,3,3,20,3,3,11,9,0,0,3,7,64,0,4,9,8,5,7,14,6,4,0,5,5,72,0,5,7,12,9,10,9,3,0,0,5,6,78,0,4,9,9,10,18,11,3,4,0,4,11,84,5,0
LGA51610,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,3,7,3,0,0,0,5,36,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,4,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0
LGA51680,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,3,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,8,4,0,14,14,5,13,25,38,19,11,0,11,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,3,3,0,0,0,0,14,0,0,0,3,0,0,3,4,0,0,0,0,12,0,0,0,0,0,0,9,6,0,0,0,0,16,4,0,0,0,0,0,6,0,0,0,0,3,11,0,0,0,0,0,0,3,3,0,0,0,0,13,0,0
LGA51710,0,4,18,10,0,0,3,0,0,0,0,0,0,0,3,21,6,3,0,0,0,0,0,0,0,0,0,0,20,0,0,0,5,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,5,7,35,18,13,30,10,7,17,12,17,0,5,35,200,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,4,0,0,0,0,0,0,4,9,0,3,0,7,0,0,0,0,0,0,0,0,13,0,0,0,4,0,0,0,4,0,0,0,4,14,3,0
LGA51750,16,0,41,0,0,0,4,0,0,5,19,21,19,65,8,137,0,0,0,0,0,0,0,7,17,16,72,6,130,0,0,0,0,0,0,11,11,20,19,39,7,98,0,0,0,3,0,0,0,0,0,0,0,10,17,3,0,19,31,26,48,119,205,177,117,262,40,1049,0,0,0,0,0,0,0,0,7,3,9,0,22,0,0,0,0,0,0,4,0,0,0,0,0,13,0,0,0,0,0,3,3,10,3,0,0,0,21,0,0,0,4,0,0,9,0,9,0,6,0,32,0,0,4,0,0,9,9,9,0,3,6,4,45,0,0,0,3,5,7,11,10,11,3,5,0,60,0,0,0,0,0,4,9,16,4,3,5,4,55,0,0,0,0,5,4,9,24,4,10,3,0,73,0,0,0,0,0,6,13,26,11,5,13,6,83,0,0,3,0,5,4,18,18,21,9,10,4,89,4,0
LGA51820,17,8,573,0,0,3,9,8,11,26,196,232,67,38,10,594,0,3,4,4,0,0,7,62,108,53,50,12,298,0,3,24,16,11,26,70,275,209,53,20,39,747,6,7,34,13,10,7,13,29,6,3,6,59,194,91,95,565,439,232,412,1181,3353,1797,336,193,277,8975,4,4,13,11,10,8,25,19,11,5,4,22,148,0,7,0,8,5,5,9,14,5,0,4,9,63,17,18,44,22,15,18,19,21,7,3,3,14,196,8,17,81,49,16,41,58,50,11,4,0,17,350,5,14,218,74,42,53,73,78,13,3,4,17,589,11,6,39,98,46,81,121,138,29,0,9,11,581,0,8,14,56,33,74,131,175,41,6,7,20,554,4,8,35,36,57,81,192,260,72,13,14,12,776,3,11,17,33,48,98,228,343,80,16,7,18,893,0,0,9,10,25,53,223,419,102,16,13,25,906,4,3
LGA51860,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,7,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,9,3,4,19,0,5,8,0,0,0,6,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0
LGA51890,0,0,17,0,0,0,0,0,0,8,3,0,0,0,0,24,0,0,0,0,0,0,5,4,3,0,0,0,16,0,0,3,3,6,4,9,8,0,0,0,6,37,0,0,8,3,3,3,0,0,0,0,0,0,19,9,6,78,103,114,168,125,55,5,0,3,34,705,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,6,3,3,0,5,0,4,0,0,0,0,0,4,14,0,0,14,3,7,14,0,8,0,0,0,3,46,0,0,28,12,16,18,9,0,0,0,0,4,81,0,0,6,13,10,23,11,4,0,0,0,0,63,0,0,7,9,14,14,15,4,0,0,0,0,66,0,0,5,6,11,17,11,3,0,0,0,7,53,0,0,0,9,7,17,13,6,0,0,0,4,54,0,0,0,0,4,21,14,5,0,0,0,4,56,0,0
LGA51960,0,0,22,0,0,5,9,7,10,7,0,0,0,0,5,39,0,0,4,0,4,0,6,0,0,0,0,5,20,0,0,5,8,8,12,7,0,0,0,0,0,35,0,0,0,4,0,0,0,0,0,0,0,0,18,3,10,67,112,83,91,56,9,3,0,0,16,465,0,0,0,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,5,0,0,3,4,0,3,0,0,0,0,0,0,18,0,0,11,5,3,0,0,0,0,0,0,0,29,0,0,8,9,4,0,0,0,0,0,0,0,26,0,0,0,3,4,3,6,0,0,0,0,0,21,0,0,3,5,3,9,4,0,0,0,0,6,24,0,0,3,10,7,13,4,0,0,0,0,0,28,0,0,0,4,5,6,0,0,0,0,0,0,24,0,0
LGA52030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,9,5,17,16,12,23,18,5,3,0,0,8,102,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,0,12,0,0,0,0,3,6,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,3,0,0,5,0,0,0,0,0,0,4,0,0
LGA52100,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,6,5,29,31,14,8,0,0,0,0,0,11,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,8,0,0,4,0,3,0,0,0,0,0,0,0,8,0,0,0,4,9,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA52170,18,0,31,0,0,0,0,0,0,3,16,21,14,59,0,122,0,0,0,0,0,0,0,6,20,11,123,0,166,0,0,0,3,0,0,3,8,14,22,45,0,98,0,0,0,4,5,0,4,0,4,0,4,0,15,0,4,27,16,16,26,53,105,149,92,321,13,805,0,0,0,0,0,0,0,0,0,0,6,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,5,5,4,3,0,0,0,3,9,0,0,0,0,25,0,0,12,0,0,0,0,0,0,0,3,0,22,0,0,0,0,0,3,4,4,4,6,8,0,27,0,0,0,4,5,5,4,6,7,0,0,5,27,0,0,0,0,0,0,5,9,7,3,4,0,30,0,0,0,0,0,0,7,6,5,4,5,0,29,0,0,0,0,0,0,6,6,7,0,6,0,30,0,0
LGA52240,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,18,24,8,11,0,0,0,0,0,10,79,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,6,0,0,3,3,0,0,0,0,0,0,0,0,8,0,0,0,3,4,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,5,11,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0
LGA52310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,5,7,7,0,0,0,5,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,4,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,4,3,0,0
LGA52380,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,3,5,5,4,0,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0
LGA52450,0,0,6,0,0,5,0,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,18,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,21,26,12,31,19,0,0,0,0,9,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,14,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,3,0,0,8,6,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,3,3,0,0,0,0,0,0,12,0,4
LGA52520,0,4,15,0,0,0,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,26,20,15,31,23,5,3,0,0,14,145,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,0,0,8,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,3,0,0,9,0,5,0,0,0,4,12,0,0
LGA52590,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4,8,11,0,0,0,0,24,0,0,0,0,0,6,0,0,0,0,0,8,9,7,3,17,19,31,44,86,54,0,0,8,24,289,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,4,0,0,0,0,0,11,0,0,4,0,0,5,4,0,0,0,0,0,14,0,0,3,0,8,4,10,5,0,0,0,3,25,0,0,0,0,0,9,4,3,0,0,0,0,22,0,0,4,0,0,5,4,3,0,0,0,3,27,0,0
LGA52660,0,0,42,0,0,0,0,3,0,7,28,0,0,0,0,38,0,0,0,0,0,0,6,12,4,0,0,0,22,0,0,0,0,0,5,24,44,7,0,0,4,92,0,0,0,0,0,4,5,6,0,0,0,0,23,3,9,33,37,42,84,325,404,42,0,6,30,1022,0,0,0,0,4,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,3,0,0,0,0,3,10,0,0,3,3,7,0,3,4,0,0,0,9,31,0,0,0,7,7,6,10,5,0,0,0,0,41,0,0,7,8,5,9,16,5,5,0,0,0,60,0,0,0,3,4,9,22,20,3,5,0,4,71,0,3,0,0,7,7,34,26,0,0,0,4,84,0,0,4,0,0,9,41,26,3,0,0,0,89,0,0,0,0,0,9,28,31,8,0,0,4,75,0,0
LGA52730,0,0,16,0,0,0,0,4,7,4,4,0,0,0,0,9,0,0,0,0,0,0,0,3,0,0,4,3,14,0,0,0,8,0,4,12,12,0,0,3,3,46,0,0,0,0,3,0,0,0,0,0,0,0,9,8,12,55,64,38,64,156,90,7,5,8,22,528,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,7,0,0,0,0,0,15,0,0,7,5,5,0,4,6,0,0,0,0,28,0,0,17,10,4,3,5,9,0,0,0,0,46,0,0,3,8,0,7,16,4,0,0,0,0,46,0,0,4,6,3,6,22,0,0,0,0,0,44,0,0,0,0,0,4,12,4,0,0,0,0,32,0,0,3,7,4,0,19,16,0,0,0,0,55,0,0,0,4,0,6,13,9,0,0,0,0,39,0,0
LGA52800,0,9,55,8,11,8,13,11,3,7,6,3,0,0,8,85,4,4,8,8,0,0,4,0,0,0,6,6,48,34,16,38,21,11,16,5,13,4,0,3,17,165,13,0,8,4,0,3,3,3,0,0,0,25,61,359,227,280,145,72,103,78,72,14,10,20,202,1580,0,0,0,0,0,0,0,7,0,0,0,0,11,3,4,0,0,0,0,0,0,0,0,0,0,13,26,24,8,9,0,0,0,0,0,0,0,5,72,27,9,5,4,0,0,3,0,0,0,0,3,51,50,35,33,0,0,4,0,0,0,0,0,6,130,27,9,4,3,5,3,4,0,0,0,0,4,61,45,19,25,11,3,4,4,3,0,0,0,3,114,22,24,28,11,3,6,4,0,0,0,0,8,108,21,23,18,16,6,4,3,5,0,0,0,14,103,27,16,16,15,3,5,7,4,0,0,0,8,101,36,24
LGA52870,0,0,12,0,0,0,0,0,0,0,5,0,0,0,0,7,0,0,0,0,0,0,0,6,0,0,0,0,5,0,0,4,0,0,5,7,4,0,0,0,3,29,0,0,0,3,0,0,0,0,0,0,0,0,12,4,0,36,44,43,51,68,52,5,0,4,16,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,3,0,0,0,0,3,17,0,0,5,9,3,4,7,0,0,0,0,0,34,0,0,0,5,4,9,8,4,0,0,0,0,28,0,0,5,6,6,4,9,6,0,0,0,0,40,0,0,0,0,4,4,13,6,0,0,0,0,29,0,0,3,0,0,6,6,7,0,0,0,0,24,0,0,6,0,0,3,18,10,0,0,0,0,40,0,0
LGA52940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,16,11,0,3,3,0,0,0,0,7,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,6,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA53010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,20,6,4,0,0,0,0,0,0,7,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0
LGA53080,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,3,7,4,6,22,31,0,7,0,0,0,0,0,13,81,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,3,3,0,0,0,0,0,0,5,10,4,0,0,0,0,0,0,0,0,0,0,5,8,0,0,3,4,0,0,0,0,0,0,0,0,6,0,0
LGA53150,0,0,41,0,0,0,0,0,4,4,6,7,7,30,0,57,0,0,0,0,0,0,0,0,14,0,33,0,49,0,0,0,0,0,0,3,8,14,7,16,3,58,0,0,0,0,0,0,0,0,0,0,0,0,13,9,8,30,19,5,34,87,118,115,56,95,11,591,0,0,0,0,0,0,4,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,17,0,0,4,7,0,5,0,0,0,0,0,0,20,0,0,3,0,0,3,5,0,0,0,3,0,18,0,0,6,4,0,5,4,11,7,0,5,0,42,0,0,3,5,0,0,7,8,0,0,0,0,30,0,0,0,0,3,3,7,13,0,5,0,0,33,0,0,0,0,0,7,5,9,11,0,0,0,35,0,0,0,0,3,8,14,16,3,0,3,3,51,0,0
LGA53220,0,7,114,49,12,60,9,13,8,13,12,13,0,0,25,202,61,9,64,7,5,0,5,4,3,0,3,14,177,24,7,20,8,11,10,4,4,4,0,0,12,113,6,5,3,0,0,0,0,0,0,0,0,13,28,297,76,297,118,68,53,66,70,43,4,12,146,1266,0,0,0,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,10,5,4,4,0,0,0,0,0,3,0,0,4,21,9,4,4,0,0,0,0,0,0,0,0,0,20,9,0,0,0,0,0,0,0,3,0,0,0,17,16,5,11,4,0,0,0,0,0,0,0,0,42,20,4,5,3,0,0,0,3,5,0,0,4,45,13,7,11,0,0,0,0,4,0,3,0,8,51,23,6,9,3,0,0,4,5,7,0,9,20,82,35,9
LGA53290,0,4,65,0,0,3,10,4,8,12,22,11,0,0,0,70,4,0,0,5,0,6,7,9,5,0,0,0,41,0,0,8,14,11,18,20,30,8,0,0,7,118,0,4,13,8,6,0,5,6,0,0,0,3,47,32,41,131,197,122,223,313,210,44,4,6,63,1398,0,0,0,3,6,4,4,5,0,0,0,5,17,0,0,0,0,0,0,4,0,0,0,0,0,7,0,0,5,6,4,4,0,4,0,0,0,4,23,0,3,23,12,6,9,3,3,0,0,0,4,60,0,0,39,24,5,12,18,3,0,0,0,11,118,5,0,28,25,16,26,18,4,0,0,0,6,110,0,3,3,10,7,13,26,3,0,0,0,5,74,0,6,3,11,17,15,14,4,0,0,0,9,77,0,0,10,7,7,25,30,19,0,0,0,10,116,4,0,11,13,6,23,30,8,0,0,6,7,111,4,5
LGA53360,6,0,35,0,0,0,0,0,7,0,5,8,3,6,5,37,0,0,3,4,0,0,3,4,12,5,10,3,44,0,0,0,5,3,0,3,8,10,3,6,4,48,3,0,3,0,0,0,0,0,0,0,0,14,28,16,4,44,50,23,39,48,67,76,18,53,49,486,0,0,4,0,0,0,0,0,0,0,4,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,4,3,0,0,0,0,0,0,0,0,12,0,0,11,6,3,3,0,0,0,0,0,4,26,0,0,4,4,0,0,0,4,0,0,0,4,29,0,0,5,0,0,3,0,8,0,0,0,9,30,0,0,0,0,0,7,3,6,0,0,3,4,35,0,0,0,7,0,3,4,7,5,5,0,11,43,0,0,0,0,4,0,4,7,3,0,7,9,40,0,0
LGA53430,27,3,169,5,3,5,0,0,3,13,47,64,76,71,7,282,0,0,0,0,0,0,3,13,28,42,90,0,178,3,4,8,15,6,15,31,65,84,55,55,10,352,3,8,32,15,4,3,9,6,0,5,6,19,112,83,105,502,247,127,184,423,694,600,374,354,143,3837,3,9,12,11,0,6,9,7,6,4,7,7,71,3,0,4,3,4,3,8,4,0,0,0,7,29,16,24,25,19,7,5,3,6,0,0,4,10,116,9,26,98,31,17,18,29,11,4,0,0,15,244,3,5,177,37,9,20,15,15,3,4,3,18,318,6,7,41,26,24,26,44,36,15,4,6,3,227,6,0,18,31,22,31,40,37,17,0,0,10,205,0,0,29,21,17,39,50,48,23,14,7,9,246,0,3,11,10,15,27,58,78,25,13,12,8,257,0,0,6,14,9,28,56,92,34,20,13,10,284,3,0
LGA53570,0,0,11,0,0,0,0,0,4,0,10,0,0,0,0,14,0,0,0,3,0,0,0,3,0,0,0,4,14,0,0,3,6,5,4,5,7,4,0,0,0,24,0,0,6,0,0,0,0,3,0,0,0,9,25,3,4,27,39,28,47,63,69,10,0,4,24,321,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3,0,0,0,0,15,0,3,3,0,0,0,3,0,0,0,0,4,20,0,0,0,5,5,3,9,0,0,0,0,0,26,0,0,4,4,3,0,0,0,0,0,0,0,13,3,0,3,0,0,5,8,3,0,0,0,8,31,0,0,0,0,0,4,6,0,0,0,0,0,21,0,0,0,0,4,3,11,5,0,0,0,4,29,0,0
LGA53640,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,7,5,30,28,23,9,0,0,0,0,0,4,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,3,5,0,0,0,4,4,7,0,0,0,0,0,0,12,0,0,5,0,0,5,0,0,0,0,0,0,13,0,0
LGA53710,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,3,9,10,11,24,10,9,8,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,0,15,3,0,0,3,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA53780,8,6,366,4,0,8,8,4,7,39,144,135,34,3,11,393,0,5,7,5,5,4,13,56,77,16,4,7,193,3,4,18,17,18,19,113,291,128,25,6,34,680,0,0,18,19,3,10,26,31,10,0,6,45,171,66,88,425,487,284,538,1991,3272,1176,151,68,322,8862,4,5,9,14,6,35,46,42,9,0,0,38,223,0,5,10,10,4,5,8,11,3,0,0,3,59,9,19,37,20,13,18,36,6,5,0,3,3,163,6,15,63,67,37,41,72,32,12,0,0,23,369,3,9,112,67,39,78,109,70,10,0,0,28,525,3,6,42,85,77,95,197,119,19,4,3,15,668,3,6,25,58,51,115,265,149,24,4,0,28,732,5,0,30,37,54,139,269,215,27,0,3,28,805,3,0,21,32,43,163,424,281,54,3,3,22,1038,3,0,15,25,31,121,353,349,56,8,3,29,999,5,4
LGA53800,0,0,188,0,0,4,8,13,14,36,60,14,3,0,4,164,0,0,4,0,9,9,20,24,10,0,5,3,82,9,3,27,26,29,46,118,104,15,4,0,31,403,6,0,24,10,12,8,11,5,4,0,3,25,112,63,73,392,449,426,646,1181,719,103,12,25,164,4246,0,4,8,16,6,9,14,10,0,0,0,8,68,0,3,9,5,0,4,4,5,0,0,0,3,28,10,3,18,28,15,23,12,0,0,0,0,14,114,3,5,50,53,35,35,9,0,0,0,5,5,207,4,4,77,68,29,54,16,9,0,0,0,14,287,4,0,34,69,64,66,38,17,0,0,0,4,299,5,0,26,68,65,77,56,17,0,0,0,9,325,5,4,19,58,69,85,90,20,3,0,5,4,363,0,3,16,52,35,80,109,41,0,0,5,11,362,4,5,7,33,34,75,107,44,11,3,3,12,336,0,4
LGA53920,0,8,15,3,0,3,4,0,0,0,0,0,0,0,3,17,4,0,3,0,0,0,0,0,0,0,0,4,14,19,8,12,0,0,0,0,0,0,0,0,19,68,8,0,0,0,4,0,0,4,0,0,0,27,40,135,66,115,40,20,11,16,10,0,3,0,124,558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,16,3,4,5,0,0,0,0,0,0,0,4,42,14,12,3,0,0,0,0,0,0,0,0,5,31,27,15,9,3,0,0,0,0,0,0,0,5,55,11,14,10,3,6,6,0,0,0,0,0,4,47,27,6,12,4,0,0,3,0,0,0,0,0,59,13,17,14,4,0,3,0,3,0,0,0,3,61,12,11,20,7,0,3,4,0,0,0,0,8,68,16,10,17,4,0,4,7,0,0,0,0,11,68,13,11
LGA53990,0,8,107,0,0,0,0,4,3,14,53,17,0,0,0,87,4,0,4,4,0,0,9,20,8,3,0,0,47,3,0,5,9,16,15,47,63,11,3,0,6,175,0,3,4,6,0,10,5,8,0,0,0,12,46,20,16,112,117,124,202,508,668,80,15,6,54,1916,0,0,5,0,0,3,0,6,0,0,0,3,19,0,0,0,3,0,0,0,0,0,0,0,0,13,0,4,0,5,4,5,3,3,0,0,0,0,20,0,6,19,15,9,3,11,10,0,0,0,0,68,0,0,40,15,13,18,24,19,0,0,0,0,133,0,0,5,23,23,29,37,24,3,0,0,5,150,0,0,8,7,15,14,61,29,7,0,0,5,144,0,0,3,10,12,17,44,50,0,0,0,6,146,0,0,8,4,15,32,59,47,3,0,0,4,174,5,0,0,9,10,23,62,77,6,0,0,3,183,0,0
LGA54060,0,0,13,0,0,0,0,0,0,0,3,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,3,0,11,0,0,0,0,0,4,8,15,0,0,0,0,28,0,0,0,0,0,4,4,0,0,0,0,3,12,7,0,63,40,18,55,97,35,9,0,8,32,368,0,0,0,0,0,3,0,4,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,3,4,0,0,0,3,13,0,0,12,9,3,0,9,0,0,0,0,3,30,0,0,11,10,4,4,3,0,0,0,0,0,33,0,4,8,4,9,17,4,0,0,0,0,0,41,0,0,0,10,6,3,7,4,0,0,0,3,33,0,0,0,4,0,9,5,6,0,0,0,4,21,0,0,0,0,0,3,5,3,0,0,0,7,28,0,0,0,0,0,6,4,0,0,0,0,5,20,0,0
LGA54130,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,5,4,8,20,21,12,9,6,0,3,0,0,17,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,8,0,0,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,0,4,7,0,0,4,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0
LGA54170,55,13,605,4,0,3,9,5,8,22,184,231,153,164,18,791,0,0,0,0,3,0,11,57,113,98,187,7,467,0,3,14,11,9,11,32,287,242,104,88,16,820,0,3,8,12,0,3,13,27,15,4,5,36,131,43,49,221,272,162,220,792,3525,2092,758,717,215,9071,0,0,7,6,8,8,22,33,15,8,4,18,126,0,0,0,5,0,0,8,7,3,0,0,3,35,0,7,7,8,7,0,13,23,6,0,0,7,86,3,8,40,26,11,6,37,52,14,9,5,7,219,4,3,60,38,17,27,57,70,19,8,5,20,328,0,4,20,45,21,41,146,141,31,4,6,11,470,4,0,20,22,14,25,103,181,50,16,11,16,461,5,4,14,13,17,44,110,223,70,15,10,13,533,0,0,8,13,9,36,145,332,110,16,15,23,705,3,0,4,12,9,28,123,356,112,27,22,9,719,0,0
LGA54200,4,5,174,0,0,0,0,0,5,17,68,66,16,3,7,184,0,0,0,3,0,0,0,25,41,12,15,0,96,3,0,0,5,9,10,33,120,82,13,9,7,292,4,0,3,3,0,0,7,13,5,0,0,11,52,20,26,161,166,90,149,434,1258,618,95,57,96,3177,0,0,5,3,0,3,9,15,9,0,0,14,56,0,0,3,5,0,0,3,8,0,0,0,4,19,0,8,0,4,6,0,4,9,0,0,0,4,41,0,5,21,18,9,7,16,23,4,0,0,8,110,0,0,51,20,14,8,32,22,10,3,0,4,160,0,0,12,23,12,19,62,57,13,0,3,7,206,0,0,12,9,5,20,65,69,10,4,0,7,195,0,0,13,17,11,22,69,79,20,0,0,10,235,0,0,6,11,6,24,87,150,33,8,3,8,329,0,0,7,5,19,14,76,142,43,6,3,9,317,0,0
LGA54280,6,3,307,0,8,15,32,23,45,73,110,55,27,8,15,414,0,0,5,24,10,19,31,56,44,23,6,11,240,0,0,20,20,13,42,77,82,43,23,8,9,342,0,7,19,9,5,9,15,9,4,0,0,28,98,33,60,289,384,268,571,872,748,290,112,45,151,3825,0,0,8,3,4,4,0,5,0,0,0,9,40,3,0,5,0,0,5,5,0,0,0,0,7,18,6,5,15,3,3,7,3,5,0,0,0,3,48,0,4,20,13,6,7,15,0,0,0,0,5,67,4,7,56,15,5,15,12,5,0,0,0,7,123,0,0,27,16,16,15,20,16,3,0,3,3,125,0,0,16,18,18,17,22,17,0,0,0,4,116,0,4,4,15,22,25,57,11,6,0,0,8,161,4,4,4,13,21,36,52,46,5,0,0,9,195,0,3,18,15,23,39,74,45,9,0,0,13,231,0,0
LGA54310,50,27,362,157,29,36,81,35,48,69,63,45,43,111,99,824,258,21,48,68,38,35,41,63,59,40,113,69,853,65,3,33,20,14,23,33,46,35,17,34,58,382,10,0,7,7,5,0,7,3,5,3,14,38,97,707,134,351,394,191,322,448,503,326,198,460,471,4493,0,0,0,4,0,3,3,4,0,0,4,13,28,0,0,5,0,0,0,0,3,0,0,0,3,12,4,8,10,0,0,5,0,0,0,0,0,4,33,7,3,11,0,0,0,4,3,0,0,0,4,42,5,5,22,3,0,3,4,6,0,3,4,0,55,4,3,10,3,6,6,6,0,0,0,0,3,46,0,7,8,8,9,7,7,4,7,0,0,4,65,0,0,12,9,6,6,9,15,0,0,8,12,88,6,3,9,14,4,15,21,17,14,15,10,16,133,9,3,16,15,14,12,13,18,18,8,8,20,148,26,9
LGA54340,0,0,13,0,0,0,8,0,0,3,0,0,0,0,0,16,6,0,0,0,0,0,3,0,0,0,0,0,10,0,0,9,5,5,4,8,0,0,0,0,3,38,3,0,4,0,0,0,0,0,0,0,0,8,14,16,14,94,102,45,78,48,24,0,0,4,23,443,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,5,4,0,0,0,0,0,0,0,0,14,0,0,14,9,0,3,3,0,0,0,0,0,30,0,0,11,9,5,6,5,0,0,0,0,0,40,0,0,6,18,3,5,0,0,0,0,0,0,38,0,0,12,12,4,9,6,0,0,0,0,0,46,0,0,9,3,3,9,6,0,0,0,0,8,30,0,0,5,13,5,0,3,0,0,0,0,0,28,0,0
LGA54410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,7,11,30,21,9,3,3,0,0,0,0,5,90,0,0,0,3,0,0,0,0,0,0,0,0,5,0,4,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,10,3,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,0,0,0,0,0,10,0,0,3,3,4,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,0,0,9,0,0
LGA54480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,6,3,0,0,0,0,0,0,0,8,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,3,7,0,3
LGA54550,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,6,8,40,37,20,21,17,7,0,0,0,11,166,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,3,0,0,0,0,0,0,13,0,0,0,0,3,6,0,0,0,0,0,0,13,0,0,4,7,4,0,4,3,0,0,0,0,22,0,0,4,3,0,0,7,0,0,0,0,0,14,0,0,0,3,4,0,3,0,0,0,0,0,10,0,0,0,3,4,0,0,0,0,0,0,0,12,0,0
LGA54620,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,24,19,9,8,4,0,0,0,0,8,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,6,0,0,0,0,0,0,3,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0
LGA54690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,10,3,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0
LGA54760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,4,21,5,0,0,0,0,0,0,9,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA54830,0,0,148,0,0,4,0,0,3,9,48,23,0,0,0,90,0,0,0,0,0,0,6,34,4,0,3,0,46,0,0,8,6,12,10,66,121,19,5,0,11,268,0,0,6,13,0,3,13,5,0,0,0,16,69,27,35,213,187,141,340,933,1245,140,26,14,89,3393,4,0,6,0,4,6,14,13,0,0,0,9,67,0,0,4,3,0,0,11,3,0,0,0,3,21,0,10,25,11,8,8,12,3,4,0,0,7,86,7,11,35,22,25,30,27,13,0,0,0,11,175,3,4,73,42,14,42,49,6,3,0,0,11,254,6,0,32,64,33,55,80,42,8,0,0,8,326,0,0,5,39,34,70,80,67,9,0,0,12,316,0,0,11,42,27,78,100,91,0,4,0,8,367,0,0,6,20,33,62,134,110,10,0,0,10,381,6,0,5,11,17,55,125,143,7,0,0,5,384,3,0
LGA54900,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,9,3,20,31,20,6,6,0,0,0,4,12,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,4,8,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,5,0,0,4,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0
LGA54970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,44,18,21,15,3,3,4,0,0,0,0,10,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,0,0,12,9,5,0,0,0,0,0,0,0,0,0,0,16,3,3,0,0,0,0,0,0,0,0,0,0,9,6,3,0,0,0,0,0,0,0,0,0,0,17,4,0,0,0,4,0,0,0,0,0,0,0,13,3,0,0,0,0,0,3,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,3,6,0,0
LGA55040,0,3,0,4,0,3,0,0,3,3,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,9,15,8,27,15,17,13,11,5,0,0,0,32,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,4,5,0,0,0,0,0,0,4,14,8,3,0,0,0,0,0,0,0,0,0,0,13,5,0
LGA55110,3,9,282,0,0,0,3,5,9,38,126,45,20,9,10,272,0,0,0,6,0,6,16,64,28,15,13,0,148,0,3,11,18,11,35,191,297,89,19,7,12,694,12,3,19,14,13,18,39,25,7,0,0,29,179,42,72,396,527,383,920,2389,2544,497,102,73,196,8132,0,0,11,12,0,20,33,33,7,0,0,22,145,0,0,3,9,5,12,11,7,0,0,0,7,51,10,8,28,19,17,34,29,15,0,0,5,17,175,7,14,55,83,40,93,84,42,0,0,0,28,450,9,10,128,117,71,115,139,62,9,3,3,25,691,3,8,57,122,92,214,321,140,15,0,10,21,1001,4,0,24,64,65,173,284,141,15,0,0,16,796,0,0,18,46,49,156,287,165,23,9,0,12,756,0,0,17,38,45,137,287,201,34,7,0,11,771,0,0,14,26,28,84,242,218,44,4,10,11,670,0,4
LGA55180,0,0,19,0,0,0,5,3,0,6,0,3,0,6,0,24,0,0,4,0,0,0,0,0,0,0,0,4,11,5,0,9,11,10,10,14,12,0,0,0,4,68,0,4,12,6,4,3,0,0,0,0,0,3,37,18,18,167,179,94,133,148,36,3,0,6,51,880,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,3,4,8,0,6,3,0,6,0,0,0,0,0,3,33,0,0,20,14,14,0,5,0,0,0,0,0,58,4,0,28,26,7,11,6,5,4,0,0,0,89,6,0,15,28,10,14,7,6,0,0,0,6,77,4,0,0,27,9,11,12,7,3,0,0,0,79,0,0,13,28,13,15,18,7,0,0,3,4,102,3,0,3,8,9,16,28,11,0,0,6,0,79,0,0,3,6,4,9,30,6,0,0,0,6,68,0,0
LGA55250,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,3,7,12,20,40,21,5,4,4,3,0,0,0,17,120,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,12,5,0,5,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,3,7,3,5,3,3,0,0,0,0,0,0,0,7,14,3,3,7,0,0,0,0,0,0,0,0,0,18,5,0
LGA55320,47,8,505,0,0,7,6,3,9,31,149,180,118,168,17,699,0,0,9,9,0,0,10,51,143,102,222,8,555,0,0,11,21,5,9,40,173,179,103,87,16,660,0,0,41,6,6,8,13,25,16,4,10,35,161,59,73,498,295,193,264,795,2176,1630,738,726,229,7675,3,0,11,14,0,12,20,35,18,9,19,13,147,0,3,4,3,6,4,4,4,6,0,6,9,53,8,3,35,14,0,7,12,10,9,0,5,6,108,5,11,69,21,13,20,37,40,16,0,0,13,250,3,4,157,46,27,28,44,58,24,3,0,18,411,3,4,43,43,19,31,116,80,17,0,12,13,394,4,9,18,48,20,46,83,99,33,11,5,15,389,0,0,20,20,16,48,93,139,55,21,9,7,438,3,4,15,24,20,38,121,201,58,26,11,11,533,3,0,7,16,18,26,113,213,92,35,16,20,560,0,0
LGA55390,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,19,5,15,9,0,3,0,0,0,0,0,6,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,4,5,0,0
LGA55460,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,17,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,10,3,0,8,10,4,0,0,0,0,37,0,3,0,3,0,0,0,0,0,0,0,0,10,14,21,66,71,32,72,41,23,0,0,3,29,377,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,5,5,0,0,0,0,0,0,0,0,14,0,0,12,8,3,4,0,0,0,0,0,0,31,0,4,4,13,0,5,0,0,0,0,0,0,25,0,0,6,11,9,3,0,0,0,0,0,0,31,0,0,5,9,5,0,7,0,0,0,0,4,26,0,0,0,4,0,7,3,3,0,0,0,5,30,0,0,4,9,3,15,3,0,0,0,0,0,38,0,0
LGA55530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,11,4,0,0,0,0,0,0,15,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0
LGA55600,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,5,11,4,11,49,34,25,47,23,7,0,0,0,13,213,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,6,0,0,0,0,0,0,12,0,0,4,4,4,9,0,0,0,0,0,0,20,0,0,4,6,6,5,0,0,0,0,0,0,20,0,0,4,0,3,3,4,0,0,0,0,5,18,0,0,3,0,0,4,0,0,0,0,0,0,12,0,0
LGA55670,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,12,9,20,6,0,0,0,4,10,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0
LGA55740,11,4,51,0,0,0,0,0,4,4,9,22,8,29,0,73,0,0,0,0,0,0,3,6,9,14,59,0,93,4,0,3,0,5,7,9,20,3,13,25,0,99,0,0,3,0,0,0,6,0,0,0,0,0,19,11,13,103,58,42,155,213,192,79,73,171,19,1127,0,0,3,0,4,0,6,6,0,0,0,7,23,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,5,0,4,5,10,0,3,0,0,0,35,0,7,10,11,7,15,5,4,0,0,5,6,67,0,3,47,11,12,17,9,0,0,0,5,0,100,0,0,4,5,16,26,17,8,0,0,0,0,86,0,3,3,6,7,12,19,11,8,0,0,4,68,0,0,3,0,13,24,13,17,7,0,3,0,73,0,0,0,3,5,21,32,3,8,0,7,5,85,0,0,0,0,6,15,24,25,15,0,3,4,93,0,0
LGA55810,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,13,13,10,0,0,0,0,0,0,10,52,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,3,0,5,0,0,0,0,0,0,9,0,0
LGA55880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,7,0,14,0,0,0,0,0,0,3,3,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0
LGA55950,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,8,9,9,3,5,0,0,0,3,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA56090,7,0,79,0,0,0,6,0,3,9,15,30,10,3,0,73,0,0,0,3,0,0,0,5,12,13,4,4,43,0,0,6,7,4,0,19,46,36,18,3,9,138,0,0,5,0,0,0,3,5,0,0,0,10,40,15,8,101,95,47,89,245,476,249,80,34,59,1490,0,0,0,0,0,0,4,9,3,0,0,7,18,0,0,0,0,0,0,3,0,0,0,0,3,13,3,3,4,4,3,0,9,4,3,0,0,7,36,0,0,16,5,0,5,5,3,0,3,3,0,58,5,4,26,6,14,14,10,8,0,0,0,7,103,0,0,4,13,9,13,29,25,8,0,0,4,102,5,0,8,3,3,5,29,25,4,0,0,11,98,0,0,7,4,0,13,34,33,4,0,0,0,102,0,0,0,12,4,13,33,45,6,0,0,0,102,0,0,0,3,0,3,33,56,3,3,0,8,123,4,0
LGA56160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0,0,0,4,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0
LGA56230,0,3,41,0,0,0,0,0,0,7,22,4,7,0,0,50,0,0,0,0,0,5,9,11,0,3,3,0,31,0,0,0,4,3,10,24,44,14,0,0,0,111,4,0,3,11,3,3,0,5,0,0,0,4,37,19,0,52,101,73,145,320,354,55,25,8,41,1201,0,0,0,0,3,0,3,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,8,0,3,6,0,0,0,0,0,6,20,4,0,3,9,11,12,6,3,0,0,0,3,52,0,0,11,12,18,13,20,8,0,0,0,3,86,0,0,9,23,19,18,39,8,0,0,0,4,119,0,0,6,11,11,28,53,20,0,0,0,8,134,3,0,4,3,10,19,32,26,6,0,0,5,104,0,0,0,0,11,13,36,25,0,0,0,6,94,0,0,0,4,3,21,33,15,3,0,0,3,87,0,0
LGA56300,0,3,8,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,15,36,15,14,21,4,0,0,0,9,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,4,0,0,0,0,0,6,0,0,0,3,0,0,5,0,0,0,0,0,6,0,0,0,5,0,0,7,0,0,0,0,0,9,0,0,0,0,5,0,4,0,0,0,0,0,12,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,0,12,0,0,0,0,0,0,5,0,0,0,0,0,11,0,0
LGA56370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,23,6,9,7,0,0,0,0,0,7,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,6,0,3,0,0,4,0,0,0,0,0,0,0,11,0,0
LGA56460,0,0,17,0,0,3,0,4,4,3,3,0,0,0,0,17,0,0,0,0,0,5,3,0,0,0,0,0,10,0,0,0,0,4,3,9,3,0,0,0,4,29,0,0,0,6,3,5,0,0,0,0,0,8,19,8,10,48,84,104,130,87,25,7,0,3,35,542,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,14,0,3,10,0,3,3,3,0,0,0,0,0,24,0,0,20,13,0,0,0,0,0,0,0,0,45,0,0,7,3,12,4,6,0,0,0,0,4,39,0,0,4,4,12,7,5,5,0,0,0,3,46,0,0,6,6,8,18,6,5,0,0,0,0,44,0,0,4,5,12,15,9,0,0,0,0,4,51,0,0,0,0,7,14,11,3,0,0,0,3,44,0,0
LGA56580,23,0,78,0,0,0,0,0,8,11,20,27,24,124,5,223,0,0,0,0,4,5,9,5,9,25,187,3,251,0,0,0,0,5,12,7,8,27,23,76,9,163,0,0,4,0,0,0,3,0,0,0,9,3,22,10,24,81,38,19,67,71,182,216,180,547,60,1503,0,0,0,4,0,0,3,3,3,0,8,3,33,0,3,0,0,0,0,0,0,0,0,3,0,17,0,0,6,0,0,0,0,9,0,0,3,5,21,5,0,12,5,0,0,3,6,4,6,3,0,44,0,0,29,11,0,3,5,13,6,6,3,4,81,0,0,13,10,3,3,3,12,0,8,4,0,63,0,0,5,7,0,0,4,12,5,7,6,0,46,0,0,0,0,6,3,9,15,9,7,11,0,57,0,0,4,4,0,4,8,18,7,0,8,8,55,0,0,5,0,0,6,5,15,16,8,10,3,70,0,0
LGA56620,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,9,46,46,0,4,0,0,0,0,0,0,0,0,22,70,199,6,10,0,0,0,0,0,0,0,0,78,293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,3,12,7,0,0,0,0,0,0,0,0,0,0,0,8,18,3,0,0,0,0,0,0,0,0,0,0,22,10,6,0,0,0,0,0,0,0,0,0,0,19,13,0,0,0,0,0,0,0,0,0,0,3,22,13,0,5,0,0,0,0,0,0,0,0,0,24,20,3,0,0,0,0,0,0,0,0,0,4,29,13,0,0,0,0,0,0,0,0,0,0,8,24,28,4
LGA56730,0,0,35,0,0,0,6,6,6,15,9,3,0,0,4,44,0,0,0,0,0,0,3,8,3,0,0,0,20,0,4,4,11,9,12,23,14,9,0,0,3,85,0,4,6,4,0,3,0,3,0,0,0,10,39,16,24,125,120,110,165,222,121,33,5,3,41,987,0,0,0,0,0,3,0,0,0,0,0,0,12,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,6,0,3,3,0,0,0,0,0,4,19,4,5,12,8,3,8,3,0,0,0,0,0,44,0,0,20,15,10,12,11,3,0,0,0,5,82,0,0,10,18,18,24,7,0,0,0,0,0,76,0,0,5,16,8,17,15,3,0,0,0,3,61,0,0,5,15,14,28,15,5,0,0,0,3,78,0,0,3,6,7,34,27,10,3,0,0,7,101,0,4,4,6,8,17,24,12,4,0,0,0,73,0,0
LGA56790,0,0,5,0,0,3,0,0,0,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,3,0,11,0,0,4,5,0,4,9,3,0,0,0,0,27,0,0,5,0,0,0,0,0,0,0,4,6,27,10,6,40,61,44,70,55,19,11,3,24,30,377,0,0,4,0,0,0,0,0,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,12,4,4,7,0,0,0,0,4,28,0,0,0,3,4,12,4,3,0,0,0,3,27,0,0,0,0,0,4,6,0,0,0,0,5,24,0,0,4,3,9,3,4,0,0,0,0,6,34,0,0,3,0,0,0,9,0,0,0,5,9,19,4,0,0,5,0,10,3,0,0,0,3,0,36,0,0
LGA56860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,6,0,0,0,0,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA56930,0,0,13,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,18,0,24,0,0,0,0,0,0,0,0,0,0,9,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,15,17,12,4,47,3,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,3,0,3,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,5,0,9,0,0
LGA57000,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,9,5,10,4,0,0,0,0,3,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57080,30,5,324,3,0,0,4,5,7,18,119,224,146,184,20,719,0,0,0,0,6,8,3,45,96,97,136,5,399,4,3,4,0,5,9,20,119,117,87,79,16,464,0,0,12,4,3,11,31,46,28,13,30,45,225,44,33,255,175,99,287,672,1663,1452,769,770,212,6441,3,3,7,8,5,17,40,68,40,17,19,18,258,0,5,0,4,0,5,13,10,7,4,3,6,51,9,11,19,10,8,4,13,27,19,4,3,8,136,11,8,43,32,11,27,44,39,11,0,4,6,241,0,3,90,36,12,25,23,55,23,0,3,5,282,0,3,21,21,15,55,53,58,29,10,13,12,293,0,0,8,19,13,37,62,62,48,13,13,10,280,0,0,15,15,15,44,77,115,42,18,12,9,362,0,0,4,12,18,60,138,189,77,34,22,18,572,0,0,3,9,16,48,130,229,94,22,16,9,575,0,0
LGA57140,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,8,18,23,14,19,0,4,0,0,0,4,99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,9,0,0,4,0,0,3,0,0,0,0,0,0,12,0,0,0,4,0,9,0,0,0,0,0,0,16,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,4,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,5,0,0,0,0,0,0,8,0,0
LGA57210,0,0,14,0,0,0,0,9,0,0,3,0,0,0,0,5,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,3,3,10,0,0,0,0,0,3,26,0,0,0,9,4,0,0,0,0,0,0,3,12,13,4,36,96,86,85,21,15,0,0,5,16,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,5,3,0,0,0,0,0,0,0,7,0,3,0,5,0,0,0,0,0,0,0,0,16,0,0,7,15,4,12,4,4,0,0,0,0,44,0,0,4,20,8,16,5,0,0,0,0,3,48,0,0,5,9,5,9,3,4,0,0,0,5,37,0,0,0,7,6,10,0,6,0,0,0,0,23,0,0,3,5,4,3,6,4,0,0,0,0,21,0,0,7,3,6,11,8,0,0,0,0,3,37,0,0
LGA57280,19,27,223,89,15,127,27,22,33,53,61,61,32,55,72,642,108,19,151,28,25,35,24,36,34,23,71,69,626,45,5,33,10,6,31,16,32,27,13,19,24,264,11,0,7,3,8,0,3,0,4,0,4,24,72,444,73,543,208,152,268,278,356,243,134,246,346,3283,0,0,5,4,0,4,4,0,0,5,4,15,36,0,0,0,0,0,0,3,0,0,0,0,0,10,4,4,7,5,0,0,0,0,0,0,0,3,34,11,5,20,0,0,0,3,3,3,0,0,7,62,3,0,19,3,3,4,8,5,0,0,0,3,54,0,0,10,6,11,0,7,6,4,0,0,5,41,6,5,16,13,8,4,10,0,3,0,4,5,70,3,3,0,6,8,14,9,8,3,0,0,7,65,4,0,3,11,4,7,11,21,10,4,4,12,106,11,0,7,11,9,23,28,14,9,7,12,18,148,22,5
LGA57350,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,13,15,19,19,8,3,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0
LGA57420,0,0,11,0,0,3,0,0,14,8,0,0,0,0,0,23,0,0,0,0,0,6,0,0,0,0,0,0,10,0,0,0,6,0,3,4,0,0,0,0,0,17,0,0,0,0,0,0,4,0,0,0,0,3,12,8,0,35,17,40,62,40,8,6,0,0,17,224,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,3,0,5,3,0,0,0,0,0,0,18,0,0,0,0,4,5,0,4,0,0,0,0,13,0,0,0,5,0,0,0,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,3,3,0,0,0,0,3,15,0,0,4,5,0,0,0,0,0,0,0,4,14,0,0
LGA57490,5,11,496,0,0,6,0,6,31,59,273,100,23,12,8,501,0,0,3,4,4,10,13,118,65,10,17,4,253,0,0,16,23,35,108,180,551,166,22,11,41,1149,0,3,20,17,5,19,32,30,7,0,3,50,196,50,66,404,427,334,1041,2555,4657,852,130,91,288,10897,0,0,7,12,7,18,42,39,7,4,0,19,161,0,4,3,5,3,13,7,16,0,0,0,4,61,3,16,23,22,19,25,34,29,0,0,0,11,183,4,15,61,64,42,79,80,57,0,0,0,17,424,10,8,144,88,65,92,136,91,6,0,0,27,662,3,10,38,91,82,220,305,158,19,3,0,25,954,8,0,24,66,54,139,317,189,22,4,0,11,837,3,0,17,33,55,155,380,252,30,0,0,22,961,0,7,16,18,44,132,378,332,42,5,4,26,999,0,7,9,23,34,108,351,376,43,4,8,21,972,5,3
LGA57630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57700,3,0,60,0,0,0,0,4,0,4,26,18,0,0,0,58,0,0,5,0,0,0,0,15,7,5,5,0,31,0,0,0,0,0,5,3,42,10,6,3,7,77,0,0,0,0,0,0,0,9,5,0,0,3,18,5,4,18,38,29,40,132,546,160,38,25,38,1072,0,0,0,0,0,0,0,10,0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,18,0,0,0,3,0,0,9,9,0,0,0,0,23,0,0,0,6,4,4,9,17,0,0,0,0,37,0,0,0,11,3,3,22,25,4,0,7,5,81,0,0,0,4,7,5,17,19,8,0,0,0,77,0,0,0,3,4,11,22,41,7,3,0,4,95,0,0,0,0,0,5,28,59,4,0,3,7,114,0,0,0,0,0,3,24,65,19,0,0,3,125,0,0
LGA57770,0,0,7,0,0,0,0,3,0,0,0,0,0,4,6,10,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,7,5,3,0,0,0,0,0,4,26,0,0,5,0,0,0,0,0,0,0,0,0,9,7,0,28,39,27,26,20,11,3,3,22,29,212,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,3,0,4,0,0,0,0,0,0,0,17,0,0,0,0,0,5,4,0,0,0,0,0,4,0,0,3,0,0,0,5,0,0,0,4,6,26,0,0,0,3,0,4,5,0,0,0,0,4,16,0,0,0,3,0,6,3,0,0,0,0,3,18,0,0,3,0,3,0,7,0,0,0,4,0,17,0,0
LGA57840,24,12,310,0,0,0,6,4,4,40,147,145,88,107,13,558,0,0,0,4,0,3,12,41,78,68,134,3,346,0,6,11,11,11,10,61,132,113,60,61,17,496,5,10,14,4,0,11,17,9,7,0,5,24,107,62,72,345,270,125,250,1044,1757,943,411,485,181,5942,4,11,16,3,3,8,33,23,10,0,4,13,132,0,0,0,0,0,5,7,5,0,0,0,5,34,6,18,14,9,3,11,9,12,7,5,5,10,103,8,14,58,21,10,10,42,22,5,0,4,8,209,4,7,108,23,11,26,53,22,9,6,4,20,297,4,3,26,48,15,35,105,60,24,6,4,11,340,5,0,12,29,17,34,78,50,17,10,6,4,255,0,0,19,18,16,51,113,74,24,3,11,7,341,0,0,13,10,13,52,145,113,44,7,10,7,422,0,0,3,19,15,51,161,180,58,20,11,7,530,5,0
LGA57910,95,17,1447,3,0,19,14,10,31,126,455,419,242,273,29,1626,0,0,4,13,8,13,51,192,211,232,336,25,1080,8,10,49,65,34,87,312,705,423,166,189,73,2125,11,23,82,47,28,33,72,85,16,3,12,124,528,272,294,1790,1213,712,1565,5317,8382,3281,1264,1294,762,26145,16,12,58,43,28,48,111,82,39,11,11,83,533,7,8,16,12,5,5,20,16,5,4,4,11,132,38,80,110,65,35,55,73,43,13,3,0,41,574,35,68,348,120,74,120,153,111,14,4,9,36,1089,26,34,662,236,101,159,273,137,31,11,8,56,1727,9,25,180,215,135,240,520,286,54,6,13,55,1731,13,11,79,128,109,232,463,334,63,24,19,30,1506,5,10,68,113,117,271,619,480,102,29,18,36,1869,8,14,49,83,85,356,856,682,159,38,34,50,2410,3,5,41,77,96,336,893,843,172,37,31,47,2587,9,5
LGA57980,30,0,162,0,0,0,0,0,0,19,37,83,74,115,8,341,0,0,0,0,0,5,3,13,40,56,131,0,247,0,0,3,4,4,6,22,27,36,37,61,9,211,0,0,5,5,4,3,4,4,3,0,13,14,55,24,42,203,90,60,165,331,475,472,344,471,62,2735,0,4,3,0,0,3,9,10,5,0,4,8,52,0,0,0,3,0,0,4,7,0,0,0,0,17,3,17,7,0,0,4,0,4,0,0,0,5,57,4,14,41,9,11,14,14,11,3,0,3,4,138,9,3,82,12,4,19,23,21,6,0,3,3,183,9,3,17,14,13,21,24,26,15,0,0,5,157,3,3,11,13,12,18,26,16,9,8,3,4,119,0,0,4,5,4,34,26,26,11,7,5,0,140,0,0,0,4,4,29,36,38,32,11,11,4,176,0,0,8,0,3,24,38,57,27,4,16,0,188,0,0
LGA58050,15,9,477,0,0,3,7,0,8,39,170,123,49,14,8,428,0,0,0,0,3,4,10,62,68,31,16,7,196,0,6,14,34,21,40,115,324,145,27,18,26,773,3,9,36,14,13,8,30,26,10,3,3,46,202,97,105,623,489,305,477,1741,3877,1137,219,149,308,9526,0,3,12,8,9,18,54,40,9,0,0,50,207,0,0,0,11,5,9,7,7,3,0,0,7,58,8,22,39,24,8,19,30,18,6,0,0,14,199,13,20,123,48,26,43,79,51,6,0,0,18,430,9,8,202,80,37,75,128,83,9,5,3,28,659,9,10,54,95,44,114,240,172,23,3,7,17,780,10,0,27,84,46,107,273,206,30,4,5,21,811,3,0,40,50,43,125,303,255,45,10,0,28,909,4,3,17,26,28,124,384,355,46,6,6,27,1029,3,0,12,26,19,89,378,393,79,13,11,27,1055,5,0
LGA58190,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,11,5,0,5,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0
LGA58260,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,11,11,15,10,0,0,0,0,0,5,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,6,6,0,5,0,0,0,0,0,0,0,0,0,0,6,0,3
LGA58330,0,0,8,0,0,0,0,4,0,0,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,9,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,22,24,63,52,5,0,3,5,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,3,4,0,3,3,0,0,0,0,0,13,0,0,0,5,4,3,5,0,0,0,0,0,20,0,0,0,4,3,0,10,4,0,0,0,0,14,0,0,0,3,3,5,7,0,0,0,0,0,21,0,0,0,0,0,6,4,5,0,0,0,0,16,0,0,3,0,0,4,9,5,0,0,0,0,22,0,0
LGA58400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,8,0,0,0,0,0,0,0,0,4,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,12,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,3,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0
LGA58510,23,6,342,0,0,5,3,4,4,30,123,120,56,48,10,397,0,0,0,0,0,3,4,33,66,59,43,9,209,0,3,22,10,7,24,63,154,106,43,31,22,479,4,6,22,7,3,8,17,13,0,0,0,20,104,64,71,445,288,212,519,974,1785,920,318,221,197,6001,0,0,10,9,6,14,25,32,7,4,8,19,142,5,0,0,7,5,9,4,9,0,0,0,0,44,13,16,28,7,7,16,3,17,8,0,0,6,121,14,16,74,21,27,30,32,17,8,0,0,6,249,3,4,113,61,25,43,36,23,12,3,0,15,348,3,0,25,94,41,79,75,48,16,7,3,7,403,4,0,12,37,41,54,66,68,10,0,5,5,305,8,0,25,22,43,79,106,105,31,5,4,9,423,0,0,10,25,30,96,162,141,35,5,3,7,513,0,0,14,24,22,84,163,190,39,8,0,12,550,3,6
LGA58540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,24,7,8,5,3,0,0,0,0,14,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,3,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,3,0,3,0,0,0,0,0,0,0,9,3,0
LGA58570,24,11,395,0,0,3,3,4,9,20,107,215,131,64,5,558,0,0,3,0,0,8,7,36,115,92,121,0,381,0,0,11,9,5,13,36,109,146,91,63,6,495,0,3,16,3,3,9,13,5,13,0,0,6,77,35,58,230,171,139,339,652,1387,1340,611,375,106,5436,5,0,14,9,6,12,21,22,15,8,3,4,108,0,3,4,5,0,0,3,4,0,8,0,0,28,9,8,14,12,3,6,3,8,6,0,8,5,77,0,11,50,37,9,35,19,28,11,0,3,10,211,3,4,94,25,15,25,30,27,9,0,4,14,256,3,4,14,25,25,58,48,29,16,0,0,7,219,0,0,13,11,18,43,65,69,19,12,4,8,263,0,0,14,18,19,56,79,94,31,3,4,4,331,0,0,4,12,22,62,99,138,58,14,4,14,433,5,0,9,18,14,43,111,180,63,18,10,12,477,0,0
LGA58610,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,7,3,27,42,24,21,9,0,0,0,0,15,154,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,9,10,0,0,0,0,0,0,0,0,17,0,5,0,8,3,0,0,0,0,0,0,0,20,0,0,0,4,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,5,0,0,3,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0
LGA58680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,4,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58760,21,8,714,4,0,6,3,6,13,51,262,232,91,34,19,723,5,0,0,6,4,7,17,88,112,63,45,11,349,7,3,17,28,16,27,165,588,292,67,28,42,1286,5,10,24,14,7,12,35,63,22,3,0,59,253,94,82,550,512,297,467,2379,5951,2225,525,233,353,13655,4,3,21,14,3,31,58,79,17,5,0,43,271,0,0,10,10,0,10,13,3,6,0,5,9,70,12,25,34,18,11,21,44,43,4,0,0,16,238,4,21,107,64,28,63,115,68,15,0,0,16,504,16,6,163,81,47,101,160,123,24,0,0,30,757,4,4,39,74,40,151,314,235,41,0,6,23,926,0,8,35,80,58,114,355,324,49,14,7,29,1073,8,0,40,54,51,110,410,400,68,7,7,22,1185,4,0,25,27,23,108,439,527,116,16,9,22,1324,6,3,13,31,22,88,443,620,130,23,10,29,1420,3,4
LGA58820,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,8,0,0,0,0,0,28,0,0,0,0,0,0,3,0,0,0,0,5,12,0,4,22,15,39,50,65,46,8,0,6,13,277,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,6,0,3,4,0,0,0,0,0,5,14,0,0,4,0,10,10,0,0,0,0,0,0,32,0,0,0,0,4,9,13,0,0,0,0,0,26,0,0,3,8,3,9,6,0,0,0,0,0,27,0,0,0,5,0,0,6,4,0,0,0,0,17,0,0,0,0,3,5,8,0,0,0,0,0,18,0,0,0,5,0,5,11,4,0,0,0,0,21,0,0
LGA58890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,4,24,23,0,5,0,0,0,0,0,4,66,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA59100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,9,8,0,6,0,4,0,0,0,4,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0
LGA59170,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,18,11,0,17,6,3,5,0,0,7,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0
LGA59250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4,16,5,3,0,0,0,0,0,0,6,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59310,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,3,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,7,11,40,21,25,18,12,4,0,0,0,9,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,13,0,0,6,4,3,3,0,0,0,0,0,0,10,0,0,4,0,3,5,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,5,4,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,11,3,0
LGA59320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,3,0,0,0,0,0,0,0,3,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0
LGA59330,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,11,19,0,9,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0
LGA59340,6,7,101,0,0,19,16,9,10,4,16,13,10,22,21,134,3,0,12,11,0,5,7,11,3,9,14,13,86,8,11,10,12,8,7,8,17,18,6,3,8,125,0,0,7,12,0,0,6,7,3,0,0,18,55,90,77,214,186,97,110,102,159,121,64,85,123,1415,0,0,0,0,0,3,0,4,0,0,3,13,25,4,0,0,0,0,0,0,0,0,0,0,0,15,6,5,7,0,0,0,4,0,0,0,0,6,37,10,3,9,5,3,3,0,4,0,0,0,8,54,8,11,7,4,0,0,4,0,0,0,0,7,49,6,0,6,8,3,7,10,4,0,0,0,3,56,10,6,11,5,3,3,6,0,5,0,0,9,50,17,7,6,13,4,8,14,8,0,0,0,4,84,5,9,14,9,13,12,14,12,0,3,5,14,117,3,10,14,13,8,16,10,17,5,3,6,17,126,4,10
LGA59350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,4,0,3,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,3,3,0
LGA59360,0,0,3,5,0,0,0,0,0,0,0,0,0,0,3,10,5,0,0,0,0,0,0,0,0,0,0,0,8,0,0,5,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,0,0,15,4,24,25,15,10,4,0,0,0,0,16,105,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,5,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,4,8,0,0,4,0,4,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,13,0,0
LGA59370,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,5,7,0,0,0,5,28,0,0,5,0,4,0,3,0,0,0,0,0,7,9,11,26,22,22,41,76,32,0,0,4,14,261,0,0,0,6,0,0,0,3,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,3,5,4,6,0,0,0,0,0,4,15,0,0,9,9,0,0,4,0,0,0,0,0,19,0,0,0,0,7,4,9,0,0,0,0,0,25,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,5,0,4,6,6,0,0,0,0,19,0,0,3,0,3,5,4,3,0,0,0,0,17,0,0,0,4,0,3,6,6,0,0,0,0,16,0,0
LGA59499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA60210,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,6,5,0,0,0,0,0,0,27,0,0,0,4,0,0,0,0,0,0,0,4,13,29,24,69,112,128,109,34,9,0,0,0,29,544,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,0,0,0,9,0,3,5,0,0,4,0,0,0,0,0,0,20,3,4,5,9,0,0,0,0,0,0,0,0,29,0,0,18,20,8,13,4,0,0,0,0,5,77,0,0,9,15,15,28,12,0,0,0,0,3,92,0,0,4,10,14,18,18,3,0,0,0,3,69,0,0,5,11,3,17,12,0,3,0,0,3,49,0,0,0,5,7,12,15,9,0,0,0,0,52,0,0,0,7,0,12,10,4,0,0,0,6,47,0,0
LGA60410,0,3,28,4,0,7,3,0,0,0,5,0,0,0,0,27,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,6,20,25,20,21,8,0,0,0,5,112,5,6,11,19,13,8,0,0,0,0,0,15,73,45,61,187,370,319,420,295,105,20,4,4,80,1903,0,0,4,5,5,9,5,3,3,0,0,0,33,0,4,0,3,4,0,0,0,0,0,0,0,14,10,0,13,15,6,4,8,4,6,0,0,4,68,5,0,22,41,14,14,9,0,0,0,0,7,124,0,0,25,73,33,38,25,23,0,0,0,10,243,0,4,18,44,33,37,38,32,5,0,0,3,211,0,0,9,24,32,52,57,38,8,0,0,9,223,0,0,9,19,23,33,48,56,3,3,5,6,210,0,0,10,11,18,61,68,70,6,0,0,6,253,0,0,4,7,17,33,61,42,12,0,0,0,175,4,0
LGA60610,0,0,33,0,0,4,4,5,3,6,8,0,0,0,4,38,0,0,0,3,0,3,5,0,0,0,0,0,14,0,0,6,21,21,18,25,3,0,0,0,5,110,0,3,13,20,9,9,0,7,0,0,0,16,73,37,75,288,601,464,507,248,60,7,6,3,78,2376,0,0,6,9,5,5,0,0,0,0,0,10,39,0,0,7,3,0,0,0,0,0,0,0,0,18,0,11,22,22,5,13,0,3,0,0,0,4,78,0,8,44,45,21,26,14,6,0,0,0,6,163,3,0,52,83,26,48,22,4,0,0,0,10,252,0,3,41,84,46,77,35,5,0,0,0,6,296,0,0,13,48,48,76,57,8,0,0,0,4,255,4,5,6,29,47,87,63,4,0,0,0,5,246,0,3,7,28,32,87,63,10,0,0,0,3,242,0,0,3,18,25,78,65,21,3,0,3,6,226,0,0
LGA60810,0,0,29,0,0,4,6,0,4,7,0,0,0,0,0,22,0,0,0,0,0,6,5,4,5,0,0,0,19,0,0,9,7,11,35,18,4,4,0,0,0,93,0,11,15,9,10,18,3,0,0,0,0,15,85,45,69,238,357,326,452,279,62,9,0,6,67,1910,0,0,5,4,0,3,0,0,0,0,0,0,22,0,0,0,0,0,0,3,0,0,0,0,0,14,7,9,5,15,8,0,5,0,0,0,0,7,53,3,4,32,22,12,21,6,0,0,0,0,5,118,14,10,60,42,31,44,17,6,0,0,0,13,230,0,4,30,51,51,61,46,4,0,0,0,3,253,3,0,19,32,21,60,61,4,0,0,0,0,208,3,3,5,9,24,46,44,8,0,0,0,0,156,0,0,4,11,26,50,42,19,0,0,0,14,175,0,0,0,7,11,37,47,21,0,0,0,3,132,0,0
LGA61010,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,23,9,33,35,19,14,3,0,0,0,0,19,155,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,4,0,0,0,0,0,0,15,0,0,7,3,0,6,0,0,0,0,0,0,16,0,0,3,0,6,5,0,0,0,0,0,4,14,3,0,0,0,3,0,0,0,0,0,0,0,15,4,0,0,5,0,0,4,0,0,0,0,0,17,6,0,5,3,5,0,0,4,0,0,0,5,27,4,0
LGA61210,0,0,16,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,7,0,4,9,6,10,18,0,0,0,0,0,3,48,0,0,10,6,3,6,0,0,0,0,0,7,33,25,33,110,174,109,139,37,5,0,0,6,52,693,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,6,0,0,14,4,9,8,0,0,0,0,0,0,30,0,0,23,17,9,14,0,0,0,0,0,5,70,0,0,11,10,25,9,0,0,0,0,0,5,67,0,0,4,12,15,18,9,0,0,0,0,0,61,0,0,4,9,11,20,9,0,0,0,0,3,55,6,3,3,4,17,20,10,3,0,0,0,5,70,5,0,3,6,3,14,8,5,0,0,0,4,59,3,0
LGA61410,0,3,139,4,4,4,3,0,10,20,46,26,0,0,5,117,0,0,0,0,0,0,7,24,9,0,0,0,46,0,5,11,27,17,60,75,67,18,6,0,10,300,6,11,25,11,12,24,8,6,3,0,0,31,140,84,170,413,466,348,879,1239,765,145,26,24,128,4686,0,5,12,10,5,4,7,17,10,4,0,12,77,0,4,3,4,0,0,4,0,4,0,0,0,18,10,14,20,12,9,7,8,0,0,4,0,7,96,3,11,94,32,14,16,13,21,0,3,0,9,220,7,8,138,71,21,33,48,47,8,0,3,13,407,10,0,44,76,39,63,89,79,14,3,0,15,434,0,0,25,39,29,53,76,104,23,5,3,12,365,0,0,18,28,34,53,99,136,35,12,0,8,432,4,0,12,23,21,53,112,172,54,9,4,13,479,0,0,11,14,12,32,110,176,78,19,7,14,476,0,0
LGA61510,0,0,17,0,0,0,0,0,6,0,0,0,0,0,0,7,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,7,5,10,9,4,0,0,4,0,44,0,0,5,5,9,9,0,0,0,0,0,8,40,39,33,112,164,113,251,115,24,5,0,4,32,898,0,0,0,0,0,0,3,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,8,3,0,7,4,0,0,0,0,0,27,3,11,10,7,6,6,8,0,0,0,0,3,58,4,5,34,8,17,9,9,12,3,0,0,5,98,0,0,6,23,18,15,17,4,0,0,0,3,91,0,0,3,10,13,11,23,10,4,0,0,6,81,0,3,0,11,7,7,23,25,0,0,0,3,88,0,0,6,3,5,16,36,25,0,0,0,0,85,0,5,0,4,7,9,39,23,5,0,0,3,91,0,0
LGA61610,0,0,32,4,0,0,4,3,8,12,9,0,0,0,3,47,0,0,3,0,0,0,4,3,0,0,0,0,17,0,7,17,23,24,57,29,3,0,0,0,3,163,4,6,20,12,15,15,0,0,0,0,0,21,96,71,127,386,516,506,957,457,85,10,6,7,103,3223,0,0,7,13,0,3,7,0,0,0,0,10,45,0,4,3,4,0,5,0,0,0,0,0,0,29,5,18,25,18,3,12,9,3,0,0,0,8,102,5,11,58,34,25,21,23,7,0,0,0,7,187,11,10,96,69,40,68,44,6,0,0,0,17,358,0,3,38,69,54,100,84,11,8,0,0,11,382,4,0,20,45,67,108,97,15,0,0,0,12,363,5,0,30,37,51,122,84,28,0,0,0,11,367,5,0,16,29,34,89,95,20,3,0,4,6,301,0,0,12,16,33,67,110,34,3,0,0,10,291,0,0
LGA61810,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,14,11,5,0,6,0,0,0,0,35,0,0,4,4,0,0,0,0,0,0,0,0,12,34,37,90,132,100,81,28,4,5,0,0,37,544,0,0,0,0,0,0,4,0,0,0,0,5,8,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,7,0,4,8,11,0,4,4,3,0,0,0,0,29,0,0,25,14,8,7,3,0,0,0,0,3,62,0,0,9,20,9,14,12,4,0,0,0,6,67,3,0,8,12,9,12,16,5,0,0,0,3,70,0,0,7,3,13,16,5,0,0,0,0,4,49,0,0,5,10,7,6,12,6,0,0,0,4,50,5,0,3,4,8,14,6,5,0,0,0,4,50,8,0
LGA62010,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,4,21,16,51,17,7,0,0,0,0,0,0,16,130,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,13,0,0,5,7,0,0,0,0,0,0,0,0,15,0,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,7,0,0,0,0,0,0,0,0,0,9,0,5,0,3,0,0,0,0,0,0,0,0,10,0,0
LGA62210,0,0,5,0,0,0,0,0,0,3,0,0,0,0,6,8,0,0,0,3,0,0,0,3,0,0,0,0,5,0,0,0,11,7,8,3,4,0,0,0,0,45,0,0,4,3,0,7,0,0,0,0,0,0,25,18,37,125,263,158,88,44,9,0,0,3,23,772,0,0,0,0,6,4,4,0,0,0,0,0,14,0,0,4,4,0,0,0,0,0,0,0,0,13,0,5,4,3,3,4,3,0,0,0,0,0,24,0,5,12,18,13,15,4,0,0,0,0,0,65,0,9,41,23,16,16,8,0,0,0,0,3,112,0,0,16,27,15,22,6,5,0,0,0,0,99,0,0,3,8,15,16,17,0,0,0,0,3,60,0,0,8,15,14,25,18,8,0,0,0,7,79,0,0,9,14,14,18,14,3,0,0,0,0,74,0,0,4,4,3,19,18,4,0,0,0,0,55,0,0
LGA62410,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,4,0,3,5,6,4,0,0,0,0,0,0,22,3,0,3,4,0,4,0,0,0,0,0,4,14,13,14,44,98,83,76,24,3,6,0,6,18,391,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,6,0,0,3,0,0,0,0,0,5,0,0,4,3,0,5,0,0,0,0,0,3,19,0,0,0,5,7,7,0,4,0,0,0,0,24,0,0,10,12,11,15,12,0,0,0,0,7,63,0,0,3,7,0,8,13,4,0,0,0,0,39,0,0,6,6,0,15,8,4,0,0,0,4,45,0,0,0,5,6,11,9,8,0,0,0,0,40,0,0,0,0,6,3,9,5,0,0,0,0,25,0,0
LGA62610,0,0,92,0,0,3,5,0,6,22,15,3,0,0,0,60,0,0,0,0,0,12,4,7,3,0,0,0,23,4,0,15,28,28,47,99,55,7,4,0,10,303,5,21,37,33,14,16,17,10,0,0,0,33,180,105,279,775,789,591,1187,1725,510,47,20,17,183,6218,0,6,16,10,5,8,11,14,12,0,4,14,96,4,3,6,7,5,0,7,3,0,0,0,8,41,15,29,40,23,11,22,13,14,3,0,0,10,188,17,35,125,53,21,24,42,26,0,0,4,13,348,3,13,268,95,40,64,71,63,9,0,0,21,652,6,11,64,111,51,78,120,106,20,3,4,10,583,0,3,33,86,39,78,97,126,23,6,0,15,516,3,0,58,55,59,75,135,150,31,5,4,13,596,0,0,21,30,26,78,164,225,59,12,0,18,638,0,3,8,33,20,60,137,275,64,12,5,12,614,4,0
LGA62810,13,10,267,0,0,7,8,4,12,30,100,86,39,19,12,322,0,0,0,0,0,0,3,42,47,25,30,0,154,3,0,14,22,19,34,102,146,86,35,20,13,502,5,17,14,23,14,12,9,10,5,3,0,16,120,106,170,465,706,530,983,1422,1408,659,215,137,156,6968,3,0,10,8,5,14,28,37,31,13,13,13,180,3,4,4,6,7,8,4,14,12,5,6,4,59,8,10,29,23,15,7,14,8,9,5,8,8,143,6,18,63,37,26,25,35,22,17,4,3,16,264,10,10,157,72,32,42,50,30,20,8,6,9,439,4,6,61,101,32,58,80,74,28,17,11,11,487,0,3,17,52,23,49,86,67,36,14,13,19,373,3,0,18,46,24,46,90,128,59,22,17,17,481,0,5,10,31,27,62,144,177,92,35,21,11,613,0,0,11,25,13,60,139,210,119,51,22,17,678,3,0
LGA63010,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,0,5,3,0,0,0,0,12,0,0,3,4,10,17,14,4,0,0,0,0,57,0,0,4,7,6,8,3,0,0,0,0,6,30,25,13,101,134,163,266,257,33,8,3,3,30,1036,0,0,4,6,0,0,4,4,0,0,0,5,14,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,11,0,0,8,8,4,7,9,7,0,0,0,0,50,5,0,17,20,25,11,14,6,3,0,0,9,100,0,8,6,14,28,20,25,13,0,0,0,3,122,0,0,5,5,10,28,33,14,3,0,0,6,104,0,0,4,7,16,23,32,20,0,0,0,0,107,3,0,3,10,4,11,41,26,10,0,0,3,111,3,0,3,12,0,18,23,25,0,0,0,0,80,0,0
LGA63210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,7,0,0,0,0,4,7,4,0,0,0,0,0,21,5,0,0,0,3,5,0,0,0,0,0,3,20,13,5,40,70,62,61,36,7,0,0,4,22,313,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,5,0,3,0,0,0,0,0,0,0,12,5,0,15,11,0,3,4,0,0,0,0,3,45,0,0,7,4,5,4,0,0,0,0,0,0,22,6,0,0,4,5,13,0,0,0,0,0,0,27,3,0,3,7,3,8,8,0,0,0,0,0,37,0,0,0,9,4,9,5,0,0,0,0,3,24,0,0,0,0,8,5,8,0,0,0,0,0,28,0,0
LGA63410,0,0,6,4,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,0,3,0,0,0,0,0,0,0,11,0,0,0,5,0,0,0,0,0,0,0,0,6,37,3,46,40,18,7,10,4,0,0,0,16,182,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,0,3,3,5,0,3,0,0,0,0,0,3,19,0,0,6,3,0,0,0,0,0,0,0,0,9,0,0,7,0,4,3,0,0,0,0,0,0,13,0,0,3,5,8,0,0,0,0,0,0,0,18,0,0,0,0,3,0,0,0,0,0,0,0,14,0,0,0,3,0,0,4,0,0,0,0,0,15,6,0
LGA63610,0,3,89,0,0,0,0,0,3,9,32,20,6,0,5,81,0,0,0,0,0,0,8,10,10,3,0,4,35,0,3,3,9,6,19,50,54,22,7,0,16,184,0,3,9,5,8,6,12,0,0,0,0,11,54,32,70,179,231,127,319,873,644,116,34,13,85,2727,0,0,6,5,0,4,5,11,5,0,0,5,40,0,0,0,0,0,0,0,6,0,0,0,3,10,0,5,10,5,0,3,0,6,3,0,0,3,37,0,12,28,15,3,9,9,12,9,0,0,0,93,7,0,73,40,21,12,22,14,8,6,3,9,225,4,0,14,37,14,27,44,47,24,5,0,13,236,4,0,13,18,8,25,48,54,22,8,0,3,199,0,0,8,20,12,23,33,89,25,10,0,10,238,0,0,4,11,11,17,53,108,45,11,4,9,264,5,0,3,6,16,13,45,122,52,11,5,10,283,4,0
LGA63810,0,0,17,0,0,0,5,0,10,6,3,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,3,6,3,9,20,7,0,0,0,0,56,0,0,4,4,6,4,3,0,0,0,0,9,28,5,21,71,151,146,252,201,56,0,0,3,35,942,0,0,0,0,0,6,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,4,5,0,0,0,0,0,13,0,0,7,7,5,4,4,0,0,0,0,4,38,0,4,14,27,17,27,9,5,0,0,0,6,103,0,0,3,23,14,40,24,0,0,0,0,0,115,0,7,3,10,13,39,22,5,0,0,0,6,109,0,5,7,8,8,46,26,7,0,0,0,0,115,0,0,7,6,10,38,40,12,0,0,0,3,112,3,0,4,4,11,23,39,10,5,0,0,5,104,0,3
LGA64010,0,4,136,0,0,5,8,9,16,46,36,14,5,0,3,144,0,0,0,3,3,12,13,18,10,0,3,0,70,8,7,24,48,54,99,139,60,13,3,0,15,462,10,9,48,45,29,24,20,9,3,0,3,51,250,201,279,892,1536,1168,1808,1765,571,102,23,35,256,8641,3,0,21,16,9,21,23,15,5,0,0,12,129,5,0,12,15,4,8,9,3,3,0,0,4,58,14,33,48,50,29,37,17,5,0,0,0,8,238,12,30,107,100,58,55,47,18,5,0,0,10,438,9,20,203,164,77,123,76,35,4,3,0,16,734,3,15,84,168,131,189,151,53,8,0,0,23,822,0,12,49,114,95,209,207,77,8,7,0,18,797,5,4,43,120,118,222,227,120,17,5,4,22,908,7,4,22,89,101,211,310,180,35,0,4,23,985,0,0,19,49,55,182,299,204,33,6,3,19,874,3,3
LGA64210,0,0,23,3,0,5,0,0,6,4,6,0,0,0,0,26,0,0,4,0,0,0,3,3,3,0,0,0,13,0,0,7,8,5,17,28,10,0,0,0,3,80,0,3,9,7,0,3,0,0,0,0,0,4,23,37,51,163,278,215,318,289,73,16,4,3,64,1510,0,0,4,0,0,0,3,0,3,0,0,0,20,0,0,0,3,4,0,3,3,0,0,0,0,14,3,4,4,9,6,0,3,0,0,0,0,5,33,0,8,16,14,10,14,5,3,3,0,0,6,81,0,6,29,25,20,28,26,7,0,0,0,10,138,0,4,19,45,20,63,27,7,3,0,0,6,194,0,0,12,22,22,45,40,10,0,0,0,5,154,0,0,9,18,33,38,49,24,5,0,0,4,175,0,4,5,16,22,27,57,26,4,0,0,4,165,0,0,3,10,15,30,49,31,9,0,0,12,161,0,0
LGA64610,0,0,19,0,0,0,0,6,6,3,0,0,0,0,0,16,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,3,6,5,8,13,4,0,0,0,8,51,0,0,5,8,0,3,6,0,0,0,5,9,39,39,45,142,202,121,247,178,28,10,3,5,58,1068,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,6,0,0,0,0,0,15,0,0,18,9,9,5,3,0,0,0,0,3,42,5,5,44,19,7,19,10,0,0,0,0,3,106,0,0,17,42,17,28,15,6,0,0,0,7,126,4,0,12,16,13,23,34,7,0,0,0,11,110,0,0,3,21,19,24,31,14,0,0,0,0,115,4,0,0,13,15,18,34,8,5,0,0,0,98,0,0,7,14,16,16,27,15,0,0,0,5,108,8,0
LGA64810,0,0,20,0,0,0,0,0,4,9,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,7,11,11,22,13,0,0,0,0,59,0,0,0,5,7,3,8,0,0,0,0,6,28,12,13,57,129,112,221,350,134,7,6,4,25,1062,0,0,0,0,0,0,3,3,0,0,0,4,9,0,0,0,0,0,0,3,6,0,0,0,0,8,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,10,3,3,4,12,6,0,0,0,3,43,0,0,20,6,10,12,13,15,8,0,0,0,87,0,0,5,12,9,15,35,27,4,0,0,0,113,0,0,0,14,0,12,20,40,3,0,0,0,102,0,0,0,0,13,11,29,37,10,3,0,4,110,0,0,4,0,3,11,29,43,11,0,0,8,114,3,0,3,6,8,10,31,57,12,0,3,3,132,0,0
LGA65010,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,5,3,4,0,0,0,0,3,24,0,0,0,4,0,0,0,0,0,0,0,6,8,22,15,48,53,39,49,51,13,0,0,0,15,314,0,0,0,0,0,0,3,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,3,3,0,0,4,4,0,0,0,0,20,4,0,8,5,4,11,6,4,0,0,0,3,39,0,0,6,12,0,4,8,0,0,0,0,0,26,0,0,3,0,0,4,10,6,0,0,0,3,26,0,0,3,3,4,9,9,5,0,0,0,3,36,4,0,0,0,0,3,0,4,0,0,0,0,17,0,5,3,0,0,3,10,10,0,0,0,3,30,3,0
LGA65210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,18,41,32,24,17,3,0,0,0,6,152,0,0,0,0,5,0,5,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,4,9,8,0,3,0,0,0,0,0,23,0,0,0,0,9,8,8,0,0,0,0,5,30,0,0,0,0,7,0,4,3,0,0,0,4,11,0,0,0,3,3,4,3,4,0,0,0,7,22,0,0,3,3,0,4,0,0,0,0,0,3,15,0,0,0,3,0,0,4,4,0,0,0,4,12,0,0
LGA65410,0,0,19,0,0,5,0,3,4,7,0,0,0,0,5,21,0,0,0,0,0,0,0,0,0,0,0,0,8,0,3,0,5,11,19,13,4,0,0,0,0,57,0,4,7,8,8,12,0,0,0,0,0,6,44,27,75,211,244,200,329,153,35,10,3,0,45,1327,0,0,0,0,0,3,3,0,0,0,0,0,13,0,0,0,0,0,0,3,0,0,0,0,0,9,4,4,10,13,9,6,0,0,0,0,0,8,50,0,7,27,28,13,6,11,0,0,0,0,8,93,0,3,70,47,28,26,11,5,0,0,0,8,196,0,4,25,40,38,43,30,5,0,0,0,8,193,0,0,7,41,25,31,27,3,0,0,0,5,151,0,0,3,13,17,38,19,9,0,0,0,4,106,0,3,7,15,13,35,38,11,0,0,0,8,135,0,0,6,11,21,31,29,7,0,0,0,5,107,0,0
LGA65610,0,0,17,6,0,3,4,0,3,0,0,0,0,0,4,24,0,0,0,3,3,0,0,0,0,0,3,0,13,3,0,13,8,0,4,0,0,0,0,0,0,36,0,0,3,4,0,0,0,0,0,0,0,3,9,87,21,155,144,42,26,17,0,0,0,10,34,528,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,6,15,0,0,8,9,3,0,0,0,0,0,0,6,26,5,3,18,18,5,0,0,0,0,0,0,0,53,0,0,19,28,6,5,0,0,0,0,0,0,56,0,0,11,17,5,0,0,0,0,0,0,0,39,0,3,6,21,3,7,0,0,0,0,0,3,43,3,0,7,23,5,3,0,0,0,0,0,3,52,6,0,7,11,8,5,0,0,0,0,0,5,41,16,4
LGA65810,0,4,45,0,0,0,4,0,7,12,5,0,0,0,3,33,0,0,0,0,0,0,4,7,4,0,0,0,16,0,0,3,9,12,14,31,11,0,5,0,0,81,0,0,3,14,3,9,3,0,0,0,0,16,50,24,40,127,230,186,344,407,150,20,4,4,62,1597,0,0,4,4,4,0,0,5,0,0,0,11,33,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,3,0,4,5,5,3,0,0,0,0,26,0,6,13,16,14,3,8,6,0,0,0,8,77,0,0,34,25,21,16,18,8,0,0,0,5,127,0,0,7,32,13,41,37,21,0,0,0,5,159,0,0,10,17,6,29,53,21,0,0,0,3,138,0,0,3,9,22,30,54,37,0,0,0,0,161,0,0,0,15,17,35,59,35,7,0,3,5,172,0,0,5,13,11,28,67,59,7,6,0,4,191,0,0
LGA69499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA69799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70200,12,27,236,4,0,4,0,4,7,16,53,70,36,42,32,271,0,0,11,0,0,0,7,21,35,19,33,25,150,12,12,16,5,7,17,20,61,60,35,11,29,294,9,7,15,3,5,8,6,9,8,0,6,32,107,191,131,221,125,101,201,413,721,547,229,169,351,3386,0,0,6,3,8,10,7,3,6,4,4,19,67,3,3,3,0,0,0,3,3,0,0,0,4,26,14,14,26,6,3,5,5,0,0,0,0,6,83,9,17,34,11,7,7,3,4,0,0,0,8,105,13,40,37,29,6,11,6,6,5,0,4,14,169,5,12,30,26,9,13,26,12,8,0,0,7,142,12,9,32,24,18,13,19,22,3,0,0,13,174,9,9,22,16,15,24,37,38,19,0,0,19,226,4,13,31,18,24,32,71,62,31,8,3,31,330,7,11,19,15,18,25,56,87,49,6,8,28,331,9,11
LGA70420,0,11,49,0,0,5,4,0,0,9,0,4,0,0,6,34,0,0,0,0,0,0,0,5,5,0,0,6,14,16,8,14,7,6,0,4,6,4,0,0,19,90,3,0,5,0,0,4,0,0,0,0,5,13,30,242,77,148,66,38,70,39,57,23,4,7,162,936,0,0,0,0,0,0,0,0,0,0,0,3,5,6,5,3,0,0,0,0,0,0,0,0,0,8,8,14,13,3,0,0,0,0,0,0,0,7,41,10,6,7,3,0,0,0,4,0,0,0,0,31,19,9,9,5,0,3,0,0,0,0,0,9,56,7,6,8,5,0,3,3,3,0,0,0,4,37,26,8,7,12,0,0,5,0,0,0,0,6,70,29,8,18,9,0,4,6,0,0,0,3,13,94,22,8,8,19,3,3,8,0,0,0,0,17,97,28,10,11,14,3,3,3,4,0,0,0,14,88,16,10
LGA70540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,8,5,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4
LGA70620,0,0,9,10,0,3,0,0,0,0,0,0,0,0,5,21,0,0,0,0,0,0,0,0,0,0,0,0,6,24,4,8,3,0,0,0,0,0,0,0,5,41,0,5,5,0,0,0,0,0,0,0,0,0,12,310,72,51,25,0,3,0,0,0,0,0,57,528,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,4,18,13,6,0,0,0,0,0,0,0,0,0,34,3,0,6,0,0,0,0,0,0,0,0,0,10,16,26,5,13,0,0,0,0,0,0,0,3,57,11,12,7,0,0,0,0,0,0,0,0,0,33,28,20,4,8,0,0,0,0,0,0,0,0,58,29,25,8,3,0,0,0,0,0,0,0,3,61,15,9,12,3,0,0,0,0,0,0,0,6,49,29,10,9,0,0,0,0,0,0,0,0,17,65,15,23
LGA70700,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,8,3,0,3,0,0,0,0,4,0,0,0,3,19,20,6,16,16,9,10,23,16,0,0,3,15,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,14,0,3,6,0,0,0,0,0,0,0,0,3,19,0,0,0,0,0,0,4,0,0,0,0,0,8,0,0,5,4,0,4,0,4,0,0,0,0,15,0,0,0,3,0,0,6,5,0,0,0,0,15,0,0,0,0,4,0,0,0,0,0,3,0,12,0,0,0,3,0,0,0,0,0,0,0,5,13,0,0
LGA71000,124,18,990,5,0,4,7,14,70,104,191,410,295,418,116,1634,3,0,7,9,9,23,62,89,207,289,517,48,1252,10,19,38,17,26,87,94,184,236,152,192,67,1128,23,16,8,11,7,16,8,9,22,9,13,86,230,329,318,420,341,273,838,1271,2402,2402,1500,1757,658,12510,9,11,13,11,12,10,19,19,10,5,10,24,152,4,0,10,4,0,4,4,3,4,6,3,9,51,15,17,46,18,7,9,9,12,7,0,0,13,154,30,66,87,34,27,26,22,18,8,4,6,52,373,12,81,120,47,13,42,41,29,14,0,8,85,490,0,9,67,57,35,62,93,53,22,10,4,24,433,10,16,55,69,32,69,108,75,28,6,16,28,515,8,9,41,52,58,111,149,138,61,17,15,32,688,0,3,36,30,50,110,186,213,100,36,22,43,837,7,6,23,27,44,141,284,286,145,57,30,35,1087,10,4
LGA71150,0,0,0,0,0,0,0,0,0,0,0,9,0,12,15,36,0,0,0,0,0,0,0,0,3,4,3,5,8,0,0,0,0,0,0,0,0,4,5,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,25,46,24,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,0,0,0,0,0,0,0,0,5,0,3,0,6,0,0
LGA71300,0,8,35,10,6,3,0,0,0,0,0,0,0,0,6,30,0,0,4,0,0,0,0,0,0,0,0,0,12,41,7,14,18,12,7,0,0,0,0,0,19,114,120,18,5,3,7,0,0,0,0,0,0,120,259,383,104,105,139,35,16,6,8,0,0,3,259,1056,0,0,0,0,0,0,0,0,0,0,0,0,6,14,5,5,4,0,0,0,0,0,0,0,7,35,20,0,7,10,0,0,0,0,0,0,0,4,39,17,4,0,5,0,0,0,0,0,0,0,4,27,31,14,11,3,0,0,0,0,0,0,0,6,62,20,7,5,4,5,0,0,0,0,0,0,0,45,47,12,7,4,4,0,0,0,0,0,0,3,80,44,21,9,13,0,4,0,0,0,0,0,3,94,40,15,4,9,4,0,3,0,0,0,0,3,96,37,22,7,7,3,3,4,0,0,0,0,11,97,48,33
LGA72200,3,7,116,0,0,3,6,4,28,7,34,17,9,6,7,119,0,0,0,4,0,8,6,10,13,0,0,8,57,7,4,13,19,8,25,14,23,16,7,0,11,150,8,3,5,3,3,0,0,3,0,0,0,7,45,57,49,127,102,110,268,127,213,117,48,28,110,1364,0,0,0,0,0,0,4,0,5,0,0,8,27,0,0,0,0,0,0,0,0,0,0,0,0,9,4,4,7,0,0,0,0,0,0,0,0,0,19,6,3,10,4,0,0,0,3,0,0,0,4,36,0,11,29,6,10,6,4,0,0,0,0,12,79,0,0,13,11,3,6,4,0,0,0,4,5,46,0,3,14,13,3,6,10,5,5,0,0,8,74,0,5,9,11,7,8,13,7,0,0,5,6,75,0,3,3,15,14,11,17,23,8,0,0,20,108,4,0,13,9,8,13,22,28,9,0,0,10,112,6,0
LGA72300,17,0,97,0,3,3,0,3,6,9,17,29,24,31,8,129,0,0,3,3,0,3,8,10,24,15,43,0,114,0,0,3,0,5,4,9,21,33,16,15,3,109,0,0,0,4,0,0,5,3,0,4,0,8,30,21,12,43,32,63,67,149,191,241,152,160,64,1201,0,0,0,0,3,9,3,0,0,0,0,8,27,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,16,0,0,0,4,4,4,5,3,0,0,0,3,21,0,0,0,0,0,3,0,6,4,0,0,6,32,0,0,10,3,3,6,7,8,5,5,0,0,49,4,0,4,4,9,4,9,10,0,0,0,8,64,0,0,9,4,12,10,11,14,9,0,3,9,86,0,0,5,5,5,11,17,22,11,7,5,11,105,0,0,6,5,10,14,15,19,19,5,11,11,115,6,3
LGA72330,0,0,9,9,0,0,0,0,0,0,0,0,0,0,4,18,0,0,0,0,0,0,0,0,0,0,0,8,10,48,16,11,0,0,0,0,0,0,0,0,27,105,6,4,0,0,0,0,0,0,0,0,0,8,26,390,94,63,30,7,4,6,7,4,0,6,150,757,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,3,17,5,9,0,0,0,0,0,0,0,0,0,34,13,3,0,0,0,0,0,0,0,0,0,0,22,37,16,10,6,0,0,0,0,0,0,0,3,66,16,7,4,3,0,0,0,0,0,0,0,4,37,28,26,11,3,0,0,0,0,0,0,0,5,73,24,17,17,7,0,0,5,0,0,0,0,9,79,34,13,16,3,3,0,0,0,0,0,0,18,93,33,13,15,6,0,5,0,0,0,0,0,18,87,41,22
LGA72800,51,13,438,0,0,3,0,0,41,19,73,164,150,118,37,593,0,0,3,0,0,12,9,41,113,143,125,18,468,4,3,22,10,5,44,20,76,99,78,44,21,436,21,12,10,6,0,3,10,14,12,0,8,38,133,193,197,250,135,69,397,321,951,1163,782,493,235,5187,0,3,6,4,0,7,6,16,10,6,7,14,74,0,0,0,0,0,0,0,5,0,0,0,0,18,9,12,18,9,0,0,3,3,3,0,0,10,68,13,36,53,14,10,6,12,16,4,4,0,22,189,11,50,58,20,11,8,15,10,11,0,0,47,241,3,9,21,32,15,19,27,38,10,6,0,8,189,6,10,23,24,9,21,41,38,18,0,5,17,214,0,10,20,30,11,22,59,69,20,6,3,15,263,0,3,17,22,14,46,86,108,64,11,5,11,389,5,0,12,8,6,37,81,165,81,31,13,11,453,0,0
LGA73600,0,9,29,5,0,6,0,0,0,0,0,0,0,0,0,16,7,0,0,0,0,0,0,5,0,0,0,3,20,60,9,29,4,0,0,0,0,0,0,0,26,135,7,0,3,0,0,0,0,0,0,0,3,6,29,353,62,126,58,16,14,11,7,4,5,14,137,810,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,13,11,8,4,0,0,0,0,0,0,0,0,48,14,4,0,0,0,0,0,0,0,0,0,4,24,23,11,21,5,0,0,0,0,0,0,0,0,55,22,11,3,0,0,0,0,0,0,0,0,3,43,46,12,10,4,3,0,0,0,0,0,0,0,87,35,7,21,11,0,0,0,0,0,0,0,6,82,40,14,22,8,0,4,3,0,0,0,0,13,101,44,15,17,12,4,5,0,0,0,0,4,11,113,59,15
LGA74050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,6,12,17,0,4,0,0,0,0,0,0,0,0,0,32,4,0,0,0,0,0,0,0,0,0,0,3,8,273,63,67,33,8,0,3,0,4,0,0,40,489,0,0,0,0,0,0,0,0,0,0,0,0,0,23,13,7,3,0,0,0,0,0,0,0,4,44,27,11,11,4,0,0,0,0,0,0,0,0,54,7,4,0,0,0,0,0,0,0,0,0,0,15,22,23,13,5,0,0,0,0,0,0,0,0,63,15,11,3,0,0,0,0,0,0,0,0,0,25,16,14,9,0,0,0,0,0,0,0,0,0,41,16,12,8,4,0,0,0,0,0,0,0,0,46,11,10,9,4,0,0,0,0,0,0,0,3,38,7,8,7,3,0,4,0,0,0,0,0,7,35,0,7
LGA74550,0,4,13,3,0,4,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,33,6,8,0,0,0,0,0,0,0,0,4,50,14,0,0,0,0,0,0,0,0,0,0,3,22,193,26,47,29,4,10,5,5,4,0,5,58,376,0,0,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0,0,0,0,0,0,0,0,0,8,9,4,3,0,0,0,0,0,0,0,0,0,18,12,8,0,0,0,0,0,0,0,0,0,0,15,15,7,4,0,0,0,0,0,0,0,0,5,33,10,0,5,0,0,0,0,0,0,0,0,0,23,13,9,7,5,0,4,0,0,0,0,0,5,37,18,12,5,4,0,0,0,0,0,0,0,14,47,8,7,7,5,0,0,0,0,0,0,0,6,30,7,5,4,0,4,0,0,0,0,0,5,9,36,8,10
LGA74560,0,0,5,0,0,0,0,0,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,4,4,9,4,0,0,0,3,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA74660,4,4,46,28,9,5,4,0,0,5,0,0,0,0,9,60,19,3,4,0,4,0,5,0,0,0,0,7,40,65,18,12,3,4,3,0,0,0,0,0,14,120,24,5,0,0,4,0,0,0,0,0,3,31,70,478,120,93,51,29,20,10,5,3,0,13,120,946,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,9,15,0,4,0,0,5,0,0,0,0,0,0,24,9,4,0,0,0,0,0,0,0,0,0,0,12,15,0,4,4,0,0,0,0,0,0,0,6,35,15,3,3,0,0,0,0,0,0,0,0,4,40,27,6,4,3,0,0,0,0,0,0,0,12,55,26,11,11,11,0,0,3,0,0,0,0,12,73,32,20,21,7,0,5,0,0,0,0,0,15,103,32,12,27,13,7,4,0,4,0,0,0,9,104,45,19
LGA74680,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,11,0,0,0,0,0,0,0,0,0,7,46,4,0,0,0,0,0,0,0,0,0,0,0,6,203,86,30,3,0,5,0,0,0,0,0,38,367,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,7,0,0,0,0,0,0,0,0,4,25,30,3,15,0,0,0,0,0,0,0,0,0,47,12,0,0,0,0,0,0,0,0,0,0,0,18,35,4,3,0,0,0,0,0,0,0,0,0,41,20,0,4,0,0,0,0,0,0,0,0,0,26,15,0,0,0,0,0,0,0,0,0,0,0,23,14,5,3,0,0,0,0,0,0,0,0,0,26,14,0,6,0,0,0,0,0,0,0,0,0,28,12,0,0,0,0,0,0,0,0,0,0,0,17,20,0
LGA79399,3,16,105,55,42,7,4,10,3,0,3,4,0,0,28,158,65,44,3,3,0,0,4,0,3,0,4,19,153,33,15,10,13,3,3,4,0,0,0,0,17,100,7,9,6,0,0,4,0,0,0,0,0,9,42,334,209,162,183,52,53,45,33,41,12,26,216,1363,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,3,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,11,4,0,8,6,0,0,0,0,0,0,4,0,28,7,13,22,9,0,4,0,8,0,0,0,8,63,3,16,22,11,10,0,3,0,4,0,0,6,85,3,12,24,14,18,7,3,3,3,0,0,18,113,4,4,7,16,17,5,3,0,0,4,5,16,80,13,13
LGA79499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA79799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89399,145,48,3345,7,10,28,29,32,105,314,1094,1415,661,415,53,4167,4,4,6,22,10,35,189,399,655,551,551,32,2466,17,35,95,97,60,154,304,855,713,298,254,128,3012,19,51,90,32,12,17,46,88,52,18,28,161,634,663,1386,2959,1942,1094,2215,6005,14142,8355,3054,2109,1350,45283,28,17,67,41,16,25,39,80,120,60,46,108,656,20,13,37,14,10,11,12,33,23,15,10,30,226,103,82,207,67,26,16,26,41,39,17,14,45,695,98,145,537,125,71,40,54,84,62,21,24,77,1338,52,88,1332,230,101,80,72,117,96,36,26,91,2313,49,42,415,237,107,101,140,254,163,70,29,76,1680,39,38,228,347,121,131,178,331,205,80,45,65,1806,29,19,191,171,154,191,227,516,335,123,69,87,2109,18,19,116,121,113,222,380,879,650,222,128,95,2955,15,25,99,98,76,180,400,1275,982,334,180,93,3757,18,11
LGA89499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99399,0,0,5,0,0,0,0,0,4,3,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,3,0,6,3,5,0,0,0,0,20,0,0,3,0,0,0,0,0,0,0,0,7,16,26,13,56,56,14,26,20,9,0,0,0,26,246,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,5,3,0,5,5,5,5,4,5,0,0,0,0,27,0,0,5,3,0,3,3,0,0,0,0,0,25,0,0,3,8,6,10,5,0,0,0,0,4,30,6,0,0,0,6,4,6,5,0,0,0,0,27,4,0,0,0,8,7,7,3,0,0,0,4,37,0,0,0,0,8,4,6,7,0,0,0,0,26,0,0
LGA99499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA_CODE_2021,C11_PI_S_R225_274,C11_PI_S_R275_349,C11_PI_S_R350_449,C11_PI_S_R450_549,C11_PI_S_R550_649,C11_PI_S_R650more,C11_PI_S_R_NS,C11_PI_S_R_Tot,C11_AI_NS_R1_74,C11_AI_NS_R75_99,C11_AI_NS_R100_149,C11_AI_NS_R150_199,C11_AI_NS_R200_224,C11_AI_NS_R225_274,C11_AI_NS_R275_349,C11_AI_NS_R350_449,C11_AI_NS_R450_549,C11_AI_NS_R550_649,C11_AI_NS_R650more,C11_AI_NS_R_NS,C11_AI_NS_R_Tot,C11_Tot_R1_74,C11_Tot_R75_99,C11_Tot_R100_149,C11_Tot_R150_199,C11_Tot_R200_224,C11_Tot_R225_274,C11_Tot_R275_349,C11_Tot_R350_449,C11_Tot_R450_549,C11_Tot_R550_649,C11_Tot_R650more,C11_Tot_R_NS,C11_Tot_R_Tot,C16_Neg_Ni_inc_R1_74,C16_Neg_Ni_inc_R75_99,C16_Neg_Ni_inc_R100_149,C16_Neg_Ni_inc_R150_199,C16_Neg_Ni_inc_R200_224,C16_Neg_Ni_inc_R225_274,C16_Neg_Ni_inc_R275_349,C16_Neg_Ni_inc_R350_449,C16_Neg_Ni_inc_R450_549,C16_Neg_Ni_inc_R550_649,C16_Neg_Ni_inc_R650more,C16_Neg_Ni_inc_R_NS,C16_Neg_Ni_inc_R_Tot,C16_1_149_R1_74,C16_1_149_R75_99,C16_1_149_R100_149,C16_1_149_R150_199,C16_1_149_R200_224,C16_1_149_R225_274,C16_1_149_R275_349,C16_1_149_R350_449,C16_1_149_R450_549,C16_1_149_R550_649,C16_1_149_R650more,C16_1_149_R_NS,C16_1_149_R_Tot,C16_150_299_R1_74,C16_150_299_R75_99,C16_150_299_R100_149,C16_150_299_R150_199,C16_150_299_R200_224,C16_150_299_R225_274,C16_150_299_R275_349,C16_150_299_R350_449,C16_150_299_R450_549,C16_150_299_R550_649,C16_150_299_R650more,C16_150_299_R_NS,C16_150_299_R_Tot,C16_300_399_R1_74,C16_300_399_R75_99,C16_300_399_R100_149,C16_300_399_R150_199,C16_300_399_R200_224,C16_300_399_R225_274,C16_300_399_R275_349,C16_300_399_R350_449,C16_300_399_R450_549,C16_300_399_R550_649,C16_300_399_R650more,C16_300_399_R_NS,C16_300_399_R_Tot,C16_400_499_R1_74,C16_400_499_R75_99,C16_400_499_R100_149,C16_400_499_R150_199,C16_400_499_R200_224,C16_400_499_R225_274,C16_400_499_R275_349,C16_400_499_R350_449,C16_400_499_R450_549,C16_400_499_R550_649,C16_400_499_R650more,C16_400_499_R_NS,C16_400_499_R_Tot,C16_500_649_R1_74,C16_500_649_R75_99,C16_500_649_R100_149,C16_500_649_R150_199,C16_500_649_R200_224,C16_500_649_R225_274,C16_500_649_R275_349,C16_500_649_R350_449,C16_500_649_R450_549,C16_500_649_R550_649,C16_500_649_R650more,C16_500_649_R_NS,C16_500_649_R_Tot,C16_650_799_R1_74,C16_650_799_R75_99,C16_650_799_R100_149,C16_650_799_R150_199,C16_650_799_R200_224,C16_650_799_R225_274,C16_650_799_R275_349,C16_650_799_R350_449,C16_650_799_R450_549,C16_650_799_R550_649,C16_650_799_R650more,C16_650_799_R_NS,C16_650_799_R_Tot,C16_800_999_R1_74,C16_800_999_R75_99,C16_800_999_R100_149,C16_800_999_R150_199,C16_800_999_R200_224,C16_800_999_R225_274,C16_800_999_R275_349,C16_800_999_R350_449,C16_800_999_R450_549,C16_800_999_R550_649,C16_800_999_R650more,C16_800_999_R_NS,C16_800_999_R_Tot,C16_1000_1249_R1_74,C16_1000_1249_R75_99,C16_1000_1249_R100_149,C16_1000_1249_R150_199,C16_1000_1249_R200_224,C16_1000_1249_R225_274,C16_1000_1249_R275_349,C16_1000_1249_R350_449,C16_1000_1249_R450_549,C16_1000_1249_R550_649,C16_1000_1249_R650more,C16_1000_1249_R_NS,C16_1000_1249_R_Tot,C16_1250_1499_R1_74,C16_1250_1499_R75_99,C16_1250_1499_R100_149,C16_1250_1499_R150_199,C16_1250_1499_R200_224,C16_1250_1499_R225_274,C16_1250_1499_R275_349,C16_1250_1499_R350_449,C16_1250_1499_R450_549,C16_1250_1499_R550_649,C16_1250_1499_R650more,C16_1250_1499_R_NS,C16_1250_1499_R_Tot,C16_1500_1999_R1_74,C16_1500_1999_R75_99,C16_1500_1999_R100_149,C16_1500_1999_R150_199,C16_1500_1999_R200_224,C16_1500_1999_R225_274,C16_1500_1999_R275_349,C16_1500_1999_R350_449,C16_1500_1999_R450_549,C16_1500_1999_R550_649,C16_1500_1999_R650more,C16_1500_1999_R_NS,C16_1500_1999_R_Tot,C16_2000_2499_R1_74,C16_2000_2499_R75_99,C16_2000_2499_R100_149,C16_2000_2499_R150_199,C16_2000_2499_R200_224,C16_2000_2499_R225_274,C16_2000_2499_R275_349,C16_2000_2499_R350_449,C16_2000_2499_R450_549,C16_2000_2499_R550_649,C16_2000_2499_R650more,C16_2000_2499_R_NS,C16_2000_2499_R_Tot,C16_2500_2999_R1_74,C16_2500_2999_R75_99,C16_2500_2999_R100_149,C16_2500_2999_R150_199,C16_2500_2999_R200_224,C16_2500_2999_R225_274,C16_2500_2999_R275_349,C16_2500_2999_R350_449,C16_2500_2999_R450_549,C16_2500_2999_R550_649
LGA10050,71,59,47,11,4,3,17,328,7,15,39,23,13,8,9,0,0,0,8,41,156,142,348,1158,1253,710,1037,796,300,57,26,41,197,6076,0,0,15,24,12,9,7,9,0,0,3,11,85,5,4,18,19,3,8,4,5,0,0,0,4,68,24,22,78,72,29,28,10,7,0,0,0,16,277,4,13,144,133,41,53,19,3,0,0,0,17,433,11,19,170,212,69,114,52,18,0,0,0,18,678,3,7,63,174,86,117,81,20,3,0,0,16,569,0,11,50,164,107,156,125,32,3,0,0,13,665,0,6,51,125,97,174,135,57,4,0,3,11,668,6,0,34,102,85,183,155,63,0,0,0,19,648,0,0,19,55,56,162,173,68,8,0,0,8,541,0,3,23,57,46,124,225,118,15,0,3,10,625,0,3,16,37,41,70,126,115,18,4,6,7,437,0,0,4,9,13,17,55,50,14,6
LGA10180,38,45,26,4,0,4,12,216,12,6,16,9,3,7,8,8,0,0,0,19,89,100,144,422,737,403,552,460,268,32,4,21,127,3274,0,0,3,12,9,10,3,11,3,0,0,0,61,0,0,7,9,3,3,3,3,0,0,0,0,32,9,12,32,31,15,21,12,3,0,0,0,9,154,4,7,48,47,31,26,13,7,0,0,0,0,180,4,6,66,82,53,51,37,17,0,0,0,17,332,3,9,23,73,50,72,66,19,0,0,0,9,329,4,0,25,53,33,84,86,27,5,0,0,0,318,0,0,16,37,50,79,88,51,4,0,0,9,339,0,0,11,30,49,68,95,63,7,0,0,7,349,0,0,5,17,32,53,83,71,6,0,0,4,276,3,5,6,17,34,63,115,105,24,0,0,16,387,3,0,10,9,12,35,75,59,11,0,0,8,220,0,0,0,6,0,13,18,39,7,0
LGA10250,21,89,113,22,14,0,7,313,8,8,15,10,3,8,12,13,9,0,9,33,125,104,249,294,385,283,563,1049,1064,256,59,64,142,4510,0,0,3,5,9,6,7,14,0,0,0,5,46,0,0,4,0,0,3,0,0,4,0,5,6,22,3,6,28,12,10,4,8,15,3,0,3,8,105,0,7,94,24,16,23,30,21,3,0,0,6,239,5,5,103,46,43,45,54,35,7,5,3,17,367,0,0,27,22,26,60,106,47,17,9,4,8,329,0,3,33,38,29,75,116,107,38,12,4,19,475,0,0,20,14,18,45,105,111,42,14,6,12,390,0,0,14,10,15,47,131,168,65,13,7,4,479,4,0,6,16,15,24,80,157,68,20,4,5,395,0,0,9,11,15,27,112,189,111,37,15,3,528,0,3,3,4,0,9,53,135,67,31,12,6,331,0,0,0,3,6,4,16,48,51,13
LGA10300,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,9,22,13,61,70,12,3,5,0,0,0,5,15,208,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,5,5,0,0,0,0,0,0,0,0,10,0,0,10,5,0,0,0,0,0,0,0,0,18,3,0,0,9,0,0,0,0,0,0,0,3,15,0,0,3,3,0,0,0,0,0,0,0,4,13,0,0,0,6,5,0,0,0,0,0,0,3,20,0,0,4,4,5,0,0,0,0,0,0,0,9,0,0,0,6,3,0,0,0,0,0,0,5,21,3,0,0,8,0,0,0,0,0,0,0,0,18,4,0,0,12,9,5,0,0,0,0,0,6,27,0,0,0,9,0,0,0,0,0,0,0,0,13,0,0,0,0,3,0,0,0,0,0
LGA10470,41,49,36,3,0,6,12,229,3,18,12,15,11,12,10,0,0,0,4,22,95,127,180,454,681,521,787,694,327,38,7,19,130,3961,3,3,10,6,6,7,11,10,0,0,0,7,56,3,0,8,4,4,11,8,7,0,0,0,5,44,16,6,39,40,19,21,24,9,0,0,0,10,177,4,9,69,55,25,25,24,11,0,0,0,4,224,12,9,74,70,36,58,61,25,4,0,0,12,350,8,4,24,51,48,88,85,34,0,0,0,17,362,4,3,24,59,34,81,124,46,4,0,0,16,396,0,3,23,45,45,84,130,61,7,0,0,3,396,0,5,12,32,41,112,142,89,8,6,0,3,438,0,0,10,20,36,76,146,92,5,0,0,6,389,0,0,6,22,32,73,185,139,10,0,4,8,477,3,0,8,6,7,37,106,124,19,0,0,3,321,0,0,0,4,0,9,39,84,10,0
LGA10500,55,157,340,202,91,80,67,1093,14,53,21,11,3,16,44,60,29,6,7,83,349,317,836,590,533,368,816,2792,4807,2398,1145,666,601,15867,9,5,17,15,16,12,28,94,105,106,125,63,582,9,3,31,15,5,3,8,29,14,18,12,18,154,52,30,123,28,17,14,24,55,43,19,31,33,467,14,27,277,60,28,15,30,72,49,25,23,25,651,11,12,323,105,44,32,67,166,86,47,20,38,948,7,3,70,59,27,39,76,222,142,67,41,36,796,0,9,50,89,38,45,116,350,207,112,59,40,1133,10,4,26,34,49,51,122,456,308,152,93,45,1348,3,5,15,17,27,48,129,596,467,210,144,45,1720,5,0,5,15,12,39,96,520,442,269,171,36,1616,4,0,13,15,33,39,117,817,828,512,330,52,2769,6,4,12,17,21,36,77,588,778,625,460,55,2673,0,0,5,3,11,26,31,264,398,392
LGA10550,48,40,11,5,0,4,14,187,10,3,8,16,10,6,9,0,0,0,0,21,79,83,154,336,659,420,562,437,121,23,8,25,135,2962,0,0,3,0,4,5,9,0,0,0,0,11,39,0,0,4,3,4,6,8,0,0,0,0,0,32,8,4,26,23,18,18,10,7,0,0,0,6,119,0,3,57,44,21,21,21,6,0,0,0,10,178,6,13,75,78,58,59,35,19,0,0,0,9,349,0,3,23,42,53,77,57,23,0,0,0,6,277,7,0,24,37,53,71,72,25,0,0,0,5,304,0,4,19,17,37,66,83,32,3,0,0,13,265,0,0,11,31,23,56,123,51,7,5,0,11,312,0,3,7,13,24,52,81,56,8,0,0,6,240,0,0,5,11,17,34,76,92,10,0,6,7,260,0,0,5,9,11,21,49,42,3,0,4,5,145,0,0,0,0,0,3,18,25,0,0
LGA10600,20,24,14,0,0,0,0,93,0,7,4,9,0,4,0,0,0,0,0,5,29,26,60,146,168,160,222,263,129,13,0,11,38,1229,0,0,0,0,4,3,5,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,6,5,7,4,8,4,0,0,0,0,44,0,0,31,13,3,10,14,0,0,0,0,0,70,6,4,21,24,9,20,14,5,4,0,0,3,115,0,0,8,14,12,30,42,15,0,0,0,0,120,0,0,7,16,8,25,31,26,6,4,0,5,120,0,0,3,5,11,37,32,33,0,3,4,4,133,0,0,7,10,10,21,44,26,0,5,0,0,128,0,0,0,4,0,15,32,26,4,0,0,0,92,0,0,0,0,5,8,26,52,6,6,0,0,107,0,0,0,3,0,0,16,27,9,0,0,0,67,0,0,0,0,0,0,3,7,3,0
LGA10650,6,4,0,0,0,0,3,32,0,4,8,8,0,0,0,0,0,0,0,8,24,35,62,184,211,66,62,17,4,5,0,6,36,680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,7,6,0,9,0,0,0,0,0,3,36,0,8,14,17,6,0,0,0,0,0,0,0,48,4,9,26,27,12,9,3,0,0,0,0,7,103,0,0,9,17,3,6,0,0,0,0,0,7,53,0,3,8,35,13,8,9,0,0,0,0,4,87,0,3,10,17,9,12,5,0,0,0,0,5,62,0,0,15,19,13,12,8,3,0,0,0,5,75,0,3,5,13,16,4,7,0,0,0,0,0,60,4,4,10,14,7,18,7,0,0,0,0,3,72,0,0,6,9,3,12,6,0,0,0,0,6,39,0,0,0,0,0,3,6,0,0,0
LGA10750,191,426,461,182,58,33,128,2016,59,109,87,63,35,51,107,80,15,7,7,190,805,864,1837,2172,2210,1567,2679,6573,6282,1588,645,317,1081,27829,22,16,65,37,17,21,76,128,58,26,12,66,545,26,10,41,33,14,12,25,33,11,3,4,15,227,147,89,260,123,48,32,76,102,33,9,9,53,977,37,66,579,148,52,49,99,128,37,8,0,62,1267,33,48,621,265,108,112,199,266,79,14,6,60,1812,20,17,158,205,88,109,299,466,121,26,18,57,1577,22,23,151,330,172,197,428,715,156,42,24,60,2328,11,11,82,125,137,188,505,941,266,83,26,53,2431,6,4,68,136,108,198,608,1237,390,103,52,63,2968,8,4,35,81,48,114,555,1282,453,143,60,58,2837,5,9,28,54,53,128,611,1982,830,291,99,85,4187,3,0,18,35,25,96,382,1513,864,383,124,66,3511,3,0,13,9,15,25,156,687,518,261
LGA10800,0,0,0,0,0,0,0,14,4,0,3,0,0,0,0,0,0,0,0,3,12,41,36,97,85,43,53,26,5,3,0,8,42,429,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,3,7,0,12,15,0,0,0,0,0,0,0,0,24,0,3,10,16,3,3,0,0,0,0,0,0,33,6,0,0,5,4,5,0,0,0,0,0,0,22,4,0,9,11,13,7,0,0,0,0,0,0,41,3,0,9,10,6,10,4,0,0,0,0,0,39,3,3,10,16,3,7,0,0,0,0,0,3,37,0,0,11,5,0,3,3,0,0,0,0,0,32,4,0,5,13,7,12,0,0,0,0,0,15,49,0,0,0,4,0,9,7,0,0,0,0,6,29,3,0,0,3,0,3,0,0,0,0
LGA10850,7,0,0,0,0,0,0,37,0,6,3,4,0,0,0,0,0,0,0,7,18,26,49,98,168,69,66,41,10,4,0,5,25,553,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,5,4,3,0,0,0,0,3,23,0,0,13,4,5,7,4,4,0,0,0,0,37,0,5,13,20,9,5,3,0,0,0,0,3,65,0,0,9,10,11,9,9,0,0,0,0,3,42,0,0,3,9,9,16,9,3,0,0,0,0,51,0,0,3,5,15,17,9,0,0,0,0,3,55,0,0,0,0,11,13,5,3,0,0,0,0,34,0,0,4,8,6,12,10,3,0,0,0,0,41,3,0,0,5,6,21,17,3,0,0,0,6,64,0,0,0,0,5,10,12,5,0,0,0,0,43,5,0,0,4,0,0,10,6,0,0
LGA10900,42,102,65,31,12,3,10,317,4,0,11,15,9,4,15,4,0,0,4,30,95,54,72,310,472,443,966,1537,875,233,51,54,173,5244,0,0,0,0,0,6,13,26,3,0,4,5,60,0,0,0,3,3,7,7,0,4,0,0,8,33,7,15,14,25,9,19,16,13,3,0,0,9,128,5,0,20,59,18,30,23,22,8,0,0,10,200,5,0,39,93,37,72,74,54,7,0,0,15,411,0,0,15,46,39,77,103,90,21,6,3,7,410,5,5,6,22,26,74,113,145,28,8,5,11,441,0,0,3,16,16,55,128,167,35,8,0,9,445,5,0,5,11,11,36,133,223,52,4,4,12,497,0,0,12,14,14,25,88,203,66,16,3,10,461,0,5,5,10,9,29,116,322,121,25,10,14,665,0,0,5,8,8,13,57,203,123,21,11,9,460,0,0,0,0,3,3,19,64,75,21
LGA10950,3,0,0,0,0,0,0,14,0,4,4,4,0,0,0,0,0,0,0,3,13,29,19,70,80,32,22,7,4,3,0,0,23,300,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,9,5,6,0,0,0,0,0,0,0,15,0,0,14,4,0,0,0,0,0,0,0,0,31,0,0,3,3,0,0,0,0,0,0,0,0,14,0,0,3,6,6,0,0,0,0,0,0,0,21,0,0,9,5,4,4,0,0,0,0,0,0,23,0,0,0,12,5,5,0,0,0,0,0,0,23,6,3,0,4,0,3,3,0,0,0,0,0,23,6,3,0,3,9,10,7,0,0,0,0,0,34,3,0,5,3,4,3,6,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0
LGA11150,0,0,0,0,0,0,6,40,4,3,4,4,0,0,0,0,0,0,0,0,12,91,35,66,76,18,6,3,3,0,0,5,24,330,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,9,0,0,3,8,0,0,0,0,0,0,0,0,13,0,0,7,3,0,0,0,0,0,0,0,3,15,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,3,8,4,0,0,0,0,0,0,0,21,0,0,0,15,4,4,0,0,0,0,0,0,29,6,0,6,3,0,0,0,0,0,0,0,0,28,5,0,3,7,4,0,3,0,0,0,0,3,31,10,0,5,4,5,4,0,0,0,0,0,5,28,5,0,5,0,8,6,4,0,0,0,0,0,32,7,0,0,0,0,0,3,0,0,0
LGA11200,0,0,0,0,0,0,0,24,8,0,0,0,0,0,0,0,0,0,0,0,10,91,45,74,20,0,0,0,0,0,0,3,35,269,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,14,4,0,0,0,0,0,0,0,0,0,19,4,8,11,4,0,0,0,0,0,0,0,0,26,0,25,3,0,0,0,0,0,0,0,0,3,33,0,9,0,7,3,0,0,0,0,0,0,0,25,0,15,5,0,0,0,0,0,0,0,0,0,22,3,11,8,4,0,0,0,0,0,0,0,0,29,3,6,3,0,0,0,0,0,0,0,0,0,18,3,0,7,3,0,0,0,0,0,0,0,5,20,16,9,7,6,0,4,0,0,0,0,3,0,41,5,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0
LGA11250,11,5,0,0,0,3,9,93,0,0,17,22,0,4,0,0,0,0,0,15,56,90,56,406,502,177,104,67,19,8,5,24,81,1535,0,0,0,8,0,0,0,0,0,0,0,0,10,0,3,0,7,0,5,0,0,0,0,0,0,16,0,7,17,33,7,4,4,0,0,0,0,3,81,3,11,26,41,17,16,8,0,0,0,0,4,122,7,4,37,63,26,19,5,5,0,0,0,12,180,0,5,17,58,30,30,4,5,0,0,0,5,151,3,5,10,60,30,14,15,3,0,0,0,4,138,0,0,12,38,28,24,9,0,0,0,6,0,118,3,0,10,31,34,23,21,4,0,0,4,3,136,8,4,4,14,25,21,13,0,0,0,0,0,97,14,6,10,28,20,37,28,9,0,0,0,6,161,10,5,10,20,10,29,21,9,0,0,0,8,116,3,3,8,6,9,11,14,7,0,0
LGA11300,6,16,83,70,30,35,23,278,6,3,0,0,9,4,4,27,10,4,5,15,78,56,130,127,119,76,232,389,1152,898,307,229,164,3867,0,5,4,7,10,14,13,26,70,75,119,29,373,6,0,5,3,0,4,6,5,4,7,20,5,59,7,3,24,9,6,3,3,9,26,19,21,5,116,9,7,66,8,6,5,19,13,12,3,13,5,165,0,0,55,22,8,10,11,16,25,15,12,5,193,0,0,9,17,9,14,17,22,42,18,34,13,209,0,4,10,20,11,15,17,38,60,32,28,16,242,0,0,9,10,8,12,30,51,84,41,40,4,282,0,0,5,8,7,13,36,69,115,61,67,20,402,0,0,0,7,3,10,20,63,103,64,55,7,343,0,0,8,4,9,10,26,122,200,106,99,20,606,0,0,4,3,0,9,25,82,225,122,91,11,567,0,0,0,0,6,6,8,51,108,82
LGA11350,16,46,100,53,33,16,12,306,0,0,8,3,4,3,0,9,4,6,5,24,76,37,55,169,264,212,305,585,996,442,195,193,134,3578,0,0,4,7,4,3,0,3,9,4,4,5,41,0,0,4,3,0,0,4,3,3,3,4,3,29,0,3,12,14,5,17,14,12,8,3,0,13,93,0,6,14,41,16,13,23,24,10,3,0,10,158,0,3,17,74,28,43,48,48,25,9,10,11,320,0,0,4,34,30,40,40,61,34,26,14,13,298,0,4,6,18,22,31,52,66,41,15,12,8,280,0,0,4,8,9,14,50,75,49,26,15,9,265,0,3,4,9,7,20,48,102,67,41,36,3,341,0,0,3,7,10,8,26,98,68,36,25,9,296,0,0,3,4,4,3,20,82,86,52,43,3,306,3,0,0,0,4,3,14,50,58,57,51,8,252,0,0,0,0,3,0,3,14,23,30
LGA11400,4,8,0,0,0,0,6,51,0,0,5,9,0,4,0,0,0,0,0,8,25,65,36,163,221,74,72,42,21,3,3,3,55,761,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,5,6,3,11,3,3,0,0,0,0,0,0,0,25,0,0,9,13,7,4,8,0,0,0,0,0,40,14,3,11,25,10,8,3,0,0,0,4,5,81,5,0,4,18,12,11,9,0,0,0,0,3,65,3,3,16,19,8,8,3,4,0,0,0,4,66,3,4,10,12,6,16,17,0,0,0,0,7,80,0,0,6,9,12,7,10,3,0,0,0,3,47,3,0,5,9,6,12,7,9,0,0,0,4,55,7,0,7,10,9,22,22,9,0,0,0,4,86,0,0,9,8,7,13,7,4,0,0,0,7,60,0,0,0,0,0,4,8,0,0,0
LGA11450,21,54,52,72,12,5,7,242,0,7,4,3,4,5,8,10,4,0,0,19,64,50,127,108,121,93,197,623,1116,558,115,40,107,3267,0,0,5,0,0,3,5,10,15,11,0,12,68,0,0,3,6,0,0,5,4,3,0,4,3,26,9,5,19,5,4,3,4,15,16,0,0,0,76,5,4,40,3,6,4,14,10,13,0,0,6,108,3,6,47,11,8,7,14,30,26,8,0,7,170,0,5,12,7,8,16,23,44,36,15,5,7,185,0,4,11,19,13,15,24,100,57,19,0,8,270,3,0,5,10,11,9,34,101,81,22,6,13,301,0,0,5,10,0,17,34,147,121,46,8,6,400,0,0,0,9,11,6,18,126,158,45,9,4,393,0,0,8,0,4,21,45,217,315,83,10,15,722,0,0,0,0,6,20,18,151,321,137,23,16,687,0,0,0,3,4,13,15,80,208,96
LGA11500,153,297,173,46,9,6,64,1073,22,63,41,39,17,33,66,22,0,3,4,112,429,475,1073,1409,1356,910,2098,3745,2103,364,59,76,596,14266,8,3,36,6,12,16,22,63,13,3,4,32,227,14,20,21,21,3,5,10,11,0,3,0,11,116,78,55,149,51,24,19,35,64,10,0,0,34,511,29,27,354,103,47,28,56,92,18,0,0,39,786,13,25,421,192,64,74,160,174,27,3,0,34,1188,12,12,134,144,56,82,204,263,40,9,5,27,987,11,11,104,261,131,132,274,390,61,8,0,35,1413,15,3,66,76,108,95,324,531,108,10,3,37,1367,11,6,41,64,59,111,394,732,139,28,11,22,1604,5,5,16,47,30,79,299,706,164,27,9,25,1415,7,0,15,37,38,66,324,1159,301,64,11,23,2059,7,5,12,23,21,50,236,764,314,63,19,24,1522,0,0,4,12,11,21,89,379,182,43
LGA11520,11,33,102,166,159,148,38,710,4,13,8,4,0,3,8,15,18,10,11,31,130,136,296,237,184,175,187,529,1653,2353,1703,1424,274,9159,3,0,11,10,4,4,17,31,97,110,166,42,483,3,0,5,3,0,0,0,0,13,19,21,5,83,13,13,51,23,0,5,6,5,23,35,28,16,219,9,5,113,25,14,5,13,16,20,20,28,14,277,7,4,99,41,20,8,20,23,33,35,37,20,346,0,0,11,22,5,4,19,29,81,48,49,16,295,0,0,15,33,23,15,26,53,92,57,65,20,382,0,5,16,9,9,11,32,75,146,109,86,13,513,0,6,13,10,11,13,43,79,189,154,147,28,705,0,5,14,3,9,14,25,77,188,177,179,17,707,3,0,6,3,14,25,34,142,426,314,341,31,1335,0,0,8,3,0,24,30,112,471,434,480,19,1590,0,0,8,6,3,12,15,39,255,251
LGA11570,180,504,608,294,86,50,131,2235,71,138,61,52,28,58,138,144,37,22,21,225,990,1115,2403,2182,1960,1165,2839,7826,7791,2881,777,427,1389,32758,30,34,126,77,48,48,128,301,129,76,30,127,1145,21,16,55,32,13,15,32,67,48,19,12,41,361,208,148,423,160,74,47,104,215,98,38,15,85,1630,65,89,902,259,84,66,157,242,95,30,12,88,2080,46,66,848,398,158,131,303,516,209,81,32,117,2909,21,22,175,250,117,149,373,725,315,105,40,88,2393,20,18,179,376,280,226,537,960,412,146,59,101,3322,9,7,100,130,142,182,579,1197,566,182,85,84,3258,9,12,71,88,99,151,588,1504,722,271,111,90,3727,3,8,41,58,53,100,413,1259,689,304,111,65,3102,4,0,40,47,62,97,472,1521,1056,421,211,98,4023,5,0,21,35,28,54,232,1053,932,450,247,50,3101,7,6,7,19,15,26,85,460,505,295
LGA11600,0,0,0,0,0,0,3,21,0,0,4,4,0,0,0,0,0,0,0,0,13,50,18,49,66,10,3,3,0,0,0,0,26,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,6,3,0,9,0,0,0,0,0,0,0,0,0,14,0,0,4,10,0,0,0,0,0,0,0,0,19,0,0,7,7,0,0,0,0,0,0,0,3,18,0,0,0,6,4,0,0,0,0,0,0,0,20,0,0,3,6,3,0,0,0,0,0,0,5,24,0,0,9,3,0,6,0,0,0,0,0,3,22,8,0,3,8,7,4,0,0,0,0,0,0,33,3,0,0,5,0,5,0,0,0,0,0,5,29,0,0,3,0,0,4,0,0,0,0
LGA11650,333,649,485,127,56,30,59,2100,43,88,108,90,55,128,107,52,11,0,12,228,913,534,1405,1927,2880,2398,5692,8765,4861,1094,323,304,959,31147,8,11,35,34,25,41,71,92,30,7,10,42,405,11,5,18,23,17,18,31,37,17,4,0,21,202,51,59,160,116,61,75,111,110,23,7,7,46,824,38,47,454,235,135,165,222,154,35,7,5,61,1565,42,41,494,417,212,329,463,329,74,6,6,90,2503,12,11,119,245,149,282,691,617,127,17,9,45,2327,19,10,122,213,211,326,771,825,178,28,15,57,2775,10,11,64,140,188,297,825,988,221,45,17,62,2856,7,6,54,95,108,223,903,1277,342,73,30,48,3169,4,0,31,67,72,167,649,1288,412,69,36,41,2832,7,3,23,44,67,147,771,1751,675,154,82,58,3790,0,3,16,32,33,79,410,1139,656,191,81,36,2684,0,0,0,11,14,38,146,477,379,125
LGA11700,0,0,0,0,0,0,3,21,0,0,0,0,0,0,0,0,0,0,0,0,9,92,27,101,18,7,3,3,0,0,0,7,23,275,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,4,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,7,3,0,11,7,0,0,0,0,0,0,0,0,17,0,0,6,0,0,0,0,0,0,0,0,0,9,3,4,11,3,3,0,0,0,0,0,0,0,20,3,3,10,4,0,0,0,0,0,0,0,6,26,3,0,16,7,0,0,0,0,0,0,0,7,32,4,0,11,0,0,0,0,0,0,0,0,0,21,11,6,4,0,0,0,0,0,0,0,0,0,22,9,0,3,0,0,0,0,0,0,0,0,0,15,3,0,6,0,0,0,0,0,0,0
LGA11720,50,60,22,3,0,0,17,219,11,8,11,26,20,20,8,4,0,0,3,51,158,108,212,401,717,499,1015,896,366,48,12,28,180,4483,0,0,0,10,9,13,20,6,0,0,0,10,66,3,0,4,7,0,5,9,3,0,0,0,0,37,18,8,26,23,20,33,29,9,0,0,0,7,165,5,6,83,46,15,52,54,13,0,0,0,18,294,3,9,101,93,49,88,110,33,4,0,0,19,512,0,0,20,64,27,116,157,39,0,0,0,18,459,3,11,25,66,57,139,211,73,3,0,0,16,604,0,0,14,42,36,132,199,71,0,0,4,10,514,0,0,12,22,32,117,225,111,6,0,3,7,537,0,3,9,8,25,63,196,116,10,4,0,4,445,6,0,0,13,28,65,243,176,16,4,3,6,554,6,0,6,7,16,44,128,158,9,3,4,5,374,0,0,0,3,5,8,47,70,7,0
LGA11730,62,86,21,0,0,3,6,286,10,18,35,22,13,28,20,4,0,0,0,33,176,129,181,550,878,602,1011,903,223,48,15,52,155,4756,0,0,3,3,5,17,7,3,0,0,0,5,51,0,0,5,8,4,3,3,3,0,0,0,4,33,11,6,24,41,25,36,29,8,6,0,4,14,188,5,13,66,84,43,51,37,12,3,0,3,15,329,6,13,106,108,97,126,91,19,4,0,4,23,600,0,3,35,71,60,142,135,34,0,6,0,11,489,4,9,31,82,64,141,197,41,6,6,5,6,595,5,7,27,37,53,113,166,53,5,4,4,13,495,3,7,14,39,55,91,181,73,11,3,8,19,495,0,0,6,25,26,75,123,53,16,0,4,7,326,6,0,7,15,18,62,138,101,18,6,9,11,394,4,0,3,15,11,22,77,69,15,5,3,10,231,0,0,0,0,11,13,20,26,4,0
LGA11750,5,9,0,0,0,0,5,46,0,0,0,4,0,0,0,0,0,0,0,8,17,78,42,175,149,52,58,39,9,3,9,12,36,646,0,0,0,4,0,5,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,16,0,5,8,3,7,0,0,0,0,0,0,0,24,6,5,7,5,3,5,0,0,0,0,0,0,30,4,0,0,5,5,12,5,0,0,0,0,0,28,0,0,11,9,5,5,0,0,0,0,0,0,36,0,0,0,3,6,8,3,0,0,0,4,3,31,0,0,0,6,3,6,3,0,0,0,0,4,28,5,0,4,11,6,6,8,0,0,0,0,0,43,11,0,13,12,4,11,11,3,0,0,0,8,76,7,6,12,34,9,3,6,4,0,0,0,4,94,5,0,3,7,5,0,9,4,0,0
LGA11800,82,141,122,22,10,8,17,501,9,21,35,40,14,19,26,19,3,0,0,60,235,191,423,602,1005,770,1364,1946,1284,251,50,81,313,8285,0,0,7,14,10,11,24,22,3,0,3,17,114,5,0,5,7,0,3,17,8,4,0,0,4,57,15,12,68,27,27,30,36,20,6,0,6,14,264,9,7,165,73,45,76,51,31,3,0,0,18,486,16,6,159,120,86,147,133,78,11,4,4,20,788,3,4,44,65,84,143,170,126,14,0,3,14,669,4,0,40,92,70,132,226,194,31,7,3,20,814,8,4,31,44,62,139,241,211,24,9,4,30,801,0,0,22,36,46,122,263,276,39,7,4,21,832,0,5,13,17,20,78,204,324,62,3,5,19,749,5,6,13,22,22,77,229,370,95,17,7,18,870,0,0,10,10,5,24,91,231,113,16,8,20,523,0,0,3,4,0,12,29,91,72,16
LGA12000,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,22,29,50,55,17,21,7,6,0,0,0,14,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,5,0,0,0,0,0,0,0,0,0,13,4,0,6,8,0,3,0,0,0,0,0,0,23,0,0,4,3,5,3,0,0,0,0,0,0,12,5,4,3,12,6,3,0,0,0,0,0,0,25,0,3,5,3,3,0,4,0,0,0,0,0,27,0,5,3,0,3,0,8,0,0,0,0,0,20,0,0,0,3,7,5,3,0,0,0,0,0,27,0,0,0,0,4,7,5,0,0,0,0,0,22,0,0,3,4,0,8,3,5,0,0,0,0,22,0,0,0,3,0,3,0,0,0,0
LGA12150,0,0,0,0,0,0,5,24,6,5,10,0,0,0,0,0,0,0,0,7,20,57,32,168,92,13,11,8,0,0,0,3,35,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,8,4,4,0,0,0,0,0,0,0,15,0,0,5,13,5,0,0,0,0,0,0,3,31,0,0,8,9,4,0,0,0,0,0,0,4,38,0,0,12,9,10,0,0,0,0,0,0,0,32,0,0,9,20,7,6,0,0,0,0,0,0,39,0,0,4,10,4,6,0,0,0,0,0,0,26,6,0,8,10,5,0,0,0,0,0,0,6,32,4,0,3,16,5,10,0,0,0,0,0,0,35,9,0,3,5,0,6,0,0,0,0,0,0,34,3,3,0,5,9,3,0,0,0,0,0,0,21,4,0,4,0,0,3,0,0,0,0
LGA12160,10,3,0,0,0,6,0,50,5,3,10,4,0,0,0,0,0,0,0,14,34,52,85,206,269,101,69,36,3,6,0,6,54,877,0,0,8,9,0,5,0,0,0,0,0,0,16,0,0,4,0,0,0,0,0,0,0,0,0,8,3,3,10,6,0,3,0,0,0,0,0,0,39,4,6,25,14,4,5,0,0,0,0,0,0,59,6,6,37,32,27,13,0,0,0,0,0,0,115,0,0,14,24,12,15,11,0,0,0,0,4,87,3,0,17,36,19,29,3,0,0,0,0,0,110,3,0,15,16,14,21,9,0,0,0,0,3,98,7,5,8,21,18,17,9,4,0,0,0,9,91,0,0,9,18,11,18,6,6,0,0,0,0,64,3,0,6,8,24,28,12,4,0,0,0,3,93,4,0,3,5,8,15,9,0,0,0,0,4,44,0,0,0,0,7,3,4,0,0,0
LGA12350,12,3,0,0,0,0,4,68,0,3,13,12,0,0,0,0,0,0,0,8,41,54,99,270,411,129,88,29,6,5,3,13,37,1138,0,0,3,8,0,0,3,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,10,10,7,19,16,3,0,0,0,0,0,0,4,56,3,3,32,29,6,9,3,0,0,0,0,3,88,5,9,43,60,26,16,5,0,0,0,0,7,166,0,0,18,43,17,17,8,0,0,0,0,4,118,0,8,16,53,22,23,4,0,0,0,0,3,131,0,0,10,38,19,27,9,0,0,0,0,0,112,0,0,10,29,22,35,12,0,0,0,4,3,117,0,0,12,22,22,28,15,0,0,0,0,0,98,3,0,3,10,18,39,12,5,0,0,0,3,98,0,0,5,12,12,11,9,0,0,0,0,0,58,0,0,0,4,4,7,0,0,0,0
LGA12380,106,349,504,186,36,25,105,1499,30,67,37,32,17,31,85,105,38,11,12,138,594,564,1304,1217,1143,657,1551,4956,6740,1780,334,207,897,21352,18,13,58,59,31,36,55,214,118,46,22,76,744,19,8,34,26,7,10,14,45,25,11,3,16,218,98,87,205,97,26,35,51,150,60,19,14,46,891,31,49,453,125,45,49,75,128,56,24,11,46,1101,31,51,399,238,81,84,141,331,172,42,21,64,1648,13,13,103,113,76,89,143,414,226,58,23,59,1325,10,20,97,200,140,134,224,608,346,90,35,53,1959,23,10,57,72,87,108,271,834,398,125,30,62,2072,3,5,38,61,67,102,260,1025,509,143,71,61,2344,5,0,12,45,33,70,216,895,492,165,69,54,2056,10,4,22,46,36,76,239,1395,862,256,107,56,3106,4,6,18,27,16,35,155,1049,744,218,106,53,2423,0,3,13,8,6,12,66,480,452,166
LGA12390,70,65,25,0,0,0,18,366,12,15,40,31,10,10,8,0,0,0,4,33,161,160,313,951,1083,610,877,507,215,21,10,34,201,4974,4,0,7,10,5,10,8,5,0,0,0,6,55,3,3,8,3,4,4,9,0,0,0,0,7,46,21,17,41,32,16,21,15,9,0,0,0,7,177,8,7,109,59,28,25,23,8,0,0,4,5,266,12,20,127,99,43,60,47,17,0,0,5,17,440,5,4,35,85,50,74,91,34,0,0,5,13,391,0,7,36,117,75,96,110,39,4,0,0,14,495,8,4,29,59,58,122,127,51,6,0,0,12,487,0,6,21,76,62,115,163,81,6,0,6,16,552,9,0,13,59,43,92,162,96,10,4,4,13,509,6,0,12,35,66,115,188,104,21,0,5,12,561,0,7,5,24,33,71,118,114,21,0,0,15,399,0,0,7,5,5,11,49,69,17,0
LGA12700,6,5,0,0,0,0,0,32,0,0,0,5,0,3,0,0,0,0,0,4,18,37,22,65,117,70,95,52,22,6,0,0,24,513,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,5,0,4,5,3,0,0,0,0,4,27,0,4,3,5,0,7,4,0,0,0,0,0,25,0,5,7,13,5,14,0,0,0,0,0,5,53,0,0,0,7,3,8,15,3,0,0,0,4,51,5,0,3,9,15,13,13,7,0,0,0,3,62,0,0,9,3,5,14,5,0,0,0,0,3,42,0,0,0,4,4,12,14,3,0,0,0,0,40,0,0,4,3,0,10,8,8,0,0,0,4,39,0,0,3,0,7,6,11,9,0,0,0,0,37,4,0,0,5,3,4,11,11,0,0,4,0,44,0,0,0,0,0,0,0,3,0,0
LGA12730,6,0,0,0,0,0,0,40,0,3,18,6,5,6,0,0,0,0,0,10,53,36,47,293,267,62,65,20,11,5,4,9,44,842,0,0,0,0,4,5,0,0,0,0,0,0,13,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,15,13,0,3,0,0,0,0,0,3,47,0,4,27,22,10,3,0,3,0,0,0,4,77,0,0,35,22,4,13,8,3,0,0,0,3,97,0,0,14,30,13,7,6,0,0,0,0,0,75,6,0,17,26,9,12,7,3,0,0,0,4,85,0,0,13,28,18,10,7,0,0,0,0,7,80,3,0,18,16,13,14,19,0,0,0,0,3,89,3,7,10,23,8,19,13,0,0,0,0,7,87,0,0,6,15,12,15,11,5,0,0,5,4,64,4,0,5,4,4,10,11,3,0,0,4,7,53,0,0,0,4,5,8,5,0,0,0
LGA12750,67,47,22,0,0,0,14,238,7,10,23,23,20,14,9,3,0,0,0,23,139,81,139,405,616,497,849,621,219,25,3,41,127,3619,0,0,3,4,0,8,7,0,0,0,0,7,42,3,4,8,5,0,4,0,7,3,0,0,4,40,5,4,32,29,24,20,18,4,0,0,0,11,145,3,8,59,39,32,39,17,0,0,0,0,10,217,3,10,65,94,61,92,54,24,0,0,0,10,421,3,4,22,58,61,86,72,24,0,0,3,12,342,0,3,13,58,47,108,118,52,3,0,0,11,420,3,3,15,45,38,80,120,49,7,0,0,4,364,0,3,11,33,25,73,134,77,3,0,0,8,382,0,0,10,24,18,51,107,71,15,0,3,9,302,5,0,0,15,18,41,102,91,11,0,4,10,299,3,0,3,13,3,20,43,63,10,0,0,8,169,0,0,0,0,0,5,16,31,6,3
LGA12850,158,290,356,98,21,18,90,1282,23,43,45,33,36,51,65,75,11,0,5,118,507,440,998,1361,1377,1091,2363,3573,3942,721,136,124,723,16850,10,6,48,45,32,37,130,131,79,10,6,56,608,7,9,31,24,12,19,33,34,17,0,3,19,211,71,53,164,93,48,74,126,124,48,4,5,51,853,38,29,382,147,60,68,146,102,46,3,0,46,1061,16,27,336,249,110,137,315,292,123,17,7,45,1685,12,11,79,125,58,136,331,338,168,18,10,34,1323,10,10,90,228,176,187,456,601,242,30,17,62,2105,4,4,60,83,120,163,416,588,315,37,14,48,1855,10,3,31,68,73,129,461,640,360,63,21,40,1902,3,4,23,40,34,81,296,577,332,55,21,35,1509,0,6,25,37,34,94,304,774,471,104,40,51,1937,4,0,5,15,14,49,182,445,380,84,25,35,1238,0,0,4,7,11,14,85,219,206,55
LGA12870,15,3,0,0,0,0,5,50,0,3,8,5,3,4,0,0,0,0,0,9,36,48,47,204,255,132,187,62,11,9,4,12,48,1010,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,9,8,0,9,0,0,0,0,0,0,36,0,3,13,15,10,5,0,0,0,0,0,0,50,3,7,18,37,16,17,0,0,0,0,0,7,112,0,4,10,32,15,18,9,0,0,0,0,5,100,0,0,14,35,15,18,19,4,0,0,0,9,120,0,5,12,23,14,19,15,0,0,0,0,4,90,0,0,8,15,12,26,21,0,0,0,0,4,92,0,4,8,12,9,26,17,0,0,0,0,0,84,0,0,5,14,13,23,32,4,0,0,0,3,92,9,0,0,6,5,17,21,5,0,0,0,0,59,0,3,0,0,4,10,5,0,0,0
LGA12900,0,3,0,0,0,0,4,39,0,5,5,13,5,3,0,0,0,0,0,12,37,54,80,233,338,80,38,22,3,4,0,6,62,925,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,10,0,3,0,0,0,0,0,0,0,12,3,3,15,6,4,0,0,0,0,0,6,0,39,0,7,30,16,7,0,0,0,0,0,0,0,66,3,9,38,36,18,5,0,0,0,0,0,0,109,0,3,14,27,13,15,3,0,0,0,0,3,83,3,0,16,34,18,12,3,0,0,0,0,3,106,3,5,8,24,17,19,5,0,0,0,0,7,81,0,0,11,18,25,26,5,0,0,0,0,4,99,0,0,7,11,3,16,7,4,0,0,0,0,54,0,0,5,18,12,20,11,0,0,0,0,3,70,3,0,0,4,8,16,15,3,0,0,0,4,61,0,0,0,0,4,0,0,0,0,0
LGA12930,37,129,260,204,58,47,63,878,10,32,8,5,4,10,26,55,27,5,6,76,270,199,477,393,456,319,707,2201,4175,2154,702,413,545,12731,3,3,18,11,9,16,18,91,132,97,64,55,522,4,7,9,7,10,7,7,21,25,8,12,8,117,32,23,62,25,16,17,23,42,46,32,6,15,345,10,21,169,41,15,10,31,67,37,22,9,26,450,9,12,168,64,29,29,49,132,87,44,10,25,650,9,0,36,37,26,33,64,164,127,55,18,30,602,0,6,28,53,43,40,76,296,181,71,26,33,850,0,0,12,24,33,38,92,356,251,102,49,25,985,5,0,11,27,40,35,105,476,369,167,63,40,1327,6,0,12,19,18,30,87,449,405,167,67,23,1276,5,0,12,25,15,45,103,711,736,333,127,41,2155,3,0,10,15,3,34,58,517,706,347,156,23,1879,0,0,0,10,7,12,27,223,373,235
LGA12950,0,0,0,0,0,0,0,27,0,5,4,3,0,0,0,0,0,0,0,3,12,26,51,145,124,20,0,0,0,0,0,4,17,396,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4,3,0,0,0,0,0,0,0,19,0,0,12,12,0,0,0,0,0,0,0,0,26,0,0,16,18,6,3,0,0,0,0,0,3,45,0,3,9,9,9,9,0,0,0,0,0,4,36,0,0,10,13,3,8,5,0,0,0,0,5,38,0,0,5,12,3,5,0,0,0,0,0,3,32,0,0,10,18,10,5,0,0,0,0,0,0,40,0,0,0,7,6,4,0,0,0,0,0,0,24,0,0,6,10,12,4,0,0,0,0,0,0,34,0,0,0,8,4,0,0,0,0,0,0,0,16,0,0,4,6,0,0,0,0,0,0
LGA13010,3,6,0,0,0,0,4,48,0,0,6,7,0,5,0,0,0,0,4,4,35,24,41,239,260,108,73,18,3,0,0,6,52,822,0,0,3,0,3,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,12,7,9,3,0,0,0,0,0,4,42,0,5,19,14,8,9,0,0,0,0,0,7,65,3,3,34,46,19,28,7,0,0,0,0,4,139,0,0,18,29,12,23,5,0,0,0,0,3,93,0,0,16,29,18,23,6,0,0,0,0,7,107,0,0,6,18,18,17,3,0,0,0,0,5,70,0,0,7,12,13,23,6,0,0,0,0,0,69,0,0,10,7,14,13,5,0,0,0,0,4,56,0,0,10,12,5,22,8,0,0,0,0,0,59,4,0,6,0,5,8,5,0,0,0,0,0,23,0,0,0,0,0,7,3,0,0,0
LGA13310,29,35,16,0,0,0,13,161,8,19,17,8,12,3,7,0,0,0,3,28,101,93,223,465,642,378,503,331,81,13,5,21,122,2869,0,0,5,7,0,0,0,4,0,0,0,8,24,5,0,7,5,10,3,6,0,0,0,0,0,41,18,13,22,20,11,11,9,0,0,0,0,7,118,3,7,73,49,25,19,23,11,0,0,0,4,213,8,12,82,77,34,44,38,8,5,0,0,16,312,3,5,31,57,27,62,45,8,4,0,0,6,244,0,5,27,55,33,61,78,22,3,0,0,7,289,0,3,18,30,29,53,89,33,5,0,0,5,272,4,3,6,35,24,60,97,48,0,0,0,4,284,0,0,8,15,14,43,93,45,4,0,0,5,225,0,0,4,12,19,47,120,78,10,5,0,9,317,0,0,0,11,13,26,84,71,3,0,0,4,217,6,0,0,0,0,17,26,48,6,0
LGA13340,3,4,0,0,0,0,0,35,0,0,5,0,5,0,0,0,0,0,0,13,21,22,25,147,160,71,57,35,7,0,0,5,48,573,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,11,0,3,3,3,0,0,0,0,4,17,0,6,5,8,3,5,0,0,0,0,0,0,32,0,11,18,25,5,8,0,0,0,0,0,4,68,0,0,5,15,12,5,4,0,0,0,0,0,45,0,0,7,21,10,6,8,6,0,0,0,7,62,0,0,9,9,12,12,4,0,0,0,0,4,48,0,0,11,13,10,8,13,0,0,0,0,3,54,0,0,6,11,9,5,3,0,0,0,0,0,38,5,0,14,10,14,8,7,3,0,0,0,4,62,0,0,4,12,3,6,7,0,0,0,0,4,31,0,0,3,3,4,8,0,0,0,0
LGA13450,37,18,9,3,0,0,16,160,5,11,17,21,4,8,5,0,0,0,0,18,93,102,121,435,629,371,443,192,104,10,9,11,114,2532,3,0,9,14,5,3,0,0,0,0,0,9,51,4,0,0,8,0,0,0,0,0,0,0,0,22,8,3,15,23,10,0,9,6,0,0,0,0,77,5,5,35,42,20,10,5,0,0,0,0,9,133,10,10,36,67,18,22,8,0,0,0,0,5,178,0,3,15,57,12,52,19,6,0,0,0,4,183,0,0,26,54,44,47,28,5,0,0,3,5,217,6,5,22,68,26,59,55,12,3,0,0,3,259,0,0,10,52,38,62,33,13,0,3,0,7,221,0,0,9,35,34,76,54,23,3,0,0,13,251,0,0,17,55,41,82,94,39,4,0,3,11,341,0,0,5,27,18,51,54,50,6,0,0,8,218,0,3,3,9,9,28,24,27,6,0
LGA13550,17,9,4,0,0,3,0,78,3,0,8,14,0,3,3,3,0,0,0,9,50,51,46,218,286,184,194,119,61,11,6,14,74,1262,0,0,3,3,0,0,0,3,0,0,0,3,21,0,0,0,0,0,0,3,0,0,0,0,0,9,0,0,9,15,14,4,0,0,0,0,0,0,43,5,4,5,23,13,15,9,0,0,0,0,0,79,3,0,28,27,18,25,11,3,0,0,0,0,126,3,0,4,21,13,25,14,6,3,0,0,4,101,0,0,0,16,23,21,21,11,0,0,0,5,101,0,0,5,14,20,21,23,0,0,0,0,4,94,3,4,5,16,16,31,23,10,0,0,0,9,115,5,0,7,7,10,23,27,22,0,0,3,0,98,4,0,3,5,15,22,48,37,3,0,4,8,147,0,4,6,6,12,9,36,21,5,0,0,10,110,0,0,0,0,4,3,11,22,4,0
LGA13660,0,0,0,0,0,0,0,23,0,0,5,3,0,0,0,0,0,0,0,7,13,45,32,119,82,19,6,0,0,0,0,0,39,353,0,0,6,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,6,0,0,0,0,0,0,0,0,18,0,5,12,6,0,3,0,0,0,0,0,0,30,5,5,10,14,9,8,0,0,0,0,0,4,41,0,0,3,3,8,0,0,0,0,0,0,0,16,0,0,14,14,5,10,0,0,0,0,0,0,41,3,0,12,9,3,3,0,0,0,0,0,0,31,3,0,11,13,6,8,0,0,0,0,0,3,38,0,0,4,3,5,7,0,0,0,0,0,0,33,5,0,13,8,11,4,3,0,0,0,0,6,39,0,0,3,3,9,3,0,0,0,0,0,7,28,0,0,0,0,0,4,0,0,0,0
LGA13800,42,90,80,22,7,4,19,325,0,3,13,14,6,13,21,10,7,0,0,24,118,84,105,331,461,467,681,1364,964,202,80,72,201,5015,0,0,4,12,3,4,5,13,7,0,4,10,60,0,0,0,5,0,3,5,12,3,0,0,5,34,5,6,14,31,5,13,16,18,5,0,0,8,113,9,6,30,68,13,23,16,31,8,0,0,7,210,9,5,25,65,36,22,42,57,6,5,3,8,280,0,0,4,54,24,36,62,90,22,3,0,4,301,7,0,15,34,30,49,91,122,24,3,3,15,377,0,4,9,8,28,40,84,152,50,3,4,8,395,0,0,9,15,17,31,115,202,67,10,12,23,502,0,0,0,12,19,42,75,186,65,17,11,9,444,8,0,3,5,14,56,94,336,137,32,21,22,728,0,0,3,7,7,36,60,194,140,28,13,7,496,0,0,0,0,5,24,20,99,69,25
LGA13850,0,0,0,0,0,0,0,20,0,0,3,0,0,0,0,0,0,0,0,0,11,28,26,137,90,9,10,3,3,0,3,3,26,334,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,4,5,0,3,0,0,0,0,0,7,21,0,0,8,5,3,0,0,0,0,0,0,4,21,0,0,9,12,4,0,0,0,0,0,0,0,34,0,0,7,8,3,0,0,0,0,0,0,0,15,0,3,3,16,5,5,0,0,0,0,0,0,28,0,0,11,3,0,0,0,0,0,0,0,0,20,0,0,13,11,3,0,0,0,0,0,0,0,30,6,0,9,9,6,9,4,0,0,0,0,0,31,6,0,4,9,5,5,0,0,0,0,0,0,24,0,3,0,5,0,0,0,0,0,0,0,6,20,0,0,0,3,6,0,0,0,0,0
LGA13910,19,10,0,0,0,0,8,93,3,4,11,11,3,4,0,0,0,0,5,9,51,77,79,314,491,229,205,86,13,6,4,12,71,1583,0,0,0,5,0,4,0,0,0,0,0,0,15,0,5,4,8,0,5,0,0,0,0,0,0,19,5,0,11,20,13,8,0,0,0,0,0,0,57,0,0,28,36,17,14,0,0,0,0,0,3,95,7,4,37,52,47,37,14,0,0,0,0,8,200,3,4,15,49,21,42,26,3,3,0,0,3,173,3,0,17,44,35,57,21,4,0,0,0,7,190,4,0,13,32,31,47,18,3,0,0,0,10,166,8,0,14,32,27,38,30,6,0,0,0,6,167,3,0,8,13,16,35,21,9,0,0,0,9,118,9,0,4,20,24,44,31,11,0,0,0,7,142,3,0,0,13,15,15,16,7,0,0,0,8,83,3,0,3,0,4,7,16,3,0,0
LGA14000,26,41,172,139,70,83,22,585,8,11,7,5,0,5,10,20,17,4,7,57,154,137,255,298,287,212,418,869,2541,2016,768,625,322,8758,0,0,8,6,0,8,9,25,38,22,16,22,157,6,6,10,0,0,0,8,5,6,3,5,3,55,8,12,44,16,10,6,12,23,29,16,6,14,203,6,9,92,29,16,9,14,20,19,4,7,15,241,10,16,88,42,37,19,39,48,43,28,10,28,396,3,9,27,31,22,23,38,64,74,34,17,21,359,5,6,30,32,20,25,47,115,109,44,25,32,477,0,3,25,13,15,18,46,109,145,69,32,11,486,0,0,9,26,12,16,69,183,220,109,62,20,733,5,0,11,13,13,12,51,185,218,122,60,12,698,4,0,13,12,10,28,49,259,444,254,165,26,1256,3,0,0,0,3,13,25,179,505,290,213,30,1276,0,0,0,5,3,3,19,86,257,184
LGA14100,0,6,9,7,7,23,5,62,10,9,7,0,0,0,0,3,6,0,0,11,31,44,133,62,42,18,56,102,166,147,111,212,40,1136,0,0,3,0,0,0,0,0,0,4,12,3,32,3,0,3,0,0,0,0,0,0,0,0,0,11,4,3,17,6,0,0,0,0,0,0,0,0,40,0,9,49,4,0,0,0,0,0,0,0,3,64,3,3,47,16,3,4,3,0,0,0,3,4,94,0,3,5,6,0,3,7,3,4,0,0,5,37,0,0,10,9,7,5,6,9,10,4,3,0,56,0,0,4,0,0,7,3,12,10,0,12,0,46,0,0,0,3,0,3,14,10,10,11,9,7,59,0,0,0,0,0,5,5,15,6,5,12,6,54,0,0,0,0,0,4,7,15,18,17,26,0,86,0,0,0,0,0,0,4,23,22,27,34,5,116,0,0,0,0,0,0,0,3,23,13
LGA14170,64,194,383,349,320,422,98,1968,10,40,22,27,10,30,40,63,25,19,19,89,396,350,812,752,962,848,1803,4297,6615,4169,2932,3258,748,27545,8,0,27,23,22,28,39,79,72,45,63,52,454,4,12,22,18,12,12,12,26,15,13,10,19,176,50,53,115,59,35,36,50,52,51,22,18,31,563,14,33,312,111,55,52,68,67,49,19,11,26,825,14,23,287,142,76,111,114,123,67,35,37,26,1052,4,8,50,115,59,108,143,205,113,49,35,24,919,6,6,58,74,72,113,206,297,157,69,76,32,1172,5,4,27,46,55,142,267,473,253,109,109,32,1513,0,3,32,37,38,138,320,762,400,187,169,36,2119,4,0,8,20,24,85,242,752,466,232,241,29,2102,5,0,15,23,36,88,272,1212,1013,482,535,65,3747,3,0,15,24,21,52,160,855,1174,724,772,64,3868,3,0,3,3,11,22,61,335,629,499
LGA14220,23,11,0,0,0,0,9,103,7,6,12,11,10,3,3,0,0,0,0,19,65,108,99,350,382,185,284,103,41,10,4,12,85,1659,0,0,3,6,3,6,0,0,0,0,0,4,27,0,0,0,0,0,0,0,0,0,0,0,0,12,4,4,18,25,14,9,9,4,0,0,0,3,88,6,5,43,38,19,18,4,0,0,0,0,0,134,27,7,28,50,27,39,17,6,0,0,0,3,198,0,5,21,43,21,44,31,7,0,0,0,3,169,6,3,23,45,25,44,21,3,0,0,0,4,179,0,0,13,43,28,51,37,7,0,0,0,5,182,7,7,16,24,34,36,38,6,0,0,0,12,169,0,0,8,19,20,34,48,9,0,0,0,3,150,0,4,8,11,25,33,53,13,0,0,0,4,155,7,0,5,9,8,17,39,15,0,0,0,0,95,0,0,0,0,4,3,15,4,0,0
LGA14300,6,5,0,0,0,0,9,30,3,0,3,4,0,0,0,0,0,0,0,0,15,32,28,86,108,67,44,17,4,0,0,7,23,415,0,0,4,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,3,9,5,3,0,0,0,0,0,0,26,3,0,10,12,5,3,0,0,0,0,0,0,32,6,10,16,8,7,10,0,0,0,0,0,0,48,0,0,4,7,6,5,6,0,0,0,0,0,27,0,0,8,7,9,18,6,4,0,0,0,0,48,0,0,4,12,9,8,4,0,0,0,0,0,36,0,0,3,9,5,10,9,0,0,0,0,0,36,0,0,6,7,8,14,6,0,0,0,0,4,37,0,0,6,4,3,13,8,0,0,0,0,4,43,0,0,3,3,3,0,9,4,0,0,0,0,25,0,0,0,0,0,0,3,5,0,0
LGA14350,30,28,3,0,0,0,14,188,3,8,12,20,19,21,5,5,0,0,0,17,99,80,110,401,762,476,556,266,78,42,8,28,116,2912,0,0,0,4,4,5,8,3,3,0,0,0,27,0,0,0,7,3,5,4,4,0,0,0,0,28,8,6,15,23,10,21,15,8,0,0,0,8,113,10,6,36,59,26,30,13,3,0,0,0,3,195,3,6,49,85,51,59,34,13,6,0,0,10,311,0,0,19,53,36,87,64,13,3,0,0,9,301,3,4,20,42,58,73,85,13,4,0,5,9,316,0,0,18,28,31,70,86,24,0,3,0,8,269,0,0,7,35,24,80,75,20,5,0,3,9,258,0,0,6,16,21,36,60,28,6,0,3,4,178,0,0,4,22,17,27,73,49,9,5,0,3,214,4,0,9,3,12,28,38,26,0,0,0,6,123,0,0,0,0,3,7,16,15,5,0
LGA14400,16,43,36,14,4,9,3,114,0,0,0,0,0,3,0,5,0,0,0,5,22,17,29,53,109,112,202,377,392,106,29,28,49,1500,0,0,0,0,0,0,0,5,3,0,0,0,14,0,0,0,0,0,0,0,3,0,0,0,4,5,5,0,0,0,3,8,5,4,4,0,4,0,30,0,4,0,8,5,7,5,8,4,0,0,0,54,0,0,8,19,4,8,8,17,12,6,0,3,81,0,0,0,7,10,10,24,33,10,3,0,7,99,3,3,0,6,4,11,18,30,10,3,0,3,97,0,0,3,3,0,13,33,30,21,5,0,0,108,0,3,0,3,8,5,24,47,35,7,3,4,142,0,0,0,0,0,5,16,47,25,8,6,3,126,0,0,0,3,3,9,23,63,53,13,7,9,189,0,0,0,0,9,3,23,54,51,12,12,0,167,0,0,0,0,0,3,4,27,23,12
LGA14500,3,14,36,57,77,229,18,441,0,0,4,0,0,7,0,0,9,14,23,23,82,26,63,82,63,48,103,222,587,878,832,2133,178,5221,0,0,0,9,4,3,0,7,12,35,63,21,152,0,0,0,3,0,0,0,5,7,7,19,4,42,0,0,3,0,0,4,5,6,19,10,18,3,70,0,3,6,3,5,0,0,9,6,10,8,5,50,9,13,11,10,9,9,9,6,19,21,29,12,143,0,6,4,9,3,7,15,15,30,27,37,12,165,0,5,9,5,6,4,11,22,23,32,41,11,170,3,0,7,4,3,3,21,21,49,49,69,7,236,0,0,7,0,0,3,16,37,87,67,93,14,325,4,0,5,4,0,3,9,33,77,80,96,16,334,0,0,5,3,3,6,15,50,175,162,258,18,693,5,0,0,3,3,10,20,33,182,215,328,17,816,0,0,0,0,0,6,9,24,86,100
LGA14550,13,5,0,0,0,0,4,47,3,0,6,3,0,0,0,0,0,0,0,5,21,39,21,148,164,77,147,58,10,0,0,4,30,706,0,0,0,3,0,0,0,0,0,0,0,6,15,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,8,0,7,5,4,0,0,0,0,0,33,6,0,8,28,14,8,3,0,0,0,0,0,67,0,3,17,25,16,27,4,0,0,0,0,7,102,4,0,9,30,13,26,9,0,0,0,0,0,91,0,0,8,18,18,18,9,4,0,0,0,3,81,0,0,10,12,6,14,18,0,0,0,0,4,66,0,3,8,12,3,24,11,0,0,0,0,0,69,0,0,3,10,9,7,10,3,0,0,0,0,36,0,0,3,6,11,8,16,0,0,0,0,3,56,0,0,3,0,0,7,7,0,0,0,0,0,28,0,0,0,0,0,4,0,0,0,0
LGA14600,5,0,0,0,0,0,3,49,4,0,18,0,0,0,0,0,0,0,0,7,21,107,51,277,115,21,13,4,0,0,0,3,37,630,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,7,4,0,0,0,0,0,0,0,16,6,4,16,12,6,0,0,0,0,0,0,4,46,7,0,18,16,0,4,0,0,0,0,0,3,59,3,3,8,21,11,10,0,0,0,0,0,3,57,0,3,19,21,7,10,0,0,0,0,0,8,63,6,0,7,20,5,7,0,0,0,0,0,6,55,7,5,9,20,6,10,0,0,0,0,0,0,55,8,0,11,18,8,9,0,0,0,0,0,0,57,11,6,7,15,8,11,5,5,0,0,0,0,59,11,0,4,10,6,13,4,0,0,0,0,4,44,9,0,4,0,0,0,4,0,0,0
LGA14650,163,291,197,90,16,14,46,1052,23,55,79,48,19,46,50,13,5,0,3,121,475,390,1027,1491,1772,1116,2618,3956,2133,604,116,142,581,15935,7,3,10,24,12,18,33,32,11,0,0,42,195,8,3,13,15,9,8,13,27,0,0,4,4,111,44,35,141,67,44,40,48,38,8,0,4,28,495,28,23,374,148,61,68,123,86,10,0,0,36,960,16,36,416,290,142,155,237,158,30,4,3,42,1532,9,14,108,176,127,165,336,242,32,3,4,38,1237,5,9,94,231,134,200,458,326,49,4,3,48,1570,11,9,45,110,126,156,427,438,75,14,7,28,1446,5,3,48,82,81,151,490,627,132,21,4,22,1670,5,0,23,37,42,106,403,553,155,25,9,26,1388,0,3,18,33,42,95,429,816,287,58,16,26,1815,4,0,15,17,21,56,244,597,275,49,22,20,1320,4,0,3,3,14,10,81,236,160,45
LGA14700,6,7,49,42,29,58,13,222,0,0,0,0,0,0,3,7,0,4,0,8,41,50,114,86,62,37,89,352,1179,618,343,561,101,3586,4,0,0,0,0,0,5,11,24,11,9,3,63,0,0,0,0,0,0,0,3,3,6,0,0,18,4,12,12,3,0,0,0,5,11,4,4,4,60,4,6,32,8,0,0,0,7,11,3,7,0,87,10,9,28,11,3,4,0,18,12,7,0,6,116,4,4,11,0,5,8,15,24,21,6,16,5,113,3,0,10,5,5,0,15,26,28,10,10,0,117,3,0,6,7,6,5,13,44,66,32,25,4,206,0,0,0,4,0,8,20,71,91,48,36,5,280,0,0,0,0,4,3,14,70,106,34,24,8,259,0,0,0,4,5,11,20,102,243,116,79,4,590,0,0,5,0,0,8,22,112,304,164,129,8,753,0,0,0,0,0,3,3,40,172,103
LGA14750,4,0,0,0,0,0,3,47,0,5,12,3,3,0,0,0,0,0,0,7,36,53,66,198,336,166,78,37,6,3,0,6,46,974,0,0,0,4,0,5,0,0,0,0,0,4,16,0,0,0,5,0,0,0,0,0,0,0,0,10,9,0,9,14,4,4,0,0,0,0,0,4,40,3,0,21,23,4,7,5,0,0,0,0,0,66,0,0,34,31,10,14,0,4,0,0,0,0,93,0,0,15,33,7,18,4,0,0,0,0,0,81,3,0,22,32,15,17,10,0,0,0,0,0,102,4,0,15,38,18,20,5,0,0,0,0,0,101,0,0,13,27,21,28,12,0,0,0,0,0,101,0,3,9,18,13,27,16,0,0,0,0,4,89,0,0,8,15,15,38,25,3,0,0,0,0,113,0,4,3,17,14,13,20,10,0,0,3,10,78,0,0,0,4,0,10,9,0,0,3
LGA14850,57,87,35,4,0,4,12,283,7,13,17,12,9,7,17,0,0,0,0,24,109,103,238,487,766,534,782,1051,360,41,10,25,153,4550,0,3,9,8,8,5,11,4,0,0,0,12,58,3,0,11,9,0,8,3,0,0,0,0,5,40,13,14,28,39,31,29,26,0,0,0,0,6,190,3,3,78,84,37,31,34,12,0,0,0,16,296,14,8,100,119,79,93,73,29,0,0,0,7,522,6,4,40,89,66,107,121,32,0,3,0,9,476,0,5,18,64,43,114,160,53,11,4,0,15,498,0,0,23,38,40,101,151,56,4,0,0,6,426,3,7,14,33,48,87,192,90,10,0,0,11,501,0,0,16,13,30,69,132,85,11,3,0,9,363,0,0,5,11,15,64,157,96,15,0,5,10,376,0,0,3,12,5,28,74,82,20,5,0,3,238,0,0,0,0,0,6,22,38,4,0
LGA14870,17,3,0,0,0,0,4,86,3,8,14,16,3,0,3,0,0,0,0,13,63,68,124,332,570,282,222,89,43,4,0,17,64,1814,0,0,4,6,5,3,3,0,0,0,0,4,26,9,5,4,3,0,0,5,0,0,0,0,4,19,12,9,28,16,8,10,13,0,0,0,0,0,101,4,0,67,34,17,26,18,0,0,0,0,12,174,5,3,53,59,39,48,23,0,0,0,0,6,242,0,0,19,38,26,45,30,3,0,0,0,4,172,3,0,23,47,23,55,38,11,0,0,0,10,204,0,0,6,16,25,47,39,10,0,0,0,4,153,0,0,11,24,31,53,52,10,0,0,0,6,184,0,0,7,22,9,28,36,16,0,0,0,7,114,4,0,5,19,9,33,55,20,3,0,0,4,147,0,0,0,7,8,18,33,20,0,0,0,5,95,0,0,0,0,3,5,11,9,4,0
LGA14900,121,261,299,156,32,12,77,1207,32,61,44,29,24,28,65,54,18,5,3,133,496,574,1089,1153,1035,914,1802,3180,3778,1419,241,150,688,16025,14,10,43,27,15,24,62,80,66,18,9,47,404,25,6,27,25,4,5,22,22,20,5,0,22,189,116,70,165,73,24,23,61,61,44,10,8,39,691,14,37,399,84,42,52,82,85,47,7,5,45,909,26,29,364,190,74,71,221,211,122,20,6,32,1357,11,19,76,104,37,79,203,279,137,25,10,33,1017,10,7,98,189,80,128,309,403,200,49,16,42,1540,7,8,76,75,80,99,318,475,280,46,22,46,1534,7,5,36,56,48,119,342,572,386,77,19,47,1704,0,0,14,36,30,73,255,499,398,98,19,34,1468,3,0,14,36,26,140,285,680,588,188,55,46,2061,4,0,7,11,14,87,206,489,568,178,59,34,1659,0,0,7,12,10,81,76,245,304,132
LGA14920,9,7,0,0,0,0,6,59,0,5,4,10,0,0,3,0,0,0,0,3,20,44,40,184,214,67,71,45,3,0,0,7,52,727,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,3,4,0,3,0,0,0,0,0,0,15,0,3,22,24,8,3,0,0,0,0,0,3,68,4,0,16,23,7,4,6,0,0,0,0,0,62,0,0,13,15,19,20,3,0,0,0,0,3,65,3,0,13,23,7,10,7,0,0,0,0,3,69,0,4,11,11,13,15,7,0,0,0,0,6,70,0,0,13,13,10,15,6,0,0,0,0,9,73,0,0,13,16,11,20,11,0,0,0,0,3,67,4,6,10,18,8,17,22,3,0,0,0,8,87,0,0,5,15,4,18,17,0,0,0,0,0,58,0,0,0,3,0,3,0,0,0,0
LGA14950,0,0,0,0,0,0,0,12,0,0,3,0,0,0,0,0,0,0,0,0,3,31,7,37,43,10,8,7,0,0,0,3,9,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,0,3,0,4,0,0,0,0,0,0,0,0,6,0,5,0,8,4,0,3,0,0,0,0,0,23,0,0,3,5,3,0,0,0,0,0,0,0,16,0,0,0,0,0,5,0,0,0,0,0,0,8,3,0,7,8,0,4,0,0,0,0,0,0,24,0,0,4,10,4,0,0,0,0,0,0,0,18,0,0,6,7,0,0,4,6,0,0,0,0,13,0,0,3,4,4,3,0,0,0,0,0,0,16,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA15050,49,103,85,24,0,5,18,393,6,22,21,15,4,17,23,9,0,0,0,34,165,140,372,587,771,534,953,1576,1015,172,22,36,229,6401,4,3,7,10,3,5,19,17,3,0,0,12,77,6,3,8,6,3,5,6,10,0,0,0,3,54,19,24,43,36,12,10,32,19,0,0,0,18,225,15,6,129,82,22,30,58,24,6,0,0,11,382,14,20,155,121,46,67,98,48,3,0,0,19,585,3,3,46,100,43,68,146,105,3,0,0,19,538,5,6,34,104,56,105,267,164,10,0,0,18,760,6,3,33,45,51,84,276,169,11,0,0,16,702,0,4,17,45,40,85,275,290,25,8,0,10,793,0,0,9,21,25,75,242,313,23,0,4,5,720,6,3,8,16,29,97,302,506,47,10,3,8,1032,0,0,4,14,15,60,179,384,52,12,5,10,725,0,0,0,3,12,27,61,198,35,3
LGA15240,117,121,49,8,3,4,22,524,14,22,40,65,23,37,21,3,0,0,4,59,280,190,358,1068,1999,1106,1793,1394,399,43,24,79,331,8790,0,0,11,11,8,22,21,20,3,0,0,5,108,0,0,14,13,9,23,19,3,0,0,0,3,97,15,17,58,93,43,60,58,12,3,0,3,17,370,6,8,130,172,67,86,60,23,0,0,3,23,584,10,19,187,292,147,218,156,41,4,0,4,28,1106,3,4,55,152,118,221,214,81,10,0,4,13,887,4,13,47,149,120,271,311,136,17,0,3,25,1080,5,5,38,92,114,189,306,131,12,0,8,24,929,5,6,26,80,98,175,317,143,15,0,5,26,882,0,5,21,37,53,106,212,159,16,6,3,13,634,11,0,16,32,42,108,250,189,38,8,3,16,698,7,0,4,12,17,43,105,117,17,0,0,16,335,0,0,4,6,7,16,42,50,20,0
LGA15270,21,27,16,8,0,0,12,139,0,3,17,13,16,6,4,0,0,0,4,28,94,54,61,275,390,276,362,312,183,42,4,25,103,2100,0,0,0,7,4,9,3,0,0,0,0,8,25,0,0,4,0,4,6,3,0,0,0,0,0,19,4,4,11,25,4,8,6,0,0,0,0,5,71,0,0,20,33,23,23,19,5,0,0,0,0,132,3,0,29,56,34,42,39,6,0,0,0,5,220,0,0,8,33,15,30,42,15,0,0,0,3,152,0,0,12,29,30,58,70,30,6,0,0,5,228,3,0,6,33,27,37,42,20,0,0,0,4,176,4,0,10,14,24,33,69,52,0,0,3,6,210,0,0,0,13,5,32,69,39,0,0,0,4,171,3,0,3,14,15,28,76,67,11,0,0,6,234,4,0,0,9,20,18,74,71,12,6,0,14,220,4,0,0,7,0,10,21,35,10,0
LGA15300,8,12,4,0,0,0,16,123,11,8,23,13,3,4,0,0,0,0,0,13,83,172,72,501,415,125,191,87,43,10,0,10,94,1722,0,3,4,3,0,0,0,0,0,0,0,0,13,0,0,5,3,0,0,0,0,0,0,0,0,20,10,8,23,36,4,4,4,6,0,0,0,4,95,3,0,17,34,3,0,5,0,0,0,0,9,84,4,11,26,50,17,4,11,0,0,0,0,13,133,3,6,19,36,9,11,11,3,0,0,0,3,106,5,9,21,57,27,17,5,7,4,0,0,10,158,3,7,23,35,21,20,7,6,0,0,0,10,127,7,0,17,49,20,24,10,0,0,0,5,14,152,11,6,21,34,11,21,20,8,0,0,0,7,140,8,4,18,34,18,32,31,16,4,0,0,6,172,9,9,6,19,12,9,24,19,7,0,0,10,128,5,0,3,3,5,6,11,13,5,0
LGA15350,0,3,42,52,41,91,12,232,0,0,6,0,0,0,11,7,9,10,23,7,67,15,32,35,43,31,65,314,937,705,388,1014,95,3666,0,0,0,0,0,3,0,3,13,6,17,6,50,0,0,0,0,0,4,0,0,0,0,8,0,13,0,0,7,3,0,0,0,8,5,5,4,0,41,0,0,11,8,5,0,6,16,14,7,7,0,73,0,0,8,7,5,5,10,16,12,7,6,5,82,0,0,3,8,5,6,4,30,19,4,8,3,97,0,0,0,0,0,4,5,32,23,11,13,3,86,0,0,0,6,5,4,10,48,44,20,21,6,160,5,0,0,4,0,0,10,66,66,27,37,8,210,0,0,0,0,4,3,0,77,68,34,38,3,229,4,0,3,0,0,4,7,116,137,80,84,7,443,0,0,0,0,0,3,0,75,155,108,121,3,473,0,0,0,0,0,0,0,16,63,52
LGA15520,10,10,0,0,0,0,0,45,0,0,7,12,0,0,0,0,0,0,0,13,31,81,41,169,203,79,145,85,29,7,0,12,49,915,0,0,0,0,0,0,0,3,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,10,3,0,0,8,0,0,0,0,3,34,4,5,12,12,8,5,4,0,0,0,0,4,45,9,7,28,15,10,7,5,0,0,0,0,0,82,5,6,13,24,10,11,7,0,0,0,0,0,78,3,0,11,17,5,17,13,0,5,0,0,4,77,5,4,14,9,12,19,10,9,0,0,3,6,81,0,0,11,12,6,26,25,9,0,0,0,3,97,4,3,11,12,11,14,15,11,3,0,0,0,81,4,4,3,13,10,12,26,20,6,0,0,3,100,4,0,5,6,4,9,18,11,9,0,0,0,77,0,0,3,0,0,5,8,15,0,0
LGA15560,0,0,0,0,0,0,4,25,0,0,7,0,5,0,0,0,0,0,0,6,16,27,20,113,105,22,5,3,5,0,0,4,38,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,11,0,0,0,3,7,0,0,0,0,0,0,0,14,5,0,15,12,0,0,0,0,0,0,0,0,32,0,0,7,12,12,3,0,0,0,0,0,0,37,0,0,9,9,0,0,0,0,0,0,0,0,32,0,0,13,17,3,0,3,0,0,0,0,3,37,0,0,7,15,3,0,0,0,0,0,0,3,39,0,3,9,4,0,0,0,0,0,0,0,3,19,0,0,6,16,8,4,0,0,0,0,0,0,41,0,3,6,13,4,8,0,0,0,0,0,3,35,3,0,4,5,0,0,0,0,0,0
LGA15650,22,15,21,5,0,0,5,115,0,3,5,9,0,3,4,5,0,0,0,16,55,31,57,210,313,209,300,331,313,51,5,24,107,1965,0,0,0,4,3,0,11,0,0,0,0,8,29,6,0,0,6,5,8,0,0,0,0,0,0,28,3,14,16,25,4,11,8,0,0,0,0,0,88,3,0,9,43,12,18,7,0,0,0,0,3,109,6,0,27,64,26,40,19,6,0,0,0,7,189,0,4,8,36,22,46,32,5,0,0,0,0,157,0,0,17,30,23,56,47,0,4,0,0,9,189,0,0,9,29,26,61,43,0,0,0,3,0,181,0,0,3,34,19,52,64,3,0,0,0,9,203,0,0,7,22,15,51,59,10,0,0,0,4,168,0,0,4,16,23,70,97,18,0,0,0,8,239,0,0,8,9,20,44,79,29,7,0,0,3,198,0,0,0,0,3,11,25,17,6,0
LGA15700,24,12,8,0,0,3,6,110,0,0,16,15,8,14,3,0,0,0,0,15,67,55,133,326,387,279,341,264,69,7,9,14,69,1949,0,0,4,0,0,8,10,0,0,0,0,5,24,0,0,0,3,5,5,0,0,0,0,0,3,21,9,0,26,18,11,15,8,0,0,0,0,3,89,0,3,50,33,20,16,23,0,0,0,0,7,146,0,3,67,63,35,39,38,10,0,0,3,10,272,4,0,22,31,18,35,35,21,0,0,0,4,180,5,0,26,41,27,42,64,25,0,0,0,12,241,4,0,10,18,28,38,57,25,7,0,5,4,184,0,0,11,15,15,41,57,26,7,3,6,6,176,0,0,4,12,8,26,43,28,4,0,0,4,133,4,0,11,16,12,22,37,41,3,0,3,13,157,0,0,5,5,8,9,30,22,9,0,3,5,94,3,0,0,0,0,6,12,4,4,3
LGA15750,8,6,4,4,0,0,3,76,4,0,18,7,0,6,6,3,0,0,0,15,55,79,90,394,290,110,108,98,60,16,0,12,83,1347,0,0,8,0,0,4,0,4,0,0,0,9,18,0,0,0,0,0,5,0,0,0,0,0,5,11,3,10,12,15,3,3,6,0,0,0,0,3,58,0,5,26,23,4,7,8,7,0,0,0,4,81,12,8,43,27,7,7,9,0,0,0,0,6,119,3,0,16,20,9,17,6,3,0,0,0,0,91,3,4,14,24,9,22,23,10,0,0,0,9,103,0,4,19,26,18,22,15,13,0,0,0,10,118,0,0,8,29,17,15,24,12,0,0,0,5,119,4,0,7,18,11,15,23,15,0,0,0,4,112,3,5,11,21,17,22,26,38,0,0,0,12,154,4,0,5,13,14,13,27,35,4,0,0,11,128,0,0,10,3,3,8,5,15,3,0
LGA15800,3,0,0,0,0,0,0,22,0,0,4,4,0,0,0,0,0,0,0,9,21,39,35,167,153,31,32,8,9,0,0,3,33,515,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,8,0,0,0,0,0,0,0,0,18,0,0,11,25,4,0,0,0,0,0,0,0,55,0,0,21,23,10,8,0,0,0,0,0,0,52,4,0,3,21,7,12,0,0,0,0,0,3,50,4,0,6,16,14,9,0,0,0,0,0,3,51,0,0,4,19,12,6,0,0,0,0,0,0,50,4,0,8,18,11,4,0,0,0,0,0,0,51,0,4,3,12,3,7,3,0,0,0,0,6,37,3,0,7,3,4,6,4,0,0,0,0,4,35,6,0,0,9,3,9,3,0,0,0,0,0,27,0,0,3,3,0,0,0,0,0,0
LGA15850,6,0,0,0,0,0,0,26,0,0,4,3,0,0,0,0,0,0,0,3,16,41,44,183,188,81,41,12,5,0,0,10,33,637,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,6,5,0,0,0,0,0,0,0,3,15,0,4,3,9,3,3,0,0,0,0,0,0,23,0,3,8,9,7,3,0,0,0,0,0,0,38,0,9,22,24,8,6,5,0,0,0,0,3,79,0,0,13,4,13,17,8,4,0,0,0,0,60,6,0,4,14,19,16,10,0,0,0,0,0,74,0,0,10,10,6,10,4,0,0,0,0,4,51,0,0,7,7,8,12,6,0,0,0,0,0,42,0,0,7,4,8,12,6,0,0,0,0,0,39,4,4,0,7,0,13,12,5,0,0,0,0,44,5,4,0,6,11,0,5,5,0,0,0,0,30,4,0,0,0,0,3,0,6,0,0
LGA15900,160,337,362,130,46,46,53,1354,36,85,49,49,26,30,52,34,7,0,18,127,516,605,1448,1376,1850,1227,2671,4787,3303,972,369,404,738,19756,16,4,45,32,20,23,47,67,39,12,11,32,332,21,10,32,18,13,15,14,28,8,4,4,11,178,138,65,199,83,49,63,76,72,9,0,0,33,801,38,58,541,184,90,90,113,90,18,0,9,40,1271,41,48,525,245,127,177,217,177,41,3,9,54,1658,17,17,101,169,110,194,317,282,54,3,9,53,1329,11,13,128,152,127,219,433,367,60,11,8,38,1587,10,9,74,113,111,216,476,506,107,18,14,27,1685,8,3,51,85,76,178,518,736,182,29,22,31,1924,0,5,23,46,57,127,458,720,208,47,23,33,1738,0,3,29,44,45,108,489,1152,414,68,44,39,2441,0,0,7,24,27,65,323,865,433,112,46,33,1937,0,0,5,9,11,22,105,431,247,68
LGA15950,13,32,132,224,166,330,45,957,8,11,8,5,0,3,10,41,40,23,79,49,272,110,228,119,135,145,257,1117,3272,3331,2128,3091,377,14302,0,3,3,4,3,4,9,30,33,25,55,23,184,0,3,6,0,3,0,0,14,11,8,10,5,65,20,5,41,12,5,0,9,14,10,12,17,10,149,4,14,87,14,0,3,15,16,19,10,14,20,213,3,3,77,26,11,9,17,43,32,8,33,17,282,0,0,12,12,6,7,30,61,41,40,34,30,265,5,0,8,20,6,9,27,95,77,51,51,14,349,0,0,13,10,6,11,22,125,103,57,74,10,432,0,0,0,4,4,14,37,221,189,110,96,23,718,3,0,6,0,8,7,45,258,211,151,138,10,839,3,3,0,4,12,17,56,420,554,323,324,32,1753,0,0,9,4,14,21,39,315,742,572,608,27,2343,0,0,0,0,3,7,17,98,292,354
LGA15990,25,72,283,342,263,573,66,1685,30,31,14,14,17,10,34,50,59,36,63,125,482,286,498,536,400,382,611,1762,4828,4211,2696,5051,747,22014,8,3,13,3,7,9,8,29,39,36,71,26,245,3,0,8,4,0,5,5,13,13,18,19,12,95,15,23,66,16,12,6,18,14,30,21,37,17,264,16,24,203,29,23,17,23,36,40,17,30,38,493,31,48,187,74,30,32,41,83,57,29,44,23,694,4,18,52,64,27,38,42,118,120,66,71,20,627,5,11,40,40,27,29,47,177,187,85,94,31,778,5,3,23,15,23,51,65,244,275,120,155,32,1007,8,0,23,20,14,35,88,321,425,212,275,36,1475,7,0,10,10,13,26,57,279,433,261,330,34,1457,4,0,9,10,15,31,88,400,920,539,745,52,2816,9,0,8,7,9,19,54,282,862,742,1012,50,3057,0,0,7,9,0,18,27,79,402,447
LGA16100,8,3,0,0,0,0,0,24,0,7,3,3,4,0,0,0,0,0,0,6,18,16,35,68,73,74,73,26,8,0,0,0,24,397,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,5,0,0,0,0,0,0,6,0,0,5,0,3,3,3,0,0,0,0,0,12,0,4,10,0,0,0,4,0,0,0,0,0,21,4,9,8,4,9,5,0,0,0,0,0,0,34,0,0,7,4,5,3,5,0,0,0,0,5,26,0,0,0,3,6,7,5,0,0,0,0,3,39,0,5,4,5,10,9,6,4,0,0,0,0,37,0,0,7,4,8,15,6,0,0,0,0,4,40,3,0,3,4,4,7,7,0,0,0,0,0,39,0,0,0,6,4,16,12,8,0,0,0,0,46,0,0,0,0,5,12,7,3,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0
LGA16150,48,79,62,18,0,4,21,327,3,15,16,26,10,12,9,0,5,0,0,45,148,106,249,438,765,451,840,804,473,146,34,76,240,4615,5,3,0,11,5,10,9,9,0,6,0,4,60,3,0,14,7,6,8,0,3,0,0,0,5,52,19,15,47,32,22,17,17,4,0,0,0,3,173,6,11,85,65,37,25,23,5,0,0,0,11,276,8,7,93,97,60,70,38,14,0,0,0,14,401,5,0,31,47,57,89,74,39,3,0,0,9,352,0,0,28,66,64,117,112,46,0,0,0,12,446,0,3,13,40,45,118,118,50,4,0,0,11,406,3,3,12,46,46,112,156,69,8,0,0,19,471,0,3,3,24,26,77,151,80,4,3,0,9,395,4,0,4,26,24,91,209,168,18,0,0,8,554,0,0,4,7,21,41,150,157,17,3,0,18,415,0,0,6,5,7,12,43,78,14,0
LGA16200,10,3,5,0,0,0,4,65,5,8,12,11,0,0,0,0,0,0,0,11,52,87,136,381,381,110,156,89,37,7,0,7,73,1475,0,0,4,5,0,3,0,0,0,0,0,0,16,3,0,5,0,3,3,0,0,0,0,0,3,17,5,6,23,13,4,0,4,0,0,0,0,6,68,3,8,38,27,11,14,4,0,0,0,0,10,123,3,4,70,61,23,18,12,0,0,0,0,0,185,3,5,20,30,21,26,17,0,0,0,0,4,130,0,4,18,31,33,25,14,3,0,0,0,4,133,3,0,18,30,26,33,14,0,0,0,0,5,130,0,0,16,21,18,22,15,3,0,0,0,13,114,0,0,3,22,15,35,13,3,0,0,0,0,101,3,3,7,16,25,27,47,8,0,0,0,0,139,4,0,6,9,5,20,38,11,0,0,0,0,88,0,0,0,0,0,4,16,0,0,0
LGA16260,63,224,490,283,84,56,91,1460,23,59,40,19,9,33,44,68,44,10,27,130,509,549,1189,1099,933,607,1191,4354,8045,3430,1108,637,897,24043,24,9,37,37,14,30,44,146,181,132,53,69,776,17,15,23,30,9,4,5,26,40,20,9,16,224,106,67,156,61,33,21,27,91,80,27,20,43,723,44,47,430,95,38,27,44,94,51,31,18,31,958,18,34,414,175,57,45,87,169,144,56,13,48,1260,16,14,97,97,33,62,94,271,204,96,20,30,1036,8,15,104,147,88,95,164,413,321,113,54,46,1575,8,4,44,67,60,101,209,583,472,151,65,57,1820,8,6,32,53,45,86,233,957,658,238,98,50,2467,3,4,25,33,26,68,188,1015,725,237,116,41,2481,0,0,33,42,33,85,252,1730,1523,527,240,86,4553,3,4,13,30,41,78,154,1381,1701,686,285,59,4438,0,0,6,12,14,50,80,609,846,464
LGA16350,106,319,247,47,22,12,55,992,19,37,26,19,26,32,72,27,3,5,5,114,393,330,721,750,1030,1114,2150,4956,3155,540,147,127,585,15608,4,5,16,12,0,23,39,66,19,7,3,26,229,16,3,21,9,8,7,17,15,9,0,0,6,107,47,50,72,47,22,27,45,60,9,0,4,25,418,23,13,242,98,38,39,105,105,18,0,0,26,711,23,15,258,130,68,136,176,178,28,9,8,35,1053,8,6,66,93,62,113,272,336,62,9,7,35,1078,5,6,55,124,102,156,309,503,97,17,5,40,1419,6,4,37,50,50,144,425,611,121,27,14,26,1518,0,6,33,44,39,141,429,922,213,38,11,39,1934,3,4,22,23,23,92,354,896,271,46,20,40,1789,3,0,8,20,30,106,395,1411,490,100,29,35,2649,0,0,6,7,22,65,264,1087,534,126,29,31,2177,0,0,11,13,10,30,83,485,291,100
LGA16380,75,115,98,10,3,3,24,429,4,15,12,37,17,29,13,9,4,4,3,56,204,119,383,549,1055,741,1339,1765,1107,215,42,63,272,7644,5,6,8,4,10,12,11,17,7,0,0,10,90,6,0,6,4,3,4,9,5,0,0,0,5,42,15,17,44,26,15,34,28,20,3,0,0,8,219,4,9,122,86,45,67,59,40,4,0,0,15,451,8,11,174,107,87,126,123,75,11,0,3,18,751,0,6,41,73,51,157,186,138,23,4,0,15,706,6,5,41,70,78,144,234,180,28,7,0,15,813,0,4,30,50,51,143,228,234,26,6,3,14,796,5,4,18,33,38,82,247,274,61,13,3,9,790,0,0,11,10,17,50,210,288,67,12,6,12,684,5,0,4,27,15,48,202,348,124,23,12,21,838,6,0,0,8,17,25,90,276,112,23,9,12,583,0,0,0,6,6,11,24,106,70,20
LGA16400,69,114,88,20,3,0,18,429,0,18,24,12,13,16,14,5,0,0,5,54,156,112,308,469,745,762,1265,1505,856,166,47,73,222,6536,0,0,8,8,9,13,21,12,6,0,0,5,81,4,0,9,0,0,9,10,4,4,0,0,3,45,15,9,36,13,11,37,28,15,4,0,0,12,176,3,9,89,43,25,37,40,27,5,0,4,15,279,10,14,107,79,49,93,120,54,8,0,3,19,545,4,8,33,39,51,79,165,93,13,0,3,10,490,4,3,34,63,58,86,191,121,14,0,4,19,604,4,3,30,24,38,105,198,142,22,6,4,11,595,3,4,18,30,43,112,229,236,44,7,8,18,743,0,0,12,18,22,73,157,196,65,11,0,9,563,0,0,7,11,21,123,189,326,82,10,11,13,799,0,0,0,7,10,78,93,178,92,11,9,11,499,0,0,0,3,3,39,45,89,47,15
LGA16490,44,62,51,39,11,8,22,299,3,8,16,14,10,8,13,7,10,0,0,26,115,100,198,303,527,439,706,1030,1014,413,162,94,180,5170,0,0,3,10,7,0,8,17,0,0,5,0,52,4,3,0,3,4,5,8,0,0,0,0,4,35,13,7,28,20,17,14,19,0,0,0,0,3,133,0,9,60,35,18,25,25,17,0,0,0,9,192,0,6,66,98,36,38,26,21,7,0,0,10,321,0,0,17,65,37,59,36,34,11,0,0,6,281,0,3,15,75,65,77,77,54,11,0,0,10,391,0,3,11,59,76,98,90,66,20,5,5,7,441,0,3,8,45,72,121,121,123,35,4,3,14,546,7,0,3,38,50,88,144,162,42,15,4,9,551,3,0,3,33,49,105,165,264,83,19,9,12,746,0,0,4,17,23,68,139,240,114,43,23,11,687,0,0,3,0,4,34,43,102,62,30
LGA16550,44,57,293,425,247,396,79,1677,33,48,28,29,5,6,28,62,69,45,64,121,551,485,1193,784,641,387,639,1505,4479,4792,2558,3077,764,21303,11,18,40,33,16,37,54,217,184,185,374,49,1201,12,6,26,14,6,3,13,31,39,28,59,17,252,86,51,179,52,26,17,11,43,50,56,64,34,672,37,45,443,63,20,15,19,49,56,29,38,41,853,20,33,411,120,42,51,44,70,77,52,70,37,1013,14,3,81,107,33,46,68,106,119,74,115,33,794,17,14,73,99,56,46,67,119,162,104,103,36,893,7,3,47,43,43,56,68,177,238,163,129,37,1015,7,3,20,32,39,51,88,278,340,232,224,31,1346,4,4,13,24,19,25,63,201,382,335,254,40,1365,5,3,15,22,27,46,81,345,722,638,523,44,2454,3,3,6,12,14,39,52,217,730,841,749,35,2695,5,0,5,8,7,17,37,85,404,554
LGA16610,32,50,9,0,0,0,6,146,3,9,20,12,11,7,5,0,0,0,0,19,96,60,101,304,468,282,520,419,77,17,0,23,103,2385,0,0,0,9,0,7,10,0,0,0,0,7,37,0,0,4,3,0,4,0,0,0,0,0,0,18,6,3,15,26,11,11,10,0,0,0,0,0,93,0,4,36,50,29,21,22,0,0,0,0,6,170,4,8,42,76,34,62,33,7,0,0,0,12,280,0,4,13,57,25,45,57,7,0,0,0,7,223,3,3,15,37,33,88,80,15,0,0,0,10,297,0,0,18,36,33,75,73,19,4,0,0,5,260,0,0,7,23,28,84,88,23,5,0,4,8,255,3,0,6,21,24,49,70,21,3,0,6,9,201,0,0,0,8,22,60,76,28,6,0,4,5,205,8,0,3,5,5,25,43,16,3,0,4,7,115,0,0,0,3,4,11,17,17,6,0
LGA16700,31,91,213,155,78,56,44,748,11,20,11,12,4,11,27,37,22,13,18,74,253,235,525,517,428,291,668,2229,3753,1964,921,701,463,12703,13,7,20,15,14,22,31,97,161,106,85,41,615,0,5,11,12,9,0,6,23,23,15,13,8,124,32,17,65,31,17,21,22,60,36,28,19,21,379,15,22,186,63,16,18,23,58,33,25,16,21,497,7,20,190,93,28,33,56,91,54,42,22,26,664,10,6,35,38,15,23,59,114,90,35,36,38,494,0,0,32,67,35,52,68,206,147,59,47,40,738,0,3,22,22,33,33,89,323,186,91,58,26,898,3,0,18,21,15,42,122,463,281,144,103,40,1246,0,0,11,16,21,33,84,418,327,158,114,24,1192,4,3,6,15,13,21,126,728,676,319,249,38,2194,0,0,3,11,13,36,79,560,651,338,251,27,1972,4,0,4,5,4,25,46,228,361,228
LGA16900,63,94,86,22,0,5,16,395,14,20,22,22,9,21,15,9,5,0,5,38,171,149,430,529,657,477,884,1337,899,200,28,44,201,5846,0,0,11,3,0,9,10,11,6,0,4,7,57,3,0,9,8,0,3,0,5,9,0,0,5,45,18,16,55,25,11,14,18,8,3,0,0,15,178,5,7,165,57,26,30,23,29,3,0,0,18,371,7,8,175,79,43,52,63,68,6,0,0,9,515,0,4,34,76,37,72,67,120,23,8,0,6,446,8,6,33,92,49,81,133,149,39,9,5,10,618,6,4,18,33,46,64,107,200,39,9,5,15,542,0,0,19,27,31,48,134,229,78,14,0,7,594,0,0,10,11,16,28,116,217,72,15,0,10,504,0,0,9,7,10,39,128,312,154,52,13,12,730,0,0,0,3,6,15,72,210,140,36,0,4,493,0,0,0,0,0,3,25,94,76,31
LGA16950,144,149,66,7,0,3,21,604,14,21,35,33,24,37,21,10,0,0,5,54,251,204,365,958,1488,1242,1950,1561,537,56,25,86,290,8763,4,0,5,6,8,13,17,12,6,0,0,7,92,9,0,8,8,3,8,12,8,0,0,0,3,67,22,32,56,53,35,57,62,20,0,0,3,16,361,9,14,131,129,66,84,87,24,4,0,0,23,576,11,11,148,192,97,183,193,45,7,0,4,19,912,0,5,42,131,93,181,218,81,7,0,3,25,785,3,11,42,143,103,186,347,149,3,0,5,26,1027,7,6,27,73,72,166,316,167,14,0,4,19,865,0,11,20,52,47,151,372,193,18,8,5,23,909,5,5,14,42,38,140,314,226,29,6,4,11,815,0,3,3,41,41,158,323,292,50,8,15,20,956,0,0,4,16,23,83,166,195,35,9,13,11,561,4,0,0,8,11,44,47,97,36,8
LGA17000,25,27,37,4,0,0,10,143,4,10,3,3,4,8,3,3,0,0,0,22,64,62,118,173,184,167,303,411,431,90,13,22,118,2100,0,0,0,0,0,0,3,4,0,0,0,3,26,5,0,3,0,3,0,0,0,0,0,0,0,14,3,8,14,16,5,3,5,0,0,0,0,3,68,6,5,23,21,8,5,11,5,0,0,0,4,89,4,8,45,36,15,20,15,4,3,0,0,3,149,3,0,14,24,18,26,34,14,0,0,0,4,132,3,5,10,31,11,21,43,10,0,0,0,0,139,0,3,0,21,18,32,51,24,0,0,0,3,161,0,0,9,17,15,43,68,32,6,0,0,8,186,0,0,7,12,22,38,56,35,12,0,0,6,189,0,0,3,15,12,56,89,70,10,0,0,4,265,0,4,0,10,11,28,86,92,18,6,0,7,256,0,0,0,0,3,13,33,31,8,0
LGA17040,8,15,8,5,0,10,4,101,0,3,5,11,6,4,0,0,6,0,5,13,58,58,93,297,337,198,242,163,109,44,42,192,107,1877,0,0,0,3,0,6,0,0,0,0,0,3,21,0,0,3,0,0,0,0,0,0,0,3,0,13,3,7,11,17,9,10,0,0,0,0,4,5,56,0,6,25,25,18,15,0,0,0,0,3,0,104,5,5,42,38,23,26,10,4,0,0,5,4,162,0,3,15,39,21,30,12,9,0,0,14,3,152,4,5,16,43,31,42,17,7,5,4,9,7,183,0,8,15,35,18,34,16,4,0,6,8,5,148,4,7,4,25,26,41,32,21,0,0,13,8,174,0,0,14,16,20,35,41,22,0,3,13,9,171,3,0,6,25,21,46,48,38,10,4,25,6,234,3,0,3,13,16,38,26,30,9,7,27,12,176,0,0,6,6,6,3,17,14,4,7
LGA17080,9,5,0,0,0,5,8,72,0,5,5,8,3,0,4,0,0,0,3,14,44,116,92,286,382,172,155,98,10,3,0,14,63,1389,0,0,3,5,0,0,0,0,0,0,0,5,19,0,0,4,7,5,0,0,0,0,0,0,0,13,4,11,12,17,4,5,0,0,0,0,0,4,53,4,9,23,27,9,4,4,0,0,0,0,8,91,11,7,41,45,24,3,0,0,0,0,0,0,135,0,3,10,35,19,21,9,0,0,0,0,0,104,0,4,15,40,25,13,11,3,0,0,0,0,119,0,0,17,36,20,21,8,0,0,0,0,0,108,10,0,13,29,18,15,16,0,0,0,0,8,116,7,0,6,25,17,21,9,4,0,0,0,4,92,9,0,19,31,14,39,39,9,0,3,0,6,162,3,0,5,7,8,19,28,6,0,0,3,4,96,4,0,5,7,0,4,4,0,0,0
LGA17100,3,27,102,93,30,12,18,304,0,7,0,0,0,0,3,15,14,4,4,23,66,64,197,116,116,79,116,489,1383,900,287,175,164,4084,0,0,3,9,0,5,0,19,45,22,23,17,159,0,0,5,5,0,3,3,3,17,6,3,0,52,9,10,16,8,3,3,3,10,16,11,5,4,104,7,6,60,13,0,6,11,13,20,10,8,10,167,0,4,44,19,12,6,11,35,21,5,5,16,178,0,0,16,4,11,3,20,40,45,21,10,11,187,0,0,24,17,15,15,14,59,64,46,21,8,280,0,0,14,15,10,14,9,59,94,45,22,12,287,3,0,11,11,11,8,25,117,136,73,40,22,452,4,0,8,0,9,11,16,112,130,61,35,12,395,0,0,5,7,5,9,28,185,243,115,60,17,674,0,0,4,3,9,8,19,169,292,138,85,14,737,0,0,3,4,5,9,12,56,152,75
LGA17150,38,125,316,222,118,104,47,1106,7,36,21,6,3,16,17,47,13,13,12,90,292,257,654,539,564,508,860,2448,4670,2377,1148,926,478,15427,6,0,18,4,6,4,9,38,32,10,18,31,178,7,12,13,8,3,0,9,14,9,4,8,12,88,35,31,86,31,13,15,17,35,25,3,13,20,324,15,21,236,56,19,19,33,54,30,10,3,16,519,15,20,217,97,47,42,73,109,53,20,10,34,731,3,0,46,46,40,38,79,156,92,47,19,32,610,7,4,38,65,46,36,110,254,121,45,35,31,794,8,0,26,26,27,49,131,358,163,91,45,20,945,0,6,12,23,26,47,158,525,287,118,89,28,1325,0,3,11,8,8,27,102,450,296,129,95,27,1151,3,0,16,17,21,49,105,740,609,301,238,38,2133,3,0,5,7,13,37,83,549,672,387,330,24,2120,0,0,4,3,3,26,25,251,361,283
LGA17200,69,142,286,501,630,1076,146,3089,66,128,42,52,16,20,98,156,142,102,240,248,1313,1180,2638,1453,1197,813,1721,3673,6585,7738,6545,9396,1588,44512,34,16,86,53,48,82,486,406,305,468,1022,160,3167,30,25,52,18,21,10,79,64,37,54,128,26,539,249,129,384,89,48,41,99,90,63,74,143,73,1477,78,107,978,143,62,59,132,102,72,54,120,78,1987,44,61,943,230,96,84,163,167,107,109,156,73,2222,20,25,177,134,72,113,214,211,141,112,190,64,1472,14,26,118,226,126,133,232,273,213,176,276,66,1882,15,11,97,73,117,139,332,398,305,264,436,67,2247,10,15,45,65,46,95,387,635,527,397,663,98,2977,5,3,21,37,25,67,246,558,604,537,716,81,2895,12,3,31,43,45,91,261,902,1326,1135,1611,137,5595,3,0,22,26,22,59,187,620,1545,1674,2150,125,6432,5,0,7,4,15,40,62,143,577,916
LGA17310,65,82,34,5,0,5,15,344,9,13,31,29,23,27,13,4,0,0,0,31,180,155,256,770,1198,769,1098,1015,341,41,10,44,231,5920,8,3,11,6,5,10,12,9,4,0,0,8,72,0,0,8,11,4,10,3,0,0,0,0,5,42,15,25,50,53,21,22,21,5,0,0,0,11,223,8,15,60,88,36,52,54,9,4,0,0,18,330,18,13,110,152,70,105,73,26,4,0,0,18,596,0,5,44,98,59,147,127,30,0,0,3,18,527,3,3,35,108,58,132,154,55,7,3,0,23,590,6,9,25,75,71,126,198,55,11,0,0,13,587,0,3,26,63,61,139,249,105,10,0,8,17,671,8,0,13,45,51,92,204,108,8,0,0,13,537,8,4,16,46,52,114,268,176,29,3,3,29,748,3,0,10,18,23,48,173,179,28,6,5,23,518,8,0,0,4,8,18,66,63,12,3
LGA17350,0,0,0,0,0,0,0,17,0,3,4,4,0,0,0,0,0,0,0,3,12,48,39,135,161,37,12,3,0,0,0,4,23,460,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,4,3,0,5,9,5,3,0,0,0,0,0,0,23,6,0,14,8,5,3,0,0,0,0,0,0,36,10,0,26,20,3,9,0,3,0,0,0,0,77,0,0,18,15,3,6,0,0,0,0,0,4,52,0,0,3,15,14,14,0,0,0,0,0,0,51,0,0,10,14,8,7,0,0,0,0,0,0,34,0,0,3,10,8,14,0,0,0,0,0,0,38,0,0,0,13,6,4,6,0,0,0,0,0,33,0,0,3,8,5,15,3,0,0,4,0,3,46,0,0,5,0,0,8,4,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0
LGA17400,3,0,0,0,0,0,0,37,0,0,0,11,0,0,0,0,0,0,0,3,18,28,28,160,207,73,43,7,0,0,0,3,25,583,0,0,0,4,6,3,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,11,3,0,6,7,11,4,0,0,0,0,0,0,27,0,3,11,20,9,6,0,0,0,0,0,0,52,5,8,22,21,17,8,0,0,0,0,0,3,82,4,0,6,15,12,8,4,0,0,0,0,5,57,5,0,7,20,14,13,4,0,0,0,0,0,66,0,0,11,17,9,13,4,0,0,0,0,3,56,0,4,3,14,7,7,4,0,0,0,0,0,49,0,0,5,6,11,12,0,0,0,0,0,0,29,0,0,0,4,5,14,4,0,0,0,0,0,31,0,0,5,0,0,3,6,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0
LGA17420,20,35,95,130,77,100,37,519,3,0,0,0,0,3,7,16,10,6,12,33,92,44,42,130,147,155,178,416,1456,1739,881,816,266,6265,0,0,0,0,0,3,3,10,30,24,34,13,124,0,5,0,0,0,0,0,0,11,5,9,6,33,0,3,4,5,4,0,4,4,16,12,5,8,69,0,0,20,10,8,5,6,11,11,15,12,9,91,3,0,15,20,3,9,13,20,24,30,14,9,155,4,0,4,11,14,9,13,34,49,39,20,18,216,0,0,4,11,4,13,22,46,70,51,31,10,260,0,0,3,3,4,13,17,59,94,78,45,12,330,0,0,7,8,0,12,23,63,153,125,81,17,499,0,0,0,4,0,8,17,60,141,147,81,11,480,0,0,6,9,3,28,24,97,306,315,180,22,987,0,0,3,3,4,27,30,79,331,405,289,19,1187,0,0,4,6,0,15,11,49,198,244
LGA17550,48,161,194,61,21,22,30,620,10,37,24,23,11,19,37,31,6,3,7,57,283,123,369,641,776,595,1182,2454,2195,524,143,156,339,9504,0,0,8,9,6,13,21,16,13,0,0,17,102,3,0,9,3,7,3,15,16,6,0,0,8,75,14,7,51,36,13,26,34,26,6,3,0,16,243,6,10,135,90,33,53,78,46,12,6,4,21,490,4,9,145,137,84,146,174,105,30,7,5,28,875,7,8,37,79,61,156,224,170,44,0,10,29,824,5,5,33,74,68,94,274,243,63,9,3,27,892,0,0,25,34,43,94,245,279,74,8,8,25,832,4,3,17,35,33,69,277,363,123,25,17,21,980,0,0,8,22,26,30,199,333,119,38,18,16,810,5,3,15,15,23,44,206,416,231,59,37,17,1067,0,0,4,8,13,16,102,256,159,59,30,15,661,0,0,3,5,5,4,26,96,64,34
LGA17620,15,13,12,6,3,0,9,87,4,4,17,7,0,0,3,0,0,0,0,9,42,58,64,221,271,181,180,163,73,3,7,10,110,1334,0,0,0,5,3,3,6,0,0,0,0,0,12,0,0,0,7,0,3,0,0,0,0,0,0,10,0,4,7,9,3,4,3,0,0,0,0,9,44,0,0,13,24,3,12,9,0,0,0,0,3,64,0,7,24,31,14,25,12,0,0,0,0,0,114,0,3,5,25,12,26,16,0,0,0,0,3,94,0,0,16,23,28,41,20,0,0,0,0,8,138,0,0,12,11,13,34,21,3,0,0,0,7,105,0,0,11,14,20,27,40,6,3,0,0,9,128,0,0,8,17,17,24,31,9,0,0,0,5,126,3,0,6,14,15,43,51,17,0,0,0,18,165,5,0,8,7,3,22,19,16,9,0,0,6,94,0,0,0,4,6,5,3,14,10,0
LGA17640,3,0,0,0,0,0,0,27,0,0,3,0,3,3,0,0,0,0,0,4,18,28,30,68,90,54,40,19,8,6,0,8,25,377,0,0,3,0,0,3,0,0,0,0,0,4,12,0,0,3,0,0,0,0,0,0,0,0,0,4,0,3,0,3,4,3,5,0,0,0,0,0,16,5,3,7,7,3,5,0,0,0,0,0,0,31,3,7,14,12,5,6,0,0,0,0,0,0,48,0,0,5,6,6,9,5,3,0,0,0,0,32,0,0,0,4,11,5,4,0,0,0,0,0,36,0,0,0,6,7,10,8,0,0,0,0,0,35,0,0,0,0,3,12,4,0,0,0,0,4,31,0,0,0,0,9,3,5,0,0,0,0,0,26,3,0,3,9,3,7,18,0,4,0,3,0,48,0,0,0,3,3,12,0,4,0,0,0,3,27,0,0,0,0,0,0,0,0,0,0
LGA17650,3,0,6,0,0,0,0,28,0,0,5,0,0,0,0,0,0,0,0,0,13,25,18,88,103,45,41,23,17,5,8,0,19,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,9,0,0,0,0,0,0,0,21,0,0,6,14,0,0,0,0,0,0,0,5,24,0,4,8,20,6,8,3,0,0,0,0,0,56,0,0,3,11,5,7,0,0,0,0,0,3,31,5,3,5,8,6,12,0,0,0,0,0,0,42,0,0,5,4,4,11,15,0,0,0,0,3,40,0,0,5,8,7,3,6,0,0,0,0,4,31,4,0,3,6,4,6,14,4,0,0,0,4,49,0,0,3,9,3,5,14,0,0,0,0,0,35,4,0,0,3,0,6,4,4,0,0,0,6,22,0,0,0,3,0,5,0,0,0,0
LGA17750,63,118,63,10,0,3,29,480,18,16,34,31,11,19,16,7,0,0,0,39,186,201,345,720,1200,792,1261,1339,623,130,25,46,265,6939,8,0,13,6,3,9,15,3,0,0,4,10,63,5,6,9,19,5,6,11,0,0,0,0,0,61,26,28,76,57,28,31,28,8,3,0,0,4,298,5,7,131,109,32,37,30,6,0,0,4,6,368,10,21,126,143,42,90,75,21,0,0,0,19,546,8,11,44,117,60,105,126,33,5,0,0,12,516,9,8,35,151,72,131,188,44,10,5,3,19,667,11,0,32,91,75,156,204,73,15,0,5,11,688,0,5,18,73,76,154,287,87,10,0,0,12,729,5,6,12,65,58,137,257,134,11,3,0,13,696,0,0,15,56,42,162,319,230,36,6,7,21,900,0,0,5,42,23,88,220,171,40,9,3,13,610,0,4,0,12,12,52,101,85,19,0
LGA17850,0,0,0,0,0,0,3,14,0,0,4,0,0,0,0,0,0,0,0,0,4,13,19,85,60,18,4,0,0,0,0,0,24,227,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,4,4,0,0,0,0,0,0,0,0,9,0,0,7,4,6,0,0,0,0,0,0,0,13,0,0,8,5,0,0,0,0,0,0,0,0,13,0,0,0,10,3,0,0,0,0,0,0,0,18,0,0,7,7,3,4,0,0,0,0,0,0,21,0,0,10,3,3,0,0,0,0,0,0,4,22,0,0,4,4,4,0,0,0,0,0,0,4,21,4,0,6,4,5,5,0,0,0,0,0,3,28,0,0,0,3,8,4,0,0,0,0,0,5,19,0,0,6,7,0,6,0,0,0,0,0,5,22,0,0,0,0,5,0,3,0,0,0,0,4,14,0,0,0,0,0,3,0,0,0,0
LGA17900,0,0,0,0,0,0,8,58,0,0,13,9,0,0,0,0,0,0,0,9,34,157,72,253,141,28,20,0,6,6,0,4,83,765,4,0,5,3,0,0,0,0,0,0,0,0,13,0,0,6,7,0,0,0,0,0,0,0,0,8,5,0,9,15,4,0,0,0,0,0,0,0,30,0,0,14,19,8,6,0,0,0,0,0,4,50,10,4,26,22,8,6,0,0,0,0,0,3,89,5,0,7,23,12,5,0,0,0,0,0,7,58,6,4,13,29,7,7,3,0,0,0,4,6,81,3,4,10,20,9,13,0,0,0,0,0,3,65,8,0,9,30,15,0,4,0,0,0,0,10,78,9,4,11,20,6,3,3,0,0,0,0,4,59,29,6,6,13,10,4,4,0,0,0,0,8,80,21,3,10,9,0,5,0,0,0,0,0,0,50,10,3,0,0,0,3,0,0,0,0
LGA17950,0,0,0,0,0,0,7,18,0,0,7,0,0,0,0,0,0,0,0,0,11,29,41,138,44,7,0,0,0,0,0,0,24,287,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,5,3,0,0,0,0,0,0,0,0,22,0,0,3,0,0,0,0,0,0,0,0,0,16,0,0,9,9,0,0,0,0,0,0,0,0,17,0,0,5,4,0,0,0,0,0,0,0,0,14,0,0,4,6,3,0,0,0,0,0,0,0,15,0,0,6,7,3,0,0,0,0,0,0,3,19,0,0,3,4,5,0,0,0,0,0,0,0,18,0,0,3,6,0,0,0,0,0,0,0,0,16,5,5,3,3,0,6,0,0,0,0,0,5,22,0,4,5,3,5,4,0,0,0,0,0,0,19,0,0,0,6,0,9,0,0,0,0
LGA18020,0,0,0,0,0,0,4,47,0,0,13,0,0,0,0,0,0,4,0,3,30,74,59,287,228,30,17,8,4,3,4,9,51,756,0,0,0,0,6,0,0,0,0,0,0,8,11,0,0,6,3,0,0,0,0,0,0,0,0,9,3,8,3,11,3,0,0,0,0,0,0,3,32,0,4,19,24,3,3,0,0,0,0,0,4,54,7,3,41,50,4,9,0,0,0,0,0,3,113,0,0,12,29,9,3,0,0,0,0,0,5,67,3,7,19,24,16,7,0,0,0,0,0,4,82,8,5,14,26,20,11,0,0,0,0,0,8,79,4,0,9,24,18,5,0,0,0,0,3,3,73,0,0,7,15,16,8,5,4,0,0,0,5,67,3,3,3,23,16,4,5,0,0,0,0,0,59,3,0,10,9,7,11,0,0,0,0,0,5,48,4,0,0,5,3,9,0,0,0,0
LGA18050,12,41,132,263,199,409,42,1134,3,13,10,4,3,8,32,32,29,34,55,66,305,95,209,161,132,125,321,851,2067,2495,1791,3007,380,11623,0,0,7,4,4,3,15,18,19,17,49,26,157,0,0,3,0,3,0,0,4,6,4,9,6,50,11,7,34,5,0,6,10,14,15,9,17,6,142,6,4,76,13,8,0,10,20,15,12,15,9,199,0,8,67,33,10,15,27,39,24,27,28,13,285,6,0,12,19,4,21,27,60,56,29,32,11,277,0,5,13,9,10,14,26,67,66,48,69,15,342,0,3,0,4,8,15,44,113,95,76,98,10,468,0,0,8,3,5,9,35,141,129,115,167,18,634,0,0,0,6,3,3,36,133,135,131,176,22,646,0,0,0,7,8,11,44,168,265,303,377,24,1218,4,0,4,0,3,4,28,137,316,393,534,33,1457,0,0,0,3,4,6,11,32,152,210
LGA18100,0,0,0,0,0,0,5,13,4,3,3,3,0,0,0,0,0,0,0,0,10,29,34,102,58,8,4,0,0,0,0,0,15,268,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,11,6,0,0,0,0,0,0,0,5,20,10,5,14,9,11,3,0,0,0,0,0,0,48,5,0,0,7,3,4,0,0,0,0,0,4,23,0,4,7,8,10,0,0,0,0,0,0,3,34,0,0,7,3,0,0,0,0,0,0,0,0,14,0,0,0,7,3,0,0,0,0,0,0,0,21,3,0,3,4,7,0,0,0,0,0,0,0,16,0,0,3,0,6,4,0,0,0,0,0,0,19,0,0,3,0,3,0,0,0,0,0,0,0,14,0,0,3,0,0,0,0,0,0,0
LGA18200,8,6,4,0,0,0,0,38,0,3,11,3,0,0,0,0,0,0,0,4,23,67,21,157,203,43,45,19,13,0,0,0,25,593,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6,0,0,0,0,0,0,0,0,12,0,0,4,14,5,0,0,0,0,0,0,0,28,4,0,7,20,3,3,0,0,0,0,0,0,49,3,5,18,19,7,9,3,0,0,0,0,0,66,0,0,6,23,15,0,0,0,0,0,0,0,52,4,0,9,20,5,4,4,0,0,0,0,3,56,9,0,17,18,8,10,4,0,0,0,0,7,75,3,0,8,14,0,8,0,0,0,0,0,4,48,0,0,8,10,0,9,3,0,0,0,0,0,29,3,3,3,8,6,6,3,3,0,0,0,0,33,9,0,0,0,5,0,0,3,0,0,0,0,25,0,0,0,0,0,0,0,4,0,0
LGA18250,7,11,72,158,99,178,33,581,6,8,0,5,4,7,0,15,27,21,51,49,189,71,162,138,119,93,139,327,1551,2364,1203,1958,304,8417,3,0,3,0,3,0,4,26,44,91,123,27,333,0,0,3,0,0,0,5,0,15,12,23,3,75,4,8,21,14,0,3,6,6,16,21,30,9,134,0,5,64,16,8,0,5,11,19,18,17,8,175,4,3,60,19,3,5,12,15,44,27,31,19,249,0,0,9,20,10,5,10,28,46,35,37,8,214,0,8,7,13,13,12,24,37,57,61,60,11,305,0,0,0,3,7,7,18,49,93,66,79,15,339,0,0,4,7,0,11,27,78,142,127,111,12,517,0,0,0,8,12,8,24,98,162,141,128,14,592,4,0,7,5,9,10,20,123,345,255,318,37,1121,6,0,0,4,6,3,16,84,391,370,405,29,1312,3,0,0,4,4,8,13,23,168,209
LGA18350,34,53,46,24,8,3,17,215,4,3,6,22,6,9,12,0,0,3,3,19,86,55,39,273,436,277,585,713,546,185,76,63,141,3384,0,0,0,7,0,3,0,7,4,3,4,4,41,0,0,0,6,0,9,0,7,0,0,0,0,31,0,4,10,14,10,0,3,12,5,0,0,9,76,0,3,9,52,17,11,18,12,7,0,0,14,138,7,3,18,64,35,26,33,33,11,0,3,8,239,0,0,9,23,28,50,54,46,8,0,7,9,237,0,0,10,13,31,36,60,72,21,5,0,8,253,5,0,4,10,17,34,64,88,20,8,4,13,275,0,3,5,10,12,22,74,103,38,15,3,15,311,0,0,0,6,13,27,65,111,41,12,12,3,295,3,0,4,7,12,31,74,150,89,30,14,9,423,0,0,0,12,10,10,53,111,76,28,17,7,318,0,0,0,0,5,8,9,39,42,20
LGA18400,17,32,36,18,7,10,15,154,4,0,3,11,5,3,9,3,0,0,0,24,57,63,25,119,182,169,371,494,350,127,57,51,109,2108,0,0,0,3,0,0,6,0,0,0,5,4,24,0,0,0,0,0,0,5,0,0,0,0,0,13,0,4,4,11,0,0,3,7,7,0,4,0,39,0,0,0,35,9,8,15,12,3,0,0,3,81,0,7,7,33,17,10,17,19,9,4,0,8,136,0,0,0,18,12,13,25,29,12,5,0,13,124,0,0,4,12,16,20,37,61,18,3,0,6,182,0,0,4,11,10,8,45,60,22,4,4,9,182,0,0,0,10,6,16,31,96,18,10,3,6,206,0,0,0,5,5,14,32,62,36,7,0,8,183,5,0,4,5,3,10,46,118,46,14,14,6,274,0,0,3,6,8,4,32,85,56,24,15,0,233,0,0,0,0,5,3,10,28,29,14
LGA18450,159,287,251,117,38,23,61,1258,44,104,66,70,33,57,64,39,22,3,9,164,675,761,1917,1939,2526,1621,2973,4173,2927,1038,358,282,792,21308,13,4,46,50,24,35,77,80,62,27,22,33,490,16,17,34,39,16,25,27,32,18,11,6,20,256,144,82,270,99,51,71,95,73,32,9,8,35,977,35,52,733,152,80,105,111,87,24,10,12,54,1449,42,46,687,277,173,240,276,204,47,17,11,79,2102,13,14,171,220,128,227,305,276,85,16,14,48,1515,12,20,141,312,169,264,367,347,110,20,14,34,1807,7,11,79,121,146,237,430,461,141,34,16,26,1720,9,7,58,103,113,213,506,602,221,71,33,43,1973,4,0,18,64,52,130,405,619,251,59,29,39,1674,4,3,24,53,42,152,475,956,425,133,56,44,2365,0,0,14,27,24,61,239,621,424,152,84,21,1675,0,0,10,15,7,13,117,307,228,98
LGA18500,5,17,54,106,105,367,36,711,3,0,0,0,0,5,8,11,9,7,30,39,118,43,38,77,69,100,229,514,1110,1325,1135,2761,255,7662,0,0,0,0,0,0,3,14,8,14,48,11,106,0,0,3,0,3,0,4,0,0,5,9,0,32,0,0,3,0,0,0,3,10,8,13,13,8,56,0,0,18,6,7,5,14,8,17,12,23,4,104,5,4,10,7,7,14,10,25,24,16,27,14,149,0,0,3,7,9,8,22,38,19,18,43,8,180,0,0,5,6,3,11,17,40,27,28,45,10,188,0,0,3,0,9,6,38,58,60,50,57,12,287,0,0,0,4,4,4,53,88,78,83,114,13,442,5,0,6,0,4,7,26,88,82,84,120,6,427,3,0,0,0,8,6,44,123,152,152,215,20,720,0,3,0,0,0,0,23,76,166,217,346,15,850,0,0,0,0,0,4,9,19,69,110
LGA18710,13,12,9,8,0,5,3,60,0,0,3,0,0,0,3,0,0,0,0,3,17,47,11,84,107,87,132,178,121,57,15,9,47,900,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0,0,0,0,0,3,13,0,7,3,8,0,6,6,0,0,0,0,3,33,5,6,3,18,3,7,21,0,0,0,0,3,69,0,0,0,9,6,15,13,6,4,0,0,0,62,0,0,0,3,13,7,26,17,0,0,0,5,70,0,0,0,16,3,3,23,14,4,0,0,3,65,3,0,4,9,8,14,29,19,5,0,0,4,90,4,0,8,5,3,7,21,21,4,5,0,0,81,0,0,3,0,6,11,39,41,11,3,3,4,124,3,0,8,3,4,8,28,29,12,0,0,3,103,3,0,0,0,0,0,11,12,6,5
LGA19399,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,6,26,12,20,10,8,5,3,5,0,0,0,19,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,4,7,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,6,0,0,0,3,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA19499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA19799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA20110,6,5,0,0,0,0,6,52,0,3,0,3,0,6,0,0,0,0,0,10,25,30,70,178,314,140,131,66,22,10,9,58,72,1092,0,0,0,4,6,4,0,0,0,0,3,0,18,0,0,0,3,0,4,0,0,0,0,0,0,9,7,4,4,8,3,0,0,0,0,0,0,0,30,0,4,15,15,5,8,5,0,0,0,0,0,59,0,4,28,32,20,8,3,3,0,0,0,3,109,0,10,13,44,24,24,10,0,0,0,3,0,134,0,6,8,27,16,27,18,7,0,0,4,6,118,0,5,11,22,21,33,9,6,0,0,0,0,103,0,0,5,17,18,28,22,6,0,0,6,0,112,0,0,5,17,13,14,21,5,0,0,3,4,78,0,0,5,12,11,25,18,4,3,0,7,6,89,0,0,3,3,3,16,13,8,0,0,13,4,71,4,0,0,0,0,3,0,6,0,0
LGA20260,0,7,3,0,0,0,0,43,6,4,5,4,0,4,3,0,0,0,0,12,39,42,74,196,293,79,78,41,13,8,0,6,55,893,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,9,3,3,6,5,6,0,0,4,0,0,0,3,35,0,3,20,14,3,4,0,0,0,0,0,3,55,6,0,28,29,13,15,6,0,0,0,0,4,105,0,4,9,28,15,14,5,0,0,0,0,0,78,8,3,18,37,15,16,6,0,0,0,0,9,110,5,0,15,21,24,24,3,0,0,0,0,9,95,0,0,9,10,19,21,3,4,0,0,0,0,77,3,0,14,18,10,20,9,0,0,0,0,3,76,0,0,3,22,6,18,18,9,0,0,0,4,86,0,0,3,6,7,9,16,8,5,0,0,11,63,0,4,0,0,3,5,4,0,0,0
LGA20570,178,91,50,11,7,4,29,617,9,31,60,43,15,23,9,3,0,0,0,64,262,229,568,1451,2137,1416,2359,1298,417,65,27,59,384,10412,0,0,20,25,21,45,29,17,0,0,0,16,180,4,4,17,21,8,16,13,4,0,0,0,8,95,30,27,104,96,41,83,38,11,0,3,5,18,453,13,25,233,138,77,143,53,13,4,0,0,30,713,22,23,319,268,159,264,112,15,3,0,0,29,1218,10,12,121,205,136,324,170,37,8,3,5,44,1074,5,14,105,183,187,420,254,50,14,3,3,16,1252,6,4,68,129,157,412,279,68,10,0,0,20,1154,5,10,42,116,140,405,342,88,13,5,8,17,1191,5,3,31,52,88,318,364,100,7,3,0,9,982,4,0,26,56,78,370,427,150,17,0,11,18,1155,0,0,14,17,42,171,295,148,19,5,9,11,736,0,0,4,6,7,54,114,72,8,0
LGA20660,69,184,173,58,25,18,33,669,15,21,18,12,6,17,34,21,7,0,3,69,217,204,546,580,570,493,1257,3088,2136,548,155,179,438,10199,0,4,18,9,7,5,44,56,16,8,8,32,211,8,4,17,8,9,7,17,14,10,0,0,6,94,36,13,77,24,16,20,41,41,14,5,4,18,300,16,22,171,33,18,22,65,46,9,0,0,26,424,7,36,192,46,33,52,117,74,16,7,6,21,599,0,8,53,53,38,56,164,116,31,6,9,18,548,4,9,46,67,53,65,254,158,30,9,3,33,726,0,0,32,35,34,100,298,216,41,12,12,16,789,7,0,18,27,30,76,354,339,74,11,10,26,965,0,6,12,12,18,55,287,350,69,16,13,22,862,0,0,6,18,13,65,418,634,160,32,41,24,1419,4,6,4,9,9,50,294,603,208,33,30,19,1265,0,0,4,10,0,22,123,285,162,39
LGA20740,41,32,16,8,3,6,14,181,3,4,8,11,7,10,8,11,0,0,3,30,100,46,145,235,482,404,627,485,380,161,39,72,201,3278,0,0,0,3,4,14,8,4,0,0,0,6,42,0,0,9,3,3,5,6,0,0,0,0,0,26,8,0,27,29,21,27,14,4,0,0,0,7,135,3,0,59,40,30,43,20,7,0,0,0,5,206,7,8,58,70,68,112,35,11,3,0,0,12,384,3,6,21,48,67,109,72,11,4,0,0,10,339,7,0,10,40,57,138,99,18,0,0,0,18,395,3,0,6,23,34,106,69,20,0,3,5,8,276,0,0,9,19,40,118,100,36,0,0,0,7,330,4,0,3,13,28,69,83,31,4,0,0,7,247,4,5,4,9,30,72,79,49,0,3,4,8,262,0,0,0,4,17,32,59,30,6,0,10,8,158,0,0,3,0,0,6,20,20,0,0
LGA20830,36,40,3,0,0,0,18,160,0,14,7,17,12,12,9,0,0,0,0,47,116,80,159,434,582,421,676,456,73,5,8,15,157,3055,0,0,3,0,4,8,6,0,0,0,0,5,39,0,0,4,10,0,10,9,0,0,0,0,5,34,8,5,17,16,9,31,19,6,0,0,0,0,120,3,4,49,35,24,37,19,0,0,0,0,10,184,5,3,65,80,49,83,44,3,0,0,0,11,354,5,6,21,63,37,91,53,14,0,0,0,8,289,4,0,31,38,45,108,89,21,6,0,0,5,346,0,4,19,41,32,95,106,27,0,5,0,0,325,6,0,11,29,48,103,115,26,0,0,0,9,355,0,0,8,23,26,85,122,38,0,0,3,6,316,3,5,9,14,31,77,155,60,3,4,0,9,382,0,0,4,3,18,49,89,47,9,3,0,5,216,3,0,3,0,5,19,45,24,3,0
LGA20910,11,50,100,90,57,166,19,565,9,7,15,9,0,8,5,14,9,8,17,54,155,121,355,357,248,156,359,976,1472,911,564,1326,259,7106,4,4,3,5,0,3,9,24,13,11,22,16,124,4,0,7,3,0,0,6,6,4,3,5,7,62,9,8,57,12,5,7,22,17,8,11,5,15,176,3,15,134,23,11,15,28,25,16,5,6,6,291,9,11,129,43,19,24,41,37,24,6,10,25,388,3,0,41,30,21,25,57,61,28,9,20,11,313,7,4,21,37,19,34,62,78,61,17,22,11,364,5,0,17,9,18,32,74,120,45,15,23,13,368,0,0,13,9,14,29,99,163,75,38,46,23,502,10,0,8,11,3,9,74,150,81,38,42,16,442,9,4,11,9,9,26,116,275,152,77,122,17,813,4,0,5,5,0,21,65,264,225,127,168,11,908,0,0,5,3,3,7,17,99,139,76
LGA21010,14,7,0,0,0,0,0,58,0,6,9,12,8,0,0,0,0,0,0,10,44,33,103,239,398,212,175,76,13,0,0,9,38,1294,0,0,0,6,0,4,0,0,0,0,0,7,14,5,0,6,0,3,5,0,0,0,0,0,0,19,5,5,15,19,0,3,5,0,0,0,0,0,52,0,9,45,26,6,9,0,0,0,0,0,4,103,0,4,46,58,38,15,11,7,0,0,0,11,178,3,4,20,38,15,21,12,0,0,0,0,11,131,0,4,7,44,31,39,13,3,0,0,0,6,155,0,3,12,27,34,43,5,3,0,0,0,3,138,0,0,4,27,23,38,19,7,0,0,0,0,119,0,0,5,23,12,24,16,3,0,0,0,0,85,0,0,6,17,14,40,20,3,0,0,0,0,108,0,0,0,0,10,8,14,3,0,0,0,4,34,0,0,0,0,4,0,5,3,0,0
LGA21110,46,204,328,240,122,230,66,1317,4,9,13,18,17,22,45,31,19,9,12,58,261,146,275,426,550,443,1110,3326,4303,2046,1001,1667,507,15798,4,0,8,24,41,101,78,145,84,51,56,48,637,0,0,13,3,23,12,16,26,24,6,18,17,154,13,9,34,33,47,50,54,84,35,20,22,22,419,7,5,71,38,34,41,46,71,29,11,19,16,402,5,12,90,57,51,49,65,130,55,17,26,26,580,5,4,33,44,55,96,116,164,59,36,28,28,682,6,0,21,28,25,63,134,214,65,27,35,26,636,0,3,13,29,33,56,218,339,103,41,46,18,902,5,0,10,33,23,60,314,485,180,58,69,41,1271,0,4,8,22,23,55,261,517,177,63,80,27,1227,8,4,27,20,28,60,421,899,393,144,160,32,2182,0,0,12,21,19,47,256,1001,495,180,254,43,2316,4,0,8,9,6,16,104,461,352,149
LGA21180,216,374,114,13,4,25,87,1037,10,19,18,34,35,53,103,12,0,3,6,114,400,167,303,680,1313,1178,2889,4610,1025,138,38,178,695,13227,4,5,17,18,19,65,148,55,3,0,4,52,383,7,3,11,19,14,22,47,23,5,0,0,15,170,22,13,72,56,41,75,149,45,3,0,0,32,514,5,13,116,97,54,50,161,39,9,0,9,33,579,11,14,114,162,102,168,295,84,9,5,5,40,1008,9,6,51,94,81,163,408,120,9,4,12,38,995,10,6,44,92,100,202,530,162,16,3,13,34,1212,8,7,31,74,110,237,648,212,17,6,14,45,1409,6,3,33,52,79,249,833,265,25,3,20,52,1626,4,0,19,42,53,188,728,297,32,5,9,53,1436,3,4,26,39,57,203,962,466,34,15,27,50,1893,6,0,20,24,31,101,626,422,39,3,21,30,1327,5,0,3,3,10,31,325,229,35,7
LGA21270,0,0,0,0,0,0,3,18,3,0,4,0,0,0,0,0,0,0,0,7,13,83,35,127,76,5,6,4,0,0,0,5,34,381,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,5,7,0,0,0,0,0,0,0,0,21,14,0,5,12,0,0,0,0,0,0,0,0,36,12,0,20,13,5,0,0,0,0,0,0,0,59,0,0,8,8,0,3,0,0,0,0,3,0,27,0,0,9,12,0,0,0,0,0,0,0,4,29,0,0,12,8,0,0,0,0,0,0,0,4,26,3,0,12,10,4,0,0,0,0,0,0,0,33,4,0,10,3,0,6,0,0,0,0,0,0,16,0,0,10,9,9,0,0,3,0,0,0,9,40,4,0,6,0,4,0,0,0,0,0,0,0,24,0,3,0,0,0,0,0,0,0,0
LGA21370,42,16,4,0,0,6,10,179,8,12,26,21,7,11,8,0,0,0,0,25,111,123,277,633,811,427,494,199,42,12,11,26,138,3181,0,0,9,8,4,3,4,0,0,0,0,9,40,3,0,3,5,5,0,4,0,0,0,4,3,30,13,0,47,24,14,9,4,9,0,0,0,3,121,11,6,82,45,17,20,8,3,0,0,0,14,202,3,17,110,85,38,42,15,4,0,0,0,10,329,0,8,44,77,47,52,32,0,0,0,0,3,262,0,6,44,85,56,75,40,12,0,0,0,16,337,4,7,36,55,50,69,38,16,0,0,0,18,286,4,9,30,60,57,59,51,14,0,0,0,8,293,3,4,14,35,38,71,53,16,7,0,0,9,246,3,3,11,36,41,73,78,36,0,0,4,16,309,5,0,9,13,23,40,49,33,3,0,4,7,182,0,0,5,6,4,5,19,15,6,0
LGA21450,56,123,45,5,0,0,21,315,3,6,10,9,4,19,23,8,0,0,6,30,111,78,92,230,339,320,1010,1997,581,69,28,47,199,4983,0,0,7,0,5,12,34,23,3,0,0,15,92,0,3,0,4,0,8,10,4,0,0,0,0,28,0,6,14,10,6,25,44,15,0,0,0,9,121,0,8,37,6,14,32,59,20,3,0,0,6,194,13,4,51,25,28,79,142,32,3,0,0,17,396,3,0,11,27,23,76,238,62,4,0,0,19,471,7,0,15,16,30,81,270,96,9,9,3,6,536,3,3,9,14,30,97,330,131,9,5,7,17,647,5,0,8,19,20,108,389,173,16,4,4,22,771,0,0,9,10,14,70,370,209,15,11,5,21,728,3,0,18,13,12,67,506,341,25,3,10,21,1033,5,0,5,11,10,33,274,292,35,11,7,14,697,0,0,0,5,10,14,120,120,23,4
LGA21610,164,465,228,40,3,30,78,1160,5,13,15,29,19,49,84,22,8,4,7,128,382,166,397,636,819,833,2715,6065,2571,323,72,203,659,15465,4,0,18,14,13,28,124,88,13,0,6,53,358,3,0,9,6,3,9,35,21,9,0,0,19,116,20,13,62,38,14,40,118,55,8,3,8,20,387,11,13,143,47,30,46,127,88,9,0,6,30,547,8,13,163,84,53,119,286,159,20,7,5,34,948,4,6,56,76,42,141,471,257,23,3,14,30,1118,7,11,39,101,55,178,615,352,32,4,13,48,1448,7,7,22,46,60,157,740,496,29,10,19,39,1626,6,10,29,44,35,186,915,713,60,9,13,57,2071,8,6,18,24,27,131,820,786,68,17,27,44,1975,0,0,24,27,39,127,980,1286,148,23,32,58,2755,7,0,14,20,22,64,631,1069,127,26,40,48,2080,0,4,6,9,8,22,256,541,96,14
LGA21670,0,3,0,0,0,0,3,47,4,3,7,18,0,3,0,0,0,0,3,14,52,63,91,235,397,112,83,10,8,4,0,8,53,1062,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,4,6,3,0,0,0,0,0,0,3,20,7,0,8,22,7,8,0,0,0,0,0,4,53,0,6,40,20,17,12,0,0,0,0,0,8,104,8,4,47,59,26,32,3,0,0,0,0,5,191,0,4,14,41,31,26,10,0,0,0,0,0,129,6,4,15,34,24,39,9,0,0,0,0,3,134,0,3,13,25,23,39,0,0,0,0,0,0,107,0,0,9,22,28,39,9,3,0,0,0,0,118,0,0,3,14,3,23,9,0,0,0,0,0,58,0,0,3,9,7,27,7,0,0,0,0,0,62,3,0,0,3,3,12,5,0,0,0,0,0,24,0,0,0,0,0,0,3,0,0,0
LGA21750,19,3,0,0,0,0,6,86,5,9,10,11,4,4,0,0,0,0,3,16,58,68,95,286,489,241,251,89,22,0,7,26,109,1678,0,0,0,7,7,0,0,0,0,0,0,5,25,7,0,5,4,0,0,0,0,0,0,0,4,26,10,0,20,12,12,6,0,3,0,0,0,0,68,0,5,44,28,18,20,7,0,0,0,0,6,125,4,8,44,45,26,27,13,5,0,0,0,8,179,0,0,19,23,40,42,24,4,0,0,0,10,164,0,3,12,39,29,32,22,9,0,0,0,18,168,4,3,18,34,27,57,24,6,0,0,0,3,169,8,0,16,30,31,42,41,8,0,0,0,9,178,0,3,4,13,18,38,39,7,0,0,0,0,128,7,0,6,17,19,26,34,9,0,0,3,11,140,7,0,6,8,10,24,46,14,0,0,0,9,119,0,0,5,3,7,8,4,8,0,0
LGA21830,7,0,0,0,0,0,8,55,0,0,11,9,3,0,0,0,0,0,0,13,41,55,98,264,345,118,79,31,14,6,0,12,97,1121,0,5,0,0,0,5,0,0,0,0,0,4,16,4,0,4,3,0,3,0,0,0,0,0,3,21,6,3,15,12,6,4,0,0,0,0,0,3,49,3,9,34,21,8,5,4,0,0,0,0,0,85,3,0,43,35,15,15,5,0,5,0,0,9,129,0,4,18,36,21,14,4,4,0,0,0,5,96,0,4,15,33,22,22,0,5,0,0,0,4,102,9,6,15,28,27,30,4,0,0,0,0,13,130,0,0,15,33,29,23,9,0,0,0,0,6,119,0,0,12,15,19,12,12,0,0,0,0,6,80,6,0,12,11,19,15,4,0,0,0,3,12,81,4,0,3,9,9,9,6,3,0,0,0,0,56,0,0,3,0,0,9,7,0,0,0
LGA21890,140,337,345,173,64,48,81,1369,20,57,37,29,21,44,61,35,12,6,6,124,462,312,881,869,1161,1163,2738,4772,3340,1222,386,385,700,17931,8,4,34,33,24,32,119,86,29,11,8,34,431,13,10,26,17,15,20,26,24,14,0,3,15,186,61,32,151,69,49,70,105,66,22,7,6,25,666,27,31,290,90,67,78,120,62,15,0,5,44,841,15,35,263,118,79,138,202,104,30,14,19,49,1073,9,10,90,94,75,205,325,173,38,6,19,36,1077,9,9,68,96,90,201,441,237,67,23,24,40,1299,6,6,42,60,107,256,586,339,83,29,31,38,1590,6,3,50,56,55,299,758,521,151,43,43,56,2040,3,3,24,37,37,174,669,579,165,42,49,43,1820,12,0,27,46,45,204,830,934,327,109,86,36,2646,8,0,18,29,30,93,497,850,409,133,90,44,2201,3,8,10,14,11,22,206,418,259,124
LGA22110,45,27,9,0,0,0,14,224,11,11,16,26,16,6,4,0,0,0,0,36,137,174,271,583,945,530,604,320,100,18,4,42,155,3737,0,0,5,11,9,8,4,5,0,0,0,7,46,5,6,8,14,9,11,3,0,0,0,0,8,52,11,10,44,32,14,18,12,0,0,0,0,5,149,15,19,71,63,38,42,23,6,0,0,0,11,281,6,18,100,124,65,81,30,11,0,0,0,18,447,4,6,36,94,69,80,53,13,0,0,0,6,364,6,6,43,66,60,116,79,19,0,0,4,12,407,4,12,26,57,61,105,82,18,0,0,0,11,373,3,5,19,44,49,97,100,33,5,0,0,13,363,0,3,23,29,35,80,95,31,4,0,5,10,307,9,0,20,23,23,66,81,39,0,0,0,9,273,3,4,16,13,10,37,68,23,0,0,5,13,183,0,4,3,7,6,16,28,10,0,3
LGA22170,181,273,125,27,3,13,44,801,13,27,21,34,25,41,46,13,3,0,6,93,326,184,528,657,1156,1165,2986,3994,1304,258,62,142,426,12865,3,0,15,10,20,31,52,27,10,0,4,23,199,0,0,12,9,9,7,38,8,3,0,5,9,99,31,12,56,44,33,58,71,24,3,0,4,20,355,3,17,165,72,56,104,139,36,6,0,4,28,635,16,20,192,123,132,228,231,91,9,0,3,33,1070,6,11,54,116,91,251,392,131,12,9,3,32,1108,8,6,63,82,81,271,479,186,17,6,9,25,1231,3,0,32,50,81,259,598,220,24,18,16,37,1344,11,0,23,52,60,226,693,346,26,15,14,37,1504,6,3,11,26,36,159,602,356,37,11,11,20,1293,6,0,13,25,39,147,745,555,85,21,33,28,1691,0,3,3,15,23,82,452,456,96,19,16,18,1200,4,0,5,9,5,28,154,256,59,6
LGA22250,0,0,0,0,0,0,9,42,0,6,10,3,0,0,0,0,0,0,0,9,31,79,75,313,225,36,16,12,0,0,0,7,58,818,0,0,5,3,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,4,8,0,0,8,7,0,4,0,0,0,0,0,5,35,4,9,24,23,6,5,0,0,0,0,0,0,69,6,9,30,38,3,4,0,0,0,0,0,7,106,3,0,23,30,8,3,0,0,0,0,0,0,73,0,4,15,35,9,8,0,0,0,0,0,0,76,7,4,16,27,13,3,0,0,0,0,0,5,74,0,6,18,30,9,8,0,0,0,0,0,0,68,3,0,14,18,11,6,4,0,0,0,0,7,57,0,0,9,28,14,6,0,0,0,0,0,0,64,0,0,0,11,4,3,0,0,0,0,0,0,23,0,0,0,5,0,3,0,0,0,0
LGA22310,59,180,279,183,76,97,51,984,3,5,16,18,14,23,32,47,14,8,7,66,252,143,221,457,658,845,2066,3391,3861,1712,701,796,502,15358,0,0,19,31,23,59,85,180,121,37,55,46,665,3,0,17,6,8,15,28,35,18,15,6,12,164,14,8,37,33,17,56,57,55,42,9,20,23,361,8,9,66,42,28,57,67,74,32,9,7,19,404,10,22,89,78,50,118,99,120,52,17,29,23,705,3,10,24,57,58,138,165,152,64,21,30,32,755,10,4,28,55,39,167,207,208,105,27,32,32,908,7,0,17,23,36,225,272,296,120,55,36,25,1126,0,4,3,21,41,253,409,437,191,69,71,26,1517,0,3,10,25,21,168,365,416,196,85,73,20,1380,6,4,16,22,23,210,454,840,389,147,165,43,2321,0,0,5,9,17,107,320,820,492,163,174,33,2152,5,0,0,7,10,23,109,392,289,146
LGA22410,16,3,0,0,0,0,4,85,0,5,10,10,4,3,4,0,0,0,0,13,47,76,141,311,429,249,189,92,23,7,4,17,82,1627,0,0,4,4,0,0,0,0,0,0,0,3,17,0,0,7,6,3,0,0,0,0,0,0,0,21,10,0,30,25,7,4,3,0,0,0,0,10,83,3,7,47,32,9,5,3,0,0,0,0,4,112,4,14,72,63,23,20,7,0,0,0,0,10,215,0,0,23,72,30,14,10,0,0,0,0,0,150,3,6,19,57,22,36,10,0,0,0,0,3,157,0,5,20,49,21,32,6,0,0,0,0,5,146,4,0,17,34,23,49,24,4,0,0,0,7,164,0,0,8,23,29,29,15,0,0,0,0,3,116,3,0,9,25,28,32,32,7,0,0,0,6,145,4,0,8,8,13,27,28,0,0,0,0,0,94,0,0,6,0,0,6,8,4,0,0
LGA22490,7,7,6,0,0,0,5,34,0,0,5,0,0,0,0,0,0,0,0,10,14,18,7,81,70,56,88,86,30,0,0,0,42,476,0,0,0,0,0,4,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4,5,0,3,0,0,0,0,0,17,0,0,8,0,0,0,6,0,0,0,0,0,15,4,3,3,10,11,6,12,0,0,0,0,0,54,0,0,0,3,9,6,20,6,0,0,0,0,50,0,0,9,7,6,11,14,12,0,0,0,8,62,4,0,3,6,3,5,10,7,0,0,0,0,38,0,4,0,3,9,8,17,9,3,0,0,0,52,0,0,5,0,7,14,13,14,6,0,0,0,51,0,0,4,7,6,3,17,19,3,0,0,6,71,0,0,4,4,8,4,11,15,0,0,0,4,50,0,0,0,6,0,3,3,4,0,0
LGA22620,152,127,40,4,0,4,27,599,13,26,29,47,22,22,23,9,5,0,5,69,262,241,587,1205,2197,1288,2163,1388,419,74,25,77,361,10041,0,5,12,16,12,32,20,13,0,0,0,19,130,12,5,19,20,17,19,13,0,0,0,0,16,116,41,29,104,73,38,75,38,8,0,0,0,12,423,14,23,212,133,66,98,63,16,0,0,0,23,643,9,20,239,201,121,242,112,25,5,0,3,33,1018,10,12,75,199,129,326,244,28,0,0,0,23,1036,7,11,58,193,163,389,284,51,3,0,0,26,1175,4,4,59,134,159,370,355,57,8,4,7,27,1188,3,3,43,103,140,335,399,107,12,5,0,17,1151,0,7,35,71,94,299,400,98,7,5,4,12,1029,3,0,25,61,78,289,485,167,17,5,4,23,1161,6,0,21,25,35,137,323,143,16,7,4,23,743,0,0,3,10,11,38,126,66,10,0
LGA22670,246,385,85,12,4,14,96,1052,10,19,32,54,29,62,87,12,0,0,10,88,403,228,626,862,1585,1447,3414,4323,1040,112,46,226,657,14569,7,4,33,30,18,70,157,95,14,0,10,41,493,3,6,10,14,13,15,29,16,6,0,0,20,142,31,16,81,59,43,71,121,47,5,0,3,35,527,19,25,208,76,62,113,115,41,4,0,3,30,694,19,23,223,147,110,235,296,99,10,6,4,36,1215,4,7,67,117,101,207,387,133,24,6,8,33,1088,10,10,65,114,116,295,518,196,21,0,15,54,1416,3,11,34,64,126,330,645,244,28,9,29,42,1565,3,0,33,75,91,321,794,331,44,8,23,31,1758,7,3,15,42,35,236,692,326,30,16,15,47,1467,8,3,20,43,48,263,888,529,72,17,44,63,2005,0,4,6,31,26,144,535,459,79,18,21,25,1345,3,0,15,7,7,43,246,207,44,17
LGA22750,263,316,199,42,7,20,62,1313,23,35,81,80,34,61,52,11,3,4,12,159,564,430,953,2083,3117,2263,4225,4137,1872,401,86,180,778,20518,5,12,28,33,32,65,68,38,7,4,0,35,333,10,7,24,24,10,32,38,21,0,0,5,21,202,63,50,152,131,82,106,101,54,3,0,4,37,776,23,38,389,220,144,190,149,60,9,5,4,44,1276,27,35,451,368,233,401,388,117,13,4,7,41,2082,11,11,133,309,232,459,513,197,18,5,4,57,1958,11,11,123,241,246,521,635,217,18,8,4,56,2095,13,5,86,163,199,548,758,271,31,4,10,59,2142,7,7,75,154,169,540,887,435,61,10,8,43,2401,5,12,35,86,112,355,773,447,55,21,20,42,1970,5,10,31,72,94,376,1013,842,98,19,20,49,2643,8,8,22,44,37,181,662,678,116,27,35,42,1860,4,0,5,15,14,54,235,343,89,15
LGA22830,66,53,25,3,0,0,29,381,10,27,36,45,12,15,9,0,0,0,5,70,234,177,371,917,1610,840,1015,598,182,30,4,41,280,6071,8,8,12,17,15,15,12,0,0,4,0,13,96,3,0,10,7,13,9,5,3,0,0,0,9,59,16,19,56,60,37,33,11,0,0,0,4,6,243,13,10,147,93,54,37,16,0,0,0,0,17,391,14,24,144,159,90,102,46,9,0,0,5,17,608,4,14,56,139,99,111,73,8,0,0,0,14,517,9,10,69,142,130,144,83,23,0,0,0,20,630,3,9,40,109,130,149,95,20,3,0,0,10,569,4,3,30,105,116,165,148,29,0,0,5,20,632,6,8,21,75,103,137,144,29,3,3,0,15,530,4,10,19,76,81,143,190,68,3,0,4,14,613,4,0,18,37,45,69,134,63,6,0,0,14,384,0,0,5,7,18,29,61,40,0,0
LGA22910,4,11,0,0,0,0,0,49,0,4,4,4,0,0,0,0,0,0,0,9,27,39,80,148,200,141,193,128,17,9,0,7,39,1006,0,0,0,0,0,3,0,0,0,0,0,4,11,0,0,0,0,0,3,4,0,0,0,0,0,12,3,4,9,9,8,4,0,0,0,0,0,0,50,0,3,27,13,6,11,13,0,0,0,0,7,76,0,5,31,18,16,19,11,3,0,0,0,3,118,0,0,7,18,9,20,14,3,0,0,0,0,79,3,0,4,19,17,24,24,0,3,0,0,0,100,0,0,5,8,24,26,33,11,4,0,5,9,118,0,0,4,6,10,23,26,14,0,0,0,0,90,0,0,0,4,6,14,23,15,5,0,0,0,68,0,0,3,4,6,16,27,18,0,0,0,3,76,0,0,0,4,5,4,15,12,3,0,0,4,51,0,0,0,0,3,0,3,0,0,0
LGA22980,0,0,0,0,0,0,0,15,0,3,5,0,0,0,0,0,0,0,0,0,13,34,46,156,92,6,7,4,0,0,0,0,22,372,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,15,10,5,19,12,0,0,0,0,0,0,0,5,34,5,3,17,7,0,0,0,0,0,0,0,0,30,4,0,13,18,0,0,0,0,0,0,0,0,38,0,0,18,20,3,0,0,0,0,0,0,5,48,3,5,12,9,0,0,0,0,0,0,0,3,34,0,0,0,12,4,0,0,0,0,0,0,0,24,0,4,6,15,6,0,4,0,0,0,0,0,32,0,0,5,4,4,3,0,0,0,0,0,3,26,0,0,6,5,0,6,0,0,0,0,0,4,13,3,0,0,7,3,3,0,0,0,0
LGA23110,87,166,104,59,16,22,39,599,7,18,14,15,9,28,43,13,8,0,3,79,225,121,287,384,617,562,1622,2498,1264,491,152,200,343,8536,0,3,12,17,4,21,39,32,8,3,3,21,159,0,7,4,6,5,13,10,4,8,0,0,10,61,17,15,51,20,22,22,44,26,9,0,3,11,241,4,12,96,46,23,40,76,20,5,0,0,7,341,6,3,111,75,41,68,116,53,12,0,4,19,520,0,8,22,48,32,65,140,74,17,0,4,9,433,0,12,32,53,39,89,207,87,18,10,15,15,577,0,5,24,29,32,139,287,116,27,10,6,24,702,3,3,22,19,30,130,365,202,54,16,7,20,860,0,3,3,18,15,67,327,210,51,16,16,13,751,0,6,10,20,23,109,460,377,143,36,21,28,1228,4,0,8,12,12,53,347,337,189,55,55,21,1093,0,4,0,5,4,22,106,192,130,50
LGA23190,22,12,3,0,0,0,3,100,7,3,14,17,0,7,4,0,0,0,3,18,71,111,127,318,600,164,255,127,47,6,4,16,108,1899,0,4,4,0,3,0,0,5,0,0,0,0,20,0,0,6,4,3,0,0,0,0,0,0,0,22,4,6,14,25,9,5,0,3,0,0,0,3,67,0,16,47,52,6,7,4,4,0,0,0,8,157,9,20,49,65,23,26,12,3,0,0,0,11,219,0,3,14,58,39,28,19,3,0,0,0,3,170,4,6,18,48,28,50,19,9,4,0,0,8,180,0,3,13,47,35,34,29,9,0,0,0,13,182,0,0,20,48,25,40,31,10,3,0,4,11,191,0,0,10,30,17,41,33,10,0,0,0,5,162,0,0,10,27,19,34,50,21,0,0,0,10,164,0,0,4,14,6,22,25,17,0,0,0,0,97,0,0,0,5,0,5,11,14,0,0
LGA23270,132,295,139,21,9,5,50,795,8,18,20,22,18,25,76,13,0,6,4,88,281,168,304,531,741,680,1800,4097,1351,134,43,105,472,10437,3,3,10,21,10,16,132,82,9,3,8,34,324,3,8,17,7,7,17,44,26,0,0,3,8,133,26,11,72,44,25,42,117,54,5,0,0,33,431,8,19,152,35,37,51,152,52,5,4,9,33,547,8,11,127,84,60,119,409,136,10,0,14,27,1011,4,10,45,59,53,116,443,166,12,3,13,24,942,9,10,49,83,50,131,623,247,22,4,16,42,1287,8,4,21,48,58,127,706,297,30,7,19,35,1347,8,9,16,34,56,127,915,390,26,0,19,41,1632,5,0,12,17,18,84,727,356,27,8,10,31,1305,4,0,21,24,25,85,874,623,41,12,28,40,1780,7,0,15,12,10,56,549,474,48,10,24,20,1217,4,0,3,0,0,15,218,263,20,3
LGA23350,9,0,5,0,0,0,0,52,0,4,5,4,0,0,4,0,0,0,0,13,25,29,59,161,241,152,160,82,23,10,4,10,58,975,0,0,3,0,3,0,3,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,7,4,3,9,6,12,0,3,0,0,0,0,0,37,0,0,28,13,9,6,3,0,0,0,0,4,74,0,0,32,22,16,15,10,4,0,0,0,6,100,0,4,5,24,7,17,9,4,0,0,0,0,71,0,5,19,20,13,24,20,3,0,0,0,9,112,0,0,11,10,11,27,13,5,0,0,0,6,87,4,0,11,22,16,18,19,3,0,0,0,5,100,0,0,7,11,6,12,25,3,0,0,0,4,77,0,0,8,14,16,28,34,15,0,0,0,0,111,0,0,0,4,7,11,19,11,0,0,0,4,59,3,0,3,3,3,10,10,3,6,0
LGA23430,82,207,181,99,28,21,51,767,14,17,18,17,15,25,42,22,8,3,4,60,246,144,422,565,782,791,1870,3386,2560,885,273,249,421,12360,3,0,11,10,3,14,41,71,34,12,11,32,240,0,0,11,3,3,7,15,16,9,3,8,12,96,22,11,42,30,23,30,50,37,26,4,4,19,303,9,7,174,53,31,66,83,53,12,3,3,21,519,9,14,162,96,65,119,158,100,35,7,4,31,793,0,4,37,56,43,120,207,134,39,10,3,24,698,6,8,29,68,38,145,272,241,52,15,10,37,917,3,8,20,33,52,169,389,288,80,23,17,34,1120,6,6,21,39,34,158,438,446,124,36,23,39,1364,0,4,13,23,26,98,367,457,129,40,40,14,1200,3,3,8,16,14,97,486,758,308,74,65,41,1875,5,5,13,16,15,53,308,708,305,93,63,33,1605,0,4,0,0,7,22,128,357,189,78
LGA23670,78,205,183,30,9,12,33,648,5,13,8,12,10,15,35,22,0,0,0,57,178,139,345,404,489,382,1186,2958,2117,316,73,91,375,8881,7,3,11,11,3,6,28,44,21,6,0,32,168,3,3,7,7,4,0,10,17,7,0,4,0,64,19,10,41,14,13,13,39,32,8,5,6,13,216,4,6,129,31,22,22,40,49,5,0,0,23,328,5,20,120,42,27,43,108,80,15,0,0,32,499,7,10,53,52,31,54,183,130,15,3,6,26,567,0,9,31,46,32,85,235,238,40,5,5,27,744,7,3,28,36,33,76,272,302,42,12,15,24,853,0,4,26,27,29,74,323,422,64,11,7,33,1021,0,4,18,17,13,44,318,504,66,13,11,24,1029,3,0,6,17,22,37,370,776,148,23,30,23,1445,0,5,9,14,7,34,246,662,174,18,24,16,1204,0,0,3,6,0,6,98,352,125,22
LGA23810,55,53,21,0,0,0,21,376,11,30,54,63,15,12,5,3,0,0,3,66,264,266,624,1626,2079,661,765,511,152,20,11,48,277,7042,0,4,20,32,6,7,4,3,0,0,0,11,97,7,3,17,24,8,4,4,0,0,0,0,6,89,49,37,121,110,41,31,14,5,0,0,0,13,419,24,78,200,179,42,43,21,10,0,0,0,20,619,33,71,233,278,130,89,36,12,4,0,0,17,901,16,17,113,247,128,150,68,13,0,0,5,12,761,12,25,110,224,131,169,69,19,4,0,0,15,779,8,10,65,180,125,146,88,11,0,0,0,15,655,9,3,50,183,110,155,95,26,3,0,4,15,653,4,6,32,101,81,133,86,36,5,0,0,9,492,5,0,24,90,91,156,149,54,5,0,7,6,594,0,3,17,35,37,76,105,38,6,0,0,11,326,0,0,7,10,7,36,45,29,0,0
LGA23940,0,0,0,0,0,0,4,25,0,0,5,7,0,0,0,0,0,0,0,5,14,57,46,139,81,14,10,4,0,0,3,0,37,393,0,0,0,0,3,0,0,0,0,0,0,0,8,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,9,0,8,12,10,0,0,0,0,0,0,0,3,32,8,11,22,14,6,0,3,0,0,0,0,4,59,0,5,0,11,4,3,0,0,0,0,0,3,28,0,6,11,23,0,9,0,0,0,0,0,3,44,4,6,5,18,3,0,0,0,0,0,0,6,33,0,0,8,10,7,3,5,0,0,0,0,0,36,0,3,8,10,11,0,0,0,0,0,0,3,34,0,0,6,7,0,5,0,0,0,0,0,0,22,0,0,0,8,0,0,0,0,0,0,0,0,15,4,0,0,0,0,0,0,0,0,0
LGA24130,21,31,23,11,0,0,13,141,4,6,9,6,7,4,3,0,0,0,0,11,50,55,87,170,254,209,377,448,252,78,11,23,89,2054,0,0,4,5,4,4,7,7,0,0,0,9,36,3,0,5,4,5,5,8,0,0,0,0,5,27,5,3,13,3,6,3,3,4,0,0,0,3,57,5,8,17,11,11,11,29,7,0,0,0,4,104,12,14,22,21,20,23,46,15,3,0,0,6,178,0,0,5,9,22,20,42,27,4,0,0,4,136,0,3,10,14,15,32,54,33,7,0,0,9,180,0,0,17,7,14,29,56,30,9,0,0,5,170,3,3,7,7,15,25,56,53,13,0,0,3,184,0,0,4,8,16,23,70,51,12,0,3,11,191,3,0,0,3,10,25,91,114,24,6,4,12,303,0,0,0,5,8,13,39,101,19,4,0,3,206,0,0,3,0,3,0,17,40,18,9
LGA24210,17,85,171,95,36,41,30,497,0,0,3,3,0,3,17,26,5,7,3,25,102,42,66,134,158,144,331,1338,2017,831,271,227,267,5832,5,0,3,3,0,4,23,82,73,27,20,23,274,0,0,6,4,0,7,9,16,18,6,0,4,57,5,0,10,11,3,3,22,32,17,10,8,17,131,0,0,24,11,0,7,12,51,22,8,3,10,156,0,0,24,33,12,20,51,76,31,0,6,22,272,0,4,10,22,15,10,37,114,31,9,11,17,278,0,0,4,14,4,20,67,141,68,21,12,15,386,0,0,3,5,9,25,84,199,82,32,12,16,466,3,0,10,19,3,18,86,251,132,45,20,28,608,0,0,7,10,4,6,87,237,122,23,23,20,541,9,0,9,3,4,23,100,459,216,73,34,23,955,3,0,5,0,6,10,59,373,236,84,43,20,843,0,0,6,0,0,8,32,146,144,69
LGA24250,10,4,0,0,0,0,6,25,0,0,3,5,4,4,5,0,0,0,0,8,31,20,25,93,126,71,99,48,10,6,0,7,59,560,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,16,0,0,16,3,3,3,0,0,0,0,0,0,24,0,0,18,14,16,8,7,0,0,0,0,0,67,0,0,4,9,7,8,12,4,0,0,0,3,46,0,0,3,6,9,8,11,3,0,0,0,3,42,0,0,5,7,7,8,15,0,0,0,0,0,50,0,0,3,5,7,11,19,8,0,0,0,4,62,0,0,0,8,4,0,23,5,0,0,0,0,48,0,0,0,0,3,10,21,10,0,0,0,6,58,0,0,0,3,0,4,17,6,0,0,0,3,35,0,0,0,0,0,5,4,8,0,0
LGA24330,95,182,164,66,11,21,39,715,15,27,18,27,29,32,22,23,10,0,7,62,257,212,556,614,1014,778,1531,2482,2013,546,136,156,368,10415,3,3,22,28,19,54,87,63,22,6,3,34,354,12,8,20,21,21,23,32,20,9,6,0,11,178,49,26,85,62,42,70,64,21,3,7,0,25,455,15,20,224,69,58,52,68,42,9,6,0,20,583,14,19,199,101,81,96,128,61,16,6,6,29,744,11,0,42,61,82,127,155,71,29,0,16,31,619,3,3,45,85,95,152,221,169,30,11,13,21,853,6,6,24,70,85,165,323,201,42,6,8,23,974,4,4,31,40,77,184,437,351,68,17,26,43,1296,0,5,13,27,45,124,402,327,76,19,23,25,1099,5,0,18,34,35,140,511,628,188,46,42,35,1684,3,0,9,13,24,73,309,649,259,63,32,37,1484,0,0,3,6,8,21,126,336,193,57
LGA24410,82,160,131,26,5,6,23,501,6,12,17,11,10,23,25,5,0,0,6,70,189,113,306,413,514,444,1560,2915,1492,233,58,88,289,8419,3,6,12,10,3,8,47,32,17,4,0,20,159,8,5,9,4,0,3,11,10,3,0,0,3,61,9,8,39,33,7,14,47,36,5,0,0,18,222,13,4,122,31,28,20,76,41,4,0,0,19,364,5,9,110,76,19,48,153,90,9,0,6,22,544,11,3,32,52,25,65,224,96,13,0,7,23,550,3,3,24,49,27,79,282,161,20,6,4,15,671,4,0,23,24,40,87,386,233,31,3,10,20,850,4,0,23,16,23,62,407,318,50,8,5,24,937,0,0,4,18,20,50,352,331,56,5,11,26,872,0,4,10,12,11,50,468,621,123,13,25,27,1369,3,0,5,10,6,34,252,504,146,26,8,15,1004,0,0,0,4,0,11,105,240,83,17
LGA24600,63,126,366,444,234,317,89,1737,9,43,24,30,18,90,231,217,159,86,161,159,1229,261,684,675,777,519,1550,3949,6745,4969,2341,2587,922,25966,23,9,55,54,51,390,894,1185,1231,968,591,216,5665,14,12,22,37,22,56,121,144,181,90,66,31,802,49,58,146,102,32,102,139,208,190,108,90,60,1285,13,29,291,77,47,83,121,183,122,76,53,35,1127,13,14,232,122,70,76,177,241,154,107,74,55,1340,5,4,56,110,44,122,221,275,235,113,79,59,1324,7,9,54,69,51,119,236,375,280,164,117,57,1542,8,4,41,57,56,128,333,510,398,198,133,73,1942,12,0,32,49,45,121,436,738,551,278,183,91,2545,8,0,16,39,33,76,350,803,549,269,202,72,2419,12,3,26,34,28,98,417,1501,985,507,335,102,4050,7,7,20,25,17,61,220,1174,1192,599,461,74,3859,0,0,8,9,4,28,71,528,557,299
LGA24650,93,156,74,13,0,9,20,441,6,0,7,14,15,27,19,13,0,0,0,33,139,51,103,237,559,661,1746,2226,824,86,36,56,234,6816,0,0,8,6,5,36,28,32,7,3,0,16,136,6,0,4,0,4,9,15,9,0,0,0,5,58,3,12,12,11,14,49,42,16,4,0,0,14,179,3,3,35,19,28,89,61,29,0,0,0,8,292,0,3,36,60,40,154,114,52,8,0,4,14,488,0,3,19,26,50,182,200,90,10,0,0,24,611,3,5,15,50,43,213,270,116,15,0,0,25,756,5,6,8,24,38,187,317,141,18,0,4,26,771,4,0,11,32,33,221,413,201,26,7,3,25,972,0,0,3,10,19,159,404,210,17,8,6,27,859,0,0,7,10,13,185,519,345,42,13,10,19,1169,3,0,3,8,17,86,318,308,56,7,12,10,828,0,0,3,4,5,36,149,167,31,0
LGA24780,72,35,11,5,0,4,18,341,17,19,46,55,18,15,10,0,0,0,7,52,237,270,354,1057,1587,796,840,337,90,21,18,41,238,5640,3,6,19,21,7,10,7,3,0,0,3,13,88,6,0,14,15,7,3,3,0,0,4,0,5,58,25,11,58,60,35,34,14,0,0,0,0,23,253,12,29,143,144,43,46,23,5,0,0,3,13,463,20,35,157,193,79,84,43,11,0,0,5,22,652,8,5,63,156,88,101,66,5,4,0,0,10,504,10,10,44,166,115,142,106,18,4,0,5,20,633,3,5,38,136,91,141,103,21,5,3,0,17,571,5,0,39,98,77,155,119,23,7,3,0,16,549,5,3,29,67,63,125,129,26,7,0,3,12,466,8,7,21,80,53,116,160,34,7,6,3,14,511,0,0,11,19,15,69,99,46,0,0,4,6,284,0,0,3,9,7,30,36,19,6,0
LGA24850,29,35,8,5,4,0,10,166,9,10,16,9,4,8,6,0,0,0,0,24,83,60,126,275,522,323,478,403,153,22,6,8,106,2486,5,0,0,5,0,7,12,5,0,0,0,4,35,0,0,0,3,3,9,7,0,0,0,0,0,26,4,9,16,5,9,13,8,8,0,0,0,11,80,3,6,34,16,17,17,24,5,0,0,0,9,138,3,6,62,60,19,49,44,7,3,0,0,4,258,0,0,19,37,27,54,62,10,0,0,0,0,221,0,7,15,38,27,54,86,12,5,0,0,3,239,0,4,12,22,34,59,97,22,4,0,0,9,260,3,0,6,30,21,75,134,30,0,0,0,9,309,5,0,3,13,16,53,99,42,3,0,4,6,251,0,0,7,11,20,111,150,44,5,3,6,18,382,0,0,5,5,8,55,113,53,5,0,3,12,254,0,0,3,3,0,31,45,18,5,0
LGA24900,20,15,5,0,0,0,13,132,4,12,14,22,10,5,3,0,0,5,0,26,101,95,158,459,691,298,262,149,44,9,5,14,127,2312,0,0,4,10,5,4,3,0,0,0,0,10,32,0,0,3,9,3,0,0,3,0,0,0,4,20,8,4,29,24,17,9,10,0,0,0,0,8,106,0,0,51,38,14,18,0,4,0,0,0,8,147,4,0,89,79,46,21,13,7,0,0,0,9,272,10,3,39,61,33,38,22,5,0,0,3,4,218,0,5,33,65,40,60,29,9,0,0,0,3,253,5,0,29,43,42,51,26,5,0,0,0,8,218,5,0,18,54,50,50,41,20,0,0,4,14,247,4,3,4,40,19,52,37,8,0,0,0,7,177,0,6,14,44,39,46,57,18,0,0,0,10,238,0,4,8,11,18,25,27,10,0,0,6,8,112,0,0,5,5,3,11,15,4,5,0
LGA24970,56,249,404,163,44,46,88,1159,6,10,17,9,8,21,50,45,26,10,15,59,263,167,419,636,567,413,1129,3775,4657,1656,469,403,606,14896,8,6,54,80,29,114,114,321,189,112,94,73,1198,8,3,15,20,18,12,17,83,33,17,15,16,264,26,14,76,40,13,35,47,104,42,28,14,20,457,9,8,160,47,26,15,60,87,42,16,14,25,509,11,11,156,95,39,47,108,128,64,40,24,33,758,5,4,61,81,26,78,149,180,92,20,20,33,741,5,5,33,58,33,76,181,296,108,42,23,44,895,4,4,36,48,35,70,262,398,153,48,31,37,1119,0,5,34,42,21,70,343,597,249,75,51,44,1532,6,3,17,39,20,47,286,574,217,82,47,41,1382,0,4,37,31,21,49,369,1003,448,140,87,50,2254,3,0,19,35,11,34,262,948,531,173,103,37,2157,0,0,5,10,4,17,139,461,341,120
LGA25060,86,184,213,99,28,30,39,795,19,29,29,22,10,5,18,22,5,0,3,71,242,279,643,693,795,697,1436,2978,2579,769,262,229,438,11802,12,3,29,24,4,26,42,85,33,3,13,40,306,12,10,27,15,3,11,19,18,5,6,5,9,138,47,48,102,59,9,33,43,44,9,0,0,26,423,19,20,224,56,24,60,52,34,12,5,3,21,515,12,19,215,99,32,84,110,83,15,8,9,23,709,4,3,54,68,35,105,162,110,32,8,6,27,618,11,10,53,66,60,131,220,176,49,13,8,26,823,9,7,37,44,37,164,307,234,56,21,18,23,961,0,11,32,44,29,191,395,356,94,24,21,20,1218,4,3,19,28,30,115,402,403,102,29,21,21,1166,8,4,18,23,24,117,521,702,226,59,45,27,1771,6,3,5,21,12,77,358,758,259,83,50,26,1651,0,4,4,4,3,22,127,366,204,60
LGA25150,17,16,13,0,0,0,5,87,0,15,8,9,3,6,6,0,0,0,0,11,59,47,88,199,306,209,314,314,70,10,4,16,90,1654,0,0,0,6,5,6,5,0,0,0,0,9,31,0,0,7,4,0,0,6,0,0,0,0,6,24,4,8,16,7,13,16,9,0,0,0,0,7,75,6,0,31,21,16,13,11,0,0,0,0,5,106,0,7,45,19,21,39,37,6,0,0,0,8,186,0,0,15,30,35,43,38,9,0,0,0,3,167,3,0,10,24,29,40,58,16,0,0,6,6,186,0,0,4,17,21,37,55,9,0,0,0,0,145,4,0,6,18,20,50,71,10,0,0,0,3,186,0,0,4,3,9,28,69,15,0,0,0,3,142,3,0,5,15,18,44,108,35,3,0,0,11,236,0,0,0,3,4,21,77,36,5,0,3,8,161,0,0,0,0,0,4,39,25,0,0
LGA25250,164,361,425,205,86,54,75,1544,7,27,22,27,20,39,61,31,6,4,7,110,352,224,570,632,1046,1109,2476,4924,4366,1469,442,395,672,18314,6,5,24,27,23,54,79,91,42,12,21,41,426,6,4,28,8,11,17,30,28,10,3,4,11,164,36,30,112,45,38,58,97,73,33,15,14,27,576,14,16,196,62,41,80,143,78,21,10,11,25,699,15,14,206,101,58,146,239,127,41,19,13,33,1021,3,7,50,73,57,154,307,191,44,15,19,32,964,11,3,52,93,65,165,410,316,59,18,24,33,1245,7,11,27,54,66,238,551,416,118,37,24,41,1582,0,0,33,47,60,239,729,670,163,46,53,49,2107,0,0,19,31,41,152,680,725,201,60,58,31,1989,9,4,25,42,24,159,859,1258,420,120,117,56,3110,4,9,10,27,23,89,514,1207,580,171,101,41,2774,0,0,13,8,11,32,218,682,384,139
LGA25340,143,187,129,39,18,22,39,726,3,31,30,32,18,35,40,17,5,0,7,96,313,154,397,620,1069,1093,2198,2705,1417,357,128,183,448,10770,4,0,9,5,5,18,42,25,10,0,14,21,165,0,0,11,5,0,15,15,12,5,0,0,5,77,26,3,54,31,20,34,38,25,6,3,0,18,256,5,4,153,58,48,78,94,51,11,6,0,20,533,6,14,145,102,90,204,234,79,26,0,8,45,959,3,11,47,104,66,221,308,141,24,5,8,30,964,6,6,48,76,68,165,369,196,27,9,12,26,1005,9,8,27,37,59,180,431,200,52,9,9,26,1035,3,0,15,43,40,161,440,318,52,22,18,25,1140,3,0,19,24,24,105,386,296,90,13,13,27,997,3,5,10,18,26,114,438,487,137,39,26,29,1342,3,0,10,11,17,67,236,350,133,41,38,21,927,4,0,3,5,8,27,96,157,84,30
LGA25430,24,11,5,0,0,0,9,73,0,7,4,8,0,5,0,0,0,0,0,9,34,43,94,152,272,169,259,152,35,5,0,3,49,1236,0,0,0,0,0,4,4,0,0,0,0,0,18,0,0,4,0,0,3,0,4,0,0,0,0,17,8,0,16,4,4,7,5,0,0,0,0,7,51,3,0,28,16,10,15,13,0,0,0,0,5,87,3,0,37,33,21,35,26,4,0,0,0,7,170,0,0,11,18,11,36,25,12,0,0,0,9,120,4,3,14,13,19,25,42,9,3,0,0,6,124,0,0,3,14,17,24,35,9,0,0,0,0,105,5,0,4,12,17,27,34,11,0,0,0,4,109,0,0,4,5,3,17,53,10,0,0,0,0,97,0,0,4,5,3,20,43,25,0,0,0,0,99,0,0,0,0,0,5,36,11,0,0,0,3,60,0,0,0,0,6,0,10,6,0,0
LGA25490,4,3,0,0,0,5,0,44,0,4,4,9,6,3,0,0,0,0,0,5,28,52,53,158,214,123,136,75,44,5,4,17,54,935,0,0,0,0,0,3,3,0,0,0,0,0,13,0,0,6,0,0,0,0,0,0,0,0,0,11,3,4,10,4,5,5,0,0,0,0,0,3,29,7,0,20,13,6,8,3,3,0,0,0,0,66,4,0,22,16,18,13,8,0,0,0,0,5,83,0,0,12,14,17,17,15,7,0,0,0,4,78,5,0,15,28,11,15,14,7,3,0,0,9,101,3,0,8,20,11,12,22,7,0,0,0,0,84,7,0,7,16,13,24,10,9,0,0,0,10,97,0,0,16,12,12,19,8,11,0,0,0,8,82,0,7,10,16,12,17,26,14,3,0,7,13,117,0,0,4,14,6,10,12,15,5,0,0,6,73,0,3,0,3,0,4,4,3,0,0
LGA25620,10,6,0,0,0,0,4,49,0,4,9,5,3,7,0,4,0,0,0,12,36,54,47,119,193,103,120,57,23,6,3,7,71,795,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,7,3,3,4,0,0,0,0,0,27,0,3,10,15,10,10,9,0,0,0,0,0,70,0,0,15,21,16,17,6,0,0,0,0,5,77,0,0,9,19,17,18,11,9,0,0,0,0,75,0,0,4,11,14,24,11,9,0,0,0,5,88,0,0,13,16,6,16,13,0,0,0,0,7,63,0,0,6,5,8,15,10,3,3,0,3,0,59,4,0,0,4,10,25,11,7,0,0,0,0,64,0,0,0,7,6,26,28,7,0,0,0,7,78,4,0,5,4,8,13,11,3,3,0,3,4,51,0,0,0,0,3,4,3,0,0,0
LGA25710,9,31,32,20,4,4,9,121,0,4,3,3,0,4,8,3,0,0,4,10,39,28,64,125,97,69,158,423,450,170,48,52,89,1777,0,0,0,0,0,0,3,3,3,0,0,8,22,0,0,4,0,0,0,0,0,0,0,0,0,9,4,0,9,5,4,0,3,3,0,0,0,0,31,0,3,14,0,4,4,7,5,0,0,0,10,59,0,4,27,4,3,3,22,20,3,0,0,0,95,0,0,6,3,5,0,36,28,5,0,5,0,104,0,0,4,8,5,9,31,27,10,0,0,3,93,5,0,9,4,10,13,37,41,10,3,3,5,138,0,0,4,4,5,9,34,60,18,3,5,8,143,0,0,0,3,0,0,30,56,21,6,0,4,130,0,0,0,9,3,12,42,88,44,14,9,8,233,0,0,0,0,4,4,33,84,56,15,3,4,204,4,0,0,0,0,0,11,42,18,14
LGA25810,6,0,0,0,0,0,0,56,3,3,16,3,0,0,0,0,0,0,3,16,37,34,81,361,292,84,39,20,8,6,3,20,62,1010,0,0,4,5,0,0,0,0,0,0,0,0,12,0,3,0,9,0,0,0,0,0,0,0,0,7,7,3,14,10,3,4,0,0,0,0,0,3,44,4,3,35,30,6,5,0,0,0,0,0,0,84,5,4,62,39,11,5,0,0,0,0,0,5,133,0,0,20,37,17,20,0,0,0,0,0,0,96,0,0,16,53,22,8,9,0,0,0,0,5,117,0,0,25,40,23,13,7,0,0,0,0,3,113,0,0,16,33,10,9,0,0,4,0,0,3,72,4,0,8,23,14,18,4,0,3,0,0,4,71,0,0,9,18,17,15,0,0,0,0,0,4,63,3,5,3,10,10,11,4,0,0,0,0,11,55,0,0,0,6,4,6,4,5,0,0
LGA25900,63,192,443,305,173,233,47,1565,7,46,23,26,11,23,60,71,43,32,47,99,492,249,919,659,899,713,2087,4036,5613,3102,1596,2109,616,22601,0,0,21,21,16,32,67,102,70,33,49,35,458,9,7,16,14,0,12,19,26,10,8,20,17,165,50,34,131,63,26,42,69,60,20,19,11,24,551,17,32,367,107,43,63,87,68,30,18,11,27,880,23,24,304,144,86,106,127,99,26,11,18,29,999,0,5,53,93,66,137,179,145,57,21,27,23,797,0,8,63,83,57,157,272,239,86,34,31,39,1072,3,7,24,47,65,205,394,347,125,48,61,31,1345,3,5,27,42,48,210,562,547,206,98,83,49,1884,0,7,11,31,26,135,484,682,248,89,103,41,1858,4,0,15,30,25,159,663,1264,592,209,197,54,3219,5,0,5,20,13,68,374,1227,794,340,306,38,3187,0,4,3,8,10,24,102,513,469,232
LGA25990,0,0,0,0,0,0,0,27,0,0,9,4,0,0,0,0,0,0,0,4,22,28,28,123,93,19,16,8,0,0,0,4,28,344,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,4,0,0,0,0,0,0,12,0,7,8,6,3,0,0,0,0,0,0,5,26,3,0,15,11,5,0,0,0,0,0,0,3,42,0,0,3,8,6,3,4,0,0,0,0,0,32,0,0,6,8,5,6,3,0,0,0,0,0,37,0,0,0,11,0,4,4,0,0,0,0,0,18,0,0,10,5,7,5,0,5,0,0,0,5,34,0,0,5,7,0,3,0,0,0,0,0,0,25,0,0,6,9,10,9,5,0,0,0,0,3,38,3,0,0,0,4,0,4,0,0,0,0,0,13,3,0,0,0,0,0,0,0,0,0
LGA26080,0,3,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,6,16,19,23,42,55,70,16,4,0,3,11,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,3,0,0,0,0,4,0,0,0,0,0,9,3,0,0,0,0,0,17,0,0,4,0,0,3,0,0,0,0,0,0,15,0,0,0,6,0,8,10,0,3,0,0,0,26,0,0,0,3,0,0,7,5,0,0,0,0,20,0,0,0,0,0,0,8,3,0,0,0,0,14,0,0,0,0,0,4,10,6,0,0,0,0,26,0,0,0,0,0,0,9,3,0,0,0,0,13,0,0,0,0,0,0,4,6,0,0,0,0,15,0,0,0,0,0,0,0,3,0,0,0,0,9,0,0,0,0,0,0,0,6,0,0
LGA26170,25,11,0,0,0,0,8,104,3,0,9,10,0,0,0,0,0,0,0,18,48,83,110,227,409,300,297,139,30,5,0,19,113,1729,0,0,0,6,3,4,0,0,0,0,0,0,24,0,0,4,0,5,3,0,0,0,0,0,3,17,5,7,24,12,10,9,6,0,0,0,0,5,83,3,18,28,29,18,21,9,0,0,0,0,5,129,10,14,39,44,36,50,20,3,0,0,0,11,216,3,5,15,28,31,63,17,0,0,0,3,3,178,11,4,15,26,46,58,20,6,0,0,4,5,192,0,3,8,29,33,54,36,4,0,0,5,12,180,5,0,9,25,28,59,33,3,0,0,3,11,177,0,0,7,14,25,40,33,8,0,0,0,3,132,5,0,6,20,22,48,44,10,0,0,0,8,161,0,3,5,3,12,33,17,10,0,0,0,0,94,0,0,0,4,4,16,13,0,0,0
LGA26260,13,7,3,0,0,0,11,78,0,11,12,7,0,0,0,0,5,0,0,10,47,92,130,319,303,166,153,72,30,9,0,4,82,1361,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,3,0,0,0,0,0,0,0,0,0,9,6,0,16,12,3,0,0,0,0,0,0,4,48,0,8,37,23,6,6,0,0,0,0,0,4,88,4,4,52,38,17,5,3,0,0,0,0,4,139,5,0,23,31,27,17,4,0,0,0,0,3,121,0,4,28,34,21,30,8,0,0,0,0,5,131,0,5,18,23,20,35,0,0,0,0,0,8,109,11,0,17,26,13,40,9,0,0,0,0,0,124,5,6,13,25,21,28,9,0,0,0,0,6,104,5,0,10,19,20,31,26,7,0,0,0,5,127,5,0,8,6,9,11,16,5,0,0,0,5,63,0,0,0,0,3,11,8,4,0,0
LGA26350,51,162,323,223,141,195,48,1210,9,22,14,17,4,53,49,44,15,17,34,74,358,133,509,460,548,440,1814,3420,4333,2089,1143,1541,505,16937,8,0,22,20,10,126,97,221,108,49,59,42,768,0,8,13,8,3,23,28,45,12,14,14,11,168,25,28,77,28,14,43,47,64,35,15,11,35,408,12,30,232,40,24,45,55,60,25,14,14,25,556,9,12,224,79,36,69,124,100,47,19,20,40,772,0,5,37,61,29,86,126,165,59,22,31,24,648,7,8,36,58,33,97,189,215,78,24,35,28,789,0,3,22,30,30,88,291,316,119,70,52,25,1048,3,3,18,33,31,120,427,488,174,72,84,35,1483,3,5,10,14,19,95,422,554,193,98,87,23,1522,0,0,5,30,13,115,621,1085,400,174,140,39,2622,3,3,3,24,15,47,372,1059,593,294,221,45,2685,0,0,4,10,5,15,115,423,403,179
LGA26430,5,0,0,0,0,0,3,41,5,0,4,3,3,0,0,0,0,0,0,9,23,32,28,143,193,95,68,29,10,0,0,11,51,664,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,3,0,8,0,6,7,3,8,0,3,0,0,0,5,34,0,0,16,4,7,7,4,0,0,0,0,4,43,10,0,26,19,13,15,4,0,0,0,0,0,92,5,0,6,19,11,16,7,0,0,0,0,0,67,3,0,18,21,11,17,7,0,0,0,0,0,89,0,0,10,14,11,21,9,0,0,0,3,5,70,0,0,0,10,9,23,17,0,0,3,0,6,62,3,0,5,14,9,13,4,0,0,0,0,5,53,0,0,0,15,8,18,17,6,0,0,0,10,82,0,0,5,8,6,8,5,4,0,0,0,0,31,0,0,0,0,3,0,0,4,0,0
LGA26490,19,36,58,23,3,4,7,178,0,0,6,4,3,5,11,0,0,0,3,5,43,36,32,97,174,169,270,405,450,163,37,37,63,1925,0,0,0,0,0,0,3,8,0,4,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,10,5,0,7,11,10,0,9,7,0,0,0,0,42,0,0,11,12,8,14,7,5,0,0,0,0,57,0,3,15,15,5,8,16,12,10,0,0,6,101,0,0,3,10,8,19,27,21,5,3,0,3,99,0,3,9,11,5,17,37,36,5,4,0,5,131,0,0,4,6,5,21,35,30,9,0,0,5,129,0,4,5,5,8,16,35,63,27,9,0,8,182,0,0,6,0,10,17,38,68,32,4,0,5,182,0,0,9,6,13,17,53,122,56,10,0,3,285,0,0,0,3,5,6,33,106,65,7,9,7,247,0,0,0,4,0,5,8,59,44,9
LGA26610,19,12,0,0,0,0,8,139,10,10,27,25,11,0,0,4,0,0,0,20,110,149,182,435,594,297,225,104,26,8,6,12,119,2143,3,0,3,9,6,0,3,0,0,0,0,5,31,0,0,3,4,3,0,0,0,0,0,0,4,22,15,10,24,20,3,4,0,0,0,0,0,3,79,5,6,47,24,14,13,0,0,0,0,0,9,126,14,9,49,76,22,16,4,0,0,0,0,9,205,4,0,25,48,32,20,6,3,0,0,0,0,152,0,7,42,65,37,35,9,0,0,0,0,3,210,3,5,22,48,39,42,12,0,0,0,0,8,185,4,3,26,36,34,52,17,3,0,0,3,10,199,0,3,17,34,26,51,22,11,0,0,0,0,168,11,4,20,41,26,40,28,11,0,0,0,3,185,8,3,8,14,10,34,18,5,0,0,0,0,110,0,0,5,8,8,9,9,6,0,0
LGA26670,3,0,0,0,0,0,0,24,0,4,0,0,0,0,0,0,0,0,0,6,12,35,31,116,99,32,34,14,4,0,0,4,32,403,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,4,3,0,0,0,0,0,4,17,5,0,8,13,0,3,0,0,0,0,0,0,29,6,3,11,19,3,6,0,0,0,0,0,0,44,0,0,11,12,5,10,3,0,0,0,0,0,41,0,3,9,16,3,6,5,0,0,0,0,0,41,0,0,9,17,4,3,0,0,0,0,0,4,36,4,0,8,6,10,0,4,0,0,0,0,0,32,0,0,8,10,5,4,3,0,0,0,0,0,30,6,0,0,10,5,9,3,0,0,0,0,5,44,3,0,7,5,0,5,0,0,0,0,0,0,24,0,0,0,3,0,7,0,0,0,0
LGA26700,22,9,3,0,0,0,4,108,3,10,18,19,11,3,0,0,0,0,3,18,79,89,175,378,676,305,318,158,39,6,5,15,136,2301,0,0,0,5,4,8,0,0,0,0,0,0,15,0,0,8,7,0,5,0,0,0,0,0,0,28,5,10,33,26,11,0,5,0,0,0,0,9,106,5,5,77,57,20,16,8,6,0,0,0,3,192,5,12,81,74,38,42,14,4,0,0,0,7,281,0,5,16,64,34,54,21,4,0,0,0,7,218,4,5,32,63,42,69,48,7,0,0,0,7,269,0,0,26,63,47,81,31,11,0,0,0,4,262,4,0,18,46,33,76,57,7,0,0,0,3,246,6,0,7,27,23,45,48,19,0,0,0,5,176,4,0,8,30,25,58,56,19,4,0,0,9,206,0,0,0,8,15,33,44,25,0,0,0,3,129,0,0,0,3,3,8,23,11,0,0
LGA26730,55,58,38,4,0,4,15,238,4,7,12,18,13,8,8,8,0,0,6,28,108,98,200,371,665,388,687,686,338,60,18,39,138,3673,0,3,9,0,4,8,9,0,0,0,0,11,43,5,4,5,6,3,7,0,5,0,0,0,3,40,17,16,46,29,16,12,10,9,0,0,0,3,156,6,7,81,42,35,31,15,3,0,0,0,5,227,7,8,106,77,59,55,34,9,0,0,0,12,369,8,0,46,67,46,84,50,14,0,0,0,12,324,4,3,32,57,60,100,96,23,0,0,0,3,383,0,0,15,50,56,89,112,29,0,0,0,9,372,0,0,11,32,40,108,117,45,3,0,4,9,366,0,0,16,29,43,71,100,52,8,3,0,5,318,3,0,9,18,32,87,171,80,13,0,0,4,409,0,0,4,8,13,36,97,78,10,5,0,9,261,0,0,0,3,8,9,47,36,13,0
LGA26810,28,29,4,3,0,0,9,189,6,12,24,24,8,11,5,0,0,0,0,18,104,116,207,661,938,408,456,296,86,18,8,28,143,3368,0,4,10,11,0,7,5,0,0,0,0,3,40,0,5,15,12,4,5,3,4,0,0,0,0,42,13,5,33,28,19,12,8,0,0,0,0,13,135,7,13,85,57,32,38,13,4,0,0,0,8,250,14,12,104,109,41,66,18,4,0,0,0,22,389,6,4,38,73,52,59,27,7,0,0,0,9,286,5,6,34,76,56,72,57,24,0,0,0,11,337,3,0,33,60,61,67,45,14,0,0,4,9,303,5,7,24,64,64,88,55,14,3,0,0,16,329,6,0,17,31,34,72,65,25,5,0,0,9,263,6,0,20,38,27,79,78,46,5,0,0,9,327,6,0,13,16,14,52,68,33,10,0,7,14,222,0,0,0,0,4,22,37,15,3,0
LGA26890,0,0,0,0,0,0,0,19,0,0,4,0,0,0,0,0,0,0,0,7,9,53,22,82,32,4,0,0,0,0,0,0,32,224,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,0,6,4,7,0,0,0,0,0,0,0,0,0,9,0,5,0,3,0,0,0,0,0,0,0,0,12,0,6,12,5,3,0,0,0,0,0,0,0,27,0,3,3,0,0,0,0,0,0,0,0,4,17,5,0,8,3,0,0,0,0,0,0,0,0,18,0,0,6,0,0,0,0,0,0,0,0,8,19,0,0,8,4,0,0,0,0,0,0,0,0,20,0,0,8,4,0,0,0,0,0,0,0,5,13,0,4,4,8,0,0,0,0,0,0,0,0,16,0,0,9,6,0,0,0,0,0,0,0,5,8,3,0,0,0,0,0,0,0,0,0
LGA26980,59,194,284,106,41,33,51,867,5,10,10,17,10,28,26,34,11,3,3,83,238,218,461,687,645,475,1341,3397,3584,1047,284,306,551,12998,7,4,23,39,104,101,89,273,163,69,58,70,1004,6,8,16,17,30,20,31,41,35,5,12,18,232,24,16,74,46,63,38,51,77,42,7,10,28,470,12,18,154,48,42,41,67,68,31,9,14,16,527,13,27,181,95,52,58,113,154,46,11,8,40,790,8,19,55,61,55,64,166,191,46,23,5,35,725,4,10,40,77,60,95,194,269,85,15,16,22,889,0,12,40,42,38,94,279,381,96,32,21,34,1072,3,4,33,37,38,90,348,504,155,62,34,41,1351,8,4,14,27,19,67,284,564,173,39,37,26,1256,4,0,30,29,18,56,370,942,305,76,51,51,1934,0,0,19,28,13,46,257,805,366,110,67,42,1746,4,0,6,13,10,26,85,448,220,80
LGA27070,108,266,181,21,9,11,62,758,6,0,12,15,8,21,67,26,7,0,3,67,219,98,112,300,459,443,1498,3877,2022,204,48,144,427,9635,4,0,19,11,14,34,151,98,16,5,10,38,397,0,5,7,9,3,15,53,23,4,0,4,10,125,12,9,20,37,9,31,124,60,10,4,5,15,329,3,10,53,28,19,43,161,50,11,0,5,16,396,6,5,55,51,33,63,351,139,14,0,9,16,750,6,0,16,35,13,64,470,192,20,7,3,25,855,9,6,24,43,38,121,609,299,24,9,19,26,1225,8,3,19,23,24,94,768,353,30,9,17,43,1398,7,0,24,26,24,118,864,491,32,8,19,42,1657,3,0,13,21,21,100,757,524,48,9,25,29,1545,5,0,17,21,21,101,946,870,87,15,33,60,2174,5,0,5,14,9,54,598,688,69,9,31,25,1515,0,0,0,5,0,33,258,350,52,6
LGA27170,69,56,24,0,0,3,17,307,7,14,18,25,8,5,0,3,0,0,0,41,121,132,294,516,905,651,966,686,211,41,10,30,185,4635,0,0,5,15,4,4,7,0,0,0,0,8,42,5,0,9,11,3,6,7,0,0,0,0,5,46,28,3,39,38,14,17,15,0,0,0,0,3,162,5,7,116,35,33,27,16,3,0,0,4,10,264,3,8,143,104,55,66,36,14,3,0,0,8,439,3,0,34,71,67,96,61,16,0,0,0,10,367,6,0,28,105,84,115,81,27,0,0,5,11,470,0,6,21,64,80,128,110,36,0,3,0,9,460,0,0,19,43,87,143,151,54,4,0,4,6,512,0,0,9,28,64,128,156,68,3,0,0,3,463,0,0,12,25,47,167,212,113,10,0,0,13,590,0,0,8,18,24,95,149,120,9,0,0,10,432,0,0,0,8,6,26,74,54,8,0
LGA27260,183,380,132,19,8,16,45,893,3,0,10,23,16,44,60,7,4,0,6,70,246,97,150,357,799,948,3217,5195,1539,223,74,156,411,13170,0,0,4,13,6,40,111,76,17,3,4,48,326,0,0,13,9,3,14,34,15,5,0,0,6,100,16,6,36,15,23,53,135,51,13,0,3,15,354,4,0,60,24,34,79,147,56,3,0,0,16,419,0,12,64,63,49,173,320,101,7,3,9,25,828,3,5,28,51,62,184,412,134,21,3,9,30,930,9,0,17,63,52,224,597,199,24,5,12,29,1231,4,4,22,37,46,262,854,274,23,8,13,35,1581,8,0,13,32,66,272,1066,432,39,7,18,26,1990,9,4,9,25,37,234,1014,456,43,9,25,47,1920,3,3,14,23,35,246,1463,846,107,17,35,33,2828,3,0,11,13,17,151,979,860,124,22,19,28,2224,6,0,0,4,7,58,440,486,71,21
LGA27350,61,115,302,388,251,214,94,1568,12,52,28,26,11,22,14,14,8,7,9,73,283,365,993,1031,832,478,1315,1865,3094,2867,1424,1206,543,16022,15,16,48,25,15,25,32,53,42,27,21,35,338,9,18,37,27,12,6,14,13,7,9,6,16,174,74,82,213,74,39,30,43,35,22,9,9,26,663,18,31,378,88,46,45,42,29,15,5,6,27,725,16,29,427,166,83,53,65,61,39,17,23,39,1015,11,11,103,93,65,59,100,69,43,15,26,29,625,15,16,58,135,67,98,145,122,60,25,41,24,806,10,6,38,57,64,140,213,178,96,49,37,25,908,8,3,33,39,28,121,319,302,151,64,90,32,1189,3,7,15,22,17,92,293,375,193,91,86,19,1208,3,3,22,34,28,87,335,771,399,212,158,37,2084,0,4,12,14,7,46,210,756,708,368,237,34,2393,0,0,11,8,3,22,77,318,474,306
LGA27450,73,152,91,21,5,6,36,451,4,9,5,20,10,27,25,10,4,0,4,56,182,137,247,406,708,637,1212,2097,1067,166,50,57,312,7091,6,0,9,5,5,16,17,13,0,0,0,19,91,4,0,5,3,3,4,6,15,0,0,0,4,48,13,9,20,18,18,19,36,24,0,0,0,6,164,5,4,55,26,24,46,69,29,0,0,3,20,280,9,11,88,56,56,91,117,53,5,0,0,26,515,3,4,20,53,49,99,184,91,15,6,5,17,545,5,9,26,44,55,86,196,149,11,3,5,23,614,8,0,22,28,49,87,253,200,22,4,10,17,701,10,3,13,33,39,76,278,259,26,9,5,23,765,0,3,13,23,16,58,216,251,37,10,9,15,648,0,0,21,19,26,43,232,418,75,6,19,34,894,3,0,11,11,14,29,162,364,83,14,10,12,715,0,0,8,4,6,5,46,147,55,11
LGA27630,0,0,0,0,0,0,3,16,3,0,9,0,0,0,0,0,0,0,0,6,19,67,45,169,80,3,8,3,0,0,0,0,30,405,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,12,4,6,11,3,3,0,0,0,0,0,0,7,38,0,3,18,27,4,0,0,0,0,0,0,0,56,0,0,8,16,6,0,0,0,0,0,0,0,37,5,0,14,12,3,0,0,0,0,0,0,5,40,0,0,8,12,3,4,0,0,0,0,0,4,33,3,3,4,13,0,0,0,0,0,0,0,0,20,0,4,3,15,4,0,0,0,0,0,0,3,30,10,0,11,9,0,0,0,0,0,0,0,7,30,10,0,6,5,3,0,0,0,0,0,0,0,25,0,0,4,0,0,0,0,0,0,0
LGA29399,0,0,0,0,0,12,0,13,0,0,0,0,0,3,0,0,0,0,7,0,11,0,0,5,3,0,8,8,7,0,3,165,38,251,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,4,0,9,0,0,0,0,0,0,5,0,4,0,4,5,12,0,0,0,0,0,0,0,0,0,0,6,5,11,0,0,0,0,0,0,5,0,3,0,10,0,24,0,0,0,0,0,0,0,0,0,0,8,8,21,0,0,0,0,0,0,0,0,0,0
LGA29499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA29799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA30250,0,0,0,0,0,0,3,26,3,7,0,0,0,0,0,0,0,0,0,0,12,65,60,51,22,0,0,0,0,0,0,0,16,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,5,11,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,3,6,6,15,8,0,0,0,0,0,0,0,0,30,0,0,4,3,0,0,0,0,0,0,0,0,14,3,0,10,3,0,0,0,0,0,0,0,0,21,3,0,15,10,0,0,0,0,0,0,0,0,25,3,0,19,0,0,0,0,0,0,0,0,5,34,6,3,15,4,0,0,0,0,0,0,0,0,27,9,0,6,5,0,0,0,0,0,0,0,0,23,8,0,3,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0
LGA30300,5,0,3,0,0,0,8,49,0,0,6,3,0,0,0,0,0,0,0,4,18,68,37,109,102,50,57,13,6,0,3,9,47,504,0,0,3,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,10,4,0,6,6,0,0,0,0,0,0,0,4,27,0,3,14,11,4,4,0,0,0,0,0,0,35,0,0,10,13,10,7,3,0,0,0,0,0,39,0,0,5,8,8,8,4,0,0,0,0,0,31,0,0,0,8,4,8,5,0,0,0,0,4,36,6,0,3,11,3,4,3,5,0,0,0,8,44,9,0,3,3,3,4,4,0,0,0,0,3,35,8,0,7,3,6,9,17,10,0,0,0,6,65,7,0,4,3,0,4,12,0,0,0,0,0,31,3,0,0,0,0,0,0,0,0,0
LGA30370,10,22,8,3,0,0,5,103,3,0,4,0,4,0,0,3,0,0,0,21,45,152,145,274,177,132,160,185,139,57,11,16,156,1601,0,0,0,0,0,3,3,0,0,0,0,0,9,0,0,7,4,0,0,0,0,0,0,0,0,7,10,4,11,4,4,0,4,0,0,0,0,0,32,4,8,24,7,5,4,0,0,0,0,0,3,58,3,8,25,17,7,0,7,0,0,0,0,0,75,0,0,14,9,10,11,7,0,0,0,0,6,62,0,4,12,15,11,12,13,3,0,0,0,10,80,0,6,18,18,19,16,16,7,0,0,0,8,110,8,3,17,20,10,32,28,10,0,0,0,12,131,5,4,14,12,20,18,22,9,3,0,0,13,110,16,11,21,12,6,25,46,35,8,0,0,15,192,12,16,22,17,8,36,39,41,5,0,0,14,206,12,7,6,0,3,11,16,25,0,0
LGA30410,0,0,0,0,0,0,5,19,3,0,0,0,0,0,0,0,0,0,0,8,11,58,43,53,43,17,7,6,4,0,0,3,49,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,5,0,3,3,0,0,0,0,0,0,0,0,12,0,4,7,4,5,0,0,0,0,0,0,0,21,0,0,3,5,4,0,0,0,0,0,0,0,16,0,3,3,3,0,7,0,0,0,0,0,3,21,0,0,3,9,0,3,0,0,0,0,0,3,18,3,0,9,3,3,0,0,0,0,0,0,9,26,4,0,0,3,3,3,0,0,0,0,0,5,21,0,0,0,4,4,3,0,0,0,0,0,4,24,5,3,3,6,0,7,0,0,0,0,0,0,27,3,0,0,0,0,0,0,0,0,0
LGA30450,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,16,15,4,0,0,0,0,0,0,0,0,5,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,4,0,3,0,0,0,0,0,0,0,0,10,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA30760,0,0,0,0,0,0,0,11,0,0,6,0,0,0,0,0,0,0,0,0,8,46,10,77,40,10,0,3,0,0,0,3,17,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,3,0,3,3,0,0,0,0,0,0,0,0,9,6,3,17,9,0,0,0,0,0,0,0,0,31,0,0,5,5,3,0,0,0,0,0,0,0,12,5,0,10,8,3,3,0,0,0,0,0,0,26,0,0,0,4,0,0,0,0,0,0,0,0,13,5,5,4,5,3,0,0,0,0,0,0,0,24,5,0,6,6,0,3,0,0,0,0,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0
LGA30900,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,0,4,20,9,30,7,0,0,0,0,0,0,0,9,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0
LGA31000,466,1608,3586,1696,710,725,448,10272,178,156,165,190,80,162,349,427,186,110,134,607,2740,3750,3899,5770,6742,4794,9272,26767,43872,15138,5808,5576,3980,135365,32,32,180,163,131,150,356,870,676,352,238,227,3422,60,30,88,104,26,53,107,215,122,52,44,65,971,351,211,591,366,160,209,303,480,222,97,73,141,3198,131,366,1431,612,232,323,463,537,153,61,55,216,4581,109,397,1940,885,388,679,975,1089,322,99,72,254,7216,77,72,567,781,391,739,1386,1586,460,142,105,241,6544,28,84,452,774,460,871,1885,2448,649,199,132,206,8183,40,55,262,576,459,962,2447,3562,1030,298,192,231,10124,29,28,211,386,366,965,3140,5536,1570,445,282,260,13218,14,18,129,229,257,673,2556,5814,1870,501,319,205,12606,36,12,154,292,245,787,2937,9734,4117,1127,641,283,20354,20,4,79,166,150,395,1667,8222,4704,1430,945,238,18024,10,13,47,73,62,186,658,3762,2945,1072
LGA31750,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,8,3,30,0,0,0,0,6,0,0,0,5,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0
LGA31820,198,167,38,4,0,3,17,604,17,13,35,68,22,53,18,19,5,0,8,82,335,292,341,854,1582,1049,2641,1924,358,69,15,67,355,9536,6,3,10,13,15,34,30,10,0,0,4,17,124,5,6,13,13,4,8,9,4,0,0,3,9,65,39,26,76,64,51,71,48,7,3,0,6,18,404,12,25,118,98,72,115,87,12,0,0,0,27,573,12,26,164,210,176,301,145,32,0,0,4,35,1096,8,16,40,137,145,315,251,40,7,3,6,29,991,4,13,54,143,161,340,348,68,10,4,3,27,1170,0,7,32,97,127,295,378,83,6,3,6,24,1068,8,5,29,64,89,275,442,96,6,5,4,29,1046,10,4,16,48,55,212,397,96,9,0,4,10,865,0,4,18,26,41,208,422,159,14,0,5,21,920,6,6,7,19,28,91,234,114,16,0,3,7,523,0,3,0,6,4,29,75,69,5,0
LGA31900,28,13,3,0,0,0,6,128,5,5,9,9,9,10,0,0,0,0,0,18,59,102,84,233,434,241,293,153,32,11,4,3,81,1672,0,0,3,5,3,5,0,0,0,0,0,0,17,0,4,0,3,3,3,0,0,0,0,0,0,20,6,5,8,14,11,13,4,0,0,0,0,0,62,0,6,15,15,18,30,7,0,0,0,0,3,107,3,9,22,52,34,38,5,0,0,0,0,3,164,0,3,14,28,42,35,13,0,0,0,0,8,144,0,0,19,39,30,42,28,0,0,0,0,6,173,4,0,7,29,29,49,21,9,0,0,0,6,153,4,0,16,24,23,45,33,5,0,0,0,3,168,5,0,6,23,34,42,31,11,0,0,0,0,150,10,4,7,20,17,42,41,11,4,0,0,11,165,7,7,7,7,4,25,31,10,5,0,0,3,105,4,0,0,8,3,7,7,5,0,0
LGA31950,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,5,10,8,21,10,0,0,0,0,0,0,0,7,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0
LGA32080,282,539,387,83,28,23,82,1881,37,33,43,114,54,73,94,28,14,12,32,165,694,607,624,1383,2932,2225,3490,5435,2839,562,198,310,696,21314,3,7,27,31,32,34,68,60,15,3,4,33,324,7,12,22,22,21,23,31,17,7,0,0,13,170,65,36,117,118,68,78,80,33,10,0,0,32,631,15,45,195,193,106,126,117,49,4,0,0,25,883,21,45,254,325,235,299,230,107,18,3,4,51,1595,19,14,106,233,206,358,351,190,26,3,10,27,1540,15,18,80,233,213,437,537,292,43,16,12,27,1927,9,18,58,190,217,414,611,382,60,15,17,33,2020,11,11,55,121,160,441,736,517,80,19,23,37,2204,8,6,30,71,95,294,634,604,100,17,20,41,1918,3,0,25,55,91,309,784,915,209,35,30,38,2501,7,4,15,35,47,176,492,797,205,50,28,27,1884,4,0,8,9,21,43,165,348,158,30
LGA32250,3,0,4,0,0,0,6,53,0,3,0,6,0,0,0,0,0,0,0,4,15,60,28,51,63,30,17,16,4,0,0,12,41,314,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,7,3,0,0,0,0,0,0,0,0,16,0,7,0,3,0,0,0,0,0,0,0,0,11,0,0,4,4,0,0,0,0,0,0,0,0,7,0,0,0,4,0,3,0,0,0,0,0,3,21,0,0,0,4,3,6,0,0,0,0,0,0,14,0,0,5,0,4,6,4,0,0,0,0,0,22,6,0,0,12,4,5,4,0,0,0,0,0,27,3,0,10,10,5,3,3,3,0,0,0,0,43,8,0,0,10,3,4,8,0,0,0,0,4,32,4,0,4,0,0,0,0,0,0,0
LGA32260,47,47,15,3,0,7,14,230,10,7,13,28,19,15,0,4,3,0,7,38,150,109,108,408,769,442,602,406,196,47,28,72,196,3380,0,0,4,4,8,11,10,3,0,0,0,5,42,0,0,5,5,3,3,3,0,0,0,0,0,32,3,9,16,20,12,9,3,0,0,0,0,5,78,0,3,35,61,22,27,12,3,0,0,0,10,171,4,9,42,94,50,53,28,4,0,0,0,13,308,0,4,20,66,56,52,33,14,0,0,3,4,259,3,8,30,65,63,102,71,20,0,0,4,8,370,6,0,23,53,64,71,66,28,0,0,3,12,329,6,6,19,61,67,100,92,26,4,0,3,9,386,5,4,11,31,33,81,82,25,5,0,4,10,295,3,4,18,38,40,93,102,45,9,0,5,12,371,3,4,8,11,25,46,67,28,9,3,0,4,213,0,4,3,4,6,22,18,19,3,0
LGA32270,15,14,38,53,17,24,34,347,5,0,9,3,0,4,7,10,12,7,3,38,91,1020,192,315,182,99,193,256,404,378,191,210,399,3835,0,0,0,9,5,3,0,4,0,0,5,4,30,0,0,9,5,0,6,0,0,0,0,0,5,20,9,4,14,14,7,3,4,0,0,0,0,3,61,10,7,25,31,20,3,7,0,0,0,0,0,104,8,6,50,27,14,10,3,3,0,0,0,8,127,5,0,9,45,25,15,6,3,0,0,0,0,114,0,7,24,51,31,30,20,3,0,0,0,16,177,0,4,14,40,36,35,23,5,0,0,0,13,178,31,12,23,53,34,43,47,9,0,4,0,23,268,24,4,23,43,41,59,55,21,3,0,0,21,302,64,23,35,59,64,112,93,49,10,0,0,32,538,140,40,34,58,41,80,96,54,11,0,8,32,593,68,15,11,6,25,26,46,22,6,3
LGA32310,18,19,0,3,0,0,5,90,0,0,5,14,3,0,0,0,0,0,0,4,43,74,60,173,240,151,189,116,22,10,4,10,71,1109,0,0,4,4,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,3,9,0,3,7,14,3,4,0,0,0,0,0,4,44,0,4,7,30,15,8,0,0,0,0,0,4,70,0,3,18,38,20,14,6,0,0,0,0,4,108,0,0,10,17,12,22,5,4,0,0,0,4,80,0,0,9,23,21,18,12,4,0,0,0,5,100,4,0,7,29,12,31,7,0,0,0,0,6,87,0,4,8,22,20,23,17,5,0,0,0,13,106,0,4,5,12,13,24,18,3,0,0,0,6,92,5,4,6,13,16,27,25,14,0,0,3,6,115,0,6,6,7,4,13,16,12,0,0,0,5,65,3,0,0,0,4,9,7,6,0,0
LGA32330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,105,26,0,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,13,9,4,0,0,0,0,0,0,0,0,32,0,9,9,3,0,0,0,0,0,0,0,0,19,3,17,8,0,0,0,0,0,0,0,0,0,22,0,12,13,0,0,0,0,0,0,0,0,0,27,0,6,14,9,0,0,0,0,0,0,0,0,27,3,6,12,3,0,0,0,0,0,0,0,0,32,0,9,24,0,0,0,0,0,0,0,0,0,37,0,3,13,4,0,0,0,0,0,0,0,0,25,0,5,17,0,0,0,0,0,0,0,0,0,19,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0
LGA32450,0,7,4,0,0,0,5,42,6,0,0,3,0,0,0,0,0,0,0,7,11,84,39,62,40,13,26,51,36,8,4,3,59,443,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,10,0,0,3,6,0,0,0,0,0,0,0,0,15,0,0,6,16,0,0,0,0,0,0,0,3,29,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,4,0,0,0,0,0,11,0,3,3,4,4,4,0,0,0,0,0,6,29,3,0,4,6,4,4,0,0,0,0,0,0,34,3,4,3,5,0,0,8,4,4,0,0,0,33,8,0,4,4,6,3,10,10,0,0,0,15,61,13,6,7,0,3,0,7,7,0,0,0,5,52,7,0,0,3,0,0,3,3,0,0
LGA32500,7,0,3,0,0,0,3,42,0,0,5,4,0,0,4,0,0,0,0,5,24,94,23,67,82,45,52,53,27,13,4,10,50,530,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,6,8,0,0,6,0,0,0,4,0,0,0,0,20,0,3,6,8,3,0,3,0,0,0,0,3,21,4,0,4,16,5,5,3,0,0,0,0,0,37,4,0,3,5,0,0,8,3,0,0,0,4,33,4,0,5,10,0,0,5,0,0,0,0,4,26,0,0,11,6,3,7,0,9,0,0,0,5,44,4,0,7,0,7,3,10,5,0,0,5,4,45,3,0,11,0,6,4,7,4,0,0,0,3,47,13,0,8,3,0,3,12,7,0,0,0,10,61,16,0,3,4,3,0,13,8,0,0,0,9,57,6,0,0,3,0,0,0,0,0,0
LGA32600,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,7,8,0,0,0,0,0,0,0,8,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA32750,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,17,4,28,8,4,0,0,0,0,0,0,16,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0
LGA32770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,47,25,48,30,8,7,0,4,0,0,0,6,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,7,0,4,0,0,0,0,0,0,0,0,0,8,3,0,9,6,0,0,0,0,0,0,0,0,10,4,4,6,5,0,0,0,0,0,0,0,0,25,5,0,8,8,0,0,0,0,0,0,0,0,21,0,0,17,5,0,0,0,0,0,0,0,0,22,0,0,15,0,0,0,0,0,0,0,0,0,16,4,8,11,13,0,0,0,0,0,0,0,0,38,0,3,7,4,0,0,0,0,0,0,0,0,24,6,4,13,5,0,0,0,0,0,0,0,0,32,0,0,7,3,0,0,0,0,0,0,0,0,13,0,0,4,4,0,0,0,0,0,0
LGA32810,20,33,21,4,5,0,4,135,4,3,12,17,9,9,11,4,0,0,14,19,103,57,45,150,239,181,292,329,185,58,14,81,77,1708,0,0,5,3,5,0,4,0,0,0,0,5,23,0,5,7,0,0,0,0,0,0,0,0,0,10,3,4,5,9,9,6,0,4,0,0,0,0,37,0,0,9,18,8,16,5,0,0,0,0,0,59,5,0,17,17,28,24,14,10,0,0,0,3,118,0,0,12,22,20,21,21,11,3,0,4,4,112,0,0,4,17,21,29,35,11,5,0,3,7,140,0,0,0,15,16,24,32,25,4,3,0,3,133,0,3,7,8,14,23,41,36,9,5,10,3,152,7,0,0,9,6,19,47,35,9,3,9,0,136,3,3,3,7,6,20,52,44,27,3,14,5,183,4,8,7,5,6,11,48,39,7,0,20,5,139,0,0,0,3,0,3,13,14,3,6
LGA33100,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,9,15,3,16,13,6,3,0,0,3,3,5,29,90,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,5,3,0,0,0,0,0,0,0,4,16,3,0,0,7,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0
LGA33200,0,0,0,0,0,0,0,12,0,3,0,0,0,0,0,0,0,0,0,0,8,46,16,59,30,0,0,0,0,0,4,0,16,181,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,3,0,0,0,0,0,0,0,0,0,7,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,0,9,3,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,9,5,0,8,0,3,0,0,0,0,0,0,3,17,3,0,3,5,0,0,3,0,0,0,0,4,21,5,0,0,3,0,0,0,0,0,0,0,0,22,3,5,4,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0
LGA33220,237,269,38,10,5,7,17,785,15,29,39,60,26,62,37,4,7,0,9,105,392,292,333,801,1537,1394,3076,2400,346,93,30,109,386,10792,3,3,0,15,6,34,32,11,0,0,0,15,126,3,3,4,8,3,21,15,4,0,0,0,5,67,35,12,47,66,37,67,54,16,3,0,0,12,360,3,22,114,146,91,148,86,18,3,0,0,25,654,19,35,176,256,162,340,195,49,8,0,3,38,1279,6,4,54,163,129,298,299,49,8,3,0,14,1041,3,8,57,145,155,409,470,103,5,0,6,45,1420,5,7,20,67,93,333,402,122,16,8,5,25,1106,3,4,20,48,81,309,483,164,13,3,6,21,1164,6,0,9,26,50,192,412,165,20,0,3,22,903,5,0,7,34,27,169,386,210,23,9,5,14,894,0,3,6,16,23,46,235,171,17,3,9,11,539,0,0,6,3,12,17,81,69,11,0
LGA33360,45,67,146,46,19,11,33,472,5,8,6,17,5,19,26,21,10,8,6,56,181,182,223,426,412,302,625,1040,1438,558,199,147,433,5990,4,0,11,24,20,14,15,8,3,0,0,15,116,0,3,8,7,3,8,7,5,3,0,0,3,62,28,24,51,49,29,21,14,8,0,0,3,4,227,13,19,82,67,39,29,18,12,0,0,0,12,301,16,17,105,146,70,70,38,9,3,0,4,13,488,6,5,47,138,74,92,70,24,6,0,5,10,472,8,7,44,119,102,153,79,21,6,0,0,15,552,3,0,42,96,106,132,96,23,5,0,0,16,520,7,3,30,82,96,161,109,52,4,0,6,15,568,3,7,19,62,97,173,137,63,10,3,3,18,592,5,12,22,83,128,239,260,112,26,3,9,22,918,4,8,18,57,98,197,241,133,23,10,3,31,819,3,3,14,13,27,79,144,78,6,5
LGA33430,205,882,2005,827,292,265,197,4999,43,39,53,72,49,111,252,317,105,51,62,354,1513,960,949,1619,2162,1860,5144,15173,23239,7446,2385,2253,1804,64990,12,9,46,49,36,56,196,369,213,92,77,117,1284,11,8,28,25,18,28,64,126,60,25,23,29,436,78,62,168,103,64,107,229,292,114,37,41,60,1351,49,84,384,183,111,165,433,365,112,38,17,89,2047,47,110,505,397,197,505,889,828,204,47,53,116,3894,17,19,135,269,151,485,1199,1423,340,90,55,98,4279,25,21,129,246,173,448,1520,2075,576,150,92,107,5572,22,18,83,152,125,385,1630,2535,717,175,116,107,6065,16,8,80,140,84,353,1742,3363,1118,297,179,120,7491,11,0,40,69,64,196,1272,3303,1309,347,210,96,6928,14,6,42,57,67,161,1355,4801,2307,670,408,126,10015,9,3,18,41,35,101,701,3321,2113,661,464,86,7571,3,0,8,23,10,38,212,1393,1145,507
LGA33610,20,13,5,0,0,0,8,73,5,10,13,6,8,7,0,0,0,0,0,7,47,108,44,216,256,121,165,130,32,3,3,16,85,1172,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,5,3,7,0,0,0,0,0,0,0,17,0,0,17,11,7,0,5,0,0,0,0,3,44,0,3,28,33,17,10,8,4,0,0,0,0,117,0,0,4,12,17,13,16,0,0,0,3,5,76,0,0,9,25,14,19,19,10,0,0,0,8,104,0,3,7,21,20,25,16,6,0,0,0,6,105,4,0,20,17,20,24,22,3,0,0,0,9,124,5,0,5,16,12,20,29,3,0,0,0,11,100,7,0,10,14,14,18,46,10,0,0,0,14,140,0,8,3,14,5,10,29,14,4,0,0,8,96,4,4,0,4,5,3,14,6,3,0
LGA33620,79,65,12,3,0,0,10,249,0,8,20,19,19,25,3,0,0,0,0,40,144,133,161,415,761,617,1230,783,115,26,10,30,180,4474,0,0,3,6,6,8,8,3,0,0,0,9,45,0,0,6,3,3,9,4,6,0,0,0,5,33,6,7,27,23,27,34,14,0,3,0,0,11,149,5,14,51,49,56,63,30,7,0,0,0,10,285,7,21,77,130,104,161,81,12,0,0,0,18,604,0,5,25,88,86,181,101,15,0,0,0,14,527,3,9,28,60,87,211,160,19,4,3,0,16,595,7,3,17,59,54,188,164,20,0,4,0,4,519,3,3,13,37,50,173,202,28,0,4,0,9,525,4,5,6,33,32,111,174,29,3,4,0,12,412,0,6,12,28,21,92,168,47,3,0,3,7,382,0,0,15,6,12,40,93,34,0,0,0,4,207,0,0,0,3,9,16,51,12,0,0
LGA33800,12,9,5,0,0,0,5,68,0,0,10,10,0,0,0,0,0,0,0,4,25,66,51,254,294,121,161,74,14,5,3,9,54,1106,0,0,0,0,3,3,0,0,0,0,0,3,16,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,8,11,6,0,0,0,0,0,0,0,34,0,3,22,22,3,10,5,0,0,0,0,0,65,7,0,32,45,21,18,3,0,0,0,0,0,132,0,0,11,16,16,22,3,0,0,0,0,0,79,0,4,11,30,25,22,12,0,0,0,0,0,105,0,4,13,27,13,25,10,0,0,0,0,0,85,0,0,13,23,14,5,9,5,0,0,3,0,75,0,0,4,8,12,31,7,0,0,0,0,0,75,5,5,13,16,10,21,14,0,0,0,0,0,83,5,0,9,10,8,13,3,5,0,0,0,3,51,5,3,3,0,6,6,6,0,0,0
LGA33830,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,64,40,61,37,3,0,0,0,0,0,0,5,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,6,0,3,0,0,0,0,0,0,0,4,21,9,0,3,0,0,0,0,0,0,0,0,0,14,6,0,10,4,0,0,0,0,0,0,0,0,20,3,0,9,12,0,0,0,0,0,0,0,0,25,8,3,10,3,0,0,0,0,0,0,0,0,22,4,5,4,0,0,0,0,0,0,0,0,0,12,6,4,8,0,0,0,0,0,0,0,0,0,18,8,3,8,6,0,0,0,0,0,0,0,6,25,5,0,3,0,0,0,0,0,0,0,0,4,13,0,0,9,9,0,0,0,0,0,0,0,0,13,5,0,0,0,0,0,0,0,0,0
LGA33960,229,652,226,25,9,9,65,1507,14,22,37,33,39,68,102,29,0,0,5,121,476,465,525,1146,1339,1463,4100,7958,2526,277,65,118,621,20604,0,3,10,6,12,47,72,41,0,0,3,28,240,5,3,12,13,14,15,44,16,0,0,0,12,134,28,23,47,47,36,81,108,35,0,0,0,25,431,9,39,169,96,59,160,165,48,4,0,6,36,791,12,48,221,177,128,365,361,116,11,3,9,39,1486,13,10,82,153,109,460,580,183,13,7,0,24,1638,11,7,71,151,119,541,862,279,14,6,3,43,2107,9,4,50,91,115,558,1066,386,27,0,4,43,2359,3,7,34,60,92,541,1335,678,36,12,5,48,2851,4,3,24,44,52,401,1198,760,52,7,6,40,2586,0,3,21,46,55,470,1509,1315,101,23,15,43,3593,3,4,17,34,30,256,864,1048,126,21,10,30,2444,0,0,4,5,12,113,346,510,92,20
LGA33980,7,5,11,3,0,38,28,310,29,0,0,0,0,0,3,5,0,0,3,29,81,1977,351,261,138,57,82,83,124,69,35,398,395,3973,3,0,0,0,0,4,0,0,0,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,5,5,3,12,5,4,10,0,0,0,0,0,3,39,4,0,11,11,3,0,0,0,0,0,0,0,41,7,4,18,16,10,11,11,3,0,0,0,3,74,0,0,6,23,22,5,3,0,0,0,0,6,67,0,3,14,27,18,15,12,0,0,0,0,5,97,15,0,9,31,13,24,9,8,0,0,0,5,108,27,14,12,26,39,31,13,3,0,0,0,12,189,27,21,15,25,31,27,26,5,3,0,0,15,199,124,28,40,60,44,51,43,28,5,0,0,35,473,356,36,54,45,36,53,72,31,10,4,0,42,743,169,23,18,25,14,26,32,24,6,3
LGA34420,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,4,0,4,210,7,3,0,0,0,0,0,0,0,4,4,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,4,0,0,0,0,0,0,0,0,0,26,5,3,0,0,0,0,0,0,0,0,0,0,3,7,0,5,0,0,0,0,0,0,0,0,0,16,20,0,0,0,0,0,0,0,0,0,0,0,22,13,0,4,0,0,0,0,0,0,0,0,0,18,22,8,0,4,0,0,0,0,0,0,0,4,35,10,0,9,0,0,0,0,0,0,0,0,0,22,15,5,0,0,0,0,0,0,0,0,0,5,24,16,8,0,0,0,0,0,0,0,0,0,0,25,10,3,5,0,0,0,0,0,0,0,0,0,14,6,0,0,0,0,0,0,0,0,0
LGA34530,35,87,99,19,9,0,4,285,3,8,16,11,3,7,9,13,0,0,4,18,98,82,78,244,276,205,408,739,560,134,37,35,122,2912,0,0,0,5,3,6,9,5,0,0,0,4,38,5,0,0,5,3,6,4,0,0,0,0,4,25,7,7,16,14,4,11,13,6,4,0,0,9,83,5,13,34,17,14,23,32,9,0,0,0,0,148,0,13,52,49,31,61,55,14,3,0,0,4,280,0,3,12,27,19,32,92,36,3,3,0,4,248,5,6,11,40,22,49,82,39,3,0,3,11,270,0,5,8,15,16,39,101,43,9,0,0,10,249,3,0,10,10,14,40,102,74,7,0,0,3,270,0,0,5,8,8,39,106,73,8,0,0,6,255,0,0,9,6,8,38,121,126,29,0,3,9,348,3,0,4,9,8,22,69,134,33,4,0,0,282,0,0,0,3,0,3,18,79,22,0
LGA34570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,10,48,17,0,0,0,0,0,0,0,5,105,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,11,0,0,3,3,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0
LGA34580,53,78,31,4,0,4,13,216,5,8,5,12,8,19,14,4,0,0,0,27,117,48,97,210,346,283,707,838,213,24,16,16,131,2930,0,0,4,4,0,5,14,5,0,0,0,6,43,0,0,0,3,3,0,8,0,0,0,0,0,23,3,0,0,4,4,19,14,9,0,0,0,4,67,3,0,24,20,10,33,18,5,0,0,0,8,127,3,3,26,26,30,74,69,10,0,0,0,11,255,0,5,12,25,36,75,76,13,0,0,4,4,240,0,0,13,29,37,94,122,28,3,0,0,4,336,0,3,17,22,18,90,133,36,0,0,0,9,324,3,0,5,20,17,71,137,60,7,0,3,4,332,5,0,5,13,15,70,147,40,3,0,5,6,305,0,0,3,4,14,51,153,66,6,3,4,9,325,0,4,3,10,8,23,81,44,3,3,0,0,177,0,0,5,0,3,18,40,26,0,0
LGA34590,211,696,664,122,30,24,111,2163,45,44,56,44,36,71,164,84,14,3,3,224,789,803,851,1602,1394,1213,3415,9832,6904,989,203,178,955,28339,7,5,12,27,16,62,120,93,16,0,4,66,434,17,8,13,12,6,15,57,29,5,0,3,19,189,64,62,104,50,33,95,167,88,11,0,3,35,710,25,90,227,113,53,147,247,127,7,0,5,57,1103,37,99,357,218,142,366,571,269,36,5,3,63,2169,16,12,131,184,104,341,788,435,60,11,0,37,2113,13,21,122,287,103,361,1059,684,71,5,11,63,2803,15,16,91,155,101,384,1213,882,100,18,10,59,3049,5,20,61,96,91,361,1421,1283,139,29,15,66,3577,8,6,33,55,51,198,1174,1490,188,35,16,43,3295,5,7,33,55,44,214,1285,2107,348,79,21,67,4249,6,5,21,26,21,92,664,1582,303,82,27,39,2860,4,3,9,8,18,34,222,697,197,42
LGA34710,6,8,6,0,0,0,3,45,0,0,4,0,0,0,0,0,0,0,0,8,15,92,39,82,89,37,70,49,24,0,6,18,64,580,0,0,0,0,0,0,0,0,0,0,4,0,8,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,9,6,0,6,3,0,0,0,0,0,21,3,0,12,10,0,3,0,5,0,0,0,0,37,0,0,3,7,3,6,4,0,0,0,0,0,27,0,0,0,12,3,3,6,0,0,0,0,4,36,7,0,4,12,9,7,3,0,0,0,0,10,50,3,0,7,8,9,3,10,5,0,0,3,6,48,8,0,8,5,7,12,11,0,0,0,0,5,47,5,4,6,3,17,5,14,5,0,0,0,5,69,8,8,6,0,4,11,4,4,0,0,0,0,54,5,4,0,0,0,4,4,6,0,0
LGA34770,95,207,385,235,43,24,47,1214,14,20,32,19,15,23,40,36,20,5,5,96,321,351,349,699,773,568,1062,2049,2907,1424,299,210,512,11200,6,0,18,21,20,27,34,17,5,3,0,22,164,10,4,11,11,12,10,9,4,0,0,0,15,81,39,22,65,94,46,45,32,17,5,0,0,14,377,18,27,151,107,76,70,40,20,6,0,0,26,544,17,31,178,186,119,162,100,60,8,0,0,31,898,9,10,57,169,120,188,202,64,7,0,0,27,862,11,7,57,138,146,230,273,79,7,0,5,28,980,7,8,33,128,137,239,266,124,12,0,0,21,984,5,10,44,116,132,248,373,184,18,3,3,23,1156,3,10,20,82,85,256,373,210,20,3,8,20,1084,9,3,21,67,101,241,576,367,42,13,0,34,1477,8,4,11,31,60,147,407,388,49,12,4,29,1149,6,0,14,16,21,51,194,220,34,11
LGA34800,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,16,13,6,0,0,0,0,0,0,13,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,3,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0
LGA34830,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,4,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,4,3,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,12,0,4,3,7,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA34860,14,17,18,7,4,3,7,121,3,0,9,6,0,0,4,0,0,0,0,10,37,125,66,228,155,85,113,163,119,50,26,19,138,1285,0,0,0,4,0,0,0,0,0,0,0,3,13,0,0,0,5,0,0,0,0,0,0,0,4,9,0,3,4,19,3,6,3,0,0,0,0,3,33,0,0,5,15,7,9,4,0,0,0,0,5,44,0,0,10,18,11,6,3,0,0,0,0,5,62,4,0,10,13,5,14,8,0,0,0,0,8,69,3,0,14,20,20,18,7,7,0,0,0,3,97,0,0,3,24,16,17,16,4,0,0,0,7,95,6,3,5,25,23,26,23,9,0,0,0,4,126,8,0,7,14,16,34,24,5,0,0,0,11,126,12,5,11,20,26,38,52,21,4,4,0,14,207,12,6,5,12,12,22,52,25,8,0,0,11,174,12,0,5,6,3,9,21,11,4,0
LGA34880,36,30,7,0,0,0,12,146,5,5,14,13,5,6,8,4,0,0,0,22,81,103,114,308,357,197,267,269,89,7,0,7,113,1830,0,0,6,7,3,3,4,4,0,0,0,0,26,0,0,0,5,9,0,5,0,0,0,0,0,18,7,7,20,20,3,14,6,3,0,0,0,0,75,4,8,42,33,5,12,8,0,0,0,0,3,122,9,8,39,46,25,26,24,0,0,0,0,3,188,3,0,21,35,20,22,39,5,3,0,0,3,151,4,0,21,42,17,32,43,14,3,0,0,3,175,6,3,21,24,13,34,44,16,0,0,0,0,168,9,0,7,28,26,33,54,22,4,4,4,11,195,9,3,13,10,17,24,56,22,3,0,5,7,155,10,5,9,15,11,36,52,41,0,3,3,6,188,8,0,4,0,5,14,19,33,8,0,0,4,106,0,0,0,4,0,11,17,14,4,0
LGA35010,250,900,805,159,47,31,111,2667,39,53,63,71,53,116,205,96,16,5,24,272,1022,915,979,1889,2231,2139,4821,13394,8942,1326,401,340,1175,38556,4,4,23,20,16,40,101,123,17,9,6,67,436,14,0,21,29,16,24,48,48,9,0,4,19,227,85,52,159,88,56,133,168,98,17,5,7,53,923,38,98,380,175,105,248,334,175,21,4,0,74,1658,30,100,552,354,254,637,774,337,43,6,14,72,3178,18,12,149,267,205,614,1197,642,51,10,12,63,3222,25,27,150,300,236,610,1617,967,77,18,19,88,4132,10,12,97,154,198,571,1733,1242,134,30,17,84,4295,8,11,65,117,132,521,1890,1858,216,51,22,73,4960,9,9,46,63,83,358,1632,2053,308,42,20,63,4676,6,3,50,65,85,399,1688,3145,548,115,59,60,6212,0,4,22,27,31,244,948,2305,560,116,67,53,4374,0,0,7,17,6,96,290,1077,327,108
LGA35250,0,0,0,0,0,0,0,11,3,0,5,0,0,0,0,0,0,0,0,0,11,105,32,44,14,3,0,0,0,0,0,0,12,215,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,4,3,8,3,0,0,0,0,0,0,0,0,16,0,0,6,0,0,0,0,0,0,0,0,0,8,3,0,9,0,0,0,0,0,0,0,0,0,22,0,5,7,0,0,0,0,0,0,0,0,0,15,4,6,10,5,0,0,0,0,0,0,0,0,18,0,3,8,0,0,0,0,0,0,0,0,0,15,3,3,6,7,0,0,3,0,0,0,0,4,23,4,0,3,3,0,0,0,0,0,0,0,0,17,6,0,3,4,0,0,0,0,0,0,0,6,24,6,0,5,0,0,0,0,0,0,0,0,4,11,0,0,4,0,0,0,0,0,0,0
LGA35300,23,23,23,34,11,0,13,208,6,7,6,5,5,12,5,3,4,0,0,37,96,289,145,245,171,169,257,316,433,322,124,61,213,2742,0,0,0,8,0,5,3,4,0,0,0,9,24,0,0,0,3,0,0,0,0,0,0,0,0,13,6,3,18,18,0,0,4,0,0,0,0,3,59,0,8,31,8,6,3,0,7,0,0,0,0,66,6,5,32,22,11,9,11,4,0,0,0,7,95,0,0,16,19,15,7,12,8,8,0,0,0,83,6,4,11,33,23,16,18,7,3,0,0,7,118,0,4,0,18,30,28,15,14,4,0,0,0,120,10,10,14,21,29,32,38,18,10,0,0,7,175,13,4,12,21,16,33,44,29,16,0,0,12,200,28,5,18,30,31,51,63,84,35,4,7,14,361,29,7,12,25,31,53,81,107,50,20,6,16,435,28,0,11,9,7,12,29,71,41,7
LGA35600,6,0,0,0,0,0,7,41,0,0,7,5,0,0,0,0,0,0,0,6,18,84,23,97,135,49,37,10,5,0,4,3,39,489,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,5,0,0,0,0,0,0,14,0,4,14,8,8,0,0,0,0,0,0,0,31,0,0,6,10,3,4,0,0,0,0,0,0,34,0,0,4,6,5,4,0,0,0,0,0,0,27,0,0,4,13,10,10,0,0,0,0,0,4,45,6,0,4,18,8,5,0,0,0,0,0,6,44,8,0,5,3,10,4,0,0,0,0,3,4,38,4,0,0,7,6,4,0,0,0,0,0,7,37,18,6,5,13,6,4,4,0,0,0,0,4,52,4,0,0,10,6,3,7,0,0,0,0,4,42,6,0,0,0,0,0,0,0,0,0
LGA35670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,55,15,0,5,0,0,0,0,0,0,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,6,10,5,6,0,0,0,0,0,0,0,0,0,21,0,5,9,0,0,0,0,0,0,0,0,0,8,5,0,14,8,0,0,0,0,0,0,0,0,26,4,6,9,8,0,0,0,0,0,0,0,0,24,0,6,11,9,0,0,0,0,0,0,0,0,27,0,3,16,8,0,0,0,0,0,0,0,0,26,0,0,7,11,0,0,0,0,0,0,0,0,19,6,0,9,3,0,0,0,0,0,0,0,0,21,0,3,5,3,0,0,0,0,0,0,0,0,19,0,0,3,9,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0
LGA35740,27,94,173,68,24,16,19,468,5,6,0,11,7,14,16,28,9,0,30,49,165,141,108,191,272,227,498,1391,1641,509,170,289,203,5645,0,0,0,3,0,3,7,7,8,6,10,13,67,0,0,0,0,0,0,6,4,0,0,0,0,19,10,0,13,3,5,10,25,29,9,5,0,5,124,6,8,50,30,13,16,32,30,10,3,5,7,203,6,9,53,29,37,63,56,75,19,5,11,7,372,3,0,17,28,28,47,93,113,31,11,10,11,388,0,0,14,34,27,35,136,142,63,19,12,3,481,0,4,15,12,17,33,107,162,83,12,13,10,469,0,0,8,14,22,26,112,202,98,29,25,12,552,0,4,3,8,8,18,83,173,102,36,29,6,469,0,0,0,0,8,9,86,257,141,61,57,12,642,0,0,4,4,3,17,29,123,110,48,32,5,374,0,0,0,0,0,0,16,55,58,43
LGA35760,0,4,0,0,0,0,6,71,9,9,13,10,0,0,0,0,0,0,0,12,48,113,96,266,256,64,42,7,7,5,0,8,76,945,0,0,0,0,3,4,0,0,0,0,0,3,13,0,0,0,0,4,0,0,0,0,0,0,7,14,5,3,11,8,4,3,0,0,0,0,0,0,30,5,4,24,11,5,8,0,0,0,0,0,0,56,3,3,37,24,14,14,0,0,0,0,0,6,104,0,0,16,29,13,6,4,0,0,0,0,7,77,4,0,14,36,18,18,0,0,0,0,0,3,100,0,0,19,24,24,15,11,0,0,0,0,8,103,10,0,11,29,13,21,7,0,0,0,0,3,100,6,0,6,15,10,20,9,0,0,0,0,3,71,14,8,16,24,10,17,4,0,0,0,0,12,104,5,5,13,12,9,7,0,0,0,0,0,5,63,0,0,4,0,0,0,4,0,0,0
LGA35780,0,0,0,0,0,0,0,12,20,3,0,0,0,0,0,0,0,0,0,0,25,298,101,82,12,4,0,0,3,0,0,10,23,537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,7,3,6,0,0,0,0,0,0,0,0,0,16,4,8,15,5,0,0,0,0,0,0,0,0,32,3,7,24,4,0,0,0,0,0,0,0,0,34,4,4,24,14,0,0,0,0,0,0,0,4,47,4,8,32,6,3,0,0,0,0,0,0,0,58,8,10,33,8,5,0,0,0,0,0,0,4,65,4,4,29,16,0,0,0,0,0,0,0,4,66,6,8,38,17,4,0,0,0,0,0,0,0,79,9,9,25,13,3,0,0,0,0,0,0,6,68,12,9,12,25,0,0,0,0,0,0,0,3,66,3,5,6,5,0,0,0,0,0,0
LGA35790,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,3,84,58,143,51,5,3,0,0,0,0,0,14,355,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,10,8,7,0,0,0,0,0,0,0,0,0,24,0,0,4,0,0,0,0,0,0,0,0,0,8,3,8,8,13,0,0,0,0,0,0,0,0,32,6,5,13,4,0,0,0,0,0,0,0,0,20,6,8,15,0,0,0,0,0,0,0,0,0,33,4,9,25,10,0,0,0,0,0,0,0,4,56,4,10,23,10,3,0,0,0,0,0,0,4,48,3,4,17,19,0,0,0,0,0,0,0,0,44,5,3,26,17,0,0,0,0,0,0,0,0,58,7,4,18,17,0,0,0,0,0,0,0,5,48,5,0,5,8,0,0,0,0,0,0
LGA35800,0,0,0,0,0,0,0,24,0,4,0,0,0,0,0,0,0,0,0,0,4,52,47,69,8,0,0,0,0,0,0,0,31,217,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,9,6,5,0,0,0,0,0,0,0,0,19,0,4,10,3,0,0,0,0,0,0,0,0,22,0,0,8,6,0,0,0,0,0,0,0,0,16,3,3,4,9,0,0,0,0,0,0,0,0,12,0,0,8,4,0,0,0,0,0,0,0,0,14,4,0,7,0,0,0,0,0,0,0,0,0,20,0,0,3,4,0,0,0,0,0,0,0,0,8,0,3,3,0,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA36070,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,71,9,43,27,0,0,0,0,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,5,0,0,0,0,0,0,0,0,0,22,0,3,4,0,0,0,0,0,0,0,0,0,13,11,7,10,3,0,0,0,0,0,0,0,0,22,8,6,7,0,0,0,0,0,0,0,0,0,17,3,4,5,6,0,0,0,0,0,0,0,6,24,3,6,9,3,0,0,0,0,0,0,0,0,14,8,7,6,0,0,0,0,0,0,0,0,0,18,0,0,4,4,0,0,0,0,0,0,0,0,14,5,0,6,0,0,0,0,0,0,0,0,3,19,0,0,5,0,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0
LGA36150,0,0,0,0,0,0,0,15,6,0,0,0,0,0,0,0,0,0,0,3,9,16,12,61,0,0,0,0,0,0,0,0,13,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0,11,0,0,10,0,0,0,0,0,0,0,0,0,13,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,3,7,7,0,4,0,0,0,0,0,0,0,0,0,9,4,0,6,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA36250,33,128,313,145,39,31,27,843,19,12,18,22,14,12,29,46,8,0,7,80,268,369,372,554,796,542,707,2075,4076,1429,298,272,376,11864,5,0,8,5,3,16,10,35,14,0,3,16,126,0,5,8,15,3,0,5,20,5,0,8,3,74,45,30,49,44,23,39,20,33,14,0,0,19,316,11,30,154,81,44,37,35,48,17,0,0,29,488,16,39,199,138,91,121,109,137,42,10,4,23,929,3,7,51,108,60,110,113,191,50,14,3,23,739,10,9,49,101,56,132,186,331,89,4,6,22,999,6,10,36,55,48,98,157,392,130,14,8,23,975,4,3,24,47,38,91,178,535,226,40,7,19,1221,3,0,11,15,24,47,166,504,268,38,18,27,1113,6,0,8,13,14,38,155,769,526,72,34,35,1666,0,0,4,4,12,24,83,515,517,82,42,20,1325,0,0,4,3,9,8,35,189,301,67
LGA36300,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,20,0,19,6,11,0,3,0,0,0,0,19,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,6,4,0,0,0,0,0,0,4,14,0,0,0,3,0,0,0,0,0,0,0,0,7,5,0,0,0,4,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA36370,130,190,121,15,5,9,34,713,12,31,36,32,24,26,27,15,0,0,4,63,279,315,386,823,1040,1022,1738,2024,899,117,36,57,391,8842,0,4,7,12,14,13,18,9,0,0,0,13,99,7,7,11,13,9,8,8,0,0,0,0,5,71,45,26,50,38,40,42,36,17,0,0,4,11,309,17,28,112,88,56,76,49,15,0,0,4,24,470,20,46,159,147,129,171,100,27,4,0,3,28,829,8,14,54,98,122,207,165,36,0,5,0,26,737,11,9,48,120,96,233,260,57,8,0,0,25,866,3,0,33,74,129,218,294,79,3,3,0,30,867,4,6,16,53,106,249,356,111,4,6,0,26,944,5,3,18,53,59,165,339,114,12,0,0,19,798,4,3,24,33,69,199,493,201,17,5,8,27,1078,5,0,11,18,42,114,312,199,27,3,3,17,750,0,0,3,13,10,36,121,131,19,4
LGA36510,31,59,52,9,3,3,8,219,3,0,13,9,9,11,3,6,3,0,0,25,81,64,82,204,324,301,489,705,467,106,22,44,125,2933,0,0,0,0,4,5,3,7,0,0,0,4,30,0,0,3,0,4,0,3,4,0,0,0,0,15,3,0,3,9,15,17,10,8,0,0,0,0,69,0,4,16,13,12,19,24,11,0,0,0,6,102,0,8,40,50,41,64,62,31,11,3,5,8,315,4,0,8,38,34,70,97,44,10,5,0,5,311,8,5,20,32,30,67,100,62,14,5,0,6,344,0,0,8,19,33,58,96,57,9,3,5,10,298,4,0,12,15,20,44,113,79,19,3,3,12,322,7,0,3,7,19,46,95,86,19,5,3,8,298,7,0,9,7,6,39,119,105,38,14,0,12,360,8,4,12,8,11,20,57,70,33,9,3,3,239,0,0,3,0,6,9,27,23,15,3
LGA36580,33,34,6,3,0,0,3,105,0,0,3,3,5,7,7,5,0,0,0,7,42,30,37,107,243,205,358,479,109,14,5,18,77,1687,0,0,0,0,0,4,11,5,0,0,0,4,24,0,0,0,3,0,5,6,0,0,0,0,0,16,0,0,3,7,10,9,6,0,0,0,0,0,38,0,0,4,17,10,16,18,0,0,0,0,0,80,0,0,13,48,30,48,43,7,0,0,0,0,202,0,0,7,22,30,42,68,5,0,0,0,4,174,0,0,3,27,21,66,88,11,0,0,0,6,239,3,0,11,10,28,46,107,18,0,0,0,10,233,4,0,0,21,28,61,105,21,0,0,0,0,241,6,0,3,10,6,33,88,27,4,0,0,6,178,3,0,7,8,10,40,114,39,7,0,4,5,243,0,0,5,3,5,18,72,18,7,0,0,0,130,0,3,0,0,0,3,30,12,0,0
LGA36630,44,35,10,0,0,3,0,201,6,9,12,18,19,10,7,0,0,0,0,22,94,124,121,361,795,488,593,325,93,13,6,23,127,3064,0,0,4,11,7,7,0,0,0,0,0,4,38,4,0,0,9,5,0,0,0,0,0,0,3,20,6,7,18,25,14,16,3,0,0,0,0,6,94,0,9,38,66,31,22,4,0,0,0,0,5,181,9,18,62,110,78,67,13,0,0,0,0,13,374,0,4,19,86,75,90,34,0,0,0,5,0,316,6,4,31,96,62,121,52,7,0,0,4,6,376,9,8,22,63,80,97,47,6,0,0,0,8,332,8,3,19,42,64,104,63,9,4,0,0,12,324,6,0,11,28,53,91,69,12,0,0,0,5,285,10,4,13,22,39,92,72,10,0,6,3,7,278,10,4,7,23,23,53,63,16,0,0,6,4,210,8,3,5,3,4,21,33,17,0,0
LGA36660,53,39,3,0,0,0,6,204,8,0,23,23,12,17,5,0,0,0,6,20,113,101,96,522,851,496,801,391,44,4,0,18,120,3443,0,0,3,4,3,20,8,3,0,0,0,4,43,3,5,3,6,0,8,0,0,0,0,0,0,36,7,7,14,30,25,27,9,0,0,0,0,4,119,3,5,45,51,21,33,9,0,0,0,0,10,183,4,5,77,113,74,92,25,5,0,0,0,10,408,8,0,26,94,67,116,41,5,0,0,0,7,364,0,4,32,72,75,164,63,8,0,0,0,8,431,0,3,22,59,63,124,64,12,0,0,0,3,357,3,4,13,51,52,149,73,15,0,0,0,7,377,6,0,19,28,30,98,91,12,0,0,0,12,300,4,4,12,26,35,114,111,24,0,0,4,10,328,6,3,6,10,14,45,56,12,0,0,0,4,170,0,0,0,3,6,11,22,10,0,3
LGA36720,130,529,913,277,92,46,78,2255,35,20,45,40,21,56,113,116,42,12,21,172,693,740,656,1224,1386,1247,2933,7316,9045,2294,607,461,846,28763,4,5,20,15,14,20,73,81,42,25,16,39,356,10,5,12,6,4,12,28,38,15,0,5,13,160,47,50,116,58,35,58,112,109,40,14,9,41,689,18,66,292,128,57,110,205,150,31,13,5,52,1136,23,81,347,224,154,306,470,310,87,25,12,73,2113,7,19,97,164,127,305,670,541,151,17,11,42,2160,10,31,86,164,130,296,822,857,222,48,25,52,2742,4,17,55,97,103,225,807,956,295,60,39,63,2725,5,6,52,79,69,214,872,1361,514,92,66,57,3393,6,9,30,47,36,135,699,1349,584,125,54,56,3131,5,11,23,36,52,100,678,1797,984,225,99,41,4050,3,0,14,33,31,58,361,1195,875,222,114,54,2957,4,0,6,10,9,18,119,511,508,141
LGA36820,47,43,8,4,0,0,15,188,7,5,16,23,4,9,10,0,5,0,0,20,109,93,106,323,423,312,495,348,98,14,4,18,123,2357,0,0,5,4,0,5,0,0,0,0,0,8,27,0,0,7,8,8,6,5,0,0,0,0,0,25,8,6,14,19,5,7,12,4,0,0,0,6,93,0,6,24,40,25,22,13,0,0,0,0,11,140,8,16,49,72,50,65,41,3,0,0,0,13,314,0,0,20,34,35,58,52,12,0,0,0,4,207,0,0,22,39,52,64,69,11,0,0,0,7,266,0,0,17,26,27,64,54,6,0,0,5,15,214,0,0,15,24,25,49,82,30,0,0,3,11,245,3,0,3,11,22,45,59,22,0,0,4,3,177,0,0,6,15,19,45,81,24,3,0,0,6,206,5,3,3,7,8,27,46,29,5,0,0,7,143,4,0,0,0,0,8,13,15,0,0
LGA36910,250,332,115,33,8,7,44,1126,14,21,51,93,29,40,44,20,0,0,4,103,418,473,453,1454,2899,1973,3787,3235,1185,159,44,89,596,16348,3,4,15,14,23,33,38,20,4,5,0,18,178,4,3,8,8,18,14,22,11,0,0,0,11,105,36,20,66,60,40,68,66,16,0,0,0,20,400,12,53,150,122,75,150,102,25,5,0,3,31,726,23,56,251,263,202,324,232,69,4,0,0,45,1473,6,10,73,219,208,373,373,92,12,4,0,21,1408,18,25,88,171,219,451,556,141,14,0,0,39,1718,6,9,64,146,208,456,615,174,11,0,5,39,1730,3,9,64,134,156,459,786,291,26,7,5,34,1978,5,12,32,86,131,309,665,337,32,8,9,41,1650,12,10,43,73,100,359,921,565,72,11,12,43,2218,4,4,31,46,48,188,614,474,79,9,3,25,1527,9,3,10,15,18,64,204,226,43,8
LGA36950,18,10,4,0,0,0,16,110,5,5,11,3,0,0,0,0,0,0,0,0,21,143,30,97,69,28,70,37,20,7,4,4,71,584,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,12,0,0,8,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,12,0,0,0,5,0,3,0,0,0,0,0,0,18,4,0,5,7,9,7,3,0,0,0,0,0,29,0,0,7,10,7,0,5,0,0,0,0,0,30,3,0,6,0,0,5,6,5,4,0,0,0,29,9,0,4,0,0,3,6,6,7,0,0,4,46,18,0,3,6,3,12,14,5,0,0,0,9,86,25,0,8,7,0,10,12,0,0,0,0,11,82,17,0,0,6,0,7,0,5,0,0
LGA36960,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,507,165,102,21,9,6,0,0,0,0,0,49,849,0,0,3,4,0,0,0,0,0,0,0,3,9,7,0,7,6,0,0,0,0,0,0,0,0,12,17,8,18,11,0,0,0,0,0,0,0,0,54,9,8,14,7,0,0,0,0,0,0,0,6,45,17,5,26,14,0,0,0,0,0,0,0,6,65,10,11,35,9,0,0,0,0,0,0,0,3,72,18,6,24,15,0,0,0,0,0,0,0,6,69,19,10,35,37,0,0,0,0,0,0,0,6,103,15,9,29,24,0,0,0,0,0,0,0,5,89,7,13,27,24,0,0,0,0,0,0,0,3,62,15,9,32,33,0,0,0,0,0,0,0,4,97,14,4,16,21,0,0,0,0,0,0,0,5,68,5,0,5,8,0,0,0,0,0,0
LGA37010,263,545,717,158,36,23,113,2454,29,23,52,36,42,56,62,56,14,9,18,141,537,592,652,1345,1830,2081,3181,5663,5187,949,232,309,775,22795,11,3,21,25,32,47,86,58,16,3,0,21,328,11,7,19,25,22,25,34,25,9,0,0,8,199,69,56,103,95,62,94,115,34,7,0,0,24,677,26,53,228,156,82,174,117,51,5,3,11,30,939,21,56,294,264,254,336,269,97,8,5,5,44,1654,19,26,108,194,203,402,468,160,16,3,14,36,1637,3,22,104,216,223,483,636,228,22,4,14,43,2002,11,11,57,149,215,551,821,321,30,8,12,30,2213,12,7,53,97,170,545,961,518,37,12,10,52,2477,0,6,29,74,97,490,881,632,67,12,16,39,2346,3,4,40,67,95,620,1252,1011,133,25,23,48,3320,0,0,27,38,36,324,751,953,153,41,25,27,2391,0,6,4,14,16,161,307,510,104,32
LGA37300,0,9,4,8,4,3,6,68,0,0,0,0,0,0,0,0,0,5,0,3,12,152,16,21,19,20,34,41,44,84,47,38,69,578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,4,0,0,3,0,4,3,20,7,0,0,0,0,0,0,0,4,0,0,3,21,5,0,0,0,0,4,4,0,0,4,8,3,37,16,0,0,0,0,6,10,9,13,13,26,11,102,19,0,5,3,4,6,11,9,17,20,39,9,131,18,0,0,3,0,0,8,3,9,18
LGA37310,32,53,25,6,0,4,17,219,0,3,14,15,7,7,14,5,0,0,0,30,91,160,116,417,404,283,460,521,312,70,23,27,251,3053,0,0,6,6,13,12,0,0,0,0,0,4,48,0,0,6,7,7,6,0,0,0,0,0,0,29,4,6,16,19,18,6,5,0,0,0,0,3,83,3,5,29,54,19,28,8,3,0,0,0,4,159,5,7,83,85,62,42,21,7,0,0,0,15,308,3,0,27,72,51,62,28,6,5,0,0,10,264,6,4,32,84,69,82,37,5,0,5,0,11,329,7,7,25,77,70,85,37,10,0,0,0,17,329,9,0,22,79,68,97,56,16,3,0,3,16,367,7,3,25,38,49,80,68,14,5,0,0,13,304,8,10,21,47,77,114,104,14,0,0,0,17,416,10,15,24,45,41,84,116,17,3,0,5,23,377,9,3,14,7,12,25,34,14,0,0
LGA37340,36,73,80,33,5,12,21,317,8,4,14,15,7,8,17,14,4,6,12,40,147,148,124,321,387,354,506,867,694,243,72,149,280,4148,0,0,4,11,3,12,3,0,0,0,0,6,46,6,0,4,4,8,3,7,0,0,0,0,0,29,14,3,29,21,15,7,15,8,0,0,0,4,121,5,10,39,51,23,28,19,10,0,0,3,4,193,3,15,49,82,44,55,29,26,4,4,0,4,320,3,0,21,38,25,83,68,34,6,0,0,9,292,0,4,20,46,52,93,74,33,8,0,7,15,354,0,3,22,41,33,84,102,64,4,0,8,20,381,3,3,9,31,34,87,109,64,15,4,4,14,376,8,4,17,18,32,62,97,92,24,4,8,12,366,13,4,5,15,29,79,148,122,30,4,5,9,461,6,8,10,8,21,44,92,84,28,15,10,17,344,5,0,4,0,4,18,46,68,20,4
LGA37400,0,0,0,0,0,0,9,15,0,0,3,4,0,0,0,0,0,0,0,4,14,34,10,37,25,6,3,0,0,0,0,0,19,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,3,3,6,0,0,0,0,0,0,0,0,24,5,0,5,5,0,0,0,0,0,0,0,0,11,0,0,0,0,3,0,0,0,0,0,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,8,4,0,6,3,0,0,0,0,0,0,0,0,12,0,0,3,3,4,0,0,0,0,0,0,0,19,0,0,3,0,0,0,0,0,0,0,0,0,5,3,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0
LGA37550,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,46,32,92,22,0,5,0,0,0,0,0,8,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,9,5,11,0,0,0,0,0,0,0,0,0,22,0,4,4,0,0,0,0,0,0,0,0,0,9,0,9,20,0,0,0,0,0,0,0,0,0,24,0,3,14,3,0,0,0,0,0,0,0,0,20,4,6,18,0,0,0,0,0,0,0,0,0,25,5,0,12,5,0,0,0,0,0,0,0,0,23,5,0,9,3,0,0,0,0,0,0,0,0,16,6,0,7,5,0,0,0,0,0,0,0,0,23,0,0,5,3,0,0,0,0,0,0,0,0,10,3,0,4,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0
LGA37570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,13,19,5,0,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,0,3,0,0,0,0,0,0,0,0,0,0,9,4,3,0,0,0,0,0,0,0,0,0,0,14,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,11,0,0,5,0,0,0,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA37600,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,47,38,156,98,5,0,0,0,0,0,0,6,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,6,3,0,0,0,0,0,0,0,0,18,0,4,0,0,0,0,0,0,0,0,0,0,8,0,0,6,3,0,0,0,0,0,0,0,0,20,0,0,12,3,0,0,0,0,0,0,0,0,20,3,0,17,12,0,0,0,0,0,0,0,0,31,0,0,18,19,0,0,0,0,0,0,0,0,39,0,8,17,17,0,0,0,0,0,0,0,0,41,4,4,13,22,0,0,0,0,0,0,0,0,43,4,0,18,37,0,0,0,0,0,0,0,0,63,4,0,13,14,0,0,0,0,0,0,0,0,32,6,0,0,10,0,0,0,0,0,0
LGA39499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA39799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA40070,27,56,93,42,10,25,6,294,0,11,8,19,8,24,39,36,15,8,22,27,225,106,245,251,348,252,514,933,1356,540,158,210,170,5068,3,0,5,34,14,21,78,167,152,59,31,18,578,7,0,7,5,3,3,17,29,22,3,3,0,112,32,26,30,26,12,14,37,40,22,10,10,10,265,9,39,66,41,7,14,22,25,10,3,6,9,243,4,32,52,48,8,23,37,37,18,3,4,8,273,4,6,20,33,9,26,41,59,26,11,4,16,247,0,5,11,17,20,29,53,82,19,5,0,3,246,3,3,9,9,15,33,88,77,37,12,12,6,308,0,0,3,14,13,36,102,124,54,12,15,6,386,7,0,0,13,9,15,88,128,52,17,8,10,347,3,0,7,16,8,30,109,217,89,26,21,3,525,0,0,0,3,0,16,64,221,123,23,28,9,486,0,0,0,4,0,3,25,84,61,13
LGA40120,15,29,23,5,4,3,0,109,3,0,0,8,0,3,4,4,0,0,0,5,30,37,30,132,150,129,258,363,228,75,22,27,63,1514,0,0,0,0,0,3,4,5,0,0,0,0,14,0,0,0,3,0,3,3,0,0,0,0,0,9,0,0,3,4,0,6,5,4,0,0,3,0,37,3,3,7,14,3,4,14,0,0,0,0,4,60,3,4,22,5,3,16,30,11,3,0,0,4,101,0,3,4,15,7,11,32,15,5,0,0,3,95,3,0,8,8,6,16,38,19,3,0,0,6,108,0,0,7,3,16,18,41,18,8,0,0,5,123,0,0,11,15,11,22,56,40,6,0,0,0,160,0,3,8,6,11,12,49,46,7,3,0,6,159,0,0,4,0,0,12,51,62,12,3,3,3,149,0,0,0,5,10,6,24,49,15,7,0,6,125,0,0,0,0,4,8,12,19,13,5
LGA40150,5,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,6,15,18,37,56,45,69,41,19,3,0,6,17,324,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,3,0,0,0,0,6,17,0,4,3,5,0,3,0,0,0,0,0,0,13,4,0,7,5,10,0,4,0,0,0,0,0,29,0,0,5,5,3,5,8,3,0,0,0,0,31,3,0,0,3,11,7,6,0,0,0,0,0,22,0,0,0,3,5,10,8,5,0,0,0,0,36,0,0,0,0,6,8,9,8,0,0,0,4,38,0,0,5,0,8,11,7,0,0,5,0,5,39,0,0,0,0,4,11,12,4,0,0,0,0,26,0,0,0,3,0,7,7,4,4,0,0,0,24,0,0,0,0,4,0,0,5,0,0
LGA40220,35,23,3,0,0,0,7,116,5,0,9,15,3,6,3,3,0,0,0,8,51,54,88,168,369,309,475,312,70,4,7,15,64,1934,0,0,0,0,6,3,5,4,0,0,0,4,19,0,0,0,0,3,3,4,0,0,0,0,0,9,10,4,4,9,6,19,15,3,0,0,0,0,74,0,12,33,28,8,30,10,7,0,0,0,3,135,5,14,31,49,44,64,29,6,0,0,0,0,236,0,0,8,43,33,61,61,10,0,0,0,3,230,0,3,15,36,39,85,83,10,0,0,0,6,267,3,0,9,12,16,50,86,13,5,0,0,0,192,5,0,7,9,12,53,89,9,0,0,0,5,189,0,5,9,9,9,33,61,22,0,0,0,9,169,0,0,7,9,5,34,62,23,4,0,0,4,158,0,0,3,6,10,18,45,16,0,0,0,5,102,0,0,0,0,3,7,20,8,0,0
LGA40250,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,9,211,22,43,4,4,0,0,0,0,0,0,47,331,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,20,0,4,0,0,0,0,0,0,0,0,0,0,5,12,22,0,0,0,0,0,0,0,0,0,5,32,6,9,0,0,0,0,0,0,0,0,0,0,13,6,20,4,0,0,0,0,0,0,0,0,0,32,10,29,3,0,0,0,0,0,0,0,0,0,47,7,19,0,0,0,0,0,0,0,0,0,10,32,9,19,0,0,0,0,0,0,0,0,0,4,38,9,17,0,0,0,0,0,0,0,0,0,9,33,3,14,0,0,0,0,0,0,0,0,0,9,22,3,0,0,0,0,0,0,0,0,0
LGA40310,29,27,7,0,0,0,4,98,0,5,3,0,4,5,4,0,0,0,0,8,23,50,75,168,287,210,409,263,60,6,3,21,56,1615,0,0,0,4,0,6,6,0,0,0,0,4,17,0,0,0,5,0,3,0,0,0,0,0,0,9,3,5,11,9,10,7,3,0,0,0,0,8,48,0,7,19,15,19,22,13,4,0,0,0,5,93,9,9,25,27,28,34,8,3,0,0,0,14,152,0,0,7,20,24,33,44,7,0,0,0,4,142,0,0,7,36,17,43,41,12,3,0,0,0,167,6,0,6,19,29,42,43,12,0,0,0,5,164,0,0,9,10,21,48,75,9,0,0,0,9,176,4,3,5,3,7,36,61,12,0,0,0,3,141,4,0,3,13,29,37,69,30,0,0,5,0,190,0,0,0,8,8,20,67,15,3,0,0,0,132,0,0,3,0,0,4,28,13,0,0
LGA40430,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,10,10,15,58,53,19,11,0,3,3,0,5,15,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,12,0,0,3,0,3,0,0,0,0,0,0,0,16,3,5,7,16,4,5,5,0,0,0,0,0,35,0,0,0,8,6,0,0,0,0,0,0,0,25,0,0,3,3,4,6,0,0,0,0,0,0,16,0,0,0,5,4,4,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,8,0,5,3,0,0,0,0,0,0,0,0,0,17,0,0,0,5,4,0,3,0,0,0,3,0,14,0,0,0,0,3,0,3,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0
LGA40520,4,3,0,0,0,0,5,58,3,9,16,15,0,0,0,0,0,0,0,10,55,98,110,359,444,84,69,40,7,3,0,10,60,1288,0,0,0,9,0,0,0,0,0,0,0,0,15,0,4,4,3,4,0,0,0,0,0,0,0,21,0,12,16,26,3,5,0,0,0,0,0,0,71,3,26,29,32,13,9,4,0,0,0,0,9,116,5,15,39,45,13,12,0,0,0,0,0,9,136,0,3,16,46,15,18,3,0,0,0,0,3,113,0,5,24,55,23,14,0,5,0,0,3,0,135,3,0,15,47,34,18,4,0,0,0,0,8,126,4,0,17,41,18,25,13,0,0,3,0,5,129,3,0,6,23,11,16,14,0,0,0,5,0,76,0,0,11,27,15,18,12,6,0,0,0,4,93,0,0,8,20,10,11,8,3,0,0,0,4,62,0,0,5,5,0,6,3,4,0,0
LGA40700,31,67,45,36,21,15,13,240,0,4,5,0,0,6,16,6,4,0,4,21,63,47,105,127,236,253,601,857,592,302,143,132,111,3502,3,0,4,9,4,9,43,21,19,9,6,11,125,4,4,0,8,0,0,13,3,4,0,0,0,38,5,14,11,11,6,20,26,17,8,0,0,3,120,0,9,39,12,7,23,27,11,8,0,0,5,150,8,20,35,27,18,44,55,20,5,4,5,8,230,0,6,11,12,15,34,71,34,18,3,3,0,209,0,0,7,14,19,44,66,34,13,0,3,8,215,0,0,11,5,15,48,96,53,16,7,4,0,265,0,0,4,5,14,72,168,76,24,11,8,8,393,5,0,4,14,4,42,93,83,34,13,5,0,300,5,0,4,11,5,49,144,134,53,30,6,14,447,0,0,7,9,9,17,87,90,71,21,14,7,335,0,0,3,4,4,4,23,43,47,11
LGA40910,56,81,47,15,0,3,13,265,0,5,9,9,10,14,22,14,0,0,0,29,120,138,363,379,380,329,859,1315,619,109,30,27,183,4722,0,11,18,10,4,16,30,28,10,5,4,21,151,5,3,9,6,0,8,5,5,4,0,0,4,41,16,22,39,22,9,24,27,23,0,0,0,8,197,8,54,75,28,16,29,41,15,6,0,0,16,290,13,52,114,52,32,55,64,32,10,0,0,17,443,4,3,44,32,19,62,87,40,10,0,4,7,312,0,7,30,36,32,81,131,58,3,0,3,13,406,0,0,28,24,31,95,174,88,7,4,0,21,460,0,3,8,25,24,85,214,119,15,4,0,12,516,4,0,6,19,16,63,165,102,11,3,3,6,397,0,0,11,15,8,65,197,201,34,11,0,9,552,0,0,4,6,7,31,128,180,28,3,6,10,406,0,0,0,0,0,8,41,86,24,5
LGA41010,8,0,3,0,0,0,4,41,0,0,0,0,0,0,0,0,0,0,0,4,8,90,39,111,84,33,65,30,15,4,0,4,36,493,0,0,0,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,5,4,0,4,3,5,0,3,0,0,0,0,0,0,15,0,3,3,4,4,3,7,0,0,0,0,3,26,10,5,5,4,0,0,0,0,0,0,0,3,30,0,5,3,11,4,3,4,0,0,0,0,6,32,6,4,3,0,3,8,3,0,0,0,0,6,43,0,3,9,9,0,4,4,0,0,0,0,4,40,0,0,9,8,4,12,4,3,0,0,0,10,47,0,3,9,4,4,8,5,0,0,0,0,8,45,6,0,3,3,4,12,14,0,0,0,0,13,59,0,0,0,3,7,16,7,0,0,0,6,10,53,0,0,0,0,0,7,5,0,0,0
LGA41060,133,237,154,28,20,15,32,829,49,82,43,28,18,28,32,13,6,3,10,93,406,696,1316,1359,1340,1018,2094,2733,1493,281,127,139,524,13123,13,12,25,14,12,35,40,58,9,8,5,21,256,24,10,26,14,4,21,17,11,0,5,0,8,127,142,93,128,38,22,48,59,35,3,7,0,40,621,25,221,324,93,44,90,92,38,4,0,0,39,974,20,235,419,183,62,145,180,68,16,3,4,37,1375,15,27,120,130,69,192,220,118,9,4,0,31,938,10,47,105,193,111,221,318,151,12,3,8,31,1213,3,18,69,99,103,275,364,184,39,15,10,26,1196,9,14,48,78,81,270,485,304,32,8,3,26,1364,0,0,30,48,40,192,394,312,39,19,3,24,1095,3,0,21,31,47,163,470,562,93,24,17,21,1454,0,0,13,22,22,83,281,464,142,23,22,18,1104,5,0,5,0,15,24,117,207,77,30
LGA41140,4,3,0,0,0,0,0,37,0,0,4,0,3,0,0,0,0,0,0,8,19,49,53,118,186,93,126,71,13,3,6,13,47,771,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,8,6,3,0,0,0,0,0,0,0,21,3,8,10,15,8,7,0,0,0,0,0,0,53,0,7,23,22,8,18,0,0,0,0,0,0,83,0,3,14,15,13,14,7,0,0,0,0,3,66,0,0,11,12,14,26,8,0,0,0,0,8,85,0,0,3,15,10,13,8,0,0,0,0,0,64,4,0,4,7,22,12,11,6,0,0,0,5,68,0,0,3,6,10,24,16,4,0,0,0,6,68,0,0,5,11,6,23,26,6,0,0,0,3,81,0,0,3,6,7,10,10,5,0,0,0,5,53,0,0,0,0,0,0,4,4,0,0
LGA41190,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,27,22,26,31,12,5,0,0,0,0,0,15,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,16,0,0,4,3,0,0,0,0,0,0,0,0,12,6,0,0,3,4,0,0,0,0,0,0,0,12,0,0,5,5,0,0,0,0,0,0,0,4,14,0,0,3,3,0,0,0,0,0,0,0,4,13,5,0,3,0,0,0,0,0,0,0,0,0,15,0,0,0,6,4,3,0,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0
LGA41330,0,0,0,0,0,0,0,15,0,3,7,0,3,0,0,0,0,0,0,6,25,27,35,80,54,3,6,0,5,0,0,0,21,235,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,6,16,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,9,3,0,0,0,0,0,0,0,6,17,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,9,0,0,0,5,0,0,0,0,0,16,0,0,9,4,4,3,0,0,0,0,0,5,23,0,0,5,8,3,0,0,0,0,0,0,0,18,0,0,4,6,3,0,0,0,0,0,0,0,11,0,0,9,8,3,0,0,0,0,0,0,3,35,0,0,0,8,0,0,0,0,0,0,0,0,23,0,0,0,0,3,0,0,0,0,0
LGA41560,15,15,4,0,0,0,6,72,0,4,8,7,3,10,3,0,0,0,0,15,48,78,91,204,278,184,292,100,25,0,3,14,69,1341,0,0,3,0,0,0,6,0,0,0,0,0,13,0,0,0,5,0,8,0,0,0,0,0,0,16,0,4,13,18,4,18,4,0,0,0,0,0,74,3,26,22,24,11,24,4,0,0,0,0,8,127,3,22,48,50,18,40,15,0,0,0,0,6,212,0,3,9,27,25,30,11,0,0,0,0,0,112,3,3,14,40,19,84,33,3,0,0,0,0,202,4,3,5,22,15,62,21,7,0,0,0,3,143,5,0,10,6,11,54,30,4,0,0,0,5,118,3,0,4,11,19,36,25,3,0,0,0,0,111,0,0,10,10,21,42,33,12,0,0,0,8,123,0,0,3,3,3,17,26,3,0,3,0,0,62,0,0,0,0,5,7,5,3,0,0
LGA41750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,19,12,6,4,4,0,4,0,0,10,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,3,3,0,4,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA41830,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,3,20,8,41,33,11,10,0,0,0,3,6,8,142,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,8,0,4,0,4,4,3,0,0,0,0,0,0,12,0,8,7,0,5,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,3,0,0,3,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,18,0,0,3,0,0,0,4,0,0,0,0,0,8,0,0,6,4,5,5,0,0,0,0,3,0,16,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0
LGA41960,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,4,14,24,16,18,4,0,0,0,5,5,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,3,7,0,8,0,0,3,0,0,0,0,0,0,14,0,0,5,0,0,4,0,0,0,0,0,0,4,0,0,4,4,0,0,0,0,0,0,0,0,9,0,0,0,0,5,5,0,0,0,0,0,0,12,0,0,3,0,0,0,0,0,0,0,0,3,8,0,0,3,3,3,9,0,0,0,0,0,0,17,0,0,0,6,4,3,0,0,0,0,0,6,17,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0
LGA42030,37,28,8,0,0,0,5,133,5,14,10,7,0,3,7,3,0,0,0,19,62,111,164,194,289,279,541,461,68,6,7,11,81,2202,0,0,0,0,3,3,4,3,0,0,0,5,24,0,3,0,0,0,4,3,0,0,0,0,0,16,21,12,11,13,13,9,13,5,0,0,0,9,98,0,34,50,23,10,36,20,7,0,0,0,3,191,3,32,57,45,19,63,33,12,0,0,0,10,272,0,7,29,29,20,86,66,12,0,0,0,3,244,3,7,25,29,32,80,97,12,0,0,0,4,293,0,5,14,14,27,80,102,16,0,0,0,10,264,0,7,11,11,12,96,98,14,0,0,0,8,258,0,0,0,7,15,60,82,17,3,0,0,3,189,0,0,0,5,19,62,154,29,4,0,3,8,293,0,0,0,0,3,33,75,26,5,0,0,0,147,0,0,0,3,0,10,23,12,0,0
LGA42110,0,0,0,0,0,0,0,18,0,0,8,0,0,0,0,0,0,0,0,0,8,33,26,75,69,34,18,4,4,0,0,7,14,286,0,0,0,0,0,4,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,4,5,0,0,0,0,0,0,0,0,14,4,0,6,6,4,0,0,0,0,0,0,0,27,0,8,8,8,5,0,0,0,0,0,0,0,40,0,0,0,9,7,3,0,0,0,0,0,0,25,0,0,5,7,5,4,0,0,0,0,0,0,26,0,0,8,4,6,3,0,0,0,0,0,0,22,0,0,8,3,3,0,0,0,0,0,0,6,26,0,0,0,11,0,9,0,0,0,0,0,0,28,0,5,7,3,3,4,0,0,0,0,0,0,27,3,0,9,4,4,4,0,0,0,0,0,0,24,0,0,0,0,5,0,0,0,0,0
LGA42250,0,0,0,0,0,0,7,15,0,0,0,3,0,0,0,0,0,0,0,3,9,14,8,77,76,37,32,16,5,5,0,4,25,303,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,10,3,0,4,7,0,0,0,0,0,0,0,0,21,0,4,13,11,3,0,0,0,0,0,0,0,33,0,0,0,13,5,0,0,0,0,0,0,0,21,6,0,10,11,5,8,3,0,0,0,0,0,32,3,0,10,17,3,6,0,3,0,0,0,0,44,0,0,8,8,13,12,4,0,0,0,0,0,44,0,0,0,4,3,0,5,0,0,0,0,5,21,0,0,4,11,10,4,6,0,0,0,0,0,41,0,0,4,3,0,4,0,4,0,0,0,0,20,0,0,0,0,0,4,0,0,0,0
LGA42600,37,75,53,28,18,12,9,267,3,9,12,7,8,8,19,12,0,0,6,14,95,95,174,282,422,396,819,1073,659,248,104,131,122,4524,0,3,5,3,6,16,20,12,3,0,3,9,78,0,0,5,5,0,9,6,0,0,0,0,0,36,5,3,21,19,5,33,25,9,4,0,6,6,128,6,19,32,17,11,37,50,18,0,0,0,12,200,7,38,57,39,35,72,52,22,5,0,0,14,339,6,10,26,36,36,79,95,41,3,0,0,6,336,0,4,16,31,32,94,101,49,4,5,0,14,360,5,0,16,11,20,101,131,72,12,3,7,3,378,0,4,13,15,13,87,162,102,13,4,6,19,444,0,0,4,6,14,69,132,101,27,9,5,10,381,0,0,3,17,17,58,191,146,56,14,13,8,518,0,0,0,6,5,22,120,145,80,15,12,10,421,0,0,0,5,0,8,38,61,33,11
LGA42750,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,3,12,16,29,35,82,117,72,47,11,3,3,0,11,33,443,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,9,11,7,0,0,0,0,0,0,0,25,3,8,12,13,0,3,0,0,0,0,0,3,37,0,7,9,21,6,0,4,0,0,0,0,0,44,6,0,9,16,5,15,0,0,0,0,0,0,43,4,0,5,13,6,3,0,0,0,0,0,0,39,0,0,0,6,6,10,0,0,0,0,0,3,26,4,0,5,8,4,15,0,0,0,0,0,0,35,0,0,5,10,10,7,7,0,0,0,0,3,45,0,0,9,11,5,5,3,0,0,0,3,3,39,0,0,0,4,0,0,5,0,0,0,3,0,12,0,0,0,0,0,0,0,0,0,0
LGA43080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,7,30,11,0,0,0,0,0,0,0,7,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0
LGA43220,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,21,5,22,7,0,0,0,0,0,0,0,3,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,6,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,5,0,5,7,0,0,0,0,0,0,0,0,14,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA43360,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,5,9,10,54,66,23,4,0,0,0,0,5,21,201,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,3,0,0,0,0,0,0,0,8,0,0,3,3,0,0,0,0,0,0,0,0,7,0,3,9,10,7,3,0,0,0,0,0,4,27,0,0,4,10,0,4,0,0,0,0,0,0,14,0,0,5,10,9,3,0,0,0,0,0,3,27,0,0,4,9,3,0,0,0,0,0,0,0,24,0,0,5,7,0,0,0,0,0,0,0,0,27,0,0,3,0,6,0,0,0,0,0,0,0,12,0,0,0,6,7,4,0,0,0,0,0,0,15,0,0,0,3,0,7,0,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0
LGA43650,13,9,4,0,0,0,0,49,3,0,0,3,0,0,0,0,0,0,0,4,14,21,23,73,133,116,109,84,58,5,0,0,27,652,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,5,0,6,4,0,4,0,0,0,3,26,0,3,10,6,0,0,0,0,0,0,0,0,34,0,0,8,15,8,15,5,0,0,0,0,4,55,0,0,8,11,13,15,6,3,0,0,0,0,63,0,0,3,11,12,9,16,4,0,0,0,0,59,0,0,7,7,9,19,15,7,0,0,0,3,64,0,0,4,3,7,17,15,7,0,0,0,0,59,0,0,6,8,6,15,19,17,6,4,0,0,75,0,0,4,10,5,17,16,15,4,0,0,0,62,0,0,3,7,3,7,8,21,6,0,0,0,56,0,0,0,4,0,3,6,7,3,0
LGA43710,0,3,4,0,0,0,0,23,0,0,0,6,0,0,0,0,0,0,0,0,7,17,9,70,68,26,15,25,5,3,0,3,11,262,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,0,0,0,0,0,15,0,0,3,6,0,5,5,0,0,0,0,0,33,0,0,4,6,6,0,3,0,0,0,0,0,23,0,0,3,3,5,7,5,0,0,0,0,0,30,0,0,3,5,3,4,9,3,0,0,0,0,28,0,3,9,0,0,10,5,3,0,0,0,3,37,0,0,8,7,6,0,4,0,0,0,0,0,26,0,0,7,6,0,3,3,4,0,0,0,7,37,0,0,0,9,5,6,5,0,0,0,0,3,31,0,0,0,0,0,0,4,3,0,0
LGA43790,3,0,0,0,0,0,3,41,0,3,10,5,0,0,0,0,0,0,0,6,29,121,107,346,306,85,41,14,8,4,0,12,49,1078,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,5,4,0,4,0,0,0,0,0,0,8,7,4,9,15,6,3,0,0,0,0,0,0,47,0,10,20,26,6,3,6,0,0,0,0,0,71,9,11,51,37,10,5,0,0,0,0,0,7,128,3,4,16,40,11,15,10,0,0,0,0,4,99,0,7,21,45,30,22,8,0,0,0,0,5,132,0,4,16,25,20,17,4,0,0,0,0,4,91,7,5,17,20,11,17,11,0,0,0,0,4,89,8,0,7,26,16,24,7,0,0,0,0,3,79,3,4,4,32,13,23,10,5,0,0,0,0,96,0,3,0,13,10,15,13,3,0,0,0,3,65,0,0,0,5,0,3,3,0,0,0
LGA44000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA44060,67,181,125,27,6,5,39,591,26,39,38,14,8,17,29,19,5,0,8,68,269,520,1173,1139,840,584,1302,2243,1312,147,53,71,408,9780,7,14,22,23,11,11,39,50,13,8,4,20,221,18,12,24,19,14,11,29,16,7,0,0,8,146,78,98,104,75,17,23,46,27,4,0,0,26,497,19,174,281,116,26,38,74,33,5,3,3,35,806,13,143,326,175,48,75,121,57,4,0,3,29,999,10,19,110,114,59,115,151,106,7,0,0,21,713,10,27,72,126,84,128,221,149,13,0,0,22,857,7,12,53,78,73,156,301,205,29,9,4,22,941,0,8,28,68,44,137,363,249,24,10,3,28,955,0,8,14,37,32,92,278,322,33,4,3,13,823,5,0,16,25,31,106,367,511,73,13,8,20,1163,0,0,9,14,16,36,221,393,90,5,12,14,816,0,0,8,9,6,12,62,193,38,5
LGA44210,11,0,0,0,0,0,4,39,0,4,0,0,0,0,0,0,0,0,0,5,9,35,48,138,133,79,61,13,0,5,0,3,30,550,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,3,12,0,0,5,11,3,3,0,0,0,0,0,0,28,0,6,18,24,11,4,0,0,0,0,0,0,62,5,6,25,29,15,14,3,0,0,0,0,6,100,0,0,8,28,8,10,0,0,0,0,0,0,61,3,0,10,23,8,8,4,0,0,0,0,0,57,0,0,10,13,10,7,4,0,0,0,0,0,55,0,0,0,12,14,8,3,0,0,0,0,0,46,0,0,5,12,6,13,0,0,0,0,0,3,39,4,0,10,7,12,20,7,4,0,3,0,0,63,0,0,8,0,0,0,3,0,0,0,0,0,18,0,0,3,4,0,0,0,0,0,0
LGA44340,27,66,72,20,6,12,14,250,6,6,14,9,4,7,7,0,3,0,0,18,72,69,153,315,376,330,823,1031,668,174,63,59,153,4213,4,0,0,10,3,18,12,17,6,4,4,8,97,0,5,4,5,3,11,7,4,0,0,0,4,53,8,8,22,16,15,27,25,10,0,4,0,11,148,0,21,34,28,18,40,28,10,0,0,0,11,183,0,36,42,49,11,47,52,28,5,0,4,4,284,0,10,23,28,19,82,70,44,9,5,0,11,310,0,11,20,19,23,87,87,60,3,3,0,13,336,4,7,12,12,21,85,104,65,21,5,0,12,347,0,0,20,27,19,102,130,110,22,4,6,10,447,0,0,9,14,17,64,124,103,19,8,0,10,367,6,5,13,5,9,65,156,163,42,10,10,5,487,0,0,9,8,12,30,101,113,43,19,10,5,351,0,0,4,0,0,13,28,78,52,16
LGA44550,29,53,20,14,4,5,3,171,0,0,3,4,3,4,10,0,0,0,0,13,39,56,126,181,176,182,481,749,312,39,12,22,91,2428,0,0,7,0,0,0,8,6,0,0,0,5,27,3,0,0,0,0,0,9,0,0,0,0,3,17,3,6,19,7,0,5,14,11,0,0,0,7,86,3,20,30,6,3,4,24,9,0,0,0,5,105,7,17,39,28,15,33,52,23,3,0,0,9,225,0,3,11,30,11,45,87,40,4,0,0,5,237,5,3,14,29,14,39,109,53,6,0,0,7,268,3,3,0,8,11,42,96,54,0,0,0,0,228,0,0,10,13,12,39,111,66,3,0,0,5,263,5,0,6,8,8,22,79,94,0,0,0,7,222,0,0,3,8,6,41,152,146,13,0,3,3,377,0,0,0,9,7,23,68,103,25,4,3,5,243,0,0,0,0,0,3,21,61,7,4
LGA44620,30,19,3,0,0,0,0,165,7,19,11,17,6,5,0,0,0,0,0,33,110,185,388,797,914,402,418,156,32,5,4,23,129,3450,0,0,6,6,6,9,5,0,0,0,0,3,32,4,10,14,7,0,6,0,0,0,0,0,0,39,24,29,87,30,14,4,5,3,0,0,0,8,194,4,53,107,62,19,19,0,0,0,0,0,7,278,8,54,166,121,48,43,11,0,0,0,0,11,460,13,10,63,109,48,57,17,6,0,0,6,9,330,4,11,53,118,68,73,25,6,0,0,0,8,370,3,6,40,97,69,87,24,6,0,0,0,9,347,3,3,34,81,65,103,31,4,0,0,0,3,337,0,0,17,49,51,79,37,11,0,0,4,4,249,0,0,14,58,50,96,68,13,0,0,0,7,310,5,0,10,17,20,43,35,9,0,0,0,4,147,0,0,4,9,7,18,20,15,0,0
LGA44830,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,4,25,12,45,30,10,8,3,0,0,0,4,8,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,4,5,4,0,0,0,0,0,0,0,17,3,0,3,6,3,0,0,0,0,0,0,0,13,0,0,5,6,0,0,0,0,0,0,0,0,15,0,0,4,0,0,0,0,0,0,0,0,3,17,0,0,4,5,0,0,0,0,0,0,0,0,14,0,0,0,3,3,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0
LGA45040,46,15,0,0,0,0,3,139,7,10,11,21,9,5,0,0,0,0,0,17,77,113,261,382,549,357,515,134,16,10,3,14,113,2469,0,6,8,7,6,9,4,0,0,0,0,8,40,4,3,0,4,0,5,6,0,0,0,0,0,22,21,19,28,21,12,22,0,0,0,0,0,5,141,6,42,60,29,22,36,3,3,0,0,0,12,211,0,26,65,52,42,46,14,5,0,0,0,12,266,3,6,18,50,35,94,21,0,0,0,0,7,240,0,0,31,70,47,110,20,4,0,0,0,9,286,0,3,21,44,42,99,23,0,0,0,0,11,247,0,3,22,43,35,121,27,0,0,0,0,7,266,0,5,11,24,39,90,32,5,6,0,0,8,208,0,5,13,27,20,122,46,7,0,0,0,6,248,6,3,9,15,16,42,31,5,0,0,0,0,124,0,0,3,4,5,19,17,0,0,0
LGA45090,4,0,0,0,0,0,0,36,0,5,0,3,0,0,0,0,0,0,0,3,20,33,63,168,217,100,62,17,0,0,0,8,59,735,0,0,0,4,6,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,9,6,6,10,3,0,0,0,0,0,0,0,8,30,0,7,8,14,0,6,0,0,0,0,0,0,36,0,0,27,13,9,8,0,0,0,0,0,3,68,3,0,8,25,7,14,3,0,0,0,0,4,70,0,0,17,18,12,18,3,0,0,0,0,6,72,4,5,17,18,20,21,3,5,0,0,0,4,93,0,0,9,9,4,13,5,0,0,0,0,3,56,0,3,12,16,14,15,10,0,0,0,0,3,79,3,0,10,16,16,19,16,0,0,0,4,8,89,0,4,10,10,5,25,13,0,0,0,7,0,65,0,3,0,4,3,5,10,0,0,0
LGA45120,0,0,0,0,0,0,5,20,3,0,3,0,0,0,0,0,0,0,0,4,12,48,23,84,73,24,17,5,4,0,0,3,26,316,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,5,0,0,0,0,0,0,0,19,4,9,3,6,3,6,0,0,0,0,0,0,29,5,3,7,13,5,0,0,0,0,0,0,0,30,0,4,6,9,7,9,0,0,0,0,0,0,34,0,0,3,7,5,5,3,0,0,0,0,0,38,7,0,0,10,4,4,0,0,0,0,0,0,22,3,0,6,13,8,3,0,0,0,0,0,6,30,0,0,6,5,3,6,3,0,0,0,0,3,25,5,0,13,3,8,4,3,0,0,0,0,0,35,0,0,7,4,4,5,0,0,0,0,0,0,23,0,0,0,0,0,0,3,0,0,0
LGA45290,39,89,83,43,10,14,9,355,10,15,12,6,7,13,10,12,0,0,3,30,116,223,418,402,415,432,973,1144,842,292,83,100,189,5498,4,3,4,3,9,30,44,36,18,4,0,14,181,5,0,10,10,0,9,14,4,7,0,0,5,64,25,26,46,22,8,22,29,17,3,0,0,7,209,8,67,108,17,20,40,49,14,0,3,3,11,338,12,60,104,42,18,58,64,18,3,0,3,21,416,5,20,33,41,30,62,92,36,5,4,0,12,336,6,17,25,32,22,81,99,67,19,7,0,7,377,0,9,14,34,29,108,125,66,20,7,3,11,411,4,4,15,16,21,113,189,94,24,12,10,8,507,6,4,4,14,14,94,181,108,31,5,10,14,476,0,3,10,16,8,82,184,153,65,17,13,6,563,0,0,11,8,14,40,108,183,63,27,12,7,474,0,0,0,0,3,4,47,59,42,5
LGA45340,188,262,111,9,9,5,22,794,38,30,43,25,8,47,42,11,0,0,5,102,348,559,1051,1218,1229,1062,3127,3712,1009,117,51,76,495,13700,8,9,11,15,10,16,49,25,4,0,0,29,167,9,7,18,10,13,9,21,9,0,0,0,14,118,81,88,96,58,17,65,94,32,0,4,0,26,558,36,198,244,96,53,113,179,27,0,4,3,42,986,18,189,302,205,84,258,324,59,9,3,3,27,1470,8,22,104,145,100,333,558,115,5,5,0,30,1418,8,23,79,221,87,297,677,147,11,0,8,30,1596,7,27,42,81,94,358,767,191,15,5,7,33,1619,5,16,28,63,64,273,853,263,15,6,6,32,1615,0,6,20,34,42,172,681,275,17,0,10,19,1274,0,0,14,34,40,162,733,435,36,3,5,15,1490,0,0,10,14,12,63,394,331,26,3,4,11,867,0,0,7,3,4,20,109,156,18,8
LGA45400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,20,3,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA45540,0,0,0,0,0,0,0,8,5,0,3,0,0,0,0,0,0,0,0,0,5,28,15,62,19,0,0,0,0,0,0,6,10,138,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,6,6,3,0,0,0,0,0,0,0,0,0,0,7,0,0,3,3,0,0,0,0,0,0,0,0,13,0,5,17,3,3,0,0,0,0,0,0,0,29,0,0,5,10,0,0,0,0,0,0,0,0,13,0,0,5,4,0,0,0,0,0,0,0,0,22,0,0,4,7,4,0,0,0,0,0,0,0,20,3,0,5,4,0,0,0,0,0,0,0,0,6,0,0,6,4,0,0,0,0,0,0,0,0,10,0,0,0,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0
LGA45680,154,105,24,3,0,4,25,611,24,59,50,42,24,39,23,3,0,0,7,94,372,523,1139,1305,1543,1399,2317,1495,165,20,6,47,399,10369,8,7,12,19,17,37,41,4,0,0,0,20,173,13,6,23,22,22,18,11,0,0,0,0,15,127,130,91,113,96,55,85,40,10,0,0,3,21,645,22,170,249,144,88,141,74,9,3,0,7,33,932,21,166,324,226,172,280,155,14,7,0,9,37,1409,13,20,113,139,145,385,278,22,0,0,0,14,1128,10,21,90,223,192,462,317,34,5,0,0,31,1386,6,19,59,119,191,437,352,33,10,0,0,23,1247,0,11,35,96,135,425,421,42,3,0,4,29,1203,5,8,19,60,77,331,360,53,6,4,0,13,929,9,0,17,36,61,322,433,88,9,7,0,12,985,0,0,3,21,34,139,212,58,4,4,0,7,483,0,0,3,4,5,51,64,26,4,0
LGA45890,152,264,125,29,6,8,61,933,49,98,68,32,18,42,45,14,8,0,5,131,511,830,1957,1914,1719,1317,2612,3330,1439,172,59,101,732,16189,8,21,54,31,26,50,76,62,16,3,3,35,383,21,21,46,21,8,24,31,11,9,0,0,16,206,136,144,194,80,40,74,80,40,0,0,0,43,841,38,330,454,177,65,90,105,60,8,3,6,54,1376,37,264,493,292,98,163,214,85,3,3,12,59,1711,21,27,142,200,97,227,270,131,16,3,0,44,1186,3,50,131,299,148,326,398,170,6,0,4,60,1600,13,26,86,126,181,311,491,202,21,9,8,43,1512,6,14,57,91,87,348,573,363,25,12,8,31,1611,4,9,25,65,57,245,510,322,36,6,5,29,1319,7,4,29,48,69,218,592,557,64,4,11,24,1623,0,3,19,29,36,129,303,471,47,6,3,20,1070,3,0,10,11,3,31,130,216,35,3
LGA46090,17,8,7,0,0,0,10,124,9,12,14,21,3,5,0,0,0,0,0,25,84,118,200,394,507,171,162,91,33,13,10,11,105,1825,0,0,0,9,6,0,0,0,0,0,0,6,31,3,8,0,10,3,0,4,0,0,0,0,0,31,12,12,27,22,9,3,3,0,0,0,0,13,97,3,29,58,38,10,10,3,0,0,0,0,4,148,11,20,62,43,19,15,10,4,0,0,0,9,181,3,5,25,40,16,25,10,0,0,0,0,6,132,0,8,27,80,17,25,18,6,0,0,0,12,188,0,0,24,50,16,27,11,0,0,0,0,8,139,6,0,17,52,35,37,8,3,0,0,3,10,180,4,0,22,31,23,40,21,5,0,0,0,0,141,3,3,21,43,27,30,28,9,0,0,0,13,166,0,0,10,15,16,21,20,9,0,0,3,7,106,0,0,11,9,4,8,11,9,0,0
LGA46300,32,22,6,0,0,0,10,141,3,7,9,10,3,3,3,0,0,0,0,14,56,100,188,298,454,192,287,266,76,5,4,5,93,1978,3,0,7,9,0,7,0,0,0,0,0,7,24,4,3,3,0,0,0,0,0,0,0,0,0,17,16,16,22,27,8,11,4,0,0,0,0,5,109,6,42,34,30,12,13,7,0,0,0,0,5,146,4,41,52,30,17,15,6,0,0,0,0,4,178,5,11,22,33,16,22,23,11,0,0,0,8,149,0,3,21,43,23,38,35,6,0,0,0,3,185,3,4,10,30,30,38,43,0,0,0,3,0,164,0,0,12,36,16,43,55,19,0,0,0,10,191,4,0,5,19,17,35,54,14,3,0,0,0,147,3,0,5,19,14,38,60,23,0,3,0,4,167,0,0,4,9,7,18,39,26,7,4,0,3,118,0,0,3,4,3,7,20,4,0,0
LGA46450,19,3,0,0,0,0,7,95,8,10,14,11,3,3,0,0,0,0,0,29,85,154,295,464,641,167,163,63,18,5,0,5,108,2096,0,0,6,10,4,3,0,0,0,0,0,5,30,3,4,7,8,0,0,0,0,0,0,0,0,29,13,25,30,46,7,7,0,0,0,0,0,3,140,5,52,70,49,8,11,6,0,0,0,0,12,224,12,52,112,88,27,20,4,0,0,0,0,10,320,0,8,28,74,22,35,6,3,0,0,0,0,180,5,8,22,90,30,37,15,0,0,0,0,13,217,0,3,17,70,26,34,8,3,0,0,0,0,156,3,0,19,65,30,23,8,0,0,0,0,9,156,5,0,16,48,13,27,12,0,0,0,0,4,120,0,0,18,43,21,45,20,8,0,0,0,0,150,0,0,9,8,10,20,19,4,0,0,0,0,84,0,0,0,6,9,9,8,4,0,0
LGA46510,21,39,33,13,5,3,7,149,0,5,3,4,0,3,12,5,0,0,0,11,38,77,128,144,236,208,506,535,378,92,21,18,83,2420,0,4,3,0,0,11,14,11,4,3,0,0,62,0,0,0,4,0,0,6,4,0,0,0,0,16,8,7,12,5,0,16,20,9,3,0,0,3,90,0,22,26,14,0,12,10,8,0,0,0,7,94,0,24,35,22,11,20,33,11,4,0,0,7,165,4,5,8,21,13,41,32,14,6,0,0,0,148,0,5,10,15,16,47,51,27,5,0,0,5,179,0,0,6,12,18,63,78,25,5,0,0,0,218,0,0,10,9,11,77,98,63,11,0,0,6,284,0,0,4,15,6,53,84,52,13,0,0,3,229,0,0,6,9,11,53,88,95,14,6,4,0,287,0,0,5,5,5,26,63,88,30,7,0,4,227,0,0,0,0,4,8,29,32,13,6
LGA46670,4,5,6,0,0,4,0,54,0,9,9,15,0,0,0,0,0,0,0,12,43,64,120,279,349,71,50,36,8,0,0,10,39,1031,0,0,3,0,0,0,0,0,0,0,0,0,9,0,3,0,5,0,0,0,0,0,0,0,0,9,3,15,14,5,3,0,3,0,0,0,0,0,46,0,15,22,26,4,4,0,4,0,0,0,3,72,0,20,35,33,9,3,0,0,0,0,0,0,106,7,12,15,32,17,7,0,0,0,0,0,0,91,5,0,25,56,12,13,5,0,0,0,0,6,123,0,8,18,30,22,14,3,0,0,0,0,6,98,3,0,12,39,15,25,17,4,0,0,0,0,116,3,0,11,42,11,18,5,0,0,0,0,7,98,3,0,10,24,9,16,7,0,0,0,4,9,84,4,0,9,16,10,8,12,0,0,0,4,0,61,3,0,0,3,0,0,8,0,0,0
LGA46860,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,9,5,0,26,34,20,23,4,5,4,0,7,10,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,3,3,3,0,0,0,0,0,13,0,0,0,0,6,0,5,0,0,0,0,0,7,0,0,6,3,0,3,0,0,0,0,0,0,18,0,0,3,0,0,0,5,0,0,0,0,5,17,0,0,0,8,3,4,3,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,0,0,15,0,0,0,0,4,4,0,0,0,0,0,0,12,0,0,0,0,5,4,0,0,0,0,0,0,12,0,0,0,5,0,0,3,0,0,0
LGA46970,0,3,9,9,10,0,3,75,0,0,0,0,0,0,0,0,3,0,0,4,5,12,23,190,178,24,23,57,146,114,51,24,56,891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,9,5,6,0,0,0,0,0,0,13,0,0,3,3,0,0,0,0,0,0,0,0,13,0,0,5,3,5,3,0,0,0,0,0,0,20,0,0,5,10,0,4,0,0,0,0,0,6,23,0,0,4,7,10,12,4,3,0,0,0,0,39,0,0,17,30,17,24,14,8,0,0,0,0,109,0,0,44,41,25,25,25,4,4,0,3,11,183,0,0,13,30,17,24,10,8,0,0
LGA47140,164,217,67,20,8,6,38,777,26,33,42,42,18,31,49,8,0,3,4,94,347,528,954,1233,1430,1257,2746,3182,696,141,43,66,513,12792,6,13,23,35,18,32,84,33,6,5,3,24,275,11,16,17,8,11,27,32,15,0,0,0,12,159,73,72,99,67,37,72,88,21,0,0,0,35,569,31,204,238,86,48,84,131,27,0,0,0,46,903,18,175,300,200,132,220,265,37,0,0,3,50,1401,20,22,85,172,123,263,419,65,9,0,0,31,1204,7,23,82,201,152,314,550,90,8,3,6,47,1486,0,22,68,89,132,306,565,116,11,3,3,34,1345,3,9,26,98,115,320,761,173,23,4,6,41,1591,0,6,16,56,43,234,609,176,16,3,4,19,1185,0,5,21,47,45,246,704,279,32,7,0,23,1417,0,0,11,6,33,102,379,243,47,8,0,16,837,0,0,0,8,13,37,131,116,23,8
LGA47290,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,7,28,21,62,22,0,0,0,0,0,0,0,6,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,4,3,0,0,6,3,0,0,0,0,0,0,0,0,14,3,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,0,9,6,0,0,5,0,0,0,0,0,0,0,3,10,0,0,3,7,0,0,0,0,0,0,0,3,17,0,0,5,5,0,0,0,0,0,0,0,0,14,4,0,6,8,0,0,0,0,0,0,0,0,23,5,0,0,5,0,0,0,0,0,0,0,3,8,0,0,0,0,3,0,0,0,0,0
LGA47490,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,15,19,30,43,18,11,4,3,0,8,9,14,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,9,0,3,0,0,0,0,0,0,0,0,0,0,9,0,0,5,3,0,0,0,0,0,0,0,0,7,4,4,0,7,0,0,0,0,0,0,0,0,15,0,0,0,5,5,3,0,0,0,0,0,0,18,3,0,0,5,4,0,0,0,0,0,0,0,19,0,0,0,3,0,0,0,0,0,0,0,0,14,0,0,3,0,0,3,0,0,0,0,0,0,9,0,0,0,4,5,8,4,0,0,0,0,0,22,0,0,0,4,0,6,0,0,0,0,0,0,10,0,5,0,0,0,0,3,0,0,0
LGA47630,0,0,0,0,0,0,6,35,7,0,3,3,0,0,0,0,0,0,0,0,12,40,39,140,143,75,20,9,6,0,0,0,32,523,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,6,4,0,0,0,0,0,0,0,0,11,0,5,15,0,0,0,4,0,0,0,0,0,21,0,0,11,8,5,0,0,0,0,0,0,4,29,0,0,9,6,6,6,0,0,0,0,0,5,29,4,3,16,32,5,8,0,0,0,0,0,3,67,0,0,12,25,9,4,4,0,0,0,0,0,57,0,0,7,20,13,6,0,0,0,0,0,3,51,0,4,9,13,9,7,3,0,0,0,0,4,43,0,0,10,19,13,10,0,0,0,0,0,5,64,0,0,4,5,7,3,0,0,0,0,0,0,26,0,0,3,4,3,3,5,0,0,0
LGA47700,66,170,40,4,0,5,22,389,3,19,5,9,9,12,23,3,0,0,0,42,131,173,484,495,479,454,1250,2090,546,55,15,38,236,6308,6,3,7,5,11,6,26,16,4,0,0,8,82,3,0,8,0,3,9,20,0,0,0,0,9,57,22,30,52,17,13,8,25,4,0,0,0,12,191,8,79,104,37,22,33,66,12,4,0,6,13,377,9,91,114,52,29,63,129,35,0,0,7,26,557,6,7,39,52,29,70,199,49,0,3,0,9,471,5,11,47,76,38,94,284,74,4,0,0,18,651,0,0,18,38,31,109,334,101,0,3,0,9,656,5,5,19,27,25,108,364,141,10,4,3,13,726,3,0,4,22,20,70,277,166,7,0,0,9,585,4,6,9,10,18,77,356,286,24,0,0,11,800,0,0,3,3,5,50,211,220,23,0,0,8,530,0,0,0,5,5,14,92,78,18,0
LGA47800,0,0,0,0,0,0,0,38,0,0,6,3,0,0,0,0,0,0,0,3,18,41,52,141,96,30,10,0,0,0,0,3,40,418,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,5,0,0,0,0,0,0,0,15,7,3,4,12,5,0,0,0,0,0,0,0,32,11,5,16,14,7,7,0,0,0,0,0,4,61,3,4,9,10,6,3,0,0,0,0,0,0,42,6,3,10,9,3,5,0,0,0,0,0,0,47,7,4,16,14,7,8,0,0,0,0,0,0,51,3,3,6,10,11,4,0,0,0,0,0,4,43,0,3,12,7,8,3,0,0,0,0,0,6,37,4,0,6,7,0,0,0,0,0,0,0,0,26,4,0,6,3,6,0,0,0,0,0,0,0,26,0,0,0,4,0,0,0,0,0,0
LGA47910,0,0,0,0,0,0,0,13,0,0,0,6,0,0,0,0,0,0,0,5,10,5,28,45,59,24,27,10,3,0,0,0,17,219,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,4,0,0,0,0,0,0,11,5,3,3,7,0,0,0,0,0,0,0,0,12,0,0,0,13,0,8,0,0,0,0,0,0,28,0,0,0,14,0,3,0,0,0,0,0,5,24,0,0,5,8,3,3,3,0,0,0,0,0,28,0,0,0,4,0,3,0,0,0,0,0,0,25,0,0,3,6,0,4,5,0,0,0,0,5,19,0,0,0,4,0,4,6,0,0,0,0,0,16,0,0,8,4,0,6,4,0,0,3,0,0,19,0,0,0,5,0,6,5,0,0,0,0,0,10,0,0,0,0,0,0,0,4,0,0
LGA47980,31,77,70,38,18,23,13,301,4,13,4,6,0,6,11,4,0,0,3,22,75,103,267,219,330,322,762,1039,727,303,126,128,136,4454,0,5,11,6,4,21,34,19,13,5,4,4,133,0,0,0,11,0,10,11,7,0,3,0,0,45,17,5,19,11,12,19,23,10,5,0,0,0,120,3,33,40,20,12,21,29,10,4,0,0,6,179,4,32,65,45,19,41,56,20,8,4,0,10,297,3,4,19,56,22,60,71,16,8,0,0,8,265,0,5,13,33,24,60,95,42,14,4,4,7,293,0,3,13,13,24,85,102,53,20,5,0,8,324,0,0,7,15,13,95,141,84,33,12,8,11,419,0,0,4,12,18,46,128,110,28,9,9,3,367,0,0,8,12,18,68,186,160,72,10,9,9,552,0,0,0,8,5,32,115,148,74,32,17,4,432,0,0,0,4,8,9,42,64,46,19
LGA48050,29,16,0,0,0,0,5,76,0,0,4,8,3,5,0,0,0,0,4,12,35,20,54,131,223,212,350,198,21,4,5,10,45,1266,0,0,0,4,0,0,0,0,0,0,0,3,15,0,0,0,4,0,3,0,0,0,0,0,0,9,0,0,10,10,9,13,4,0,0,0,0,0,52,0,0,10,17,9,26,11,0,0,0,0,3,84,3,12,32,39,23,55,29,4,0,0,0,13,203,5,3,15,28,25,60,52,6,0,0,0,5,195,0,3,10,14,26,67,67,11,0,0,0,3,205,0,3,5,4,3,35,60,7,0,0,0,3,128,3,4,12,10,11,50,68,15,3,0,0,0,171,0,0,9,6,7,34,47,8,3,0,0,0,110,0,0,0,0,7,14,50,9,0,0,0,3,94,0,0,0,3,0,9,27,4,0,6,0,0,45,0,0,0,0,0,3,14,0,0,0
LGA48130,3,0,0,0,0,0,0,24,0,3,0,3,4,0,0,0,0,0,0,3,17,49,35,93,175,55,48,11,4,0,0,3,22,495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,3,0,0,0,0,0,0,0,0,12,5,3,13,21,5,0,0,0,0,0,0,4,47,4,5,19,21,12,7,0,0,0,0,0,0,72,0,0,3,11,12,5,0,0,0,0,0,0,35,0,0,9,19,12,11,0,0,0,0,0,4,53,0,0,10,9,7,10,3,0,0,0,0,0,40,3,0,3,10,16,17,4,0,0,0,0,4,55,6,0,4,16,7,13,0,0,0,0,0,4,41,0,3,5,8,7,18,4,0,0,0,0,0,45,0,0,5,0,3,10,0,0,0,0,0,5,32,0,0,3,0,4,7,4,0,0,0
LGA48260,3,7,6,9,0,3,0,40,3,0,0,0,0,0,0,0,4,0,0,5,15,65,67,54,42,23,77,150,95,58,22,33,19,699,0,0,4,0,0,3,4,8,5,0,0,6,28,3,0,0,0,0,0,0,0,0,0,0,0,13,23,4,11,0,0,0,5,4,4,0,6,3,61,0,17,19,0,0,0,3,8,0,0,0,3,52,0,10,33,4,3,4,10,0,0,0,0,5,69,0,0,8,4,3,8,4,9,4,0,0,0,37,0,0,9,6,6,4,4,12,3,0,4,0,36,0,0,3,5,0,7,18,14,7,3,0,0,45,0,0,0,5,3,4,13,15,5,0,0,0,62,0,0,0,0,0,3,25,18,3,0,0,0,58,0,0,0,3,0,5,13,32,8,0,4,8,77,0,0,3,4,0,0,12,36,16,7,4,0,87,0,0,0,0,0,0,5,12,7,0
LGA48340,0,0,0,0,0,0,0,48,5,5,7,6,0,0,0,0,0,0,0,7,21,69,105,342,247,79,28,11,8,0,6,8,46,948,0,0,6,4,0,0,0,0,0,0,0,0,11,0,0,4,3,0,0,0,0,0,0,0,0,12,11,7,23,5,0,0,0,0,0,0,0,4,52,4,10,33,13,5,8,0,0,0,0,0,0,68,5,15,52,41,11,6,0,0,0,0,5,9,139,0,0,21,42,9,7,4,0,0,0,0,0,91,0,5,31,39,13,5,4,0,0,0,0,11,104,4,3,26,30,4,11,7,0,0,0,0,3,90,0,0,11,28,19,4,0,0,0,0,0,7,79,0,3,8,27,6,9,0,0,0,0,0,3,68,3,0,8,25,16,18,0,0,0,0,0,9,75,0,0,7,10,11,12,3,0,0,0,0,0,46,0,0,0,3,3,0,0,0,0,0
LGA48410,86,126,93,26,9,0,32,487,16,20,25,16,4,15,25,6,0,0,4,43,176,340,527,675,897,769,1483,1810,993,189,48,54,286,8073,7,4,16,15,6,40,40,32,26,0,0,17,221,6,4,22,10,5,13,15,5,8,0,0,4,94,57,34,49,41,21,38,34,25,6,0,3,13,327,21,73,114,52,38,74,51,28,0,0,5,20,464,27,75,144,113,67,110,73,36,14,0,3,28,686,9,12,58,93,55,146,111,58,13,4,4,20,580,8,11,33,84,69,175,166,80,13,3,5,21,675,3,12,38,68,72,200,200,121,28,8,0,17,765,0,6,27,53,56,204,270,161,30,6,5,15,825,0,0,16,31,36,136,260,176,35,0,4,13,709,3,9,23,27,43,165,298,297,59,16,6,18,958,0,0,13,19,16,83,196,250,65,10,8,9,673,0,0,4,11,5,32,67,110,60,6
LGA48540,13,17,6,0,0,0,7,175,6,27,15,28,0,4,0,6,0,0,0,52,150,259,574,709,967,219,215,245,97,19,3,14,215,3537,5,3,10,14,4,4,0,0,0,0,0,6,49,18,9,14,12,0,3,0,0,0,0,0,10,71,90,47,76,46,18,9,3,0,0,0,0,14,316,13,78,154,59,16,14,8,0,0,0,0,19,370,10,53,195,108,28,29,11,5,0,0,0,16,457,9,11,54,90,41,38,26,0,0,0,0,4,271,7,14,39,142,49,38,25,4,0,0,0,9,318,3,6,21,83,47,40,25,4,0,0,0,9,254,3,7,23,71,40,42,30,0,0,0,0,7,228,0,0,20,58,18,44,21,6,0,0,0,3,173,0,0,25,50,37,69,47,9,0,4,0,3,244,0,4,17,28,32,33,37,5,0,0,0,3,162,0,0,3,13,8,19,18,4,0,0
LGA48640,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,16,18,35,11,8,0,0,0,0,0,0,7,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,4,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,4,0,0,0,0,0,0,0,9,0,3,7,8,3,0,0,0,0,0,0,0,26,0,0,3,0,0,0,0,0,0,0,0,3,9,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0
LGA48750,6,4,0,0,0,0,0,21,0,0,0,0,0,3,0,0,0,0,0,4,5,15,10,39,96,76,72,32,6,0,0,4,18,369,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,3,3,0,0,0,0,10,0,0,0,5,4,8,3,0,0,0,0,4,28,0,4,10,16,14,9,10,0,0,0,0,0,63,0,0,3,11,6,13,10,0,0,0,0,5,48,0,0,0,9,4,6,8,3,0,0,0,0,38,0,0,10,5,7,8,11,0,0,0,0,0,44,0,0,0,6,6,15,6,0,0,0,0,7,40,0,0,4,3,7,10,5,0,0,0,0,0,27,0,0,3,0,0,5,7,8,0,0,0,0,31,0,0,0,0,0,3,7,0,0,0,0,3,15,0,0,0,0,0,0,5,0,0,0
LGA48830,11,3,0,0,0,3,5,52,4,0,3,6,0,0,0,0,0,0,0,12,32,84,82,172,238,103,68,12,3,8,0,7,80,871,0,0,0,4,0,3,0,0,0,0,0,0,7,0,0,3,6,0,0,0,0,0,0,0,0,9,8,7,12,4,3,8,0,0,0,0,0,3,42,4,12,10,6,11,3,0,0,0,0,0,0,51,7,19,39,19,20,14,0,0,0,0,0,4,110,0,7,13,18,14,16,5,0,0,0,0,5,81,4,7,17,24,21,29,3,0,0,0,3,4,100,4,4,3,13,22,14,5,0,0,0,0,9,81,3,3,9,9,17,19,9,0,0,0,0,6,77,0,0,6,14,9,11,0,0,0,0,3,0,51,0,0,9,11,8,14,3,0,0,0,0,3,55,0,0,8,8,3,12,3,0,0,0,0,0,37,0,0,0,3,0,0,0,0,0,0
LGA49399,0,0,0,0,0,0,0,39,17,5,4,5,0,0,0,0,0,0,0,9,41,376,59,75,55,18,14,16,6,0,5,16,91,730,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,3,10,10,4,0,0,0,0,0,0,0,0,5,29,7,8,6,0,0,0,0,0,0,0,0,5,19,10,12,8,5,0,0,0,0,0,0,0,5,31,10,5,5,0,0,0,0,0,0,0,0,3,25,5,7,3,3,0,0,0,0,0,0,0,3,25,12,13,4,3,0,0,0,0,0,0,0,4,34,14,5,7,4,0,0,0,0,0,0,0,8,45,7,3,5,5,0,0,0,0,0,0,0,4,30,12,7,12,7,0,0,0,5,0,0,0,8,53,11,6,10,9,0,0,0,0,0,0,0,11,48,15,0,0,0,0,0,0,0,0,0
LGA49499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA49799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA50080,46,92,41,3,0,0,14,292,11,10,11,10,4,14,6,4,0,0,0,29,95,122,216,475,451,332,740,849,324,25,9,23,163,3735,0,0,3,0,9,4,12,7,6,0,0,3,40,0,0,10,4,0,5,4,0,0,0,0,5,21,12,9,21,15,4,11,10,3,0,0,0,7,97,3,21,69,41,14,22,24,11,0,0,0,13,212,14,15,89,66,29,40,52,20,0,0,0,12,341,4,3,32,44,28,64,85,33,6,0,6,6,307,6,3,23,57,35,66,101,34,3,0,0,10,331,6,5,14,28,26,63,101,44,0,0,0,13,293,4,8,13,26,30,49,145,97,9,0,0,7,381,0,0,5,19,17,39,111,81,3,0,0,0,285,0,3,7,26,29,58,158,134,16,4,0,9,450,0,4,8,11,17,21,68,96,16,0,3,8,262,0,0,0,6,6,12,33,67,16,0
LGA50210,42,146,81,25,3,4,19,387,11,14,11,12,3,4,26,7,0,0,3,35,134,138,209,329,319,261,716,1886,667,228,35,33,184,5003,0,3,12,3,4,10,13,11,6,0,3,10,73,3,0,8,6,0,8,13,4,0,0,0,7,46,7,8,40,28,6,22,54,21,9,0,4,16,206,3,14,57,34,10,27,78,25,6,0,0,12,260,10,18,90,52,24,54,118,58,0,0,0,13,438,6,6,29,48,28,69,193,104,8,0,0,11,494,5,3,23,47,28,69,214,114,18,0,4,12,535,5,3,7,22,27,77,229,139,24,0,3,6,534,0,0,10,21,15,77,220,230,35,6,0,15,628,0,4,6,18,12,35,193,229,31,11,5,8,553,0,0,9,6,9,30,207,312,76,16,7,14,675,4,0,5,6,7,16,124,224,89,17,3,7,508,0,0,0,0,0,8,40,123,46,11
LGA50250,3,5,0,0,0,0,14,154,13,0,0,0,0,0,0,0,0,0,3,9,32,1083,93,75,39,26,19,20,14,8,11,30,156,1562,8,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0,0,0,3,11,8,0,3,0,0,0,0,0,0,0,0,0,11,10,6,0,0,0,0,3,0,0,0,0,0,27,9,0,0,0,0,0,0,0,0,0,0,0,15,6,3,3,0,0,0,0,0,0,0,0,0,17,3,0,8,4,0,0,0,0,0,0,6,11,32,8,0,8,4,0,0,4,0,0,0,3,0,43,17,3,7,3,0,0,6,0,0,0,0,7,53,75,7,15,7,4,3,9,0,8,3,4,14,146,266,6,17,13,6,3,3,11,8,5,7,35,378,79,7,10,9,6,3,5,4,3,0
LGA50280,13,49,30,3,0,0,5,129,5,0,4,3,0,0,3,0,3,0,0,5,32,22,34,99,134,117,211,414,179,26,3,23,75,1337,0,0,0,0,4,0,0,0,0,4,0,0,17,0,0,0,0,0,0,0,8,0,0,0,0,9,3,0,12,8,3,9,3,4,0,0,0,0,39,0,0,18,10,6,7,7,9,0,0,0,0,58,3,0,20,14,10,7,13,14,0,0,0,3,94,0,0,10,10,5,18,23,21,6,0,0,6,101,0,0,12,15,7,17,32,26,3,0,0,4,115,0,0,3,10,16,20,31,29,9,0,0,3,126,3,0,4,6,13,12,39,55,8,0,0,3,149,0,0,10,9,6,8,33,51,9,0,7,8,128,0,0,4,5,3,12,37,60,12,0,5,8,153,0,0,0,7,4,7,23,52,17,5,0,5,119,0,0,0,0,3,0,3,25,12,7
LGA50350,5,49,34,7,4,0,7,128,0,7,0,0,5,3,0,5,0,0,0,9,38,58,107,144,112,85,123,438,363,53,14,9,74,1568,0,0,5,3,3,3,6,9,3,4,0,4,44,0,4,4,5,3,0,3,0,0,0,0,4,21,10,3,16,5,3,0,9,3,3,0,0,0,59,0,3,34,16,4,4,11,15,3,0,0,9,96,3,11,39,12,6,14,20,15,5,0,0,8,133,0,0,17,10,7,5,19,20,9,0,0,0,85,4,0,7,22,3,4,32,21,0,0,0,4,113,0,0,8,8,4,4,39,54,8,0,0,3,133,0,0,4,3,0,6,39,56,13,0,5,4,129,0,0,0,3,0,10,25,73,3,0,0,0,120,0,0,5,9,0,12,50,94,29,0,5,3,204,4,0,0,6,0,4,28,64,29,0,0,3,133,0,0,0,0,0,4,8,36,22,4
LGA50420,75,173,250,73,7,11,20,684,13,19,12,13,4,16,32,34,3,3,0,49,195,232,312,367,572,432,988,2131,1985,443,101,93,239,7896,0,8,22,11,8,21,40,46,20,3,0,21,183,3,0,10,3,4,10,7,6,4,3,0,0,54,13,14,39,21,16,13,32,40,9,0,0,11,212,9,14,113,29,27,37,49,22,9,0,0,12,326,9,37,126,47,33,46,92,62,13,0,0,7,472,6,13,26,33,34,55,105,85,27,0,0,7,390,4,8,23,43,31,84,133,161,41,9,8,12,548,6,3,11,32,45,88,171,195,53,5,0,18,628,5,6,12,17,37,82,230,263,80,13,4,15,765,0,3,7,14,22,60,174,263,83,12,3,15,670,5,0,15,13,21,56,246,410,170,35,12,12,987,0,0,0,9,12,24,137,379,203,56,8,14,841,0,0,4,3,4,13,48,185,150,25
LGA50490,35,125,186,47,13,8,25,508,11,23,22,7,7,11,14,23,5,4,0,36,159,215,381,391,329,227,486,1237,1312,395,105,67,183,5337,6,6,12,6,3,7,20,38,14,8,3,4,127,11,9,15,3,0,0,5,9,3,0,0,4,53,20,17,47,25,8,8,16,26,6,0,0,16,194,13,33,138,15,10,10,25,23,9,0,0,16,284,7,17,153,37,26,15,50,45,12,4,0,13,375,0,5,29,29,13,24,59,46,16,0,0,0,229,0,6,27,64,22,36,78,93,27,3,4,6,380,6,5,14,26,19,45,115,157,40,4,0,9,435,4,3,20,28,15,41,161,226,57,3,5,16,576,0,0,4,7,11,17,103,211,67,8,3,4,447,0,0,13,15,9,30,145,351,138,12,7,17,738,0,0,7,7,5,17,95,313,149,25,14,13,651,0,0,0,7,0,5,35,140,109,13
LGA50560,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,24,22,6,7,0,0,0,0,0,9,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,0,3,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,4,3,0,0,0,0,0,0,8,0,0,0,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,4,4,0,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,0,0,0,0,0
LGA50630,0,0,3,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,20,15,13,5,23,34,17,3,0,17,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0,0,0,0,3,0,0,3,4,0,5,0,0,0,0,0,0,11,0,0,0,0,0,4,4,5,0,0,0,0,10,0,0,0,0,0,6,0,0,0,0,0,0,3,0,0,3,0,5,5,0,0,0,0,0,0,13,0,0,0,0,0,4,4,0,0,0,0,4,14,0,0,0,0,0,0,0,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,5,11,0,0,0,5,20,0,0,0,0,0,0,8,8,5,0,0,0,27,0,0,0,0,0,0,0,3,0,0
LGA50770,0,5,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,4,8,4,33,21,14,5,3,0,0,0,0,11,99,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,7,4,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,4,0,3,0,0,0,0,0,0,0,13,0,0,0,0,0,3,3,0,0,0,0,0,10,0,0,0,4,4,0,0,0,0,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0
LGA50840,4,3,0,0,0,0,0,19,0,0,8,4,0,0,0,0,0,0,0,0,11,24,14,69,66,53,68,28,4,0,0,3,17,350,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,9,12,0,6,3,3,0,0,0,0,32,0,0,12,9,4,0,3,0,0,0,0,0,27,0,0,7,3,8,3,6,0,0,0,0,0,28,0,0,0,12,6,11,11,3,0,0,0,0,40,0,0,0,0,0,5,12,6,0,0,0,4,27,0,0,0,0,3,9,11,0,0,0,0,0,24,0,0,0,4,0,4,8,4,0,0,0,0,20,0,0,0,0,8,13,11,0,0,0,0,0,35,3,0,5,0,0,4,4,10,0,0,0,0,24,0,0,0,0,0,0,0,4,0,0
LGA50910,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,10,14,21,16,3,0,0,0,0,0,8,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,0,0,0,0,0,0,0,16,0,0,3,5,4,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,0,0,0,0,0,0,0,0
LGA50980,10,17,28,28,31,44,24,296,4,8,6,11,3,7,3,5,5,0,14,34,90,306,226,281,349,142,154,156,225,192,168,342,230,2763,0,0,9,4,5,0,11,0,0,0,0,8,37,3,0,6,0,0,0,0,3,0,0,0,0,16,20,7,27,17,3,0,6,0,0,0,0,4,80,15,9,39,19,3,3,6,4,0,0,3,3,102,18,8,32,17,15,9,8,7,0,0,0,12,128,12,4,22,29,12,18,0,6,0,0,6,7,121,21,12,24,18,17,11,16,22,10,0,8,10,169,11,14,30,24,14,20,24,32,13,5,7,8,186,12,4,23,12,15,17,32,28,12,13,9,18,186,9,8,13,9,7,14,29,32,24,12,17,11,186,3,5,18,28,30,45,50,69,40,33,26,14,357,3,0,13,23,19,31,42,42,63,33,31,32,334,0,0,6,21,19,23,28,29,39,24
LGA51080,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,22,15,4,0,4,0,0,0,0,11,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,4,0,0,0,0,0,0,0,0,9,0,0,3,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA51120,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,25,10,17,20,0,0,0,0,0,0,0,9,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,8,7,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,4,5,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,6,4,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,4,4,0,0,5,0,3,5,0,0,0,0,5,14,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0
LGA51190,80,97,47,10,3,0,10,317,15,11,22,7,8,18,11,3,9,5,4,31,140,160,216,361,427,398,998,1186,383,106,61,63,143,4522,4,0,6,5,0,3,17,11,0,0,0,12,72,0,4,9,12,0,3,0,3,0,0,0,0,29,16,9,33,19,10,14,29,5,0,0,0,5,149,0,11,73,40,14,36,38,11,0,0,0,9,250,8,12,80,76,21,60,94,28,0,0,0,13,402,3,0,20,46,19,76,112,36,9,0,0,3,332,3,0,19,52,31,89,164,45,0,0,0,10,408,4,0,22,23,27,85,167,55,7,0,0,3,393,0,3,13,16,22,72,170,94,4,0,0,10,410,0,4,3,12,16,44,167,80,3,0,0,8,341,0,6,6,10,12,50,193,141,10,3,0,12,432,6,0,4,5,6,40,94,112,17,0,0,10,297,0,0,3,5,3,7,48,69,15,4
LGA51260,40,127,80,11,0,3,14,343,9,11,5,13,5,9,6,5,0,0,4,21,90,75,145,319,282,220,562,1107,506,57,13,40,144,3461,0,0,5,6,0,4,4,18,4,0,0,5,41,0,0,8,8,3,0,7,6,0,0,0,0,30,5,6,18,18,6,7,14,22,5,0,4,10,107,4,9,70,22,8,12,21,30,4,0,0,9,179,3,8,67,44,20,31,43,40,4,0,0,9,273,6,6,21,28,12,21,56,68,8,0,3,4,231,6,0,22,46,17,17,69,89,11,0,0,12,289,0,0,16,19,12,26,61,116,17,0,0,12,282,0,5,8,19,13,14,77,153,26,0,0,3,316,0,0,10,16,3,12,59,149,31,4,3,9,303,4,0,10,7,9,15,57,209,63,3,3,3,387,0,0,0,6,11,0,37,155,56,0,0,8,284,0,0,6,0,3,0,11,83,43,7
LGA51310,8,16,37,28,21,52,9,196,0,0,3,4,0,5,4,4,0,5,5,4,30,11,17,39,70,90,229,319,354,291,159,349,55,1984,0,0,0,0,0,3,10,0,0,0,8,3,29,0,0,0,0,0,5,7,0,4,0,3,0,12,0,0,10,0,0,6,3,6,0,0,0,0,25,0,0,3,0,5,14,3,6,6,0,0,0,34,0,4,8,10,5,11,7,4,6,0,0,8,59,0,0,4,8,8,16,21,11,7,0,3,0,83,0,0,0,0,0,19,18,12,5,0,3,4,63,0,0,0,4,4,20,29,16,8,5,6,5,97,0,0,0,0,3,18,40,22,20,10,12,0,121,0,0,3,0,0,10,27,31,21,10,14,0,122,0,0,3,4,3,20,45,53,45,25,32,7,227,0,0,0,7,0,7,39,42,54,33,39,0,230,0,0,0,0,4,0,12,19,30,25
LGA51330,32,144,312,92,21,36,31,761,14,19,13,17,7,11,28,44,12,5,5,48,210,244,415,525,429,292,540,1900,2837,693,149,181,325,8539,0,4,27,30,9,16,34,96,48,14,5,32,318,7,5,13,12,6,3,7,22,16,4,0,6,95,32,16,62,33,9,9,20,47,24,3,3,8,269,8,26,138,24,8,12,32,39,12,6,5,8,311,17,22,137,38,28,27,64,79,28,5,3,19,466,8,0,42,48,14,33,76,135,40,4,9,11,415,4,3,43,54,33,25,112,203,34,7,3,21,549,5,0,32,29,31,38,147,224,78,18,8,17,619,8,3,18,27,26,36,186,397,121,20,16,15,879,3,4,10,29,11,33,150,352,111,17,14,13,757,4,3,27,33,20,25,189,605,204,38,26,27,1195,0,0,11,20,12,12,100,428,221,51,21,17,897,7,0,12,7,8,11,56,232,126,30
LGA51400,14,28,50,0,0,0,0,110,0,0,6,0,0,5,3,0,0,0,0,3,14,12,42,89,56,44,89,244,328,36,12,14,36,1004,0,0,0,0,0,0,3,4,0,0,0,0,11,0,0,0,0,0,0,0,4,0,0,0,0,8,0,3,11,9,0,4,0,5,0,0,0,0,33,0,0,14,21,4,7,5,6,0,0,0,4,72,0,3,19,26,4,4,14,18,0,0,0,3,89,0,0,5,17,5,5,19,23,0,0,0,0,78,0,0,11,15,14,10,19,29,0,0,0,0,100,0,0,10,8,3,6,22,32,6,0,0,0,84,0,0,4,0,6,6,18,47,0,0,0,0,87,0,0,4,3,3,6,26,61,0,0,0,9,105,0,0,0,0,5,5,26,104,15,0,0,8,161,0,0,0,0,0,0,25,78,17,3,0,0,125,0,0,0,0,4,3,10,45,9,0
LGA51470,5,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,13,9,0,5,0,0,0,0,0,3,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA51540,7,8,0,3,0,0,8,71,3,9,10,9,3,0,0,0,0,0,0,13,45,45,95,172,162,62,79,89,39,20,10,54,77,913,0,0,5,0,5,0,4,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,3,7,10,0,5,8,3,3,0,0,0,0,0,0,32,6,0,16,6,0,0,0,0,0,0,0,0,33,7,3,16,17,0,5,4,3,0,0,3,3,62,3,3,8,13,4,4,3,4,0,0,0,0,48,8,3,9,13,5,12,16,5,0,0,5,7,68,0,3,10,12,5,10,11,9,0,0,0,4,55,3,0,4,7,4,8,13,0,0,0,0,5,59,0,0,5,4,4,9,10,0,0,0,0,0,44,3,4,10,19,3,20,28,15,6,3,4,3,109,0,0,7,13,5,16,14,16,8,0,5,9,84,0,0,0,8,5,0,9,3,12,0
LGA51610,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,9,0,5,14,11,9,0,0,4,0,0,0,9,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,5,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA51680,0,0,6,4,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,10,9,19,12,8,6,30,30,15,0,0,9,148,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,8,0,0,0,6,0,0,0,0,0,14,0,0,4,0,0,0,0,3,0,0,0,0,8,0,0,0,0,0,4,6,0,0,0,0,0,8,0,0,3,0,0,5,8,3,0,0,0,3,18,0,0,0,0,0,0,3,4,0,0,0,5,17,0,0,0,0,0,0,0,4,0,0,0,0,6,0,0,0,0,0,3,0,7,3,4,0,0,16,0,0,0,0,0,0,3,8,4,0,0,0,16,0,0,0,0,0,0,0,5,0,0
LGA51710,0,0,0,0,0,0,0,16,0,0,3,0,0,0,0,0,0,0,0,0,5,63,25,19,26,19,17,16,7,6,4,8,27,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,3,13,5,0,0,3,0,0,0,0,0,0,0,3,14,0,0,0,6,0,0,0,4,0,0,0,3,15,8,0,5,4,4,4,3,0,3,0,0,10,37,4,3,0,7,0,3,7,0,0,0,0,4,33,3,0,0,4,0,0,5,0,0,0
LGA51750,5,4,14,25,15,27,8,103,0,0,0,3,0,0,5,4,3,0,3,0,18,10,13,32,63,25,61,133,216,147,82,185,36,1001,0,0,0,0,0,8,5,11,8,0,9,6,39,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,4,7,0,0,0,0,13,0,6,9,0,3,0,0,9,4,0,0,0,20,0,0,3,3,9,5,10,6,5,0,3,0,36,0,0,0,3,6,4,4,12,7,7,5,0,49,0,0,0,5,0,0,12,11,8,8,8,0,45,0,0,0,0,3,4,17,11,8,6,0,0,58,0,0,0,3,0,3,9,19,9,3,6,0,57,0,0,0,0,0,4,14,24,12,9,7,6,69,0,0,0,0,0,3,7,26,27,11,16,5,106,0,0,0,3,0,0,11,32,28,15,18,0,105,0,0,0,0,0,3,0,10,4,5
LGA51820,41,146,273,104,19,23,25,725,16,17,23,8,6,13,21,18,6,0,0,55,178,203,370,472,418,289,567,1456,2465,639,104,129,286,7392,4,0,3,13,6,12,10,33,17,0,0,8,124,4,3,5,4,3,0,8,14,7,0,0,5,63,27,14,53,23,8,14,36,45,12,0,6,14,265,10,20,132,50,15,23,35,39,10,0,0,13,358,8,19,166,72,31,38,74,87,17,3,4,17,544,4,8,40,80,27,36,95,134,26,6,3,4,466,0,6,28,49,37,39,89,198,50,6,0,16,533,4,0,21,28,33,45,151,274,75,12,4,15,648,0,4,15,19,23,37,149,349,120,15,9,14,755,4,0,5,16,5,42,121,368,148,18,8,17,748,6,4,12,10,10,43,144,518,255,28,18,15,1061,0,0,3,15,6,28,94,508,290,40,14,15,1020,0,4,5,10,6,15,45,221,216,36
LGA51860,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,19,14,6,0,0,4,3,0,5,19,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,3,0,0,0,0,0,0,0,7,4,0,0,3,0,0,0,0,0,0
LGA51890,14,7,7,0,0,0,0,44,0,3,3,4,0,4,4,0,0,0,0,8,32,32,64,84,116,78,137,86,45,12,3,3,27,690,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,6,7,3,5,7,0,5,3,0,0,0,0,0,27,0,0,16,11,5,13,0,0,0,0,0,3,49,0,0,33,12,17,19,0,0,0,0,0,3,89,0,0,3,20,21,23,13,3,0,0,0,0,80,0,0,3,25,8,25,10,0,0,0,0,6,75,3,0,4,5,10,14,17,4,0,0,0,4,59,0,0,0,0,8,23,9,3,0,0,0,0,50,0,0,0,4,13,18,14,3,0,0,0,0,47,0,0,0,0,7,13,11,4,0,0,0,4,51,0,0,0,6,0,9,14,9,0,0,0,3,50,0,0,0,5,0,0,7,7,0,0
LGA51960,6,8,0,0,0,0,0,36,0,0,0,5,4,0,0,0,0,0,0,0,8,26,31,67,106,86,95,47,0,3,0,3,20,487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,16,0,0,9,5,0,0,0,0,0,0,0,3,19,0,3,5,6,3,3,3,0,0,0,0,0,25,0,0,4,3,0,8,0,0,0,0,0,0,21,0,0,0,8,3,3,5,0,0,0,0,3,18,0,0,5,13,5,5,0,0,0,0,0,0,25,0,0,6,7,9,7,4,0,0,0,0,0,29,0,5,0,9,0,4,3,0,0,0,0,0,23,0,0,12,17,15,19,6,0,0,0,0,3,69,0,0,7,17,15,18,12,6,0,0,0,0,85,0,0,5,5,0,4,5,0,0,0
LGA52030,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,4,12,4,10,20,17,12,3,3,0,0,0,15,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,7,0,0,0,0,0,0,0,0,0,8,0,3,5,0,0,0,0,0,0,0,0,0,11,0,0,0,6,0,3,0,0,0,0,0,0,9,0,0,5,0,0,4,3,0,0,0,0,0,13,0,0,0,0,0,8,0,0,0,0,0,0,12,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,3,12,0,0,0,0,0,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0
LGA52100,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,14,19,33,24,6,4,0,0,0,0,0,3,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,0,0,0,0,0,0,0,0,12,0,0,0,4,3,0,0,0,0,0,0,0,9,0,0,6,0,4,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,3,3,0,6,0,6,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,9,0,0,0,0,0,0,0,0,10,0,0,0,3,3,0,0,0,0,0,0,0,8,0,0,0,0,3,0,0,0,0,0
LGA52170,4,8,21,26,14,37,7,119,0,0,0,0,0,0,0,0,0,3,10,0,20,5,24,22,17,23,55,89,141,141,91,246,26,871,0,0,0,0,0,0,0,0,0,0,5,0,11,0,0,0,0,0,0,0,0,0,3,0,0,9,0,3,5,0,0,3,3,0,0,0,3,0,21,0,0,3,0,0,6,0,4,0,0,0,0,21,0,0,12,4,0,3,6,0,0,0,4,0,17,0,0,3,0,0,3,3,7,5,0,0,0,20,0,0,0,6,0,0,5,3,11,0,0,0,21,0,0,0,0,4,3,0,8,3,0,10,0,29,0,0,0,0,0,0,3,6,13,6,10,0,34,0,0,0,0,0,4,4,8,15,4,8,0,51,0,0,0,0,0,0,7,8,17,9,12,3,56,0,0,0,0,0,0,7,15,21,11,22,0,90,0,0,0,0,0,0,0,5,3,3
LGA52240,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,24,16,0,0,0,0,0,0,0,13,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,6,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,6,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0
LGA52310,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,7,7,3,6,6,0,0,0,0,9,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,4,7,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA52380,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA52450,0,3,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,25,25,14,7,3,0,0,0,0,9,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,7,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,7,0,0,0,0,0,0,13,0,0,4,4,4,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,5,0,0,0,0,0,0,0,7,0,0,6,3,0,9,3,0,0,0,0,0,21,0,0,0,7,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA52520,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,12,16,36,15,5,4,3,0,0,0,5,8,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,4,6,4,0,0,0,0,0,13,0,0,0,0,0,4,0,0,0,0,0,0,17,0,0,4,0,3,8,0,0,0,0,0,0,17,0,0,0,0,4,9,6,3,0,0,0,0,23,0,0,3,4,0,4,0,0,0,0
LGA52590,7,9,0,0,0,0,4,24,0,0,0,0,0,0,0,0,0,0,0,0,11,20,7,30,52,47,46,55,19,0,0,7,37,317,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,10,0,3,0,0,0,0,4,13,0,0,0,0,0,5,3,0,0,0,0,0,18,0,0,0,3,0,3,4,0,0,0,0,0,18,0,0,0,0,0,0,7,0,0,0,0,0,19,0,0,0,0,0,3,11,5,0,0,0,0,22,0,0,7,0,0,5,0,5,0,0,0,4,27,0,0,5,3,6,7,14,12,0,0,0,4,49,0,0,5,0,0,4,12,5,0,0,6,3,39,0,0,0,0,0,7,3,5,0,0
LGA52660,14,55,27,6,0,0,3,118,0,0,0,3,0,4,0,6,0,0,0,0,20,3,15,46,47,55,172,370,200,12,3,6,25,951,0,0,0,0,0,0,0,6,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,10,0,0,0,4,26,0,0,5,0,5,4,17,7,0,0,0,0,37,0,0,7,6,4,11,7,15,0,0,0,0,49,0,0,3,4,5,6,28,14,4,0,0,0,76,0,0,5,4,9,9,33,20,0,0,0,0,84,0,0,0,5,6,13,34,26,0,0,0,0,88,0,0,6,6,4,14,34,38,0,0,0,3,96,0,0,0,0,0,12,36,27,3,0,0,0,82,0,0,6,4,3,6,54,73,12,0,0,6,168,0,0,0,0,0,6,27,48,3,0,0,0,99,0,0,0,0,0,0,17,22,4,0
LGA52730,13,12,3,0,0,0,0,40,0,0,4,0,0,6,0,0,0,0,0,0,12,15,29,71,86,74,131,100,21,0,6,8,16,561,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,9,0,6,3,0,3,0,0,0,0,22,0,0,7,3,4,8,3,0,0,0,0,5,35,0,4,18,14,3,7,10,7,0,0,0,0,61,0,0,3,14,0,6,11,0,0,0,0,0,41,0,0,0,3,6,8,23,9,0,0,0,4,51,0,0,0,7,7,9,10,3,0,0,0,0,41,0,0,4,3,4,8,19,10,0,0,0,3,51,0,0,5,0,6,6,13,14,0,0,0,0,47,0,0,0,3,0,3,24,10,4,0,0,0,48,0,0,0,4,3,6,8,7,0,5,0,0,27,0,0,0,0,0,0,4,8,0,0
LGA52800,0,9,3,3,0,5,9,84,20,3,0,0,0,4,0,4,0,0,9,11,56,481,95,186,82,50,33,30,29,22,15,36,161,1224,0,6,0,0,0,0,0,0,0,0,0,0,9,7,8,0,0,0,0,0,0,0,0,0,0,16,31,23,10,6,0,0,0,0,0,0,0,9,83,20,14,23,7,0,0,0,0,0,0,0,7,66,48,19,25,8,0,0,0,0,0,0,0,6,108,33,14,12,4,0,0,0,0,0,0,0,8,75,34,28,28,14,10,4,0,0,0,0,0,10,127,31,16,27,12,3,6,3,0,0,0,0,17,116,27,18,33,8,5,6,9,9,0,0,0,8,124,27,9,27,10,11,11,11,10,0,0,0,8,120,26,23,22,14,11,13,20,13,0,0,0,31,175,18,8,18,22,9,19,14,12,0,3,4,19,152,9,9,4,3,0,4,6,0,3,0
LGA52870,5,3,3,0,0,0,0,15,0,0,0,0,0,5,3,0,0,0,0,0,9,11,12,53,45,35,54,55,13,0,0,4,17,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,4,0,0,0,0,0,8,0,0,0,5,4,3,0,0,0,0,0,0,14,0,0,0,3,3,3,9,3,0,0,0,0,26,0,0,4,9,7,9,4,0,0,0,0,0,29,0,0,12,5,12,9,8,0,0,0,0,0,40,0,0,0,4,4,11,4,3,0,0,0,0,27,3,0,0,3,3,6,6,7,0,0,0,0,30,0,0,0,6,3,5,10,3,0,0,0,3,27,0,0,0,3,4,5,9,6,0,0,0,0,28,0,0,3,0,4,3,0,15,0,0,0,0,27,0,0,3,0,0,0,5,0,4,0
LGA52940,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,11,6,18,14,0,0,0,0,0,0,0,3,56,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA53010,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,9,16,12,5,0,0,0,0,0,0,0,10,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA53080,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,35,24,0,5,0,3,0,0,0,16,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,4,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,6,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,12,0,0,0,11,0,0,0,0,0,0,0,0,11,0,0,6,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0
LGA53150,5,13,18,8,3,9,0,62,0,0,0,0,0,3,0,0,3,0,0,0,7,7,27,18,24,18,57,96,163,86,33,71,22,615,0,0,0,0,0,0,0,0,0,0,0,4,11,4,0,0,0,0,0,0,0,0,0,0,0,9,5,4,5,0,4,0,3,0,0,0,0,0,21,0,0,5,0,0,0,0,3,0,6,0,0,14,0,0,9,4,0,0,0,3,0,0,0,0,24,0,3,0,0,0,0,4,3,0,0,5,0,18,0,0,0,4,0,3,9,10,4,0,0,0,37,0,0,0,0,0,10,12,5,7,0,3,0,30,0,0,0,0,3,0,11,15,5,0,0,0,34,0,0,0,4,0,6,10,10,6,3,4,0,39,0,0,0,0,0,0,21,18,22,13,8,4,83,0,0,0,0,0,5,7,17,15,9,8,4,59,0,0,0,0,0,0,8,15,11,5
LGA53220,0,0,0,3,0,5,23,119,23,4,0,0,0,0,0,0,0,0,0,20,47,331,93,306,39,39,17,12,4,11,7,49,195,1105,0,0,0,0,5,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,9,13,9,3,0,0,0,0,0,0,0,0,0,28,4,0,4,5,0,3,0,0,0,0,0,0,16,13,3,0,5,0,3,4,0,0,0,0,11,43,11,3,5,0,3,3,0,0,0,0,0,9,50,13,0,8,8,9,5,4,0,0,0,0,5,52,15,0,8,13,6,5,5,5,0,0,0,8,63,16,8,26,18,3,12,13,5,5,0,0,18,124,49,18,51,17,13,9,11,10,4,4,7,35,222,21,4,34,11,7,0,3,21,9,0
LGA53290,23,26,18,0,0,0,9,118,6,0,10,8,3,8,8,0,0,0,0,16,52,53,95,239,238,174,201,218,110,23,5,14,89,1460,0,0,0,3,0,0,3,0,0,0,0,0,10,0,3,0,3,0,6,0,0,0,0,0,0,12,3,0,12,5,0,4,0,0,0,0,0,0,36,0,3,17,16,9,0,8,0,0,0,0,0,63,9,3,34,20,14,13,13,3,0,0,0,0,109,0,4,6,10,9,20,24,0,0,0,0,6,83,0,0,12,24,10,21,23,6,0,0,0,3,99,0,4,8,14,15,21,19,6,0,4,0,6,96,4,4,12,18,15,26,38,14,5,0,0,6,134,0,5,8,16,16,29,27,10,0,0,0,6,118,0,3,6,18,13,26,43,36,9,0,0,12,167,3,0,0,14,3,10,40,42,6,0,0,7,131,0,0,0,6,5,10,14,20,0,0
LGA53360,0,0,9,4,4,0,0,38,0,3,3,0,3,0,0,4,0,0,0,3,24,35,29,53,37,30,35,52,88,39,19,78,56,547,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,10,0,0,6,3,0,0,5,0,0,0,0,3,20,0,0,6,0,0,0,0,6,0,0,0,0,16,0,0,5,10,0,3,0,4,3,0,4,5,29,0,0,0,4,0,3,0,3,3,0,0,0,17,0,0,0,8,0,0,8,8,3,0,0,4,37,0,0,0,4,0,0,3,3,7,0,5,5,24,0,0,8,0,0,7,6,10,7,0,0,0,53,0,0,4,0,3,13,4,14,10,0,10,0,66,0,0,0,5,6,8,4,6,12,5
LGA53430,22,66,83,72,28,37,21,382,6,14,13,0,0,0,8,10,0,5,10,31,99,226,380,286,218,157,292,610,755,459,189,210,200,3979,3,3,8,5,0,8,4,10,13,4,3,10,74,7,5,8,4,0,5,0,0,0,5,0,0,32,36,36,63,16,4,15,7,16,8,0,0,18,220,12,26,132,36,6,11,18,15,0,0,0,12,266,0,17,149,46,12,16,15,18,4,0,0,13,298,5,4,31,32,11,15,31,25,13,3,4,13,178,0,3,20,28,10,14,37,41,8,6,5,13,179,0,0,23,23,20,18,42,40,25,10,12,7,224,0,0,17,13,18,27,63,58,35,17,8,3,259,0,0,3,3,8,7,43,80,55,21,14,6,241,0,0,3,8,9,26,54,120,107,40,15,7,387,0,0,4,0,4,11,43,105,87,70,43,9,384,0,0,0,0,0,4,11,38,62,26
LGA53570,8,8,3,0,0,0,0,30,0,0,0,3,0,0,0,0,0,0,0,4,12,12,10,32,46,34,39,56,30,4,0,3,19,291,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,5,0,3,0,0,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,12,0,0,3,0,0,6,0,0,0,0,0,0,20,0,0,0,9,3,4,5,5,0,0,0,5,26,0,0,3,4,4,3,15,0,0,0,0,3,31,0,0,0,4,6,8,8,5,0,0,0,3,30,0,0,0,4,0,4,11,3,0,0,0,0,26,0,0,0,3,4,3,3,3,0,0,0,0,25,0,0,0,3,0,4,7,13,0,0,0,0,35,0,0,3,0,4,0,4,7,3,0,0,6,21,0,0,0,3,0,0,0,0,0,0
LGA53640,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,4,3,14,3,36,19,5,0,0,0,0,0,0,6,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,0,0,7,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,0,0,0,0,0,0,0,0,8,0,0,0,0,6,0,0,0,0,0,0,0,9,0,0,3,3,0,4,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,6,5,5,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0
LGA53710,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,14,3,27,22,3,3,0,0,0,0,3,9,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,4,0,0,0,0,0,0,0,0,8,0,0,7,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,5,4,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA53780,51,213,276,72,5,12,46,773,17,14,20,11,11,21,48,19,6,4,0,48,207,160,254,505,465,398,718,2432,2131,520,59,67,304,8026,3,4,8,12,8,13,47,58,20,0,0,18,192,5,5,5,8,0,4,18,11,7,4,4,4,72,13,19,36,31,17,23,29,40,5,0,0,17,235,3,13,72,51,23,21,60,55,8,0,0,9,318,6,16,104,76,38,57,130,115,22,0,0,23,587,0,9,40,69,27,47,162,147,28,6,0,17,548,4,5,40,67,35,70,201,209,43,7,0,21,689,4,0,15,40,30,63,256,282,48,0,4,25,774,4,9,16,29,28,62,263,383,80,12,5,24,911,3,0,8,20,26,46,201,367,95,10,4,19,800,8,4,11,17,15,59,252,506,181,13,6,22,1083,0,6,13,13,6,21,141,430,175,18,8,14,848,3,0,3,6,3,3,51,157,116,11
LGA53800,49,80,89,8,0,0,18,374,11,18,15,12,4,10,14,7,4,0,0,40,135,124,237,445,598,406,630,721,652,125,17,34,205,4192,0,0,7,0,8,3,13,9,0,0,0,9,57,7,0,3,8,3,5,4,3,5,0,0,0,47,18,8,32,36,16,23,19,8,0,0,0,6,167,8,16,80,39,17,35,23,12,0,0,0,8,238,0,12,75,64,40,58,43,11,0,0,0,6,306,0,6,34,48,48,64,83,22,0,0,4,11,321,3,8,28,62,40,80,84,32,3,0,4,10,354,3,6,25,43,43,63,100,19,0,0,0,7,307,6,0,22,27,38,56,133,47,5,0,0,11,344,0,7,21,25,22,43,120,66,3,0,0,9,310,0,7,8,18,44,61,206,119,11,0,0,10,492,0,0,3,16,40,48,128,113,16,0,0,9,371,0,0,3,3,20,17,38,77,20,0
LGA53920,0,0,0,0,0,0,0,30,9,0,0,0,0,0,0,0,0,0,0,0,14,307,46,71,17,14,11,7,6,5,0,7,46,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,8,16,3,6,0,0,5,0,0,0,0,0,10,45,10,6,3,0,0,0,0,0,0,0,0,4,22,12,10,8,0,0,0,0,0,0,0,0,7,46,9,9,14,7,4,0,0,0,0,0,0,4,40,10,5,0,4,0,0,0,0,0,0,0,0,30,13,4,16,4,0,5,0,0,0,0,0,9,58,5,10,13,4,0,0,0,0,0,0,0,4,43,6,5,7,3,0,0,0,0,0,0,0,3,26,12,5,7,4,4,4,0,0,0,0,0,12,47,3,0,13,3,4,0,3,3,0,0,0,7,39,0,0,0,0,0,3,0,5,0,0
LGA53990,21,43,51,0,0,5,6,165,0,3,8,3,0,11,8,0,0,0,0,10,49,34,66,160,232,165,297,480,333,25,11,17,60,1878,0,0,0,0,0,5,0,6,0,0,0,3,17,0,0,3,0,0,0,4,3,0,0,0,0,12,7,0,6,4,6,0,4,4,0,0,0,3,41,5,3,22,8,5,10,7,3,0,0,0,0,69,0,4,38,22,10,15,39,11,0,0,0,7,144,0,0,4,10,12,24,47,19,4,0,0,4,121,0,0,4,13,11,29,69,39,0,0,0,5,181,0,0,6,4,9,23,55,39,3,0,0,3,145,0,0,3,11,14,17,46,54,3,0,0,4,155,0,0,0,6,11,7,43,58,7,0,0,6,133,0,0,0,5,7,22,63,120,9,3,0,3,242,0,0,0,7,3,11,40,104,11,0,0,0,182,0,0,0,0,7,7,20,57,7,4
LGA54060,9,11,3,0,0,0,0,35,0,0,9,0,0,0,3,0,0,0,0,6,16,10,25,72,58,32,77,62,17,0,0,9,31,405,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,4,0,3,0,0,0,0,0,0,6,22,0,0,20,5,6,3,0,0,0,0,0,0,29,0,0,18,5,0,8,3,0,0,0,0,0,42,0,0,0,3,0,9,7,6,0,0,0,0,34,0,0,6,11,0,12,11,0,0,0,0,4,31,0,0,3,5,3,3,6,0,0,0,0,0,26,0,0,0,0,5,6,9,0,0,0,0,4,19,0,0,0,3,0,5,13,5,0,0,0,3,26,0,0,3,4,0,4,13,0,0,0,0,0,31,0,0,0,3,0,4,5,0,0,0,0,3,20,0,0,0,0,0,0,8,0,0,0
LGA54130,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,8,11,16,27,19,10,10,0,0,0,0,0,9,109,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,11,0,0,0,0,5,3,0,0,0,0,0,4,5,0,0,6,0,0,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0,4,0,0,0,9,0,0,5,0,0,0,0,0,0,0,0,0,11,0,0,4,3,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0
LGA54170,20,136,420,180,69,73,34,1004,4,5,16,10,3,6,16,35,13,7,15,40,166,84,140,264,279,226,430,1807,3784,1197,458,469,232,9368,0,0,0,4,6,0,15,46,30,3,13,16,140,4,0,4,5,0,0,10,22,5,4,3,4,62,9,7,16,14,5,3,24,49,18,6,3,9,164,4,9,50,20,8,18,32,65,9,3,4,5,220,7,13,54,46,19,23,53,99,23,3,0,13,359,0,4,16,34,16,25,74,168,49,4,9,7,399,0,4,8,42,19,26,70,209,59,17,4,8,469,4,0,14,16,17,14,88,299,81,11,16,11,582,0,0,4,22,12,28,76,376,155,30,15,21,734,4,0,3,11,11,13,82,394,153,38,22,18,751,0,0,7,18,11,17,103,571,333,67,55,15,1205,6,0,3,8,14,17,65,470,372,134,72,12,1173,0,0,4,8,6,3,14,209,216,84
LGA54200,11,58,108,40,7,6,8,285,0,0,9,0,0,5,6,6,0,0,3,15,48,49,80,187,154,134,231,712,948,231,41,38,110,2923,0,0,3,6,0,0,4,13,10,0,0,8,53,0,0,3,0,0,3,0,9,0,0,0,0,18,3,4,16,11,9,3,7,7,4,0,0,6,62,0,4,19,17,6,5,3,15,4,0,0,5,89,3,8,47,35,9,20,27,35,12,0,0,8,199,0,0,16,17,12,9,32,43,14,0,0,5,149,3,0,12,23,7,17,41,66,12,3,0,8,187,0,0,10,14,8,14,45,112,25,0,4,4,244,0,0,4,13,10,18,62,120,54,5,0,3,293,0,0,7,8,5,14,44,147,51,6,4,3,286,0,0,3,10,10,11,57,230,85,14,9,8,436,0,0,7,5,0,8,37,171,100,13,9,8,354,0,0,6,5,6,0,14,66,56,10
LGA54280,39,83,76,30,9,3,21,348,11,9,13,12,4,13,8,10,0,0,0,27,111,138,164,421,451,244,447,766,650,216,88,35,163,3781,0,0,3,3,3,0,4,4,5,0,0,0,33,0,0,5,6,0,0,4,0,0,0,0,4,27,14,3,17,18,5,7,8,4,0,0,0,4,84,8,6,46,17,7,10,8,8,0,0,0,5,115,0,22,48,29,12,12,7,9,0,0,0,10,157,6,4,8,25,13,29,17,9,3,0,0,5,106,0,3,20,31,20,31,41,13,5,0,0,4,161,0,0,8,26,13,32,35,20,4,0,4,4,151,0,3,19,13,13,47,68,29,7,4,0,5,214,0,0,14,21,28,59,91,44,8,0,3,3,273,3,3,23,52,48,115,173,115,24,10,5,23,582,0,4,15,43,37,76,131,144,45,9,6,9,518,3,0,7,11,12,39,81,86,40,6
LGA54310,11,11,12,8,7,55,71,355,3,4,3,0,0,0,0,5,0,0,12,26,61,858,123,362,326,112,105,113,109,94,44,711,609,3566,3,5,3,0,0,0,0,0,0,0,0,5,31,0,4,0,3,0,4,0,0,4,0,5,0,25,8,0,17,12,4,7,0,3,0,0,0,0,49,5,9,19,3,0,8,4,3,0,0,0,0,46,6,0,22,9,5,5,0,0,0,0,0,3,57,7,3,12,10,0,4,10,11,0,0,3,4,62,4,3,11,13,3,13,21,8,5,0,3,4,107,4,0,13,12,4,10,28,18,13,0,0,11,112,10,10,18,15,11,16,29,29,7,3,6,17,175,8,0,6,22,10,17,32,25,9,9,8,17,164,35,10,33,27,19,53,70,61,31,15,37,51,445,94,21,50,67,26,49,63,96,69,29,78,63,710,27,10,20,30,12,22,34,61,38,19
LGA54340,0,0,0,0,0,0,0,38,0,0,3,0,0,0,0,0,0,0,0,7,10,35,39,151,148,38,45,13,0,0,0,0,25,492,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,8,6,0,0,0,0,0,0,0,0,24,0,0,4,3,0,0,0,0,0,0,0,0,17,4,0,7,13,0,3,0,0,0,0,0,0,28,0,0,3,9,3,7,5,0,0,0,0,6,31,0,0,8,14,3,9,5,0,0,0,0,0,48,0,0,9,9,4,0,0,0,0,0,0,0,27,0,7,10,6,4,5,3,0,0,0,0,0,37,0,0,14,8,8,14,0,0,0,0,0,0,47,0,0,7,7,5,15,9,5,0,0,0,3,51,0,0,6,6,5,5,5,6,0,0,0,4,42,0,0,3,0,0,0,0,3,0,0
LGA54410,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,31,10,36,17,4,5,0,0,0,0,0,6,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,11,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,3,13,0,0,5,0,0,0,0,0,0,0,0,0,13,4,0,3,0,5,0,0,0,0,0,0,0,7,0,0,7,7,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA54480,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,7,13,6,0,0,0,0,0,0,0,3,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0
LGA54550,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,3,10,18,53,35,15,6,0,0,0,0,0,23,176,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,4,0,0,0,0,0,0,0,14,0,5,3,3,0,0,0,0,0,0,0,0,12,0,6,0,0,0,9,0,0,0,0,0,0,15,0,0,4,3,0,0,0,0,0,0,0,0,16,0,0,3,3,0,0,0,0,0,0,0,0,16,0,0,0,8,4,0,0,0,0,0,0,0,13,0,0,3,6,0,8,0,0,0,0,0,0,18,0,0,0,0,5,5,0,4,0,0,0,7,17,0,0,5,0,0,4,3,0,0,0,0,0,14,0,0,0,0,0,5,0,0,0,0
LGA54620,0,0,0,0,0,0,4,9,0,0,3,0,0,0,0,0,0,0,0,0,3,10,10,42,13,7,0,0,0,0,0,0,8,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,4,0,0,0,0,3,5,0,0,0,0,0,0,7,0,0,0,7,3,0,0,0,0,0,0,0,14,3,0,3,0,0,4,4,0,0,0,0,0,7,4,0,4,5,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0
LGA54690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,7,7,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA54760,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,3,11,14,14,14,5,0,0,0,0,0,0,3,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0
LGA54830,44,69,60,7,0,4,13,246,5,8,9,3,7,16,18,8,0,0,5,17,86,71,138,232,201,230,591,710,448,36,5,16,97,2773,0,0,6,0,0,7,19,6,0,0,0,5,46,0,0,5,0,4,4,3,5,0,0,0,0,25,13,9,24,16,4,12,23,11,0,0,0,5,115,5,8,50,9,8,23,38,22,3,0,0,0,166,5,5,56,37,26,47,54,37,0,0,0,3,267,0,0,26,22,16,33,91,50,3,0,0,8,249,0,0,15,35,18,40,99,81,0,4,4,12,304,0,4,7,17,19,40,112,93,5,5,0,3,303,5,0,5,10,16,41,124,144,13,0,0,5,363,0,3,0,4,7,28,83,141,12,0,0,9,287,0,0,5,6,12,26,108,194,19,6,3,5,378,0,0,0,4,9,15,52,169,18,0,0,5,275,0,0,0,0,0,3,31,95,14,3
LGA54900,0,0,0,0,0,0,0,16,4,0,3,4,0,0,0,0,0,0,0,0,7,21,6,55,19,4,7,0,0,0,0,0,20,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,3,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,0,0,0,9,0,0,0,5,3,3,0,0,0,0,0,0,12,0,0,0,8,3,0,0,0,0,0,0,0,8,0,0,0,6,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,5,11,0,0,0,4,3,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0
LGA54970,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,49,13,30,6,9,4,0,0,0,0,0,10,122,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,7,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,4,0,0,0,0,0,0,0,0,0,7,3,5,0,0,0,0,0,0,0,0,0,0,7,3,0,6,0,0,0,0,0,0,0,0,0,16,6,0,4,0,0,0,0,0,0,0,0,0,13,6,0,0,0,0,0,0,0,0,0,0,0,13,5,0,0,3,0,0,0,0,0,0,0,0,15,8,0,3,3,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA55040,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,20,10,30,11,8,9,3,4,0,3,3,40,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,5,0,0,0,0,0,8,0,0,0,0,5,0,0,0,0,0,0,0,10,0,0,3,4,0,0,3,0,0,0,0,0,12,4,0,0,3,0,0,0,0,0,0,0,11,20,3,0,9,3,0,0,0,0,0,0,0,8,22,0,0,0,0,0,0,0,0,0,0
LGA55110,147,307,198,35,9,9,14,817,12,22,18,31,17,28,29,17,0,0,0,40,217,151,219,517,716,687,1732,2428,1197,172,52,67,201,8143,0,0,11,9,4,21,37,33,14,0,4,15,142,6,0,5,6,3,10,8,14,4,0,0,0,64,7,8,34,33,19,35,56,20,7,3,3,14,240,4,15,91,89,33,70,85,49,4,0,4,17,466,6,18,99,117,69,122,181,90,10,0,4,13,736,4,8,39,66,39,106,275,136,10,0,0,12,689,0,4,30,72,58,136,268,175,18,0,4,7,789,0,8,17,22,42,94,250,171,19,4,6,11,637,0,0,13,33,20,97,277,231,33,8,3,22,749,0,0,10,16,20,53,227,250,33,0,4,11,627,4,0,5,12,15,52,255,370,57,14,9,0,801,0,0,4,7,17,34,142,321,71,3,6,10,622,0,0,0,0,8,10,41,156,43,10
LGA55180,9,12,0,0,0,0,0,59,4,0,14,3,0,0,0,0,0,0,0,0,25,38,88,236,219,89,82,66,11,0,5,13,39,875,0,0,6,0,0,0,0,0,0,0,0,4,15,0,3,3,4,0,0,0,0,0,0,0,0,14,4,3,11,12,4,0,0,0,0,0,0,0,45,0,0,34,18,11,12,4,0,0,0,0,0,78,0,0,28,19,6,15,9,0,0,0,0,0,78,0,0,8,26,3,11,14,0,0,0,0,4,64,0,0,10,19,4,13,10,0,0,0,0,8,60,0,4,11,25,9,14,5,4,0,0,0,4,74,0,0,11,14,10,17,17,7,0,0,0,4,77,0,0,9,7,13,17,19,4,0,0,0,5,78,0,0,3,7,3,17,30,8,0,0,0,0,76,0,0,4,5,4,15,19,0,0,0,0,4,51,0,0,0,0,3,4,8,3,0,0
LGA55250,0,0,0,0,0,0,0,6,3,5,8,0,0,0,0,0,0,0,0,4,19,32,29,46,24,5,3,0,0,0,0,0,22,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,10,0,5,0,8,0,0,0,0,0,0,0,0,10,0,4,6,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,9,0,3,4,3,0,0,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0
LGA55320,24,85,277,153,62,81,27,787,12,13,13,17,3,7,19,23,6,0,11,41,161,199,303,381,378,272,451,1445,2313,1004,372,553,257,7916,0,0,13,12,0,9,20,34,26,23,15,14,166,0,0,11,3,9,0,0,8,7,4,0,6,55,10,18,44,21,8,7,25,26,15,9,4,15,204,6,14,113,24,13,16,27,27,18,4,5,19,296,7,12,139,39,22,26,61,62,29,3,4,15,415,4,9,34,25,13,29,55,88,40,13,6,16,323,9,0,22,45,21,27,62,112,46,19,6,17,393,4,8,19,19,21,25,101,154,57,20,10,8,441,6,3,16,20,28,20,102,230,115,32,15,11,583,8,0,8,13,6,19,60,222,109,20,12,11,492,0,3,15,13,21,31,102,375,239,68,40,10,908,3,0,7,12,5,25,68,282,235,97,78,10,827,3,0,5,3,4,3,31,140,168,83
LGA55390,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,14,4,15,5,0,6,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA55460,0,0,5,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,5,11,40,36,90,65,29,22,12,18,3,0,0,34,359,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,7,7,0,0,0,0,0,0,0,0,17,0,3,15,6,0,0,0,0,0,0,0,0,33,0,3,7,8,7,6,0,0,0,0,0,0,26,0,0,3,8,5,0,0,0,0,0,0,0,17,4,0,7,3,3,5,0,0,0,0,0,0,22,0,0,9,9,3,5,0,0,0,0,0,3,39,0,0,0,3,3,7,5,0,0,0,0,4,28,0,3,4,12,5,14,5,5,0,0,0,9,49,0,0,3,11,5,10,4,6,0,0,0,11,46,0,0,0,8,0,4,0,0,0,0
LGA55530,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,14,13,0,0,0,0,0,0,5,7,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA55600,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,6,6,18,20,55,53,21,21,4,5,0,0,0,19,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,3,0,0,0,0,0,0,6,0,0,9,6,0,3,0,0,0,0,0,0,16,0,0,8,3,0,0,0,0,0,0,0,0,12,0,0,6,3,0,3,0,0,0,0,0,0,13,0,0,0,0,6,4,0,0,0,0,0,0,14,0,0,0,4,3,0,0,0,0,0,0,0,8,0,3,9,5,0,10,3,0,0,0,0,0,29,0,0,8,0,7,4,3,0,0,0,0,0,21,0,0,8,4,4,11,6,0,0,0,0,3,30,0,0,0,5,4,8,6,0,0,0,0,0,24,0,0,0,0,0,0,5,6,0,0
LGA55670,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,3,6,0,19,22,9,4,0,0,0,0,0,10,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,0,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,6,3,4,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0
LGA55740,7,17,21,14,7,23,0,103,9,4,3,0,0,4,0,4,4,4,0,3,32,44,75,78,73,102,174,204,213,94,41,121,30,1255,0,0,5,0,0,4,8,5,0,0,3,0,32,0,0,0,4,0,4,3,0,0,0,0,0,10,5,0,9,4,0,4,4,4,0,0,5,0,33,0,4,25,11,6,14,10,0,0,0,0,0,66,4,7,36,11,5,17,10,9,0,0,0,0,97,0,0,4,7,5,17,23,7,0,0,0,0,71,0,0,4,8,3,12,19,9,0,5,0,6,63,0,0,5,0,7,10,18,20,3,0,0,3,65,0,0,5,0,4,21,19,17,7,6,3,3,89,0,0,0,4,3,21,15,13,4,0,3,0,59,0,0,0,3,0,21,34,35,9,4,13,0,111,0,0,0,0,0,9,21,27,9,8,10,0,89,0,0,0,0,0,0,5,22,5,13
LGA55810,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,4,13,4,27,27,5,5,0,4,0,0,0,15,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,8,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0
LGA55880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,9,5,0,0,0,0,0,0,0,0,5,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0
LGA55950,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,15,9,9,6,0,0,0,0,0,0,0,10,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,6,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,6,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0
LGA56090,8,32,47,24,13,3,9,156,4,8,6,3,0,3,11,5,3,0,0,13,58,38,45,113,115,83,143,361,385,141,28,19,74,1549,0,3,4,0,0,4,0,5,4,0,0,6,31,0,0,3,0,0,0,4,0,0,0,0,0,7,0,0,10,4,4,0,5,8,7,0,0,3,47,3,0,20,7,0,8,6,5,0,0,0,0,55,3,0,29,6,6,12,17,15,0,0,0,5,100,3,0,7,7,6,12,20,25,0,0,0,3,90,0,0,9,11,4,14,30,30,0,0,0,3,98,0,0,0,6,7,13,20,37,5,5,6,0,98,0,0,4,5,0,11,29,59,18,0,0,0,140,0,0,0,6,4,0,17,63,14,5,7,0,122,0,0,0,6,7,8,30,77,44,10,7,3,183,0,0,0,3,9,6,22,52,42,8,0,3,145,0,0,0,4,0,6,9,30,28,7
LGA56160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA56230,21,28,22,9,0,0,4,99,0,3,4,0,6,0,7,3,0,0,0,13,36,17,17,110,118,118,165,244,144,25,9,7,53,1029,0,0,0,0,0,3,6,3,0,0,0,0,19,0,0,0,0,0,0,3,0,0,0,0,0,11,0,0,9,5,3,11,14,8,0,0,3,0,49,0,0,4,10,8,8,7,8,0,0,0,0,53,4,0,14,21,17,20,20,10,0,0,0,0,113,3,0,4,10,4,14,30,23,0,0,0,0,92,0,0,0,10,9,11,37,24,7,0,0,3,111,4,0,0,3,7,16,31,29,3,0,0,0,98,0,0,5,10,5,9,28,29,3,0,3,4,102,3,0,0,3,0,7,31,37,10,0,0,0,90,0,0,0,3,0,7,34,42,3,4,0,6,107,0,0,0,3,0,4,29,43,3,3,0,4,102,0,0,0,0,0,0,9,17,9,0
LGA56300,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,17,33,28,17,4,0,0,0,0,8,8,114,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,3,6,3,3,4,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,6,0,6,3,0,0,0,0,0,13,0,0,0,5,0,0,4,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,0,5,0,0,3,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0
LGA56370,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,3,11,4,30,15,0,0,0,0,0,0,0,10,76,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,3,0,3,0,0,0,0,0,0,4,9,0,0,4,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,4,3,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0
LGA56460,6,3,0,0,0,0,0,38,0,0,3,4,3,0,0,0,0,0,0,5,17,11,56,110,127,62,73,41,15,5,3,3,37,555,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,3,0,0,0,0,0,0,0,0,5,4,0,0,5,3,5,0,0,0,0,0,0,0,19,0,0,10,0,5,4,3,0,0,0,0,0,25,0,4,13,12,7,10,3,0,0,0,0,5,47,0,0,0,5,7,11,3,0,0,0,0,0,30,0,0,3,14,14,10,5,0,0,0,0,10,60,0,0,4,5,9,13,8,0,0,0,0,4,40,0,0,4,0,14,17,7,3,0,0,0,5,50,0,0,3,8,8,13,13,4,0,0,0,0,44,0,0,0,8,11,16,22,5,0,0,0,0,63,0,0,0,4,10,10,10,7,4,0,0,0,49,0,0,0,3,5,3,7,3,0,0
LGA56580,7,11,29,22,15,72,8,201,0,0,0,0,0,0,4,5,3,0,3,10,34,39,51,64,67,72,80,115,251,213,127,474,68,1621,0,4,0,0,0,0,4,10,18,8,8,0,51,0,0,0,0,0,0,0,5,3,0,5,4,14,4,3,5,0,0,0,0,3,0,3,5,0,30,4,7,20,6,0,0,4,8,0,0,4,3,54,0,10,24,7,0,0,0,5,5,9,0,5,67,0,6,5,3,0,0,0,16,4,5,8,0,53,0,5,5,5,0,3,3,12,9,9,10,0,49,0,0,0,0,0,8,3,6,14,12,10,0,51,0,0,0,6,0,9,6,6,18,6,21,3,78,0,0,0,6,0,7,7,19,16,9,11,7,75,0,0,0,0,0,3,3,33,27,18,26,6,119,0,0,6,0,6,5,4,22,25,22,30,3,119,0,0,0,0,5,6,10,3,23,8
LGA56620,0,0,0,0,0,0,5,12,12,0,5,0,0,0,0,0,0,0,0,0,14,209,7,5,0,0,0,0,0,0,0,0,28,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,3,20,11,0,0,0,0,0,0,0,0,0,0,4,13,23,0,0,0,0,0,0,0,0,0,0,3,24,18,3,0,0,0,0,0,0,0,0,0,0,21,14,0,0,0,0,0,0,0,0,0,0,5,18,14,0,0,0,0,0,0,0,0,0,0,0,17,9,0,0,0,0,0,0,0,0,0,0,10,22,13,0,0,0,0,0,0,0,0,0,0,9,18,3,0,0,0,0,0,0,0,0,0
LGA56730,17,7,11,5,0,0,3,80,5,8,5,3,0,5,0,0,0,0,0,9,36,43,89,153,159,110,147,97,43,9,0,3,34,896,0,0,4,3,0,0,0,0,0,0,0,0,13,0,0,9,0,0,0,0,0,0,0,0,0,10,4,4,8,8,5,0,0,0,0,0,0,0,42,0,8,21,12,4,7,5,0,0,0,0,0,65,4,0,29,18,9,12,12,4,0,0,0,0,84,0,0,12,10,15,10,16,0,0,0,0,0,70,0,0,15,15,9,16,12,4,0,0,0,5,79,0,0,5,8,5,18,20,7,0,0,0,0,63,0,0,8,11,11,21,24,17,5,4,0,5,88,0,0,3,6,3,18,24,12,0,0,0,0,73,0,0,3,11,12,23,23,17,5,3,0,8,104,0,0,3,4,12,14,28,17,5,0,0,0,85,0,0,6,0,6,3,16,4,0,0
LGA56790,5,10,0,0,0,0,0,29,0,0,0,0,3,0,4,0,0,0,0,3,15,7,18,59,79,44,40,43,15,9,5,8,23,356,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,9,4,4,7,0,5,6,0,0,0,0,0,0,26,0,0,0,7,7,6,0,0,0,0,0,0,29,0,0,0,8,3,10,0,0,0,0,0,4,33,0,0,4,8,13,9,8,3,0,0,4,0,46,0,0,0,8,4,0,3,0,5,0,0,0,20,0,0,0,9,3,10,4,0,0,0,0,3,23,0,4,5,5,4,4,6,4,0,0,6,5,37,4,0,3,5,0,6,7,0,0,0,0,7,30,0,0,0,3,0,3,11,0,0,0,8,0,28,0,0,0,5,0,0,0,0,0,0
LGA56860,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,14,4,5,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA56930,0,0,3,4,0,6,0,10,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,6,0,9,16,11,7,13,5,32,6,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,5,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,3,0,0,0,0,0,11,0,0,0,0,0,4,0,0,0,0,0,0,5,0,0,0,0,0,0,3,3,0,0,4,0,14,0,0,0,0,0,0,3,0,0,3,3,0,8,0,0,0,0,0,0,0,0,0,0
LGA57000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,12,3,0,0,0,0,0,0,10,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA57080,18,38,89,88,41,52,18,357,4,10,0,0,3,8,30,40,57,41,60,48,307,93,141,123,129,113,374,592,1167,1246,674,685,231,5577,0,0,7,7,0,14,53,88,49,40,30,8,305,0,0,4,7,4,6,11,18,18,4,0,6,87,17,13,24,16,7,14,8,26,27,7,4,3,177,4,6,68,23,5,11,24,28,21,5,6,8,217,3,3,76,33,7,27,30,30,21,15,4,4,251,0,0,15,16,7,25,47,44,23,8,13,6,211,0,3,13,12,15,26,58,68,38,11,11,6,256,0,0,12,10,7,36,69,103,57,25,8,9,329,0,0,9,5,7,25,68,143,79,26,34,18,422,3,0,0,10,7,24,73,139,81,26,39,11,405,0,3,4,14,8,22,93,295,203,74,58,22,798,0,0,4,3,4,18,55,263,249,117,108,19,845,0,0,6,0,0,4,11,87,132,48
LGA57140,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,8,12,6,31,27,12,6,0,0,0,0,0,4,108,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,5,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,4,0,6,0,6,0,3,0,0,0,0,0,0,12,0,0,4,6,3,0,0,0,0,0,0,0,9,0,0,0,3,0,0,0,5,0,0,0,0,10,0,0,0,5,3,3,0,0,0,0,0,0,14,0,0,0,0,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0
LGA57210,3,3,0,0,0,0,0,14,0,0,0,5,0,0,0,0,0,0,0,0,14,29,16,73,110,71,43,14,0,0,0,0,23,367,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,3,0,4,3,0,0,0,0,0,0,15,0,0,8,7,0,4,0,0,0,0,0,0,21,0,0,9,19,12,5,0,0,0,0,0,3,54,0,0,5,15,8,9,0,0,0,0,0,0,37,0,0,0,10,8,11,0,0,0,0,0,0,36,3,0,0,10,15,9,0,3,0,0,0,0,42,0,0,0,5,5,12,0,0,0,0,0,0,33,0,0,5,6,8,5,6,0,0,0,0,0,20,0,0,0,4,8,6,4,0,0,0,0,0,24,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,4,4,0,0,0
LGA57280,7,6,6,9,3,61,34,247,9,0,3,0,3,0,0,0,0,0,3,26,58,405,129,550,154,55,61,56,28,26,26,536,350,2384,9,0,0,0,0,0,4,3,0,0,4,0,24,0,3,0,0,0,0,0,0,0,0,0,0,11,7,5,8,7,3,0,0,6,0,0,0,4,38,5,5,17,10,4,0,0,4,0,0,0,4,47,8,4,21,9,0,3,7,3,0,0,0,3,53,5,0,0,6,4,6,7,4,0,0,0,3,37,0,3,10,9,9,8,8,6,0,6,0,3,59,9,0,0,8,8,15,14,8,0,0,3,3,76,7,0,17,15,8,25,21,16,12,0,4,13,133,5,0,5,14,10,20,21,19,6,0,0,8,120,28,4,48,26,28,39,35,54,35,22,25,37,372,73,12,59,16,21,26,47,66,40,19,41,54,481,23,0,30,13,3,21,20,33,21,14
LGA57350,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,9,23,17,21,26,0,0,0,0,0,0,0,6,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,0,0,0,0,0,0,9,4,3,0,0,0,0,0,0,0,0,0,0,11,4,0,5,0,0,0,0,0,0,0,0,0,7,6,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,4,4,0,4,0,3,5,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0
LGA57420,4,0,4,0,0,0,3,20,0,0,0,0,0,4,0,0,0,0,0,4,10,8,3,41,38,25,94,38,27,0,0,5,26,303,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,12,0,0,0,0,7,3,0,0,0,0,0,0,16,0,0,3,4,3,0,0,0,0,0,0,0,13,0,0,5,3,3,0,0,0,0,0,0,7,15,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,5,5,7,0,3,0,0,0,0,0,16,4,0,0,0,0,5,4,0,0,0,0,3,16,0,0,4,0,5,4,3,3,0,0,0,3,24,0,0,0,0,4,11,8,0,0,0,0,0,23,0,0,0,0,3,3,4,3,0,0
LGA57490,112,339,357,38,6,11,36,1044,11,18,21,22,19,27,40,29,0,3,8,65,268,148,289,473,684,744,1496,3187,2339,285,66,89,283,10081,0,0,7,6,3,16,46,52,9,3,0,15,156,3,0,6,7,0,4,15,16,3,0,0,3,66,13,10,30,27,15,33,67,54,7,0,0,16,270,4,12,78,50,25,51,93,53,3,0,0,19,391,7,14,120,77,52,103,160,128,11,0,0,26,699,6,3,32,44,51,113,264,195,17,0,7,12,734,0,5,26,84,41,94,255,264,12,0,3,19,803,0,0,25,36,28,80,263,350,25,4,7,12,837,0,0,18,22,24,109,320,469,46,4,4,18,1034,3,0,9,10,10,77,227,493,48,7,5,10,898,3,0,4,8,20,91,309,755,120,23,12,16,1356,0,0,3,3,12,71,208,589,130,18,7,16,1054,0,0,0,3,6,29,63,267,83,14
LGA57630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57700,10,6,28,12,3,0,7,87,0,0,0,0,0,0,3,3,0,0,0,0,8,5,13,42,46,38,85,136,261,52,21,9,43,749,0,0,0,0,0,0,6,7,3,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,8,6,0,0,0,16,0,0,0,5,0,0,4,6,0,4,0,0,22,0,0,5,11,0,0,5,14,3,0,0,0,42,0,0,3,6,0,10,16,17,5,0,0,0,54,0,0,0,4,5,10,7,38,8,0,0,0,80,0,0,3,0,3,5,15,39,17,0,0,0,87,0,0,0,4,3,3,13,57,11,0,0,0,100,0,0,3,6,0,3,21,58,10,0,0,0,107,0,0,0,3,0,3,18,106,22,3,3,8,171,0,0,0,0,3,3,14,76,19,8,3,4,127,0,0,0,3,0,0,4,29,15,0
LGA57770,0,0,0,0,0,0,0,10,0,0,0,0,4,0,0,0,0,0,0,9,19,12,10,38,47,28,16,7,8,5,6,18,41,227,4,0,0,3,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,6,4,0,0,0,0,0,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,6,6,0,0,0,0,0,0,4,16,4,0,0,6,0,0,4,0,0,0,6,0,9,0,0,0,7,4,5,0,0,0,0,0,6,18,0,0,0,4,3,8,0,0,0,0,0,0,20,0,0,0,0,0,5,5,0,0,0,0,5,21,0,0,0,3,0,0,4,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0
LGA57840,19,107,150,105,30,39,21,539,10,14,11,0,3,10,25,31,13,10,26,29,169,181,237,358,284,218,400,1457,1632,708,295,450,193,6416,5,5,20,4,5,4,30,50,22,8,17,17,184,0,4,0,3,0,6,4,6,6,0,3,3,45,23,15,34,12,11,10,22,28,14,0,0,16,187,5,10,75,20,8,11,21,33,4,3,0,8,206,4,15,99,34,11,21,48,38,11,0,0,13,300,0,10,26,33,12,22,63,52,14,0,7,10,249,0,10,15,47,10,22,71,80,27,3,5,7,299,5,0,12,12,21,28,105,122,40,10,13,10,364,0,0,12,27,4,28,131,162,56,18,20,8,466,5,0,3,19,9,25,124,159,59,17,11,3,435,0,0,6,9,7,18,160,296,123,37,28,9,696,3,0,8,7,5,19,104,289,142,62,51,8,695,0,0,0,5,9,6,32,117,76,36
LGA57910,154,468,682,248,128,104,82,2098,37,67,46,42,12,55,109,77,30,6,23,157,660,745,1261,1419,1306,1129,2646,6646,6328,1778,700,801,821,25593,5,11,45,24,11,23,103,117,40,14,14,42,448,21,7,35,17,11,24,30,52,13,0,6,21,232,73,61,174,73,36,54,104,91,19,6,5,43,742,46,75,488,132,57,85,159,121,10,3,3,51,1233,24,46,513,223,76,113,295,220,41,8,13,58,1639,18,10,110,161,65,140,371,338,72,14,11,26,1341,20,18,98,149,82,163,447,459,76,25,24,33,1594,11,15,40,70,89,200,593,565,132,23,24,43,1800,12,8,48,75,69,204,722,917,216,44,39,55,2410,5,0,25,37,36,120,587,848,232,60,39,44,2035,9,0,22,49,48,164,744,1371,442,120,84,43,3090,3,0,27,34,32,86,437,1237,560,186,136,46,2774,7,0,5,18,13,33,173,612,355,120
LGA57980,14,13,41,52,46,40,11,234,12,8,4,0,4,0,6,10,5,0,7,22,81,91,160,124,117,117,197,365,454,394,261,359,97,2748,4,0,0,0,5,8,9,11,7,5,7,9,72,0,4,4,0,0,0,6,4,3,0,3,0,29,18,4,14,6,8,7,12,8,3,0,0,3,79,0,16,64,15,6,7,12,7,0,0,6,0,135,3,8,64,25,3,16,23,8,3,0,0,0,157,0,4,11,11,5,24,17,16,4,0,3,0,97,0,0,12,9,4,12,18,16,6,5,4,0,96,0,3,3,3,3,8,26,19,20,8,3,0,101,0,0,5,5,9,14,42,46,30,14,12,3,184,0,0,4,0,4,16,29,51,23,15,6,3,144,0,0,0,6,0,18,44,93,64,42,29,8,307,0,0,0,4,3,6,35,79,79,50,44,0,310,0,0,0,0,0,4,9,37,56,28
LGA58050,55,184,298,80,15,12,42,785,18,23,22,21,16,6,27,26,3,0,8,55,226,260,409,538,500,363,602,2131,2481,448,99,86,325,8229,0,0,8,9,5,8,27,48,12,0,0,16,143,4,5,18,9,4,5,13,25,0,0,0,9,92,33,20,72,24,16,9,38,48,11,0,4,16,297,4,19,143,51,10,33,66,69,11,0,7,18,425,13,19,170,86,36,43,98,134,17,3,0,19,634,3,8,50,52,31,47,160,198,24,0,0,15,587,4,7,43,73,44,58,140,244,40,3,3,20,687,5,8,15,27,32,59,213,330,46,0,10,15,764,5,0,16,41,36,48,243,427,80,9,13,15,930,3,0,7,21,11,22,201,434,73,3,14,17,822,3,4,6,17,16,41,185,625,190,27,8,15,1139,0,0,7,20,13,28,131,483,161,33,12,23,919,3,0,9,4,8,11,42,234,127,22
LGA58190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,5,7,0,0,0,0,0,0,0,0,3,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA58260,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,10,4,14,14,5,0,0,0,0,0,0,10,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3,8,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,5,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA58330,0,15,7,0,0,0,5,28,0,0,0,0,0,0,0,0,0,0,0,0,3,4,14,25,36,22,44,44,28,5,0,5,13,233,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,4,3,3,0,0,0,0,10,0,0,9,3,0,4,6,0,0,0,0,0,24,0,0,5,0,4,5,4,3,0,0,0,0,18,0,0,0,0,3,3,0,0,0,0,0,0,13,0,0,3,0,0,7,3,5,0,0,0,0,16,0,0,0,4,5,0,5,7,0,0,0,0,19,0,0,0,0,4,0,5,6,0,0,0,0,17,0,0,0,0,3,4,3,12,0,0,0,0,25,0,0,0,0,0,4,5,7,0,0,0,0,19,0,0,0,0,0,0,0,5,0,0
LGA58400,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,3,8,0,0,0,0,0,0,0,6,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58470,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,29,0,0,0,0,0,0,0,0,0,0,4,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58510,25,98,154,52,24,16,19,450,6,18,20,6,0,10,30,17,8,4,4,36,161,170,319,385,280,274,571,1351,1526,449,178,191,196,5888,4,0,8,4,3,13,32,23,20,10,4,9,133,4,0,9,0,0,3,7,9,3,0,0,8,53,21,18,34,15,9,24,22,22,12,0,0,13,178,9,13,89,25,19,27,26,19,3,0,3,17,262,5,17,149,56,20,33,42,53,17,6,4,13,412,8,0,32,46,16,39,60,51,18,4,0,14,285,6,5,18,32,17,51,68,98,33,7,5,6,351,0,0,13,22,22,74,108,120,29,6,0,12,415,0,5,11,30,17,76,108,176,49,13,9,14,513,0,0,10,12,19,47,109,160,65,17,3,9,448,0,0,12,12,17,62,134,335,125,29,22,10,763,0,0,3,8,14,14,108,270,152,38,23,9,645,5,0,3,4,4,5,34,131,94,37
LGA58540,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,7,15,11,27,6,3,4,0,0,0,0,0,6,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,4,6,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,8,0,3,7,0,0,0,0,0,0,0,0,5,9,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,4,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0
LGA58570,31,71,161,157,65,41,19,573,9,8,8,4,0,12,7,22,16,6,8,12,105,115,184,185,246,225,474,831,1473,920,304,252,147,5357,0,4,0,0,7,4,17,21,19,11,0,11,97,0,4,0,6,4,0,4,10,0,0,3,0,43,13,18,20,24,0,9,10,11,11,5,0,0,126,9,10,63,21,13,21,15,19,6,4,3,10,176,3,13,70,26,13,32,25,30,19,6,3,7,246,0,0,8,18,15,31,38,34,21,3,0,3,180,0,0,8,22,17,33,63,48,19,10,3,3,228,0,0,10,10,26,36,73,81,38,12,8,0,298,0,0,4,6,17,41,85,128,62,31,3,13,374,0,0,4,6,9,30,62,139,77,22,18,3,363,0,0,4,8,6,35,106,245,165,63,28,12,665,0,0,0,5,5,26,72,251,250,78,27,16,732,0,0,4,3,3,3,22,102,171,57
LGA58610,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,10,14,17,45,55,6,0,3,0,0,0,0,8,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,13,3,0,0,0,0,0,0,0,29,0,0,3,5,0,3,0,0,0,0,0,0,18,0,3,4,5,3,6,0,0,0,0,0,0,17,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,5,3,0,0,0,0,0,0,0,13,0,0,0,0,0,10,0,0,0,0,0,5,14,0,0,0,0,4,0,4,0,0,0,0,4,18,0,0,3,6,3,0,4,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0
LGA58680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58760,47,209,533,110,40,20,65,1143,16,12,20,16,9,6,29,44,11,7,4,57,211,197,342,560,449,326,627,2512,4247,957,209,186,336,10943,0,0,15,11,7,11,44,71,24,4,7,26,224,4,5,11,9,5,6,5,30,7,0,0,6,91,24,18,80,37,9,13,58,70,16,0,5,14,343,8,17,117,49,22,16,92,100,17,4,0,23,462,15,9,130,86,39,49,151,185,28,8,6,20,726,9,5,42,60,32,45,258,308,45,12,5,16,836,7,4,28,90,50,55,260,395,71,10,4,23,996,0,4,25,27,39,49,284,473,86,18,11,20,1040,0,0,13,31,26,51,262,642,153,14,13,17,1212,5,0,10,20,20,26,212,623,171,24,13,14,1138,4,0,10,22,17,47,266,951,338,59,29,28,1768,0,0,12,5,8,29,171,766,382,96,23,15,1510,0,0,4,4,5,13,50,331,229,50
LGA58820,3,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,6,5,7,36,57,54,59,31,16,0,0,0,6,277,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,3,5,0,0,0,0,0,0,12,0,0,4,4,4,12,0,3,0,0,3,0,26,0,0,0,3,4,3,9,4,0,0,0,0,24,0,0,5,3,5,4,9,8,0,0,0,0,34,0,0,0,3,3,3,5,0,0,0,0,0,18,0,0,0,0,6,3,6,7,0,0,0,0,23,0,0,0,0,0,3,4,3,0,0,0,0,20,0,0,0,0,3,3,8,4,0,0,0,0,27,0,0,0,0,4,3,3,4,0,0,0,0,20,0,0,0,0,0,0,5,0,0,0
LGA58890,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,20,19,5,0,0,0,0,0,0,8,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,3,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,5,6,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59030,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,3,0,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59100,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,14,4,13,12,0,0,0,0,0,0,0,12,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,9,3,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA59170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,11,6,23,13,9,10,3,0,0,0,0,3,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0
LGA59250,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,17,6,16,4,3,4,4,0,0,0,0,4,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59310,0,0,0,0,0,0,3,20,0,0,0,0,0,0,0,0,0,0,0,0,0,13,20,41,36,14,8,0,0,0,0,0,15,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,10,0,0,4,0,0,0,0,0,0,12,0,0,5,3,0,0,0,0,0,0,0,0,8,0,0,4,0,3,0,0,0,0,0,0,0,8,0,0,7,0,3,0,0,0,0,0,0,0,13,0,0,8,0,4,0,0,0,0,0,0,0,15,0,0,0,0,6,3,0,0,0,0,0,0,16,0,0,0,8,3,6,0,0,0,0,0,0,24,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0
LGA59320,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,7,3,3,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,26,11,4,0,0,0,0,0,0,5,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,11,0,0,5,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0
LGA59340,4,8,12,11,9,11,22,166,9,0,10,0,3,0,4,6,0,0,4,19,56,254,117,243,113,58,65,79,57,71,68,117,192,1433,0,0,4,0,0,0,0,0,0,0,0,3,15,4,0,0,0,0,0,0,0,0,0,0,0,9,9,0,14,4,0,0,0,0,0,0,0,3,30,3,0,13,4,0,0,0,0,4,0,0,0,31,14,15,10,15,3,4,0,0,0,0,0,0,66,3,8,3,4,3,3,3,3,0,0,0,0,43,8,10,18,15,0,7,5,3,0,0,0,3,76,9,3,18,14,7,14,8,13,0,0,4,10,101,5,14,18,5,10,9,18,15,8,3,4,3,109,7,0,21,16,12,3,8,12,12,0,6,3,104,3,8,29,25,11,16,9,30,18,5,8,16,168,0,3,9,25,11,15,17,20,20,14,8,19,167,0,0,8,12,12,4,6,26,13,4
LGA59350,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,5,0,0,0,0,0,0,0,3,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59360,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,5,16,9,38,26,13,8,0,5,0,0,0,13,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,3,4,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,11,0,0,3,3,0,0,0,0,0,0,0,0,13,0,0,0,0,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0
LGA59370,0,9,4,0,0,0,5,25,0,0,0,0,0,0,0,0,0,0,0,0,5,13,16,28,26,28,36,47,19,0,0,0,18,238,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,5,3,5,0,0,0,0,0,0,0,18,0,8,7,6,0,9,4,0,0,0,0,4,35,0,0,5,0,3,5,3,0,0,0,0,0,20,0,0,4,4,4,9,11,3,0,0,0,0,28,0,0,0,0,0,3,10,0,0,0,0,0,19,0,0,3,3,0,0,5,0,0,0,0,0,17,0,0,0,0,0,0,10,0,0,0,0,0,16,0,0,0,0,4,9,14,8,0,0,0,0,27,0,0,0,0,3,8,5,7,0,0,0,0,22,0,0,0,0,0,0,8,0,0,0
LGA59499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA60210,8,3,0,0,0,0,0,30,0,0,0,0,5,0,0,0,0,0,0,0,12,39,45,99,176,87,68,10,0,0,0,0,19,548,0,0,0,0,0,3,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,4,9,0,0,5,3,3,0,0,0,0,0,0,28,4,7,19,11,8,8,0,0,0,0,0,0,51,4,6,21,22,18,9,0,0,0,0,0,5,92,0,0,8,14,22,10,0,0,0,0,0,5,57,0,0,3,6,22,14,5,0,0,0,0,5,59,4,0,4,12,10,11,3,0,0,0,0,0,49,0,0,0,10,15,15,3,0,0,0,0,5,53,3,0,4,3,11,8,4,3,0,0,0,0,31,0,0,0,4,5,14,8,0,0,0,0,0,25,3,4,0,0,5,6,4,4,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0
LGA60410,20,14,5,0,0,0,3,103,3,15,8,13,8,6,5,3,0,0,3,13,79,80,255,266,321,208,278,171,52,9,5,5,73,1718,0,0,0,5,4,4,0,0,0,0,0,9,26,3,0,0,5,8,0,0,5,0,0,0,4,19,7,6,22,20,6,9,3,0,0,0,0,9,86,4,18,54,45,16,32,13,0,0,0,0,7,175,3,24,40,58,29,41,10,4,0,0,0,8,218,3,3,16,46,28,41,34,5,0,0,0,9,183,0,4,15,58,45,59,30,6,0,0,0,5,230,4,0,6,39,37,68,39,8,0,0,0,3,212,6,0,5,22,40,50,28,8,0,0,0,0,165,0,0,4,13,36,36,36,11,0,0,0,5,145,0,0,0,11,19,24,50,17,4,0,0,4,129,0,0,3,6,3,17,18,15,7,0,0,4,65,0,0,0,4,3,6,6,6,0,0
LGA60610,27,20,5,0,0,0,4,131,7,22,11,11,7,4,4,5,0,0,0,6,77,95,239,422,686,313,350,137,26,9,3,9,66,2342,0,0,10,7,0,3,0,0,0,0,0,3,28,3,3,4,7,4,3,0,0,0,0,0,0,23,15,9,41,46,19,5,0,0,0,0,0,5,140,0,20,57,82,26,12,5,0,0,0,0,7,216,6,29,59,91,64,58,18,0,0,0,0,7,320,5,4,38,93,50,52,9,0,0,0,0,5,261,0,3,29,78,76,73,36,0,0,0,0,3,299,0,0,7,54,66,62,19,0,0,0,0,6,223,0,0,8,53,52,83,27,7,0,0,0,0,239,0,0,10,22,33,48,31,7,0,0,0,0,151,0,0,4,25,22,33,31,9,0,0,0,0,138,0,0,0,8,7,22,23,3,0,0,0,6,74,0,0,0,0,4,11,9,3,0,0
LGA60810,12,12,4,0,0,0,12,96,0,12,12,9,7,7,0,0,0,0,0,12,57,72,187,287,394,246,319,149,21,5,0,7,72,1762,0,0,6,0,6,6,0,0,0,0,0,0,16,0,0,7,0,0,0,0,0,0,0,0,0,12,11,9,20,16,9,8,0,0,0,0,0,0,84,9,14,51,40,18,12,4,0,0,0,0,7,153,14,19,57,68,43,33,6,0,0,0,3,8,258,0,5,13,52,56,46,18,3,0,0,0,6,205,4,0,17,48,46,69,21,3,0,0,0,3,211,3,0,20,48,40,56,34,9,0,0,0,4,204,0,0,5,30,31,49,31,4,0,0,0,5,161,0,0,9,14,13,49,34,8,0,0,0,0,122,0,0,8,8,21,46,52,15,0,0,0,7,145,0,0,7,12,11,21,24,10,0,0,0,0,84,0,0,3,0,0,7,3,8,0,0
LGA61010,0,0,0,0,0,0,0,11,0,0,0,0,0,4,0,0,0,0,0,4,8,33,14,38,40,11,8,5,0,0,0,0,20,163,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,8,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,4,3,0,0,0,0,0,0,15,0,0,0,5,0,0,0,0,0,0,0,0,11,0,0,0,3,5,6,0,0,0,0,0,0,21,3,0,7,5,0,0,3,0,0,0,0,0,20,9,0,3,0,0,0,0,0,0,0,0,0,23,0,0,7,0,0,3,0,0,0,0,0,0,15,3,0,5,3,0,0,0,0,0,0,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0
LGA61210,0,0,0,0,0,0,0,25,4,3,3,4,3,0,0,0,0,0,0,5,19,69,55,151,196,63,35,4,0,0,0,3,39,620,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,8,7,5,0,0,0,0,0,0,0,23,0,8,9,12,8,0,0,0,0,0,0,0,41,4,14,28,21,4,3,0,0,0,0,0,5,76,3,3,7,16,12,11,3,0,0,0,0,5,55,0,4,12,29,13,15,0,0,0,0,0,4,73,0,0,12,23,11,14,3,0,0,0,0,0,68,0,0,12,26,21,21,8,0,0,0,0,10,78,3,0,7,14,8,16,0,0,0,0,0,3,60,0,0,3,16,10,21,0,0,0,0,0,12,56,0,0,3,4,8,11,11,0,0,0,0,5,35,0,0,0,0,5,6,0,0,0,0
LGA61410,50,69,37,12,3,6,5,257,11,25,11,14,8,13,13,5,0,0,0,32,129,128,399,453,460,362,815,881,427,90,17,32,143,4204,3,0,7,3,0,4,12,5,0,0,0,4,48,0,6,3,0,4,5,7,0,0,0,0,0,31,31,22,48,19,14,20,12,0,0,0,0,6,180,9,46,85,47,28,40,31,3,0,0,4,13,301,5,51,111,78,52,85,58,17,4,0,5,12,470,9,9,40,63,42,97,90,23,0,0,0,9,379,0,6,29,79,40,95,132,44,6,0,0,11,443,3,5,13,43,55,109,159,49,5,0,0,7,455,7,0,18,41,38,113,196,73,7,0,0,4,497,0,0,15,18,15,92,124,82,13,0,0,3,363,4,0,0,17,18,80,171,141,13,5,5,8,465,0,0,0,12,9,29,99,119,23,6,0,0,311,4,0,0,0,5,10,42,61,13,0
LGA61510,16,6,0,0,0,0,0,40,3,3,0,0,4,4,0,0,0,0,3,8,27,49,77,105,162,125,184,57,7,0,0,8,23,801,6,0,0,0,0,6,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0,0,0,0,10,11,5,3,12,0,8,7,0,0,0,0,0,46,0,7,24,21,14,16,3,0,0,0,0,0,90,0,11,30,29,18,19,7,0,0,0,0,5,119,4,0,9,27,13,30,13,3,0,0,0,0,101,4,0,9,19,13,30,9,0,0,0,0,0,95,7,0,3,18,11,27,17,0,0,0,0,7,94,0,0,6,6,11,27,13,4,0,0,0,0,81,0,6,0,11,8,25,15,7,0,0,0,0,67,0,0,5,6,8,21,10,4,0,0,0,3,61,0,0,0,0,5,9,5,0,0,0,0,0,19,0,0,0,0,3,0,4,6,0,0
LGA61610,29,26,6,5,0,0,10,152,7,17,13,16,0,8,0,0,0,0,0,21,87,152,322,434,613,412,638,245,43,8,0,7,102,2968,0,0,0,4,6,8,10,0,0,0,0,0,27,3,0,9,3,4,0,3,6,0,0,0,0,39,29,22,40,19,17,24,3,0,0,0,0,9,172,4,27,67,63,34,36,12,0,0,0,0,11,264,12,44,93,90,57,93,15,8,0,0,0,10,426,8,3,37,80,61,118,26,3,0,0,3,14,353,3,3,40,94,73,135,44,5,0,0,0,0,398,0,3,26,45,49,122,49,5,0,0,0,11,305,3,0,15,24,49,143,68,8,0,0,0,8,321,0,0,7,25,50,80,49,5,0,0,0,0,222,0,0,6,25,39,77,72,19,0,0,0,0,242,0,0,5,9,14,30,31,10,0,0,0,6,104,0,0,0,0,3,14,12,0,0,0
LGA61810,6,0,3,0,0,0,0,34,3,3,0,0,0,0,0,0,0,0,0,3,13,59,59,100,154,63,44,14,4,0,0,5,32,533,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,4,5,0,0,0,0,0,0,0,0,5,6,4,3,9,3,4,0,0,0,0,0,0,28,0,3,8,11,5,5,0,0,0,0,0,0,37,6,8,23,22,19,4,0,0,0,0,0,3,94,4,5,8,27,14,8,7,0,0,0,0,4,74,5,3,11,13,6,7,0,0,0,0,0,0,54,3,5,9,10,7,12,0,0,0,0,0,0,44,4,0,0,10,7,11,3,0,0,0,0,0,40,0,3,4,4,9,5,0,0,0,0,0,3,24,0,0,8,7,6,11,3,0,0,0,0,4,41,0,0,0,5,3,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0
LGA62010,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,25,30,23,12,4,0,0,0,0,0,0,8,101,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,5,4,0,7,0,0,0,0,0,0,0,0,0,14,0,0,5,0,0,0,0,0,0,0,0,0,10,0,5,3,0,0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,14,5,3,11,0,0,0,0,0,0,0,0,0,17,3,3,5,0,0,0,0,0,0,0,0,0,16,0,0,3,3,0,0,0,0,0,0,0,0,11,0,0,0,4,0,0,0,0,0,0,0,5,9,0,0,3,0,0,0,0,0,0,0
LGA62210,6,3,0,0,0,0,0,31,0,7,7,6,5,4,0,0,0,0,0,3,29,43,86,133,266,119,63,28,5,3,0,9,24,783,0,0,9,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,15,4,10,15,0,0,0,0,0,0,0,0,37,0,10,16,27,20,5,0,0,0,0,0,4,81,0,8,29,53,22,8,5,0,0,0,0,3,131,0,0,16,28,20,4,0,0,0,0,0,0,74,0,0,11,37,31,13,8,0,0,0,0,0,108,0,7,7,28,19,9,4,0,0,0,0,4,72,0,0,6,22,18,9,0,0,0,0,0,4,64,0,0,4,6,6,6,3,0,0,0,0,5,29,0,0,6,8,10,11,3,6,0,0,0,0,37,0,0,3,5,0,3,8,0,0,0,0,0,23,0,0,0,0,0,4,0,0,0,0
LGA62410,6,3,0,0,0,0,0,21,0,0,6,3,0,0,0,0,0,0,0,0,15,25,15,65,122,65,51,11,5,0,0,0,21,384,0,0,0,6,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,5,0,0,3,0,0,0,0,0,11,0,0,9,11,0,0,0,0,0,0,0,0,28,3,4,7,20,15,10,0,0,0,0,0,0,54,0,0,0,16,9,9,0,0,0,0,0,3,47,0,0,4,14,20,8,0,0,0,0,0,5,50,3,0,3,9,9,9,5,0,0,0,0,5,37,0,0,3,6,7,9,3,0,0,0,0,0,34,0,0,3,7,5,4,0,0,0,0,0,0,23,0,0,0,3,6,7,3,0,0,3,0,4,33,0,0,0,0,0,9,4,0,0,0,4,0,20,0,0,0,0,0,0,0,0,0,0
LGA62610,65,82,23,0,3,0,9,295,11,42,33,24,16,9,17,4,0,0,0,41,205,168,710,690,788,539,1120,1211,249,20,9,33,184,5716,0,6,6,20,10,9,14,0,0,0,0,11,76,14,6,12,9,0,7,0,0,0,0,0,6,67,39,31,60,40,27,39,20,6,0,0,0,11,261,8,88,175,91,38,43,39,10,0,4,0,23,519,8,93,210,146,85,130,89,29,0,0,3,16,811,12,8,81,87,79,128,151,39,0,3,3,23,603,5,17,76,129,78,167,193,36,3,4,0,12,720,0,14,36,79,83,152,235,48,4,0,0,11,656,0,8,23,43,66,146,236,46,0,5,3,7,588,0,3,11,37,27,124,214,54,0,0,0,8,487,0,0,15,30,31,105,222,82,10,0,0,5,502,0,0,5,7,10,33,136,53,11,0,0,6,262,0,0,0,0,4,15,35,28,0,0
LGA62810,45,101,129,76,20,19,21,478,3,22,19,17,9,5,22,13,0,3,0,17,134,159,342,540,874,519,953,1386,1183,411,139,107,168,6773,3,3,13,15,13,37,33,34,16,9,3,9,203,11,0,10,17,6,13,17,7,10,0,4,3,94,50,19,46,45,29,32,33,17,10,4,0,11,307,9,31,90,85,44,29,31,15,8,0,0,9,351,10,56,113,106,64,87,65,29,9,7,0,12,569,3,3,42,107,63,100,85,44,16,0,5,14,491,6,10,31,75,50,89,106,60,14,7,6,5,467,0,7,22,63,53,118,131,87,18,0,0,9,509,0,0,22,52,75,126,206,132,46,5,0,7,682,5,0,12,39,38,105,181,143,28,16,11,13,591,7,4,11,28,38,111,211,243,88,22,6,8,780,0,0,12,19,15,57,120,180,115,27,11,6,555,0,0,4,0,5,8,54,117,51,16
LGA63010,14,3,5,0,0,0,0,52,0,0,4,5,3,3,0,0,0,0,0,11,32,41,45,135,198,166,182,135,20,4,0,6,41,972,0,0,0,0,5,4,7,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,8,0,0,13,5,7,0,6,0,0,0,0,3,37,0,6,6,18,20,15,7,0,0,0,0,0,74,4,3,27,28,33,29,11,0,0,0,0,6,138,3,0,6,17,20,30,25,0,0,0,0,6,104,3,0,11,18,17,35,30,6,0,0,0,0,119,3,0,6,14,15,30,30,0,0,0,0,3,108,0,0,6,9,6,25,34,0,0,0,0,0,95,0,0,6,3,7,25,29,5,3,0,0,0,88,0,0,5,10,8,26,28,7,0,0,0,0,86,0,0,5,0,4,13,18,6,0,0,0,3,54,0,0,0,0,0,0,0,0,0,0
LGA63210,4,0,0,0,0,0,0,18,0,0,0,3,0,0,0,0,0,0,0,0,9,23,27,40,82,56,51,28,3,0,0,3,11,326,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,6,18,0,5,7,3,3,6,0,0,0,0,0,0,25,4,0,13,13,4,5,0,0,0,0,0,0,42,0,0,3,6,6,9,3,0,0,0,0,0,30,0,0,4,8,10,10,9,0,0,0,0,0,43,0,0,3,7,4,7,6,0,0,0,0,4,34,0,0,0,4,8,9,3,0,0,0,0,0,28,0,0,0,3,9,6,0,0,0,0,0,0,16,0,0,0,0,4,4,4,0,0,0,0,0,13,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0
LGA63410,0,0,0,0,0,0,0,13,0,0,0,4,0,0,0,0,0,0,0,0,5,35,13,40,53,6,3,3,0,0,0,0,22,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,6,14,0,3,0,4,0,0,0,0,0,0,0,21,0,0,0,5,0,0,0,0,0,0,0,0,8,0,0,3,0,0,0,0,0,0,0,0,4,9,5,0,6,9,0,0,0,0,0,0,0,0,25,0,0,0,3,0,0,5,0,0,0,0,0,14,3,0,0,5,3,0,0,0,0,0,0,0,17,0,0,5,0,0,0,0,0,0,0,0,3,22,3,3,0,0,3,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0
LGA63610,21,53,36,7,0,0,5,154,0,5,9,6,0,3,6,5,0,0,0,4,42,41,150,207,218,156,381,760,417,71,4,16,63,2484,0,0,3,0,0,5,8,5,5,4,0,3,30,0,0,0,0,0,0,9,3,0,0,0,0,12,4,8,11,3,3,11,21,0,0,0,0,8,74,3,24,35,22,9,14,15,3,0,0,0,3,125,4,21,49,55,17,30,49,11,0,0,3,5,252,7,0,30,48,27,40,66,28,4,0,0,5,248,8,3,11,27,20,39,77,45,4,0,0,7,242,0,0,9,11,17,40,112,47,5,0,0,4,246,0,0,3,18,5,43,123,71,8,5,3,9,279,0,0,4,9,8,21,105,67,4,4,0,8,226,0,0,5,8,5,30,124,123,21,4,0,5,330,0,0,0,8,0,18,77,99,15,0,3,0,220,0,0,0,5,0,5,19,33,14,0
LGA63810,16,11,3,0,0,0,0,48,0,0,10,4,0,6,4,0,0,0,0,5,23,28,62,113,179,138,191,93,12,0,0,5,21,848,0,0,0,0,5,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,4,9,3,0,0,0,0,0,25,0,4,12,14,9,5,5,0,0,0,0,3,61,4,0,15,25,20,21,7,0,0,0,0,5,102,0,0,5,18,14,18,14,3,0,0,0,7,83,0,3,7,19,22,32,27,5,0,0,0,3,124,0,0,5,12,16,29,16,5,0,0,0,3,98,0,0,9,12,19,35,28,5,0,0,0,0,113,0,0,5,5,15,31,19,6,0,0,0,4,71,0,0,0,6,7,25,28,8,0,0,0,0,78,0,0,3,0,11,16,22,10,0,0,0,0,59,0,0,0,5,0,3,4,7,0,0
LGA64010,107,116,37,5,3,5,15,461,14,47,47,34,20,21,11,0,3,0,3,63,259,302,811,1116,1594,1033,1598,1185,319,71,16,44,233,8317,3,3,14,26,18,26,18,13,0,0,4,15,145,10,9,12,25,10,12,9,7,0,0,0,6,104,72,52,113,137,46,47,29,10,4,3,3,29,546,20,57,143,182,63,77,43,8,0,0,3,19,616,25,75,226,289,127,156,90,25,4,0,0,21,1054,12,13,91,246,151,174,132,22,0,0,0,17,864,15,15,74,206,184,227,162,31,6,0,4,15,940,5,8,60,126,145,232,180,39,4,5,4,12,823,4,3,38,96,123,256,209,54,7,0,3,20,822,7,10,17,52,77,176,236,54,3,0,7,8,642,3,0,14,37,72,177,240,83,9,0,4,6,640,0,3,7,18,35,85,142,66,9,0,3,10,388,0,0,5,6,10,22,57,29,0,0
LGA64210,11,9,5,0,0,0,0,62,5,3,8,0,3,10,0,0,0,0,0,13,45,44,86,199,273,189,275,166,46,10,0,11,48,1352,0,0,0,0,0,0,3,0,0,0,0,3,15,4,0,7,5,3,0,6,0,0,0,0,0,19,6,9,18,18,3,13,3,0,0,0,0,6,78,0,13,18,37,10,11,6,0,0,0,0,3,101,0,20,37,47,29,34,15,0,0,0,0,3,187,4,6,29,42,44,39,21,3,0,0,0,4,182,0,4,10,40,25,46,16,0,0,0,0,3,148,5,0,10,35,32,34,22,9,0,0,0,7,150,5,0,9,14,23,39,44,7,0,0,0,3,140,0,0,8,10,19,26,43,3,0,0,0,7,120,0,0,6,13,13,29,39,15,0,0,0,7,128,0,0,0,5,0,18,31,13,3,0,0,0,71,0,0,0,0,0,0,7,4,0,0
LGA64610,9,4,0,0,0,0,0,36,0,5,8,4,0,0,0,0,0,0,0,13,39,76,78,193,192,95,152,91,15,0,0,9,70,975,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,4,4,4,8,5,0,11,4,0,0,0,0,0,39,0,9,20,22,11,5,0,0,0,0,0,4,76,3,11,39,32,15,16,13,0,0,0,0,0,136,4,5,23,21,13,27,6,0,0,0,0,9,101,3,7,10,35,17,36,29,0,0,0,0,4,143,6,0,9,18,16,34,15,5,0,0,0,9,111,6,0,8,17,13,30,26,4,0,0,0,5,113,4,0,6,8,12,24,20,6,0,0,0,7,85,0,0,9,11,3,33,21,0,0,0,0,3,76,5,0,0,6,6,7,19,6,0,0,0,0,38,3,0,0,3,4,0,11,3,0,0
LGA64810,8,12,3,0,0,0,3,35,3,0,9,0,4,5,4,0,0,0,0,0,23,16,28,98,157,106,228,214,47,5,0,6,27,935,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,0,0,0,0,0,7,6,0,4,9,3,3,5,0,0,0,0,0,41,0,4,4,14,6,10,7,3,0,0,0,3,61,0,4,14,27,11,19,24,4,0,0,0,0,105,0,0,8,12,15,28,38,3,0,0,0,0,111,0,0,8,10,12,27,37,9,0,0,0,0,108,0,0,0,9,13,35,47,5,0,0,0,0,109,0,0,0,12,11,26,55,21,0,0,0,0,126,0,0,0,11,8,16,35,15,0,0,0,0,99,3,0,0,8,3,21,37,24,3,0,0,0,106,0,0,0,5,0,4,15,21,0,0,0,0,61,0,0,0,0,0,0,13,7,0,0
LGA65010,3,0,0,0,0,0,3,9,0,3,0,0,0,0,0,0,0,0,0,9,20,33,38,62,56,24,34,24,0,0,0,0,36,309,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,4,0,0,0,0,0,0,19,0,4,4,4,3,5,0,0,0,0,0,0,20,4,4,3,7,4,4,5,0,0,0,0,0,36,0,0,0,5,4,5,4,0,0,0,0,0,20,0,4,6,10,6,9,4,4,0,0,0,0,42,3,0,3,0,4,3,3,0,0,0,0,0,29,4,0,3,6,9,3,3,4,0,0,0,0,33,0,0,4,0,0,0,3,0,0,0,0,0,16,0,0,3,5,0,5,10,0,0,0,0,4,28,0,0,4,0,3,0,4,5,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0
LGA65210,0,0,0,0,0,0,0,6,0,0,0,3,0,0,0,0,0,0,0,0,3,9,5,26,61,28,21,0,3,0,0,0,6,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,8,7,0,5,0,0,0,0,0,0,22,0,0,3,5,0,7,0,0,0,0,0,0,17,0,0,0,8,6,8,0,0,0,0,0,0,21,0,0,0,9,6,5,0,0,0,0,0,0,16,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,3,3,0,0,0,0,0,0,0,0,10,0,0,0,6,4,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0
LGA65410,19,5,4,0,0,0,6,82,0,11,4,9,4,0,0,0,0,0,0,13,42,57,159,222,306,175,190,69,18,0,0,3,48,1249,0,5,3,0,0,3,5,0,0,0,0,0,15,0,5,4,7,4,0,0,0,0,0,0,0,14,8,13,21,11,3,15,3,0,0,0,0,3,78,0,18,41,30,10,13,3,0,0,0,0,3,123,4,23,70,47,22,22,4,0,0,0,0,9,200,0,4,14,27,27,33,9,0,0,0,0,3,118,0,3,27,48,31,56,19,0,0,0,0,4,198,0,0,10,27,22,41,11,6,0,0,0,0,119,0,0,7,12,22,35,14,0,0,0,0,3,96,0,0,5,4,20,27,17,0,4,0,0,0,83,0,0,5,11,10,24,24,10,0,0,0,8,81,0,0,0,5,5,12,11,13,0,0,0,0,46,0,0,0,0,4,8,4,0,0,0
LGA65610,0,0,0,0,0,0,6,26,0,0,6,0,0,0,0,0,0,0,0,7,17,112,37,198,125,28,11,15,5,0,0,0,51,571,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,16,3,3,0,0,0,0,0,0,0,28,0,3,15,10,0,0,0,0,0,0,0,5,40,0,3,35,13,0,0,0,0,0,0,0,9,60,0,0,9,10,3,4,0,0,0,0,0,0,29,0,0,8,14,4,0,0,0,0,0,0,0,26,3,0,7,15,3,0,0,0,0,0,0,0,31,3,4,8,16,3,0,0,0,0,0,0,0,41,14,0,12,10,0,0,0,0,0,0,0,3,40,17,0,14,17,3,8,6,0,0,0,0,7,64,21,4,8,10,3,11,0,0,0,0,0,4,61,5,0,0,8,0,0,4,0,0,0
LGA65810,18,28,5,0,0,0,8,94,5,3,0,6,7,0,4,0,0,0,0,8,36,30,81,142,291,155,304,296,74,18,3,7,42,1449,0,0,0,0,0,3,4,4,0,0,0,4,17,0,0,0,0,0,0,3,0,0,0,0,0,12,4,8,14,19,8,7,6,0,0,0,0,4,68,3,4,12,37,14,7,11,4,0,0,0,0,98,6,13,43,30,29,28,13,0,0,0,0,3,160,4,0,14,35,28,45,26,3,0,0,0,6,160,4,3,16,36,22,49,42,12,0,0,0,3,179,0,4,10,15,16,50,48,15,0,0,0,6,165,0,0,14,9,19,43,49,14,0,0,4,4,160,0,0,3,6,16,31,47,11,0,0,0,0,123,0,3,0,13,12,30,70,21,0,0,0,0,153,0,0,0,4,10,22,25,22,3,0,0,0,85,0,0,0,3,0,3,8,15,0,0
LGA69499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA69799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70200,12,42,58,62,26,21,33,319,17,7,22,3,6,9,14,3,3,0,3,42,126,283,145,249,180,135,262,439,609,477,154,127,323,3376,4,5,0,4,0,4,0,4,4,5,0,7,35,6,6,0,4,0,0,0,0,0,0,0,7,27,21,6,20,10,0,0,3,3,0,0,4,3,79,38,25,20,4,7,6,5,4,5,0,0,13,121,39,22,29,8,13,4,6,3,10,0,0,14,143,8,16,19,10,10,10,22,8,3,0,0,6,109,10,9,20,14,12,27,24,23,5,5,6,12,169,15,5,19,16,12,23,46,39,11,3,0,17,212,6,6,10,5,13,31,60,68,34,5,5,20,259,4,5,10,4,7,13,59,76,53,7,4,16,271,8,7,12,14,7,39,81,144,84,29,13,49,485,4,3,10,6,6,19,46,121,107,41,21,40,424,3,0,8,3,0,9,11,73,57,34
LGA70420,0,0,5,0,0,0,15,81,32,3,11,6,3,0,0,0,0,0,0,37,95,364,50,103,51,45,27,30,29,6,0,5,198,933,0,0,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,6,14,15,3,13,6,0,0,0,0,0,0,0,3,38,3,0,7,4,0,0,0,0,0,0,0,3,23,39,9,10,0,4,0,3,0,0,0,0,5,68,14,6,12,10,0,4,4,0,0,0,0,3,57,19,0,7,4,0,8,0,0,0,0,0,9,54,29,8,14,7,9,12,3,3,4,0,0,5,81,28,6,15,6,7,9,6,3,0,0,0,12,83,25,10,13,4,3,3,4,6,0,0,0,12,82,22,16,18,14,9,9,8,11,4,0,4,27,132,14,4,13,9,7,6,5,11,0,0,0,23,95,6,0,6,4,0,3,0,8,0,0
LGA70540,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,0,0,0,0,0,0,0,5,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70620,0,0,0,0,0,0,12,58,15,0,0,0,0,0,0,0,0,0,0,4,30,382,10,18,9,0,4,0,0,0,4,0,71,490,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,3,24,7,9,0,0,0,0,0,0,0,0,11,48,10,0,0,0,0,0,0,0,0,0,0,0,17,25,3,7,4,0,0,0,0,0,0,0,4,47,38,16,3,6,0,0,0,0,0,0,0,4,66,63,9,8,0,0,0,0,0,0,0,0,0,82,40,11,7,0,0,0,0,0,0,0,0,11,61,35,9,3,5,0,0,0,0,0,0,0,11,64,27,7,6,6,0,0,0,0,0,0,0,0,45,9,0,0,0,0,0,0,0,0,0
LGA70700,0,0,3,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,3,3,8,27,3,12,18,3,11,10,3,3,4,11,19,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,0,0,0,8,5,0,3,0,4,0,4,0,0,0,0,0,11,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,4,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,8,5,0,3,0,0,0,6,0,0,0,0,0,11,0,0,0,3,0,0,4,0,0,0,0,0,13,0,0,0,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,0,6,0,0,0,0,0,5,0,0,0,0,0,7,4,0,0,0,0,0,17,0,0,0,0,0,0,3,3,0,0
LGA71000,75,114,232,225,143,162,60,1176,42,16,14,16,4,8,24,26,29,11,17,58,263,656,274,451,651,546,748,1435,2263,1786,934,981,460,11189,13,8,11,8,4,4,7,19,5,10,5,21,106,4,5,6,5,0,0,0,4,9,0,4,6,52,37,37,15,11,8,12,9,11,13,0,0,9,155,89,104,42,20,4,17,16,23,9,4,0,12,342,84,64,58,31,12,19,36,32,17,4,5,17,372,11,26,55,40,25,31,32,50,16,7,6,20,326,14,15,66,44,16,34,68,72,42,17,13,18,419,11,14,31,33,24,58,94,123,69,20,20,14,512,8,7,27,39,29,63,146,227,125,57,33,28,791,5,4,18,17,31,75,137,249,137,77,60,25,840,3,5,16,17,37,128,195,466,349,156,139,51,1570,9,5,7,12,20,121,179,453,458,242,202,93,1803,0,3,3,11,11,85,79,207,278,150
LGA71150,0,0,0,0,8,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,23,35,5,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,5,0,10,0,0,0,0,0,0,0,0,0,4,5,0,12,0,0,0,0,0,0,0,0,9,9,11,3,23,0,0,0,0,0,0,0,0,0,0
LGA71300,0,0,0,0,0,0,10,97,3,0,0,0,0,0,0,0,0,0,0,3,10,511,95,154,38,9,12,7,3,0,0,0,124,958,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,6,8,0,0,3,0,0,0,0,0,0,0,8,21,4,0,0,0,0,0,0,0,0,0,0,0,15,16,6,0,11,0,0,0,0,0,0,0,4,36,15,3,0,3,0,0,0,0,0,0,0,4,30,23,9,3,8,0,0,0,0,0,0,0,7,47,30,16,9,21,4,0,0,0,0,0,0,15,91,29,6,12,16,3,0,0,0,0,0,0,17,90,28,12,15,16,0,0,0,0,0,0,0,14,89,39,8,23,26,3,0,0,0,0,0,0,21,113,17,9,13,13,5,0,0,0,0,0,0,16,67,9,5,9,3,0,0,0,0,0,0
LGA72200,16,21,15,6,0,0,13,142,6,0,4,3,5,0,3,0,0,0,0,19,37,152,55,199,186,182,186,166,133,36,9,20,108,1410,0,0,0,0,0,0,0,0,0,0,0,0,9,4,0,0,0,3,0,3,0,0,0,0,5,17,4,5,4,0,3,0,0,0,0,0,0,3,28,13,13,8,5,5,0,6,0,0,0,0,8,53,11,8,3,8,9,0,0,0,0,0,0,3,43,0,0,9,7,9,3,3,0,0,0,0,0,34,4,0,15,6,9,6,5,14,0,0,0,6,65,0,5,8,8,8,9,6,10,4,0,0,5,76,0,5,10,3,18,10,8,11,5,0,0,5,75,0,0,15,12,8,17,12,23,12,9,0,9,114,5,4,9,6,9,60,18,32,18,0,3,23,184,0,4,9,7,10,53,20,40,14,5,3,10,185,4,0,10,3,0,50,10,11,9,8
LGA72300,5,13,14,29,13,6,6,99,4,3,3,0,0,0,4,3,0,0,7,5,40,35,23,62,70,73,88,115,150,152,80,74,64,987,0,0,0,0,0,0,0,5,0,0,0,3,14,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3,16,0,3,0,0,5,6,4,0,0,0,0,5,25,0,0,4,6,5,3,4,0,3,3,3,0,34,0,0,0,3,0,0,6,4,3,5,0,0,24,5,0,8,3,3,0,12,4,8,7,0,3,50,4,0,5,0,9,7,9,13,3,4,10,3,65,0,0,5,3,3,8,31,10,14,0,6,5,92,0,0,3,0,9,6,21,11,13,9,7,6,89,0,0,0,0,6,9,18,34,35,20,8,3,138,4,0,11,0,6,7,22,39,45,24,25,6,178,3,0,6,0,0,9,7,16,24,23
LGA72330,0,0,0,0,0,0,26,82,21,4,0,4,0,0,0,0,4,0,3,23,54,517,62,26,11,0,4,4,0,9,0,21,145,790,0,0,0,0,0,0,0,0,0,0,0,0,0,20,3,0,0,0,0,0,0,0,0,0,3,21,36,8,4,0,0,0,0,0,0,0,0,9,58,16,3,0,0,0,0,0,0,0,0,0,0,19,25,3,3,0,0,0,0,0,0,0,0,6,36,26,8,6,0,0,0,0,0,0,0,0,13,52,48,6,4,4,0,0,0,0,0,0,0,17,78,34,9,9,4,0,0,0,0,0,0,0,10,69,36,11,7,7,3,0,0,0,0,0,0,12,78,32,6,12,3,0,0,0,0,0,0,0,11,66,32,12,3,0,6,0,0,0,0,0,0,18,68,15,3,0,5,0,0,0,0,0,0,0,9,36,3,0,0,0,0,0,0,0,0,0
LGA72800,25,37,94,92,49,22,28,451,13,4,4,9,0,6,3,6,0,4,0,18,71,279,145,212,216,343,194,329,860,807,353,128,200,4053,0,8,4,3,0,4,0,0,5,3,6,9,48,4,0,3,0,0,0,0,7,0,0,0,4,25,22,22,19,4,0,0,0,0,4,0,0,6,85,59,48,30,6,4,0,4,7,3,0,0,8,173,48,58,45,10,4,0,16,4,0,5,0,6,198,9,13,32,13,8,0,12,31,4,0,0,8,136,15,13,34,25,3,10,18,33,17,9,0,6,186,3,8,11,14,3,14,30,73,27,18,6,15,228,3,3,11,7,5,20,50,79,68,29,13,3,303,0,4,9,9,5,24,31,108,87,32,18,10,325,0,0,6,4,6,88,52,173,188,89,37,26,673,0,0,3,7,6,84,40,144,240,145,58,17,741,0,0,0,0,9,58,19,72,120,85
LGA73600,0,0,0,0,0,0,11,56,30,0,0,5,0,0,0,0,0,0,3,17,56,379,61,104,62,17,12,11,3,5,0,11,73,726,0,0,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,12,23,5,8,0,0,0,0,0,0,0,0,5,38,15,0,0,5,0,0,0,0,0,0,0,3,27,28,7,12,9,0,3,0,0,0,0,0,4,65,19,5,7,0,0,0,0,0,0,0,0,9,35,22,3,10,3,0,0,0,0,0,0,0,5,51,41,11,15,3,0,0,0,0,0,0,0,8,82,31,4,17,9,0,0,0,0,0,0,0,11,75,31,0,8,11,0,3,4,0,0,0,0,9,69,32,3,11,8,3,0,5,0,0,0,0,25,88,19,3,8,0,0,0,0,0,0,0,0,8,41,9,0,0,0,3,0,0,0,0,0
LGA74050,0,0,0,0,0,0,3,22,3,0,0,0,0,0,0,0,0,0,0,0,7,388,24,6,0,0,0,0,0,0,3,0,40,457,10,0,0,0,0,0,0,0,0,0,0,0,8,25,5,0,0,0,0,0,0,0,0,0,4,31,45,10,0,0,0,0,0,0,0,0,0,5,60,19,0,0,0,0,0,0,0,0,0,0,5,21,30,9,5,0,0,0,0,0,0,0,0,0,49,35,9,11,0,0,0,0,0,0,0,0,0,48,25,10,12,4,0,0,0,0,0,0,0,0,41,15,3,8,4,0,0,0,0,0,0,0,0,36,21,13,14,3,0,0,0,0,0,0,0,4,60,7,5,8,9,0,0,0,0,0,0,0,0,28,15,0,4,4,3,0,0,0,0,0,0,0,31,3,0,4,3,0,0,0,0,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0
LGA74550,0,0,0,0,0,0,3,31,3,0,0,0,0,0,0,0,0,0,0,4,21,233,43,30,20,4,13,3,4,3,0,8,54,416,12,0,0,0,0,0,0,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,10,17,4,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,20,5,0,5,0,0,0,0,0,0,0,4,31,14,0,4,0,0,0,0,0,0,0,0,5,24,19,4,4,3,0,3,0,0,0,0,0,0,30,19,0,0,0,0,0,0,0,0,0,0,3,28,11,0,11,0,0,0,0,0,0,0,0,0,26,9,0,6,5,0,0,0,5,0,0,0,9,27,14,5,3,3,0,0,0,0,0,0,0,6,41,6,5,0,0,3,0,0,0,0,0,0,11,27,3,0,0,0,0,0,0,0,0,0
LGA74560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,6,3,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0
LGA74660,0,0,0,0,0,0,7,81,6,0,0,0,0,0,0,0,0,3,10,5,37,356,98,130,70,21,10,13,8,5,6,13,128,857,0,0,0,0,0,0,0,0,0,0,0,0,8,8,3,5,0,0,0,0,0,0,0,0,0,11,20,0,3,0,0,0,0,0,0,0,0,3,29,7,4,0,5,0,0,0,0,0,0,0,0,14,24,5,0,0,0,0,0,0,0,0,0,6,31,17,0,4,3,0,0,0,0,0,0,0,3,32,40,7,8,0,0,4,0,0,0,0,0,7,60,40,8,13,9,0,0,0,0,0,0,0,5,69,44,12,5,6,3,3,0,0,0,0,4,5,84,25,14,12,10,0,0,0,0,0,0,3,7,74,61,21,21,3,7,0,0,0,0,0,0,11,126,45,11,7,3,5,0,0,0,0,0,0,16,85,19,3,8,4,0,0,0,0,0,0
LGA74680,3,0,0,0,0,0,0,17,3,0,0,0,0,0,0,0,0,0,0,4,9,223,36,52,17,4,13,0,0,6,0,0,68,413,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,3,11,8,6,0,0,0,0,0,0,0,0,0,5,23,0,0,0,0,0,0,0,0,0,0,0,0,3,20,10,0,0,0,0,0,0,0,0,0,0,33,13,5,0,0,0,0,0,0,0,0,0,0,20,21,12,0,0,0,0,0,0,0,0,0,3,35,23,8,4,0,0,0,0,0,0,0,0,3,39,19,4,4,0,0,0,0,0,0,0,0,4,36,20,10,8,0,0,0,0,0,0,0,0,6,41,12,11,3,0,0,0,0,0,0,0,0,5,29,16,3,3,0,0,0,0,0,0,0,0,8,31,8,5,0,0,0,0,0,0,0,0
LGA79399,3,3,0,0,0,0,19,128,10,5,3,4,0,0,5,0,5,0,13,13,60,641,189,122,142,35,23,22,30,19,5,38,224,1490,0,0,0,3,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,7,5,3,0,0,0,0,0,0,0,0,0,4,13,0,0,8,9,3,0,0,0,5,0,0,7,31,4,15,20,19,3,4,5,5,6,0,3,8,89,3,10,17,23,3,0,3,0,0,0,0,6,71,14,10,19,30,9,8,3,5,6,0,0,10,104,13,10,12,28,6,3,4,4,8,3,3,17,111,34,12,16,30,6,10,3,10,5,0,4,28,160,59,21,23,19,4,4,9,3,8,3,4,34,200,41,18,6,8,0,0,0,4,3,3
LGA79499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA79799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89399,157,239,820,766,337,215,136,3090,47,72,50,39,11,19,29,97,59,21,39,165,660,1258,2346,2338,1808,1225,1904,3898,12247,7234,2467,1652,1292,39677,33,21,45,53,17,27,81,174,124,57,52,68,755,30,29,54,31,16,9,32,57,31,10,16,35,334,226,176,241,89,37,41,59,96,44,12,19,68,1104,86,392,587,149,68,46,78,107,47,16,11,84,1663,75,416,771,227,72,98,133,197,68,17,15,96,2180,42,71,339,246,96,125,232,309,109,20,18,54,1656,24,68,258,327,157,196,332,445,134,37,30,63,2077,17,49,137,190,156,243,490,706,229,54,44,83,2396,21,23,115,148,106,283,866,1292,402,97,63,90,3502,17,14,65,98,87,204,799,1593,481,124,85,75,3645,17,15,64,114,85,292,1038,2810,1199,292,138,111,6180,18,5,48,66,55,205,726,2626,1615,475,232,105,6166,4,11,15,25,26,132,288,1296,1044,309
LGA89499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99399,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,4,5,0,8,4,0,0,0,0,12,67,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,6,0,0,7,3,0,0,0,0,0,0,0,0,10,6,0,6,0,0,0,0,0,0,0,0,0,13,0,0,4,13,0,0,0,0,0,0,0,0,21,0,0,8,5,0,0,0,0,0,0,0,0,18,3,0,8,9,5,0,0,0,0,0,0,0,29,3,0,5,9,3,0,0,0,0,0,0,0,20,0,0,3,0,0,4,3,0,0,0,0,0,19,4,0,0,4,0,0,10,3,0,0,0,5,21,0,0,0,0,0,0,0,3,0,0
LGA99499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
STE_CODE_2021,C11_Neg_Ni_inc_R1_74,C11_Neg_Ni_inc_R75_99,C11_Neg_Ni_inc_R100_149,C11_Neg_Ni_inc_R150_199,C11_Neg_Ni_inc_R200_224,C11_Neg_Ni_inc_R225_274,C11_Neg_Ni_inc_R275_349,C11_Neg_Ni_inc_R350_449,C11_Neg_Ni_inc_R450_549,C11_Neg_Ni_inc_R550_649,C11_Neg_Ni_inc_R650more,C11_Neg_Ni_inc_R_NS,C11_Neg_Ni_inc_R_Tot,C11_1_149_R1_74,C11_1_149_R75_99,C11_1_149_R100_149,C11_1_149_R150_199,C11_1_149_R200_224,C11_1_149_R225_274,C11_1_149_R275_349,C11_1_149_R350_449,C11_1_149_R450_549,C11_1_149_R550_649,C11_1_149_R650more,C11_1_149_R_NS,C11_1_149_R_Tot,C11_150_299_R1_74,C11_150_299_R75_99,C11_150_299_R100_149,C11_150_299_R150_199,C11_150_299_R200_224,C11_150_299_R225_274,C11_150_299_R275_349,C11_150_299_R350_449,C11_150_299_R450_549,C11_150_299_R550_649,C11_150_299_R650more,C11_150_299_R_NS,C11_150_299_R_Tot,C11_300_399_R1_74,C11_300_399_R75_99,C11_300_399_R100_149,C11_300_399_R150_199,C11_300_399_R200_224,C11_300_399_R225_274,C11_300_399_R275_349,C11_300_399_R350_449,C11_300_399_R450_549,C11_300_399_R550_649,C11_300_399_R650more,C11_300_399_R_NS,C11_300_399_R_Tot,C11_400_499_R1_74,C11_400_499_R75_99,C11_400_499_R100_149,C11_400_499_R150_199,C11_400_499_R200_224,C11_400_499_R225_274,C11_400_499_R275_349,C11_400_499_R350_449,C11_400_499_R450_549,C11_400_499_R550_649,C11_400_499_R650more,C11_400_499_R_NS,C11_400_499_R_Tot,C11_500_649_R1_74,C11_500_649_R75_99,C11_500_649_R100_149,C11_500_649_R150_199,C11_500_649_R200_224,C11_500_649_R225_274,C11_500_649_R275_349,C11_500_649_R350_449,C11_500_649_R450_549,C11_500_649_R550_649,C11_500_649_R650more,C11_500_649_R_NS,C11_500_649_R_Tot,C11_650_799_R1_74,C11_650_799_R75_99,C11_650_799_R100_149,C11_650_799_R150_199,C11_650_799_R200_224,C11_650_799_R225_274,C11_650_799_R275_349,C11_650_799_R350_449,C11_650_799_R450_549,C11_650_799_R550_649,C11_650_799_R650more,C11_650_799_R_NS,C11_650_799_R_Tot,C11_800_999_R1_74,C11_800_999_R75_99,C11_800_999_R100_149,C11_800_999_R150_199,C11_800_999_R200_224,C11_800_999_R225_274,C11_800_999_R275_349,C11_800_999_R350_449,C11_800_999_R450_549,C11_800_999_R550_649,C11_800_999_R650more,C11_800_999_R_NS,C11_800_999_R_Tot,C11_1000_1249_R1_74,C11_1000_1249_R75_99,C11_1000_1249_R100_149,C11_1000_1249_R150_199,C11_1000_1249_R200_224,C11_1000_1249_R225_274,C11_1000_1249_R275_349,C11_1000_1249_R350_449,C11_1000_1249_R450_549,C11_1000_1249_R550_649,C11_1000_1249_R650more,C11_1000_1249_R_NS,C11_1000_1249_R_Tot,C11_1250_1499_R1_74,C11_1250_1499_R75_99,C11_1250_1499_R100_149,C11_1250_1499_R150_199,C11_1250_1499_R200_224,C11_1250_1499_R225_274,C11_1250_1499_R275_349,C11_1250_1499_R350_449,C11_1250_1499_R450_549,C11_1250_1499_R550_649,C11_1250_1499_R650more,C11_1250_1499_R_NS,C11_1250_1499_R_Tot,C11_1500_1999_R1_74,C11_1500_1999_R75_99,C11_1500_1999_R100_149,C11_1500_1999_R150_199,C11_1500_1999_R200_224,C11_1500_1999_R225_274,C11_1500_1999_R275_349,C11_1500_1999_R350_449,C11_1500_1999_R450_549,C11_1500_1999_R550_649,C11_1500_1999_R650more,C11_1500_1999_R_NS,C11_1500_1999_R_Tot,C11_2000_2499_R1_74,C11_2000_2499_R75_99,C11_2000_2499_R100_149,C11_2000_2499_R150_199,C11_2000_2499_R200_224,C11_2000_2499_R225_274,C11_2000_2499_R275_349,C11_2000_2499_R350_449,C11_2000_2499_R450_549,C11_2000_2499_R550_649,C11_2000_2499_R650more,C11_2000_2499_R_NS,C11_2000_2499_R_Tot,C11_2500_2999_R1_74,C11_2500_2999_R75_99,C11_2500_2999_R100_149,C11_2500_2999_R150_199,C11_2500_2999_R200_224,C11_2500_2999_R225_274,C11_2500_2999_R275_349,C11_2500_2999_R350_449,C11_2500_2999_R450_549,C11_2500_2999_R550_649,C11_2500_2999_R650more,C11_2500_2999_R_NS,C11_2500_2999_R_Tot,C11_3000_3999_R1_74,C11_3000_3999_R75_99,C11_3000_3999_R100_149,C11_3000_3999_R150_199,C11_3000_3999_R200_224,C11_3000_3999_R225_274,C11_3000_3999_R275_349,C11_3000_3999_R350_449,C11_3000_3999_R450_549,C11_3000_3999_R550_649,C11_3000_3999_R650more,C11_3000_3999_R_NS,C11_3000_3999_R_Tot,C11_4000more_R1_74,C11_4000more_R75_99,C11_4000more_R100_149,C11_4000more_R150_199,C11_4000more_R200_224,C11_4000more_R225_274,C11_4000more_R275_349,C11_4000more_R350_449,C11_4000more_R450_549,C11_4000more_R550_649,C11_4000more_R650more,C11_4000more_R_NS,C11_4000more_R_Tot,C11_PI_S_R1_74,C11_PI_S_R75_99,C11_PI_S_R100_149,C11_PI_S_R150_199,C11_PI_S_R200_224
1,400,505,786,871,611,990,1853,2360,1677,969,1177,1461,13658,1535,1580,1290,1042,505,656,927,879,435,214,279,797,10131,4591,9109,6456,5135,2177,2816,2954,2173,842,407,643,2204,39520,4256,14979,9600,7515,3165,4085,4161,2646,848,371,665,2452,54749,1245,2576,7977,9452,5385,7888,8836,5516,1680,629,767,1776,53736,745,1009,6920,5547,2533,4099,4908,3567,1055,370,421,1069,32235,953,1668,5199,9682,6015,10369,13951,9871,3075,1039,1127,1997,64946,669,755,3503,6236,4836,9484,14580,11929,4113,1478,1410,1623,60614,608,500,2360,4679,4298,8992,16294,15047,5457,2056,1770,1521,63585,403,289,1404,2949,2950,6006,13122,14472,5721,2186,1884,1190,52580,570,308,1429,2954,3121,6980,16303,22342,11103,4440,3750,1613,74920,333,116,565,1280,1509,3134,7979,14185,8771,4002,3080,856,45813,295,170,543,885,899,1909,4967,11253,9927,6160,9442,951,47396,158,63,240,396,505,991,2487,6258,6827,5424,7140,606,31092,65,29,129,134,156,272,648,1770,2700,2894,7327,343,16471,626,731,2414,3298,2497
2,241,297,662,797,666,1630,2543,2314,1147,515,494,1195,12511,768,885,958,870,459,773,984,655,291,99,166,621,7523,2188,4869,4285,3615,1703,2445,2509,1221,427,165,334,1379,25135,2079,8408,6082,5335,2331,3296,3090,1273,342,129,346,1511,34211,732,1492,5937,7589,4353,6797,6185,2346,629,178,418,1275,37930,399,547,3578,3516,1777,3082,3472,1476,367,132,195,675,19216,626,1038,3552,7706,5174,9544,10345,4258,1050,348,590,1459,45695,395,511,2460,5389,4430,9643,12156,5372,1340,476,711,1288,44175,313,359,1809,4323,4212,9754,14668,7370,1781,574,822,1118,47097,260,197,1097,2716,2784,7203,12754,7649,1927,634,805,948,38975,306,225,1075,2522,2906,7794,17475,13629,3758,1201,1323,1202,53426,154,112,509,1110,1263,3901,10473,10433,3402,1025,949,696,34028,103,120,356,655,667,2027,5842,9141,5019,2201,3104,725,29964,61,52,179,252,307,952,3180,5854,4140,2012,2114,406,19514,20,24,69,109,78,257,801,1712,1825,1310,2056,222,8489,368,394,1578,2529,1932
3,190,158,400,513,320,755,1267,1574,701,303,284,749,7223,567,399,558,597,309,449,711,624,184,75,93,389,4966,3014,2472,2763,2694,1426,1998,2300,1493,384,136,196,1096,19967,4811,5089,4338,4573,2425,3370,3523,1728,363,106,254,1325,31886,1029,1622,4767,5936,4022,6849,8099,3968,664,179,266,1096,38493,685,638,3532,2422,1497,3058,3921,2331,495,133,165,653,19540,1045,1050,3550,5662,4223,8741,12933,7632,1298,375,413,1300,48206,759,642,2387,4140,3467,7679,13639,9557,1756,459,483,1186,46156,882,502,1678,3154,3216,7166,15976,13135,2367,578,560,1185,50401,601,314,1071,2049,2181,5043,12726,12918,2584,670,604,985,41747,1021,412,1149,2014,2383,5214,15909,21231,5150,1300,1041,1250,58077,670,257,574,923,1150,2286,8185,14604,4419,1124,857,649,35691,1451,316,451,541,607,1330,4295,9405,4889,2110,2313,904,28618,856,177,288,294,293,646,2099,5774,3766,1558,1560,450,17749,388,86,105,99,106,196,516,1537,1510,900,1297,275,7009,803,600,1702,2152,1805
4,138,137,239,303,214,439,546,415,154,56,74,343,3056,597,555,467,347,154,276,232,151,29,22,27,251,3105,2044,2987,2070,1470,670,897,671,216,61,40,81,683,11885,2511,6520,3067,2085,947,1252,890,260,42,30,113,825,18544,530,1087,3030,3141,1885,2878,2170,424,86,27,89,519,15874,276,440,2759,1614,780,1281,995,270,53,12,46,306,8839,444,778,2120,3564,2310,4025,3386,841,139,53,99,535,18299,281,337,1530,2541,1972,3959,3634,1025,156,50,100,428,16012,234,253,978,2055,1742,3857,4208,1481,200,62,95,384,15538,140,123,607,1162,1193,2666,3576,1392,215,75,92,336,11565,216,131,613,1175,1088,2765,4670,2524,456,141,156,312,14254,108,64,301,502,525,1245,2614,1736,360,95,86,177,7817,116,74,241,304,238,615,1356,1513,567,231,255,151,5663,59,28,133,152,127,271,678,934,410,151,143,88,3169,15,12,56,45,18,59,151,258,179,111,88,45,1047,184,252,876,1167,851
5,110,128,227,254,179,309,672,735,315,115,181,412,3631,353,347,298,234,110,199,344,313,93,28,43,201,2570,1525,2036,1531,930,509,812,954,606,136,45,95,530,9702,2055,3767,2290,1492,790,1115,1383,712,151,49,132,649,14573,502,977,2196,1895,1298,2277,3140,1587,254,71,120,514,14836,391,317,1872,1033,498,770,1217,697,142,40,78,296,7348,564,543,1522,1975,1438,2673,4533,2599,442,121,174,573,17158,404,291,1151,1524,1298,2748,5027,3346,627,171,219,586,17392,422,222,898,1291,1275,2695,5634,4498,852,224,276,563,18860,328,188,751,973,890,1942,5043,4684,969,251,314,493,16819,504,254,844,1137,1091,2393,6654,7920,1976,565,684,744,24768,241,114,498,577,582,1182,3773,5762,1629,441,466,396,15655,980,165,598,607,437,996,2723,5163,2746,1232,2366,850,18866,595,131,553,385,309,505,1503,3397,1991,844,1188,440,11850,441,51,284,187,90,179,465,1170,996,552,1220,279,5918,529,324,1043,1153,848
6,24,44,81,81,56,94,78,48,5,11,9,56,595,179,149,134,140,52,74,52,25,7,0,11,43,872,474,955,736,729,286,282,136,52,19,12,21,154,3848,416,1990,1181,1037,425,422,230,54,13,0,32,176,5983,145,342,1195,1419,777,924,543,80,15,9,24,135,5599,75,143,741,797,379,515,310,76,16,3,11,77,3129,129,256,732,1368,830,1200,806,178,28,8,34,149,5719,88,95,510,1024,707,1191,842,215,29,7,22,94,4823,79,41,315,726,601,1190,965,304,49,3,22,103,4396,60,38,154,430,383,717,847,309,49,9,23,71,3084,97,30,169,368,367,749,990,513,84,16,24,89,3486,33,18,82,153,118,331,511,354,81,16,17,40,1748,52,16,49,76,54,146,262,260,117,39,26,49,1144,19,0,22,41,31,65,132,161,94,35,15,22,636,9,7,12,18,5,14,18,39,28,18,13,10,183,67,64,245,421,312
7,38,10,17,12,8,19,20,39,15,12,17,33,231,99,26,23,16,3,8,5,11,10,0,3,27,233,541,106,110,44,18,17,34,31,7,6,8,124,1054,677,134,134,58,41,27,59,39,18,7,9,90,1289,226,111,165,100,52,70,99,98,36,10,14,77,1054,466,103,149,59,18,25,32,28,17,0,11,64,966,416,106,199,152,105,128,189,199,82,24,22,123,1744,327,97,139,158,135,151,251,284,134,34,32,149,1900,408,97,144,195,161,188,314,388,228,69,52,174,2423,300,74,142,147,141,153,282,460,297,87,57,166,2306,432,99,193,212,217,196,434,769,550,218,133,247,3696,249,60,112,179,197,172,285,624,564,221,126,146,2932,294,75,94,85,90,151,154,376,431,233,284,176,2447,237,55,69,74,64,100,105,243,344,254,244,126,1913,99,16,10,20,16,23,41,58,142,132,184,64,812,411,109,161,166,133
8,15,26,32,20,13,18,52,104,60,28,34,49,452,136,87,42,33,7,11,21,38,25,10,8,38,457,357,478,248,122,38,44,54,98,41,17,13,112,1609,367,1041,391,156,41,47,66,90,50,15,22,107,2385,85,253,454,241,67,90,146,236,84,11,15,72,1754,33,58,340,141,31,40,60,108,46,14,7,44,924,60,116,243,334,169,158,264,495,161,46,28,66,2139,24,57,121,167,131,222,378,729,244,55,33,73,2244,34,36,94,134,132,254,571,1200,370,88,63,74,3048,21,19,31,89,127,171,468,1453,478,115,69,68,3104,16,21,60,102,130,251,617,2424,1076,275,108,88,5159,4,8,36,62,108,122,325,1848,1042,219,107,60,3936,8,10,30,32,79,150,331,1403,1271,501,350,77,4240,3,4,23,20,53,115,183,867,1027,435,252,47,3037,0,0,7,11,5,39,85,237,432,293,291,22,1435,42,59,132,105,85
9,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,5,4,0,0,0,0,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,11,3,0,0,3,0,0,0,0,0,0,0,0,11,5,3,0,6,3,0,4,0,0,0,0,6,29,6,0,6,4,0,0,0,0,0,0,0,5,22,10,3,4,0,0,0,3,0,6,0,3,4,36,0,5,0,5,5,0,5,0,0,0,0,0,21,13,5,4,10,0,0,0,0,0,0,0,4,49,8,3,3,7,5,5,4,3,0,0,0,4,44,13,3,0,0,0,5,0,0,3,0,0,10,38,14,0,0,3,0,0,0,0,0,0,5,6,38,3,0,0,0,0,0,0,0,0,0,3,5,13,16,4,15,5,0
LGA_CODE_2021,C11_Neg_Ni_inc_R1_74,C11_Neg_Ni_inc_R75_99,C11_Neg_Ni_inc_R100_149,C11_Neg_Ni_inc_R150_199,C11_Neg_Ni_inc_R200_224,C11_Neg_Ni_inc_R225_274,C11_Neg_Ni_inc_R275_349,C11_Neg_Ni_inc_R350_449,C11_Neg_Ni_inc_R450_549,C11_Neg_Ni_inc_R550_649,C11_Neg_Ni_inc_R650more,C11_Neg_Ni_inc_R_NS,C11_Neg_Ni_inc_R_Tot,C11_1_149_R1_74,C11_1_149_R75_99,C11_1_149_R100_149,C11_1_149_R150_199,C11_1_149_R200_224,C11_1_149_R225_274,C11_1_149_R275_349,C11_1_149_R350_449,C11_1_149_R450_549,C11_1_149_R550_649,C11_1_149_R650more,C11_1_149_R_NS,C11_1_149_R_Tot,C11_150_299_R1_74,C11_150_299_R75_99,C11_150_299_R100_149,C11_150_299_R150_199,C11_150_299_R200_224,C11_150_299_R225_274,C11_150_299_R275_349,C11_150_299_R350_449,C11_150_299_R450_549,C11_150_299_R550_649,C11_150_299_R650more,C11_150_299_R_NS,C11_150_299_R_Tot,C11_300_399_R1_74,C11_300_399_R75_99,C11_300_399_R100_149,C11_300_399_R150_199,C11_300_399_R200_224,C11_300_399_R225_274,C11_300_399_R275_349,C11_300_399_R350_449,C11_300_399_R450_549,C11_300_399_R550_649,C11_300_399_R650more,C11_300_399_R_NS,C11_300_399_R_Tot,C11_400_499_R1_74,C11_400_499_R75_99,C11_400_499_R100_149,C11_400_499_R150_199,C11_400_499_R200_224,C11_400_499_R225_274,C11_400_499_R275_349,C11_400_499_R350_449,C11_400_499_R450_549,C11_400_499_R550_649,C11_400_499_R650more,C11_400_499_R_NS,C11_400_499_R_Tot,C11_500_649_R1_74,C11_500_649_R75_99,C11_500_649_R100_149,C11_500_649_R150_199,C11_500_649_R200_224,C11_500_649_R225_274,C11_500_649_R275_349,C11_500_649_R350_449,C11_500_649_R450_549,C11_500_649_R550_649,C11_500_649_R650more,C11_500_649_R_NS,C11_500_649_R_Tot,C11_650_799_R1_74,C11_650_799_R75_99,C11_650_799_R100_149,C11_650_799_R150_199,C11_650_799_R200_224,C11_650_799_R225_274,C11_650_799_R275_349,C11_650_799_R350_449,C11_650_799_R450_549,C11_650_799_R550_649,C11_650_799_R650more,C11_650_799_R_NS,C11_650_799_R_Tot,C11_800_999_R1_74,C11_800_999_R75_99,C11_800_999_R100_149,C11_800_999_R150_199,C11_800_999_R200_224,C11_800_999_R225_274,C11_800_999_R275_349,C11_800_999_R350_449,C11_800_999_R450_549,C11_800_999_R550_649,C11_800_999_R650more,C11_800_999_R_NS,C11_800_999_R_Tot,C11_1000_1249_R1_74,C11_1000_1249_R75_99,C11_1000_1249_R100_149,C11_1000_1249_R150_199,C11_1000_1249_R200_224,C11_1000_1249_R225_274,C11_1000_1249_R275_349,C11_1000_1249_R350_449,C11_1000_1249_R450_549,C11_1000_1249_R550_649,C11_1000_1249_R650more,C11_1000_1249_R_NS,C11_1000_1249_R_Tot,C11_1250_1499_R1_74,C11_1250_1499_R75_99,C11_1250_1499_R100_149,C11_1250_1499_R150_199,C11_1250_1499_R200_224,C11_1250_1499_R225_274,C11_1250_1499_R275_349,C11_1250_1499_R350_449,C11_1250_1499_R450_549,C11_1250_1499_R550_649,C11_1250_1499_R650more,C11_1250_1499_R_NS,C11_1250_1499_R_Tot,C11_1500_1999_R1_74,C11_1500_1999_R75_99,C11_1500_1999_R100_149,C11_1500_1999_R150_199,C11_1500_1999_R200_224,C11_1500_1999_R225_274,C11_1500_1999_R275_349,C11_1500_1999_R350_449,C11_1500_1999_R450_549,C11_1500_1999_R550_649,C11_1500_1999_R650more,C11_1500_1999_R_NS,C11_1500_1999_R_Tot,C11_2000_2499_R1_74,C11_2000_2499_R75_99,C11_2000_2499_R100_149,C11_2000_2499_R150_199,C11_2000_2499_R200_224,C11_2000_2499_R225_274,C11_2000_2499_R275_349,C11_2000_2499_R350_449,C11_2000_2499_R450_549,C11_2000_2499_R550_649,C11_2000_2499_R650more,C11_2000_2499_R_NS,C11_2000_2499_R_Tot,C11_2500_2999_R1_74,C11_2500_2999_R75_99,C11_2500_2999_R100_149,C11_2500_2999_R150_199,C11_2500_2999_R200_224,C11_2500_2999_R225_274,C11_2500_2999_R275_349,C11_2500_2999_R350_449,C11_2500_2999_R450_549,C11_2500_2999_R550_649,C11_2500_2999_R650more,C11_2500_2999_R_NS,C11_2500_2999_R_Tot,C11_3000_3999_R1_74,C11_3000_3999_R75_99,C11_3000_3999_R100_149,C11_3000_3999_R150_199,C11_3000_3999_R200_224,C11_3000_3999_R225_274,C11_3000_3999_R275_349,C11_3000_3999_R350_449,C11_3000_3999_R450_549,C11_3000_3999_R550_649,C11_3000_3999_R650more,C11_3000_3999_R_NS,C11_3000_3999_R_Tot,C11_4000more_R1_74,C11_4000more_R75_99,C11_4000more_R100_149,C11_4000more_R150_199,C11_4000more_R200_224,C11_4000more_R225_274,C11_4000more_R275_349,C11_4000more_R350_449,C11_4000more_R450_549,C11_4000more_R550_649,C11_4000more_R650more,C11_4000more_R_NS,C11_4000more_R_Tot,C11_PI_S_R1_74,C11_PI_S_R75_99,C11_PI_S_R100_149,C11_PI_S_R150_199,C11_PI_S_R200_224
LGA10050,0,0,13,18,4,11,9,3,0,0,0,4,70,16,13,37,20,5,6,5,0,0,0,0,12,108,40,69,136,86,23,21,11,0,0,0,5,15,412,29,136,224,125,35,42,17,5,0,0,0,17,635,8,43,223,217,92,74,32,5,0,3,0,10,717,9,6,74,86,32,47,22,7,0,0,4,3,291,9,19,160,209,105,146,77,12,7,0,0,16,764,3,13,90,149,100,141,67,15,0,0,3,15,594,0,3,59,121,86,138,83,27,3,0,3,9,539,3,5,43,63,61,123,84,34,0,5,4,6,438,4,4,19,68,67,138,148,48,9,3,4,9,513,0,0,10,19,29,48,91,41,5,0,0,0,237,0,0,5,7,14,23,46,28,12,5,0,4,154,3,0,0,3,4,5,19,20,7,3,3,5,75,0,0,0,0,5,0,6,7,0,0,5,0,26,4,6,27,47,35
LGA10180,0,0,8,15,7,4,11,6,0,0,0,7,56,6,10,17,19,11,3,3,0,0,0,0,3,74,17,30,64,57,17,15,10,5,0,0,3,10,226,17,53,67,89,22,34,5,4,0,0,0,12,318,9,13,64,110,47,41,31,10,4,0,3,11,341,9,7,27,49,19,42,17,9,0,0,0,0,178,7,13,46,112,68,79,46,14,0,0,0,14,410,5,8,34,76,53,67,54,14,0,0,0,5,313,3,0,22,67,50,72,62,29,0,0,0,8,314,4,0,13,37,22,59,48,18,0,0,0,7,213,3,0,18,41,31,51,55,37,8,0,0,5,265,0,0,4,10,12,21,36,38,5,0,0,5,124,0,0,3,5,9,12,15,29,3,0,4,5,85,4,0,6,4,0,0,17,16,3,0,0,0,41,0,0,0,0,0,0,0,3,0,0,0,0,9,3,0,20,33,28
LGA10250,0,10,0,4,4,7,13,13,0,0,0,10,60,8,9,10,6,0,5,7,5,3,0,0,5,58,24,48,23,45,15,22,24,9,0,0,0,7,227,34,105,53,52,32,47,28,22,3,0,0,23,412,9,21,43,52,64,86,93,54,7,0,8,9,454,3,9,45,35,11,43,43,39,8,4,0,6,262,3,16,31,59,47,109,152,108,15,0,0,10,545,7,5,22,44,23,80,148,97,22,6,3,7,468,0,0,11,22,20,64,151,139,23,0,3,9,452,3,0,9,13,13,29,98,125,20,3,8,7,333,0,5,5,11,17,30,105,150,35,7,7,6,384,0,0,0,3,4,18,50,83,25,3,4,0,194,0,0,4,4,0,6,18,47,31,4,5,0,129,0,0,0,0,0,0,11,25,24,4,8,0,80,0,0,0,0,0,0,0,8,5,0,0,0,15,6,4,7,20,13
LGA10300,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,8,0,0,0,0,0,0,0,0,0,17,4,0,5,3,0,0,0,0,0,0,0,0,16,0,0,4,8,3,0,0,0,0,0,0,0,21,0,0,4,5,0,0,0,0,0,0,0,0,7,0,4,12,5,6,0,0,0,0,0,3,0,29,0,0,12,15,0,0,0,0,0,0,0,0,26,3,0,7,6,0,0,0,0,0,0,0,0,17,0,0,0,5,0,0,0,0,0,0,0,0,11,4,0,0,3,4,0,0,0,0,0,0,0,18,5,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0
LGA10470,3,3,10,7,6,0,4,0,0,0,0,5,38,10,6,14,9,7,0,0,3,0,0,0,0,66,28,38,66,46,27,19,11,5,0,0,0,11,241,33,66,77,71,32,21,14,3,0,0,4,20,339,10,12,71,88,69,83,34,10,0,0,4,8,382,11,3,33,44,29,36,32,10,0,0,0,6,206,3,6,54,111,73,105,67,16,4,0,0,4,439,4,5,32,67,58,108,74,23,0,0,3,9,377,0,5,28,90,65,113,71,21,0,0,0,4,407,7,4,17,42,52,77,87,27,0,0,0,7,318,10,4,13,29,40,91,126,72,4,0,0,7,391,3,0,11,11,16,37,52,45,4,0,0,0,188,4,0,5,9,13,21,44,38,12,0,0,6,157,0,0,3,5,0,9,23,25,0,0,0,0,65,0,0,0,0,0,4,9,5,0,0,0,4,21,6,3,20,31,28
LGA10500,16,12,21,8,8,22,62,101,44,28,12,36,355,30,33,19,15,5,15,25,39,16,13,4,25,236,103,246,67,49,17,28,64,87,36,18,7,53,780,82,361,99,49,23,37,104,116,24,5,15,43,954,15,36,91,62,49,80,207,220,63,25,9,33,887,11,15,115,63,20,38,103,145,50,17,12,30,614,13,34,44,71,57,91,370,419,117,62,29,36,1340,3,10,32,52,48,97,346,497,156,77,35,35,1398,7,4,26,40,31,119,351,561,227,86,37,27,1526,0,4,9,24,20,65,282,497,214,84,39,30,1268,0,8,16,23,28,75,329,750,405,158,77,37,1911,4,5,4,18,11,47,193,454,312,165,57,30,1309,0,0,5,6,19,15,93,323,232,118,83,17,918,3,0,3,0,8,16,46,154,193,132,103,13,667,0,0,0,0,0,0,12,36,76,57,56,9,260,3,17,31,31,30
LGA10550,0,0,6,0,5,7,4,0,0,0,4,4,27,9,7,11,14,5,4,5,0,0,0,0,3,46,15,40,40,40,19,16,8,0,0,0,4,7,194,17,56,72,102,37,20,14,6,0,0,0,15,340,6,11,56,115,56,66,25,0,0,0,0,17,357,9,8,17,42,44,36,17,3,0,0,0,10,176,3,7,45,96,67,97,55,6,0,0,3,11,392,5,3,22,79,50,70,65,9,0,0,0,6,318,4,0,15,44,44,88,66,19,0,0,8,9,291,0,5,9,35,24,44,37,11,4,0,0,5,179,6,4,8,24,24,38,65,33,3,0,3,8,214,0,0,3,12,5,16,20,9,0,0,0,0,79,3,0,3,3,6,9,10,10,0,4,0,6,59,0,0,3,5,0,4,3,3,0,0,0,0,22,0,0,0,0,0,0,0,5,0,0,0,0,4,0,0,17,25,20
LGA10600,0,0,0,0,0,0,0,4,0,0,0,0,12,4,4,3,5,8,0,0,0,0,0,0,5,24,4,10,14,19,7,10,7,4,0,0,3,3,83,8,28,25,19,21,25,17,8,0,0,0,7,146,0,3,32,34,28,23,34,5,0,0,0,0,166,3,0,10,11,10,18,14,5,0,0,0,3,77,0,3,18,33,24,44,32,9,0,0,0,3,167,6,0,8,19,11,31,35,27,0,0,3,5,143,0,0,4,11,13,20,24,12,0,0,0,4,99,0,0,5,5,10,17,20,4,0,0,0,0,55,0,0,0,5,12,15,22,17,0,0,0,0,81,4,0,0,0,0,0,9,8,0,0,0,0,29,0,0,0,0,0,0,3,3,4,0,0,6,16,0,0,0,0,0,5,3,0,0,0,0,0,7,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,5,6,24
LGA10650,0,0,4,3,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,0,0,0,0,0,12,3,6,15,13,5,6,0,0,0,0,0,3,53,8,23,32,18,5,0,0,0,0,0,0,5,89,4,3,33,23,0,0,6,0,0,0,0,0,80,0,4,15,22,3,0,0,0,0,0,0,5,39,6,3,22,34,10,9,3,0,0,0,0,4,84,0,3,18,23,3,7,3,0,0,0,0,0,57,6,4,14,19,12,3,4,0,0,0,0,3,59,0,0,12,14,4,3,0,0,0,0,0,0,45,4,0,14,7,5,15,3,0,0,0,0,0,47,3,0,0,5,6,4,0,0,0,0,0,0,25,5,0,3,4,0,3,0,0,0,0,0,0,16,0,0,0,4,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,8
LGA10750,20,25,16,18,24,39,80,74,5,9,6,58,370,76,66,44,21,11,16,56,37,3,0,10,36,378,280,451,250,149,56,88,149,88,6,8,11,100,1641,176,768,308,182,82,141,226,108,7,3,14,82,2103,50,118,294,211,141,240,464,287,27,6,8,66,1910,43,58,448,256,88,155,269,157,27,3,4,50,1571,43,83,209,370,210,345,730,456,75,18,21,74,2631,27,45,148,259,173,366,786,538,88,17,31,67,2535,15,27,92,192,169,311,891,739,124,30,19,60,2676,6,14,44,98,137,218,682,698,120,36,18,46,2117,15,18,37,110,138,292,896,1103,272,78,36,56,3056,7,8,23,51,80,138,476,747,215,96,23,40,1898,3,3,9,23,41,61,210,388,196,130,19,17,1104,0,0,8,12,20,37,105,253,173,104,25,13,752,5,4,9,5,10,8,15,62,51,49,21,4,252,36,37,149,170,147
LGA10800,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,4,4,11,0,0,0,0,0,0,0,0,0,21,10,8,15,7,0,3,0,0,0,0,0,0,43,0,4,11,14,9,5,0,0,0,0,3,8,46,0,0,10,0,5,0,0,0,0,0,0,0,21,0,5,17,7,3,3,0,0,0,0,0,3,39,4,4,8,14,6,3,0,0,0,0,0,3,42,0,0,7,18,0,0,0,0,0,0,0,3,33,0,0,3,13,5,6,0,0,0,0,0,0,31,3,0,9,10,8,12,6,0,0,0,0,0,53,0,0,0,9,0,3,0,0,0,0,0,0,22,0,0,0,0,4,7,10,0,0,0,0,5,27,0,0,0,0,0,3,4,0,0,0,0,0,11,0,0,0,0,0,0,3,0,0,0,0,4,7,3,0,0,4,6
LGA10850,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,14,3,7,7,7,0,0,0,0,0,0,0,0,25,0,13,15,13,6,0,0,0,0,0,0,3,54,0,5,15,17,4,3,0,0,0,0,0,0,47,3,0,5,17,0,5,0,0,0,0,0,3,31,4,5,12,24,11,5,0,0,0,0,0,0,56,0,0,8,15,3,7,0,0,0,0,0,0,42,0,6,10,13,5,6,8,0,0,0,0,4,54,0,0,6,10,5,3,0,0,0,0,0,0,27,0,0,3,20,5,9,3,0,0,0,0,3,50,0,0,0,4,6,5,4,0,0,0,0,0,21,0,0,0,3,9,3,9,3,0,0,0,0,37,0,4,3,0,7,6,3,0,0,0,0,0,24,0,0,0,3,0,3,3,3,0,0,0,0,7,0,0,3,14,8
LGA10900,0,0,3,8,7,9,13,3,3,0,0,3,54,4,12,7,9,3,12,7,4,0,0,0,12,71,16,11,43,52,33,41,35,7,3,0,5,11,271,14,25,87,72,46,65,57,17,3,0,5,20,405,3,3,59,108,84,149,131,35,4,0,9,11,587,0,3,10,29,24,63,61,18,4,0,0,8,218,0,0,28,55,61,149,202,63,7,0,0,11,561,3,0,15,39,39,127,190,75,10,0,8,13,525,4,5,3,24,47,115,191,101,13,0,3,6,511,0,0,4,14,26,61,156,95,20,4,0,16,398,0,0,9,19,24,74,216,129,33,5,5,13,527,0,0,0,4,12,30,101,100,24,3,3,8,285,3,0,8,3,7,25,51,84,44,14,6,5,246,0,0,0,3,0,8,18,52,17,10,4,0,119,0,0,0,0,0,5,3,9,12,0,7,0,39,0,0,13,16,24
LGA10950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,10,7,0,0,0,0,0,0,0,4,24,0,3,12,5,3,0,0,0,0,0,0,4,29,0,3,12,5,3,3,0,0,0,0,0,0,24,0,0,6,0,0,0,0,0,0,0,0,0,3,3,0,7,5,3,0,0,0,0,0,0,3,29,0,3,5,10,0,3,0,0,0,0,0,0,29,8,0,0,11,7,9,0,0,0,0,0,0,36,4,0,3,8,5,0,0,0,0,0,0,0,23,0,0,6,5,10,3,6,0,0,0,0,4,26,0,0,0,6,5,0,0,0,0,0,0,4,9,0,0,0,7,0,3,0,0,0,0,0,3,20,0,0,0,5,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,8,7,5
LGA11150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,8,3,13,8,3,0,0,0,0,0,0,0,0,19,0,3,5,9,0,0,0,0,0,0,0,0,17,0,0,3,3,0,0,0,0,0,0,0,0,11,4,6,8,7,0,0,0,0,0,0,0,0,30,0,4,5,5,0,6,0,0,0,0,0,0,23,12,0,10,10,5,0,0,0,0,0,5,9,41,5,0,3,12,0,0,0,0,0,0,0,3,28,15,0,3,9,7,0,0,0,0,0,0,0,36,13,0,0,4,3,0,0,0,0,0,0,0,27,9,0,0,4,0,0,0,0,0,0,0,3,26,5,0,0,3,0,0,0,0,0,0,0,5,12,3,0,0,0,0,0,0,0,0,0,0,0,4,11,3,11,7,4
LGA11200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,9,5,3,4,0,0,0,0,0,0,0,0,3,17,9,7,5,3,0,0,0,0,0,0,0,3,25,3,5,3,0,0,0,0,0,0,0,0,0,17,5,4,7,0,0,0,0,0,0,0,0,4,21,10,5,9,0,0,0,0,0,0,0,0,3,28,4,8,9,6,0,0,0,0,0,0,0,4,24,14,6,9,3,0,0,0,0,0,0,0,8,33,3,0,0,3,0,0,0,0,0,0,0,0,11,9,5,3,0,0,0,0,0,0,0,0,0,18,5,0,0,4,0,0,0,0,0,0,0,0,13,10,3,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3,9,0,0
LGA11250,0,0,3,4,0,0,0,0,0,0,0,3,14,3,4,4,8,0,0,5,0,0,0,0,0,24,9,12,52,35,9,0,0,0,0,0,0,4,125,5,16,96,57,9,3,5,0,0,0,4,13,195,5,3,54,88,15,4,3,0,0,0,0,0,179,6,3,15,32,5,4,3,0,0,0,0,4,70,6,5,39,56,22,8,0,0,0,0,0,3,141,0,0,25,52,11,6,5,0,0,0,3,5,106,9,0,26,42,28,8,9,0,0,0,0,3,127,8,0,15,30,16,9,11,0,5,0,0,0,103,19,0,20,33,15,18,8,0,0,0,0,3,124,4,0,6,13,16,13,4,5,0,0,0,4,62,9,0,7,7,7,8,4,4,5,0,3,9,64,6,3,5,10,8,5,3,0,0,0,0,0,34,5,0,0,0,0,0,0,0,0,0,4,4,15,6,6,14,25,13
LGA11300,5,0,0,3,5,19,4,39,62,24,16,23,204,7,6,7,4,4,6,0,18,8,3,0,5,66,12,37,19,8,3,12,11,30,21,7,6,12,180,14,52,22,7,3,13,16,27,16,6,4,13,195,10,13,22,19,11,18,24,47,31,9,5,10,207,7,0,16,13,3,15,19,32,15,7,3,6,123,5,4,12,17,10,34,39,82,53,17,11,8,282,0,0,9,8,5,32,55,109,75,18,17,9,338,0,0,8,9,3,29,49,111,72,22,19,8,328,0,0,3,3,9,18,44,129,78,23,13,11,314,0,0,3,3,3,14,47,192,117,37,26,10,463,3,0,4,3,0,12,31,84,106,34,22,6,298,0,0,0,0,0,6,17,72,92,23,11,4,233,0,0,0,0,5,7,10,64,45,28,17,3,187,0,0,0,0,0,0,0,19,25,13,19,3,85,0,3,0,7,3
LGA11350,0,0,0,4,4,5,9,7,8,3,6,6,53,0,0,0,0,0,5,0,4,6,0,0,3,34,9,13,41,47,21,18,31,27,8,0,0,12,229,3,16,42,46,27,39,37,35,7,7,10,12,289,5,11,30,65,47,68,80,81,13,10,4,10,415,0,0,3,9,16,19,34,46,11,3,3,5,153,3,0,13,31,33,45,105,123,36,13,7,7,425,0,3,9,16,14,29,76,163,43,15,13,12,392,7,0,4,7,10,27,61,111,54,18,10,9,319,0,0,0,6,11,15,37,91,55,14,10,7,244,0,0,3,10,8,10,41,117,48,26,19,5,292,0,0,0,4,4,4,19,40,39,13,20,9,148,0,0,0,0,0,0,10,30,25,19,20,3,118,0,0,0,0,0,5,0,8,10,15,24,0,57,0,0,0,0,0,0,0,4,0,3,19,3,34,5,0,8,9,9
LGA11400,0,0,6,4,0,0,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,12,3,3,18,11,4,0,0,5,0,0,0,0,52,24,13,32,24,3,0,0,0,0,0,4,3,100,9,0,20,24,5,4,0,0,0,0,0,4,74,0,5,8,5,0,0,0,0,0,0,0,0,28,9,3,20,24,0,4,0,0,0,0,0,5,68,0,3,9,17,11,10,3,0,0,0,0,9,72,0,0,9,20,13,6,4,0,0,0,5,9,65,0,0,10,19,14,3,0,0,0,0,0,0,51,0,0,12,18,3,8,3,0,0,0,0,0,56,7,0,8,9,8,10,4,4,0,0,0,4,46,0,0,3,0,3,7,5,4,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,12,9
LGA11450,0,0,0,0,3,0,7,16,4,0,0,3,41,6,9,0,4,3,3,0,0,0,0,0,5,29,10,30,12,4,9,3,7,9,5,0,0,0,99,18,49,12,13,5,15,15,16,0,0,0,14,165,0,9,9,13,9,30,36,51,6,4,0,5,182,0,0,24,10,8,11,24,12,3,0,0,0,94,0,8,10,19,13,25,70,110,13,3,6,9,290,0,0,9,14,7,17,61,103,21,10,0,11,259,0,0,4,8,13,19,72,141,40,4,3,9,321,0,0,7,8,0,15,65,112,43,8,4,8,270,0,0,7,10,4,20,93,191,107,9,4,9,458,0,0,0,4,9,16,57,142,84,8,3,3,330,0,0,0,0,0,4,23,86,72,20,0,5,220,0,0,0,3,3,0,13,53,53,18,4,0,153,0,0,0,0,0,0,3,12,18,6,3,0,47,4,3,4,6,0
LGA11500,4,16,11,14,12,14,35,18,3,3,3,29,163,58,44,25,16,8,15,23,10,6,0,0,29,225,133,208,156,83,41,64,77,29,3,0,7,56,864,102,477,245,130,64,87,116,40,0,0,5,56,1315,33,73,236,142,92,182,265,97,8,0,6,36,1169,16,35,281,172,56,112,115,53,11,0,0,33,893,22,62,129,241,126,267,418,169,17,6,5,42,1499,14,21,84,144,105,277,408,188,19,0,5,31,1302,11,16,53,92,106,271,533,248,17,4,7,23,1383,3,10,19,57,60,198,433,245,26,3,9,23,1096,3,6,23,69,81,223,496,368,58,9,7,28,1373,0,5,16,28,36,108,275,232,56,4,0,10,771,4,9,7,11,12,54,130,132,41,6,0,14,417,0,0,0,7,7,24,58,57,40,7,4,6,217,6,0,0,0,0,11,16,22,12,0,4,6,76,22,26,88,109,76
LGA11520,6,5,3,5,4,7,16,24,71,59,52,22,270,12,7,0,0,5,0,5,10,9,16,4,8,84,44,79,22,18,12,9,8,23,26,23,19,16,292,35,120,49,18,7,3,16,27,23,14,13,21,355,12,6,42,22,9,11,33,41,60,41,9,15,300,5,10,45,16,5,3,7,25,25,13,9,4,165,4,15,13,18,20,24,47,95,79,60,32,12,420,0,8,13,14,16,18,46,127,108,61,44,9,465,0,10,12,13,17,21,75,151,176,85,47,14,615,5,3,3,11,12,13,52,176,163,99,53,21,607,7,0,5,15,23,23,83,264,363,216,110,15,1122,0,0,3,13,13,10,30,182,279,165,91,19,805,0,0,4,8,8,8,46,216,376,274,332,13,1286,0,0,0,4,12,11,21,108,290,258,215,17,932,0,0,0,6,3,5,12,47,127,161,242,0,608,0,14,7,14,20
LGA11570,31,49,55,40,28,62,221,155,52,15,16,79,799,116,125,67,29,8,34,82,66,19,4,3,38,596,385,705,295,176,95,134,274,214,62,8,12,141,2502,273,974,344,175,92,179,338,257,52,11,24,126,2837,60,150,250,216,117,288,594,506,102,31,18,108,2436,35,60,503,355,135,219,508,407,91,26,10,74,2423,50,81,188,312,201,434,1024,763,218,29,24,105,3421,19,31,127,193,104,358,922,793,236,65,26,84,2949,14,22,66,107,101,335,1023,897,262,54,24,70,2964,8,4,37,65,63,200,716,764,258,59,35,49,2267,15,4,40,57,68,192,813,1004,446,116,43,75,2867,7,9,10,32,32,104,353,631,297,82,35,35,1620,4,9,14,5,12,45,186,318,229,79,43,28,975,5,0,13,13,8,24,88,213,179,77,29,15,647,0,0,0,4,6,12,33,53,61,27,15,9,222,25,48,113,123,67
LGA11600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,7,4,9,4,6,0,0,0,0,0,0,0,3,26,0,0,9,9,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,3,3,6,6,9,0,3,0,0,0,0,0,3,33,0,0,4,11,0,0,0,0,0,0,0,4,25,6,0,6,3,0,0,0,0,0,0,0,0,23,5,0,8,4,0,0,0,0,0,0,0,0,22,10,0,3,4,3,0,0,0,0,0,0,0,20,8,0,5,6,0,0,0,0,0,0,0,0,19,3,0,0,3,0,0,0,0,0,0,0,3,15,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,3,0,0
LGA11650,17,14,26,29,30,43,57,38,0,5,6,48,309,40,66,50,58,24,46,49,24,3,0,4,33,389,119,324,242,305,155,234,180,57,9,3,10,72,1705,144,623,405,443,223,374,318,84,17,4,15,104,2752,48,97,340,555,420,788,778,207,30,10,23,83,3373,29,35,254,209,161,309,337,90,9,4,6,46,1497,34,61,181,424,398,867,1059,375,42,8,23,87,3567,15,21,100,267,263,697,1055,421,81,11,18,53,3006,7,14,54,140,212,672,1167,575,99,28,24,46,3048,4,13,25,90,133,452,932,530,96,20,19,31,2339,5,7,35,79,124,467,1125,839,160,30,16,35,2928,0,6,8,43,43,167,545,486,136,40,27,17,1515,9,8,8,14,23,79,249,323,125,52,34,10,943,0,0,5,6,12,41,120,220,115,36,23,5,593,0,0,0,3,3,9,26,53,35,21,13,7,171,8,32,87,119,121
LGA11700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,12,0,0,0,0,0,0,0,0,0,15,4,4,7,0,0,0,0,0,0,0,0,0,17,0,0,7,4,0,0,0,0,0,0,0,0,13,3,5,12,0,0,0,0,0,0,0,0,0,22,6,6,9,0,0,0,0,0,0,0,0,0,28,4,4,10,5,0,0,0,0,0,0,0,5,28,14,3,9,0,0,0,0,0,0,0,0,4,27,6,4,5,0,0,0,0,0,0,0,0,0,19,18,0,6,0,0,0,0,0,0,0,0,0,31,7,0,3,0,0,0,0,0,0,0,0,0,14,3,0,8,0,0,0,0,0,0,0,0,3,12,7,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,8,0,0
LGA11720,0,3,0,6,0,11,17,4,0,0,0,6,55,4,7,4,10,5,4,4,0,0,0,0,0,53,26,44,43,49,33,36,14,4,0,0,0,15,267,28,96,77,86,35,68,31,3,0,0,6,13,443,10,20,58,108,60,134,78,10,0,0,4,11,493,3,7,66,60,25,43,28,9,0,0,0,4,260,0,10,48,105,81,147,82,17,0,0,0,16,503,6,11,29,75,63,142,88,14,6,0,0,6,447,3,0,17,55,57,108,106,28,3,0,3,8,389,0,0,8,38,30,77,108,34,6,0,0,9,319,3,3,6,32,27,89,129,67,8,0,6,13,382,0,0,0,16,15,49,51,48,4,0,0,0,189,0,0,4,8,10,23,68,66,8,5,0,5,194,4,0,0,0,6,14,21,27,9,0,3,6,87,0,0,3,0,0,4,3,11,0,0,0,0,34,0,3,17,32,19
LGA11730,0,0,3,7,11,11,12,5,0,0,0,5,53,5,3,16,10,8,13,12,0,0,0,0,9,80,26,34,85,85,50,52,18,0,0,0,9,4,375,27,75,106,145,74,85,28,3,0,0,4,12,567,16,10,92,162,108,116,72,6,0,0,6,15,603,6,12,46,77,57,87,52,14,0,0,3,10,355,7,15,59,141,76,171,121,21,8,0,0,16,636,6,6,28,77,80,121,143,21,8,0,3,8,500,5,3,22,49,47,105,104,26,3,0,4,15,371,3,7,10,22,31,64,80,27,4,5,0,5,247,4,3,13,30,24,58,82,29,4,0,7,9,263,3,0,4,11,0,26,46,17,3,0,8,0,127,0,0,6,3,4,13,22,14,5,0,4,3,70,0,0,3,0,5,4,9,4,0,0,0,0,31,0,0,0,0,0,0,3,3,4,0,7,0,16,10,8,28,37,24
LGA11750,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,11,6,5,14,5,0,0,0,0,0,0,0,0,27,12,9,9,6,0,0,0,0,0,0,0,3,46,7,0,13,15,0,0,0,0,0,0,0,0,39,0,0,3,6,0,0,0,0,0,0,3,3,16,0,0,7,10,4,3,0,0,0,0,0,4,35,3,0,6,6,0,0,0,0,0,0,0,0,21,12,3,18,6,5,11,5,0,0,0,0,0,63,6,3,16,7,3,0,4,4,0,4,0,3,50,10,4,25,21,3,11,7,0,0,0,0,6,87,8,4,3,4,3,3,5,0,0,0,0,0,37,0,0,23,25,6,6,5,0,0,0,0,9,87,5,0,10,15,9,10,8,0,0,0,0,0,47,3,3,4,0,4,3,0,0,0,0,0,0,19,3,0,8,13,9
LGA11800,4,4,8,7,3,14,13,9,0,0,0,7,75,5,17,12,22,6,13,3,0,3,0,0,4,93,49,116,76,107,47,59,49,20,3,0,5,30,555,44,196,120,161,85,94,64,26,0,0,7,27,831,20,22,109,208,150,200,174,68,8,0,6,24,987,11,11,76,104,59,77,84,44,6,0,0,13,487,15,18,57,140,121,219,231,100,10,0,12,29,942,9,6,37,63,90,182,261,136,17,0,10,20,845,3,4,24,54,51,149,296,151,31,0,7,21,795,5,0,14,20,36,99,207,135,19,4,0,10,566,8,4,9,23,40,109,217,220,42,5,7,17,703,0,0,6,11,7,28,88,110,21,4,0,8,286,3,0,0,7,11,19,51,76,36,13,7,5,233,0,0,0,3,3,4,18,43,20,8,6,4,111,0,0,0,0,0,0,6,12,11,4,0,4,35,12,3,21,45,25
LGA12000,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,0,0,15,3,7,5,0,5,0,0,0,0,0,0,0,23,6,0,5,6,0,7,0,0,0,0,0,0,23,0,3,9,6,0,0,0,0,0,0,0,0,17,0,4,5,11,0,4,0,0,0,0,0,0,20,0,0,4,11,5,0,0,0,0,0,0,0,24,0,3,4,5,0,3,0,0,0,0,0,4,18,0,0,7,3,0,0,0,0,0,0,0,0,9,3,3,3,0,0,0,0,0,0,0,0,0,17,0,0,0,4,0,0,0,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,4
LGA12150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,17,5,0,0,0,0,0,0,0,0,30,5,10,23,12,0,0,0,0,0,0,0,6,49,4,0,18,14,0,0,0,0,0,0,0,3,38,0,4,15,8,0,0,0,0,0,0,0,4,27,4,7,16,16,0,0,0,0,0,0,0,4,48,0,4,22,8,4,0,0,0,0,0,0,3,45,7,3,15,6,0,0,0,0,0,0,0,0,33,9,3,3,7,4,0,0,0,0,0,0,0,24,9,3,9,9,0,0,0,0,0,0,0,0,27,4,0,5,6,0,0,0,0,0,0,0,0,17,7,0,4,4,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,5,7,0
LGA12160,0,0,5,0,0,0,0,0,0,0,0,0,9,4,5,4,0,0,0,0,0,0,0,0,0,12,13,19,14,16,0,4,0,0,0,0,0,4,69,16,35,42,24,10,4,0,0,0,0,0,9,132,0,9,25,39,12,4,3,0,0,0,0,4,109,0,9,23,15,12,8,0,0,0,0,0,3,72,6,3,27,36,16,5,0,0,0,0,0,4,99,3,0,21,23,10,10,5,0,0,0,4,0,76,0,0,6,28,11,4,0,0,0,0,0,6,56,0,0,8,29,3,7,4,0,0,0,0,5,57,0,0,3,14,8,7,10,0,0,0,0,3,53,0,0,3,5,0,7,3,0,0,0,0,3,26,0,0,0,3,8,3,4,0,0,0,0,0,25,0,0,0,6,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,18,5
LGA12350,0,0,0,3,0,0,0,0,0,0,0,0,11,0,5,8,0,0,0,0,0,0,0,0,0,22,10,21,38,21,4,0,0,0,0,0,0,3,107,19,34,54,45,8,0,0,0,0,0,0,4,175,0,3,44,56,8,14,0,0,0,0,0,0,138,6,5,17,38,3,5,0,0,0,0,0,0,70,3,10,31,73,24,9,0,0,0,0,0,0,156,4,0,18,46,12,5,0,0,0,0,0,0,96,5,0,18,33,14,12,4,3,0,0,0,3,92,0,0,5,16,13,11,5,0,0,0,0,0,61,0,0,6,19,10,9,8,0,0,0,0,6,62,5,0,9,10,5,5,3,0,0,0,0,0,32,0,3,3,0,3,0,3,0,0,0,0,0,12,0,0,0,0,5,4,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,17,22,10
LGA12380,16,25,30,26,12,39,115,147,46,13,9,51,523,64,66,45,22,8,29,50,41,7,4,4,35,375,176,384,168,101,54,75,174,161,43,8,11,87,1444,149,493,201,123,62,72,192,185,31,9,9,78,1596,37,99,158,131,72,129,297,299,69,15,7,58,1375,18,35,249,188,55,120,273,358,69,11,12,54,1442,14,57,98,169,109,219,577,614,116,21,12,65,2067,7,21,69,94,70,205,567,673,136,16,16,67,1944,12,13,37,83,54,179,652,729,168,26,20,46,2015,7,3,19,39,38,100,465,661,160,15,19,33,1555,7,6,16,32,43,114,607,1015,245,40,15,35,2173,4,0,11,19,15,66,287,552,155,33,14,28,1191,0,4,13,6,23,38,161,396,157,31,9,14,856,4,0,0,3,10,18,91,225,101,27,11,10,501,0,0,0,4,0,3,27,77,53,19,5,9,194,15,27,55,68,25
LGA12390,7,3,8,7,3,7,0,0,0,0,0,0,43,8,13,13,12,4,3,0,0,0,0,3,8,65,28,58,111,53,16,16,0,0,0,0,0,25,323,33,141,150,96,21,28,8,0,0,0,4,24,529,8,21,151,146,65,66,14,3,0,0,0,19,495,6,13,74,58,34,22,6,0,0,0,0,0,227,11,15,121,165,98,94,36,3,3,0,6,15,565,7,12,84,135,91,97,35,11,3,0,0,17,502,7,4,63,109,82,124,52,11,0,0,0,14,471,7,4,22,72,51,111,53,19,0,0,0,5,345,8,3,30,75,44,125,101,34,4,0,6,5,438,3,0,11,29,29,58,65,26,0,0,0,0,232,7,5,4,19,3,24,31,33,0,0,0,0,117,0,0,0,5,0,7,21,20,0,0,0,0,62,5,0,0,0,3,4,6,13,0,0,0,0,35,6,11,55,64,50
LGA12700,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,7,12,3,4,4,0,0,0,0,0,29,17,15,10,15,8,5,0,0,0,0,0,0,60,0,0,9,20,12,17,8,0,0,0,0,3,70,0,0,8,7,5,9,0,0,0,0,0,0,28,3,0,11,14,8,22,3,0,0,0,0,0,72,0,3,3,8,4,6,5,0,0,0,0,4,32,0,0,5,10,8,14,7,3,0,0,0,5,50,0,0,5,12,5,5,5,0,0,0,0,0,32,0,0,0,7,3,8,9,3,0,0,0,3,35,0,0,0,3,6,0,0,0,0,0,0,0,15,0,0,5,0,0,0,0,0,5,0,0,0,12,6,0,0,0,0,0,5,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,7,0
LGA12730,0,0,3,9,0,0,0,0,0,0,0,0,11,0,8,3,4,0,0,0,0,0,0,0,0,16,6,12,33,15,3,0,0,0,0,0,0,0,70,11,7,62,32,4,5,0,0,0,0,0,7,117,5,3,48,36,6,4,0,0,0,0,0,9,111,0,4,25,17,0,0,0,0,0,0,0,0,43,0,5,28,33,7,9,4,0,0,0,0,4,93,4,0,19,32,6,14,0,0,0,0,0,4,86,3,0,21,27,4,9,3,0,0,0,0,3,64,4,0,11,22,9,5,4,0,0,0,0,3,53,4,0,10,19,3,3,4,0,0,0,0,0,47,0,0,0,7,3,7,0,0,0,0,0,0,18,0,0,0,3,6,0,0,6,0,0,0,0,16,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,10,9,5
LGA12750,0,0,4,10,0,3,4,0,0,0,0,7,30,4,9,12,18,4,5,4,0,0,0,0,7,62,15,32,46,66,41,27,14,0,0,0,5,15,247,30,62,64,80,38,49,15,4,0,0,5,11,360,9,11,62,127,88,121,63,10,0,0,0,11,497,3,4,44,46,36,65,36,5,0,0,0,9,252,3,5,44,71,74,136,84,20,0,0,4,13,455,6,3,38,63,70,116,98,22,0,0,0,7,421,0,0,16,31,35,85,73,29,4,0,4,7,296,4,0,9,24,25,46,64,13,0,0,3,8,195,8,0,11,18,30,61,57,23,0,0,12,3,229,0,0,0,0,9,20,33,28,0,0,4,0,101,0,0,0,6,0,6,13,22,4,0,4,0,62,0,0,0,0,0,3,12,19,0,0,0,4,37,0,0,0,0,0,0,4,0,0,0,0,0,5,3,5,30,36,24
LGA12850,15,21,43,29,37,78,74,73,13,0,11,44,438,44,45,37,24,15,25,33,29,4,4,0,23,281,132,291,187,142,98,164,170,114,10,3,11,68,1391,103,402,215,144,93,177,190,116,13,4,7,43,1493,24,54,125,109,95,196,248,182,21,4,11,45,1123,24,41,323,222,108,232,346,316,37,0,8,71,1724,22,42,109,252,163,315,417,406,58,3,12,51,1839,20,19,79,124,138,263,416,435,62,7,7,41,1605,9,5,47,90,87,272,406,455,78,17,8,35,1506,3,9,27,42,58,158,295,364,48,12,7,34,1059,0,7,23,48,52,160,324,492,104,23,16,43,1286,0,0,12,19,26,77,171,294,77,12,4,14,721,0,0,8,5,9,23,74,125,40,14,4,9,315,0,0,4,6,5,15,47,81,39,9,3,3,220,0,0,0,3,3,0,11,24,12,9,0,3,63,19,17,69,79,70
LGA12870,0,3,0,0,0,4,0,0,0,0,0,4,11,4,0,4,6,0,0,0,0,0,0,3,0,13,7,6,23,15,6,3,0,0,0,0,0,6,77,12,8,35,34,6,9,0,0,0,0,0,4,106,3,0,35,45,21,22,4,3,0,0,0,5,145,0,4,17,18,3,8,0,0,3,0,0,0,46,0,0,20,37,17,22,7,0,0,0,3,3,116,4,0,24,31,19,16,9,0,0,0,0,0,106,8,4,14,24,13,22,8,0,0,0,0,3,84,3,6,10,16,11,19,6,0,0,0,3,4,75,0,0,6,14,22,19,9,3,0,0,0,0,71,3,0,3,3,3,12,10,3,0,0,0,0,36,0,3,4,3,4,4,5,0,0,0,0,5,24,0,0,0,0,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,4,7,8
LGA12900,0,0,0,4,0,0,0,0,0,0,0,4,7,4,3,5,3,0,0,0,0,0,0,0,0,18,10,13,18,19,0,0,0,0,0,0,0,7,74,12,31,49,51,5,0,0,0,0,0,0,9,153,0,9,39,38,11,0,0,0,0,0,0,0,101,0,4,23,43,6,0,0,0,0,0,0,0,69,0,7,37,56,5,5,0,0,0,0,0,3,122,0,5,18,38,8,3,0,0,0,0,4,7,79,0,4,7,23,9,7,4,0,0,0,0,8,55,0,0,8,21,10,4,4,0,0,0,0,4,51,3,0,8,29,8,8,4,0,0,0,0,0,55,6,0,0,8,6,0,0,0,0,0,0,3,24,0,0,3,4,3,3,6,0,0,0,0,0,18,0,0,3,0,5,0,3,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,9,5,6
LGA12930,7,9,9,18,18,20,48,102,86,40,18,40,408,24,19,17,4,4,4,15,39,27,7,0,14,168,57,141,44,34,20,36,49,91,30,14,8,38,561,41,204,50,44,18,43,72,99,42,14,7,36,669,16,28,44,44,28,64,156,193,74,21,9,28,701,10,7,70,58,16,39,89,125,45,11,8,17,492,10,16,41,76,47,99,219,339,130,31,17,46,1066,7,9,28,30,41,100,285,390,181,28,17,31,1145,0,5,14,32,32,91,278,506,183,50,23,32,1246,6,0,16,24,14,39,218,427,180,35,23,21,1005,3,0,11,23,20,65,316,644,301,116,47,42,1578,0,0,12,10,20,31,162,437,242,82,34,24,1051,0,0,4,14,12,24,77,276,202,80,63,15,779,0,0,0,0,3,12,44,160,155,73,56,11,522,0,0,0,4,0,3,14,39,53,36,28,6,182,3,4,22,21,21
LGA12950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,6,4,15,7,0,0,0,0,0,0,0,0,37,3,9,24,10,0,0,0,0,0,0,0,0,47,4,8,24,18,0,0,0,0,0,0,0,0,51,0,3,7,12,6,0,0,0,0,0,0,0,19,0,0,15,17,3,0,0,0,0,0,0,0,52,0,4,5,9,0,0,0,0,0,0,0,3,33,0,0,7,11,5,0,0,0,0,0,0,3,24,0,4,9,8,0,0,0,0,0,0,0,0,20,9,0,6,11,4,0,0,0,0,0,4,0,29,0,3,0,5,0,0,0,0,0,0,0,0,15,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,9,8,0
LGA13010,0,0,0,5,0,0,0,0,0,0,0,3,13,0,4,9,6,0,0,0,0,0,0,0,3,18,0,8,21,22,9,0,0,0,0,0,0,8,66,0,11,51,37,6,4,0,0,0,0,0,4,123,7,0,37,34,9,4,0,0,0,0,0,8,99,0,3,21,23,17,7,0,0,0,0,0,0,68,0,4,29,36,14,5,3,0,0,0,0,6,101,0,4,17,30,19,7,0,0,0,0,0,8,86,0,0,8,27,5,12,0,0,0,0,0,0,67,3,0,0,8,10,5,0,0,0,0,0,0,32,3,0,11,7,16,6,4,3,0,0,0,5,49,3,0,0,0,3,6,0,0,0,0,0,0,14,0,0,7,3,0,4,5,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,11,12,8
LGA13310,0,9,3,7,4,0,0,0,0,0,0,5,28,5,11,12,10,3,3,0,0,0,0,0,4,44,21,34,49,47,12,4,3,0,0,0,0,10,199,18,90,94,72,29,16,5,0,0,0,5,21,344,5,26,76,96,46,46,21,0,0,0,0,6,329,5,3,39,45,19,21,10,0,0,0,0,4,151,7,7,59,103,38,70,33,0,0,0,0,6,324,0,7,38,60,47,73,36,8,0,0,3,6,284,8,0,17,69,48,58,36,12,0,0,0,5,260,3,3,18,25,38,51,34,9,3,0,4,8,191,0,5,7,51,27,67,44,13,0,0,4,10,225,5,0,6,13,15,32,34,7,0,0,3,6,112,3,3,0,6,10,16,24,8,0,0,0,0,74,0,0,0,0,3,8,15,3,6,0,0,5,37,0,0,0,0,0,0,0,5,0,0,0,0,6,0,4,16,25,23
LGA13340,0,0,0,0,4,0,0,0,0,0,0,0,4,0,3,3,0,0,0,0,0,0,0,0,0,15,0,0,11,9,0,6,3,0,0,0,0,0,35,0,10,24,17,5,5,0,0,0,0,4,3,65,0,7,21,13,7,5,0,0,0,0,0,4,58,0,0,10,8,6,0,0,0,0,0,0,0,28,4,3,14,22,11,3,7,0,0,0,0,4,56,0,0,9,22,6,9,3,0,0,0,0,5,54,0,0,6,21,15,3,4,0,0,0,5,6,56,0,0,15,13,3,4,0,0,0,0,0,3,38,3,0,8,19,10,10,6,0,0,0,0,4,57,0,0,6,3,4,3,4,3,0,0,0,3,27,0,0,5,3,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,3
LGA13450,5,0,6,15,4,3,0,0,0,0,0,6,39,8,0,11,7,5,4,0,0,0,0,0,0,38,19,26,54,44,11,11,4,0,0,0,0,5,184,32,40,59,50,16,8,3,0,0,0,3,10,224,12,12,57,72,43,29,3,6,0,0,0,6,244,0,3,33,36,9,9,0,3,0,0,0,3,102,10,5,47,101,49,43,7,3,0,0,0,5,284,4,8,45,67,43,47,7,8,0,0,0,6,234,6,5,30,68,52,42,29,10,0,0,0,11,248,0,0,28,36,27,58,27,7,0,0,0,8,198,0,7,17,46,43,78,23,12,0,0,6,7,238,0,0,10,19,24,31,17,13,0,0,0,0,113,0,0,3,4,6,14,19,13,0,0,0,3,75,0,0,0,0,5,8,10,9,0,0,0,0,44,0,0,0,0,3,3,0,4,0,0,0,0,12,5,4,18,34,23
LGA13550,0,0,4,0,0,0,0,0,0,0,0,5,7,0,4,5,3,0,0,0,0,0,0,0,0,14,3,8,35,25,0,8,0,0,0,0,0,7,81,12,21,48,36,12,11,5,3,0,0,0,3,149,0,3,37,35,16,17,6,4,0,0,0,4,130,0,0,9,17,8,15,3,0,0,0,0,0,61,4,6,19,31,26,27,7,3,0,0,0,6,132,5,0,15,24,33,19,12,0,0,0,5,4,117,0,3,7,26,22,19,12,3,0,0,4,3,99,4,0,9,15,14,15,16,8,0,0,0,3,80,0,0,8,14,8,26,24,9,0,0,0,9,111,0,0,0,4,11,9,3,3,0,0,0,0,44,3,0,4,10,4,18,8,10,4,0,4,5,78,0,0,0,6,0,10,0,0,0,0,0,0,25,0,0,0,0,0,0,0,5,0,0,0,0,10,7,3,3,18,13
LGA13660,0,0,0,5,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,7,6,0,12,6,0,0,0,0,0,0,0,0,24,7,11,20,7,0,0,0,0,0,0,0,6,44,0,5,14,10,3,0,0,0,0,0,0,4,35,0,8,10,13,3,0,0,0,0,0,0,0,31,6,0,12,6,5,3,0,0,0,0,0,6,38,6,0,17,10,0,0,0,0,0,0,0,0,38,0,7,8,11,0,3,0,0,0,0,0,0,27,3,0,7,7,0,0,0,0,0,0,0,0,26,4,0,10,0,3,3,0,0,0,0,0,4,21,5,0,6,3,0,0,0,0,0,0,0,0,11,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,14,4,0
LGA13800,0,0,3,4,0,9,14,7,0,3,0,10,51,0,9,11,8,3,8,15,9,0,0,0,6,63,12,31,55,56,18,15,24,11,0,0,0,10,234,24,42,86,63,27,33,41,16,4,0,5,19,365,3,3,56,64,46,76,100,38,6,0,0,12,408,5,0,22,27,24,34,58,8,0,0,0,8,193,5,4,23,68,65,76,167,75,10,6,0,16,523,0,9,17,38,60,86,154,79,11,15,3,13,480,7,0,10,32,41,86,202,118,20,5,10,12,544,4,3,11,19,50,52,162,101,25,3,3,5,442,6,0,8,19,46,77,161,184,27,7,13,13,557,5,0,9,16,33,42,84,104,23,16,8,10,343,0,0,4,7,10,15,48,71,19,7,8,3,195,0,0,0,7,11,15,27,41,30,13,7,7,143,0,0,4,0,0,0,7,9,0,3,4,5,36,4,3,11,30,24
LGA13850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,17,7,0,0,0,0,0,0,0,5,34,0,5,19,7,0,0,0,0,0,0,0,3,40,0,0,21,15,0,0,0,0,0,0,0,0,41,0,0,9,4,0,0,0,0,0,0,0,0,23,6,0,24,7,0,0,0,0,0,0,0,4,41,6,3,10,10,0,0,0,0,0,0,0,3,30,4,3,12,8,0,0,0,0,0,0,0,0,29,4,0,3,4,0,0,0,0,0,0,0,0,15,5,0,6,3,4,0,0,0,0,0,0,0,20,0,0,0,4,0,0,0,0,0,0,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,0
LGA13910,0,0,5,6,10,0,0,0,0,0,0,5,18,0,4,7,10,0,3,0,0,0,0,0,0,21,8,9,25,44,4,11,3,0,0,0,0,7,111,12,23,65,51,17,10,0,0,0,0,0,3,196,11,10,46,75,31,21,8,0,0,0,0,8,214,4,4,20,42,11,16,0,0,0,0,0,3,103,5,10,44,82,32,20,0,0,0,0,0,6,214,5,0,22,50,30,23,10,0,0,0,0,6,155,6,0,17,45,31,29,15,3,0,0,0,0,143,3,0,8,18,17,13,10,0,0,0,0,3,83,4,3,19,27,19,25,12,0,0,0,0,3,116,4,0,5,9,8,8,3,5,0,0,0,5,36,0,0,3,8,6,0,3,0,0,0,0,0,26,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,16,26,16
LGA14000,0,5,14,3,6,8,14,42,49,15,8,17,183,13,18,0,7,7,11,11,21,21,3,0,6,111,30,75,40,33,11,13,16,35,27,4,11,18,315,36,98,61,43,14,42,17,38,23,9,4,32,408,10,23,62,43,23,41,58,90,51,16,4,28,432,7,0,42,19,11,18,15,57,28,10,4,13,219,9,10,28,47,30,55,91,160,84,14,19,23,566,6,5,8,27,27,54,109,206,121,27,20,15,623,4,3,9,9,20,58,143,284,151,41,25,23,766,7,0,11,6,11,17,96,284,141,51,25,17,675,10,0,9,21,19,35,113,393,368,90,58,20,1141,0,0,5,5,10,25,53,303,227,77,44,6,764,0,0,4,11,9,11,48,259,301,137,143,11,931,0,0,3,3,7,7,23,132,205,138,109,13,643,0,0,0,0,4,0,4,40,66,59,70,3,244,3,3,13,14,4
LGA14100,0,7,0,0,0,0,3,3,0,0,0,3,22,3,0,0,0,0,0,0,6,0,0,0,0,13,25,44,7,6,0,0,3,0,0,0,0,3,88,10,57,3,9,0,0,0,6,0,3,0,5,92,0,12,12,0,0,0,3,3,3,0,0,3,51,3,0,17,8,0,0,0,5,0,0,0,0,36,0,3,6,9,3,7,6,22,7,0,4,0,71,0,0,0,8,0,7,12,8,8,3,0,4,58,0,0,0,0,3,17,16,21,4,8,0,0,65,0,0,0,0,0,0,18,15,12,3,9,0,68,0,0,0,0,0,4,15,27,18,11,9,3,95,0,0,0,0,0,4,5,14,19,10,17,0,66,0,0,0,0,0,0,8,20,29,31,59,4,154,0,0,0,0,0,3,5,8,12,22,37,3,93,0,0,0,0,0,5,0,4,7,10,46,0,75,0,0,4,0,0
LGA14170,5,8,17,22,25,43,84,90,51,21,23,50,443,38,33,23,17,12,23,36,35,19,7,15,13,270,98,223,109,95,42,83,120,100,24,14,28,71,1023,104,323,158,115,85,110,111,100,40,19,27,51,1248,18,65,131,146,120,204,245,219,68,33,29,33,1314,10,21,66,71,34,57,111,119,32,12,16,17,569,20,28,52,136,129,252,464,406,131,64,43,34,1762,8,14,38,77,89,237,546,545,179,90,59,44,1929,7,7,30,75,76,234,603,748,291,162,114,33,2385,4,7,21,42,60,147,524,737,318,123,125,35,2134,0,5,24,43,62,162,623,1199,676,345,235,45,3424,0,3,7,19,23,76,279,820,649,376,241,36,2527,5,3,9,21,25,64,197,616,666,505,600,45,2748,3,0,0,7,8,27,80,348,475,543,620,34,2149,0,0,4,4,11,6,29,80,182,276,646,20,1260,10,15,39,40,29
LGA14220,0,0,8,7,0,4,0,0,0,0,0,0,21,8,3,20,8,3,0,0,0,0,0,0,3,48,16,21,48,31,5,8,4,0,0,0,0,10,139,23,28,47,45,10,8,0,3,0,0,3,8,173,14,12,50,39,10,34,7,0,3,0,4,10,173,18,5,33,33,13,18,4,0,0,0,0,0,114,8,9,42,64,31,53,13,4,5,4,0,15,251,4,7,29,35,24,34,13,3,0,0,0,3,160,0,0,23,30,26,21,18,4,0,0,0,7,136,8,0,6,15,11,28,13,3,0,0,0,0,83,3,3,15,14,9,21,13,5,0,0,0,3,93,3,0,0,5,3,11,9,3,3,0,0,3,46,0,0,0,3,0,8,6,4,0,0,0,0,24,0,0,5,0,0,4,0,9,0,0,0,0,25,0,0,0,5,0,0,0,4,0,0,0,0,10,0,0,16,28,12
LGA14300,5,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,10,5,5,11,6,0,0,0,0,0,0,0,4,34,10,10,19,10,10,6,0,0,0,0,0,3,68,6,3,6,8,8,8,0,0,0,0,0,0,42,0,0,8,14,3,0,0,0,0,0,0,0,24,8,4,3,15,6,3,5,0,0,0,0,0,41,0,4,7,14,12,0,0,0,0,0,0,0,40,0,0,6,3,7,6,5,0,0,0,0,0,26,0,0,0,13,6,0,0,0,0,0,0,0,26,0,0,5,4,3,9,4,0,0,0,0,0,22,0,0,3,4,5,0,0,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,11,0
LGA14350,3,0,5,3,4,9,0,3,0,0,0,7,35,9,0,17,3,7,9,0,0,0,0,0,10,54,13,20,54,58,17,20,11,0,0,0,0,12,199,15,57,106,110,45,38,11,3,0,0,0,3,394,4,10,62,144,76,58,20,3,0,0,8,14,389,5,0,39,59,32,33,11,3,3,0,0,4,191,9,7,45,109,78,86,41,4,0,0,0,12,384,4,0,14,65,56,74,31,7,3,0,0,4,261,8,5,15,54,51,49,28,4,5,0,0,7,224,0,3,7,37,21,43,26,5,3,0,5,7,165,0,0,9,29,26,50,22,13,0,0,0,7,161,0,0,4,9,10,12,13,8,5,0,0,3,64,4,0,0,7,10,14,9,8,5,0,3,7,63,0,0,4,3,0,5,9,4,9,0,0,0,34,0,0,0,0,5,0,0,0,0,0,0,0,8,9,0,17,42,35
LGA14400,0,0,0,0,0,0,0,3,0,0,0,4,9,0,0,0,0,0,0,3,0,0,0,0,0,10,3,7,7,11,3,9,5,5,3,0,4,0,63,4,8,10,16,6,12,3,0,0,0,0,6,73,0,3,8,16,26,25,32,12,0,0,0,11,136,0,0,4,6,3,6,15,3,3,0,0,0,56,0,7,8,17,12,26,47,35,8,0,0,3,150,0,4,0,9,12,34,38,44,7,5,0,0,158,0,0,0,12,11,24,50,43,11,3,0,9,160,0,0,0,0,8,13,39,43,7,3,4,6,114,0,0,3,13,11,17,50,65,15,5,5,0,186,0,0,0,4,4,11,31,37,13,3,0,0,112,0,0,0,0,6,4,9,50,16,0,0,0,78,0,0,0,0,0,4,4,18,7,3,4,5,44,0,0,0,0,0,0,0,3,0,0,0,3,13,0,0,0,0,5
LGA14500,0,0,3,5,0,0,3,21,28,25,40,11,135,0,0,6,0,0,0,5,10,8,3,19,5,48,3,3,7,5,0,4,6,11,9,10,19,10,82,3,35,10,3,5,3,9,15,15,10,17,10,147,4,16,18,9,6,8,12,24,17,20,14,7,163,0,0,3,0,0,0,11,12,14,5,21,3,81,4,3,6,11,12,10,21,39,43,21,33,11,207,3,0,9,5,9,5,19,44,47,35,47,9,226,0,0,10,6,0,11,23,57,53,43,50,7,264,0,0,3,3,0,7,28,66,68,54,70,11,318,0,0,0,8,3,12,27,96,154,102,154,11,565,0,0,0,3,9,9,12,53,91,77,112,9,372,0,4,5,3,4,4,15,64,131,156,643,22,1050,0,0,0,0,6,8,8,38,77,121,357,10,622,0,0,4,0,0,0,5,10,39,54,301,5,424,0,0,3,0,0
LGA14550,0,0,0,4,0,3,0,0,0,0,0,0,7,0,0,4,4,0,0,0,0,0,0,0,0,8,5,7,20,13,5,0,0,0,0,0,0,0,60,8,6,19,17,9,17,4,0,0,0,0,3,81,6,0,14,31,15,26,8,3,0,0,0,0,101,0,0,17,22,5,5,10,0,0,0,0,0,58,3,3,16,26,10,21,6,0,0,0,0,3,88,0,0,19,19,9,18,12,0,0,0,0,3,80,3,0,8,10,4,19,7,0,0,0,0,3,57,0,0,5,12,3,7,3,0,0,0,0,5,34,4,0,3,9,4,7,3,0,0,0,0,0,30,0,0,0,3,3,6,4,0,0,0,0,3,18,0,0,0,0,0,0,4,0,0,0,0,0,10,0,0,3,0,5,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,5,3
LGA14600,0,0,0,7,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,3,13,5,16,10,0,0,0,0,0,0,0,5,48,16,10,42,5,0,0,0,0,0,0,0,5,82,5,0,35,12,0,0,0,0,0,0,3,0,56,4,0,21,3,0,0,0,0,0,0,0,0,31,8,3,40,14,0,0,0,0,0,0,0,7,66,5,8,23,16,5,0,0,0,0,0,0,4,56,10,0,17,10,4,0,0,0,0,0,0,3,50,8,3,19,11,0,0,0,0,0,0,0,0,50,20,0,10,15,8,0,0,0,0,0,0,3,58,10,0,3,5,0,0,4,0,0,0,0,0,24,3,4,5,5,6,0,0,0,0,0,0,0,18,0,3,8,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,24,10,0
LGA14650,0,7,16,24,11,17,22,10,0,0,6,36,148,28,35,21,36,15,12,20,11,6,0,0,18,203,91,230,178,126,44,78,79,19,3,0,14,57,926,108,481,263,271,74,161,121,29,3,4,14,72,1605,34,64,239,296,163,292,318,78,9,0,8,41,1549,20,37,229,133,62,137,158,35,10,0,0,23,852,30,41,161,303,194,356,508,134,21,7,7,40,1799,22,20,111,180,120,328,437,163,26,4,4,31,1445,6,13,43,95,127,349,533,215,34,5,3,18,1442,4,9,21,67,89,231,407,202,39,4,3,24,1104,6,4,34,53,75,234,516,404,108,20,19,17,1488,5,3,9,21,30,127,256,252,70,6,8,12,792,4,3,15,12,24,64,153,200,88,21,15,8,623,0,0,7,10,5,20,73,130,65,10,12,4,336,0,0,0,0,8,4,16,28,22,6,8,10,104,11,20,64,77,61
LGA14700,0,0,0,0,0,0,0,17,7,9,4,0,52,7,0,5,0,0,0,4,11,3,0,0,0,34,13,22,10,10,4,3,12,13,3,3,5,5,100,16,59,19,9,3,3,9,8,8,3,0,4,144,5,13,8,6,5,6,15,27,11,0,4,9,109,0,7,9,0,0,0,10,14,9,0,0,0,45,0,3,6,11,5,4,36,70,14,9,8,0,169,0,0,7,9,8,12,43,83,30,9,3,6,203,0,0,0,3,7,12,51,119,35,16,20,6,270,0,3,0,0,0,13,40,116,43,16,10,5,248,0,4,0,3,4,11,48,233,86,41,35,3,479,0,0,0,3,4,3,27,162,89,40,23,7,357,0,0,6,0,0,6,28,150,110,65,148,13,518,0,0,0,0,0,0,11,71,90,57,122,11,375,0,0,0,0,0,5,3,30,24,32,113,5,213,0,0,6,7,0
LGA14750,0,0,5,5,0,0,5,0,0,0,0,0,15,4,0,5,4,3,0,0,0,0,0,0,0,16,3,15,9,16,0,0,0,0,0,0,0,3,62,17,11,36,32,14,3,0,0,0,0,0,0,114,3,7,14,47,13,8,0,0,0,0,0,5,101,0,0,12,21,4,4,0,0,0,0,0,3,49,0,6,27,48,17,14,3,0,0,0,3,11,120,4,0,22,22,23,11,0,0,0,0,0,7,84,0,0,20,33,18,8,5,0,0,0,0,0,98,0,0,7,26,25,6,3,0,0,0,0,0,74,0,0,10,31,16,5,3,0,0,0,0,0,71,0,0,7,16,5,4,9,0,0,0,0,0,37,0,0,5,9,4,0,0,0,0,0,0,0,23,0,0,5,0,4,0,3,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,5,0,3,8,16,7
LGA14850,0,0,5,6,7,4,8,4,0,0,0,9,51,9,10,17,10,5,4,8,3,0,0,0,6,80,26,62,77,86,36,36,18,3,0,0,0,13,356,27,98,95,134,51,45,41,7,0,0,3,18,513,5,17,91,136,90,96,98,14,0,0,4,14,562,9,11,42,48,47,60,60,19,4,0,0,0,299,9,15,44,109,82,123,132,35,0,0,0,11,556,8,6,34,74,62,92,144,42,4,0,0,8,471,4,9,16,57,54,107,162,47,5,0,0,9,474,0,0,10,29,32,62,102,41,5,0,0,5,293,4,5,8,23,22,61,110,41,5,0,4,6,285,0,0,3,0,3,29,32,33,3,0,0,4,110,0,0,5,5,3,10,19,25,4,0,0,3,75,0,0,0,0,0,4,0,13,0,0,0,8,25,0,0,0,0,0,0,4,0,0,0,0,0,13,3,4,20,32,27
LGA14870,0,5,0,0,7,0,0,0,0,0,0,3,20,11,4,6,12,0,0,0,0,0,0,0,0,42,15,38,41,53,12,6,6,0,0,0,0,8,174,11,50,60,63,16,3,3,0,0,0,0,11,221,0,12,60,91,34,25,8,0,0,0,0,5,230,4,6,42,34,18,13,3,0,0,0,0,4,119,8,0,39,75,30,25,7,0,0,0,0,0,192,0,4,17,67,35,16,5,0,0,0,3,8,157,0,0,16,50,28,32,6,8,5,0,3,0,143,0,5,7,26,27,23,4,0,0,0,0,0,92,0,0,12,37,33,28,14,6,0,0,0,0,135,3,0,0,10,9,7,9,4,0,0,0,0,47,3,0,3,11,8,15,7,12,0,0,0,0,56,0,0,3,5,6,4,4,3,0,0,0,0,21,0,0,4,0,0,5,0,7,0,0,0,0,12,0,3,10,29,17
LGA14900,16,15,18,12,10,37,36,49,14,0,4,34,242,90,45,19,17,5,21,19,24,5,0,3,21,278,182,300,147,74,37,93,117,83,11,4,7,61,1123,112,490,166,89,42,86,114,83,11,3,13,60,1263,29,57,142,95,68,154,221,165,26,3,11,28,992,27,34,249,141,58,151,202,163,25,4,0,42,1089,21,42,121,176,101,222,372,346,72,8,9,43,1528,13,15,62,95,104,230,385,367,86,15,14,33,1413,4,11,54,66,95,207,374,469,134,19,5,50,1485,8,3,22,38,74,137,312,377,148,11,6,29,1170,4,3,29,55,124,164,356,563,240,38,10,34,1618,5,0,15,40,50,79,208,383,181,28,25,15,1029,0,0,7,22,26,38,77,202,139,29,16,13,575,6,0,3,3,17,29,56,124,102,33,6,9,386,0,0,0,6,4,7,7,41,33,14,0,5,128,18,19,61,76,82
LGA14920,0,0,0,3,0,0,0,0,0,0,0,0,4,4,0,0,3,0,0,0,0,0,0,0,3,4,3,6,14,9,9,5,0,0,0,0,0,0,54,12,8,36,25,0,0,0,0,0,0,0,5,81,5,0,26,33,6,11,3,3,0,0,0,5,85,0,6,11,13,6,0,0,0,0,0,0,6,34,7,8,24,38,10,6,3,0,0,0,0,3,96,5,0,15,13,10,7,3,0,0,0,0,13,65,0,6,11,17,8,9,0,0,0,0,0,4,68,4,0,16,14,6,9,0,0,0,0,0,0,52,0,0,4,14,10,8,11,0,0,0,0,6,46,4,0,6,3,0,4,4,0,0,0,0,0,17,0,0,4,0,0,3,6,0,0,0,0,0,15,0,0,0,3,0,0,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,15,20,6
LGA14950,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,7,0,0,0,0,0,0,0,0,0,12,7,5,0,8,0,0,0,0,0,0,0,0,10,3,0,5,4,0,0,0,0,0,0,0,0,14,0,3,0,4,4,0,0,0,0,0,0,0,14,4,0,3,4,4,4,0,0,0,0,0,0,24,0,0,0,8,0,0,0,0,0,0,0,0,13,0,0,4,3,0,0,0,0,0,0,0,0,10,0,0,4,4,0,0,0,0,0,0,0,0,8,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA15050,4,8,6,8,5,7,12,6,0,0,0,17,67,17,11,11,7,9,3,8,0,0,0,0,4,82,33,83,68,47,21,21,19,10,0,0,5,21,332,25,161,119,95,27,46,36,12,0,0,3,24,549,8,31,83,100,62,93,113,33,4,0,0,7,537,7,10,91,55,34,43,33,12,0,0,0,12,300,9,15,60,125,75,132,156,46,3,0,3,23,649,9,6,37,86,59,125,163,63,0,0,0,16,558,3,3,32,64,61,132,197,102,8,0,5,7,622,3,0,10,34,48,78,178,83,13,4,3,12,476,4,4,11,45,46,102,266,178,18,3,3,13,689,0,0,9,25,31,41,106,122,19,3,3,5,372,0,3,7,11,12,36,97,143,34,3,4,8,351,0,0,3,8,6,17,42,86,19,7,0,8,190,0,0,0,0,4,6,7,37,14,0,0,3,67,3,13,29,34,30
LGA15240,7,4,7,13,14,12,14,4,3,4,0,14,93,11,18,27,38,16,13,10,9,0,0,8,13,159,37,75,164,191,55,60,30,9,0,0,7,24,649,42,142,236,306,131,103,58,12,0,0,7,36,1064,15,38,186,360,148,226,120,15,0,0,9,19,1147,13,17,93,181,81,146,88,14,0,3,7,18,663,11,19,100,289,177,295,180,38,0,0,9,32,1151,11,8,76,204,124,226,170,36,5,5,6,16,886,8,3,34,115,90,228,151,34,3,0,8,20,697,13,3,25,67,66,114,143,34,0,4,8,21,500,4,3,24,51,53,125,148,69,9,8,4,20,520,4,5,8,9,17,43,80,25,3,0,0,9,205,0,0,3,11,18,30,40,26,8,0,4,11,154,0,0,0,9,3,16,24,14,4,0,0,3,76,0,0,0,0,0,6,8,11,0,0,4,0,31,10,0,32,92,74
LGA15270,0,0,0,10,3,0,0,0,0,0,0,0,15,0,9,7,9,4,5,0,4,0,0,0,0,30,5,7,31,30,8,11,4,0,0,0,0,4,100,13,21,73,57,22,16,9,0,0,0,5,4,222,0,9,41,58,28,42,9,4,0,0,6,3,204,3,0,19,30,23,22,11,4,0,0,0,3,109,7,3,33,49,40,37,29,7,0,0,0,5,218,4,4,15,35,35,48,29,7,0,0,0,4,174,3,6,8,32,16,51,29,6,4,0,4,6,156,7,0,9,16,18,26,30,16,0,0,4,6,134,5,0,4,18,28,42,47,31,4,0,0,9,187,3,0,0,12,3,21,25,25,7,0,0,3,105,0,0,3,11,7,12,33,32,8,0,3,8,121,4,0,0,0,0,3,18,27,3,0,0,4,61,0,0,0,0,0,3,4,9,9,0,3,4,29,0,6,12,19,13
LGA15300,5,0,9,6,0,0,0,0,0,0,0,0,25,8,4,13,4,0,0,0,0,0,0,0,0,26,26,13,39,19,8,6,0,0,0,0,0,6,116,25,11,57,33,3,3,0,0,0,0,0,3,138,8,3,47,32,6,13,3,0,0,0,4,4,126,6,4,30,26,6,3,0,0,0,0,0,0,72,15,6,59,63,18,15,5,5,0,0,0,10,192,9,4,63,43,16,13,8,7,0,0,0,9,165,16,4,44,56,16,21,10,3,0,0,0,6,181,7,3,22,39,13,36,10,4,0,0,0,5,139,16,6,35,26,9,30,14,8,0,0,0,6,153,11,0,14,17,6,9,10,7,0,0,0,3,80,6,0,8,12,0,14,8,9,0,0,0,7,65,0,0,4,0,6,9,3,4,0,0,0,0,34,0,0,0,0,0,0,0,6,0,0,0,0,4,5,6,32,25,14
LGA15350,0,0,0,0,0,0,6,19,9,4,14,6,59,0,0,0,5,0,0,4,3,0,0,8,0,17,0,5,8,5,0,4,14,13,10,3,5,6,70,4,12,9,10,3,8,9,17,8,0,4,5,83,0,0,6,13,3,5,31,42,16,3,6,8,132,0,0,0,0,0,0,0,8,12,6,3,0,35,0,0,0,3,6,3,36,54,29,13,12,3,168,0,0,3,0,4,5,30,77,37,17,23,4,207,0,5,4,5,0,10,36,107,43,13,16,4,236,0,0,0,0,0,3,46,105,54,17,30,5,255,0,0,0,0,3,12,46,171,90,47,47,9,433,0,0,0,0,0,5,13,80,69,19,36,3,227,0,0,0,0,0,3,19,116,149,103,336,7,745,0,0,5,0,0,6,0,54,70,56,155,3,353,0,0,0,0,0,0,0,19,48,39,212,6,333,0,0,0,0,0
LGA15520,0,0,3,4,0,0,0,0,0,0,0,3,11,4,3,6,0,0,0,0,0,0,0,0,0,12,3,5,8,16,0,3,0,4,0,0,0,6,50,19,10,28,20,3,8,0,0,0,0,0,0,94,8,0,28,36,7,10,0,0,0,0,0,4,104,9,0,11,9,7,8,0,0,0,0,0,0,46,7,0,27,30,14,20,9,0,0,0,3,0,116,7,0,15,23,4,17,5,0,0,0,0,7,78,3,3,10,13,13,15,11,0,0,0,0,5,82,5,0,13,9,8,14,4,5,0,0,0,0,69,4,3,5,13,4,18,20,3,0,0,0,5,81,3,0,3,9,3,0,9,5,0,0,0,0,40,5,0,5,0,0,8,7,0,0,0,0,0,30,3,0,0,4,0,0,0,4,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,3,9,4
LGA15560,0,0,6,4,0,0,0,0,0,0,0,0,9,0,0,0,5,0,0,0,0,0,0,0,0,5,4,0,7,0,0,0,0,0,0,0,0,0,15,9,4,14,10,0,0,0,0,0,0,0,0,45,8,0,13,21,0,0,0,0,0,0,0,0,48,0,0,5,6,0,0,0,0,0,0,0,0,10,5,3,16,14,0,0,0,0,0,0,0,6,47,0,4,9,15,4,0,0,0,0,0,0,5,35,0,3,11,12,0,0,0,0,0,0,0,0,26,0,0,0,9,0,0,0,0,0,0,0,0,18,0,4,14,3,4,0,0,0,0,0,0,6,24,0,0,0,5,0,0,0,0,0,0,0,0,11,3,0,3,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,3
LGA15650,0,0,6,6,0,0,0,0,0,0,0,0,23,0,10,8,0,3,0,3,0,0,0,0,6,30,5,12,24,9,0,7,5,0,0,0,0,8,76,4,11,51,35,10,11,10,5,0,0,0,10,146,0,10,28,43,14,23,4,8,0,0,0,11,135,0,0,16,24,12,13,0,4,0,0,0,0,69,0,3,16,42,36,31,27,13,0,0,3,8,178,3,3,16,36,27,13,26,12,0,0,0,5,153,0,3,9,23,26,36,38,21,6,0,3,7,168,0,0,10,17,24,27,34,17,4,0,0,8,141,5,0,9,25,17,42,56,42,11,3,0,3,224,0,0,4,5,6,18,39,29,3,0,0,4,108,0,0,4,16,14,33,39,72,7,3,5,4,196,0,0,3,12,9,10,17,45,6,3,0,7,105,0,0,0,0,4,3,6,17,6,0,3,7,49,0,0,5,20,11
LGA15700,0,0,7,0,5,0,4,0,0,0,4,0,23,0,6,6,3,7,3,0,0,0,0,0,0,24,8,26,47,52,15,15,13,0,0,0,0,8,187,16,66,70,52,19,22,8,4,0,0,0,4,263,4,10,39,64,56,42,28,4,0,0,0,18,267,5,4,51,42,26,30,21,5,0,0,0,0,177,7,13,32,53,40,48,31,8,0,0,3,6,228,4,0,22,39,28,52,44,6,0,0,4,0,203,0,0,14,19,31,45,36,11,0,0,0,4,156,0,0,4,13,19,23,15,8,0,0,0,0,81,3,0,11,7,8,19,24,4,0,0,0,0,91,0,0,0,3,4,7,10,3,0,0,0,0,30,0,0,0,4,0,8,8,0,0,0,0,0,19,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,15,26,14
LGA15750,0,0,3,0,0,0,0,0,0,0,0,5,15,6,0,15,9,6,0,0,0,0,0,0,0,29,7,11,35,11,4,5,0,0,0,0,3,0,84,13,32,60,22,3,0,3,0,0,0,0,6,141,7,3,46,31,13,8,4,0,6,0,0,0,122,0,9,21,25,5,6,0,0,0,0,0,0,64,4,4,42,31,22,9,8,4,0,0,0,9,140,4,3,31,27,14,14,8,0,0,0,0,5,110,6,6,30,34,11,11,10,3,0,0,0,8,117,3,0,21,25,5,12,6,6,0,0,3,9,93,4,0,26,24,16,19,13,8,3,0,0,10,127,4,0,7,12,9,6,18,5,7,0,0,3,65,3,4,8,12,6,7,9,9,4,0,3,8,76,5,0,3,0,3,4,0,8,0,0,4,4,33,0,0,0,0,0,3,0,0,0,0,0,0,10,4,6,14,20,4
LGA15800,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,9,0,0,0,0,0,0,0,3,0,11,3,4,19,3,0,0,0,0,0,0,0,4,38,6,14,34,15,3,6,0,0,0,0,0,8,82,4,4,28,21,8,4,0,0,0,0,0,3,73,0,0,10,13,3,0,0,0,0,0,0,0,31,6,0,20,23,4,0,0,0,0,0,0,0,62,0,7,15,21,4,0,0,0,0,0,0,4,52,5,0,10,20,0,3,0,0,0,0,0,6,44,3,0,3,3,8,4,0,3,0,0,0,0,24,4,0,5,18,0,4,0,0,0,0,0,5,26,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,3,0,4,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,12,4
LGA15850,0,0,3,0,0,0,0,0,0,0,0,0,9,3,6,8,7,0,0,0,0,0,0,0,0,17,3,10,22,18,6,0,0,0,0,0,3,0,59,7,14,35,19,7,4,0,0,0,0,0,8,94,8,8,26,32,15,4,0,0,0,0,0,3,89,0,3,14,10,0,4,0,0,0,0,0,0,30,4,4,21,27,9,9,0,0,0,0,0,7,78,5,3,8,16,10,3,0,0,0,0,0,4,46,0,0,12,20,10,6,0,0,0,0,0,0,49,0,0,21,10,3,3,0,0,0,0,0,0,38,0,0,3,12,13,3,3,0,0,0,0,4,42,0,0,3,5,0,5,0,0,0,0,0,0,19,0,0,4,3,5,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,7,8,0
LGA15900,8,22,26,26,15,18,43,35,12,5,16,42,274,60,54,41,41,18,18,26,15,9,4,4,16,303,196,382,218,164,71,88,93,37,6,7,9,69,1349,170,673,267,263,88,134,168,40,11,10,12,95,1934,42,92,204,307,149,242,264,99,13,3,17,56,1485,16,25,137,107,52,142,158,71,12,0,5,33,770,19,43,119,296,190,352,469,163,23,9,17,56,1762,20,16,96,171,159,338,504,265,46,12,12,40,1681,5,9,57,135,136,346,633,311,63,19,18,38,1773,7,3,26,81,94,234,525,360,64,18,21,27,1469,3,8,31,76,91,301,735,566,141,27,37,29,2054,0,0,17,34,48,140,385,383,105,32,29,20,1194,5,6,15,20,27,68,245,308,178,90,67,22,1047,0,0,6,8,18,48,130,194,90,50,32,12,584,0,0,0,0,3,11,28,52,47,35,37,7,220,9,27,61,74,45
LGA15950,6,3,0,0,0,3,24,45,51,18,39,21,206,15,5,7,0,0,0,14,8,18,11,3,6,84,34,68,17,7,0,16,24,26,15,20,17,13,263,20,99,11,12,8,10,45,37,22,8,12,19,300,3,13,15,19,18,24,59,77,41,20,18,14,339,0,0,19,4,4,0,10,18,11,14,8,3,90,0,6,8,18,15,24,95,153,65,36,34,16,460,0,0,4,12,17,45,117,197,133,47,54,21,646,5,4,3,10,24,36,147,297,181,67,80,29,877,3,0,0,4,15,21,170,408,202,96,93,16,1029,7,4,3,3,14,27,192,637,497,204,223,38,1850,0,0,0,12,13,11,38,294,375,175,130,25,1068,4,4,0,7,8,19,103,544,700,530,796,32,2744,0,0,0,9,9,7,32,260,506,431,547,20,1816,3,0,0,3,0,5,9,95,256,279,637,12,1292,0,0,4,4,9
LGA15990,6,7,5,3,3,9,24,57,39,25,59,31,269,29,23,16,9,4,7,4,24,20,4,21,10,182,45,137,39,28,13,19,46,49,37,16,25,39,502,98,196,104,54,27,35,64,83,41,22,32,44,810,22,45,136,72,61,61,145,218,111,42,59,51,1017,5,12,51,19,11,9,21,73,33,19,25,10,301,8,15,54,53,36,84,203,352,182,75,100,54,1213,10,9,32,43,45,85,242,484,230,132,128,41,1454,9,8,17,17,31,71,265,572,317,166,181,46,1697,3,0,14,15,17,51,186,547,398,180,216,43,1671,9,3,13,18,40,61,209,861,767,378,432,51,2837,4,0,10,11,29,23,109,562,642,346,366,37,2135,5,9,6,18,9,18,82,371,530,444,1197,47,2734,0,0,4,12,17,24,40,182,353,376,862,28,1898,4,0,4,0,0,5,13,50,121,174,730,22,1120,11,7,14,13,21
LGA16100,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,4,9,7,3,7,4,0,0,0,0,0,0,28,3,5,8,14,4,0,0,0,0,0,0,0,40,0,0,14,10,4,8,0,0,0,0,0,0,44,0,5,4,7,7,5,0,0,0,0,0,0,22,4,3,5,7,6,6,0,0,0,0,0,5,34,0,0,12,12,6,9,0,0,0,0,0,3,47,0,0,3,9,10,9,5,0,0,0,0,4,41,0,0,4,7,8,9,3,0,0,0,0,0,26,0,4,0,3,9,12,4,0,0,0,0,0,38,0,0,0,5,0,6,0,0,0,0,0,0,11,0,0,5,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,6
LGA16150,0,0,0,11,3,5,11,0,6,0,0,9,44,9,19,15,11,8,3,5,5,0,0,0,8,79,29,60,63,52,13,16,8,5,3,6,7,18,278,32,99,88,84,27,30,20,3,0,0,6,16,390,7,15,73,90,61,82,33,7,0,0,0,14,387,0,10,42,72,11,19,15,6,0,0,0,7,183,7,11,53,93,72,108,60,12,0,0,0,12,424,3,10,19,85,57,111,67,22,3,0,0,10,378,6,6,23,62,54,118,93,23,6,0,0,10,405,3,0,6,50,46,78,86,45,11,5,5,8,337,0,0,7,54,42,101,143,80,16,4,10,19,476,0,0,7,24,15,47,67,53,14,0,3,4,232,0,0,0,9,8,39,62,71,39,8,14,27,290,0,0,0,3,4,13,42,47,12,4,14,8,152,0,0,0,6,0,0,7,28,15,9,23,5,89,6,8,19,37,28
LGA16200,0,0,3,6,0,0,0,0,0,0,3,4,19,8,5,7,4,3,0,0,0,0,0,0,0,28,15,35,40,17,4,0,0,0,0,0,0,9,123,24,49,73,43,9,0,5,0,0,0,0,12,215,5,4,63,57,14,11,0,0,0,0,0,9,164,0,8,27,28,3,0,4,0,0,0,0,3,76,7,13,45,40,9,9,10,0,0,0,0,3,136,11,0,32,42,7,17,7,0,0,0,0,5,110,5,3,22,49,18,19,7,0,0,0,0,0,132,0,3,17,34,15,18,5,5,0,0,0,3,90,0,4,10,25,17,20,12,8,0,0,0,7,105,0,0,5,10,4,9,13,3,0,0,0,0,44,4,0,8,10,6,12,14,12,5,0,0,0,64,0,0,5,5,0,12,10,0,0,0,0,0,33,0,0,0,0,0,0,4,0,0,0,0,0,10,0,0,17,13,3
LGA16260,18,29,27,24,7,19,87,146,91,33,34,53,567,59,63,33,13,12,5,30,46,22,4,5,28,333,184,312,152,78,32,34,88,113,42,21,17,71,1138,117,489,178,78,21,57,95,119,32,15,10,78,1288,39,84,155,104,61,80,214,230,94,21,6,53,1135,24,25,206,122,43,50,119,182,66,5,10,22,879,12,48,89,147,79,156,422,534,173,43,20,54,1785,21,17,56,90,71,168,521,660,207,58,30,71,1962,14,8,49,61,57,153,578,896,277,80,37,51,2257,4,10,25,38,48,103,521,884,297,70,26,51,2073,5,6,20,44,46,125,650,1439,507,128,56,52,3082,0,5,10,25,31,69,371,965,406,105,52,31,2073,0,9,12,17,27,46,231,755,473,183,116,33,1906,4,6,3,7,22,22,121,413,306,163,86,22,1173,0,0,7,7,8,5,26,98,123,72,64,5,415,18,19,54,49,34
LGA16350,11,0,12,7,18,20,42,21,5,3,0,28,164,40,30,22,19,9,23,26,7,0,0,3,20,199,72,181,102,81,48,71,97,35,4,0,4,44,749,75,308,136,102,83,117,127,65,9,0,8,47,1076,24,43,92,157,148,221,345,132,14,4,9,38,1219,18,25,124,97,51,111,148,49,8,4,3,29,648,18,29,69,179,155,302,532,232,21,6,9,44,1592,8,16,54,94,141,298,565,263,35,8,9,41,1522,7,13,34,81,119,266,693,382,44,8,6,38,1685,8,0,11,49,79,189,589,331,46,5,11,24,1345,3,0,15,56,80,212,746,582,87,21,14,28,1855,0,0,9,20,44,98,388,429,77,25,11,12,1118,6,0,6,11,25,49,172,185,77,17,14,11,566,0,0,0,4,16,22,95,142,49,20,14,7,369,0,0,0,3,0,6,20,28,14,8,9,3,103,5,20,49,43,70
LGA16380,0,0,5,9,13,10,9,4,0,0,0,15,69,12,14,14,20,13,17,12,3,5,0,3,3,115,20,107,77,92,57,46,38,9,0,0,0,19,465,37,167,130,179,76,80,61,27,0,0,10,27,787,10,27,91,206,109,189,156,45,0,0,0,26,863,9,0,64,69,62,82,92,43,4,0,0,17,445,9,24,45,159,110,217,249,95,16,3,7,25,961,7,5,41,95,88,190,237,118,13,0,3,8,808,4,4,19,68,74,164,236,122,15,0,3,14,708,0,0,17,32,49,89,196,141,18,5,5,10,563,4,4,10,32,34,88,207,151,23,7,5,24,589,0,0,8,8,0,37,78,100,27,3,5,4,282,0,0,0,8,6,18,50,84,45,9,11,9,236,0,0,0,0,0,4,20,38,23,3,4,5,98,0,0,0,0,0,0,0,4,6,6,5,0,23,3,5,13,39,33
LGA16400,3,3,3,8,6,21,11,7,3,0,0,4,69,10,11,7,5,4,11,10,3,0,0,0,0,63,22,67,50,35,35,45,30,16,3,0,6,16,309,38,118,89,92,55,57,46,14,5,0,7,23,533,3,29,81,125,86,130,101,41,3,0,3,10,618,3,17,53,56,45,79,61,23,4,0,0,7,349,9,25,49,109,84,178,170,51,7,0,3,8,689,12,5,30,61,83,148,189,77,12,0,7,11,648,3,5,30,61,95,151,211,94,7,0,0,16,675,3,6,13,54,67,117,161,86,16,4,0,10,538,8,3,11,48,82,137,206,161,18,4,7,21,693,7,0,7,23,60,61,101,79,15,3,4,12,373,0,0,0,9,18,37,44,67,27,4,18,5,232,0,0,0,9,7,16,21,39,20,8,0,0,126,0,0,0,0,0,3,9,5,7,4,4,0,38,7,11,23,31,38
LGA16490,0,0,4,3,7,3,10,3,6,0,0,7,42,7,8,8,8,3,5,8,5,0,0,0,6,48,20,49,35,24,8,5,15,6,0,3,0,18,178,32,83,62,43,20,12,17,11,6,0,0,13,305,7,17,43,93,28,48,39,23,0,5,3,6,319,3,0,27,16,3,16,7,7,4,0,5,7,88,7,8,25,64,54,83,87,48,10,0,0,11,405,0,3,26,63,58,88,102,65,8,0,5,10,434,0,6,19,56,70,82,135,113,18,11,5,10,533,4,0,6,35,45,69,127,121,47,13,4,9,482,0,6,14,41,45,97,169,232,70,19,8,18,724,0,0,4,6,31,52,85,141,72,12,9,10,431,4,0,5,18,10,42,86,88,62,22,15,3,350,0,0,0,7,6,41,53,76,61,41,17,8,311,0,0,0,0,3,14,30,10,12,21,15,5,112,7,3,18,19,19
LGA16550,15,27,21,27,15,27,56,140,196,144,128,68,860,59,56,14,6,13,5,13,46,40,21,20,26,325,151,323,91,56,17,27,55,62,53,42,42,70,990,120,521,155,67,20,31,52,72,50,22,32,62,1204,20,77,127,74,40,55,115,192,104,43,43,41,930,24,19,127,61,16,26,37,83,45,23,23,24,502,20,42,55,114,48,84,168,287,183,67,52,56,1176,9,18,55,65,38,84,176,399,257,81,74,30,1295,6,11,26,32,36,49,183,463,392,163,94,34,1500,8,3,12,12,23,47,159,462,360,158,121,30,1397,4,3,10,12,25,50,203,710,701,301,217,48,2299,0,0,9,10,27,32,80,491,664,288,227,26,1860,3,9,9,6,17,39,67,399,566,335,536,30,2016,0,0,5,8,17,34,41,235,478,382,517,29,1744,0,0,4,4,4,6,23,60,198,187,485,7,974,12,18,27,54,25
LGA16610,0,0,0,9,7,3,3,0,0,0,0,0,23,3,4,4,15,4,5,0,0,0,0,0,0,38,7,20,31,51,24,29,13,4,0,0,0,14,187,15,39,60,84,21,26,15,0,0,0,5,17,279,3,9,53,63,45,61,36,9,4,0,0,5,291,0,3,30,39,30,32,17,9,3,0,3,8,176,10,5,41,71,44,92,52,7,0,0,0,12,330,6,3,24,40,34,71,58,5,0,0,0,12,246,3,0,9,27,21,59,38,14,0,0,0,4,185,4,0,9,11,15,29,48,10,0,0,0,0,127,0,4,3,11,13,50,39,5,4,0,3,9,139,7,0,0,6,5,15,28,5,0,0,0,0,63,0,0,0,3,0,8,11,8,0,0,6,0,36,0,0,0,0,0,0,8,0,0,0,0,0,16,0,0,0,0,3,0,5,0,0,0,0,0,7,0,0,9,17,19
LGA16700,4,7,17,22,17,20,67,156,106,61,54,48,572,22,29,16,9,4,6,22,32,21,9,13,15,185,71,164,73,34,17,22,52,72,32,11,13,40,599,66,213,112,36,24,19,53,65,26,13,9,36,675,9,30,78,50,27,62,114,123,43,15,16,21,600,9,10,96,57,23,36,52,72,24,13,9,12,407,9,24,24,63,27,89,205,230,84,28,20,29,832,3,9,24,22,29,80,272,305,126,35,26,25,962,6,3,15,28,23,91,300,401,158,49,27,17,1128,0,4,12,12,22,59,288,385,140,65,31,23,1038,3,5,11,22,27,70,324,629,264,99,60,34,1548,3,0,5,17,25,19,161,415,252,85,47,20,1039,4,0,4,11,14,25,124,363,248,156,125,12,1086,0,0,5,6,0,8,73,204,193,125,107,5,728,0,0,0,0,4,4,15,50,72,67,76,8,301,7,6,22,30,18
LGA16900,0,3,7,7,7,4,6,6,0,0,0,8,54,13,16,8,6,3,7,10,6,0,0,0,9,84,35,118,45,55,25,34,23,6,0,0,6,16,363,34,184,110,82,50,50,46,21,4,0,6,33,620,12,26,80,106,79,97,123,46,3,0,0,17,590,10,15,110,69,35,50,40,21,7,3,0,9,353,10,19,50,108,67,131,161,67,11,0,0,15,628,3,8,39,71,44,112,159,84,11,0,0,9,540,6,5,20,40,42,100,178,95,9,0,4,5,504,4,0,4,25,30,76,141,94,14,0,4,4,393,5,0,9,18,36,87,200,157,34,0,9,12,568,0,0,0,13,10,37,80,92,20,3,0,5,261,0,0,6,0,7,16,45,64,32,7,0,3,198,0,0,0,0,5,13,24,29,23,5,0,5,98,5,0,0,0,0,0,0,12,10,0,0,0,29,8,4,21,37,30
LGA16950,3,4,14,13,10,14,12,8,0,0,4,9,92,17,25,25,25,15,9,16,0,0,0,5,7,141,48,85,117,116,62,77,29,3,0,0,3,23,571,42,137,190,189,109,127,61,13,0,0,6,30,901,15,27,196,278,170,249,126,15,5,0,8,28,1122,7,16,111,132,82,133,77,12,0,0,0,14,593,15,18,74,216,184,288,192,31,0,0,4,27,1047,18,9,69,146,162,248,200,46,4,3,6,14,922,13,6,34,99,126,209,210,49,12,0,0,8,761,5,6,27,72,72,145,156,73,0,4,5,16,585,5,0,21,46,87,150,151,70,10,5,4,11,564,3,0,7,22,30,57,93,54,0,3,4,4,289,0,0,4,10,20,35,44,31,14,0,9,7,183,0,0,0,6,12,19,31,29,0,3,10,0,108,0,0,0,0,5,0,4,16,3,0,0,0,37,3,14,35,77,77
LGA17000,0,0,3,0,0,0,6,4,0,0,0,3,24,3,7,3,0,0,3,0,0,0,0,0,0,22,10,26,23,10,3,6,5,6,0,0,0,4,100,9,44,35,16,4,7,6,0,0,0,0,3,126,6,8,22,14,16,8,18,9,0,0,0,5,106,5,0,14,3,5,8,7,3,0,0,0,6,53,8,6,12,26,20,33,28,11,0,0,4,8,154,7,6,12,20,21,39,24,14,5,0,0,0,156,7,0,3,26,15,20,40,26,0,0,0,9,151,3,0,6,17,23,35,40,36,3,0,0,3,169,3,6,9,17,18,43,61,62,13,0,7,9,245,0,0,3,7,17,14,34,43,3,0,0,0,134,0,0,10,10,14,27,57,86,33,4,5,12,255,0,0,0,5,7,8,32,57,12,5,4,6,132,0,0,0,0,0,5,10,30,9,4,3,4,72,4,3,8,6,7
LGA17040,0,0,6,3,0,3,0,0,0,0,0,0,16,0,6,13,0,0,0,0,0,0,0,0,0,28,6,19,31,22,3,4,4,5,0,0,3,13,101,20,29,54,19,12,13,4,0,0,0,4,7,163,4,10,41,50,30,17,13,6,4,0,12,10,192,0,0,14,24,16,12,3,0,0,0,0,0,73,4,7,44,52,24,36,11,4,7,0,16,10,207,3,3,25,51,22,33,14,0,0,4,12,0,173,3,3,16,26,27,29,23,8,0,11,8,8,170,0,0,9,17,18,23,23,13,0,0,7,6,125,0,0,14,18,21,39,24,19,3,5,13,6,170,0,0,8,13,9,12,12,16,8,9,22,12,117,0,0,3,11,3,5,10,10,7,5,19,6,84,0,0,3,0,7,3,9,12,0,0,29,0,64,0,0,0,0,0,0,0,5,0,0,31,0,47,5,0,9,23,13
LGA17080,0,5,6,4,3,0,0,0,0,0,5,3,27,4,0,10,4,3,6,0,0,0,0,0,0,24,10,18,28,23,5,4,0,0,0,0,0,7,97,16,23,37,34,9,4,5,0,0,0,0,8,142,13,12,34,59,11,3,0,0,0,0,0,4,137,0,9,28,20,10,4,0,0,0,0,0,4,75,8,10,33,49,26,20,3,0,0,0,0,5,150,9,5,28,40,15,14,8,0,0,0,0,0,119,9,0,19,33,24,21,4,0,0,0,0,0,121,3,0,18,35,14,18,20,0,0,0,0,0,114,16,7,17,27,21,19,18,3,0,0,0,4,126,7,0,6,7,3,23,8,4,0,0,0,0,58,6,0,8,9,3,5,16,3,0,0,5,4,61,3,0,0,6,3,0,7,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,3,9,3,3,12,18,10
LGA17100,0,9,3,0,3,0,17,55,41,18,8,16,163,3,12,5,5,3,4,0,12,5,3,5,5,58,19,52,15,10,3,8,14,18,19,3,4,14,185,15,85,22,14,11,3,7,34,27,5,6,9,241,5,10,15,10,4,18,30,56,28,11,9,3,205,3,0,20,18,7,11,28,56,27,9,3,10,183,7,6,7,24,7,13,72,106,62,11,5,13,333,3,0,8,13,12,7,55,98,65,23,13,9,301,0,0,6,10,6,14,62,133,86,26,10,13,359,0,0,0,6,3,9,33,145,70,20,7,7,305,0,0,0,3,4,6,66,192,151,29,20,12,495,0,0,0,5,6,6,28,162,72,37,15,6,341,3,0,3,4,0,0,13,105,78,26,19,0,255,0,0,0,0,3,0,18,74,47,9,24,0,176,0,0,0,0,0,4,4,16,26,19,20,0,90,3,0,3,6,3
LGA17150,5,4,6,4,5,12,26,39,19,4,6,19,152,21,29,14,9,10,12,14,19,4,5,4,9,146,92,166,78,49,18,40,40,55,18,11,7,47,622,69,290,120,58,41,48,95,77,20,12,5,41,864,19,60,82,74,55,89,184,199,59,24,8,36,891,3,9,68,46,13,18,34,51,22,9,7,6,295,7,18,34,87,59,123,288,315,113,28,21,28,1130,0,0,34,52,44,119,313,399,125,41,27,20,1184,7,9,17,19,53,114,354,548,186,68,41,30,1441,4,4,12,27,33,54,263,557,213,76,35,21,1301,9,0,9,27,40,78,354,813,413,183,108,20,2058,3,0,0,25,30,39,183,588,366,142,91,19,1489,6,0,5,16,25,34,111,383,291,190,192,19,1263,0,0,10,6,16,12,51,220,222,146,147,17,846,0,0,3,5,5,8,7,54,77,77,106,10,352,8,10,22,39,49
LGA17200,39,36,39,39,23,51,182,253,287,232,358,120,1675,118,108,46,42,19,33,49,55,52,43,61,57,672,404,760,212,116,55,79,100,118,91,70,128,158,2282,293,1147,202,126,70,99,103,128,81,62,119,140,2577,60,162,212,155,119,166,246,232,150,95,146,76,1812,42,52,304,113,31,55,74,60,73,49,82,37,964,35,110,121,221,131,258,367,344,276,156,214,84,2334,29,31,76,82,98,256,475,509,396,273,275,46,2552,16,26,42,62,64,217,519,763,561,350,371,76,3063,5,14,23,38,44,147,429,788,635,374,369,64,2944,15,10,34,32,46,126,449,1123,1258,773,758,97,4719,9,0,12,16,20,48,141,559,929,750,643,53,3177,6,4,10,17,12,65,204,801,1272,1112,1687,88,5288,6,7,5,7,14,25,72,317,763,947,1370,62,3587,4,0,9,14,6,11,24,89,265,522,1497,32,2465,33,51,66,63,38
LGA17310,0,5,13,15,3,8,0,0,0,0,3,8,57,18,4,9,17,5,8,3,6,0,0,0,0,85,32,50,79,86,37,25,15,7,0,0,5,15,362,33,105,146,123,57,58,36,6,0,0,5,18,584,13,12,136,203,99,93,74,5,0,0,0,23,669,5,15,82,79,47,65,26,5,0,0,0,9,325,4,21,99,203,117,147,99,19,6,0,7,27,741,5,15,49,140,79,135,93,17,3,0,5,18,553,3,4,30,116,95,154,125,36,3,0,3,12,586,4,0,24,68,59,107,109,34,0,0,3,14,428,8,0,19,53,60,110,157,48,3,0,0,15,471,3,0,8,13,20,53,93,37,3,0,3,5,246,4,3,4,12,11,24,46,46,5,0,0,7,170,0,0,0,4,0,16,29,18,4,0,0,0,77,0,0,0,3,0,3,4,9,4,0,0,0,23,5,6,28,44,53
LGA17350,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,5,10,4,14,8,0,0,0,0,0,0,0,0,37,18,14,19,22,4,0,0,0,0,0,0,3,80,7,10,28,20,3,0,0,0,0,0,0,3,71,6,5,12,10,0,0,0,0,0,0,0,0,33,0,0,13,30,13,0,0,0,0,0,0,0,51,0,3,18,15,0,0,0,0,0,0,0,0,41,4,5,5,12,4,0,0,0,0,0,0,0,33,0,3,6,11,0,0,0,0,0,0,0,0,21,5,0,4,10,8,3,0,0,0,0,0,0,23,4,0,3,9,0,3,0,0,0,0,0,0,17,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,6,0
LGA17400,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,4,9,0,0,0,0,0,0,0,0,13,3,6,23,10,5,0,0,0,0,0,4,6,59,3,11,35,29,5,0,0,0,0,0,0,0,89,0,3,18,22,10,7,0,0,0,0,0,0,62,3,3,15,22,11,0,0,0,0,0,0,0,58,0,0,23,29,11,5,0,0,0,0,0,3,71,0,0,8,20,7,11,0,0,0,0,0,3,61,0,0,3,14,4,8,0,0,0,0,0,0,31,0,0,9,3,5,0,0,0,0,0,0,8,28,3,0,8,8,7,0,0,0,0,0,0,0,32,0,0,0,3,0,0,0,0,0,0,0,0,10,0,0,4,8,0,0,0,0,0,0,0,0,11,0,0,0,6,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,17,0
LGA17420,5,0,0,0,0,5,0,22,26,7,16,15,101,4,0,4,4,0,0,0,4,10,10,5,3,48,0,13,12,5,11,10,15,12,21,3,9,10,116,8,12,22,9,11,8,7,24,22,3,0,12,140,0,0,20,23,15,12,31,61,35,18,10,12,232,6,0,4,9,4,5,16,20,24,12,7,7,104,0,0,11,13,14,8,40,90,63,21,16,15,285,3,4,8,13,8,17,41,126,85,22,20,23,381,3,3,10,13,21,17,40,144,136,51,36,11,487,0,0,7,12,12,9,39,150,153,62,35,8,490,0,0,7,9,16,27,70,259,273,115,71,25,866,4,0,5,9,27,19,30,161,219,103,62,8,639,4,0,7,4,10,9,31,171,297,165,208,13,920,0,0,0,0,8,16,14,88,170,153,118,10,574,0,0,6,0,0,6,3,18,62,63,108,0,269,4,6,0,11,15
LGA17550,5,5,4,5,11,18,30,23,7,0,0,22,130,7,15,17,14,9,22,17,14,6,0,3,14,133,31,94,88,81,46,71,62,41,3,5,8,23,539,25,147,154,138,66,116,152,61,5,6,12,45,934,6,23,112,167,117,215,272,116,21,4,13,31,1096,11,8,82,64,45,74,135,84,12,5,4,18,554,7,23,43,117,101,199,360,242,29,9,12,17,1157,3,10,31,50,69,127,340,236,48,4,8,23,956,3,6,30,30,45,116,325,278,39,6,14,17,907,0,3,12,26,22,66,203,236,51,8,8,7,645,6,0,11,20,11,51,215,313,99,23,11,21,778,0,0,3,8,6,22,94,184,50,14,7,0,389,0,0,3,3,3,9,35,82,51,21,13,8,230,0,0,3,0,0,4,12,50,28,12,11,0,131,0,0,0,0,0,5,6,8,8,0,5,0,34,0,5,21,27,21
LGA17620,0,0,0,3,7,0,0,0,0,0,0,4,16,0,8,0,3,0,0,0,0,0,0,0,5,18,3,5,24,10,0,0,0,0,0,0,3,5,56,10,26,60,14,5,0,6,0,0,0,0,3,125,0,3,32,37,16,16,4,0,0,0,0,6,123,0,4,19,18,4,10,0,0,0,0,0,3,61,8,10,21,43,38,18,20,0,0,0,0,17,168,4,0,12,30,22,18,9,0,0,0,0,8,105,4,4,15,22,22,16,14,9,0,0,3,12,117,9,0,9,17,16,12,21,7,0,0,0,9,95,4,0,9,32,13,30,36,12,0,0,4,12,153,0,0,0,14,9,13,18,9,0,0,0,0,66,0,0,4,7,5,12,17,11,3,0,0,4,59,3,0,0,0,7,6,7,7,0,0,0,0,37,0,0,0,0,0,0,4,5,0,0,0,3,14,0,0,11,20,8
LGA17640,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,6,4,4,0,0,0,0,0,0,11,0,0,6,3,3,0,0,0,0,0,5,0,20,10,7,10,3,0,0,4,0,0,0,0,5,47,0,4,11,8,8,6,4,0,0,0,0,7,42,0,0,0,11,0,0,0,0,0,0,0,0,15,0,0,6,9,4,7,0,0,0,0,0,3,31,0,4,8,8,7,4,3,0,0,0,6,0,36,3,3,0,16,9,3,4,0,0,0,0,0,39,0,0,4,4,0,0,0,0,0,0,0,0,15,5,0,5,11,7,8,0,0,3,0,0,0,34,4,0,0,4,3,7,4,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,6,4
LGA17650,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,6,4,0,0,5,0,0,0,0,0,23,0,0,15,12,3,0,0,0,0,0,0,4,36,6,0,11,18,8,6,6,0,0,0,0,0,54,0,0,8,8,4,5,0,0,0,0,0,0,31,3,0,16,11,7,4,5,0,0,0,0,0,47,0,0,8,11,3,3,6,4,0,0,0,0,38,0,3,9,10,6,7,0,0,0,0,0,0,45,0,0,4,9,6,3,3,0,0,0,0,0,35,3,0,3,3,3,3,0,0,0,0,0,6,23,0,0,5,0,0,0,0,3,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,3
LGA17750,4,0,3,19,13,7,13,0,4,3,0,13,88,19,18,16,15,10,9,7,0,0,0,0,6,101,40,88,78,90,25,42,17,11,3,0,4,21,428,48,118,137,121,40,49,32,6,3,3,3,15,569,10,34,111,154,80,104,68,6,0,0,5,19,608,10,8,79,82,35,46,46,13,0,0,0,10,331,13,28,86,221,102,148,121,27,5,0,3,30,777,10,8,46,134,85,181,135,29,5,0,3,9,644,7,4,37,91,81,168,203,65,9,7,3,19,702,8,3,23,65,73,122,143,69,11,5,3,13,536,4,12,22,59,78,150,220,121,17,0,0,9,691,0,0,7,30,45,89,111,75,19,0,9,5,386,0,6,6,10,20,30,50,76,26,6,3,6,239,0,3,5,9,10,10,30,35,16,0,0,7,132,0,0,7,7,4,4,10,10,3,5,0,3,49,3,7,27,69,68
LGA17850,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,14,0,5,12,5,3,0,0,0,0,0,0,5,34,0,4,11,7,0,0,0,0,0,0,0,0,21,0,0,4,3,0,0,0,0,0,0,0,3,11,3,0,12,7,0,0,0,0,0,0,0,0,24,0,3,0,3,0,0,0,0,0,0,0,0,20,3,0,8,12,3,0,0,0,0,0,0,0,31,0,0,0,3,4,0,0,0,0,0,0,0,7,0,0,4,4,9,0,0,0,0,0,0,0,22,0,0,0,8,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0
LGA17900,5,0,3,0,0,0,0,0,0,0,0,4,13,0,0,7,6,0,0,0,0,0,0,0,0,15,7,14,25,4,0,0,0,0,0,0,0,6,54,10,17,30,14,0,0,0,0,0,0,0,4,81,4,3,22,18,0,4,0,0,0,0,0,3,54,4,3,13,13,0,0,0,0,0,0,0,0,37,5,3,30,25,5,0,0,0,0,0,0,9,74,10,3,17,20,0,0,0,0,0,0,0,6,51,24,8,24,9,8,0,0,0,0,0,0,10,77,17,5,10,6,3,4,0,0,0,0,0,3,49,21,3,14,14,5,3,0,0,0,0,0,8,74,19,4,14,4,0,0,0,0,0,0,0,3,41,16,6,4,4,0,0,0,0,0,0,0,0,37,13,0,0,3,0,3,0,0,0,0,0,3,22,0,0,0,0,0,0,0,0,0,0,0,0,0,8,7,23,7,4
LGA17950,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,9,0,0,0,0,0,0,0,0,0,18,5,15,22,0,0,0,0,0,0,0,0,4,38,0,6,15,3,0,0,0,0,0,0,0,4,31,0,0,7,3,0,0,0,0,0,0,0,0,12,3,3,28,7,0,0,0,0,0,0,0,0,42,5,0,8,4,0,0,0,0,0,0,0,0,22,0,0,12,3,0,0,0,0,0,0,0,3,26,4,0,7,4,0,0,0,0,0,0,0,0,17,4,3,5,4,0,0,0,0,0,0,0,5,22,0,0,3,5,0,0,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,6,0
LGA18020,0,0,3,0,0,0,0,0,0,0,0,0,7,0,3,3,3,0,0,0,0,0,0,0,0,11,9,8,24,18,0,0,0,0,0,0,0,0,57,23,14,41,28,0,0,0,0,0,0,0,10,110,3,0,35,31,3,4,0,0,0,0,0,8,90,4,7,28,16,3,0,0,0,0,0,0,0,66,3,9,41,34,5,0,0,0,0,0,0,8,89,10,5,19,21,3,4,0,0,0,0,0,0,65,0,5,20,26,6,3,0,0,0,0,0,4,59,0,0,13,9,4,0,0,0,0,0,0,6,41,4,3,14,11,0,0,0,0,0,0,0,6,42,3,0,4,3,0,0,0,0,0,0,0,3,15,0,0,0,8,4,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,16,16,0
LGA18050,0,4,0,0,4,7,20,34,33,32,47,19,199,8,4,3,0,3,3,5,18,13,3,6,5,77,39,46,12,16,11,19,21,36,20,13,8,17,257,16,105,32,13,6,22,44,32,39,15,11,23,353,6,13,38,25,14,39,68,79,47,24,21,19,396,0,4,20,13,0,10,10,33,19,10,14,8,145,3,3,15,20,21,50,93,131,103,42,55,22,548,0,3,11,4,10,37,115,184,129,65,77,28,660,3,4,8,4,6,42,99,230,183,82,99,17,764,0,0,0,7,6,21,89,219,175,114,79,13,720,0,0,3,3,8,21,109,355,383,178,196,32,1290,0,3,3,6,7,12,29,205,309,193,192,18,974,0,0,5,3,4,17,46,210,372,334,584,23,1587,5,0,0,3,3,9,32,104,270,300,492,20,1226,0,0,0,0,0,0,5,25,105,166,656,16,982,5,4,0,12,11
LGA18100,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,12,5,3,0,3,0,0,0,0,0,0,0,0,12,12,12,20,5,0,0,0,0,0,0,0,6,49,0,3,18,9,0,0,0,0,0,0,0,0,34,0,3,7,9,0,0,0,0,0,0,0,0,16,3,3,20,9,0,0,0,0,0,0,0,0,41,0,0,5,7,0,0,0,0,0,0,0,0,16,0,4,12,5,0,0,0,0,0,0,0,0,18,4,0,0,10,0,0,0,0,0,0,0,0,14,0,0,6,5,6,0,0,0,0,0,0,0,12,0,0,0,6,0,0,0,0,0,0,0,0,11,0,4,4,0,0,0,0,0,0,0,0,0,7,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0
LGA18200,0,0,6,3,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,14,15,0,0,0,0,0,0,0,0,43,10,0,29,24,0,0,0,0,0,0,0,0,61,6,4,9,30,0,0,0,0,0,0,0,3,62,7,0,19,18,4,3,0,0,0,0,0,0,53,5,5,19,31,4,0,0,0,0,0,0,4,68,3,0,10,19,6,6,0,0,0,0,0,3,60,9,0,16,21,4,4,0,0,0,0,0,0,55,6,0,7,15,5,0,0,0,0,0,0,0,32,6,0,11,4,0,3,3,0,0,0,0,0,37,0,0,3,0,5,6,0,0,0,0,0,0,22,0,0,0,3,6,4,3,0,0,0,0,0,13,0,0,0,4,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,7,10,4
LGA18250,4,3,7,4,3,4,8,49,89,47,64,25,305,4,11,5,3,5,3,3,14,28,13,13,10,96,10,48,18,13,6,8,7,28,44,14,23,6,223,17,65,19,10,4,4,13,34,27,12,18,20,236,8,12,26,15,3,13,23,50,47,16,26,17,256,5,3,17,9,0,3,13,34,31,11,17,5,150,4,5,5,16,11,13,31,103,92,34,27,9,352,0,3,10,6,11,17,34,141,118,49,52,16,456,6,6,10,8,7,9,47,145,169,70,69,15,554,4,0,0,4,6,15,33,168,154,88,93,18,576,0,0,5,12,10,13,38,248,349,130,184,26,1022,0,0,0,6,4,8,14,155,255,119,112,11,685,0,0,5,3,9,10,28,178,419,209,467,24,1354,0,0,0,0,3,5,10,90,245,167,286,14,828,0,0,0,0,0,5,4,30,111,100,283,13,543,6,0,5,7,6
LGA18350,3,0,4,5,7,3,6,4,0,0,0,6,43,0,0,9,8,7,3,3,3,0,0,0,0,37,7,8,31,31,14,36,10,9,5,5,0,7,165,12,9,88,72,29,26,28,13,0,0,0,9,283,4,12,52,86,44,77,62,16,0,0,3,12,367,0,0,5,27,24,29,26,10,11,0,0,6,135,0,0,26,51,31,88,71,52,7,4,7,8,355,0,0,13,39,32,78,80,58,16,6,4,10,342,0,0,5,37,33,68,107,59,14,0,0,10,346,6,0,13,19,21,51,85,63,19,4,6,6,292,0,0,5,13,18,50,99,92,25,7,0,4,332,0,0,0,9,0,20,42,49,16,10,4,6,154,0,0,0,3,8,11,20,37,24,13,12,3,121,0,0,0,0,4,5,13,23,18,10,11,0,88,0,0,0,0,0,0,4,6,5,3,3,0,17,0,0,7,15,11
LGA18400,0,0,0,0,0,3,3,4,0,0,6,3,29,5,5,0,0,3,6,3,4,0,0,0,0,24,8,6,23,9,11,9,3,8,4,0,7,4,86,14,3,28,24,15,14,20,7,4,0,0,13,133,3,0,11,24,27,45,42,21,0,0,5,3,190,3,0,7,10,8,13,15,8,3,0,0,8,75,8,0,6,37,21,59,49,27,4,3,0,6,217,0,0,13,17,20,59,54,26,10,3,3,11,221,5,0,9,12,20,36,67,43,9,3,0,6,199,0,0,3,5,10,30,50,39,12,0,0,8,165,0,3,5,12,13,35,82,50,24,10,3,8,245,7,0,3,4,13,16,35,42,15,13,4,3,148,7,0,3,7,0,9,22,23,11,6,4,3,96,6,0,3,0,3,4,9,11,13,0,6,0,60,0,0,0,0,0,3,0,9,0,0,0,0,18,0,0,3,10,8
LGA18450,15,19,41,46,41,77,77,101,62,24,7,51,561,87,100,46,61,19,28,46,37,4,6,3,25,468,248,522,249,256,91,124,100,39,17,3,13,78,1735,195,856,366,286,139,149,131,50,13,4,26,96,2299,42,135,300,406,215,271,285,108,28,5,9,59,1862,27,38,368,227,102,177,175,84,25,9,17,32,1289,29,69,155,390,229,402,448,186,40,13,12,48,2033,19,15,104,248,202,379,455,263,58,18,12,52,1843,8,10,55,141,174,374,493,297,77,21,11,29,1698,8,10,37,93,106,260,438,283,72,11,16,19,1353,5,10,39,103,99,291,588,438,140,54,26,33,1836,5,4,8,37,49,120,293,330,93,26,18,14,999,9,3,15,33,27,57,190,255,127,51,30,17,818,0,0,0,10,9,34,81,123,93,43,17,9,418,0,0,0,5,4,13,21,40,46,20,15,6,164,19,17,88,106,81
LGA18500,5,0,0,0,0,7,3,17,19,15,38,5,114,0,0,4,0,0,0,0,9,8,0,7,4,40,3,8,11,8,8,9,12,17,14,10,20,12,127,11,18,7,4,8,16,37,30,24,19,13,11,194,5,7,14,19,14,28,50,50,43,13,25,9,282,0,0,3,0,4,0,3,12,13,10,16,4,56,3,4,4,9,7,39,50,64,46,24,30,14,287,3,0,5,3,9,33,61,88,82,35,76,9,406,4,0,11,8,5,25,70,117,75,55,83,10,458,0,0,0,0,10,18,51,125,116,63,70,6,464,3,0,3,0,6,21,71,201,179,113,168,17,786,0,0,6,3,6,7,15,103,147,102,133,13,530,0,0,0,5,3,6,30,139,223,239,604,22,1278,0,0,0,0,0,5,21,57,153,191,448,24,899,0,0,0,0,3,3,6,20,67,144,635,21,903,5,0,0,7,0
LGA18710,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,6,0,0,0,0,0,0,0,8,3,3,6,7,0,4,3,0,0,0,0,3,33,18,0,12,8,8,4,3,0,0,0,0,6,59,4,4,14,20,8,6,3,5,0,0,0,0,61,0,0,3,9,0,7,0,0,0,0,0,0,23,3,0,7,23,9,20,10,11,0,0,0,5,87,0,3,5,3,5,15,16,4,5,0,0,8,63,0,0,14,10,12,23,31,18,0,0,0,6,113,4,0,4,5,4,18,23,8,7,0,0,3,78,3,0,11,11,8,21,36,24,8,3,0,0,112,4,3,0,0,6,10,14,21,6,0,0,4,67,6,0,0,3,0,6,14,12,14,0,0,3,50,0,0,0,0,0,8,11,12,12,8,4,0,48,0,0,0,0,0,0,0,6,8,5,0,3,21,0,0,5,5,4
LGA19399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,4,5,0,0,0,0,0,0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,4,10,3,0,0,0,0,0,0,0,0,0,0,0,11,3,0,0,0,3,0,0,0,0,0,0,5,12,5,0,3,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,7,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,4,0
LGA19499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA19799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA20110,5,6,3,4,3,4,0,0,0,0,0,3,20,0,0,6,8,0,0,0,0,0,0,0,0,19,5,12,17,23,3,4,0,0,0,0,0,9,77,6,15,32,31,3,6,4,0,0,0,0,6,108,5,9,33,48,22,13,5,0,0,0,3,0,143,4,7,18,17,14,5,8,0,0,0,0,0,60,4,4,22,50,16,18,4,0,0,0,0,7,134,0,6,14,38,20,15,4,0,0,0,0,3,103,0,3,7,32,17,19,3,0,0,0,3,8,93,0,3,0,10,11,16,3,0,0,0,6,0,53,0,0,0,13,8,18,11,5,0,0,8,6,71,0,0,3,12,10,13,12,6,0,0,4,0,57,0,0,0,4,3,6,3,0,0,0,13,5,38,0,0,0,0,5,4,3,0,0,0,3,0,25,0,0,0,0,0,3,0,0,0,0,15,6,23,0,0,4,25,6
LGA20260,0,3,0,4,0,0,0,0,0,0,0,3,12,0,3,7,0,0,0,0,0,0,0,0,0,14,6,5,20,14,5,4,0,0,0,0,0,5,61,10,33,26,27,7,3,0,0,0,0,0,8,112,3,7,38,50,9,5,0,0,0,0,3,3,118,0,3,22,18,5,5,4,0,0,0,0,0,45,8,3,27,50,12,9,3,0,0,0,0,8,117,6,0,23,28,9,12,0,0,0,0,0,3,79,3,0,13,37,10,7,8,0,0,0,6,6,80,0,0,5,14,10,13,0,0,0,0,0,0,53,0,0,3,16,6,11,8,0,0,0,0,0,47,0,0,4,8,0,4,0,0,0,0,0,3,26,0,0,0,5,3,5,10,4,0,0,0,0,32,0,0,0,7,0,0,4,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,7,24,4
LGA20570,4,7,20,18,12,20,10,4,0,0,3,20,115,17,28,29,34,14,12,10,3,0,0,4,15,161,55,120,200,135,59,59,16,9,5,0,0,37,698,62,226,272,213,83,107,37,3,5,0,8,39,1057,17,50,267,375,181,196,56,16,5,0,4,25,1193,9,18,106,174,94,113,51,9,0,0,0,15,599,8,35,182,352,217,305,119,24,3,4,4,27,1292,9,17,95,258,185,343,109,31,6,5,4,27,1091,7,13,81,178,170,306,141,34,5,3,3,22,958,0,0,33,103,125,227,147,38,6,3,3,14,709,0,5,29,86,117,233,238,53,0,0,8,19,785,4,0,10,30,43,143,122,49,0,0,9,6,417,6,3,13,16,18,61,91,42,7,0,0,13,267,0,0,3,7,6,36,45,41,3,0,4,3,146,0,0,3,9,4,4,13,8,0,0,0,0,41,9,11,55,109,67
LGA20660,5,9,8,6,5,20,53,37,12,5,4,33,202,21,20,14,8,4,12,19,12,3,3,0,11,141,51,128,70,37,20,43,79,19,9,0,12,40,512,47,250,95,60,32,50,77,43,6,0,0,39,690,18,35,106,61,48,125,154,53,6,0,8,25,640,4,5,74,62,20,34,82,41,6,4,0,22,354,16,29,52,100,59,163,283,117,22,5,10,31,891,10,8,30,48,52,156,327,132,25,9,9,23,822,5,12,19,36,57,182,411,209,30,4,14,19,998,3,3,9,28,42,112,328,180,36,5,14,27,787,5,3,25,26,42,137,486,371,77,12,13,24,1229,0,0,14,21,34,83,305,291,49,13,18,16,846,0,5,9,15,20,39,164,223,81,28,28,12,622,0,0,3,8,9,21,86,159,95,23,14,13,431,0,0,0,4,0,7,19,39,37,14,13,0,135,3,10,34,34,29
LGA20740,0,0,0,4,0,6,9,8,3,0,0,0,28,0,4,6,9,4,8,0,0,0,0,0,3,43,16,43,31,39,27,20,11,0,0,0,0,10,194,9,67,51,81,28,25,16,3,0,0,0,13,286,0,6,47,92,55,67,31,8,0,0,6,10,341,0,0,26,24,25,36,15,3,0,0,0,5,129,0,6,27,68,47,71,50,12,0,0,0,12,296,0,5,16,47,37,74,36,16,3,0,6,14,256,0,0,12,25,45,70,46,26,0,0,6,13,241,3,0,3,8,33,41,40,25,10,0,9,9,193,0,0,7,15,27,60,61,51,10,7,5,19,260,4,0,4,12,14,21,34,21,9,0,3,9,126,0,0,7,6,22,59,69,110,61,16,13,38,397,0,0,0,0,6,14,17,32,23,8,8,4,112,0,0,0,0,6,5,9,31,28,4,7,11,107,0,0,3,30,23
LGA20830,0,4,7,7,8,5,3,0,0,0,0,3,39,7,10,9,16,7,7,6,0,0,0,0,5,61,20,34,51,43,11,20,0,0,0,0,0,4,183,18,50,68,63,27,26,8,0,3,0,3,12,284,6,12,86,82,63,73,33,0,0,3,4,14,373,4,5,42,45,18,34,15,0,0,0,0,6,169,3,9,50,84,58,88,41,4,0,0,0,7,348,0,4,35,70,51,86,53,6,0,0,0,7,313,3,0,23,45,68,86,50,14,0,0,0,7,296,3,8,15,40,29,66,40,7,0,0,0,3,208,0,4,15,33,35,74,70,12,0,0,0,8,246,3,3,6,10,9,28,37,10,0,0,0,6,124,0,0,6,5,3,24,22,6,0,0,0,7,79,0,0,4,3,4,9,17,4,0,0,0,0,38,0,0,4,0,0,0,7,0,0,0,0,0,20,6,4,12,23,20
LGA20910,4,3,0,4,7,3,13,20,9,11,15,12,105,10,17,5,9,4,0,7,14,0,4,5,4,86,41,104,45,20,7,12,18,26,3,0,14,27,312,29,156,75,16,17,21,35,34,15,7,6,30,440,7,16,66,28,21,33,78,43,17,8,11,15,352,8,7,44,28,9,8,19,22,8,5,0,5,162,4,18,24,39,24,43,86,80,47,8,22,17,407,0,3,19,20,13,32,84,87,48,26,23,14,384,4,4,20,22,4,51,127,127,50,29,36,7,481,6,0,10,9,5,45,112,142,73,31,32,10,468,3,0,3,11,20,30,162,254,97,51,69,14,722,0,0,0,8,5,20,86,182,98,51,60,7,512,0,0,3,3,5,18,50,168,171,130,468,11,1035,0,0,0,0,3,8,27,131,113,102,229,11,625,0,0,0,0,0,4,15,28,58,39,156,3,297,4,4,24,18,5
LGA21010,0,0,6,3,0,4,0,0,0,0,0,0,16,0,4,10,5,5,4,0,0,0,0,0,0,26,10,24,35,20,7,5,3,0,0,0,0,4,105,11,44,56,41,18,7,3,0,0,0,0,5,187,8,5,52,74,28,18,5,0,0,0,0,5,183,3,0,23,20,17,5,0,0,0,0,0,3,75,3,8,24,64,33,23,11,0,0,0,0,0,166,0,0,9,41,28,21,7,0,0,0,0,4,109,3,0,7,49,19,22,4,0,0,0,0,0,110,0,0,4,15,19,13,9,0,0,0,0,0,73,0,0,3,19,21,18,14,0,0,0,0,0,84,0,0,0,10,5,13,5,3,0,0,0,0,39,0,0,4,0,3,3,0,0,0,0,0,0,15,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,15,16
LGA21110,4,4,10,28,43,62,98,112,42,26,37,29,491,11,16,19,15,24,37,35,37,16,4,5,12,221,33,58,43,46,38,50,62,67,29,9,17,24,473,33,115,72,57,20,54,85,63,13,8,20,26,569,18,24,79,80,50,96,130,110,37,14,19,30,682,3,3,24,22,4,21,67,60,27,5,12,7,251,4,12,32,49,45,116,227,183,60,21,37,35,819,5,8,27,40,41,105,308,285,74,31,40,16,996,3,0,21,53,39,127,395,346,121,44,44,30,1228,4,6,16,35,35,111,363,330,109,53,46,26,1137,4,8,15,38,26,130,523,712,240,100,113,46,1954,0,3,15,32,13,60,373,586,235,76,74,27,1496,0,3,14,18,16,36,240,560,352,201,422,37,1891,0,3,7,5,15,20,139,383,306,163,283,25,1357,0,0,3,7,0,13,35,104,138,101,251,5,659,5,3,22,20,15
LGA21180,0,3,25,33,24,68,93,18,0,0,3,46,323,13,15,24,28,20,32,37,5,0,0,3,7,187,30,64,93,128,78,122,138,17,3,0,9,53,740,33,96,114,138,86,131,154,21,3,0,7,43,823,13,19,91,163,114,234,234,41,4,0,4,43,976,13,18,90,107,85,182,191,28,5,0,7,39,760,13,15,57,184,153,337,439,66,0,6,16,44,1343,0,7,44,143,135,325,488,62,15,5,15,50,1290,3,8,31,120,129,345,498,97,5,6,13,30,1290,3,10,9,53,74,294,452,101,19,4,18,38,1066,12,6,23,60,89,299,682,175,22,3,20,49,1439,4,4,9,24,45,155,377,108,12,3,17,16,779,0,3,4,19,18,59,202,81,10,0,6,9,418,0,0,7,3,14,36,121,68,12,0,5,8,271,0,4,0,0,7,4,35,25,4,0,0,5,83,13,6,49,76,68
LGA21270,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,13,5,7,3,0,0,0,0,0,0,0,0,29,21,12,15,5,0,0,0,0,0,0,0,8,55,7,0,14,9,0,0,0,0,0,0,3,5,39,3,3,8,0,0,0,0,0,0,0,0,0,16,3,0,17,7,5,0,0,0,0,0,0,0,36,3,0,12,12,0,0,0,0,0,0,0,3,35,3,8,14,8,0,0,0,0,0,0,0,6,40,3,0,3,4,0,0,6,0,0,0,0,0,21,7,0,12,10,0,0,0,0,0,0,0,0,35,0,0,11,3,0,0,0,0,0,0,0,0,20,5,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,9,5,0
LGA21370,0,6,3,11,3,3,0,0,0,0,0,4,45,8,8,9,8,4,5,0,0,0,0,0,0,40,17,56,58,41,13,18,4,0,0,0,0,11,223,35,96,97,83,21,21,0,0,0,0,4,18,366,7,25,123,128,64,40,8,0,0,0,0,13,399,5,7,57,53,17,21,5,0,0,0,0,13,191,13,27,81,128,67,63,20,0,0,0,3,10,406,4,10,62,104,52,67,28,3,0,3,0,11,351,4,7,32,68,55,57,25,9,0,0,0,7,272,4,4,28,56,37,48,28,4,0,0,0,6,213,8,3,14,36,30,59,34,9,0,0,3,6,196,3,4,5,15,25,26,11,4,0,0,0,4,99,0,6,9,12,0,15,6,0,0,0,0,3,57,0,0,0,0,4,6,4,0,0,0,3,0,24,0,0,0,0,0,0,0,0,0,0,0,0,3,5,3,23,50,27
LGA21450,0,0,0,0,4,11,20,8,0,0,0,7,61,3,0,9,0,6,6,6,0,0,0,0,3,40,16,17,27,21,12,30,39,10,0,3,3,6,186,19,35,33,32,35,59,51,13,0,0,0,17,288,5,4,36,47,45,109,131,24,4,0,4,13,423,9,6,26,17,6,32,61,8,0,0,3,6,179,4,3,21,55,38,155,198,43,5,0,6,10,532,3,3,20,38,46,131,239,37,4,0,3,14,551,3,0,20,29,35,129,251,66,9,0,9,11,561,4,0,3,28,26,95,219,52,9,3,5,12,467,3,0,16,22,32,96,307,104,6,3,3,13,601,3,7,0,10,8,39,175,79,11,0,0,10,354,0,0,4,7,6,19,89,51,7,0,0,3,194,0,0,0,0,4,7,48,33,0,5,0,0,105,0,0,0,0,0,0,11,0,0,0,0,0,19,8,5,13,14,20
LGA21610,4,4,8,3,14,24,69,23,0,0,5,33,186,19,16,14,9,4,14,36,14,5,0,4,8,139,36,91,51,57,38,74,92,32,4,0,7,35,519,36,154,95,82,82,124,130,42,3,0,8,39,780,18,44,107,117,92,272,335,76,10,0,13,42,1128,12,15,104,87,52,116,207,61,7,3,0,25,688,3,22,74,109,135,391,571,130,11,8,17,61,1533,8,9,46,96,93,352,732,202,18,4,17,56,1623,3,8,34,57,96,360,879,270,26,13,21,36,1797,4,7,25,45,56,267,652,256,25,5,23,36,1384,6,0,15,47,55,286,925,459,47,6,19,44,1910,4,0,10,15,30,135,527,356,35,6,15,24,1157,5,3,0,3,13,36,223,239,48,15,16,16,625,0,0,8,4,3,31,132,145,27,4,8,15,364,0,0,0,6,0,6,17,27,17,5,0,0,84,13,10,36,48,51
LGA21670,0,0,8,3,0,0,0,0,0,0,0,9,17,0,0,0,5,0,0,0,0,0,0,0,0,12,15,15,27,33,5,4,0,0,0,0,0,7,112,27,39,45,42,12,6,0,0,0,0,0,8,176,4,10,40,75,15,8,0,0,0,0,0,5,154,9,5,26,30,11,9,0,0,0,0,0,4,90,5,8,24,73,19,9,0,0,0,0,0,3,134,4,0,15,37,10,15,0,0,0,0,0,3,86,0,0,9,29,15,10,3,0,0,0,0,0,71,0,0,5,20,8,9,4,0,0,0,0,0,37,0,0,4,18,8,8,0,0,0,0,0,0,44,0,0,5,3,6,3,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,9
LGA21750,0,0,6,0,0,0,0,0,0,0,0,3,19,0,7,3,8,0,0,0,0,0,0,0,4,29,9,23,24,21,8,3,0,0,0,4,0,3,97,17,40,46,43,17,3,4,0,0,0,0,10,181,6,8,51,90,30,26,5,0,0,0,0,7,222,0,0,18,21,10,14,0,0,0,0,0,10,73,3,4,30,82,39,30,0,0,0,0,6,13,210,0,6,22,75,32,33,7,0,0,0,0,7,191,0,0,21,46,39,35,13,3,0,0,5,9,167,4,0,17,29,10,25,12,0,0,6,3,3,109,12,0,10,29,28,36,13,3,0,0,3,5,138,0,0,3,14,12,15,9,5,0,0,3,5,61,0,0,4,11,0,4,0,0,0,0,0,5,24,0,0,0,0,0,0,8,0,0,0,0,0,11,0,0,0,0,0,0,5,4,0,0,3,0,11,3,6,10,19,21
LGA21830,5,0,3,3,0,0,0,0,0,0,0,0,15,0,0,3,3,0,0,0,0,0,0,0,0,14,9,17,10,24,5,5,0,0,0,0,3,7,76,0,39,33,36,7,0,0,0,0,0,0,5,115,9,17,38,52,17,5,0,0,0,0,0,3,134,3,3,21,18,9,3,0,0,0,0,0,0,54,7,10,38,55,15,7,3,0,0,0,4,14,147,3,5,37,40,9,7,0,0,0,0,0,9,114,0,0,12,41,19,12,0,0,3,0,5,8,103,11,0,21,17,16,11,5,3,0,0,0,8,93,0,0,11,19,8,10,7,3,0,0,0,3,79,0,3,12,12,4,8,0,0,0,0,0,4,33,0,0,7,3,8,5,7,7,0,0,0,4,36,0,0,4,3,4,5,0,0,0,0,0,0,16,0,0,3,0,0,0,0,0,0,0,4,5,14,0,5,10,13,6
LGA21890,8,21,24,32,33,57,79,80,25,7,9,47,418,32,35,27,13,35,33,34,28,12,0,3,31,267,85,225,122,88,75,87,111,63,17,11,10,51,931,67,393,142,116,61,121,125,52,9,0,8,46,1153,18,55,123,173,155,258,250,87,24,8,23,38,1195,5,11,97,74,44,85,147,78,12,4,6,12,592,25,24,85,179,170,348,417,172,43,6,19,57,1538,9,14,50,131,157,396,519,220,46,9,21,32,1606,9,15,36,81,130,387,657,311,65,19,19,36,1764,0,4,25,61,94,263,544,340,73,13,27,34,1492,9,5,25,58,82,255,658,525,179,39,38,54,1937,3,6,19,39,28,161,469,479,155,47,39,19,1468,0,6,7,18,18,70,205,278,160,54,33,16,872,4,4,9,11,7,31,136,190,162,64,41,10,656,0,0,0,3,3,4,28,52,58,35,27,8,216,7,15,45,57,56
LGA22110,4,0,6,9,0,3,0,0,0,0,0,8,45,9,10,14,24,5,7,4,0,0,0,0,4,69,20,56,83,80,22,13,14,0,0,0,0,6,301,47,98,106,127,36,31,18,6,0,0,6,11,480,10,19,83,143,74,58,11,5,0,0,4,14,425,13,11,57,62,28,27,9,0,0,0,0,9,217,18,21,57,143,96,93,32,3,0,0,5,12,482,7,14,43,102,54,75,23,6,4,0,3,8,335,6,9,31,74,48,82,41,13,0,0,3,11,316,5,5,28,53,44,52,38,10,0,0,5,10,245,8,11,19,37,23,64,40,19,0,0,8,10,224,0,0,9,11,20,29,35,12,4,0,0,4,122,0,0,5,10,12,15,16,8,3,0,0,0,71,5,0,4,5,6,3,12,4,0,0,0,4,36,0,0,0,0,6,0,3,3,0,0,0,0,14,3,10,25,50,39
LGA22170,4,7,9,15,17,42,47,12,0,0,0,20,170,14,25,8,23,10,22,26,11,3,0,3,18,162,45,116,74,115,66,101,77,23,4,3,3,30,661,43,236,121,173,89,151,117,25,0,0,9,35,999,15,40,132,202,183,322,271,47,6,5,10,25,1255,11,15,69,63,41,112,103,17,3,0,4,13,451,7,21,63,184,191,413,402,71,8,3,13,29,1406,10,10,47,96,158,420,431,91,19,4,13,37,1338,3,5,38,79,129,415,546,140,21,7,15,21,1420,3,3,23,55,74,258,453,125,15,9,10,13,1030,10,3,11,42,81,290,638,221,41,7,7,28,1370,4,0,4,26,24,143,328,166,35,10,7,11,750,0,8,4,6,19,55,158,111,27,9,9,6,417,0,0,5,8,3,22,72,68,27,5,3,3,227,0,0,0,0,0,8,14,25,10,6,3,3,78,6,10,29,37,53
LGA22250,5,0,3,0,0,0,0,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,4,17,11,16,24,9,0,0,0,0,0,0,0,0,66,16,25,54,16,0,0,0,0,0,0,0,7,126,5,10,40,40,8,0,0,0,0,0,0,8,109,3,4,23,16,5,0,0,0,0,0,0,5,48,8,5,39,35,5,6,0,0,0,0,0,8,100,3,3,32,23,5,4,0,0,0,0,0,4,73,5,5,33,24,0,0,5,0,0,0,0,7,79,3,0,19,11,0,0,0,0,0,0,0,4,42,3,0,14,16,3,0,0,0,0,0,0,4,37,3,3,0,6,0,0,0,0,0,0,0,0,11,0,0,4,6,4,0,0,0,0,0,0,0,21,0,0,3,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,11,11,0
LGA22310,3,3,16,29,18,64,89,150,49,24,20,48,527,8,7,20,16,18,26,46,32,7,7,10,10,199,25,52,66,48,41,66,70,59,22,6,8,44,505,31,98,83,74,62,98,95,66,16,4,11,38,672,19,24,74,117,115,176,154,118,45,11,22,27,892,6,0,37,33,26,53,92,53,17,9,6,3,341,7,11,26,86,117,259,287,227,66,16,30,27,1155,12,3,25,61,120,313,359,280,91,29,31,34,1355,0,6,14,59,102,292,407,359,119,40,42,32,1467,0,3,17,31,60,228,412,360,97,41,38,33,1330,8,4,26,35,71,208,520,595,226,73,68,30,1854,4,6,10,23,19,100,320,501,217,60,45,26,1339,0,0,10,9,10,69,210,396,262,128,147,11,1248,4,0,5,4,12,30,100,272,203,109,111,15,875,0,0,0,0,7,6,24,76,75,61,97,5,355,0,3,19,18,27
LGA22410,0,0,3,5,0,3,0,0,0,0,5,5,23,0,0,6,8,3,0,0,0,0,0,0,4,33,6,29,35,25,3,5,0,0,0,0,0,11,123,11,53,48,35,20,4,0,0,0,0,0,9,192,10,13,53,66,31,23,8,3,3,0,0,5,215,0,9,18,29,16,7,0,0,0,0,0,0,81,7,7,41,72,43,19,9,0,0,0,0,8,212,8,5,31,34,31,26,7,0,0,0,0,6,150,0,4,27,32,21,23,9,0,0,0,0,7,130,3,4,9,29,21,20,12,0,0,0,0,4,103,3,0,18,35,18,24,8,3,0,0,0,5,118,6,0,3,9,7,14,13,3,3,0,0,4,57,0,0,6,5,10,11,12,3,0,0,4,3,48,0,0,0,0,3,0,7,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,9,6,32,15
LGA22490,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,3,0,3,0,0,0,0,0,0,19,0,0,11,10,4,5,4,0,0,0,0,5,32,0,0,16,20,8,6,8,0,0,0,0,4,64,0,0,11,0,0,3,0,0,0,0,0,0,19,0,0,7,10,16,18,12,0,0,0,0,0,66,0,0,9,4,10,9,8,3,0,0,0,3,46,3,0,0,8,10,11,11,8,0,0,0,6,46,0,0,3,0,5,3,12,3,0,0,0,0,36,3,0,0,4,0,12,14,0,0,0,0,5,43,0,0,5,0,0,3,10,0,0,0,0,0,20,0,0,0,0,4,0,0,0,0,0,0,0,15,4,0,0,0,0,8,3,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA22620,4,7,10,20,8,14,9,9,4,0,3,17,97,20,14,16,27,8,10,8,5,0,0,0,11,125,56,130,115,123,54,56,28,10,0,0,6,35,616,53,231,221,219,76,74,16,13,3,0,7,34,955,12,57,236,345,156,208,72,18,0,0,3,18,1123,15,21,105,149,70,85,43,10,5,0,6,12,524,14,41,156,371,180,294,133,24,0,0,3,36,1255,12,15,93,250,175,256,131,18,3,0,4,16,980,5,15,73,211,148,296,176,35,5,3,9,22,980,13,5,44,134,115,230,153,44,3,0,5,10,758,3,0,41,120,125,260,204,73,6,0,3,16,856,0,5,9,30,41,128,129,55,7,0,7,12,431,11,6,9,34,24,45,87,40,18,6,6,17,296,0,0,4,11,4,19,55,30,4,0,0,5,136,0,0,0,4,0,3,10,4,3,0,0,8,36,10,8,40,101,79
LGA22670,15,16,23,29,32,79,91,24,9,0,0,35,361,19,22,31,32,16,40,42,10,0,0,6,17,222,60,158,123,128,72,139,137,21,3,0,7,51,887,43,251,136,155,90,127,125,22,0,0,14,48,1010,9,51,109,217,159,243,218,47,9,3,23,37,1118,12,13,124,138,87,205,210,40,7,0,6,28,884,19,38,82,233,222,471,435,78,10,0,18,54,1668,9,14,55,194,209,447,492,99,15,3,20,40,1596,12,12,31,140,170,460,531,121,10,8,32,49,1561,12,7,23,69,100,294,418,102,14,0,23,39,1100,0,7,22,89,111,318,587,154,7,9,20,31,1360,0,5,11,26,46,162,326,109,6,4,12,25,737,0,3,4,16,15,74,123,63,3,4,8,16,319,0,4,6,9,8,38,92,49,8,4,3,3,225,0,0,0,4,0,11,19,13,0,0,4,6,61,9,11,40,67,77
LGA22750,7,10,31,40,23,49,37,11,8,0,0,34,251,35,31,66,53,23,31,23,14,6,0,5,33,317,118,233,282,241,116,117,76,21,7,3,11,59,1285,102,427,401,378,172,195,135,28,3,3,7,83,1941,38,63,410,498,265,445,285,65,0,5,6,51,2129,10,20,164,177,131,202,124,32,4,0,7,26,899,30,45,192,510,332,563,391,114,11,3,12,56,2256,13,23,145,359,283,566,457,125,23,7,17,58,2060,14,9,97,254,253,562,530,170,26,0,12,28,1968,4,11,41,152,183,394,459,171,34,3,15,22,1487,9,9,50,145,185,419,576,305,40,5,20,39,1816,5,3,18,42,73,206,354,224,47,11,10,23,1015,0,3,10,33,23,88,187,199,60,19,10,27,665,6,0,4,6,19,45,110,128,56,6,6,20,412,0,0,3,5,0,7,25,44,32,4,4,3,130,17,17,85,149,141
LGA22830,4,8,18,17,11,7,4,6,0,0,0,12,86,15,15,27,19,12,5,0,0,0,0,0,5,102,48,64,107,92,34,23,12,0,0,0,3,14,406,38,145,155,142,50,28,19,4,0,0,8,22,619,14,33,153,235,100,78,24,0,6,0,7,27,674,13,14,70,116,39,48,20,0,0,0,0,14,328,10,28,107,249,112,144,54,9,0,3,0,30,752,4,10,62,193,112,134,58,7,0,0,3,14,594,5,11,51,166,106,147,67,21,5,0,0,10,589,5,4,36,107,77,91,63,19,0,0,0,8,410,4,7,25,91,78,105,96,23,6,0,0,17,442,4,0,19,26,22,66,54,23,3,0,0,6,226,3,3,10,21,15,26,28,26,6,0,4,5,139,0,0,0,3,3,14,21,13,0,0,0,0,69,0,0,0,0,0,5,8,6,0,0,0,0,28,9,6,43,86,49
LGA22910,0,0,7,0,0,4,0,0,0,0,0,0,16,3,4,4,4,0,3,0,0,0,0,0,3,26,12,16,22,16,9,15,0,0,0,0,0,4,91,17,34,33,26,13,8,10,0,0,0,0,3,139,0,7,24,28,25,23,10,0,0,0,4,8,137,0,5,9,18,10,7,10,0,0,0,0,0,51,0,4,14,21,15,25,12,0,0,0,0,3,108,0,0,14,18,19,20,12,4,0,0,0,4,91,0,0,9,18,12,18,15,0,5,0,0,0,81,0,0,0,9,9,20,12,0,0,0,0,0,62,0,0,12,11,5,18,20,0,0,0,0,0,70,0,0,0,4,3,5,5,0,0,0,0,0,17,0,0,0,4,0,3,9,4,3,0,0,0,19,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,4,12,14
LGA22980,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,4,3,8,3,0,0,0,0,0,0,0,0,28,4,15,19,9,0,0,0,0,0,0,0,0,55,0,9,16,8,0,0,0,0,0,0,0,3,48,5,0,11,3,0,0,0,0,0,0,0,4,26,5,4,25,17,0,0,0,0,0,0,0,5,52,4,0,15,4,0,0,0,0,0,0,0,3,30,6,5,22,4,0,3,0,0,0,0,0,0,35,3,0,6,12,0,0,0,0,0,0,0,0,23,7,0,8,4,0,0,0,0,0,0,0,0,22,0,0,5,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,4
LGA23110,3,10,11,8,8,29,40,16,5,0,6,19,147,20,12,13,16,8,16,15,5,0,5,0,9,113,33,74,53,43,22,43,60,13,6,5,3,20,382,20,116,71,80,50,58,56,3,3,0,3,28,496,4,15,52,79,45,126,97,29,11,0,12,15,478,5,10,31,42,30,79,54,19,0,0,4,9,285,5,14,30,95,70,172,216,49,10,3,14,26,701,4,4,26,69,78,211,230,70,16,4,8,18,743,5,3,19,43,73,217,317,106,19,7,13,18,836,0,0,16,38,43,177,264,102,21,8,11,8,678,3,5,14,29,45,192,398,221,63,11,18,17,1007,3,0,4,21,36,103,273,165,49,17,21,15,712,0,0,0,5,8,55,161,179,95,36,32,9,588,0,0,5,7,4,27,91,122,78,23,26,3,395,0,0,0,3,0,6,13,43,47,16,16,0,152,9,10,25,32,29
LGA23190,0,0,5,12,0,3,0,0,0,0,0,8,31,7,0,10,3,0,0,0,0,0,0,0,0,32,17,24,37,39,0,10,0,0,0,0,3,10,141,36,44,46,59,4,11,8,0,0,0,0,16,218,13,14,54,90,19,27,3,5,0,0,3,3,230,9,8,17,48,8,7,5,0,0,0,0,6,107,13,8,38,100,27,22,7,3,0,0,0,10,234,4,13,21,56,17,27,7,0,0,0,0,7,147,5,3,21,67,31,36,17,4,0,0,0,6,192,0,0,13,32,19,31,21,7,0,0,0,3,123,3,0,11,36,18,24,17,11,0,0,0,4,125,0,0,0,6,3,23,13,3,0,0,0,0,54,0,0,6,4,8,10,13,3,0,0,0,8,54,0,0,0,0,0,3,6,5,5,0,0,0,22,0,0,3,0,0,0,0,3,0,0,0,0,11,4,4,18,17,14
LGA23270,0,3,9,9,3,22,69,28,4,0,0,28,176,12,15,10,12,11,24,36,3,0,0,0,8,131,42,83,70,59,44,71,162,31,0,0,4,35,597,37,123,91,70,59,85,161,23,0,0,5,28,687,13,12,91,101,87,155,253,52,6,0,3,28,797,9,8,71,86,35,118,271,58,6,0,17,22,702,9,12,52,123,83,215,401,108,11,9,13,29,1069,11,8,35,61,69,197,476,111,4,8,10,27,1018,3,7,21,69,78,234,459,145,13,6,9,36,1075,6,0,15,29,54,184,396,120,8,7,13,17,846,10,7,18,25,54,182,497,210,13,4,15,21,1049,0,3,4,14,22,97,295,146,10,0,0,17,617,4,0,0,4,13,38,144,86,15,5,8,13,332,0,0,4,7,4,27,86,50,10,0,3,3,195,0,0,4,0,0,5,21,17,7,0,0,0,70,4,4,31,52,39
LGA23350,0,0,4,0,0,3,0,0,0,0,0,3,16,0,9,4,3,6,0,0,0,0,0,4,0,14,7,11,10,11,5,0,0,0,0,0,0,7,57,6,27,33,24,11,8,4,0,0,0,0,3,112,0,0,30,37,15,12,3,0,0,0,0,7,109,0,3,21,25,8,7,7,0,0,0,0,0,63,0,0,8,37,26,10,8,0,0,0,0,8,105,4,0,12,22,20,24,4,3,0,0,0,5,97,0,0,11,29,20,20,5,3,0,0,5,0,96,0,0,9,13,15,20,9,0,3,0,0,0,61,4,4,11,7,22,21,26,0,0,5,4,5,98,4,0,0,3,4,7,9,6,0,0,0,0,37,0,0,3,4,0,4,4,0,0,0,0,0,22,0,0,0,3,3,4,0,0,4,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,16,8
LGA23430,0,3,7,9,16,22,49,33,16,3,4,21,191,10,16,15,15,8,18,21,12,10,4,5,16,147,37,108,64,72,37,62,57,32,10,0,8,28,517,25,187,131,103,60,100,97,49,13,0,5,24,793,11,30,96,134,112,193,170,98,17,0,3,38,905,4,14,56,46,31,50,85,47,9,0,7,12,369,11,15,59,128,126,271,313,145,31,8,12,27,1137,4,13,33,70,125,271,368,203,33,17,16,29,1181,4,5,25,62,72,257,462,254,52,11,14,26,1244,5,0,8,42,47,177,405,249,60,15,14,20,1041,6,9,7,32,58,181,516,440,148,32,21,20,1477,0,4,10,23,31,87,359,312,96,19,11,22,969,6,3,10,6,10,39,150,272,145,55,47,8,742,0,8,0,4,9,24,75,161,105,48,35,12,470,0,0,3,0,0,0,23,44,32,35,17,3,154,6,5,20,23,31
LGA23670,0,4,4,3,3,16,26,20,3,0,0,29,118,17,10,17,10,0,5,13,3,0,0,3,11,87,32,87,50,34,19,25,52,22,0,0,0,24,352,34,150,68,48,26,62,66,29,0,0,9,33,535,11,33,68,80,45,110,177,63,8,0,8,22,613,9,8,40,29,24,50,63,29,0,5,0,10,280,5,13,50,71,61,140,283,116,13,4,9,27,792,8,12,21,57,40,171,320,160,11,4,5,30,836,5,7,29,48,41,143,388,235,21,0,11,22,948,3,5,12,28,30,109,340,227,27,5,4,21,814,5,0,14,19,34,141,480,384,56,6,9,23,1166,0,0,13,16,22,65,305,272,29,7,8,14,751,0,0,0,8,10,31,113,192,38,14,8,8,425,0,0,0,7,3,15,57,112,44,8,4,11,262,0,0,0,0,0,5,19,29,15,0,0,4,77,11,10,25,25,22
LGA23810,7,3,20,22,8,5,3,0,0,0,5,14,93,19,22,46,23,3,3,7,0,0,0,5,20,149,68,144,202,136,18,29,3,0,0,0,8,22,641,66,245,278,224,41,20,5,6,0,0,4,26,910,21,53,290,350,88,65,25,9,0,0,3,15,913,14,17,138,158,28,25,11,0,0,0,3,10,401,20,40,218,275,97,89,39,6,3,0,8,21,810,15,23,139,227,87,82,34,3,0,0,0,13,633,0,12,71,179,74,93,59,9,0,0,0,10,513,9,9,46,128,51,89,52,15,4,0,3,12,416,3,8,39,122,66,100,98,25,0,0,3,10,462,0,0,15,37,23,43,41,19,0,4,0,0,189,5,6,15,20,18,29,39,16,0,6,3,7,163,0,0,0,6,8,12,22,11,0,0,0,0,62,0,0,0,3,0,10,9,10,6,3,0,0,37,8,8,59,122,33
LGA23940,0,0,0,3,0,0,0,0,0,0,0,0,5,5,0,4,0,0,0,0,0,0,0,0,0,17,3,8,21,3,4,0,0,0,0,0,0,0,40,12,17,20,8,0,0,0,0,0,0,0,0,55,3,3,17,13,3,3,0,0,0,0,0,0,46,3,8,17,3,0,0,0,0,0,0,0,0,30,11,5,22,12,5,4,0,0,0,0,0,6,54,9,4,13,15,0,0,0,0,0,0,0,4,39,5,3,7,4,0,4,0,0,0,0,0,3,27,4,0,6,10,0,0,0,0,0,0,0,0,20,3,0,11,6,0,0,0,0,0,0,0,5,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,8,6,0,9,12,0
LGA24130,0,0,0,3,5,8,8,0,0,0,0,3,24,0,6,6,5,0,3,5,0,0,0,0,0,22,9,13,15,19,13,14,3,3,0,0,0,6,88,14,39,27,28,14,13,12,0,0,0,0,16,165,7,7,28,42,28,38,40,4,0,0,0,3,192,0,0,16,16,11,17,18,4,0,0,0,0,93,11,4,14,37,20,45,36,13,3,0,3,17,206,0,0,16,23,26,48,42,14,4,0,3,7,181,3,6,7,27,24,51,49,19,0,0,0,8,196,6,4,7,10,20,38,42,28,6,0,0,4,157,3,0,9,13,13,35,77,31,6,0,0,5,201,0,0,5,10,7,30,35,22,3,0,4,3,122,0,0,0,0,8,16,21,37,15,6,3,0,109,0,0,0,0,3,6,19,24,13,0,0,3,69,0,0,0,3,0,0,5,7,3,0,0,0,22,0,3,11,9,11
LGA24210,0,0,3,0,3,9,15,42,29,6,3,23,143,0,3,0,8,0,4,7,18,9,4,0,6,67,11,15,19,9,8,18,25,29,13,4,4,10,178,3,21,16,22,12,24,39,46,8,0,3,15,210,3,6,22,12,15,25,81,56,18,8,8,14,274,0,0,17,14,3,21,45,60,13,7,0,6,191,0,4,9,15,21,41,123,108,34,12,11,20,399,5,8,15,17,14,38,157,153,43,9,9,17,477,0,0,8,7,18,41,153,188,41,13,14,22,507,0,0,6,12,10,31,137,209,44,14,10,13,480,5,0,3,11,10,24,189,305,102,19,16,27,711,4,0,0,7,8,23,129,223,76,25,19,12,519,0,0,0,8,3,14,73,218,143,54,36,17,566,0,0,0,3,3,4,44,131,103,40,28,4,357,0,0,0,0,0,4,12,43,45,28,27,6,160,0,0,13,7,10
LGA24250,0,0,0,0,0,0,0,0,0,0,0,0,9,5,0,4,0,0,0,0,0,0,0,0,0,9,4,9,6,10,4,4,0,0,0,0,0,4,28,0,12,12,11,4,7,3,0,0,0,0,0,58,0,0,18,13,7,9,0,0,3,0,0,3,60,0,0,0,10,0,3,0,0,0,0,0,4,19,5,0,15,25,10,17,0,3,0,0,0,0,75,0,0,9,18,14,8,4,0,0,0,0,0,53,0,0,7,15,7,19,4,4,0,0,0,4,57,4,0,9,4,7,10,3,0,6,0,0,7,38,0,0,0,12,5,11,7,0,0,0,5,9,53,0,0,0,6,4,4,5,0,0,0,0,0,19,0,0,0,0,0,0,8,0,0,0,0,4,19,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,3
LGA24330,4,11,23,30,34,43,52,50,13,3,9,28,294,25,21,23,32,9,19,16,17,0,0,0,8,173,69,157,87,76,52,65,49,32,11,4,0,21,621,49,229,81,109,26,61,61,22,0,3,9,28,681,4,38,80,135,83,105,92,42,17,3,5,20,633,13,11,92,51,44,93,84,30,3,0,0,9,449,8,25,58,170,112,194,182,73,20,3,10,31,885,3,11,31,128,85,213,274,115,23,9,16,26,932,0,6,32,78,103,210,347,159,28,8,11,19,1004,0,10,11,49,55,127,292,194,34,7,6,17,804,3,4,22,47,56,147,376,306,63,16,14,18,1076,0,4,4,32,17,86,265,302,58,11,13,13,799,4,3,5,16,12,34,106,248,70,23,12,15,549,0,0,0,0,7,15,64,173,82,26,13,12,396,0,0,0,0,0,3,14,57,48,9,12,0,144,10,4,36,46,42
LGA24410,0,0,0,8,4,15,33,11,6,0,0,15,102,6,23,14,11,8,9,13,13,5,0,0,12,105,26,71,60,39,19,42,64,19,7,0,0,13,358,26,138,102,58,38,78,73,20,0,0,3,17,556,12,22,73,89,56,159,186,57,7,0,3,22,683,0,3,33,40,27,56,76,22,0,0,0,9,272,5,5,36,81,77,219,280,99,10,0,6,20,842,7,3,23,35,57,214,335,122,15,8,14,23,848,5,7,14,39,45,227,426,152,12,5,10,16,957,5,0,12,24,30,159,338,144,23,5,4,9,740,5,0,12,25,26,183,454,257,25,10,18,15,1031,0,0,5,15,13,70,262,193,20,5,3,9,600,0,0,3,7,5,25,116,137,35,8,8,7,353,0,0,4,0,3,10,60,89,28,8,7,8,219,0,0,0,0,0,6,11,21,14,0,6,4,67,4,0,13,29,24
LGA24600,15,16,27,39,60,274,678,711,523,281,181,123,2925,39,31,30,20,18,56,166,129,100,40,35,35,698,92,218,116,89,28,84,147,136,116,52,42,54,1179,30,273,103,81,22,62,99,129,74,26,25,41,967,16,27,87,83,47,114,184,180,104,45,33,23,946,3,11,95,79,34,33,50,80,65,31,19,20,527,10,20,33,111,56,147,262,317,181,82,63,38,1322,4,9,27,53,48,140,291,393,239,104,79,45,1432,4,4,37,56,59,168,384,504,278,91,105,51,1736,3,8,22,32,29,115,365,578,308,125,131,38,1758,4,6,20,38,36,91,431,1045,551,213,206,52,2689,6,0,11,9,18,29,203,643,413,181,127,28,1675,3,4,10,16,10,53,233,751,675,342,499,74,2676,0,0,4,13,7,14,79,414,495,259,287,23,1603,4,0,3,5,0,9,19,142,234,166,268,17,871,8,7,26,37,24
LGA24650,0,0,6,6,7,20,28,10,0,0,0,17,97,4,6,6,10,4,8,17,4,4,0,0,3,71,3,34,30,35,31,58,52,10,0,0,0,18,263,7,32,49,77,35,66,49,14,0,5,0,16,346,9,0,42,79,91,187,129,27,9,0,8,11,581,5,9,14,36,35,77,56,11,0,3,3,5,269,4,8,24,93,107,236,223,53,0,0,6,17,777,0,4,25,54,88,246,233,66,8,0,4,19,743,4,0,12,51,82,221,273,73,11,5,9,16,754,0,0,5,34,47,156,246,75,7,4,3,11,595,0,4,7,29,50,206,325,161,9,3,0,19,817,3,0,0,10,25,102,219,106,10,0,5,10,486,0,0,0,9,8,33,111,79,11,4,0,6,264,0,0,0,0,3,11,61,48,6,4,0,3,139,0,0,0,0,0,6,20,9,3,0,0,0,43,3,0,12,22,36
LGA24780,9,10,21,15,3,15,4,0,0,0,0,6,88,17,18,27,33,9,0,4,0,0,0,0,14,123,37,73,137,119,38,17,8,0,0,0,0,14,454,72,132,178,164,40,36,7,3,0,0,3,31,654,25,29,181,199,96,61,11,3,0,0,4,27,633,10,13,85,132,44,52,18,6,0,0,0,10,367,19,26,115,273,116,81,28,0,0,0,0,9,670,13,13,85,187,103,93,34,6,0,0,0,18,547,16,3,58,136,91,109,42,9,4,5,3,13,482,9,3,29,78,82,98,30,6,0,0,7,4,362,11,4,28,55,78,105,36,8,5,0,0,13,345,3,6,6,22,33,45,29,12,0,0,3,7,162,7,0,9,17,11,17,21,17,3,0,4,4,102,0,0,0,4,0,17,14,7,0,0,0,3,51,3,0,0,6,0,0,8,3,0,0,0,0,16,8,6,52,94,34
LGA24850,0,0,4,3,0,3,0,0,0,0,0,10,26,3,4,8,5,4,0,5,3,0,0,0,3,35,16,31,25,21,14,11,0,0,0,0,0,9,128,16,53,44,42,13,8,10,3,0,0,0,8,203,4,9,48,85,27,38,25,9,0,0,0,6,246,0,8,21,28,7,17,15,5,0,0,0,0,105,0,8,31,76,41,64,46,7,0,0,0,9,273,5,8,23,60,27,52,34,10,0,0,0,3,222,4,4,8,60,44,52,49,15,0,0,0,8,247,0,0,14,39,46,47,38,19,0,0,0,0,208,3,4,10,31,35,65,75,27,5,0,0,6,260,0,0,4,16,11,35,38,20,0,0,0,0,127,0,0,4,8,18,22,21,22,4,0,0,0,96,0,0,0,4,8,12,13,13,3,0,0,5,54,0,0,0,0,0,3,4,0,0,0,0,0,10,0,0,16,37,27
LGA24900,0,0,12,15,0,3,5,0,0,0,0,3,35,11,7,11,0,0,0,0,0,0,0,0,5,31,17,21,47,46,13,7,0,0,0,0,0,11,155,23,62,78,68,10,13,0,0,5,0,6,13,268,10,12,72,117,33,24,7,4,0,0,0,7,297,9,12,52,40,11,17,0,0,0,0,0,3,146,9,9,57,93,49,25,9,4,5,0,0,6,265,0,15,39,86,31,21,15,0,0,0,0,13,231,0,4,27,64,44,35,17,3,0,0,0,4,198,0,3,15,34,30,37,21,7,0,0,0,4,148,7,0,18,46,29,31,25,8,0,0,0,3,170,0,0,0,14,15,10,10,4,0,0,0,0,62,0,0,0,10,8,5,11,9,0,0,0,0,44,0,0,0,0,0,0,7,0,0,0,0,5,16,0,0,0,0,0,0,7,0,0,0,0,4,10,3,4,22,31,24
LGA24970,12,13,47,39,30,59,133,247,126,43,33,67,846,13,13,20,12,8,12,38,64,28,8,10,14,259,35,100,51,35,10,27,76,101,40,16,18,18,530,45,160,84,44,19,35,87,79,29,11,8,42,640,13,32,86,61,39,100,190,134,57,10,17,24,752,7,6,79,43,24,52,117,121,35,7,3,24,516,10,16,43,81,60,127,329,246,68,20,15,38,1065,5,12,39,46,36,118,344,309,67,26,23,28,1053,6,9,35,47,36,139,449,408,104,16,29,38,1313,0,5,27,36,28,125,403,422,123,28,32,36,1255,0,13,23,35,43,109,581,729,205,40,48,41,1866,0,6,21,25,28,70,369,504,134,33,26,29,1242,4,6,6,10,10,45,211,466,226,69,41,33,1139,3,0,3,7,10,22,132,291,163,56,45,11,749,0,0,4,3,3,7,20,83,79,34,15,4,251,10,13,36,30,22
LGA25060,12,14,13,20,16,25,38,47,15,11,4,22,228,50,28,21,22,4,20,18,19,0,0,4,16,205,85,163,126,55,38,52,58,24,8,0,8,41,643,41,281,123,72,42,56,59,29,4,3,15,38,759,19,27,126,96,63,115,139,62,14,9,12,21,693,8,19,77,64,30,40,65,29,9,0,4,14,358,12,35,54,132,96,160,206,96,24,9,6,40,867,7,9,33,80,90,204,310,151,24,7,11,26,954,4,7,22,65,99,181,372,214,37,12,18,26,1058,3,5,10,40,67,133,365,239,43,12,14,20,947,3,6,5,43,74,171,474,423,99,25,26,26,1368,4,3,4,25,21,90,336,394,98,19,17,14,1025,3,8,5,16,14,60,201,331,118,53,33,15,845,0,0,8,9,8,21,109,245,120,38,25,14,594,0,0,0,0,4,6,38,58,53,30,18,3,215,10,13,28,34,36
LGA25150,0,0,4,9,4,0,0,3,0,0,0,7,30,4,4,4,0,3,3,0,0,0,0,0,0,26,13,13,26,31,9,11,9,0,0,0,0,3,116,9,36,27,33,16,16,15,0,0,0,0,11,163,0,10,27,45,27,34,17,0,0,0,0,12,171,0,0,19,18,9,15,11,3,0,0,0,0,76,0,8,20,47,34,35,30,3,0,0,4,4,180,0,0,18,23,25,37,31,5,0,0,3,11,148,0,0,14,30,34,41,44,0,0,0,0,4,179,0,0,6,19,16,30,32,8,0,0,0,0,118,0,0,11,14,25,38,44,11,0,0,4,7,137,3,0,0,3,3,19,29,6,0,0,0,5,70,0,0,3,6,7,14,18,3,3,0,0,0,59,0,0,0,0,0,9,5,9,0,0,0,0,22,0,0,0,4,0,0,6,0,0,0,0,0,5,0,3,7,16,3
LGA25250,6,8,20,18,40,60,106,64,23,4,11,44,404,28,33,20,31,14,28,29,25,10,0,3,23,242,70,161,87,96,51,87,123,65,16,0,10,38,802,39,247,101,103,71,114,140,51,13,10,10,50,945,7,23,94,150,116,191,212,95,22,4,13,47,983,8,19,73,54,47,108,156,98,18,3,7,13,603,10,25,43,155,186,306,408,207,42,10,14,48,1449,12,4,41,111,138,319,518,286,67,10,32,42,1583,3,4,31,82,134,303,613,386,84,20,20,37,1728,11,4,22,69,72,252,550,407,118,23,25,41,1593,3,8,23,48,93,246,765,767,149,40,43,42,2223,0,0,16,30,31,144,469,648,200,55,30,26,1649,0,4,13,24,23,75,231,394,202,52,37,24,1077,5,0,6,8,11,36,142,320,202,69,26,11,842,0,0,0,0,5,7,36,88,72,42,41,6,295,8,5,41,55,64
LGA25340,5,0,6,15,7,30,33,13,4,0,6,20,143,8,19,18,21,18,16,13,6,3,0,0,14,130,33,73,52,83,43,87,38,24,3,3,0,28,477,35,164,118,150,96,143,113,28,3,4,4,46,894,16,38,118,199,172,276,239,71,4,5,9,41,1176,0,11,62,66,46,85,76,30,3,3,5,14,402,8,25,61,169,153,314,299,123,20,0,8,43,1226,8,7,46,111,143,273,311,93,20,8,11,22,1048,5,9,28,78,147,273,344,156,28,3,9,28,1098,7,6,12,40,67,170,286,153,32,7,7,14,806,6,9,17,33,71,208,398,213,45,20,22,17,1056,7,4,6,16,39,62,181,131,45,9,12,8,526,6,0,4,14,12,38,98,130,59,23,39,12,437,0,0,4,10,10,18,53,74,35,16,23,3,246,0,0,6,0,0,7,4,13,14,4,12,0,63,7,8,29,43,60
LGA25430,0,0,6,3,4,0,0,0,0,0,0,0,23,0,8,3,8,0,3,0,0,0,0,0,0,25,13,21,22,20,12,9,5,0,0,0,0,3,111,18,44,31,28,13,11,3,0,0,0,0,8,160,6,4,35,53,30,38,14,6,0,0,0,4,176,0,0,9,17,11,11,17,0,0,0,0,0,69,0,0,13,36,19,30,12,0,0,0,0,4,117,0,0,11,34,21,36,12,4,0,0,0,3,127,6,0,0,15,18,25,18,4,0,0,0,0,92,4,3,4,15,15,28,16,4,0,0,0,0,89,4,0,3,8,12,17,23,5,0,0,0,3,69,0,0,3,0,3,9,10,4,0,0,0,5,34,0,0,0,0,0,12,6,3,5,0,0,0,26,0,0,0,0,0,3,0,4,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,9,12,5
LGA25490,0,0,0,0,0,0,0,0,0,0,0,0,10,0,5,6,0,0,0,0,0,0,0,0,3,16,4,6,4,16,3,6,0,0,0,0,0,0,42,9,20,18,17,10,9,5,0,0,0,0,4,94,4,5,19,27,25,18,6,0,0,0,0,3,116,0,0,12,9,6,6,3,0,0,0,0,0,36,10,4,19,37,12,18,12,0,0,0,4,11,114,6,0,18,22,20,13,11,0,0,0,0,10,91,4,7,20,29,15,11,14,5,0,0,0,4,104,9,0,10,15,18,13,5,7,0,0,4,3,74,4,3,12,11,10,14,6,7,0,0,0,9,88,0,3,8,10,4,12,9,4,0,0,0,4,44,0,0,0,4,3,0,3,6,0,0,0,0,26,0,0,0,0,0,3,0,6,0,0,3,0,15,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,6,12,11
LGA25620,4,0,0,5,3,0,0,0,0,0,0,3,16,0,0,0,3,0,0,0,0,0,0,0,4,15,6,10,3,16,3,3,3,0,0,0,0,4,55,11,13,27,25,3,6,0,0,0,0,0,5,95,0,3,24,24,10,11,3,3,0,0,0,9,92,3,0,0,14,8,4,0,0,0,0,0,0,32,0,0,11,25,17,9,4,4,0,0,0,8,79,4,0,10,19,4,15,4,0,0,0,0,5,73,6,0,7,15,11,15,7,3,0,0,0,9,66,4,0,5,12,17,19,6,3,0,0,0,3,66,0,0,11,13,9,11,3,0,0,0,0,7,55,0,0,0,3,8,15,5,0,0,0,0,3,35,0,0,0,0,0,0,0,3,0,0,0,5,10,0,0,0,0,0,3,0,0,0,0,0,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,11,9
LGA25710,0,0,5,0,0,0,8,0,4,0,0,3,19,0,0,0,0,6,0,4,3,0,0,0,0,21,3,11,7,8,3,5,3,5,0,0,0,4,58,9,23,18,13,7,9,19,11,0,0,0,11,115,0,7,19,15,9,19,26,18,3,0,4,8,123,0,0,8,0,3,10,11,8,4,0,0,4,47,4,3,13,20,18,17,29,26,4,0,3,3,134,4,3,11,9,8,22,53,46,9,0,5,6,160,0,0,8,13,9,18,54,43,12,5,0,6,167,3,0,8,7,4,11,45,46,4,4,5,0,136,0,0,4,8,8,16,50,76,22,7,8,10,206,0,0,3,7,3,11,42,51,25,8,5,0,152,0,0,4,3,0,3,30,51,37,13,8,4,146,0,0,0,0,0,3,12,32,25,6,7,5,91,0,0,0,0,0,0,3,8,5,3,4,0,31,0,0,8,0,3
LGA25810,0,5,3,3,0,0,0,0,0,0,3,6,19,3,0,10,3,0,0,0,0,0,0,0,0,21,0,12,46,10,4,0,0,0,0,0,0,0,78,3,32,68,19,7,5,0,0,0,0,0,6,139,6,13,62,36,8,0,0,0,0,0,0,7,129,0,4,28,31,3,0,0,0,0,0,0,3,81,3,4,40,44,13,0,0,0,0,0,0,8,106,4,3,30,34,6,3,0,0,0,0,7,4,96,3,0,22,25,11,0,0,0,3,0,0,8,79,3,0,5,13,10,4,0,0,0,0,0,3,42,0,4,14,17,8,8,0,0,0,0,0,4,59,4,0,0,13,0,0,4,0,0,0,0,0,28,0,0,3,9,7,6,5,3,0,0,0,0,27,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,9,23,5
LGA25900,4,18,11,17,23,42,55,68,48,22,33,24,352,33,47,28,21,7,13,30,24,23,5,10,20,255,76,242,94,83,46,75,73,56,22,4,23,49,836,50,432,126,106,58,85,83,43,16,5,22,30,1057,18,42,103,170,77,168,170,106,49,19,24,43,978,10,12,113,52,13,39,55,41,19,3,9,14,387,13,30,48,139,97,285,307,211,75,33,32,40,1310,10,9,27,70,83,326,440,290,98,32,69,36,1483,6,10,20,62,100,319,559,443,144,58,76,33,1827,0,3,16,41,61,238,483,534,151,57,56,21,1661,7,0,14,34,50,195,730,1013,372,149,134,34,2727,3,0,6,20,20,103,373,776,348,100,90,26,1863,4,7,9,15,23,65,291,862,675,337,500,45,2831,4,4,7,10,9,38,111,484,489,323,325,28,1837,0,4,0,3,8,14,35,157,228,254,434,13,1146,6,13,20,35,30
LGA25990,0,0,3,3,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,4,4,7,9,0,0,0,0,0,0,0,0,25,3,3,24,11,0,0,0,0,0,0,0,6,57,0,4,17,16,0,3,0,0,0,0,0,0,44,0,3,11,8,4,0,0,0,0,0,0,0,25,3,0,17,15,0,0,0,0,0,0,0,3,38,0,0,11,5,0,0,3,0,0,0,3,0,26,0,4,4,6,3,0,0,0,0,0,0,4,27,0,0,6,7,0,4,0,0,0,0,0,0,16,0,0,4,5,0,0,0,0,0,0,0,4,18,4,5,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,8,9,0
LGA26080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,8,0,9,6,4,3,0,0,0,0,0,0,6,25,0,0,4,3,5,9,6,0,0,0,0,0,28,0,0,4,0,4,0,0,0,0,0,0,0,10,0,0,4,3,6,7,7,0,0,0,0,0,30,0,0,0,0,3,6,5,0,0,0,0,0,20,0,0,0,3,0,8,7,0,3,0,0,0,21,0,0,0,0,0,8,11,0,0,0,0,0,20,0,0,0,0,0,4,8,3,0,0,3,0,30,0,0,0,0,0,5,4,0,0,0,0,0,15,0,0,0,0,0,3,5,8,0,0,0,0,17,0,0,0,0,0,4,4,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,3
LGA26170,0,0,0,7,0,3,3,0,0,0,0,10,23,4,9,6,8,4,0,0,0,0,0,0,0,23,16,22,26,28,10,8,4,0,0,0,3,0,107,19,37,38,44,23,11,6,0,0,0,0,5,184,7,8,26,68,33,33,8,0,0,0,0,15,201,3,3,23,28,17,12,0,0,0,0,0,7,96,8,10,29,51,44,31,6,0,0,0,3,6,181,9,5,23,53,30,36,20,3,0,0,0,14,188,5,0,13,34,49,41,11,0,0,0,4,3,161,0,0,3,25,28,36,7,9,0,0,0,10,118,3,7,11,21,22,35,22,0,0,0,0,16,136,0,0,6,16,4,17,15,8,0,0,6,0,78,0,0,5,7,6,14,7,4,0,0,0,0,40,0,0,4,0,5,0,6,3,0,0,5,0,25,0,0,0,0,0,3,6,0,0,0,0,0,12,5,5,10,27,21
LGA26260,3,0,0,3,0,0,0,0,0,0,0,8,16,4,4,5,3,0,0,0,0,0,0,0,3,20,19,20,31,16,8,0,3,0,0,0,0,4,99,22,46,48,23,6,6,0,4,0,0,0,8,152,7,13,59,40,18,6,0,0,0,0,0,5,147,8,6,9,16,3,5,3,0,0,0,0,0,44,8,7,37,50,33,19,0,0,0,0,0,7,157,6,5,26,40,17,23,0,3,0,0,5,8,132,5,5,31,24,27,14,8,0,0,0,0,4,119,4,3,17,22,16,19,10,0,0,0,0,10,93,6,7,19,27,16,17,15,7,0,0,0,6,118,0,4,10,3,9,24,9,0,3,0,0,0,66,0,5,0,7,3,8,4,3,3,0,0,3,46,4,0,0,0,0,3,3,0,0,0,0,0,21,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,16,21,8
LGA26350,8,15,5,16,14,150,87,108,45,34,34,38,556,12,22,15,10,9,49,29,26,19,3,15,6,219,29,114,67,34,24,83,73,59,22,8,16,33,563,29,244,73,50,17,79,67,72,15,6,13,31,702,6,36,70,68,43,157,148,108,32,7,18,30,721,4,8,80,41,10,29,52,45,18,4,6,8,310,6,16,29,82,60,212,251,178,59,29,26,36,974,11,3,32,48,56,216,338,264,68,34,36,33,1137,4,5,23,47,50,238,439,341,109,40,60,23,1369,3,8,14,36,35,166,460,376,121,52,68,30,1361,5,5,14,38,47,171,565,693,234,105,120,32,2023,0,5,4,14,20,63,317,629,256,73,77,23,1487,0,7,5,12,10,64,233,582,378,205,335,31,1867,4,0,4,4,8,21,117,356,328,226,238,21,1333,0,0,6,5,0,7,31,119,151,169,248,16,744,8,8,12,17,23
LGA26430,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8,0,6,10,13,5,0,0,0,0,0,0,6,42,3,8,20,15,7,0,6,0,0,0,0,4,72,3,4,34,28,11,3,0,0,0,0,0,0,85,0,0,12,14,3,6,0,0,0,0,0,3,35,6,4,15,26,17,10,3,0,0,0,0,4,79,0,0,12,18,13,8,4,0,0,0,4,3,64,0,0,7,17,18,8,0,0,0,0,0,8,73,0,0,10,13,3,9,3,0,0,0,0,0,41,0,0,7,12,5,5,5,9,0,0,0,7,54,0,0,4,6,3,4,0,0,0,0,0,0,17,0,0,4,5,0,8,0,0,0,0,0,3,13,3,0,0,3,0,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,11,3
LGA26490,0,0,0,0,0,4,3,6,0,0,0,0,13,0,4,0,5,0,3,0,5,0,0,0,4,22,4,3,12,6,7,9,8,6,4,0,0,6,54,8,10,11,27,16,19,21,4,0,0,6,3,127,0,6,16,31,31,27,21,20,8,0,4,3,165,0,0,5,5,10,13,9,11,3,0,0,0,58,3,0,13,32,23,32,37,39,6,0,6,3,190,0,5,13,23,21,32,49,25,9,0,0,8,185,0,0,11,11,16,27,41,35,9,0,0,7,156,0,0,4,14,13,26,41,33,12,4,3,3,154,0,0,3,9,12,34,51,81,19,0,0,8,219,0,0,0,5,6,13,43,37,21,0,3,4,141,0,0,0,0,3,13,19,50,27,10,5,6,138,0,0,0,0,4,4,10,34,13,4,6,3,71,0,0,0,0,0,0,0,9,5,3,0,0,21,0,0,3,10,11
LGA26610,3,3,4,6,5,0,0,0,0,0,0,6,36,8,6,3,7,0,0,0,0,0,0,0,9,34,19,28,55,30,12,0,3,0,0,0,0,14,160,35,67,57,54,8,10,4,0,0,0,6,12,243,17,18,65,78,29,17,0,0,0,0,0,9,224,3,9,36,45,19,11,3,0,0,0,0,4,121,14,16,55,73,44,22,4,0,0,0,0,13,241,4,16,47,62,30,27,4,0,0,0,0,10,197,9,3,20,63,39,40,13,0,0,0,0,4,188,8,3,13,48,19,26,13,0,0,0,0,12,145,5,0,24,33,30,23,13,4,3,0,0,5,138,4,0,11,15,19,22,13,0,0,0,0,0,77,0,0,4,8,3,9,8,0,0,0,0,4,43,0,0,0,5,6,3,11,3,0,0,0,0,30,0,0,0,0,0,4,0,0,0,0,0,0,0,9,0,17,51,21
LGA26670,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,4,0,5,8,7,4,0,0,0,0,0,0,5,29,7,11,18,8,0,0,0,0,0,0,0,3,54,5,3,18,12,4,10,0,0,0,0,0,0,47,0,0,4,12,5,0,3,0,0,0,0,0,29,3,0,20,17,6,5,0,0,0,0,0,5,49,3,0,12,8,4,0,0,0,0,0,0,3,37,0,0,8,7,3,3,0,0,0,0,0,0,29,4,4,5,5,6,6,8,0,0,0,0,6,34,3,0,9,10,0,0,0,0,0,0,0,3,25,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,0
LGA26700,0,0,4,5,3,3,0,0,0,0,0,0,24,11,7,6,10,0,5,0,0,0,0,0,5,47,21,41,60,48,11,4,0,0,0,0,3,13,211,22,64,73,73,18,14,4,0,0,0,3,19,282,6,20,66,102,45,33,11,0,0,0,0,12,292,0,3,34,41,18,8,4,0,0,0,0,3,117,3,12,39,111,41,43,17,5,0,0,0,6,271,4,6,23,73,43,35,12,3,0,0,0,12,213,4,3,19,64,43,54,31,0,0,0,0,13,229,3,0,17,40,23,29,15,4,0,0,0,7,135,3,0,3,38,28,40,29,3,0,0,0,10,160,0,0,0,14,6,16,17,8,0,0,0,0,66,0,6,0,3,4,9,15,0,0,0,0,7,47,0,0,0,4,0,0,6,3,0,0,0,0,16,0,0,0,0,0,4,0,0,0,0,0,0,13,0,6,13,35,15
LGA26730,4,7,0,12,3,11,5,4,5,0,0,8,43,7,15,13,7,10,5,0,5,0,0,0,10,74,24,58,42,50,13,18,11,10,0,0,0,11,229,23,79,79,52,26,26,17,4,0,6,0,12,321,4,11,72,110,48,71,28,8,0,0,0,11,375,4,12,30,37,5,25,22,3,0,0,0,3,144,8,10,40,116,72,99,56,16,0,0,3,10,420,4,4,25,87,58,80,77,21,10,3,0,11,369,0,4,8,57,50,97,98,34,5,0,3,5,361,7,0,11,43,31,71,88,40,0,0,3,3,292,5,0,11,31,33,62,117,56,9,3,4,10,339,0,0,4,12,9,33,59,43,0,0,3,3,163,0,0,3,9,9,12,32,33,12,0,7,4,113,0,0,0,0,0,7,12,16,11,0,0,0,51,0,0,0,0,3,3,6,0,3,0,0,0,19,4,4,10,30,14
LGA26810,0,0,3,13,4,3,5,0,0,0,0,8,45,4,7,25,14,0,0,3,0,0,0,0,5,75,20,48,71,62,9,13,7,0,0,0,0,7,234,32,75,129,90,15,14,12,3,0,0,0,16,389,9,17,114,141,45,39,16,0,0,0,0,17,410,0,3,68,69,27,27,8,0,0,0,0,4,211,10,13,60,145,55,54,18,5,0,0,0,14,384,8,3,46,97,46,52,23,3,0,3,0,7,289,0,6,29,95,50,59,27,3,0,0,4,4,284,0,0,23,60,39,35,34,4,0,3,3,10,221,5,4,17,48,31,49,55,8,0,0,0,11,231,5,0,19,15,14,25,24,7,0,0,0,7,119,0,3,3,15,16,29,25,21,4,0,0,4,111,0,0,3,7,8,15,10,6,4,0,0,5,55,0,0,0,0,3,6,9,0,0,3,0,0,19,4,0,26,47,28
LGA26890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,8,3,3,0,0,0,0,0,0,0,0,0,13,9,3,15,4,0,0,0,0,0,0,0,8,37,8,0,13,4,0,0,0,0,0,0,0,0,23,0,4,3,0,0,0,0,0,0,0,0,3,9,0,6,5,0,0,0,0,0,0,0,0,0,15,4,0,5,5,0,0,0,0,0,0,0,0,19,0,0,5,8,0,0,0,0,0,0,0,6,15,3,0,8,0,0,0,0,0,0,0,0,0,15,6,0,4,3,0,0,0,0,0,0,0,3,18,0,3,0,0,0,0,0,0,0,0,0,0,5,5,0,6,0,0,0,0,0,0,0,0,0,12,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,8,4,0
LGA26980,3,8,45,40,36,80,119,175,69,22,14,45,666,18,16,25,17,12,30,44,34,9,7,4,27,243,59,110,82,44,25,56,77,72,18,3,3,35,584,52,212,124,66,27,68,92,57,10,6,5,38,767,31,27,112,89,49,84,177,121,28,4,18,41,777,6,6,56,53,26,54,93,76,23,3,3,17,432,17,21,48,86,58,156,296,227,46,12,6,40,1018,3,14,39,55,60,151,359,226,61,7,21,28,1019,6,7,29,50,56,163,439,347,60,17,23,28,1227,9,5,26,30,30,113,368,332,71,20,22,27,1039,4,4,19,29,32,137,515,566,133,30,29,36,1526,4,0,14,19,29,89,330,410,109,15,16,26,1049,0,0,8,15,10,36,140,355,135,45,54,12,809,0,5,9,3,3,14,109,221,119,38,27,10,557,0,0,3,0,0,6,30,60,50,21,21,5,185,9,10,37,33,18
LGA27070,4,0,6,9,8,26,68,47,11,0,0,20,207,8,8,13,6,3,18,36,15,0,0,3,7,115,11,29,28,40,22,52,90,30,4,0,4,19,329,15,41,40,43,34,77,106,32,0,0,0,22,420,0,6,41,55,56,136,231,72,3,3,7,28,644,7,0,30,34,36,90,176,45,4,0,5,20,448,14,10,23,64,46,195,435,143,7,4,12,40,1000,13,5,29,42,51,182,430,155,3,0,15,36,969,5,0,19,32,50,176,513,209,16,0,18,28,1074,3,0,10,22,35,124,428,197,5,0,12,17,855,5,4,13,28,35,163,526,356,28,4,21,28,1208,0,0,11,14,21,80,277,217,21,3,13,9,670,0,0,5,5,5,33,134,162,30,4,3,19,391,0,0,4,5,3,17,82,100,25,6,0,4,248,0,0,0,4,0,3,29,28,7,0,5,0,75,3,8,22,37,31
LGA27170,0,4,3,9,4,11,3,0,0,0,0,3,45,10,13,17,9,4,0,4,0,0,0,0,7,76,46,87,61,61,25,24,6,6,0,0,0,22,331,20,113,109,86,20,37,11,0,0,0,3,12,414,10,33,99,122,74,68,34,0,0,0,3,13,462,5,10,60,58,27,29,17,0,0,0,0,4,216,3,11,54,146,102,106,55,8,3,0,0,22,508,0,7,27,114,95,155,69,9,4,0,4,7,484,8,5,27,100,80,126,96,19,0,0,0,11,472,0,0,11,50,56,119,102,38,9,0,3,8,402,0,0,12,46,71,122,113,30,4,0,0,13,410,0,0,5,14,29,52,73,36,10,0,0,7,211,5,0,5,10,5,25,26,31,8,8,5,0,118,0,0,0,0,0,14,12,15,3,0,0,0,44,0,0,0,0,0,0,5,3,3,0,0,0,17,7,9,15,58,37
LGA27260,7,3,4,9,18,41,61,26,0,3,0,26,204,5,3,9,14,7,23,44,12,0,0,0,17,144,18,36,50,58,50,93,90,12,0,0,0,29,451,19,54,49,90,55,116,106,20,0,4,6,22,547,11,7,77,122,101,278,266,42,7,0,8,32,949,3,13,24,47,59,130,127,29,3,0,4,15,469,5,10,33,103,124,411,456,66,7,8,17,37,1279,0,0,17,92,119,429,484,83,15,0,18,25,1293,8,4,22,68,102,401,614,102,12,4,12,25,1360,4,0,13,38,81,307,555,118,11,0,12,24,1164,5,0,14,60,83,412,868,254,22,14,19,32,1784,0,0,6,35,50,190,546,199,16,4,3,12,1059,0,0,8,4,18,98,326,236,54,13,16,10,770,0,3,0,0,11,38,188,139,26,4,7,9,433,0,0,0,3,4,23,36,48,7,0,8,4,134,6,5,20,37,48
LGA27350,17,13,21,19,3,22,21,29,22,8,8,24,209,48,64,45,22,11,12,10,10,11,0,6,28,267,111,283,180,83,27,38,39,25,13,7,14,57,881,69,406,183,81,24,50,46,29,19,3,18,35,961,30,55,149,93,51,84,55,48,33,4,9,30,634,26,19,191,109,16,31,43,37,9,13,6,23,525,25,37,57,141,87,174,123,102,54,24,15,25,858,0,19,48,64,61,194,184,129,79,33,25,22,856,4,7,30,52,51,198,264,238,139,52,48,21,1104,3,10,17,23,46,143,231,260,140,50,39,17,985,4,7,13,33,29,145,311,541,332,113,82,24,1640,4,3,11,25,14,48,168,511,413,127,88,23,1446,0,0,9,11,9,58,139,430,485,231,156,18,1559,0,0,8,9,8,22,61,298,514,285,215,28,1449,0,0,0,4,0,11,26,88,200,213,260,14,811,8,21,52,37,31
LGA27450,0,0,4,9,5,13,26,7,5,0,0,16,99,7,10,5,3,7,10,11,7,3,0,0,8,79,20,54,47,55,42,37,25,13,0,0,7,25,324,48,89,70,94,46,73,60,20,5,0,3,33,536,14,30,69,123,105,155,172,38,5,0,5,12,728,3,4,36,27,32,48,74,24,5,0,0,11,256,13,17,53,105,95,175,243,73,3,0,4,24,818,5,3,26,90,73,179,258,95,14,4,6,24,786,9,7,30,61,70,141,299,132,12,0,4,13,782,4,3,11,45,41,101,213,110,19,0,0,16,568,7,4,15,30,30,99,280,199,23,7,6,20,718,5,3,11,16,15,48,143,101,12,7,6,14,372,0,0,5,4,9,20,76,68,28,3,0,7,217,0,0,0,0,8,11,33,57,14,11,3,0,135,0,0,0,0,0,0,4,16,7,0,0,6,35,8,3,16,23,32
LGA27630,0,0,4,0,0,0,0,0,0,0,0,0,3,3,4,3,0,0,0,0,0,0,0,0,0,9,8,0,18,0,0,0,0,0,0,0,0,0,25,22,11,20,15,0,0,0,0,0,0,0,3,67,6,6,31,10,0,0,0,0,0,0,0,4,56,6,4,21,4,0,0,0,0,0,0,0,0,30,5,3,18,14,0,0,0,0,0,0,0,0,39,8,3,14,9,0,0,0,0,0,0,0,4,36,0,0,20,7,3,0,0,0,0,0,0,4,38,4,3,4,3,0,4,0,0,0,0,0,0,24,5,0,9,5,0,0,0,0,0,0,0,0,29,0,0,4,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,7,6,0
LGA29399,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,7,0,16,0,0,0,0,0,0,0,0,0,0,4,3,8,0,0,0,0,0,0,0,0,0,0,3,4,7,0,0,0,0,0,0,0,0,0,0,7,0,18,0,0,0,0,0,0,0,0,0,0,17,5,30,0,0,0,0,0,0,0,0,0,0,16,7,26,0,0,0,0,0,0,0,4,0,0,24,9,33,0,0,0,0,0,0,0,0,0,0,60,10,75,0,0,0,0,0
LGA29499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA29799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA30250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,8,3,3,3,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,3,5,8,10,4,0,0,0,0,0,0,0,0,22,5,8,0,3,0,0,0,0,0,0,0,0,14,3,6,3,0,0,0,0,0,0,0,0,0,14,7,5,3,3,0,0,0,0,0,0,0,5,32,4,6,4,0,0,0,0,0,0,0,0,0,16,7,3,9,6,0,0,0,0,0,0,0,0,27,3,8,5,0,0,0,0,0,0,0,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,4,0,0
LGA30300,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,0,5,5,5,13,4,6,0,0,0,0,0,0,0,29,3,4,15,4,0,0,0,0,0,0,0,0,36,5,8,13,13,3,6,0,3,0,0,0,0,50,0,0,11,4,0,3,0,0,0,0,0,0,21,3,0,8,16,9,11,0,0,0,0,0,5,49,0,0,11,13,5,5,0,0,0,0,5,0,36,7,3,11,11,9,8,0,0,0,0,0,4,56,3,0,4,12,4,6,3,0,0,0,0,5,34,7,4,7,15,3,6,0,0,0,0,0,10,48,11,0,7,3,0,5,0,0,0,0,0,5,33,0,0,0,0,0,3,0,0,0,0,0,0,10,3,0,4,0,0,4,5,0,0,0,0,4,17,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,13,4,3
LGA30370,0,0,0,0,0,0,4,4,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,10,13,16,8,3,7,0,0,0,0,0,0,5,63,18,12,28,14,0,3,0,0,0,0,4,7,80,5,10,27,8,10,6,0,0,0,0,0,11,80,0,5,15,5,3,0,0,0,0,0,0,4,30,11,0,25,25,9,16,15,4,5,5,0,10,120,9,3,19,16,17,14,12,9,3,0,0,12,106,12,5,14,23,21,19,16,5,0,0,0,17,145,16,10,13,11,9,22,18,9,0,0,0,13,113,14,6,24,20,28,24,28,23,7,0,0,15,194,5,9,21,9,8,14,18,16,5,0,0,4,117,20,20,24,11,12,24,30,27,14,6,0,28,220,7,13,22,9,0,4,8,20,6,0,0,8,95,0,8,10,4,0,0,13,11,6,0,0,5,54,10,11,19,11,7
LGA30410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,3,8,4,0,0,0,0,0,0,0,0,0,16,10,9,5,3,0,0,0,0,0,0,0,3,30,0,0,4,3,0,0,0,0,0,0,0,0,10,0,0,4,4,0,0,0,0,0,0,0,4,8,9,0,7,6,0,0,0,0,0,0,0,3,26,5,4,4,9,4,0,0,0,0,0,0,4,31,5,9,3,0,0,3,6,0,0,0,0,5,34,7,0,0,3,0,5,0,0,0,0,0,0,17,10,0,7,3,6,0,0,0,0,0,0,0,24,3,0,4,0,0,0,0,0,0,0,0,3,17,5,4,4,0,0,0,0,0,0,0,0,4,21,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0
LGA30450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0
LGA30760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,10,5,0,0,0,0,0,0,0,0,15,8,4,6,0,0,0,0,0,0,0,0,0,21,3,3,14,3,0,0,0,0,0,0,0,0,23,0,0,6,3,0,0,0,0,0,0,0,0,10,0,0,5,8,0,0,0,0,0,0,0,0,21,0,0,5,4,4,0,0,0,0,0,0,0,23,4,0,8,4,0,0,0,0,0,0,0,4,25,4,0,3,5,3,0,0,0,0,0,0,3,13,6,0,8,3,0,0,0,0,0,0,0,0,12,4,0,5,4,0,0,0,0,0,0,0,0,10,4,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,4,0
LGA30900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,7,10,0,0,4,0,0,0,0,0,0,0,0,0,4,3,0,9,0,0,0,0,0,0,0,0,0,13,0,0,3,0,0,0,0,0,0,0,0,0,5,0,3,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0
LGA31000,56,46,123,129,68,181,408,777,399,175,140,233,2747,169,112,140,135,64,83,174,240,92,37,41,120,1399,933,716,597,522,222,289,477,501,147,74,62,247,4800,1500,1670,757,704,313,429,673,538,134,49,63,322,7150,244,458,977,992,559,895,1404,1096,207,82,76,218,7211,113,96,729,327,171,325,717,679,174,56,48,109,3535,174,234,696,994,679,1259,2588,2289,443,131,119,257,9863,86,119,431,746,618,1224,3077,3073,604,175,118,220,10475,69,59,273,562,571,1233,3813,4477,911,243,178,233,12628,31,40,179,342,370,900,3138,4629,948,274,198,211,11254,38,37,201,360,386,891,4164,8017,2022,549,368,233,17266,32,15,78,201,228,434,2229,6104,2000,522,354,172,12364,31,25,69,121,117,290,1232,4220,2381,1222,1369,177,11254,10,15,44,81,84,165,569,2571,1967,856,798,108,7253,3,5,20,24,25,44,154,663,830,552,767,67,3153,81,93,292,315,248
LGA31750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA31820,3,5,12,12,16,14,15,3,0,0,6,14,91,21,6,16,25,4,15,12,3,0,0,0,8,112,50,72,85,156,69,87,41,7,0,0,4,32,603,98,102,155,222,103,156,61,4,0,0,7,25,940,19,47,163,246,137,311,129,15,3,0,10,26,1096,17,18,100,136,91,214,63,15,0,0,4,14,665,25,24,92,238,177,397,234,7,9,5,3,27,1237,9,14,54,162,111,352,221,35,8,0,5,30,999,9,5,41,112,99,315,254,37,7,3,4,17,903,0,6,21,77,83,216,212,37,7,4,10,20,693,4,6,16,56,52,177,248,43,4,0,0,16,624,7,3,11,14,27,74,123,31,3,0,3,4,302,0,8,3,12,12,40,68,36,9,0,0,7,186,0,3,0,4,6,15,44,25,8,0,0,6,111,0,0,0,0,0,3,7,3,0,0,0,3,20,16,16,36,57,57
LGA31900,0,0,0,6,0,3,0,0,0,0,0,0,14,0,0,11,7,0,0,0,0,0,0,0,0,21,6,7,14,26,13,16,5,0,0,0,0,3,87,12,14,30,59,19,14,4,0,0,0,0,5,162,5,3,37,63,27,28,9,0,0,0,0,3,185,7,4,21,20,14,16,8,0,0,0,0,4,94,12,6,24,73,26,32,20,0,0,0,0,10,208,3,5,23,40,21,26,14,0,0,0,0,5,146,5,4,15,44,33,40,10,4,0,0,0,9,168,11,4,8,31,11,21,17,5,0,0,0,4,113,7,3,9,17,22,33,16,6,4,0,0,6,139,10,7,6,3,10,10,17,4,0,0,0,0,68,10,6,7,3,3,5,6,0,0,0,0,0,39,7,3,5,3,0,5,6,0,0,0,0,5,30,0,0,0,0,0,4,0,0,0,0,0,0,12,3,8,13,18,22
LGA31950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0
LGA32080,8,9,11,44,27,53,55,34,6,6,7,17,271,28,23,33,60,30,31,31,13,0,0,3,21,272,142,114,186,212,86,113,86,11,5,0,12,39,1017,203,198,206,331,148,154,141,43,6,4,8,55,1502,55,75,241,434,307,326,333,75,12,8,8,53,1929,21,33,103,185,90,132,151,48,9,0,8,25,799,31,38,164,493,359,462,508,156,23,14,17,57,2316,21,25,108,359,302,486,583,197,37,8,20,40,2177,16,17,79,220,240,423,721,238,35,12,19,44,2061,9,11,39,142,146,323,621,259,40,11,19,17,1630,11,5,45,95,183,351,795,493,65,26,28,30,2125,5,6,12,47,62,147,442,379,59,17,32,23,1223,6,0,13,18,38,86,225,240,99,31,35,13,803,4,0,11,5,10,43,99,192,51,26,39,10,476,0,6,0,0,3,10,23,28,18,12,15,3,122,16,32,105,171,132
LGA32250,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,4,0,0,0,0,0,0,0,5,6,4,3,0,0,0,0,0,0,0,0,0,19,0,5,8,0,0,0,0,0,0,0,0,0,17,0,0,8,0,0,5,0,0,0,0,0,0,15,0,0,0,3,3,0,0,0,0,0,0,5,18,0,3,4,5,0,0,4,0,0,0,0,0,19,8,0,5,3,6,0,0,0,0,0,0,3,28,3,4,3,8,0,0,0,0,0,0,0,4,24,0,0,5,5,3,4,0,0,0,0,0,0,14,10,0,3,0,0,5,0,0,0,0,0,8,23,7,0,3,9,0,0,0,0,0,0,0,0,23,3,0,0,0,0,0,0,0,0,0,0,6,11,5,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,9,12,8
LGA32260,0,0,6,11,4,6,8,0,0,0,0,11,50,0,0,5,6,0,0,0,0,0,0,4,0,18,8,13,36,36,18,11,7,0,3,0,0,8,146,23,35,66,71,28,25,7,3,0,0,0,14,264,7,14,62,114,51,62,18,3,0,0,3,11,343,4,5,31,36,20,37,10,6,0,4,0,3,151,9,14,56,133,60,69,31,8,4,7,5,14,418,10,4,35,96,44,59,43,23,0,0,11,18,348,7,7,30,72,50,75,52,11,4,0,4,17,330,4,0,20,48,48,68,52,22,5,6,3,8,288,17,3,9,48,39,61,59,35,3,0,4,11,293,0,4,5,15,18,27,39,23,5,0,4,8,155,3,4,4,8,4,22,28,22,3,0,4,10,108,0,5,0,0,6,5,6,9,0,3,9,3,53,0,0,3,0,4,3,3,8,0,4,5,5,30,8,4,20,42,27
LGA32270,4,0,0,3,0,0,3,9,0,0,0,9,24,8,3,4,0,0,0,0,3,5,0,0,0,26,7,9,14,11,0,0,0,0,3,0,0,8,57,16,14,30,6,4,3,3,3,6,0,0,12,97,10,17,27,16,11,5,14,6,0,0,0,8,120,5,3,8,14,0,0,3,0,0,0,3,0,41,12,7,23,19,10,20,9,10,6,0,0,24,136,16,12,20,18,5,17,15,18,9,8,7,15,167,38,6,25,16,10,9,26,24,14,0,7,31,212,43,13,15,19,9,18,28,23,21,3,8,38,231,114,28,34,24,14,32,39,85,46,32,18,52,508,60,16,20,12,8,15,28,42,31,12,10,23,289,314,25,38,11,7,22,41,68,81,49,66,58,780,184,14,26,5,8,16,25,48,53,35,28,25,464,86,6,9,4,0,4,6,19,34,25,33,22,237,87,19,19,14,9
LGA32310,0,0,0,0,0,0,0,0,0,0,0,0,12,0,3,0,4,3,3,0,0,0,0,0,0,13,7,5,29,12,3,4,0,0,0,0,0,12,64,13,7,24,25,18,11,6,0,0,0,0,4,105,5,3,23,33,12,13,10,0,0,0,0,5,99,4,0,16,13,4,14,0,0,0,0,0,0,53,5,9,12,26,17,17,3,0,0,0,0,5,91,0,3,9,29,19,10,9,0,0,0,0,6,96,6,3,10,15,11,25,5,0,0,0,4,6,90,0,4,7,10,11,17,13,0,0,0,0,9,81,4,10,10,16,9,18,19,6,0,0,0,3,90,11,5,7,5,8,15,7,0,0,0,0,3,70,7,0,8,8,4,13,8,0,0,0,0,10,54,3,7,5,3,0,0,8,6,0,0,0,4,35,0,0,5,0,0,4,3,0,0,0,0,3,14,4,4,7,22,9
LGA32330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,20,13,5,0,0,0,0,0,0,0,0,0,0,20,5,4,0,0,0,0,0,0,0,0,0,0,13,16,12,0,0,0,0,0,0,0,0,0,0,30,19,21,0,0,0,0,0,0,0,0,0,0,43,18,11,4,0,0,0,0,0,0,0,0,0,34,14,18,4,0,0,0,0,0,0,0,0,0,38,6,6,0,0,0,0,0,0,0,0,0,0,12,10,12,0,0,0,0,0,0,0,0,0,0,21,6,0,4,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA32450,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,12,3,0,7,4,0,0,0,0,0,0,0,0,18,0,4,4,4,0,7,3,3,0,0,0,3,18,0,0,11,7,0,0,0,0,0,0,0,0,16,6,0,9,3,0,0,0,0,0,0,0,0,24,3,3,3,7,3,0,3,3,0,0,0,7,38,6,3,5,0,0,3,0,0,0,0,0,8,28,7,3,7,5,3,4,8,0,0,0,0,3,33,14,6,6,5,0,3,10,12,0,0,0,4,65,10,3,0,3,0,0,3,0,0,0,0,10,33,13,0,0,6,0,4,7,13,0,0,0,8,40,11,0,0,0,0,0,6,0,0,0,3,7,31,0,0,0,0,0,0,0,4,4,0,0,3,17,13,0,8,3,0
LGA32500,0,0,0,0,0,3,4,0,0,0,0,0,9,0,0,0,5,0,0,0,0,0,0,0,0,8,5,9,6,4,0,0,0,0,0,0,0,3,29,7,4,13,10,9,8,5,0,0,0,0,3,55,3,0,7,6,0,9,4,0,0,0,0,0,34,7,0,4,9,3,0,0,0,0,0,0,3,26,8,6,12,10,0,3,0,0,0,0,0,3,47,3,0,13,8,9,3,8,5,0,0,3,6,51,9,0,6,11,6,6,6,3,0,0,0,9,52,8,6,5,4,0,5,5,0,0,3,0,5,39,15,0,6,6,9,5,11,8,0,0,0,5,56,3,0,0,0,0,3,8,5,0,0,0,3,27,11,0,3,0,0,0,6,0,0,0,0,3,17,6,0,0,0,0,0,4,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,5,3,9,0,6,9,5
LGA32600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0
LGA32750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,4,6,0,0,0,0,0,0,0,4,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,9,3,0
LGA32770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,11,3,3,10,5,0,0,0,0,0,0,0,0,21,0,5,6,0,0,0,0,0,0,0,0,0,15,3,8,4,3,5,0,0,0,0,0,0,0,19,6,4,6,0,0,0,0,0,0,0,0,0,26,5,3,8,4,3,0,0,0,0,0,0,0,21,3,0,3,3,0,0,0,0,0,0,0,4,19,5,0,4,4,0,0,0,0,0,0,0,0,18,6,0,0,6,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0
LGA32810,0,0,0,5,3,7,0,0,3,0,0,0,16,0,3,0,3,0,0,3,0,0,0,0,0,18,9,3,22,26,7,7,3,5,0,0,0,8,91,5,14,29,23,16,14,7,0,0,0,3,3,122,0,6,16,22,30,36,22,10,0,0,6,6,145,0,0,10,7,8,11,6,4,3,0,6,0,70,3,3,20,41,28,42,36,15,0,0,0,3,191,0,5,10,10,24,42,34,17,4,0,0,3,151,3,3,0,25,21,30,45,26,5,0,0,3,172,0,0,3,15,18,21,40,21,5,0,11,7,140,6,0,4,11,10,31,48,30,13,0,7,8,166,3,0,4,0,3,11,26,15,9,0,0,6,67,0,3,0,3,0,9,7,5,5,0,5,0,48,0,0,0,0,0,5,4,10,0,0,11,0,42,0,0,0,0,0,0,0,0,0,0,14,3,25,6,4,15,21,10
LGA33100,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5,6,5,0,0,0,0,0,0,0,0,0,0,0,11,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,16,3,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA33200,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,4,4,5,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,3,12,0,0,6,5,0,0,0,0,0,0,0,0,19,0,0,4,6,0,0,0,0,0,0,0,0,13,4,0,0,0,0,0,0,0,0,0,0,3,15,6,0,5,0,0,0,0,0,0,0,0,0,16,8,0,3,6,0,0,0,0,0,0,0,0,26,7,0,3,0,0,0,0,0,0,0,0,0,17,6,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA33220,7,9,11,25,5,22,16,0,0,0,5,20,117,14,6,16,23,20,18,11,0,0,0,0,5,113,62,46,82,136,84,111,49,5,0,0,7,32,608,106,134,153,254,155,193,82,8,0,0,9,36,1126,9,31,135,319,216,368,152,8,7,0,0,31,1272,17,23,104,136,128,275,129,5,5,0,0,31,863,22,25,75,207,207,475,322,32,4,0,5,24,1403,4,10,64,127,164,414,306,40,9,3,9,20,1171,6,7,25,83,116,337,313,26,4,4,3,15,942,0,3,16,44,81,222,207,30,4,6,7,11,643,6,3,22,30,54,199,264,56,8,8,7,20,676,4,0,3,19,25,89,129,36,3,6,10,3,333,0,0,3,9,13,36,77,25,11,3,3,7,197,0,3,0,0,3,19,37,20,6,0,4,0,95,4,0,0,0,0,3,18,3,0,0,23,0,49,7,13,37,62,87
LGA33360,0,5,0,4,4,16,11,11,6,6,3,13,78,10,14,6,8,0,0,4,0,0,0,0,0,44,29,25,41,21,8,23,19,7,0,0,0,18,191,53,53,65,41,11,27,13,9,0,0,0,12,288,13,17,76,48,41,50,32,24,7,4,0,9,323,3,3,55,25,3,15,26,5,5,0,0,3,153,5,18,40,49,27,51,72,47,17,4,7,13,337,6,10,31,38,32,74,80,54,16,4,8,19,369,13,15,23,24,42,70,115,98,23,11,6,25,469,0,11,21,30,21,64,111,135,34,10,11,20,485,15,11,13,26,35,93,193,319,71,27,21,52,873,13,11,18,17,13,30,105,161,65,21,11,15,489,6,5,12,18,12,41,101,205,123,49,37,79,690,0,7,4,13,8,15,53,125,81,30,12,26,371,0,0,0,4,6,4,15,49,50,19,3,28,184,4,25,25,31,22
LGA33430,14,12,32,43,39,105,259,363,159,73,61,108,1262,36,25,45,48,27,80,136,160,46,20,18,39,691,250,203,146,214,149,275,477,423,126,33,36,121,2454,361,388,238,300,229,479,671,452,110,24,30,110,3387,48,100,263,349,363,815,1453,1080,205,53,52,112,4880,37,31,266,149,96,257,672,644,160,26,43,83,2459,50,55,188,293,267,851,2110,2028,393,102,93,137,6569,32,28,117,234,193,690,2058,2275,493,154,121,134,6536,21,14,64,120,125,488,2039,2831,636,146,111,113,6716,25,9,50,95,82,292,1476,2705,679,165,135,90,5787,9,8,33,67,84,275,1531,3784,1224,327,240,84,7666,9,0,29,30,31,113,687,2236,923,289,198,56,4594,4,6,13,21,20,70,325,1163,722,266,322,36,2978,0,3,4,8,10,28,129,648,478,253,276,21,1860,0,0,0,0,4,3,24,140,154,113,180,12,635,23,28,85,120,81
LGA33610,0,0,4,4,0,0,3,0,0,0,0,0,17,6,0,0,3,0,0,0,0,0,0,0,0,11,9,0,16,6,3,4,0,0,0,0,0,0,45,15,3,23,18,5,5,4,0,0,0,5,5,82,5,4,43,34,6,15,7,0,0,0,0,4,114,4,0,19,12,3,3,0,0,0,0,0,0,46,10,4,25,44,20,24,14,0,0,0,4,11,158,6,0,13,32,16,19,9,0,0,0,0,3,107,11,7,14,37,17,22,10,8,0,0,0,9,137,10,0,7,20,11,22,17,4,0,0,4,8,94,12,6,14,19,14,15,22,9,0,0,0,13,114,10,3,5,10,8,16,14,0,0,0,0,0,62,4,0,3,5,8,5,5,0,0,0,0,0,31,0,3,4,0,0,0,5,6,0,0,0,4,23,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,6,12,7
LGA33620,0,8,3,5,5,20,8,0,0,0,0,6,46,3,3,8,9,5,4,4,0,0,0,0,0,45,22,33,48,61,43,51,16,3,3,0,0,9,283,32,51,89,137,62,89,29,0,0,0,3,15,511,6,17,82,152,93,150,57,8,0,0,0,12,578,8,4,40,65,48,96,38,5,0,0,0,12,317,13,13,40,110,98,191,108,3,0,3,3,12,591,12,3,33,80,76,149,103,16,4,0,0,15,486,7,5,22,35,62,141,95,18,4,0,0,7,396,10,3,3,36,36,75,81,11,4,0,0,20,288,6,11,11,23,22,99,91,18,4,0,4,4,296,3,0,3,0,19,23,39,12,4,0,3,6,116,3,0,4,8,13,10,26,4,4,0,4,3,77,0,0,5,0,0,9,17,7,0,0,0,4,34,0,0,0,4,0,0,0,6,0,0,0,0,8,3,7,18,25,29
LGA33800,0,0,4,0,0,0,0,0,0,0,0,0,7,0,3,10,0,0,0,0,0,0,0,0,0,14,4,9,19,10,4,5,3,0,0,0,0,0,63,7,10,51,45,11,4,3,0,0,0,0,8,133,3,5,36,27,13,13,4,0,0,0,0,3,104,3,0,25,11,4,11,0,0,0,0,0,3,61,3,8,31,44,12,17,4,0,0,0,0,3,126,5,3,11,22,14,17,0,0,0,0,0,0,82,0,0,14,31,13,17,10,0,3,0,0,12,101,0,0,10,26,9,13,9,0,0,0,0,3,78,9,6,14,19,21,19,12,5,0,0,0,8,103,6,5,6,13,4,17,7,0,5,0,0,4,68,10,0,9,10,3,6,5,0,0,0,0,0,38,3,3,3,0,6,8,4,0,0,0,0,5,23,3,0,0,0,0,0,0,0,0,0,0,0,9,3,4,8,14,8
LGA33830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,14,3,0,0,0,0,0,0,0,0,0,0,17,13,0,0,0,0,0,0,0,0,0,0,0,13,3,4,0,3,0,0,0,0,0,0,0,0,14,9,11,10,3,0,0,0,0,0,0,0,0,30,4,4,10,3,0,0,0,0,0,0,0,0,16,8,6,8,3,0,0,0,0,0,0,0,0,23,10,5,13,7,0,0,0,0,0,0,0,0,37,5,0,0,0,0,0,0,0,0,0,0,0,14,6,0,0,7,0,0,0,0,0,0,0,0,16,3,0,6,5,0,0,0,0,0,0,0,0,11,0,0,3,5,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA33960,8,3,9,20,9,32,42,35,4,0,7,25,187,18,18,23,19,13,24,40,14,0,0,0,12,176,83,102,89,81,51,139,97,9,7,0,4,37,695,177,185,186,155,108,216,174,28,6,0,8,47,1290,34,77,173,192,166,456,454,73,3,0,10,38,1683,16,24,152,71,57,221,196,35,4,4,3,28,812,37,30,162,175,185,635,814,125,7,0,9,54,2241,20,11,99,144,152,534,883,170,17,4,6,46,2081,17,11,57,133,186,535,1195,244,19,3,14,48,2455,4,8,40,78,125,362,937,245,20,3,11,32,1858,9,5,33,77,144,374,1238,528,48,8,15,30,2513,3,3,14,35,75,146,691,377,47,5,4,16,1423,3,4,5,15,34,63,285,222,37,20,11,9,714,0,0,0,9,6,32,132,131,22,10,3,12,375,0,0,0,3,0,23,39,39,5,0,0,7,127,18,21,63,89,106
LGA33980,11,0,0,0,0,0,0,0,0,0,6,3,30,0,4,3,0,0,0,0,0,0,0,0,0,7,8,5,9,0,0,0,0,4,0,0,0,3,28,14,11,9,4,0,0,0,0,0,0,0,0,34,8,14,13,6,0,4,0,5,0,0,3,4,59,0,4,0,0,4,0,0,0,0,0,0,0,10,5,8,13,14,10,10,5,3,0,0,0,13,73,20,6,9,10,7,3,5,3,3,0,9,10,90,40,10,13,13,4,0,7,0,0,3,9,28,130,53,18,5,8,4,12,4,12,4,0,19,29,162,168,13,27,22,0,13,16,20,13,3,38,53,387,122,22,19,7,0,12,5,13,6,9,29,23,268,736,114,52,11,11,16,10,26,16,6,107,96,1206,405,48,38,11,3,8,8,14,9,4,77,42,678,212,43,22,11,7,6,5,6,6,3,62,29,409,146,28,22,15,5
LGA34420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,10,19,0,0,0,0,0,0,0,0,0,0,0,19,19,0,0,0,0,0,0,0,0,0,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,28,40,0,0,0,0,0,0,0,0,0,0,0,45,19,3,0,0,0,0,0,0,0,0,0,0,20,29,0,0,0,0,0,0,0,0,0,0,0,29,17,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0
LGA34530,0,0,5,6,3,9,6,5,4,3,0,0,42,5,3,3,4,0,0,0,4,0,0,0,0,28,13,14,28,21,4,14,5,8,0,0,8,7,125,17,35,49,43,23,19,19,3,0,0,0,6,222,5,0,42,50,33,39,59,10,3,0,0,11,250,3,0,15,27,14,15,27,9,0,0,0,8,104,9,13,14,36,25,70,83,25,0,0,0,18,296,8,0,26,28,19,48,66,30,6,3,0,3,236,0,0,10,18,16,44,87,53,7,0,0,10,245,0,0,3,9,17,35,78,35,4,0,0,10,200,7,0,5,10,9,32,102,81,26,9,4,9,298,0,0,4,3,6,24,62,63,7,0,3,7,182,0,0,0,3,9,14,28,67,31,6,4,3,169,0,0,5,3,0,4,19,37,15,0,0,3,96,0,0,0,0,5,0,6,16,8,0,4,0,36,0,0,14,14,10
LGA34570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,8,3,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,8,0,0,8,0,0,0,0,0,0,0,0,0,10,0,4,10,0,0,0,0,0,0,0,0,0,19,5,0,0,0,0,0,0,0,0,0,0,0,8,5,4,5,4,0,0,0,0,0,0,0,0,21,3,0,3,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA34580,0,0,0,3,7,3,4,4,0,0,0,6,34,0,3,3,5,6,5,4,0,0,0,0,0,25,8,9,15,21,11,18,14,9,6,0,0,7,127,11,29,34,40,30,33,23,5,0,0,0,14,229,6,12,35,72,40,81,74,4,0,0,0,9,337,0,6,19,22,18,36,54,6,3,0,0,7,178,0,10,24,38,54,99,100,24,0,0,0,13,362,3,3,12,37,34,90,100,22,0,0,5,11,321,5,0,5,27,34,94,94,27,5,0,0,12,302,0,0,7,26,16,77,90,13,0,0,0,7,233,0,0,5,15,22,42,93,28,3,6,0,5,222,0,0,0,7,11,32,41,12,0,0,0,4,121,0,3,4,3,0,6,27,10,0,0,0,3,62,0,0,0,0,0,4,13,9,0,3,0,3,31,0,0,0,0,0,0,4,3,0,0,0,0,16,3,9,10,14,12
LGA34590,13,11,20,22,12,47,88,58,9,0,5,24,318,37,27,27,3,8,16,50,27,6,0,3,25,231,166,118,123,83,58,129,203,75,12,3,3,70,1035,276,289,185,151,107,208,299,101,5,5,12,71,1704,58,111,243,201,193,421,720,269,31,3,11,50,2307,28,60,286,117,71,201,367,129,12,4,9,36,1312,51,55,233,221,181,569,1272,488,37,7,20,79,3213,33,45,148,156,131,458,1149,565,59,9,14,66,2827,28,31,93,117,126,395,1418,833,69,14,8,54,3189,16,9,40,80,77,285,1086,833,81,22,13,44,2583,9,12,35,61,86,229,1277,1260,153,22,19,40,3197,0,0,12,29,48,103,667,820,142,18,17,31,1884,5,5,10,7,8,53,233,417,101,31,7,33,909,4,3,0,3,6,23,113,232,112,23,3,5,538,3,3,4,0,3,4,20,57,24,9,5,3,136,28,39,86,86,70
LGA34710,0,0,0,0,0,0,0,0,0,0,0,3,6,4,0,0,0,0,0,0,0,0,0,0,0,3,0,3,10,0,0,0,0,0,0,0,0,0,13,0,7,9,3,0,0,0,0,0,0,0,3,30,0,3,24,7,6,0,3,0,0,0,0,8,49,0,0,3,3,0,0,0,0,0,0,0,4,12,0,5,10,14,3,7,5,0,0,0,5,6,61,7,3,8,13,7,9,0,0,0,0,0,5,46,11,0,3,13,8,11,9,0,0,0,4,6,62,11,0,4,9,10,7,3,4,0,0,3,6,65,15,0,4,3,0,10,6,4,0,0,3,8,64,17,5,3,3,6,10,6,4,0,0,3,3,58,12,0,0,0,0,0,0,0,0,0,0,3,24,3,0,0,0,0,0,0,3,0,0,4,9,24,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,9,3
LGA34770,0,3,7,11,5,5,17,20,6,5,7,12,93,15,6,17,7,7,4,11,5,3,0,0,13,84,68,49,59,48,20,15,24,29,7,0,0,47,363,105,127,110,65,36,45,46,25,4,0,3,22,600,29,37,102,79,48,87,117,67,21,0,4,30,622,16,5,92,36,19,28,38,12,5,5,0,18,272,27,24,64,129,66,125,142,111,20,4,3,30,753,17,15,50,74,73,100,186,142,51,9,8,29,743,16,9,31,69,59,126,233,248,65,12,18,28,909,0,11,29,58,54,110,202,258,84,10,9,22,847,8,13,31,67,56,137,343,504,216,33,26,30,1454,4,6,8,22,26,56,199,421,180,25,15,16,977,9,9,12,13,24,55,140,300,223,75,39,30,941,5,0,10,14,7,34,95,266,197,46,30,21,737,3,5,4,7,0,7,24,78,86,23,23,13,264,13,15,47,63,45
LGA34800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA34830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,11,7,0,0,0,0,0,0,0,0,0,0,0,11,9,0,0,0,0,0,0,0,0,0,0,0,10,13,0,0,0,0,0,0,0,0,0,0,0,13,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0
LGA34860,0,0,0,3,0,5,0,0,0,0,0,7,18,3,0,0,4,0,0,0,0,0,0,0,0,8,11,4,24,12,0,0,3,0,0,0,0,4,50,19,10,26,14,0,0,0,0,0,0,0,4,79,3,6,32,17,12,11,7,0,0,0,0,8,83,3,3,17,5,0,0,3,0,0,0,0,0,44,4,7,20,16,14,12,7,4,0,0,0,14,106,12,0,19,12,7,11,16,10,0,0,0,14,105,14,3,12,13,15,18,25,12,3,0,3,13,139,13,3,13,15,12,17,7,0,4,0,0,16,99,11,7,16,14,13,19,29,19,14,0,3,6,147,10,9,8,7,3,4,25,23,5,0,0,0,91,9,6,5,3,0,8,12,15,8,6,5,12,89,7,3,0,3,0,3,8,8,4,4,0,3,56,0,0,0,0,0,0,0,4,0,3,5,9,24,4,0,19,15,9
LGA34880,0,0,5,3,3,5,0,0,0,0,0,3,25,0,4,5,3,0,0,3,0,0,0,0,0,24,15,11,34,21,10,4,8,6,0,0,0,6,111,29,26,61,41,9,16,9,0,0,0,0,5,194,3,0,46,50,20,23,17,3,0,0,0,8,183,9,8,25,29,10,16,18,3,0,0,0,11,118,3,15,36,42,36,29,28,8,0,0,4,6,203,4,10,29,47,29,26,32,12,0,0,0,9,192,7,6,17,36,24,30,34,5,0,0,0,3,167,3,7,5,27,12,22,22,13,0,0,0,0,114,3,9,8,22,11,26,41,6,0,0,0,3,138,0,4,10,9,15,9,19,7,0,0,0,3,76,0,0,5,3,4,4,5,5,0,0,0,6,36,0,0,0,0,5,5,5,4,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,4,4,9,13,18,11
LGA35010,5,8,19,23,14,48,93,49,24,4,5,47,348,31,22,18,18,22,38,66,45,4,0,4,23,295,214,179,160,141,111,180,244,83,13,0,12,89,1433,364,400,254,319,223,343,370,124,5,5,21,112,2529,66,105,316,397,384,694,1047,289,18,6,16,93,3420,44,47,313,159,107,288,557,145,11,6,11,51,1738,37,47,252,330,268,788,1640,569,53,18,17,74,4105,28,34,141,231,214,612,1697,722,48,7,16,71,3826,23,27,99,171,213,550,1939,1061,87,16,20,53,4251,8,10,62,89,134,347,1493,1043,122,22,12,52,3397,16,5,42,89,151,328,1750,1661,217,49,33,68,4406,3,0,22,53,102,144,810,1142,182,47,19,24,2547,8,5,8,16,38,56,382,625,218,86,39,21,1505,6,0,11,4,8,29,183,388,131,53,31,7,854,0,0,0,0,4,9,27,95,40,22,18,0,210,19,33,109,104,92
LGA35250,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0,0,0,0,13,11,0,0,0,0,0,0,0,0,0,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,3,14,6,0,0,0,0,0,0,0,0,0,0,22,14,6,9,0,0,0,0,0,0,0,0,0,26,9,6,4,4,0,0,0,0,0,0,0,0,24,9,0,4,0,0,0,0,0,0,0,0,0,26,10,0,3,0,0,0,0,0,0,0,0,0,19,9,6,13,0,0,0,0,0,0,0,0,3,23,7,0,5,0,0,0,0,0,0,0,0,0,15,5,0,3,0,0,0,0,0,0,0,0,0,13,4,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0
LGA35300,0,0,0,0,0,3,7,6,0,0,0,6,29,8,5,0,0,0,0,0,0,0,0,0,0,19,12,17,15,3,0,0,0,0,0,0,0,0,56,31,31,15,11,5,4,4,0,0,0,0,10,112,9,14,40,14,10,3,3,0,0,0,4,14,113,4,3,13,4,0,6,4,0,0,0,0,7,43,8,8,30,28,15,20,7,6,6,0,3,14,154,14,6,22,26,12,26,16,19,7,0,4,19,171,19,3,19,8,34,22,26,26,7,7,5,8,192,11,4,18,21,11,33,35,33,15,6,0,16,200,30,7,12,16,37,52,66,80,49,18,3,27,396,30,0,11,5,10,23,36,66,38,15,0,3,239,27,3,12,14,12,22,46,73,58,16,6,31,317,42,4,3,8,8,11,27,58,54,30,8,10,273,14,0,3,0,0,0,8,22,36,20,13,5,127,16,11,23,16,4
LGA35600,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,7,7,0,0,0,0,0,0,0,0,21,9,7,19,4,0,0,0,0,0,0,0,6,44,3,0,11,9,0,3,5,0,0,0,0,0,30,0,5,9,13,0,0,0,0,0,0,0,0,27,5,4,10,18,8,3,0,0,0,0,0,5,55,6,0,5,12,6,6,0,0,0,0,0,3,40,10,0,3,26,10,4,0,0,0,0,0,0,58,10,0,0,14,0,5,0,0,0,0,0,4,39,17,0,9,4,3,10,5,0,0,0,0,3,45,15,0,3,7,3,0,0,0,0,0,0,0,37,5,0,0,0,0,0,0,0,0,0,0,3,17,4,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,7,7,0,5,15,5
LGA35670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,5,4,0,0,0,0,0,0,0,0,0,23,0,0,4,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,8,12,11,3,0,0,0,0,0,0,0,0,29,8,15,3,0,0,0,0,0,0,0,0,0,22,4,5,5,0,0,0,0,0,0,0,0,0,14,4,11,3,0,0,0,0,0,0,0,0,0,26,0,8,6,6,0,0,0,0,0,0,0,0,17,4,3,8,3,0,5,0,0,0,0,0,0,15,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0
LGA35740,0,0,7,4,0,7,15,23,3,6,8,9,80,5,0,5,9,3,5,19,10,3,3,0,6,68,28,16,21,28,20,24,45,38,3,3,4,12,242,55,47,34,48,32,43,80,50,8,0,0,16,414,14,8,35,53,42,86,180,107,25,0,5,13,557,3,8,26,9,12,42,69,61,16,6,8,8,270,11,7,27,40,28,70,219,158,33,11,7,20,627,8,6,12,22,26,55,187,208,47,11,16,5,610,0,4,3,17,15,46,174,211,45,13,21,14,568,0,4,7,3,15,28,119,165,50,18,14,7,430,4,3,9,8,7,35,107,198,78,28,29,9,512,0,0,0,0,0,7,56,112,44,12,24,7,262,3,0,0,4,5,6,22,65,52,21,48,7,212,0,0,0,0,0,0,4,34,21,5,33,0,106,0,0,0,0,0,0,0,4,8,8,31,0,54,5,3,12,16,9
LGA35760,0,3,3,4,0,0,0,0,0,0,0,0,14,0,0,4,3,0,0,0,0,0,0,0,0,16,10,12,18,11,0,0,0,0,0,0,0,4,52,18,15,34,20,6,3,0,0,0,0,0,8,94,3,10,37,25,14,8,0,0,0,0,0,13,103,0,0,25,19,3,0,0,0,0,0,0,0,55,11,12,31,41,4,7,0,0,0,0,0,9,126,10,10,19,31,8,6,0,0,0,0,0,4,104,17,4,14,27,6,5,0,0,0,0,0,3,73,6,5,7,17,4,6,0,0,0,0,0,4,59,17,5,16,14,6,5,0,0,0,0,0,7,64,3,5,12,9,3,0,0,0,0,0,0,0,33,0,4,4,5,0,6,0,0,0,0,0,6,35,0,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3,22,19,7
LGA35780,0,0,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,4,21,6,0,5,0,0,0,0,0,0,0,0,33,15,4,3,0,0,0,0,0,0,0,0,0,20,23,8,8,0,0,0,0,0,0,0,0,3,39,27,3,0,0,0,0,0,0,0,0,0,0,32,39,18,13,0,0,0,0,0,0,0,0,0,72,28,17,7,0,0,0,0,0,0,0,0,4,54,26,10,7,0,0,0,0,0,0,0,0,0,55,17,7,9,0,0,0,0,0,0,0,0,4,42,34,12,6,5,0,0,0,0,0,0,0,3,62,22,12,4,0,0,0,0,0,0,0,0,0,42,12,0,6,0,0,0,0,0,0,0,0,3,26,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,5,0,0
LGA35790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,3,5,0,0,0,0,0,0,0,0,0,14,0,5,3,0,0,0,0,0,0,0,0,0,10,3,0,3,0,0,0,0,0,0,0,0,0,6,7,6,10,0,0,0,0,0,0,0,0,0,33,4,5,8,0,0,0,0,0,0,0,0,0,19,4,4,13,0,0,0,0,0,0,0,0,0,26,18,7,27,11,3,0,0,0,0,0,0,0,67,6,3,15,7,0,0,0,0,0,0,0,0,34,13,11,16,6,0,0,0,0,0,0,0,4,55,5,11,17,0,0,0,0,0,0,0,0,3,32,0,4,6,5,0,0,0,0,0,0,0,0,21,4,0,3,4,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0
LGA35800,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,6,5,4,3,0,0,0,0,0,0,0,0,0,18,6,8,7,0,0,0,0,0,0,0,0,4,29,0,8,8,0,0,0,0,0,0,0,0,4,18,0,0,3,0,0,0,0,0,0,0,0,0,8,3,0,5,4,0,0,0,0,0,0,0,0,18,4,4,9,0,0,0,0,0,0,0,0,0,18,4,0,5,0,0,0,0,0,0,0,0,0,17,5,0,3,0,0,0,0,0,0,0,0,4,12,4,0,4,4,0,0,0,0,0,0,0,4,21,6,0,3,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,4,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4,13,11,0,0
LGA36070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,5,7,0,11,0,0,0,0,0,0,0,0,0,18,8,0,3,0,0,0,0,0,0,0,0,0,18,5,4,7,7,0,0,0,0,0,0,0,0,15,12,0,9,6,0,0,0,0,0,0,0,0,29,8,0,4,3,0,0,0,0,0,0,0,0,10,10,0,9,4,0,0,0,0,0,0,0,0,19,4,0,4,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA36150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,12,0,0,0,0,0,0,0,0,7,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,6,4,0,5,0,0,0,0,0,0,0,0,0,18,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0
LGA36250,5,0,11,9,3,7,19,19,16,3,5,20,115,11,7,14,17,10,5,15,18,0,4,0,11,117,76,75,61,68,42,30,42,42,13,0,10,27,483,157,167,87,141,68,64,77,64,10,0,12,39,883,27,40,94,156,93,97,151,155,30,0,4,12,859,7,8,90,54,33,55,76,108,19,0,3,19,470,13,24,54,105,80,97,256,290,45,13,5,18,1012,10,10,43,66,54,87,294,357,83,6,12,28,1045,18,5,33,52,44,87,292,524,115,19,13,20,1209,7,0,11,27,21,43,210,462,116,20,9,19,945,3,0,16,30,26,49,279,776,230,51,28,27,1517,0,9,4,10,17,24,124,481,208,35,26,11,945,0,0,3,6,4,3,35,252,194,48,55,8,620,0,0,4,0,0,3,24,132,153,40,51,7,413,3,0,0,0,0,0,12,33,45,18,17,7,132,8,6,28,28,40
LGA36300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,4,5,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,3,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,3,6,5,0,0,0,0,0,0,0,0,0,0,3,7,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA36370,5,0,4,7,4,17,10,3,0,0,0,12,72,17,12,14,19,11,6,12,6,0,0,0,16,112,61,61,69,57,35,32,26,0,0,0,3,34,367,120,144,151,98,68,64,67,17,0,0,5,33,763,30,52,138,136,135,146,115,20,0,0,0,35,808,8,20,91,59,40,71,36,10,0,0,0,10,349,17,24,86,148,136,248,134,47,3,0,4,25,861,13,18,61,133,115,207,180,53,9,4,3,24,823,7,8,36,94,116,233,238,65,3,0,7,21,828,5,9,23,49,78,161,238,90,6,6,0,17,684,9,6,26,76,108,214,327,150,18,3,4,33,974,3,5,26,22,35,94,208,122,11,3,3,12,536,4,0,6,14,28,57,124,101,12,5,4,16,368,0,0,6,8,8,24,67,68,17,0,0,7,220,0,0,0,0,5,3,19,31,13,7,0,8,87,10,11,48,65,69
LGA36510,0,5,3,0,3,4,6,0,0,0,0,0,26,0,6,0,4,6,4,4,0,0,0,0,0,18,4,13,15,18,10,18,19,4,0,0,5,12,113,23,20,27,44,37,27,46,11,3,0,0,14,246,8,7,40,64,45,57,79,24,3,0,5,6,340,0,4,19,25,14,42,34,15,0,0,0,3,164,4,10,30,48,49,70,90,53,6,0,4,13,360,4,3,11,31,38,69,88,60,9,0,7,18,325,5,3,15,29,31,61,86,50,10,0,6,12,299,0,5,7,5,16,37,63,56,10,0,3,3,212,8,4,14,20,26,46,74,58,24,3,0,8,280,4,0,3,4,4,9,31,48,8,0,0,5,118,0,0,0,0,3,11,17,17,6,4,8,4,72,0,0,0,3,4,0,10,7,10,6,3,0,42,0,0,0,0,0,0,3,5,0,0,4,0,11,0,3,14,15,12
LGA36580,0,0,0,0,5,4,3,0,0,0,0,0,15,0,4,0,0,3,3,0,0,0,0,0,0,14,0,0,5,17,9,13,13,0,0,0,0,5,69,0,16,19,31,15,22,11,4,0,0,0,8,130,4,4,23,45,26,54,42,6,3,0,0,8,211,0,5,9,26,17,32,17,8,0,0,0,7,115,7,7,10,40,36,50,58,10,0,0,0,3,222,4,0,8,29,20,42,56,17,0,0,3,5,181,4,5,10,13,25,38,68,19,0,0,0,4,185,0,3,4,3,12,23,54,7,0,0,5,6,119,3,6,3,7,12,24,67,18,0,0,0,4,149,5,0,0,3,10,11,22,4,0,0,0,7,65,0,0,0,0,0,8,16,8,0,0,0,3,40,0,4,0,0,0,5,8,7,0,0,0,0,27,0,0,0,0,0,0,4,6,0,0,0,0,8,0,0,10,9,7
LGA36630,0,0,0,8,5,3,0,0,0,0,0,5,17,3,3,6,7,6,0,5,0,0,0,0,5,38,15,10,32,50,22,20,0,6,0,0,0,7,165,27,36,63,85,38,30,4,0,0,0,4,13,314,4,7,51,126,75,64,7,3,0,0,0,8,348,6,4,35,73,50,45,10,5,0,0,0,5,225,6,8,38,134,76,93,30,4,3,0,0,12,405,6,0,27,86,49,73,43,6,0,0,0,5,292,16,3,30,68,48,74,53,10,0,0,0,15,313,5,11,8,36,28,50,32,4,0,0,6,7,190,9,6,8,49,35,60,45,16,0,0,8,6,233,9,10,0,13,6,10,22,4,0,0,3,6,75,5,8,6,14,5,11,18,18,0,3,0,14,99,0,0,4,0,3,5,15,3,0,0,0,0,37,0,0,0,5,0,0,0,6,0,0,0,3,5,9,9,27,31,27
LGA36660,0,0,6,7,0,3,3,0,0,0,6,0,35,0,0,14,16,5,5,0,0,0,0,0,6,48,17,10,50,50,29,21,3,0,0,0,5,12,215,21,25,96,93,31,40,11,0,0,0,0,12,335,7,16,91,141,68,85,22,4,0,0,0,5,440,3,4,34,73,33,57,9,6,0,0,0,10,225,7,18,62,134,76,131,35,3,0,0,4,9,476,4,6,39,90,71,112,46,0,0,0,3,9,385,4,0,32,69,48,103,53,8,0,0,0,7,317,3,0,19,44,28,57,51,0,0,0,0,5,213,10,4,19,38,34,70,52,9,0,0,0,8,243,4,0,9,11,9,29,35,6,0,0,0,3,104,6,0,0,8,10,9,18,3,0,0,0,0,52,0,0,0,0,6,0,4,0,0,0,0,0,15,0,0,0,0,0,0,4,0,0,0,0,0,6,9,5,21,41,32
LGA36720,9,3,16,15,10,35,83,95,40,6,6,44,380,31,22,31,24,11,26,48,44,11,3,6,20,275,151,137,116,119,101,132,184,135,23,13,10,53,1174,288,255,186,200,147,243,322,162,41,0,11,88,1953,61,68,223,290,243,519,740,414,54,15,13,54,2688,43,35,171,86,69,170,340,287,48,14,6,34,1318,37,45,134,172,202,511,1028,752,112,29,23,73,3125,16,25,105,134,142,390,938,955,151,30,31,63,2970,17,8,49,98,92,285,964,1170,182,35,27,52,2973,3,5,32,50,71,180,749,1029,219,57,49,39,2492,11,3,37,54,54,148,747,1485,376,72,44,37,3069,3,7,8,23,24,57,308,829,261,53,34,21,1606,4,0,4,11,7,30,154,389,239,81,52,12,986,0,0,6,4,3,13,62,215,157,66,54,12,598,0,0,0,0,3,4,0,58,67,29,31,0,209,16,15,60,57,45
LGA36820,0,0,5,6,3,4,4,0,0,0,0,5,27,0,3,0,5,3,3,4,0,0,0,0,0,25,18,17,38,44,20,13,5,5,0,0,0,6,163,23,35,53,61,26,32,12,3,0,0,0,14,268,9,8,42,73,46,63,36,0,0,0,0,7,275,4,3,45,27,24,17,14,0,0,0,0,9,137,7,7,42,52,42,87,27,5,0,0,0,4,272,6,10,23,37,30,45,48,4,0,0,0,7,214,3,9,19,30,33,59,41,7,0,0,0,11,214,4,0,6,21,22,36,31,13,3,0,3,6,148,8,4,3,15,25,41,38,13,0,0,6,6,163,0,0,0,11,5,20,21,9,0,0,0,3,64,5,0,3,0,9,3,11,10,0,0,0,5,58,0,0,0,3,0,0,4,7,4,0,0,0,25,0,0,0,0,0,3,0,0,0,0,0,0,10,4,8,17,20,21
LGA36910,6,5,20,31,19,32,24,11,3,0,6,27,178,20,11,18,48,19,17,12,12,0,0,0,16,166,89,77,109,148,73,84,36,15,0,0,4,36,670,158,146,252,368,119,143,67,16,0,0,16,51,1327,33,48,264,508,239,377,167,22,9,3,11,54,1728,20,22,140,154,91,169,90,9,3,0,8,19,725,38,36,191,451,323,546,269,69,9,0,9,52,1986,21,27,109,334,276,501,303,68,12,3,6,34,1695,10,18,95,242,238,523,425,94,7,0,3,51,1716,5,9,51,162,171,381,386,106,10,7,9,30,1318,17,12,39,155,151,414,537,244,22,6,8,44,1648,9,4,28,62,66,187,295,145,14,4,0,19,823,6,9,17,20,25,79,148,131,18,4,4,9,475,3,4,7,3,8,26,76,85,20,5,0,5,247,0,0,0,6,8,11,18,23,9,7,0,10,93,16,11,64,129,109
LGA36950,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,8,3,3,5,0,0,0,0,0,0,0,0,4,10,5,4,3,0,0,0,0,0,0,0,0,0,15,7,5,5,0,0,0,0,0,0,0,0,0,18,0,0,9,3,5,5,0,0,0,0,0,0,20,4,0,12,6,3,0,0,0,0,0,0,0,27,8,0,11,6,0,10,0,0,0,0,0,0,28,7,3,5,11,3,5,4,3,0,0,0,3,45,8,0,10,4,0,6,0,0,0,0,0,7,47,22,0,9,13,5,5,10,0,0,0,0,12,77,22,0,3,6,0,7,0,3,4,0,0,5,55,18,6,3,5,0,4,4,0,0,0,3,5,51,15,0,4,3,0,0,5,4,0,0,0,5,42,3,0,0,0,0,0,6,0,0,0,0,3,17,16,6,15,9,7
LGA36960,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,53,13,8,0,6,0,0,0,0,0,0,7,82,44,10,6,0,0,0,0,0,0,0,0,0,63,25,5,0,3,0,0,0,0,0,0,0,0,39,57,18,9,0,0,0,0,0,0,0,0,4,83,57,36,11,0,0,0,0,0,0,0,0,9,112,49,8,11,0,0,0,0,0,0,0,0,0,80,61,23,20,6,0,0,0,0,0,0,0,3,111,49,14,7,0,4,0,0,0,0,0,0,6,80,50,16,17,0,0,3,0,0,0,0,0,3,90,24,13,8,0,0,0,0,0,0,0,0,7,51,11,4,3,0,0,0,0,0,0,0,0,0,21,6,5,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16,4,0,0,0
LGA37010,18,5,19,18,18,45,51,34,13,3,3,29,245,24,19,18,26,18,27,27,21,3,0,3,16,206,140,139,125,96,68,75,117,40,11,4,7,43,855,189,189,174,153,102,122,138,54,7,0,11,44,1187,31,83,199,222,143,295,324,127,17,0,9,49,1502,12,22,136,80,64,112,123,60,4,0,9,21,644,32,37,188,235,200,385,457,220,34,15,21,43,1870,28,29,105,203,216,398,613,327,43,9,21,50,2044,18,16,80,163,253,399,807,555,57,8,28,52,2448,11,9,47,111,203,307,649,497,66,5,16,41,1951,9,21,45,148,263,379,876,917,120,28,36,56,2890,0,10,20,75,175,177,467,713,96,18,28,32,1817,11,7,8,36,55,81,252,465,144,46,26,32,1163,5,0,16,23,28,49,138,313,124,30,28,10,761,4,0,3,0,9,9,28,80,51,16,21,0,234,25,37,106,208,230
LGA37300,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,4,16,9,0,3,0,0,4,0,0,0,5,0,5,26,8,0,0,0,0,0,6,0,4,0,3,9,37,12,0,0,0,0,4,4,0,7,8,0,3,38,22,3,4,8,7,5,11,7,10,8,3,6,99,21,0,9,0,0,4,0,8,10,8,0,6,65,23,0,0,7,0,0,7,8,16,6,11,13,86,24,3,0,0,0,7,6,0,16,3,13,6,75,17,0,0,0,0,0,5,3,6,0,4,4,34,24,0,3,0,0
LGA37310,0,0,5,4,0,5,0,6,0,0,0,7,25,3,4,8,7,0,8,4,0,0,0,0,3,29,16,10,36,17,10,10,4,0,0,0,0,13,117,16,18,74,38,16,15,4,0,0,0,0,7,200,12,14,61,59,36,45,29,5,0,0,0,14,272,4,0,34,21,17,16,3,0,0,0,0,8,107,14,12,35,54,41,56,41,7,3,0,0,16,278,10,5,27,30,18,55,40,13,5,0,3,19,227,20,6,25,45,42,67,58,17,5,3,0,21,307,14,4,34,33,25,47,54,28,7,3,4,19,268,17,8,26,26,33,52,89,57,3,0,4,29,353,11,8,15,6,6,25,52,33,0,4,0,7,169,9,0,3,7,6,19,42,71,16,9,3,26,215,4,7,4,3,3,4,23,21,11,3,0,8,97,6,3,0,0,0,5,21,22,10,3,0,7,70,10,3,16,24,18
LGA37340,3,3,6,3,8,0,6,10,5,0,0,10,47,0,6,4,5,0,8,6,3,0,0,0,0,38,22,18,39,28,18,14,17,4,3,0,0,9,161,29,29,61,42,25,16,28,7,0,0,0,13,265,0,8,55,45,42,41,61,15,4,0,3,13,306,5,4,17,20,19,19,21,7,5,3,0,8,130,13,4,35,64,46,83,86,38,10,4,3,18,404,9,6,28,33,29,69,86,41,9,10,4,16,337,9,12,7,29,42,65,97,73,13,0,9,19,373,3,9,6,23,32,52,81,68,7,0,11,13,307,20,4,19,23,37,51,131,132,44,8,14,47,539,7,9,5,6,10,26,55,80,21,5,3,13,235,18,0,9,11,15,21,65,65,39,17,22,17,300,8,3,4,6,8,7,16,48,31,7,20,13,167,3,0,0,0,0,0,4,13,11,3,20,5,65,0,4,11,20,18
LGA37400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,3,0,0,0,0,0,0,0,0,0,10,5,0,0,5,0,0,0,0,0,0,0,0,11,5,0,3,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,10,5,0,6,4,0,0,0,0,0,0,0,0,13,0,4,9,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,4,0,0,0,0,0,0,0,5,14,3,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0
LGA37550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,7,4,0,0,0,0,0,0,0,0,16,7,4,6,0,0,0,0,0,0,0,0,0,16,6,8,9,0,0,0,0,0,0,0,0,0,18,0,4,20,0,0,0,0,0,0,0,0,0,27,10,6,11,0,0,0,0,0,0,0,0,0,29,10,5,9,5,0,0,0,0,0,0,0,0,21,3,3,11,8,0,0,0,0,0,0,0,0,17,0,3,7,0,0,0,0,0,0,0,0,0,9,3,0,9,0,0,0,0,0,0,0,0,0,8,8,0,4,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0
LGA37570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,4,3,6,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,7,5,0,6,0,0,0,0,0,0,0,0,0,6,3,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA37600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,4,0,7,0,0,0,0,0,0,0,0,0,13,0,4,4,0,0,0,0,0,0,0,0,0,11,0,3,3,0,0,0,0,0,0,0,0,0,12,7,5,17,3,0,0,0,0,0,0,0,0,34,6,6,17,4,0,0,0,0,0,0,0,0,38,6,6,23,12,0,0,0,0,0,0,0,0,45,5,4,15,12,0,0,0,0,0,0,0,0,49,4,0,14,17,0,0,0,0,0,0,0,0,40,3,6,14,23,3,0,0,0,0,0,0,0,45,0,4,14,14,4,0,0,0,0,0,0,0,36,0,0,4,6,0,0,0,0,0,0,0,0,11,4,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0
LGA39499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA39799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA40070,0,0,8,55,25,86,88,142,86,18,28,24,560,17,11,15,23,6,26,15,37,12,8,4,9,184,37,61,37,43,14,22,25,35,23,9,3,14,316,33,121,51,23,19,10,35,21,11,0,3,11,335,9,17,45,43,23,41,50,30,15,3,6,8,294,0,4,15,13,9,8,21,19,10,0,3,5,103,3,15,15,34,30,48,71,67,22,5,4,10,314,0,0,16,24,35,46,76,77,15,9,5,13,309,6,0,7,31,21,52,112,96,21,9,0,6,360,4,0,7,17,16,32,89,118,17,3,6,0,308,0,4,5,15,20,35,126,204,46,17,21,9,500,0,0,3,5,8,15,63,104,49,6,8,5,274,0,0,4,4,9,14,54,166,70,26,43,5,400,0,0,0,0,4,7,18,94,62,18,18,8,225,0,0,0,0,0,3,4,26,19,12,9,0,68,0,3,6,16,14
LGA40120,0,3,0,0,0,0,8,0,0,0,0,3,17,0,0,0,3,0,0,0,0,0,0,0,3,12,0,4,13,3,0,15,5,3,0,0,0,3,59,15,9,25,14,9,10,6,5,0,0,0,9,104,4,6,18,25,17,18,30,5,0,0,0,6,117,0,0,7,4,9,4,10,0,0,0,0,6,42,10,3,17,13,13,34,40,11,8,0,0,8,147,0,0,11,21,18,36,49,12,3,0,0,9,156,4,0,9,11,19,38,52,36,8,0,0,10,186,0,0,11,12,14,30,40,23,4,0,0,3,136,0,0,4,14,7,38,48,43,11,0,4,0,175,0,0,3,10,7,10,34,26,4,0,4,5,99,0,0,0,0,4,4,13,23,15,9,3,3,72,0,0,0,0,5,3,3,7,10,4,3,0,36,0,0,0,0,0,0,0,10,4,4,0,0,19,0,0,3,10,12
LGA40150,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,3,0,6,3,4,0,0,0,0,0,27,6,9,8,5,0,4,3,0,0,0,0,0,36,0,3,9,13,0,9,3,3,0,0,0,0,36,0,0,0,3,4,3,6,0,0,0,0,3,16,0,0,3,4,3,9,0,0,0,0,0,0,31,3,0,0,8,8,8,0,0,0,0,0,0,30,0,0,3,6,7,4,9,0,0,0,0,3,26,0,0,0,5,3,9,5,4,0,0,0,0,22,0,0,0,7,8,5,3,0,0,0,0,0,26,0,0,0,4,0,4,4,6,0,0,0,0,14,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,3,4,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5
LGA40220,0,0,4,6,0,6,8,0,0,0,0,4,24,0,3,0,8,0,5,3,0,0,0,0,0,21,9,17,11,23,22,12,4,0,0,0,0,7,110,9,38,30,52,24,26,10,5,0,0,3,5,201,3,7,29,80,56,49,16,4,0,0,0,5,253,0,4,13,28,29,46,9,0,0,0,0,0,141,3,5,22,60,47,80,39,7,0,4,3,3,274,3,0,19,34,29,67,36,3,0,0,3,9,212,7,0,9,26,32,58,38,4,0,0,0,0,181,0,0,4,18,20,34,40,3,0,0,0,6,130,4,0,0,15,15,31,32,13,0,0,0,3,113,0,0,3,7,8,8,24,10,0,0,0,0,50,0,0,0,0,0,7,14,6,0,0,0,0,40,0,0,0,0,0,3,8,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,10,8,16
LGA40250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,15,12,0,0,0,0,0,0,0,0,0,0,0,15,9,0,0,0,0,0,0,0,0,0,0,0,9,28,0,0,0,0,0,0,0,0,0,0,0,26,28,0,0,0,0,0,0,0,0,0,0,0,35,27,4,0,0,0,0,0,0,0,0,0,4,30,29,6,0,0,0,0,0,0,0,0,0,7,46,14,3,0,0,0,0,0,0,0,0,0,9,30,25,0,18,0,0,0,0,0,0,0,0,7,48,15,0,3,0,0,0,0,0,0,0,0,4,27,4,0,4,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0
LGA40310,0,0,0,0,3,5,0,0,0,0,0,0,10,0,0,3,4,0,4,0,0,0,0,0,3,18,11,15,13,13,7,8,6,0,0,0,0,4,76,20,35,31,31,22,13,9,0,0,0,0,7,168,4,8,25,51,20,46,10,0,0,3,0,4,163,0,3,21,15,10,15,0,0,0,0,0,7,76,7,12,13,41,22,55,25,3,0,0,0,5,179,4,0,15,29,25,49,21,0,0,0,0,0,150,0,0,16,31,33,60,30,9,4,0,4,6,191,0,0,8,9,13,38,28,3,0,0,0,7,107,0,0,7,22,27,59,43,12,0,0,0,3,172,4,0,0,5,13,23,25,6,0,0,0,0,82,3,0,0,10,6,15,18,12,0,0,4,0,57,0,0,0,0,3,4,10,4,0,0,0,0,29,0,0,0,0,0,0,6,0,0,0,0,0,6,0,0,7,6,12
LGA40430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,8,8,0,0,0,0,0,0,0,3,18,0,0,5,5,0,0,0,0,0,0,0,0,19,0,4,11,12,0,0,0,0,0,0,0,0,30,0,0,0,10,0,4,0,0,0,0,0,3,17,0,0,0,11,0,4,0,0,0,0,0,0,20,0,0,3,3,0,0,0,0,0,0,0,0,17,0,0,4,4,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,12,0,0,3,3,0,0,0,0,4,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA40520,0,0,0,5,0,0,0,0,0,0,0,4,11,3,7,14,4,5,0,0,0,0,0,0,4,26,25,23,38,29,3,0,0,0,0,0,0,4,116,38,44,51,31,3,0,0,0,0,0,4,9,177,3,3,57,59,5,4,0,0,0,0,0,5,152,5,3,40,38,3,4,0,0,0,0,0,0,100,5,10,37,83,11,4,3,0,0,0,0,7,161,0,0,29,44,14,8,7,0,0,0,0,6,107,0,0,24,55,6,5,3,0,0,0,4,0,101,4,9,14,27,0,11,4,4,0,0,0,5,76,0,0,13,19,3,6,9,0,0,3,0,4,67,0,0,15,5,3,6,4,0,0,0,0,0,36,0,0,3,8,3,3,4,0,0,0,0,0,24,0,0,0,0,0,5,3,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,9,0,3,11,27,11
LGA40700,0,0,4,7,3,18,37,18,9,5,8,16,116,8,3,3,0,8,6,9,7,0,0,4,7,60,13,24,13,16,8,20,12,9,0,3,0,12,129,13,38,20,23,23,32,23,11,3,3,3,11,202,3,16,25,39,36,69,50,13,6,3,0,14,283,0,4,8,11,7,19,23,13,4,0,3,0,95,0,10,14,38,38,82,83,48,13,7,7,3,333,0,0,7,32,39,86,90,35,14,3,7,4,323,0,3,11,22,26,65,111,56,21,9,3,7,334,0,3,7,11,21,54,93,57,15,4,4,7,264,0,0,4,17,12,55,116,89,38,16,10,0,363,4,0,5,8,5,30,71,59,25,9,4,6,229,0,0,5,4,7,15,42,65,53,24,36,0,258,0,0,0,0,5,5,16,38,33,14,23,0,135,0,0,0,0,0,0,5,10,20,16,14,5,63,0,0,5,5,6
LGA40910,0,4,5,12,8,13,29,26,5,0,0,16,114,12,14,10,10,3,12,15,6,0,0,0,6,86,36,83,41,29,15,31,42,5,3,0,0,21,306,70,173,70,38,21,31,31,9,0,3,0,12,470,8,30,56,48,45,93,94,24,0,0,0,16,418,4,3,46,25,12,44,46,16,0,0,0,10,219,4,20,47,72,58,111,152,41,0,0,0,11,517,5,15,31,43,47,106,157,37,9,3,4,13,455,0,5,12,33,26,111,167,67,5,0,4,8,444,3,0,7,17,25,80,131,57,3,0,3,0,349,4,3,16,17,29,79,160,106,16,4,11,5,446,0,0,3,5,16,52,92,59,10,0,0,4,245,0,0,3,4,0,14,47,59,19,0,0,4,160,0,0,0,3,4,13,25,30,11,5,0,0,97,0,0,0,0,0,5,7,11,0,0,0,0,21,5,4,15,15,9
LGA41010,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,3,21,11,4,11,9,3,0,0,0,0,0,0,0,34,3,0,9,5,9,8,0,0,0,0,0,4,42,8,0,10,0,4,5,0,0,0,0,0,0,25,14,3,17,13,5,7,5,0,0,0,0,0,57,16,5,10,11,0,4,9,0,0,0,0,3,56,7,0,11,9,3,9,0,0,0,0,0,0,50,4,3,10,8,5,3,7,0,0,0,0,8,44,10,5,14,11,0,11,4,0,0,0,0,0,58,6,4,3,4,4,0,0,0,0,0,0,3,23,0,0,7,0,4,0,0,0,0,0,0,4,24,0,0,0,3,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,8,11,5
LGA41060,15,12,15,34,23,35,28,29,8,6,5,15,213,55,44,33,24,9,18,12,13,0,0,4,26,247,182,291,137,87,38,74,61,16,3,0,6,59,950,260,640,224,133,50,90,66,21,0,4,6,88,1578,45,72,222,177,127,172,158,34,8,0,9,34,1059,15,37,244,99,48,74,68,25,0,0,3,14,638,38,61,159,244,158,298,303,91,9,8,9,47,1415,15,23,94,165,160,277,312,98,17,5,7,32,1200,15,20,60,115,132,287,344,163,20,4,7,19,1183,3,4,26,60,82,211,295,153,18,8,9,29,889,4,10,28,63,55,218,397,252,27,5,16,11,1082,0,3,10,27,36,88,251,179,34,13,6,10,659,3,0,0,12,12,53,120,138,48,22,11,7,428,4,0,8,6,8,33,52,97,34,14,12,7,267,0,0,0,3,0,0,15,27,16,15,6,0,79,11,18,60,69,48
LGA41140,0,0,0,0,0,3,3,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,4,8,6,12,7,13,0,0,0,0,0,6,0,0,45,15,19,14,14,4,10,0,0,0,0,0,3,83,5,4,23,21,15,8,0,0,0,0,0,4,76,0,4,7,11,4,7,4,0,0,0,0,0,40,0,5,11,30,13,14,0,0,0,0,0,8,82,5,0,4,15,14,9,9,0,0,0,0,0,69,0,3,6,26,13,16,5,0,0,0,4,0,82,3,0,3,8,6,18,13,0,0,0,3,0,55,0,0,6,15,15,15,16,0,0,0,0,7,82,3,0,0,12,6,8,6,5,0,0,0,3,36,0,0,0,3,3,0,8,6,0,0,0,0,24,0,0,4,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,10,10,5
LGA41190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,8,3,4,0,0,0,0,0,0,0,0,16,0,0,4,0,3,0,0,0,0,0,0,0,14,3,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,6,0,3,9,0,0,0,0,0,0,0,0,19,4,0,0,3,0,0,0,0,0,0,0,3,12,0,5,0,0,4,0,0,0,0,0,0,0,8,0,0,0,3,0,0,0,0,0,0,0,0,12,4,0,4,0,0,5,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0
LGA41330,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,3,0,0,7,0,0,0,0,0,0,0,0,0,12,7,0,6,0,0,0,0,0,0,0,0,4,17,4,0,5,0,0,0,0,0,0,0,0,0,8,0,0,3,4,0,0,0,0,0,0,0,0,9,0,3,10,6,0,0,0,0,0,0,0,0,18,0,0,10,5,0,0,0,0,0,0,0,0,21,6,4,11,5,0,0,0,0,0,0,0,5,30,0,3,8,3,0,0,0,0,0,0,0,0,25,3,3,3,13,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,7,0,5,3,7,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,0,0
LGA41560,0,0,0,0,0,0,0,0,0,0,0,7,13,0,3,3,0,0,6,0,0,0,0,0,0,21,16,21,13,22,10,13,0,0,0,0,0,4,100,38,41,39,40,13,9,0,0,0,0,0,5,191,4,5,33,45,24,40,0,0,0,0,3,7,163,4,4,30,21,21,23,0,0,0,0,0,0,107,0,8,21,37,26,54,12,0,0,0,5,3,173,0,0,17,29,22,38,4,0,0,0,0,9,119,0,4,11,21,14,30,11,0,0,0,0,3,92,6,0,5,14,9,13,15,0,0,0,0,0,70,0,0,10,16,17,25,17,0,0,0,0,3,82,0,0,5,9,5,13,5,3,0,0,0,0,40,0,0,0,0,6,10,7,0,0,0,0,0,22,0,0,0,0,5,0,4,0,0,0,0,4,16,0,0,0,0,0,0,0,0,0,0,0,0,6,5,0,6,16,4
LGA41750,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,4,3,0,0,5,0,0,0,0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,5,0,0,0,0,0,0,0,3,13,0,0,3,3,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,6,3,3,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA41830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,4,6,0,0,0,0,0,0,0,0,4,15,0,0,4,4,0,0,0,0,0,0,0,0,12,0,0,6,4,0,0,0,0,0,0,0,0,6,0,3,4,4,3,0,0,0,0,0,0,0,16,0,0,6,3,0,0,0,0,0,0,0,0,6,0,0,6,5,0,0,0,0,0,0,0,3,16,0,0,0,5,3,0,0,0,0,0,0,0,17,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,5,5,0,4,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA41960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,6,4,4,0,0,0,0,0,0,0,0,15,0,0,0,3,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,7,0,0,0,0,0,0,10,0,0,0,0,0,7,0,0,0,0,0,0,14,0,0,0,0,3,3,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0
LGA42030,0,0,0,0,0,5,6,0,0,0,0,9,23,0,6,0,3,0,4,0,0,0,0,0,3,22,24,30,18,23,11,14,15,0,0,3,0,14,147,51,80,33,28,25,24,10,4,0,0,0,6,271,5,13,31,53,44,69,30,5,0,0,0,3,248,7,4,39,26,14,20,16,4,0,0,0,0,135,5,5,15,52,42,86,54,0,3,0,0,9,270,0,3,18,32,31,68,55,3,0,0,0,4,220,4,3,6,25,28,73,60,7,0,0,0,7,206,0,0,3,6,24,40,42,5,0,0,0,4,129,0,0,4,10,23,53,72,17,3,0,0,0,178,0,0,0,0,10,19,37,12,0,0,0,4,87,0,0,0,0,4,10,15,10,0,0,0,0,37,0,0,0,0,0,8,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,6,14,18
LGA42110,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,3,0,0,0,0,0,0,0,4,4,16,8,10,12,8,0,0,0,0,0,0,3,0,42,5,4,12,13,7,0,0,0,0,0,0,0,34,0,0,3,5,3,0,0,0,0,0,0,8,23,4,3,8,9,5,5,0,0,0,0,0,3,35,0,3,3,4,3,0,0,0,0,0,0,0,17,0,3,7,13,5,0,0,0,0,0,0,4,28,6,0,3,5,4,0,0,0,0,0,0,0,16,0,0,4,5,0,0,0,0,0,0,0,0,16,0,0,3,4,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,8,0
LGA42250,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,11,6,0,0,0,0,0,0,0,0,24,0,3,6,12,3,0,0,0,0,0,0,3,26,0,0,17,9,9,5,4,0,0,0,0,0,39,5,0,7,3,3,3,0,0,0,0,0,0,13,4,5,4,12,10,0,0,0,5,0,0,3,38,4,0,9,10,0,6,0,0,0,0,0,4,37,0,0,6,11,8,0,5,0,0,0,0,3,28,0,0,7,6,5,7,0,0,0,0,0,0,23,0,0,5,4,3,5,0,0,0,0,0,5,23,0,0,0,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3
LGA42600,6,0,5,6,11,12,14,8,7,0,4,4,82,10,4,8,8,6,12,7,7,0,0,0,0,54,14,37,41,34,23,31,23,13,3,0,3,13,221,36,80,70,44,24,39,33,10,4,0,4,20,347,12,23,40,80,67,86,67,22,3,0,3,7,427,0,0,24,11,11,34,19,5,0,0,0,3,111,0,7,28,71,64,116,102,22,0,0,4,8,428,0,5,25,54,67,105,129,43,6,0,3,17,455,0,0,17,35,37,108,137,62,13,3,5,10,428,0,4,7,19,34,70,104,63,21,3,3,3,328,0,0,5,27,19,93,161,129,36,10,14,9,501,0,0,0,13,10,50,91,65,29,3,7,3,271,0,0,5,0,3,16,61,75,48,29,33,9,285,0,0,4,8,0,9,27,64,33,15,15,0,166,0,0,0,0,0,6,3,15,14,6,7,0,51,3,0,10,11,12
LGA42750,0,0,0,0,6,0,0,0,0,0,0,0,10,0,0,9,0,0,0,0,0,0,0,0,0,14,3,7,10,13,4,0,0,0,0,0,0,4,38,9,15,12,8,4,3,5,0,0,0,0,0,47,0,0,15,17,8,0,0,0,0,0,0,0,42,3,0,5,0,4,0,0,0,0,0,0,0,16,0,3,8,19,8,7,4,0,0,0,0,3,42,0,3,7,15,10,9,0,0,0,0,0,0,56,0,0,9,13,8,4,0,0,0,0,0,5,43,0,0,4,6,6,3,0,0,0,0,0,3,25,0,3,3,6,8,4,3,3,0,0,0,0,37,0,0,0,3,0,4,0,0,0,0,0,0,12,0,0,0,0,6,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,5,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,10
LGA43080,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,8,0,0,6,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,6,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA43220,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,6,3,0,0,0,0,0,0,0,0,0,0,8,0,0,6,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA43360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,8,7,0,0,0,0,0,0,0,0,15,0,4,5,6,0,0,0,0,0,0,0,0,24,0,5,8,5,0,0,0,0,0,0,0,0,25,0,0,5,0,3,0,0,0,0,0,0,0,16,0,0,7,14,4,0,0,0,0,0,0,5,33,0,0,7,9,5,0,0,0,0,0,0,0,21,0,0,4,12,0,0,0,0,0,0,0,0,14,0,0,0,0,3,0,0,0,0,0,0,3,12,0,0,4,0,3,5,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,13,6
LGA43650,0,0,0,0,0,0,0,0,0,0,0,4,8,3,0,0,7,0,5,0,0,0,0,0,0,14,0,5,3,8,0,4,0,0,0,0,0,0,29,3,8,11,10,4,9,0,0,0,0,0,0,48,0,3,8,15,15,3,4,3,0,0,0,5,53,0,0,11,8,9,0,3,0,0,0,0,0,36,8,0,5,22,10,17,10,0,0,0,0,3,71,0,0,6,13,10,6,10,6,0,0,0,4,61,0,0,15,16,19,14,15,3,0,0,0,4,78,0,0,0,9,15,15,14,4,0,0,0,0,58,5,0,5,9,11,14,8,15,5,0,0,0,67,0,0,3,0,4,13,7,5,0,0,0,0,42,0,0,0,0,0,4,9,5,0,0,0,0,19,0,0,0,0,0,0,8,8,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,8,11,8
LGA43710,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,3,0,0,0,0,0,0,0,0,12,0,0,13,9,0,0,0,0,0,0,0,0,28,0,0,8,7,5,0,0,0,0,0,0,3,19,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,6,3,6,0,0,0,0,0,3,0,22,0,0,14,9,4,3,3,0,0,0,0,0,28,6,0,10,8,3,4,4,0,0,0,0,0,28,4,6,6,3,0,0,3,0,0,0,0,4,24,3,0,0,4,3,0,6,0,0,0,0,0,20,0,0,0,0,0,0,5,0,0,0,0,0,12,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,7,4
LGA43790,0,5,0,0,0,0,0,0,0,0,0,0,7,7,0,10,4,0,0,0,0,0,0,0,7,29,14,9,40,21,3,0,0,0,0,0,0,5,95,39,51,52,35,0,0,4,4,0,0,0,4,189,8,14,41,41,6,3,0,0,0,0,0,5,118,6,6,29,35,10,0,0,0,0,0,0,0,86,10,3,47,49,17,0,3,0,0,0,0,6,135,0,7,31,33,7,6,0,0,0,0,3,3,101,5,0,25,26,12,6,0,0,0,0,0,0,72,3,4,18,16,10,7,0,0,0,0,0,8,59,7,3,12,20,8,12,3,0,0,0,0,3,70,3,0,4,0,5,0,3,0,0,0,0,0,25,3,0,6,9,0,0,0,0,0,0,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,15,14,7
LGA44000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA44060,11,14,11,14,10,24,30,32,0,0,0,19,167,61,50,39,18,9,12,14,9,0,9,0,25,238,164,242,110,60,23,37,46,10,3,3,3,50,747,177,587,204,83,34,68,59,25,0,0,6,56,1302,19,91,231,122,68,117,132,32,5,0,3,28,856,14,35,182,65,19,60,77,26,4,0,4,20,504,18,52,125,150,83,184,203,64,8,0,3,31,930,11,22,72,106,95,195,282,102,3,0,0,19,919,5,12,40,72,66,161,303,135,9,4,4,10,825,0,3,17,28,40,113,266,131,5,0,4,17,626,3,6,18,32,47,136,309,217,17,3,7,15,816,5,3,3,17,17,68,186,173,10,8,4,7,509,0,4,6,8,13,21,65,123,22,8,3,7,283,0,0,4,8,4,11,56,74,11,7,3,3,177,0,0,0,0,0,0,7,15,9,0,0,0,34,8,8,48,44,28
LGA44210,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,6,9,16,9,0,0,0,0,0,0,3,43,17,18,23,18,7,5,0,0,0,0,0,4,84,3,3,19,20,10,7,0,0,0,0,0,4,72,0,0,18,10,3,0,5,0,0,0,0,0,38,4,0,19,25,11,5,0,0,0,0,0,0,62,0,0,11,12,9,5,0,0,0,0,0,3,52,0,4,5,13,5,9,0,0,0,0,0,0,45,0,0,13,11,8,3,0,0,0,0,0,3,40,3,0,8,3,5,5,0,0,0,0,0,5,29,0,0,4,0,3,0,0,0,0,0,0,0,17,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,12,4,3
LGA44340,0,0,0,5,3,15,19,14,0,0,4,6,76,8,12,14,5,7,14,9,5,0,0,0,3,71,16,31,39,37,8,20,22,11,4,0,8,16,208,26,46,56,39,27,29,31,11,0,0,0,17,282,6,23,57,65,39,98,74,12,3,0,4,20,400,3,8,18,9,13,29,36,13,3,0,0,3,146,9,14,30,56,49,130,97,34,4,0,5,12,432,0,7,24,43,49,111,111,43,9,0,0,11,400,5,5,16,28,34,127,109,77,6,3,5,9,427,0,0,9,19,26,81,123,61,10,8,5,9,356,0,0,12,27,29,75,160,125,26,5,3,8,468,0,0,3,14,16,30,86,75,21,4,3,3,259,0,0,0,6,8,17,43,64,38,13,6,0,201,0,0,4,6,3,9,26,45,18,13,7,3,127,0,0,0,0,0,4,3,12,13,11,3,0,39,4,0,8,16,9
LGA44550,0,0,3,6,0,6,9,4,0,0,0,5,29,6,7,5,3,3,4,10,3,0,0,0,3,45,10,26,19,11,3,6,7,5,0,0,0,10,109,15,52,26,19,12,23,35,11,0,0,0,8,190,10,15,34,38,28,62,67,7,0,0,0,10,275,4,9,29,14,6,20,26,9,0,0,0,0,126,0,5,21,22,20,71,85,25,0,0,0,11,265,0,0,16,18,22,50,93,21,0,0,0,4,228,3,6,6,17,20,63,89,36,4,0,3,6,248,0,0,3,9,16,40,75,30,0,4,0,0,191,0,0,0,4,16,57,92,50,7,0,0,10,240,0,0,0,4,4,28,44,38,6,0,3,7,138,0,0,0,0,4,7,33,20,9,3,0,0,71,0,0,0,0,0,4,12,25,0,0,0,0,55,0,0,0,0,0,0,3,0,0,0,4,5,12,5,7,18,9,8
LGA44620,0,4,15,8,0,5,0,0,0,0,0,3,37,18,21,30,7,0,0,0,0,0,0,0,0,83,57,84,107,46,17,16,0,0,0,0,0,11,343,57,141,126,76,24,17,3,3,0,0,0,24,469,15,35,125,132,42,34,3,4,0,0,0,9,404,7,15,85,72,24,12,9,0,0,0,0,3,230,10,25,107,144,62,54,19,4,0,0,0,8,429,5,9,71,117,60,46,8,0,0,0,4,3,317,4,13,46,101,49,57,17,0,0,0,3,3,297,0,0,23,44,35,54,9,0,0,3,0,3,181,0,4,17,55,40,52,26,3,0,0,0,5,200,3,0,4,25,11,19,15,4,0,0,0,3,82,0,4,0,4,11,15,23,5,0,0,7,4,68,0,0,3,5,0,3,14,0,0,0,0,4,26,0,0,0,0,0,0,0,0,0,0,0,0,8,0,3,25,57,22
LGA44830,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,8,4,0,0,0,0,0,0,0,0,9,10,8,4,0,0,0,0,0,0,0,0,0,20,0,0,8,0,0,0,0,0,0,0,0,0,15,0,0,4,4,0,0,0,0,0,0,0,0,10,0,0,4,6,3,0,0,0,0,0,0,4,28,0,0,7,0,0,0,0,0,0,0,0,0,12,0,5,0,0,0,0,0,0,0,0,0,0,10,0,4,4,3,0,0,0,0,0,0,0,0,10,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,4,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA45040,0,3,4,8,4,4,0,0,0,0,0,4,29,5,10,3,9,0,0,0,0,0,0,0,9,41,34,59,39,25,17,14,0,0,0,0,0,12,199,30,120,53,45,12,14,6,0,0,0,4,16,298,12,12,50,62,43,49,9,4,0,0,7,4,251,7,10,51,52,24,24,7,0,0,0,0,6,180,7,8,48,88,58,50,8,0,0,0,3,11,289,3,6,31,66,40,82,11,0,0,0,0,7,251,7,5,16,55,42,73,15,0,0,0,0,3,220,3,3,18,34,37,55,10,3,0,0,0,4,175,6,5,23,27,26,54,12,0,0,0,0,4,167,0,3,4,14,14,32,12,0,0,0,0,0,80,0,0,8,3,6,7,9,0,0,0,0,0,33,0,0,4,3,0,5,6,0,0,0,0,0,24,0,0,0,3,0,0,3,0,0,0,0,0,6,0,0,20,34,25
LGA45090,0,0,0,5,0,0,3,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,8,0,3,14,5,4,0,0,0,0,0,0,3,36,8,17,14,19,4,0,4,0,0,0,0,7,64,0,8,24,18,9,4,0,0,0,0,0,0,69,0,0,16,18,5,0,0,0,0,0,0,4,35,7,9,24,30,6,3,0,0,0,0,0,9,83,6,4,21,27,16,9,0,0,0,0,0,5,85,5,4,12,27,19,12,0,0,0,0,0,6,90,0,3,12,19,12,9,4,0,0,0,0,0,53,3,0,15,20,11,5,0,0,0,0,0,6,64,5,3,3,11,3,3,0,0,0,0,0,4,30,0,3,4,3,0,0,0,0,0,0,0,0,21,0,0,0,8,3,4,0,0,0,0,0,0,22,0,0,0,3,0,0,0,0,0,0,0,0,5,0,3,0,8,11
LGA45120,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,10,0,0,0,0,0,0,0,0,0,21,8,3,8,13,0,0,0,4,0,0,0,0,38,6,8,7,16,7,3,0,0,0,0,0,0,36,4,0,4,5,0,0,0,0,0,0,0,0,21,4,6,9,5,4,3,0,0,0,0,0,0,34,0,3,6,6,7,0,0,0,0,0,0,0,23,3,0,9,9,0,0,0,0,0,0,0,0,31,3,0,6,0,0,0,0,0,0,0,0,0,11,0,0,9,5,0,0,0,0,0,0,0,0,20,3,0,4,4,0,0,0,0,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3,0,0,0,0,0,0,11,0,0,5,0,0,0,0,0,0,0,0,0,5,0,3,3,3,0
LGA45290,6,4,17,10,12,25,32,18,14,0,4,11,148,11,21,11,11,3,10,11,12,0,0,0,13,108,65,100,42,31,28,29,36,7,0,0,5,14,355,73,182,63,56,20,40,29,12,5,0,0,20,494,26,40,88,64,48,82,48,34,8,0,0,14,449,0,17,29,17,12,31,25,16,3,0,0,5,150,3,18,39,53,70,130,92,50,7,3,5,21,487,6,8,40,54,62,158,126,54,8,5,7,13,536,8,0,17,44,57,130,163,74,9,3,4,11,528,0,0,4,20,37,105,129,65,24,5,3,11,407,0,4,9,19,30,110,175,142,32,8,3,3,544,0,5,6,5,14,42,88,109,32,9,0,9,323,0,0,3,7,4,26,58,95,49,15,21,0,285,0,0,0,0,6,8,27,57,41,15,6,6,175,0,0,4,0,0,0,3,14,7,10,8,0,48,3,6,24,13,21
LGA45340,7,12,0,14,9,23,31,5,3,4,0,20,125,42,39,29,23,13,25,14,8,0,0,5,18,215,163,231,133,101,66,100,77,9,4,4,0,48,942,185,476,206,132,84,171,123,13,3,5,7,55,1459,38,79,216,207,170,412,352,36,3,7,5,52,1569,21,43,240,123,62,154,124,26,0,0,4,27,827,24,66,112,212,176,488,485,64,10,0,9,48,1695,18,28,87,135,140,467,424,101,10,5,12,25,1444,4,8,35,85,112,377,489,99,7,0,7,23,1250,0,5,26,56,73,278,426,99,6,4,5,17,996,0,4,22,38,64,228,488,185,17,4,13,14,1074,0,3,9,6,15,116,240,104,18,5,0,7,532,3,6,4,10,9,33,99,87,19,7,0,3,282,3,0,7,0,8,10,35,50,12,0,0,3,124,0,0,0,0,0,0,9,10,0,5,0,0,31,3,19,53,54,49
LGA45400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA45540,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,4,0,17,4,0,11,0,0,0,0,0,0,0,0,0,23,3,0,8,6,0,0,0,0,0,0,0,0,18,0,0,8,0,0,0,0,0,0,0,0,0,10,0,0,6,0,0,0,0,0,0,0,0,4,14,0,0,10,0,0,0,0,0,0,0,0,0,14,0,0,4,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,3,6,0,0,4,0
LGA45680,6,14,5,12,7,15,14,4,0,0,0,18,102,49,49,32,30,9,19,6,0,0,0,3,12,215,167,257,160,124,72,87,28,3,0,5,4,41,953,181,559,192,158,87,111,44,4,0,0,12,50,1401,26,63,166,191,197,278,128,8,0,3,11,27,1101,15,31,276,160,100,129,67,0,0,0,0,20,798,11,51,153,268,221,383,182,16,4,0,0,30,1316,9,21,107,190,143,313,155,15,4,0,0,14,966,10,13,40,134,167,303,220,19,0,0,0,21,932,4,4,25,55,99,192,162,21,0,0,0,17,578,0,5,15,50,95,185,208,22,4,0,4,14,599,0,0,4,16,48,58,93,20,0,0,0,5,248,0,6,5,12,11,30,34,11,0,0,0,0,114,0,0,4,0,6,4,16,7,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,17,11,13,63,101,103
LGA45890,21,26,22,25,29,40,50,37,3,8,5,35,294,71,71,44,25,15,18,28,14,5,0,0,25,317,256,421,245,117,62,95,73,21,7,3,9,78,1385,291,945,316,157,80,114,84,40,0,3,13,104,2141,34,126,301,223,142,215,210,34,5,5,9,49,1358,17,56,367,145,58,123,102,28,0,3,4,43,944,38,95,171,318,211,375,337,105,8,4,12,48,1725,12,31,124,213,200,383,365,102,10,6,3,40,1484,12,29,72,140,163,380,433,148,13,0,3,26,1422,4,3,52,91,107,246,346,122,15,6,8,22,1020,7,9,23,74,78,240,493,244,19,8,11,18,1222,0,0,14,39,50,108,275,209,23,5,5,18,749,5,4,5,16,20,50,139,132,25,7,5,11,426,0,3,5,9,11,28,61,52,9,3,0,4,186,0,0,6,0,4,6,17,18,9,0,3,0,66,20,43,72,88,70
LGA46090,3,4,3,7,0,0,0,0,0,0,0,0,15,9,9,6,3,4,0,0,0,0,0,0,6,35,27,36,43,32,6,0,0,0,0,0,0,5,151,39,80,53,31,11,4,0,0,0,0,0,11,233,9,10,66,53,21,6,6,0,0,0,0,9,181,3,7,28,37,3,5,4,0,0,0,0,6,97,9,5,34,76,14,17,4,0,0,5,0,8,177,5,0,29,55,27,17,4,0,0,0,0,7,149,0,9,29,52,18,15,11,0,0,3,3,4,150,0,8,18,35,15,19,14,0,0,0,0,9,118,0,0,19,41,20,27,10,10,3,0,3,9,149,0,3,28,15,11,10,7,0,0,0,0,0,73,0,0,3,10,4,11,9,0,0,0,0,8,43,0,0,0,9,0,0,5,13,0,0,0,0,35,0,0,0,4,0,0,6,0,0,0,0,5,7,3,3,23,30,16
LGA46300,5,9,3,0,0,0,0,0,0,0,0,0,16,0,10,3,3,3,4,3,0,0,0,0,0,36,24,36,29,27,5,5,0,0,0,0,0,12,145,38,75,34,48,5,10,7,3,0,0,0,11,239,5,18,43,85,30,29,11,4,0,0,0,6,232,4,7,43,27,6,8,7,0,0,0,0,3,101,4,5,39,79,29,33,26,4,0,0,5,6,231,0,11,24,54,29,35,21,0,0,0,0,10,185,0,5,15,34,22,43,31,5,0,0,0,6,163,5,0,15,21,13,32,34,10,0,0,0,0,129,0,0,11,21,20,24,37,8,0,0,0,3,138,0,3,9,8,5,14,31,10,0,0,0,0,83,6,0,4,5,3,7,19,15,0,0,0,6,58,0,0,0,0,3,3,9,3,0,0,0,0,27,0,0,0,0,0,5,4,0,0,0,0,0,3,3,0,20,26,13
LGA46450,0,0,0,9,0,0,0,0,0,0,0,8,17,11,14,13,21,9,0,0,0,0,0,0,5,69,35,55,53,42,6,7,0,0,0,0,0,19,218,66,155,84,64,14,13,4,0,0,0,3,16,426,8,23,73,99,22,13,8,3,0,0,0,8,251,4,6,73,58,11,6,3,0,0,0,0,8,174,6,11,53,77,21,15,5,0,0,0,0,9,197,4,6,34,60,14,11,5,3,0,0,3,3,141,5,4,13,58,28,20,9,0,0,0,0,3,138,0,4,12,39,17,16,8,0,0,0,3,3,97,3,0,13,34,11,12,12,0,0,0,0,0,84,0,0,8,15,12,11,3,0,0,0,0,0,46,0,0,8,9,4,10,11,3,0,0,0,0,43,0,0,0,0,0,4,3,0,0,0,0,0,18,0,0,0,3,0,0,0,3,0,0,0,0,9,0,0,15,35,8
LGA46510,0,0,0,0,5,9,12,11,7,0,0,5,47,7,7,3,6,0,3,4,3,0,0,0,0,29,21,17,6,19,5,18,12,8,0,0,0,4,117,26,76,31,26,13,14,13,7,0,0,0,14,213,7,10,20,31,19,33,21,8,0,0,0,3,166,0,5,20,10,8,15,12,11,4,0,0,3,79,4,0,16,38,34,67,42,21,4,0,0,5,234,0,0,9,27,32,80,60,27,4,0,0,8,256,0,0,9,27,30,72,78,34,8,0,0,7,259,3,0,5,23,11,56,67,34,8,6,4,6,217,0,0,10,14,19,60,74,65,5,0,6,6,249,0,0,3,5,10,40,56,45,14,4,0,0,170,0,0,0,0,5,13,26,27,17,3,5,5,95,0,0,0,5,0,3,13,28,9,3,0,0,69,0,0,0,0,0,0,4,12,6,3,0,0,31,0,5,6,7,7
LGA46670,0,0,9,4,3,0,0,0,0,0,0,0,18,3,5,5,3,0,0,0,0,0,0,0,0,17,11,20,31,14,0,0,0,0,0,0,0,0,81,16,56,31,35,8,0,0,0,0,0,0,0,148,6,16,32,47,3,6,0,0,0,0,0,0,116,0,3,21,21,9,3,0,0,0,0,0,0,58,4,7,37,56,7,4,3,0,0,0,0,5,132,9,3,29,43,3,3,0,0,0,0,0,4,103,9,4,17,35,16,4,0,0,0,0,0,3,87,0,0,9,20,0,6,5,0,0,0,0,0,51,0,3,15,18,5,3,3,0,0,0,0,0,52,0,0,9,10,4,0,5,0,0,0,0,0,31,0,0,3,3,6,5,0,0,0,0,0,0,28,0,0,0,8,0,0,7,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,11,23,4
LGA46860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,8,0,3,0,0,0,0,0,0,0,0,0,0,11,0,0,9,5,0,0,0,0,0,0,0,0,17,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,5,5,0,0,0,0,0,0,0,15,0,0,3,3,0,0,0,0,0,0,4,0,15,0,0,0,4,3,3,0,0,0,0,0,0,14,0,0,0,4,4,3,0,0,0,0,0,3,16,0,0,6,0,6,0,0,0,0,0,3,0,8,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,4
LGA46970,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,5,0,0,3,0,11,0,0,5,10,0,0,5,4,4,0,0,0,29,0,0,8,7,0,0,7,9,7,0,0,11,54,0,3,19,28,4,3,7,17,22,17,3,6,127,0,0,8,8,6,0,11,22,7,5,0,0,78,4,9,63,53,4,11,15,32,24,3,5,11,246,0,0,47,32,4,5,4,29,22,8,3,8,155,0,0,19,15,0,0,5,14,12,6,3,5,83,0,0,14,12,0
LGA47140,4,6,18,9,10,19,33,9,3,0,0,25,146,33,37,19,28,11,23,28,11,0,0,0,25,210,160,236,128,85,62,86,60,5,5,4,6,48,882,197,421,181,134,83,138,87,15,0,0,8,55,1327,32,70,179,204,165,293,255,21,7,0,4,47,1260,13,34,251,133,91,135,100,11,3,0,7,26,798,14,51,128,244,193,399,328,38,9,6,6,41,1449,14,20,97,193,155,397,401,47,10,0,5,27,1363,5,11,51,120,163,387,421,71,8,3,8,24,1267,3,4,20,71,101,241,354,77,8,3,5,26,911,3,5,19,55,94,244,446,134,24,3,8,24,1067,3,0,7,20,37,101,219,86,12,3,3,11,509,5,0,6,8,10,45,112,57,27,0,0,6,277,0,0,3,5,6,17,60,31,16,3,0,6,148,0,0,0,0,0,10,12,10,4,3,0,0,46,12,24,73,83,72
LGA47290,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0,0,0,0,7,4,3,6,4,0,0,0,0,0,0,0,0,16,0,0,7,5,0,0,0,0,0,0,0,0,18,0,0,6,0,0,0,0,0,0,0,0,0,4,0,0,4,6,0,0,0,0,0,0,0,0,14,0,0,5,3,0,0,0,0,0,0,0,5,18,0,4,8,0,0,0,0,0,0,0,0,0,14,0,4,5,0,0,0,0,0,0,0,0,0,11,0,4,7,3,0,0,0,0,0,0,0,0,14,4,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA47490,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,11,4,4,3,0,0,0,0,0,0,0,0,4,20,6,0,9,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,3,4,0,0,0,0,0,0,4,18,0,0,5,4,0,0,0,0,0,0,0,0,10,7,0,0,5,3,0,0,0,0,0,0,7,19,0,0,0,4,3,0,0,0,0,0,0,0,10,7,0,0,5,4,4,0,0,0,0,0,0,20,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,8,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,4,4
LGA47630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,10,10,4,0,0,0,0,0,0,4,28,8,10,19,0,3,0,0,0,0,0,0,0,41,3,9,8,14,3,0,0,0,0,0,0,0,45,0,4,11,4,0,0,0,0,0,0,0,0,19,7,4,26,25,14,4,0,0,0,0,0,3,75,3,4,15,20,3,4,0,4,0,0,0,3,64,3,0,15,23,11,0,0,0,0,0,0,5,62,5,8,14,16,7,0,0,0,0,0,0,6,52,3,0,11,8,9,3,3,0,0,0,0,0,41,0,0,5,6,0,3,5,0,0,0,0,0,25,0,0,0,0,4,5,0,0,0,0,0,4,16,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,15,6
LGA47700,0,4,3,12,4,12,20,0,3,0,0,10,70,13,21,18,3,5,9,3,4,0,0,0,8,83,56,114,43,45,10,27,35,10,0,0,5,21,368,56,225,79,33,15,46,46,6,3,0,3,30,545,13,39,73,71,53,128,144,19,0,0,4,14,551,0,12,103,41,31,52,64,17,0,0,0,11,326,10,19,56,93,79,162,264,26,4,0,0,17,725,10,11,37,46,61,196,223,47,3,0,3,19,657,0,10,18,43,47,199,272,54,4,0,0,14,667,0,0,10,26,43,124,229,60,5,0,0,14,505,0,11,13,14,27,139,298,112,6,0,3,14,630,0,0,0,11,22,56,172,74,11,0,4,5,360,0,0,3,0,14,22,71,54,11,0,0,3,185,0,0,0,0,5,8,45,24,7,3,0,0,93,0,3,5,0,0,0,6,3,0,0,0,0,21,9,8,20,36,28
LGA47800,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,5,3,0,0,0,0,0,0,0,0,6,5,4,16,3,0,0,0,0,0,0,0,0,28,3,11,16,9,3,0,0,0,0,0,0,3,41,4,3,21,18,3,0,0,0,0,0,0,3,48,0,4,12,0,0,0,0,0,0,0,0,0,17,6,9,22,19,4,0,0,0,0,0,0,8,66,10,8,8,9,3,0,0,0,0,0,0,0,30,4,0,16,14,3,0,0,0,0,0,0,4,44,0,3,9,8,4,0,0,0,0,0,0,5,30,3,0,6,4,0,0,0,0,0,0,0,0,26,5,4,3,6,0,0,0,0,0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,14,9,3
LGA47910,0,0,0,0,0,0,0,0,0,0,0,0,6,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,3,5,0,0,0,0,0,0,0,0,16,0,14,7,4,3,0,0,0,0,0,0,0,24,0,0,9,16,0,3,0,0,0,0,0,0,41,0,7,6,7,7,5,0,0,0,0,0,5,25,4,3,8,5,8,3,0,0,0,0,0,5,23,0,0,0,0,3,3,0,0,0,0,0,3,12,0,0,0,6,0,5,0,0,0,0,0,0,14,0,0,4,6,0,4,4,0,0,0,0,3,14,0,0,0,9,4,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA47980,3,0,5,3,3,15,25,19,10,3,4,6,96,17,6,13,5,3,10,10,3,3,0,0,7,74,31,61,22,24,17,25,11,4,0,0,0,8,202,22,106,21,41,17,28,30,9,0,0,6,15,301,4,36,45,71,34,68,49,24,0,4,3,13,356,0,5,17,11,12,41,23,14,4,0,6,3,126,9,10,22,47,63,86,97,37,11,5,4,9,409,3,0,24,30,31,105,99,42,10,4,6,11,372,0,11,13,37,35,114,130,69,13,6,3,8,442,0,0,4,26,39,76,106,61,20,4,0,7,349,0,0,12,7,24,82,160,117,43,13,12,9,477,0,4,5,6,16,34,101,74,26,8,3,3,275,0,0,3,6,7,21,71,94,48,33,29,3,320,0,0,0,4,6,19,29,59,43,13,20,0,183,0,0,0,0,0,4,10,18,23,9,14,0,84,0,3,6,9,18
LGA48050,0,0,0,0,3,3,3,0,0,0,0,10,21,0,0,6,6,4,0,0,0,0,0,0,0,17,0,6,16,19,8,15,5,0,0,0,0,0,69,4,22,21,39,17,17,9,0,0,0,0,5,132,3,6,30,44,35,42,14,0,0,0,0,5,187,0,0,15,10,12,20,7,0,0,0,0,0,83,0,6,11,33,48,59,21,0,0,0,0,0,181,3,0,7,25,21,48,18,0,0,0,3,3,129,0,0,4,21,15,44,26,5,0,0,0,0,119,0,5,0,9,9,27,33,0,0,0,0,4,91,0,0,0,3,12,19,29,0,0,0,0,0,72,0,0,0,0,0,8,4,0,0,0,0,0,18,0,3,0,0,0,10,6,7,0,0,0,0,20,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,7,15
LGA48130,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,9,9,7,10,0,0,0,0,0,0,0,0,41,11,9,19,11,3,0,0,0,0,0,3,5,66,3,3,13,23,7,4,0,0,0,0,0,5,50,6,0,4,11,8,7,0,0,0,0,0,0,38,0,3,10,23,7,8,0,0,0,0,0,8,60,4,4,11,24,8,7,0,0,0,0,0,0,54,0,0,10,32,6,0,0,0,0,0,0,0,55,4,0,5,7,7,4,0,0,0,0,0,0,29,8,0,7,16,5,12,0,0,0,0,0,0,43,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,10,3
LGA48260,0,0,3,0,0,0,3,4,0,0,0,0,14,10,0,3,0,0,3,3,4,0,0,0,0,22,21,16,6,0,0,0,7,0,0,0,0,0,50,20,36,14,8,3,4,3,0,0,0,0,3,95,3,3,9,3,0,0,10,4,0,0,0,0,41,0,0,7,0,0,0,3,0,0,0,0,0,11,4,4,7,8,9,12,16,5,0,3,0,4,65,0,0,0,9,0,3,17,0,0,0,4,3,46,0,0,7,3,3,15,12,9,0,0,0,0,56,0,0,0,0,0,8,15,5,0,0,0,0,46,0,0,0,8,0,6,20,15,6,4,0,0,69,0,0,0,0,0,5,13,7,0,4,3,0,36,0,0,0,4,0,0,4,17,11,3,12,0,53,0,0,0,0,0,3,3,4,9,4,4,0,30,0,0,0,0,0,0,0,4,0,4,0,0,12,3,0,0,0,4
LGA48340,0,0,0,5,0,0,0,0,0,0,0,0,5,8,3,7,0,0,0,0,0,0,0,0,0,16,22,9,35,16,3,0,0,3,0,0,0,8,95,3,49,55,26,5,0,0,0,0,0,0,3,147,5,11,44,46,8,3,0,0,0,0,0,3,117,0,4,33,12,0,0,0,0,0,0,0,0,58,4,9,49,33,13,4,0,0,0,0,0,6,116,6,8,29,32,9,0,0,0,0,0,0,4,82,4,4,23,13,11,8,0,0,0,0,0,0,71,0,3,18,17,9,0,0,0,0,0,0,5,47,3,4,17,12,5,3,0,0,0,0,0,0,53,7,0,7,7,8,5,0,0,0,0,0,0,31,6,4,0,0,5,0,3,0,0,0,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,14,20,7
LGA48410,12,9,20,22,16,32,37,29,6,3,4,18,207,27,22,19,10,7,13,12,8,3,0,0,6,122,79,104,76,64,47,58,43,21,0,0,0,28,527,132,245,104,73,58,69,42,14,5,0,6,30,779,22,41,111,142,83,124,97,26,7,0,0,26,682,14,16,70,54,28,68,43,23,4,0,0,20,321,13,25,98,159,140,194,157,52,10,6,5,19,871,9,12,64,112,108,213,200,74,10,6,3,17,824,3,11,28,89,81,219,237,106,14,0,6,13,801,0,4,16,39,68,147,189,92,8,4,5,19,584,0,0,12,50,65,147,309,166,23,7,0,10,789,0,0,5,28,32,69,175,133,20,3,3,15,480,0,0,4,7,13,27,55,77,19,4,3,3,216,0,0,0,0,3,14,38,65,20,5,5,0,154,0,0,0,0,0,4,11,12,14,6,0,0,42,5,19,29,42,34
LGA48540,3,3,3,11,3,0,7,0,0,0,0,7,38,31,28,17,9,0,3,0,0,0,0,0,7,104,101,127,90,58,9,3,4,0,0,0,3,31,434,48,274,109,59,12,9,9,0,0,0,0,23,552,10,35,87,82,16,21,9,0,0,0,0,6,286,11,8,129,65,8,12,7,0,0,0,0,14,247,15,33,64,152,24,20,7,4,3,0,0,9,326,6,8,52,105,23,21,12,3,0,0,0,11,243,0,3,36,110,18,31,20,4,0,0,0,3,235,5,6,23,75,25,24,22,0,0,0,0,6,185,0,8,19,94,27,23,38,15,3,0,3,5,240,0,0,16,27,17,17,29,8,0,0,0,0,113,0,0,7,24,11,11,43,25,10,0,3,11,149,0,0,7,11,0,6,17,7,3,0,0,5,45,0,4,0,0,0,0,0,6,0,0,0,4,24,12,6,33,57,16
LGA48640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,4,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,4,0,0,0,0,0,0,0,0,0,8,0,3,6,0,0,0,0,0,0,0,0,0,12,0,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,3,0,0,0,0,0,0,0,6,3,0,3,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0
LGA48750,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,3,11,5,8,3,0,0,0,0,0,31,4,0,7,15,11,7,0,0,0,0,0,0,44,0,7,4,21,13,13,4,0,0,0,0,0,56,0,3,8,4,6,6,0,0,0,0,0,0,20,0,0,4,19,14,12,5,0,0,0,0,3,56,0,0,3,9,8,10,6,0,0,0,0,5,36,3,0,4,5,5,11,5,0,0,0,0,5,29,0,0,0,5,6,6,6,0,0,0,0,0,26,4,0,0,3,3,4,4,0,0,0,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6
LGA48830,0,3,0,0,3,0,0,0,0,0,0,0,12,4,0,5,5,0,0,0,0,0,0,0,6,21,17,9,15,7,5,0,0,0,0,0,0,6,62,27,24,26,26,12,0,0,0,0,0,0,6,127,8,4,25,29,9,15,0,0,0,0,0,3,103,4,4,18,19,8,0,0,0,0,0,0,4,58,3,8,20,39,10,3,0,0,0,0,0,5,91,10,3,12,30,15,15,0,4,0,0,0,8,90,0,6,15,14,12,10,0,0,0,0,0,4,67,0,0,13,18,11,0,0,0,0,0,0,0,43,0,4,6,16,8,9,0,0,0,0,0,4,54,0,0,0,9,3,9,0,0,0,0,0,0,24,0,0,0,8,0,3,5,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,4,8,0,4,8,14,7
LGA49399,4,0,3,0,0,0,0,0,0,0,0,0,6,7,4,0,0,0,0,0,0,0,0,0,0,9,14,0,3,0,0,0,0,0,0,0,0,0,28,14,6,8,0,0,0,0,0,0,0,0,3,29,13,0,8,4,0,0,4,0,0,0,0,4,33,12,0,0,0,0,0,0,0,0,0,0,0,17,33,7,3,5,0,0,0,0,0,0,0,3,61,17,3,12,6,0,0,0,0,0,0,0,3,40,23,3,8,8,0,0,3,0,0,0,0,14,59,30,9,9,0,3,0,4,0,0,0,0,10,64,63,8,9,7,3,3,0,0,0,0,3,19,113,22,0,0,8,0,0,0,0,0,0,4,0,42,51,4,3,4,3,0,0,5,0,5,3,13,86,35,5,0,7,6,3,0,0,0,0,4,0,55,5,0,0,0,0,4,0,0,0,0,0,0,11,23,6,7,3,0
LGA49499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA49799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA50080,5,0,3,0,0,14,7,3,0,0,0,10,44,7,9,7,5,0,3,0,3,0,0,0,3,40,23,30,45,35,16,14,10,0,0,0,0,15,181,52,86,89,47,23,37,26,9,0,0,0,19,383,3,30,79,69,44,73,59,11,0,0,3,19,389,5,7,54,32,21,27,20,0,0,0,0,0,169,4,18,53,66,43,88,65,23,0,0,5,11,381,0,6,32,38,46,100,104,20,0,0,0,11,373,4,5,31,41,35,106,115,24,6,0,0,11,376,0,0,13,30,28,70,94,28,3,0,3,15,290,0,6,15,22,22,88,123,57,0,0,5,7,343,0,4,3,13,15,25,65,34,5,0,0,5,173,3,4,0,14,4,14,33,33,0,0,0,6,110,0,0,0,0,4,14,20,26,0,0,0,0,79,0,0,4,3,0,0,6,7,3,0,0,0,24,0,8,29,26,24
LGA50210,0,5,4,4,0,11,16,0,0,0,0,10,48,5,14,6,10,0,6,20,4,0,0,0,3,61,33,46,35,35,15,24,40,6,4,0,0,17,253,38,86,61,41,26,53,90,11,7,0,0,17,431,17,13,50,45,24,95,150,34,7,0,0,9,450,6,3,43,25,22,32,42,8,0,0,3,11,189,3,13,27,43,39,102,209,49,7,0,0,16,514,5,9,27,35,27,85,233,54,8,0,9,15,505,6,0,13,23,30,85,237,74,17,0,0,11,497,0,5,9,19,22,67,192,47,17,0,0,12,385,4,0,11,11,22,64,228,128,29,5,0,7,498,0,0,7,7,15,29,136,60,23,5,0,3,281,4,0,6,0,0,18,65,53,30,7,3,3,198,0,0,3,0,8,10,34,36,23,5,0,4,118,0,0,0,0,0,0,9,5,11,0,5,0,47,6,5,18,22,16
LGA50250,3,0,0,0,0,3,0,0,0,0,0,3,15,5,0,0,0,0,0,0,0,0,0,0,0,4,4,4,0,0,0,0,0,0,0,0,0,3,16,11,0,0,0,0,0,0,0,0,0,0,0,12,12,6,4,0,0,0,0,0,0,0,0,3,23,3,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,4,0,0,0,0,0,4,20,5,0,3,0,0,4,0,0,0,0,9,13,40,20,4,3,3,6,0,0,4,0,0,3,8,56,23,5,6,0,0,0,0,0,4,0,0,8,58,89,8,9,0,4,0,4,0,0,0,0,16,140,38,5,9,4,0,0,4,0,0,0,3,7,76,348,16,16,7,8,3,0,5,0,0,5,37,438,221,24,12,3,3,5,0,4,0,0,3,19,296,143,4,6,6,0,0,0,0,3,0,0,9,173,112,8,7,0,5
LGA50280,0,0,0,0,0,3,5,3,0,0,0,3,23,0,0,0,0,5,0,0,0,0,0,0,0,13,5,3,6,6,4,5,7,3,0,0,0,8,43,4,7,13,9,7,12,14,0,0,0,0,5,82,0,10,24,22,8,14,33,3,0,6,0,4,129,4,0,8,3,0,7,15,0,0,0,0,0,39,0,0,5,20,19,34,44,9,0,0,0,9,142,0,0,8,15,20,25,47,13,0,0,0,5,134,0,0,11,8,17,29,40,26,3,0,0,11,146,0,0,6,14,9,19,43,13,0,0,0,7,107,0,4,8,15,9,21,46,24,0,0,3,12,137,0,0,7,6,4,9,32,15,5,0,0,7,86,0,0,0,0,0,0,22,18,0,0,5,3,58,0,0,0,4,0,4,12,16,0,0,5,0,43,0,0,0,0,0,0,0,0,0,0,4,0,10,0,0,7,13,10
LGA50350,5,0,4,0,0,0,7,0,0,0,0,5,27,4,3,4,0,0,0,3,0,0,0,0,0,20,15,24,15,4,0,3,4,0,0,0,0,9,81,19,40,24,15,9,9,7,5,0,0,0,4,135,11,10,18,13,6,19,40,13,0,0,0,13,140,0,0,18,16,5,3,11,4,0,0,0,5,59,0,3,18,15,14,9,44,14,3,0,0,9,122,0,3,14,11,10,18,45,25,0,0,0,7,141,0,0,7,12,11,22,38,35,4,0,0,0,131,0,4,3,4,9,10,52,38,0,0,0,3,132,0,0,0,8,0,9,61,58,7,0,0,8,157,0,6,0,6,0,3,41,53,11,0,5,0,116,0,0,3,0,0,3,18,27,3,3,0,0,60,0,0,0,0,0,0,14,36,10,0,0,3,63,0,0,0,0,0,0,3,14,3,0,0,0,21,0,0,6,3,6
LGA50420,5,5,7,9,5,17,37,22,10,3,0,15,140,15,11,3,12,5,8,14,5,4,0,0,0,79,51,78,36,48,33,46,50,30,4,0,0,15,389,74,127,63,66,26,30,54,39,3,4,8,29,510,20,38,54,79,42,93,112,66,11,0,4,16,546,4,3,51,23,18,39,45,29,3,0,0,13,228,14,13,43,82,61,118,213,95,10,3,4,14,674,4,5,32,64,55,142,247,132,25,7,5,12,726,4,5,18,62,46,136,256,189,28,3,6,14,763,0,0,7,33,32,93,236,173,17,0,3,12,611,7,0,9,29,35,95,302,301,45,14,5,11,859,0,0,13,15,18,31,184,232,51,12,5,9,572,4,0,0,15,13,25,119,225,64,21,9,11,511,0,0,0,5,13,8,44,128,68,13,9,3,292,0,0,0,0,0,6,16,46,17,14,15,5,123,5,3,23,24,20
LGA50490,6,5,3,12,0,10,20,18,11,4,0,10,102,17,11,8,4,0,7,10,5,0,0,0,3,72,48,87,37,21,3,16,22,11,0,0,3,15,273,98,173,59,24,13,21,30,13,4,0,4,15,449,7,28,50,35,30,33,63,31,10,0,0,10,304,0,4,82,34,11,16,26,22,0,0,0,8,199,13,25,31,51,40,53,110,69,6,0,4,8,410,5,0,15,37,19,66,142,81,19,0,0,7,400,5,3,19,32,29,81,145,100,20,4,4,11,438,4,5,6,8,22,53,136,113,22,7,4,4,387,6,3,9,24,15,47,181,212,51,6,6,14,579,0,0,9,11,14,18,76,161,40,11,5,3,346,0,3,5,5,6,28,87,128,66,25,9,9,370,0,0,3,0,4,5,45,93,58,15,4,3,244,0,0,3,0,0,3,9,37,29,9,9,3,100,3,13,16,27,19
LGA50560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,14,0,0,0,4,3,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,7,0,4,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA50630,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,5,0,0,0,0,7,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,3,0,0,0,3,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,14,0,0,0,5,0,0,3,4,0,0,0,0,14,0,0,0,0,0,0,4,0,4,0,0,0,18,0,0,3,6,0,0,5,10,9,0,0,7,36,0,0,0,0,0,0,4,5,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0
LGA50770,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,9,0,4,0,5,0,0,0,0,0,0,0,5,15,0,0,0,0,4,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,10,0,0,6,0,4,0,0,0,0,0,0,0,7,0,0,5,5,0,0,0,0,0,0,0,0,8,5,0,0,0,4,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA50840,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9,0,3,3,9,0,0,3,0,0,0,0,3,25,7,9,9,7,4,0,0,0,0,0,0,0,46,0,3,13,9,6,4,0,0,0,0,0,0,34,0,0,7,3,0,4,0,0,0,0,0,4,16,0,0,8,15,3,9,0,0,0,0,0,0,38,0,0,3,5,7,8,4,0,0,0,0,0,37,0,0,0,6,9,9,0,0,0,0,0,4,32,0,0,3,4,4,7,3,0,0,0,0,0,21,0,4,3,4,6,7,8,0,0,0,0,0,32,0,0,0,0,0,7,0,0,0,0,0,0,11,0,0,0,0,6,3,3,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,3,3
LGA50910,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,3,4,0,0,0,0,0,0,0,0,16,0,3,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,4,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,3,0,0,0,0,0,0,0,3,0,0,0,7,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0
LGA50980,4,4,7,3,0,0,3,0,3,4,0,10,35,13,7,5,0,0,0,0,0,0,0,0,5,28,44,27,18,9,3,0,8,3,0,0,0,11,123,29,38,18,19,6,6,5,0,0,0,0,8,128,15,15,17,6,10,6,7,10,0,0,0,10,87,28,15,16,3,3,3,3,6,3,0,3,12,103,30,14,18,17,7,19,11,16,13,0,5,18,165,26,13,26,24,12,23,16,15,11,4,14,7,187,21,10,17,20,23,13,15,25,9,8,15,13,191,27,7,26,32,13,8,16,15,18,7,14,11,191,24,19,27,41,10,15,22,38,28,29,34,19,306,14,13,26,29,12,10,14,33,27,29,38,16,249,7,7,26,60,7,19,8,15,23,23,60,21,286,6,9,16,39,10,3,3,15,16,23,54,19,207,3,5,4,6,5,5,3,3,5,10,37,3,91,12,14,20,41,11
LGA51080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,13,0,0,5,0,0,0,0,0,0,0,0,0,3,4,0,5,4,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,5,3,0,0,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3
LGA51120,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,4,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,6,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,5,0
LGA51190,0,0,3,3,0,5,7,3,0,0,0,10,46,7,11,10,10,4,8,4,0,0,0,0,0,54,46,54,36,29,15,35,21,0,0,0,0,18,250,59,78,58,49,27,34,38,3,0,0,4,17,362,5,24,56,85,61,101,78,7,0,0,0,12,442,3,7,64,20,10,27,15,7,0,0,0,7,162,3,13,26,67,56,132,115,27,0,0,7,12,453,8,4,22,38,55,123,100,14,0,0,0,6,370,0,0,12,26,55,118,160,23,4,0,5,10,410,3,0,10,25,41,80,135,30,9,4,7,3,344,0,6,10,22,34,113,164,60,7,9,0,8,450,0,0,9,9,15,56,84,41,11,4,0,3,221,0,0,6,3,9,37,84,63,35,25,18,10,284,0,0,3,4,4,23,56,38,17,7,6,0,163,0,0,0,0,0,6,16,16,7,3,0,0,57,0,7,25,20,18
LGA51260,0,0,0,4,3,6,5,7,0,0,0,3,38,3,3,0,0,0,5,6,0,0,0,0,0,31,10,26,28,24,7,23,20,11,0,0,0,4,158,33,54,32,26,23,37,35,7,0,0,7,8,265,0,21,67,36,26,72,81,5,0,0,0,10,333,3,6,48,15,7,25,42,12,0,0,4,3,168,4,5,38,41,36,59,128,16,3,0,0,7,340,3,0,28,26,34,72,100,33,4,0,0,14,316,0,0,21,20,14,56,113,42,6,0,0,11,278,4,0,9,10,15,46,146,45,3,3,0,10,294,3,5,15,18,17,67,149,90,3,0,6,13,378,0,0,7,5,10,24,71,55,6,0,0,12,180,0,0,3,0,0,7,51,53,10,0,0,6,147,0,0,0,5,3,10,24,36,4,0,3,0,88,0,0,0,0,0,0,4,11,3,0,5,0,26,0,5,14,24,19
LGA51310,0,0,0,0,3,0,10,4,0,0,6,6,33,0,0,4,0,0,3,0,0,0,0,0,0,15,0,6,4,8,3,12,0,3,0,3,8,3,46,5,9,3,12,0,7,4,10,3,0,0,6,56,6,0,5,8,8,15,15,8,0,0,0,4,69,0,0,0,4,3,3,3,3,5,0,0,0,32,0,0,4,4,8,23,17,14,6,3,0,3,93,0,0,3,10,13,34,32,19,11,3,3,0,138,0,0,4,4,7,24,45,26,9,7,6,0,139,0,0,5,5,4,24,34,33,11,7,3,0,121,0,0,0,4,7,33,46,53,37,8,16,3,203,0,0,0,0,6,14,25,38,37,10,17,7,155,0,0,0,3,4,9,33,47,61,40,118,3,316,0,0,0,6,5,8,14,35,42,33,59,0,196,0,0,0,0,0,4,3,22,28,22,57,4,136,0,0,0,3,5
LGA51330,9,4,22,20,4,12,42,80,44,13,15,25,280,21,12,12,11,0,4,14,22,8,3,0,14,128,57,113,49,20,12,21,48,48,13,0,14,25,422,90,169,49,34,16,25,55,55,14,3,7,26,546,11,38,59,51,27,47,118,76,9,5,4,14,459,6,8,69,27,15,26,48,49,10,0,3,15,271,12,22,56,65,35,60,174,160,35,4,3,25,647,0,6,46,36,31,72,216,228,31,6,8,16,705,6,5,29,44,33,68,247,278,45,7,9,13,788,0,3,20,17,20,39,197,291,47,11,10,16,672,8,5,19,24,22,52,260,425,77,8,10,26,931,0,0,14,14,14,55,150,313,70,11,11,14,665,3,0,12,8,12,24,109,248,78,21,21,8,554,5,0,8,7,4,11,48,147,81,20,14,8,350,0,0,5,5,0,3,23,56,35,11,17,8,152,3,7,35,28,28
LGA51400,0,0,3,0,0,0,0,5,0,0,0,0,5,0,3,0,0,0,0,0,0,0,0,0,0,8,3,6,3,0,0,3,4,3,0,0,0,4,30,4,18,21,4,4,5,6,3,0,0,0,0,66,0,9,11,7,4,15,10,0,0,0,0,0,57,0,0,15,0,3,3,0,0,0,0,0,0,23,0,3,8,9,7,10,23,12,0,0,0,5,79,0,0,10,10,0,8,24,12,0,0,0,5,69,0,0,3,7,0,5,22,17,0,0,0,0,73,0,0,0,0,5,4,27,34,4,0,3,3,83,0,0,0,3,3,5,42,58,4,3,0,5,123,0,0,3,6,5,5,16,40,3,0,0,0,76,0,0,0,4,0,3,24,57,9,0,4,0,103,0,0,0,0,0,4,15,29,3,0,0,0,56,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,5,3,3
LGA51470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA51540,0,0,0,0,0,0,0,0,0,0,0,4,12,0,3,0,0,0,0,7,0,0,0,0,0,11,11,7,10,0,0,3,0,0,0,0,0,3,36,3,14,15,12,0,6,4,0,0,0,5,0,58,4,0,13,10,0,3,0,4,0,0,6,3,46,0,12,19,8,5,4,5,0,0,0,0,3,48,4,7,13,13,13,6,9,0,0,0,0,4,73,3,10,9,13,9,4,10,4,0,0,3,10,70,0,11,8,14,13,7,8,0,4,0,4,10,70,4,4,10,19,5,11,5,4,0,0,9,3,77,3,14,19,20,8,15,8,3,0,0,9,3,92,0,0,6,11,0,4,11,8,0,0,3,0,50,0,3,8,6,0,8,11,3,3,0,6,4,63,0,0,17,6,5,0,3,4,3,0,0,0,45,0,0,3,0,0,0,4,0,5,0,12,5,29,3,4,14,14,11
LGA51610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
LGA51680,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,11,0,0,5,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,5,0,0,0,0,0,4,0,3,5,0,4,0,3,0,0,0,0,0,15,0,0,4,0,0,0,6,3,0,0,0,0,16,0,0,0,0,0,0,7,0,0,0,0,0,9,0,0,0,0,0,4,0,3,0,0,0,3,18,3,0,0,0,3,0,5,5,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,0,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA51710,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,6,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,3,4,3,0,0,0,0,0,0,0,0,0,0,10,4,0,4,0,0,0,0,0,0,0,0,0,16,4,3,0,0,0,0,3,0,6,0,0,0,21,4,5,0,5,5,0,0,0,0,0,0,0,16,5,5,5,3,4,0,0,0,0,0,0,0,36,6,0,0,0,0,0,4,3,0,0,0,6,27,5,0,0,0,0,0,0,0,3,0,0,8,26,14,0,0,0,0,0,0,0,0,0,6,6,29,3,0,0,0,0,0,0,0,0,0,0,5,9,6,0,0,3,0
LGA51750,0,0,0,0,0,3,0,4,4,0,0,0,16,3,0,0,0,0,0,5,4,4,0,0,0,25,3,3,0,6,0,7,7,6,0,0,0,0,38,0,5,3,3,0,4,0,3,0,0,4,0,36,6,0,10,8,4,11,13,6,6,0,0,3,60,0,0,3,3,0,0,5,4,4,0,0,0,14,0,0,3,5,3,11,9,9,6,3,3,0,55,0,0,8,5,4,6,9,21,6,3,3,0,62,0,0,0,6,0,10,15,19,7,0,7,4,67,0,0,0,0,0,5,13,17,7,0,0,0,51,0,0,0,9,3,5,16,33,22,7,11,4,111,0,0,0,0,0,4,10,22,20,6,3,0,70,4,0,5,0,4,0,6,23,20,19,65,0,152,0,0,0,0,0,0,4,18,13,17,17,9,81,0,0,0,0,0,0,3,7,9,3,36,0,53,0,0,0,3,0
LGA51820,0,4,4,11,7,6,14,22,6,0,0,10,95,10,20,15,0,3,6,5,11,3,0,0,3,87,52,74,61,24,11,17,25,30,3,3,4,24,328,90,163,64,38,25,27,39,24,0,0,3,23,498,7,36,84,65,30,56,111,105,12,0,7,8,507,4,11,67,37,19,18,35,32,14,0,0,16,247,8,13,52,56,31,70,138,144,17,5,7,20,557,9,9,32,43,37,66,153,156,23,6,3,14,547,0,8,9,29,22,71,205,227,26,0,8,12,620,0,0,12,25,20,38,136,245,36,0,6,14,536,0,0,8,19,26,62,204,392,88,8,6,16,847,0,0,7,10,23,37,116,321,69,7,12,15,607,0,0,5,9,8,26,62,244,118,23,27,18,534,6,0,5,5,9,9,34,154,81,18,15,3,335,0,0,6,4,3,7,11,58,28,13,12,10,142,5,12,26,38,9
LGA51860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,12,0,0,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,4,8,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,4,12,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,12,7,0
LGA51890,0,0,3,0,0,4,0,0,0,0,0,0,9,0,0,0,0,0,3,0,0,0,0,0,0,6,7,14,11,9,8,0,0,0,0,0,0,0,42,11,26,8,11,3,4,0,0,0,0,0,0,71,0,3,7,4,15,9,10,0,0,0,0,0,48,0,0,15,12,8,4,0,0,0,0,0,0,38,0,3,4,17,4,12,0,0,0,0,0,3,47,5,3,4,11,7,11,8,0,0,0,0,0,46,0,0,4,8,0,9,15,3,0,0,0,0,42,0,0,4,6,4,13,3,0,0,0,0,0,34,0,0,12,16,10,22,9,4,0,0,0,0,84,0,0,3,3,3,8,5,0,0,0,0,0,26,0,3,4,13,3,19,12,16,0,0,0,3,70,0,0,0,5,4,7,5,5,3,0,0,0,20,0,0,0,0,5,3,4,3,0,0,0,0,19,0,0,4,7,4
LGA51960,0,0,0,0,0,0,0,0,5,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,5,0,0,0,0,0,0,0,22,8,4,4,4,4,0,0,0,0,0,0,4,25,4,0,0,8,5,0,0,0,0,0,0,0,21,0,0,0,4,0,0,0,0,0,0,0,0,10,8,0,7,4,5,0,0,0,0,0,0,0,30,0,4,0,4,5,0,0,0,0,0,0,0,20,0,0,7,7,4,5,0,0,0,0,0,0,32,0,4,5,5,7,9,8,0,0,0,0,0,36,0,3,8,23,9,15,3,0,0,0,3,0,78,0,4,7,0,4,11,0,0,0,0,0,0,28,0,3,4,12,15,31,13,0,0,0,0,10,90,0,0,3,8,4,10,6,0,0,0,0,0,30,0,0,0,3,0,3,0,0,0,0,0,0,16,0,0,0,8,5
LGA52030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,4,0,0,0,0,0,0,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,5,4,0,0,0,0,0,0,4,10,0,0,0,3,3,0,0,0,0,0,0,0,8,0,0,0,4,0,0,3,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
LGA52100,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,8,3,10,0,0,0,0,0,0,0,0,0,0,17,0,0,3,3,0,0,0,0,0,0,0,0,12,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,5,5,0,0,0,0,0,0,0,0,5,0,0,3,3,0,0,0,0,0,0,0,0,12,0,0,8,5,0,0,0,0,0,0,0,0,6,0,0,3,3,0,0,0,0,0,0,0,0,9,4,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,6,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA52170,0,0,0,0,0,0,0,5,3,4,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,8,0,3,0,0,0,0,15,0,12,7,0,0,0,4,0,0,0,0,3,31,0,0,0,4,4,10,3,3,3,0,3,0,28,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,10,8,4,0,5,0,0,31,0,3,0,3,6,4,10,6,6,0,0,0,42,0,0,0,0,0,3,11,12,4,0,3,0,54,0,0,0,0,4,7,10,16,15,3,3,0,63,0,0,0,0,0,5,7,14,24,9,13,5,75,0,0,0,0,0,0,5,14,12,3,6,4,45,0,0,0,0,0,0,14,25,13,21,70,4,157,0,0,0,0,0,0,3,13,22,8,33,4,84,0,0,0,0,4,0,6,4,19,14,51,3,95,0,0,0,0,0
LGA52240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,4,4,0,0,0,0,0,0,0,0,0,8,0,0,9,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,11,0,0,4,4,0,0,0,0,0,0,0,0,5,4,0,3,0,0,0,0,0,0,0,0,0,8,0,0,6,0,0,0,0,0,0,0,0,0,9,0,0,4,4,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA52310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA52380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA52450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,3,0,5,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,6,0,3,3,0,0,0,0,0,0,0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,3,9,3,0,0,4,0,3,0,0,0,0,0,0,13,4,0,0,4,3,0,0,0,0,0,0,0,11,0,0,4,3,0,0,0,0,0,0,0,4,9,0,0,0,3,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0
LGA52520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,6,0,0,9,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,4,6,0,0,0,0,0,0,0,0,8,0,3,5,0,0,0,0,0,0,0,0,0,12,4,0,6,0,0,0,0,0,0,0,0,0,11,0,0,3,3,0,0,0,0,0,0,0,0,11,4,0,4,0,3,0,0,0,0,0,0,0,10,0,0,9,0,0,0,0,0,0,0,0,0,14,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA52590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,0,6,5,4,0,0,0,0,0,0,8,4,0,5,5,7,8,4,0,0,0,0,3,33,0,0,0,0,0,0,3,0,0,0,0,3,13,3,0,4,4,7,4,3,3,0,0,0,4,31,0,0,5,3,6,4,5,0,0,0,0,3,24,0,0,5,4,10,5,5,0,0,0,0,3,34,0,0,0,0,5,8,11,0,0,0,0,0,25,5,0,6,9,13,3,9,0,0,0,0,7,52,0,0,0,6,0,0,8,5,0,0,0,0,17,0,0,5,0,0,0,5,0,0,0,0,3,18,0,0,0,0,0,4,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6
LGA52660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,8,5,3,0,0,0,8,7,0,0,0,0,0,14,0,3,6,7,0,7,6,0,0,0,0,0,33,0,0,0,3,16,21,26,6,0,0,0,3,73,0,0,3,4,6,10,4,0,0,0,0,0,29,0,0,0,3,3,20,28,3,0,0,0,3,64,0,0,5,6,8,13,29,10,0,0,0,0,71,0,0,7,3,3,19,34,15,0,0,0,0,88,0,0,0,3,4,15,38,14,0,0,0,0,72,0,0,5,3,3,21,65,35,0,0,0,9,134,0,0,0,0,0,9,31,25,4,0,0,0,70,0,0,3,4,4,15,28,26,0,0,0,3,82,0,0,0,0,0,4,19,24,0,0,0,0,51,0,0,0,0,0,0,9,13,0,0,0,0,23,0,6,3,3,3
LGA52730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,4,5,6,0,5,3,4,0,0,0,0,27,4,11,17,8,6,7,0,0,0,0,0,0,65,0,6,14,15,20,17,4,0,0,0,0,4,74,0,0,4,5,6,7,4,0,0,0,0,0,23,0,4,9,10,12,20,12,0,0,0,0,0,70,0,0,5,7,7,21,7,6,0,0,0,0,55,0,0,5,6,8,17,13,3,0,0,0,0,50,3,0,0,8,9,7,3,0,0,0,0,0,31,0,0,9,4,5,3,16,0,0,0,3,0,49,0,0,0,3,4,4,5,3,0,0,3,0,29,0,0,0,0,0,4,3,0,0,0,0,0,8,0,0,0,0,0,0,3,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,5,0,3
LGA52800,4,0,0,0,0,0,0,0,0,0,0,0,10,10,3,0,0,0,0,0,0,0,0,0,0,15,37,9,6,0,0,0,0,0,0,0,0,5,61,31,12,9,4,0,0,0,0,0,0,0,0,58,21,0,3,0,0,5,0,0,0,0,0,9,46,61,9,13,3,0,0,0,0,0,0,0,8,101,52,9,9,10,5,0,3,0,0,5,0,4,96,41,4,9,3,0,3,0,4,0,0,5,12,82,53,4,18,12,3,7,7,3,5,0,0,22,137,39,9,14,8,10,4,5,5,0,0,0,7,104,49,6,23,14,8,3,0,5,0,4,5,23,138,26,4,18,7,4,0,0,0,3,0,0,11,78,9,7,16,3,0,0,4,3,0,4,6,17,82,6,8,19,3,8,0,0,0,8,0,5,13,63,0,0,7,0,0,0,0,0,0,0,3,12,29,16,0,16,8,9
LGA52870,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,15,0,5,12,9,4,4,0,0,0,0,0,0,39,0,4,7,10,3,6,5,0,0,0,0,3,40,0,0,7,3,5,5,0,0,0,0,0,0,16,4,5,5,6,4,13,6,0,0,0,0,0,40,4,0,0,0,0,10,4,0,0,0,0,0,24,0,0,5,6,0,6,3,0,0,0,0,0,26,0,0,0,0,4,3,9,3,0,0,0,4,23,0,0,0,0,0,3,7,0,0,0,0,0,26,0,0,0,0,0,3,7,0,0,0,0,0,10,0,0,0,0,0,0,4,4,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0
LGA52940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,12,4,0,0,3,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA53010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA53080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,0,0,0,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,6,0,0,0,0,0,0,0,0,4,6,0,3,0,4,0,0,0,0,0,0,0,0,7,0,5,0,5,0,0,0,0,0,0,0,0,10,4,0,0,3,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,4,13,0,0,5,0,0,0,0,0,0,0,0,0,9,0,0,6,5,0,0,0,0,0,0,0,0,12,0,0,4,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA53150,0,0,0,0,0,4,0,0,3,0,0,0,9,0,0,0,0,0,0,3,0,0,0,0,0,7,0,4,0,0,3,5,4,0,0,0,3,3,18,0,13,7,4,0,0,6,0,6,0,0,6,34,0,0,5,3,3,4,3,7,0,0,0,0,29,0,4,6,0,0,0,0,0,0,0,0,0,11,0,0,3,0,5,0,4,10,4,0,0,0,32,0,4,0,3,0,6,10,10,5,3,0,0,40,0,0,0,5,0,11,17,11,3,0,0,0,42,0,0,0,0,0,4,7,12,10,0,0,3,35,0,0,0,0,0,10,15,28,4,0,11,0,66,0,0,0,0,0,3,5,23,15,5,5,0,58,0,0,0,0,0,3,0,20,16,7,19,0,72,0,0,0,0,0,7,3,18,15,9,16,0,64,0,0,0,0,0,0,0,0,3,3,14,0,20,0,0,0,0,4
LGA53220,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,12,0,0,3,5,0,0,0,0,0,0,0,0,4,4,0,5,0,0,0,0,0,0,0,0,3,20,10,3,8,0,0,0,0,0,0,0,0,0,20,14,0,4,0,0,0,0,0,0,0,0,6,28,9,5,0,5,9,0,0,0,0,0,0,8,36,11,0,9,0,0,0,0,0,0,0,4,7,43,13,7,15,3,0,0,0,3,0,0,0,5,43,28,8,26,9,0,0,3,0,4,0,4,23,104,13,7,22,4,7,0,3,0,0,0,4,11,79,92,17,72,4,10,0,5,0,0,0,17,41,257,53,21,65,3,4,4,0,0,0,0,4,26,180,35,3,41,0,0,0,0,0,0,0,5,16,102,30,14,37,0,7
LGA53290,0,0,6,4,3,0,0,0,0,0,0,4,14,0,3,0,0,0,0,0,0,0,0,0,0,11,5,16,14,4,5,9,0,0,0,0,0,3,52,7,39,32,12,5,8,0,0,0,0,0,8,115,7,9,29,32,18,14,18,0,0,0,6,6,133,0,0,19,19,4,5,8,0,0,0,0,6,62,3,9,28,31,27,21,26,3,0,0,4,8,153,0,3,17,25,20,16,19,9,4,0,0,11,120,4,0,9,20,27,22,20,6,3,0,0,4,128,4,0,20,19,9,24,21,13,0,0,0,3,116,4,7,23,15,18,25,34,24,4,0,0,9,153,6,0,12,10,9,13,19,12,0,0,0,8,96,7,0,5,9,3,6,14,8,9,0,4,9,65,0,0,10,11,3,0,12,6,0,0,0,0,52,0,0,0,0,0,0,3,0,0,0,0,0,9,0,3,15,17,21
LGA53360,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,5,4,4,0,0,0,0,0,0,0,0,0,12,14,6,4,0,0,0,4,0,0,0,0,0,32,0,0,0,0,0,0,3,4,4,0,0,0,21,0,0,4,3,0,0,0,0,0,0,5,0,19,7,0,6,4,4,0,4,9,3,0,3,8,46,0,3,4,0,6,4,0,4,0,0,5,3,33,0,0,4,0,4,3,4,3,8,0,9,3,43,0,6,0,3,3,3,8,12,0,0,3,0,50,0,3,3,4,0,3,8,9,3,0,11,0,51,0,3,6,7,5,4,7,5,6,0,8,8,49,0,0,9,3,0,6,8,4,4,4,5,14,64,0,0,5,0,0,4,4,4,4,0,14,0,39,0,0,0,0,0,0,0,0,0,3,12,0,21,0,0,5,0,3
LGA53430,5,4,6,0,0,5,11,6,5,0,3,7,56,20,18,9,6,0,6,0,5,0,0,0,8,78,86,84,49,17,4,7,13,8,0,3,0,16,280,79,184,53,18,10,20,18,15,0,0,4,19,419,6,37,42,31,20,26,44,23,15,3,6,14,266,0,11,37,13,6,9,8,6,3,0,0,8,109,10,18,32,31,20,39,53,42,19,0,6,18,288,3,0,14,23,15,39,65,64,24,4,4,6,258,0,0,6,19,22,29,79,66,32,9,4,10,277,0,0,5,9,9,13,58,67,24,10,5,5,220,5,0,8,13,11,42,91,108,56,24,15,10,387,0,0,0,6,15,10,32,89,50,16,12,4,230,0,3,0,0,5,19,38,87,79,39,57,14,334,0,0,0,0,6,6,26,53,53,29,30,8,205,3,0,0,0,4,0,8,29,30,13,18,4,104,6,7,14,16,18
LGA53570,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,18,3,0,4,4,0,3,5,0,0,0,0,0,19,0,0,5,4,4,4,3,0,0,0,0,0,15,0,0,3,9,0,0,0,0,0,0,0,0,15,0,0,5,5,0,7,0,0,0,0,0,0,15,0,0,0,0,0,5,4,0,0,0,0,3,19,0,4,0,4,8,6,7,6,0,0,0,3,30,0,0,0,9,5,9,6,7,0,0,0,0,31,3,0,0,6,4,3,8,6,0,0,0,0,34,4,0,4,3,0,0,9,9,0,0,0,0,23,0,0,0,0,0,0,0,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0
LGA53640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,10,3,0,4,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,10,0,4,5,3,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0
LGA53710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,0,0,0,0,0,0,0,0,0,6,0,0,5,4,0,0,0,0,0,0,0,0,7,0,0,11,0,0,0,0,0,0,0,0,0,10,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,5,6,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0
LGA53780,3,4,3,11,9,11,35,32,14,3,0,9,137,6,3,13,7,0,4,21,11,3,0,0,5,81,28,58,50,24,16,28,61,26,3,0,0,13,308,42,94,79,41,30,38,80,19,4,0,3,31,471,9,32,87,60,39,67,175,66,11,0,4,16,571,4,5,61,51,20,35,80,32,6,0,0,8,298,21,17,52,67,54,89,230,129,15,4,3,17,695,14,13,33,48,45,83,295,173,14,11,3,22,762,0,4,22,42,40,79,288,195,25,3,7,25,739,4,0,19,24,26,61,245,240,38,3,6,9,681,0,3,13,32,41,75,300,328,64,4,8,8,878,0,3,13,8,20,34,188,257,54,0,3,14,607,0,0,3,5,11,10,102,165,94,11,3,7,425,0,0,8,4,8,16,52,122,70,6,3,8,294,0,0,3,3,0,5,15,35,27,0,0,3,102,7,16,22,33,26
LGA53800,3,0,3,11,4,0,4,4,0,0,0,10,36,3,4,4,16,9,4,5,3,0,0,0,7,50,30,54,44,20,11,21,12,8,0,0,4,12,213,26,94,68,55,31,26,12,8,0,0,0,23,351,11,20,70,72,39,73,36,20,0,0,3,13,350,5,8,52,24,17,16,16,8,0,0,0,11,149,3,7,45,63,40,59,54,21,3,0,3,13,326,10,9,24,52,39,60,73,33,3,0,3,8,317,5,4,22,48,43,78,83,56,3,5,3,15,360,8,0,21,41,25,72,78,59,7,0,5,12,335,4,4,24,59,48,66,127,114,17,0,7,12,474,0,0,9,30,21,39,52,80,15,0,0,4,255,3,0,12,22,20,32,40,87,27,8,4,8,263,0,0,4,12,5,25,17,53,20,3,6,0,153,0,0,0,7,9,0,4,15,13,0,0,0,51,10,8,22,49,42
LGA53920,0,0,0,0,0,0,0,0,0,0,0,5,6,0,4,0,0,0,0,0,0,0,0,0,0,5,22,0,3,0,0,0,0,0,0,0,0,5,30,21,4,0,0,0,0,0,0,0,0,0,0,24,10,0,0,0,0,0,0,0,0,0,0,0,13,50,9,4,3,3,0,0,0,0,0,0,0,71,37,6,5,3,0,0,0,0,0,0,0,4,64,31,5,11,0,4,3,0,0,0,0,0,4,62,40,6,9,0,0,0,0,0,0,0,0,9,61,16,3,7,0,0,0,0,0,0,0,0,0,37,24,0,5,0,4,0,0,0,0,0,0,6,44,11,6,7,0,0,5,4,0,0,0,0,6,34,5,0,4,0,0,0,0,0,0,0,0,5,21,0,0,4,0,0,0,0,0,0,0,0,4,13,6,0,0,0,0,0,0,0,4,0,3,0,7,16,0,6,3,0
LGA53990,0,0,0,6,6,3,3,5,0,0,0,5,25,0,4,4,0,0,0,4,5,0,0,0,0,17,7,13,8,13,7,16,4,3,0,0,0,3,80,9,17,32,22,8,15,8,0,0,0,0,5,119,4,7,20,28,18,29,32,3,0,0,0,0,137,0,4,18,17,10,8,5,0,0,0,0,3,66,0,6,18,28,25,27,36,10,4,0,0,5,152,0,3,8,28,20,28,35,13,0,0,0,4,144,0,0,13,21,21,34,52,19,0,0,0,0,162,0,0,4,17,12,25,38,27,0,0,0,6,137,0,0,8,20,18,37,87,61,0,0,0,7,237,0,0,3,8,10,20,32,38,0,0,0,0,116,9,0,5,11,5,17,49,64,5,0,0,7,163,0,0,0,0,3,11,25,29,4,0,3,0,79,0,0,0,0,0,3,16,4,0,0,0,0,32,0,0,10,14,14
LGA54060,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,5,3,12,0,3,0,5,0,0,0,0,0,0,25,0,4,13,4,3,5,0,0,0,0,0,3,30,0,10,14,3,6,6,0,0,0,0,0,0,37,0,0,7,7,0,0,4,0,0,0,0,3,29,0,3,8,6,0,9,4,0,0,0,3,0,37,0,0,4,9,0,8,3,0,0,0,0,0,23,0,0,0,9,4,7,9,0,0,0,0,0,32,0,0,0,6,6,9,4,3,0,0,0,0,28,0,0,7,6,0,12,11,7,0,0,0,5,49,0,0,0,5,0,7,6,0,0,0,0,0,15,0,0,0,0,4,0,3,0,0,0,0,6,12,0,0,0,0,0,0,0,0,0,0,5,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0
LGA54130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,0,6,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,3,9,3,0,3,0,0,0,0,0,0,0,0,0,12,0,0,5,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0
LGA54170,0,3,4,4,4,8,13,56,22,6,8,11,135,3,5,0,0,8,4,20,31,6,4,0,4,87,27,24,28,11,6,17,34,43,7,0,3,6,211,21,50,40,34,9,27,47,72,11,0,4,18,323,6,15,37,41,25,32,145,118,17,0,7,11,469,0,8,36,23,7,13,53,46,10,6,3,7,214,4,8,21,40,19,47,200,200,37,4,7,11,603,0,4,23,24,22,49,190,257,45,20,8,13,664,0,0,11,22,18,53,208,389,47,22,11,7,786,0,4,6,13,10,28,180,422,60,22,8,19,777,3,6,9,22,23,46,270,642,180,48,38,9,1305,0,0,7,8,17,34,141,470,133,43,21,13,884,5,0,3,4,9,23,91,342,218,105,149,12,950,0,0,5,10,9,16,49,182,143,68,60,13,548,0,0,4,0,5,0,17,66,63,35,48,5,239,3,7,17,12,19
LGA54200,0,3,4,3,0,0,5,6,5,0,0,6,32,0,3,3,0,0,5,9,3,4,0,0,0,29,14,11,20,4,3,10,11,12,4,0,0,3,93,13,32,42,23,3,5,17,12,0,0,4,5,151,3,4,32,17,10,24,51,35,3,0,0,7,207,0,5,18,15,3,13,17,16,0,0,0,5,94,5,5,18,20,15,20,72,63,13,3,0,9,233,0,6,16,16,15,26,76,83,10,0,0,8,259,4,6,7,16,15,35,86,97,14,3,0,7,278,0,0,6,7,4,14,80,85,17,3,0,6,228,0,0,4,3,16,22,93,157,32,9,3,10,346,3,0,0,0,16,12,67,110,25,8,0,6,246,0,0,0,3,10,10,35,81,44,6,8,0,211,0,0,6,0,3,3,19,60,24,3,8,6,124,0,0,4,0,5,0,5,26,12,3,3,0,57,4,8,6,14,14
LGA54280,0,3,0,3,4,0,13,4,0,0,0,8,42,5,6,10,4,0,4,0,3,0,0,0,0,40,20,23,25,11,0,3,0,3,3,0,0,12,114,36,44,37,5,6,16,3,4,0,0,0,5,161,9,16,24,21,18,23,17,7,0,0,0,4,130,4,7,10,11,0,6,3,3,0,0,0,0,47,4,6,25,27,15,32,26,22,4,0,0,4,171,3,9,26,23,17,41,46,19,0,0,5,7,186,11,7,20,42,36,31,66,28,13,3,0,8,261,17,8,46,48,24,43,62,56,12,3,0,5,324,6,9,56,69,25,78,151,84,33,6,5,13,528,0,4,23,39,23,33,92,62,20,10,6,4,311,4,6,32,50,25,52,97,127,42,21,11,25,489,5,5,32,33,22,35,70,101,47,15,4,8,373,0,0,12,17,6,8,23,37,14,12,6,3,150,6,3,27,35,19
LGA54310,6,0,0,0,0,0,0,0,0,0,5,14,24,4,4,0,4,0,0,0,0,3,0,5,3,18,3,12,11,0,0,0,0,0,0,0,0,5,38,13,8,4,8,0,0,0,4,0,0,4,0,45,5,7,12,10,0,0,3,0,0,0,5,3,42,5,4,14,5,0,0,0,0,0,0,3,3,37,7,4,9,12,0,0,4,0,0,0,4,5,53,4,0,11,7,4,5,6,3,3,0,20,9,73,17,4,16,20,4,3,10,8,0,5,14,20,120,18,9,17,18,7,13,0,5,3,0,31,22,131,45,13,30,32,16,6,16,9,9,4,42,55,283,27,5,11,22,4,8,10,10,11,0,39,35,176,283,13,40,44,17,22,21,25,23,8,189,163,860,174,19,62,73,23,9,13,15,14,7,117,95,620,169,15,63,46,19,13,21,5,9,11,180,72,631,87,8,45,32,12
LGA54340,0,0,0,3,0,0,0,0,0,0,0,0,6,0,9,0,0,0,0,0,0,0,0,0,0,9,4,9,8,3,0,0,0,0,0,0,0,0,27,9,11,16,8,4,0,0,0,0,0,0,3,48,0,0,15,13,3,0,0,0,0,0,0,0,39,3,0,11,4,0,0,0,0,0,0,0,0,22,4,3,22,12,8,7,0,0,0,0,0,0,53,0,3,14,11,4,0,0,0,0,0,0,0,32,0,0,4,18,6,4,0,0,0,0,0,3,38,5,0,21,19,0,4,3,0,0,0,0,0,54,0,0,16,12,5,5,6,0,0,0,0,0,50,0,0,10,5,0,4,0,0,0,0,0,0,19,0,0,8,3,0,7,0,0,0,0,0,0,21,0,0,0,4,0,3,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,12,16,3
LGA54410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,6,0,0,0,0,0,0,0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,17,6,0,6,0,0,0,0,0,0,0,0,0,11,0,0,5,4,0,0,0,0,0,0,0,0,15,0,0,5,3,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0
LGA54480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,4,0,4,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0
LGA54550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,6,3,3,4,3,0,0,0,0,0,0,0,0,20,0,4,8,4,5,0,0,0,0,0,0,0,22,0,4,0,0,0,0,0,0,0,0,0,5,10,0,0,3,4,0,0,0,0,0,0,0,0,13,0,0,4,7,4,0,0,0,0,0,0,4,21,0,0,6,7,3,0,0,0,0,0,0,0,18,0,3,4,0,0,0,0,0,0,0,0,3,18,6,0,3,0,0,0,0,0,0,0,0,0,17,0,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0
LGA54620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,9,4,0,10,0,0,0,0,0,0,0,0,0,9,0,0,3,0,0,0,0,0,0,0,0,0,5,3,0,8,3,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,9,0,0,3,3,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0
LGA54690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,7,4,3,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA54760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0
LGA54830,0,0,0,7,0,11,8,5,0,0,0,4,36,5,3,4,7,0,3,3,0,0,0,0,4,33,19,24,25,5,13,13,4,3,0,0,0,6,121,27,69,48,26,14,33,29,6,0,0,4,7,258,0,18,42,21,19,66,46,13,3,0,0,3,237,6,4,41,23,7,26,21,6,0,0,0,7,142,0,11,18,30,35,70,75,23,3,0,0,5,281,0,4,12,23,40,72,73,34,0,0,0,4,261,0,0,12,14,29,74,101,31,5,0,0,6,274,0,0,3,5,22,46,69,32,0,0,0,0,181,0,0,4,3,13,72,87,74,0,0,0,0,262,0,0,0,3,4,30,39,57,4,0,0,3,154,0,0,0,3,7,12,30,44,3,3,0,0,109,0,0,0,0,0,0,20,32,0,0,0,0,58,0,0,0,3,0,0,10,11,0,0,0,0,29,0,0,14,14,19
LGA54900,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,5,8,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,3,0,0,0,0,0,0,0,0,8,17,0,0,7,0,0,0,0,0,0,0,0,5,12,5,0,5,3,0,0,0,0,0,0,0,7,18,6,0,4,0,0,0,0,0,0,0,0,0,11,0,0,11,5,0,0,0,0,0,0,0,0,18,3,0,4,0,0,0,0,0,0,0,0,3,11,0,0,5,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,6
LGA54970,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,17,3,0,4,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,11,4,5,0,0,0,0,0,0,0,0,0,0,13,4,0,5,0,0,0,0,0,0,0,0,0,13,0,0,0,3,0,0,0,0,0,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,6,5,0,6,0,0,0,0,0,0,0,0,5,17,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0
LGA55040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10,4,6,3,0,0,0,0,0,0,0,0,6,14,0,0,4,5,0,0,0,0,0,0,0,3,5,0,5,7,0,4,3,0,0,0,0,0,9,30,0,0,0,0,0,0,0,0,0,0,0,6,3,0,3,3,0,0,0,0,0,0,0,5,11,23,5,0,4,0,0,0,0,0,0,0,0,3,18,0,0,0,0,0,0,0,0,0,0,0,3,9,0,0,5,0,0
LGA55110,0,3,3,10,11,18,26,8,0,0,3,9,100,3,8,9,13,8,18,25,13,0,0,0,3,100,31,53,72,58,36,69,48,15,3,0,0,14,395,54,88,102,106,71,132,92,20,5,0,5,28,699,14,20,89,103,119,237,192,40,3,0,0,12,838,3,4,61,79,46,78,70,14,0,0,7,8,380,13,18,47,90,95,238,212,67,3,0,3,19,806,0,6,44,64,70,209,215,70,8,3,0,6,705,4,3,19,41,64,159,239,68,11,3,0,15,609,0,0,11,32,32,126,223,99,11,0,5,11,548,0,3,11,24,45,119,341,159,24,5,6,8,745,0,0,5,7,11,66,154,126,12,4,5,0,389,0,0,4,7,17,71,158,151,26,13,11,8,456,0,0,5,3,3,11,85,104,23,8,5,0,250,0,0,0,3,0,3,22,33,13,6,0,0,86,3,0,14,55,39
LGA55180,0,0,3,0,0,0,0,0,0,0,0,4,9,3,4,6,0,0,0,0,0,0,0,0,4,19,7,12,21,9,0,3,0,0,0,0,0,0,57,7,30,26,18,7,5,3,0,0,0,0,0,102,0,8,28,38,7,9,7,0,0,0,0,6,105,0,3,15,15,0,6,0,0,0,0,0,4,49,3,10,26,31,11,13,9,0,0,0,0,3,107,4,0,23,25,8,9,5,0,0,0,3,3,87,0,7,19,15,13,10,6,0,0,0,0,0,81,0,3,12,16,6,5,0,0,0,0,0,7,46,0,4,22,17,8,6,8,4,0,0,0,6,66,0,7,9,3,4,3,11,0,0,0,0,4,34,0,0,6,3,3,5,0,0,0,0,0,0,15,0,0,0,0,9,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,12,13,7
LGA55250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,6,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,3,0,0,0,0,0,0,0,0,0,5,4,0,5,3,0,0,0,0,0,0,0,4,9,0,3,7,3,0,0,0,0,0,0,0,0,12,0,3,4,0,0,0,0,0,0,0,0,0,10,8,0,7,5,0,0,0,0,0,0,0,3,32,3,4,0,0,0,0,0,0,0,0,0,0,12,8,3,3,0,0,0,0,0,0,0,0,4,15,4,0,3,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA55320,0,0,3,24,0,7,27,36,22,13,15,22,165,3,13,9,12,0,0,15,14,3,0,3,5,92,42,71,36,25,14,23,27,23,12,3,4,13,286,85,117,65,39,18,13,41,31,10,0,5,12,436,17,36,60,34,23,40,98,83,15,0,4,21,438,3,9,55,21,10,10,35,26,8,5,9,10,204,11,12,41,47,32,44,137,137,24,5,11,15,527,0,8,30,38,40,55,150,156,47,12,12,13,570,5,0,21,35,25,57,170,214,40,11,12,11,595,5,4,15,19,24,50,141,206,52,21,15,21,557,4,5,9,16,25,47,200,359,131,32,37,11,873,4,0,3,13,7,35,136,255,90,31,33,3,624,0,4,3,14,16,17,84,255,201,79,149,18,831,0,0,0,3,3,13,50,156,138,61,68,8,497,0,0,0,3,5,4,20,56,55,30,81,4,262,4,5,28,31,22
LGA55390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA55460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,13,12,14,3,0,0,0,0,0,0,0,0,36,0,7,8,7,0,3,0,0,0,0,0,0,24,0,0,8,6,0,0,0,0,0,0,0,0,22,0,5,11,9,0,0,0,0,0,0,0,3,34,3,0,11,4,7,0,0,0,0,0,0,3,29,4,5,14,4,3,7,4,4,0,0,0,0,42,7,0,6,4,0,3,0,5,0,0,0,0,24,5,0,8,7,6,5,7,5,0,0,0,8,37,5,0,7,4,3,0,4,4,0,0,0,0,22,3,4,3,0,0,0,0,0,0,0,0,6,24,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,10,0
LGA55530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,4,3,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0
LGA55600,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,4,3,5,0,0,0,0,0,0,0,0,0,11,5,6,8,4,0,0,0,0,0,0,0,4,25,4,3,3,3,0,0,0,0,0,0,0,0,19,0,0,4,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,5,4,0,5,0,0,0,0,0,0,15,0,0,4,5,0,0,0,0,0,0,0,0,20,0,0,0,10,0,0,0,0,0,0,0,0,15,3,0,5,9,6,0,0,0,0,0,0,0,24,0,0,8,4,0,0,0,3,0,0,0,0,13,0,0,3,11,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,10,0
LGA55670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,4,0,0,0,0,0,0,0,0,0,7,0,0,0,3,3,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA55740,5,0,0,0,6,7,5,3,0,0,0,0,22,6,8,0,0,0,0,4,3,3,0,0,0,27,12,19,16,12,0,10,6,3,0,0,0,0,81,16,26,14,14,13,8,7,4,0,0,3,4,108,0,10,12,11,17,19,14,11,6,0,0,5,98,4,0,7,0,0,8,3,0,0,0,0,0,22,0,0,3,9,15,26,24,3,3,0,4,3,98,0,0,11,9,10,13,18,3,5,3,0,7,79,0,0,0,0,8,17,20,26,7,3,3,0,94,5,0,4,5,6,19,26,25,3,0,8,0,89,0,0,0,0,9,21,26,31,6,3,6,4,107,0,0,0,7,0,9,18,27,6,0,5,5,79,0,0,0,0,7,4,8,21,21,10,33,0,103,0,0,0,0,3,10,4,16,13,9,21,0,69,0,0,0,0,0,0,0,3,3,9,15,0,39,0,0,4,3,5
LGA55810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,8,0,0,0,9,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,6,6,0,0,6,5,0,0,0,0,0,0,0,0,9,0,0,8,0,5,0,0,4,0,0,0,3,18,0,0,4,0,0,0,0,0,0,0,0,5,13,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,5,0
LGA55880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA55950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,4,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0
LGA56090,0,0,4,0,0,0,0,0,0,0,0,4,19,0,0,3,0,0,0,4,0,0,0,0,0,11,3,7,10,3,9,5,14,4,0,0,0,4,59,12,28,20,6,9,5,15,9,0,0,0,6,113,0,3,17,16,12,21,26,20,3,0,0,3,113,6,0,16,9,6,10,11,9,0,0,0,0,61,8,0,10,14,11,23,29,20,3,0,0,9,130,0,0,9,8,9,18,34,29,9,0,0,3,116,0,0,5,4,12,8,41,36,7,0,0,3,135,3,0,0,8,4,16,46,43,9,3,6,3,131,0,0,7,13,10,11,45,64,19,4,0,0,172,0,0,6,4,0,12,27,37,13,0,0,4,105,0,0,0,0,4,10,23,26,19,5,7,4,90,0,0,0,0,5,4,7,22,30,7,4,0,69,0,0,0,0,0,0,0,7,11,0,0,0,21,0,0,3,6,6
LGA56160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA56230,0,0,0,3,0,0,3,3,0,0,0,7,15,0,0,0,0,0,3,0,0,0,0,0,0,10,0,0,10,11,7,9,7,0,0,0,0,3,50,0,5,24,13,15,12,13,0,0,0,0,9,99,4,4,22,22,19,24,17,5,0,0,0,0,104,0,0,11,12,16,13,6,5,0,0,0,0,61,0,3,7,14,5,14,29,6,0,0,0,3,85,0,0,8,14,11,11,18,6,6,0,0,3,79,3,0,6,0,10,15,22,18,0,0,0,4,80,5,0,4,4,9,10,26,16,0,0,0,5,71,0,0,0,9,5,13,27,17,4,0,0,3,87,0,0,0,0,4,3,21,12,0,0,0,5,53,0,0,0,0,3,4,17,27,0,0,0,0,59,0,0,0,0,0,6,13,9,3,0,0,4,32,0,0,0,0,0,0,0,3,0,0,0,0,9,0,0,3,4,8
LGA56300,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,12,0,5,9,4,0,0,0,0,0,0,0,0,13,0,0,9,3,3,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,8,3,0,0,0,0,0,0,0,17,0,0,5,4,0,3,0,0,0,0,0,0,13,3,6,0,0,0,0,0,0,0,0,0,3,10,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA56370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,9,0,0,5,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA56460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,3,13,5,10,12,12,0,0,0,0,0,0,0,0,49,0,18,11,9,0,3,0,0,0,0,0,0,56,0,7,14,16,7,7,0,0,0,0,0,0,44,0,0,10,17,4,8,0,0,0,0,0,3,39,0,0,11,15,6,5,3,0,0,0,0,3,48,0,0,10,4,5,12,5,0,0,0,0,10,48,0,0,0,14,13,7,3,0,0,0,0,0,44,0,0,3,4,0,3,4,0,0,0,0,0,28,0,4,13,14,7,3,9,4,0,3,0,4,59,0,0,3,6,8,13,4,0,0,0,0,0,32,0,0,10,3,0,0,0,4,0,0,0,0,19,0,5,0,0,0,4,0,5,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,4,5,3,10,11,5
LGA56580,0,4,4,3,0,0,3,11,5,0,14,3,44,0,4,4,0,0,3,0,3,0,0,0,3,20,10,15,0,4,0,0,0,5,3,0,0,3,50,11,19,11,5,0,0,3,7,0,0,4,8,75,4,4,14,3,3,4,9,9,8,0,0,5,58,0,3,5,3,0,3,3,7,3,0,5,0,34,3,3,6,0,0,8,5,11,7,3,0,0,63,0,0,4,3,3,0,3,24,6,4,9,0,49,0,0,0,0,5,10,13,25,19,3,9,3,94,0,6,3,4,9,3,15,21,17,7,7,5,81,0,0,4,3,9,11,16,28,30,16,29,3,148,0,0,0,6,8,7,3,18,15,11,17,7,96,0,0,0,6,8,7,14,24,37,28,166,7,297,0,0,0,0,7,5,4,15,21,21,79,5,160,0,0,0,4,0,4,0,7,6,10,61,0,102,0,0,9,14,17
LGA56620,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,17,0,0,0,0,0,0,0,0,0,0,0,17,18,0,0,0,0,0,0,0,0,0,0,0,20,17,0,0,0,0,0,0,0,0,0,0,0,17,28,0,0,0,0,0,0,0,0,0,0,0,32,24,0,0,0,0,0,0,0,0,0,0,0,30,29,0,0,0,0,0,0,0,0,0,0,4,29,22,0,0,0,0,0,0,0,0,0,0,6,32,19,0,0,0,0,0,0,0,0,0,0,0,17,11,0,0,0,0,0,0,0,0,0,0,4,18,5,0,0,0,0,0,0,0,0,0,0,0,7,0,3,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0
LGA56730,0,3,0,0,6,4,4,0,0,0,0,0,15,7,0,0,0,0,0,0,0,0,0,0,0,11,8,28,18,7,4,11,0,0,0,0,0,0,73,11,31,12,11,6,0,0,0,0,0,0,4,83,3,6,13,7,14,11,5,0,0,0,0,4,62,3,0,18,10,3,4,0,0,0,0,0,0,47,4,0,16,17,15,20,12,0,0,0,0,3,85,0,0,14,12,20,15,11,5,7,0,0,3,85,0,4,13,21,10,19,12,6,0,0,0,3,83,0,0,4,17,7,12,11,0,0,0,0,9,55,0,3,16,12,16,18,16,4,0,0,0,3,87,0,0,6,12,3,6,11,0,0,0,0,0,45,0,0,6,3,7,4,12,0,0,0,0,0,42,0,0,3,0,0,7,0,3,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,13,17,14
LGA56790,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,6,3,0,6,3,0,3,0,0,0,0,0,0,21,4,8,6,10,3,8,0,0,0,0,0,0,41,0,0,3,14,9,3,3,0,0,0,0,4,28,0,0,6,6,0,0,4,0,0,0,0,0,17,0,0,0,17,5,4,3,0,0,0,0,0,38,0,0,6,9,0,3,0,5,0,0,0,5,25,0,0,3,5,4,8,5,0,0,0,0,0,24,0,0,11,3,5,3,6,0,0,0,0,6,29,0,0,4,3,0,6,5,0,0,0,0,0,20,0,0,7,7,0,3,3,0,0,0,3,0,25,0,0,0,0,0,0,0,0,0,0,3,0,10,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,9,0,3
LGA56860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA56930,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,5,0,0,0,0,0,6,0,0,0,0,0,3,0,0,0,0,0,0,9,0,0,0,0,0,0,0,3,0,0,3,0,8,0,0,3,0,0,0,0,0,0,0,6,0,17,0,0,0,0,0,0,0,0,3,0,10,0,9,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0
LGA57000,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57080,0,3,5,12,6,13,36,58,60,25,23,11,240,11,6,0,6,3,5,15,16,16,4,0,6,83,31,37,22,12,7,15,15,21,14,0,5,4,177,39,74,18,17,9,13,19,17,14,3,3,6,227,6,12,16,20,14,34,26,32,21,10,4,10,201,0,0,18,4,0,14,13,13,8,7,3,4,87,0,5,18,12,7,53,45,39,35,13,6,13,237,0,4,9,13,10,58,65,57,48,15,16,7,300,0,0,8,5,15,41,63,97,71,35,21,8,362,0,0,5,6,9,32,54,110,76,26,19,9,349,0,0,6,6,5,28,68,183,162,73,60,20,614,0,0,0,0,9,8,38,114,104,44,23,10,350,0,0,0,4,3,25,56,186,276,190,277,46,1066,0,0,0,0,6,7,13,70,132,83,56,3,375,0,0,0,0,0,0,3,29,77,60,59,4,238,4,0,0,6,0
LGA57140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,8,0,0,0,0,0,0,0,0,0,12,3,3,5,6,0,0,0,0,0,0,0,0,20,0,0,3,4,3,0,0,0,0,0,0,0,13,6,0,5,3,0,0,0,0,0,0,0,0,12,0,0,0,3,3,0,0,0,0,0,0,0,7,0,0,4,0,3,0,0,0,0,0,0,0,6,5,0,3,5,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57210,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,4,6,3,9,14,8,0,0,0,0,0,0,3,43,4,0,12,13,4,3,0,0,0,0,0,4,46,4,0,8,13,6,6,0,0,0,0,0,0,33,0,0,4,10,5,3,0,0,0,0,0,0,23,3,0,8,9,11,5,0,0,0,0,0,0,42,3,0,0,11,3,4,0,0,0,0,0,0,29,0,0,0,6,12,3,0,0,0,0,0,4,21,3,0,6,8,3,5,3,0,0,0,0,3,30,0,0,4,8,4,7,6,0,0,0,0,0,28,0,3,3,0,3,0,5,0,0,0,0,0,16,0,0,0,8,0,4,0,0,0,0,0,0,19,0,0,0,0,6,0,0,0,0,0,0,0,7,0,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,6,4
LGA57280,0,0,0,0,0,4,0,0,0,0,4,8,22,0,3,0,0,0,0,0,0,0,0,0,0,7,4,7,9,9,0,3,0,0,0,0,0,0,30,8,10,6,6,0,0,0,0,0,0,0,5,39,3,3,8,0,0,0,0,0,0,0,0,6,26,5,9,7,0,0,0,0,0,0,0,0,0,22,8,9,6,14,0,0,0,0,0,0,4,5,46,6,5,10,3,0,4,3,0,0,0,4,3,43,9,3,16,3,5,6,3,0,0,0,9,9,78,12,11,22,11,4,0,4,0,0,0,11,11,93,29,21,43,9,7,4,0,3,0,0,57,33,211,4,11,33,11,6,3,5,4,0,0,24,13,111,122,15,117,27,9,3,9,7,5,6,140,86,536,73,14,134,28,9,4,14,0,4,6,94,44,429,66,10,92,14,5,9,5,5,0,4,114,50,380,43,5,46,22,6
LGA57350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0,0,0,8,5,3,0,0,0,0,0,0,0,0,0,0,12,0,0,3,4,0,0,0,0,0,0,0,0,9,0,4,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,0,0,10,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,4,5,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0
LGA57420,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,5,5,0,0,0,0,0,0,0,0,12,0,0,3,0,0,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,4,0,6,0,0,0,0,0,0,11,0,0,5,8,0,0,0,0,0,0,0,0,8,0,0,4,5,3,0,0,0,0,0,0,3,20,0,0,3,0,4,5,0,0,0,0,0,5,19,0,0,0,4,0,0,6,4,0,0,0,0,16,4,0,3,3,4,16,6,13,0,0,0,0,46,0,0,0,0,6,0,3,0,0,0,0,0,6,0,0,0,0,0,41,8,5,0,0,0,3,68,0,0,0,0,0,10,3,7,0,0,0,3,21,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0,5,0
LGA57490,3,3,4,11,3,13,39,24,4,0,0,12,114,7,12,4,13,6,11,19,7,0,0,0,12,99,34,59,41,58,33,59,68,15,8,0,5,14,395,49,115,74,86,63,104,86,29,0,0,4,25,641,12,38,83,95,101,170,208,51,3,0,14,7,776,8,10,64,49,23,56,80,22,3,0,3,8,326,11,12,57,84,71,160,291,99,6,3,6,21,817,4,4,38,62,64,164,281,127,9,3,4,13,771,3,6,21,50,76,166,344,184,13,5,6,10,879,0,0,13,29,60,140,319,195,18,8,3,11,799,3,5,12,35,94,151,488,390,34,5,10,25,1243,0,0,5,18,39,65,252,308,36,10,0,0,738,0,3,7,14,30,52,188,260,45,13,16,8,645,0,0,3,7,7,26,116,180,47,5,0,9,409,0,0,0,0,5,8,27,62,16,4,5,0,125,4,8,21,54,56
LGA57630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA57700,0,0,0,0,0,0,0,0,4,0,0,0,11,0,0,0,0,0,0,0,4,0,0,0,0,8,0,0,3,0,0,3,0,0,0,0,0,3,19,0,9,3,4,3,3,3,10,0,0,0,0,26,0,0,0,11,5,13,18,6,0,0,0,3,55,0,0,0,0,3,3,10,3,0,0,0,0,25,0,0,3,4,6,9,10,20,0,0,0,9,61,0,0,6,3,4,11,20,22,7,0,0,4,76,0,0,9,6,3,12,11,25,3,0,0,3,77,0,0,0,4,3,11,11,29,3,3,0,7,72,0,0,0,5,3,4,16,45,8,0,0,3,85,0,0,0,0,0,4,13,23,9,0,0,0,64,0,0,4,0,0,4,12,21,9,0,0,0,45,0,0,0,3,3,0,3,14,5,0,0,0,26,0,0,0,0,0,0,0,4,8,0,0,0,9,0,0,7,4,3
LGA57770,3,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,11,4,0,6,0,0,0,0,0,0,0,0,0,14,3,0,3,5,3,0,0,0,0,0,0,0,16,0,0,0,3,5,0,0,0,0,0,0,0,10,0,0,0,3,3,0,0,0,0,0,0,4,22,0,0,4,6,0,0,3,0,0,0,0,4,21,0,0,5,8,3,4,0,0,0,0,4,0,20,0,0,0,0,0,4,5,0,0,4,0,3,18,0,0,3,3,0,5,0,3,0,0,4,9,26,0,0,4,5,0,0,0,0,0,0,0,4,19,0,0,3,0,3,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0,0,0,3,0,6,0,0,0,0,3
LGA57840,4,3,10,9,4,7,34,44,15,10,9,20,170,5,8,8,7,5,6,18,10,7,4,8,3,94,45,49,45,17,0,11,25,25,5,6,0,15,247,48,93,58,23,9,13,43,34,9,3,0,12,346,23,29,48,42,17,32,73,40,9,3,4,14,338,5,3,53,23,9,7,33,25,5,0,3,6,176,10,18,22,36,19,46,118,71,11,8,3,9,368,9,8,20,17,28,48,151,107,31,12,9,10,442,0,6,18,23,24,55,168,139,33,9,15,11,504,0,6,16,18,26,27,153,157,40,4,14,13,468,4,3,10,19,29,50,180,251,82,28,31,10,685,3,0,3,13,17,26,130,179,67,27,17,4,486,4,0,7,16,7,16,133,194,137,65,151,11,742,0,0,0,3,11,11,44,131,93,46,49,7,410,0,0,0,0,3,6,27,42,46,39,71,9,231,7,6,13,17,20
LGA57910,15,17,25,23,22,42,103,98,23,14,16,32,424,53,48,28,23,14,17,31,41,4,0,7,21,293,205,305,182,95,72,83,151,95,23,8,12,50,1283,280,568,246,138,84,134,173,86,11,4,15,62,1800,46,114,238,175,151,279,378,191,15,7,15,60,1675,4,28,198,86,52,77,177,104,17,4,7,20,768,29,44,121,176,139,327,639,329,48,20,23,54,1947,24,18,94,148,136,374,786,443,81,23,13,53,2189,14,6,48,109,125,354,832,597,101,17,24,41,2262,5,6,40,75,79,213,780,581,105,42,27,39,1987,7,8,33,60,97,266,920,1008,228,68,55,48,2802,0,0,15,32,47,133,571,792,184,55,39,33,1908,0,8,17,24,27,98,294,623,276,127,198,33,1726,0,0,6,19,14,36,201,445,236,112,128,23,1228,5,0,4,5,3,16,41,149,152,62,103,8,545,15,21,64,72,62
LGA57980,0,0,0,0,0,3,5,7,5,0,7,5,44,10,14,3,3,0,4,5,9,5,0,0,0,52,28,44,19,7,7,10,16,9,3,0,4,8,155,23,72,19,16,13,6,5,4,3,0,5,5,172,7,15,18,25,17,17,12,10,0,0,0,5,116,5,3,13,5,0,4,9,5,0,0,0,0,43,0,3,7,21,8,25,29,21,11,3,0,3,141,4,6,7,7,20,24,37,36,13,5,0,6,157,7,3,5,6,20,28,49,36,26,4,7,3,187,0,0,6,3,0,19,49,38,27,0,10,4,172,0,0,3,8,8,20,62,58,52,20,20,5,256,0,0,3,0,7,13,30,57,17,9,13,3,145,0,0,0,10,3,12,31,64,86,66,136,6,414,0,0,0,0,0,4,13,45,47,41,39,0,199,0,0,0,0,0,0,0,15,36,48,68,0,177,0,4,3,4,0
LGA58050,5,5,8,9,3,0,22,36,4,0,0,16,106,13,17,9,15,0,3,21,18,3,0,0,6,102,66,94,60,20,11,30,33,38,4,0,4,33,391,91,153,79,51,27,29,63,46,4,6,6,24,572,15,43,74,53,20,57,163,112,9,0,7,30,586,7,8,95,50,12,17,50,40,8,0,0,6,296,5,28,54,77,58,92,245,155,13,3,5,21,748,7,11,33,52,40,73,242,186,20,6,3,12,681,5,9,30,43,41,69,263,275,27,9,8,14,799,7,4,11,18,44,47,217,229,34,0,4,13,632,6,4,17,27,25,56,284,395,54,9,3,22,901,0,0,6,19,27,34,166,253,51,13,8,8,583,0,0,7,9,10,20,74,194,69,19,5,6,418,4,0,6,0,3,9,46,155,41,13,6,5,286,0,3,0,4,0,3,15,46,22,7,13,6,110,3,8,31,38,28
LGA58190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,0,0,0,0,0,0,0,0,0,7,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,6,0,0,0,0,0,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,0,9,4,0,0,4,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0
LGA58330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,3,3,0,0,0,5,19,0,7,8,3,0,3,6,0,0,0,0,5,28,0,0,0,6,5,4,3,0,0,0,4,0,28,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,6,3,5,4,0,0,0,3,19,0,0,3,6,0,7,4,0,0,0,0,0,21,0,0,0,3,0,6,0,0,0,0,0,0,11,0,0,7,0,0,4,4,0,0,0,0,0,11,0,0,0,3,0,3,3,5,0,0,0,0,27,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,8,0,0,0,0,0,0,3,3,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,4
LGA58400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,11,3,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0
LGA58470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58510,3,7,14,6,10,20,37,33,10,3,9,16,164,16,7,7,0,3,7,15,12,5,4,5,5,85,45,83,21,16,10,22,24,19,3,6,3,8,262,58,121,75,23,16,14,35,12,11,0,3,15,396,14,24,88,39,20,51,54,43,8,6,4,16,369,5,14,39,11,8,11,44,25,10,3,0,5,167,8,17,46,47,41,73,120,78,13,5,3,6,460,6,3,21,34,44,74,138,91,22,4,5,7,437,0,4,17,21,38,74,178,115,39,6,8,9,500,0,0,10,22,20,56,152,147,26,6,6,14,474,4,4,4,16,21,63,188,241,46,17,18,9,639,0,6,9,7,11,35,106,198,47,12,14,4,432,0,0,4,4,8,27,74,188,77,38,51,12,486,0,0,3,0,3,13,50,120,53,21,30,3,316,0,0,0,0,0,0,15,35,27,10,10,0,115,0,8,7,23,20
LGA58540,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,3,4,0,0,0,0,0,0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,4,4,0,9,0,0,0,0,0,0,0,0,3,12,0,0,3,0,0,0,0,0,0,0,0,0,10,5,6,0,0,0,0,0,0,0,0,0,0,9,0,0,4,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58570,4,5,3,5,7,12,12,20,7,5,0,13,87,6,3,3,8,0,3,3,14,4,0,0,3,51,36,45,26,28,16,22,17,21,4,0,0,14,231,33,72,21,20,14,17,25,19,3,0,0,15,238,4,20,31,28,33,47,37,31,13,5,3,5,270,5,6,17,8,11,11,17,18,0,0,0,5,101,7,5,21,24,28,47,70,48,15,5,5,10,290,0,3,14,36,27,59,85,80,24,3,5,7,340,0,0,9,22,24,65,81,117,45,11,18,9,408,0,0,10,17,14,33,96,129,46,14,9,5,374,3,0,4,15,14,61,130,262,97,29,22,8,649,0,6,5,5,10,21,73,180,94,17,15,8,427,0,0,0,11,10,10,58,167,156,56,36,7,516,3,0,3,7,8,6,42,150,133,39,43,5,439,0,0,0,0,0,0,11,51,85,55,43,4,248,3,3,10,9,13
LGA58610,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,3,0,0,0,0,0,0,0,0,11,9,10,4,3,0,0,0,0,0,0,0,0,20,0,0,9,5,0,0,0,0,0,0,0,0,12,0,0,3,4,0,0,0,0,0,0,0,0,12,0,4,3,10,0,0,0,0,0,0,0,4,24,0,3,6,5,0,0,0,0,0,0,0,0,12,0,0,3,4,7,0,0,0,0,0,0,0,12,0,0,3,3,0,0,0,0,0,0,0,0,9,5,0,3,3,6,0,0,0,0,0,0,4,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0
LGA58680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA58760,0,6,11,7,3,7,37,36,17,6,3,18,156,11,11,18,4,4,9,18,22,0,0,5,9,106,46,77,59,29,19,22,60,40,4,0,3,31,389,67,131,97,61,28,24,73,59,11,4,5,27,587,11,44,78,65,26,61,249,162,21,0,5,17,748,5,8,93,45,27,33,97,56,9,0,4,21,391,11,18,52,63,50,84,305,272,28,4,3,17,910,10,9,43,38,38,83,288,321,42,4,3,21,886,4,10,24,27,25,71,291,467,42,7,5,9,988,0,0,10,21,19,58,258,412,78,9,13,15,895,3,3,8,18,28,62,301,699,139,16,12,14,1305,4,0,5,8,15,34,160,490,123,14,9,14,878,0,0,4,3,8,24,72,357,171,48,41,5,736,0,0,4,3,10,9,48,214,109,31,35,6,466,0,0,3,0,0,5,20,59,43,10,12,5,158,5,12,41,40,25
LGA58820,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,3,0,3,4,0,0,0,0,0,0,21,0,0,3,3,8,0,3,0,0,0,0,0,26,0,0,3,18,7,0,4,0,0,0,0,0,33,0,0,7,5,3,0,0,0,0,0,0,0,14,0,0,7,13,4,6,0,0,0,0,0,0,31,0,0,0,5,7,3,5,0,0,0,0,0,29,3,0,0,0,0,6,0,0,0,0,0,0,17,0,0,0,4,3,3,8,0,0,0,0,3,25,0,0,0,3,3,7,6,7,0,0,0,0,26,0,0,0,4,3,4,4,0,0,0,0,0,15,0,0,0,0,6,3,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,5
LGA58890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,11,3,0,9,0,0,0,0,0,0,0,0,5,16,3,0,6,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0
LGA59030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0
LGA59170,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,6,0,0,3,6,0,0,0,0,0,0,0,0,7,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,6,4,0,0,4,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,0,4,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,4,0,0,0,0,0,0,0,0,0,8,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59310,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,7,4,9,0,3,0,0,0,0,0,0,0,0,18,0,4,3,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,3,4,0,0,0,0,0,0,0,11,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,8,3,0,0,0,0,0,0,0,0,16,3,0,3,7,0,0,0,0,0,0,0,3,21,0,3,4,5,5,0,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,3,0
LGA59320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,8,0,0,4,4,0,0,0,0,0,0,0,0,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59340,0,0,3,0,0,0,3,0,0,0,0,3,17,0,0,4,0,0,0,0,0,0,0,0,0,10,20,0,5,4,3,0,0,0,0,0,0,8,35,17,14,10,3,0,0,0,0,0,0,0,0,49,12,0,9,4,4,0,5,0,0,0,3,6,39,25,0,9,3,0,4,0,3,0,0,0,9,52,15,11,7,9,7,5,3,4,0,0,5,11,73,22,3,13,13,0,3,10,5,3,8,5,18,101,25,6,15,10,3,12,11,3,8,0,5,9,108,25,21,23,8,7,5,10,6,5,3,10,15,128,20,17,24,15,11,11,12,14,7,11,14,20,178,14,11,28,7,3,4,5,3,11,9,6,14,113,7,8,26,5,3,5,4,10,10,11,21,26,131,4,3,34,15,0,3,6,3,7,14,18,16,129,9,3,7,5,0,3,4,0,0,6,10,3,46,16,12,28,14,8
LGA59350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0
LGA59360,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,7,0,6,3,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,3,0,0,0,0,0,0,0,0,6,0,0,4,4,0,0,0,0,0,0,0,0,9,4,3,0,3,0,0,0,0,0,0,0,0,6,0,0,5,0,0,0,0,0,0,0,0,0,4,3,0,7,3,0,4,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,7,3,0,4,3,0,3,3,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3
LGA59370,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,17,9,9,3,5,0,3,0,0,0,0,0,0,29,0,0,0,4,5,6,5,3,0,0,0,0,28,0,0,5,0,0,0,0,0,0,0,0,0,13,0,3,0,5,3,0,7,0,0,0,0,0,26,0,0,0,0,5,3,8,0,0,0,0,0,15,0,0,4,0,4,6,5,0,0,0,0,0,14,0,0,4,0,0,3,5,0,0,0,0,0,20,0,0,0,4,0,7,3,5,0,0,0,3,24,0,0,0,3,5,5,0,0,0,0,0,0,12,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,3
LGA59499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA59799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA60210,0,0,0,0,0,3,0,0,0,0,0,0,7,4,0,6,0,0,0,0,0,0,0,0,4,11,13,14,16,24,4,4,0,0,0,0,0,6,76,8,15,18,27,8,0,0,0,0,0,0,3,76,0,5,12,28,11,5,0,0,0,0,0,3,65,5,0,12,17,8,0,0,0,0,0,0,0,40,0,4,14,26,19,8,0,0,0,0,0,3,76,4,0,6,15,9,7,0,0,0,0,0,0,48,3,0,3,11,10,6,7,0,0,0,0,0,35,0,0,3,10,3,5,0,0,0,0,0,0,22,0,0,0,3,3,13,0,0,0,0,0,3,24,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7,9,7
LGA60410,0,4,0,4,0,6,0,0,0,0,0,0,16,11,5,4,10,0,5,0,0,0,0,0,0,32,18,58,40,11,4,11,5,4,0,0,0,9,165,13,117,36,27,14,11,3,0,0,0,0,6,231,0,25,60,37,35,36,17,0,0,0,0,10,214,7,4,35,51,13,16,7,4,0,0,0,3,143,9,13,31,38,30,41,20,0,0,0,0,3,192,0,8,16,43,30,34,16,7,0,0,0,4,152,0,0,13,31,25,37,24,10,0,0,0,5,149,0,0,4,17,16,22,26,3,0,0,0,3,93,0,0,4,16,9,20,11,10,0,0,0,0,77,0,0,0,3,5,6,10,6,0,0,0,0,35,0,0,0,3,0,5,8,5,3,0,0,0,25,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,3,11,19,25
LGA60610,5,4,4,6,6,6,0,0,0,0,0,0,31,6,5,9,9,4,0,0,0,0,0,0,3,40,34,64,58,54,10,6,4,0,0,0,0,9,237,15,108,76,77,22,9,0,0,0,0,0,7,328,4,20,78,94,33,31,10,0,0,0,0,0,284,6,0,49,62,26,6,4,0,0,0,0,3,163,5,12,45,114,39,58,13,0,0,0,4,7,300,4,3,36,97,33,51,9,0,0,0,0,4,236,0,0,14,47,41,52,15,3,0,0,0,0,175,0,0,13,26,33,34,11,0,0,0,0,0,115,0,0,5,28,23,32,21,3,0,0,0,0,113,0,0,0,12,4,8,3,0,0,0,0,3,47,0,0,4,4,3,9,7,0,0,0,0,0,34,0,0,0,6,0,10,9,0,4,0,0,4,25,0,0,0,0,0,0,0,0,0,0,0,0,9,4,0,16,33,28
LGA60810,0,0,0,0,4,0,0,0,0,0,0,0,12,8,10,4,8,0,0,0,0,0,0,0,0,34,20,46,23,24,4,6,0,0,0,0,0,7,144,25,81,51,56,15,22,0,0,0,0,0,15,262,5,7,55,66,24,37,13,0,0,0,0,4,211,4,3,34,37,16,18,7,0,0,0,0,5,119,4,13,30,57,42,43,13,5,0,0,0,4,208,0,4,23,39,38,39,13,0,0,0,0,7,170,0,0,16,34,25,50,23,0,0,0,0,0,161,0,3,3,15,17,32,12,0,0,0,0,4,89,0,0,13,20,22,19,16,0,0,0,0,0,96,0,0,3,3,5,13,19,3,0,0,0,0,53,0,0,0,6,4,15,10,4,0,0,0,6,36,0,0,0,0,0,0,5,0,0,0,0,0,11,0,0,0,0,0,3,0,4,0,0,0,0,11,3,0,10,25,15
LGA61010,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,7,6,5,6,0,0,0,0,0,0,0,0,0,16,0,0,3,8,0,0,0,0,0,0,0,0,16,5,0,0,8,0,0,0,0,0,0,0,3,13,4,0,4,5,0,3,0,0,0,0,0,4,25,7,4,3,3,7,0,0,0,0,0,0,0,18,0,0,6,7,0,0,0,0,0,0,0,0,16,4,0,0,5,0,0,0,0,0,0,0,0,9,4,0,3,0,0,0,0,0,0,0,0,5,12,3,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0
LGA61210,0,0,4,0,0,0,0,0,0,0,0,0,9,3,0,4,0,0,0,0,0,0,0,0,0,8,10,6,17,10,0,0,0,0,0,0,0,3,54,7,31,26,7,0,0,0,0,0,0,0,0,79,6,7,15,37,8,0,0,0,0,0,0,0,79,5,0,14,13,7,3,0,0,0,0,0,0,39,4,4,30,33,11,4,0,0,0,0,0,6,91,0,0,8,18,3,3,0,0,0,0,0,6,43,9,0,4,24,3,7,0,0,0,0,0,7,54,3,0,6,14,5,3,0,0,0,0,0,7,31,6,0,4,14,13,8,0,0,0,0,0,3,50,5,0,3,5,0,5,0,0,0,0,0,0,22,0,0,0,0,0,3,0,0,0,0,0,3,12,0,0,0,5,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,10,4
LGA61410,0,0,5,0,3,5,7,8,0,0,0,3,31,12,19,9,0,0,12,3,3,0,0,0,3,63,35,80,52,25,20,19,21,3,0,0,0,17,270,34,184,86,43,27,44,32,3,0,0,0,21,475,0,30,81,74,49,95,65,8,3,0,3,15,425,0,10,58,51,16,41,36,6,4,0,0,9,234,3,31,55,76,64,128,94,23,4,3,5,10,491,9,3,32,50,45,105,103,20,0,0,0,10,388,5,5,13,36,41,117,114,42,0,4,4,16,398,5,3,8,21,26,65,106,58,10,0,0,4,301,0,0,6,16,35,74,115,73,15,3,0,8,354,0,4,3,7,12,34,57,78,15,5,3,0,215,0,0,4,6,3,7,24,27,13,3,4,3,94,0,0,0,0,0,6,17,22,13,0,4,0,65,0,0,0,6,0,0,5,3,4,0,0,0,18,5,3,22,24,20
LGA61510,0,0,4,0,0,0,0,0,0,0,0,0,13,3,0,0,6,0,3,0,0,0,0,0,0,11,11,18,8,9,3,8,0,0,0,0,0,3,69,11,44,33,20,10,15,5,0,0,0,0,5,137,5,4,21,27,22,28,8,0,0,0,0,0,111,4,0,14,20,10,15,0,0,0,0,0,0,62,0,3,6,28,20,25,9,0,0,0,0,3,96,0,0,7,17,15,19,7,0,0,0,0,0,73,3,0,0,13,12,27,5,0,0,0,0,0,65,0,0,4,5,10,9,6,0,0,0,0,3,36,0,0,3,4,6,10,7,3,0,0,0,0,25,0,0,0,0,0,9,3,0,0,0,0,0,16,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,5,5,4
LGA61610,5,5,3,7,3,3,0,0,0,0,0,3,28,14,17,13,5,3,3,4,0,0,0,0,0,63,42,56,40,39,16,16,9,0,0,0,0,13,243,29,156,76,68,34,32,15,0,0,0,3,12,422,14,27,73,105,69,84,20,0,0,0,0,11,398,3,17,67,67,36,28,13,0,0,0,0,0,226,6,14,40,101,51,85,27,6,0,0,0,5,339,8,4,40,59,63,78,30,0,0,0,0,5,292,7,0,14,39,47,102,25,0,0,0,0,4,250,0,0,19,30,29,62,31,3,0,0,0,5,169,0,0,6,23,26,68,28,5,0,0,0,5,160,0,0,6,10,8,22,21,6,0,0,0,3,75,0,0,0,0,4,10,13,0,0,0,0,5,26,0,0,0,6,5,8,6,8,0,0,0,0,22,0,0,0,4,0,0,0,6,0,0,0,0,14,4,0,20,28,20
LGA61810,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8,6,0,8,15,0,3,0,0,0,0,0,0,37,24,27,13,15,0,4,0,0,0,0,0,0,87,9,7,12,20,7,3,3,0,0,0,0,3,59,0,5,23,23,0,0,0,0,0,0,0,0,50,5,3,11,28,11,11,0,0,0,0,0,8,77,3,0,8,13,6,8,0,0,0,0,0,0,43,0,0,4,12,11,0,4,0,0,0,0,0,35,5,3,3,8,8,5,4,0,0,0,0,4,37,5,3,4,0,5,3,0,0,0,0,0,0,21,0,0,0,0,4,4,0,0,0,0,0,0,9,0,0,0,6,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,9,10,3
LGA62010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,7,0,0,0,0,0,0,0,0,0,0,8,7,3,4,0,0,0,0,0,0,0,0,0,19,0,4,3,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,8,0,6,0,0,0,0,0,0,0,0,0,0,15,0,4,5,3,0,0,0,0,0,0,0,0,10,3,0,5,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,0,0,0,0,0,0,0,0,5,11,0,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0
LGA62210,0,0,0,3,0,0,0,0,0,0,0,0,10,11,6,8,0,3,0,0,0,0,0,0,0,23,4,17,14,36,8,0,0,0,0,0,0,8,96,10,34,26,26,14,0,0,0,0,0,0,0,116,5,12,13,34,6,3,0,0,0,0,0,9,84,5,0,21,29,11,9,0,0,0,0,0,0,72,4,5,14,42,18,11,4,0,0,0,0,4,96,0,0,12,22,12,7,3,0,0,0,0,0,75,0,0,4,22,13,11,0,0,0,0,0,0,58,0,0,3,10,8,4,7,0,0,0,3,0,38,0,0,0,15,4,3,6,0,0,0,0,0,34,0,0,0,5,0,0,3,0,0,0,0,0,13,0,0,0,0,0,4,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,5
LGA62410,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5,8,0,0,4,4,0,0,0,0,0,0,0,26,5,9,13,15,0,4,0,0,0,0,0,0,51,0,0,12,13,12,0,0,0,0,0,0,0,46,0,0,5,9,6,4,0,0,0,0,0,0,27,4,0,4,19,8,4,0,0,0,0,0,3,46,4,0,6,15,7,13,0,0,0,0,0,3,53,4,0,0,10,5,11,0,0,0,0,0,3,29,0,0,8,8,0,6,0,0,0,0,0,0,20,0,0,0,7,10,6,0,4,0,0,0,0,19,0,0,0,0,0,5,5,0,0,0,0,3,13,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,7
LGA62610,0,4,5,12,10,17,9,4,0,0,0,7,64,23,25,16,12,11,8,6,0,0,0,0,0,98,51,163,86,85,25,33,25,4,0,0,0,18,500,31,328,122,93,49,70,42,8,0,0,4,20,767,8,45,134,149,78,149,125,8,0,0,0,16,716,7,24,78,63,43,91,71,11,0,0,7,9,392,9,46,85,124,80,156,153,28,0,0,4,7,705,4,12,40,80,67,164,145,27,0,0,0,13,558,0,3,20,50,47,139,160,23,5,0,0,11,468,3,4,12,26,31,81,140,28,0,0,4,4,339,3,5,14,20,29,79,136,35,0,0,3,9,334,0,0,8,9,10,36,66,26,4,0,0,0,165,4,3,6,7,4,5,30,10,3,0,0,0,66,0,0,0,3,0,7,11,8,0,0,0,3,34,0,0,0,0,0,0,0,0,0,0,0,0,3,10,0,33,36,29
LGA62810,3,0,22,13,13,10,26,25,7,10,5,9,152,30,15,6,21,7,13,22,12,6,0,5,11,157,49,84,65,87,29,41,28,20,9,7,5,12,435,36,149,101,108,50,41,34,23,0,0,7,19,572,3,23,96,159,65,72,76,30,12,0,3,13,546,3,4,40,42,15,54,49,25,7,0,0,0,246,8,17,58,109,71,114,106,61,13,4,6,21,578,3,11,47,99,81,129,145,77,16,0,3,12,617,6,3,35,75,62,152,178,123,28,0,7,15,665,0,6,12,44,39,87,178,115,23,7,4,6,516,5,0,11,32,37,110,223,213,39,8,14,9,694,0,5,4,15,5,41,108,131,44,14,4,3,376,0,0,3,15,11,25,52,109,65,31,17,5,333,0,3,6,4,7,6,28,67,55,26,7,6,216,0,0,0,0,0,0,0,15,14,14,7,0,50,6,6,20,29,21
LGA63010,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,3,3,0,6,5,0,0,0,0,0,17,4,5,8,15,12,3,5,0,0,0,0,5,58,13,18,27,20,12,10,4,0,0,0,0,6,115,0,5,22,25,22,21,13,0,0,0,4,0,120,4,5,16,17,19,14,3,0,0,0,0,3,79,5,0,14,26,21,27,21,0,0,0,0,4,127,4,4,14,27,18,29,27,0,0,0,0,4,128,0,0,12,16,17,20,18,0,0,0,5,0,82,0,0,3,14,6,16,12,0,0,0,0,0,58,0,4,3,4,7,16,18,4,0,0,0,0,53,0,0,3,4,3,8,5,0,0,0,0,3,20,0,0,0,0,0,6,7,4,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,7
LGA63210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,4,7,6,3,7,0,0,0,0,0,4,25,6,13,6,5,6,3,5,0,0,0,0,0,45,3,5,13,7,9,6,0,0,0,0,0,0,42,0,4,5,13,0,6,5,0,0,0,0,0,27,5,4,0,21,9,5,4,0,0,0,0,0,49,0,0,0,7,12,9,6,0,0,0,0,0,32,0,0,0,10,7,3,0,0,0,0,0,3,27,0,0,0,6,3,0,0,0,0,0,0,0,14,0,0,0,6,7,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0
LGA63410,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,4,6,5,0,0,0,0,0,0,0,0,0,17,4,0,10,12,0,0,0,0,0,0,0,4,27,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,13,8,0,0,0,0,0,0,0,0,28,0,0,3,7,4,0,0,0,0,0,0,0,15,0,0,5,6,3,0,0,0,0,0,0,0,13,6,0,4,0,0,0,0,0,0,0,0,0,17,7,0,0,3,0,4,0,0,0,0,0,5,23,6,0,0,0,0,0,0,0,0,0,0,4,12,0,0,3,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0
LGA63610,0,3,0,4,0,0,0,7,0,0,0,4,16,6,7,5,3,0,0,3,3,0,0,0,3,26,10,32,18,13,17,13,5,7,0,0,5,3,126,6,68,33,36,16,24,21,6,3,0,0,8,216,0,14,49,37,24,41,45,15,0,0,0,9,230,0,6,24,16,10,17,34,11,0,0,0,0,120,0,13,25,30,30,69,104,21,3,0,0,11,306,6,0,15,21,17,49,97,41,5,0,0,6,251,5,0,7,17,10,45,117,31,3,0,0,6,244,4,0,0,17,6,22,87,45,6,0,0,3,197,3,0,14,9,12,34,91,66,9,0,0,5,249,0,0,4,3,0,19,66,55,4,0,4,0,156,3,0,0,0,0,8,24,28,10,6,0,0,80,0,0,0,0,0,6,10,26,13,0,0,0,67,0,0,0,0,0,0,0,8,3,0,0,0,14,0,0,8,11,8
LGA63810,0,0,0,0,5,0,4,0,0,0,0,0,11,0,0,3,4,0,3,0,0,0,0,0,0,9,7,7,6,17,6,9,0,0,0,0,0,0,62,3,23,27,22,10,5,0,0,0,0,0,0,89,0,3,9,37,22,25,5,0,0,0,0,0,101,0,8,12,19,5,18,6,0,0,0,0,0,64,4,8,4,12,22,25,8,0,0,0,0,0,88,0,4,7,26,19,20,10,0,0,0,0,0,96,4,0,14,15,11,24,12,0,0,0,0,0,82,0,0,0,0,16,15,8,0,0,0,0,4,44,3,0,4,11,4,16,21,0,0,0,0,4,67,0,0,5,0,7,10,4,0,0,0,0,0,27,0,0,0,0,4,13,5,9,0,0,0,0,31,0,0,0,0,0,0,5,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,6,7
LGA64010,3,17,18,14,8,25,13,7,0,0,0,8,107,34,22,28,32,8,12,6,0,0,0,5,5,160,97,178,124,140,61,54,29,12,0,0,3,19,710,54,375,191,182,69,62,38,12,0,0,7,29,1022,36,65,238,261,167,158,79,5,0,4,0,19,1032,6,27,124,119,83,98,47,15,0,0,0,9,535,18,36,118,247,152,218,128,19,10,0,9,19,978,17,17,74,191,112,224,122,19,0,0,4,9,797,5,8,52,134,128,241,149,35,5,0,0,9,770,4,3,21,76,74,128,125,30,10,0,0,3,480,4,0,19,58,56,143,173,57,8,0,0,5,529,4,0,12,27,23,53,85,23,5,6,3,5,240,6,0,7,7,5,29,43,33,13,0,0,7,148,0,0,3,11,0,9,26,16,3,0,0,0,71,0,0,3,0,0,0,0,0,3,0,0,0,19,8,12,38,64,51
LGA64210,0,0,0,6,3,0,0,0,0,0,0,3,14,6,0,3,3,3,3,0,0,0,0,0,0,23,8,14,19,22,0,16,0,0,0,0,0,3,86,11,33,44,36,20,16,0,0,0,0,0,5,162,5,12,37,40,25,30,8,0,0,0,3,3,162,7,0,25,31,12,21,3,0,0,0,0,0,102,7,3,23,53,25,49,18,3,0,0,3,3,187,0,3,15,37,26,48,17,7,0,0,0,3,150,0,3,12,16,21,22,18,3,0,0,0,4,102,0,0,6,8,17,22,12,5,0,0,3,5,79,0,0,3,14,11,15,35,10,0,0,0,0,91,0,0,0,3,0,14,15,3,0,0,0,0,43,0,0,0,0,3,4,14,3,6,0,0,0,31,0,0,0,0,0,0,6,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,9,5,14
LGA64610,0,0,0,0,0,0,0,0,0,0,0,3,12,3,4,3,0,0,0,0,0,0,0,0,0,10,9,11,21,14,4,0,0,0,0,0,0,0,59,20,34,29,21,3,8,3,0,0,0,0,4,131,0,9,35,35,10,18,14,0,0,0,0,3,120,7,5,17,15,6,8,0,0,0,0,0,4,58,6,8,20,30,12,18,8,0,0,0,0,5,108,7,0,21,18,17,23,16,0,0,0,0,8,120,8,3,12,12,15,23,6,0,0,0,0,0,82,6,0,3,15,8,23,17,4,0,0,0,4,77,12,0,4,4,8,15,7,5,0,0,0,4,65,0,0,3,7,0,3,3,0,0,0,0,3,30,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,6,6,0
LGA64810,0,0,0,0,0,4,4,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,11,18,14,7,7,0,0,0,0,0,63,5,14,14,25,10,14,7,3,0,0,0,5,96,0,0,20,20,19,32,24,0,0,0,0,0,112,0,0,10,21,8,21,11,0,0,0,0,0,70,3,0,13,22,13,29,31,0,0,0,0,5,118,0,0,6,15,11,36,30,6,0,0,0,0,106,0,0,5,10,14,39,31,10,0,0,0,0,112,0,0,0,3,3,15,25,3,0,0,0,0,59,0,0,0,3,7,11,20,7,0,0,0,0,60,0,0,0,3,5,6,12,5,0,0,0,0,37,0,0,0,0,0,0,3,6,0,0,0,0,17,0,0,0,0,0,3,8,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,5,3
LGA65010,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,5,0,8,4,0,3,4,0,0,0,0,0,0,26,9,18,11,3,0,6,0,0,0,0,0,3,41,4,0,3,12,5,0,5,0,0,0,0,7,36,6,6,6,3,0,4,4,0,0,0,0,0,31,4,0,8,5,5,7,6,0,0,0,0,5,42,0,0,8,8,0,0,8,0,0,0,0,0,24,0,0,3,7,0,4,0,0,0,0,0,0,25,5,3,3,4,0,3,0,0,0,0,0,0,21,4,0,5,3,0,4,3,0,0,0,0,5,17,0,0,4,0,0,0,0,0,0,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3
LGA65210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,3,7,0,0,0,0,0,0,0,0,9,0,3,7,10,0,0,0,0,0,0,0,0,19,0,0,3,9,0,0,0,0,0,0,0,0,24,0,0,0,3,0,0,0,0,0,0,0,0,18,0,0,3,3,4,4,0,0,0,0,0,0,19,0,0,0,7,3,0,0,0,0,0,0,0,14,0,0,0,6,0,3,0,0,0,0,0,0,8,0,0,0,4,0,6,0,0,0,0,0,0,5,0,0,0,6,4,0,0,0,0,0,0,0,7,0,0,0,0,4,0,0,0,0,0,0,0,9,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA65410,0,0,0,0,0,0,0,0,0,0,0,0,11,3,7,0,3,0,0,0,0,0,0,0,0,15,17,44,28,21,15,9,0,0,0,0,0,3,139,12,66,48,33,18,9,4,0,0,0,0,6,193,5,11,35,36,14,13,4,0,0,0,0,3,130,3,4,25,24,11,14,0,0,0,0,0,4,95,8,11,26,48,33,31,7,0,0,0,0,0,159,3,5,16,43,22,23,9,5,0,0,0,7,125,0,0,4,29,16,21,5,0,0,0,0,0,85,0,0,4,17,16,18,17,0,0,0,0,4,66,0,0,5,19,9,10,8,0,0,0,0,0,59,0,0,0,8,5,10,9,0,0,0,0,0,32,0,0,0,6,0,3,3,0,0,0,0,0,17,0,0,0,0,0,4,0,0,0,0,0,0,10,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,11,15,16
LGA65610,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,20,6,0,0,0,0,0,0,0,0,35,12,6,22,3,4,0,0,0,0,0,0,0,47,5,0,28,15,0,0,0,0,0,0,0,0,46,0,0,6,7,0,0,0,0,0,0,0,0,11,6,3,16,8,3,0,0,0,0,0,0,5,39,0,3,15,9,0,0,0,0,0,0,0,3,32,4,0,19,15,0,0,5,0,0,0,0,6,53,10,0,17,17,0,0,0,4,0,0,0,9,52,34,0,17,15,9,0,4,0,0,0,0,10,93,3,0,8,8,0,0,0,0,0,0,0,0,23,26,4,10,12,9,0,0,0,0,0,0,4,61,5,0,0,5,0,0,5,0,0,0,0,0,17,4,0,0,3,0,0,0,0,0,0,0,0,13,0,0,7,7,0
LGA65810,0,0,3,6,0,4,10,0,0,0,0,4,25,0,3,0,3,0,0,0,0,0,0,0,0,18,3,15,17,29,16,17,4,0,0,0,0,0,93,3,39,30,39,8,14,6,0,0,0,0,3,151,0,10,29,52,21,25,17,0,0,0,0,3,151,0,0,9,23,12,22,11,0,0,0,0,6,85,3,0,12,41,20,42,26,9,0,0,0,0,159,0,0,24,38,16,44,36,0,0,0,0,0,156,0,3,5,23,13,41,39,6,0,0,0,4,130,5,0,4,12,5,34,22,5,0,0,0,0,93,0,0,3,10,12,26,49,15,3,0,0,9,126,0,0,5,0,3,14,30,11,0,0,0,0,66,0,0,4,3,0,4,21,7,4,3,0,0,42,0,0,0,0,0,7,7,4,3,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,4,8,12
LGA69499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA69799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70200,5,0,0,0,0,9,0,5,0,0,0,8,26,7,0,0,5,0,3,0,0,0,0,0,4,22,60,16,16,10,0,0,3,7,0,0,3,19,127,75,20,31,6,10,3,10,4,4,3,0,21,198,15,14,28,14,11,8,7,12,3,0,3,8,134,24,18,21,12,8,0,3,3,0,0,3,5,96,18,16,33,19,20,29,32,28,9,0,0,13,224,16,4,18,17,10,36,48,44,25,8,0,18,245,13,8,13,16,15,39,58,70,41,5,4,19,301,7,6,9,10,9,31,42,65,39,11,7,30,263,6,3,13,15,15,31,72,114,71,24,13,38,416,8,3,0,3,8,20,49,101,87,18,9,10,333,5,3,12,7,10,16,31,61,72,26,19,27,281,0,0,5,0,4,0,19,24,46,21,24,22,165,0,0,4,0,5,5,9,14,23,11,14,11,90,12,14,22,20,9
LGA70420,3,0,3,0,0,0,0,5,0,0,0,0,19,3,5,0,0,0,0,0,0,0,0,0,0,8,34,0,0,0,0,0,0,0,0,0,0,17,54,16,4,5,0,3,0,0,0,0,0,0,0,35,22,0,6,6,0,0,0,0,0,0,0,0,43,53,0,9,0,0,0,0,0,0,0,0,10,77,45,9,9,7,0,4,0,0,0,0,0,14,80,17,4,6,5,9,4,0,0,0,0,0,15,59,34,0,9,6,4,3,3,3,0,0,0,15,86,23,4,3,9,3,0,0,0,0,0,0,12,56,28,3,15,7,8,3,8,4,0,0,3,29,105,13,3,9,0,4,3,0,0,0,0,0,17,58,7,0,3,5,3,3,3,7,0,0,3,10,40,7,0,0,0,0,0,5,4,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,4,11,26,7,15,4,4
LGA70540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,4,5,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA70620,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,9,27,0,0,0,0,0,0,0,0,0,0,11,34,15,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,0,0,0,0,0,15,47,0,0,0,0,0,0,0,0,0,0,14,58,49,0,0,0,0,0,0,0,0,0,0,6,55,26,4,0,0,0,0,0,0,0,0,0,3,35,45,0,0,0,0,0,0,0,0,0,0,10,53,32,0,7,0,0,0,0,0,0,0,0,3,39,36,0,6,0,0,0,0,0,0,0,0,8,48,23,0,0,0,0,0,0,0,0,0,0,5,26,7,0,0,0,0,0,0,0,0,0,0,4,13,5,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,7,4,0,0
LGA70700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0,0,0,0,10,9,0,0,0,0,0,0,0,0,0,0,0,13,0,3,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,3,3,0,0,0,0,0,0,0,3,15,4,0,0,3,0,0,4,0,0,0,0,0,11,0,0,0,0,0,3,0,0,0,0,6,0,13,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,12,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0
LGA71000,7,7,8,3,3,10,10,20,7,7,8,18,98,18,8,8,9,5,0,7,7,0,0,5,3,66,117,38,49,23,10,9,24,11,12,7,5,36,330,261,58,57,31,18,13,24,20,13,4,4,23,526,47,33,57,43,21,33,62,61,20,4,7,15,397,41,31,39,20,11,15,19,14,3,3,0,9,204,46,25,57,56,50,47,91,103,47,16,11,26,566,18,13,32,47,52,67,146,158,67,14,16,27,665,15,10,31,83,61,74,184,192,114,35,29,25,853,12,0,27,56,49,63,179,256,146,44,31,30,897,9,4,16,86,86,101,243,439,286,129,73,37,1517,4,0,15,64,69,84,151,336,282,129,83,22,1250,3,0,10,19,24,82,83,218,237,129,211,32,1060,0,0,8,22,25,50,65,151,210,154,176,22,884,0,0,3,8,10,11,23,31,83,98,148,12,437,24,13,30,63,45
LGA71150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,0,3,8,9,0,19,0,0,0,0,0,0,0,0,0,3,3,0,8,0,0,0,0,0,0,0,0,0,8,5,0,17,0,0,0,0,0,0,0,0,0,5,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0
LGA71300,4,0,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,9,22,0,3,0,0,0,0,0,0,0,0,0,26,14,0,0,0,0,0,0,0,0,0,0,0,20,11,3,5,0,0,0,0,0,0,0,0,5,31,33,6,10,5,0,0,0,0,0,0,0,3,49,40,5,5,0,0,0,0,0,0,0,0,0,54,46,15,8,3,0,0,0,0,0,0,0,10,89,47,13,20,5,0,0,0,0,0,0,0,26,115,41,8,26,8,0,0,0,0,0,0,0,12,101,55,12,35,5,0,0,0,0,0,0,0,16,125,48,10,26,10,3,0,0,0,0,0,0,12,107,25,10,8,4,3,0,0,0,0,0,0,3,53,22,3,10,3,0,8,3,0,0,0,0,5,58,16,0,0,0,0,0,0,0,0,0,0,8,25,68,8,12,0,0
LGA72200,4,0,0,7,0,0,3,0,0,0,0,0,12,5,0,0,0,0,0,0,0,0,0,0,0,5,29,8,17,5,0,0,6,0,0,0,0,3,58,49,12,6,0,0,0,3,0,0,0,0,3,73,4,11,15,8,0,6,3,0,0,0,4,5,54,20,7,21,5,0,0,5,0,0,0,0,4,64,9,3,23,16,3,9,10,3,3,0,0,10,84,4,4,10,18,10,14,10,12,0,0,0,6,86,4,4,23,22,13,22,19,5,0,0,0,0,116,3,3,11,14,16,17,20,9,0,0,0,4,103,8,0,26,24,27,23,28,23,5,0,4,14,191,5,0,18,18,41,22,22,18,5,0,0,11,155,0,0,3,11,17,21,10,18,6,0,0,12,104,4,0,15,16,14,18,7,7,0,0,0,7,92,0,0,0,0,0,4,3,6,0,0,0,0,17,3,3,16,19,26
LGA72300,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,3,0,0,0,0,0,0,13,3,0,0,3,0,0,3,0,0,0,0,4,17,6,0,3,7,0,0,4,5,0,0,0,0,22,0,3,4,13,0,5,3,9,6,0,0,0,56,3,0,4,0,0,0,0,0,0,0,0,3,17,4,0,13,9,10,13,17,19,6,3,3,13,95,9,0,4,12,8,9,6,10,4,4,4,7,79,8,5,6,8,16,10,14,23,9,5,8,0,104,0,3,9,4,13,11,8,15,15,3,3,9,84,4,0,0,9,6,6,13,13,19,12,12,4,108,0,0,3,7,4,11,11,13,27,9,9,3,104,0,0,0,0,3,3,9,13,10,3,8,5,53,0,0,0,0,5,4,4,7,14,12,4,4,55,0,0,0,0,0,0,0,0,9,8,5,0,23,3,5,3,6,0
LGA72330,4,0,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0,0,0,7,23,69,3,0,0,0,0,0,0,0,0,0,7,86,30,0,0,0,0,0,0,0,0,0,0,0,36,34,0,0,0,0,0,0,0,0,0,0,6,40,54,0,6,0,0,0,0,0,0,0,0,5,65,44,4,0,0,0,0,0,0,0,0,0,6,55,45,4,0,0,0,0,0,0,0,0,0,16,63,53,8,3,5,0,0,0,0,0,0,0,9,83,34,10,0,0,0,0,0,0,5,0,0,11,61,29,8,0,0,6,0,0,0,0,0,0,9,53,20,3,3,0,0,0,0,0,0,0,0,7,34,8,0,0,0,0,0,0,0,0,0,0,8,21,3,3,0,0,0,0,0,0,0,0,0,4,13,0,0,0,0,0,0,0,0,0,0,0,0,3,50,7,0,0,0
LGA72800,0,4,0,0,3,0,0,4,7,5,6,6,31,14,0,0,6,0,0,0,7,5,0,0,4,36,59,28,21,8,0,0,4,4,0,0,0,6,134,121,33,22,8,3,0,6,10,3,0,0,11,216,18,23,27,6,4,11,18,22,4,9,0,10,143,14,21,27,8,4,4,7,3,0,0,0,0,86,11,17,33,16,15,11,36,44,23,6,6,10,222,7,4,13,19,24,19,34,63,38,8,4,7,240,3,0,7,19,43,20,35,92,64,22,0,10,320,9,5,7,17,43,20,24,108,90,26,9,8,347,6,4,10,21,57,22,56,168,156,46,12,17,564,0,0,7,33,62,24,33,141,158,54,12,11,541,0,0,6,10,26,14,17,61,93,60,24,16,326,0,0,0,10,10,14,9,38,64,57,29,22,254,0,0,0,0,3,0,5,5,12,14,7,9,63,14,10,29,33,37
LGA73600,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,4,31,0,0,0,0,0,0,0,0,0,0,0,33,13,0,4,0,0,0,0,0,0,0,0,4,16,13,5,8,0,0,0,3,0,0,0,0,8,31,46,3,8,3,0,3,0,0,0,0,0,0,65,39,7,10,0,0,0,0,0,0,0,0,6,58,39,8,7,3,0,0,5,0,0,0,0,3,73,30,4,4,9,0,4,0,0,0,0,0,5,55,35,8,13,6,0,0,0,0,0,0,0,6,70,36,4,10,11,0,0,0,0,0,0,0,13,73,14,3,8,9,0,0,0,3,0,0,0,3,52,15,5,16,3,0,0,0,0,0,0,0,4,41,8,0,8,6,0,3,0,0,0,0,0,0,18,3,0,0,0,0,0,0,0,0,0,0,3,15,26,3,13,4,0
LGA74050,5,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,3,13,42,0,0,0,0,0,0,0,0,0,0,3,46,35,0,0,0,0,0,0,0,0,0,0,3,40,23,0,0,0,0,0,0,0,0,0,0,0,23,71,3,0,0,0,0,0,0,0,0,0,10,78,35,0,0,0,0,0,0,0,0,0,0,0,44,27,5,0,0,0,0,0,0,0,0,0,4,33,57,3,0,0,0,0,0,0,0,0,0,3,66,26,4,6,0,0,0,0,0,0,0,0,4,35,27,4,0,0,0,0,0,0,0,0,0,3,29,7,0,0,0,0,0,0,0,0,0,0,4,15,0,0,0,0,0,0,0,0,0,0,0,3,7,0,6,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0
LGA74550,3,0,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,4,8,8,0,0,0,0,0,0,0,0,0,0,19,11,0,0,0,0,0,0,0,0,0,0,3,18,0,0,5,0,0,5,0,0,0,0,0,0,16,24,5,0,0,0,0,0,0,0,0,0,0,27,28,9,0,0,0,0,0,0,0,0,0,6,42,19,3,0,0,0,3,0,0,0,0,0,0,34,28,9,4,4,3,0,0,0,0,0,0,5,50,18,4,4,3,0,0,0,0,0,0,0,3,40,39,4,9,3,0,0,0,0,0,0,0,5,60,12,3,4,0,0,0,0,0,0,0,0,3,19,5,0,3,0,0,0,0,0,0,0,5,5,18,0,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0,0,0,0,0,0,17,3,0,0,0
LGA74560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA74660,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,4,4,3,0,0,0,0,0,0,0,0,0,0,4,12,9,0,0,0,0,0,0,0,0,0,0,4,15,3,0,0,0,0,0,0,0,0,0,0,5,13,18,0,0,0,0,0,0,0,0,0,0,3,25,19,4,4,5,0,0,0,0,0,0,0,5,38,27,10,15,0,4,0,0,0,0,0,0,16,65,26,10,14,3,0,0,0,0,0,0,0,17,72,19,16,19,7,0,3,0,0,0,0,0,10,74,48,15,29,9,5,0,7,0,0,0,0,14,128,28,14,15,13,0,0,0,0,0,0,0,15,94,51,4,11,7,3,0,3,0,0,0,0,13,91,41,8,12,7,3,0,0,0,0,0,5,9,81,16,0,4,3,0,0,0,3,0,0,0,3,36,27,3,12,11,4
LGA74680,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,11,39,5,5,0,0,0,0,0,0,0,0,4,55,17,3,3,0,0,0,0,0,0,0,0,0,29,13,3,3,0,0,0,0,0,0,0,0,3,27,26,4,3,3,0,0,0,0,0,0,0,0,38,25,5,8,0,0,0,0,0,0,0,0,9,43,18,5,8,0,0,0,0,0,0,0,0,7,47,16,3,8,5,0,0,0,0,0,0,0,3,40,15,0,3,0,0,0,0,0,0,0,0,3,32,16,0,5,5,0,4,0,0,0,0,0,4,35,10,0,5,3,0,0,0,0,0,0,0,4,23,0,0,0,4,0,0,0,0,0,0,0,3,8,4,3,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,9,3,3,0,0
LGA79399,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,8,15,3,0,0,3,0,0,0,0,0,0,0,9,15,3,0,3,8,0,0,0,0,0,0,0,8,29,0,0,0,6,0,0,0,0,0,0,0,0,5,4,3,6,24,6,3,0,0,0,0,0,6,61,3,7,8,25,3,0,0,0,0,0,4,11,60,15,7,11,16,0,3,0,5,0,0,0,22,86,27,9,12,9,0,0,4,8,3,0,4,17,93,90,16,24,25,0,6,3,4,0,0,7,30,207,55,7,4,13,5,0,0,0,3,0,0,20,105,164,50,20,8,5,3,0,8,0,0,9,35,300,142,30,12,3,4,4,0,3,0,0,5,21,228,57,18,0,0,0,0,0,0,0,0,0,12,95,67,31,5,0,0
LGA79499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA79799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89399,15,26,32,20,13,18,52,104,60,28,34,49,452,136,87,42,33,7,11,21,38,25,10,8,38,457,357,478,248,122,38,44,54,98,41,17,13,112,1609,367,1041,391,156,41,47,66,90,50,15,22,107,2385,85,253,454,241,67,90,146,236,84,11,15,72,1754,33,58,340,141,31,40,60,108,46,14,7,44,924,60,116,243,334,169,158,264,495,161,46,28,66,2139,24,57,121,167,131,222,378,729,244,55,33,73,2244,34,36,94,134,132,254,571,1200,370,88,63,74,3048,21,19,31,89,127,171,468,1453,478,115,69,68,3104,16,21,60,102,130,251,617,2424,1076,275,108,88,5159,4,8,36,62,108,122,325,1848,1042,219,107,60,3936,8,10,30,32,79,150,331,1403,1271,501,350,77,4240,3,4,23,20,53,115,183,867,1027,435,252,47,3037,0,0,7,11,5,39,85,237,432,293,291,22,1435,42,59,132,105,85
LGA89499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA89799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,5,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,0,0
LGA99499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
LGA99799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
.git
.DS_Store
__pycache__