-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather_library.sql
51 lines (40 loc) · 321 KB
/
weather_library.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- DROP SCHEMA weather;
CREATE SCHEMA weather AUTHORIZATION postgres;
-- weather.weather_location definition
-- Drop table
-- DROP TABLE weather.weather_location;
CREATE TABLE weather.weather_location (
city varchar NULL,
state_province_region varchar NULL,
country varchar NULL,
wmocode int4 NULL,
latitude float8 NULL,
longitude float8 NULL,
altitude float8 NULL,
timezone varchar NULL
);
-- weather.weather_parameters definition
-- Drop table
-- DROP TABLE weather.weather_parameters;
CREATE TABLE weather.weather_parameters (
reference varchar NULL,
country varchar NULL,
temporal_resolution varchar NULL,
"attribute" varchar NULL,
data_type varchar NULL,
length int4 NULL,
value _float8 NULL,
uom varchar NULL,
description varchar NULL
);
INSERT INTO weather.weather_location (city,state_province_region,country,wmocode,latitude,longitude,altitude,timezone) VALUES
('Twenthe Enschede AP','OV','NL',62900,52.2731,6.8908,34.6,'1');
INSERT INTO weather.weather_parameters (reference,country,temporal_resolution,"attribute",data_type,length,value,uom,description) VALUES
('Twenthe Enschede AP','NL','hour','Diffuse Horizontal Radiation','float',8760,'{0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,65.0,84.0,60.0,55.0,38.0,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,11.0,34.0,54.0,61.0,56.0,39.0,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,0.0,0.0,0.0,0.0,0.0,11.0,35.0,54.0,62.0,56.0,39.0,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,18.0,90.0,54.0,63.0,58.0,41.0,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,11.0,35.0,55.0,100.0,58.0,41.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,11.0,36.0,56.0,64.0,59.0,42.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,11.0,36.0,88.0,104.0,100.0,81.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,32.0,57.0,70.0,77.0,72.0,79.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,12.0,37.0,96.0,66.0,97.0,72.0,32.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,58.0,71.0,78.0,73.0,63.0,42.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,32.0,72.0,82.0,95.0,92.0,74.0,21.0,2.0,0.0,0.0,0.0,0.0,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,39.0,59.0,107.0,64.0,47.0,36.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,65.0,102.0,109.0,101.0,78.0,23.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,78.0,96.0,70.0,66.0,49.0,24.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,14.0,41.0,62.0,71.0,67.0,50.0,25.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,15.0,42.0,63.0,115.0,68.0,83.0,58.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,0.0,0.0,0.0,15.0,43.0,103.0,108.0,85.0,78.0,50.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.0,0.0,0.0,0.0,38.0,75.0,69.0,74.0,73.0,79.0,51.0,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,0.0,0.0,0.0,0.0,42.0,78.0,113.0,121.0,73.0,55.0,29.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,28.0,74.0,107.0,77.0,115.0,91.0,48.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,18.0,46.0,69.0,79.0,75.0,93.0,66.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.0,0.0,0.0,0.0,42.0,75.0,72.0,77.0,74.0,82.0,52.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,47.0,48.0,70.0,80.0,76.0,59.0,33.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,20.0,49.0,71.0,82.0,78.0,61.0,34.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,41.0,70.0,77.0,85.0,84.0,76.0,58.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,35.0,83.0,116.0,131.0,133.0,106.0,72.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,22.0,52.0,75.0,85.0,82.0,65.0,37.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,3.0,46.0,68.0,76.0,83.0,82.0,73.0,60.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,1.0,24.0,55.0,78.0,89.0,85.0,68.0,66.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,2.0,25.0,56.0,79.0,172.0,87.0,108.0,79.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,6.0,50.0,70.0,86.0,142.0,135.0,71.0,43.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,0.0,0.0,4.0,42.0,100.0,139.0,153.0,132.0,105.0,76.0,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,3.0,28.0,60.0,84.0,95.0,91.0,74.0,46.0,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.0,0.0,0.0,0.0,6.0,48.0,61.0,132.0,146.0,141.0,119.0,76.0,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,0.0,0.0,0.0,4.0,30.0,99.0,86.0,98.0,94.0,77.0,79.0,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,8.0,51.0,103.0,138.0,151.0,146.0,124.0,92.0,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,5.0,54.0,105.0,140.0,154.0,98.0,126.0,96.0,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,10.0,64.0,118.0,148.0,139.0,140.0,141.0,105.0,48.0,0.0,0.0,0.0,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,64.0,125.0,148.0,169.0,135.0,134.0,103.0,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,21.0,68.0,113.0,153.0,171.0,166.0,134.0,92.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,13.0,39.0,73.0,149.0,165.0,107.0,89.0,94.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,14.0,65.0,74.0,99.0,111.0,108.0,90.0,60.0,48.0,0.0,0.0,0.0,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,41.0,76.0,102.0,114.0,166.0,140.0,61.0,25.0,1.0,0.0,0.0,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,43.0,77.0,103.0,114.0,111.0,93.0,63.0,27.0,1.0,0.0,0.0,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,49.0,113.0,167.0,191.0,184.0,155.0,123.0,59.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,11.0,46.0,81.0,107.0,179.0,185.0,164.0,89.0,45.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,12.0,78.0,83.0,109.0,121.0,118.0,99.0,68.0,57.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,13.0,49.0,85.0,111.0,185.0,180.0,101.0,110.0,65.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,37.0,77.0,101.0,107.0,90.0,90.0,90.0,99.0,61.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,39.0,86.0,118.0,158.0,91.0,85.0,87.0,86.0,66.0,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,44.0,91.0,95.0,80.0,85.0,85.0,88.0,88.0,68.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,43.0,99.0,136.0,115.0,113.0,109.0,160.0,113.0,72.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,43.0,109.0,165.0,172.0,178.0,204.0,161.0,105.0,72.0,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,47.0,97.0,90.0,87.0,94.0,122.0,167.0,92.0,72.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,100.0,146.0,188.0,138.0,134.0,115.0,83.0,68.0,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.0,0.0,0.0,51.0,91.0,158.0,201.0,217.0,162.0,93.0,135.0,65.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.0,0.0,40.0,107.0,152.0,205.0,211.0,138.0,178.0,139.0,65.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,56.0,97.0,160.0,186.0,120.0,120.0,164.0,156.0,94.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,1.0,50.0,124.0,173.0,195.0,187.0,221.0,200.0,150.0,87.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,4.0,55.0,114.0,109.0,135.0,224.0,229.0,186.0,139.0,49.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,1.0,29.0,70.0,108.0,135.0,148.0,144.0,168.0,91.0,81.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,2.0,30.0,114.0,111.0,138.0,150.0,146.0,189.0,142.0,51.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,3.0,32.0,117.0,171.0,205.0,201.0,186.0,200.0,152.0,86.0,35.0,0.0,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,65.0,122.0,174.0,223.0,204.0,221.0,136.0,141.0,88.0,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.0,0.0,13.0,72.0,116.0,91.0,87.0,91.0,92.0,107.0,148.0,94.0,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,5.0,37.0,80.0,119.0,146.0,157.0,153.0,133.0,99.0,57.0,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,5.0,38.0,82.0,121.0,148.0,160.0,155.0,135.0,101.0,59.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,6.0,40.0,130.0,159.0,105.0,171.0,180.0,161.0,162.0,96.0,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,7.0,42.0,86.0,125.0,152.0,164.0,159.0,138.0,105.0,62.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,23.0,88.0,138.0,165.0,178.0,213.0,251.0,211.0,107.0,64.0,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,14.0,46.0,91.0,130.0,156.0,168.0,163.0,219.0,109.0,65.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,9.0,95.0,93.0,132.0,159.0,170.0,165.0,145.0,110.0,66.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,16.0,93.0,135.0,183.0,204.0,257.0,249.0,235.0,181.0,108.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,10.0,51.0,148.0,216.0,207.0,154.0,216.0,188.0,155.0,110.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,25.0,86.0,99.0,138.0,165.0,176.0,159.0,346.0,115.0,113.0,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,13.0,54.0,100.0,139.0,166.0,177.0,172.0,151.0,117.0,72.0,27.0,0.0,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,57.0,163.0,195.0,158.0,181.0,176.0,155.0,120.0,120.0,67.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,26.0,92.0,117.0,226.0,250.0,181.0,229.0,229.0,166.0,123.0,62.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,28.0,100.0,151.0,220.0,270.0,272.0,264.0,250.0,193.0,104.0,73.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,18.0,109.0,172.0,149.0,174.0,272.0,231.0,160.0,170.0,79.0,32.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,65.0,112.0,151.0,178.0,186.0,182.0,241.0,190.0,81.0,55.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,21.0,67.0,114.0,154.0,180.0,190.0,183.0,164.0,128.0,83.0,35.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,60.0,110.0,119.0,105.0,134.0,146.0,138.0,151.0,194.0,133.0,73.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,24.0,71.0,118.0,158.0,288.0,350.0,278.0,196.0,130.0,132.0,74.0,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.0,26.0,73.0,189.0,239.0,186.0,197.0,279.0,262.0,216.0,87.0,63.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,68.0,95.0,123.0,111.0,241.0,276.0,226.0,210.0,155.0,134.0,80.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,3.0,73.0,97.0,100.0,114.0,211.0,228.0,286.0,169.0,136.0,90.0,41.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,2.0,30.0,78.0,126.0,165.0,189.0,315.0,279.0,249.0,207.0,91.0,69.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,2.0,32.0,80.0,185.0,172.0,277.0,258.0,288.0,175.0,211.0,130.0,84.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,3.0,55.0,83.0,204.0,166.0,288.0,202.0,290.0,175.0,140.0,93.0,44.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,14.0,78.0,130.0,103.0,119.0,97.0,153.0,98.0,97.0,106.0,140.0,91.0,26.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,80.0,134.0,135.0,121.0,148.0,158.0,151.0,93.0,107.0,117.0,92.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,83.0,135.0,105.0,120.0,99.0,105.0,103.0,101.0,108.0,112.0,82.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,76.0,110.0,107.0,111.0,115.0,118.0,173.0,218.0,187.0,118.0,86.0,30.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,71.0,148.0,222.0,259.0,295.0,309.0,299.0,276.0,182.0,120.0,98.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,74.0,152.0,226.0,286.0,207.0,213.0,207.0,189.0,152.0,104.0,53.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,25.0,77.0,155.0,197.0,294.0,292.0,269.0,145.0,135.0,152.0,133.0,91.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,14.0,79.0,158.0,232.0,267.0,303.0,316.0,306.0,274.0,232.0,162.0,92.0,37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,95.0,168.0,177.0,139.0,159.0,171.0,162.0,139.0,171.0,173.0,114.0,26.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,52.0,136.0,242.0,318.0,314.0,305.0,318.0,287.0,250.0,183.0,114.0,37.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,87.0,149.0,187.0,207.0,315.0,322.0,312.0,285.0,188.0,126.0,94.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,91.0,124.0,120.0,212.0,318.0,325.0,315.0,282.0,215.0,159.0,96.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,22.0,92.0,171.0,234.0,285.0,391.0,333.0,345.0,195.0,161.0,113.0,62.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,95.0,173.0,236.0,281.0,316.0,359.0,220.0,198.0,191.0,124.0,99.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,41.0,114.0,171.0,239.0,284.0,319.0,331.0,320.0,274.0,203.0,181.0,115.0,51.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,89.0,183.0,265.0,296.0,335.0,345.0,297.0,251.0,227.0,170.0,119.0,41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,84.0,152.0,231.0,298.0,341.0,394.0,335.0,291.0,207.0,163.0,128.0,46.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,64.0,177.0,163.0,315.0,331.0,390.0,332.0,299.0,215.0,142.0,105.0,56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,107.0,180.0,164.0,200.0,356.0,339.0,328.0,322.0,187.0,135.0,77.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,36.0,110.0,121.0,169.0,203.0,361.0,343.0,352.0,327.0,279.0,190.0,122.0,64.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,121.0,142.0,134.0,113.0,172.0,237.0,189.0,206.0,127.0,137.0,122.0,67.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,62.0,122.0,136.0,134.0,149.0,125.0,185.0,176.0,106.0,128.0,140.0,123.0,69.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,57.0,133.0,141.0,163.0,146.0,119.0,186.0,178.0,106.0,128.0,139.0,125.0,71.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,65.0,117.0,151.0,167.0,148.0,131.0,130.0,126.0,118.0,125.0,133.0,107.0,68.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,68.0,122.0,202.0,259.0,266.0,228.0,169.0,134.0,127.0,135.0,139.0,109.0,69.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,70.0,115.0,162.0,209.0,313.0,341.0,387.0,341.0,307.0,277.0,194.0,145.0,53.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,49.0,125.0,205.0,262.0,268.0,186.0,235.0,205.0,182.0,180.0,163.0,117.0,73.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,51.0,129.0,208.0,259.0,311.0,345.0,391.0,345.0,318.0,202.0,134.0,118.0,74.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,53.0,80.0,132.0,274.0,332.0,358.0,370.0,358.0,330.0,234.0,192.0,143.0,71.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,33.0,82.0,133.0,296.0,307.0,304.0,257.0,267.0,259.0,236.0,173.0,138.0,72.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,57.0,131.0,135.0,183.0,220.0,241.0,250.0,242.0,220.0,183.0,206.0,143.0,34.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,58.0,137.0,208.0,184.0,221.0,241.0,365.0,300.0,288.0,287.0,207.0,84.0,35.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,60.0,139.0,210.0,185.0,222.0,242.0,366.0,301.0,290.0,289.0,208.0,85.0,36.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,38.0,87.0,212.0,295.0,351.0,384.0,392.0,211.0,250.0,191.0,125.0,123.0,84.0,18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,39.0,88.0,214.0,297.0,352.0,385.0,394.0,211.0,251.0,192.0,126.0,124.0,86.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,40.0,89.0,142.0,188.0,224.0,245.0,357.0,323.0,222.0,187.0,140.0,138.0,87.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,41.0,91.0,217.0,301.0,356.0,388.0,398.0,212.0,253.0,195.0,127.0,126.0,89.0,21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.0,42.0,92.0,144.0,281.0,226.0,391.0,403.0,247.0,226.0,189.0,216.0,90.0,94.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,95.0,154.0,192.0,220.0,125.0,148.0,202.0,245.0,339.0,192.0,219.0,143.0,41.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,96.0,130.0,147.0,141.0,127.0,183.0,280.0,237.0,270.0,199.0,200.0,128.0,94.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,74.0,95.0,236.0,230.0,363.0,377.0,242.0,157.0,149.0,163.0,152.0,160.0,71.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,88.0,131.0,155.0,148.0,120.0,200.0,143.0,177.0,200.0,174.0,220.0,151.0,73.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,89.0,132.0,149.0,143.0,126.0,197.0,203.0,137.0,154.0,221.0,195.0,162.0,74.0,28.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,48.0,99.0,229.0,195.0,227.0,254.0,261.0,253.0,225.0,195.0,149.0,96.0,46.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,48.0,99.0,151.0,194.0,355.0,412.0,340.0,250.0,228.0,193.0,148.0,96.0,46.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,92.0,138.0,182.0,175.0,233.0,302.0,256.0,255.0,233.0,197.0,150.0,98.0,47.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,50.0,100.0,152.0,304.0,358.0,252.0,257.0,252.0,343.0,236.0,242.0,98.0,48.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,94.0,160.0,161.0,207.0,349.0,218.0,417.0,250.0,346.0,196.0,209.0,237.0,49.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.0,52.0,162.0,175.0,192.0,336.0,250.0,417.0,375.0,293.0,316.0,252.0,153.0,106.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,103.0,145.0,145.0,240.0,344.0,309.0,228.0,278.0,197.0,271.0,211.0,101.0,51.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,53.0,161.0,156.0,280.0,284.0,338.0,435.0,376.0,354.0,296.0,369.0,102.0,84.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,100.0,176.0,157.0,299.0,390.0,378.0,224.0,383.0,294.0,210.0,154.0,132.0,96.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.0,98.0,134.0,209.0,253.0,193.0,226.0,383.0,378.0,247.0,226.0,214.0,104.0,53.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,104.0,123.0,141.0,140.0,139.0,149.0,151.0,149.0,137.0,142.0,149.0,133.0,98.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.0,100.0,136.0,145.0,141.0,139.0,150.0,208.0,319.0,258.0,201.0,234.0,178.0,54.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,101.0,163.0,238.0,283.0,236.0,404.0,391.0,331.0,235.0,283.0,158.0,106.0,55.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,49.0,101.0,136.0,195.0,213.0,307.0,291.0,406.0,422.0,377.0,202.0,160.0,107.0,56.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,57.0,108.0,159.0,204.0,240.0,260.0,351.0,294.0,261.0,326.0,227.0,139.0,102.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,51.0,102.0,137.0,151.0,146.0,138.0,163.0,147.0,147.0,162.0,182.0,132.0,139.0,101.0,50.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,52.0,103.0,138.0,152.0,145.0,140.0,171.0,211.0,300.0,344.0,206.0,253.0,187.0,105.0,51.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,31.0,126.0,154.0,274.0,205.0,263.0,287.0,186.0,152.0,157.0,250.0,230.0,177.0,104.0,50.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,53.0,104.0,172.0,232.0,219.0,154.0,148.0,151.0,151.0,135.0,151.0,167.0,137.0,103.0,54.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,54.0,104.0,138.0,162.0,154.0,137.0,147.0,163.0,163.0,141.0,146.0,151.0,156.0,108.0,54.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,19.0,60.0,174.0,178.0,341.0,245.0,208.0,180.0,152.0,142.0,238.0,222.0,175.0,110.0,53.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,53.0,110.0,128.0,141.0,143.0,142.0,163.0,156.0,153.0,185.0,225.0,139.0,127.0,106.0,54.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,60.0,110.0,161.0,205.0,230.0,422.0,253.0,355.0,285.0,307.0,250.0,165.0,109.0,33.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,60.0,110.0,161.0,204.0,236.0,375.0,366.0,316.0,185.0,229.0,222.0,111.0,101.0,34.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,61.0,111.0,163.0,206.0,241.0,362.0,268.0,262.0,320.0,259.0,132.0,129.0,114.0,56.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,61.0,111.0,163.0,206.0,241.0,259.0,271.0,389.0,291.0,331.0,261.0,189.0,129.0,59.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,58.0,108.0,146.0,237.0,295.0,261.0,294.0,400.0,259.0,351.0,208.0,166.0,115.0,63.0,55.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,61.0,117.0,112.0,164.0,210.0,244.0,266.0,272.0,258.0,293.0,288.0,166.0,115.0,63.0,59.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,101.0,162.0,194.0,161.0,161.0,263.0,266.0,265.0,359.0,207.0,262.0,178.0,135.0,23.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,21.0,125.0,142.0,154.0,225.0,220.0,383.0,313.0,218.0,181.0,241.0,239.0,292.0,105.0,23.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,21.0,101.0,112.0,257.0,205.0,242.0,349.0,255.0,351.0,244.0,209.0,166.0,115.0,105.0,38.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,112.0,162.0,206.0,241.0,350.0,256.0,330.0,373.0,314.0,249.0,195.0,111.0,64.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,55.0,115.0,162.0,144.0,145.0,283.0,348.0,269.0,260.0,244.0,295.0,165.0,246.0,65.0,39.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,21.0,61.0,111.0,162.0,290.0,241.0,262.0,267.0,263.0,381.0,350.0,166.0,116.0,66.0,60.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,59.0,108.0,163.0,171.0,180.0,281.0,404.0,445.0,392.0,314.0,279.0,257.0,181.0,66.0,24.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,112.0,163.0,209.0,244.0,425.0,432.0,420.0,244.0,326.0,290.0,202.0,132.0,40.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,112.0,163.0,207.0,242.0,350.0,271.0,266.0,248.0,213.0,169.0,118.0,109.0,25.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,112.0,163.0,319.0,387.0,389.0,352.0,349.0,229.0,260.0,242.0,182.0,133.0,53.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,111.0,162.0,205.0,240.0,425.0,256.0,261.0,244.0,209.0,260.0,185.0,109.0,41.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,111.0,163.0,202.0,383.0,249.0,268.0,250.0,390.0,297.0,167.0,205.0,145.0,69.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,21.0,61.0,111.0,262.0,290.0,369.0,418.0,414.0,416.0,248.0,336.0,270.0,186.0,109.0,41.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,21.0,60.0,172.0,244.0,198.0,278.0,223.0,407.0,386.0,389.0,342.0,251.0,203.0,120.0,67.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,99.0,277.0,162.0,207.0,243.0,264.0,267.0,261.0,244.0,211.0,168.0,118.0,67.0,25.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,20.0,59.0,109.0,160.0,187.0,374.0,422.0,436.0,432.0,370.0,297.0,216.0,136.0,119.0,64.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,54.0,111.0,132.0,142.0,129.0,129.0,137.0,143.0,154.0,128.0,135.0,152.0,159.0,106.0,64.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,53.0,111.0,115.0,201.0,203.0,240.0,192.0,199.0,279.0,181.0,120.0,136.0,117.0,125.0,25.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,19.0,58.0,248.0,219.0,202.0,236.0,258.0,265.0,263.0,243.0,211.0,168.0,203.0,118.0,67.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,55.0,111.0,152.0,170.0,173.0,265.0,325.0,228.0,386.0,246.0,210.0,268.0,204.0,134.0,54.0,11.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,19.0,58.0,108.0,159.0,314.0,317.0,433.0,359.0,425.0,360.0,209.0,167.0,191.0,122.0,54.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,50.0,57.0,185.0,262.0,314.0,314.0,308.0,359.0,296.0,298.0,315.0,202.0,170.0,109.0,25.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,57.0,106.0,158.0,312.0,360.0,407.0,267.0,263.0,243.0,210.0,168.0,117.0,67.0,25.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,18.0,56.0,106.0,157.0,201.0,237.0,407.0,358.0,394.0,243.0,208.0,259.0,117.0,67.0,25.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,18.0,56.0,106.0,157.0,201.0,236.0,258.0,267.0,262.0,242.0,256.0,190.0,135.0,118.0,62.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,50.0,103.0,128.0,146.0,145.0,143.0,154.0,158.0,155.0,145.0,149.0,136.0,132.0,118.0,63.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,48.0,107.0,129.0,143.0,142.0,143.0,154.0,158.0,155.0,146.0,147.0,134.0,133.0,118.0,63.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,47.0,106.0,129.0,142.0,136.0,127.0,142.0,155.0,146.0,142.0,147.0,145.0,134.0,118.0,62.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,46.0,109.0,149.0,145.0,146.0,144.0,154.0,157.0,155.0,146.0,150.0,148.0,133.0,117.0,61.0,9.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,87.0,103.0,154.0,199.0,234.0,258.0,354.0,340.0,322.0,208.0,167.0,116.0,65.0,23.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,114.0,161.0,214.0,200.0,237.0,259.0,268.0,386.0,272.0,261.0,167.0,116.0,106.0,38.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,52.0,102.0,154.0,200.0,236.0,259.0,263.0,257.0,241.0,208.0,166.0,115.0,64.0,23.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,51.0,101.0,153.0,314.0,370.0,318.0,389.0,308.0,162.0,149.0,150.0,156.0,116.0,59.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,51.0,100.0,152.0,197.0,232.0,256.0,431.0,346.0,298.0,215.0,197.0,132.0,115.0,58.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,99.0,176.0,230.0,258.0,178.0,322.0,222.0,174.0,201.0,149.0,154.0,136.0,115.0,57.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,99.0,146.0,147.0,146.0,142.0,152.0,157.0,155.0,159.0,160.0,134.0,133.0,118.0,21.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.0,88.0,167.0,303.0,194.0,360.0,338.0,376.0,344.0,353.0,279.0,225.0,174.0,116.0,56.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,98.0,145.0,134.0,133.0,134.0,145.0,156.0,152.0,140.0,145.0,144.0,133.0,113.0,55.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,100.0,145.0,133.0,138.0,152.0,231.0,334.0,381.0,316.0,299.0,223.0,181.0,112.0,54.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,46.0,95.0,147.0,192.0,228.0,252.0,262.0,337.0,236.0,146.0,145.0,132.0,112.0,53.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,95.0,143.0,131.0,143.0,141.0,151.0,155.0,153.0,144.0,147.0,150.0,130.0,111.0,52.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,94.0,143.0,132.0,134.0,132.0,137.0,151.0,144.0,177.0,230.0,143.0,135.0,110.0,51.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,93.0,144.0,131.0,135.0,150.0,150.0,154.0,152.0,142.0,189.0,262.0,187.0,112.0,18.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,83.0,92.0,207.0,294.0,337.0,238.0,374.0,355.0,208.0,301.0,158.0,160.0,93.0,28.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,88.0,126.0,118.0,131.0,211.0,332.0,337.0,345.0,359.0,274.0,165.0,116.0,98.0,47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,68.0,216.0,141.0,263.0,350.0,244.0,254.0,247.0,316.0,183.0,155.0,175.0,97.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,88.0,152.0,141.0,220.0,302.0,356.0,252.0,240.0,279.0,148.0,142.0,117.0,97.0,45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,84.0,138.0,204.0,266.0,216.0,246.0,413.0,394.0,362.0,197.0,155.0,182.0,53.0,44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,87.0,124.0,107.0,151.0,238.0,353.0,340.0,289.0,306.0,210.0,212.0,161.0,93.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,80.0,87.0,138.0,285.0,361.0,403.0,401.0,400.0,230.0,197.0,153.0,102.0,52.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,38.0,85.0,137.0,182.0,340.0,382.0,409.0,249.0,228.0,195.0,152.0,101.0,51.0,13.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,37.0,151.0,137.0,259.0,288.0,311.0,218.0,326.0,271.0,248.0,250.0,100.0,50.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,59.0,84.0,135.0,182.0,218.0,242.0,251.0,245.0,226.0,193.0,150.0,99.0,49.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,81.0,132.0,129.0,191.0,205.0,308.0,247.0,247.0,227.0,195.0,150.0,163.0,97.0,35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,79.0,131.0,128.0,139.0,165.0,145.0,149.0,146.0,138.0,144.0,148.0,140.0,96.0,33.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0,78.0,130.0,129.0,137.0,149.0,145.0,149.0,146.0,138.0,143.0,144.0,141.0,95.0,31.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,77.0,129.0,129.0,206.0,165.0,142.0,145.0,145.0,153.0,140.0,141.0,141.0,93.0,29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,77.0,148.0,203.0,182.0,132.0,167.0,286.0,246.0,370.0,195.0,153.0,145.0,71.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,31.0,77.0,129.0,175.0,212.0,236.0,245.0,240.0,219.0,187.0,143.0,91.0,42.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,30.0,77.0,128.0,175.0,211.0,235.0,244.0,239.0,219.0,186.0,141.0,90.0,84.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,29.0,75.0,127.0,269.0,345.0,348.0,252.0,296.0,258.0,261.0,141.0,89.0,40.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,29.0,74.0,185.0,259.0,207.0,231.0,356.0,341.0,255.0,255.0,138.0,157.0,64.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,28.0,73.0,193.0,172.0,208.0,232.0,242.0,237.0,292.0,181.0,137.0,155.0,79.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,27.0,72.0,124.0,286.0,203.0,309.0,358.0,314.0,336.0,280.0,137.0,151.0,82.0,19.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,66.0,131.0,123.0,241.0,291.0,307.0,305.0,219.0,148.0,147.0,152.0,136.0,81.0,17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,64.0,120.0,130.0,139.0,144.0,140.0,142.0,140.0,136.0,134.0,128.0,131.0,79.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,24.0,69.0,120.0,275.0,340.0,387.0,316.0,297.0,297.0,253.0,167.0,145.0,76.0,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23.0,68.0,119.0,166.0,271.0,371.0,387.0,324.0,294.0,174.0,131.0,143.0,77.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,59.0,67.0,183.0,218.0,337.0,324.0,359.0,359.0,294.0,208.0,150.0,127.0,73.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,57.0,116.0,131.0,126.0,131.0,132.0,133.0,137.0,135.0,180.0,216.0,139.0,48.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,55.0,115.0,158.0,223.0,271.0,255.0,129.0,174.0,293.0,170.0,125.0,124.0,71.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,64.0,178.0,254.0,285.0,377.0,342.0,362.0,206.0,270.0,125.0,119.0,45.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,116.0,152.0,135.0,162.0,185.0,153.0,186.0,234.0,239.0,207.0,117.0,65.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.0,111.0,127.0,128.0,131.0,147.0,150.0,135.0,129.0,133.0,140.0,115.0,63.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,105.0,126.0,127.0,140.0,134.0,137.0,135.0,133.0,130.0,127.0,120.0,24.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,97.0,110.0,157.0,193.0,216.0,226.0,219.0,198.0,163.0,174.0,118.0,23.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,107.0,129.0,142.0,138.0,192.0,342.0,253.0,276.0,252.0,180.0,66.0,21.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,57.0,167.0,213.0,236.0,210.0,222.0,305.0,194.0,161.0,114.0,103.0,54.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,56.0,106.0,154.0,293.0,306.0,337.0,236.0,294.0,169.0,180.0,103.0,51.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,106.0,143.0,177.0,315.0,340.0,344.0,216.0,315.0,220.0,164.0,104.0,51.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,89.0,180.0,200.0,235.0,213.0,223.0,216.0,193.0,157.0,170.0,59.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,37.0,53.0,164.0,124.0,135.0,130.0,132.0,131.0,135.0,124.0,122.0,105.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,36.0,99.0,121.0,179.0,272.0,205.0,218.0,210.0,188.0,152.0,106.0,56.0,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,87.0,157.0,242.0,284.0,209.0,267.0,257.0,262.0,230.0,183.0,89.0,22.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,81.0,155.0,146.0,282.0,205.0,301.0,269.0,258.0,207.0,165.0,111.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,48.0,170.0,245.0,271.0,348.0,214.0,208.0,185.0,238.0,139.0,94.0,35.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,89.0,96.0,143.0,178.0,305.0,287.0,284.0,301.0,194.0,175.0,81.0,33.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,46.0,207.0,142.0,275.0,312.0,209.0,204.0,181.0,144.0,97.0,48.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,23.0,89.0,147.0,284.0,249.0,311.0,297.0,332.0,177.0,135.0,160.0,75.0,26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,89.0,133.0,132.0,123.0,141.0,127.0,129.0,125.0,132.0,134.0,90.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,22.0,42.0,158.0,227.0,173.0,195.0,203.0,196.0,174.0,137.0,91.0,43.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,7.0,41.0,90.0,136.0,173.0,195.0,285.0,195.0,173.0,227.0,159.0,96.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,6.0,40.0,148.0,181.0,233.0,207.0,278.0,191.0,263.0,134.0,87.0,39.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,13.0,39.0,87.0,133.0,170.0,193.0,199.0,269.0,290.0,185.0,85.0,62.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,6.0,38.0,86.0,202.0,169.0,190.0,306.0,293.0,236.0,183.0,136.0,89.0,15.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,37.0,84.0,130.0,167.0,188.0,304.0,299.0,273.0,128.0,81.0,73.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,5.0,36.0,83.0,197.0,165.0,187.0,194.0,185.0,247.0,125.0,79.0,33.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,4.0,35.0,81.0,127.0,163.0,286.0,297.0,184.0,161.0,123.0,132.0,71.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,13.0,80.0,120.0,156.0,259.0,212.0,241.0,217.0,224.0,173.0,140.0,63.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,11.0,78.0,119.0,134.0,121.0,131.0,123.0,121.0,136.0,148.0,99.0,66.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,10.0,76.0,119.0,119.0,116.0,118.0,130.0,119.0,130.0,198.0,114.0,27.0,1.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,69.0,118.0,121.0,117.0,114.0,213.0,248.0,232.0,115.0,69.0,41.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,4.0,71.0,116.0,116.0,146.0,143.0,146.0,146.0,180.0,168.0,106.0,62.0,1.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,28.0,118.0,182.0,155.0,177.0,181.0,210.0,124.0,118.0,109.0,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,2.0,27.0,71.0,116.0,152.0,287.0,180.0,171.0,224.0,178.0,115.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,1.0,62.0,111.0,121.0,141.0,122.0,124.0,216.0,201.0,108.0,101.0,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,1.0,25.0,69.0,113.0,149.0,172.0,178.0,169.0,144.0,106.0,60.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,54.0,109.0,115.0,194.0,229.0,213.0,119.0,175.0,113.0,101.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,60.0,107.0,114.0,113.0,114.0,115.0,114.0,129.0,132.0,100.0,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,22.0,113.0,185.0,219.0,165.0,171.0,246.0,137.0,99.0,55.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,21.0,63.0,107.0,216.0,163.0,170.0,160.0,134.0,97.0,53.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.0,20.0,62.0,105.0,141.0,162.0,168.0,158.0,132.0,95.0,51.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,54.0,104.0,137.0,209.0,245.0,245.0,239.0,203.0,163.0,98.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,19.0,61.0,104.0,214.0,195.0,160.0,134.0,147.0,138.0,96.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,49.0,101.0,135.0,206.0,239.0,247.0,233.0,197.0,157.0,93.0,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.0,0.0,28.0,94.0,158.0,215.0,248.0,245.0,152.0,126.0,89.0,75.0,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.0,0.0,16.0,57.0,99.0,178.0,206.0,246.0,244.0,214.0,150.0,80.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.0,25.0,90.0,153.0,209.0,242.0,240.0,148.0,122.0,85.0,69.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,23.0,88.0,158.0,153.0,199.0,202.0,196.0,131.0,143.0,81.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,38.0,86.0,147.0,116.0,170.0,120.0,115.0,118.0,112.0,85.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,20.0,84.0,148.0,176.0,188.0,115.0,117.0,149.0,119.0,76.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,12.0,50.0,91.0,194.0,182.0,151.0,133.0,137.0,116.0,75.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,11.0,75.0,150.0,167.0,158.0,131.0,117.0,120.0,108.0,77.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.0,30.0,82.0,112.0,114.0,111.0,110.0,109.0,123.0,105.0,74.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,29.0,91.0,135.0,112.0,107.0,107.0,108.0,111.0,96.0,72.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,14.0,73.0,135.0,179.0,208.0,215.0,200.0,169.0,112.0,48.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,13.0,70.0,133.0,163.0,200.0,188.0,179.0,165.0,109.0,46.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,13.0,68.0,142.0,136.0,182.0,199.0,177.0,159.0,120.0,56.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,11.0,62.0,136.0,186.0,219.0,201.0,184.0,169.0,120.0,53.0,2.0,0.0,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,39.0,78.0,148.0,174.0,228.0,202.0,171.0,114.0,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,10.0,61.0,123.0,166.0,194.0,201.0,185.0,154.0,98.0,48.0,0.0,0.0,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,79.0,111.0,121.0,110.0,110.0,111.0,128.0,94.0,54.0,0.0,0.0,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,57.0,73.0,161.0,189.0,196.0,117.0,144.0,57.0,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,15.0,66.0,94.0,109.0,110.0,142.0,162.0,111.0,89.0,48.0,0.0,0.0,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,53.0,126.0,156.0,183.0,190.0,174.0,138.0,105.0,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,5.0,38.0,83.0,132.0,181.0,199.0,214.0,150.0,97.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,8.0,67.0,120.0,144.0,226.0,179.0,164.0,172.0,97.0,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,9.0,47.0,105.0,138.0,173.0,182.0,153.0,136.0,83.0,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,4.0,45.0,103.0,150.0,173.0,179.0,163.0,131.0,78.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,6.0,43.0,101.0,148.0,170.0,177.0,105.0,127.0,75.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,1.0,41.0,60.0,141.0,167.0,174.0,160.0,121.0,72.0,22.0,0.0,0.0,0.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,39.0,95.0,140.0,168.0,182.0,155.0,119.0,78.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.0,0.0,0.0,22.0,57.0,87.0,118.0,110.0,99.0,75.0,41.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,22.0,56.0,86.0,148.0,162.0,102.0,89.0,69.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,109.0,85.0,103.0,107.0,96.0,72.0,63.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,32.0,87.0,83.0,102.0,162.0,146.0,114.0,62.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,30.0,85.0,130.0,153.0,104.0,93.0,69.0,36.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,45.0,79.0,93.0,151.0,102.0,91.0,67.0,35.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,16.0,49.0,78.0,148.0,100.0,138.0,118.0,72.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,41.0,76.0,123.0,135.0,163.0,131.0,113.0,53.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,14.0,46.0,74.0,92.0,96.0,86.0,62.0,31.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,13.0,45.0,73.0,91.0,95.0,85.0,61.0,30.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,12.0,43.0,72.0,90.0,94.0,83.0,60.0,29.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,11.0,42.0,112.0,88.0,92.0,81.0,58.0,28.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,31.0,73.0,123.0,137.0,140.0,127.0,93.0,59.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,29.0,65.0,108.0,86.0,138.0,125.0,91.0,42.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,10.0,39.0,66.0,84.0,88.0,78.0,55.0,25.0,2.0,0.0,0.0,0.0,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,37.0,103.0,127.0,91.0,87.0,75.0,50.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,9.0,36.0,71.0,128.0,86.0,75.0,86.0,38.0,2.0,0.0,0.0,0.0,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,35.0,63.0,80.0,84.0,74.0,52.0,22.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,66.0,92.0,112.0,90.0,116.0,50.0,21.0,1.0,0.0,0.0,0.0,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,32.0,59.0,77.0,127.0,112.0,49.0,20.0,1.0,0.0,0.0,0.0,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,32.0,105.0,125.0,123.0,123.0,48.0,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,20.0,64.0,91.0,101.0,129.0,86.0,70.0,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,6.0,58.0,78.0,107.0,120.0,120.0,76.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,17.0,56.0,74.0,84.0,108.0,82.0,68.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,14.0,45.0,98.0,110.0,75.0,65.0,44.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,4.0,26.0,52.0,69.0,74.0,64.0,43.0,35.0,0.0,0.0,0.0,0.0,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,42.0,51.0,108.0,73.0,102.0,81.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,11.0,25.0,50.0,67.0,72.0,62.0,86.0,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,0.0,0.0,0.0,0.0,5.0,24.0,49.0,66.0,112.0,62.0,41.0,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,0.0,0.0,0.0,0.0,3.0,23.0,48.0,65.0,70.0,61.0,40.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,2.0,22.0,47.0,64.0,69.0,60.0,73.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,5.0,48.0,67.0,105.0,68.0,60.0,39.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,20.0,81.0,100.0,107.0,59.0,39.0,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,2.0,20.0,45.0,98.0,105.0,58.0,38.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.0,0.0,0.0,0.0,1.0,41.0,84.0,98.0,66.0,58.0,38.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,0.0,0.0,0.0,0.0,18.0,43.0,96.0,65.0,57.0,37.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,0.0,0.0,0.0,0.0,42.0,72.0,72.0,75.0,70.0,65.0,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,72.0,71.0,75.0,70.0,66.0,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,17.0,41.0,58.0,64.0,56.0,36.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,0.0,0.0,0.0,0.0,39.0,69.0,70.0,74.0,69.0,65.0,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,15.0,40.0,57.0,62.0,54.0,35.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,15.0,39.0,56.0,62.0,54.0,35.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,36.0,67.0,71.0,69.0,81.0,68.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,14.0,38.0,55.0,61.0,53.0,35.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,22.0,71.0,95.0,106.0,86.0,68.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,13.0,53.0,95.0,79.0,91.0,64.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,36.0,63.0,97.0,59.0,52.0,34.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,12.0,36.0,53.0,59.0,52.0,34.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,12.0,35.0,53.0,59.0,52.0,34.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,12.0,35.0,52.0,59.0,52.0,34.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,12.0,35.0,52.0,58.0,52.0,34.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,11.0,35.0,52.0,59.0,84.0,72.0,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,11.0,34.0,52.0,58.0,52.0,34.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,11.0,34.0,51.0,58.0,80.0,34.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,11.0,33.0,51.0,57.0,51.0,34.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,11.0,33.0,51.0,58.0,52.0,56.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,11.0,65.0,83.0,58.0,52.0,57.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,0.0,0.0,0.0,0.0,27.0,55.0,51.0,58.0,52.0,73.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,0.0,0.0,0.0,0.0,11.0,55.0,83.0,94.0,85.0,58.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,0.0,0.0,0.0,0.0,33.0,34.0,77.0,83.0,53.0,59.0,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,11.0,59.0,89.0,59.0,92.0,36.0,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,26.0,55.0,52.0,59.0,54.0,60.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0}','Wh/m2','This is the Global Horizontal Radiation in Wh/m2, sometimes referred to as GHI in the literature. It is the total amount of direct and diffuse solar radiation in Wh/m2 received on a horizontal surface during the number of minutes preceding the time indicated. It should have a minimum value of 0; missing value for this field is 9999.'),
('Twenthe Enschede AP','NL','hour','Direct Normal Radiation','float',8760,'{0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.0,251.0,10.0,0.0,0.0,0.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,354.0,109.0,186.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,330.0,454.0,489.0,473.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.0,0.0,12.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,333.0,458.0,495.0,482.0,390.0,181.0,0.0,0.0,0.0,0.0,0.0,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,54.0,372.0,340.0,317.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,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.0,0.0,104.0,0.0,303.0,373.0,19.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,29.0,179.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,5.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,336.0,439.0,397.0,245.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.0,320.0,529.0,568.0,551.0,405.0,254.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.0,227.0,371.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,11.0,0.0,19.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,8.0,160.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,142.0,359.0,541.0,579.0,571.0,417.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.0,392.0,526.0,557.0,541.0,466.0,304.0,58.0,0.0,0.0,0.0,0.0,0.0,0.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,16.0,22.0,291.0,112.0,221.0,58.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206.0,439.0,559.0,594.0,580.0,515.0,344.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.0,0.0,21.0,249.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.0,457.0,539.0,332.0,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,24.0,95.0,201.0,275.0,310.0,218.0,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,0.0,0.0,0.0,0.0,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.0,31.0,30.0,15.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,7.0,19.0,32.0,31.0,15.0,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,8.0,20.0,33.0,0.0,19.0,57.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,6.0,18.0,9.0,2.0,14.0,112.0,134.0,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,6.0,82.0,305.0,173.0,7.0,16.0,77.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,38.0,229.0,12.0,15.0,17.0,16.0,25.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,35.0,39.0,0.0,0.0,7.0,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,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,37.0,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.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,85.0,76.0,144.0,221.0,132.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,62.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,0.0,0.0,0.0,0.0,0.0,3.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,39.0,0.0,15.0,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.0,322.0,469.0,615.0,698.0,689.0,621.0,435.0,259.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.0,4.0,433.0,453.0,709.0,715.0,643.0,498.0,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,0.0,0.0,0.0,66.0,342.0,575.0,717.0,729.0,719.0,648.0,501.0,262.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,254.0,404.0,581.0,624.0,627.0,430.0,373.0,211.0,0.0,0.0,0.0,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,78.0,191.0,418.0,469.0,163.0,397.0,459.0,265.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,128.0,353.0,594.0,703.0,720.0,600.0,419.0,515.0,294.0,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,3.0,45.0,42.0,0.0,0.0,0.0,0.0,216.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.0,402.0,20.0,18.0,27.0,572.0,659.0,396.0,69.0,0.0,0.0,0.0,0.0,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,47.0,19.0,46.0,0.0,40.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,172.0,412.0,399.0,455.0,635.0,625.0,457.0,96.0,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,0.0,0.0,0.0,0.0,65.0,247.0,388.0,494.0,284.0,266.0,280.0,210.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,222.0,376.0,0.0,0.0,184.0,12.0,40.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0,0.0,2.0,0.0,0.0,0.0,0.0,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,39.0,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,15.0,36.0,383.0,95.0,451.0,349.0,310.0,3.0,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,234.0,12.0,36.0,166.0,95.0,391.0,587.0,432.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,176.0,428.0,674.0,762.0,773.0,762.0,657.0,424.0,338.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,530.0,721.0,574.0,491.0,466.0,325.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,158.0,361.0,100.0,607.0,512.0,28.0,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,1.0,177.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,275.0,57.0,457.0,454.0,47.0,48.0,12.0,143.0,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,0.0,0.0,0.0,0.0,27.0,156.0,450.0,690.0,512.0,111.0,500.0,381.0,169.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,21.0,189.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,519.0,22.0,1.0,1.0,0.0,0.0,10.0,129.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,364.0,545.0,357.0,403.0,5.0,516.0,389.0,76.0,8.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,296.0,371.0,44.0,29.0,499.0,54.0,20.0,23.0,454.0,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,90.0,325.0,0.0,2.0,57.0,462.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,3.0,44.0,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,1.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,84.0,374.0,601.0,751.0,761.0,766.0,764.0,692.0,372.0,305.0,178.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,109.0,54.0,592.0,620.0,386.0,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,0.0,0.0,0.0,155.0,44.0,1.0,1.0,210.0,28.0,379.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.0,451.0,600.0,742.0,518.0,82.0,615.0,562.0,141.0,418.0,223.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.0,459.0,660.0,710.0,573.0,641.0,54.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,4.0,25.0,66.0,63.0,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,421.0,609.0,219.0,531.0,57.0,1.0,360.0,350.0,246.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,7.0,54.0,6.0,56.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,203.0,416.0,682.0,752.0,838.0,769.0,842.0,802.0,703.0,450.0,258.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,197.0,409.0,619.0,754.0,766.0,769.0,767.0,816.0,708.0,520.0,264.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,210.0,422.0,685.0,755.0,839.0,842.0,835.0,799.0,703.0,528.0,309.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,259.0,493.0,682.0,759.0,798.0,811.0,717.0,484.0,488.0,510.0,294.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,12.0,20.0,62.0,66.0,68.0,67.0,52.0,564.0,524.0,273.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,12.0,20.0,24.0,3.0,8.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,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,81.0,468.0,79.0,545.0,767.0,740.0,609.0,455.0,288.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,13.0,20.0,63.0,67.0,68.0,67.0,64.0,41.0,397.0,300.0,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,36.0,221.0,535.0,742.0,767.0,770.0,768.0,752.0,568.0,331.0,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,3.0,130.0,161.0,291.0,344.0,325.0,76.0,11.0,139.0,165.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,548.0,620.0,56.0,66.0,65.0,54.0,572.0,525.0,331.0,69.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,307.0,511.0,678.0,621.0,57.0,67.0,66.0,64.0,85.0,459.0,326.0,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,1.0,14.0,40.0,54.0,366.0,56.0,24.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,2.0,14.0,40.0,61.0,64.0,25.0,3.0,2.0,576.0,549.0,336.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,262.0,28.0,40.0,62.0,66.0,66.0,65.0,80.0,535.0,359.0,39.0,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,75.0,142.0,219.0,261.0,285.0,414.0,452.0,339.0,303.0,98.0,0.0,0.0,0.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,17.0,94.0,184.0,285.0,325.0,443.0,386.0,186.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,2.0,23.0,55.0,406.0,55.0,53.0,504.0,501.0,337.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,5.0,29.0,3.0,5.0,24.0,65.0,65.0,22.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,7.0,0.0,0.0,6.0,25.0,68.0,42.0,26.0,7.0,387.0,325.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,67.0,314.0,532.0,695.0,804.0,762.0,631.0,680.0,613.0,722.0,562.0,337.0,75.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.0,332.0,560.0,694.0,764.0,825.0,771.0,769.0,828.0,724.0,563.0,346.0,78.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,272.0,524.0,653.0,766.0,843.0,771.0,769.0,831.0,724.0,567.0,345.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.0,309.0,492.0,625.0,746.0,817.0,836.0,831.0,806.0,723.0,574.0,400.0,113.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0,7.0,17.0,50.0,527.0,631.0,778.0,812.0,784.0,699.0,562.0,395.0,108.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.0,334.0,459.0,521.0,54.0,65.0,20.0,65.0,62.0,21.0,321.0,195.0,0.0,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,16.0,49.0,524.0,741.0,638.0,665.0,654.0,577.0,468.0,340.0,121.0,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,17.0,58.0,63.0,65.0,20.0,65.0,54.0,598.0,585.0,389.0,125.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,31.0,45.0,45.0,45.0,35.0,440.0,366.0,126.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,205.0,366.0,434.0,590.0,542.0,472.0,428.0,407.0,247.0,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,14.0,0.0,1.0,1.0,3.0,4.0,3.0,1.0,1.0,33.0,95.0,0.0,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,33.0,1.0,1.0,5.0,63.0,545.0,452.0,21.0,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,4.0,33.0,1.0,1.0,5.0,63.0,545.0,452.0,21.0,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,33.0,163.0,22.0,26.0,392.0,46.0,601.0,568.0,609.0,409.0,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,33.0,163.0,22.0,26.0,391.0,46.0,601.0,569.0,610.0,412.0,148.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,4.0,15.0,11.0,3.0,1.0,0.0,16.0,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,34.0,163.0,22.0,26.0,390.0,47.0,601.0,569.0,613.0,416.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.0,0.0,50.0,4.0,27.0,27.0,5.0,1.0,1.0,34.0,0.0,156.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.0,343.0,90.0,595.0,817.0,809.0,770.0,704.0,53.0,2.0,35.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,181.0,437.0,605.0,733.0,814.0,775.0,542.0,675.0,494.0,571.0,387.0,430.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.0,327.0,562.0,175.0,206.0,682.0,807.0,783.0,662.0,579.0,301.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,238.0,445.0,597.0,728.0,832.0,768.0,836.0,793.0,692.0,655.0,411.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,242.0,446.0,609.0,733.0,820.0,768.0,769.0,837.0,780.0,597.0,89.0,302.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,5.0,10.0,4.0,4.0,4.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,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,35.0,8.0,263.0,6.0,4.0,2.0,0.0,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,249.0,413.0,489.0,673.0,613.0,511.0,12.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,35.0,6.0,9.0,6.0,53.0,523.0,325.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,254.0,294.0,562.0,608.0,206.0,50.0,385.0,12.0,54.0,5.0,74.0,99.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,390.0,506.0,650.0,222.0,12.0,27.0,62.0,532.0,165.0,136.0,348.0,189.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.0,422.0,624.0,528.0,60.0,500.0,740.0,597.0,716.0,425.0,74.0,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,21.0,0.0,410.0,485.0,105.0,418.0,60.0,44.0,50.0,190.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,26.0,236.0,314.0,0.0,50.0,465.0,61.0,53.0,537.0,476.0,569.0,611.0,467.0,260.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.0,270.0,469.0,403.0,456.0,720.0,731.0,228.0,61.0,662.0,602.0,74.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,244.0,496.0,633.0,739.0,799.0,821.0,830.0,821.0,807.0,740.0,622.0,470.0,264.0,42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.0,272.0,470.0,629.0,738.0,799.0,817.0,758.0,487.0,633.0,2.0,404.0,305.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,191.0,350.0,401.0,73.0,4.0,30.0,215.0,469.0,4.0,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,37.0,279.0,478.0,520.0,576.0,470.0,532.0,207.0,173.0,26.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,3.0,1.0,5.0,265.0,523.0,524.0,164.0,378.0,458.0,265.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,281.0,477.0,627.0,739.0,810.0,798.0,842.0,832.0,780.0,658.0,660.0,463.0,281.0,38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,283.0,476.0,627.0,740.0,807.0,802.0,732.0,579.0,224.0,3.0,19.0,103.0,247.0,36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,207.0,57.0,409.0,2.0,631.0,589.0,778.0,819.0,781.0,554.0,58.0,359.0,278.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.0,284.0,402.0,59.0,635.0,777.0,831.0,836.0,826.0,819.0,735.0,607.0,489.0,293.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,291.0,485.0,615.0,733.0,814.0,834.0,811.0,800.0,805.0,740.0,629.0,414.0,253.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,394.0,575.0,144.0,632.0,716.0,793.0,814.0,797.0,602.0,75.0,396.0,270.0,62.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,267.0,497.0,638.0,736.0,797.0,789.0,821.0,815.0,744.0,558.0,637.0,506.0,288.0,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,3.0,15.0,368.0,22.0,92.0,486.0,44.0,27.0,37.0,231.0,0.0,0.0,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,8.0,221.0,92.0,491.0,725.0,599.0,74.0,0.0,95.0,0.0,0.0,0.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,196.0,6.0,6.0,102.0,545.0,662.0,505.0,263.0,70.0,0.0,0.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,9.0,5.0,61.0,494.0,22.0,19.0,326.0,186.0,46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.0,275.0,454.0,368.0,68.0,639.0,624.0,61.0,13.0,222.0,6.0,0.0,0.0,0.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,173.0,0.0,0.0,1.0,3.0,4.0,4.0,12.0,492.0,423.0,1.0,0.0,0.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.0,528.0,707.0,781.0,696.0,13.0,5.0,60.0,6.0,19.0,23.0,208.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.0,475.0,625.0,563.0,693.0,225.0,581.0,717.0,729.0,603.0,61.0,158.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,18.0,6.0,3.0,104.0,22.0,103.0,3.0,3.0,1.0,0.0,1.0,0.0,0.0,0.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,103.0,23.0,487.0,194.0,50.0,362.0,114.0,303.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,239.0,401.0,634.0,732.0,552.0,260.0,6.0,9.0,3.0,73.0,2.0,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.0,1.0,73.0,3.0,5.0,10.0,6.0,29.0,143.0,1.0,0.0,0.0,65.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52.0,286.0,372.0,564.0,657.0,559.0,199.0,167.0,60.0,526.0,440.0,174.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,1.0,2.0,374.0,26.0,25.0,4.0,33.0,117.0,107.0,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,3.0,104.0,5.0,4.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,33.0,19.0,60.0,532.0,465.0,664.0,553.0,59.0,412.0,246.0,0.0,0.0,0.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,371.0,23.0,9.0,4.0,6.0,29.0,17.0,2.0,0.0,0.0,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,369.0,22.0,10.0,22.0,368.0,74.0,2.0,265.0,128.0,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,322.0,73.0,193.0,25.0,44.0,30.0,2.0,22.0,14.0,17.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,21.0,353.0,628.0,598.0,53.0,528.0,223.0,25.0,163.0,366.0,108.0,246.0,63.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.0,0.0,1.0,1.0,4.0,10.0,9.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,28.0,168.0,170.0,7.0,42.0,73.0,527.0,506.0,288.0,91.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.0,254.0,480.0,628.0,746.0,805.0,825.0,829.0,797.0,811.0,751.0,622.0,400.0,327.0,77.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.0,253.0,515.0,524.0,3.0,628.0,725.0,760.0,591.0,712.0,769.0,628.0,543.0,270.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.0,71.0,4.0,6.0,7.0,9.0,5.0,4.0,3.0,1.0,106.0,276.0,73.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,244.0,410.0,556.0,693.0,574.0,489.0,55.0,222.0,5.0,6.0,19.0,107.0,240.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,100.0,412.0,104.0,172.0,208.0,6.0,2.0,365.0,271.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,0.0,300.0,135.0,32.0,255.0,562.0,463.0,582.0,484.0,49.0,528.0,51.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,42.0,29.0,6.0,5.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.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,29.0,102.0,496.0,4.0,6.0,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,3.0,4.0,5.0,5.0,5.0,4.0,550.0,506.0,505.0,284.0,86.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.0,254.0,475.0,614.0,721.0,786.0,807.0,813.0,809.0,793.0,736.0,664.0,514.0,288.0,82.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.0,235.0,467.0,616.0,723.0,785.0,807.0,816.0,809.0,793.0,735.0,663.0,510.0,285.0,79.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,233.0,463.0,614.0,728.0,800.0,815.0,814.0,816.0,794.0,734.0,641.0,505.0,281.0,78.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,141.0,417.0,611.0,718.0,789.0,807.0,818.0,813.0,796.0,734.0,637.0,507.0,279.0,81.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,0.0,0.0,0.0,3.0,4.0,3.0,261.0,467.0,102.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,184.0,334.0,69.0,2.0,1.0,4.0,5.0,59.0,513.0,512.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,4.0,9.0,9.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,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.0,25.0,485.0,220.0,560.0,771.0,731.0,631.0,398.0,275.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.0,3.0,4.0,5.0,368.0,102.0,474.0,570.0,490.0,501.0,272.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,280.0,31.0,515.0,734.0,475.0,722.0,782.0,690.0,729.0,625.0,482.0,271.0,68.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,212.0,399.0,596.0,710.0,781.0,803.0,811.0,807.0,771.0,699.0,654.0,494.0,247.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,239.0,250.0,306.0,2.0,28.0,253.0,550.0,101.0,205.0,419.0,434.0,21.0,253.0,57.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,204.0,392.0,609.0,720.0,784.0,807.0,809.0,806.0,790.0,728.0,632.0,487.0,259.0,59.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117.0,389.0,610.0,713.0,749.0,669.0,474.0,210.0,100.0,509.0,71.0,369.0,260.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,2.0,4.0,5.0,5.0,517.0,601.0,726.0,628.0,487.0,256.0,53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196.0,388.0,610.0,706.0,778.0,803.0,810.0,807.0,788.0,726.0,621.0,490.0,255.0,50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,191.0,382.0,606.0,715.0,784.0,813.0,812.0,812.0,741.0,537.0,628.0,470.0,205.0,39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188.0,368.0,605.0,713.0,762.0,802.0,810.0,805.0,787.0,663.0,134.0,99.0,229.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,50.0,26.0,45.0,16.0,218.0,517.0,37.0,44.0,0.0,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,191.0,410.0,611.0,715.0,664.0,252.0,461.0,91.0,435.0,83.0,568.0,502.0,273.0,30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.0,0.0,394.0,174.0,8.0,6.0,8.0,86.0,23.0,0.0,111.0,267.0,32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.0,240.0,571.0,508.0,88.0,215.0,9.0,16.0,474.0,705.0,612.0,490.0,261.0,27.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185.0,315.0,48.0,440.0,12.0,4.0,367.0,29.0,28.0,5.0,0.0,92.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.0,398.0,622.0,646.0,567.0,219.0,101.0,598.0,250.0,590.0,480.0,18.0,248.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,30.0,157.0,7.0,29.0,370.0,4.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,3.0,33.0,29.0,368.0,4.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.0,0.0,69.0,446.0,469.0,50.0,517.0,487.0,442.0,306.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,4.0,4.0,5.0,6.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146.0,355.0,584.0,548.0,646.0,469.0,12.0,5.0,4.0,1.0,0.0,359.0,212.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,142.0,352.0,584.0,693.0,723.0,801.0,811.0,808.0,784.0,714.0,594.0,412.0,205.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.0,349.0,579.0,691.0,751.0,797.0,807.0,803.0,781.0,711.0,595.0,401.0,198.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.0,345.0,574.0,516.0,725.0,795.0,806.0,800.0,745.0,710.0,596.0,395.0,196.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.0,196.0,315.0,599.0,763.0,756.0,503.0,634.0,146.0,588.0,537.0,364.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,4.0,6.0,4.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,4.0,4.0,2.0,0.0,0.0,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,463.0,154.0,205.0,635.0,478.0,595.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,40.0,6.0,7.0,59.0,218.0,539.0,400.0,568.0,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.0,0.0,24.0,1.0,3.0,4.0,4.0,3.0,89.0,3.0,0.0,222.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,131.0,9.0,100.0,518.0,101.0,30.0,30.0,0.0,312.0,158.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0,65.0,0.0,66.0,415.0,101.0,472.0,665.0,753.0,671.0,535.0,331.0,153.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0,314.0,540.0,653.0,739.0,789.0,799.0,792.0,764.0,697.0,584.0,356.0,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,138.0,144.0,140.0,100.0,460.0,73.0,385.0,489.0,219.0,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,2.0,428.0,158.0,7.0,76.0,467.0,4.0,0.0,74.0,90.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,23.0,510.0,143.0,69.0,43.0,30.0,74.0,539.0,500.0,339.0,124.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0,298.0,523.0,676.0,747.0,789.0,803.0,789.0,756.0,610.0,113.0,70.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,288.0,454.0,75.0,86.0,553.0,803.0,722.0,406.0,2.0,0.0,241.0,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,22.0,20.0,65.0,142.0,212.0,479.0,2.0,19.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,64.0,228.0,464.0,643.0,670.0,687.0,778.0,690.0,609.0,67.0,118.0,4.0,71.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.0,284.0,517.0,667.0,745.0,759.0,772.0,793.0,766.0,683.0,527.0,329.0,88.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,295.0,515.0,665.0,730.0,783.0,793.0,785.0,750.0,679.0,545.0,305.0,0.0,0.0,0.0,0.0,0.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.0,4.0,5.0,3.0,0.0,40.0,211.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,272.0,488.0,633.0,728.0,699.0,200.0,557.0,416.0,29.0,25.0,0.0,0.0,0.0,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.0,489.0,575.0,10.0,7.0,76.0,4.0,0.0,0.0,278.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.0,69.0,200.0,635.0,195.0,601.0,380.0,2.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,241.0,397.0,532.0,145.0,21.0,35.0,2.0,451.0,70.0,376.0,304.0,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,100.0,454.0,506.0,3.0,1.0,1.0,1.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,22.0,0.0,393.0,652.0,724.0,777.0,790.0,779.0,729.0,662.0,511.0,272.0,37.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,245.0,487.0,483.0,386.0,10.0,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,261.0,19.0,136.0,32.0,2.0,529.0,527.0,73.0,32.0,253.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,32.0,6.0,78.0,452.0,411.0,72.0,291.0,205.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0,124.0,48.0,442.0,3.0,1.0,2.0,323.0,418.0,261.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,199.0,0.0,0.0,4.0,495.0,91.0,420.0,143.0,508.0,247.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,186.0,0.0,31.0,34.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,213.0,17.0,304.0,70.0,30.0,69.0,149.0,635.0,607.0,333.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,208.0,413.0,603.0,717.0,727.0,773.0,757.0,714.0,606.0,417.0,210.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0,129.0,2.0,3.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,77.0,4.0,2.0,127.0,84.0,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,355.0,387.0,411.0,569.0,427.0,7.0,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,1.0,2.0,5.0,75.0,395.0,64.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0,0.0,4.0,34.0,33.0,443.0,63.0,309.0,120.0,0.0,0.0,0.0,0.0,0.0,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,34.0,20.0,138.0,0.0,0.0,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,28.0,0.0,2.0,2.0,3.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.0,1.0,32.0,33.0,3.0,0.0,0.0,98.0,148.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,137.0,391.0,519.0,158.0,542.0,461.0,475.0,394.0,61.0,279.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,132.0,385.0,558.0,694.0,717.0,755.0,742.0,657.0,453.0,410.0,131.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.0,374.0,583.0,694.0,742.0,725.0,736.0,659.0,282.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,145.0,363.0,569.0,674.0,743.0,601.0,71.0,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,102.0,364.0,582.0,606.0,670.0,681.0,693.0,501.0,341.0,335.0,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,5.0,28.0,0.0,1.0,5.0,578.0,649.0,547.0,331.0,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,0.0,0.0,0.0,0.0,0.0,143.0,3.0,1.0,34.0,342.0,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,0.0,0.0,63.0,355.0,556.0,605.0,726.0,737.0,529.0,75.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,105.0,343.0,556.0,512.0,85.0,569.0,715.0,478.0,530.0,303.0,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,86.0,342.0,555.0,674.0,730.0,743.0,721.0,624.0,417.0,285.0,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,84.0,108.0,32.0,1.0,1.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,32.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.0,314.0,425.0,411.0,39.0,56.0,40.0,34.0,284.0,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,255.0,484.0,594.0,637.0,535.0,369.0,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,55.0,304.0,418.0,405.0,39.0,41.0,39.0,33.0,277.0,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,1.0,16.0,12.0,13.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,3.0,4.0,60.0,60.0,77.0,67.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,15.0,12.0,13.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,328.0,489.0,469.0,483.0,460.0,553.0,299.0,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,17.0,0.0,397.0,613.0,521.0,683.0,668.0,578.0,416.0,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,11.0,68.0,531.0,688.0,655.0,451.0,349.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,246.0,465.0,571.0,598.0,498.0,346.0,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,166.0,418.0,527.0,637.0,640.0,548.0,393.0,142.0,0.0,0.0,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,279.0,463.0,602.0,674.0,690.0,665.0,544.0,392.0,132.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,233.0,396.0,608.0,683.0,696.0,663.0,566.0,425.0,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,10.0,32.0,37.0,38.0,35.0,14.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,8.0,63.0,417.0,462.0,439.0,362.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,292.0,474.0,452.0,436.0,74.0,27.0,299.0,94.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,130.0,210.0,281.0,320.0,172.0,79.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,13.0,55.0,67.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,7.0,29.0,35.0,36.0,34.0,13.0,5.0,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,0.0,142.0,349.0,529.0,628.0,646.0,609.0,413.0,299.0,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,28.0,34.0,32.0,0.0,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,218.0,431.0,551.0,620.0,516.0,426.0,487.0,326.0,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,268.0,26.0,34.0,35.0,32.0,21.0,220.0,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,2.0,30.0,161.0,113.0,193.0,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,42.0,160.0,290.0,139.0,278.0,283.0,131.0,130.0,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,4.0,52.0,396.0,33.0,62.0,374.0,290.0,35.0,0.0,0.0,0.0,0.0,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,13.0,32.0,34.0,30.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,4.0,13.0,32.0,33.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.0,30.0,29.0,368.0,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,3.0,16.0,20.0,136.0,26.0,333.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.0,446.0,561.0,475.0,288.0,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,0.0,0.0,0.0,0.0,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,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,31.0,27.0,7.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,1.0,10.0,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,80.0,346.0,499.0,430.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,24.0,79.0,115.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.0,334.0,387.0,57.0,130.0,332.0,308.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,234.0,86.0,16.0,26.0,15.0,6.0,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.0,0.0,0.0,21.0,0.0,12.0,0.0,26.0,15.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.0,0.0,0.0,0.0,14.0,417.0,550.0,507.0,398.0,181.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,19.0,237.0,391.0,433.0,535.0,389.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,268.0,120.0,410.0,245.0,0.0,0.0,0.0,0.0,0.0,0.0,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,177.0,268.0,394.0,123.0,463.0,359.0,103.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,216.0,381.0,324.0,23.0,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,216.0,410.0,491.0,438.0,467.0,354.0,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,254.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,11.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.0,0.0,0.0,0.0,0.0,149.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,153.0,379.0,358.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.0,10.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,50.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,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,126.0,314.0,469.0,492.0,454.0,291.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.0,303.0,468.0,488.0,450.0,269.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.0,315.0,468.0,492.0,454.0,282.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,301.0,442.0,500.0,395.0,174.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.0,245.0,348.0,6.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.0,0.0,276.0,417.0,41.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,43.0,245.0,218.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,217.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,35.0,0.0,0.0,0.0,0.0,201.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,9.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,18.0,0.0,382.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,267.0,327.0,0.0,95.0,0.0,135.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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}','Wh/m2','This is the Direct Normal Radiation in Wh/m2. (Amount of solar radiation in Wh/m2 received directly from the solar disk on a surface perpendicular to the sun''s rays, during the number of minutes preceding the time indicated.) If the field is “missing (≥ 9999)” or invalid (<0), it is set to 0. Counts of such missing values are totaled and presented at the end of the runperiod.'),
('Twenthe Enschede AP','NL','hour','Dry Bulb Temperature','float',8760,'{5.0,5.0,5.4,6.7,6.5,5.2,4.2,3.9,2.9,3.7,5.4,5.7,5.7,5.7,6.2,5.4,2.4,4.9,4.4,4.2,4.4,4.4,3.7,3.7,3.7,3.7,3.5,3.9,4.2,4.0,3.5,3.7,3.9,4.0,4.0,3.4,3.2,3.2,3.2,2.9,2.9,2.7,2.7,2.7,2.7,2.5,2.5,2.5,2.4,2.4,2.4,2.4,2.5,2.5,2.7,2.9,3.2,3.4,3.9,4.4,4.7,4.9,5.2,4.9,4.9,4.7,4.2,3.4,3.4,2.9,2.9,2.9,2.5,2.4,2.0,1.7,1.7,1.5,1.4,1.2,0.7,0.7,0.4,0.4,0.4,0.0,0.0,-0.5,-0.7,-0.7,-1.2,-1.2,-1.2,-1.0,-1.0,-0.5,-0.5,-0.2,-0.2,0.0,0.2,0.2,0.4,0.5,0.7,1.4,1.7,2.2,2.4,2.9,2.2,1.5,0.7,0.0,-0.2,-0.9,-1.4,-1.5,-1.7,-2.1,-2.5,-2.5,-2.5,-2.7,-2.7,-3.0,-3.0,-2.7,-2.5,-2.4,-2.5,-2.7,-2.4,-2.4,-2.5,-2.7,-2.5,-2.5,-2.7,-2.7,-2.9,-2.5,-2.2,-2.0,-1.7,-1.5,-1.2,-1.2,-0.7,-0.2,0.0,0.5,0.9,1.4,2.2,3.2,3.9,4.7,5.2,5.4,5.2,4.9,4.2,4.9,6.4,5.7,5.9,5.4,5.4,4.9,5.2,5.2,4.9,4.9,4.4,4.0,3.7,4.5,4.9,6.0,6.7,7.4,7.2,6.7,6.7,5.7,3.9,4.2,3.7,3.2,2.5,1.9,1.9,1.5,1.9,2.4,2.9,3.2,2.9,2.4,2.5,2.9,3.5,4.2,6.0,6.5,6.9,7.4,7.2,6.7,6.4,6.0,5.7,5.4,4.7,4.4,4.7,5.2,5.9,5.9,6.5,7.5,7.7,7.9,7.4,6.9,7.0,8.0,8.4,8.7,8.4,8.2,7.2,6.7,6.9,6.4,6.2,6.0,4.9,5.4,5.7,5.9,5.7,5.4,5.2,3.5,3.4,2.5,2.9,3.2,3.5,3.9,4.5,4.5,4.7,4.9,5.2,5.2,5.2,5.7,5.9,5.9,6.0,6.2,6.0,5.9,5.4,5.4,5.4,5.4,4.7,4.7,5.2,5.2,5.7,5.7,6.2,6.4,6.5,6.2,6.2,6.0,6.2,5.2,4.7,4.7,4.9,4.4,3.5,4.0,4.9,4.9,5.2,5.4,5.2,4.5,4.4,4.7,5.2,5.4,6.2,5.9,5.9,4.4,4.2,3.9,3.7,3.2,2.4,2.4,2.4,2.2,1.5,1.5,1.2,0.9,1.4,1.9,2.2,2.4,2.7,3.0,3.5,3.5,3.5,3.2,3.2,3.4,3.2,3.0,1.7,2.4,2.7,2.9,3.0,3.4,2.9,2.5,2.0,1.5,1.7,0.5,0.7,1.2,1.7,1.5,2.0,2.4,2.7,2.7,2.7,2.2,1.9,1.7,1.7,1.7,1.4,1.4,1.0,0.2,0.2,-0.4,-1.4,-0.9,-0.4,0.2,0.7,1.2,2.0,3.0,1.4,1.4,1.7,1.7,2.2,2.2,1.5,1.4,0.4,0.2,-0.4,0.0,0.0,0.2,-0.2,-1.0,-0.5,-0.7,-1.0,-0.7,-1.7,-2.7,-3.2,-1.7,-0.7,-0.2,0.4,0.2,0.0,-0.7,-2.0,-4.0,-4.2,-5.7,-5.7,-6.5,-6.0,-6.0,-6.2,-7.0,-4.9,-5.7,-5.7,-7.0,-6.7,-7.5,-5.2,-4.2,-2.2,-1.2,-0.5,-0.5,-0.5,-1.2,-2.0,-2.7,-3.0,-3.2,-3.4,-4.4,-4.2,-6.2,-6.7,-5.4,-6.7,-7.9,-8.9,-9.0,-9.2,-8.9,-7.4,-5.0,-3.7,-3.0,-1.7,-1.2,-1.4,-1.2,-1.2,-1.2,-2.0,-1.5,-1.5,-1.0,-1.9,-1.4,-1.2,-0.9,-0.9,-0.5,-0.5,-0.2,0.0,0.0,0.0,0.5,1.0,1.9,2.9,3.4,2.7,2.9,1.7,0.9,0.0,-2.0,-2.5,-3.4,-3.5,-0.2,-0.5,-0.7,-0.9,-1.2,-1.2,-1.5,-1.2,-1.0,-1.4,-1.0,-0.5,-0.4,0.4,0.4,0.2,0.2,-0.4,-0.5,-0.5,-1.5,-1.9,-2.2,-2.5,-2.7,-3.0,-3.2,-3.5,-3.5,-3.7,-3.9,-4.0,-4.0,-4.0,-2.7,-0.7,0.9,1.9,2.4,2.0,1.9,2.0,2.2,2.0,1.7,1.2,1.2,1.4,1.7,1.9,2.7,3.2,4.9,5.7,5.4,5.0,4.4,4.9,5.7,5.9,5.7,6.2,6.4,5.9,5.9,6.2,6.4,6.2,6.2,6.4,6.2,5.9,5.9,5.9,5.9,5.2,4.9,4.9,4.9,5.2,5.2,5.2,5.9,5.9,5.9,6.0,6.2,6.4,6.7,7.2,7.4,7.9,8.2,8.2,8.5,8.9,9.4,9.4,9.4,9.2,9.0,8.9,8.9,8.7,8.2,8.2,9.5,11.2,12.4,12.9,13.4,13.7,13.2,12.0,11.2,11.0,11.7,11.7,11.2,10.5,10.7,10.4,9.9,9.9,10.2,10.0,9.5,7.7,7.5,8.4,8.9,8.9,9.9,10.4,10.9,10.7,10.4,10.4,9.9,9.9,9.0,8.7,8.5,8.7,8.7,9.2,9.4,10.0,10.2,10.4,10.2,9.9,10.4,10.4,9.5,9.5,9.7,10.0,10.4,10.9,11.2,11.4,11.4,10.7,10.2,10.0,10.2,10.0,10.2,10.2,8.2,7.9,7.5,7.4,6.7,5.7,4.4,4.9,5.4,6.4,7.2,7.5,7.9,7.9,7.2,6.0,4.9,4.2,3.4,3.4,3.9,4.2,4.2,4.0,4.2,4.4,4.7,4.9,5.4,5.9,6.2,6.4,6.7,6.9,7.4,8.2,8.7,8.9,8.9,8.9,8.0,7.9,8.0,8.2,8.4,8.4,8.7,8.7,9.0,8.9,8.7,8.2,8.2,8.4,8.4,8.5,8.5,8.4,8.2,7.4,7.2,6.4,6.0,6.0,5.4,4.9,3.0,3.4,3.0,3.4,3.4,3.2,2.9,2.7,2.9,2.9,2.4,2.4,2.7,3.2,3.7,4.4,4.9,5.5,5.7,5.9,5.5,5.2,5.4,6.5,7.1,7.9,8.5,9.0,9.4,9.7,9.9,9.9,9.7,9.4,9.3,8.7,9.2,9.3,9.2,9.6,10.2,10.9,11.1,11.0,11.4,10.1,9.2,8.8,8.9,9.3,9.1,10.1,9.4,10.0,11.1,11.4,11.2,11.0,11.0,10.7,11.0,9.9,10.0,9.9,9.2,9.1,9.1,8.7,9.0,9.6,11.0,11.3,11.1,10.8,10.9,11.0,11.1,11.1,11.0,11.1,11.2,11.1,10.7,10.3,10.8,11.2,11.4,11.7,12.4,13.7,15.1,15.0,15.0,14.6,13.7,13.6,13.5,13.8,13.4,13.4,13.0,13.2,13.2,13.1,12.2,12.4,11.5,11.0,11.3,11.9,12.4,12.2,13.6,14.4,12.9,13.9,14.8,14.9,15.6,15.7,14.8,14.3,15.0,14.3,14.2,14.6,15.0,14.1,14.1,13.7,11.9,11.6,11.6,11.9,12.1,12.3,12.6,12.9,13.0,13.0,13.0,12.8,12.4,12.0,10.7,10.0,11.6,12.1,11.3,11.0,11.1,10.9,10.7,10.3,10.4,10.4,10.3,10.5,10.7,10.9,11.3,11.8,11.9,12.0,12.3,12.3,12.8,11.5,10.9,10.8,10.8,10.8,10.6,9.9,9.5,9.1,8.8,8.4,7.8,7.3,6.5,6.2,6.4,6.5,5.7,4.8,6.0,6.9,7.5,7.2,6.8,6.7,6.7,5.0,4.0,3.7,3.0,3.9,3.9,3.0,2.5,1.9,1.8,2.1,2.2,2.7,3.1,3.3,4.8,2.4,1.4,2.4,3.5,3.7,3.0,2.6,3.5,3.0,3.3,2.9,2.4,2.4,1.5,1.0,1.2,1.3,1.2,1.8,1.6,2.1,2.7,3.2,2.5,3.9,4.2,4.9,4.0,3.5,2.6,2.5,1.4,1.6,1.9,1.9,1.4,1.1,0.9,0.7,1.0,1.5,1.8,1.5,1.0,0.8,1.2,1.6,2.0,2.6,3.2,3.7,3.7,3.9,3.2,3.0,2.9,3.1,4.0,4.8,5.9,7.3,7.5,7.5,7.0,7.2,6.8,6.7,6.6,6.6,6.9,6.6,6.4,5.6,4.7,4.2,3.9,3.8,3.4,2.7,1.8,1.0,-0.1,-0.4,-0.6,-0.8,-0.8,-0.7,-0.7,-0.5,-0.3,0.0,0.6,1.5,2.5,3.2,3.5,3.6,3.2,3.2,3.0,3.7,3.8,4.3,4.7,5.2,5.5,5.7,6.0,6.3,6.3,6.3,6.0,6.3,6.3,6.3,6.4,6.6,6.9,7.2,7.8,8.1,8.4,8.6,8.4,7.5,7.4,7.3,6.9,6.9,6.9,6.9,6.7,6.6,6.2,6.0,5.9,5.8,5.8,5.8,5.0,5.9,6.3,6.7,7.2,7.4,8.2,8.3,8.1,7.7,7.3,7.1,7.0,6.8,6.9,6.6,6.1,6.5,6.2,5.7,4.0,1.9,2.6,3.7,3.4,3.6,4.0,4.6,5.8,6.3,6.4,6.3,6.0,6.1,5.9,4.9,4.3,3.7,1.7,2.0,2.2,0.8,-0.8,-1.6,-0.1,-0.4,0.4,1.0,1.6,2.3,2.8,3.4,3.5,3.6,3.9,4.4,4.4,4.2,4.0,3.6,3.7,3.6,3.5,3.3,3.5,2.2,1.7,1.6,1.2,1.1,1.2,1.6,1.7,1.8,2.1,2.8,3.9,4.4,5.5,5.7,5.6,5.3,5.0,5.3,5.1,4.5,3.4,3.5,3.6,3.7,3.7,3.6,3.8,4.0,2.6,2.5,2.7,3.0,4.3,5.3,7.0,7.8,8.2,8.2,8.1,6.6,5.5,5.1,3.5,2.8,2.3,2.0,1.0,1.4,1.1,0.5,-0.2,-0.4,0.0,-0.3,-0.8,0.0,1.1,1.4,2.2,3.8,2.2,3.2,3.0,2.4,1.3,0.6,-0.1,-0.6,-0.7,-0.8,-1.3,-1.4,-1.8,-2.2,-2.3,-2.5,-2.6,-2.9,-3.0,-2.2,-1.1,0.5,1.4,2.2,2.6,2.6,2.9,2.3,1.4,0.6,0.3,0.0,0.3,0.1,-0.7,-1.2,-1.3,-1.5,-2.8,-4.0,-3.4,-3.2,-3.2,-2.2,-0.7,0.5,1.2,1.6,2.0,2.1,2.0,1.5,1.1,1.0,0.9,-0.4,0.4,0.1,0.3,0.0,-0.1,-0.2,-0.2,-0.3,-0.2,-1.3,-0.8,1.3,1.0,2.6,4.0,5.2,3.5,5.4,5.0,3.4,2.2,1.4,0.0,-0.8,-2.1,-2.3,-2.2,-2.2,-2.5,-2.4,-1.8,-0.2,-2.2,-2.4,-1.5,0.1,1.4,3.3,4.2,3.9,4.8,5.2,3.0,3.6,1.3,-1.4,-3.2,-3.7,-2.9,-4.0,-4.9,-5.2,-4.6,-4.1,-3.8,-2.6,-1.8,-1.8,-0.9,-0.3,0.5,2.6,3.5,4.2,4.6,4.7,5.0,3.5,2.4,1.9,1.3,0.8,0.9,0.8,0.3,0.2,0.2,0.2,0.2,-0.7,-1.0,-0.9,-1.1,-0.2,0.8,1.3,2.8,3.0,-0.1,2.5,2.0,-0.4,-1.0,-1.0,-1.2,-1.2,-1.5,-1.9,-1.9,-2.1,-2.1,-1.7,-2.2,-1.7,-1.6,-2.0,-2.2,-1.0,-1.0,-1.2,-1.2,-0.3,0.1,0.0,0.0,0.1,0.1,0.5,-0.1,-0.8,-1.2,-2.5,-2.6,-2.8,-3.2,-3.5,-3.3,-3.0,-2.8,-4.2,-4.2,-2.9,-1.6,-0.5,0.7,1.0,1.1,1.8,1.0,0.0,-0.7,-0.7,-0.8,-0.8,-0.6,-0.7,-0.7,-0.9,-1.1,-1.2,-1.5,-1.8,-2.3,-2.1,-2.5,-0.7,0.1,1.1,2.0,2.3,2.3,1.4,1.4,1.0,0.9,-0.9,-1.3,-1.5,0.1,1.8,3.5,5.4,5.2,4.7,4.2,3.3,3.4,3.2,2.1,4.6,8.1,8.4,8.8,9.5,9.0,8.9,8.5,8.1,8.0,7.5,7.0,7.2,7.3,7.3,8.0,8.3,9.2,9.9,10.6,5.6,7.0,8.0,7.7,7.5,7.4,8.7,8.4,9.1,9.0,8.9,8.6,8.8,8.4,8.5,8.5,8.4,8.0,7.9,7.7,7.3,6.5,6.8,7.6,9.0,10.3,11.4,11.1,10.2,10.3,10.9,10.6,10.8,10.5,10.1,9.9,9.6,9.4,9.1,8.5,7.8,6.8,6.9,7.0,6.7,6.7,6.8,6.9,6.9,6.9,6.5,6.6,7.1,6.8,6.7,7.1,5.2,6.4,7.0,5.6,6.0,5.0,4.3,2.7,2.6,2.0,1.8,1.2,1.0,0.8,-1.0,-2.6,-2.7,-1.5,-1.7,-1.0,1.8,4.1,5.7,6.0,4.6,7.4,7.8,6.8,5.5,1.3,1.2,1.2,0.1,0.0,-0.4,-1.2,-1.0,-1.7,-1.8,-1.7,-2.6,-2.2,-2.0,-2.2,0.2,1.9,3.2,4.5,5.0,6.4,6.2,6.6,5.7,4.4,2.5,2.9,2.9,3.2,3.2,3.4,3.6,3.2,3.6,3.7,4.0,4.1,4.2,4.9,5.3,5.9,5.7,6.1,6.4,6.8,7.4,7.5,7.5,7.4,7.4,7.4,7.4,7.3,7.2,7.2,7.1,7.0,6.7,6.7,6.7,6.7,6.7,6.6,6.8,7.1,7.4,7.9,8.9,8.3,8.2,8.5,8.6,8.2,7.9,7.7,6.8,5.8,5.5,4.2,4.3,2.3,3.9,3.6,2.6,2.4,2.2,2.7,4.0,5.5,8.0,9.5,9.7,10.1,9.8,9.9,9.4,9.1,8.4,7.9,7.5,7.9,8.0,8.2,7.8,7.6,7.7,7.6,7.6,7.7,7.6,8.1,8.2,8.6,8.5,9.5,8.8,9.3,8.9,9.1,9.4,9.1,8.6,8.6,7.6,6.7,5.2,5.2,5.9,5.6,4.9,4.6,4.4,5.3,5.7,6.4,7.7,8.3,9.4,9.3,9.7,8.5,8.4,9.4,8.2,7.0,7.5,7.8,7.1,7.5,7.7,7.3,7.2,7.1,6.5,6.2,6.0,5.9,6.0,6.4,6.6,6.0,6.5,7.1,7.8,8.8,9.1,9.4,7.5,7.2,6.6,7.3,9.0,9.8,10.6,10.6,9.8,9.0,8.2,8.6,4.3,6.3,4.7,5.4,6.9,7.4,6.0,6.9,6.8,6.6,6.7,6.3,7.6,8.0,8.0,8.2,7.2,7.1,7.0,6.9,7.5,7.3,5.5,5.4,5.9,6.2,5.8,5.7,6.4,7.4,8.0,9.2,9.7,9.4,9.9,9.2,8.6,8.1,7.0,6.5,6.3,6.1,6.6,7.1,6.6,6.6,6.7,6.5,6.2,6.0,6.1,6.5,6.9,7.9,9.3,9.2,8.9,10.1,9.8,10.0,9.0,7.8,6.0,5.6,5.2,4.3,3.2,1.5,2.6,1.9,0.7,1.3,-0.5,-0.7,0.2,2.7,6.2,7.7,9.3,10.3,12.0,11.9,12.4,12.2,12.1,11.1,10.3,9.9,8.8,8.0,7.7,7.5,7.6,7.7,7.6,7.6,7.4,6.8,6.7,7.1,8.5,8.9,9.2,9.5,9.8,9.8,9.9,7.2,6.7,6.0,5.9,5.6,5.2,5.2,5.5,5.1,4.8,4.8,4.6,4.4,4.3,3.8,3.5,3.9,4.6,5.4,6.8,4.2,5.6,6.3,4.8,3.8,5.3,4.1,3.0,1.6,1.7,1.5,0.9,0.2,0.4,0.6,-0.2,0.0,0.0,1.5,1.4,2.0,3.8,5.1,6.2,6.6,7.0,7.7,6.3,7.4,5.0,5.3,2.8,3.2,2.9,2.6,2.8,2.9,2.6,2.6,1.7,1.6,1.5,1.2,0.6,1.6,2.7,4.5,5.4,2.9,7.3,3.8,6.2,7.7,6.5,5.1,3.9,3.8,1.9,1.6,2.9,2.7,2.1,1.9,1.3,1.0,1.1,0.5,1.0,2.0,3.3,4.2,5.1,6.0,7.0,7.6,6.6,6.1,4.5,4.3,4.2,4.4,4.1,3.9,4.0,5.0,4.1,3.9,3.5,4.1,3.6,3.1,3.1,3.0,3.0,3.1,3.2,4.4,3.8,4.2,5.4,5.5,3.6,2.2,1.2,0.9,0.3,0.2,0.0,-0.1,-0.5,-2.2,-1.3,-3.4,-1.5,-1.3,-1.1,-0.8,-0.2,0.6,1.3,3.1,3.9,4.0,2.7,2.0,1.4,0.9,0.1,0.4,0.2,-0.2,-0.7,-1.0,-2.0,-3.0,-3.5,-3.9,-5.4,-6.3,-6.1,-2.5,-1.1,-0.1,1.0,1.4,2.8,3.7,4.1,4.6,4.1,3.4,1.9,0.9,0.7,0.5,0.2,0.0,-0.7,-0.4,0.4,0.2,-0.3,0.5,0.4,0.7,0.2,0.5,2.2,2.9,3.8,0.4,3.8,3.9,2.6,2.4,1.8,0.0,0.0,-1.3,-0.9,-0.9,-0.7,-0.4,-0.9,-1.0,-1.0,-1.1,-1.1,-0.7,-0.4,1.6,2.8,3.8,0.1,1.3,1.5,2.4,0.5,0.7,0.6,0.3,0.2,0.2,0.1,-0.2,-0.2,0.0,-0.4,-0.7,-1.0,-0.9,-0.6,0.1,1.8,3.8,5.4,6.3,6.3,7.2,6.1,7.0,6.4,4.3,2.5,2.9,2.6,2.6,0.6,-0.6,-1.2,-1.3,-2.2,-2.0,-2.6,-2.9,0.0,1.2,3.3,5.5,7.2,7.9,8.9,9.0,9.1,8.6,7.8,7.5,6.4,5.7,5.4,5.1,5.2,5.2,5.1,5.0,5.0,3.9,3.3,4.0,4.9,5.6,5.9,6.0,5.8,6.3,7.5,8.9,10.0,10.3,10.3,9.0,8.7,9.2,7.4,6.9,6.9,7.2,7.6,7.3,7.7,6.6,6.8,6.9,6.7,7.0,7.3,7.9,9.8,9.9,10.1,11.3,11.1,11.4,12.0,10.5,10.1,9.2,9.0,8.7,8.5,8.0,8.5,8.5,8.9,9.0,8.9,9.1,9.1,10.6,11.8,13.1,14.5,14.2,11.5,9.5,10.6,9.6,9.7,9.3,8.6,8.6,8.4,7.9,7.3,6.5,5.6,4.8,4.1,3.8,4.1,5.3,4.1,6.0,7.8,9.7,11.4,13.0,14.8,15.3,15.4,16.0,15.7,14.6,12.3,11.2,9.9,9.4,8.6,7.8,7.1,6.5,6.0,5.1,4.9,4.4,4.9,6.6,9.3,12.1,13.4,14.6,15.6,16.4,17.2,17.5,17.3,16.7,15.1,12.9,12.1,11.7,11.1,10.2,8.9,7.8,7.8,7.4,7.0,6.5,7.0,9.1,12.7,15.2,17.9,18.8,20.2,21.1,21.3,21.7,21.4,19.7,17.2,12.9,9.4,15.9,13.4,10.8,9.4,11.1,7.4,7.2,5.1,7.4,10.0,13.3,15.4,17.0,18.6,19.9,20.0,20.3,19.2,20.0,17.3,16.6,15.8,14.4,13.4,12.7,12.0,11.0,8.8,8.4,7.7,7.5,7.2,6.9,6.8,7.3,8.2,9.3,10.9,11.9,11.8,11.8,11.9,12.2,11.5,11.2,9.5,7.6,6.1,3.1,3.3,5.2,4.9,5.5,5.4,5.9,5.9,5.3,5.7,6.9,9.5,11.2,11.5,12.3,12.7,12.8,13.4,13.1,13.2,12.4,10.1,9.1,8.9,9.0,8.8,8.6,9.0,9.1,9.0,8.6,7.7,7.0,6.8,7.7,8.4,9.8,8.8,10.7,6.5,10.3,11.5,11.4,10.2,10.3,9.5,7.8,7.6,7.4,6.6,5.7,5.4,6.8,6.3,6.0,6.0,5.8,5.3,5.5,5.8,7.0,8.4,8.8,7.0,6.9,9.1,9.8,9.0,9.1,7.3,5.4,3.4,2.4,2.8,2.6,1.6,2.6,2.4,1.9,2.0,1.7,1.8,2.5,3.4,4.3,5.3,6.5,6.1,7.3,7.3,6.1,5.4,4.7,3.5,3.1,3.5,4.0,5.1,5.5,5.5,5.4,5.3,5.2,5.4,5.8,6.2,6.8,7.1,8.9,8.4,8.8,8.8,9.6,8.7,9.0,10.3,10.1,9.1,6.9,4.5,3.5,3.9,4.2,1.4,3.1,5.3,5.5,5.9,6.3,6.8,7.7,8.7,9.6,12.2,13.8,14.1,15.3,16.2,16.2,15.7,15.0,13.4,11.1,8.2,6.5,5.3,4.1,2.8,2.9,2.0,2.1,1.1,0.3,2.2,7.9,11.0,13.4,14.6,14.8,15.0,14.9,15.1,15.1,15.3,13.8,12.4,11.2,9.7,7.9,6.4,5.1,5.8,6.0,5.9,6.1,6.5,8.1,9.2,10.5,11.4,13.1,12.7,13.3,14.6,14.7,14.5,13.6,12.8,12.4,11.9,11.8,12.1,11.8,11.7,11.0,10.5,10.1,9.9,9.9,9.9,10.0,11.1,11.5,11.6,13.0,14.4,13.9,15.0,16.1,16.4,16.1,16.1,15.8,14.7,13.0,13.2,12.5,12.7,12.1,11.8,10.7,8.1,9.9,9.5,9.7,10.2,12.1,15.1,17.9,19.1,20.2,20.8,16.4,14.7,18.1,15.6,13.1,13.8,11.9,10.4,9.0,8.9,7.6,7.4,7.2,6.3,6.8,7.0,6.5,6.9,7.6,8.9,9.7,10.6,11.3,12.9,14.5,15.3,15.6,15.7,14.5,13.3,11.8,10.3,12.9,13.0,12.5,11.7,11.1,10.3,9.6,8.9,8.3,9.0,9.1,9.4,9.8,10.3,11.3,12.0,12.7,13.8,14.8,15.6,15.4,13.2,11.1,8.7,7.8,8.0,8.4,7.6,8.9,8.7,8.5,8.9,9.8,9.8,10.3,11.5,12.1,11.9,13.4,14.3,15.2,15.7,15.7,16.3,15.9,15.0,13.5,12.0,11.1,9.8,8.4,7.6,6.8,7.0,7.0,6.7,6.1,7.9,9.0,9.5,9.4,9.4,9.2,8.4,8.4,8.7,8.3,8.2,7.4,7.3,7.4,7.4,7.4,7.5,7.5,7.4,6.8,6.2,5.4,5.0,5.0,4.9,5.4,6.1,6.5,8.1,9.7,11.1,12.3,12.9,13.0,13.1,12.2,10.5,8.7,6.9,6.7,6.4,5.4,4.6,3.5,2.2,0.4,1.1,-0.1,2.6,6.2,8.8,9.9,10.7,10.9,12.2,12.7,12.9,12.7,13.2,11.4,10.8,7.1,6.3,4.9,4.9,1.9,0.4,-0.4,-1.0,-1.3,-1.6,-1.0,2.9,8.0,9.7,11.1,11.6,12.4,12.9,13.6,14.3,14.1,14.6,14.0,12.2,8.0,5.9,7.9,6.8,5.6,5.1,3.3,1.3,0.6,1.2,0.1,5.0,8.6,10.7,12.7,13.9,15.6,16.4,17.1,17.6,17.6,17.4,17.0,16.0,10.2,11.9,11.2,10.6,9.8,8.2,6.9,5.4,5.1,4.8,4.5,6.2,9.1,11.6,13.6,16.0,16.6,17.5,17.6,17.8,17.3,17.3,17.0,16.0,14.7,13.7,13.3,13.0,12.3,10.6,9.3,8.2,7.9,7.0,6.7,7.9,8.6,10.5,12.4,12.6,13.2,13.7,13.7,14.6,14.9,13.9,13.2,12.3,10.7,9.1,8.4,7.7,7.7,8.3,7.9,6.2,4.3,3.4,3.2,7.9,9.3,12.0,13.9,14.1,13.6,14.2,14.3,12.9,12.6,13.8,13.9,12.0,11.6,11.3,9.9,10.7,10.9,10.8,10.6,10.6,10.0,10.2,9.6,10.0,10.4,10.4,10.9,12.8,13.0,14.7,13.4,15.1,15.0,13.8,14.1,12.8,9.9,8.5,8.0,8.0,6.9,7.5,6.3,6.6,5.6,5.3,6.3,8.9,10.9,12.5,13.9,14.5,15.3,16.5,16.9,17.2,17.1,18.0,17.3,16.4,14.1,14.7,15.0,14.2,13.7,13.7,13.9,13.8,13.7,11.3,11.2,11.5,12.0,12.5,13.2,14.1,14.5,15.8,16.1,17.3,17.7,17.0,16.1,15.9,14.0,10.7,9.7,8.7,9.2,8.3,8.6,9.3,8.7,7.1,9.1,10.4,11.9,13.7,15.9,16.4,17.2,18.2,17.7,17.7,17.9,18.0,18.1,14.1,12.6,11.5,9.0,6.7,4.4,2.6,3.1,4.4,5.3,6.9,8.5,6.1,9.4,11.2,12.2,12.4,12.8,13.4,13.7,14.5,14.0,14.1,13.9,7.2,5.7,4.4,3.6,3.0,2.9,3.3,4.2,5.7,6.8,8.2,9.3,7.7,10.2,10.9,11.8,13.9,15.0,14.7,15.6,17.3,16.3,16.5,16.1,11.4,10.0,8.3,6.1,4.4,3.4,3.3,4.2,5.7,6.8,8.2,9.3,7.7,10.2,10.9,11.8,13.9,15.0,14.7,15.6,17.3,16.3,16.5,16.1,11.8,11.4,11.3,11.1,11.0,10.8,10.7,10.7,10.9,10.9,11.2,11.8,10.7,11.8,13.0,15.1,14.4,16.0,16.2,16.0,16.2,17.1,17.3,17.1,10.2,9.9,10.3,10.6,10.8,10.9,10.7,10.7,10.9,10.9,11.2,11.8,10.7,11.8,13.0,15.1,14.4,16.0,16.2,16.0,16.2,17.1,17.3,17.1,10.1,9.8,10.1,10.2,10.3,10.3,10.2,10.3,10.4,10.4,10.5,10.7,10.3,10.6,11.2,11.3,11.2,11.1,11.4,11.7,12.0,10.9,11.1,10.9,8.2,6.7,5.3,6.2,7.4,9.1,10.8,10.7,10.7,10.6,10.8,11.5,10.7,11.8,13.0,15.1,14.4,16.0,16.2,16.0,16.2,17.1,17.3,17.1,16.4,12.2,9.0,8.9,7.9,12.4,13.5,13.3,13.1,13.4,13.5,12.5,12.6,12.8,13.1,15.2,14.7,16.5,15.7,16.6,16.7,16.1,11.8,11.9,11.8,10.1,9.2,8.6,7.7,7.2,7.3,6.7,6.1,6.6,6.3,7.1,8.6,9.9,9.9,11.9,13.5,15.1,15.9,17.0,16.4,16.6,15.8,15.7,14.5,12.0,10.9,9.9,8.5,6.5,5.1,4.6,5.4,6.2,4.2,5.3,9.6,14.6,15.3,17.2,18.0,18.3,18.4,19.4,19.1,20.0,20.1,18.6,18.1,15.3,13.7,12.8,11.6,10.7,10.1,9.7,9.5,9.5,9.5,9.4,9.7,10.6,12.0,12.8,14.0,14.7,15.9,17.2,17.5,17.2,15.6,14.4,14.0,11.6,10.1,8.3,7.6,7.0,5.8,5.7,5.2,5.2,5.5,6.6,8.5,10.4,12.1,13.2,14.8,15.6,16.5,17.2,17.3,17.6,16.1,16.1,15.4,14.1,13.7,13.0,11.9,10.6,9.8,9.2,9.0,8.5,8.2,8.7,10.6,12.8,14.6,16.5,17.9,18.2,18.9,19.6,19.9,19.8,20.2,18.3,17.9,15.8,14.8,14.1,14.0,14.2,14.1,13.7,12.9,12.2,11.8,11.7,11.9,12.6,14.1,14.1,14.3,17.0,17.8,17.5,17.0,16.7,16.4,16.3,15.8,15.5,15.4,15.5,15.7,15.4,14.9,14.7,14.2,13.9,13.3,10.9,10.7,11.0,11.8,14.1,15.8,17.2,19.8,19.9,17.2,17.3,15.0,14.5,14.1,13.5,12.8,12.5,11.5,10.8,10.1,9.6,8.2,7.7,7.6,8.8,10.5,12.2,12.8,13.8,14.3,15.3,15.8,15.9,15.8,16.6,16.0,16.8,16.0,15.2,14.4,14.0,14.1,13.3,13.3,13.3,13.0,12.0,11.5,11.3,11.5,12.2,12.8,13.6,13.9,14.1,14.6,15.6,16.6,17.8,17.3,16.9,16.1,15.3,14.3,13.5,12.7,12.1,12.0,11.5,11.0,11.0,10.7,11.5,12.9,13.6,15.3,16.5,16.4,15.7,18.1,16.8,17.7,17.4,18.4,17.8,16.1,14.1,10.8,8.0,7.8,7.6,9.1,10.5,11.1,9.3,8.9,12.0,13.7,15.1,16.7,17.7,18.1,18.3,19.7,19.7,20.3,19.8,19.4,18.4,17.3,15.0,12.9,11.8,10.2,9.7,9.6,8.9,8.6,8.2,8.3,10.6,13.0,15.8,16.8,17.6,18.3,19.1,19.8,20.1,20.3,20.6,19.9,19.4,18.8,16.5,13.2,12.9,13.2,13.1,12.1,11.6,11.2,10.7,10.8,11.8,13.1,14.5,16.6,18.4,19.8,19.8,20.9,20.4,19.4,19.7,18.6,16.6,17.2,14.9,12.5,7.8,6.5,5.9,5.2,4.2,4.1,4.6,4.8,7.7,11.2,14.2,14.0,13.4,16.7,12.2,11.3,15.1,16.0,17.0,16.5,16.2,15.2,13.7,10.3,8.1,7.1,7.8,9.2,10.8,10.3,9.1,8.7,11.3,13.4,14.7,15.9,16.8,18.3,18.8,19.2,20.0,20.7,19.9,19.9,19.2,18.2,16.4,14.5,15.7,15.2,12.4,9.8,9.1,8.4,7.2,7.5,11.3,16.1,18.2,19.6,20.2,20.9,21.8,22.4,22.9,22.6,22.6,22.3,21.1,20.0,17.5,14.5,12.1,12.0,10.5,10.0,8.5,8.9,8.6,8.6,9.9,11.7,13.1,13.9,17.2,19.7,20.6,23.1,23.7,24.7,24.3,23.7,23.1,22.3,20.9,19.9,17.0,14.1,14.3,13.3,13.6,15.9,14.9,16.7,15.4,16.7,18.8,21.3,20.8,20.2,22.3,23.1,21.6,17.6,16.4,14.8,14.2,13.1,11.6,10.6,10.2,9.3,9.1,8.6,9.0,8.5,8.5,8.5,10.1,11.9,13.3,13.3,14.2,15.2,16.4,16.1,16.4,15.7,15.2,15.0,14.1,13.5,12.8,11.7,10.9,11.3,10.9,11.1,11.2,11.6,12.0,12.6,13.1,13.8,15.2,15.9,16.1,16.5,16.0,18.6,17.0,17.3,18.4,18.7,17.5,16.9,14.6,12.0,9.4,6.8,5.5,4.0,3.2,3.6,2.3,2.2,5.9,10.9,12.9,14.0,15.2,16.3,18.0,18.6,19.9,20.6,19.4,20.8,20.1,19.3,17.9,15.6,14.2,12.3,12.0,10.7,9.9,9.1,9.0,9.3,10.4,12.1,14.7,16.5,18.3,19.3,20.0,21.2,20.4,20.7,19.8,19.8,19.4,19.8,18.8,15.4,16.5,15.1,14.1,13.1,12.9,12.5,12.1,11.6,13.1,14.3,15.2,18.4,19.3,20.6,21.8,22.1,22.5,23.3,24.1,23.7,23.5,19.9,18.0,16.2,13.3,10.6,8.1,5.8,4.9,4.8,5.9,7.8,10.2,9.5,11.8,13.9,14.9,16.0,16.6,18.1,18.8,19.0,19.3,19.2,18.9,18.1,16.1,13.8,11.3,10.2,6.2,5.1,3.8,2.5,2.6,2.8,8.1,12.9,15.4,16.4,17.7,18.8,20.2,20.9,21.3,22.1,22.8,22.9,21.7,21.1,19.4,17.5,15.8,14.5,13.0,11.0,10.5,10.8,11.8,11.8,12.4,14.1,16.4,19.0,20.4,22.2,22.9,23.9,24.8,25.9,25.9,24.7,25.0,24.6,22.9,21.4,19.9,18.7,16.9,16.7,16.7,16.5,15.8,15.7,16.8,18.7,21.0,23.4,24.7,25.3,26.4,27.5,27.4,27.5,27.5,27.2,26.8,25.9,23.4,20.9,19.4,18.1,16.5,15.3,14.2,14.7,14.7,14.1,13.7,14.5,16.3,16.8,18.0,19.5,23.2,25.1,25.0,25.3,24.2,22.6,22.7,22.2,20.8,18.2,17.1,17.4,18.1,17.9,16.4,16.6,15.6,16.3,16.8,17.7,18.5,19.0,20.6,21.1,22.8,23.1,23.6,24.9,24.8,20.9,17.7,18.4,17.9,16.7,16.1,17.1,17.4,17.5,16.1,14.9,13.8,13.3,13.1,13.1,12.8,13.4,14.0,13.9,14.9,15.9,17.0,17.8,18.6,18.7,18.8,18.3,16.4,15.2,14.6,13.5,14.2,14.4,14.5,14.0,13.9,14.1,14.1,12.3,12.1,11.8,12.5,13.3,14.4,15.3,16.5,17.2,16.9,17.3,17.4,16.2,15.8,10.8,9.7,8.9,8.5,8.3,9.2,10.7,10.2,10.1,11.0,12.1,14.3,14.7,16.8,17.6,17.5,19.1,17.9,17.9,17.8,18.1,17.9,17.0,14.0,11.4,10.2,10.0,9.3,8.8,7.3,6.3,5.8,5.9,9.0,14.4,16.8,17.9,17.9,17.5,17.6,14.3,15.5,18.6,19.1,18.1,14.8,14.8,13.3,13.4,11.5,10.9,11.5,11.3,11.4,9.7,8.9,9.3,9.3,10.2,11.4,13.7,14.8,15.9,16.7,17.0,17.3,16.3,11.4,12.7,13.3,13.9,12.6,9.3,7.2,5.9,5.9,4.9,3.9,4.4,5.3,5.2,7.1,11.2,13.7,15.1,15.7,16.6,16.4,16.9,18.9,18.8,18.5,18.6,18.4,16.8,14.2,12.9,12.4,13.6,13.8,13.5,12.2,13.2,13.4,14.2,14.7,14.8,16.4,16.5,18.0,18.3,20.0,20.1,19.8,19.3,19.9,18.9,19.0,19.1,18.4,17.7,18.1,17.4,16.2,14.7,14.3,13.5,11.8,12.9,13.9,14.0,14.7,15.6,16.3,17.7,19.6,19.2,20.0,20.1,20.4,19.9,20.1,19.3,17.7,13.2,10.5,9.9,8.8,8.8,8.4,8.2,7.9,7.9,11.2,15.1,18.0,19.9,21.8,22.9,23.0,23.0,22.2,22.6,23.0,22.6,22.4,21.4,20.9,18.2,16.8,15.0,14.6,13.8,12.7,14.2,14.7,14.8,16.7,17.6,18.9,20.4,20.1,18.1,17.9,14.4,16.6,18.6,19.1,18.2,13.9,15.1,14.3,11.3,12.2,12.4,12.1,11.5,10.9,10.5,10.3,10.0,10.7,11.9,13.6,15.4,15.4,17.0,17.4,18.2,17.5,17.7,18.0,17.6,16.8,15.8,14.3,13.1,12.9,12.9,12.7,13.0,13.1,12.3,12.8,13.6,14.5,14.5,15.5,15.4,15.1,15.9,17.2,15.2,13.1,14.0,14.4,15.2,14.9,14.5,13.7,11.6,11.7,11.5,11.9,11.8,11.7,11.4,11.1,11.5,11.4,11.6,12.2,12.6,12.5,12.7,14.7,15.0,14.8,15.5,15.0,15.5,15.1,14.7,14.0,13.3,13.0,12.8,12.6,12.6,12.6,12.5,12.4,12.0,12.0,12.2,12.8,13.6,15.2,16.7,17.7,19.4,19.2,19.1,19.6,19.8,18.7,17.9,16.6,14.7,13.5,13.4,14.2,14.2,14.5,14.5,14.7,14.7,15.1,15.7,16.0,17.3,16.3,18.0,18.7,19.0,18.9,20.6,21.0,21.5,20.4,20.1,19.1,18.1,16.0,15.1,15.4,15.6,15.8,14.4,12.6,12.9,15.3,17.0,17.2,17.7,18.5,19.3,18.3,17.4,16.9,17.2,18.0,15.0,16.4,16.1,14.7,14.0,13.5,14.1,14.1,14.6,13.9,12.8,12.6,13.2,13.2,13.8,14.6,16.7,17.2,17.1,18.8,16.5,18.0,17.2,17.0,16.7,15.5,16.2,15.3,13.7,10.9,11.5,11.5,11.4,11.3,11.0,10.8,11.1,11.8,12.1,12.7,14.9,16.1,16.8,14.9,16.8,17.5,17.7,16.6,16.7,16.6,16.0,15.1,13.8,12.9,9.5,8.4,9.8,9.5,10.6,11.8,11.9,12.5,13.4,13.7,12.9,13.3,13.0,12.5,12.9,13.2,13.4,13.6,13.6,13.8,14.2,14.7,15.1,15.5,15.9,16.2,16.2,16.2,16.2,16.1,16.2,16.3,16.8,17.3,18.3,19.6,20.4,21.0,22.6,23.0,23.5,23.4,23.9,24.5,24.1,21.9,17.7,15.7,15.0,14.3,13.6,14.0,14.9,15.8,16.0,17.3,19.9,21.8,23.7,25.4,26.4,26.9,27.9,28.5,29.0,29.4,29.6,29.6,28.8,27.0,23.9,23.2,22.8,21.8,21.6,20.6,20.1,19.4,19.4,20.2,21.9,24.7,26.7,28.5,30.1,31.0,32.3,32.2,33.0,32.9,32.8,31.9,30.8,28.6,28.4,21.4,20.3,20.2,20.5,20.3,19.1,19.1,19.1,19.1,20.0,21.1,22.6,21.7,19.7,17.6,17.2,16.8,17.3,17.2,18.5,18.8,18.7,17.2,15.4,14.1,12.5,11.7,10.8,9.6,10.0,9.6,9.8,10.0,13.4,15.4,16.7,17.3,17.3,18.3,17.9,18.3,18.2,15.2,16.3,17.5,14.2,13.0,12.1,12.7,14.0,14.9,15.7,15.4,15.0,15.0,15.2,15.6,15.3,15.9,16.5,17.8,18.1,18.5,19.1,19.3,19.3,19.1,18.6,19.0,18.4,16.0,15.5,13.0,12.8,10.6,8.9,7.9,7.4,8.9,9.2,10.8,12.9,15.4,16.3,17.2,18.3,19.8,19.7,20.1,20.8,20.9,20.3,20.2,18.1,17.4,17.0,17.6,17.2,16.7,15.3,16.0,15.8,16.0,15.8,16.1,16.3,16.5,17.0,17.6,18.5,19.4,19.7,20.2,20.0,18.5,19.2,18.3,17.3,17.3,17.1,16.4,15.8,15.9,16.0,16.1,16.0,15.8,14.9,16.2,16.5,17.2,17.5,17.9,17.8,19.5,20.4,21.6,21.3,22.2,21.8,21.0,20.5,19.3,18.7,18.1,17.9,17.4,16.6,15.0,14.0,15.4,15.6,16.2,16.9,17.9,18.2,18.6,18.9,19.6,20.2,19.8,19.9,21.2,22.2,22.2,21.7,19.3,17.8,16.2,15.6,15.3,14.6,13.6,12.8,10.1,9.6,13.1,15.3,17.1,19.0,20.8,21.0,22.0,23.3,23.9,24.6,24.3,24.1,23.9,23.0,21.1,18.6,17.7,16.5,15.3,14.6,13.7,12.1,11.7,10.9,12.8,16.2,18.9,20.8,21.9,23.0,24.4,24.7,25.7,26.0,26.0,26.1,25.5,24.7,22.3,19.9,18.1,17.3,16.2,15.0,14.7,13.7,12.6,13.0,14.7,16.1,18.3,19.7,21.6,23.5,24.4,24.7,25.4,25.2,25.1,25.1,24.4,22.3,20.4,18.5,16.6,15.1,14.0,12.5,11.7,11.2,10.8,11.4,13.0,14.4,16.9,18.0,19.1,20.7,21.9,22.6,23.5,23.8,23.9,23.2,22.9,21.9,20.3,17.9,16.1,14.2,14.8,14.0,13.3,12.1,10.9,10.8,12.7,14.6,15.0,15.7,16.0,17.1,18.9,18.7,18.9,17.8,15.1,16.1,15.6,15.1,14.7,13.9,13.6,12.8,12.6,12.0,11.4,10.8,9.0,10.2,12.0,13.2,14.3,15.2,15.6,16.0,17.0,17.3,18.6,18.3,18.6,19.6,19.2,18.9,17.0,15.5,13.5,11.5,10.2,8.6,7.7,6.6,5.9,5.6,7.9,10.8,13.3,15.2,15.8,16.5,16.5,16.7,16.5,17.2,17.3,16.8,16.9,16.6,16.2,15.4,14.5,15.1,14.8,14.2,13.7,12.6,10.6,10.7,12.1,14.6,15.7,16.0,16.5,17.6,17.9,19.3,19.9,21.1,21.0,21.7,21.0,20.7,18.8,16.6,14.4,12.6,12.0,10.8,9.9,9.9,12.2,12.8,13.1,13.6,14.0,14.5,15.6,16.8,16.8,18.5,19.8,20.8,20.9,20.6,20.9,19.5,17.7,14.8,12.3,10.7,10.5,9.4,9.2,9.5,8.9,9.2,11.4,13.9,16.8,19.0,20.7,22.2,22.5,23.8,24.3,25.0,24.7,24.7,24.0,23.4,21.1,16.7,13.9,13.0,12.4,11.3,11.0,10.2,9.9,9.4,12.4,15.8,19.7,21.8,22.9,23.1,24.7,25.3,25.4,25.4,25.5,25.3,24.2,23.0,21.4,17.2,15.6,14.8,14.9,14.7,16.4,14.9,14.7,14.0,16.4,18.0,19.3,20.3,21.3,22.6,23.8,24.5,25.2,25.2,25.6,25.6,25.3,24.2,22.5,21.6,19.9,18.4,17.8,17.1,16.1,14.0,12.6,12.7,15.4,18.3,20.0,21.9,23.7,25.0,26.0,26.3,26.9,27.8,27.4,27.1,25.8,24.0,22.3,20.2,18.7,16.6,15.3,14.6,14.0,11.5,11.4,11.2,14.7,16.6,19.4,21.3,22.8,23.9,25.1,24.4,24.6,24.3,24.7,24.6,23.4,22.3,20.5,18.8,16.1,16.5,16.8,17.0,16.9,17.0,16.8,16.5,16.0,16.1,15.9,16.9,17.1,19.1,18.6,19.4,20.6,21.6,23.1,23.8,23.9,23.1,20.3,16.4,14.4,15.0,17.0,16.1,13.7,14.4,12.6,11.7,16.1,18.7,21.3,24.1,26.1,26.9,27.5,29.0,29.4,29.9,30.5,30.3,29.9,29.2,24.5,18.7,17.0,17.1,20.4,16.9,16.0,15.7,15.2,14.4,17.3,20.9,23.1,25.9,28.0,29.3,30.9,31.5,32.5,32.3,32.4,32.1,31.3,27.7,24.7,22.1,20.1,23.3,22.8,19.6,17.7,16.8,18.0,17.2,19.0,22.3,25.4,26.8,28.2,30.2,31.3,32.0,31.7,32.5,33.0,30.2,29.9,27.5,27.3,23.8,19.6,19.0,17.3,17.4,17.3,17.8,17.5,18.3,19.8,21.2,21.7,22.6,23.0,22.4,22.6,23.5,24.6,25.3,25.1,26.8,21.5,22.0,21.4,19.1,16.6,15.8,14.9,14.0,13.0,12.1,10.9,11.8,13.5,18.0,20.9,23.5,25.6,26.5,26.9,28.6,28.6,29.7,28.7,27.1,27.1,27.1,25.1,23.5,19.8,19.7,19.1,17.1,16.2,16.2,15.3,15.5,16.7,20.3,22.9,25.1,25.3,25.6,25.1,20.4,20.9,22.3,23.6,24.9,25.2,24.3,21.7,19.2,18.8,17.5,17.2,16.8,18.1,16.3,16.0,16.8,18.2,20.9,22.6,24.2,26.2,26.2,26.0,18.9,19.2,22.7,23.6,25.9,25.6,25.0,22.1,19.9,18.4,20.2,20.3,20.9,19.1,17.7,17.3,17.9,18.8,19.8,20.8,21.3,21.9,22.1,21.4,21.2,22.5,22.4,22.2,21.8,21.8,21.2,18.8,15.9,14.6,13.7,13.2,12.5,13.1,13.2,13.4,13.2,14.5,17.5,20.6,22.2,23.0,24.0,24.3,24.7,24.5,25.8,24.8,23.9,23.1,22.7,21.0,19.9,18.5,15.4,13.8,14.0,17.3,17.3,17.0,16.2,15.5,16.3,17.1,17.8,18.8,20.4,20.5,20.5,21.3,20.8,20.3,19.7,19.6,19.3,18.8,16.5,16.4,17.1,17.8,17.7,17.7,17.2,17.2,16.9,17.1,17.6,18.3,18.6,19.4,19.7,20.4,21.7,20.6,20.5,19.9,19.6,18.9,18.5,18.5,18.9,17.5,16.2,14.8,12.7,12.5,12.4,12.5,13.3,14.9,13.5,14.8,18.5,18.1,20.9,22.7,24.5,24.8,24.3,25.7,25.0,24.5,23.7,19.9,17.9,15.8,14.9,18.8,18.3,18.7,18.5,19.6,17.7,17.7,18.0,17.2,16.5,16.4,17.8,19.0,18.1,17.6,16.8,17.1,16.9,16.9,16.8,16.2,15.3,14.4,12.9,10.5,12.3,11.0,8.3,7.8,6.9,9.7,12.5,15.4,17.6,18.3,18.6,20.5,19.4,17.5,17.8,19.0,19.6,19.6,18.9,15.2,12.9,11.6,10.6,9.5,9.6,8.8,8.9,8.4,7.8,8.7,13.1,16.8,18.9,20.5,21.5,22.5,23.1,23.5,23.7,23.6,24.1,23.8,20.5,16.9,14.4,12.8,12.3,12.0,13.2,15.6,15.1,14.7,14.8,15.0,16.6,18.9,21.3,23.1,24.4,25.2,25.5,26.0,26.6,26.5,26.4,26.0,23.2,18.5,16.5,20.2,19.8,19.7,19.4,18.7,17.9,17.3,17.2,17.1,18.7,20.8,22.9,24.9,26.4,27.1,27.7,27.7,28.2,28.4,28.2,27.7,26.5,21.2,19.4,21.8,21.8,21.3,20.3,19.7,19.2,18.8,18.4,18.5,19.8,22.0,23.6,25.2,26.6,28.5,28.7,29.6,29.4,29.9,29.6,25.8,24.8,23.2,20.0,21.6,20.3,19.9,18.9,18.8,18.4,18.1,17.8,17.7,17.6,17.7,18.0,18.7,18.9,18.3,19.4,18.7,19.3,19.4,20.0,18.6,18.1,17.5,17.4,17.3,17.1,17.0,16.8,16.6,16.5,16.3,16.2,16.1,16.3,16.9,17.3,18.0,18.8,18.3,18.1,18.5,18.6,19.5,19.5,19.3,18.5,17.2,16.2,15.6,15.9,16.1,15.8,15.7,15.7,15.8,14.8,16.1,16.4,17.2,18.4,20.0,20.4,20.8,22.2,22.6,23.3,23.2,22.1,21.7,19.1,17.8,16.2,16.3,16.2,16.3,16.2,16.4,16.1,16.1,16.1,16.2,16.4,17.1,18.8,19.1,17.9,19.5,21.1,21.7,23.1,21.7,22.0,20.8,19.6,18.5,18.0,15.7,15.3,14.5,14.4,15.1,15.5,15.9,15.9,16.1,16.7,17.9,19.1,19.5,18.8,19.7,19.0,18.7,19.4,19.3,19.6,19.1,18.5,17.8,17.0,14.6,15.9,15.0,13.7,13.3,12.7,11.9,12.8,13.7,14.9,15.7,17.2,18.1,18.9,19.4,20.0,21.3,20.6,20.3,21.3,20.1,18.5,16.4,13.1,11.3,10.7,9.7,9.6,8.8,7.9,7.6,7.6,7.2,11.8,14.6,17.1,18.5,19.1,19.6,20.7,20.9,22.1,21.8,21.5,20.9,18.8,15.8,13.3,12.4,12.7,15.5,16.1,16.2,15.8,15.6,15.5,15.3,16.5,18.0,19.4,21.1,22.9,23.6,25.1,25.7,26.5,26.8,26.8,26.3,24.7,23.3,22.0,22.2,17.8,16.1,16.9,17.6,16.2,16.4,15.8,16.4,17.3,18.2,19.7,20.6,22.0,22.1,23.7,24.4,24.2,24.3,24.5,23.1,22.0,19.4,16.0,14.8,13.5,13.1,12.2,11.0,11.7,12.1,14.3,15.5,16.0,16.7,18.0,19.3,21.1,21.7,22.1,21.8,22.6,21.6,20.7,20.4,18.7,16.3,15.4,14.3,12.6,12.2,12.0,12.6,11.6,12.9,11.8,11.2,14.3,16.3,18.5,20.1,21.0,22.5,22.4,21.8,22.1,23.9,23.7,23.1,20.8,17.1,14.9,14.2,14.7,16.4,16.3,16.2,15.7,15.5,14.8,14.9,16.4,19.4,21.4,23.7,25.7,26.7,27.7,28.5,29.3,29.2,28.6,28.4,23.4,20.7,18.3,17.3,16.2,16.0,15.3,19.9,20.0,19.0,19.0,18.6,20.4,23.1,25.9,28.6,28.6,31.3,32.9,34.0,33.8,33.6,32.9,32.3,23.7,22.8,21.4,18.8,18.4,18.3,18.1,16.5,16.1,15.8,15.9,15.9,15.8,16.1,17.1,19.0,20.0,21.4,20.3,22.2,20.4,21.4,20.4,20.6,18.6,16.8,15.2,13.8,13.5,11.8,11.3,11.3,11.1,11.2,11.1,10.7,13.1,14.7,17.0,18.6,19.6,20.6,21.1,21.9,21.5,20.0,19.9,20.1,17.9,14.3,12.2,11.3,10.0,9.9,9.5,10.6,9.4,8.8,8.8,8.2,12.8,15.6,18.2,20.9,22.4,23.3,23.9,24.9,24.6,25.0,25.0,24.2,19.3,17.3,16.5,17.1,16.4,16.3,15.5,15.2,14.3,13.9,13.3,13.3,15.0,17.2,19.3,21.3,22.7,23.9,25.3,26.2,27.3,27.6,27.1,26.3,21.4,20.2,18.4,16.9,17.6,16.1,18.4,16.9,18.7,19.3,17.7,16.8,17.0,17.9,18.4,19.6,19.9,20.0,19.9,20.2,19.9,19.6,19.9,20.0,18.9,17.9,16.5,13.9,11.9,11.4,11.1,11.7,12.2,11.4,12.3,12.5,13.4,15.2,17.5,19.2,21.4,22.4,23.2,24.0,23.1,23.2,23.1,22.5,21.4,17.5,14.4,13.6,17.2,17.4,14.6,11.8,15.4,17.8,17.3,17.0,18.2,19.3,21.4,23.4,24.6,24.3,24.4,23.8,23.6,23.6,23.8,23.0,21.3,18.4,15.7,15.5,18.2,18.1,20.0,18.4,17.6,17.5,17.4,17.1,16.9,17.3,16.9,16.1,19.0,17.8,21.3,20.9,20.3,19.9,19.3,18.8,17.4,16.0,11.4,11.6,11.3,11.0,11.0,11.2,11.2,11.2,10.7,10.7,11.0,12.7,14.2,16.0,17.8,15.7,17.5,17.0,17.8,15.9,17.1,16.8,14.6,12.4,11.1,10.0,10.9,11.9,11.8,11.7,11.2,11.5,11.4,11.3,11.5,12.5,14.7,15.9,17.5,16.5,15.8,17.0,16.8,16.2,17.4,16.6,16.0,12.6,10.0,12.1,11.6,12.8,12.6,13.0,13.5,12.9,13.0,12.7,13.8,15.2,17.5,19.7,21.4,22.7,23.2,24.1,24.9,24.8,24.5,23.9,18.4,18.0,18.4,18.6,18.5,18.0,17.4,16.8,16.4,16.9,18.0,19.8,18.4,21.2,23.1,24.1,25.2,23.7,22.1,19.5,18.0,17.0,16.5,16.4,16.4,16.2,15.9,15.2,14.9,15.1,14.8,14.5,14.0,13.4,13.2,13.3,14.0,14.8,16.1,17.2,17.9,18.4,19.8,19.5,20.1,21.0,20.3,19.7,17.9,15.6,15.1,14.8,14.3,14.3,14.4,14.7,14.0,13.9,13.8,14.3,14.9,15.6,16.6,16.6,17.5,16.9,16.9,18.3,19.5,17.8,17.9,17.3,15.9,12.4,13.6,13.3,13.2,13.5,13.3,13.2,12.9,12.4,12.3,12.3,12.5,12.9,13.9,15.0,16.1,17.1,14.8,16.7,15.3,16.5,17.4,16.2,14.8,13.6,13.3,11.7,11.9,12.7,13.0,13.1,13.1,13.1,13.1,13.0,13.2,13.9,14.5,16.2,14.6,16.7,15.0,17.3,16.9,17.8,16.8,16.5,14.7,13.0,11.9,11.2,11.3,11.7,12.9,13.1,13.0,12.8,13.2,13.3,13.4,14.0,15.9,16.1,17.0,18.0,17.5,17.8,16.5,17.4,16.8,16.3,14.8,10.7,9.7,9.1,8.8,10.6,12.5,12.7,13.1,13.0,12.7,12.8,12.9,14.6,16.3,18.1,19.2,19.6,19.8,22.1,22.4,22.4,22.2,20.8,16.3,14.1,13.6,12.2,14.3,12.4,11.1,10.9,13.5,12.8,13.6,13.5,15.0,17.1,19.3,21.5,23.3,24.7,25.9,26.3,27.2,27.1,26.6,25.1,18.4,15.6,15.4,15.2,19.2,19.7,18.3,17.3,16.2,15.5,15.2,14.3,15.9,18.0,20.2,21.5,22.1,21.1,20.7,20.8,19.5,17.8,17.2,17.0,16.2,16.0,15.6,15.2,14.7,14.2,13.7,13.7,14.4,14.2,14.2,14.1,14.4,14.6,15.1,15.9,16.5,17.5,18.5,18.6,19.0,18.9,18.8,17.2,15.5,11.8,12.6,9.9,9.9,8.4,7.9,7.1,6.1,5.8,5.7,5.3,9.0,11.0,14.2,16.5,17.7,17.9,18.3,18.0,17.7,18.0,17.4,16.3,15.0,13.0,12.3,10.4,9.2,9.5,10.4,11.7,11.2,8.8,9.0,8.3,9.8,12.2,13.8,15.4,16.6,17.2,18.6,19.2,19.8,19.4,18.3,17.2,15.6,13.6,11.8,9.5,8.8,9.1,9.8,10.7,11.6,12.3,12.1,12.8,12.7,13.4,14.0,14.8,15.3,14.5,16.4,15.1,16.6,18.0,17.4,16.2,14.8,14.0,12.8,12.4,12.6,11.2,10.7,12.6,12.7,12.7,12.8,13.0,12.9,13.7,14.4,14.4,15.0,16.3,17.2,17.2,17.8,15.8,16.2,15.6,14.8,14.3,13.4,13.5,13.7,14.0,13.7,13.5,13.7,13.6,13.7,13.9,14.0,13.6,13.8,14.4,13.9,14.5,15.4,15.2,15.9,15.9,16.1,16.1,15.6,14.9,14.8,14.9,15.1,14.9,15.1,15.0,14.7,13.7,14.0,14.1,14.1,14.1,14.5,14.8,15.6,17.4,17.7,18.4,18.1,18.9,18.4,17.2,15.5,14.5,13.4,12.8,11.8,11.0,10.5,9.8,9.3,8.2,7.8,6.7,7.6,11.4,13.2,14.7,16.3,16.6,17.1,16.4,17.1,16.6,16.2,15.0,11.5,9.6,9.0,8.1,7.1,6.7,5.9,5.4,4.6,4.5,3.0,4.0,4.5,9.9,12.2,14.8,16.7,18.3,20.4,20.7,21.0,21.1,20.1,18.4,16.4,15.8,14.9,14.2,14.1,14.0,11.4,10.6,11.1,11.7,10.7,12.2,11.9,14.8,16.6,18.9,20.8,22.5,23.6,24.0,24.4,24.1,23.2,20.4,17.9,16.2,14.7,13.4,13.2,11.7,12.1,11.9,11.1,11.0,10.4,10.1,11.1,14.7,16.3,18.6,19.7,20.7,21.9,21.7,20.5,19.8,19.0,17.9,15.8,13.4,11.8,11.0,10.5,10.3,9.5,8.6,8.4,8.3,7.9,7.3,7.1,10.4,13.6,15.4,16.9,17.5,17.4,17.9,18.0,18.1,17.3,13.8,11.6,9.8,8.4,7.1,6.3,6.4,7.1,7.4,8.8,11.2,11.4,10.8,11.8,12.7,15.5,16.7,17.3,18.9,20.7,20.9,20.9,21.0,20.4,19.0,16.8,13.0,11.7,10.4,11.4,12.2,14.1,14.4,14.3,14.3,14.4,14.4,14.4,14.6,15.6,16.2,17.0,18.5,18.3,19.2,19.1,18.7,17.4,15.6,14.3,12.9,12.0,12.4,12.2,12.2,12.2,11.6,11.8,12.6,11.7,10.2,8.7,11.9,15.5,16.5,17.6,18.4,19.0,18.8,17.4,17.5,16.6,15.7,14.2,12.1,10.4,9.2,7.0,6.1,6.1,4.6,4.6,4.6,4.0,4.7,7.0,9.3,10.8,13.4,14.4,15.6,17.1,16.9,16.2,16.5,16.2,14.3,11.8,10.7,10.3,10.1,9.6,8.1,7.5,7.1,5.9,5.9,5.3,4.7,5.2,7.9,12.3,15.7,16.5,17.0,18.1,18.2,17.7,17.5,17.0,14.5,11.4,9.8,8.0,7.5,6.6,6.0,6.3,6.1,4.9,5.1,4.7,3.7,3.7,7.2,11.4,14.8,17.0,17.9,18.9,19.6,19.7,19.4,18.0,15.7,11.9,10.0,8.6,8.1,7.7,6.3,5.7,5.3,5.0,9.1,9.3,9.3,9.9,10.6,12.3,14.3,15.9,16.7,17.6,17.6,17.5,17.5,17.2,16.2,16.1,15.8,15.1,14.7,13.9,14.4,14.3,13.7,13.9,14.2,14.3,14.3,14.1,14.8,15.4,15.6,16.5,16.6,16.4,15.1,15.4,14.8,14.9,14.6,14.6,14.5,14.5,14.4,14.2,12.8,12.8,12.7,12.0,11.9,11.7,11.5,11.3,12.2,12.9,13.4,14.2,14.6,14.3,14.9,15.0,15.1,15.3,14.9,14.2,14.1,14.0,13.0,11.9,10.7,9.5,9.0,7.8,6.8,7.0,7.9,5.3,9.8,11.5,13.6,14.2,14.2,16.4,15.7,15.6,15.0,14.5,12.4,12.1,12.0,11.7,9.3,6.8,4.4,1.8,1.4,1.1,0.8,0.9,2.1,0.5,1.3,5.7,9.3,12.5,13.5,14.0,14.6,14.6,13.3,11.6,9.4,7.3,7.6,8.0,8.6,8.9,8.8,8.3,7.7,7.4,6.8,7.5,8.6,5.3,9.8,11.5,13.6,14.2,14.2,16.4,15.7,15.6,15.0,14.5,12.4,11.8,11.7,11.7,11.8,12.1,12.6,13.2,13.8,14.5,14.9,15.2,15.5,15.2,15.4,16.2,16.8,17.6,17.8,15.8,14.5,15.0,15.0,15.1,14.7,13.1,12.1,10.8,9.3,8.2,7.6,7.4,7.6,7.7,7.8,7.8,7.8,7.8,7.8,7.8,8.0,8.5,8.9,9.5,8.9,9.5,9.5,9.1,8.9,8.2,8.1,8.1,8.8,10.0,11.0,12.2,12.9,13.5,14.2,14.8,15.4,15.2,15.4,16.2,16.8,17.6,17.8,15.8,14.5,15.0,15.0,15.1,14.7,14.2,13.9,13.6,13.7,13.3,12.7,12.5,11.7,11.6,11.8,12.0,12.0,11.8,11.9,12.3,12.7,13.6,14.8,15.0,16.0,15.5,15.5,14.1,13.5,11.4,11.3,11.3,10.9,10.8,10.7,10.7,10.6,9.8,10.0,9.5,9.2,9.5,10.3,11.2,12.0,13.8,13.9,14.7,14.7,15.0,14.5,13.4,12.7,11.3,9.2,7.1,6.9,6.1,6.1,6.9,6.7,6.2,6.7,6.9,7.1,5.9,6.7,8.8,10.3,11.2,13.4,14.3,14.4,14.6,14.6,12.3,9.2,7.5,6.5,5.4,4.1,2.7,2.8,2.6,1.9,1.6,1.0,1.0,0.8,0.5,1.3,5.7,9.3,12.5,13.5,14.0,14.6,14.6,13.3,11.6,9.4,7.4,7.6,8.1,6.7,6.7,6.7,7.4,6.9,6.2,6.5,5.9,5.6,5.3,5.7,7.2,9.0,10.5,11.1,11.3,11.8,11.6,11.2,10.1,8.4,8.0,7.1,6.6,5.8,5.1,4.3,4.4,5.0,4.0,3.9,3.6,3.1,3.1,3.7,5.7,7.7,9.0,10.5,11.4,11.7,11.9,11.1,10.2,9.0,7.9,7.0,6.8,6.2,6.1,5.8,5.8,5.4,5.0,4.6,4.5,4.1,3.7,4.1,5.4,6.4,7.7,8.8,9.3,10.5,10.4,15.0,10.1,8.5,8.4,7.6,7.2,7.1,6.0,5.8,5.2,4.9,4.5,4.4,4.5,4.5,4.8,6.2,8.5,12.0,13.2,14.7,15.0,15.3,15.1,15.3,13.9,12.5,11.8,11.3,10.8,10.5,10.3,9.7,9.2,8.9,8.5,8.5,8.7,9.0,9.5,10.3,11.3,12.1,12.2,13.8,14.7,15.4,15.7,14.5,14.2,12.6,12.0,11.4,11.3,11.2,10.6,10.6,10.9,10.6,9.7,10.1,9.7,9.8,9.7,10.0,10.3,11.6,11.6,12.0,12.8,13.0,12.8,13.4,10.5,9.2,9.9,9.0,8.9,8.7,8.1,7.7,7.5,7.4,7.0,7.1,7.2,7.6,7.0,7.1,7.4,8.2,8.8,9.2,9.2,9.8,8.7,8.9,8.8,8.3,7.8,7.6,7.4,7.4,6.8,6.6,6.9,6.9,7.2,7.5,7.8,7.8,7.8,7.8,7.8,8.0,8.5,8.9,9.5,8.9,9.5,9.5,9.1,8.9,8.6,8.5,8.2,7.7,8.0,8.3,8.2,8.3,8.3,8.4,8.5,8.3,8.3,8.5,8.8,9.4,9.9,10.2,10.9,11.8,11.3,11.8,10.5,7.6,8.5,7.4,7.6,8.3,6.9,6.5,7.0,6.3,6.0,5.8,4.8,4.8,4.9,5.0,7.4,9.5,11.3,12.8,13.7,14.5,14.0,13.6,11.9,10.4,9.5,9.4,8.7,7.8,8.1,7.4,7.2,6.7,6.9,7.1,7.1,7.4,8.0,8.8,9.4,9.9,9.9,11.2,12.3,13.7,14.7,15.5,16.1,16.1,16.5,16.2,16.1,16.4,16.0,16.0,15.3,15.7,15.5,15.7,16.4,16.8,13.4,11.6,11.4,12.0,13.1,13.8,14.1,13.9,14.3,13.8,12.6,11.0,11.6,11.7,11.7,11.8,12.0,11.9,12.1,11.4,11.5,11.3,11.0,10.6,10.3,10.7,11.4,12.5,13.8,14.5,15.2,16.0,16.1,16.1,15.1,14.5,13.9,13.3,13.6,13.6,13.3,13.7,13.6,13.6,14.2,14.3,13.2,13.5,13.5,13.4,13.5,13.8,14.3,14.7,15.4,15.9,16.4,16.3,16.3,15.8,16.7,17.4,17.6,17.5,17.5,17.2,17.0,16.6,16.3,16.6,16.4,16.2,16.0,15.7,16.3,16.8,17.2,17.0,17.4,17.5,17.9,17.9,18.0,17.4,17.4,17.0,16.9,16.7,16.6,16.6,16.3,16.1,16.2,15.4,15.1,14.6,14.2,13.9,14.5,15.4,14.9,15.0,15.3,14.9,14.8,15.0,14.5,13.9,13.6,13.5,12.9,12.2,11.6,11.2,10.6,10.0,9.4,8.8,7.9,8.2,7.6,7.4,8.6,10.2,11.7,12.5,13.2,13.1,12.3,11.7,10.0,7.3,6.7,5.7,3.8,4.0,2.6,2.9,1.8,0.9,1.2,0.3,0.4,0.2,-0.3,3.0,4.9,7.1,9.2,11.5,11.4,11.4,11.4,10.8,10.1,9.7,10.0,9.5,9.8,10.0,10.0,9.9,9.9,9.9,9.8,9.8,9.7,10.1,10.0,10.2,10.5,11.2,12.1,13.2,13.8,14.1,14.1,14.3,13.5,11.2,10.3,9.9,9.8,9.8,9.2,9.5,10.0,9.8,9.4,9.8,10.4,10.9,9.9,9.5,9.2,11.3,12.5,13.1,13.6,14.3,14.7,14.6,12.6,12.1,11.7,12.2,12.4,12.3,12.1,12.1,12.1,11.4,11.3,10.8,10.6,10.6,10.6,10.5,10.6,11.0,11.9,11.9,11.5,11.4,11.4,11.0,11.0,9.6,9.4,9.3,9.9,8.8,7.4,6.1,5.0,5.3,5.5,5.5,5.5,5.6,5.2,5.5,6.5,7.5,8.9,9.9,12.0,12.8,13.0,12.3,10.1,9.1,8.5,7.6,7.4,6.9,6.5,6.3,5.6,6.4,6.7,5.7,5.3,5.6,6.4,6.1,7.4,10.5,10.5,11.4,11.4,10.0,8.9,8.9,8.5,8.6,6.2,6.9,6.1,6.5,6.6,6.6,6.6,6.5,6.8,6.7,6.1,6.6,6.2,6.2,6.7,7.2,7.6,8.2,8.6,9.3,9.5,9.5,8.3,7.2,6.9,6.8,6.8,6.4,5.4,5.0,4.6,3.9,4.0,4.1,4.2,4.4,4.4,5.1,6.1,6.5,7.4,7.7,7.5,7.2,7.1,7.0,7.7,6.7,6.5,6.4,6.1,5.4,5.3,4.8,4.2,4.4,4.3,4.2,3.9,3.7,4.0,4.0,4.5,7.0,8.7,9.6,8.6,8.7,8.3,7.8,7.3,7.2,8.0,8.2,7.9,8.1,8.1,8.4,8.3,7.9,8.1,7.9,7.4,7.4,6.6,6.4,6.7,7.2,7.6,8.4,7.8,9.2,8.7,8.1,5.1,2.2,2.3,1.8,1.8,2.4,2.6,2.7,2.0,3.2,4.8,4.9,5.0,4.2,2.7,1.5,3.4,6.1,8.1,9.2,9.9,9.5,9.3,8.9,8.5,8.2,7.1,6.9,7.0,7.0,7.2,7.4,8.0,8.6,9.1,9.8,10.0,10.1,10.2,10.2,10.3,10.6,10.7,11.0,11.2,11.0,10.5,10.0,9.6,9.3,9.0,8.9,9.0,9.0,9.0,9.1,9.5,9.5,9.4,9.3,9.2,9.2,9.1,8.8,9.1,9.2,8.8,10.1,10.2,10.6,10.4,10.2,9.9,9.8,9.9,9.9,8.9,8.6,8.5,8.4,8.5,8.5,8.4,8.4,8.3,8.4,8.3,8.2,8.4,8.7,8.9,9.4,9.7,10.0,9.9,9.7,9.5,9.3,8.7,8.1,8.1,7.6,7.1,7.8,8.1,7.2,7.7,8.4,8.7,9.1,8.9,9.3,9.6,10.0,10.6,10.8,11.7,12.0,12.1,12.2,11.9,11.9,11.6,11.7,11.3,10.8,10.8,10.5,10.5,11.7,10.8,8.6,8.5,8.6,8.5,8.4,8.1,8.5,8.7,9.0,9.2,9.3,8.9,8.5,6.4,6.6,6.3,6.6,6.1,5.8,6.6,6.7,6.7,6.7,6.8,6.5,6.6,6.7,6.8,6.8,6.1,6.6,6.6,6.5,6.8,7.7,8.1,8.1,6.8,6.3,4.9,4.7,4.8,4.8,5.4,5.8,5.9,5.9,6.2,6.4,6.4,6.3,6.0,6.1,6.4,6.6,7.2,7.7,7.9,8.1,8.1,8.3,8.0,8.0,8.0,7.8,8.0,7.9,8.0,8.1,8.2,8.2,8.1,8.0,8.1,8.1,7.9,7.7,8.2,9.4,11.0,12.1,13.1,13.5,13.0,12.0,8.8,4.3,3.4,1.6,0.8,2.3,2.8,0.6,-0.9,-2.2,-2.1,-2.8,-2.8,-2.8,-1.5,-0.3,1.3,2.6,3.2,3.8,4.4,4.8,4.5,4.1,4.0,4.0,3.8,3.3,3.1,2.8,2.6,2.4,1.9,2.1,2.2,2.4,2.6,2.6,3.1,3.0,3.2,3.4,3.4,3.4,3.6,3.7,3.5,3.3,3.3,3.1,2.9,1.1,0.4,0.6,0.3,-0.1,-0.4,-0.4,-0.2,0.1,0.1,0.2,0.6,0.7,1.4,4.0,5.4,6.7,7.8,8.1,7.0,7.1,7.3,7.7,7.7,7.7,8.0,8.1,8.1,8.2,8.3,7.9,7.9,8.0,8.0,7.9,7.9,7.6,7.8,7.8,8.0,8.0,8.0,7.7,7.7,7.8,4.8,1.8,0.8,0.1,-0.3,-1.0,-1.2,-1.4,-2.4,-2.4,-3.1,-2.4,-2.9,-0.3,1.7,1.4,1.0,2.5,4.2,5.5,8.6,10.0,9.8,9.5,9.3,9.7,9.8,9.8,9.3,8.9,9.3,9.5,9.3,8.4,8.1,7.3,6.6,6.3,7.0,6.5,6.0,7.7,8.8,10.2,11.2,11.9,12.0,11.0,9.7,8.8,8.9,7.8,6.9,6.4,5.8,5.1,4.2,3.4,2.8,2.2,1.9,1.5,1.4,1.4,2.1,3.5,4.4,5.3,5.5,5.9,6.0,6.0,6.4,7.4,7.7,8.3,8.9,9.4,9.8,9.6,8.6,8.8,9.0,7.8,7.0,6.0,5.9,5.5,6.0,7.2,8.7,10.0,10.8,11.2,11.1,10.3,9.4,8.7,8.1,7.6,7.0,6.4,6.3,5.7,5.4,5.3,5.4,5.7,5.6,6.1,6.6,7.2,7.6,8.3,8.8,8.6,8.0,7.9,7.7,7.7,7.4,7.3,7.4,7.0,5.8,6.0,3.7,3.7,3.0,4.2,4.5,5.3,5.8,3.3,4.4,4.5,5.1,5.9,6.6,6.9,7.2,8.0,8.1,7.9,7.7,7.3,7.0,6.9,7.2,7.5,7.7,7.8,7.9,8.1,8.5,9.4,11.0,11.6,13.1,13.2,13.0,12.4,11.6,11.1,10.6,10.9,11.1,10.7,10.5,10.1,10.0,9.7,9.9,9.3,9.1,8.8,7.5,7.0,6.6,6.1,5.5,5.1,5.0,4.6,4.9,7.8,8.0,7.0,6.7,7.0,8.0,8.3,7.8,7.9,8.4,8.9,8.7,8.7,8.8,8.3,7.5,7.9,7.9,7.8,7.8,7.6,7.7,7.6,7.4,7.8,8.4,8.5,8.9,9.0,8.4,8.4,7.7,6.5,5.6,5.1,4.4,4.0,4.8,4.7,3.9,3.3,1.8,2.3,2.8,3.3,2.0,1.1,2.3,4.2,4.2,4.4,5.1,5.6,5.6,4.6,4.9,5.0,3.6,4.4,4.1,4.1,4.5,2.8,3.7,3.6,3.2,2.1,0.8,1.3,1.7,2.0,2.5,3.1,3.4,4.1,4.3,4.5,4.1,4.2,3.8,2.5,1.6,1.8,1.7,1.8,1.6,1.2,0.7,-0.1,-0.8,-1.2,-1.8,-2.5,-2.0,-2.8,-3.7,-1.0,2.5,3.9,2.2,0.8,0.6,0.6,0.7,0.5,0.6,0.9,1.5,1.7,1.8,2.0,2.2,2.5,2.6,2.8,3.0,3.0,3.3,3.3,3.2,3.6,4.2,4.4,4.3,4.3,4.2,3.6,3.4,3.0,2.3,0.5,1.0,1.3,1.4,1.7,2.0,2.2,2.4,2.2,2.9,2.8,2.8,2.9,2.7,3.1,3.9,4.2,4.4,4.3,4.3,3.9,2.0,0.0,-1.1,-0.2,0.1,0.4,-0.3,-2.9,-1.4,-1.5,-1.4,-0.9,-0.1,0.3,0.9,1.0,1.0,1.4,1.8,1.6,1.8,1.9,1.8,1.7,2.2,3.0,3.8,4.4,5.0,5.1,4.4,4.3,3.8,3.4,2.9,2.7,2.3,2.4,2.2,2.4,2.5,3.2,4.2,4.9,5.1,4.0,4.1,4.9,4.2,3.6,3.7,3.8,2.9,2.7,1.7,0.8,-0.2,-0.3,0.4,0.7,0.9,0.8,0.3,-1.0,-2.0,-1.2,1.3,2.3,3.1,2.9,1.9,1.4,1.4,1.2,0.6,0.8,0.8,0.1,-0.3,0.4,0.1,-0.3,-0.7,-1.2,-1.4,-1.8,-1.8,-1.9,-2.9,-2.2,-1.4,0.1,0.9,1.7,1.5,0.2,-0.6,-0.1,0.4,0.3,1.0,0.7,0.5,0.4,0.6,0.5,0.6,0.5,0.6,0.7,0.7,0.8,0.0,-0.8,-1.0,-0.5,-0.5,-0.1,0.1,0.5,0.2,0.1,-0.6,-1.3,-1.7,-1.7,-2.6,-4.0,-4.2,-5.6,-5.6,-8.3,-8.5,-9.1,-9.5,-9.7,-9.2,-8.6,-6.4,-3.9,-2.0,-1.8,-2.0,-3.2,-3.9,-4.4,-4.1,-3.1,-3.0,-1.7,-0.8,-1.1,-0.6,-0.1,0.1,-0.1,0.2,0.7,1.1,1.3,1.6,2.3,2.9,3.5,4.4,5.7,5.0,4.8,4.2,4.0,4.4,4.1,3.1,3.5,3.5,3.8,4.2,4.4,4.1,4.2,4.2,3.5,3.5,3.1,2.7,3.2,3.0,2.5,2.2,1.7,1.2,1.0,0.9,0.8,0.5,0.6,0.7,0.5,0.2,-0.1,0.1,-0.1,-0.2,-0.1,0.0,-0.2,-0.6,-1.7,-3.3,-2.0,-1.0,-0.4,0.1,0.4,0.7,0.1,0.0,-0.4,-0.4,-1.1,-0.9,-0.8,-0.4,-0.4,-0.2,-0.1,-0.3,-0.5,0.1,0.3,0.3,0.5,0.6,0.8,0.8,0.7,0.9,0.8,1.3,0.9,1.0,0.4,0.4,-0.4,-0.8,-1.3,-2.0,-1.8,-2.0,-1.6,-1.4,-1.2,-1.4,-1.6,-1.8,-1.8,-2.0,-1.4,-0.7,0.2,0.5,-0.2,-0.8,-1.5,-1.7,-2.1,-2.3,-2.2,-2.6,-2.3,-1.7,-1.3,-0.6,-0.9,-0.5,0.2,0.5,0.9,0.9,1.2,1.4,1.7,2.4,3.1,3.2,3.3,3.4,3.5,3.8,4.2,4.6,5.9,6.9,7.8,8.2,8.5,9.0,9.2,9.0,9.1,8.7,8.8,8.6,8.1,7.9,8.2,8.6,8.9,8.7,8.8,8.8,8.9,9.2,8.9,8.8,8.4,8.7,8.5,7.9,7.6,7.3,7.6,7.7,7.6,7.3,7.0,7.1,7.2,7.3,7.3,7.4,7.4,7.8,7.9,7.5,7.1,6.9,6.9,6.9,6.8,6.7,6.3,6.4,6.3,6.4,6.3,6.2,5.8,5.5,6.0,5.9,6.1,6.0,6.2,6.8,7.0,7.4,7.7,7.6,7.4,6.6,6.4,6.5,6.6,6.6,6.4,6.4,6.4,6.4,6.3,6.1,5.8,5.7,5.5,5.4,5.3,4.9,5.0,5.1,5.4,5.6,5.6,5.8,5.7,5.4,5.0,5.1,5.1,4.7,4.9,4.3,4.9,4.9,4.8,4.6,4.4,4.2,4.1,3.9,4.7,4.9,5.1,5.3,5.5,5.8,5.9,5.7,5.2,5.0,5.0,5.1,5.1,5.0,4.7,4.3,3.9,3.9,3.5,3.5,2.3,2.0,1.5,2.3,2.2,2.5,3.2,3.6,4.0,4.4,4.9,4.7,4.3,3.8,3.6,3.5,3.3,3.4,3.3,2.9,2.6,2.2,2.1,1.6,0.8,0.6,0.9,1.1,1.3,1.4,1.5,1.7,1.9,2.1,2.0,1.7,1.5,1.4,1.1,1.0,1.1,1.1,1.1,1.2,1.3,1.5,1.8,2.2,3.3,5.2,6.7,6.9,6.8,6.8,6.7,6.7,7.0,7.3,7.4,7.5,6.9,6.5,6.5,6.5,6.4,5.9,5.7,5.6,5.6,5.8,5.8,6.0,6.6,8.5,10.9,11.3,11.5,11.7,11.8,12.0,12.1,12.6,12.7,12.4,12.2,11.7,11.2,10.9,10.6,10.5,10.5,10.2,9.9,9.3,9.1,8.7,8.7,8.7,8.6,8.4,7.7,7.6,7.7,7.6,7.7,9.2,10.8,11.0,11.1,11.0,11.3,11.8,12.1,12.3,12.0,11.9,11.1,10.3,9.3,9.2,9.1,10.1,10.5,7.9,8.0,8.4,7.6,7.2,7.7,8.3,8.8,8.9,8.9,8.5,8.5,9.1,9.3,7.4,7.3,7.5,7.7,7.1,7.1,6.8,7.0,6.9,6.9,6.7,5.9,5.6,6.3,7.1,7.3,7.0,7.6,7.6,7.1,7.4,7.4,7.4,7.8,8.4,8.3,8.1,7.9,8.3,8.4,8.3,8.3,8.1,8.2,7.7,7.5,7.4,7.4,8.0,8.1,8.1,8.1,8.1,7.3,6.7,5.5,5.3,3.6,5.4,4.7,4.2,2.8,2.6,2.9,0.5,-1.4,-2.9,-1.9,-0.6,-0.5,-0.5,0.3,1.0,1.9,3.2,4.4,5.1,5.7,6.5,7.0,6.8,7.2,7.4,7.9,8.3,8.6,8.8,9.1,9.2,9.6,9.7,10.0,10.1,10.2,10.3,10.6,10.6,11.3,11.6,11.6,11.5,10.8,10.5,10.4,10.7,11.1,11.3,11.2,10.0,10.6,9.8,8.6,8.7,8.2,8.4,7.8,6.8,5.9,5.4,5.9,6.5,6.5,7.2,7.6,7.0,7.7,6.9,7.1,6.4,6.9,7.3,7.8,8.2,8.4}','°C','This is the dry bulb temperature in C at the time indicated. Note that this is a full numeric field (i.e. 23.6) and not an integer representation with tenths. Valid values range from -70°C to 70°C. Missing value for this field is 99.9'),
('Twenthe Enschede AP','NL','hour','Wind Speed','float',8760,'{5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,3.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,6.0,5.0,5.0,4.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,6.0,5.0,6.0,6.0,6.0,6.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.5,5.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,6.0,9.0,6.0,4.0,8.0,8.0,7.0,6.0,8.0,8.0,8.0,8.0,9.0,9.0,8.0,8.0,7.0,6.0,7.0,6.0,6.0,5.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,6.0,6.0,6.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,5.0,5.0,5.0,4.0,5.0,6.0,6.0,7.0,8.0,7.0,5.0,5.0,4.0,4.0,6.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,6.0,5.0,5.0,5.0,6.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,4.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,5.0,5.0,4.0,5.0,5.0,6.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,6.0,6.0,6.0,7.0,7.0,6.0,8.0,6.0,5.0,5.0,5.0,5.0,5.0,6.0,5.0,5.0,5.0,6.0,6.0,7.0,5.0,4.0,1.0,3.0,4.0,4.0,3.0,4.0,3.0,2.0,4.0,3.0,3.0,2.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,0.0,2.0,1.0,2.0,2.0,3.0,4.0,5.0,6.0,7.0,7.0,6.0,7.0,8.0,8.0,6.0,7.0,4.0,3.0,3.0,2.0,2.0,1.0,5.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,1.0,1.0,2.0,3.0,2.0,4.0,5.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,2.0,4.0,3.0,4.0,3.0,2.0,1.0,2.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,2.0,1.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,2.0,2.0,2.0,1.0,0.0,0.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,1.0,2.0,3.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,6.0,5.0,6.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,3.0,5.0,2.0,4.0,5.0,4.0,4.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,5.0,4.0,5.0,5.0,6.0,6.0,5.0,4.0,5.0,6.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,6.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,6.0,5.0,6.0,5.0,5.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,5.0,4.0,4.0,4.0,5.0,6.0,6.0,5.0,7.0,6.0,6.0,7.0,8.0,8.0,7.0,8.0,10.0,10.0,8.0,9.0,7.0,8.0,8.0,7.0,8.0,7.0,8.0,9.0,9.0,8.0,8.0,9.0,9.0,8.0,8.0,9.0,9.0,8.0,8.0,7.0,8.0,8.0,7.0,8.0,4.0,6.0,5.0,5.0,6.0,4.0,4.0,4.0,5.0,5.0,6.0,6.0,7.0,6.0,5.0,6.0,4.0,3.0,4.0,4.0,5.0,5.0,6.0,6.0,6.0,7.0,6.0,7.0,8.0,7.0,7.0,9.0,8.0,8.0,9.0,9.0,9.0,10.0,10.0,9.0,8.0,9.0,8.0,8.0,8.0,10.0,9.0,9.0,10.0,10.0,9.0,10.0,9.0,10.0,11.0,8.0,9.0,7.0,7.0,5.0,8.0,4.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,6.0,7.0,7.0,5.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,6.0,6.0,5.0,4.0,3.0,3.8,4.0,4.5,6.2,8.2,10.5,12.8,12.5,11.5,9.8,7.5,6.8,6.0,5.0,7.0,9.0,7.0,8.0,9.0,8.0,8.0,7.0,7.0,5.0,5.0,5.0,6.0,6.0,6.0,6.0,8.0,11.0,11.0,10.0,9.0,9.0,8.0,7.2,8.0,7.0,7.0,6.0,3.0,4.0,2.0,3.6,4.0,7.2,6.0,6.0,7.0,6.0,9.0,8.0,6.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,7.0,7.0,8.0,7.0,7.0,7.0,6.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,7.0,7.0,5.0,5.0,5.0,7.0,6.0,6.0,5.0,5.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,8.0,7.0,7.0,8.2,7.0,8.0,7.0,9.0,8.0,9.0,9.0,6.0,6.0,7.0,6.0,6.0,6.0,8.0,6.0,7.0,6.0,6.0,6.0,5.0,4.0,4.0,2.0,4.0,5.0,5.0,4.0,6.0,5.0,6.0,4.0,6.0,5.0,5.0,5.0,5.0,5.0,5.0,7.0,6.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,7.0,10.0,10.0,11.0,10.0,9.0,7.0,9.0,10.0,9.0,8.0,8.0,10.0,8.0,8.0,8.0,8.0,8.0,6.0,6.0,6.0,11.0,5.0,5.0,7.0,5.0,7.0,12.9,12.0,7.0,6.0,6.0,7.0,7.0,9.0,12.0,9.0,8.0,9.0,7.0,6.0,7.0,6.0,5.0,6.0,5.0,8.0,7.0,5.0,9.0,7.0,5.0,5.0,4.0,4.0,5.0,5.0,6.0,5.0,5.0,6.0,6.0,7.0,7.0,6.0,5.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.1,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,7.0,8.0,8.0,7.0,8.0,8.0,8.0,7.0,7.0,6.0,6.0,5.0,6.0,5.0,4.1,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,3.0,3.0,3.0,3.0,2.6,3.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,2.6,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,5.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,1.5,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,2.0,3.0,2.0,3.0,3.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,5.0,6.0,6.0,6.0,6.0,7.0,6.0,5.0,4.0,4.0,3.0,3.0,4.0,5.0,5.0,5.0,4.0,5.0,5.5,6.0,5.0,5.0,6.0,6.0,4.0,5.0,6.0,4.0,6.0,6.0,5.0,6.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,3.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,4.0,3.0,4.0,3.0,5.0,4.0,4.6,6.0,5.0,3.6,3.0,3.0,2.0,4.0,2.0,3.0,2.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,3.0,3.6,4.0,6.0,6.0,6.2,6.0,5.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,1.0,3.0,3.0,3.0,5.0,4.0,5.0,5.0,6.0,6.0,4.1,4.0,3.0,1.0,0.0,1.0,0.0,2.0,1.0,0.5,1.0,2.0,1.0,2.0,2.0,3.0,3.0,4.0,4.0,5.0,6.0,6.0,6.0,6.0,8.0,7.0,6.0,6.0,6.0,5.0,5.0,4.0,2.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,6.0,6.0,6.2,7.0,6.0,5.1,8.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.1,1.0,1.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,3.3,2.7,2.0,2.0,2.0,4.0,4.0,3.0,3.0,4.0,3.0,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,2.5,3.0,2.0,1.0,1.1,2.8,2.9,3.1,3.2,3.9,3.0,2.0,3.0,1.5,1.0,0.8,0.8,1.0,0.8,0.5,0.5,0.5,0.8,1.0,0.8,0.5,0.5,0.0,0.0,1.0,2.0,4.0,5.0,7.0,4.0,7.0,6.0,5.0,6.0,7.0,9.0,9.0,12.0,9.0,9.0,10.0,9.0,10.0,12.0,6.0,9.0,11.0,12.0,12.0,10.0,12.0,11.0,12.0,13.0,11.0,12.0,9.0,8.0,8.0,8.0,8.0,7.0,6.0,6.0,6.0,6.0,8.0,9.0,9.0,10.0,13.0,11.0,13.0,10.0,12.0,11.0,9.0,10.0,10.0,9.0,8.0,8.0,7.0,7.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,6.0,5.0,8.0,6.0,10.0,8.0,7.0,8.0,8.0,7.0,6.0,5.0,4.0,3.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,4.0,4.0,6.0,4.0,6.0,6.0,7.0,6.0,6.0,3.0,7.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,1.0,2.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,2.0,3.0,4.0,5.0,6.0,6.0,6.0,6.0,6.0,5.0,6.0,5.0,6.0,6.0,5.0,6.0,6.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,6.0,4.0,4.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,4.0,5.0,5.0,6.0,6.0,8.0,6.0,8.0,7.0,6.0,5.0,4.0,5.0,5.0,6.0,7.0,8.0,6.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,6.0,7.0,6.0,8.0,6.0,5.0,5.0,8.0,6.0,6.0,6.0,6.0,5.0,6.0,3.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,6.0,6.0,9.0,8.0,9.0,8.0,11.0,8.0,9.0,8.0,8.0,6.0,8.0,6.0,7.0,8.0,7.0,9.0,7.0,6.0,7.0,8.0,8.0,7.0,7.0,7.0,6.0,6.0,6.0,7.0,8.0,7.0,6.0,8.0,7.0,5.0,6.0,8.0,7.0,8.0,11.0,10.0,8.0,6.0,7.0,7.0,7.0,12.0,10.0,8.0,11.0,12.0,11.0,12.0,11.0,13.0,8.0,12.0,10.0,10.0,11.0,7.0,7.0,8.0,8.0,8.0,10.0,15.0,10.0,8.0,8.0,7.0,8.0,8.0,8.0,9.0,8.0,8.0,9.0,9.0,8.0,7.0,4.0,4.0,3.0,3.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,3.0,2.0,3.0,4.0,5.0,5.0,7.0,5.0,7.0,7.0,7.0,7.0,6.0,5.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,2.0,2.0,3.0,5.0,4.0,4.0,3.0,3.0,2.0,4.0,5.0,6.0,5.0,6.0,4.0,4.0,3.0,5.0,5.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,4.0,5.0,6.0,5.0,6.0,7.0,7.0,8.0,5.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,7.0,8.0,6.0,6.0,7.0,6.0,6.0,7.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,4.0,4.0,5.0,6.0,6.0,6.0,1.0,6.0,5.0,7.0,4.0,5.0,3.0,3.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,5.0,5.0,5.0,7.0,7.0,7.0,7.0,7.0,8.0,8.0,10.0,8.0,8.0,7.0,2.0,3.0,4.0,7.0,5.0,4.0,2.0,6.0,5.0,5.0,6.0,5.0,6.0,6.0,5.0,3.0,5.0,1.0,2.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,3.0,6.0,7.0,8.0,6.0,7.0,5.0,6.0,4.0,5.0,4.0,4.0,4.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,2.0,3.0,4.0,4.0,5.0,4.0,2.0,2.0,2.0,1.0,2.0,2.0,1.0,2.0,3.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,4.0,5.0,7.0,5.0,6.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,6.0,3.0,6.0,7.0,8.0,6.0,7.0,8.0,7.0,8.0,7.0,7.0,7.0,5.0,6.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,3.0,4.0,3.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,6.0,5.0,5.0,6.0,6.0,7.0,7.0,10.0,6.0,7.0,6.0,7.0,7.0,6.0,6.0,6.0,7.0,8.0,7.0,8.0,9.0,8.0,9.0,9.0,8.0,8.0,9.0,9.0,6.0,7.0,6.0,6.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,6.0,7.0,6.0,7.0,5.0,2.0,3.0,5.0,4.0,3.0,2.2,3.0,3.0,3.5,3.8,3.8,3.8,3.2,3.0,2.8,3.0,3.5,3.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,6.0,6.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,3.0,1.1,1.0,1.0,1.0,2.0,3.0,4.0,5.0,4.0,6.0,7.0,7.0,7.0,7.0,6.0,3.0,6.0,3.0,3.0,4.0,6.0,4.0,3.0,4.0,2.0,1.0,4.0,4.0,3.0,3.0,4.0,5.0,5.0,4.0,5.0,6.0,6.0,6.0,6.0,4.0,4.0,3.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,3.0,4.0,6.0,8.0,8.0,8.0,8.0,8.0,8.0,6.0,6.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,6.0,5.0,5.0,6.0,6.0,8.0,8.0,8.0,8.0,11.0,10.0,8.0,9.0,9.0,6.0,6.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,5.0,3.0,3.0,4.0,2.0,4.0,3.0,3.0,2.0,4.0,5.0,5.0,4.0,3.0,2.0,2.0,0.0,0.0,6.0,4.0,7.0,5.0,6.0,4.0,4.0,4.0,3.0,4.0,6.0,5.0,5.0,6.0,6.0,5.0,6.0,5.0,5.0,6.0,3.0,2.0,2.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,5.0,5.0,3.0,4.0,2.0,2.0,2.0,1.0,1.1,1.0,1.0,1.0,0.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,1.0,0.1,1.0,1.0,0.0,0.0,0.0,0.6,1.0,1.0,2.0,3.0,4.0,5.0,6.0,6.0,5.0,5.0,5.0,5.0,3.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,3.0,4.0,4.0,4.0,4.0,5.0,6.0,6.0,5.0,6.0,4.0,3.0,2.0,2.0,3.0,1.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,4.0,5.0,3.0,3.0,4.0,5.0,5.0,6.0,3.0,1.0,3.0,2.0,3.0,5.0,6.0,5.0,1.0,3.0,1.0,4.0,2.0,2.0,2.1,1.0,3.0,3.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,4.0,3.0,2.0,1.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,3.0,4.0,3.0,3.1,3.0,3.0,3.0,2.0,1.0,0.6,1.0,0.0,0.6,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,2.0,3.0,3.0,2.0,3.0,3.0,4.0,2.0,2.0,2.0,3.0,5.0,2.0,5.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,3.0,5.0,3.0,2.0,3.0,4.0,4.0,4.0,3.0,2.0,2.0,1.0,0.0,1.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,5.0,6.0,6.0,6.0,6.0,5.0,5.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,2.0,1.0,1.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.6,2.0,1.0,1.0,2.0,3.0,4.0,3.0,3.0,1.0,2.0,1.0,3.0,2.0,2.0,2.0,3.0,4.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,1.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,6.0,6.0,6.0,6.0,4.0,5.0,5.0,4.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,3.0,1.0,1.0,2.0,1.0,1.0,2.0,3.0,2.0,2.1,3.0,4.0,4.0,4.0,3.0,1.0,1.0,3.0,2.0,2.6,1.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,3.0,6.0,6.0,7.0,8.0,9.0,8.0,7.0,8.0,7.0,6.0,6.0,3.0,2.0,2.0,3.0,1.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,4.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,1.0,3.0,3.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,0.5,0.3,0.4,0.2,0.2,0.2,0.2,0.2,0.1,0.3,0.0,0.0,1.0,2.0,2.0,3.0,2.0,3.0,4.0,3.0,3.0,4.0,0.8,0.4,0.2,0.1,0.1,0.2,0.4,0.6,0.6,0.8,0.6,0.6,1.0,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,3.0,2.0,2.0,2.2,2.1,1.8,1.1,0.8,0.4,0.4,0.6,0.6,0.8,0.6,0.6,1.0,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,3.0,2.0,2.0,2.4,2.9,3.3,3.8,4.2,4.5,4.7,4.8,4.8,4.8,4.9,4.9,5.0,5.0,5.0,5.0,7.0,7.0,7.0,7.0,4.0,3.0,3.0,3.0,1.3,1.8,2.4,3.2,3.9,4.4,4.7,4.8,4.8,4.8,4.9,4.9,5.0,5.0,5.0,5.0,7.0,7.0,7.0,7.0,4.0,3.0,3.0,3.0,1.1,1.3,1.6,1.8,2.1,2.3,2.5,2.5,2.4,2.5,2.1,1.8,3.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,4.0,4.0,3.0,1.8,1.5,1.0,1.5,2.2,3.2,4.5,4.8,4.8,4.8,4.8,4.8,5.0,5.0,5.0,5.0,7.0,7.0,7.0,7.0,4.0,3.0,3.0,3.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,5.0,3.0,4.0,5.0,5.0,5.0,5.0,7.0,6.0,6.0,6.0,7.0,11.0,6.0,6.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,1.0,2.0,2.0,6.0,6.0,6.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,6.0,7.0,6.0,6.0,7.0,8.0,7.0,7.0,7.0,5.0,6.0,6.0,6.0,6.0,5.0,4.0,4.0,3.0,3.0,3.0,4.0,4.0,6.0,6.0,7.0,6.0,8.0,8.0,7.0,7.0,5.0,5.0,5.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,6.0,4.0,6.0,6.0,6.0,6.0,6.0,6.0,5.0,5.0,5.0,3.0,2.0,2.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,2.0,6.0,6.0,5.0,6.0,5.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,6.0,5.0,4.0,4.0,4.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,1.0,1.0,4.0,1.0,1.0,6.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,5.0,5.0,4.0,5.0,5.0,6.0,5.0,4.0,5.0,4.0,4.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,4.0,6.0,7.0,6.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,5.0,6.0,7.0,8.0,6.0,6.0,6.0,6.0,5.0,5.0,5.0,3.0,2.0,1.0,1.0,2.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,4.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,4.0,3.0,1.0,2.0,2.0,1.0,2.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,4.0,4.0,4.0,6.0,7.0,6.0,3.0,4.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,5.0,1.0,4.0,5.0,6.0,2.0,6.0,6.0,8.0,6.0,5.0,4.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,3.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,4.0,4.0,2.0,3.0,3.0,2.0,2.0,3.0,2.0,3.0,4.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,3.0,1.0,7.0,3.0,2.0,3.0,6.0,8.0,7.0,7.0,6.0,6.0,8.0,9.0,7.0,8.0,7.0,7.0,5.0,5.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,6.0,5.0,7.0,6.0,6.0,7.0,7.0,7.0,7.0,6.0,6.0,7.0,7.0,6.0,6.0,7.0,6.0,5.0,6.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,6.0,6.0,6.0,7.0,6.0,5.0,5.0,4.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,3.0,2.0,4.0,3.0,4.0,5.0,5.0,5.0,6.0,4.0,5.0,4.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,6.0,5.0,6.0,5.0,5.0,6.0,5.0,6.0,4.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,5.0,6.0,5.0,5.0,5.0,4.0,3.0,1.8,1.5,1.5,1.2,1.0,1.0,0.8,1.0,1.0,1.2,2.0,2.5,2.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,2.0,2.0,2.0,4.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,3.0,5.0,6.0,4.0,3.0,2.0,1.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,6.0,6.0,6.0,5.0,5.0,5.0,3.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,3.0,5.0,5.0,5.0,5.0,6.0,5.0,5.0,4.0,5.0,5.0,6.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,2.0,2.0,6.0,5.0,3.0,4.0,3.0,3.0,2.0,4.0,4.0,4.0,3.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,2.0,3.0,4.0,4.0,4.0,2.0,2.0,2.0,5.0,6.0,2.0,2.0,1.0,1.0,2.0,2.0,4.0,5.0,4.0,5.0,4.0,3.0,4.0,3.0,3.0,2.0,2.0,2.5,3.0,3.0,3.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,3.0,4.0,1.0,2.0,1.0,2.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,5.0,6.0,6.0,4.0,6.0,5.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,2.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,2.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,4.0,1.0,2.0,2.0,1.0,4.0,1.0,1.0,4.0,2.0,1.0,3.0,2.0,5.0,4.0,2.0,4.0,4.0,3.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,2.0,3.0,4.0,3.0,3.0,3.0,4.0,2.0,3.0,2.0,2.0,1.0,0.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,4.0,4.0,5.0,6.0,7.0,6.0,6.0,6.0,6.0,6.0,5.0,6.0,5.0,4.0,4.0,3.0,3.0,4.0,3.0,2.0,1.0,1.0,2.0,1.0,1.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,2.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,3.0,3.0,4.0,3.0,3.0,2.0,4.0,2.0,3.0,3.0,2.0,3.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,2.0,1.0,2.0,2.0,3.0,4.0,5.0,2.0,3.0,1.0,2.0,4.0,4.0,2.0,4.0,3.0,3.0,7.0,5.0,6.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,2.0,1.0,1.0,3.0,2.0,2.0,3.0,2.0,2.0,4.0,2.0,4.0,3.0,3.0,6.0,6.0,5.0,8.0,6.0,8.0,7.0,7.0,7.0,4.0,4.0,6.0,6.0,6.0,6.0,5.0,4.0,4.0,4.0,4.0,5.0,6.0,5.0,6.0,6.0,5.0,7.0,7.0,7.0,8.0,7.0,8.0,8.0,9.0,6.0,7.0,7.0,4.0,4.0,5.0,5.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,6.0,6.0,4.0,4.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,4.0,4.0,4.0,4.0,4.0,5.0,8.0,6.0,5.0,6.0,5.0,5.0,5.0,4.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,0.0,1.0,1.0,2.0,3.0,2.0,1.0,2.0,3.0,2.0,2.0,2.0,5.0,5.0,8.0,4.0,6.0,5.0,4.0,4.0,6.0,6.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,6.0,6.0,8.0,7.0,6.0,1.0,7.0,3.0,6.0,2.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,3.0,4.0,4.0,5.0,5.0,3.0,5.0,4.0,6.0,4.0,6.0,6.0,6.0,5.0,5.0,6.0,6.0,3.0,3.0,3.0,1.0,1.0,1.0,1.0,2.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,2.0,1.0,2.0,3.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,2.0,4.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,4.0,3.0,5.0,3.0,2.0,3.0,7.0,2.0,4.0,5.0,1.0,2.0,5.0,3.0,1.0,1.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,6.0,5.0,5.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,2.0,2.0,2.0,3.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,2.2,1.8,1.8,2.5,3.2,3.8,4.0,4.2,4.2,4.2,4.2,4.0,4.0,4.0,5.0,5.0,6.0,6.0,5.0,5.0,4.0,4.0,4.0,3.0,1.0,2.0,2.0,2.0,1.7,1.3,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,4.0,2.0,3.0,4.0,3.0,3.0,2.0,1.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,2.0,3.0,2.0,1.0,2.0,4.0,3.0,3.0,5.0,4.0,6.0,4.0,2.0,3.0,3.0,4.0,2.0,1.0,5.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,1.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,1.0,1.0,2.0,2.0,2.5,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,3.0,2.0,4.0,3.0,4.0,4.0,3.0,3.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,6.0,5.0,5.0,6.0,6.0,5.0,4.0,4.0,4.0,2.0,2.0,2.0,2.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,3.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,3.0,2.0,4.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,4.0,3.0,2.0,3.0,1.0,2.0,1.0,2.0,2.0,4.0,2.0,4.0,2.0,4.0,3.0,2.0,2.0,1.8,1.5,1.2,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,3.0,2.0,1.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,2.0,4.0,3.0,3.0,3.0,2.0,2.0,1.5,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,1.8,1.6,1.4,1.2,1.0,2.0,1.0,1.0,1.0,1.0,1.0,3.0,2.0,2.0,1.0,2.0,2.0,2.0,1.0,3.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,4.0,5.0,6.0,4.0,4.0,4.0,3.0,1.0,2.0,1.0,1.0,1.0,1.0,2.0,3.0,3.0,3.0,3.0,5.0,5.0,5.0,6.0,5.0,5.0,7.0,6.0,4.0,4.0,4.0,2.0,3.0,2.0,1.0,1.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,1.0,1.0,1.0,2.0,3.0,2.0,1.0,2.0,2.0,1.0,2.0,3.0,3.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,1.2,1.5,1.8,2.0,3.0,3.0,1.0,1.0,1.0,2.0,1.0,3.0,1.0,1.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,2.0,1.0,2.0,3.0,2.0,5.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,3.0,2.0,4.0,2.0,4.0,2.0,4.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,3.0,2.0,2.0,4.0,2.0,2.0,2.0,2.0,1.0,2.0,1.5,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,3.0,2.0,1.0,3.0,1.0,2.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0,3.0,4.0,3.0,2.0,2.0,3.0,4.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,6.0,5.0,3.0,5.0,3.0,2.0,2.0,1.0,1.0,1.0,3.0,3.0,4.0,5.0,4.0,5.0,5.0,4.0,5.0,6.0,6.0,7.0,5.0,6.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,6.0,6.0,5.0,5.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,6.0,6.0,6.0,6.0,3.0,4.0,5.0,3.0,1.0,1.2,1.8,2.0,2.2,2.5,2.0,2.0,2.0,1.8,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,5.0,3.0,4.0,3.0,2.0,1.0,1.0,1.0,1.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,3.0,4.0,4.0,2.0,4.0,3.0,4.0,2.0,3.0,1.0,2.0,2.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,2.0,1.0,2.0,3.0,2.0,2.0,4.0,2.0,3.0,2.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,3.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,2.0,2.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,1.0,2.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,1.0,2.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,2.0,2.0,1.0,4.0,3.0,2.0,1.0,2.0,2.0,4.0,2.0,1.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,2.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,2.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,2.0,1.0,0.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,2.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,2.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,3.0,2.0,3.0,1.0,2.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,2.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,5.0,3.0,4.0,3.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,1.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,6.0,7.0,6.0,6.0,7.0,6.0,5.0,6.0,3.0,3.0,3.0,4.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,4.0,4.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,4.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,6.0,5.0,3.0,2.0,2.0,1.0,1.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,2.0,3.0,4.0,4.0,3.0,3.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,6.0,3.0,3.0,3.0,6.0,4.0,4.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,2.0,4.0,4.0,4.0,2.0,4.0,2.0,3.0,2.0,1.0,2.0,2.0,1.0,2.0,1.0,2.0,2.0,2.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,2.0,3.0,3.0,3.0,3.0,4.0,2.0,3.0,3.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,4.0,5.0,2.0,1.0,0.0,0.0,1.0,1.0,1.0,2.0,2.0,3.0,4.0,3.0,2.0,1.0,1.0,2.0,2.0,2.0,1.0,3.0,2.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,1.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,2.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,6.0,5.0,6.0,6.0,4.0,5.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,6.0,6.0,5.0,5.0,7.0,8.0,10.0,9.0,7.0,7.0,5.0,5.0,2.0,5.0,6.0,5.0,3.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,5.0,7.0,7.0,7.0,5.0,4.0,6.0,3.0,6.0,5.0,4.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,2.0,2.0,5.0,4.0,3.0,4.0,3.0,4.0,5.0,5.0,6.0,5.0,6.0,4.0,4.0,2.0,2.0,1.0,0.0,1.0,2.0,2.0,2.0,2.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,5.0,5.0,6.0,5.0,4.0,3.0,3.0,1.0,2.2,2.2,2.2,2.2,2.0,2.0,2.0,2.0,2.0,2.2,3.0,4.2,3.0,5.0,7.0,7.0,6.0,6.0,5.0,3.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,4.0,5.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,5.0,7.0,6.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,1.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,4.0,5.0,6.0,6.0,7.0,7.0,9.0,7.0,9.0,11.0,12.0,13.0,9.0,6.0,7.0,4.0,6.0,5.0,6.0,8.0,7.0,8.0,7.0,7.0,6.0,7.0,7.0,7.0,7.0,6.0,7.0,7.0,4.0,6.0,6.0,8.0,7.0,8.0,5.0,9.0,6.0,6.0,7.0,5.0,5.0,5.0,5.0,4.0,5.0,6.0,5.0,6.0,7.0,7.0,5.0,7.0,4.0,8.0,7.0,8.0,6.0,5.0,5.0,3.0,2.0,2.0,3.0,4.0,4.0,3.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,4.0,5.0,5.0,4.0,4.0,4.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,3.0,3.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,3.0,5.0,5.0,5.0,5.0,4.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,6.0,5.0,5.0,4.0,6.0,4.0,5.0,5.0,5.0,4.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,2.0,2.0,0.0,0.0,1.0,1.0,2.0,2.0,4.0,5.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,2.0,4.0,5.0,5.0,5.0,6.0,4.0,5.0,5.0,4.0,5.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,4.0,5.0,6.0,5.0,8.0,6.0,5.0,3.0,5.0,4.0,3.0,4.0,2.0,3.0,4.0,6.0,6.0,5.0,6.0,5.0,4.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,2.0,3.0,3.0,4.0,4.0,3.0,2.0,4.0,4.0,3.0,5.0,4.0,5.0,5.0,5.0,7.0,6.0,5.0,5.0,5.0,5.0,4.0,5.0,6.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,3.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,3.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,2.0,2.0,3.0,3.0,4.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,3.0,4.0,4.0,5.0,5.0,4.0,5.0,5.0,6.0,6.0,6.0,6.0,5.0,5.0,4.0,3.0,2.0,2.0,1.0,2.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,5.0,5.0,6.0,6.0,5.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,1.0,1.0,2.0,1.0,3.0,3.0,4.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,5.0,4.0,6.0,6.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,1.0,1.0,3.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,4.0,3.8,3.5,3.2,2.8,2.2,1.8,1.2,1.0,1.0,1.0,1.0,1.2,1.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0,2.2,2.8,2.9,2.2,1.9,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,2.0,2.0,3.0,4.0,2.0,2.0,1.9,1.9,1.8,1.6,1.4,1.2,1.1,1.0,1.1,1.1,1.1,1.3,1.0,1.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0,2.5,2.5,2.1,1.5,1.1,1.0,1.4,2.1,3.0,3.9,4.2,4.3,5.0,4.0,4.0,3.0,4.0,5.0,6.0,3.0,3.0,2.0,4.0,3.0,3.6,3.3,2.9,2.3,1.9,1.9,2.0,2.3,2.6,2.8,2.9,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.8,4.0,4.0,3.0,2.2,1.2,0.5,0.8,1.5,2.8,3.5,4.2,5.0,4.0,4.0,3.0,4.0,5.0,6.0,3.0,3.0,2.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,6.0,5.0,5.0,6.0,6.0,6.0,5.0,5.0,6.0,7.0,6.0,6.0,6.0,6.0,4.0,6.0,4.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,4.0,6.0,5.0,4.0,4.0,5.0,6.0,5.0,5.0,7.0,6.0,7.0,5.0,5.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,2.0,2.0,3.0,4.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,5.0,5.0,6.0,5.0,5.0,5.0,4.0,3.0,3.1,3.0,3.0,2.0,2.0,3.0,4.0,2.6,3.0,3.0,3.0,3.0,4.0,3.0,4.0,5.0,6.0,5.0,7.0,6.0,7.0,6.0,5.0,7.0,5.0,4.0,4.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,6.0,6.0,7.0,5.0,5.0,6.0,5.0,5.0,5.0,6.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,2.0,3.0,2.0,3.0,2.0,1.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.6,2.0,2.0,3.0,4.0,4.0,4.0,7.0,5.0,5.0,3.0,2.0,2.0,2.5,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,4.0,3.0,3.0,3.0,1.0,1.0,2.0,1.0,1.0,5.0,1.0,2.0,2.0,3.0,3.1,2.0,2.0,5.0,5.0,4.0,4.0,4.0,5.0,5.0,4.0,3.0,5.0,3.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,5.0,4.0,5.0,5.0,5.0,6.0,5.0,6.0,6.0,5.0,3.0,1.0,3.0,2.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,2.0,3.0,3.0,4.0,5.0,4.0,4.0,4.0,4.0,5.0,5.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,3.0,3.0,6.0,5.0,7.0,6.0,7.0,10.0,7.0,6.0,7.0,7.0,8.0,7.0,7.0,7.0,5.0,4.0,5.0,5.0,6.0,6.0,6.0,8.0,8.0,7.0,6.0,6.0,6.0,5.0,5.0,6.0,5.0,6.0,6.0,7.0,8.0,8.0,7.0,6.0,6.0,5.0,6.0,5.0,6.0,6.0,6.0,6.0,7.0,6.0,6.0,7.0,5.0,6.0,6.0,7.0,6.0,6.0,7.0,7.0,8.0,7.0,7.0,5.0,6.0,5.0,6.0,7.0,7.0,7.0,7.0,6.0,6.0,6.0,6.0,6.0,5.0,4.0,5.0,5.0,5.0,5.0,6.0,5.0,5.0,5.0,4.0,4.0,3.6,4.0,5.0,4.0,3.0,4.0,4.0,4.0,5.0,6.0,7.0,6.0,7.0,7.0,7.0,8.0,7.0,9.0,7.0,8.0,9.0,6.0,7.0,8.0,7.0,7.0,4.0,6.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,4.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,2.0,2.0,3.0,4.0,5.0,3.0,4.0,4.0,4.0,4.0,4.1,4.0,5.0,5.0,4.7,4.3,4.0,3.7,3.3,3.0,2.0,3.0,3.6,3.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,1.0,2.0,1.0,2.0,2.0,2.0,1.0,2.0,2.0,1.0,2.0,2.0,1.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.2,2.5,2.5,2.8,3.5,3.5,3.5,3.5,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,4.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,5.0,4.0,5.0,7.0,5.0,4.0,5.0,5.0,6.0,3.0,5.0,5.0,7.0,7.0,7.0,7.0,6.0,6.0,7.0,6.0,6.0,7.0,7.0,8.0,8.0,8.0,7.0,8.0,6.0,7.0,5.0,3.0,4.0,6.0,3.0,5.0,5.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,5.0,3.0,4.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,5.0,4.0,6.0,5.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,3.0,4.0,2.0,1.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,3.0,2.0,4.0,7.0,6.0,7.0,5.0,6.0,6.0,7.0,6.0,6.0,6.0,6.0,5.0,4.0,4.0,5.0,4.0,3.0,4.0,4.0,4.0,3.0,2.0,1.0,2.0,1.0,2.0,2.0,2.0,3.0,2.0,4.0,4.0,3.0,3.0,3.0,2.0,1.0,2.0,2.0,3.0,5.0,5.0,6.0,6.0,6.0,5.0,5.0,6.0,6.0,7.0,6.0,5.0,6.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,4.0,5.0,6.0,6.0,6.0,5.0,5.0,6.0,5.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,7.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,5.0,5.0,6.0,5.0,5.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,2.0,2.0,4.0,4.0,3.0,4.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,2.0,3.0,1.0,1.0,2.0,3.0,2.0,3.0,3.0,3.0,4.0,6.0,6.0,6.0,3.0,4.0,3.0,3.0,3.0,3.0,4.0,5.0,3.0,4.0,4.0,3.0,2.0,3.0,3.0,3.0,3.0,2.0,5.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,3.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,0.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,1.0,1.0,2.0,3.0,2.0,2.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,3.0,3.0,4.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,3.0,5.0,7.0,7.0,7.0,7.0,8.0,9.0,7.0,6.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,6.0,6.0,6.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,3.0,4.0,4.0,4.0,5.0,5.0,6.0,6.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,1.0,2.0,2.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,4.0,3.0,3.0,5.0,4.0,4.0,5.0,5.0,4.0,3.0,4.0,4.0,7.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,8.0,7.0,8.0,8.0,8.0,8.0,8.0,7.0,6.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,2.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,3.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,2.0,3.0,2.0,4.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,2.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,1.8,1.5,1.2,1.0,1.2,1.2,1.2,1.2,0.8,0.8,0.5,0.5,1.0,0.0,1.0,1.0,1.0,2.0,3.0,2.0,2.0,2.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,7.0,7.0,5.0,6.0,6.0,5.0,5.0,5.0,5.0,4.0,4.0,5.0,5.0,4.0,5.0,4.0,4.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,5.0,6.0,7.0,6.0,5.0,5.0,6.0,6.0,6.0,5.0,6.0,4.0,4.0,4.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,8.0,8.0,7.0,8.0,7.0,3.0,3.0,3.0,4.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,2.0,3.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,5.0,5.0,4.0,4.0,7.0,7.0,4.0,4.0,3.0,3.0,3.0,3.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,6.0,5.0,5.0,5.0,6.0,5.0,4.0,3.0,4.0,5.0,4.0,5.0,5.0,5.0,4.0,4.0,3.0,3.0,3.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,4.0,5.0,5.0,4.0,6.0,6.0,7.0,8.0,7.0,8.0,6.0,6.0,7.0,6.0,5.0,5.0,5.0,9.0,6.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,7.0,6.0,6.0,6.0,6.0,6.0,4.0,6.0,5.0,4.0,4.0,4.0,5.0,6.0,6.0,5.0,4.0,3.0,5.0,4.0,4.0,4.0,5.0,4.0,4.0,4.0,4.0,3.0,4.0,5.0,5.0,5.0,3.0,2.0,2.0,3.0,3.0,4.0,3.0,2.0,2.0,2.0,2.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,3.0,4.0,3.0,3.0,3.0,4.0,3.0,4.0,4.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,1.0,1.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,2.3,2.7,3.0,3.5,4.0,4.0,4.3,4.7,5.0,5.0,4.5,4.0,4.0,5.0,6.0,6.0,6.0,5.0,7.0,6.0,6.0,5.0,5.0,5.0,5.0,6.0,6.0,7.0,7.0,6.0,6.0,5.0,4.0,5.0,4.0,4.0,5.0,4.0,5.0,3.0,4.0,3.0,3.0,4.0,5.0,5.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,3.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,3.0,4.0,4.0,5.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,5.0,6.0,6.0,6.0,5.0,6.0,6.0,5.0,5.0,5.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,2.0,2.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,1.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,4.0,3.5,3.0,3.0,2.0,3.0,4.0,4.0,4.0,4.0,3.0,3.0,2.0,3.0,2.0,2.0,3.0,5.0,4.0,5.0,7.0,6.0,6.0,7.0,8.0,7.0,6.0,6.0,6.0,6.0,5.0,5.0,5.0,5.0,4.0,5.0,4.0,5.0,4.0,4.0,3.0,4.0,4.0,5.0,4.0,2.0,2.0,2.0,4.0,4.0,5.0,5.0,4.0,4.0,7.0,9.0,9.0,7.0,7.0,6.0,5.0,3.0,2.0,2.0,4.0,4.0,1.0,3.0,6.0,4.0,3.0,4.0,5.0,5.0,6.0,6.0,6.0,6.0,9.0,10.0,8.0,8.0,7.0,6.0,4.0,5.0,5.0,5.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,6.0,6.0,5.0,6.0,6.0,5.0,5.0,6.0,6.0,7.0,7.0,9.0,8.0,8.0,6.0,8.0,8.0,7.0,8.0,7.0,6.0,5.0,6.0,4.0,5.0,4.0,3.0,1.0,0.0,2.0,1.0,2.0,2.0,4.0,7.0,3.0,1.0,1.0,2.0,0.0,0.0,2.0,1.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,3.0,3.0,3.0,4.0,6.0,6.0,7.0,7.0,7.0,7.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,5.0,6.0,6.0,5.0,6.0,5.0,5.0,4.0,5.0,5.0,6.0,7.0,8.0,7.0,6.0,6.0,7.0,6.0,6.0,6.0,7.0,6.0,8.0,7.0,6.0,7.0,8.0,8.0,7.0,7.0,6.0,8.0,7.0,7.0,7.0,6.0,6.0,6.0,7.0,7.0}','m/s','This is the wind speed in m/sec. (Wind speed at time indicated.) Values can range from 0 to 40. Missing value is 999.'),
('Twenthe Enschede AP','NL','hour','Wind Direction','float',8760,'{171.0,178.0,186.0,199.0,214.0,211.0,202.0,195.0,174.0,174.0,185.0,181.0,169.0,196.0,135.0,134.0,71.0,86.0,104.0,100.0,101.0,113.0,133.0,100.0,98.0,98.0,98.0,96.0,105.0,105.0,108.0,108.0,112.0,108.0,108.0,102.0,109.0,103.0,111.0,102.0,104.0,107.0,110.0,106.0,106.0,111.0,110.0,104.0,103.0,103.0,102.0,102.0,103.0,101.0,111.0,108.0,102.0,105.0,115.0,119.0,108.0,115.0,108.0,106.0,107.0,110.0,112.0,103.0,112.0,108.0,106.0,112.0,108.0,110.0,104.0,105.0,105.0,97.0,100.0,101.0,99.0,99.0,96.0,66.0,77.0,72.0,61.0,64.0,83.0,76.0,71.0,74.0,81.0,84.0,85.0,80.0,93.0,86.0,76.0,85.0,94.0,83.0,96.0,87.0,111.0,93.0,100.0,98.0,78.0,89.0,70.0,62.0,58.0,59.0,66.0,55.0,60.0,63.0,58.0,94.0,59.0,61.0,62.0,72.0,61.0,60.0,69.0,66.0,64.0,63.0,67.0,64.0,58.0,63.0,61.0,67.0,61.0,58.0,79.0,76.0,75.0,79.0,76.0,87.0,83.0,110.0,102.0,94.0,97.0,109.0,102.0,98.0,97.0,98.0,108.0,102.0,103.0,97.0,110.0,121.0,144.0,154.0,135.0,171.0,252.0,243.0,231.0,223.0,223.0,226.0,223.0,226.0,223.0,229.0,225.0,229.0,228.0,225.0,227.0,227.0,225.0,225.0,218.0,218.0,206.0,192.0,181.0,186.0,185.0,178.0,175.0,158.0,166.0,163.0,168.0,165.0,167.0,165.0,168.0,169.0,176.0,191.0,186.0,175.0,172.0,171.0,159.0,156.0,169.0,164.0,177.0,176.0,161.0,163.0,153.0,149.0,150.0,150.0,150.0,150.0,157.0,176.0,187.0,199.0,199.0,208.0,198.0,200.0,202.0,198.0,191.0,192.0,186.0,194.0,190.0,185.0,186.0,194.0,195.0,198.0,195.0,203.0,203.0,191.0,183.0,158.0,159.0,151.0,128.0,128.0,123.0,120.0,138.0,130.0,134.0,146.0,159.0,162.0,155.0,183.0,187.0,192.0,212.0,214.0,205.0,218.0,220.0,217.0,220.0,222.0,225.0,219.0,225.0,221.0,220.0,216.0,225.0,223.0,228.0,227.0,231.0,213.0,221.0,215.0,215.0,221.0,214.0,208.0,213.0,208.0,236.0,281.0,299.0,307.0,294.0,290.0,292.0,295.0,292.0,259.0,254.0,246.0,222.0,253.0,238.0,265.0,235.0,227.0,221.0,224.0,209.0,205.0,197.0,190.0,180.0,167.0,172.0,172.0,166.0,161.0,154.0,158.0,163.0,183.0,186.0,194.0,183.0,181.0,189.0,180.0,181.0,184.0,184.0,181.0,181.0,177.0,179.0,185.0,151.0,137.0,29.0,349.0,355.0,3.0,359.0,337.0,347.0,352.0,359.0,356.0,1.0,345.0,357.0,343.0,6.0,2.0,325.0,326.0,360.0,194.0,204.0,164.0,218.0,205.0,205.0,201.0,202.0,209.0,219.0,265.0,305.0,333.0,332.0,321.0,330.0,319.0,283.0,332.0,270.0,278.0,251.0,259.0,262.0,263.0,293.0,289.0,294.0,309.0,320.0,329.0,331.0,323.0,303.0,299.0,325.0,318.0,345.0,352.0,359.0,11.0,360.0,265.0,360.0,36.0,360.0,360.0,103.0,360.0,159.0,360.0,163.0,194.0,102.0,146.0,71.0,83.0,134.0,135.0,145.0,158.0,158.0,153.0,162.0,134.0,119.0,115.0,105.0,117.0,125.0,151.0,136.0,58.0,151.0,128.0,63.0,129.0,360.0,134.0,146.0,253.0,195.0,198.0,194.0,202.0,202.0,219.0,214.0,213.0,220.0,218.0,213.0,219.0,218.0,221.0,229.0,208.0,228.0,221.0,229.0,215.0,236.0,217.0,216.0,250.0,221.0,240.0,243.0,247.0,256.0,268.0,262.0,267.0,271.0,278.0,237.0,360.0,360.0,149.0,42.0,71.0,100.0,108.0,130.0,142.0,158.0,139.0,163.0,153.0,160.0,171.0,163.0,179.0,197.0,152.0,171.0,141.0,102.0,136.0,109.0,132.0,126.0,116.0,117.0,118.0,127.0,124.0,127.0,132.0,133.0,129.0,138.0,131.0,130.0,133.0,140.0,148.0,153.0,146.0,141.0,151.0,147.0,156.0,158.0,167.0,172.0,176.0,194.0,200.0,206.0,220.0,223.0,247.0,242.0,239.0,245.0,240.0,248.0,239.0,232.0,237.0,225.0,227.0,226.0,225.0,230.0,217.0,212.0,211.0,213.0,199.0,192.0,189.0,188.0,206.0,196.0,191.0,182.0,198.0,200.0,207.0,188.0,178.0,202.0,208.0,205.0,204.0,206.0,206.0,210.0,211.0,210.0,213.0,205.0,223.0,224.0,227.0,230.0,231.0,239.0,233.0,230.0,213.0,187.0,194.0,182.0,183.0,183.0,191.0,193.0,174.0,172.0,179.0,174.0,166.0,181.0,200.0,212.0,217.0,208.0,213.0,216.0,227.0,228.0,245.0,252.0,242.0,226.0,225.0,225.0,223.0,223.0,214.0,210.0,212.0,205.0,208.0,202.0,205.0,216.0,210.0,206.0,209.0,211.0,213.0,219.0,218.0,218.0,219.0,213.0,212.0,213.0,214.0,214.0,211.0,208.0,210.0,205.0,212.0,210.0,215.0,209.0,207.0,211.0,211.0,213.0,209.0,212.0,215.0,260.0,278.0,264.0,257.0,262.0,274.0,273.0,256.0,237.0,241.0,248.0,257.0,253.0,241.0,239.0,225.0,222.0,215.0,197.0,201.0,200.0,208.0,208.0,207.0,203.0,207.0,204.0,207.0,208.0,208.0,209.0,207.0,216.0,209.0,206.0,209.0,210.0,213.0,225.0,219.0,212.0,212.0,208.0,212.0,211.0,209.0,215.0,214.0,210.0,209.0,212.0,209.0,206.0,204.0,204.0,205.0,211.0,217.0,240.0,234.0,235.0,246.0,258.0,249.0,246.0,261.0,245.0,235.0,247.0,223.0,221.0,225.0,232.0,221.0,223.0,227.0,223.0,220.0,221.0,222.0,217.0,219.0,219.0,217.0,224.0,224.0,229.0,205.0,199.0,191.0,207.0,226.0,248.0,251.0,250.0,244.0,240.0,245.0,252.0,257.0,250.0,242.0,260.0,220.0,220.0,240.0,230.0,240.0,250.0,240.0,250.0,240.0,240.0,230.0,220.0,200.0,220.0,200.0,200.0,180.0,220.0,240.0,250.0,240.0,240.0,240.0,250.0,250.0,230.0,220.0,220.0,220.0,220.0,220.0,200.0,190.0,220.0,240.0,240.0,240.0,240.0,240.0,250.0,250.0,220.0,220.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,220.0,220.0,220.0,220.0,210.0,200.0,210.0,210.0,210.0,200.0,210.0,210.0,210.0,220.0,210.0,220.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,220.0,220.0,220.0,200.0,220.0,210.0,220.0,210.0,210.0,210.0,220.0,220.0,220.0,230.0,230.0,240.0,240.0,250.0,230.0,230.0,230.0,240.0,240.0,240.0,240.0,240.0,230.0,230.0,240.0,220.0,230.0,230.0,270.0,240.0,220.0,230.0,250.0,230.0,240.0,240.0,240.0,220.0,230.0,220.0,210.0,220.0,200.0,200.0,200.0,220.0,210.0,220.0,210.0,200.0,210.0,230.0,220.0,220.0,230.0,220.0,230.0,240.0,230.0,240.0,250.0,240.0,220.0,220.0,260.0,240.0,240.0,230.0,250.0,250.0,260.0,260.0,260.0,260.0,250.0,240.0,210.0,240.0,220.0,240.0,270.0,220.0,220.0,230.0,250.0,240.0,230.0,210.0,220.0,220.0,260.0,290.0,290.0,290.0,290.0,270.0,290.0,300.0,290.0,270.0,280.0,280.0,280.0,300.0,290.0,300.0,290.0,280.0,280.0,300.0,280.0,290.0,290.0,290.0,290.0,290.0,300.0,280.0,290.0,300.0,300.0,300.0,280.0,290.0,280.0,250.0,240.0,250.0,240.0,240.0,240.0,230.0,240.0,230.0,240.0,230.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,230.0,220.0,220.0,220.0,230.0,230.0,220.0,230.0,230.0,250.0,290.0,300.0,310.0,330.0,340.0,330.0,320.0,340.0,350.0,340.0,10.0,10.0,360.0,20.0,30.0,60.0,50.0,40.0,60.0,90.0,90.0,340.0,24.0,110.0,243.0,128.0,159.0,3.0,123.0,123.0,204.0,327.0,200.0,320.0,210.0,230.0,230.0,220.0,210.0,230.0,220.0,220.0,230.0,230.0,240.0,250.0,250.0,250.0,290.0,280.0,280.0,270.0,280.0,280.0,280.0,270.0,270.0,270.0,260.0,240.0,260.0,270.0,270.0,280.0,280.0,270.0,270.0,260.0,270.0,280.0,270.0,260.0,250.0,240.0,230.0,240.0,210.0,220.0,220.0,210.0,220.0,220.0,230.0,220.0,220.0,240.0,240.0,230.0,220.0,230.0,220.0,230.0,200.0,240.0,280.0,250.0,300.0,340.0,301.0,200.0,143.0,52.0,196.0,314.0,240.0,74.0,100.0,62.0,260.0,260.0,320.0,290.0,310.0,310.0,310.0,99.0,176.0,103.0,162.0,300.0,272.0,77.0,169.0,20.0,60.0,10.0,300.0,320.0,330.0,268.0,320.0,30.0,320.0,360.0,330.0,310.0,360.0,320.0,73.0,120.0,128.0,260.0,51.0,200.0,232.0,200.0,230.0,240.0,309.0,180.0,200.0,250.0,220.0,220.0,240.0,240.0,270.0,240.0,250.0,280.0,280.0,270.0,280.0,280.0,310.0,320.0,300.0,300.0,300.0,290.0,290.0,290.0,320.0,300.0,300.0,310.0,320.0,320.0,340.0,360.0,340.0,350.0,340.0,320.0,360.0,330.0,20.0,10.0,20.0,30.0,40.0,40.0,40.0,60.0,50.0,40.0,50.0,50.0,40.0,40.0,40.0,60.0,80.0,60.0,60.0,60.0,80.0,70.0,80.0,60.0,60.0,60.0,50.0,60.0,60.0,50.0,60.0,70.0,50.0,204.0,60.0,70.0,80.0,60.0,70.0,80.0,70.0,60.0,70.0,60.0,70.0,70.0,80.0,80.0,80.0,80.0,90.0,100.0,100.0,80.0,70.0,70.0,70.0,149.0,40.0,50.0,60.0,60.0,60.0,50.0,70.0,60.0,60.0,50.0,50.0,40.0,40.0,50.0,60.0,70.0,40.0,50.0,10.0,20.0,10.0,360.0,360.0,155.0,350.0,350.0,350.0,330.0,360.0,320.0,330.0,330.0,330.0,360.0,340.0,340.0,350.0,320.0,330.0,300.0,290.0,270.0,270.0,250.0,260.0,280.0,280.0,300.0,310.0,265.0,280.0,320.0,310.0,320.0,340.0,340.0,320.0,20.0,20.0,20.0,10.0,360.0,350.0,221.0,195.0,212.0,220.0,200.0,180.0,41.0,220.0,289.0,200.0,210.0,210.0,220.0,220.0,220.0,210.0,220.0,220.0,220.0,220.0,230.0,220.0,220.0,220.0,210.0,220.0,220.0,230.0,260.0,260.0,270.0,250.0,260.0,250.0,250.0,250.0,240.0,240.0,240.0,240.0,240.0,250.0,280.0,260.0,270.0,290.0,240.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,210.0,220.0,210.0,200.0,190.0,180.0,180.0,180.0,160.0,160.0,200.0,280.0,300.0,290.0,220.0,303.0,230.0,230.0,220.0,210.0,200.0,180.0,190.0,190.0,190.0,196.0,68.0,180.0,150.0,160.0,180.0,180.0,190.0,160.0,130.0,130.0,130.0,140.0,130.0,120.0,90.0,80.0,70.0,60.0,30.0,20.0,99.0,330.0,340.0,29.0,310.0,290.0,280.0,143.0,53.0,206.0,248.0,272.0,49.0,310.0,310.0,330.0,10.0,350.0,212.0,187.0,155.0,156.0,182.0,253.0,299.0,222.0,192.0,129.0,90.0,125.0,36.0,127.0,170.0,190.0,250.0,240.0,250.0,220.0,240.0,240.0,230.0,210.0,210.0,220.0,220.0,230.0,220.0,230.0,220.0,230.0,230.0,240.0,270.0,270.0,270.0,270.0,280.0,280.0,280.0,290.0,300.0,300.0,290.0,290.0,280.0,270.0,270.0,280.0,270.0,260.0,250.0,230.0,230.0,240.0,230.0,240.0,250.0,260.0,280.0,280.0,280.0,280.0,280.0,280.0,280.0,280.0,280.0,290.0,270.0,270.0,270.0,260.0,240.0,240.0,230.0,230.0,240.0,230.0,250.0,240.0,240.0,240.0,230.0,230.0,240.0,250.0,290.0,270.0,270.0,260.0,280.0,280.0,270.0,270.0,290.0,250.0,260.0,230.0,230.0,240.0,220.0,230.0,210.0,220.0,190.0,240.0,280.0,240.0,260.0,300.0,330.0,330.0,330.0,350.0,330.0,340.0,340.0,320.0,300.0,350.0,310.0,310.0,310.0,300.0,300.0,310.0,300.0,310.0,310.0,300.0,300.0,270.0,310.0,310.0,310.0,320.0,320.0,300.0,300.0,280.0,270.0,260.0,220.0,220.0,230.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,230.0,210.0,220.0,220.0,220.0,230.0,230.0,240.0,240.0,240.0,240.0,240.0,230.0,230.0,230.0,230.0,220.0,210.0,200.0,200.0,200.0,200.0,190.0,190.0,190.0,200.0,200.0,220.0,220.0,220.0,200.0,200.0,210.0,200.0,200.0,240.0,240.0,230.0,220.0,230.0,230.0,230.0,230.0,190.0,180.0,190.0,190.0,200.0,200.0,200.0,210.0,200.0,210.0,200.0,210.0,200.0,200.0,190.0,190.0,200.0,200.0,200.0,200.0,200.0,200.0,190.0,190.0,190.0,190.0,190.0,190.0,190.0,200.0,190.0,190.0,190.0,200.0,190.0,190.0,190.0,190.0,190.0,180.0,180.0,180.0,240.0,200.0,200.0,210.0,210.0,190.0,190.0,180.0,180.0,160.0,180.0,170.0,180.0,180.0,180.0,180.0,180.0,160.0,170.0,170.0,180.0,170.0,180.0,160.0,170.0,170.0,180.0,180.0,190.0,190.0,230.0,210.0,220.0,210.0,210.0,200.0,210.0,210.0,220.0,220.0,230.0,220.0,220.0,210.0,190.0,180.0,190.0,200.0,230.0,240.0,250.0,250.0,250.0,230.0,220.0,240.0,240.0,250.0,240.0,240.0,240.0,240.0,240.0,240.0,240.0,250.0,280.0,270.0,280.0,270.0,270.0,250.0,240.0,240.0,240.0,260.0,250.0,260.0,280.0,260.0,270.0,260.0,250.0,250.0,260.0,260.0,250.0,250.0,260.0,270.0,270.0,270.0,270.0,270.0,240.0,220.0,190.0,210.0,210.0,200.0,190.0,180.0,180.0,190.0,190.0,220.0,240.0,260.0,270.0,290.0,300.0,290.0,290.0,310.0,280.0,290.0,300.0,290.0,290.0,300.0,230.0,190.0,190.0,160.0,170.0,160.0,130.0,150.0,130.0,130.0,140.0,160.0,170.0,160.0,150.0,160.0,170.0,160.0,180.0,140.0,80.0,100.0,70.0,80.0,70.0,80.0,90.0,100.0,90.0,90.0,100.0,90.0,90.0,90.0,120.0,180.0,210.0,210.0,210.0,210.0,210.0,220.0,20.0,30.0,40.0,40.0,20.0,20.0,360.0,360.0,360.0,360.0,350.0,340.0,330.0,340.0,330.0,310.0,300.0,320.0,320.0,310.0,350.0,300.0,300.0,340.0,320.0,320.0,300.0,300.0,300.0,300.0,290.0,280.0,280.0,280.0,290.0,270.0,270.0,270.0,280.0,280.0,280.0,290.0,310.0,300.0,320.0,310.0,300.0,300.0,290.0,290.0,290.0,290.0,320.0,300.0,280.0,290.0,300.0,270.0,270.0,280.0,290.0,280.0,280.0,280.0,310.0,300.0,320.0,340.0,310.0,340.0,10.0,10.0,350.0,340.0,340.0,310.0,320.0,290.0,290.0,300.0,290.0,290.0,280.0,260.0,260.0,250.0,260.0,240.0,250.0,250.0,240.0,250.0,240.0,250.0,250.0,230.0,220.0,230.0,220.0,220.0,220.0,220.0,220.0,210.0,220.0,260.0,240.0,230.0,240.0,290.0,240.0,220.0,240.0,250.0,260.0,260.0,270.0,280.0,300.0,270.0,290.0,280.0,10.0,220.0,270.0,290.0,250.0,210.0,200.0,210.0,200.0,190.0,130.0,180.0,250.0,260.0,33.0,50.0,270.0,360.0,10.0,20.0,20.0,10.0,20.0,10.0,20.0,10.0,10.0,360.0,360.0,360.0,360.0,340.0,330.0,330.0,330.0,310.0,272.0,200.0,129.0,30.0,170.0,177.0,260.0,220.0,220.0,200.0,230.0,190.0,190.0,190.0,200.0,290.0,150.0,160.0,260.0,190.0,210.0,210.0,210.0,210.0,230.0,210.0,230.0,220.0,240.0,250.0,280.0,270.0,300.0,270.0,300.0,290.0,290.0,270.0,260.0,270.0,260.0,250.0,260.0,250.0,260.0,260.0,250.0,260.0,270.0,270.0,260.0,270.0,260.0,260.0,270.0,300.0,270.0,300.0,300.0,280.0,260.0,260.0,250.0,250.0,250.0,250.0,230.0,230.0,270.0,230.0,220.0,230.0,230.0,230.0,230.0,240.0,240.0,260.0,260.0,250.0,230.0,260.0,280.0,240.0,220.0,271.0,220.0,210.0,170.0,68.0,140.0,237.0,109.0,149.0,50.0,202.0,60.0,90.0,90.0,100.0,90.0,100.0,110.0,120.0,110.0,100.0,90.0,110.0,110.0,90.0,80.0,70.0,80.0,90.0,100.0,110.0,130.0,140.0,130.0,170.0,180.0,170.0,190.0,180.0,180.0,190.0,180.0,190.0,190.0,180.0,190.0,180.0,190.0,170.0,180.0,200.0,190.0,190.0,220.0,210.0,220.0,230.0,230.0,230.0,220.0,240.0,240.0,240.0,240.0,240.0,230.0,230.0,250.0,220.0,220.0,210.0,200.0,180.0,180.0,150.0,160.0,160.0,160.0,160.0,150.0,160.0,160.0,160.0,160.0,160.0,160.0,160.0,180.0,180.0,200.0,210.0,150.0,160.0,200.0,220.0,190.0,167.0,180.0,180.0,157.0,142.0,120.0,105.0,105.0,102.0,102.0,102.0,102.0,100.0,120.0,100.0,120.0,120.0,140.0,130.0,130.0,100.0,110.0,120.0,110.0,90.0,80.0,80.0,90.0,100.0,110.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,110.0,110.0,110.0,100.0,110.0,110.0,110.0,120.0,110.0,110.0,100.0,100.0,110.0,120.0,110.0,110.0,120.0,130.0,120.0,120.0,120.0,130.0,130.0,120.0,130.0,150.0,170.0,180.0,120.0,130.0,190.0,200.0,210.0,240.0,220.0,349.0,193.0,130.0,262.0,140.0,71.0,190.0,180.0,183.0,244.0,127.0,140.0,180.0,190.0,210.0,190.0,220.0,200.0,210.0,210.0,210.0,260.0,230.0,240.0,220.0,230.0,230.0,240.0,250.0,300.0,300.0,290.0,129.0,250.0,270.0,220.0,220.0,240.0,280.0,260.0,240.0,240.0,250.0,240.0,270.0,260.0,280.0,260.0,250.0,25.0,170.0,180.0,180.0,180.0,180.0,160.0,170.0,160.0,160.0,160.0,190.0,190.0,190.0,190.0,200.0,210.0,210.0,210.0,210.0,210.0,210.0,230.0,200.0,190.0,190.0,190.0,180.0,190.0,200.0,210.0,220.0,220.0,210.0,200.0,210.0,210.0,220.0,220.0,200.0,250.0,220.0,220.0,230.0,220.0,230.0,210.0,220.0,220.0,200.0,190.0,190.0,200.0,210.0,210.0,210.0,220.0,220.0,240.0,230.0,240.0,290.0,270.0,260.0,320.0,190.0,260.0,270.0,300.0,320.0,300.0,310.0,280.0,84.0,42.0,340.0,350.0,340.0,340.0,330.0,330.0,310.0,320.0,300.0,320.0,310.0,310.0,310.0,310.0,290.0,300.0,260.0,240.0,250.0,230.0,240.0,220.0,210.0,250.0,270.0,240.0,250.0,240.0,230.0,230.0,230.0,240.0,240.0,250.0,250.0,240.0,240.0,220.0,220.0,260.0,270.0,270.0,340.0,320.0,310.0,300.0,250.0,256.0,190.0,190.0,247.0,200.0,230.0,220.0,210.0,210.0,210.0,220.0,240.0,220.0,230.0,220.0,240.0,270.0,320.0,310.0,320.0,340.0,330.0,330.0,110.0,349.0,36.0,127.0,120.0,165.0,47.0,193.0,308.0,113.0,255.0,277.0,300.0,220.0,170.0,297.0,200.0,260.0,200.0,210.0,240.0,330.0,320.0,320.0,320.0,140.0,170.0,120.0,90.0,155.0,160.0,140.0,42.0,180.0,180.0,190.0,200.0,220.0,200.0,220.0,210.0,200.0,210.0,210.0,200.0,200.0,190.0,180.0,200.0,200.0,220.0,210.0,200.0,180.0,170.0,150.0,150.0,180.0,180.0,190.0,170.0,190.0,200.0,190.0,200.0,190.0,200.0,180.0,150.0,120.0,100.0,120.0,50.0,130.0,120.0,120.0,120.0,120.0,110.0,120.0,100.0,110.0,100.0,110.0,120.0,110.0,120.0,120.0,230.0,50.0,10.0,120.0,190.0,220.0,250.0,260.0,260.0,353.0,330.0,350.0,330.0,340.0,10.0,350.0,350.0,350.0,330.0,340.0,10.0,10.0,360.0,350.0,360.0,360.0,330.0,330.0,320.0,320.0,320.0,320.0,40.0,40.0,50.0,40.0,40.0,40.0,50.0,50.0,60.0,40.0,60.0,60.0,50.0,60.0,50.0,90.0,50.0,30.0,90.0,50.0,40.0,330.0,260.0,56.0,190.0,125.0,5.0,210.0,224.0,263.0,268.0,355.0,225.0,220.0,42.0,180.0,200.0,190.0,170.0,200.0,150.0,210.0,200.0,150.0,150.0,240.0,260.0,300.0,320.0,330.0,320.0,360.0,310.0,290.0,270.0,280.0,310.0,330.0,330.0,320.0,330.0,350.0,20.0,60.0,60.0,40.0,60.0,60.0,80.0,60.0,60.0,40.0,60.0,119.0,30.0,70.0,70.0,60.0,60.0,60.0,70.0,70.0,60.0,80.0,70.0,60.0,70.0,60.0,70.0,60.0,70.0,60.0,50.0,60.0,70.0,50.0,60.0,60.0,70.0,70.0,60.0,60.0,50.0,60.0,70.0,216.0,120.0,150.0,240.0,310.0,320.0,10.0,350.0,320.0,350.0,320.0,20.0,20.0,10.0,20.0,20.0,30.0,60.0,40.0,340.0,40.0,238.0,71.0,104.0,30.0,55.0,80.0,52.0,135.0,330.0,30.0,330.0,340.0,30.0,340.0,20.0,40.0,30.0,50.0,50.0,50.0,60.0,70.0,60.0,30.0,30.0,40.0,40.0,40.0,70.0,80.0,90.0,100.0,90.0,120.0,130.0,130.0,130.0,120.0,110.0,60.0,40.0,70.0,80.0,80.0,80.0,50.0,60.0,60.0,60.0,60.0,70.0,60.0,80.0,80.0,60.0,100.0,80.0,100.0,120.0,110.0,80.0,80.0,110.0,90.0,90.0,70.0,80.0,80.0,80.0,70.0,70.0,70.0,70.0,60.0,70.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,70.0,80.0,80.0,70.0,70.0,70.0,60.0,60.0,60.0,60.0,60.0,70.0,80.0,60.0,40.0,40.0,40.0,50.0,100.0,130.0,140.0,160.0,190.0,190.0,190.0,220.0,230.0,110.0,140.0,110.0,110.0,220.0,110.0,130.0,150.0,170.0,150.0,170.0,50.0,250.0,270.0,200.0,230.0,250.0,260.0,260.0,260.0,280.0,270.0,290.0,260.0,280.0,260.0,260.0,260.0,230.0,230.0,220.0,180.0,220.0,210.0,200.0,200.0,190.0,190.0,220.0,230.0,230.0,220.0,210.0,230.0,240.0,210.0,190.0,190.0,190.0,190.0,150.0,120.0,120.0,150.0,140.0,130.0,140.0,150.0,160.0,200.0,180.0,160.0,160.0,160.0,190.0,210.0,230.0,250.0,270.0,250.0,270.0,297.0,310.0,210.0,10.0,350.0,246.0,31.0,327.0,220.0,166.0,110.0,60.0,257.0,276.0,110.0,130.0,170.0,150.0,160.0,180.0,260.0,200.0,200.0,150.0,210.0,220.0,150.0,200.0,183.0,215.0,165.0,118.0,173.0,146.0,158.0,185.0,127.0,136.0,103.0,54.0,119.0,10.0,340.0,20.0,40.0,10.0,20.0,20.0,30.0,40.0,10.0,20.0,40.0,20.0,50.0,105.0,158.0,61.0,351.0,30.0,86.0,250.0,220.0,40.0,14.0,50.0,30.0,30.0,359.0,231.0,137.0,290.0,30.0,10.0,70.0,20.0,10.0,20.0,360.0,10.0,60.0,73.0,138.0,350.0,196.0,250.0,107.0,40.0,219.0,50.0,30.0,30.0,227.0,240.0,86.0,134.0,30.0,10.0,70.0,117.0,121.0,138.0,162.0,177.0,201.0,213.0,212.0,211.0,207.0,206.0,212.0,200.0,210.0,230.0,230.0,250.0,270.0,260.0,260.0,280.0,250.0,210.0,210.0,143.0,148.0,163.0,181.0,196.0,207.0,213.0,212.0,211.0,207.0,206.0,212.0,200.0,210.0,230.0,230.0,250.0,270.0,260.0,260.0,280.0,250.0,210.0,210.0,137.0,131.0,129.0,122.0,118.0,115.0,113.0,116.0,121.0,119.0,129.0,138.0,110.0,150.0,160.0,90.0,160.0,110.0,327.0,92.0,160.0,210.0,230.0,220.0,210.0,210.0,220.0,90.0,256.0,210.0,200.0,200.0,210.0,230.0,220.0,200.0,200.0,210.0,230.0,230.0,250.0,270.0,260.0,260.0,280.0,250.0,210.0,210.0,230.0,120.0,130.0,130.0,140.0,150.0,160.0,160.0,150.0,160.0,190.0,230.0,240.0,240.0,230.0,240.0,250.0,240.0,230.0,220.0,220.0,210.0,280.0,260.0,260.0,250.0,230.0,210.0,200.0,200.0,190.0,200.0,210.0,190.0,190.0,180.0,200.0,190.0,190.0,180.0,190.0,180.0,190.0,220.0,190.0,210.0,250.0,210.0,230.0,34.0,79.0,275.0,195.0,14.0,10.0,58.0,274.0,128.0,195.0,75.0,136.0,239.0,10.0,225.0,23.0,10.0,176.0,190.0,350.0,10.0,30.0,70.0,60.0,10.0,20.0,40.0,50.0,50.0,40.0,40.0,30.0,30.0,30.0,30.0,30.0,40.0,40.0,50.0,30.0,40.0,50.0,30.0,20.0,30.0,30.0,20.0,20.0,20.0,20.0,20.0,40.0,40.0,30.0,40.0,40.0,60.0,60.0,60.0,70.0,70.0,60.0,70.0,90.0,70.0,90.0,70.0,70.0,90.0,90.0,90.0,90.0,100.0,80.0,70.0,80.0,70.0,50.0,60.0,70.0,70.0,60.0,60.0,60.0,70.0,80.0,70.0,70.0,100.0,80.0,80.0,110.0,90.0,90.0,100.0,90.0,100.0,90.0,70.0,70.0,80.0,80.0,80.0,70.0,70.0,80.0,80.0,70.0,80.0,80.0,80.0,70.0,90.0,100.0,90.0,80.0,80.0,80.0,80.0,80.0,80.0,80.0,90.0,100.0,100.0,100.0,90.0,100.0,90.0,80.0,90.0,90.0,100.0,100.0,120.0,120.0,110.0,90.0,180.0,160.0,190.0,290.0,190.0,210.0,240.0,160.0,140.0,240.0,230.0,220.0,210.0,210.0,190.0,180.0,190.0,210.0,190.0,190.0,210.0,210.0,210.0,190.0,210.0,180.0,190.0,180.0,180.0,160.0,140.0,130.0,200.0,180.0,140.0,150.0,160.0,140.0,140.0,140.0,120.0,160.0,180.0,140.0,140.0,160.0,160.0,180.0,200.0,220.0,220.0,210.0,220.0,220.0,200.0,200.0,200.0,210.0,180.0,190.0,180.0,180.0,180.0,180.0,180.0,200.0,190.0,200.0,220.0,200.0,220.0,200.0,230.0,210.0,230.0,230.0,210.0,220.0,190.0,170.0,287.0,180.0,150.0,200.0,200.0,210.0,160.0,40.0,170.0,160.0,160.0,170.0,130.0,180.0,190.0,190.0,210.0,210.0,220.0,240.0,290.0,10.0,340.0,110.0,20.0,261.0,96.0,52.0,181.0,44.0,6.0,133.0,16.0,28.0,250.0,250.0,230.0,230.0,230.0,230.0,210.0,230.0,240.0,260.0,170.0,320.0,360.0,10.0,20.0,50.0,50.0,60.0,60.0,70.0,50.0,40.0,50.0,70.0,50.0,118.0,49.0,290.0,280.0,290.0,280.0,310.0,280.0,280.0,290.0,310.0,310.0,320.0,180.0,51.0,201.0,140.0,120.0,190.0,170.0,150.0,137.0,101.0,240.0,280.0,270.0,240.0,290.0,270.0,300.0,290.0,290.0,290.0,280.0,300.0,290.0,290.0,139.0,308.0,245.0,230.0,250.0,210.0,200.0,190.0,170.0,240.0,45.0,120.0,190.0,140.0,180.0,179.0,60.0,70.0,140.0,100.0,110.0,80.0,90.0,150.0,120.0,40.0,50.0,170.0,30.0,181.0,104.0,170.0,166.0,230.0,270.0,290.0,290.0,300.0,290.0,290.0,290.0,330.0,330.0,300.0,330.0,330.0,330.0,340.0,10.0,30.0,40.0,50.0,50.0,50.0,50.0,50.0,70.0,60.0,50.0,40.0,80.0,60.0,50.0,50.0,80.0,80.0,60.0,80.0,80.0,70.0,70.0,70.0,20.0,360.0,40.0,120.0,40.0,70.0,355.0,260.0,50.0,130.0,170.0,200.0,220.0,210.0,210.0,220.0,220.0,230.0,260.0,270.0,260.0,270.0,280.0,270.0,260.0,240.0,230.0,220.0,230.0,240.0,230.0,230.0,230.0,230.0,250.0,250.0,230.0,220.0,240.0,240.0,230.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,210.0,220.0,220.0,220.0,220.0,240.0,230.0,250.0,250.0,260.0,270.0,280.0,300.0,310.0,300.0,320.0,320.0,320.0,340.0,350.0,350.0,360.0,360.0,360.0,277.0,251.0,30.0,65.0,351.0,58.0,141.0,323.0,350.0,20.0,20.0,30.0,360.0,60.0,10.0,20.0,40.0,10.0,30.0,20.0,40.0,50.0,20.0,20.0,30.0,50.0,60.0,70.0,70.0,60.0,60.0,60.0,70.0,80.0,70.0,70.0,90.0,50.0,60.0,70.0,50.0,70.0,50.0,60.0,60.0,50.0,60.0,50.0,10.0,40.0,40.0,40.0,40.0,50.0,40.0,50.0,50.0,50.0,50.0,50.0,60.0,60.0,90.0,70.0,80.0,90.0,80.0,90.0,57.0,40.0,35.0,105.0,175.0,252.0,299.0,302.0,299.0,309.0,337.0,337.0,360.0,350.0,320.0,10.0,330.0,340.0,30.0,70.0,20.0,50.0,20.0,30.0,20.0,10.0,50.0,50.0,40.0,60.0,300.0,10.0,260.0,30.0,358.0,40.0,90.0,80.0,40.0,50.0,20.0,20.0,10.0,30.0,50.0,40.0,40.0,40.0,60.0,10.0,20.0,20.0,30.0,30.0,112.0,20.0,40.0,30.0,40.0,50.0,50.0,40.0,50.0,80.0,70.0,70.0,70.0,50.0,60.0,60.0,70.0,50.0,70.0,40.0,50.0,50.0,40.0,40.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,60.0,70.0,90.0,90.0,70.0,60.0,50.0,50.0,70.0,50.0,40.0,40.0,20.0,20.0,30.0,20.0,20.0,30.0,30.0,30.0,320.0,340.0,30.0,20.0,340.0,350.0,350.0,60.0,300.0,280.0,270.0,350.0,310.0,310.0,310.0,270.0,226.0,250.0,239.0,208.0,240.0,358.0,11.0,189.0,251.0,310.0,30.0,93.0,200.0,210.0,210.0,240.0,220.0,310.0,300.0,80.0,330.0,340.0,260.0,70.0,150.0,80.0,120.0,190.0,210.0,220.0,250.0,240.0,260.0,260.0,260.0,280.0,270.0,280.0,240.0,356.0,220.0,230.0,250.0,141.0,69.0,80.0,80.0,60.0,60.0,70.0,50.0,50.0,60.0,23.0,30.0,285.0,260.0,260.0,270.0,270.0,280.0,270.0,250.0,250.0,250.0,250.0,260.0,280.0,280.0,280.0,340.0,280.0,210.0,235.0,105.0,190.0,200.0,230.0,220.0,210.0,220.0,220.0,220.0,210.0,220.0,250.0,230.0,250.0,240.0,250.0,280.0,280.0,220.0,290.0,340.0,10.0,293.0,162.0,156.0,293.0,70.0,149.0,30.0,142.0,142.0,61.0,186.0,300.0,178.0,170.0,230.0,290.0,160.0,250.0,60.0,70.0,100.0,190.0,250.0,80.0,190.0,210.0,190.0,210.0,190.0,230.0,230.0,220.0,210.0,210.0,210.0,210.0,200.0,210.0,220.0,240.0,230.0,240.0,210.0,260.0,37.0,180.0,250.0,240.0,180.0,47.0,258.0,182.0,180.0,34.0,174.0,104.0,120.0,160.0,190.0,230.0,210.0,230.0,240.0,220.0,230.0,200.0,190.0,170.0,200.0,220.0,220.0,210.0,347.0,120.0,130.0,130.0,130.0,120.0,150.0,160.0,190.0,190.0,190.0,200.0,200.0,210.0,210.0,190.0,220.0,210.0,210.0,200.0,220.0,220.0,210.0,200.0,190.0,200.0,230.0,230.0,230.0,260.0,260.0,200.0,200.0,260.0,250.0,240.0,240.0,230.0,261.0,250.0,350.0,320.0,330.0,340.0,340.0,360.0,320.0,330.0,261.0,186.0,10.0,100.0,40.0,225.0,23.0,26.0,50.0,59.0,160.0,160.0,200.0,220.0,240.0,220.0,220.0,230.0,210.0,230.0,220.0,230.0,220.0,220.0,300.0,340.0,250.0,285.0,130.0,130.0,130.0,150.0,170.0,160.0,160.0,160.0,180.0,200.0,220.0,270.0,2.0,120.0,210.0,190.0,200.0,280.0,240.0,220.0,210.0,220.0,230.0,220.0,220.0,220.0,210.0,210.0,210.0,210.0,220.0,220.0,220.0,220.0,220.0,200.0,220.0,190.0,200.0,210.0,150.0,130.0,90.0,120.0,150.0,110.0,100.0,110.0,100.0,130.0,120.0,150.0,180.0,200.0,220.0,210.0,220.0,220.0,230.0,220.0,220.0,230.0,250.0,220.0,220.0,220.0,220.0,220.0,210.0,190.0,220.0,210.0,210.0,210.0,210.0,210.0,220.0,220.0,210.0,220.0,220.0,220.0,250.0,240.0,260.0,270.0,280.0,280.0,270.0,270.0,280.0,260.0,250.0,260.0,250.0,240.0,240.0,230.0,230.0,220.0,220.0,220.0,210.0,200.0,210.0,210.0,210.0,210.0,220.0,210.0,210.0,220.0,230.0,230.0,210.0,210.0,210.0,210.0,210.0,210.0,190.0,190.0,200.0,210.0,220.0,220.0,220.0,220.0,210.0,200.0,220.0,240.0,230.0,240.0,250.0,250.0,250.0,250.0,250.0,250.0,230.0,210.0,210.0,190.0,200.0,190.0,180.0,41.0,150.0,170.0,220.0,260.0,290.0,310.0,350.0,290.0,330.0,250.0,110.0,260.0,220.0,240.0,230.0,210.0,220.0,200.0,200.0,200.0,220.0,220.0,210.0,210.0,220.0,210.0,210.0,210.0,220.0,210.0,220.0,230.0,270.0,153.0,220.0,220.0,220.0,240.0,240.0,230.0,220.0,210.0,220.0,220.0,220.0,210.0,220.0,210.0,230.0,250.0,260.0,270.0,290.0,310.0,290.0,230.0,270.0,270.0,270.0,290.0,310.0,290.0,290.0,290.0,280.0,270.0,230.0,210.0,220.0,180.0,200.0,200.0,210.0,210.0,220.0,210.0,220.0,220.0,220.0,200.0,200.0,200.0,200.0,200.0,200.0,210.0,220.0,220.0,230.0,220.0,230.0,230.0,230.0,240.0,240.0,240.0,250.0,250.0,250.0,260.0,240.0,240.0,280.0,240.0,250.0,270.0,250.0,340.0,30.0,21.0,210.0,170.0,140.0,150.0,193.0,100.0,140.0,110.0,120.0,120.0,110.0,110.0,120.0,120.0,110.0,110.0,130.0,130.0,130.0,120.0,110.0,120.0,130.0,120.0,110.0,110.0,90.0,100.0,110.0,110.0,110.0,110.0,120.0,110.0,110.0,120.0,130.0,120.0,120.0,140.0,110.0,110.0,130.0,90.0,130.0,110.0,120.0,120.0,110.0,110.0,120.0,260.0,40.0,70.0,230.0,210.0,120.0,90.0,90.0,290.0,160.0,200.0,200.0,230.0,270.0,280.0,270.0,290.0,300.0,300.0,310.0,320.0,310.0,320.0,320.0,310.0,320.0,320.0,300.0,290.0,250.0,260.0,240.0,260.0,290.0,310.0,330.0,310.0,320.0,320.0,310.0,280.0,290.0,300.0,300.0,290.0,282.0,275.0,267.0,240.0,235.0,222.0,207.0,215.0,222.0,227.0,230.0,232.0,230.0,230.0,230.0,240.0,220.0,220.0,210.0,220.0,210.0,230.0,250.0,230.0,250.0,330.0,340.0,137.0,320.0,214.0,203.0,150.0,30.0,76.0,121.0,93.0,180.0,190.0,180.0,200.0,200.0,190.0,170.0,190.0,210.0,170.0,210.0,210.0,180.0,110.0,110.0,130.0,120.0,110.0,60.0,280.0,100.0,110.0,160.0,150.0,200.0,200.0,200.0,190.0,180.0,200.0,210.0,220.0,230.0,220.0,230.0,210.0,260.0,270.0,240.0,280.0,260.0,200.0,230.0,220.0,220.0,200.0,220.0,220.0,230.0,210.0,200.0,210.0,200.0,200.0,210.0,210.0,210.0,200.0,220.0,230.0,250.0,270.0,260.0,250.0,250.0,250.0,250.0,210.0,200.0,180.0,200.0,210.0,230.0,240.0,250.0,230.0,260.0,250.0,260.0,290.0,310.0,329.0,82.0,290.0,350.0,29.0,10.0,30.0,50.0,60.0,60.0,60.0,60.0,40.0,50.0,40.0,50.0,60.0,40.0,70.0,70.0,30.0,110.0,60.0,90.0,40.0,50.0,50.0,60.0,50.0,50.0,60.0,60.0,60.0,60.0,50.0,50.0,50.0,50.0,20.0,40.0,50.0,50.0,30.0,60.0,70.0,90.0,100.0,90.0,40.0,20.0,30.0,40.0,350.0,10.0,20.0,20.0,30.0,30.0,30.0,20.0,30.0,30.0,30.0,10.0,40.0,350.0,20.0,30.0,30.0,40.0,10.0,10.0,20.0,20.0,20.0,10.0,10.0,10.0,20.0,20.0,30.0,20.0,30.0,10.0,10.0,40.0,30.0,30.0,20.0,360.0,350.0,20.0,20.0,360.0,360.0,360.0,10.0,10.0,10.0,360.0,10.0,360.0,10.0,10.0,20.0,10.0,10.0,360.0,258.0,176.0,320.0,340.0,340.0,310.0,330.0,350.0,340.0,340.0,340.0,340.0,340.0,330.0,350.0,340.0,340.0,320.0,330.0,350.0,340.0,330.0,330.0,320.0,310.0,330.0,330.0,340.0,340.0,350.0,330.0,330.0,47.0,320.0,236.0,290.0,340.0,320.0,320.0,310.0,300.0,10.0,10.0,360.0,340.0,174.0,233.0,172.0,170.0,245.0,280.0,160.0,250.0,230.0,310.0,310.0,330.0,300.0,290.0,320.0,310.0,340.0,350.0,360.0,330.0,350.0,30.0,350.0,360.0,10.0,350.0,330.0,148.0,207.0,240.0,256.0,340.0,330.0,340.0,330.0,320.0,300.0,318.0,300.0,320.0,350.0,340.0,320.0,10.0,10.0,10.0,360.0,10.0,320.0,340.0,320.0,320.0,320.0,350.0,310.0,320.0,280.0,330.0,310.0,310.0,320.0,280.0,280.0,330.0,320.0,310.0,340.0,360.0,40.0,60.0,180.0,40.0,40.0,70.0,108.0,236.0,329.0,60.0,130.0,120.0,138.0,251.0,300.0,230.0,270.0,290.0,310.0,330.0,350.0,350.0,10.0,360.0,85.0,30.0,290.0,20.0,200.0,30.0,273.0,40.0,271.0,336.0,56.0,60.0,84.0,109.0,270.0,142.0,224.0,310.0,260.0,320.0,350.0,350.0,350.0,360.0,82.0,134.0,171.0,49.0,320.0,30.0,50.0,40.0,40.0,77.0,40.0,40.0,50.0,50.0,190.0,360.0,40.0,20.0,177.0,20.0,30.0,70.0,360.0,360.0,50.0,60.0,40.0,50.0,60.0,50.0,70.0,50.0,30.0,50.0,60.0,60.0,60.0,90.0,70.0,60.0,30.0,30.0,20.0,20.0,350.0,360.0,10.0,10.0,10.0,20.0,10.0,20.0,20.0,20.0,20.0,10.0,360.0,20.0,30.0,20.0,30.0,50.0,10.0,20.0,360.0,360.0,20.0,350.0,20.0,20.0,20.0,10.0,10.0,350.0,360.0,350.0,330.0,320.0,10.0,350.0,10.0,20.0,350.0,340.0,10.0,70.0,50.0,40.0,40.0,80.0,70.0,90.0,80.0,60.0,80.0,90.0,235.0,50.0,50.0,50.0,50.0,60.0,60.0,60.0,60.0,60.0,100.0,100.0,110.0,100.0,120.0,100.0,120.0,100.0,120.0,130.0,120.0,120.0,140.0,110.0,80.0,90.0,90.0,90.0,20.0,20.0,40.0,40.0,128.0,40.0,100.0,110.0,140.0,190.0,170.0,30.0,170.0,140.0,160.0,120.0,140.0,110.0,194.0,299.0,260.0,40.0,60.0,60.0,30.0,60.0,360.0,40.0,50.0,40.0,70.0,341.0,70.0,70.0,80.0,140.0,150.0,140.0,90.0,50.0,60.0,80.0,70.0,180.0,220.0,60.0,281.0,38.0,170.0,200.0,110.0,228.0,170.0,230.0,210.0,270.0,54.0,280.0,170.0,260.0,220.0,220.0,240.0,260.0,280.0,320.0,320.0,310.0,340.0,250.0,10.0,103.0,41.0,53.0,140.0,171.0,60.0,343.0,120.0,110.0,140.0,160.0,160.0,140.0,131.0,194.0,190.0,160.0,170.0,140.0,200.0,200.0,310.0,330.0,336.0,160.0,190.0,140.0,257.0,40.0,50.0,40.0,110.0,120.0,110.0,120.0,130.0,150.0,200.0,100.0,180.0,120.0,190.0,100.0,150.0,63.0,140.0,105.0,150.0,120.0,120.0,130.0,110.0,60.0,15.0,111.0,100.0,90.0,60.0,70.0,90.0,60.0,250.0,5.0,120.0,220.0,170.0,260.0,290.0,350.0,262.0,70.0,50.0,50.0,90.0,300.0,11.0,170.0,160.0,180.0,200.0,220.0,240.0,220.0,220.0,210.0,220.0,220.0,230.0,220.0,230.0,230.0,210.0,217.0,340.0,131.0,30.0,73.0,154.0,310.0,40.0,62.0,28.0,120.0,150.0,200.0,200.0,210.0,230.0,230.0,220.0,230.0,230.0,250.0,260.0,240.0,270.0,260.0,240.0,260.0,220.0,190.0,150.0,190.0,200.0,210.0,220.0,210.0,230.0,220.0,220.0,230.0,230.0,220.0,220.0,220.0,220.0,230.0,210.0,200.0,200.0,200.0,190.0,180.0,200.0,210.0,230.0,240.0,230.0,240.0,230.0,220.0,230.0,220.0,220.0,230.0,230.0,240.0,240.0,240.0,250.0,250.0,270.0,240.0,154.0,150.0,157.0,150.0,140.0,127.0,91.0,94.0,99.0,101.0,122.0,122.0,120.0,130.0,120.0,140.0,120.0,120.0,140.0,150.0,180.0,170.0,180.0,200.0,150.0,120.0,110.0,100.0,110.0,100.0,120.0,130.0,140.0,180.0,220.0,290.0,340.0,320.0,84.0,220.0,220.0,210.0,190.0,230.0,280.0,290.0,280.0,270.0,270.0,260.0,250.0,250.0,240.0,220.0,260.0,200.0,160.0,246.0,150.0,180.0,190.0,250.0,263.0,260.0,250.0,230.0,270.0,350.0,10.0,20.0,30.0,70.0,70.0,100.0,235.0,54.0,189.0,191.0,60.0,70.0,234.0,150.0,70.0,70.0,130.0,200.0,180.0,240.0,240.0,220.0,69.0,240.0,182.0,130.0,176.0,27.0,80.0,60.0,192.0,50.0,148.0,211.0,110.0,110.0,110.0,110.0,110.0,110.0,110.0,120.0,110.0,110.0,130.0,150.0,110.0,90.0,120.0,130.0,90.0,100.0,60.0,50.0,60.0,70.0,80.0,90.0,90.0,90.0,110.0,120.0,120.0,110.0,120.0,110.0,120.0,110.0,110.0,110.0,100.0,110.0,140.0,120.0,90.0,100.0,80.0,70.0,60.0,70.0,80.0,90.0,100.0,100.0,100.0,100.0,100.0,100.0,110.0,110.0,100.0,100.0,110.0,346.0,210.0,210.0,190.0,116.0,100.0,240.0,340.0,310.0,201.0,290.0,310.0,280.0,310.0,310.0,290.0,290.0,320.0,300.0,310.0,300.0,300.0,350.0,350.0,320.0,340.0,320.0,340.0,350.0,320.0,310.0,320.0,350.0,30.0,360.0,360.0,360.0,10.0,350.0,10.0,320.0,360.0,340.0,10.0,350.0,350.0,10.0,30.0,80.0,30.0,350.0,360.0,350.0,360.0,20.0,40.0,20.0,330.0,330.0,310.0,290.0,290.0,310.0,340.0,330.0,231.0,350.0,30.0,3.0,340.0,310.0,320.0,300.0,310.0,260.0,300.0,300.0,320.0,340.0,110.0,266.0,140.0,81.0,140.0,50.0,50.0,270.0,240.0,220.0,210.0,220.0,230.0,240.0,240.0,250.0,280.0,240.0,240.0,320.0,290.0,310.0,310.0,320.0,310.0,300.0,290.0,260.0,240.0,230.0,230.0,230.0,230.0,220.0,220.0,210.0,220.0,230.0,240.0,250.0,260.0,280.0,270.0,250.0,250.0,250.0,250.0,250.0,240.0,250.0,300.0,280.0,240.0,270.0,260.0,240.0,250.0,190.0,288.0,140.0,270.0,190.0,240.0,330.0,310.0,290.0,270.0,260.0,320.0,340.0,300.0,320.0,330.0,340.0,330.0,99.0,304.0,84.0,50.0,34.0,243.0,120.0,293.0,337.0,42.0,170.0,115.0,230.0,220.0,250.0,200.0,220.0,240.0,220.0,230.0,220.0,220.0,180.0,160.0,170.0,180.0,180.0,180.0,190.0,180.0,180.0,180.0,200.0,200.0,210.0,200.0,200.0,210.0,200.0,200.0,200.0,220.0,220.0,210.0,210.0,200.0,180.0,180.0,190.0,230.0,210.0,220.0,210.0,230.0,220.0,240.0,230.0,240.0,240.0,240.0,240.0,220.0,230.0,220.0,230.0,220.0,240.0,230.0,270.0,270.0,290.0,210.0,2.0,190.0,180.0,170.0,170.0,190.0,210.0,210.0,220.0,220.0,240.0,220.0,220.0,220.0,250.0,270.0,260.0,250.0,270.0,310.0,310.0,320.0,300.0,270.0,260.0,240.0,210.0,220.0,220.0,230.0,230.0,210.0,200.0,200.0,230.0,240.0,230.0,220.0,220.0,230.0,350.0,330.0,98.0,190.0,220.0,110.0,343.0,100.0,110.0,120.0,120.0,120.0,140.0,120.0,120.0,120.0,130.0,130.0,150.0,150.0,160.0,150.0,160.0,140.0,200.0,160.0,160.0,200.0,240.0,194.0,230.0,226.0,297.0,30.0,90.0,130.0,130.0,130.0,130.0,120.0,130.0,130.0,130.0,130.0,170.0,180.0,170.0,150.0,150.0,190.0,160.0,160.0,180.0,310.0,300.0,290.0,270.0,180.0,220.0,220.0,220.0,230.0,230.0,210.0,200.0,210.0,220.0,220.0,230.0,230.0,230.0,270.0,240.0,230.0,240.0,240.0,270.0,290.0,270.0,200.0,220.0,230.0,230.0,210.0,220.0,210.0,190.0,190.0,190.0,220.0,220.0,240.0,230.0,240.0,210.0,220.0,230.0,280.0,340.0,340.0,360.0,360.0,294.0,13.0,183.0,308.0,39.0,40.0,120.0,130.0,329.0,70.0,110.0,140.0,120.0,130.0,120.0,120.0,130.0,120.0,140.0,130.0,140.0,140.0,130.0,100.0,100.0,100.0,100.0,100.0,110.0,110.0,110.0,100.0,110.0,100.0,110.0,100.0,100.0,120.0,140.0,130.0,180.0,130.0,160.0,160.0,190.0,210.0,240.0,50.0,85.0,122.0,110.0,170.0,160.0,220.0,180.0,200.0,210.0,220.0,190.0,228.0,160.0,190.0,220.0,210.0,190.0,150.0,150.0,200.0,240.0,240.0,240.0,270.0,270.0,260.0,210.0,180.0,170.0,180.0,190.0,190.0,180.0,170.0,190.0,180.0,190.0,190.0,180.0,190.0,190.0,200.0,200.0,200.0,200.0,190.0,180.0,140.0,130.0,140.0,130.0,150.0,170.0,180.0,160.0,160.0,180.0,180.0,190.0,200.0,200.0,210.0,200.0,200.0,230.0,230.0,240.0,240.0,250.0,230.0,220.0,220.0,141.0,346.0,160.0,170.0,170.0,180.0,260.0,230.0,220.0,210.0,220.0,220.0,220.0,230.0,210.0,220.0,240.0,240.0,230.0,240.0,260.0,230.0,240.0,250.0,230.0,270.0,230.0,200.0,220.0,200.0,220.0,230.0,220.0,220.0,220.0,220.0,220.0,230.0,240.0,240.0,260.0,270.0,300.0,290.0,290.0,280.0,280.0,260.0,220.0,220.0,200.0,200.0,190.0,180.0,190.0,210.0,200.0,190.0,200.0,200.0,210.0,220.0,200.0,230.0,230.0,230.0,240.0,240.0,230.0,240.0,220.0,220.0,210.0,263.0,150.0,160.0,160.0,160.0,160.0,180.0,180.0,180.0,180.0,190.0,190.0,190.0,200.0,190.0,190.0,190.0,190.0,210.0,190.0,180.0,140.0,110.0,112.0,122.0,130.0,137.0,140.0,137.0,135.0,135.0,142.0,155.0,172.0,160.0,190.0,200.0,220.0,220.0,210.0,220.0,220.0,220.0,190.0,190.0,200.0,210.0,210.0,210.0,210.0,200.0,200.0,190.0,210.0,210.0,200.0,210.0,190.0,190.0,200.0,220.0,210.0,210.0,220.0,210.0,220.0,190.0,190.0,210.0,220.0,200.0,150.0,160.0,150.0,130.0,150.0,150.0,160.0,160.0,160.0,160.0,170.0,190.0,190.0,210.0,220.0,220.0,220.0,220.0,230.0,240.0,240.0,230.0,230.0,220.0,210.0,210.0,210.0,210.0,220.0,220.0,210.0,210.0,210.0,210.0,220.0,210.0,220.0,220.0,220.0,210.0,220.0,270.0,240.0,260.0,260.0,240.0,250.0,230.0,250.0,220.0,230.0,240.0,250.0,250.0,230.0,230.0,240.0,240.0,230.0,240.0,240.0,250.0,250.0,280.0,260.0,270.0,260.0,260.0,270.0,290.0,280.0,270.0,260.0,230.0,220.0,220.0,210.0,220.0,220.0,220.0,210.0,220.0,210.0,220.0,220.0,220.0,240.0,240.0,250.0,250.0,240.0,260.0,270.0,240.0,280.0,210.0,150.0,114.0,120.0,350.0,160.0,160.0,160.0,170.0,180.0,180.0,180.0,190.0,190.0,200.0,190.0,190.0,220.0,200.0,200.0,200.0,200.0,200.0,210.0,110.0,140.0,130.0,130.0,120.0,130.0,120.0,130.0,140.0,150.0,150.0,170.0,160.0,160.0,180.0,190.0,190.0,180.0,190.0,190.0,180.0,180.0,170.0,180.0,120.0,130.0,130.0,150.0,160.0,170.0,190.0,200.0,180.0,180.0,180.0,190.0,190.0,260.0,320.0,340.0,330.0,360.0,360.0,350.0,350.0,20.0,360.0,360.0,360.0,360.0,10.0,350.0,10.0,340.0,340.0,350.0,360.0,10.0,10.0,10.0,20.0,30.0,20.0,30.0,30.0,30.0,10.0,10.0,20.0,360.0,360.0,350.0,10.0,350.0,10.0,340.0,360.0,328.0,356.0,22.0,36.0,228.0,9.0,141.0,42.0,330.0,320.0,360.0,10.0,20.0,10.0,360.0,360.0,10.0,360.0,360.0,350.0,350.0,360.0,330.0,36.0,269.0,20.0,330.0,340.0,330.0,275.0,281.0,360.0,340.0,340.0,340.0,360.0,10.0,360.0,360.0,330.0,350.0,330.0,330.0,330.0,340.0,320.0,290.0,250.0,240.0,250.0,250.0,260.0,300.0,270.0,290.0,290.0,280.0,300.0,310.0,310.0,320.0,310.0,330.0,330.0,350.0,340.0,350.0,340.0,360.0,340.0,330.0,350.0,350.0,350.0,360.0,10.0,10.0,360.0,10.0,360.0,10.0,20.0,20.0,20.0,30.0,10.0,50.0,20.0,20.0,40.0,50.0,40.0,40.0,40.0,40.0,40.0,30.0,40.0,40.0,50.0,50.0,60.0,50.0,60.0,50.0,50.0,70.0,60.0,60.0,50.0,60.0,60.0,60.0,40.0,60.0,60.0,40.0,20.0,40.0,50.0,30.0,40.0,30.0,40.0,30.0,30.0,30.0,20.0,20.0,30.0,20.0,20.0,30.0,30.0,30.0,20.0,30.0,20.0,10.0,20.0,20.0,20.0,30.0,20.0,20.0,10.0,20.0,10.0,10.0,20.0,20.0,20.0,40.0,50.0,50.0,60.0,40.0,50.0,10.0,20.0,10.0,360.0,60.0,40.0,70.0,30.0,40.0,20.0,51.0,30.0,40.0,80.0,80.0,50.0,50.0,30.0,50.0,50.0,50.0,60.0,70.0,110.0,80.0,70.0,70.0,60.0,60.0,60.0,60.0,70.0,70.0,80.0,100.0,70.0,40.0,70.0,179.0,265.0,100.0,100.0,15.0,110.0,120.0,11.0,20.0,80.0,90.0,130.0,150.0,170.0,50.0,200.0,28.0,74.0,340.0,40.0,160.0,0.0,68.0,250.0,114.0,45.0,180.0,160.0,255.0,240.0,290.0,320.0,310.0,310.0,320.0,330.0,340.0,350.0,340.0,350.0,350.0,74.0,280.0,296.0,60.0,68.0,301.0,146.0,100.0,195.0,188.0,110.0,150.0,270.0,230.0,250.0,260.0,300.0,300.0,290.0,280.0,280.0,138.0,350.0,85.0,5.0,180.0,160.0,160.0,190.0,69.0,180.0,190.0,190.0,190.0,190.0,200.0,210.0,220.0,220.0,220.0,230.0,220.0,240.0,240.0,230.0,230.0,270.0,230.0,250.0,200.0,210.0,200.0,220.0,220.0,220.0,230.0,220.0,220.0,210.0,220.0,240.0,240.0,250.0,220.0,230.0,260.0,280.0,280.0,280.0,300.0,310.0,180.0,180.0,180.0,220.0,160.0,190.0,57.0,60.0,190.0,180.0,349.0,219.0,190.0,280.0,290.0,280.0,310.0,270.0,270.0,290.0,310.0,320.0,330.0,320.0,300.0,290.0,92.0,210.0,184.0,257.0,190.0,150.0,272.0,170.0,170.0,190.0,190.0,180.0,240.0,210.0,240.0,210.0,270.0,320.0,260.0,320.0,351.0,110.0,32.0,33.0,3.0,208.0,346.0,90.0,264.0,125.0,272.0,30.0,229.0,340.0,229.0,120.0,87.0,290.0,95.0,122.0,12.0,40.0,360.0,350.0,20.0,87.0,79.0,70.0,151.0,105.0,204.0,327.0,90.0,20.0,40.0,20.0,140.0,86.0,80.0,205.0,340.0,300.0,330.0,220.0,250.0,280.0,300.0,310.0,320.0,111.0,75.0,287.0,145.0,92.0,118.0,322.0,170.0,180.0,220.0,210.0,210.0,200.0,220.0,220.0,230.0,230.0,240.0,250.0,260.0,270.0,260.0,260.0,260.0,260.0,270.0,270.0,260.0,250.0,250.0,240.0,240.0,240.0,240.0,240.0,240.0,240.0,250.0,250.0,260.0,250.0,250.0,260.0,250.0,260.0,260.0,260.0,270.0,260.0,260.0,260.0,270.0,280.0,20.0,30.0,30.0,50.0,60.0,50.0,180.0,90.0,150.0,140.0,140.0,160.0,180.0,180.0,200.0,210.0,260.0,260.0,260.0,252.0,252.0,245.0,247.0,242.0,230.0,212.0,197.0,185.0,195.0,194.0,206.0,240.0,147.0,250.0,185.0,180.0,250.0,176.0,170.0,120.0,329.0,120.0,329.0,80.0,90.0,110.0,320.0,100.0,14.0,163.0,236.0,40.0,136.0,358.0,89.0,211.0,353.0,76.0,340.0,10.0,10.0,20.0,360.0,10.0,30.0,360.0,30.0,101.0,20.0,30.0,30.0,20.0,40.0,260.0,240.0,200.0,106.0,200.0,190.0,240.0,139.0,250.0,209.0,180.0,250.0,300.0,170.0,120.0,236.0,120.0,141.0,80.0,90.0,110.0,304.0,100.0,75.0,13.0,314.0,26.0,16.0,227.0,200.0,220.0,220.0,220.0,200.0,200.0,200.0,250.0,230.0,210.0,230.0,220.0,220.0,220.0,220.0,220.0,240.0,220.0,210.0,320.0,318.0,160.0,170.0,170.0,180.0,190.0,200.0,210.0,210.0,210.0,220.0,230.0,220.0,220.0,220.0,220.0,230.0,210.0,220.0,220.0,220.0,220.0,230.0,295.0,29.0,119.0,24.0,235.0,200.0,220.0,220.0,220.0,200.0,200.0,200.0,250.0,230.0,210.0,230.0,220.0,220.0,220.0,220.0,220.0,240.0,220.0,210.0,200.0,190.0,200.0,200.0,200.0,210.0,200.0,210.0,220.0,210.0,220.0,220.0,220.0,220.0,220.0,220.0,230.0,220.0,190.0,190.0,200.0,220.0,220.0,210.0,220.0,210.0,210.0,200.0,190.0,200.0,190.0,200.0,220.0,220.0,220.0,240.0,220.0,220.0,230.0,230.0,230.0,220.0,220.0,220.0,230.0,145.0,200.0,230.0,9.0,180.0,314.0,170.0,170.0,108.0,73.0,264.0,49.0,272.0,83.0,166.0,310.0,300.0,300.0,340.0,20.0,37.0,208.0,126.0,180.0,7.0,66.0,265.0,74.0,87.0,323.0,121.0,25.0,322.0,351.0,18.0,243.0,340.0,10.0,10.0,20.0,360.0,10.0,30.0,360.0,30.0,228.0,20.0,30.0,30.0,20.0,40.0,50.0,50.0,50.0,60.0,70.0,60.0,70.0,60.0,60.0,60.0,80.0,70.0,60.0,60.0,50.0,70.0,80.0,60.0,60.0,60.0,70.0,60.0,60.0,60.0,60.0,80.0,70.0,70.0,80.0,80.0,70.0,70.0,80.0,80.0,80.0,80.0,80.0,110.0,100.0,80.0,80.0,90.0,90.0,100.0,90.0,90.0,100.0,90.0,90.0,100.0,100.0,80.0,100.0,100.0,100.0,100.0,100.0,110.0,100.0,110.0,100.0,110.0,110.0,110.0,110.0,100.0,110.0,110.0,120.0,120.0,120.0,120.0,120.0,110.0,110.0,217.0,78.0,120.0,140.0,130.0,140.0,150.0,160.0,170.0,160.0,160.0,150.0,140.0,140.0,130.0,15.0,130.0,130.0,130.0,140.0,130.0,120.0,130.0,120.0,120.0,140.0,120.0,120.0,140.0,140.0,160.0,160.0,160.0,180.0,180.0,180.0,170.0,150.0,140.0,139.0,130.0,130.0,130.0,120.0,130.0,140.0,130.0,130.0,140.0,130.0,130.0,140.0,150.0,140.0,170.0,180.0,160.0,170.0,170.0,160.0,180.0,100.0,90.0,70.0,149.0,60.0,190.0,164.0,220.0,200.0,210.0,200.0,200.0,180.0,210.0,220.0,200.0,200.0,200.0,210.0,200.0,200.0,200.0,200.0,190.0,205.0,53.0,309.0,150.0,150.0,160.0,160.0,234.0,294.0,283.0,160.0,170.0,170.0,180.0,190.0,200.0,210.0,210.0,210.0,220.0,230.0,220.0,220.0,220.0,220.0,230.0,210.0,220.0,220.0,220.0,220.0,230.0,230.0,240.0,230.0,250.0,240.0,240.0,240.0,240.0,240.0,240.0,240.0,250.0,240.0,260.0,250.0,240.0,240.0,240.0,210.0,200.0,220.0,190.0,200.0,190.0,190.0,180.0,180.0,180.0,140.0,140.0,150.0,140.0,150.0,160.0,150.0,140.0,150.0,140.0,130.0,110.0,110.0,100.0,100.0,100.0,110.0,100.0,110.0,110.0,110.0,110.0,100.0,100.0,100.0,100.0,100.0,110.0,110.0,120.0,120.0,120.0,130.0,140.0,160.0,170.0,160.0,160.0,150.0,150.0,150.0,150.0,180.0,190.0,180.0,160.0,190.0,170.0,200.0,210.0,240.0,230.0,230.0,230.0,220.0,220.0,210.0,210.0,210.0,210.0,200.0,200.0,190.0,190.0,190.0,190.0,200.0,200.0,200.0,200.0,210.0,210.0,200.0,200.0,200.0,200.0,210.0,210.0,210.0,200.0,210.0,200.0,200.0,200.0,200.0,190.0,190.0,200.0,200.0,200.0,200.0,210.0,200.0,200.0,200.0,200.0,200.0,200.0,210.0,210.0,200.0,210.0,210.0,210.0,220.0,210.0,220.0,220.0,210.0,200.0,200.0,210.0,200.0,210.0,200.0,210.0,210.0,210.0,200.0,220.0,220.0,220.0,200.0,200.0,210.0,200.0,200.0,190.0,210.0,210.0,190.0,190.0,190.0,180.0,190.0,200.0,190.0,190.0,180.0,190.0,180.0,190.0,200.0,200.0,210.0,200.0,210.0,200.0,200.0,210.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,210.0,220.0,210.0,220.0,210.0,220.0,220.0,210.0,210.0,220.0,200.0,230.0,210.0,220.0,220.0,220.0,240.0,230.0,240.0,220.0,230.0,220.0,220.0,220.0,230.0,180.0,151.0,269.0,170.0,151.0,170.0,261.0,109.0,142.0,179.0,122.0,319.0,130.0,120.0,120.0,100.0,110.0,100.0,80.0,100.0,80.0,80.0,90.0,90.0,100.0,90.0,100.0,196.0,10.0,171.0,136.0,154.0,130.0,130.0,120.0,120.0,130.0,140.0,150.0,150.0,180.0,180.0,150.0,160.0,130.0,120.0,120.0,100.0,110.0,120.0,110.0,110.0,110.0,100.0,110.0,120.0,282.0,130.0,130.0,212.0,188.0,7.0,232.0,353.0,276.0,190.0,120.0,50.0,93.0,90.0,51.0,20.0,50.0,200.0,45.0,10.0,330.0,10.0,310.0,270.0,220.0,260.0,290.0,300.0,310.0,290.0,240.0,240.0,240.0,250.0,250.0,220.0,220.0,200.0,230.0,232.0,225.0,232.0,235.0,217.0,205.0,187.0,187.0,190.0,187.0,182.0,175.0,180.0,170.0,160.0,160.0,180.0,190.0,190.0,190.0,170.0,180.0,140.0,140.0,150.0,150.0,150.0,150.0,150.0,150.0,140.0,140.0,150.0,110.0,150.0,150.0,140.0,130.0,140.0,160.0,160.0,180.0,180.0,180.0,190.0,180.0,190.0,190.0,220.0,190.0,200.0,200.0,200.0,200.0,210.0,210.0,200.0,210.0,220.0,210.0,210.0,200.0,210.0,200.0,200.0,200.0,200.0,210.0,200.0,190.0,180.0,200.0,200.0,180.0,210.0,210.0,210.0,200.0,200.0,200.0,200.0,190.0,190.0,190.0,180.0,190.0,180.0,190.0,180.0,190.0,190.0,180.0,180.0,190.0,220.0,200.0,220.0,210.0,210.0,210.0,210.0,200.0,190.0,190.0,190.0,190.0,190.0,180.0,190.0,160.0,130.0,160.0,160.0,150.0,130.0,110.0,100.0,120.0,110.0,150.0,180.0,200.0,200.0,200.0,200.0,200.0,200.0,210.0,210.0,210.0,210.0,220.0,220.0,230.0,240.0,250.0,270.0,290.0,290.0,290.0,290.0,270.0,290.0,230.0,240.0,240.0,220.0,240.0,240.0,240.0,250.0,250.0,280.0,280.0,270.0,280.0,260.0,200.0,210.0,240.0,240.0,260.0,250.0,250.0,250.0,250.0,240.0,240.0,230.0,230.0,240.0,230.0,230.0,230.0,230.0,240.0,250.0,270.0,270.0,270.0,260.0,260.0,260.0,250.0,240.0,250.0,250.0,250.0,250.0,240.0,230.0,230.0,220.0,230.0,230.0,220.0,220.0,220.0,220.0,230.0,220.0,220.0,230.0,220.0,230.0,230.0,220.0,210.0,230.0,230.0,230.0,230.0,230.0,230.0,230.0,220.0,230.0,230.0,250.0,230.0,220.0,230.0,220.0,230.0,210.0,210.0,210.0,210.0,200.0,200.0,200.0,200.0,200.0,190.0,190.0,180.0,160.0,150.0,150.0,150.0,150.0,120.0,130.0,130.0,130.0,160.0,170.0,170.0,170.0,180.0,180.0,190.0,180.0,160.0,180.0,170.0,190.0,180.0,170.0,160.0,160.0,190.0,150.0,160.0,180.0,170.0,170.0,160.0,180.0,170.0,170.0,190.0,230.0,270.0,230.0,220.0,210.0,220.0,210.0,200.0,220.0,200.0,220.0,200.0,200.0,200.0,180.0,190.0,190.0,220.0,240.0,230.0,240.0,220.0,210.0,210.0,230.0,200.0,200.0,210.0,210.0,210.0,200.0,200.0,230.0,200.0,210.0,210.0,210.0,200.0,190.0,190.0,200.0,190.0,190.0,190.0,190.0,190.0,190.0,190.0,190.0,190.0,190.0,200.0,190.0,190.0,190.0,190.0,200.0,190.0,200.0,190.0,190.0,190.0,190.0,200.0,190.0,180.0,180.0,180.0,170.0,180.0,180.0,160.0,130.0,150.0,150.0,150.0,140.0,90.0,130.0,160.0,110.0,100.0,50.0,70.0,70.0,60.0,50.0,70.0,70.0,172.0,100.0,110.0,127.0,300.0,150.0,150.0,167.0,307.0,110.0,58.0,140.0,289.0,180.0,240.0,194.0,256.0,160.0,120.0,110.0,52.0,60.0,120.0,150.0,160.0,327.0,110.0,120.0,160.0,170.0,130.0,100.0,120.0,120.0,110.0,160.0,170.0,170.0,180.0,160.0,190.0,180.0,180.0,140.0,150.0,150.0,120.0,120.0,140.0,110.0,130.0,120.0,120.0,120.0,140.0,140.0,140.0,140.0,140.0,130.0,130.0,140.0,160.0,180.0,190.0,200.0,220.0,210.0,210.0,200.0,200.0,200.0,200.0,190.0,210.0,210.0,200.0,210.0,200.0,200.0,210.0,210.0,240.0,260.0,290.0,310.0,320.0,300.0,300.0,310.0,320.0,320.0,300.0,230.0,274.0,83.0,68.0,90.0,228.0,276.0,261.0,337.0,157.0,311.0,30.0,77.0,110.0,130.0,110.0,110.0,110.0,120.0,130.0,150.0,170.0,180.0,150.0,140.0,150.0,180.0,170.0,170.0,170.0,180.0,180.0,180.0,180.0,180.0,170.0,170.0,160.0,170.0,180.0,170.0,170.0,160.0,170.0,180.0,160.0,160.0,170.0,150.0,170.0,170.0,170.0,150.0,160.0,150.0,150.0,150.0,150.0,140.0,120.0,140.0,150.0,120.0,130.0,120.0,130.0,140.0,140.0,150.0,150.0,160.0,160.0,170.0,180.0,190.0,190.0,190.0,190.0,210.0,230.0,230.0,240.0,240.0,220.0,210.0,200.0,190.0,200.0,190.0,200.0,200.0,190.0,200.0,190.0,200.0,190.0,180.0,180.0,170.0,170.0,170.0,170.0,160.0,160.0,170.0,160.0,160.0,160.0,160.0,160.0,170.0,170.0,170.0,170.0,190.0,190.0,190.0,210.0,210.0,220.0,210.0,220.0,210.0,190.0,190.0,170.0,174.0,160.0,60.0,30.0,163.0,218.0,110.0,80.0,40.0,70.0,30.0,70.0,80.0,110.0,110.0,70.0,70.0,70.0,80.0,80.0,70.0,90.0,110.0,90.0,90.0,100.0,90.0,110.0,120.0,130.0,150.0,160.0,190.0,210.0,200.0,210.0,220.0,220.0,220.0,220.0,220.0,220.0,210.0,220.0,210.0,210.0,210.0,210.0,210.0,210.0,200.0,200.0,190.0,190.0,170.0,160.0,160.0,150.0,160.0,160.0,150.0,130.0,130.0,140.0,150.0,150.0,150.0,150.0,160.0,180.0,170.0,180.0,190.0,200.0,190.0,180.0,180.0,180.0,180.0,180.0,180.0,180.0,190.0,190.0,200.0,200.0,200.0,200.0,190.0,160.0,120.0,287.0,150.0,120.0,10.0,141.0,251.0,140.0,350.0,145.0,200.0,100.0,282.0,23.0,20.0,224.0,320.0,320.0,340.0,310.0,330.0,340.0,30.0,120.0,90.0,60.0,330.0,330.0,330.0,340.0,360.0,340.0,350.0,340.0,350.0,340.0,330.0,330.0,330.0,340.0,330.0,350.0,320.0,330.0,330.0,350.0,340.0,330.0,350.0,350.0,307.0,307.0,307.0,305.0,302.0,310.0,317.0,330.0,292.0,254.0,206.0,158.0,180.0,146.0,160.0,190.0,230.0,250.0,200.0,190.0,210.0,220.0,200.0,200.0,190.0,190.0,190.0,200.0,210.0,210.0,220.0,230.0,220.0,230.0,220.0,220.0,220.0,220.0,220.0,220.0,230.0,220.0,210.0,220.0,200.0,200.0,190.0,200.0,200.0,190.0,200.0,200.0,200.0,210.0,210.0,220.0,230.0,250.0,260.0,260.0,280.0,270.0,260.0,260.0,300.0,300.0,310.0,340.0,300.0,360.0,350.0,104.0,89.0,118.0,267.0,289.0,138.0,170.0,160.0,150.0,200.0,170.0,190.0,190.0,200.0,190.0,180.0,180.0,200.0,200.0,190.0,160.0,180.0,180.0,190.0,210.0,210.0,210.0,230.0,230.0,230.0,260.0,220.0,220.0,210.0,210.0,210.0,210.0,220.0,220.0,210.0,220.0,220.0,210.0,220.0,250.0,240.0,250.0,300.0,290.0,270.0,290.0,310.0,320.0,320.0,310.0,250.0,180.0,230.0,280.0,310.0,310.0,300.0,270.0,170.0,210.0,210.0,230.0,220.0,230.0,220.0,220.0,220.0,230.0,240.0,250.0,250.0,250.0,240.0,280.0,320.0,300.0,280.0,290.0,300.0,270.0,250.0,240.0,260.0,200.0,230.0,240.0,230.0,240.0,220.0,220.0,190.0,190.0,200.0,190.0,200.0,190.0,190.0,190.0,180.0,180.0,170.0,180.0,160.0,160.0,150.0,150.0,140.0,130.0,130.0,130.0,120.0,110.0,110.0,110.0,120.0,100.0,90.0,70.0,70.0,90.0,70.0,30.0,50.0,60.0,50.0,60.0,40.0,87.0,109.0,10.0,52.0,180.0,170.0,250.0,220.0,240.0,230.0,240.0,200.0,220.0,210.0,200.0,190.0,200.0,200.0,200.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,220.0,220.0,220.0,220.0,240.0,240.0,240.0,290.0,260.0,250.0,250.0,240.0,230.0,260.0,240.0,240.0,260.0,260.0,290.0,290.0,290.0,290.0,290.0,290.0,310.0,320.0,330.0,350.0,10.0,360.0,360.0,360.0,340.0,340.0,340.0,340.0,330.0,330.0,340.0,330.0,340.0,350.0,360.0,350.0,360.0,10.0,10.0,10.0,10.0,350.0,340.0,360.0,350.0,10.0,330.0,310.0,290.0,270.0,250.0,240.0,240.0,250.0,250.0,240.0,230.0,230.0,220.0,210.0,220.0,220.0,230.0,230.0,240.0,240.0,230.0,230.0,220.0,240.0,240.0,240.0,220.0,220.0,210.0,200.0,210.0,200.0,210.0,200.0,190.0,190.0,190.0,190.0,190.0,160.0,120.0,120.0,120.0,110.0,120.0,130.0,130.0,140.0,120.0,90.0,100.0,100.0,110.0,120.0,120.0,120.0,120.0,130.0,140.0,130.0,130.0,130.0,140.0,140.0,140.0,120.0,22.0,202.0,120.0,207.0,110.0,120.0,223.0,290.0,110.0,120.0,139.0,120.0,140.0,108.0,180.0,190.0,180.0,180.0,200.0,190.0,190.0,200.0,200.0,190.0,200.0,200.0,190.0,200.0,200.0,210.0,210.0,200.0,190.0,190.0,190.0,190.0,200.0,190.0,190.0,170.0,180.0,170.0,170.0,180.0,200.0,210.0,210.0,210.0,210.0,210.0,210.0,210.0,220.0,210.0,210.0,220.0,210.0,210.0,200.0,200.0,210.0,190.0,190.0,190.0,190.0,190.0,170.0,180.0,160.0,130.0,170.0,170.0,180.0,160.0,160.0,180.0,190.0,190.0,190.0,170.0,180.0,220.0,190.0,220.0,220.0,210.0,220.0,220.0,210.0,220.0,210.0,220.0,220.0,220.0,220.0,190.0,210.0,200.0,190.0,220.0,230.0,210.0,230.0,200.0,210.0,210.0,60.0,97.0,346.0,333.0,70.0,310.0,40.0,95.0,13.0,10.0,220.0,230.0,257.0,60.0,90.0,90.0,110.0,130.0,130.0,90.0,110.0,120.0,80.0,90.0,80.0,80.0,110.0,90.0,80.0,90.0,90.0,110.0,110.0,110.0,90.0,90.0,100.0,100.0,100.0,90.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,110.0,100.0,110.0,110.0,110.0,100.0,110.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,90.0,80.0,80.0,100.0,90.0,80.0,110.0,90.0,90.0,80.0,100.0,110.0,130.0,120.0,110.0,150.0,190.0,210.0,220.0,220.0,210.0,190.0,200.0,190.0,180.0,245.0,180.0,170.0,130.0,120.0,130.0,130.0,140.0,130.0,130.0,140.0,120.0,120.0,140.0,140.0,180.0,220.0,230.0,230.0,240.0,230.0,230.0,240.0,250.0,240.0,240.0,240.0,250.0,240.0,240.0,230.0,230.0,230.0,230.0,220.0,220.0,220.0,210.0,220.0,220.0,210.0,200.0,190.0,190.0,170.0,150.0,140.0,190.0,180.0,190.0,180.0,170.0,180.0,190.0,200.0,210.0,220.0,240.0,240.0,230.0,220.0,170.0,190.0,180.0,240.0,210.0,210.0,250.0,220.0,220.0,200.0,200.0,190.0,200.0,190.0,190.0,190.0,200.0,220.0,240.0,250.0,240.0,230.0,220.0,220.0,220.0,220.0,230.0,220.0,230.0,210.0,220.0,210.0,220.0,230.0,230.0,230.0,220.0,210.0,210.0,210.0,200.0,200.0,200.0,200.0,210.0,200.0,210.0,220.0,250.0,240.0,240.0,230.0,220.0,220.0,230.0,220.0,230.0,220.0,210.0,220.0,230.0,192.0,10.0,40.0,360.0,350.0,360.0,30.0,20.0,350.0,50.0,50.0,304.0,228.0,80.0,80.0,110.0,120.0,130.0,130.0,140.0,150.0,150.0,160.0,170.0,170.0,170.0,190.0,190.0,190.0,200.0,200.0,200.0,200.0,200.0,190.0,200.0,200.0,190.0,200.0,190.0,190.0,210.0,190.0,190.0,180.0,180.0,180.0,170.0,160.0,160.0,180.0,180.0,190.0,190.0,200.0,190.0,210.0,230.0,210.0,220.0,220.0,210.0,200.0,220.0,210.0,210.0,210.0,210.0,220.0,220.0,220.0,220.0,210.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0,220.0}','degrees','This is the Wind Direction in degrees where the convention is that North=0.0, East=90.0, South=180.0, West=270.0. (Wind direction in degrees at the time indicated. If calm, direction equals zero.) Values can range from 0 to 360. Missing value is 999.'),
('Twenthe Enschede AP','NL','hour','Relative Humidity','float',8760,'{84.0,83.0,83.0,80.0,82.0,88.0,92.0,94.0,97.0,97.0,93.0,94.0,96.0,95.0,88.0,90.0,98.0,91.0,94.0,96.0,95.0,93.0,94.0,93.0,92.0,91.0,92.0,90.0,87.0,84.0,84.0,82.0,80.0,78.0,76.0,86.0,91.0,91.0,90.0,93.0,94.0,96.0,94.0,94.0,92.0,94.0,92.0,91.0,92.0,92.0,94.0,95.0,96.0,96.0,96.0,97.0,97.0,97.0,97.0,97.0,98.0,97.0,98.0,98.0,97.0,96.0,95.0,94.0,91.0,91.0,91.0,91.0,93.0,93.0,94.0,94.0,94.0,95.0,94.0,94.0,96.0,95.0,97.0,96.0,96.0,96.0,94.0,95.0,96.0,95.0,96.0,97.0,95.0,95.0,95.0,96.0,97.0,95.0,97.0,97.0,97.0,97.0,97.0,97.0,99.0,98.0,96.0,97.0,96.0,96.0,96.0,97.0,96.0,96.0,95.0,94.0,94.0,92.0,92.0,92.0,91.0,93.0,91.0,92.0,90.0,91.0,92.0,92.0,93.0,93.0,93.0,94.0,95.0,93.0,92.0,94.0,91.0,92.0,93.0,92.0,92.0,92.0,92.0,94.0,92.0,92.0,92.0,94.0,94.0,94.0,96.0,97.0,96.0,96.0,96.0,94.0,93.0,90.0,87.0,87.0,90.0,91.0,93.0,95.0,95.0,93.0,83.0,80.0,78.0,85.0,79.0,80.0,80.0,77.0,78.0,79.0,82.0,79.0,79.0,78.0,77.0,75.0,74.0,77.0,78.0,81.0,86.0,83.0,82.0,82.0,84.0,85.0,86.0,88.0,88.0,87.0,88.0,87.0,87.0,89.0,89.0,93.0,93.0,86.0,82.0,79.0,80.0,77.0,76.0,78.0,79.0,83.0,84.0,86.0,87.0,89.0,87.0,87.0,84.0,88.0,88.0,85.0,84.0,81.0,82.0,82.0,80.0,74.0,72.0,68.0,66.0,67.0,68.0,71.0,71.0,78.0,83.0,86.0,91.0,89.0,90.0,89.0,86.0,88.0,88.0,92.0,92.0,93.0,92.0,91.0,89.0,88.0,88.0,93.0,93.0,96.0,95.0,95.0,97.0,95.0,95.0,94.0,95.0,93.0,93.0,93.0,93.0,91.0,93.0,91.0,91.0,92.0,89.0,88.0,87.0,90.0,89.0,83.0,82.0,82.0,81.0,81.0,76.0,83.0,89.0,91.0,89.0,89.0,92.0,95.0,93.0,95.0,94.0,91.0,87.0,86.0,87.0,84.0,82.0,85.0,81.0,83.0,85.0,93.0,94.0,93.0,94.0,91.0,93.0,93.0,92.0,91.0,92.0,91.0,93.0,94.0,92.0,88.0,86.0,84.0,82.0,84.0,89.0,90.0,92.0,93.0,94.0,90.0,89.0,85.0,93.0,93.0,94.0,94.0,93.0,91.0,91.0,92.0,94.0,96.0,96.0,98.0,98.0,98.0,96.0,99.0,97.0,94.0,94.0,93.0,94.0,94.0,88.0,88.0,90.0,90.0,93.0,94.0,94.0,96.0,99.0,98.0,98.0,96.0,91.0,90.0,96.0,96.0,96.0,96.0,89.0,90.0,88.0,94.0,88.0,84.0,86.0,82.0,87.0,91.0,92.0,93.0,91.0,91.0,98.0,95.0,93.0,92.0,93.0,90.0,92.0,96.0,98.0,94.0,88.0,84.0,80.0,77.0,63.0,61.0,74.0,93.0,96.0,93.0,95.0,97.0,94.0,93.0,93.0,97.0,92.0,93.0,93.0,90.0,93.0,92.0,93.0,91.0,81.0,70.0,64.0,58.0,61.0,61.0,66.0,70.0,72.0,72.0,75.0,81.0,80.0,85.0,87.0,86.0,92.0,95.0,93.0,97.0,92.0,90.0,89.0,81.0,78.0,75.0,73.0,71.0,71.0,71.0,71.0,74.0,93.0,85.0,82.0,78.0,81.0,80.0,79.0,78.0,80.0,79.0,82.0,83.0,85.0,91.0,96.0,93.0,91.0,90.0,87.0,85.0,88.0,88.0,89.0,93.0,94.0,99.0,98.0,98.0,97.0,98.0,98.0,98.0,99.0,96.0,98.0,97.0,94.0,89.0,89.0,86.0,84.0,83.0,84.0,83.0,84.0,81.0,85.0,86.0,87.0,92.0,98.0,96.0,96.0,98.0,97.0,95.0,93.0,91.0,90.0,90.0,89.0,88.0,88.0,84.0,80.0,73.0,68.0,65.0,68.0,63.0,62.0,62.0,64.0,74.0,87.0,93.0,96.0,96.0,98.0,99.0,100.0,99.0,99.0,100.0,99.0,99.0,99.0,98.0,98.0,100.0,99.0,99.0,100.0,99.0,99.0,98.0,99.0,97.0,97.0,97.0,98.0,95.0,95.0,92.0,89.0,89.0,87.0,86.0,84.0,86.0,91.0,89.0,93.0,97.0,97.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,100.0,100.0,99.0,99.0,99.0,99.0,100.0,100.0,100.0,100.0,99.0,99.0,98.0,94.0,87.0,81.0,79.0,76.0,77.0,77.0,81.0,83.0,80.0,68.0,62.0,63.0,69.0,72.0,77.0,82.0,85.0,84.0,82.0,83.0,89.0,93.0,89.0,87.0,87.0,84.0,81.0,78.0,78.0,79.0,78.0,77.0,75.0,83.0,85.0,86.0,87.0,90.0,89.0,88.0,83.0,82.0,81.0,81.0,85.0,82.0,83.0,92.0,93.0,94.0,94.0,90.0,87.0,85.0,83.0,82.0,87.0,93.0,95.0,94.0,95.0,94.0,95.0,90.0,91.0,90.0,84.0,84.0,86.0,87.0,86.0,84.0,77.0,73.0,69.0,65.0,63.0,66.0,68.0,69.0,76.0,76.0,77.0,76.0,73.0,71.0,77.0,78.0,79.0,78.0,80.0,78.0,79.0,81.0,82.0,81.0,81.0,82.0,80.0,81.0,81.0,82.0,83.0,93.0,95.0,95.0,94.0,93.0,93.0,89.0,89.0,85.0,87.0,88.0,92.0,93.0,92.0,93.0,93.0,93.0,96.0,93.0,92.0,91.0,89.0,87.0,85.0,80.0,85.0,89.0,82.0,82.0,80.0,82.0,81.0,81.0,83.0,82.0,84.0,86.0,86.0,86.0,85.0,84.0,84.0,83.0,80.0,82.0,83.0,89.0,95.0,97.0,97.0,98.0,97.0,95.0,93.0,91.0,87.0,86.0,83.0,85.0,88.0,91.0,94.0,97.0,92.0,91.0,88.0,85.0,80.0,78.0,74.0,73.0,74.0,78.0,78.0,81.0,78.0,81.0,78.0,90.0,92.0,87.0,79.0,78.0,78.0,77.0,78.0,76.0,86.0,89.0,93.0,92.0,94.0,93.0,95.0,93.0,98.0,94.0,90.0,89.0,88.0,86.0,85.0,81.0,82.0,83.0,83.0,82.0,80.0,82.0,84.0,83.0,83.0,83.0,85.0,82.0,79.0,74.0,71.0,69.0,65.0,67.0,67.0,67.0,68.0,68.0,66.0,67.0,67.0,68.0,69.0,77.0,74.0,84.0,89.0,84.0,82.0,81.0,89.0,77.0,71.0,83.0,75.0,65.0,64.0,61.0,61.0,64.0,64.0,59.0,60.0,60.0,59.0,61.0,70.0,72.0,74.0,88.0,90.0,93.0,92.0,92.0,89.0,88.0,85.0,84.0,83.0,83.0,86.0,88.0,92.0,94.0,96.0,96.0,89.0,95.0,96.0,95.0,95.0,93.0,92.0,92.0,91.0,90.0,89.0,89.0,89.0,87.0,82.0,81.0,83.0,84.0,81.0,77.0,86.0,92.0,94.0,94.0,94.0,90.0,82.0,77.0,74.0,74.0,75.0,80.0,81.0,86.0,89.0,87.0,88.0,90.0,93.0,92.0,84.0,77.0,72.0,75.0,75.0,79.0,86.0,91.0,92.0,94.0,90.0,85.0,87.0,92.0,92.0,90.0,90.0,94.0,89.0,88.0,84.0,74.0,83.0,93.0,90.0,83.0,80.0,82.0,83.0,85.0,85.0,88.0,92.0,89.0,83.0,90.0,89.0,82.0,80.0,86.0,80.0,83.0,78.0,77.0,84.0,85.0,80.0,76.0,72.0,75.0,77.0,86.0,84.0,87.0,92.0,92.0,93.0,94.0,95.0,96.0,96.0,100.0,96.0,95.0,91.0,90.0,88.0,85.0,84.0,82.0,80.0,78.0,77.0,77.0,77.0,85.0,89.0,92.0,95.0,96.0,97.0,98.0,97.0,96.0,97.0,100.0,97.0,97.0,97.0,97.0,96.0,95.0,93.0,88.0,89.0,92.0,91.0,84.0,83.0,83.0,83.0,82.0,84.0,92.0,94.0,96.0,97.0,98.0,98.0,98.0,98.0,98.0,98.0,99.0,97.0,88.0,81.0,78.0,81.0,92.0,96.0,100.0,97.0,98.0,98.0,99.0,99.0,98.0,99.0,99.0,99.0,99.0,99.0,100.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,98.0,97.0,92.0,88.0,93.0,93.0,93.0,96.0,97.0,97.0,98.0,98.0,97.0,97.0,97.0,97.0,97.0,95.0,95.0,95.0,96.0,95.0,92.0,87.0,87.0,84.0,79.0,79.0,80.0,81.0,81.0,84.0,86.0,88.0,90.0,93.0,94.0,94.0,94.0,93.0,97.0,98.0,98.0,98.0,99.0,99.0,99.0,97.0,90.0,88.0,89.0,93.0,91.0,92.0,94.0,97.0,97.0,98.0,99.0,98.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,100.0,99.0,99.0,99.0,99.0,97.0,93.0,87.0,86.0,87.0,84.0,90.0,88.0,89.0,91.0,94.0,92.0,94.0,97.0,98.0,98.0,98.0,99.0,99.0,99.0,98.0,98.0,97.0,95.0,91.0,86.0,85.0,85.0,84.0,87.0,87.0,89.0,94.0,93.0,94.0,92.0,89.0,87.0,87.0,89.0,87.0,91.0,92.0,92.0,91.0,87.0,83.0,73.0,64.0,60.0,59.0,58.0,64.0,75.0,80.0,84.0,87.0,87.0,88.0,91.0,88.0,87.0,88.0,89.0,91.0,91.0,92.0,93.0,90.0,84.0,77.0,65.0,57.0,51.0,51.0,48.0,52.0,56.0,60.0,63.0,67.0,67.0,67.0,70.0,70.0,72.0,76.0,76.0,77.0,77.0,79.0,79.0,72.0,62.0,55.0,52.0,53.0,50.0,53.0,51.0,53.0,56.0,60.0,62.0,65.0,61.0,60.0,63.0,67.0,67.0,67.0,74.0,81.0,81.0,79.0,79.0,76.0,70.0,66.0,65.0,65.0,64.0,64.0,67.0,67.0,68.0,72.0,71.0,77.0,74.0,77.0,75.0,76.0,77.0,79.0,78.0,78.0,76.0,82.0,86.0,80.0,83.0,79.0,69.0,67.0,84.0,69.0,55.0,57.0,66.0,70.0,76.0,77.0,82.0,81.0,89.0,87.0,90.0,91.0,92.0,88.0,94.0,96.0,87.0,82.0,78.0,67.0,50.0,60.0,46.0,45.0,49.0,45.0,51.0,63.0,75.0,84.0,79.0,87.0,90.0,90.0,92.0,90.0,93.0,93.0,92.0,92.0,91.0,90.0,88.0,79.0,78.0,75.0,69.0,66.0,60.0,75.0,89.0,93.0,96.0,96.0,97.0,97.0,98.0,98.0,99.0,99.0,98.0,97.0,97.0,96.0,96.0,94.0,91.0,87.0,86.0,81.0,93.0,84.0,73.0,88.0,91.0,93.0,90.0,93.0,94.0,95.0,94.0,95.0,94.0,94.0,94.0,94.0,94.0,93.0,90.0,80.0,85.0,97.0,98.0,98.0,98.0,95.0,92.0,92.0,95.0,97.0,98.0,95.0,94.0,95.0,94.0,91.0,90.0,87.0,88.0,88.0,88.0,90.0,87.0,80.0,74.0,70.0,65.0,66.0,65.0,61.0,68.0,78.0,88.0,89.0,90.0,92.0,92.0,94.0,94.0,94.0,94.0,94.0,94.0,94.0,93.0,92.0,91.0,88.0,85.0,78.0,72.0,67.0,78.0,77.0,73.0,72.0,68.0,91.0,94.0,95.0,92.0,91.0,89.0,88.0,88.0,90.0,91.0,93.0,95.0,94.0,97.0,99.0,82.0,73.0,70.0,63.0,72.0,67.0,72.0,77.0,78.0,81.0,88.0,90.0,90.0,91.0,90.0,93.0,95.0,92.0,87.0,97.0,85.0,77.0,74.0,76.0,82.0,74.0,78.0,66.0,62.0,64.0,63.0,62.0,70.0,73.0,71.0,70.0,74.0,73.0,76.0,81.0,88.0,91.0,97.0,91.0,87.0,77.0,76.0,69.0,69.0,59.0,57.0,56.0,53.0,60.0,60.0,60.0,60.0,62.0,65.0,71.0,74.0,76.0,78.0,79.0,81.0,83.0,82.0,80.0,79.0,81.0,78.0,76.0,83.0,73.0,74.0,76.0,70.0,62.0,62.0,56.0,57.0,64.0,74.0,74.0,70.0,73.0,78.0,81.0,82.0,83.0,87.0,89.0,93.0,94.0,95.0,94.0,78.0,79.0,73.0,80.0,51.0,50.0,50.0,60.0,90.0,92.0,89.0,90.0,90.0,89.0,88.0,86.0,84.0,84.0,82.0,83.0,85.0,85.0,86.0,86.0,82.0,79.0,68.0,55.0,52.0,52.0,43.0,49.0,54.0,60.0,61.0,63.0,66.0,73.0,74.0,70.0,74.0,72.0,73.0,75.0,79.0,84.0,84.0,85.0,85.0,89.0,94.0,97.0,97.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,98.0,97.0,91.0,94.0,96.0,97.0,96.0,95.0,91.0,91.0,90.0,89.0,88.0,85.0,77.0,80.0,81.0,79.0,76.0,77.0,79.0,79.0,84.0,88.0,90.0,93.0,93.0,96.0,97.0,99.0,99.0,99.0,99.0,99.0,99.0,96.0,81.0,68.0,61.0,58.0,58.0,62.0,63.0,62.0,62.0,60.0,66.0,65.0,63.0,61.0,65.0,68.0,70.0,72.0,73.0,74.0,77.0,76.0,79.0,76.0,79.0,75.0,83.0,83.0,86.0,80.0,76.0,74.0,76.0,76.0,84.0,87.0,90.0,90.0,89.0,88.0,89.0,89.0,89.0,86.0,83.0,78.0,73.0,68.0,62.0,57.0,52.0,58.0,60.0,55.0,67.0,80.0,76.0,69.0,71.0,69.0,70.0,77.0,82.0,83.0,88.0,90.0,87.0,86.0,87.0,84.0,84.0,88.0,89.0,88.0,79.0,69.0,66.0,62.0,83.0,86.0,90.0,93.0,90.0,89.0,86.0,78.0,75.0,71.0,73.0,72.0,89.0,81.0,83.0,79.0,78.0,70.0,78.0,73.0,78.0,86.0,87.0,88.0,78.0,73.0,68.0,63.0,67.0,69.0,68.0,69.0,66.0,71.0,79.0,80.0,77.0,74.0,76.0,78.0,77.0,74.0,68.0,62.0,60.0,59.0,55.0,58.0,62.0,66.0,69.0,75.0,77.0,79.0,83.0,85.0,87.0,87.0,88.0,89.0,90.0,96.0,97.0,97.0,97.0,90.0,72.0,71.0,62.0,58.0,58.0,53.0,56.0,63.0,72.0,77.0,80.0,85.0,88.0,90.0,92.0,90.0,92.0,96.0,96.0,97.0,98.0,97.0,86.0,74.0,69.0,67.0,63.0,70.0,71.0,72.0,71.0,76.0,79.0,79.0,81.0,84.0,83.0,82.0,83.0,83.0,84.0,85.0,85.0,90.0,95.0,97.0,99.0,97.0,97.0,92.0,91.0,90.0,90.0,97.0,97.0,97.0,97.0,93.0,93.0,97.0,97.0,91.0,91.0,90.0,89.0,87.0,86.0,84.0,87.0,82.0,76.0,72.0,57.0,75.0,69.0,57.0,71.0,78.0,62.0,66.0,73.0,88.0,88.0,89.0,88.0,88.0,88.0,87.0,88.0,87.0,85.0,81.0,80.0,82.0,78.0,73.0,65.0,64.0,62.0,51.0,74.0,67.0,70.0,80.0,86.0,85.0,89.0,89.0,91.0,89.0,89.0,89.0,89.0,90.0,90.0,93.0,94.0,90.0,87.0,79.0,70.0,81.0,53.0,76.0,60.0,51.0,47.0,59.0,74.0,74.0,89.0,90.0,87.0,87.0,87.0,88.0,90.0,91.0,93.0,93.0,95.0,95.0,90.0,87.0,85.0,85.0,77.0,68.0,74.0,71.0,87.0,90.0,91.0,89.0,90.0,90.0,91.0,97.0,91.0,92.0,96.0,97.0,97.0,95.0,97.0,92.0,93.0,92.0,90.0,88.0,88.0,91.0,83.0,77.0,83.0,90.0,92.0,96.0,97.0,97.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,99.0,99.0,99.0,99.0,81.0,81.0,83.0,84.0,86.0,91.0,79.0,72.0,73.0,69.0,71.0,74.0,76.0,79.0,80.0,86.0,88.0,90.0,90.0,64.0,51.0,50.0,45.0,42.0,47.0,42.0,33.0,38.0,38.0,44.0,51.0,83.0,88.0,88.0,88.0,88.0,91.0,89.0,90.0,90.0,93.0,90.0,90.0,97.0,99.0,99.0,88.0,68.0,87.0,76.0,71.0,67.0,64.0,73.0,77.0,83.0,90.0,94.0,90.0,94.0,96.0,95.0,94.0,90.0,88.0,96.0,97.0,98.0,99.0,92.0,80.0,92.0,91.0,87.0,79.0,95.0,96.0,90.0,89.0,90.0,91.0,91.0,90.0,91.0,98.0,98.0,98.0,99.0,98.0,99.0,99.0,98.0,83.0,74.0,66.0,51.0,46.0,51.0,57.0,64.0,74.0,79.0,83.0,85.0,87.0,89.0,90.0,96.0,96.0,97.0,98.0,98.0,98.0,99.0,99.0,88.0,71.0,59.0,56.0,52.0,57.0,61.0,65.0,72.0,73.0,83.0,88.0,90.0,93.0,95.0,93.0,94.0,96.0,96.0,97.0,97.0,98.0,98.0,99.0,98.0,97.0,99.0,92.0,82.0,71.0,63.0,57.0,56.0,62.0,68.0,64.0,82.0,87.0,90.0,90.0,89.0,85.0,82.0,87.0,84.0,80.0,81.0,79.0,76.0,70.0,67.0,62.0,56.0,55.0,55.0,52.0,51.0,56.0,57.0,60.0,61.0,61.0,62.0,63.0,60.0,61.0,60.0,59.0,58.0,54.0,54.0,49.0,44.0,41.0,38.0,39.0,57.0,82.0,78.0,87.0,89.0,89.0,95.0,97.0,97.0,86.0,76.0,67.0,57.0,59.0,59.0,59.0,59.0,56.0,58.0,55.0,53.0,50.0,47.0,43.0,43.0,38.0,39.0,35.0,34.0,32.0,40.0,44.0,47.0,48.0,50.0,53.0,54.0,56.0,58.0,60.0,61.0,62.0,61.0,56.0,52.0,45.0,39.0,32.0,30.0,29.0,27.0,27.0,25.0,27.0,30.0,37.0,40.0,41.0,43.0,45.0,48.0,52.0,54.0,54.0,55.0,56.0,55.0,52.0,43.0,39.0,35.0,31.0,34.0,31.0,31.0,29.0,32.0,35.0,41.0,56.0,69.0,43.0,47.0,57.0,66.0,71.0,81.0,85.0,91.0,79.0,70.0,59.0,54.0,45.0,38.0,37.0,37.0,36.0,38.0,37.0,52.0,55.0,57.0,60.0,68.0,78.0,84.0,94.0,93.0,93.0,91.0,96.0,94.0,97.0,97.0,94.0,93.0,78.0,64.0,57.0,51.0,56.0,47.0,49.0,46.0,46.0,54.0,59.0,64.0,84.0,80.0,71.0,68.0,65.0,63.0,62.0,63.0,65.0,70.0,74.0,68.0,58.0,58.0,52.0,53.0,48.0,46.0,50.0,50.0,56.0,77.0,88.0,92.0,93.0,88.0,92.0,91.0,90.0,88.0,80.0,81.0,78.0,80.0,76.0,76.0,70.0,72.0,62.0,86.0,69.0,59.0,58.0,64.0,62.0,65.0,69.0,73.0,76.0,81.0,83.0,82.0,78.0,81.0,82.0,82.0,86.0,90.0,92.0,92.0,84.0,74.0,67.0,76.0,82.0,70.0,58.0,63.0,61.0,64.0,76.0,85.0,92.0,94.0,92.0,95.0,94.0,92.0,94.0,92.0,91.0,88.0,85.0,78.0,63.0,52.0,48.0,45.0,46.0,50.0,62.0,70.0,74.0,87.0,92.0,95.0,96.0,97.0,95.0,95.0,95.0,95.0,96.0,96.0,96.0,97.0,96.0,93.0,85.0,83.0,80.0,79.0,78.0,89.0,90.0,83.0,73.0,78.0,78.0,87.0,92.0,95.0,96.0,95.0,98.0,99.0,97.0,93.0,87.0,84.0,81.0,78.0,77.0,73.0,67.0,67.0,64.0,51.0,50.0,54.0,55.0,57.0,65.0,77.0,85.0,92.0,95.0,97.0,97.0,100.0,99.0,98.0,98.0,99.0,99.0,70.0,63.0,54.0,53.0,50.0,50.0,50.0,50.0,51.0,58.0,65.0,68.0,76.0,83.0,91.0,94.0,92.0,93.0,93.0,93.0,92.0,81.0,75.0,75.0,69.0,66.0,63.0,67.0,69.0,64.0,64.0,68.0,81.0,81.0,85.0,85.0,82.0,84.0,86.0,90.0,92.0,93.0,94.0,94.0,95.0,95.0,87.0,85.0,82.0,77.0,73.0,71.0,62.0,55.0,51.0,51.0,51.0,57.0,62.0,69.0,69.0,71.0,70.0,70.0,70.0,74.0,81.0,80.0,80.0,81.0,79.0,72.0,63.0,56.0,47.0,40.0,42.0,55.0,80.0,58.0,67.0,86.0,69.0,69.0,76.0,77.0,78.0,89.0,88.0,93.0,95.0,95.0,93.0,92.0,91.0,92.0,87.0,84.0,83.0,81.0,80.0,75.0,73.0,77.0,76.0,82.0,85.0,91.0,94.0,82.0,80.0,79.0,82.0,83.0,83.0,86.0,89.0,93.0,93.0,93.0,93.0,92.0,91.0,88.0,82.0,80.0,78.0,72.0,70.0,72.0,83.0,92.0,95.0,97.0,99.0,98.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,96.0,90.0,90.0,83.0,77.0,71.0,65.0,63.0,60.0,60.0,66.0,74.0,86.0,90.0,85.0,90.0,94.0,95.0,97.0,97.0,97.0,98.0,98.0,94.0,92.0,95.0,98.0,99.0,97.0,96.0,95.0,95.0,95.0,95.0,97.0,97.0,97.0,97.0,97.0,97.0,96.0,92.0,88.0,86.0,88.0,84.0,79.0,76.0,76.0,75.0,72.0,64.0,52.0,38.0,33.0,32.0,34.0,34.0,36.0,42.0,48.0,54.0,58.0,64.0,70.0,76.0,77.0,87.0,89.0,91.0,87.0,67.0,54.0,45.0,46.0,45.0,45.0,45.0,42.0,42.0,43.0,44.0,43.0,56.0,65.0,74.0,76.0,86.0,92.0,95.0,97.0,97.0,98.0,98.0,97.0,60.0,55.0,54.0,43.0,46.0,44.0,43.0,41.0,36.0,30.0,28.0,41.0,58.0,64.0,59.0,71.0,79.0,81.0,84.0,90.0,92.0,94.0,94.0,82.0,63.0,60.0,51.0,47.0,44.0,36.0,33.0,32.0,34.0,30.0,31.0,35.0,56.0,54.0,58.0,59.0,61.0,66.0,70.0,75.0,74.0,74.0,75.0,71.0,67.0,63.0,59.0,55.0,51.0,47.0,46.0,46.0,46.0,47.0,47.0,48.0,52.0,52.0,53.0,54.0,55.0,59.0,59.0,60.0,59.0,60.0,60.0,57.0,58.0,60.0,58.0,60.0,54.0,53.0,53.0,54.0,51.0,51.0,53.0,57.0,62.0,67.0,71.0,75.0,76.0,73.0,72.0,78.0,86.0,88.0,93.0,81.0,74.0,68.0,65.0,64.0,68.0,69.0,67.0,79.0,81.0,74.0,73.0,88.0,90.0,90.0,95.0,95.0,94.0,94.0,95.0,96.0,97.0,99.0,99.0,99.0,97.0,94.0,88.0,78.0,70.0,55.0,56.0,46.0,49.0,50.0,53.0,53.0,63.0,70.0,76.0,79.0,84.0,83.0,85.0,86.0,88.0,91.0,91.0,81.0,75.0,71.0,60.0,62.0,60.0,58.0,53.0,50.0,51.0,46.0,50.0,53.0,64.0,61.0,59.0,64.0,68.0,68.0,66.0,65.0,66.0,89.0,94.0,95.0,97.0,96.0,96.0,96.0,93.0,88.0,83.0,75.0,71.0,71.0,81.0,74.0,80.0,94.0,97.0,98.0,99.0,98.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,97.0,81.0,76.0,75.0,68.0,70.0,73.0,72.0,71.0,72.0,90.0,95.0,98.0,99.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,98.0,100.0,100.0,95.0,74.0,66.0,69.0,60.0,60.0,52.0,60.0,56.0,58.0,87.0,92.0,96.0,98.0,99.0,99.0,100.0,99.0,98.0,98.0,98.0,94.0,100.0,99.0,84.0,74.0,61.0,64.0,61.0,60.0,57.0,63.0,64.0,65.0,86.0,88.0,90.0,94.0,96.0,98.0,100.0,99.0,98.0,98.0,98.0,94.0,100.0,99.0,84.0,74.0,61.0,64.0,61.0,60.0,57.0,63.0,64.0,65.0,86.0,87.0,87.0,88.0,89.0,89.0,89.0,89.0,87.0,87.0,86.0,84.0,89.0,86.0,77.0,70.0,68.0,66.0,60.0,59.0,59.0,57.0,57.0,57.0,90.0,92.0,90.0,90.0,89.0,89.0,89.0,89.0,87.0,87.0,86.0,84.0,89.0,86.0,77.0,70.0,68.0,66.0,60.0,59.0,59.0,57.0,57.0,57.0,89.0,90.0,87.0,85.0,85.0,87.0,89.0,91.0,92.0,93.0,93.0,93.0,95.0,95.0,90.0,89.0,90.0,90.0,92.0,93.0,94.0,94.0,91.0,87.0,92.0,95.0,97.0,96.0,95.0,93.0,91.0,90.0,89.0,88.0,87.0,84.0,89.0,86.0,77.0,70.0,68.0,66.0,60.0,59.0,59.0,57.0,57.0,57.0,59.0,86.0,96.0,100.0,98.0,79.0,75.0,74.0,75.0,77.0,80.0,86.0,79.0,79.0,75.0,66.0,61.0,54.0,56.0,53.0,52.0,54.0,74.0,67.0,53.0,63.0,65.0,69.0,74.0,78.0,75.0,78.0,79.0,79.0,79.0,75.0,74.0,70.0,70.0,63.0,56.0,50.0,40.0,34.0,31.0,33.0,42.0,43.0,55.0,68.0,75.0,81.0,87.0,95.0,99.0,100.0,100.0,98.0,100.0,100.0,87.0,55.0,48.0,41.0,44.0,46.0,42.0,42.0,42.0,41.0,37.0,42.0,43.0,59.0,68.0,67.0,60.0,62.0,67.0,69.0,71.0,71.0,72.0,77.0,78.0,74.0,69.0,64.0,61.0,58.0,57.0,50.0,47.0,49.0,49.0,51.0,52.0,57.0,64.0,66.0,70.0,77.0,84.0,86.0,89.0,89.0,86.0,81.0,73.0,61.0,49.0,43.0,40.0,30.0,30.0,33.0,32.0,29.0,33.0,30.0,34.0,40.0,43.0,47.0,53.0,59.0,62.0,64.0,66.0,68.0,70.0,69.0,63.0,55.0,52.0,45.0,41.0,35.0,37.0,38.0,37.0,39.0,41.0,43.0,45.0,55.0,60.0,58.0,55.0,51.0,50.0,48.0,50.0,51.0,53.0,54.0,56.0,56.0,53.0,55.0,57.0,49.0,47.0,50.0,48.0,50.0,48.0,52.0,55.0,53.0,55.0,54.0,54.0,53.0,54.0,54.0,60.0,64.0,61.0,87.0,95.0,99.0,98.0,94.0,86.0,81.0,73.0,60.0,82.0,78.0,94.0,94.0,98.0,94.0,98.0,99.0,88.0,90.0,93.0,92.0,90.0,90.0,90.0,90.0,83.0,75.0,70.0,62.0,52.0,48.0,54.0,53.0,55.0,55.0,56.0,57.0,58.0,62.0,66.0,71.0,70.0,74.0,73.0,74.0,75.0,86.0,92.0,95.0,96.0,97.0,93.0,88.0,87.0,86.0,86.0,78.0,66.0,54.0,54.0,60.0,62.0,65.0,69.0,72.0,76.0,80.0,80.0,83.0,85.0,85.0,86.0,84.0,79.0,75.0,66.0,54.0,53.0,55.0,52.0,49.0,46.0,45.0,43.0,43.0,49.0,62.0,71.0,92.0,89.0,93.0,95.0,90.0,87.0,96.0,100.0,85.0,75.0,68.0,63.0,54.0,55.0,50.0,42.0,42.0,41.0,45.0,46.0,57.0,61.0,76.0,91.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,78.0,58.0,49.0,50.0,51.0,44.0,41.0,39.0,40.0,43.0,52.0,53.0,59.0,75.0,74.0,70.0,72.0,77.0,81.0,86.0,89.0,89.0,85.0,80.0,77.0,70.0,65.0,62.0,62.0,59.0,54.0,61.0,45.0,45.0,58.0,52.0,56.0,65.0,87.0,95.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,83.0,68.0,73.0,71.0,59.0,78.0,85.0,71.0,60.0,57.0,46.0,52.0,53.0,62.0,81.0,95.0,100.0,100.0,99.0,83.0,86.0,93.0,96.0,83.0,72.0,70.0,64.0,60.0,55.0,50.0,49.0,50.0,45.0,47.0,50.0,52.0,53.0,63.0,77.0,70.0,69.0,84.0,93.0,99.0,100.0,100.0,100.0,97.0,75.0,66.0,61.0,58.0,56.0,46.0,42.0,44.0,37.0,36.0,36.0,40.0,47.0,56.0,67.0,78.0,83.0,89.0,91.0,95.0,94.0,95.0,95.0,92.0,86.0,80.0,77.0,68.0,60.0,58.0,54.0,48.0,44.0,48.0,50.0,55.0,56.0,61.0,68.0,82.0,91.0,96.0,97.0,95.0,80.0,86.0,80.0,86.0,80.0,75.0,68.0,66.0,69.0,63.0,58.0,67.0,83.0,70.0,74.0,73.0,80.0,86.0,87.0,82.0,86.0,87.0,90.0,86.0,84.0,84.0,86.0,82.0,72.0,66.0,63.0,58.0,52.0,48.0,46.0,45.0,50.0,48.0,50.0,55.0,60.0,64.0,74.0,84.0,83.0,89.0,90.0,94.0,94.0,95.0,94.0,94.0,92.0,87.0,79.0,73.0,68.0,69.0,67.0,62.0,56.0,51.0,46.0,47.0,50.0,57.0,67.0,77.0,93.0,96.0,97.0,99.0,100.0,100.0,99.0,100.0,82.0,71.0,64.0,56.0,51.0,46.0,40.0,38.0,37.0,36.0,38.0,36.0,40.0,45.0,55.0,61.0,68.0,70.0,75.0,77.0,79.0,80.0,79.0,77.0,72.0,64.0,53.0,47.0,45.0,41.0,39.0,38.0,39.0,40.0,45.0,50.0,50.0,55.0,68.0,60.0,66.0,67.0,71.0,75.0,77.0,78.0,81.0,74.0,70.0,72.0,64.0,66.0,58.0,49.0,45.0,43.0,41.0,41.0,41.0,41.0,58.0,66.0,75.0,83.0,91.0,96.0,99.0,99.0,99.0,98.0,94.0,85.0,94.0,82.0,70.0,58.0,55.0,47.0,47.0,45.0,36.0,39.0,32.0,34.0,35.0,41.0,50.0,54.0,58.0,79.0,89.0,99.0,99.0,99.0,99.0,85.0,55.0,51.0,45.0,40.0,40.0,36.0,36.0,36.0,39.0,39.0,38.0,44.0,49.0,57.0,69.0,77.0,83.0,89.0,97.0,99.0,97.0,96.0,97.0,97.0,92.0,81.0,73.0,67.0,60.0,55.0,51.0,48.0,45.0,43.0,46.0,46.0,46.0,57.0,63.0,70.0,75.0,84.0,86.0,84.0,83.0,85.0,83.0,78.0,73.0,64.0,55.0,50.0,48.0,44.0,41.0,41.0,37.0,35.0,36.0,39.0,36.0,50.0,60.0,66.0,70.0,74.0,81.0,88.0,86.0,84.0,95.0,97.0,95.0,89.0,87.0,86.0,85.0,64.0,60.0,64.0,67.0,73.0,77.0,76.0,81.0,86.0,98.0,99.0,100.0,99.0,99.0,99.0,100.0,99.0,100.0,100.0,96.0,91.0,94.0,85.0,81.0,76.0,68.0,70.0,62.0,60.0,86.0,99.0,96.0,99.0,99.0,99.0,99.0,95.0,95.0,97.0,98.0,99.0,99.0,100.0,97.0,97.0,84.0,87.0,91.0,86.0,81.0,73.0,68.0,64.0,63.0,65.0,68.0,79.0,83.0,87.0,92.0,87.0,88.0,94.0,97.0,98.0,99.0,98.0,96.0,97.0,94.0,93.0,89.0,81.0,69.0,58.0,53.0,51.0,50.0,48.0,54.0,62.0,91.0,97.0,100.0,100.0,100.0,90.0,82.0,84.0,82.0,80.0,79.0,75.0,74.0,64.0,59.0,50.0,47.0,45.0,48.0,47.0,49.0,48.0,54.0,68.0,86.0,95.0,96.0,99.0,99.0,100.0,100.0,99.0,99.0,99.0,75.0,57.0,51.0,50.0,48.0,49.0,74.0,72.0,50.0,51.0,55.0,75.0,82.0,90.0,84.0,95.0,99.0,93.0,97.0,92.0,94.0,96.0,96.0,93.0,89.0,83.0,68.0,61.0,55.0,46.0,50.0,51.0,53.0,94.0,86.0,84.0,77.0,88.0,100.0,100.0,99.0,99.0,100.0,99.0,99.0,100.0,100.0,100.0,90.0,71.0,64.0,57.0,57.0,54.0,50.0,42.0,39.0,40.0,38.0,43.0,50.0,66.0,78.0,79.0,67.0,64.0,63.0,69.0,61.0,65.0,65.0,65.0,67.0,67.0,69.0,67.0,68.0,63.0,67.0,65.0,68.0,67.0,75.0,77.0,73.0,78.0,82.0,81.0,87.0,93.0,98.0,97.0,96.0,100.0,100.0,96.0,96.0,94.0,91.0,88.0,79.0,67.0,61.0,53.0,54.0,50.0,50.0,51.0,51.0,58.0,85.0,100.0,100.0,99.0,100.0,100.0,99.0,100.0,99.0,99.0,86.0,71.0,67.0,59.0,52.0,54.0,59.0,61.0,59.0,61.0,64.0,63.0,66.0,67.0,85.0,94.0,100.0,100.0,99.0,100.0,99.0,94.0,94.0,90.0,81.0,79.0,69.0,68.0,90.0,87.0,96.0,85.0,81.0,76.0,83.0,95.0,92.0,92.0,89.0,93.0,91.0,90.0,90.0,87.0,87.0,87.0,87.0,86.0,84.0,80.0,71.0,68.0,59.0,58.0,57.0,53.0,50.0,50.0,52.0,61.0,68.0,79.0,91.0,92.0,92.0,90.0,86.0,86.0,95.0,94.0,94.0,89.0,88.0,80.0,74.0,73.0,64.0,61.0,69.0,85.0,85.0,87.0,69.0,66.0,71.0,73.0,94.0,90.0,94.0,89.0,91.0,88.0,90.0,94.0,91.0,93.0,94.0,91.0,90.0,94.0,94.0,85.0,76.0,73.0,63.0,68.0,64.0,65.0,72.0,84.0,88.0,89.0,91.0,94.0,93.0,94.0,94.0,94.0,92.0,89.0,88.0,87.0,84.0,78.0,69.0,61.0,54.0,57.0,57.0,56.0,55.0,58.0,63.0,70.0,81.0,88.0,90.0,89.0,91.0,91.0,96.0,95.0,96.0,93.0,88.0,88.0,84.0,97.0,83.0,65.0,66.0,67.0,59.0,55.0,52.0,57.0,59.0,65.0,70.0,77.0,82.0,82.0,81.0,79.0,85.0,95.0,97.0,89.0,75.0,70.0,62.0,63.0,63.0,63.0,68.0,76.0,78.0,72.0,82.0,62.0,66.0,72.0,77.0,82.0,80.0,79.0,74.0,75.0,81.0,81.0,79.0,80.0,80.0,78.0,70.0,71.0,65.0,58.0,74.0,65.0,60.0,66.0,65.0,82.0,73.0,80.0,83.0,94.0,94.0,93.0,94.0,94.0,94.0,95.0,95.0,92.0,94.0,94.0,75.0,68.0,56.0,75.0,56.0,55.0,54.0,57.0,56.0,56.0,56.0,59.0,63.0,68.0,87.0,96.0,89.0,93.0,85.0,78.0,84.0,82.0,77.0,78.0,88.0,85.0,79.0,85.0,90.0,89.0,90.0,96.0,97.0,98.0,99.0,98.0,99.0,99.0,98.0,97.0,98.0,99.0,99.0,99.0,98.0,99.0,98.0,95.0,90.0,87.0,78.0,75.0,64.0,65.0,63.0,62.0,59.0,59.0,60.0,75.0,97.0,99.0,100.0,99.0,100.0,100.0,100.0,95.0,93.0,87.0,78.0,70.0,64.0,60.0,54.0,53.0,50.0,46.0,47.0,45.0,44.0,46.0,52.0,56.0,68.0,68.0,67.0,70.0,70.0,75.0,77.0,81.0,80.0,76.0,70.0,62.0,57.0,52.0,52.0,48.0,47.0,46.0,41.0,43.0,41.0,43.0,44.0,51.0,48.0,85.0,92.0,88.0,85.0,87.0,98.0,97.0,95.0,98.0,93.0,88.0,83.0,84.0,89.0,97.0,94.0,93.0,88.0,85.0,74.0,63.0,60.0,64.0,74.0,79.0,88.0,94.0,96.0,100.0,99.0,100.0,99.0,99.0,88.0,75.0,65.0,55.0,56.0,52.0,58.0,54.0,49.0,71.0,59.0,57.0,70.0,77.0,84.0,89.0,89.0,90.0,90.0,92.0,92.0,91.0,89.0,87.0,88.0,85.0,82.0,74.0,74.0,70.0,66.0,67.0,66.0,66.0,68.0,63.0,66.0,84.0,82.0,94.0,91.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,97.0,82.0,73.0,68.0,64.0,58.0,56.0,55.0,52.0,51.0,49.0,50.0,71.0,75.0,70.0,67.0,69.0,72.0,87.0,82.0,80.0,79.0,88.0,91.0,95.0,96.0,95.0,94.0,89.0,80.0,79.0,72.0,75.0,81.0,75.0,83.0,91.0,91.0,92.0,93.0,96.0,96.0,95.0,94.0,93.0,94.0,97.0,95.0,93.0,91.0,89.0,86.0,87.0,80.0,73.0,67.0,68.0,66.0,67.0,67.0,69.0,77.0,76.0,81.0,81.0,85.0,90.0,97.0,99.0,98.0,97.0,95.0,91.0,86.0,86.0,84.0,81.0,81.0,77.0,79.0,79.0,71.0,67.0,66.0,67.0,86.0,84.0,86.0,88.0,84.0,83.0,82.0,83.0,93.0,96.0,86.0,75.0,72.0,65.0,63.0,63.0,56.0,54.0,53.0,49.0,43.0,43.0,46.0,51.0,59.0,70.0,74.0,80.0,87.0,92.0,95.0,99.0,97.0,99.0,100.0,87.0,74.0,64.0,64.0,56.0,50.0,44.0,46.0,44.0,47.0,43.0,44.0,47.0,62.0,79.0,84.0,86.0,90.0,93.0,93.0,96.0,98.0,99.0,94.0,88.0,81.0,77.0,69.0,65.0,58.0,54.0,54.0,52.0,49.0,51.0,52.0,63.0,65.0,61.0,63.0,72.0,78.0,87.0,92.0,97.0,99.0,99.0,94.0,90.0,79.0,72.0,65.0,49.0,51.0,47.0,43.0,41.0,44.0,52.0,51.0,65.0,67.0,75.0,72.0,92.0,96.0,98.0,99.0,99.0,99.0,100.0,99.0,90.0,93.0,91.0,93.0,84.0,77.0,65.0,63.0,65.0,70.0,69.0,70.0,70.0,72.0,76.0,80.0,84.0,81.0,84.0,87.0,90.0,98.0,97.0,89.0,81.0,74.0,70.0,68.0,68.0,62.0,59.0,57.0,60.0,58.0,56.0,55.0,56.0,66.0,76.0,82.0,89.0,94.0,99.0,99.0,100.0,99.0,100.0,100.0,97.0,84.0,69.0,66.0,67.0,68.0,69.0,75.0,74.0,74.0,77.0,75.0,77.0,79.0,83.0,92.0,84.0,83.0,85.0,88.0,93.0,100.0,100.0,99.0,88.0,71.0,71.0,63.0,61.0,61.0,56.0,58.0,55.0,52.0,54.0,56.0,59.0,69.0,79.0,88.0,95.0,97.0,100.0,100.0,100.0,99.0,96.0,95.0,94.0,94.0,95.0,87.0,85.0,82.0,71.0,66.0,61.0,61.0,59.0,57.0,64.0,72.0,84.0,94.0,99.0,99.0,99.0,100.0,100.0,100.0,99.0,100.0,92.0,79.0,70.0,61.0,57.0,58.0,52.0,52.0,40.0,44.0,39.0,44.0,49.0,58.0,81.0,94.0,99.0,100.0,100.0,99.0,100.0,100.0,100.0,100.0,87.0,71.0,53.0,51.0,51.0,48.0,46.0,44.0,45.0,46.0,46.0,51.0,57.0,64.0,87.0,95.0,99.0,98.0,97.0,93.0,96.0,96.0,96.0,90.0,84.0,77.0,77.0,72.0,65.0,59.0,56.0,55.0,51.0,52.0,54.0,55.0,62.0,71.0,68.0,74.0,80.0,83.0,85.0,88.0,97.0,100.0,99.0,94.0,81.0,76.0,70.0,62.0,56.0,51.0,46.0,44.0,45.0,45.0,46.0,52.0,59.0,66.0,69.0,72.0,76.0,82.0,83.0,87.0,100.0,100.0,100.0,98.0,94.0,81.0,69.0,62.0,59.0,56.0,54.0,51.0,51.0,50.0,56.0,58.0,57.0,65.0,67.0,79.0,85.0,87.0,87.0,89.0,86.0,86.0,88.0,90.0,91.0,94.0,86.0,84.0,70.0,73.0,70.0,63.0,61.0,55.0,53.0,53.0,57.0,76.0,94.0,99.0,95.0,85.0,89.0,100.0,96.0,99.0,100.0,85.0,71.0,63.0,54.0,46.0,40.0,37.0,36.0,33.0,33.0,32.0,31.0,32.0,38.0,59.0,78.0,84.0,83.0,66.0,82.0,86.0,87.0,91.0,94.0,86.0,69.0,65.0,52.0,47.0,44.0,40.0,36.0,35.0,35.0,35.0,35.0,42.0,60.0,74.0,81.0,85.0,61.0,59.0,71.0,83.0,87.0,78.0,83.0,73.0,61.0,50.0,48.0,46.0,37.0,30.0,31.0,31.0,31.0,29.0,36.0,39.0,48.0,50.0,65.0,82.0,87.0,93.0,96.0,96.0,95.0,94.0,92.0,87.0,81.0,79.0,75.0,73.0,86.0,80.0,76.0,71.0,60.0,63.0,57.0,77.0,75.0,78.0,90.0,95.0,100.0,100.0,100.0,99.0,100.0,100.0,100.0,100.0,93.0,78.0,68.0,55.0,51.0,53.0,47.0,50.0,45.0,47.0,55.0,58.0,56.0,62.0,70.0,88.0,91.0,95.0,100.0,99.0,100.0,100.0,100.0,100.0,88.0,76.0,68.0,66.0,64.0,66.0,93.0,96.0,91.0,89.0,76.0,75.0,76.0,92.0,100.0,100.0,99.0,100.0,100.0,99.0,99.0,99.0,100.0,99.0,87.0,83.0,78.0,69.0,67.0,70.0,95.0,98.0,85.0,81.0,71.0,76.0,75.0,91.0,98.0,99.0,98.0,98.0,96.0,96.0,98.0,100.0,99.0,95.0,89.0,85.0,79.0,72.0,65.0,70.0,69.0,58.0,62.0,60.0,67.0,67.0,77.0,84.0,100.0,99.0,99.0,99.0,100.0,100.0,100.0,99.0,100.0,100.0,88.0,80.0,75.0,70.0,65.0,63.0,57.0,56.0,49.0,50.0,55.0,60.0,57.0,61.0,68.0,73.0,93.0,98.0,97.0,85.0,85.0,84.0,88.0,91.0,89.0,84.0,80.0,75.0,64.0,62.0,60.0,61.0,60.0,62.0,70.0,68.0,72.0,74.0,95.0,98.0,97.0,96.0,96.0,95.0,94.0,94.0,96.0,94.0,93.0,91.0,87.0,84.0,79.0,75.0,67.0,69.0,72.0,73.0,75.0,82.0,86.0,86.0,84.0,81.0,78.0,75.0,75.0,76.0,77.0,78.0,78.0,74.0,77.0,77.0,66.0,69.0,60.0,52.0,39.0,45.0,47.0,46.0,47.0,52.0,54.0,78.0,84.0,91.0,91.0,76.0,76.0,75.0,77.0,74.0,86.0,88.0,85.0,90.0,94.0,96.0,92.0,87.0,90.0,95.0,96.0,93.0,88.0,90.0,89.0,90.0,90.0,91.0,96.0,96.0,97.0,97.0,97.0,99.0,98.0,100.0,100.0,84.0,74.0,68.0,63.0,59.0,54.0,70.0,68.0,58.0,58.0,59.0,64.0,87.0,95.0,97.0,97.0,97.0,99.0,99.0,100.0,100.0,100.0,100.0,100.0,76.0,64.0,57.0,42.0,42.0,39.0,37.0,40.0,40.0,38.0,41.0,72.0,80.0,88.0,91.0,94.0,95.0,85.0,74.0,75.0,76.0,75.0,75.0,71.0,65.0,57.0,52.0,46.0,41.0,40.0,39.0,37.0,37.0,39.0,41.0,65.0,76.0,85.0,60.0,60.0,60.0,60.0,62.0,66.0,68.0,68.0,71.0,67.0,62.0,55.0,49.0,43.0,45.0,44.0,41.0,39.0,39.0,40.0,42.0,46.0,72.0,77.0,62.0,61.0,62.0,65.0,67.0,68.0,69.0,69.0,69.0,67.0,64.0,60.0,58.0,54.0,53.0,50.0,45.0,43.0,46.0,44.0,63.0,64.0,72.0,86.0,78.0,86.0,89.0,96.0,95.0,94.0,94.0,94.0,96.0,95.0,95.0,94.0,90.0,87.0,89.0,85.0,87.0,86.0,84.0,82.0,87.0,89.0,90.0,91.0,91.0,93.0,93.0,93.0,93.0,93.0,94.0,93.0,94.0,94.0,93.0,91.0,90.0,86.0,88.0,92.0,89.0,86.0,83.0,81.0,80.0,82.0,89.0,94.0,96.0,98.0,98.0,98.0,99.0,99.0,100.0,100.0,100.0,100.0,98.0,86.0,74.0,73.0,75.0,63.0,57.0,53.0,49.0,57.0,59.0,79.0,88.0,96.0,96.0,96.0,97.0,96.0,97.0,97.0,97.0,97.0,97.0,97.0,96.0,90.0,87.0,93.0,85.0,82.0,77.0,62.0,69.0,67.0,71.0,75.0,80.0,80.0,88.0,90.0,94.0,94.0,91.0,88.0,85.0,83.0,85.0,86.0,85.0,84.0,81.0,84.0,81.0,83.0,86.0,89.0,85.0,84.0,83.0,86.0,89.0,81.0,87.0,90.0,87.0,92.0,96.0,96.0,98.0,98.0,99.0,99.0,98.0,90.0,84.0,76.0,70.0,67.0,63.0,63.0,62.0,61.0,59.0,64.0,69.0,88.0,92.0,97.0,98.0,99.0,98.0,99.0,100.0,99.0,99.0,100.0,95.0,78.0,71.0,61.0,64.0,58.0,51.0,46.0,49.0,51.0,52.0,60.0,75.0,91.0,92.0,91.0,77.0,73.0,71.0,72.0,73.0,73.0,76.0,73.0,68.0,66.0,63.0,57.0,50.0,49.0,47.0,43.0,45.0,46.0,47.0,54.0,58.0,62.0,60.0,76.0,86.0,87.0,83.0,89.0,90.0,91.0,95.0,95.0,92.0,84.0,78.0,70.0,68.0,63.0,60.0,63.0,60.0,58.0,60.0,62.0,72.0,90.0,96.0,97.0,99.0,98.0,99.0,100.0,99.0,100.0,100.0,96.0,93.0,88.0,81.0,77.0,71.0,68.0,69.0,65.0,68.0,67.0,62.0,70.0,78.0,81.0,87.0,97.0,98.0,98.0,95.0,98.0,97.0,97.0,97.0,98.0,90.0,86.0,74.0,68.0,61.0,57.0,61.0,61.0,51.0,52.0,63.0,71.0,81.0,94.0,94.0,88.0,81.0,80.0,78.0,79.0,78.0,78.0,77.0,73.0,64.0,62.0,57.0,55.0,50.0,47.0,41.0,40.0,38.0,45.0,45.0,80.0,85.0,92.0,93.0,97.0,96.0,97.0,71.0,69.0,73.0,72.0,75.0,70.0,67.0,63.0,51.0,52.0,45.0,40.0,37.0,33.0,38.0,41.0,43.0,58.0,64.0,73.0,93.0,94.0,92.0,93.0,90.0,90.0,91.0,88.0,86.0,85.0,86.0,84.0,80.0,72.0,61.0,58.0,49.0,59.0,49.0,54.0,56.0,63.0,73.0,81.0,80.0,83.0,92.0,96.0,94.0,95.0,96.0,96.0,97.0,88.0,82.0,77.0,72.0,60.0,56.0,52.0,52.0,53.0,59.0,58.0,60.0,69.0,88.0,95.0,97.0,98.0,99.0,99.0,100.0,95.0,98.0,99.0,99.0,88.0,77.0,68.0,57.0,50.0,40.0,38.0,36.0,33.0,34.0,34.0,35.0,65.0,67.0,68.0,63.0,65.0,64.0,67.0,66.0,69.0,71.0,73.0,74.0,70.0,66.0,61.0,56.0,53.0,48.0,46.0,43.0,41.0,35.0,39.0,45.0,72.0,76.0,82.0,86.0,85.0,87.0,73.0,82.0,74.0,71.0,84.0,93.0,94.0,93.0,89.0,83.0,84.0,82.0,81.0,81.0,81.0,88.0,85.0,82.0,81.0,83.0,85.0,94.0,97.0,99.0,99.0,99.0,100.0,99.0,99.0,95.0,88.0,78.0,71.0,62.0,58.0,53.0,44.0,40.0,42.0,46.0,45.0,48.0,54.0,72.0,86.0,83.0,68.0,67.0,78.0,91.0,81.0,67.0,72.0,74.0,72.0,70.0,65.0,57.0,52.0,56.0,56.0,60.0,65.0,65.0,68.0,67.0,76.0,90.0,96.0,98.0,93.0,89.0,78.0,85.0,87.0,88.0,81.0,79.0,77.0,76.0,82.0,93.0,81.0,74.0,49.0,39.0,39.0,43.0,48.0,52.0,53.0,62.0,83.0,86.0,88.0,90.0,91.0,85.0,90.0,90.0,92.0,94.0,95.0,91.0,84.0,73.0,65.0,69.0,69.0,72.0,66.0,79.0,63.0,57.0,63.0,71.0,75.0,86.0,76.0,74.0,75.0,76.0,83.0,84.0,87.0,89.0,90.0,88.0,82.0,76.0,67.0,68.0,69.0,64.0,65.0,71.0,66.0,69.0,73.0,86.0,93.0,83.0,89.0,80.0,80.0,79.0,74.0,77.0,77.0,78.0,74.0,71.0,64.0,57.0,53.0,48.0,45.0,44.0,44.0,44.0,45.0,48.0,72.0,70.0,65.0,61.0,59.0,58.0,59.0,60.0,62.0,61.0,59.0,57.0,58.0,55.0,54.0,50.0,47.0,51.0,55.0,69.0,76.0,87.0,93.0,94.0,94.0,94.0,96.0,96.0,96.0,96.0,94.0,87.0,84.0,87.0,88.0,88.0,86.0,84.0,79.0,76.0,70.0,66.0,60.0,58.0,59.0,56.0,57.0,55.0,59.0,69.0,72.0,72.0,73.0,73.0,73.0,75.0,85.0,88.0,92.0,94.0,93.0,91.0,82.0,76.0,72.0,70.0,71.0,62.0,53.0,57.0,55.0,59.0,66.0,91.0,77.0,76.0,75.0,73.0,74.0,78.0,80.0,82.0,82.0,83.0,82.0,81.0,77.0,71.0,64.0,61.0,73.0,65.0,65.0,60.0,57.0,58.0,64.0,73.0,75.0,91.0,95.0,96.0,95.0,94.0,93.0,94.0,95.0,95.0,94.0,89.0,85.0,79.0,86.0,78.0,83.0,72.0,70.0,63.0,65.0,64.0,69.0,77.0,84.0,85.0,83.0,84.0,82.0,82.0,85.0,86.0,85.0,87.0,87.0,86.0,80.0,79.0,73.0,65.0,60.0,64.0,65.0,55.0,64.0,66.0,74.0,90.0,96.0,98.0,99.0,99.0,81.0,80.0,79.0,81.0,84.0,84.0,84.0,78.0,76.0,70.0,65.0,64.0,64.0,55.0,55.0,54.0,55.0,61.0,87.0,93.0,92.0,97.0,93.0,93.0,97.0,99.0,88.0,88.0,88.0,88.0,82.0,76.0,67.0,62.0,55.0,51.0,51.0,47.0,45.0,45.0,42.0,51.0,84.0,92.0,93.0,87.0,65.0,63.0,68.0,72.0,76.0,79.0,80.0,85.0,80.0,76.0,69.0,70.0,71.0,77.0,80.0,76.0,80.0,83.0,83.0,78.0,79.0,81.0,83.0,86.0,89.0,91.0,94.0,92.0,88.0,89.0,89.0,89.0,85.0,84.0,81.0,75.0,72.0,66.0,65.0,62.0,59.0,59.0,57.0,61.0,70.0,85.0,84.0,94.0,92.0,97.0,97.0,99.0,99.0,99.0,100.0,99.0,100.0,100.0,87.0,74.0,70.0,61.0,62.0,67.0,68.0,65.0,67.0,73.0,76.0,83.0,86.0,93.0,97.0,98.0,97.0,96.0,97.0,97.0,99.0,99.0,100.0,100.0,97.0,88.0,78.0,71.0,68.0,62.0,54.0,58.0,65.0,67.0,74.0,81.0,88.0,96.0,98.0,99.0,98.0,99.0,98.0,94.0,96.0,95.0,94.0,92.0,83.0,80.0,79.0,89.0,78.0,90.0,80.0,63.0,66.0,70.0,75.0,78.0,84.0,91.0,89.0,94.0,94.0,85.0,84.0,85.0,86.0,88.0,91.0,88.0,85.0,84.0,81.0,76.0,70.0,65.0,71.0,85.0,74.0,76.0,83.0,85.0,91.0,87.0,87.0,87.0,91.0,94.0,92.0,94.0,94.0,93.0,91.0,95.0,94.0,94.0,94.0,95.0,94.0,92.0,91.0,87.0,84.0,85.0,86.0,93.0,94.0,94.0,92.0,94.0,92.0,91.0,91.0,95.0,96.0,94.0,94.0,94.0,92.0,91.0,88.0,83.0,78.0,74.0,77.0,72.0,70.0,71.0,74.0,74.0,81.0,84.0,86.0,90.0,92.0,95.0,95.0,97.0,98.0,97.0,99.0,87.0,74.0,67.0,61.0,60.0,57.0,62.0,57.0,61.0,64.0,70.0,90.0,96.0,98.0,98.0,98.0,99.0,99.0,99.0,99.0,100.0,99.0,100.0,100.0,96.0,82.0,77.0,70.0,64.0,62.0,56.0,55.0,54.0,61.0,68.0,72.0,73.0,76.0,79.0,81.0,82.0,91.0,94.0,97.0,91.0,95.0,89.0,91.0,77.0,74.0,70.0,66.0,64.0,60.0,55.0,54.0,56.0,65.0,81.0,92.0,95.0,97.0,97.0,99.0,98.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,87.0,81.0,75.0,69.0,72.0,78.0,78.0,78.0,78.0,83.0,90.0,95.0,97.0,98.0,99.0,99.0,99.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,77.0,70.0,63.0,64.0,56.0,60.0,52.0,58.0,82.0,90.0,97.0,98.0,98.0,98.0,99.0,100.0,99.0,89.0,80.0,79.0,82.0,80.0,81.0,75.0,65.0,64.0,60.0,59.0,56.0,56.0,58.0,60.0,63.0,67.0,83.0,95.0,97.0,97.0,96.0,89.0,88.0,90.0,91.0,92.0,93.0,93.0,93.0,92.0,89.0,85.0,77.0,79.0,71.0,63.0,63.0,59.0,67.0,75.0,88.0,92.0,92.0,92.0,94.0,94.0,95.0,95.0,93.0,96.0,97.0,98.0,100.0,76.0,68.0,61.0,58.0,56.0,55.0,56.0,59.0,64.0,67.0,74.0,80.0,88.0,96.0,97.0,98.0,99.0,99.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,94.0,83.0,73.0,67.0,65.0,70.0,68.0,69.0,86.0,94.0,97.0,98.0,98.0,99.0,98.0,99.0,99.0,99.0,100.0,99.0,100.0,100.0,100.0,100.0,79.0,67.0,68.0,62.0,62.0,64.0,67.0,74.0,85.0,96.0,98.0,98.0,98.0,99.0,99.0,100.0,100.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,78.0,70.0,59.0,55.0,57.0,58.0,61.0,67.0,76.0,95.0,98.0,98.0,99.0,100.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,88.0,84.0,78.0,73.0,75.0,76.0,76.0,78.0,77.0,80.0,82.0,84.0,87.0,86.0,86.0,93.0,94.0,92.0,92.0,93.0,95.0,91.0,87.0,85.0,88.0,81.0,81.0,91.0,93.0,96.0,96.0,97.0,96.0,97.0,97.0,97.0,97.0,98.0,99.0,98.0,98.0,98.0,98.0,98.0,99.0,98.0,89.0,85.0,84.0,87.0,94.0,94.0,97.0,97.0,95.0,95.0,95.0,95.0,95.0,96.0,96.0,97.0,98.0,98.0,98.0,98.0,98.0,98.0,98.0,99.0,97.0,79.0,73.0,73.0,65.0,64.0,62.0,70.0,74.0,92.0,92.0,93.0,93.0,95.0,96.0,97.0,98.0,98.0,98.0,98.0,98.0,98.0,99.0,99.0,99.0,99.0,79.0,69.0,65.0,61.0,61.0,66.0,77.0,90.0,94.0,95.0,95.0,96.0,97.0,97.0,97.0,97.0,97.0,97.0,98.0,97.0,98.0,99.0,97.0,79.0,73.0,73.0,65.0,64.0,62.0,70.0,74.0,92.0,93.0,94.0,95.0,96.0,97.0,97.0,97.0,95.0,94.0,91.0,90.0,89.0,88.0,91.0,88.0,87.0,85.0,81.0,85.0,88.0,87.0,88.0,87.0,89.0,88.0,88.0,89.0,91.0,92.0,94.0,94.0,95.0,95.0,95.0,95.0,95.0,96.0,96.0,96.0,96.0,93.0,93.0,89.0,88.0,86.0,86.0,88.0,90.0,93.0,93.0,93.0,94.0,95.0,96.0,98.0,97.0,97.0,94.0,93.0,90.0,88.0,91.0,88.0,87.0,85.0,81.0,85.0,88.0,87.0,88.0,87.0,89.0,91.0,92.0,90.0,87.0,87.0,85.0,85.0,91.0,92.0,91.0,90.0,89.0,91.0,90.0,88.0,86.0,81.0,76.0,72.0,68.0,67.0,66.0,76.0,74.0,81.0,85.0,86.0,87.0,86.0,83.0,82.0,83.0,84.0,84.0,87.0,87.0,87.0,84.0,81.0,81.0,73.0,72.0,69.0,60.0,60.0,58.0,67.0,71.0,75.0,84.0,90.0,91.0,95.0,96.0,96.0,97.0,95.0,96.0,95.0,95.0,96.0,97.0,96.0,87.0,87.0,75.0,67.0,67.0,64.0,66.0,82.0,93.0,97.0,97.0,97.0,98.0,98.0,98.0,99.0,99.0,98.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,79.0,69.0,65.0,61.0,61.0,66.0,77.0,90.0,96.0,97.0,92.0,91.0,96.0,97.0,96.0,96.0,97.0,96.0,96.0,96.0,97.0,97.0,91.0,81.0,69.0,67.0,60.0,58.0,58.0,60.0,62.0,69.0,71.0,76.0,78.0,80.0,83.0,87.0,87.0,81.0,88.0,89.0,89.0,90.0,90.0,89.0,83.0,79.0,73.0,67.0,61.0,53.0,56.0,59.0,63.0,63.0,65.0,66.0,66.0,68.0,68.0,69.0,67.0,68.0,69.0,69.0,67.0,69.0,69.0,68.0,65.0,60.0,58.0,55.0,56.0,53.0,53.0,39.0,54.0,62.0,60.0,64.0,67.0,69.0,75.0,77.0,80.0,82.0,84.0,85.0,86.0,87.0,87.0,85.0,80.0,73.0,73.0,69.0,69.0,71.0,71.0,69.0,76.0,81.0,85.0,86.0,87.0,87.0,87.0,89.0,90.0,90.0,91.0,90.0,88.0,87.0,88.0,86.0,83.0,82.0,84.0,78.0,68.0,66.0,64.0,69.0,73.0,75.0,77.0,79.0,82.0,83.0,86.0,86.0,83.0,86.0,89.0,89.0,93.0,93.0,91.0,89.0,87.0,82.0,75.0,70.0,63.0,60.0,61.0,57.0,74.0,84.0,77.0,87.0,91.0,92.0,95.0,96.0,95.0,96.0,100.0,95.0,96.0,94.0,92.0,91.0,91.0,87.0,84.0,80.0,79.0,76.0,81.0,83.0,84.0,87.0,90.0,89.0,91.0,93.0,93.0,95.0,95.0,95.0,95.0,95.0,95.0,96.0,96.0,96.0,96.0,96.0,93.0,93.0,89.0,88.0,86.0,86.0,88.0,90.0,93.0,93.0,93.0,94.0,93.0,93.0,93.0,92.0,93.0,92.0,93.0,94.0,95.0,93.0,94.0,93.0,92.0,87.0,90.0,81.0,80.0,76.0,82.0,91.0,93.0,95.0,95.0,93.0,93.0,91.0,94.0,95.0,96.0,97.0,98.0,98.0,98.0,98.0,96.0,87.0,81.0,75.0,65.0,55.0,59.0,62.0,71.0,78.0,82.0,84.0,87.0,89.0,90.0,91.0,93.0,93.0,93.0,91.0,92.0,91.0,90.0,88.0,87.0,89.0,94.0,95.0,96.0,96.0,94.0,93.0,91.0,91.0,90.0,90.0,90.0,91.0,96.0,93.0,93.0,91.0,93.0,93.0,90.0,87.0,84.0,68.0,66.0,62.0,62.0,62.0,60.0,61.0,59.0,58.0,63.0,67.0,65.0,66.0,67.0,66.0,66.0,67.0,69.0,73.0,74.0,76.0,78.0,83.0,84.0,85.0,83.0,79.0,74.0,71.0,64.0,64.0,64.0,65.0,69.0,71.0,70.0,72.0,70.0,73.0,76.0,76.0,79.0,80.0,80.0,81.0,89.0,89.0,90.0,93.0,94.0,94.0,93.0,90.0,83.0,81.0,78.0,81.0,82.0,87.0,81.0,74.0,71.0,76.0,78.0,78.0,78.0,77.0,77.0,76.0,78.0,80.0,80.0,82.0,78.0,78.0,76.0,79.0,78.0,77.0,77.0,77.0,73.0,75.0,75.0,77.0,78.0,79.0,80.0,79.0,83.0,82.0,79.0,82.0,82.0,79.0,75.0,75.0,73.0,67.0,72.0,65.0,63.0,66.0,62.0,59.0,61.0,64.0,67.0,66.0,70.0,72.0,75.0,76.0,79.0,83.0,86.0,88.0,91.0,92.0,93.0,94.0,91.0,85.0,79.0,71.0,66.0,66.0,71.0,70.0,77.0,88.0,93.0,95.0,96.0,97.0,97.0,98.0,98.0,98.0,98.0,99.0,99.0,99.0,98.0,99.0,99.0,95.0,87.0,77.0,72.0,76.0,70.0,75.0,78.0,79.0,76.0,79.0,77.0,76.0,78.0,80.0,82.0,84.0,86.0,89.0,92.0,93.0,93.0,93.0,93.0,92.0,90.0,85.0,84.0,83.0,82.0,82.0,86.0,92.0,94.0,95.0,96.0,95.0,97.0,96.0,96.0,95.0,97.0,97.0,95.0,94.0,95.0,97.0,98.0,97.0,95.0,92.0,91.0,90.0,88.0,87.0,93.0,95.0,97.0,97.0,97.0,97.0,98.0,98.0,98.0,99.0,98.0,98.0,99.0,98.0,98.0,98.0,99.0,99.0,98.0,95.0,96.0,97.0,97.0,97.0,97.0,98.0,98.0,98.0,99.0,98.0,98.0,99.0,98.0,98.0,97.0,96.0,95.0,94.0,96.0,96.0,91.0,88.0,83.0,80.0,69.0,63.0,57.0,55.0,64.0,68.0,69.0,71.0,73.0,75.0,76.0,76.0,78.0,73.0,72.0,78.0,80.0,79.0,75.0,77.0,76.0,64.0,65.0,66.0,67.0,78.0,92.0,92.0,85.0,90.0,91.0,93.0,93.0,86.0,86.0,86.0,82.0,82.0,83.0,83.0,87.0,81.0,79.0,79.0,77.0,74.0,73.0,72.0,70.0,66.0,64.0,65.0,68.0,87.0,88.0,94.0,95.0,93.0,95.0,93.0,93.0,95.0,94.0,95.0,95.0,95.0,94.0,91.0,88.0,86.0,84.0,85.0,91.0,91.0,96.0,95.0,88.0,91.0,85.0,83.0,85.0,88.0,90.0,91.0,93.0,93.0,93.0,93.0,94.0,95.0,96.0,96.0,95.0,86.0,79.0,76.0,81.0,83.0,87.0,95.0,97.0,98.0,93.0,82.0,82.0,79.0,80.0,78.0,79.0,77.0,78.0,80.0,82.0,83.0,91.0,93.0,93.0,92.0,91.0,85.0,87.0,79.0,77.0,81.0,87.0,98.0,99.0,100.0,100.0,99.0,96.0,96.0,99.0,97.0,91.0,92.0,95.0,95.0,98.0,100.0,97.0,87.0,78.0,73.0,68.0,69.0,71.0,68.0,68.0,73.0,86.0,95.0,94.0,95.0,97.0,99.0,99.0,99.0,100.0,99.0,98.0,98.0,97.0,97.0,97.0,97.0,98.0,96.0,91.0,87.0,86.0,86.0,82.0,77.0,80.0,80.0,81.0,83.0,82.0,83.0,80.0,79.0,76.0,77.0,79.0,80.0,81.0,84.0,84.0,85.0,93.0,84.0,84.0,82.0,84.0,85.0,87.0,87.0,84.0,85.0,95.0,97.0,97.0,97.0,96.0,95.0,95.0,95.0,95.0,94.0,95.0,95.0,94.0,91.0,88.0,84.0,78.0,74.0,76.0,77.0,77.0,71.0,73.0,75.0,75.0,77.0,80.0,77.0,77.0,89.0,89.0,86.0,86.0,87.0,92.0,87.0,86.0,84.0,86.0,85.0,83.0,81.0,82.0,82.0,85.0,86.0,92.0,92.0,94.0,96.0,94.0,93.0,90.0,82.0,85.0,93.0,95.0,95.0,95.0,94.0,94.0,89.0,85.0,85.0,84.0,82.0,83.0,85.0,95.0,94.0,95.0,94.0,95.0,97.0,95.0,94.0,92.0,91.0,90.0,92.0,91.0,91.0,90.0,91.0,93.0,91.0,91.0,91.0,86.0,84.0,82.0,82.0,88.0,90.0,95.0,93.0,92.0,92.0,89.0,87.0,85.0,84.0,82.0,80.0,79.0,81.0,88.0,91.0,90.0,90.0,88.0,88.0,90.0,89.0,90.0,90.0,91.0,91.0,90.0,89.0,88.0,88.0,87.0,86.0,86.0,85.0,85.0,87.0,85.0,84.0,85.0,87.0,84.0,78.0,71.0,64.0,51.0,52.0,57.0,61.0,79.0,90.0,92.0,100.0,99.0,92.0,88.0,98.0,100.0,98.0,100.0,100.0,100.0,100.0,100.0,99.0,99.0,100.0,95.0,90.0,86.0,84.0,83.0,84.0,87.0,83.0,86.0,86.0,87.0,86.0,88.0,88.0,88.0,87.0,88.0,87.0,87.0,87.0,82.0,81.0,81.0,81.0,80.0,80.0,81.0,81.0,80.0,81.0,81.0,84.0,84.0,92.0,94.0,92.0,93.0,94.0,94.0,94.0,93.0,91.0,91.0,90.0,88.0,87.0,85.0,76.0,71.0,71.0,71.0,73.0,85.0,86.0,89.0,88.0,90.0,93.0,94.0,95.0,95.0,93.0,94.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,99.0,99.0,97.0,97.0,97.0,95.0,95.0,99.0,99.0,99.0,100.0,99.0,100.0,99.0,100.0,100.0,99.0,98.0,100.0,98.0,100.0,100.0,99.0,100.0,100.0,100.0,100.0,91.0,86.0,88.0,90.0,92.0,92.0,91.0,90.0,91.0,92.0,90.0,89.0,90.0,92.0,91.0,93.0,94.0,95.0,92.0,93.0,94.0,86.0,81.0,78.0,75.0,74.0,73.0,76.0,82.0,81.0,77.0,81.0,85.0,86.0,89.0,91.0,95.0,97.0,98.0,99.0,99.0,97.0,98.0,99.0,100.0,94.0,88.0,84.0,82.0,82.0,82.0,83.0,81.0,76.0,80.0,82.0,81.0,80.0,78.0,79.0,88.0,85.0,83.0,85.0,90.0,91.0,93.0,95.0,95.0,91.0,87.0,79.0,75.0,70.0,69.0,70.0,70.0,72.0,74.0,78.0,80.0,82.0,83.0,85.0,87.0,88.0,89.0,89.0,91.0,89.0,88.0,84.0,80.0,76.0,74.0,79.0,89.0,93.0,95.0,95.0,96.0,96.0,97.0,98.0,100.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,99.0,95.0,95.0,95.0,93.0,97.0,97.0,99.0,99.0,98.0,98.0,97.0,97.0,95.0,92.0,88.0,81.0,81.0,74.0,70.0,68.0,69.0,65.0,62.0,58.0,57.0,55.0,58.0,66.0,69.0,69.0,70.0,68.0,71.0,72.0,74.0,80.0,84.0,85.0,87.0,88.0,88.0,87.0,89.0,86.0,75.0,73.0,91.0,95.0,95.0,95.0,97.0,99.0,99.0,96.0,94.0,93.0,87.0,90.0,88.0,88.0,87.0,85.0,85.0,83.0,84.0,83.0,83.0,83.0,81.0,80.0,78.0,79.0,77.0,79.0,80.0,84.0,92.0,97.0,94.0,100.0,99.0,99.0,99.0,100.0,100.0,100.0,100.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,98.0,98.0,99.0,99.0,99.0,99.0,100.0,100.0,99.0,90.0,92.0,84.0,84.0,89.0,91.0,97.0,96.0,94.0,94.0,92.0,92.0,93.0,88.0,85.0,77.0,81.0,80.0,78.0,84.0,89.0,89.0,91.0,92.0,93.0,95.0,97.0,98.0,100.0,100.0,100.0,100.0,100.0,100.0,98.0,98.0,94.0,85.0,92.0,99.0,99.0,100.0,99.0,100.0,100.0,100.0,99.0,97.0,99.0,100.0,100.0,100.0,99.0,98.0,97.0,95.0,95.0,94.0,94.0,93.0,91.0,86.0,86.0,85.0,84.0,84.0,83.0,84.0,90.0,99.0,96.0,96.0,96.0,96.0,97.0,96.0,98.0,97.0,97.0,97.0,94.0,93.0,96.0,94.0,92.0,93.0,88.0,84.0,85.0,86.0,92.0,98.0,99.0,100.0,99.0,100.0,99.0,98.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,98.0,92.0,85.0,83.0,92.0,92.0,93.0,95.0,97.0,97.0,100.0,100.0,99.0,98.0,97.0,94.0,93.0,93.0,92.0,92.0,92.0,94.0,94.0,95.0,94.0,94.0,93.0,91.0,89.0,87.0,92.0,95.0,92.0,91.0,94.0,93.0,91.0,92.0,92.0,94.0,98.0,98.0,99.0,100.0,99.0,97.0,96.0,96.0,98.0,99.0,99.0,88.0,72.0,62.0,62.0,67.0,69.0,75.0,79.0,84.0,94.0,94.0,94.0,91.0,84.0,74.0,78.0,95.0,99.0,98.0,94.0,97.0,96.0,98.0,93.0,93.0,83.0,79.0,78.0,78.0,84.0,86.0,87.0,93.0,92.0,91.0,90.0,84.0,78.0,73.0,74.0,73.0,71.0,70.0,69.0,68.0,66.0,80.0,94.0,98.0,91.0,88.0,83.0,78.0,72.0,74.0,73.0,77.0,74.0,74.0,73.0,78.0,86.0,86.0,89.0,93.0,97.0,97.0,95.0,94.0,93.0,93.0,97.0,92.0,90.0,76.0,73.0,73.0,79.0,85.0,84.0,86.0,86.0,89.0,87.0,83.0,87.0,90.0,91.0,92.0,100.0,99.0,98.0,98.0,99.0,99.0,99.0,99.0,99.0,99.0,95.0,90.0,92.0,91.0,89.0,86.0,93.0,91.0,90.0,90.0,92.0,92.0,92.0,92.0,83.0,81.0,83.0,83.0,88.0,96.0,94.0,96.0,94.0,90.0,83.0,77.0,81.0,83.0,81.0,89.0,85.0,83.0,86.0,91.0,96.0,93.0,94.0,98.0,95.0,91.0,86.0,82.0,84.0,88.0,85.0,80.0,78.0,64.0,66.0,65.0,69.0,73.0,78.0,76.0,79.0,82.0,85.0,83.0,88.0,88.0,88.0,96.0,100.0,99.0,100.0,100.0,99.0,99.0,99.0,99.0,100.0,99.0,100.0,99.0,97.0,92.0,94.0,92.0,87.0,83.0,80.0,81.0,79.0,79.0,79.0,80.0,78.0,82.0,83.0,85.0,84.0,84.0,78.0,76.0,67.0,60.0,65.0,71.0,76.0,76.0,78.0,79.0,79.0,80.0,79.0,78.0,78.0,78.0,93.0,99.0,100.0,100.0,97.0,97.0,96.0,96.0,95.0,92.0,90.0,87.0,87.0,87.0,87.0,91.0,95.0,98.0,97.0,95.0,93.0,92.0,91.0,88.0,86.0,86.0,86.0,87.0,85.0,85.0,85.0,87.0,87.0,83.0,80.0,81.0,81.0,81.0,80.0,79.0,82.0,83.0,88.0,85.0,87.0,92.0,94.0,95.0,93.0,91.0,90.0,94.0,95.0,95.0,93.0,90.0,91.0,91.0,91.0,90.0,91.0,93.0,96.0,97.0,97.0,97.0,96.0,96.0,97.0,97.0,97.0,97.0,97.0,97.0,98.0,99.0,97.0,97.0,96.0,97.0,99.0,97.0,97.0,95.0,93.0,95.0,97.0,96.0,99.0,99.0,98.0,98.0,98.0,97.0,98.0,98.0,97.0,97.0,98.0,98.0,97.0,97.0,99.0,99.0,97.0,97.0,97.0,96.0,96.0,96.0,97.0,99.0,99.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,100.0,97.0,93.0,94.0,95.0,95.0,97.0,96.0,96.0,96.0,96.0,96.0,97.0,96.0,97.0,94.0,98.0,96.0,96.0,93.0,92.0,89.0,85.0,82.0,79.0,77.0,73.0,73.0,74.0,77.0,77.0,78.0,79.0,75.0,76.0,82.0,86.0,91.0,92.0,95.0,97.0,98.0,97.0,98.0,97.0,98.0,98.0,98.0,98.0,98.0,98.0,99.0,100.0,100.0,99.0,99.0,99.0,99.0,99.0,99.0,99.0,100.0,100.0,100.0,99.0,100.0,100.0,98.0,97.0,97.0,96.0,97.0,95.0,93.0,91.0,89.0,95.0,97.0,97.0,95.0,94.0,97.0,97.0,98.0,99.0,99.0,99.0,100.0,100.0,100.0,99.0,98.0,99.0,97.0,98.0,97.0,97.0,91.0,86.0,85.0,84.0,83.0,85.0,85.0,87.0,87.0,88.0,90.0,93.0,97.0,95.0,93.0,93.0,95.0,95.0,93.0,96.0,97.0,97.0,97.0,99.0,99.0,95.0,92.0,89.0,89.0,85.0,76.0,71.0,71.0,75.0,76.0,78.0,83.0,95.0,99.0,98.0,94.0,92.0,98.0,99.0,94.0,93.0,93.0,93.0,93.0,90.0,90.0,83.0,83.0,83.0,82.0,78.0,91.0,91.0,90.0,90.0,90.0,88.0,90.0,89.0,86.0,87.0,89.0,91.0,91.0,91.0,90.0,88.0,91.0,84.0,78.0,82.0,82.0,84.0,90.0,89.0,88.0,90.0,88.0,93.0,90.0,93.0,90.0,87.0,82.0,80.0,83.0,82.0,85.0,86.0,84.0,86.0,86.0,87.0,88.0,99.0,93.0,100.0,100.0,99.0,95.0,83.0,85.0,90.0,90.0,85.0,94.0,99.0,99.0,100.0,92.0,82.0,80.0,75.0,71.0,71.0,80.0,86.0,89.0,93.0,90.0,88.0,95.0,96.0,97.0,97.0,96.0,95.0,95.0,95.0,93.0,92.0,91.0,89.0,89.0,89.0,88.0,84.0,83.0,78.0,75.0,73.0,74.0,76.0,76.0,74.0,72.0,69.0,68.0,69.0,82.0,77.0,77.0,88.0,86.0,85.0,78.0,82.0,88.0,83.0,85.0,80.0,79.0,80.0,78.0,73.0,79.0,74.0,78.0,79.0,86.0,86.0,84.0,84.0,82.0,83.0}','%','This is the Relative Humidity in percent at the time indicated. Valid values range from 0% to 110%. Missing value for this field is 999.'),
('Twenthe Enschede AP','NL','hour','Liquid Precipitation Depth','float',8760,'{0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,1.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.0,4.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,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,6.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,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.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,6.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,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,4.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,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,6.0,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.0,4.0,1.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.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,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,4.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,5.0,5.0,5.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,5.0,4.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,7.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.0,4.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,0.0,0.0,0.0,0.0,0.0,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,4.0,4.0,1.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,6.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.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,5.0,5.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,2.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,1.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,5.0,5.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,6.0,6.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,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.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,5.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.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,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,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,5.0,5.0,5.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,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,7.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,4.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,7.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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}','mm','The amount of liquid precipitation (mm) observed at the indicated time for the period indicated in the liquid precipitation quantity field. If this value is not missing, then it is used and overrides the “precipitation” flag as rainfall. Conversely, if the precipitation flag shows rain and this field is missing or zero, it is set to 1.5 (mm).'),
('Twenthe Enschede AP','NL','hour','Total Sky Cover','int',8760,'{0.0,1.0,9.0,9.0,9.0,3.0,0.0,0.0,0.0,0.0,1.0,9.0,10.0,10.0,10.0,6.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,5.0,3.0,1.0,1.0,5.0,8.0,10.0,1.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,10.0,3.0,10.0,1.0,3.0,3.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,10.0,8.0,10.0,10.0,9.0,4.0,8.0,6.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,8.0,5.0,9.0,9.0,9.0,6.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,10.0,10.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,9.0,10.0,10.0,10.0,9.0,1.0,0.0,10.0,10.0,8.0,10.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,1.0,0.0,0.0,4.0,10.0,5.0,9.0,9.0,8.0,9.0,9.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,3.0,9.0,9.0,10.0,10.0,1.0,3.0,10.0,10.0,10.0,10.0,10.0,4.0,1.0,0.0,1.0,6.0,8.0,5.0,6.0,6.0,9.0,10.0,9.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,8.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,4.0,9.0,5.0,4.0,9.0,9.0,10.0,10.0,10.0,8.0,3.0,1.0,4.0,3.0,5.0,1.0,0.0,3.0,0.0,6.0,8.0,3.0,9.0,8.0,6.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,10.0,4.0,3.0,0.0,4.0,5.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,3.0,1.0,9.0,8.0,5.0,8.0,9.0,9.0,10.0,8.0,8.0,10.0,9.0,9.0,10.0,8.0,6.0,9.0,10.0,10.0,9.0,6.0,5.0,1.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,3.0,0.0,1.0,0.0,0.0,3.0,3.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,5.0,1.0,3.0,0.0,1.0,8.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,6.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,8.0,10.0,10.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,4.0,9.0,10.0,0.0,0.0,0.0,8.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,5.0,8.0,9.0,10.0,1.0,9.0,3.0,3.0,8.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,3.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,9.0,8.0,6.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,4.0,3.0,6.0,4.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,9.0,10.0,9.0,9.0,10.0,9.0,9.0,3.0,6.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,10.0,6.0,6.0,10.0,10.0,9.0,10.0,10.0,8.0,1.0,4.0,10.0,9.0,9.0,9.0,9.0,6.0,8.0,4.0,3.0,8.0,6.0,4.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,8.0,8.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,3.0,1.0,1.0,1.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,10.0,9.0,4.0,9.0,8.0,9.0,0.0,5.0,3.0,5.0,4.0,4.0,0.0,3.0,1.0,5.0,0.0,4.0,10.0,6.0,3.0,1.0,3.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,8.0,7.0,10.0,10.0,9.0,9.0,9.0,8.0,7.0,7.0,6.0,6.0,6.0,7.0,7.0,8.0,7.0,8.0,7.0,9.0,9.0,9.0,7.0,7.0,7.0,7.0,7.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,9.0,8.0,8.0,8.0,8.0,8.0,7.0,8.0,8.0,10.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,5.0,5.0,5.0,6.0,7.0,6.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,4.0,4.0,4.0,4.0,4.0,6.0,6.0,6.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,9.0,8.0,8.0,7.0,8.0,9.0,10.0,10.0,10.0,9.0,8.0,7.0,6.0,6.0,7.0,7.0,8.0,8.0,9.0,9.0,9.0,9.0,10.0,9.0,8.0,7.0,6.0,7.0,7.0,7.0,8.0,9.0,9.0,10.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,10.0,9.0,9.0,8.0,6.0,8.0,10.0,9.0,8.0,7.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0,8.0,9.0,9.0,8.0,7.0,3.0,3.0,3.0,3.0,5.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,9.0,7.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,7.0,7.0,7.0,8.0,8.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,9.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,8.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,5.0,5.0,3.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,7.0,5.0,3.0,3.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,9.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,7.0,7.0,7.0,0.0,3.0,3.0,3.0,3.0,1.0,0.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,6.0,8.0,8.0,7.0,7.0,7.0,6.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,7.0,6.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,8.0,7.0,8.0,7.0,6.0,5.0,8.0,6.0,3.0,4.0,5.0,6.0,7.0,7.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,2.0,3.0,5.0,7.0,8.0,7.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,7.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,3.0,3.0,3.0,3.0,9.0,9.0,9.0,3.0,3.0,3.0,9.0,9.0,3.0,3.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,3.0,5.0,9.0,9.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,3.0,5.0,3.0,3.0,3.0,5.0,5.0,5.0,5.0,5.0,8.0,7.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,7.0,6.0,5.0,7.0,7.0,6.0,6.0,5.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,8.0,9.0,6.0,4.0,1.0,0.0,10.0,10.0,8.0,9.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,6.0,9.0,6.0,6.0,6.0,9.0,3.0,10.0,4.0,5.0,0.0,3.0,6.0,10.0,10.0,9.0,8.0,9.0,4.0,0.0,4.0,0.0,9.0,9.0,8.0,9.0,6.0,4.0,4.0,9.0,10.0,10.0,10.0,9.0,9.0,1.0,1.0,8.0,4.0,1.0,0.0,1.0,1.0,0.0,0.0,5.0,1.0,1.0,1.0,3.0,3.0,4.0,4.0,1.0,3.0,5.0,5.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,9.0,10.0,10.0,3.0,1.0,8.0,10.0,10.0,9.0,1.0,3.0,5.0,6.0,6.0,6.0,9.0,9.0,10.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,1.0,10.0,10.0,1.0,3.0,0.0,9.0,9.0,4.0,6.0,5.0,9.0,1.0,5.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,0.0,3.0,8.0,9.0,10.0,10.0,10.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,1.0,9.0,5.0,6.0,9.0,9.0,9.0,8.0,9.0,10.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,6.0,3.0,5.0,9.0,1.0,1.0,3.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,3.0,10.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,5.0,10.0,9.0,9.0,10.0,9.0,3.0,3.0,0.0,4.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,3.0,10.0,10.0,10.0,10.0,10.0,9.0,4.0,4.0,10.0,6.0,8.0,3.0,0.0,3.0,8.0,1.0,6.0,0.0,10.0,8.0,9.0,1.0,3.0,6.0,6.0,10.0,5.0,6.0,9.0,9.0,8.0,3.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,9.0,10.0,9.0,4.0,9.0,5.0,6.0,9.0,9.0,4.0,9.0,9.0,9.0,1.0,5.0,5.0,10.0,9.0,9.0,10.0,10.0,8.0,10.0,9.0,8.0,10.0,6.0,8.0,10.0,8.0,6.0,10.0,10.0,9.0,6.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,9.0,6.0,4.0,4.0,3.0,3.0,1.0,1.0,0.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,9.0,9.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,6.0,6.0,5.0,6.0,10.0,9.0,9.0,8.0,6.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,3.0,1.0,4.0,1.0,4.0,5.0,9.0,1.0,9.0,5.0,10.0,10.0,9.0,10.0,9.0,8.0,10.0,10.0,10.0,8.0,9.0,10.0,10.0,8.0,9.0,5.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,9.0,10.0,10.0,6.0,0.0,0.0,3.0,10.0,5.0,1.0,1.0,1.0,5.0,9.0,3.0,4.0,9.0,1.0,1.0,8.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,5.0,1.0,0.0,3.0,4.0,4.0,1.0,1.0,4.0,5.0,1.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,4.0,8.0,5.0,9.0,10.0,6.0,6.0,0.0,10.0,9.0,5.0,9.0,6.0,3.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,9.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,4.0,4.0,4.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,1.0,1.0,2.0,2.0,2.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,3.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,6.0,1.0,2.0,4.0,5.0,6.0,8.0,8.0,9.0,5.0,0.0,0.0,0.0,0.0,3.0,3.0,3.0,3.0,6.0,5.0,3.0,3.0,4.0,4.0,5.0,7.0,8.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,2.0,2.0,2.0,3.0,4.0,5.0,8.0,7.0,6.0,5.0,5.0,5.0,4.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,7.0,3.0,3.0,3.0,9.0,9.0,9.0,3.0,9.0,5.0,3.0,3.0,4.0,5.0,4.0,5.0,6.0,6.0,7.0,8.0,8.0,8.0,7.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,4.0,5.0,7.0,8.0,9.0,10.0,9.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,8.0,7.0,5.0,3.0,2.0,2.0,2.0,2.0,4.0,6.0,6.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,8.0,7.0,7.0,7.0,9.0,9.0,8.0,6.0,7.0,7.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,3.0,3.0,9.0,9.0,9.0,9.0,2.0,3.0,3.0,4.0,5.0,7.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,9.0,9.0,9.0,9.0,9.0,3.0,4.0,5.0,5.0,7.0,8.0,9.0,10.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,3.0,3.0,4.0,4.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,8.0,7.0,9.0,9.0,5.0,3.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,4.0,5.0,8.0,6.0,6.0,7.0,7.0,7.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0,7.0,7.0,6.0,7.0,7.0,8.0,8.0,9.0,10.0,8.0,7.0,7.0,8.0,8.0,8.0,8.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,7.0,7.0,6.0,6.0,6.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,5.0,9.0,9.0,5.0,4.0,4.0,5.0,6.0,8.0,9.0,8.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,5.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,6.0,7.0,7.0,9.0,3.0,3.0,0.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,5.0,1.0,1.0,1.0,1.0,3.0,5.0,6.0,7.0,8.0,9.0,10.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,4.0,5.0,4.0,6.0,7.0,8.0,8.0,9.0,9.0,10.0,10.0,8.0,5.0,4.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,4.0,4.0,5.0,6.0,7.0,6.0,6.0,7.0,6.0,5.0,5.0,4.0,3.0,3.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,9.0,9.0,9.0,5.0,5.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,5.0,6.0,7.0,7.0,6.0,6.0,7.0,8.0,3.0,3.0,3.0,5.0,5.0,5.0,9.0,9.0,9.0,9.0,9.0,9.0,6.0,6.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,3.0,5.0,5.0,5.0,5.0,5.0,5.0,3.0,3.0,6.0,7.0,7.0,8.0,8.0,8.0,8.0,9.0,3.0,3.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,3.0,2.0,2.0,3.0,5.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,10.0,10.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,6.0,6.0,8.0,6.0,7.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,7.0,7.0,5.0,6.0,6.0,6.0,6.0,6.0,7.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,10.0,10.0,10.0,9.0,0.0,9.0,4.0,3.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,5.0,6.0,9.0,9.0,10.0,10.0,1.0,5.0,8.0,9.0,10.0,4.0,3.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,5.0,6.0,9.0,9.0,10.0,10.0,1.0,5.0,8.0,9.0,10.0,1.0,4.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,9.0,6.0,10.0,4.0,5.0,3.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,4.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,9.0,6.0,10.0,4.0,5.0,3.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,6.0,9.0,10.0,3.0,10.0,9.0,1.0,4.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,9.0,6.0,10.0,4.0,5.0,3.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,9.0,5.0,3.0,6.0,1.0,5.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,1.0,6.0,4.0,9.0,3.0,1.0,3.0,0.0,1.0,9.0,10.0,9.0,9.0,10.0,9.0,10.0,10.0,9.0,0.0,0.0,6.0,10.0,10.0,1.0,4.0,0.0,0.0,0.0,0.0,1.0,1.0,6.0,4.0,6.0,5.0,6.0,0.0,4.0,3.0,0.0,1.0,3.0,6.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,6.0,4.0,8.0,8.0,4.0,1.0,1.0,4.0,3.0,5.0,9.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,3.0,0.0,4.0,4.0,5.0,9.0,9.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,3.0,9.0,5.0,9.0,1.0,10.0,5.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,5.0,3.0,5.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,9.0,5.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,4.0,8.0,10.0,6.0,10.0,9.0,10.0,9.0,6.0,10.0,6.0,4.0,5.0,0.0,3.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,5.0,3.0,8.0,10.0,9.0,9.0,5.0,8.0,8.0,5.0,3.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,4.0,3.0,1.0,5.0,9.0,6.0,1.0,5.0,3.0,6.0,9.0,10.0,10.0,8.0,3.0,1.0,1.0,5.0,1.0,5.0,9.0,9.0,10.0,5.0,10.0,9.0,10.0,6.0,6.0,9.0,5.0,9.0,9.0,9.0,4.0,10.0,9.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,4.0,5.0,10.0,9.0,3.0,9.0,10.0,1.0,6.0,5.0,1.0,0.0,1.0,6.0,3.0,4.0,4.0,10.0,10.0,10.0,10.0,10.0,9.0,4.0,0.0,0.0,6.0,6.0,3.0,1.0,8.0,9.0,1.0,3.0,9.0,10.0,10.0,10.0,9.0,9.0,10.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,6.0,3.0,10.0,5.0,5.0,10.0,8.0,5.0,1.0,9.0,0.0,1.0,5.0,10.0,9.0,10.0,10.0,6.0,5.0,5.0,9.0,10.0,9.0,8.0,6.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4.0,5.0,6.0,6.0,8.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,6.0,6.0,8.0,6.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,3.0,0.0,1.0,1.0,4.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,4.0,5.0,8.0,10.0,9.0,8.0,4.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,6.0,10.0,9.0,0.0,9.0,1.0,10.0,3.0,5.0,3.0,1.0,1.0,4.0,9.0,4.0,1.0,4.0,9.0,0.0,3.0,1.0,4.0,1.0,0.0,8.0,5.0,3.0,0.0,1.0,9.0,1.0,3.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,3.0,3.0,1.0,1.0,0.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,10.0,10.0,1.0,0.0,8.0,4.0,4.0,1.0,1.0,0.0,1.0,9.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,3.0,0.0,1.0,0.0,5.0,3.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,10.0,9.0,6.0,9.0,9.0,9.0,5.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,6.0,3.0,3.0,9.0,10.0,8.0,9.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,9.0,4.0,1.0,1.0,3.0,0.0,1.0,10.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,6.0,9.0,9.0,5.0,5.0,4.0,3.0,9.0,5.0,8.0,8.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,6.0,9.0,3.0,4.0,9.0,10.0,8.0,10.0,10.0,10.0,10.0,1.0,9.0,8.0,8.0,8.0,6.0,0.0,1.0,1.0,6.0,1.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,6.0,10.0,10.0,10.0,0.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,9.0,4.0,3.0,1.0,1.0,10.0,10.0,9.0,10.0,9.0,9.0,3.0,10.0,0.0,8.0,4.0,4.0,9.0,10.0,10.0,10.0,9.0,10.0,0.0,0.0,0.0,5.0,3.0,8.0,5.0,4.0,4.0,3.0,9.0,3.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,4.0,10.0,9.0,10.0,9.0,10.0,9.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,5.0,1.0,0.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,6.0,8.0,9.0,6.0,8.0,1.0,1.0,1.0,0.0,0.0,8.0,6.0,4.0,3.0,5.0,6.0,6.0,4.0,4.0,1.0,1.0,5.0,8.0,10.0,10.0,10.0,9.0,10.0,6.0,10.0,9.0,9.0,10.0,8.0,10.0,9.0,10.0,10.0,0.0,1.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,8.0,10.0,10.0,10.0,5.0,8.0,8.0,6.0,3.0,1.0,0.0,0.0,9.0,0.0,1.0,1.0,5.0,4.0,4.0,5.0,8.0,8.0,9.0,5.0,6.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,9.0,10.0,9.0,8.0,8.0,3.0,9.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,5.0,6.0,4.0,4.0,9.0,0.0,0.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,8.0,8.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,10.0,10.0,10.0,6.0,9.0,10.0,6.0,6.0,0.0,5.0,4.0,10.0,10.0,5.0,0.0,0.0,8.0,10.0,10.0,10.0,10.0,6.0,9.0,8.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,5.0,4.0,0.0,9.0,6.0,9.0,8.0,9.0,8.0,10.0,10.0,9.0,6.0,4.0,4.0,10.0,3.0,8.0,9.0,8.0,6.0,8.0,5.0,4.0,6.0,10.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,8.0,9.0,9.0,9.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3.0,1.0,1.0,3.0,5.0,1.0,4.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,10.0,4.0,4.0,1.0,5.0,4.0,0.0,4.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,4.0,0.0,0.0,3.0,5.0,9.0,10.0,10.0,10.0,9.0,9.0,1.0,3.0,4.0,4.0,1.0,5.0,6.0,10.0,8.0,10.0,10.0,9.0,8.0,3.0,8.0,3.0,9.0,10.0,9.0,5.0,1.0,3.0,1.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,5.0,9.0,8.0,8.0,10.0,10.0,4.0,3.0,8.0,9.0,8.0,8.0,0.0,4.0,3.0,6.0,10.0,9.0,0.0,10.0,5.0,8.0,9.0,8.0,5.0,6.0,5.0,6.0,9.0,4.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,4.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,4.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,4.0,5.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.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,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,8.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,9.0,8.0,8.0,9.0,9.0,3.0,5.0,9.0,10.0,10.0,10.0,10.0,9.0,6.0,5.0,10.0,10.0,9.0,9.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,6.0,8.0,5.0,1.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,6.0,5.0,5.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,5.0,1.0,8.0,9.0,8.0,10.0,8.0,5.0,9.0,4.0,1.0,6.0,3.0,1.0,4.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,3.0,1.0,1.0,3.0,10.0,3.0,0.0,8.0,10.0,9.0,10.0,10.0,10.0,4.0,9.0,3.0,6.0,1.0,10.0,9.0,8.0,1.0,9.0,8.0,6.0,5.0,9.0,1.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,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,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,1.0,1.0,3.0,4.0,6.0,8.0,9.0,1.0,9.0,3.0,0.0,0.0,0.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.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,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,5.0,0.0,1.0,5.0,3.0,3.0,1.0,0.0,1.0,9.0,0.0,0.0,5.0,8.0,1.0,0.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,8.0,8.0,3.0,10.0,5.0,1.0,5.0,0.0,9.0,9.0,6.0,10.0,10.0,10.0,8.0,10.0,9.0,9.0,9.0,10.0,8.0,4.0,10.0,9.0,10.0,9.0,9.0,9.0,5.0,0.0,0.0,0.0,4.0,4.0,1.0,0.0,1.0,0.0,1.0,1.0,3.0,0.0,3.0,8.0,6.0,9.0,5.0,9.0,3.0,1.0,0.0,4.0,5.0,5.0,8.0,6.0,9.0,1.0,0.0,0.0,10.0,0.0,9.0,5.0,10.0,6.0,8.0,10.0,10.0,10.0,9.0,10.0,10.0,8.0,0.0,3.0,0.0,8.0,5.0,5.0,10.0,9.0,1.0,4.0,0.0,4.0,5.0,6.0,1.0,5.0,9.0,8.0,10.0,10.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,3.0,8.0,8.0,10.0,10.0,5.0,1.0,6.0,9.0,1.0,5.0,9.0,5.0,10.0,10.0,6.0,9.0,9.0,10.0,10.0,8.0,10.0,4.0,0.0,0.0,0.0,0.0,5.0,9.0,10.0,9.0,8.0,1.0,1.0,1.0,3.0,4.0,5.0,8.0,9.0,4.0,8.0,4.0,3.0,9.0,4.0,3.0,5.0,1.0,0.0,0.0,0.0,10.0,10.0,8.0,0.0,9.0,8.0,10.0,10.0,9.0,8.0,9.0,9.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,10.0,10.0,8.0,10.0,9.0,6.0,6.0,10.0,5.0,6.0,6.0,6.0,10.0,10.0,4.0,4.0,3.0,8.0,0.0,6.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,1.0,9.0,0.0,6.0,10.0,9.0,1.0,0.0,0.0,0.0,5.0,4.0,6.0,10.0,10.0,10.0,10.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,4.0,1.0,0.0,0.0,0.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,3.0,6.0,3.0,9.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,5.0,1.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,1.0,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,6.0,3.0,1.0,1.0,6.0,4.0,8.0,4.0,4.0,3.0,9.0,1.0,8.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,8.0,8.0,4.0,6.0,3.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,9.0,8.0,5.0,6.0,3.0,4.0,9.0,10.0,9.0,5.0,8.0,0.0,4.0,10.0,10.0,10.0,10.0,3.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,6.0,8.0,10.0,6.0,6.0,10.0,1.0,1.0,4.0,3.0,5.0,9.0,8.0,10.0,10.0,10.0,8.0,10.0,9.0,3.0,9.0,9.0,9.0,10.0,3.0,1.0,0.0,0.0,0.0,3.0,6.0,0.0,3.0,5.0,10.0,8.0,4.0,0.0,8.0,10.0,9.0,6.0,9.0,6.0,4.0,0.0,3.0,3.0,4.0,0.0,0.0,0.0,0.0,4.0,4.0,5.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,0.0,0.0,10.0,10.0,10.0,10.0,8.0,8.0,8.0,9.0,6.0,9.0,6.0,3.0,6.0,1.0,0.0,4.0,1.0,4.0,5.0,3.0,4.0,4.0,4.0,6.0,10.0,10.0,10.0,10.0,10.0,6.0,8.0,9.0,9.0,5.0,10.0,10.0,8.0,5.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,10.0,9.0,3.0,8.0,9.0,9.0,9.0,9.0,4.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,8.0,8.0,9.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,9.0,9.0,5.0,0.0,3.0,6.0,10.0,10.0,6.0,0.0,10.0,10.0,10.0,8.0,10.0,10.0,3.0,8.0,8.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,8.0,3.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,4.0,4.0,1.0,4.0,1.0,9.0,8.0,9.0,5.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,3.0,3.0,0.0,1.0,0.0,0.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,10.0,10.0,10.0,5.0,10.0,8.0,3.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,6.0,10.0,10.0,9.0,0.0,3.0,1.0,1.0,0.0,1.0,5.0,6.0,0.0,1.0,0.0,3.0,1.0,1.0,1.0,8.0,5.0,6.0,9.0,9.0,10.0,10.0,5.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,10.0,9.0,3.0,1.0,10.0,10.0,9.0,10.0,10.0,10.0,5.0,1.0,3.0,0.0,1.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,3.0,8.0,0.0,4.0,9.0,6.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,10.0,1.0,8.0,9.0,3.0,5.0,4.0,8.0,9.0,9.0,10.0,3.0,9.0,5.0,1.0,0.0,8.0,4.0,8.0,10.0,10.0,8.0,8.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,5.0,5.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,0.0,4.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,8.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,4.0,9.0,8.0,9.0,10.0,5.0,5.0,9.0,9.0,6.0,9.0,9.0,4.0,0.0,8.0,5.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,10.0,9.0,6.0,6.0,9.0,6.0,3.0,8.0,8.0,10.0,9.0,5.0,10.0,9.0,9.0,10.0,5.0,4.0,6.0,6.0,10.0,8.0,8.0,9.0,3.0,10.0,10.0,10.0,6.0,4.0,0.0,4.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,10.0,10.0,10.0,3.0,9.0,6.0,8.0,1.0,6.0,9.0,1.0,0.0,1.0,4.0,0.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,1.0,5.0,10.0,9.0,10.0,10.0,10.0,10.0,4.0,10.0,5.0,3.0,9.0,3.0,9.0,9.0,9.0,8.0,1.0,1.0,4.0,9.0,1.0,9.0,4.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4.0,10.0,8.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,8.0,8.0,6.0,0.0,0.0,0.0,5.0,3.0,6.0,6.0,5.0,9.0,9.0,9.0,9.0,10.0,10.0,1.0,6.0,6.0,5.0,6.0,10.0,9.0,10.0,10.0,10.0,8.0,8.0,8.0,0.0,10.0,8.0,9.0,10.0,10.0,9.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,4.0,9.0,10.0,9.0,10.0,5.0,0.0,0.0,0.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,9.0,5.0,9.0,5.0,1.0,3.0,0.0,0.0,4.0,6.0,5.0,6.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,10.0,10.0,6.0,9.0,8.0,5.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,8.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,5.0,6.0,6.0,6.0,9.0,4.0,8.0,8.0,5.0,4.0,0.0,1.0,4.0,4.0,1.0,6.0,9.0,9.0,5.0,1.0,0.0,0.0,0.0,0.0,3.0,1.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,6.0,9.0,10.0,10.0,1.0,4.0,3.0,4.0,8.0,4.0,10.0,8.0,9.0,10.0,10.0,9.0,0.0,1.0,0.0,3.0,0.0,1.0,9.0,9.0,10.0,10.0,9.0,0.0,0.0,0.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,4.0,0.0,1.0,4.0,4.0,4.0,1.0,5.0,6.0,4.0,3.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,10.0,9.0,9.0,10.0,10.0,10.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,9.0,5.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,3.0,10.0,6.0,0.0,1.0,4.0,1.0,1.0,4.0,9.0,10.0,9.0,10.0,10.0,0.0,0.0,0.0,9.0,1.0,4.0,9.0,5.0,9.0,5.0,5.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,8.0,10.0,9.0,8.0,9.0,9.0,6.0,10.0,10.0,5.0,1.0,0.0,3.0,9.0,3.0,1.0,5.0,1.0,0.0,3.0,0.0,0.0,5.0,6.0,5.0,3.0,1.0,8.0,5.0,9.0,5.0,4.0,6.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,5.0,3.0,0.0,0.0,5.0,10.0,5.0,4.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,8.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,9.0,9.0,9.0,9.0,6.0,6.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,6.0,5.0,4.0,4.0,5.0,7.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,3.0,3.0,3.0,3.0,5.0,5.0,9.0,9.0,9.0,9.0,6.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,5.0,5.0,5.0,5.0,3.0,5.0,8.0,6.0,8.0,8.0,8.0,9.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0,5.0,5.0,9.0,3.0,3.0,5.0,3.0,3.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,3.0,3.0,3.0,5.0,5.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,6.0,5.0,4.0,4.0,5.0,7.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,6.0,5.0,4.0,4.0,4.0,4.0,4.0,6.0,6.0,7.0,7.0,7.0,8.0,9.0,9.0,8.0,9.0,9.0,0.0,0.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,6.0,5.0,5.0,6.0,6.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,3.0,5.0,5.0,7.0,7.0,7.0,8.0,8.0,8.0,3.0,5.0,5.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,5.0,5.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,5.0,5.0,5.0,9.0,9.0,6.0,7.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,5.0,5.0,5.0,9.0,9.0,4.0,6.0,8.0,7.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,8.0,7.0,7.0,7.0,8.0,8.0,8.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,3.0,9.0,5.0,5.0,9.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,5.0,5.0,3.0,3.0,3.0,3.0,5.0,5.0,3.0,3.0,3.0,3.0,5.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,3.0,5.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,10.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,5.0,3.0,0.0,3.0,3.0,3.0,5.0,5.0,3.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,7.0,3.0,5.0,9.0,9.0,9.0,5.0,9.0,9.0,9.0,9.0,9.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,7.0,7.0,7.0,7.0,8.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,8.0,8.0,7.0,8.0,8.0,9.0,8.0,6.0,6.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,6.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,8.0,7.0,8.0,9.0,9.0,3.0,5.0,9.0,9.0,9.0,5.0,9.0,9.0,3.0,4.0,4.0,5.0,5.0,5.0,6.0,6.0,7.0,7.0,7.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,5.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,3.0,5.0,5.0,9.0,9.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,10.0,9.0,5.0,7.0,7.0,8.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,5.0,9.0,9.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,3.0,3.0,9.0,9.0,9.0,9.0,8.0,9.0,5.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,0.0,1.0,10.0,10.0,10.0,9.0,9.0,8.0,10.0,10.0,10.0,9.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,10.0,4.0,1.0,0.0,0.0,10.0,5.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,6.0,1.0,9.0,9.0,4.0,5.0,10.0,10.0,9.0,10.0,9.0,10.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,0.0,9.0,10.0,10.0,10.0,6.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,3.0,0.0,0.0,3.0,0.0,10.0,9.0,1.0,5.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,9.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,8.0,6.0,9.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,5.0,9.0,10.0,10.0,10.0,3.0,0.0,0.0,0.0,0.0,0.0,9.0,8.0,6.0,4.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,0.0,3.0,6.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,4.0,5.0,8.0,9.0,9.0,9.0,9.0,0.0,0.0,0.0,1.0,5.0,0.0,0.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,4.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,0.0,0.0,1.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.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,3.0,0.0,1.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,9.0,5.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,3.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,8.0,1.0,6.0,10.0,10.0,10.0,10.0,9.0,9.0,6.0,1.0,10.0,10.0,10.0,9.0,9.0,4.0,4.0,9.0,9.0,10.0,1.0,4.0,6.0,5.0,8.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,5.0,4.0,8.0,10.0,10.0,3.0,4.0,6.0,9.0,8.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,0.0,8.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,5.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,9.0,8.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,6.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,10.0,10.0,10.0,10.0,10.0,6.0,10.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,0.0,10.0,10.0,8.0,3.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,9.0,3.0,5.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,9.0,1.0,5.0,10.0,0.0,10.0,5.0,0.0,0.0,3.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,9.0,10.0,10.0,8.0,9.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,9.0,5.0,10.0,10.0,10.0,10.0,6.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,8.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,0.0,9.0,8.0,1.0,0.0,0.0,5.0,5.0,1.0,6.0,8.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,9.0,9.0,5.0,10.0,10.0,3.0,0.0,9.0,8.0,9.0,9.0,10.0,9.0,10.0,9.0,10.0,9.0,1.0,3.0,0.0,0.0,0.0,3.0,0.0,5.0,9.0,10.0,6.0,10.0,4.0,10.0,10.0,9.0,4.0,10.0,9.0,9.0,9.0,8.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,5.0,10.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,1.0,6.0,9.0,3.0,0.0,1.0,0.0,1.0,1.0,6.0,1.0,0.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,1.0,6.0,4.0,10.0,9.0,6.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,0.0,0.0,0.0,1.0,3.0,0.0,0.0,6.0,10.0,10.0,10.0,9.0,3.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,6.0,5.0,9.0,6.0,9.0,4.0,0.0,10.0,8.0,9.0,9.0,9.0,10.0,9.0,9.0,10.0,10.0,9.0,8.0,6.0,1.0,9.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,5.0,4.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,9.0,9.0,0.0,5.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,8.0,0.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,1.0,0.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,4.0,6.0,6.0,9.0,10.0,10.0,10.0,4.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,8.0,9.0,5.0,10.0,9.0,10.0,9.0,10.0,10.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,10.0,3.0,3.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,3.0,1.0,10.0,8.0,10.0,3.0,8.0,10.0,4.0,9.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,6.0,9.0,10.0,9.0,5.0,6.0,1.0,9.0,10.0,10.0,10.0,9.0,9.0,8.0,9.0,5.0,10.0,10.0,10.0,10.0,10.0}','tenths','This is the value for total sky cover (tenths of coverage). (i.e. 1 is 1/10 covered. 10 is total coverage). (Amount of sky dome in tenths covered by clouds or obscuring phenomena at the hour indicated at the time indicated.) Minimum value is 0; maximum value is 10; missing value is 99.');