Shubham 10000 commited on
Commit
cb74654
·
1 Parent(s): e5aec04

update to main file

Browse files
src/ai_logo.png ADDED
src/file_manage.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import os
3
+
4
+ SAVE_DIR = 'uploads'
5
+ os.makedirs(SAVE_DIR, exist_ok=True)
6
+
7
+ def upload_csv():
8
+ uploaded_file = st.file_uploader("Choose a CSV file",type="csv")
9
+
10
+ if uploaded_file is not None:
11
+ # Save the uploaded file to a specific directory
12
+ save_path = os.path.join('uploads', uploaded_file.name)
13
+ with open(save_path, 'wb') as f:
14
+ f.write(uploaded_file.getbuffer())
15
+ st.success(f"File {uploaded_file.name} uploaded successfully!")
16
+
17
+ def list_files():
18
+ st.subheader("List of Uploaded Files")
19
+ files = os.listdir('uploads')
20
+ if files:
21
+ for file in files:
22
+ col1, col2 = st.columns([10, 1])
23
+ col1.write(file)
24
+ if col2.button("Delete", key=file):
25
+ os.remove(os.path.join('uploads',file))
26
+ st.success(f'File {file} deleted successfully!')
27
+ st.rerun()
28
+ else:
29
+ st.info("No files uploaded yet.")
30
+
31
+ return files
32
+
33
+
src/mapping/Advertising.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
src/mapping/Dataset09-Employee-salary-prediction.json ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Gender": {
3
+ "Female": 0,
4
+ "Male": 1
5
+ },
6
+ "Education Level": {
7
+ "Bachelor's": 0,
8
+ "Master's": 1,
9
+ "PhD": 2
10
+ },
11
+ "Job Title": {
12
+ "Account Manager": 0,
13
+ "Accountant": 1,
14
+ "Administrative Assistant": 2,
15
+ "Business Analyst": 3,
16
+ "Business Development Manager": 4,
17
+ "Business Intelligence Analyst": 5,
18
+ "CEO": 6,
19
+ "Chief Data Officer": 7,
20
+ "Chief Technology Officer": 8,
21
+ "Content Marketing Manager": 9,
22
+ "Copywriter": 10,
23
+ "Creative Director": 11,
24
+ "Customer Service Manager": 12,
25
+ "Customer Service Rep": 13,
26
+ "Customer Service Representative": 14,
27
+ "Customer Success Manager": 15,
28
+ "Customer Success Rep": 16,
29
+ "Data Analyst": 17,
30
+ "Data Entry Clerk": 18,
31
+ "Data Scientist": 19,
32
+ "Digital Content Producer": 20,
33
+ "Digital Marketing Manager": 21,
34
+ "Director": 22,
35
+ "Director of Business Development": 23,
36
+ "Director of Engineering": 24,
37
+ "Director of Finance": 25,
38
+ "Director of HR": 26,
39
+ "Director of Human Capital": 27,
40
+ "Director of Human Resources": 28,
41
+ "Director of Marketing": 29,
42
+ "Director of Operations": 30,
43
+ "Director of Product Management": 31,
44
+ "Director of Sales": 32,
45
+ "Director of Sales and Marketing": 33,
46
+ "Event Coordinator": 34,
47
+ "Financial Advisor": 35,
48
+ "Financial Analyst": 36,
49
+ "Financial Manager": 37,
50
+ "Graphic Designer": 38,
51
+ "HR Generalist": 39,
52
+ "HR Manager": 40,
53
+ "Help Desk Analyst": 41,
54
+ "Human Resources Director": 42,
55
+ "IT Manager": 43,
56
+ "IT Support": 44,
57
+ "IT Support Specialist": 45,
58
+ "Junior Account Manager": 46,
59
+ "Junior Accountant": 47,
60
+ "Junior Advertising Coordinator": 48,
61
+ "Junior Business Analyst": 49,
62
+ "Junior Business Development Associate": 50,
63
+ "Junior Business Operations Analyst": 51,
64
+ "Junior Copywriter": 52,
65
+ "Junior Customer Support Specialist": 53,
66
+ "Junior Data Analyst": 54,
67
+ "Junior Data Scientist": 55,
68
+ "Junior Designer": 56,
69
+ "Junior Developer": 57,
70
+ "Junior Financial Advisor": 58,
71
+ "Junior Financial Analyst": 59,
72
+ "Junior HR Coordinator": 60,
73
+ "Junior HR Generalist": 61,
74
+ "Junior Marketing Analyst": 62,
75
+ "Junior Marketing Coordinator": 63,
76
+ "Junior Marketing Manager": 64,
77
+ "Junior Marketing Specialist": 65,
78
+ "Junior Operations Analyst": 66,
79
+ "Junior Operations Coordinator": 67,
80
+ "Junior Operations Manager": 68,
81
+ "Junior Product Manager": 69,
82
+ "Junior Project Manager": 70,
83
+ "Junior Recruiter": 71,
84
+ "Junior Research Scientist": 72,
85
+ "Junior Sales Representative": 73,
86
+ "Junior Social Media Manager": 74,
87
+ "Junior Social Media Specialist": 75,
88
+ "Junior Software Developer": 76,
89
+ "Junior Software Engineer": 77,
90
+ "Junior UX Designer": 78,
91
+ "Junior Web Designer": 79,
92
+ "Junior Web Developer": 80,
93
+ "Marketing Analyst": 81,
94
+ "Marketing Coordinator": 82,
95
+ "Marketing Manager": 83,
96
+ "Marketing Specialist": 84,
97
+ "Network Engineer": 85,
98
+ "Office Manager": 86,
99
+ "Operations Analyst": 87,
100
+ "Operations Director": 88,
101
+ "Operations Manager": 89,
102
+ "Principal Engineer": 90,
103
+ "Principal Scientist": 91,
104
+ "Product Designer": 92,
105
+ "Product Manager": 93,
106
+ "Product Marketing Manager": 94,
107
+ "Project Engineer": 95,
108
+ "Project Manager": 96,
109
+ "Public Relations Manager": 97,
110
+ "Recruiter": 98,
111
+ "Research Director": 99,
112
+ "Research Scientist": 100,
113
+ "Sales Associate": 101,
114
+ "Sales Director": 102,
115
+ "Sales Executive": 103,
116
+ "Sales Manager": 104,
117
+ "Sales Operations Manager": 105,
118
+ "Sales Representative": 106,
119
+ "Senior Account Executive": 107,
120
+ "Senior Account Manager": 108,
121
+ "Senior Accountant": 109,
122
+ "Senior Business Analyst": 110,
123
+ "Senior Business Development Manager": 111,
124
+ "Senior Consultant": 112,
125
+ "Senior Data Analyst": 113,
126
+ "Senior Data Engineer": 114,
127
+ "Senior Data Scientist": 115,
128
+ "Senior Engineer": 116,
129
+ "Senior Financial Advisor": 117,
130
+ "Senior Financial Analyst": 118,
131
+ "Senior Financial Manager": 119,
132
+ "Senior Graphic Designer": 120,
133
+ "Senior HR Generalist": 121,
134
+ "Senior HR Manager": 122,
135
+ "Senior HR Specialist": 123,
136
+ "Senior Human Resources Coordinator": 124,
137
+ "Senior Human Resources Manager": 125,
138
+ "Senior Human Resources Specialist": 126,
139
+ "Senior IT Consultant": 127,
140
+ "Senior IT Project Manager": 128,
141
+ "Senior IT Support Specialist": 129,
142
+ "Senior Manager": 130,
143
+ "Senior Marketing Analyst": 131,
144
+ "Senior Marketing Coordinator": 132,
145
+ "Senior Marketing Director": 133,
146
+ "Senior Marketing Manager": 134,
147
+ "Senior Marketing Specialist": 135,
148
+ "Senior Operations Analyst": 136,
149
+ "Senior Operations Coordinator": 137,
150
+ "Senior Operations Manager": 138,
151
+ "Senior Product Designer": 139,
152
+ "Senior Product Development Manager": 140,
153
+ "Senior Product Manager": 141,
154
+ "Senior Product Marketing Manager": 142,
155
+ "Senior Project Coordinator": 143,
156
+ "Senior Project Manager": 144,
157
+ "Senior Quality Assurance Analyst": 145,
158
+ "Senior Research Scientist": 146,
159
+ "Senior Researcher": 147,
160
+ "Senior Sales Manager": 148,
161
+ "Senior Sales Representative": 149,
162
+ "Senior Scientist": 150,
163
+ "Senior Software Architect": 151,
164
+ "Senior Software Developer": 152,
165
+ "Senior Software Engineer": 153,
166
+ "Senior Training Specialist": 154,
167
+ "Senior UX Designer": 155,
168
+ "Social Media Manager": 156,
169
+ "Social Media Specialist": 157,
170
+ "Software Developer": 158,
171
+ "Software Engineer": 159,
172
+ "Software Manager": 160,
173
+ "Software Project Manager": 161,
174
+ "Strategy Consultant": 162,
175
+ "Supply Chain Analyst": 163,
176
+ "Supply Chain Manager": 164,
177
+ "Technical Recruiter": 165,
178
+ "Technical Support Specialist": 166,
179
+ "Technical Writer": 167,
180
+ "Training Specialist": 168,
181
+ "UX Designer": 169,
182
+ "UX Researcher": 170,
183
+ "VP of Finance": 171,
184
+ "VP of Operations": 172,
185
+ "Web Developer": 173
186
+ }
187
+ }
src/mapping/cars_train.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vhigh": {
3
+ "high": 0,
4
+ "low": 1,
5
+ "med": 2,
6
+ "vhigh": 3
7
+ },
8
+ "high": {
9
+ "high": 0,
10
+ "low": 1,
11
+ "med": 2,
12
+ "vhigh": 3
13
+ },
14
+ "3": {
15
+ "2": 0,
16
+ "3": 1,
17
+ "4": 2,
18
+ "5more": 3
19
+ },
20
+ "more": {
21
+ "2": 0,
22
+ "4": 1,
23
+ "more": 2
24
+ },
25
+ "small": {
26
+ "big": 0,
27
+ "med": 1,
28
+ "small": 2
29
+ },
30
+ "low": {
31
+ "high": 0,
32
+ "low": 1,
33
+ "med": 2
34
+ },
35
+ "unacc": {
36
+ "acc": 0,
37
+ "good": 1,
38
+ "unacc": 2,
39
+ "vgood": 3
40
+ }
41
+ }
src/mapping/kidney_disease_dataset.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
src/model_training.py ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+ import os
5
+ import joblib
6
+ import matplotlib.pyplot as plt
7
+ import sklearn
8
+ import seaborn as sns
9
+ from sklearn.model_selection import train_test_split
10
+ from sklearn.metrics import (
11
+ accuracy_score, mean_squared_error, r2_score,
12
+ classification_report, confusion_matrix
13
+ )
14
+ from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor
15
+ from sklearn.tree import DecisionTreeClassifier, DecisionTreeRegressor
16
+ from sklearn.neighbors import KNeighborsClassifier, KNeighborsRegressor
17
+ from sklearn.linear_model import LinearRegression
18
+
19
+ import warnings
20
+ warnings.filterwarnings("ignore")
21
+
22
+ def model_training():
23
+ st.title("Model Training & Evaluation")
24
+
25
+ # Step 1: Load preprocessed data
26
+ files = os.listdir('preprocessed_data') if os.path.exists('preprocessed_data') else []
27
+ if not files:
28
+ st.warning("No preprocessed data found. Please preprocess a file first.")
29
+ return
30
+
31
+ selected_file = st.selectbox("Select a preprocessed CSV file", files)
32
+ df = pd.read_csv(os.path.join('preprocessed_data', selected_file))
33
+ st.write("Data Preview:")
34
+ st.dataframe(df.head())
35
+
36
+ # Step 2: Select target column
37
+ target_column = st.selectbox("Select Target Column", df.columns)
38
+ X = df.drop(columns=[target_column])
39
+ y = df[target_column]
40
+
41
+ # Step 3: Detect problem type
42
+ if y.nunique() <= 20 and y.dtype in ['int64', 'int32']:
43
+ problem_type = "classification"
44
+ st.info("Detected as Classification Problem")
45
+ else:
46
+ problem_type = "regression"
47
+ st.info("Detected as Regression Problem")
48
+
49
+ # Step 4: Train/Test Split
50
+ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
51
+
52
+ # Step 5: Define models
53
+ if problem_type == "classification":
54
+ models = {
55
+ "Random Forest Classifier": RandomForestClassifier(),
56
+ "Decision Tree Classifier": DecisionTreeClassifier(),
57
+ "KNN Classifier": KNeighborsClassifier()
58
+ }
59
+ else:
60
+ models = {
61
+ "Random Forest Regressor": RandomForestRegressor(),
62
+ "Decision Tree Regressor": DecisionTreeRegressor(),
63
+ "KNN Regressor": KNeighborsRegressor(),
64
+ "Linear Regression": LinearRegression()
65
+ }
66
+
67
+ # Step 6: Train, Evaluate, and Display Metrics
68
+ results = []
69
+ for name, model in models.items():
70
+ model.fit(X_train, y_train)
71
+ y_pred = model.predict(X_test)
72
+
73
+ if problem_type == "classification":
74
+ score = (accuracy_score(y_test, y_pred))*100
75
+ else:
76
+ score = (r2_score(y_test, y_pred))*100
77
+
78
+ results.append((name, score, model, y_pred))
79
+
80
+ # Step 7: Show model performance table
81
+ results_df = pd.DataFrame(results, columns=["Model", "Score", "Trained_Model", "Predictions"])
82
+ st.write("Model Performance:")
83
+ st.dataframe(results_df[["Model", "Score"]])
84
+
85
+ # Step 8: Best Model Selection
86
+ best_model_row = results_df.loc[results_df["Score"].idxmax()]
87
+ st.success(f"Best Model: {best_model_row['Model']} with Score: {best_model_row['Score']:.4f}")
88
+ #SHOW NAME OF BEST MODEL
89
+ st.write("Best Model Details:", best_model_row)
90
+ best_model = best_model_row["Trained_Model"]
91
+
92
+
93
+ # Step 9: Detailed Metrics for Best Model
94
+ st.subheader("Detailed Metrics for Best Model")
95
+ best_y_pred = best_model_row["Predictions"]
96
+
97
+ if problem_type == "classification":
98
+ st.write("**Accuracy Score:**", accuracy_score(y_test, best_y_pred))
99
+ st.text("**Classification Report:**")
100
+ st.text(classification_report(y_test, best_y_pred))
101
+
102
+ # Confusion Matrix
103
+ cm = confusion_matrix(y_test, best_y_pred)
104
+ fig, ax = plt.subplots()
105
+ sns.heatmap(cm, annot=True, fmt="d", cmap="Blues", ax=ax)
106
+ ax.set_xlabel("Predicted")
107
+ ax.set_ylabel("Actual")
108
+ st.pyplot(fig)
109
+
110
+ else:
111
+ st.write("**Mean Squared Error:**", np.sqrt(mean_squared_error(y_test, best_y_pred))*100, "%")
112
+ st.write("**R² Score:**", r2_score(y_test, best_y_pred))
113
+
114
+ # Step 10: Save & Download Best Model
115
+ if st.button("Save Best Model"):
116
+ st.write("Saving the best model...")
117
+ st.write(f"Model Name: {best_model_row['Model']}")
118
+ os.makedirs("saved_models", exist_ok=True)
119
+ model_path = f"saved_models/{best_model_row['Model'].replace(' ', '_')}.pkl"
120
+ joblib.dump(best_model_row["Trained_Model"], model_path)
121
+ st.download_button(
122
+ label="Download Model",
123
+ data=open(model_path, "rb").read(),
124
+ file_name=os.path.basename(model_path)
125
+ )
src/preprocessed_data/Advertising.csv ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Unnamed: 0,TV,Radio,Newspaper,Sales
2
+ 1,230.1,37.8,69.2,22.1
3
+ 2,44.5,39.3,45.1,10.4
4
+ 3,17.2,45.9,69.3,9.3
5
+ 4,151.5,41.3,58.5,18.5
6
+ 5,180.8,10.8,58.4,12.9
7
+ 6,8.7,48.9,75.0,7.2
8
+ 7,57.5,32.8,23.5,11.8
9
+ 8,120.2,19.6,11.6,13.2
10
+ 9,8.6,2.1,1.0,4.8
11
+ 10,199.8,2.6,21.2,10.6
12
+ 11,66.1,5.8,24.2,8.6
13
+ 12,214.7,24.0,4.0,17.4
14
+ 13,23.8,35.1,65.9,9.2
15
+ 14,97.5,7.6,7.2,9.7
16
+ 15,204.1,32.9,46.0,19.0
17
+ 16,195.4,47.7,52.9,22.4
18
+ 17,67.8,36.6,114.0,12.5
19
+ 18,281.4,39.6,55.8,24.4
20
+ 19,69.2,20.5,18.3,11.3
21
+ 20,147.3,23.9,19.1,14.6
22
+ 21,218.4,27.7,53.4,18.0
23
+ 22,237.4,5.1,23.5,12.5
24
+ 23,13.2,15.9,49.6,5.6
25
+ 24,228.3,16.9,26.2,15.5
26
+ 25,62.3,12.6,18.3,9.7
27
+ 26,262.9,3.5,19.5,12.0
28
+ 27,142.9,29.3,12.6,15.0
29
+ 28,240.1,16.7,22.9,15.9
30
+ 29,248.8,27.1,22.9,18.9
31
+ 30,70.6,16.0,40.8,10.5
32
+ 31,292.9,28.3,43.2,21.4
33
+ 32,112.9,17.4,38.6,11.9
34
+ 33,97.2,1.5,30.0,9.6
35
+ 34,265.6,20.0,0.3,17.4
36
+ 35,95.7,1.4,7.4,9.5
37
+ 36,290.7,4.1,8.5,12.8
38
+ 37,266.9,43.8,5.0,25.4
39
+ 38,74.7,49.4,45.7,14.7
40
+ 39,43.1,26.7,35.1,10.1
41
+ 40,228.0,37.7,32.0,21.5
42
+ 41,202.5,22.3,31.6,16.6
43
+ 42,177.0,33.4,38.7,17.1
44
+ 43,293.6,27.7,1.8,20.7
45
+ 44,206.9,8.4,26.4,12.9
46
+ 45,25.1,25.7,43.3,8.5
47
+ 46,175.1,22.5,31.5,14.9
48
+ 47,89.7,9.9,35.7,10.6
49
+ 48,239.9,41.5,18.5,23.2
50
+ 49,227.2,15.8,49.9,14.8
51
+ 50,66.9,11.7,36.8,9.7
52
+ 51,199.8,3.1,34.6,11.4
53
+ 52,100.4,9.6,3.6,10.7
54
+ 53,216.4,41.7,39.6,22.6
55
+ 54,182.6,46.2,58.7,21.2
56
+ 55,262.7,28.8,15.9,20.2
57
+ 56,198.9,49.4,60.0,23.7
58
+ 57,7.3,28.1,41.4,5.5
59
+ 58,136.2,19.2,16.6,13.2
60
+ 59,210.8,49.6,37.7,23.8
61
+ 60,210.7,29.5,9.3,18.4
62
+ 61,53.5,2.0,21.4,8.1
63
+ 62,261.3,42.7,54.7,24.2
64
+ 63,239.3,15.5,27.3,15.7
65
+ 64,102.7,29.6,8.4,14.0
66
+ 65,131.1,42.8,28.9,18.0
67
+ 66,69.0,9.3,0.9,9.3
68
+ 67,31.5,24.6,2.2,9.5
69
+ 68,139.3,14.5,10.2,13.4
70
+ 69,237.4,27.5,11.0,18.9
71
+ 70,216.8,43.9,27.2,22.3
72
+ 71,199.1,30.6,38.7,18.3
73
+ 72,109.8,14.3,31.7,12.4
74
+ 73,26.8,33.0,19.3,8.8
75
+ 74,129.4,5.7,31.3,11.0
76
+ 75,213.4,24.6,13.1,17.0
77
+ 76,16.9,43.7,89.4,8.7
78
+ 77,27.5,1.6,20.7,6.9
79
+ 78,120.5,28.5,14.2,14.2
80
+ 79,5.4,29.9,9.4,5.3
81
+ 80,116.0,7.7,23.1,11.0
82
+ 81,76.4,26.7,22.3,11.8
83
+ 82,239.8,4.1,36.9,12.3
84
+ 83,75.3,20.3,32.5,11.3
85
+ 84,68.4,44.5,35.6,13.6
86
+ 85,213.5,43.0,33.8,21.7
87
+ 86,193.2,18.4,65.7,15.2
88
+ 87,76.3,27.5,16.0,12.0
89
+ 88,110.7,40.6,63.2,16.0
90
+ 89,88.3,25.5,73.4,12.9
91
+ 90,109.8,47.8,51.4,16.7
92
+ 91,134.3,4.9,9.3,11.2
93
+ 92,28.6,1.5,33.0,7.3
94
+ 93,217.7,33.5,59.0,19.4
95
+ 94,250.9,36.5,72.3,22.2
96
+ 95,107.4,14.0,10.9,11.5
97
+ 96,163.3,31.6,52.9,16.9
98
+ 97,197.6,3.5,5.9,11.7
99
+ 98,184.9,21.0,22.0,15.5
100
+ 99,289.7,42.3,51.2,25.4
101
+ 100,135.2,41.7,45.9,17.2
102
+ 101,222.4,4.3,49.8,11.7
103
+ 102,296.4,36.3,100.9,23.8
104
+ 103,280.2,10.1,21.4,14.8
105
+ 104,187.9,17.2,17.9,14.7
106
+ 105,238.2,34.3,5.3,20.7
107
+ 106,137.9,46.4,59.0,19.2
108
+ 107,25.0,11.0,29.7,7.2
109
+ 108,90.4,0.3,23.2,8.7
110
+ 109,13.1,0.4,25.6,5.3
111
+ 110,255.4,26.9,5.5,19.8
112
+ 111,225.8,8.2,56.5,13.4
113
+ 112,241.7,38.0,23.2,21.8
114
+ 113,175.7,15.4,2.4,14.1
115
+ 114,209.6,20.6,10.7,15.9
116
+ 115,78.2,46.8,34.5,14.6
117
+ 116,75.1,35.0,52.7,12.6
118
+ 117,139.2,14.3,25.6,12.2
119
+ 118,76.4,0.8,14.8,9.4
120
+ 119,125.7,36.9,79.2,15.9
121
+ 120,19.4,16.0,22.3,6.6
122
+ 121,141.3,26.8,46.2,15.5
123
+ 122,18.8,21.7,50.4,7.0
124
+ 123,224.0,2.4,15.6,11.6
125
+ 124,123.1,34.6,12.4,15.2
126
+ 125,229.5,32.3,74.2,19.7
127
+ 126,87.2,11.8,25.9,10.6
128
+ 127,7.8,38.9,50.6,6.6
129
+ 128,80.2,0.0,9.2,8.8
130
+ 129,220.3,49.0,3.2,24.7
131
+ 130,59.6,12.0,43.1,9.7
132
+ 131,0.7,39.6,8.7,1.6
133
+ 132,265.2,2.9,43.0,12.7
134
+ 133,8.4,27.2,2.1,5.7
135
+ 134,219.8,33.5,45.1,19.6
136
+ 135,36.9,38.6,65.6,10.8
137
+ 136,48.3,47.0,8.5,11.6
138
+ 137,25.6,39.0,9.3,9.5
139
+ 138,273.7,28.9,59.7,20.8
140
+ 139,43.0,25.9,20.5,9.6
141
+ 140,184.9,43.9,1.7,20.7
142
+ 141,73.4,17.0,12.9,10.9
143
+ 142,193.7,35.4,75.6,19.2
144
+ 143,220.5,33.2,37.9,20.1
145
+ 144,104.6,5.7,34.4,10.4
146
+ 145,96.2,14.8,38.9,11.4
147
+ 146,140.3,1.9,9.0,10.3
148
+ 147,240.1,7.3,8.7,13.2
149
+ 148,243.2,49.0,44.3,25.4
150
+ 149,38.0,40.3,11.9,10.9
151
+ 150,44.7,25.8,20.6,10.1
152
+ 151,280.7,13.9,37.0,16.1
153
+ 152,121.0,8.4,48.7,11.6
154
+ 153,197.6,23.3,14.2,16.6
155
+ 154,171.3,39.7,37.7,19.0
156
+ 155,187.8,21.1,9.5,15.6
157
+ 156,4.1,11.6,5.7,3.2
158
+ 157,93.9,43.5,50.5,15.3
159
+ 158,149.8,1.3,24.3,10.1
160
+ 159,11.7,36.9,45.2,7.3
161
+ 160,131.7,18.4,34.6,12.9
162
+ 161,172.5,18.1,30.7,14.4
163
+ 162,85.7,35.8,49.3,13.3
164
+ 163,188.4,18.1,25.6,14.9
165
+ 164,163.5,36.8,7.4,18.0
166
+ 165,117.2,14.7,5.4,11.9
167
+ 166,234.5,3.4,84.8,11.9
168
+ 167,17.9,37.6,21.6,8.0
169
+ 168,206.8,5.2,19.4,12.2
170
+ 169,215.4,23.6,57.6,17.1
171
+ 170,284.3,10.6,6.4,15.0
172
+ 171,50.0,11.6,18.4,8.4
173
+ 172,164.5,20.9,47.4,14.5
174
+ 173,19.6,20.1,17.0,7.6
175
+ 174,168.4,7.1,12.8,11.7
176
+ 175,222.4,3.4,13.1,11.5
177
+ 176,276.9,48.9,41.8,27.0
178
+ 177,248.4,30.2,20.3,20.2
179
+ 178,170.2,7.8,35.2,11.7
180
+ 179,276.7,2.3,23.7,11.8
181
+ 180,165.6,10.0,17.6,12.6
182
+ 181,156.6,2.6,8.3,10.5
183
+ 182,218.5,5.4,27.4,12.2
184
+ 183,56.2,5.7,29.7,8.7
185
+ 184,287.6,43.0,71.8,26.2
186
+ 185,253.8,21.3,30.0,17.6
187
+ 186,205.0,45.1,19.6,22.6
188
+ 187,139.5,2.1,26.6,10.3
189
+ 188,191.1,28.7,18.2,17.3
190
+ 189,286.0,13.9,3.7,15.9
191
+ 190,18.7,12.1,23.4,6.7
192
+ 191,39.5,41.1,5.8,10.8
193
+ 192,75.5,10.8,6.0,9.9
194
+ 193,17.2,4.1,31.6,5.9
195
+ 194,166.8,42.0,3.6,19.6
196
+ 195,149.7,35.6,6.0,17.3
197
+ 196,38.2,3.7,13.8,7.6
198
+ 197,94.2,4.9,8.1,9.7
199
+ 198,177.0,9.3,6.4,12.8
200
+ 199,283.6,42.0,66.2,25.5
201
+ 200,232.1,8.6,8.7,13.4
src/preprocessed_data/Dataset09-Employee-salary-prediction.csv ADDED
@@ -0,0 +1,376 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Age,Gender,Education Level,Job Title,Years of Experience,Salary
2
+ 32.0,1,0,159,5.0,90000.0
3
+ 28.0,0,1,17,3.0,65000.0
4
+ 45.0,1,2,130,15.0,150000.0
5
+ 36.0,0,0,101,7.0,60000.0
6
+ 52.0,1,1,22,20.0,200000.0
7
+ 29.0,1,0,81,2.0,55000.0
8
+ 42.0,0,1,93,12.0,120000.0
9
+ 31.0,1,0,104,4.0,80000.0
10
+ 26.0,0,0,82,1.0,45000.0
11
+ 38.0,1,2,150,10.0,110000.0
12
+ 29.0,1,1,158,3.0,75000.0
13
+ 48.0,0,0,40,18.0,140000.0
14
+ 35.0,1,0,36,6.0,65000.0
15
+ 40.0,0,1,96,14.0,130000.0
16
+ 27.0,1,0,13,2.0,40000.0
17
+ 44.0,1,0,89,16.0,125000.0
18
+ 33.0,0,1,83,7.0,90000.0
19
+ 39.0,1,2,116,12.0,115000.0
20
+ 25.0,0,0,18,0.0,35000.0
21
+ 51.0,1,0,102,22.0,180000.0
22
+ 34.0,0,1,3,5.0,80000.0
23
+ 47.0,1,1,172,19.0,190000.0
24
+ 30.0,1,0,44,2.0,50000.0
25
+ 36.0,0,0,98,9.0,60000.0
26
+ 41.0,1,1,37,13.0,140000.0
27
+ 28.0,0,0,157,3.0,45000.0
28
+ 37.0,0,1,160,11.0,110000.0
29
+ 24.0,1,0,57,1.0,40000.0
30
+ 43.0,0,2,112,15.0,140000.0
31
+ 33.0,1,1,92,6.0,90000.0
32
+ 50.0,1,0,6,25.0,250000.0
33
+ 31.0,0,0,1,4.0,55000.0
34
+ 29.0,1,1,19,3.0,75000.0
35
+ 39.0,0,0,84,10.0,65000.0
36
+ 46.0,1,2,130,20.0,170000.0
37
+ 27.0,1,0,167,2.0,45000.0
38
+ 35.0,0,0,39,7.0,60000.0
39
+ 42.0,1,1,95,14.0,115000.0
40
+ 26.0,0,0,16,1.0,40000.0
41
+ 49.0,1,0,103,21.0,160000.0
42
+ 34.0,0,1,169,5.0,80000.0
43
+ 48.0,1,1,88,18.0,190000.0
44
+ 30.0,1,0,85,3.0,60000.0
45
+ 36.0,0,0,2,8.0,45000.0
46
+ 41.0,1,1,162,13.0,130000.0
47
+ 28.0,0,0,10,2.0,40000.0
48
+ 32.0,1,0,0,5.0,75000.0
49
+ 45.0,0,1,29,16.0,180000.0
50
+ 38.0,1,2,150,11.0,120000.0
51
+ 25.0,1,0,41,0.0,35000.0
52
+ 51.0,0,0,12,22.0,130000.0
53
+ 33.0,1,1,5,7.0,85000.0
54
+ 40.0,0,0,34,12.0,60000.0
55
+ 47.0,1,1,171,19.0,200000.0
56
+ 29.0,0,0,38,3.0,50000.0
57
+ 36.0,1,0,104,9.0,95000.0
58
+ 27.0,0,1,170,2.0,65000.0
59
+ 43.0,1,2,116,17.0,140000.0
60
+ 30.0,0,0,156,4.0,55000.0
61
+ 35.0,1,1,93,7.0,105000.0
62
+ 51.0,0,1,30,23.0,170000.0
63
+ 29.0,1,0,81,3.0,50000.0
64
+ 40.0,0,0,40,12.0,80000.0
65
+ 47.0,1,2,115,21.0,180000.0
66
+ 26.0,1,0,47,1.0,35000.0
67
+ 38.0,0,1,21,10.0,90000.0
68
+ 46.0,1,0,43,19.0,120000.0
69
+ 31.0,0,0,14,5.0,45000.0
70
+ 34.0,1,1,4,8.0,90000.0
71
+ 49.0,0,1,118,18.0,150000.0
72
+ 33.0,1,0,173,6.0,65000.0
73
+ 39.0,0,0,98,11.0,70000.0
74
+ 45.0,1,2,99,16.0,190000.0
75
+ 28.0,1,0,166,2.0,40000.0
76
+ 42.0,0,1,11,14.0,120000.0
77
+ 37.0,1,0,96,10.0,95000.0
78
+ 50.0,0,0,89,22.0,160000.0
79
+ 32.0,1,1,153,6.0,100000.0
80
+ 48.0,0,1,42,20.0,180000.0
81
+ 30.0,0,0,9,3.0,55000.0
82
+ 36.0,1,0,165,8.0,70000.0
83
+ 41.0,0,1,17,13.0,80000.0
84
+ 25.0,1,0,106,0.0,30000.0
85
+ 52.0,1,2,8,24.0,250000.0
86
+ 29.0,0,0,56,2.0,40000.0
87
+ 34.0,0,1,35,10.0,95000.0
88
+ 27.0,1,0,46,2.0,45000.0
89
+ 40.0,0,0,39,15.0,80000.0
90
+ 46.0,1,1,144,21.0,135000.0
91
+ 31.0,0,0,82,6.0,55000.0
92
+ 36.0,1,2,91,11.0,120000.0
93
+ 29.0,0,0,101,3.0,40000.0
94
+ 43.0,1,0,164,18.0,105000.0
95
+ 52.0,0,1,134,25.0,170000.0
96
+ 33.0,1,0,3,7.0,75000.0
97
+ 39.0,0,0,168,12.0,65000.0
98
+ 47.0,1,2,100,22.0,160000.0
99
+ 26.0,1,0,76,1.0,35000.0
100
+ 38.0,0,1,97,10.0,90000.0
101
+ 45.0,1,0,87,20.0,110000.0
102
+ 31.0,0,0,34,5.0,45000.0
103
+ 35.0,1,1,94,8.0,95000.0
104
+ 49.0,0,1,122,19.0,150000.0
105
+ 33.0,1,0,80,5.0,50000.0
106
+ 39.0,0,1,143,13.0,80000.0
107
+ 44.0,1,2,7,16.0,220000.0
108
+ 30.0,0,0,20,3.0,50000.0
109
+ 36.0,1,0,45,7.0,60000.0
110
+ 41.0,0,1,131,14.0,100000.0
111
+ 28.0,1,0,15,2.0,40000.0
112
+ 42.0,0,1,120,15.0,110000.0
113
+ 37.0,1,0,161,9.0,95000.0
114
+ 50.0,0,0,163,22.0,130000.0
115
+ 32.0,1,1,110,6.0,90000.0
116
+ 23.0,0,0,62,0.5,35000.0
117
+ 31.0,1,1,118,6.0,95000.0
118
+ 40.0,0,0,86,15.0,65000.0
119
+ 48.0,1,2,90,20.0,170000.0
120
+ 29.0,0,0,61,3.0,45000.0
121
+ 35.0,1,1,141,10.0,120000.0
122
+ 42.0,0,0,104,17.0,100000.0
123
+ 53.0,1,1,29,25.0,180000.0
124
+ 33.0,0,0,66,5.0,50000.0
125
+ 38.0,1,0,12,11.0,80000.0
126
+ 44.0,0,2,150,16.0,140000.0
127
+ 26.0,1,0,47,2.0,40000.0
128
+ 37.0,0,1,121,9.0,95000.0
129
+ 45.0,1,0,105,18.0,110000.0
130
+ 32.0,0,0,82,4.0,50000.0
131
+ 34.0,1,1,152,8.0,105000.0
132
+ 50.0,0,1,30,21.0,160000.0
133
+ 29.0,1,0,79,3.0,45000.0
134
+ 40.0,0,1,154,12.0,100000.0
135
+ 47.0,1,2,146,22.0,160000.0
136
+ 27.0,1,0,73,1.0,35000.0
137
+ 39.0,0,0,2,10.0,55000.0
138
+ 46.0,1,1,144,19.0,140000.0
139
+ 30.0,0,0,64,4.0,50000.0
140
+ 36.0,1,0,54,7.0,60000.0
141
+ 43.0,0,1,142,14.0,120000.0
142
+ 28.0,1,0,49,2.0,40000.0
143
+ 41.0,0,1,134,13.0,110000.0
144
+ 33.0,1,0,76,5.0,50000.0
145
+ 47.0,1,0,148,20.0,135000.0
146
+ 25.0,0,1,65,1.5,40000.0
147
+ 34.0,1,0,110,8.0,90000.0
148
+ 42.0,0,2,115,16.0,150000.0
149
+ 31.0,1,0,70,4.0,60000.0
150
+ 38.0,0,0,109,10.0,80000.0
151
+ 45.0,1,1,32,19.0,175000.0
152
+ 29.0,0,0,71,3.0,45000.0
153
+ 36.0,1,1,111,11.0,120000.0
154
+ 43.0,0,2,139,18.0,140000.0
155
+ 26.0,1,0,53,2.0,35000.0
156
+ 37.0,0,1,131,9.0,95000.0
157
+ 44.0,1,0,129,14.0,110000.0
158
+ 32.0,0,0,59,5.0,50000.0
159
+ 33.0,1,1,138,7.0,115000.0
160
+ 51.0,0,2,28,23.0,185000.0
161
+ 28.0,1,0,77,2.0,40000.0
162
+ 39.0,0,0,149,12.0,90000.0
163
+ 48.0,1,1,31,21.0,175000.0
164
+ 30.0,0,0,52,3.0,45000.0
165
+ 35.0,1,0,132,7.0,80000.0
166
+ 41.0,0,1,125,13.0,120000.0
167
+ 27.0,1,0,50,1.5,35000.0
168
+ 40.0,0,0,108,14.0,110000.0
169
+ 46.0,1,2,147,18.0,150000.0
170
+ 31.0,0,0,60,4.0,50000.0
171
+ 34.0,1,1,153,9.0,105000.0
172
+ 50.0,0,1,25,20.0,180000.0
173
+ 29.0,1,0,63,2.0,40000.0
174
+ 33.0,1,0,29,2.0,40000.0
175
+ 43.0,1,0,144,16.0,140000.0
176
+ 26.0,0,1,55,1.5,45000.0
177
+ 35.0,1,0,136,7.0,85000.0
178
+ 42.0,0,2,134,18.0,140000.0
179
+ 31.0,1,0,47,4.0,50000.0
180
+ 38.0,0,0,124,10.0,80000.0
181
+ 46.0,1,1,30,20.0,170000.0
182
+ 29.0,0,0,73,2.0,40000.0
183
+ 37.0,1,1,110,9.0,105000.0
184
+ 44.0,0,2,155,15.0,145000.0
185
+ 27.0,1,0,69,2.0,40000.0
186
+ 36.0,0,0,135,8.0,85000.0
187
+ 43.0,1,0,128,14.0,130000.0
188
+ 33.0,0,1,118,6.0,95000.0
189
+ 34.0,1,0,145,9.0,100000.0
190
+ 50.0,0,2,33,22.0,180000.0
191
+ 28.0,1,0,66,1.5,35000.0
192
+ 39.0,0,0,107,12.0,95000.0
193
+ 47.0,1,1,23,19.0,170000.0
194
+ 30.0,0,0,74,3.0,45000.0
195
+ 34.0,1,0,141,7.0,95000.0
196
+ 40.0,0,1,126,13.0,120000.0
197
+ 28.0,1,0,49,2.0,40000.0
198
+ 41.0,0,0,132,11.0,90000.0
199
+ 45.0,1,2,113,17.0,155000.0
200
+ 32.0,0,0,46,5.0,55000.0
201
+ 35.0,1,1,152,9.0,110000.0
202
+ 49.0,0,1,27,21.0,180000.0
203
+ 30.0,1,0,48,3.0,45000.0
204
+ 44.0,1,0,148,16.0,130000.0
205
+ 27.0,0,1,78,1.5,45000.0
206
+ 36.0,1,0,109,7.0,90000.0
207
+ 41.0,0,2,133,17.0,160000.0
208
+ 31.0,1,0,61,4.0,50000.0
209
+ 39.0,0,0,138,10.0,120000.0
210
+ 47.0,1,1,25,20.0,170000.0
211
+ 30.0,0,0,63,2.0,40000.0
212
+ 38.0,1,1,127,9.0,110000.0
213
+ 45.0,0,2,139,15.0,150000.0
214
+ 28.0,1,0,50,2.0,40000.0
215
+ 35.0,0,0,131,8.0,85000.0
216
+ 44.0,1,0,153,14.0,130000.0
217
+ 34.0,0,1,117,6.0,100000.0
218
+ 35.0,1,0,143,9.0,95000.0
219
+ 50.0,0,2,30,22.0,180000.0
220
+ 29.0,1,0,51,1.5,35000.0
221
+ 40.0,0,0,149,12.0,100000.0
222
+ 48.0,1,1,29,19.0,170000.0
223
+ 31.0,0,0,75,3.0,45000.0
224
+ 33.0,1,0,140,7.0,100000.0
225
+ 42.0,0,1,125,13.0,140000.0
226
+ 28.0,1,0,59,2.0,40000.0
227
+ 40.0,0,0,134,11.0,105000.0
228
+ 46.0,1,2,115,18.0,160000.0
229
+ 33.0,0,0,68,5.0,70000.0
230
+ 37.0,1,1,151,9.0,120000.0
231
+ 51.0,0,1,28,21.0,190000.0
232
+ 30.0,1,0,65,3.0,45000.0
233
+ 43.0,1,0,144,15.0,120000.0
234
+ 27.0,0,1,72,1.5,50000.0
235
+ 35.0,1,0,136,8.0,85000.0
236
+ 42.0,0,2,134,13.0,140000.0
237
+ 32.0,1,0,73,3.0,45000.0
238
+ 37.0,0,0,118,9.0,100000.0
239
+ 45.0,1,1,152,16.0,140000.0
240
+ 33.0,0,0,66,5.0,70000.0
241
+ 39.0,1,0,135,10.0,120000.0
242
+ 44.0,0,2,122,18.0,160000.0
243
+ 29.0,1,0,49,1.5,40000.0
244
+ 38.0,0,0,141,10.0,120000.0
245
+ 46.0,1,2,113,19.0,150000.0
246
+ 34.0,0,0,62,6.0,70000.0
247
+ 36.0,1,0,138,8.0,95000.0
248
+ 49.0,0,1,29,21.0,180000.0
249
+ 31.0,1,0,59,3.0,50000.0
250
+ 41.0,0,0,143,11.0,95000.0
251
+ 47.0,1,1,30,20.0,170000.0
252
+ 30.0,0,0,63,2.0,40000.0
253
+ 38.0,1,1,127,9.0,110000.0
254
+ 45.0,0,2,139,15.0,150000.0
255
+ 28.0,1,0,50,2.0,40000.0
256
+ 35.0,0,0,131,8.0,85000.0
257
+ 44.0,1,0,153,14.0,130000.0
258
+ 34.0,0,1,117,6.0,100000.0
259
+ 35.0,1,0,143,9.0,95000.0
260
+ 50.0,0,2,30,22.0,180000.0
261
+ 29.0,1,0,51,1.5,350.0
262
+ 33.0,1,0,29,2.0,40000.0
263
+ 37.0,0,0,119,10.0,120000.0
264
+ 46.0,1,2,115,18.0,160000.0
265
+ 31.0,0,0,63,3.0,50000.0
266
+ 42.0,1,0,138,12.0,110000.0
267
+ 29.0,0,0,73,1.5,40000.0
268
+ 36.0,1,0,135,8.0,95000.0
269
+ 44.0,0,1,123,15.0,140000.0
270
+ 33.0,1,0,68,4.0,60000.0
271
+ 39.0,0,0,132,9.0,110000.0
272
+ 45.0,1,2,114,16.0,150000.0
273
+ 32.0,0,0,64,4.0,60000.0
274
+ 37.0,1,0,118,8.0,90000.0
275
+ 47.0,0,1,29,20.0,180000.0
276
+ 30.0,1,0,49,2.0,40000.0
277
+ 38.0,0,0,144,9.0,120000.0
278
+ 46.0,1,2,113,17.0,160000.0
279
+ 34.0,0,0,59,5.0,70000.0
280
+ 36.0,1,0,141,8.0,95000.0
281
+ 49.0,0,1,30,21.0,180000.0
282
+ 31.0,1,0,66,3.0,50000.0
283
+ 41.0,0,0,143,11.0,95000.0
284
+ 47.0,1,1,29,19.0,170000.0
285
+ 29.0,0,0,50,1.5,35000.0
286
+ 35.0,1,0,119,9.0,100000.0
287
+ 44.0,0,2,139,15.0,150000.0
288
+ 33.0,1,0,49,4.0,60000.0
289
+ 35.0,0,0,131,8.0,85000.0
290
+ 44.0,1,0,153,13.0,130000.0
291
+ 32.0,1,0,69,4.0,65000.0
292
+ 38.0,0,0,110,10.0,110000.0
293
+ 49.0,1,2,30,21.0,180000.0
294
+ 29.0,0,0,65,2.0,40000.0
295
+ 35.0,1,0,111,7.0,90000.0
296
+ 45.0,0,1,122,14.0,140000.0
297
+ 33.0,1,0,59,4.0,60000.0
298
+ 40.0,0,0,134,12.0,130000.0
299
+ 44.0,1,2,115,16.0,160000.0
300
+ 30.0,0,0,67,2.0,40000.0
301
+ 37.0,1,0,131,9.0,100000.0
302
+ 48.0,0,1,26,20.0,180000.0
303
+ 31.0,1,0,70,3.0,55000.0
304
+ 38.0,0,0,137,9.0,120000.0
305
+ 45.0,1,2,114,16.0,150000.0
306
+ 33.0,0,0,64,5.0,70000.0
307
+ 36.0,1,0,110,8.0,95000.0
308
+ 49.0,0,1,29,21.0,180000.0
309
+ 31.0,1,0,66,3.0,50000.0
310
+ 42.0,0,0,144,12.0,120000.0
311
+ 47.0,1,1,29,19.0,170000.0
312
+ 29.0,0,0,50,1.5,35000.0
313
+ 35.0,1,0,119,9.0,100000.0
314
+ 44.0,0,2,139,15.0,150000.0
315
+ 33.0,1,0,49,4.0,60000.0
316
+ 35.0,0,0,131,8.0,85000.0
317
+ 44.0,1,0,153,13.0,130000.0
318
+ 34.0,0,1,117,6.0,80000.0
319
+ 36.0,1,0,135,8.0,95000.0
320
+ 30.0,0,0,60,2.0,40000.0
321
+ 37.0,1,0,111,10.0,120000.0
322
+ 45.0,0,1,134,16.0,160000.0
323
+ 32.0,1,0,58,4.0,65000.0
324
+ 39.0,0,0,144,12.0,130000.0
325
+ 47.0,1,2,24,20.0,180000.0
326
+ 29.0,0,0,62,2.0,40000.0
327
+ 36.0,1,0,138,9.0,100000.0
328
+ 43.0,0,2,115,15.0,150000.0
329
+ 32.0,1,0,63,3.0,55000.0
330
+ 38.0,0,0,110,10.0,110000.0
331
+ 48.0,1,1,29,21.0,180000.0
332
+ 31.0,0,0,50,3.0,50000.0
333
+ 40.0,1,0,118,12.0,130000.0
334
+ 45.0,0,2,155,16.0,160000.0
335
+ 33.0,1,0,69,4.0,60000.0
336
+ 36.0,0,0,134,8.0,95000.0
337
+ 47.0,1,1,30,19.0,170000.0
338
+ 29.0,0,0,70,2.0,40000.0
339
+ 34.0,1,0,137,7.0,90000.0
340
+ 44.0,0,2,110,15.0,150000.0
341
+ 33.0,1,0,65,5.0,70000.0
342
+ 35.0,0,0,119,8.0,90000.0
343
+ 43.0,1,1,29,18.0,170000.0
344
+ 31.0,0,0,59,3.0,50000.0
345
+ 41.0,1,0,141,14.0,150000.0
346
+ 44.0,0,2,114,16.0,160000.0
347
+ 33.0,1,0,49,4.0,60000.0
348
+ 35.0,0,0,131,8.0,85000.0
349
+ 45.0,1,1,24,19.0,180000.0
350
+ 28.0,0,0,68,1.0,35000.0
351
+ 36.0,1,0,111,8.0,110000.0
352
+ 44.0,0,2,115,16.0,160000.0
353
+ 31.0,1,0,63,3.0,55000.0
354
+ 38.0,0,0,110,10.0,110000.0
355
+ 48.0,1,1,29,21.0,180000.0
356
+ 31.0,0,0,50,3.0,50000.0
357
+ 40.0,1,0,118,12.0,130000.0
358
+ 45.0,0,2,155,16.0,160000.0
359
+ 33.0,1,0,69,4.0,60000.0
360
+ 36.0,0,0,134,8.0,95000.0
361
+ 47.0,1,1,30,19.0,170000.0
362
+ 29.0,0,0,70,2.0,40000.0
363
+ 34.0,1,0,137,7.0,90000.0
364
+ 44.0,0,2,110,15.0,150000.0
365
+ 33.0,1,0,65,5.0,70000.0
366
+ 35.0,0,0,119,8.0,90000.0
367
+ 43.0,1,1,29,18.0,170000.0
368
+ 31.0,0,0,59,3.0,50000.0
369
+ 41.0,1,0,141,14.0,150000.0
370
+ 44.0,0,2,114,16.0,160000.0
371
+ 33.0,1,0,49,4.0,60000.0
372
+ 35.0,0,0,131,8.0,85000.0
373
+ 43.0,1,1,30,19.0,170000.0
374
+ 29.0,0,0,70,2.0,40000.0
375
+ 34.0,1,0,137,7.0,90000.0
376
+ 44.0,0,2,110,15.0,150000.0
src/preprocessed_data/cars_train.csv ADDED
@@ -0,0 +1,1382 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ vhigh,high,3,more,small,low,unacc
2
+ 1,3,1,1,2,2,2
3
+ 1,0,3,2,0,1,2
4
+ 0,2,2,0,2,2,2
5
+ 1,1,1,2,0,2,1
6
+ 1,1,0,1,0,0,3
7
+ 1,0,3,2,0,0,3
8
+ 0,2,3,1,2,1,2
9
+ 2,1,1,0,2,1,2
10
+ 3,1,1,1,0,1,2
11
+ 2,3,3,2,1,1,2
12
+ 1,0,3,2,1,2,0
13
+ 2,3,1,1,0,1,2
14
+ 3,3,0,1,0,2,2
15
+ 3,2,3,0,0,2,2
16
+ 2,2,2,2,0,0,3
17
+ 0,2,1,2,2,1,2
18
+ 0,0,0,2,2,1,2
19
+ 1,2,0,1,2,0,1
20
+ 1,1,2,0,1,0,2
21
+ 1,1,2,1,0,2,1
22
+ 3,3,2,2,1,1,2
23
+ 2,0,0,2,2,2,2
24
+ 2,3,3,1,0,1,2
25
+ 2,0,2,2,1,0,0
26
+ 0,2,1,1,0,2,0
27
+ 3,3,1,0,2,0,2
28
+ 1,2,0,2,0,1,2
29
+ 2,3,1,0,1,1,2
30
+ 2,2,0,0,0,1,2
31
+ 0,1,0,0,2,1,2
32
+ 3,1,0,1,2,2,2
33
+ 2,1,1,0,0,0,2
34
+ 1,3,3,2,1,2,0
35
+ 2,3,1,0,0,1,2
36
+ 2,2,3,1,2,2,0
37
+ 1,1,2,1,2,0,1
38
+ 3,0,3,0,2,2,2
39
+ 0,3,0,0,1,1,2
40
+ 1,0,3,1,1,1,2
41
+ 0,2,0,2,2,1,2
42
+ 3,2,2,0,1,2,2
43
+ 1,0,1,2,2,2,0
44
+ 3,2,3,2,0,1,2
45
+ 3,1,1,2,0,1,2
46
+ 1,2,3,1,0,0,3
47
+ 1,3,2,1,1,2,0
48
+ 0,1,3,2,0,0,0
49
+ 0,0,2,2,0,2,0
50
+ 0,1,0,1,0,0,0
51
+ 0,3,0,0,0,0,2
52
+ 1,1,1,1,1,2,0
53
+ 1,0,1,1,1,1,2
54
+ 2,2,1,0,0,2,2
55
+ 2,3,1,2,0,1,2
56
+ 3,1,2,2,0,2,0
57
+ 2,2,3,1,2,0,0
58
+ 3,1,0,1,1,1,2
59
+ 2,3,2,2,1,2,0
60
+ 1,1,3,0,2,1,2
61
+ 1,1,1,1,1,0,1
62
+ 3,1,1,1,0,2,0
63
+ 1,1,3,1,1,1,2
64
+ 0,0,2,1,2,2,2
65
+ 0,0,2,2,1,2,0
66
+ 2,2,1,0,0,0,2
67
+ 3,3,1,1,1,1,2
68
+ 0,2,0,0,0,1,2
69
+ 1,0,0,1,2,0,0
70
+ 1,2,0,2,1,0,1
71
+ 2,3,3,2,2,2,2
72
+ 1,0,2,1,2,0,0
73
+ 1,3,1,2,0,0,0
74
+ 3,0,0,0,1,2,2
75
+ 1,0,1,1,2,2,0
76
+ 1,1,1,0,0,1,2
77
+ 1,0,2,2,2,1,2
78
+ 0,1,1,1,1,1,2
79
+ 3,3,1,0,2,2,2
80
+ 0,2,2,0,1,2,2
81
+ 2,1,2,0,2,1,2
82
+ 0,3,1,2,1,2,2
83
+ 2,3,3,1,1,1,2
84
+ 1,1,1,0,1,1,2
85
+ 0,0,2,2,2,1,2
86
+ 2,0,0,1,0,1,2
87
+ 1,1,0,2,2,1,2
88
+ 2,3,3,1,1,2,0
89
+ 3,1,3,0,0,0,2
90
+ 1,1,0,0,2,2,2
91
+ 2,1,3,1,1,0,3
92
+ 3,0,0,1,2,2,2
93
+ 2,3,3,0,1,2,2
94
+ 2,0,3,1,2,1,2
95
+ 0,2,2,2,1,1,2
96
+ 1,1,3,1,2,2,0
97
+ 2,1,2,2,0,1,2
98
+ 3,0,0,1,0,2,2
99
+ 3,1,0,0,0,0,2
100
+ 0,1,3,1,1,2,0
101
+ 1,0,0,2,0,1,2
102
+ 3,2,3,0,0,1,2
103
+ 3,0,2,1,1,2,2
104
+ 2,2,3,1,1,2,0
105
+ 0,2,1,0,1,2,2
106
+ 3,1,1,2,2,2,2
107
+ 1,1,2,2,1,1,2
108
+ 3,2,3,2,0,0,0
109
+ 2,0,3,0,1,2,2
110
+ 3,1,1,0,1,1,2
111
+ 1,2,1,2,2,2,0
112
+ 1,2,0,2,0,0,3
113
+ 2,0,0,0,1,2,2
114
+ 0,1,3,0,2,2,2
115
+ 2,2,3,0,1,1,2
116
+ 2,1,0,2,2,0,2
117
+ 1,2,1,1,1,0,1
118
+ 3,2,3,0,2,2,2
119
+ 0,0,1,0,1,2,2
120
+ 1,3,0,0,1,2,2
121
+ 3,2,1,0,2,0,2
122
+ 2,3,1,2,2,1,2
123
+ 3,3,3,1,1,2,2
124
+ 2,3,1,2,0,2,0
125
+ 0,0,2,2,0,1,2
126
+ 3,1,2,2,2,0,0
127
+ 3,3,1,1,0,2,2
128
+ 0,2,2,2,2,0,0
129
+ 2,0,2,1,2,1,2
130
+ 3,2,1,0,1,2,2
131
+ 3,2,0,1,1,1,2
132
+ 0,2,3,0,2,0,2
133
+ 0,1,2,2,0,2,0
134
+ 3,3,1,2,2,0,2
135
+ 0,3,3,1,2,0,2
136
+ 1,3,1,0,0,1,2
137
+ 3,0,3,0,1,0,2
138
+ 3,3,2,1,1,0,2
139
+ 0,3,3,1,0,1,2
140
+ 0,0,3,0,2,1,2
141
+ 1,3,1,0,0,0,2
142
+ 1,1,0,1,2,1,2
143
+ 1,1,0,1,2,0,1
144
+ 2,0,2,1,0,1,2
145
+ 1,2,3,0,2,2,2
146
+ 1,0,1,0,1,0,2
147
+ 0,1,0,0,0,0,2
148
+ 0,2,2,0,1,0,2
149
+ 2,0,2,1,0,2,0
150
+ 0,1,3,2,1,0,0
151
+ 1,0,3,0,1,0,2
152
+ 3,3,0,1,2,0,2
153
+ 2,2,2,1,2,1,2
154
+ 2,2,0,1,1,0,0
155
+ 1,1,2,0,0,2,2
156
+ 0,3,2,0,2,1,2
157
+ 3,3,2,2,2,2,2
158
+ 1,1,0,0,2,1,2
159
+ 0,0,0,1,0,1,2
160
+ 2,0,3,2,0,0,0
161
+ 3,2,1,2,2,1,2
162
+ 0,2,1,1,0,0,0
163
+ 3,2,0,0,0,1,2
164
+ 2,1,2,0,2,0,2
165
+ 1,3,3,2,0,0,0
166
+ 1,1,2,0,1,1,2
167
+ 1,0,3,1,0,2,0
168
+ 0,0,1,1,2,1,2
169
+ 0,1,0,2,2,0,2
170
+ 0,2,0,1,1,1,2
171
+ 1,0,2,1,0,0,3
172
+ 0,1,2,2,2,1,2
173
+ 0,2,3,2,0,2,0
174
+ 0,0,1,2,0,0,0
175
+ 1,3,0,2,1,1,2
176
+ 2,3,2,2,2,1,2
177
+ 0,1,1,2,2,0,0
178
+ 0,1,2,1,2,0,0
179
+ 2,1,2,0,2,2,2
180
+ 2,0,2,0,0,0,2
181
+ 2,0,1,0,1,2,2
182
+ 2,2,0,0,2,1,2
183
+ 2,0,2,2,1,2,0
184
+ 2,3,2,2,1,1,2
185
+ 1,1,3,1,2,1,2
186
+ 3,1,3,1,0,2,0
187
+ 0,3,2,1,0,1,2
188
+ 3,2,0,0,0,2,2
189
+ 0,3,2,0,1,1,2
190
+ 2,3,3,0,2,2,2
191
+ 0,1,0,0,0,2,2
192
+ 2,1,2,1,2,2,0
193
+ 0,0,3,1,1,1,2
194
+ 2,3,3,0,1,1,2
195
+ 0,1,1,1,0,1,2
196
+ 1,3,0,0,2,1,2
197
+ 2,3,0,1,0,2,0
198
+ 1,1,0,2,2,2,2
199
+ 3,3,2,2,0,1,2
200
+ 3,0,2,1,0,0,2
201
+ 1,2,1,0,2,2,2
202
+ 0,1,3,0,1,0,2
203
+ 1,0,1,0,1,2,2
204
+ 0,1,0,1,1,2,2
205
+ 2,0,1,1,1,2,2
206
+ 3,0,0,1,1,2,2
207
+ 3,3,2,2,2,1,2
208
+ 0,3,1,2,0,1,2
209
+ 2,1,0,0,1,0,2
210
+ 2,0,0,0,2,2,2
211
+ 0,0,3,1,0,1,2
212
+ 0,0,0,2,0,1,2
213
+ 0,1,0,2,2,1,2
214
+ 0,1,3,1,0,0,0
215
+ 1,0,3,1,1,0,3
216
+ 0,2,0,0,2,2,2
217
+ 2,2,3,0,0,1,2
218
+ 2,3,0,0,0,0,2
219
+ 0,1,1,1,0,0,0
220
+ 1,3,3,2,0,1,2
221
+ 2,1,0,0,1,1,2
222
+ 1,0,2,2,1,2,0
223
+ 1,3,2,0,2,1,2
224
+ 1,3,3,0,1,1,2
225
+ 1,2,2,1,2,1,2
226
+ 1,3,3,1,0,1,2
227
+ 0,0,3,1,0,2,0
228
+ 2,1,0,0,1,2,2
229
+ 1,0,3,2,2,2,0
230
+ 0,0,3,1,2,2,2
231
+ 0,2,0,2,2,2,2
232
+ 0,0,2,2,1,1,2
233
+ 2,0,3,0,2,0,2
234
+ 2,0,0,2,0,1,2
235
+ 3,1,0,0,2,2,2
236
+ 2,0,1,0,0,0,2
237
+ 3,0,1,0,1,2,2
238
+ 3,2,2,0,2,2,2
239
+ 2,2,1,2,0,0,3
240
+ 1,3,3,1,1,0,0
241
+ 1,2,0,1,1,1,2
242
+ 0,2,0,1,2,1,2
243
+ 0,1,3,1,2,1,2
244
+ 1,3,1,2,0,2,0
245
+ 1,0,0,2,0,0,3
246
+ 1,3,3,2,2,1,2
247
+ 0,2,1,2,0,1,2
248
+ 2,1,3,1,2,1,2
249
+ 2,0,2,0,1,2,2
250
+ 0,3,0,1,1,2,2
251
+ 3,1,2,1,2,1,2
252
+ 1,3,2,1,2,1,2
253
+ 1,2,3,0,1,0,2
254
+ 3,2,3,0,0,0,2
255
+ 2,1,0,0,2,0,2
256
+ 0,0,0,2,2,2,2
257
+ 3,3,0,0,1,1,2
258
+ 2,1,1,0,2,2,2
259
+ 2,0,3,1,2,2,2
260
+ 2,0,3,2,1,1,2
261
+ 1,2,0,2,2,0,2
262
+ 0,3,0,1,0,1,2
263
+ 0,1,2,2,1,0,0
264
+ 0,0,1,0,1,0,2
265
+ 0,1,1,1,0,2,0
266
+ 3,3,3,2,1,0,2
267
+ 3,1,1,1,1,1,2
268
+ 0,2,3,1,1,2,0
269
+ 1,1,0,0,0,1,2
270
+ 2,3,2,1,0,0,0
271
+ 1,2,3,2,2,1,2
272
+ 1,1,3,0,2,0,2
273
+ 1,3,2,0,1,1,2
274
+ 2,0,3,1,0,2,0
275
+ 2,1,0,2,2,2,2
276
+ 0,1,1,0,1,1,2
277
+ 1,2,1,0,0,2,2
278
+ 2,2,0,0,1,2,2
279
+ 2,0,3,0,2,1,2
280
+ 2,2,0,2,2,2,2
281
+ 0,3,3,2,2,2,2
282
+ 1,2,2,0,2,2,2
283
+ 1,3,2,2,1,0,0
284
+ 3,3,0,2,1,2,2
285
+ 3,0,2,0,2,0,2
286
+ 0,2,2,2,2,2,2
287
+ 1,0,2,1,0,2,0
288
+ 1,1,2,0,1,2,2
289
+ 2,1,2,0,1,2,2
290
+ 3,1,2,0,1,1,2
291
+ 1,3,3,1,2,1,2
292
+ 2,0,1,2,2,0,0
293
+ 3,0,1,1,0,2,2
294
+ 0,3,3,0,2,2,2
295
+ 0,3,1,0,2,0,2
296
+ 1,1,1,0,2,1,2
297
+ 2,2,0,0,0,0,2
298
+ 3,1,1,1,1,0,0
299
+ 1,1,0,0,1,2,2
300
+ 3,0,2,1,2,2,2
301
+ 2,1,2,1,1,2,1
302
+ 2,3,0,0,0,1,2
303
+ 3,2,0,1,1,2,2
304
+ 2,0,1,0,0,1,2
305
+ 2,2,0,2,2,0,2
306
+ 1,0,0,0,0,2,2
307
+ 1,3,0,1,2,0,0
308
+ 0,2,1,2,1,2,0
309
+ 3,3,2,2,0,0,2
310
+ 1,1,3,2,1,2,1
311
+ 0,3,0,0,0,1,2
312
+ 3,0,1,2,1,2,2
313
+ 0,1,2,0,1,0,2
314
+ 3,0,2,2,0,1,2
315
+ 0,2,0,2,1,1,2
316
+ 0,1,0,2,1,0,0
317
+ 2,2,3,2,2,1,2
318
+ 0,1,3,0,1,1,2
319
+ 2,1,3,2,1,0,3
320
+ 2,3,2,2,1,0,0
321
+ 2,1,2,1,1,1,2
322
+ 3,0,2,1,0,1,2
323
+ 2,3,2,2,0,1,2
324
+ 2,2,3,0,2,1,2
325
+ 1,0,2,0,2,0,2
326
+ 1,1,3,2,2,2,0
327
+ 2,2,3,0,2,0,2
328
+ 0,1,2,2,1,1,2
329
+ 0,1,2,1,2,1,2
330
+ 2,1,2,0,0,1,2
331
+ 0,1,2,2,1,2,0
332
+ 1,3,0,0,0,0,2
333
+ 3,1,0,1,0,0,0
334
+ 2,0,1,2,1,0,0
335
+ 1,0,3,0,0,1,2
336
+ 0,3,1,2,1,0,2
337
+ 0,1,2,1,1,0,0
338
+ 2,2,1,0,1,0,2
339
+ 0,3,2,1,1,1,2
340
+ 3,1,3,2,0,0,0
341
+ 2,1,1,1,0,0,3
342
+ 3,2,3,0,1,1,2
343
+ 1,3,1,1,2,1,2
344
+ 2,3,0,2,1,2,2
345
+ 3,2,2,1,1,1,2
346
+ 3,1,1,0,0,2,2
347
+ 2,1,2,1,0,0,3
348
+ 3,3,1,2,0,2,2
349
+ 1,3,3,1,1,1,2
350
+ 0,1,2,2,2,2,2
351
+ 1,2,3,2,0,2,1
352
+ 2,2,1,1,2,0,0
353
+ 1,1,3,1,1,2,1
354
+ 0,3,1,0,0,0,2
355
+ 2,3,3,0,0,2,2
356
+ 3,1,3,0,0,1,2
357
+ 0,2,1,0,1,1,2
358
+ 1,2,2,0,0,1,2
359
+ 1,3,0,0,0,2,2
360
+ 3,1,1,2,1,2,0
361
+ 3,3,0,2,2,0,2
362
+ 3,0,1,1,0,0,2
363
+ 2,1,2,0,1,0,2
364
+ 2,2,0,0,0,2,2
365
+ 3,3,1,1,1,0,2
366
+ 2,2,0,0,2,2,2
367
+ 1,0,2,0,0,0,2
368
+ 1,3,0,1,1,2,2
369
+ 1,2,3,0,0,1,2
370
+ 0,1,1,1,2,1,2
371
+ 2,0,2,0,2,1,2
372
+ 3,2,2,1,2,2,2
373
+ 0,3,2,1,2,1,2
374
+ 3,0,2,1,2,0,2
375
+ 2,2,2,0,1,1,2
376
+ 2,3,1,2,2,2,2
377
+ 0,0,0,1,2,2,2
378
+ 0,3,0,0,0,2,2
379
+ 3,3,1,2,0,1,2
380
+ 2,1,0,1,2,0,1
381
+ 3,1,3,2,2,0,0
382
+ 1,0,1,0,0,0,2
383
+ 0,2,3,0,1,0,2
384
+ 3,2,0,0,0,0,2
385
+ 1,1,3,2,0,2,1
386
+ 3,2,2,2,0,1,2
387
+ 0,0,3,0,1,2,2
388
+ 0,3,3,2,0,2,2
389
+ 1,2,3,0,1,2,2
390
+ 2,2,3,1,0,0,3
391
+ 2,0,1,0,2,1,2
392
+ 3,3,1,0,1,1,2
393
+ 3,0,3,1,0,1,2
394
+ 1,1,3,0,0,0,2
395
+ 3,0,2,2,2,1,2
396
+ 0,0,3,2,0,0,0
397
+ 0,2,0,2,0,1,2
398
+ 3,1,3,1,0,1,2
399
+ 3,0,3,1,2,2,2
400
+ 0,1,3,0,0,0,2
401
+ 3,0,0,1,1,0,2
402
+ 0,3,2,1,2,2,2
403
+ 0,3,3,1,1,1,2
404
+ 1,2,3,1,2,1,2
405
+ 3,0,3,2,0,1,2
406
+ 2,3,2,0,0,1,2
407
+ 1,2,1,2,0,1,2
408
+ 3,2,1,1,1,1,2
409
+ 2,0,1,1,2,2,2
410
+ 3,3,3,2,0,2,2
411
+ 2,3,0,1,2,2,2
412
+ 0,1,0,0,2,0,2
413
+ 2,3,3,0,0,0,2
414
+ 1,2,0,2,2,1,2
415
+ 2,3,1,1,1,2,2
416
+ 0,2,1,1,1,2,2
417
+ 1,1,1,2,2,0,1
418
+ 2,1,0,1,1,1,2
419
+ 2,2,3,2,1,0,3
420
+ 2,1,0,1,1,2,0
421
+ 3,1,1,2,1,0,0
422
+ 3,3,0,0,0,1,2
423
+ 2,1,0,1,0,1,2
424
+ 3,2,0,1,2,2,2
425
+ 3,1,2,2,2,2,2
426
+ 0,3,0,0,1,0,2
427
+ 3,1,3,1,1,0,0
428
+ 3,0,3,0,0,2,2
429
+ 0,3,3,0,0,2,2
430
+ 3,1,2,0,2,1,2
431
+ 1,3,2,0,2,0,2
432
+ 1,0,1,0,2,0,2
433
+ 0,0,2,1,2,1,2
434
+ 0,3,0,1,2,2,2
435
+ 2,0,0,2,2,0,2
436
+ 3,3,3,0,2,2,2
437
+ 0,3,3,0,0,0,2
438
+ 2,1,2,0,0,2,2
439
+ 2,2,1,0,1,2,2
440
+ 1,3,3,2,0,2,0
441
+ 1,2,1,1,2,1,2
442
+ 2,3,3,2,0,2,0
443
+ 2,3,0,2,0,0,0
444
+ 0,3,2,1,1,0,2
445
+ 3,2,2,1,0,0,0
446
+ 3,1,0,1,2,0,0
447
+ 1,1,2,1,1,1,2
448
+ 3,1,3,1,2,0,0
449
+ 2,2,1,1,0,2,0
450
+ 0,1,3,0,0,1,2
451
+ 3,0,2,0,0,2,2
452
+ 0,1,3,2,2,0,0
453
+ 0,2,3,2,1,2,0
454
+ 1,1,2,1,0,1,2
455
+ 2,2,1,1,0,1,2
456
+ 1,3,0,1,0,1,2
457
+ 1,2,2,0,2,0,2
458
+ 1,1,1,0,2,0,2
459
+ 0,3,2,2,0,2,2
460
+ 0,1,1,0,1,0,2
461
+ 2,0,0,1,0,0,0
462
+ 2,3,0,0,1,0,2
463
+ 0,1,1,1,2,2,2
464
+ 2,0,0,2,1,0,0
465
+ 3,2,0,2,0,1,2
466
+ 0,2,0,1,2,2,2
467
+ 1,2,2,0,0,2,2
468
+ 0,1,3,2,1,1,2
469
+ 2,0,2,2,2,1,2
470
+ 0,3,1,2,2,0,2
471
+ 2,2,2,0,0,1,2
472
+ 2,3,3,1,0,0,0
473
+ 2,3,1,1,2,1,2
474
+ 2,1,1,0,1,0,2
475
+ 0,0,1,2,1,0,0
476
+ 2,2,2,1,1,0,3
477
+ 2,0,1,2,2,2,2
478
+ 0,2,0,1,0,0,0
479
+ 2,1,1,0,1,2,2
480
+ 3,2,0,2,2,0,2
481
+ 3,1,2,2,1,1,2
482
+ 3,3,3,1,1,0,2
483
+ 3,2,2,1,1,0,0
484
+ 0,3,0,1,2,1,2
485
+ 0,1,1,2,0,0,0
486
+ 0,0,0,1,1,0,0
487
+ 2,2,1,2,0,1,2
488
+ 0,3,2,0,0,1,2
489
+ 2,0,3,0,0,0,2
490
+ 3,0,1,2,2,0,2
491
+ 2,1,3,1,1,1,2
492
+ 2,3,3,1,2,2,2
493
+ 0,3,1,2,2,1,2
494
+ 2,2,2,0,1,0,2
495
+ 1,0,1,0,2,2,2
496
+ 0,3,2,2,2,2,2
497
+ 2,3,3,2,2,0,0
498
+ 2,1,1,1,1,1,2
499
+ 3,3,3,2,2,0,2
500
+ 3,0,3,2,0,0,2
501
+ 0,2,3,2,2,2,2
502
+ 1,2,0,2,0,2,1
503
+ 3,0,1,0,1,0,2
504
+ 2,2,1,2,2,2,0
505
+ 0,0,1,1,0,1,2
506
+ 2,1,3,1,0,0,3
507
+ 3,1,3,0,1,0,2
508
+ 3,3,2,2,0,2,2
509
+ 1,3,1,1,1,0,0
510
+ 3,2,1,1,2,2,2
511
+ 1,2,3,1,1,2,1
512
+ 3,2,1,0,0,1,2
513
+ 2,1,1,2,0,0,3
514
+ 3,0,3,1,0,2,2
515
+ 1,3,2,1,0,0,0
516
+ 3,1,2,1,0,1,2
517
+ 1,3,0,2,2,1,2
518
+ 2,1,3,0,1,1,2
519
+ 3,3,3,0,0,2,2
520
+ 3,2,0,2,0,0,0
521
+ 2,0,1,2,0,0,0
522
+ 1,2,1,2,0,2,1
523
+ 0,1,0,2,0,0,0
524
+ 3,1,0,2,0,2,0
525
+ 0,3,3,0,2,1,2
526
+ 2,3,1,0,2,0,2
527
+ 3,2,1,0,0,2,2
528
+ 3,3,3,2,2,1,2
529
+ 2,0,2,2,2,0,0
530
+ 3,2,1,0,2,1,2
531
+ 1,3,2,2,2,0,0
532
+ 1,0,3,2,1,1,2
533
+ 0,2,3,0,0,1,2
534
+ 2,1,2,2,2,0,1
535
+ 2,0,0,1,2,2,2
536
+ 1,0,1,2,2,1,2
537
+ 1,1,3,0,1,0,2
538
+ 0,0,2,1,0,0,0
539
+ 1,2,2,0,0,0,2
540
+ 3,3,0,1,2,2,2
541
+ 3,2,2,0,0,1,2
542
+ 3,0,3,0,1,2,2
543
+ 1,0,2,0,1,2,2
544
+ 2,0,0,2,1,2,2
545
+ 0,3,2,2,2,1,2
546
+ 1,3,3,0,1,0,2
547
+ 2,3,2,1,1,0,0
548
+ 3,0,0,0,0,0,2
549
+ 0,3,0,0,2,0,2
550
+ 1,3,1,2,2,1,2
551
+ 0,3,0,1,2,0,2
552
+ 3,3,1,2,2,1,2
553
+ 2,1,0,1,2,2,0
554
+ 0,2,3,1,0,2,0
555
+ 0,3,3,1,1,2,2
556
+ 3,2,0,2,1,1,2
557
+ 3,1,2,0,0,2,2
558
+ 1,3,0,2,1,0,0
559
+ 1,2,1,1,1,1,2
560
+ 1,0,0,0,1,1,2
561
+ 3,3,1,2,0,0,2
562
+ 0,0,0,2,1,0,0
563
+ 3,1,0,2,2,1,2
564
+ 3,0,0,2,0,1,2
565
+ 2,1,1,2,0,1,2
566
+ 1,1,2,2,0,1,2
567
+ 2,2,3,2,2,0,0
568
+ 0,2,1,0,0,2,2
569
+ 1,3,2,1,0,1,2
570
+ 1,3,3,0,2,1,2
571
+ 0,1,2,0,2,1,2
572
+ 3,0,3,0,0,1,2
573
+ 2,3,0,1,2,1,2
574
+ 1,1,3,2,1,0,3
575
+ 2,1,1,0,0,1,2
576
+ 2,2,2,2,1,0,3
577
+ 0,2,1,0,0,0,2
578
+ 1,3,2,1,2,2,2
579
+ 3,0,1,0,0,1,2
580
+ 0,3,2,2,1,2,2
581
+ 2,3,1,1,1,0,0
582
+ 2,0,2,0,1,1,2
583
+ 0,0,1,1,1,2,2
584
+ 2,2,0,0,2,0,2
585
+ 0,1,2,0,0,1,2
586
+ 1,0,3,2,2,0,0
587
+ 1,3,0,2,0,0,0
588
+ 3,0,1,1,1,1,2
589
+ 3,2,0,2,1,2,2
590
+ 2,2,0,1,1,1,2
591
+ 0,3,1,1,0,1,2
592
+ 2,3,1,1,0,0,0
593
+ 2,1,2,2,1,1,2
594
+ 3,3,2,0,1,1,2
595
+ 3,2,2,1,0,1,2
596
+ 2,1,3,0,1,2,2
597
+ 3,0,3,0,0,0,2
598
+ 2,3,0,2,2,0,2
599
+ 3,0,1,0,1,1,2
600
+ 0,0,3,2,0,2,0
601
+ 3,3,0,2,1,0,2
602
+ 0,0,0,2,0,0,0
603
+ 0,1,2,0,2,0,2
604
+ 1,0,2,0,0,1,2
605
+ 2,3,2,1,0,1,2
606
+ 1,1,3,0,2,2,2
607
+ 3,3,3,1,2,0,2
608
+ 1,3,2,2,0,2,0
609
+ 0,2,2,1,2,2,2
610
+ 3,0,1,0,2,1,2
611
+ 2,2,2,0,1,2,2
612
+ 3,0,2,0,2,2,2
613
+ 2,2,0,1,1,2,0
614
+ 2,2,3,1,1,1,2
615
+ 2,1,3,0,2,1,2
616
+ 0,3,0,1,0,2,2
617
+ 2,2,3,0,2,2,2
618
+ 1,0,3,0,2,0,2
619
+ 0,3,3,2,2,1,2
620
+ 0,2,1,1,1,1,2
621
+ 2,1,3,1,1,2,1
622
+ 2,0,0,2,2,1,2
623
+ 1,3,1,2,2,2,2
624
+ 1,1,1,0,2,2,2
625
+ 1,2,2,0,1,0,2
626
+ 2,0,3,2,1,0,0
627
+ 1,3,2,0,2,2,2
628
+ 2,2,1,0,2,2,2
629
+ 3,2,0,0,2,1,2
630
+ 3,2,3,0,1,0,2
631
+ 3,0,2,1,1,0,2
632
+ 3,0,0,0,0,1,2
633
+ 1,2,0,0,0,2,2
634
+ 0,3,1,2,0,2,2
635
+ 0,0,2,1,0,1,2
636
+ 3,1,3,2,0,1,2
637
+ 3,1,2,0,0,0,2
638
+ 3,2,3,2,2,1,2
639
+ 1,0,3,0,2,2,2
640
+ 3,0,2,2,2,2,2
641
+ 3,3,2,1,2,0,2
642
+ 1,3,1,0,1,2,2
643
+ 3,2,2,0,0,2,2
644
+ 3,2,1,2,2,2,2
645
+ 3,2,2,2,1,2,0
646
+ 1,0,0,2,1,0,0
647
+ 1,2,2,1,1,0,3
648
+ 2,2,0,0,1,1,2
649
+ 2,2,0,2,0,1,2
650
+ 2,2,0,1,2,2,0
651
+ 2,3,0,2,2,1,2
652
+ 0,2,1,2,1,1,2
653
+ 2,2,3,0,1,0,2
654
+ 2,3,0,0,0,2,2
655
+ 1,0,1,2,0,0,3
656
+ 3,3,0,1,1,1,2
657
+ 1,2,3,2,1,1,2
658
+ 1,2,0,1,0,2,1
659
+ 0,2,2,1,2,1,2
660
+ 1,0,1,1,0,0,3
661
+ 0,2,1,0,2,1,2
662
+ 2,2,1,1,0,0,3
663
+ 0,2,2,1,1,0,0
664
+ 0,0,0,0,0,1,2
665
+ 1,2,2,2,2,1,2
666
+ 1,0,0,1,0,2,0
667
+ 3,3,0,1,2,1,2
668
+ 1,1,0,2,1,1,2
669
+ 3,1,0,1,1,2,2
670
+ 1,3,0,1,2,2,2
671
+ 3,1,3,0,1,1,2
672
+ 3,3,2,2,1,2,2
673
+ 3,2,0,2,2,2,2
674
+ 1,3,0,1,2,1,2
675
+ 3,2,1,0,1,0,2
676
+ 3,3,1,0,0,1,2
677
+ 0,0,3,0,0,2,2
678
+ 3,3,1,1,0,1,2
679
+ 1,2,1,0,1,1,2
680
+ 3,3,0,0,0,0,2
681
+ 1,0,0,1,2,1,2
682
+ 1,2,3,1,1,1,2
683
+ 0,2,3,1,1,1,2
684
+ 2,3,0,0,1,2,2
685
+ 3,0,3,0,1,1,2
686
+ 3,1,1,0,2,0,2
687
+ 1,1,1,2,1,1,2
688
+ 0,3,0,1,1,1,2
689
+ 2,1,0,1,2,1,2
690
+ 1,3,0,2,0,2,0
691
+ 0,3,2,0,2,2,2
692
+ 0,0,1,0,2,0,2
693
+ 0,3,2,1,1,2,2
694
+ 3,3,1,2,1,2,2
695
+ 0,0,3,0,2,2,2
696
+ 2,0,2,1,2,2,2
697
+ 2,0,2,2,0,1,2
698
+ 1,0,1,1,2,0,0
699
+ 1,0,0,2,0,2,0
700
+ 0,0,0,0,0,0,2
701
+ 0,0,1,2,2,1,2
702
+ 2,3,1,2,1,1,2
703
+ 3,1,3,2,0,2,0
704
+ 0,0,0,0,1,0,2
705
+ 3,2,1,1,0,2,0
706
+ 0,1,1,2,0,1,2
707
+ 0,3,3,1,0,0,2
708
+ 1,3,2,0,0,2,2
709
+ 1,3,1,1,1,1,2
710
+ 3,0,2,0,0,0,2
711
+ 0,2,2,0,2,1,2
712
+ 3,2,1,1,2,1,2
713
+ 2,3,1,2,2,0,0
714
+ 2,1,1,1,2,0,1
715
+ 0,0,2,0,0,0,2
716
+ 1,1,2,1,1,2,1
717
+ 1,1,1,0,1,0,2
718
+ 2,3,3,2,0,0,0
719
+ 3,2,1,1,0,0,0
720
+ 3,2,3,2,0,2,0
721
+ 2,3,0,0,1,1,2
722
+ 0,0,3,1,1,0,0
723
+ 0,3,1,1,1,0,2
724
+ 0,0,3,0,0,0,2
725
+ 3,1,1,0,2,1,2
726
+ 0,2,2,0,0,2,2
727
+ 2,3,2,1,1,2,0
728
+ 1,0,1,0,0,2,2
729
+ 3,3,3,0,2,0,2
730
+ 0,2,0,1,0,2,0
731
+ 0,3,0,2,0,2,2
732
+ 1,3,1,2,0,1,2
733
+ 3,1,1,0,0,1,2
734
+ 3,2,1,1,2,0,0
735
+ 3,0,1,2,0,0,2
736
+ 1,3,1,1,0,1,2
737
+ 3,3,0,2,2,2,2
738
+ 1,0,1,0,0,1,2
739
+ 0,3,1,2,0,0,2
740
+ 3,2,1,2,2,0,0
741
+ 1,1,0,1,2,2,0
742
+ 3,0,2,0,1,0,2
743
+ 3,2,2,2,0,2,0
744
+ 0,0,1,1,0,0,0
745
+ 0,0,0,1,2,1,2
746
+ 2,3,3,2,0,1,2
747
+ 3,3,3,2,2,2,2
748
+ 2,1,2,2,1,0,3
749
+ 0,0,1,2,0,2,0
750
+ 3,3,3,0,1,1,2
751
+ 0,3,3,0,0,1,2
752
+ 0,3,0,2,0,1,2
753
+ 1,1,0,2,0,0,3
754
+ 0,1,0,1,1,1,2
755
+ 0,0,1,1,2,0,0
756
+ 0,0,0,0,0,2,2
757
+ 2,2,1,2,1,1,2
758
+ 2,2,1,2,1,2,0
759
+ 3,2,2,2,1,0,0
760
+ 1,2,3,0,2,1,2
761
+ 0,2,2,2,0,1,2
762
+ 1,2,1,2,1,1,2
763
+ 0,1,1,2,1,1,2
764
+ 2,2,1,2,0,2,0
765
+ 3,1,3,1,2,2,2
766
+ 1,2,3,2,1,0,3
767
+ 0,1,0,1,1,0,0
768
+ 0,2,3,1,1,0,0
769
+ 2,1,0,0,2,1,2
770
+ 2,0,0,1,0,2,0
771
+ 1,2,2,1,0,2,1
772
+ 2,2,2,1,0,2,0
773
+ 0,2,0,2,0,2,0
774
+ 0,2,1,2,1,0,0
775
+ 2,1,1,2,1,0,3
776
+ 2,1,0,1,1,0,1
777
+ 2,2,3,2,1,2,0
778
+ 2,0,0,2,1,1,2
779
+ 2,2,2,2,2,2,0
780
+ 2,3,1,2,1,2,0
781
+ 3,0,2,2,1,1,2
782
+ 0,3,3,0,1,2,2
783
+ 0,1,2,2,0,1,2
784
+ 2,3,0,1,1,0,0
785
+ 2,0,0,1,2,0,0
786
+ 2,1,3,2,2,2,0
787
+ 0,0,1,0,2,2,2
788
+ 2,3,3,0,1,0,2
789
+ 1,0,3,1,1,2,0
790
+ 1,0,2,2,0,0,3
791
+ 0,0,3,2,2,1,2
792
+ 3,0,2,2,1,2,2
793
+ 3,2,3,1,1,1,2
794
+ 3,0,3,1,2,1,2
795
+ 2,1,0,2,1,0,1
796
+ 2,2,2,2,1,2,0
797
+ 1,0,0,2,2,0,2
798
+ 1,3,3,0,2,0,2
799
+ 2,1,0,2,0,1,2
800
+ 3,1,2,1,2,0,0
801
+ 1,2,3,1,0,1,2
802
+ 0,1,2,0,1,2,2
803
+ 3,0,1,2,0,1,2
804
+ 2,0,3,2,2,1,2
805
+ 0,1,1,0,0,2,2
806
+ 3,0,2,0,1,2,2
807
+ 2,1,3,2,0,0,3
808
+ 1,0,3,2,0,2,0
809
+ 1,3,0,2,2,0,2
810
+ 0,2,1,0,0,1,2
811
+ 0,0,2,1,0,2,0
812
+ 0,0,3,0,2,0,2
813
+ 2,1,3,1,0,1,2
814
+ 1,2,3,0,0,2,2
815
+ 2,1,3,0,0,2,2
816
+ 2,0,2,2,2,2,2
817
+ 1,2,0,1,1,2,0
818
+ 0,3,3,2,1,0,2
819
+ 0,1,1,0,0,0,2
820
+ 0,0,2,0,2,1,2
821
+ 2,2,0,1,2,1,2
822
+ 0,3,1,0,2,2,2
823
+ 1,0,2,1,2,1,2
824
+ 3,2,2,0,2,0,2
825
+ 3,0,3,1,2,0,2
826
+ 3,2,3,1,1,0,0
827
+ 2,0,2,2,0,0,0
828
+ 1,0,1,2,1,1,2
829
+ 0,0,1,1,1,0,0
830
+ 2,0,1,2,0,1,2
831
+ 2,2,1,1,1,0,0
832
+ 2,3,2,2,2,2,2
833
+ 2,0,1,2,2,1,2
834
+ 1,1,3,2,0,1,2
835
+ 2,2,2,2,2,0,0
836
+ 0,1,2,2,0,0,0
837
+ 3,1,2,2,0,1,2
838
+ 2,1,3,2,0,1,2
839
+ 2,2,1,1,1,2,0
840
+ 3,1,1,0,2,2,2
841
+ 1,2,3,0,0,0,2
842
+ 1,2,2,1,2,0,1
843
+ 2,3,2,2,0,2,0
844
+ 2,1,2,2,0,0,3
845
+ 1,3,0,2,0,1,2
846
+ 1,3,2,0,0,0,2
847
+ 1,2,3,2,0,1,2
848
+ 2,2,2,0,2,1,2
849
+ 3,3,0,2,1,1,2
850
+ 2,1,0,0,0,1,2
851
+ 2,2,0,1,0,2,0
852
+ 1,1,0,2,1,0,1
853
+ 2,0,1,0,1,0,2
854
+ 3,1,2,1,2,2,2
855
+ 1,2,0,0,0,1,2
856
+ 3,3,3,2,0,1,2
857
+ 1,3,0,0,1,0,2
858
+ 3,3,3,1,2,2,2
859
+ 0,2,3,1,2,0,0
860
+ 0,1,0,1,0,1,2
861
+ 0,0,3,0,1,0,2
862
+ 1,2,1,0,2,0,2
863
+ 0,1,3,1,0,2,0
864
+ 3,0,1,2,1,1,2
865
+ 1,3,1,0,0,2,2
866
+ 2,3,3,2,1,2,0
867
+ 0,3,1,0,0,2,2
868
+ 2,1,1,1,0,2,1
869
+ 1,0,3,0,0,0,2
870
+ 2,0,1,2,0,2,0
871
+ 0,3,2,1,2,0,2
872
+ 3,3,3,0,1,0,2
873
+ 3,1,2,2,2,1,2
874
+ 3,2,1,1,1,0,0
875
+ 1,1,3,2,2,1,2
876
+ 0,1,3,1,1,1,2
877
+ 3,2,0,1,0,1,2
878
+ 0,3,1,0,1,1,2
879
+ 1,2,2,1,0,0,3
880
+ 1,2,2,2,1,2,1
881
+ 1,3,3,1,0,0,0
882
+ 3,1,3,0,2,0,2
883
+ 2,0,2,0,2,0,2
884
+ 1,2,1,2,0,0,3
885
+ 3,2,2,2,0,0,0
886
+ 1,0,2,0,0,2,2
887
+ 1,2,3,1,2,0,1
888
+ 0,3,1,2,2,2,2
889
+ 2,0,1,0,2,0,2
890
+ 0,3,2,1,0,0,2
891
+ 3,3,3,2,0,0,2
892
+ 0,1,0,1,2,1,2
893
+ 2,3,2,1,0,2,0
894
+ 3,1,1,2,0,0,0
895
+ 3,3,2,1,0,2,2
896
+ 2,2,0,2,0,2,0
897
+ 1,3,0,1,0,0,0
898
+ 3,1,2,1,1,1,2
899
+ 3,1,3,2,2,2,2
900
+ 2,1,0,2,0,2,1
901
+ 3,1,0,1,2,1,2
902
+ 0,2,2,2,0,0,0
903
+ 0,0,3,2,2,0,0
904
+ 0,1,3,2,0,2,0
905
+ 2,1,2,1,2,0,1
906
+ 1,2,1,1,0,0,3
907
+ 2,2,2,0,0,0,2
908
+ 3,0,1,2,2,2,2
909
+ 1,0,1,2,1,2,0
910
+ 0,0,2,0,0,1,2
911
+ 1,1,2,2,0,0,3
912
+ 1,1,1,2,1,2,1
913
+ 3,0,1,0,2,2,2
914
+ 3,3,1,2,1,0,2
915
+ 2,3,0,0,2,1,2
916
+ 0,2,3,2,0,1,2
917
+ 1,0,0,0,2,1,2
918
+ 1,0,2,2,1,1,2
919
+ 3,2,0,2,0,2,0
920
+ 0,1,0,0,2,2,2
921
+ 1,0,0,1,1,0,0
922
+ 3,3,3,1,0,0,2
923
+ 1,2,1,0,0,1,2
924
+ 0,3,0,2,2,2,2
925
+ 1,2,2,2,1,0,3
926
+ 0,0,1,1,0,2,0
927
+ 2,2,1,0,2,1,2
928
+ 3,1,3,0,2,1,2
929
+ 2,3,3,1,2,0,0
930
+ 0,0,3,1,1,2,0
931
+ 0,2,1,2,2,2,2
932
+ 3,3,2,0,0,2,2
933
+ 2,2,3,1,2,1,2
934
+ 3,1,2,2,1,2,0
935
+ 3,0,2,0,2,1,2
936
+ 3,3,2,0,1,0,2
937
+ 2,0,1,1,1,1,2
938
+ 3,2,3,1,2,1,2
939
+ 2,0,2,0,2,2,2
940
+ 3,2,3,2,2,2,2
941
+ 0,1,0,0,1,1,2
942
+ 1,0,0,1,2,2,0
943
+ 0,2,1,0,2,2,2
944
+ 2,0,3,1,0,0,0
945
+ 0,2,0,0,1,1,2
946
+ 3,0,0,1,2,0,2
947
+ 3,0,3,2,1,1,2
948
+ 0,3,2,2,1,0,2
949
+ 0,3,3,1,2,2,2
950
+ 1,0,1,2,0,2,0
951
+ 3,2,1,2,1,0,0
952
+ 0,0,1,0,1,1,2
953
+ 1,2,1,0,1,2,2
954
+ 3,0,0,2,1,1,2
955
+ 3,2,2,1,2,1,2
956
+ 0,3,3,1,2,1,2
957
+ 3,3,3,0,2,1,2
958
+ 2,3,2,0,0,0,2
959
+ 2,3,0,2,0,1,2
960
+ 3,3,0,1,1,0,2
961
+ 0,3,1,1,2,2,2
962
+ 3,0,2,1,0,2,2
963
+ 2,3,3,0,2,0,2
964
+ 0,0,2,2,0,0,0
965
+ 1,1,2,2,0,2,1
966
+ 3,0,0,0,1,1,2
967
+ 0,2,1,0,2,0,2
968
+ 2,2,2,0,2,2,2
969
+ 0,3,1,1,2,1,2
970
+ 1,0,1,1,0,1,2
971
+ 2,0,2,1,1,1,2
972
+ 3,0,3,2,0,2,2
973
+ 1,3,1,2,2,0,0
974
+ 3,1,0,0,1,1,2
975
+ 3,0,1,2,0,2,2
976
+ 0,3,1,1,0,0,2
977
+ 1,1,3,1,0,0,3
978
+ 3,3,0,2,0,0,2
979
+ 1,0,0,1,1,1,2
980
+ 1,1,0,1,1,2,0
981
+ 3,0,2,2,2,0,2
982
+ 2,0,2,1,1,2,0
983
+ 3,3,0,2,0,2,2
984
+ 3,2,2,0,1,0,2
985
+ 1,1,2,2,2,1,2
986
+ 2,3,1,1,2,2,2
987
+ 1,3,2,2,2,2,2
988
+ 2,0,3,2,2,0,0
989
+ 2,3,0,2,1,1,2
990
+ 3,3,1,1,2,0,2
991
+ 0,1,3,1,2,0,0
992
+ 1,2,3,2,2,2,0
993
+ 1,1,1,2,0,1,2
994
+ 0,0,1,2,2,2,2
995
+ 1,0,3,1,2,2,0
996
+ 3,1,2,0,1,2,2
997
+ 0,3,1,0,0,1,2
998
+ 3,1,0,2,2,2,2
999
+ 1,2,2,2,0,0,3
1000
+ 1,3,1,1,1,2,2
1001
+ 1,2,2,2,1,1,2
1002
+ 3,3,2,1,1,1,2
1003
+ 2,1,1,1,1,0,1
1004
+ 3,1,0,1,1,0,0
1005
+ 2,1,2,0,0,0,2
1006
+ 0,0,3,2,1,1,2
1007
+ 3,2,2,2,2,2,2
1008
+ 0,3,0,0,2,2,2
1009
+ 3,0,1,1,1,2,2
1010
+ 0,1,3,1,0,1,2
1011
+ 1,3,1,0,2,0,2
1012
+ 0,2,1,1,2,0,0
1013
+ 3,2,0,1,2,0,0
1014
+ 0,2,2,2,1,2,0
1015
+ 3,0,1,1,1,0,2
1016
+ 2,1,1,2,1,1,2
1017
+ 2,0,0,0,1,1,2
1018
+ 2,2,1,2,2,1,2
1019
+ 1,1,3,2,2,0,1
1020
+ 1,3,0,1,1,0,0
1021
+ 0,0,2,1,2,0,0
1022
+ 0,0,1,2,2,0,0
1023
+ 1,3,2,0,0,1,2
1024
+ 0,2,3,0,0,0,2
1025
+ 0,3,2,0,2,0,2
1026
+ 1,2,1,2,1,2,1
1027
+ 0,2,0,1,2,0,0
1028
+ 2,0,2,2,1,1,2
1029
+ 3,0,0,0,1,0,2
1030
+ 1,3,3,2,1,1,2
1031
+ 1,2,1,2,2,0,1
1032
+ 3,2,3,1,2,0,0
1033
+ 1,1,2,1,2,1,2
1034
+ 3,2,1,2,1,2,0
1035
+ 3,2,3,2,1,0,0
1036
+ 0,0,0,2,2,0,2
1037
+ 1,1,1,1,0,2,1
1038
+ 2,1,0,2,1,1,2
1039
+ 0,1,3,1,1,0,0
1040
+ 3,3,2,1,2,1,2
1041
+ 2,3,0,2,0,2,0
1042
+ 3,0,1,1,2,1,2
1043
+ 3,2,0,0,1,1,2
1044
+ 1,1,2,0,2,0,2
1045
+ 0,1,3,0,2,1,2
1046
+ 2,3,2,1,2,2,2
1047
+ 1,2,3,1,0,2,1
1048
+ 0,2,0,0,2,0,2
1049
+ 3,3,2,0,1,2,2
1050
+ 1,2,0,0,1,2,2
1051
+ 3,3,0,0,2,0,2
1052
+ 3,0,3,2,2,2,2
1053
+ 1,1,2,1,2,2,0
1054
+ 0,0,2,0,1,0,2
1055
+ 2,3,2,2,2,0,0
1056
+ 3,2,1,0,0,0,2
1057
+ 3,1,2,1,1,2,0
1058
+ 1,3,0,0,1,1,2
1059
+ 1,3,2,2,1,2,0
1060
+ 2,2,1,2,1,0,3
1061
+ 0,0,0,0,2,2,2
1062
+ 1,2,0,0,2,1,2
1063
+ 2,3,3,1,1,0,0
1064
+ 2,1,1,0,0,2,2
1065
+ 3,3,0,1,0,0,2
1066
+ 0,0,0,0,2,0,2
1067
+ 1,2,0,1,0,1,2
1068
+ 2,0,1,1,2,0,0
1069
+ 0,0,1,0,0,0,2
1070
+ 3,2,2,1,2,0,0
1071
+ 1,3,2,2,0,0,0
1072
+ 2,1,3,1,2,0,1
1073
+ 2,2,1,0,0,1,2
1074
+ 1,0,0,2,1,1,2
1075
+ 1,3,3,0,0,1,2
1076
+ 3,0,2,2,0,2,2
1077
+ 3,0,3,2,2,1,2
1078
+ 3,0,2,0,1,1,2
1079
+ 1,3,0,1,0,2,0
1080
+ 2,3,2,1,2,1,2
1081
+ 2,3,1,0,2,2,2
1082
+ 3,2,1,0,1,1,2
1083
+ 3,2,1,2,0,0,0
1084
+ 3,2,2,2,2,1,2
1085
+ 0,1,2,2,2,0,0
1086
+ 2,2,3,2,1,1,2
1087
+ 2,1,3,0,0,1,2
1088
+ 2,0,3,0,0,2,2
1089
+ 3,1,2,1,0,2,0
1090
+ 0,2,1,2,0,0,0
1091
+ 2,0,0,0,1,0,2
1092
+ 3,2,3,0,2,1,2
1093
+ 2,0,2,1,0,0,0
1094
+ 2,0,0,0,0,1,2
1095
+ 3,2,3,1,1,2,0
1096
+ 0,0,0,1,1,2,2
1097
+ 2,1,3,2,1,2,1
1098
+ 2,2,2,0,2,0,2
1099
+ 3,2,2,2,1,1,2
1100
+ 0,0,3,1,2,0,0
1101
+ 1,3,0,2,2,2,2
1102
+ 1,2,3,2,0,0,3
1103
+ 1,1,0,2,2,0,2
1104
+ 0,1,1,0,1,2,2
1105
+ 2,3,2,0,2,1,2
1106
+ 0,0,3,2,1,0,0
1107
+ 0,2,2,1,1,1,2
1108
+ 1,1,0,0,0,2,2
1109
+ 3,0,3,0,2,1,2
1110
+ 0,2,2,0,0,0,2
1111
+ 2,1,3,0,2,0,2
1112
+ 3,3,0,0,1,0,2
1113
+ 1,0,2,1,2,2,0
1114
+ 2,3,2,0,0,2,2
1115
+ 2,2,3,0,0,0,2
1116
+ 2,1,1,1,1,2,0
1117
+ 0,3,3,0,2,0,2
1118
+ 1,3,3,0,0,2,2
1119
+ 1,0,0,1,0,0,3
1120
+ 0,1,2,1,0,2,0
1121
+ 1,3,1,1,0,0,0
1122
+ 0,3,0,0,2,1,2
1123
+ 0,3,0,2,1,1,2
1124
+ 0,1,3,1,2,2,2
1125
+ 3,1,1,1,2,0,0
1126
+ 2,1,1,1,0,1,2
1127
+ 1,1,2,0,2,2,2
1128
+ 3,0,0,2,2,2,2
1129
+ 0,0,0,2,1,1,2
1130
+ 3,0,3,2,2,0,2
1131
+ 3,2,3,1,0,0,0
1132
+ 1,0,1,1,0,2,0
1133
+ 3,1,0,0,0,2,2
1134
+ 0,2,0,0,0,0,2
1135
+ 0,0,0,1,1,1,2
1136
+ 3,1,2,2,0,0,0
1137
+ 0,1,1,2,1,0,0
1138
+ 3,1,1,1,0,0,0
1139
+ 2,1,1,1,2,2,0
1140
+ 2,0,3,1,1,2,0
1141
+ 2,3,1,1,2,0,0
1142
+ 1,0,0,0,0,0,2
1143
+ 3,0,0,1,2,1,2
1144
+ 0,3,2,0,0,2,2
1145
+ 2,1,3,2,0,2,1
1146
+ 3,1,0,0,2,1,2
1147
+ 0,0,0,1,0,2,0
1148
+ 3,3,0,0,2,1,2
1149
+ 2,0,2,0,0,2,2
1150
+ 3,3,2,0,2,2,2
1151
+ 1,1,0,2,0,1,2
1152
+ 2,2,1,2,2,0,0
1153
+ 1,1,1,1,2,2,0
1154
+ 0,3,0,2,1,0,2
1155
+ 0,0,2,0,2,2,2
1156
+ 1,2,2,1,2,2,0
1157
+ 0,2,2,1,0,1,2
1158
+ 2,3,0,1,2,0,0
1159
+ 3,2,3,2,1,2,0
1160
+ 1,0,0,0,1,0,2
1161
+ 1,0,2,0,2,1,2
1162
+ 3,3,0,2,2,1,2
1163
+ 0,1,2,0,1,1,2
1164
+ 1,3,3,2,1,0,0
1165
+ 1,1,2,2,1,2,1
1166
+ 2,1,0,2,1,2,0
1167
+ 2,2,1,0,1,1,2
1168
+ 3,1,0,2,0,0,0
1169
+ 3,3,1,2,2,2,2
1170
+ 3,0,2,0,0,1,2
1171
+ 0,2,0,2,0,0,0
1172
+ 2,3,2,2,0,0,0
1173
+ 3,1,0,1,0,2,0
1174
+ 3,2,0,0,1,0,2
1175
+ 1,1,1,0,0,0,2
1176
+ 0,3,0,0,1,2,2
1177
+ 1,0,2,2,0,2,0
1178
+ 1,1,2,1,0,0,3
1179
+ 1,2,0,0,2,0,2
1180
+ 0,0,3,0,0,1,2
1181
+ 2,0,0,2,0,0,0
1182
+ 3,2,1,1,0,1,2
1183
+ 3,0,1,0,2,0,2
1184
+ 3,1,0,0,0,1,2
1185
+ 3,1,1,2,0,2,0
1186
+ 2,0,1,0,0,2,2
1187
+ 1,0,2,2,2,0,0
1188
+ 3,0,1,2,1,0,2
1189
+ 2,0,0,0,2,1,2
1190
+ 2,1,0,1,0,2,1
1191
+ 3,3,1,0,1,0,2
1192
+ 3,0,1,1,0,1,2
1193
+ 2,1,3,2,2,1,2
1194
+ 0,1,0,2,1,1,2
1195
+ 3,3,3,2,1,2,2
1196
+ 3,1,0,2,1,0,0
1197
+ 0,0,0,1,2,0,0
1198
+ 0,0,0,0,2,1,2
1199
+ 1,3,2,2,0,1,2
1200
+ 0,2,2,2,0,2,0
1201
+ 0,3,3,0,1,1,2
1202
+ 2,3,2,1,2,0,0
1203
+ 2,0,2,1,2,0,0
1204
+ 2,1,1,2,1,2,1
1205
+ 1,0,3,0,1,2,2
1206
+ 3,0,3,1,0,0,2
1207
+ 2,0,0,1,1,2,2
1208
+ 1,1,3,2,1,1,2
1209
+ 2,3,0,1,1,2,2
1210
+ 2,1,3,1,2,2,0
1211
+ 3,1,3,0,0,2,2
1212
+ 3,1,0,0,1,2,2
1213
+ 0,2,0,0,2,1,2
1214
+ 3,1,0,2,1,2,2
1215
+ 1,0,1,2,2,0,0
1216
+ 1,2,2,2,2,0,1
1217
+ 0,2,1,0,1,0,2
1218
+ 1,1,3,1,0,2,1
1219
+ 0,2,3,0,0,2,2
1220
+ 0,0,2,1,1,2,0
1221
+ 2,3,1,2,0,0,0
1222
+ 1,0,1,1,1,0,0
1223
+ 1,0,3,1,2,1,2
1224
+ 0,3,1,0,2,1,2
1225
+ 1,3,3,2,2,0,0
1226
+ 2,0,3,2,2,2,2
1227
+ 1,1,3,0,1,1,2
1228
+ 0,3,2,2,2,0,2
1229
+ 1,1,0,1,1,1,2
1230
+ 2,2,0,2,0,0,3
1231
+ 2,3,2,0,1,0,2
1232
+ 3,1,1,0,1,2,2
1233
+ 2,2,1,1,1,1,2
1234
+ 0,3,0,1,1,0,2
1235
+ 2,2,0,1,2,0,0
1236
+ 0,3,3,2,1,1,2
1237
+ 0,1,0,1,2,2,2
1238
+ 3,1,3,1,0,0,0
1239
+ 3,1,2,0,2,0,2
1240
+ 3,0,3,1,1,1,2
1241
+ 1,3,3,0,1,2,2
1242
+ 0,2,0,2,1,0,0
1243
+ 3,0,0,2,2,0,2
1244
+ 2,2,3,0,0,2,2
1245
+ 2,0,1,2,1,1,2
1246
+ 3,1,2,2,1,0,0
1247
+ 2,1,1,2,2,1,2
1248
+ 3,2,2,1,0,2,0
1249
+ 1,2,0,1,2,2,0
1250
+ 3,2,1,2,0,2,0
1251
+ 3,3,3,1,2,1,2
1252
+ 2,0,3,1,1,1,2
1253
+ 0,3,1,0,1,0,2
1254
+ 1,3,2,1,2,0,0
1255
+ 1,0,1,1,2,1,2
1256
+ 1,2,3,1,1,0,3
1257
+ 2,1,2,1,0,2,1
1258
+ 1,3,3,1,1,2,0
1259
+ 2,3,2,0,1,1,2
1260
+ 2,0,3,2,0,1,2
1261
+ 0,2,1,1,0,1,2
1262
+ 0,1,1,0,2,0,2
1263
+ 2,1,2,2,0,2,1
1264
+ 2,2,0,2,1,0,0
1265
+ 2,0,3,2,1,2,0
1266
+ 1,2,1,1,2,0,1
1267
+ 1,3,2,1,1,1,2
1268
+ 1,3,2,1,1,0,0
1269
+ 0,1,1,1,1,0,0
1270
+ 1,2,1,0,2,1,2
1271
+ 0,3,3,2,1,2,2
1272
+ 2,3,1,2,1,0,0
1273
+ 0,0,3,2,2,2,2
1274
+ 0,2,2,1,2,0,0
1275
+ 0,0,0,1,0,0,0
1276
+ 0,1,2,0,0,0,2
1277
+ 2,3,0,0,2,2,2
1278
+ 0,2,3,2,2,1,2
1279
+ 3,2,3,1,0,2,0
1280
+ 0,2,3,2,2,0,0
1281
+ 1,2,2,1,1,1,2
1282
+ 3,2,0,1,0,2,0
1283
+ 3,1,1,1,1,2,2
1284
+ 1,2,3,2,1,2,1
1285
+ 3,0,2,2,1,0,2
1286
+ 1,2,0,1,1,0,1
1287
+ 3,3,2,0,0,0,2
1288
+ 0,3,1,2,1,1,2
1289
+ 0,2,3,0,1,1,2
1290
+ 0,1,0,2,0,1,2
1291
+ 0,0,3,0,1,1,2
1292
+ 1,2,1,0,0,0,2
1293
+ 0,2,0,1,1,0,0
1294
+ 0,2,3,1,0,0,0
1295
+ 0,0,2,0,1,1,2
1296
+ 2,1,3,0,2,2,2
1297
+ 3,0,0,2,0,0,2
1298
+ 2,0,1,2,1,2,0
1299
+ 0,2,0,0,0,2,2
1300
+ 0,1,3,2,2,2,2
1301
+ 1,0,3,0,2,1,2
1302
+ 0,1,1,0,2,1,2
1303
+ 3,1,1,1,2,1,2
1304
+ 3,2,2,2,2,0,0
1305
+ 2,1,0,2,2,1,2
1306
+ 1,3,3,1,2,0,0
1307
+ 1,1,1,2,2,2,0
1308
+ 3,3,2,1,0,0,2
1309
+ 3,3,0,0,1,2,2
1310
+ 0,0,3,2,0,1,2
1311
+ 3,3,1,1,0,0,2
1312
+ 0,3,1,1,1,2,2
1313
+ 0,1,0,0,0,1,2
1314
+ 1,0,3,0,0,2,2
1315
+ 0,1,1,2,2,1,2
1316
+ 0,1,1,1,1,2,2
1317
+ 0,2,2,1,1,2,0
1318
+ 2,2,2,2,0,2,0
1319
+ 1,0,1,2,1,0,3
1320
+ 1,0,0,1,0,1,2
1321
+ 1,1,3,0,1,2,2
1322
+ 2,2,0,1,0,1,2
1323
+ 0,0,3,1,2,1,2
1324
+ 1,0,3,0,1,1,2
1325
+ 1,1,2,0,0,0,2
1326
+ 3,3,0,1,0,1,2
1327
+ 1,0,0,1,1,2,0
1328
+ 2,1,1,2,0,2,1
1329
+ 2,2,0,2,2,1,2
1330
+ 1,1,3,0,0,1,2
1331
+ 0,1,0,0,1,2,2
1332
+ 0,0,2,1,1,1,2
1333
+ 2,3,2,0,2,2,2
1334
+ 3,1,3,0,2,2,2
1335
+ 1,1,2,2,1,0,3
1336
+ 3,3,3,1,1,1,2
1337
+ 1,2,1,1,0,1,2
1338
+ 3,2,2,1,1,2,0
1339
+ 0,1,2,1,0,1,2
1340
+ 0,0,0,0,1,1,2
1341
+ 1,3,1,2,1,2,0
1342
+ 0,2,0,0,1,2,2
1343
+ 3,3,3,0,0,0,2
1344
+ 0,2,0,2,1,2,2
1345
+ 1,3,2,1,0,2,0
1346
+ 0,2,0,0,1,0,2
1347
+ 1,0,0,0,2,0,2
1348
+ 3,1,3,0,1,2,2
1349
+ 0,2,3,2,0,0,0
1350
+ 3,3,0,1,1,2,2
1351
+ 1,0,2,2,2,2,0
1352
+ 3,3,2,2,1,0,2
1353
+ 2,0,3,2,0,2,0
1354
+ 2,0,0,0,2,0,2
1355
+ 2,1,1,1,2,1,2
1356
+ 1,2,2,0,1,1,2
1357
+ 0,0,1,0,0,2,2
1358
+ 2,2,2,1,1,1,2
1359
+ 1,3,3,1,2,2,2
1360
+ 1,3,2,2,2,1,2
1361
+ 3,3,2,0,2,1,2
1362
+ 3,1,2,1,0,0,0
1363
+ 3,2,0,2,1,0,0
1364
+ 3,1,1,0,1,0,2
1365
+ 1,2,1,1,1,2,0
1366
+ 3,1,1,2,2,0,0
1367
+ 1,0,1,1,1,2,0
1368
+ 0,3,2,1,0,2,2
1369
+ 3,3,1,1,1,2,2
1370
+ 0,3,2,0,1,2,2
1371
+ 3,2,1,1,1,2,2
1372
+ 2,2,0,1,0,0,3
1373
+ 2,0,2,0,0,1,2
1374
+ 1,2,0,0,0,0,2
1375
+ 0,2,3,0,1,2,2
1376
+ 2,2,3,2,2,2,0
1377
+ 2,2,2,1,1,2,0
1378
+ 1,3,3,1,0,2,0
1379
+ 1,3,1,2,1,1,2
1380
+ 0,3,3,1,1,0,2
1381
+ 2,2,2,1,0,1,2
1382
+ 2,1,3,2,2,0,1
src/preprocessed_data/kidney_disease_dataset.csv ADDED
@@ -0,0 +1,2305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Age,Creatinine_Level,BUN,Diabetes,Hypertension,GFR,Urine_Output,CKD_Status,Dialysis_Needed
2
+ 71,0.3,40.9,0,1,46.8,1622.0,1,0
3
+ 34,1.79,17.1,0,0,43.8,1428.0,1,0
4
+ 80,2.67,15.0,0,1,78.2,1015.0,1,0
5
+ 40,0.97,31.1,0,1,92.8,1276.0,1,0
6
+ 43,2.05,22.8,1,1,62.2,1154.0,0,0
7
+ 22,0.58,15.9,0,1,89.2,1795.0,0,0
8
+ 41,0.93,10.3,1,1,93.8,1641.0,0,0
9
+ 72,0.47,61.9,1,1,67.9,229.0,1,0
10
+ 21,0.3,22.3,1,1,80.2,2251.0,0,0
11
+ 49,1.17,31.0,0,1,64.4,1156.0,1,0
12
+ 57,1.32,5.7,1,0,41.9,2161.0,1,0
13
+ 21,2.16,11.1,1,1,51.3,1658.0,1,0
14
+ 83,1.92,43.3,1,0,78.2,1424.0,1,0
15
+ 79,1.93,34.8,0,0,67.0,1253.0,1,0
16
+ 40,0.32,23.5,0,0,88.4,2679.0,0,0
17
+ 52,1.61,13.4,1,1,22.8,1164.0,1,0
18
+ 77,2.62,15.2,0,1,28.8,964.0,1,0
19
+ 41,1.54,9.9,0,1,31.8,1009.0,1,0
20
+ 68,2.85,5.0,1,0,74.2,1301.0,1,0
21
+ 78,3.02,29.1,0,1,35.5,1300.0,1,0
22
+ 61,0.96,24.5,0,1,78.0,1802.0,0,0
23
+ 79,0.57,26.8,0,0,88.8,1679.0,0,0
24
+ 34,0.51,14.0,1,0,107.9,1680.0,0,0
25
+ 81,0.3,21.1,0,0,105.1,1186.0,0,0
26
+ 81,0.73,12.8,1,1,52.6,1638.0,1,0
27
+ 66,2.29,9.3,0,1,28.3,1691.0,1,0
28
+ 81,0.3,38.0,0,0,54.2,1260.0,1,0
29
+ 70,0.3,19.5,1,1,94.4,1440.0,0,0
30
+ 74,1.09,24.1,0,0,60.3,1690.0,0,0
31
+ 83,0.41,28.0,1,0,69.4,1406.0,0,0
32
+ 22,0.73,19.6,0,0,56.1,1453.0,1,0
33
+ 70,0.74,20.9,0,0,109.5,2004.0,0,0
34
+ 26,0.97,5.0,0,0,44.6,1410.0,1,0
35
+ 40,0.54,7.2,0,0,71.7,996.0,0,0
36
+ 58,0.47,6.6,1,1,97.7,627.0,0,0
37
+ 37,2.04,25.3,1,0,116.0,1357.0,0,0
38
+ 23,2.14,18.9,0,1,52.6,1134.0,1,0
39
+ 79,0.3,7.2,0,1,94.0,1704.0,0,0
40
+ 33,0.3,25.0,1,0,54.2,2089.0,1,0
41
+ 28,2.16,24.5,0,1,104.4,785.0,0,0
42
+ 72,0.3,9.7,0,0,113.2,857.0,0,0
43
+ 21,1.39,17.7,1,1,47.8,1288.0,1,0
44
+ 79,0.3,24.6,1,1,86.3,900.0,0,0
45
+ 90,2.37,7.7,1,0,97.8,1189.0,0,0
46
+ 63,3.49,24.8,1,1,62.6,1032.0,1,0
47
+ 27,1.36,21.6,1,1,83.7,796.0,0,0
48
+ 66,1.12,6.0,0,1,85.0,1713.0,0,0
49
+ 54,0.91,20.6,0,1,120.0,1338.0,0,0
50
+ 55,1.9,22.4,0,0,20.7,2215.0,1,0
51
+ 69,1.71,10.5,1,1,68.6,1480.0,0,0
52
+ 23,2.1,11.4,1,0,38.7,1944.0,1,0
53
+ 21,0.63,5.9,1,0,70.3,936.0,0,0
54
+ 25,1.51,12.6,1,0,50.4,929.0,1,0
55
+ 73,0.71,17.9,1,0,63.6,2410.0,0,0
56
+ 23,0.3,11.5,1,1,48.1,996.0,1,0
57
+ 73,1.16,5.0,0,1,73.9,825.0,0,0
58
+ 82,0.37,9.7,1,1,96.8,714.0,0,0
59
+ 37,2.26,13.0,0,0,60.7,2258.0,0,0
60
+ 63,0.42,27.8,0,1,105.8,1163.0,0,0
61
+ 53,1.53,25.1,1,1,96.1,1502.0,0,0
62
+ 81,0.66,28.0,1,0,120.0,1376.0,0,0
63
+ 33,1.45,9.1,0,0,80.3,938.0,0,0
64
+ 67,0.73,19.7,0,1,68.5,1152.0,0,0
65
+ 34,0.3,5.0,1,1,30.4,1723.0,1,0
66
+ 81,1.64,23.1,1,1,50.5,687.0,1,0
67
+ 59,0.99,25.3,1,1,64.8,1637.0,0,0
68
+ 72,1.46,13.8,0,0,67.8,2017.0,0,0
69
+ 43,0.81,21.5,0,0,120.0,1446.0,0,0
70
+ 45,0.3,5.0,0,1,64.8,1967.0,0,0
71
+ 79,2.17,8.4,0,0,25.8,614.0,1,0
72
+ 60,1.86,27.2,0,1,86.6,385.0,0,0
73
+ 48,0.69,24.1,1,1,85.2,1421.0,0,0
74
+ 34,1.26,13.1,0,1,58.5,1007.0,1,0
75
+ 64,2.14,27.7,0,1,120.0,1739.0,0,0
76
+ 84,0.79,19.7,0,0,22.6,1145.0,1,0
77
+ 90,0.93,11.9,0,1,101.2,1374.0,0,0
78
+ 28,1.42,15.8,1,1,62.7,1340.0,0,0
79
+ 20,0.79,12.5,1,1,46.2,1356.0,1,0
80
+ 27,1.97,5.0,1,1,120.0,1029.0,0,0
81
+ 82,1.05,33.1,0,0,88.4,618.0,1,0
82
+ 30,0.49,11.2,0,1,62.5,1190.0,0,0
83
+ 27,1.75,8.0,0,1,62.0,2025.0,0,0
84
+ 54,0.3,5.0,0,0,76.9,996.0,0,0
85
+ 54,3.01,5.0,1,1,58.5,993.0,1,0
86
+ 52,2.62,26.4,0,1,102.5,1379.0,1,0
87
+ 24,1.66,27.5,1,1,72.2,711.0,0,0
88
+ 60,1.59,32.3,0,0,95.4,1802.0,1,0
89
+ 47,1.54,16.2,1,1,75.2,759.0,0,0
90
+ 26,0.76,14.1,1,1,91.7,1155.0,0,0
91
+ 31,1.47,11.9,1,1,103.6,2569.0,0,0
92
+ 53,0.37,13.0,0,0,112.0,729.0,0,0
93
+ 52,1.65,31.4,1,0,82.3,2036.0,1,0
94
+ 67,1.98,17.7,1,1,48.3,1361.0,1,0
95
+ 42,0.86,22.5,0,1,65.7,1431.0,0,0
96
+ 81,0.66,12.7,0,0,69.3,895.0,0,0
97
+ 56,0.3,33.9,1,0,55.7,1699.0,1,0
98
+ 63,2.51,5.0,1,0,51.5,1117.0,1,0
99
+ 54,0.74,5.0,0,1,74.4,726.0,0,0
100
+ 84,1.02,22.6,0,0,45.4,2028.0,1,0
101
+ 66,1.47,39.0,1,0,40.6,1107.0,1,0
102
+ 22,1.45,15.3,0,0,27.6,370.0,1,0
103
+ 20,1.87,7.9,0,1,82.0,1166.0,0,0
104
+ 24,0.86,30.0,0,0,78.5,1704.0,0,0
105
+ 33,0.3,21.9,1,0,61.9,1624.0,0,0
106
+ 46,0.3,33.5,0,1,94.9,980.0,1,0
107
+ 28,0.68,5.0,1,0,45.0,811.0,1,0
108
+ 34,0.34,32.5,0,0,79.5,617.0,1,0
109
+ 61,0.93,5.0,1,1,71.4,1289.0,0,0
110
+ 70,2.38,14.5,1,0,51.5,1375.0,1,0
111
+ 82,0.86,23.0,0,1,57.7,1654.0,1,0
112
+ 71,0.86,20.2,0,0,55.8,1225.0,1,0
113
+ 23,1.19,30.7,0,1,76.3,1211.0,1,0
114
+ 42,0.83,5.0,0,0,84.8,1161.0,0,0
115
+ 34,1.14,19.7,1,1,59.3,1376.0,1,0
116
+ 62,1.69,32.4,0,0,52.2,1233.0,1,0
117
+ 48,2.0,18.7,1,0,73.4,1770.0,0,0
118
+ 55,2.1,5.0,0,1,28.7,1455.0,1,0
119
+ 32,3.05,30.1,0,1,70.9,1354.0,1,0
120
+ 51,1.71,10.2,0,0,109.0,1279.0,0,0
121
+ 90,3.21,8.1,0,1,52.4,829.0,1,0
122
+ 78,0.5,6.6,0,0,65.6,1300.0,0,0
123
+ 47,3.08,15.6,1,1,95.6,977.0,1,0
124
+ 85,0.86,20.2,0,0,88.9,1473.0,0,0
125
+ 61,0.95,5.0,0,1,71.5,1196.0,0,0
126
+ 64,1.09,5.2,1,0,68.5,2132.0,0,0
127
+ 81,1.0,9.7,1,0,39.1,669.0,1,0
128
+ 76,1.28,6.5,0,0,82.3,100.0,0,0
129
+ 25,0.68,18.4,1,0,36.4,1434.0,1,0
130
+ 47,1.95,22.3,0,1,18.4,978.0,1,0
131
+ 47,0.7,20.7,1,1,95.2,1381.0,0,0
132
+ 63,1.79,20.7,1,1,79.7,682.0,0,0
133
+ 49,2.57,38.1,1,0,92.0,2254.0,1,0
134
+ 81,0.88,23.1,1,0,51.6,1107.0,1,0
135
+ 81,1.91,27.4,0,1,81.7,946.0,0,0
136
+ 20,1.7,13.0,1,1,59.0,2245.0,1,0
137
+ 46,3.23,29.3,0,0,61.8,1720.0,1,0
138
+ 81,0.75,12.5,0,1,94.3,1995.0,0,0
139
+ 22,1.92,22.9,0,1,66.3,1214.0,0,0
140
+ 89,0.3,5.0,1,1,52.6,1323.0,1,0
141
+ 46,0.75,20.0,1,0,35.9,1002.0,1,0
142
+ 28,1.52,6.3,0,0,79.0,943.0,0,0
143
+ 81,2.45,29.2,1,0,96.5,1499.0,0,0
144
+ 56,0.3,28.5,1,1,50.4,1116.0,1,0
145
+ 70,1.91,12.4,0,0,87.2,2410.0,0,0
146
+ 63,1.14,42.6,0,0,46.4,1721.0,1,0
147
+ 43,0.3,14.6,1,1,88.7,2242.0,0,0
148
+ 78,1.36,5.0,0,0,70.8,186.0,0,0
149
+ 51,2.74,8.7,0,0,76.7,2248.0,1,0
150
+ 71,0.3,5.5,1,1,52.6,108.0,1,0
151
+ 81,1.1,22.6,1,1,78.9,670.0,0,0
152
+ 77,0.31,5.0,1,1,55.1,424.0,1,0
153
+ 71,0.78,11.5,1,0,59.7,1422.0,1,0
154
+ 31,2.49,21.8,0,1,32.1,1291.0,1,0
155
+ 58,0.96,19.7,0,1,50.7,1697.0,1,0
156
+ 21,2.46,17.8,1,0,56.9,1256.0,1,0
157
+ 22,2.2,19.5,0,1,77.8,1913.0,0,0
158
+ 75,0.87,13.6,1,0,84.9,834.0,0,0
159
+ 78,0.75,5.0,0,0,54.8,1924.0,1,0
160
+ 21,0.39,13.2,0,0,65.9,1285.0,0,0
161
+ 21,0.36,23.6,0,0,112.2,2478.0,0,0
162
+ 73,1.52,16.4,1,0,73.3,1736.0,0,0
163
+ 20,1.18,22.7,0,1,56.6,1148.0,1,0
164
+ 38,0.64,11.0,0,0,28.0,1283.0,1,0
165
+ 21,0.3,29.9,0,1,48.7,795.0,1,0
166
+ 72,1.3,5.0,1,1,47.7,1480.0,1,0
167
+ 63,0.78,19.7,0,0,119.4,1148.0,0,0
168
+ 51,1.02,34.2,0,0,48.8,1662.0,1,0
169
+ 89,1.47,36.0,0,1,71.3,631.0,1,0
170
+ 51,0.3,15.2,1,1,79.3,1135.0,0,0
171
+ 87,0.3,5.0,0,0,97.7,720.0,0,0
172
+ 74,3.27,34.4,0,0,70.2,751.0,1,0
173
+ 75,0.74,17.4,0,1,57.2,1603.0,1,0
174
+ 36,0.3,16.1,0,0,55.6,1862.0,1,0
175
+ 57,0.3,7.3,1,1,78.9,134.0,0,0
176
+ 43,3.44,5.0,0,1,52.9,2231.0,1,0
177
+ 88,0.57,24.8,1,0,42.4,2002.0,1,0
178
+ 89,2.24,26.0,1,0,57.2,627.0,1,0
179
+ 30,1.31,20.4,0,0,36.9,1713.0,1,0
180
+ 35,0.76,8.8,1,1,116.3,1070.0,0,0
181
+ 78,1.9,5.2,1,0,84.9,1251.0,0,0
182
+ 89,0.3,5.0,1,0,110.5,1601.0,0,0
183
+ 22,0.3,11.3,0,1,82.1,1540.0,0,0
184
+ 39,0.76,5.9,0,0,108.1,1014.0,0,0
185
+ 78,0.3,5.0,0,0,79.2,1011.0,0,0
186
+ 55,0.68,25.8,1,1,88.2,1041.0,0,0
187
+ 38,1.97,5.0,0,0,16.7,1871.0,1,0
188
+ 86,1.32,29.8,0,1,47.1,369.0,1,0
189
+ 38,2.4,22.7,0,1,70.9,1219.0,0,0
190
+ 39,1.38,21.5,0,0,71.5,2086.0,0,0
191
+ 90,2.09,38.0,0,0,68.1,1652.0,1,0
192
+ 71,1.14,5.0,0,0,81.3,1825.0,0,0
193
+ 52,0.67,28.5,0,1,82.4,1226.0,0,0
194
+ 59,2.53,14.4,1,0,91.6,718.0,1,0
195
+ 58,0.56,48.9,0,1,86.7,1328.0,1,0
196
+ 20,1.51,13.4,1,1,100.1,956.0,0,0
197
+ 30,1.89,11.5,0,0,100.3,2415.0,0,0
198
+ 76,1.96,23.1,0,1,74.4,1221.0,0,0
199
+ 69,0.3,15.5,1,0,120.0,1619.0,0,0
200
+ 42,2.15,8.9,1,1,104.0,2151.0,0,0
201
+ 50,0.32,6.4,0,1,49.8,752.0,1,0
202
+ 61,1.93,35.5,1,0,79.8,160.0,1,0
203
+ 26,1.68,5.0,1,0,23.9,1545.0,1,0
204
+ 35,1.94,20.7,1,1,28.1,1639.0,1,0
205
+ 79,0.3,30.7,0,1,57.5,1093.0,1,0
206
+ 21,1.73,31.3,0,1,48.1,722.0,1,0
207
+ 20,2.18,10.8,1,0,57.7,1455.0,1,0
208
+ 67,1.37,15.5,1,0,78.2,1288.0,0,0
209
+ 31,0.46,13.2,0,0,100.6,1461.0,0,0
210
+ 88,2.03,5.0,1,1,99.3,734.0,0,0
211
+ 56,1.3,24.5,0,0,80.3,1462.0,0,0
212
+ 51,0.3,18.5,0,0,42.8,1710.0,1,0
213
+ 28,0.39,35.3,0,1,56.1,547.0,1,0
214
+ 38,0.73,8.1,1,1,85.9,2030.0,0,0
215
+ 67,2.56,31.1,0,0,49.3,1427.0,1,0
216
+ 22,2.4,31.9,1,0,38.3,1725.0,1,0
217
+ 39,2.39,18.6,0,1,82.3,661.0,0,0
218
+ 43,1.41,5.0,1,0,68.8,1641.0,0,0
219
+ 73,2.02,11.8,1,0,64.7,478.0,0,0
220
+ 52,0.3,39.4,1,0,97.7,826.0,1,0
221
+ 43,1.21,21.6,1,1,97.2,1432.0,0,0
222
+ 55,1.61,26.3,0,1,114.5,1162.0,0,0
223
+ 57,0.3,16.9,0,0,53.7,1314.0,1,0
224
+ 44,1.39,15.3,0,0,80.7,2264.0,0,0
225
+ 37,2.72,5.0,0,1,70.5,1306.0,1,0
226
+ 85,1.7,27.5,1,1,78.5,1655.0,0,0
227
+ 73,2.03,31.0,0,1,41.6,1267.0,1,0
228
+ 54,0.3,6.6,0,1,34.9,1252.0,1,0
229
+ 80,2.6,15.9,0,1,69.0,811.0,1,0
230
+ 60,1.03,14.2,0,1,48.9,1484.0,1,0
231
+ 52,0.51,23.0,0,0,93.5,2568.0,0,0
232
+ 87,1.04,11.5,1,0,32.5,1344.0,1,0
233
+ 52,0.3,29.2,0,0,34.5,1166.0,1,0
234
+ 33,2.14,18.9,0,1,59.6,1870.0,1,0
235
+ 40,0.9,5.0,1,1,31.5,1811.0,1,0
236
+ 67,0.54,23.3,1,1,111.9,1520.0,0,0
237
+ 39,1.05,30.0,0,0,65.4,1146.0,0,0
238
+ 27,2.21,5.0,1,0,54.9,1872.0,1,0
239
+ 26,1.32,22.9,0,0,81.7,1360.0,0,0
240
+ 86,0.3,40.0,0,0,92.1,1757.0,1,0
241
+ 36,1.62,19.3,0,1,75.2,890.0,0,0
242
+ 52,0.36,31.7,0,1,68.3,1007.0,1,0
243
+ 67,0.3,12.7,1,0,45.4,1348.0,1,0
244
+ 78,2.55,17.8,0,0,85.8,682.0,1,0
245
+ 41,1.61,15.5,0,1,105.4,1115.0,0,0
246
+ 49,1.13,13.4,1,0,64.5,660.0,0,0
247
+ 57,0.89,16.2,0,1,48.8,528.0,1,0
248
+ 70,2.46,5.0,0,0,74.5,2518.0,0,0
249
+ 73,3.98,14.0,1,0,70.1,996.0,1,0
250
+ 27,1.6,34.1,0,0,39.6,1039.0,1,0
251
+ 46,0.3,6.4,1,0,57.4,1340.0,1,0
252
+ 46,1.06,5.2,0,1,114.7,769.0,0,0
253
+ 40,1.59,18.7,1,0,36.3,1049.0,1,0
254
+ 49,0.3,19.3,0,0,52.7,2217.0,1,0
255
+ 47,1.5,22.5,1,0,46.3,1479.0,1,0
256
+ 83,1.59,16.6,0,0,48.5,1793.0,1,0
257
+ 88,2.39,18.9,1,0,58.9,2087.0,1,0
258
+ 80,2.3,13.8,0,1,81.2,1405.0,0,0
259
+ 67,1.3,5.0,0,1,102.7,1189.0,0,0
260
+ 38,2.56,17.1,0,1,75.1,583.0,1,0
261
+ 23,3.03,26.7,1,0,52.9,1109.0,1,0
262
+ 54,1.23,24.2,1,0,108.5,1219.0,0,0
263
+ 83,1.58,5.0,0,0,18.3,896.0,1,0
264
+ 68,0.3,21.0,0,0,86.8,2073.0,0,0
265
+ 36,0.3,7.3,1,1,44.3,1851.0,1,0
266
+ 63,0.45,34.7,0,1,68.7,1793.0,1,0
267
+ 49,0.8,21.9,1,1,84.1,1242.0,0,0
268
+ 65,0.3,28.8,1,0,29.9,783.0,1,0
269
+ 25,1.17,18.3,1,0,73.5,1964.0,0,0
270
+ 56,0.83,17.2,0,1,75.5,1468.0,0,0
271
+ 43,2.16,36.0,0,0,106.6,1687.0,1,0
272
+ 65,0.77,29.7,1,0,120.0,1610.0,0,0
273
+ 72,0.3,19.4,1,1,31.2,1455.0,1,0
274
+ 79,1.31,15.6,1,1,105.4,2300.0,0,0
275
+ 82,1.19,5.0,0,1,69.1,971.0,0,0
276
+ 51,0.42,21.9,0,0,49.8,1146.0,1,0
277
+ 52,1.29,16.5,0,0,79.2,2121.0,0,0
278
+ 86,0.3,24.6,1,0,37.4,1341.0,1,0
279
+ 37,1.5,28.3,0,1,38.9,1237.0,1,0
280
+ 44,3.57,32.8,0,0,26.6,1173.0,1,0
281
+ 73,0.3,22.0,0,1,83.7,1640.0,0,0
282
+ 77,0.74,5.4,0,1,78.2,1185.0,0,0
283
+ 86,0.59,5.0,1,1,49.6,1129.0,1,0
284
+ 65,0.81,8.1,0,0,108.1,1631.0,0,0
285
+ 43,2.12,34.0,0,0,53.4,1347.0,1,0
286
+ 51,1.69,39.9,0,1,102.1,795.0,1,0
287
+ 66,1.96,15.1,0,1,73.1,1316.0,0,0
288
+ 42,1.23,5.0,0,1,53.1,1997.0,1,0
289
+ 85,0.3,10.2,0,0,67.1,1683.0,0,0
290
+ 46,0.3,31.7,1,1,38.7,2059.0,1,0
291
+ 21,1.87,10.9,0,1,75.4,934.0,0,0
292
+ 36,1.35,25.1,0,0,70.8,1835.0,0,0
293
+ 52,2.33,20.0,0,1,83.2,976.0,0,0
294
+ 28,1.46,26.5,1,1,92.0,684.0,0,0
295
+ 62,0.3,39.8,0,0,72.9,898.0,1,0
296
+ 67,0.73,25.1,1,0,33.1,1366.0,1,0
297
+ 58,1.71,19.8,0,1,93.3,1814.0,0,0
298
+ 61,1.84,41.1,1,0,70.4,1455.0,1,0
299
+ 45,1.97,22.2,0,1,22.6,1223.0,1,0
300
+ 69,0.3,8.5,1,1,77.7,784.0,0,0
301
+ 44,0.3,26.2,0,1,79.6,1653.0,0,0
302
+ 43,1.03,23.4,0,1,61.0,1782.0,0,0
303
+ 32,2.5,14.3,1,0,65.1,1449.0,0,0
304
+ 79,0.58,11.8,0,0,55.1,774.0,1,0
305
+ 26,1.61,14.4,1,1,80.4,1704.0,0,0
306
+ 76,1.61,11.6,0,0,73.5,1914.0,0,0
307
+ 55,1.88,14.8,1,1,47.3,2067.0,1,0
308
+ 64,2.7,7.9,1,1,110.4,1081.0,1,0
309
+ 39,2.61,22.6,1,0,53.4,1518.0,1,0
310
+ 84,0.66,21.7,1,0,5.0,1033.0,1,1
311
+ 27,0.3,22.1,1,1,58.2,839.0,1,0
312
+ 35,0.59,17.3,1,1,95.8,2092.0,0,0
313
+ 33,1.27,15.9,0,0,64.8,1582.0,0,0
314
+ 34,0.87,35.3,0,1,29.1,1946.0,1,0
315
+ 85,2.97,18.8,1,1,44.3,688.0,1,0
316
+ 51,1.22,33.2,1,1,43.0,1444.0,1,0
317
+ 82,1.79,6.0,1,0,55.6,1554.0,1,0
318
+ 70,1.4,25.1,1,0,63.5,884.0,0,0
319
+ 44,0.89,9.2,1,1,82.3,2044.0,0,0
320
+ 77,0.3,11.3,0,1,73.2,1177.0,0,0
321
+ 82,1.13,13.1,0,0,74.4,1527.0,0,0
322
+ 81,4.13,12.3,0,1,114.5,1025.0,1,0
323
+ 41,0.3,12.4,0,1,91.5,703.0,0,0
324
+ 77,0.3,32.6,0,0,89.3,1757.0,1,0
325
+ 77,2.94,18.5,1,1,24.7,1490.0,1,0
326
+ 68,1.87,20.7,1,1,51.2,1419.0,1,0
327
+ 71,1.37,12.5,0,0,30.1,1161.0,1,0
328
+ 61,2.43,28.3,0,0,50.8,1476.0,1,0
329
+ 89,0.45,22.3,0,1,89.9,1933.0,0,0
330
+ 34,1.1,14.3,0,0,60.2,958.0,0,0
331
+ 73,2.06,5.0,0,0,96.8,1580.0,0,0
332
+ 79,3.1,20.6,0,1,87.3,1401.0,1,0
333
+ 27,0.3,24.9,0,1,71.3,1208.0,0,0
334
+ 72,2.35,6.3,0,1,97.4,477.0,0,0
335
+ 79,1.54,14.5,1,1,104.1,1294.0,0,0
336
+ 24,1.35,24.4,0,0,81.4,1636.0,0,0
337
+ 87,1.19,5.0,0,0,75.7,1462.0,0,0
338
+ 25,0.3,10.2,0,0,85.8,581.0,0,0
339
+ 66,2.07,22.5,0,0,34.8,1924.0,1,0
340
+ 74,0.5,31.3,1,1,67.1,2124.0,1,0
341
+ 59,0.3,44.2,1,1,69.4,1245.0,1,0
342
+ 71,2.0,41.5,0,0,60.8,2456.0,1,0
343
+ 35,1.91,19.7,1,0,50.3,885.0,1,0
344
+ 32,1.27,12.2,0,0,95.0,664.0,0,0
345
+ 49,2.17,29.1,1,1,74.3,793.0,0,0
346
+ 38,2.48,11.5,0,0,76.5,1423.0,0,0
347
+ 36,2.38,8.9,0,0,105.6,411.0,0,0
348
+ 82,0.72,14.3,1,1,65.1,1145.0,0,0
349
+ 38,2.11,12.8,1,0,60.3,2767.0,0,0
350
+ 77,1.39,23.0,1,0,104.0,548.0,0,0
351
+ 74,2.75,10.8,0,1,32.7,1026.0,1,0
352
+ 81,1.09,19.0,0,0,71.3,782.0,0,0
353
+ 42,0.88,37.1,1,1,51.6,1158.0,1,0
354
+ 28,0.65,19.5,0,0,77.3,1126.0,0,0
355
+ 31,1.37,36.2,0,0,84.3,965.0,1,0
356
+ 20,1.62,32.4,0,0,85.7,1222.0,1,0
357
+ 77,1.64,25.1,0,1,95.7,1617.0,0,0
358
+ 20,1.51,13.8,0,1,63.7,1993.0,0,0
359
+ 53,1.8,30.5,0,1,65.2,1158.0,1,0
360
+ 67,1.0,15.0,0,1,83.2,1303.0,0,0
361
+ 20,0.41,18.0,1,1,92.2,1532.0,0,0
362
+ 35,0.34,22.0,0,0,37.5,682.0,1,0
363
+ 80,2.08,17.9,0,0,77.9,1224.0,0,0
364
+ 83,1.62,9.4,0,0,60.1,1047.0,0,0
365
+ 82,0.3,5.0,1,0,72.2,1776.0,0,0
366
+ 88,2.19,29.5,0,0,61.1,2176.0,0,0
367
+ 41,2.89,24.8,1,0,51.9,911.0,1,0
368
+ 86,0.56,5.0,0,0,44.5,1940.0,1,0
369
+ 45,1.5,9.0,1,0,66.2,571.0,0,0
370
+ 35,0.77,20.1,0,0,79.0,1400.0,0,0
371
+ 70,1.77,23.3,0,1,54.9,1430.0,1,0
372
+ 76,0.3,5.0,1,1,99.7,558.0,0,0
373
+ 48,1.14,16.9,1,0,120.0,886.0,0,0
374
+ 88,2.08,24.5,0,0,80.3,837.0,0,0
375
+ 66,2.31,13.8,0,0,69.0,644.0,0,0
376
+ 81,1.58,21.1,0,1,47.2,100.0,1,0
377
+ 88,0.89,12.1,1,0,79.3,1196.0,0,0
378
+ 35,0.3,28.9,0,1,106.9,1257.0,0,0
379
+ 67,0.52,8.4,0,0,118.7,1253.0,0,0
380
+ 58,0.78,5.0,0,0,104.9,1683.0,0,0
381
+ 52,0.57,18.3,1,0,91.1,331.0,0,0
382
+ 42,1.25,5.0,1,0,80.3,1109.0,0,0
383
+ 29,0.89,5.0,1,1,43.8,2580.0,1,0
384
+ 88,1.35,31.0,0,0,67.5,1743.0,1,0
385
+ 53,2.28,6.2,1,1,64.6,1746.0,0,0
386
+ 71,0.83,5.0,1,1,67.7,792.0,0,0
387
+ 29,0.3,8.3,1,1,52.0,1202.0,1,0
388
+ 38,0.57,7.7,0,0,88.9,150.0,0,0
389
+ 77,1.73,16.3,0,0,63.2,1593.0,0,0
390
+ 20,1.81,5.0,1,0,61.1,2000.0,0,0
391
+ 88,1.57,24.0,0,0,52.1,575.0,1,0
392
+ 23,2.37,25.8,0,1,75.8,721.0,0,0
393
+ 35,1.03,5.0,1,0,107.4,1284.0,0,0
394
+ 43,3.05,10.6,1,1,69.7,1377.0,1,0
395
+ 21,1.94,11.7,1,0,77.0,1029.0,0,0
396
+ 51,0.3,16.0,1,1,118.4,892.0,0,0
397
+ 43,2.82,31.0,0,0,100.1,898.0,1,0
398
+ 31,0.51,31.7,0,0,84.7,1275.0,1,0
399
+ 69,0.3,48.0,0,1,83.6,1593.0,1,0
400
+ 54,1.67,5.0,0,0,54.9,1275.0,1,0
401
+ 52,0.3,6.9,0,1,52.5,1228.0,1,0
402
+ 52,0.57,39.8,0,0,73.5,420.0,1,0
403
+ 80,2.6,5.0,0,0,74.2,1734.0,1,0
404
+ 70,1.7,39.5,1,1,48.8,1274.0,1,0
405
+ 62,1.93,19.8,1,1,87.6,1082.0,0,0
406
+ 31,0.61,20.2,1,0,63.1,1428.0,0,0
407
+ 86,0.3,5.0,1,1,98.2,878.0,0,0
408
+ 84,1.84,12.6,1,1,68.6,1092.0,0,0
409
+ 52,2.04,39.0,1,1,66.4,1354.0,1,0
410
+ 59,2.0,17.4,1,0,46.6,961.0,1,0
411
+ 62,1.39,12.7,1,0,49.3,477.0,1,0
412
+ 63,0.33,22.9,1,1,102.9,396.0,0,0
413
+ 48,3.39,15.7,1,1,76.7,1523.0,1,0
414
+ 32,1.63,22.1,0,0,79.7,1284.0,0,0
415
+ 31,1.04,7.8,0,0,110.0,1267.0,0,0
416
+ 65,1.05,17.1,0,0,37.1,719.0,1,0
417
+ 21,1.33,10.3,0,1,86.8,1290.0,0,0
418
+ 54,2.16,5.0,0,0,30.3,1100.0,1,0
419
+ 27,1.37,23.8,0,0,59.1,1000.0,1,0
420
+ 45,1.97,5.0,0,0,41.4,1262.0,1,0
421
+ 53,1.34,16.0,0,1,91.5,1448.0,0,0
422
+ 26,1.1,29.1,1,0,22.8,2175.0,1,0
423
+ 87,1.78,5.0,0,0,64.2,1583.0,0,0
424
+ 77,1.74,25.3,1,1,41.0,1729.0,1,0
425
+ 48,1.05,14.4,1,1,48.6,1852.0,1,0
426
+ 55,0.53,6.4,0,0,52.5,918.0,1,0
427
+ 40,1.51,42.3,1,0,103.0,1140.0,1,0
428
+ 55,1.27,18.0,0,1,61.6,848.0,0,0
429
+ 29,0.7,11.2,0,1,113.2,959.0,0,0
430
+ 43,0.44,8.6,0,1,118.4,1086.0,0,0
431
+ 83,1.57,28.6,0,1,120.0,947.0,0,0
432
+ 68,1.7,10.7,0,1,68.5,1412.0,0,0
433
+ 55,0.88,27.1,0,1,75.3,1516.0,0,0
434
+ 43,0.68,18.0,0,0,79.4,647.0,0,0
435
+ 42,0.45,31.4,0,0,60.8,1144.0,1,0
436
+ 81,1.54,5.5,0,0,80.6,1149.0,0,0
437
+ 56,0.48,7.2,1,0,46.6,564.0,1,0
438
+ 31,3.22,14.6,0,1,23.1,917.0,1,0
439
+ 74,0.83,15.6,0,0,87.9,1737.0,0,0
440
+ 32,0.3,13.7,0,1,61.3,1730.0,0,0
441
+ 42,1.17,49.6,0,0,45.6,485.0,1,0
442
+ 49,1.13,42.8,0,0,48.7,1536.0,1,0
443
+ 36,2.2,21.6,1,1,107.9,565.0,0,0
444
+ 81,1.46,23.0,0,0,81.6,1099.0,0,0
445
+ 32,0.45,15.2,1,0,31.9,1251.0,1,0
446
+ 78,0.94,5.4,1,0,40.3,1676.0,1,0
447
+ 38,1.49,15.8,0,1,62.7,1213.0,0,0
448
+ 68,0.3,27.3,0,0,81.9,793.0,0,0
449
+ 31,2.4,33.7,1,1,50.1,708.0,1,0
450
+ 80,0.45,29.9,1,0,65.7,1384.0,0,0
451
+ 38,2.48,5.0,0,1,72.9,983.0,0,0
452
+ 28,1.55,14.5,1,0,73.4,1096.0,0,0
453
+ 90,1.77,5.0,1,1,10.1,1785.0,1,1
454
+ 47,2.23,32.0,0,1,75.5,1517.0,1,0
455
+ 71,1.72,13.1,1,1,26.7,2093.0,1,0
456
+ 35,1.81,17.4,0,1,62.8,791.0,0,0
457
+ 88,1.05,23.8,0,1,57.5,945.0,1,0
458
+ 31,1.53,51.2,1,1,43.0,1392.0,1,0
459
+ 44,0.67,21.2,1,0,91.1,2209.0,0,0
460
+ 71,0.89,15.1,0,1,41.9,903.0,1,0
461
+ 72,2.97,5.0,0,0,56.9,1319.0,1,0
462
+ 42,0.47,35.5,1,0,92.0,1961.0,1,0
463
+ 35,1.34,15.8,1,0,56.2,1325.0,1,0
464
+ 76,1.3,37.9,1,0,51.0,1810.0,1,0
465
+ 58,0.92,31.3,1,0,63.3,2279.0,1,0
466
+ 72,1.66,12.4,1,1,83.5,1448.0,0,0
467
+ 61,1.73,5.0,0,0,106.2,1529.0,0,0
468
+ 77,0.37,21.3,0,0,46.6,1671.0,1,0
469
+ 58,1.29,10.6,0,1,48.6,848.0,1,0
470
+ 33,0.3,18.5,1,0,63.1,559.0,0,0
471
+ 24,1.91,30.6,1,1,75.8,1379.0,1,0
472
+ 54,1.36,5.0,0,1,50.7,987.0,1,0
473
+ 37,1.27,21.2,0,1,87.2,1826.0,0,0
474
+ 28,1.79,27.1,0,1,47.1,1457.0,1,0
475
+ 77,0.95,27.7,0,0,22.5,1818.0,1,0
476
+ 36,2.02,5.0,0,0,83.3,699.0,0,0
477
+ 26,0.35,23.0,0,0,86.2,1801.0,0,0
478
+ 65,2.47,32.4,0,1,96.1,151.0,1,0
479
+ 32,0.7,22.1,0,0,20.2,740.0,1,0
480
+ 59,0.3,16.6,0,0,53.4,1616.0,1,0
481
+ 61,0.9,31.7,0,0,63.7,1049.0,1,0
482
+ 28,0.8,9.7,1,1,113.9,1097.0,0,0
483
+ 69,0.9,5.0,0,0,66.0,1354.0,0,0
484
+ 46,1.41,15.6,1,1,36.3,2011.0,1,0
485
+ 85,2.19,24.4,1,0,77.4,339.0,0,0
486
+ 24,1.03,30.5,0,0,102.7,1924.0,1,0
487
+ 48,0.58,24.4,0,0,97.4,1954.0,0,0
488
+ 56,0.3,28.0,1,1,84.0,1048.0,0,0
489
+ 57,0.78,30.5,1,1,76.6,953.0,1,0
490
+ 27,0.3,13.9,1,0,13.3,1241.0,1,1
491
+ 84,0.55,16.2,1,0,70.6,942.0,0,0
492
+ 36,2.32,33.4,0,1,74.5,1472.0,1,0
493
+ 90,0.46,5.0,0,0,66.0,1538.0,0,0
494
+ 64,1.77,23.1,0,0,87.7,523.0,0,0
495
+ 23,0.3,9.4,0,0,65.6,840.0,0,0
496
+ 55,2.79,31.2,0,0,60.8,707.0,1,0
497
+ 89,2.85,17.8,1,0,96.0,1407.0,1,0
498
+ 50,1.73,18.1,0,0,59.7,1736.0,1,0
499
+ 38,2.99,38.7,0,0,71.6,763.0,1,0
500
+ 80,1.52,5.1,1,1,92.4,1733.0,0,0
501
+ 73,1.89,20.6,1,0,44.7,838.0,1,0
502
+ 58,2.34,15.8,0,1,42.0,1659.0,1,0
503
+ 38,1.36,24.4,1,0,103.9,1158.0,0,0
504
+ 58,0.3,41.2,1,1,55.2,1079.0,1,0
505
+ 86,1.91,10.7,0,0,87.3,1871.0,0,0
506
+ 64,0.78,5.0,0,1,25.6,2194.0,1,0
507
+ 32,0.84,8.3,0,0,7.4,329.0,1,1
508
+ 77,1.47,15.2,0,1,79.1,1600.0,0,0
509
+ 39,1.71,18.8,0,0,66.8,1389.0,0,0
510
+ 80,1.34,19.4,1,0,79.3,1629.0,0,0
511
+ 58,1.77,39.6,1,1,116.9,581.0,1,0
512
+ 20,0.56,37.5,1,1,39.1,758.0,1,0
513
+ 22,1.16,33.6,1,0,71.0,964.0,1,0
514
+ 81,1.96,48.2,1,1,106.9,1407.0,1,0
515
+ 82,2.8,27.9,0,0,42.7,934.0,1,0
516
+ 44,3.11,31.3,0,0,55.4,1138.0,1,0
517
+ 75,1.59,27.7,1,1,25.8,1715.0,1,0
518
+ 52,1.96,25.7,0,0,120.0,2324.0,0,0
519
+ 57,2.98,22.7,0,1,14.9,1680.0,1,1
520
+ 25,0.6,13.2,1,0,90.0,1730.0,0,0
521
+ 77,1.77,5.0,1,1,37.0,1209.0,1,0
522
+ 63,1.89,16.4,0,1,43.7,855.0,1,0
523
+ 64,2.5,24.8,1,1,96.6,1137.0,0,0
524
+ 51,0.3,18.9,0,1,51.4,1271.0,1,0
525
+ 64,0.35,5.2,1,0,86.3,720.0,0,0
526
+ 80,1.22,16.0,0,1,104.5,1708.0,0,0
527
+ 66,1.54,15.4,1,0,75.0,2060.0,0,0
528
+ 40,2.21,17.3,0,1,92.2,1361.0,0,0
529
+ 55,1.67,23.9,1,1,72.0,1842.0,0,0
530
+ 38,1.06,26.5,0,0,73.2,1904.0,0,0
531
+ 39,1.57,12.0,0,1,54.1,783.0,1,0
532
+ 76,1.47,29.8,0,0,118.2,431.0,0,0
533
+ 37,2.77,31.6,0,0,88.6,1050.0,1,0
534
+ 66,1.35,21.8,0,0,83.0,1348.0,0,0
535
+ 68,0.86,26.0,0,1,89.3,702.0,0,0
536
+ 33,1.6,29.8,1,0,53.1,2011.0,1,0
537
+ 34,1.38,5.0,1,1,93.3,2274.0,0,0
538
+ 50,0.3,30.7,0,0,108.9,1390.0,1,0
539
+ 20,1.19,8.5,1,1,35.5,809.0,1,0
540
+ 73,1.11,9.7,0,0,83.5,1543.0,0,0
541
+ 22,0.71,20.4,0,1,71.6,808.0,0,0
542
+ 35,2.13,5.0,0,0,57.0,1872.0,1,0
543
+ 76,0.49,20.1,0,1,42.7,1184.0,1,0
544
+ 31,1.61,29.8,0,0,96.3,1664.0,0,0
545
+ 35,1.07,5.0,1,1,75.2,1751.0,0,0
546
+ 43,1.3,31.1,0,0,64.8,1569.0,1,0
547
+ 47,1.57,9.6,0,1,83.6,2193.0,0,0
548
+ 27,0.3,20.5,0,0,66.8,1389.0,0,0
549
+ 55,1.37,11.4,1,1,52.4,1048.0,1,0
550
+ 27,3.26,24.9,1,0,73.2,249.0,1,0
551
+ 77,0.3,30.3,1,0,69.3,158.0,1,0
552
+ 79,1.15,25.8,1,0,25.6,1626.0,1,0
553
+ 69,2.21,18.0,1,0,54.3,1208.0,1,0
554
+ 47,1.47,12.3,1,0,38.4,892.0,1,0
555
+ 60,1.82,17.2,0,1,28.7,743.0,1,0
556
+ 83,0.3,25.9,1,1,81.7,1670.0,0,0
557
+ 46,1.74,26.3,0,1,53.3,808.0,1,0
558
+ 82,0.51,24.6,1,0,96.0,2115.0,0,0
559
+ 36,1.48,5.0,1,0,24.3,2475.0,1,0
560
+ 52,1.17,17.7,1,1,62.6,850.0,0,0
561
+ 48,3.25,10.4,0,0,54.6,1635.0,1,0
562
+ 32,1.69,26.0,1,1,30.6,1520.0,1,0
563
+ 65,1.1,8.8,1,0,70.1,806.0,0,0
564
+ 54,0.3,23.4,0,1,32.7,809.0,1,0
565
+ 25,1.31,14.6,0,0,75.6,1239.0,0,0
566
+ 88,1.94,5.0,1,1,88.0,731.0,0,0
567
+ 66,1.13,29.2,1,0,76.7,1846.0,0,0
568
+ 44,0.74,17.7,0,1,79.8,1177.0,0,0
569
+ 85,0.68,33.3,0,0,95.8,740.0,1,0
570
+ 29,1.68,5.0,0,1,69.3,1256.0,0,0
571
+ 75,1.88,14.5,0,1,49.3,1533.0,1,0
572
+ 49,2.43,15.4,1,0,54.8,938.0,1,0
573
+ 24,0.3,21.2,1,0,55.3,303.0,1,0
574
+ 52,1.67,5.0,1,0,43.9,1363.0,1,0
575
+ 84,1.09,24.5,0,0,89.6,692.0,0,0
576
+ 37,1.12,40.9,1,0,83.2,903.0,1,0
577
+ 68,1.56,23.7,0,0,28.4,1535.0,1,0
578
+ 30,1.57,19.1,0,0,49.3,1006.0,1,0
579
+ 45,1.68,5.0,0,1,42.7,1229.0,1,0
580
+ 82,0.3,8.7,0,1,77.9,2027.0,0,0
581
+ 78,0.53,17.3,0,0,96.9,1124.0,0,0
582
+ 46,2.54,11.6,0,1,81.2,2311.0,1,0
583
+ 68,1.0,30.3,0,1,52.5,1670.0,1,0
584
+ 52,1.48,24.4,0,1,62.0,834.0,0,0
585
+ 20,2.15,50.3,1,0,35.2,1062.0,1,0
586
+ 40,1.62,6.2,0,0,37.1,669.0,1,0
587
+ 74,1.69,18.4,1,1,91.2,1619.0,0,0
588
+ 25,2.01,5.0,0,1,106.1,1962.0,0,0
589
+ 88,0.3,5.0,1,0,52.1,1121.0,1,0
590
+ 24,0.76,26.7,1,1,71.2,369.0,0,0
591
+ 22,1.62,24.0,1,0,88.0,1480.0,0,0
592
+ 72,2.45,7.7,1,0,28.4,869.0,1,0
593
+ 42,1.26,19.1,0,1,43.8,945.0,1,0
594
+ 72,0.44,10.4,0,1,119.8,1456.0,0,0
595
+ 56,0.46,12.1,0,0,46.1,1916.0,1,0
596
+ 36,2.0,14.2,0,1,61.0,1670.0,0,0
597
+ 20,1.0,7.2,0,1,54.9,1515.0,1,0
598
+ 70,1.19,9.4,1,1,20.1,1221.0,1,0
599
+ 64,1.75,9.7,0,1,72.1,640.0,0,0
600
+ 23,0.3,23.1,1,0,69.4,1474.0,0,0
601
+ 81,3.0,5.0,1,0,74.5,1659.0,1,0
602
+ 84,0.54,15.3,1,0,67.9,1002.0,0,0
603
+ 51,1.42,5.0,1,1,58.5,1117.0,1,0
604
+ 53,0.3,5.4,1,1,57.1,1855.0,1,0
605
+ 58,0.82,11.7,0,0,57.5,1104.0,1,0
606
+ 45,2.32,17.8,0,0,45.3,1165.0,1,0
607
+ 53,0.3,15.4,1,0,49.2,1256.0,1,0
608
+ 73,2.21,5.2,1,0,45.7,1633.0,1,0
609
+ 22,0.95,26.7,1,1,84.3,1447.0,0,0
610
+ 69,1.64,7.2,0,1,77.7,1410.0,0,0
611
+ 31,1.79,9.2,1,0,70.7,2059.0,0,0
612
+ 84,1.6,21.4,0,1,118.6,1095.0,0,0
613
+ 73,0.42,21.8,0,1,46.9,825.0,1,0
614
+ 24,0.87,10.7,0,1,98.0,1811.0,0,0
615
+ 76,0.3,5.0,0,0,63.5,1415.0,0,0
616
+ 36,1.64,7.4,0,0,73.9,1005.0,0,0
617
+ 66,2.73,19.9,0,0,86.8,1120.0,1,0
618
+ 42,0.3,26.3,0,1,58.1,663.0,1,0
619
+ 33,0.51,17.0,0,1,43.6,1416.0,1,0
620
+ 85,1.04,12.3,1,1,47.7,569.0,1,0
621
+ 70,1.36,45.5,1,0,17.3,1641.0,1,0
622
+ 57,1.99,13.5,0,0,85.2,1039.0,0,0
623
+ 83,1.06,25.3,0,0,84.6,603.0,0,0
624
+ 57,0.92,5.0,1,1,109.6,1849.0,0,0
625
+ 69,2.19,5.0,0,0,80.4,2428.0,0,0
626
+ 49,1.8,25.8,0,0,86.4,1519.0,0,0
627
+ 70,1.69,30.5,1,1,68.0,1157.0,1,0
628
+ 82,1.3,13.3,1,1,81.6,820.0,0,0
629
+ 71,2.08,5.0,0,1,97.2,1431.0,0,0
630
+ 57,0.61,16.0,0,0,74.5,1618.0,0,0
631
+ 49,0.49,20.3,0,1,57.0,1303.0,1,0
632
+ 70,1.87,19.2,0,0,64.5,1748.0,0,0
633
+ 24,0.3,11.2,0,1,88.8,2057.0,0,0
634
+ 48,1.28,16.2,0,0,57.7,670.0,1,0
635
+ 23,0.92,9.0,0,0,92.2,1447.0,0,0
636
+ 29,0.3,5.0,1,1,117.7,348.0,0,0
637
+ 75,0.36,27.1,1,1,92.5,893.0,0,0
638
+ 36,1.1,19.2,1,1,88.7,1660.0,0,0
639
+ 36,2.13,16.2,1,0,78.7,1277.0,0,0
640
+ 88,0.61,11.9,0,0,50.6,495.0,1,0
641
+ 53,2.29,15.8,1,1,48.3,1825.0,1,0
642
+ 25,1.26,19.9,0,1,48.1,1028.0,1,0
643
+ 72,2.38,38.7,0,1,83.9,1725.0,1,0
644
+ 85,0.66,25.9,1,1,60.3,1556.0,0,0
645
+ 62,1.16,10.0,1,0,69.3,883.0,0,0
646
+ 42,1.53,10.1,1,1,80.5,1734.0,0,0
647
+ 74,1.04,8.3,0,0,49.0,1459.0,1,0
648
+ 35,2.06,15.6,1,0,57.5,1388.0,1,0
649
+ 27,0.3,8.3,1,0,78.1,1066.0,0,0
650
+ 23,3.38,23.7,0,0,62.7,749.0,1,0
651
+ 23,1.97,5.0,0,1,65.1,1091.0,0,0
652
+ 75,1.04,24.4,0,1,44.2,1080.0,1,0
653
+ 44,0.7,21.3,1,1,65.4,1726.0,0,0
654
+ 86,0.42,33.2,0,0,111.3,476.0,1,0
655
+ 86,1.78,28.5,0,0,58.8,2035.0,1,0
656
+ 46,2.1,9.8,0,0,41.3,2063.0,1,0
657
+ 51,1.05,27.2,0,1,94.0,979.0,0,0
658
+ 69,2.2,16.0,1,0,83.1,2001.0,0,0
659
+ 80,0.38,5.0,0,1,75.3,797.0,0,0
660
+ 70,0.3,19.9,1,0,37.0,1864.0,1,0
661
+ 38,2.83,10.5,1,0,40.6,890.0,1,0
662
+ 40,1.73,18.0,1,1,31.6,1817.0,1,0
663
+ 24,2.46,37.8,0,1,80.8,581.0,1,0
664
+ 61,0.43,20.7,0,0,95.5,1841.0,0,0
665
+ 80,0.37,5.8,0,1,81.6,1944.0,0,0
666
+ 41,0.88,29.6,0,1,118.7,565.0,0,0
667
+ 40,0.46,22.4,0,1,59.0,2179.0,1,0
668
+ 89,1.83,5.0,1,1,61.9,1809.0,0,0
669
+ 20,0.52,5.0,0,1,72.7,301.0,0,0
670
+ 24,0.3,6.3,0,0,64.3,1055.0,0,0
671
+ 31,1.33,28.0,0,1,82.5,1819.0,0,0
672
+ 65,0.3,14.4,0,0,54.0,1662.0,1,0
673
+ 53,0.3,19.0,1,1,35.1,1356.0,1,0
674
+ 68,1.32,5.0,0,0,25.3,1764.0,1,0
675
+ 64,0.3,28.4,0,0,82.0,863.0,0,0
676
+ 46,1.9,5.0,1,1,56.9,1324.0,1,0
677
+ 45,0.3,10.1,0,0,40.8,877.0,1,0
678
+ 66,0.3,23.0,0,0,54.5,1367.0,1,0
679
+ 75,0.94,5.0,0,1,118.8,1801.0,0,0
680
+ 82,1.33,25.4,0,1,42.2,1691.0,1,0
681
+ 67,1.64,7.6,0,1,88.2,1411.0,0,0
682
+ 80,1.35,5.0,0,0,80.5,1795.0,0,0
683
+ 45,0.3,33.4,1,1,103.5,1844.0,1,0
684
+ 55,1.84,19.8,0,0,66.9,2199.0,0,0
685
+ 20,2.06,24.2,1,0,31.0,1884.0,1,0
686
+ 27,0.3,30.2,1,1,94.8,1628.0,1,0
687
+ 71,1.04,5.0,0,1,63.8,1767.0,0,0
688
+ 66,0.95,25.6,0,0,101.9,1422.0,0,0
689
+ 75,1.4,8.9,0,1,90.4,1160.0,0,0
690
+ 33,1.02,10.4,1,0,94.9,1734.0,0,0
691
+ 47,1.14,23.2,1,0,120.0,1679.0,0,0
692
+ 21,1.78,13.6,1,0,77.0,1446.0,0,0
693
+ 45,0.3,25.1,0,1,106.1,1203.0,0,0
694
+ 33,1.86,17.5,1,1,59.9,1175.0,1,0
695
+ 78,2.23,20.0,0,1,83.5,1096.0,0,0
696
+ 75,2.67,12.1,0,1,57.4,1928.0,1,0
697
+ 26,0.3,5.2,0,1,82.0,1889.0,0,0
698
+ 22,1.04,9.1,0,0,79.4,1868.0,0,0
699
+ 42,0.3,16.8,0,0,18.5,774.0,1,0
700
+ 37,0.3,40.0,1,0,54.7,1120.0,1,0
701
+ 57,1.33,35.7,1,1,75.8,1171.0,1,0
702
+ 34,0.84,10.2,1,1,13.6,997.0,1,1
703
+ 83,1.47,18.7,0,0,67.6,2231.0,0,0
704
+ 47,1.64,14.5,1,0,95.2,1500.0,0,0
705
+ 58,2.32,19.6,0,0,102.5,1464.0,0,0
706
+ 76,1.25,21.1,0,1,50.4,1067.0,1,0
707
+ 36,3.83,24.3,0,0,104.1,1731.0,1,0
708
+ 63,1.48,5.0,0,0,100.2,2396.0,0,0
709
+ 44,2.86,22.4,0,1,16.3,1340.0,1,0
710
+ 36,0.3,13.2,0,1,72.9,1183.0,0,0
711
+ 32,2.41,9.5,0,0,75.7,1255.0,0,0
712
+ 44,1.04,27.5,1,0,108.0,1139.0,0,0
713
+ 87,0.3,35.6,0,1,77.2,1299.0,1,0
714
+ 29,1.58,26.3,1,0,104.8,994.0,0,0
715
+ 86,0.93,11.8,1,1,50.5,857.0,1,0
716
+ 37,1.72,5.1,0,1,30.0,1289.0,1,0
717
+ 53,2.11,5.0,1,0,53.8,1341.0,1,0
718
+ 27,0.3,20.2,0,0,109.4,1163.0,0,0
719
+ 59,2.11,24.9,1,0,93.1,2028.0,0,0
720
+ 61,1.21,16.8,0,0,120.0,1508.0,0,0
721
+ 60,2.42,29.2,1,1,33.9,1671.0,1,0
722
+ 25,1.02,5.0,1,1,96.0,1685.0,0,0
723
+ 71,0.78,15.9,1,0,88.9,1352.0,0,0
724
+ 45,1.22,15.0,1,0,62.9,1409.0,0,0
725
+ 83,1.29,16.7,0,0,89.4,870.0,0,0
726
+ 78,0.6,32.0,0,0,73.5,1628.0,1,0
727
+ 75,0.75,16.7,0,1,81.5,1133.0,0,0
728
+ 78,0.3,14.5,0,0,87.0,980.0,0,0
729
+ 89,0.81,6.8,0,1,94.5,1951.0,0,0
730
+ 52,1.81,33.9,1,0,72.2,634.0,1,0
731
+ 72,1.08,5.0,0,1,114.4,2160.0,0,0
732
+ 41,2.11,11.4,1,1,64.6,2120.0,0,0
733
+ 40,1.03,38.3,1,0,117.1,1189.0,1,0
734
+ 89,0.3,23.6,0,0,41.8,2193.0,1,0
735
+ 89,1.74,17.8,1,0,45.4,856.0,1,0
736
+ 23,0.59,18.3,0,0,46.8,1797.0,1,0
737
+ 81,0.99,6.6,1,1,93.9,1308.0,0,0
738
+ 81,2.31,17.2,0,1,49.9,397.0,1,0
739
+ 43,0.3,13.8,0,1,107.3,984.0,0,0
740
+ 74,1.35,20.2,0,1,56.8,1213.0,1,0
741
+ 28,1.16,5.0,0,0,80.0,1690.0,0,0
742
+ 22,1.83,22.8,0,1,86.0,1061.0,0,0
743
+ 50,1.97,30.2,0,1,44.6,1163.0,1,0
744
+ 59,1.44,15.6,0,0,35.2,1570.0,1,0
745
+ 55,0.88,25.8,1,0,77.1,1544.0,0,0
746
+ 43,1.63,21.7,0,1,63.1,1254.0,0,0
747
+ 25,2.4,10.7,0,0,82.5,1149.0,0,0
748
+ 85,1.18,5.3,1,0,36.4,1770.0,1,0
749
+ 23,0.96,7.0,1,1,61.1,1146.0,0,0
750
+ 25,1.55,21.5,1,1,65.5,705.0,0,0
751
+ 70,1.23,17.3,0,0,9.1,1103.0,1,1
752
+ 81,0.3,33.3,0,0,94.9,1573.0,1,0
753
+ 76,1.42,27.5,0,1,51.1,1225.0,1,0
754
+ 85,0.3,27.5,0,1,107.5,1049.0,0,0
755
+ 27,1.54,21.2,1,0,52.7,673.0,1,0
756
+ 45,0.48,6.5,0,1,57.0,1228.0,1,0
757
+ 70,1.23,21.9,1,1,39.0,1414.0,1,0
758
+ 64,1.55,18.8,0,1,98.7,796.0,0,0
759
+ 63,3.41,5.0,1,0,81.4,1205.0,1,0
760
+ 24,1.87,32.5,0,0,105.0,753.0,1,0
761
+ 89,2.43,31.2,1,1,64.8,1236.0,1,0
762
+ 45,2.88,5.0,1,0,69.0,2163.0,1,0
763
+ 87,1.64,10.3,1,1,27.9,1386.0,1,0
764
+ 38,1.46,11.4,0,0,54.4,509.0,1,0
765
+ 39,0.3,25.3,0,0,74.3,1466.0,0,0
766
+ 31,1.1,23.9,1,0,79.7,1956.0,0,0
767
+ 66,0.55,18.5,0,0,115.6,608.0,0,0
768
+ 20,0.84,21.3,0,1,23.7,777.0,1,0
769
+ 33,2.88,5.0,0,0,75.7,1429.0,1,0
770
+ 83,1.3,22.6,0,1,60.6,1256.0,0,0
771
+ 57,0.41,16.8,0,1,71.9,1906.0,0,0
772
+ 56,2.44,9.9,0,0,72.6,1210.0,0,0
773
+ 30,2.06,5.0,0,1,65.2,1713.0,0,0
774
+ 22,2.11,18.3,0,0,41.7,2064.0,1,0
775
+ 52,0.3,22.3,0,1,37.0,866.0,1,0
776
+ 25,2.95,5.0,0,1,63.4,1674.0,1,0
777
+ 69,0.7,18.2,0,0,34.5,1100.0,1,0
778
+ 29,1.9,19.5,1,0,67.2,192.0,0,0
779
+ 24,3.47,11.3,1,1,63.7,1538.0,1,0
780
+ 42,3.14,22.6,1,1,8.7,1600.0,1,1
781
+ 29,0.32,16.4,1,0,118.3,525.0,0,0
782
+ 63,0.3,21.4,0,1,71.9,1073.0,0,0
783
+ 21,2.49,24.4,1,0,9.1,988.0,1,1
784
+ 32,1.33,24.4,0,1,76.2,1705.0,0,0
785
+ 59,0.75,30.2,1,0,64.9,525.0,1,0
786
+ 21,1.76,22.1,0,1,37.1,1353.0,1,0
787
+ 84,1.05,12.3,1,0,77.7,130.0,0,0
788
+ 82,1.83,10.2,0,1,46.4,1490.0,1,0
789
+ 36,1.26,5.2,0,1,74.8,1363.0,0,0
790
+ 28,1.85,19.8,1,1,52.5,1045.0,1,0
791
+ 34,0.39,33.9,0,1,47.4,2014.0,1,0
792
+ 43,2.48,13.7,0,1,69.6,100.0,0,0
793
+ 57,1.83,23.4,0,1,29.4,1291.0,1,0
794
+ 54,1.78,9.0,0,1,67.9,1899.0,0,0
795
+ 68,0.3,20.3,0,1,86.4,1364.0,0,0
796
+ 88,2.73,33.1,1,1,101.8,1983.0,1,0
797
+ 81,1.19,26.2,0,1,97.2,1075.0,0,0
798
+ 79,1.86,5.0,0,0,103.8,1216.0,0,0
799
+ 69,0.91,24.8,0,1,58.6,1917.0,1,0
800
+ 28,1.43,25.4,1,0,44.4,1747.0,1,0
801
+ 53,1.47,20.1,1,1,90.4,2500.0,0,0
802
+ 54,0.3,26.0,1,1,57.1,1351.0,1,0
803
+ 20,1.72,8.0,1,1,70.2,1400.0,0,0
804
+ 59,2.97,18.8,1,0,88.7,1069.0,1,0
805
+ 83,1.69,31.3,1,0,120.0,1198.0,1,0
806
+ 41,0.34,30.2,1,1,83.2,1839.0,1,0
807
+ 79,1.78,24.6,0,0,75.1,1300.0,0,0
808
+ 83,2.15,7.4,1,0,42.0,896.0,1,0
809
+ 30,1.66,5.5,0,1,99.2,1112.0,0,0
810
+ 33,1.13,19.4,1,1,80.2,1255.0,0,0
811
+ 79,0.98,20.2,1,0,61.3,929.0,0,0
812
+ 49,0.98,16.8,1,1,58.7,1071.0,1,0
813
+ 54,1.83,8.3,1,0,59.8,800.0,1,0
814
+ 56,0.3,23.2,0,1,71.1,1089.0,0,0
815
+ 24,0.87,19.3,0,0,33.5,1883.0,1,0
816
+ 45,2.64,21.5,0,1,100.5,1324.0,1,0
817
+ 81,2.67,25.1,1,0,95.9,2531.0,1,0
818
+ 23,0.3,14.7,1,1,65.8,918.0,0,0
819
+ 61,0.3,12.1,1,0,59.9,1543.0,1,0
820
+ 37,0.96,31.3,1,1,69.4,1411.0,1,0
821
+ 59,2.0,8.9,1,0,73.7,1625.0,0,0
822
+ 58,0.3,12.4,1,0,62.5,997.0,0,0
823
+ 33,1.15,32.8,1,1,95.0,1116.0,1,0
824
+ 51,0.77,11.4,1,0,34.4,1504.0,1,0
825
+ 70,2.39,16.8,1,0,52.2,1048.0,1,0
826
+ 57,0.3,13.1,0,0,89.4,413.0,0,0
827
+ 42,1.28,5.0,1,0,78.1,1955.0,0,0
828
+ 82,0.85,16.5,0,0,53.0,1744.0,1,0
829
+ 34,2.52,5.9,0,0,80.0,1091.0,1,0
830
+ 44,1.74,21.1,1,0,50.2,1409.0,1,0
831
+ 36,0.67,31.3,0,1,62.2,1803.0,1,0
832
+ 85,1.97,5.0,1,1,96.1,1972.0,0,0
833
+ 72,0.85,13.1,0,0,93.3,1352.0,0,0
834
+ 70,2.1,23.4,0,1,77.2,1007.0,0,0
835
+ 58,0.99,5.0,0,1,43.7,2032.0,1,0
836
+ 70,2.15,34.0,0,0,60.6,1347.0,1,0
837
+ 89,1.59,22.6,0,0,72.4,1226.0,0,0
838
+ 25,4.13,31.0,0,1,106.4,1432.0,1,0
839
+ 86,1.15,11.2,0,0,25.4,1877.0,1,0
840
+ 26,1.54,12.7,0,0,48.2,1281.0,1,0
841
+ 70,0.77,16.1,0,0,98.2,1793.0,0,0
842
+ 61,1.2,43.7,1,1,104.0,1196.0,1,0
843
+ 83,0.3,33.8,0,0,68.3,1605.0,1,0
844
+ 34,1.62,19.6,1,1,108.5,826.0,0,0
845
+ 48,2.41,21.1,1,1,51.7,1835.0,1,0
846
+ 52,1.56,25.6,0,1,32.3,962.0,1,0
847
+ 46,0.3,46.7,1,1,89.8,1530.0,1,0
848
+ 55,0.48,22.6,1,0,102.4,557.0,0,0
849
+ 48,0.3,18.6,1,1,102.0,1312.0,0,0
850
+ 57,2.08,13.9,0,0,48.4,1394.0,1,0
851
+ 76,0.3,20.8,1,0,75.0,959.0,0,0
852
+ 46,1.17,11.0,1,0,91.0,1245.0,0,0
853
+ 74,1.06,24.0,0,0,77.5,1431.0,0,0
854
+ 52,2.54,5.0,0,0,106.2,1582.0,1,0
855
+ 87,1.28,14.9,0,0,59.9,1350.0,1,0
856
+ 85,1.93,26.8,1,0,68.2,1966.0,0,0
857
+ 29,1.69,22.4,0,1,75.9,1879.0,0,0
858
+ 24,2.42,12.4,1,0,90.8,1285.0,0,0
859
+ 57,0.98,15.2,0,1,65.1,635.0,0,0
860
+ 32,2.88,30.4,1,0,93.2,1056.0,1,0
861
+ 50,0.3,5.0,0,0,110.1,185.0,0,0
862
+ 66,1.97,5.0,0,0,57.0,1208.0,1,0
863
+ 71,0.42,6.8,0,0,65.9,2001.0,0,0
864
+ 75,0.76,17.9,0,1,94.2,1696.0,0,0
865
+ 34,1.71,5.0,0,0,118.2,1342.0,0,0
866
+ 48,1.71,29.4,0,1,85.9,936.0,0,0
867
+ 27,1.75,6.9,0,1,50.3,1361.0,1,0
868
+ 24,0.3,20.7,1,0,75.0,2366.0,0,0
869
+ 48,2.5,11.1,1,1,94.0,2044.0,0,0
870
+ 66,0.39,17.2,0,0,49.7,1225.0,1,0
871
+ 87,0.51,5.0,0,1,43.0,559.0,1,0
872
+ 64,1.77,30.0,0,1,61.4,2404.0,0,0
873
+ 21,0.94,6.5,1,0,86.5,936.0,0,0
874
+ 46,1.48,5.2,0,0,35.8,1565.0,1,0
875
+ 55,0.3,46.5,0,0,52.7,521.0,1,0
876
+ 55,1.46,24.7,0,0,76.8,1138.0,0,0
877
+ 45,1.4,29.5,1,1,97.3,519.0,0,0
878
+ 62,0.74,23.5,0,0,77.3,719.0,0,0
879
+ 46,0.3,12.6,1,0,79.4,838.0,0,0
880
+ 88,1.01,5.0,0,0,95.1,1539.0,0,0
881
+ 39,1.17,14.4,0,1,109.9,1252.0,0,0
882
+ 30,0.87,6.3,0,0,107.1,2656.0,0,0
883
+ 57,0.3,7.0,0,1,19.0,1867.0,1,0
884
+ 25,2.64,5.0,0,1,72.5,1878.0,1,0
885
+ 42,0.63,19.4,0,1,92.8,1552.0,0,0
886
+ 66,1.0,36.9,0,1,112.5,1438.0,1,0
887
+ 65,0.3,24.7,0,0,86.0,1895.0,0,0
888
+ 31,2.64,16.7,0,0,48.5,109.0,1,0
889
+ 32,0.78,17.5,1,1,51.8,989.0,1,0
890
+ 81,1.29,5.0,0,1,52.5,620.0,1,0
891
+ 79,2.21,12.9,1,1,77.7,358.0,0,0
892
+ 62,0.59,5.0,0,0,58.0,916.0,1,0
893
+ 87,2.07,19.6,0,0,5.0,726.0,1,1
894
+ 24,0.3,14.9,0,1,40.5,1897.0,1,0
895
+ 56,1.7,7.6,0,0,58.9,1346.0,1,0
896
+ 50,2.62,19.3,0,0,35.9,295.0,1,0
897
+ 28,0.68,19.2,0,0,39.7,1457.0,1,0
898
+ 70,2.21,36.2,1,1,120.0,794.0,1,0
899
+ 48,2.85,26.2,0,0,69.8,1331.0,1,0
900
+ 59,0.97,20.6,0,0,60.3,1497.0,0,0
901
+ 60,0.9,6.6,0,1,86.7,925.0,0,0
902
+ 30,0.39,5.1,0,0,98.7,1409.0,0,0
903
+ 42,0.74,25.2,1,1,120.0,1501.0,0,0
904
+ 20,0.47,15.6,0,1,112.6,1218.0,0,0
905
+ 65,0.39,21.0,0,0,80.9,940.0,0,0
906
+ 40,2.28,29.7,0,1,31.7,1302.0,1,0
907
+ 55,0.49,5.0,0,1,44.9,1230.0,1,0
908
+ 73,1.43,34.8,1,0,60.0,1458.0,1,0
909
+ 76,1.23,29.6,1,0,82.7,1168.0,0,0
910
+ 20,2.55,5.0,0,1,72.4,704.0,1,0
911
+ 82,0.75,46.2,0,0,33.2,1215.0,1,0
912
+ 73,1.54,21.9,1,1,28.7,1463.0,1,0
913
+ 74,1.91,12.3,0,1,76.5,1393.0,0,0
914
+ 59,2.54,24.2,0,0,73.0,1245.0,1,0
915
+ 34,0.73,6.3,1,1,64.8,1057.0,0,0
916
+ 40,0.64,24.6,0,0,82.1,1031.0,0,0
917
+ 66,0.3,8.5,0,1,101.2,1083.0,0,0
918
+ 72,3.21,42.2,0,0,77.8,1838.0,1,0
919
+ 28,2.45,18.7,1,1,46.5,826.0,1,0
920
+ 71,1.16,25.8,0,1,117.9,1345.0,0,0
921
+ 76,2.94,8.6,1,1,65.6,671.0,1,0
922
+ 45,1.11,27.8,1,1,71.2,1682.0,0,0
923
+ 60,1.85,17.8,0,1,53.7,1032.0,1,0
924
+ 54,1.21,5.0,0,0,43.1,887.0,1,0
925
+ 82,1.56,15.1,0,1,45.2,1408.0,1,0
926
+ 44,1.46,41.2,0,1,39.7,100.0,1,0
927
+ 57,0.82,28.3,1,1,5.0,650.0,1,1
928
+ 21,2.18,13.5,0,1,66.1,1480.0,0,0
929
+ 26,1.84,5.0,0,0,97.6,1807.0,0,0
930
+ 53,2.12,8.0,1,0,45.4,1525.0,1,0
931
+ 36,1.49,5.0,0,0,120.0,1370.0,0,0
932
+ 62,0.38,5.0,1,1,104.7,2505.0,0,0
933
+ 78,2.74,27.4,1,0,69.5,1546.0,1,0
934
+ 70,0.96,18.7,0,1,42.2,778.0,1,0
935
+ 73,1.53,39.5,0,0,30.1,1812.0,1,0
936
+ 43,1.77,6.0,1,0,67.2,979.0,0,0
937
+ 44,1.52,18.0,1,0,71.7,946.0,0,0
938
+ 90,2.02,5.0,0,0,64.9,610.0,0,0
939
+ 71,2.17,10.9,0,1,96.7,1094.0,0,0
940
+ 89,1.0,15.3,0,0,107.4,685.0,0,0
941
+ 52,2.66,13.5,0,0,81.8,1579.0,1,0
942
+ 68,0.96,18.6,0,0,83.2,1237.0,0,0
943
+ 48,1.5,29.7,0,1,62.1,620.0,0,0
944
+ 82,0.85,28.4,0,1,69.9,1259.0,0,0
945
+ 41,0.59,8.8,0,0,80.3,1797.0,0,0
946
+ 45,2.14,17.6,1,1,62.1,2111.0,0,0
947
+ 47,4.01,27.5,1,0,86.5,405.0,1,0
948
+ 68,0.87,30.4,0,0,43.6,911.0,1,0
949
+ 90,2.29,10.1,0,1,51.7,655.0,1,0
950
+ 68,0.91,26.5,0,0,43.8,1477.0,1,0
951
+ 39,1.19,22.0,0,1,53.3,596.0,1,0
952
+ 82,2.78,5.2,1,0,62.8,1830.0,1,0
953
+ 80,0.3,27.6,0,1,95.7,1902.0,0,0
954
+ 68,0.3,19.8,1,0,71.0,1709.0,0,0
955
+ 90,1.12,5.0,0,1,37.9,941.0,1,0
956
+ 20,1.8,14.5,1,1,35.0,973.0,1,0
957
+ 32,1.62,18.5,0,0,59.6,1072.0,1,0
958
+ 70,1.52,10.7,0,0,90.9,1853.0,0,0
959
+ 75,1.23,32.7,0,0,105.1,451.0,1,0
960
+ 81,1.91,33.2,1,1,30.2,1493.0,1,0
961
+ 51,0.3,13.4,1,0,79.3,833.0,0,0
962
+ 49,0.52,12.1,1,0,60.0,1090.0,0,0
963
+ 48,1.12,16.4,1,1,61.9,1668.0,0,0
964
+ 68,1.83,15.6,1,0,43.4,542.0,1,0
965
+ 64,2.54,10.9,0,1,64.5,1161.0,1,0
966
+ 49,0.4,5.0,0,0,42.3,1236.0,1,0
967
+ 35,2.51,39.1,1,0,63.4,1281.0,1,0
968
+ 59,0.79,18.0,1,1,98.7,1248.0,0,0
969
+ 38,1.08,15.9,1,1,85.8,1578.0,0,0
970
+ 37,1.72,21.9,0,0,117.8,1074.0,0,0
971
+ 20,1.02,17.0,0,0,83.2,1483.0,0,0
972
+ 66,2.2,12.8,1,0,74.4,1465.0,0,0
973
+ 85,0.84,5.9,0,0,83.8,1443.0,0,0
974
+ 57,0.85,5.0,0,0,50.6,1564.0,1,0
975
+ 70,2.15,5.0,1,0,17.8,1441.0,1,0
976
+ 82,0.51,5.0,1,1,89.9,1255.0,0,0
977
+ 23,1.42,25.8,0,1,25.1,666.0,1,0
978
+ 20,0.3,26.7,1,0,98.0,1979.0,0,0
979
+ 27,2.84,7.4,1,0,88.8,2147.0,1,0
980
+ 48,2.29,5.0,1,0,48.8,1120.0,1,0
981
+ 74,3.68,18.1,1,1,59.1,1528.0,1,0
982
+ 22,2.4,12.9,0,1,69.7,1026.0,0,0
983
+ 51,0.3,12.6,0,1,46.9,940.0,1,0
984
+ 29,1.8,29.5,0,1,83.5,1328.0,0,0
985
+ 53,0.37,19.7,0,1,85.7,2704.0,0,0
986
+ 74,2.62,6.3,0,0,33.9,2098.0,1,0
987
+ 51,0.3,5.0,0,0,49.4,2023.0,1,0
988
+ 69,0.3,14.8,0,1,69.1,1559.0,0,0
989
+ 26,0.3,7.1,0,0,98.5,841.0,0,0
990
+ 27,0.76,17.1,0,1,86.3,1818.0,0,0
991
+ 84,0.58,30.3,1,1,11.7,100.0,1,1
992
+ 76,0.3,5.0,0,1,62.7,1495.0,0,0
993
+ 86,2.99,19.1,0,0,81.8,1849.0,1,0
994
+ 78,1.68,29.0,0,1,50.0,1376.0,1,0
995
+ 73,1.57,17.0,0,1,48.1,2130.0,1,0
996
+ 86,2.63,26.7,1,1,51.3,587.0,1,0
997
+ 70,1.43,14.6,0,1,62.3,2100.0,0,0
998
+ 27,0.53,20.0,0,1,45.5,1221.0,1,0
999
+ 53,0.3,23.3,0,0,86.5,2025.0,0,0
1000
+ 54,0.48,11.1,0,0,48.5,1810.0,1,0
1001
+ 51,2.55,41.9,0,0,44.1,2057.0,1,0
1002
+ 65,0.3,24.9,0,0,60.0,1788.0,0,0
1003
+ 35,1.52,33.6,0,1,107.0,1646.0,1,0
1004
+ 87,2.13,30.9,1,1,83.1,1983.0,1,0
1005
+ 56,1.46,21.9,1,0,84.7,1328.0,0,0
1006
+ 73,1.56,34.6,0,0,77.2,1601.0,1,0
1007
+ 33,1.79,20.3,0,0,46.3,1298.0,1,0
1008
+ 74,1.54,9.2,0,1,54.0,957.0,1,0
1009
+ 67,2.65,18.2,0,0,49.8,1563.0,1,0
1010
+ 26,0.3,5.9,0,0,97.3,1398.0,0,0
1011
+ 26,1.42,5.0,1,0,77.4,1928.0,0,0
1012
+ 52,0.3,7.8,0,0,28.3,1204.0,1,0
1013
+ 42,0.3,18.9,1,1,106.3,920.0,0,0
1014
+ 38,1.13,30.7,0,0,61.7,1922.0,1,0
1015
+ 38,1.69,7.7,1,0,86.3,1332.0,0,0
1016
+ 55,2.67,30.1,1,0,96.3,904.0,1,0
1017
+ 48,3.38,5.0,1,0,5.9,1995.0,1,1
1018
+ 79,2.39,7.0,0,1,81.4,1763.0,0,0
1019
+ 21,1.85,35.4,1,0,63.7,2224.0,1,0
1020
+ 20,1.34,18.6,1,0,9.5,1130.0,1,1
1021
+ 66,0.3,15.9,1,1,41.7,1060.0,1,0
1022
+ 88,1.07,20.8,0,0,58.6,757.0,1,0
1023
+ 39,2.36,5.0,1,1,91.1,1017.0,0,0
1024
+ 30,2.01,14.0,0,0,65.6,1107.0,0,0
1025
+ 21,0.3,18.0,0,0,73.7,1642.0,0,0
1026
+ 86,1.75,32.8,1,1,61.1,835.0,1,0
1027
+ 31,1.68,5.0,0,1,97.2,968.0,0,0
1028
+ 39,1.51,39.2,0,1,83.0,2148.0,1,0
1029
+ 24,1.17,16.5,0,0,74.1,100.0,0,0
1030
+ 56,1.8,5.0,1,0,41.4,1540.0,1,0
1031
+ 57,1.83,5.0,0,0,73.0,655.0,0,0
1032
+ 28,0.62,21.3,0,1,120.0,897.0,0,0
1033
+ 72,1.61,5.0,0,1,89.9,2012.0,0,0
1034
+ 63,1.03,11.3,1,0,51.5,1336.0,1,0
1035
+ 43,0.3,15.0,0,1,116.3,2629.0,0,0
1036
+ 49,0.69,31.7,1,1,50.4,1613.0,1,0
1037
+ 78,0.3,30.2,0,0,87.9,885.0,1,0
1038
+ 33,2.08,10.3,1,1,68.8,1579.0,0,0
1039
+ 28,1.52,15.4,1,0,74.6,1865.0,0,0
1040
+ 59,0.88,5.0,0,0,75.5,1561.0,0,0
1041
+ 85,2.48,5.0,0,1,63.8,1192.0,0,0
1042
+ 44,1.26,5.0,1,0,60.3,454.0,0,0
1043
+ 41,0.3,31.5,0,0,37.1,1139.0,1,0
1044
+ 23,0.8,27.4,0,1,41.9,2134.0,1,0
1045
+ 45,2.67,22.6,1,1,78.3,902.0,1,0
1046
+ 77,0.6,5.0,1,1,52.9,1094.0,1,0
1047
+ 48,1.45,9.5,0,1,47.2,1797.0,1,0
1048
+ 56,1.87,7.7,0,0,120.0,1610.0,0,0
1049
+ 89,1.73,16.0,0,1,120.0,645.0,0,0
1050
+ 37,3.4,15.3,0,1,84.5,1246.0,1,0
1051
+ 61,0.3,6.0,1,0,88.0,2003.0,0,0
1052
+ 60,0.3,22.2,1,1,49.7,1313.0,1,0
1053
+ 57,0.3,20.7,1,0,40.4,2016.0,1,0
1054
+ 53,0.93,9.3,0,0,61.5,2044.0,0,0
1055
+ 36,2.19,21.7,0,1,70.0,836.0,0,0
1056
+ 56,0.3,31.5,0,1,87.8,1152.0,1,0
1057
+ 44,2.2,35.1,0,0,24.2,1629.0,1,0
1058
+ 46,1.23,23.9,1,0,120.0,531.0,0,0
1059
+ 76,0.3,23.5,0,1,76.2,1188.0,0,0
1060
+ 50,0.3,15.1,1,0,31.2,1573.0,1,0
1061
+ 25,0.3,30.4,1,0,73.9,989.0,1,0
1062
+ 59,0.6,5.2,1,1,47.4,1594.0,1,0
1063
+ 31,1.05,29.0,1,1,45.7,1000.0,1,0
1064
+ 72,2.41,14.5,1,1,43.4,994.0,1,0
1065
+ 90,1.92,35.9,0,1,63.6,1672.0,1,0
1066
+ 29,0.44,25.1,0,1,120.0,1984.0,0,0
1067
+ 64,1.57,17.2,0,1,72.3,945.0,0,0
1068
+ 36,2.69,15.2,0,0,87.3,694.0,1,0
1069
+ 45,2.89,24.3,1,1,93.5,1281.0,1,0
1070
+ 81,0.92,23.7,1,0,66.4,1533.0,0,0
1071
+ 65,2.06,13.2,0,0,41.0,940.0,1,0
1072
+ 83,2.45,19.1,0,0,30.0,2130.0,1,0
1073
+ 21,0.3,28.8,0,1,60.3,1227.0,0,0
1074
+ 73,0.74,5.0,1,0,98.6,935.0,0,0
1075
+ 84,3.2,26.7,1,0,93.4,2266.0,1,0
1076
+ 70,0.93,24.3,1,1,76.4,1933.0,0,0
1077
+ 72,0.3,32.2,0,1,79.7,936.0,1,0
1078
+ 55,1.09,9.4,0,1,66.6,1834.0,0,0
1079
+ 45,2.21,18.1,1,0,58.0,972.0,1,0
1080
+ 48,1.21,20.5,1,0,51.5,1684.0,1,0
1081
+ 40,1.84,26.9,0,1,33.2,2189.0,1,0
1082
+ 30,2.04,23.1,1,0,114.9,696.0,0,0
1083
+ 59,0.88,5.0,0,1,74.3,1031.0,0,0
1084
+ 30,0.73,21.5,1,0,58.9,1042.0,1,0
1085
+ 55,1.34,42.1,1,1,115.5,1433.0,1,0
1086
+ 78,1.36,25.3,1,0,120.0,1537.0,0,0
1087
+ 58,1.25,37.7,0,0,120.0,1255.0,1,0
1088
+ 73,1.29,30.5,0,1,63.8,459.0,1,0
1089
+ 74,0.53,34.3,1,0,72.6,684.0,1,0
1090
+ 43,1.88,21.7,1,0,86.3,858.0,0,0
1091
+ 41,1.74,24.3,0,1,111.6,1580.0,0,0
1092
+ 88,0.3,21.1,1,0,71.6,602.0,0,0
1093
+ 75,0.85,18.1,0,0,45.4,843.0,1,0
1094
+ 52,1.28,26.9,1,0,51.2,733.0,1,0
1095
+ 55,0.72,11.7,1,0,99.4,1471.0,0,0
1096
+ 39,1.77,40.6,0,0,85.5,1866.0,1,0
1097
+ 81,1.14,6.9,0,1,65.7,1377.0,0,0
1098
+ 45,1.35,27.7,0,1,64.0,2297.0,0,0
1099
+ 85,0.84,34.5,0,0,65.7,1377.0,1,0
1100
+ 59,0.3,15.9,0,0,101.0,1253.0,0,0
1101
+ 36,0.3,5.0,1,1,50.3,908.0,1,0
1102
+ 20,1.73,31.9,1,1,39.7,1401.0,1,0
1103
+ 80,1.44,20.4,0,0,115.4,887.0,0,0
1104
+ 62,1.59,27.8,0,1,70.6,811.0,0,0
1105
+ 61,1.32,16.7,0,1,68.0,796.0,0,0
1106
+ 44,1.39,38.8,0,0,86.8,1188.0,1,0
1107
+ 58,2.07,5.0,0,0,45.3,1050.0,1,0
1108
+ 54,1.6,22.5,1,0,88.8,2627.0,0,0
1109
+ 22,2.14,34.1,1,1,60.4,1405.0,1,0
1110
+ 63,1.35,19.3,0,1,98.1,1396.0,0,0
1111
+ 70,0.93,21.6,1,1,31.7,1024.0,1,0
1112
+ 31,1.37,12.8,1,0,81.3,2833.0,0,0
1113
+ 38,0.45,18.2,0,1,64.2,838.0,0,0
1114
+ 63,0.86,5.0,1,1,52.4,1063.0,1,0
1115
+ 78,1.36,9.4,1,1,89.3,1800.0,0,0
1116
+ 68,1.35,8.6,0,0,66.3,1401.0,0,0
1117
+ 80,1.1,26.0,0,1,81.7,663.0,0,0
1118
+ 36,0.3,11.1,1,0,101.6,1314.0,0,0
1119
+ 76,1.77,11.5,1,1,89.8,1640.0,0,0
1120
+ 74,1.95,13.5,0,1,43.0,1556.0,1,0
1121
+ 66,2.68,9.0,0,0,56.5,1631.0,1,0
1122
+ 31,1.6,21.2,0,1,81.5,2393.0,0,0
1123
+ 81,1.2,22.5,1,0,89.8,1436.0,0,0
1124
+ 27,0.3,27.9,0,1,60.2,1698.0,0,0
1125
+ 40,2.54,25.8,1,0,74.9,100.0,1,0
1126
+ 89,1.42,24.6,0,1,74.8,2233.0,0,0
1127
+ 44,1.37,14.1,0,1,78.3,1332.0,0,0
1128
+ 31,0.97,13.3,0,0,40.5,866.0,1,0
1129
+ 34,0.91,7.5,0,1,34.6,1202.0,1,0
1130
+ 78,1.82,7.3,0,0,13.5,1631.0,1,1
1131
+ 45,0.3,20.3,0,0,72.6,1817.0,0,0
1132
+ 45,2.66,9.4,0,1,35.9,1252.0,1,0
1133
+ 66,2.47,35.6,0,1,120.0,1601.0,1,0
1134
+ 51,0.88,17.5,0,1,86.4,1168.0,0,0
1135
+ 29,0.42,36.0,0,1,40.5,1546.0,1,0
1136
+ 35,0.3,24.9,1,1,98.4,1403.0,0,0
1137
+ 90,0.3,8.7,1,1,98.4,1450.0,0,0
1138
+ 36,1.86,17.3,1,1,100.5,1145.0,0,0
1139
+ 42,1.48,5.0,0,0,49.8,1502.0,1,0
1140
+ 45,1.64,20.3,0,0,87.9,887.0,0,0
1141
+ 26,0.3,9.8,0,0,100.9,1397.0,0,0
1142
+ 33,0.84,5.0,0,1,109.3,983.0,0,0
1143
+ 26,2.43,36.3,1,1,31.9,803.0,1,0
1144
+ 28,1.11,30.4,0,1,64.6,947.0,1,0
1145
+ 67,0.3,30.0,0,0,48.9,1196.0,1,0
1146
+ 78,1.1,27.4,0,1,116.6,1036.0,0,0
1147
+ 58,0.51,5.0,1,0,82.3,1498.0,0,0
1148
+ 37,1.5,13.2,1,1,92.3,1340.0,0,0
1149
+ 78,1.22,13.9,0,0,81.9,1807.0,0,0
1150
+ 36,1.69,5.0,0,0,79.4,1258.0,0,0
1151
+ 33,0.3,11.3,1,1,48.4,1390.0,1,0
1152
+ 50,0.8,11.4,1,1,58.8,2233.0,1,0
1153
+ 43,2.18,19.5,0,0,71.8,1081.0,0,0
1154
+ 79,0.3,48.4,0,0,53.8,1157.0,1,0
1155
+ 64,0.3,17.7,1,0,49.2,1902.0,1,0
1156
+ 22,1.38,19.5,1,0,64.9,822.0,0,0
1157
+ 56,1.46,15.0,0,0,54.9,1958.0,1,0
1158
+ 62,0.76,26.9,0,1,71.2,1182.0,0,0
1159
+ 59,0.95,5.1,1,1,58.9,883.0,1,0
1160
+ 74,1.68,40.8,1,0,52.9,1753.0,1,0
1161
+ 58,1.96,16.5,1,1,46.8,1174.0,1,0
1162
+ 34,0.3,13.3,1,0,70.2,2212.0,0,0
1163
+ 23,1.53,29.6,0,0,92.2,1341.0,0,0
1164
+ 44,2.56,7.3,1,0,86.3,1337.0,1,0
1165
+ 32,1.1,26.6,0,1,31.8,1007.0,1,0
1166
+ 52,0.3,34.9,1,0,91.5,1227.0,1,0
1167
+ 35,0.3,15.1,0,0,86.1,1164.0,0,0
1168
+ 61,1.06,42.6,1,0,92.2,1966.0,1,0
1169
+ 85,2.13,25.7,0,0,97.1,1445.0,0,0
1170
+ 74,1.16,25.9,0,0,51.8,1653.0,1,0
1171
+ 61,1.37,34.4,0,1,62.5,1349.0,1,0
1172
+ 53,0.3,37.6,1,1,114.8,1095.0,1,0
1173
+ 49,2.08,21.1,1,1,113.3,1485.0,0,0
1174
+ 32,0.3,27.6,1,0,68.1,2095.0,0,0
1175
+ 32,0.75,34.8,0,0,85.1,776.0,1,0
1176
+ 37,1.77,5.0,0,0,87.3,1510.0,0,0
1177
+ 51,0.3,5.0,1,0,113.9,2048.0,0,0
1178
+ 58,1.36,17.3,1,1,78.6,893.0,0,0
1179
+ 65,0.3,5.0,1,0,39.7,1761.0,1,0
1180
+ 48,1.21,14.2,1,0,58.1,1762.0,1,0
1181
+ 81,0.88,21.8,1,1,120.0,653.0,0,0
1182
+ 81,3.1,14.7,0,0,38.5,1855.0,1,0
1183
+ 76,0.85,16.3,1,1,71.3,1003.0,0,0
1184
+ 35,2.86,6.0,1,0,120.0,1479.0,1,0
1185
+ 75,1.73,27.5,1,1,50.0,1812.0,1,0
1186
+ 29,0.48,5.2,1,0,5.0,1900.0,1,1
1187
+ 49,1.5,5.0,0,1,6.4,532.0,1,1
1188
+ 44,0.93,15.5,0,0,50.1,2194.0,1,0
1189
+ 24,1.42,29.0,0,1,25.9,2009.0,1,0
1190
+ 84,0.56,19.0,0,0,95.9,1826.0,0,0
1191
+ 68,2.72,5.0,1,1,76.7,1481.0,1,0
1192
+ 22,2.03,19.2,1,0,16.7,1082.0,1,0
1193
+ 64,1.23,23.3,0,0,30.1,758.0,1,0
1194
+ 33,2.76,19.1,0,1,101.0,488.0,1,0
1195
+ 49,1.27,14.8,1,1,74.8,1622.0,0,0
1196
+ 87,2.19,23.8,1,0,105.8,1826.0,0,0
1197
+ 37,1.23,5.0,0,1,98.0,1258.0,0,0
1198
+ 81,1.55,7.3,1,0,41.2,1070.0,1,0
1199
+ 56,1.13,5.0,0,1,92.0,1335.0,0,0
1200
+ 44,1.29,34.2,0,1,84.1,980.0,1,0
1201
+ 67,1.35,26.5,0,0,21.0,1311.0,1,0
1202
+ 84,0.6,20.2,0,1,36.0,951.0,1,0
1203
+ 72,0.84,5.0,0,1,120.0,1606.0,0,0
1204
+ 34,1.0,26.9,1,0,46.8,1922.0,1,0
1205
+ 68,1.41,34.6,1,1,80.3,1554.0,1,0
1206
+ 87,1.17,24.9,0,0,65.2,1260.0,0,0
1207
+ 31,2.26,17.6,0,1,74.6,1795.0,0,0
1208
+ 78,1.96,25.6,0,1,66.9,1309.0,0,0
1209
+ 56,1.02,21.3,1,0,94.1,1779.0,0,0
1210
+ 80,2.44,29.1,1,1,93.5,982.0,0,0
1211
+ 62,2.89,28.8,0,1,72.9,1047.0,1,0
1212
+ 89,0.3,15.3,0,1,47.4,806.0,1,0
1213
+ 58,2.04,10.1,1,0,55.8,1067.0,1,0
1214
+ 75,0.58,13.2,0,0,30.6,1791.0,1,0
1215
+ 82,1.92,24.4,0,1,61.6,864.0,0,0
1216
+ 65,2.31,13.9,1,0,25.8,148.0,1,0
1217
+ 30,0.41,9.0,0,0,75.5,1093.0,0,0
1218
+ 81,0.3,18.0,0,1,77.4,713.0,0,0
1219
+ 44,1.95,31.3,0,0,95.1,1048.0,1,0
1220
+ 90,1.32,19.6,0,1,39.5,2353.0,1,0
1221
+ 71,0.3,14.7,1,1,41.2,856.0,1,0
1222
+ 23,3.48,21.8,1,1,108.1,1617.0,1,0
1223
+ 78,1.76,19.0,1,0,35.8,1260.0,1,0
1224
+ 39,1.8,5.0,1,0,120.0,1486.0,0,0
1225
+ 82,2.43,26.4,0,0,46.9,1045.0,1,0
1226
+ 73,0.68,22.9,1,1,47.1,1881.0,1,0
1227
+ 76,1.32,18.2,1,0,91.1,1513.0,0,0
1228
+ 60,0.3,30.7,0,1,83.7,1527.0,1,0
1229
+ 22,0.65,32.6,0,1,111.0,1349.0,1,0
1230
+ 25,1.55,27.6,1,1,22.7,1928.0,1,0
1231
+ 24,0.3,7.8,1,0,83.3,1580.0,0,0
1232
+ 24,0.63,8.2,0,0,68.9,1485.0,0,0
1233
+ 73,0.36,31.4,0,1,43.1,1626.0,1,0
1234
+ 66,1.33,5.0,1,0,117.0,420.0,0,0
1235
+ 68,1.72,16.2,0,0,75.9,1394.0,0,0
1236
+ 28,1.87,23.3,1,0,68.4,1268.0,0,0
1237
+ 39,2.1,5.0,0,1,81.4,1884.0,0,0
1238
+ 80,2.43,20.8,1,1,26.8,949.0,1,0
1239
+ 54,1.75,29.5,0,1,38.8,1401.0,1,0
1240
+ 69,2.9,5.0,0,1,61.7,2262.0,1,0
1241
+ 81,1.31,37.9,0,0,77.9,1287.0,1,0
1242
+ 36,1.04,5.9,0,1,101.9,635.0,0,0
1243
+ 22,1.75,24.9,1,0,47.9,2387.0,1,0
1244
+ 51,1.01,17.0,0,1,42.2,942.0,1,0
1245
+ 32,2.87,18.8,0,0,82.5,780.0,1,0
1246
+ 87,2.22,5.0,0,0,66.6,800.0,0,0
1247
+ 33,1.88,33.1,1,1,22.0,1664.0,1,0
1248
+ 30,1.32,21.9,1,0,47.0,1949.0,1,0
1249
+ 75,0.83,37.5,0,1,65.5,2180.0,1,0
1250
+ 86,1.83,5.0,1,0,66.1,1308.0,0,0
1251
+ 48,0.3,15.8,1,0,72.2,807.0,0,0
1252
+ 28,2.58,20.5,1,0,37.5,1015.0,1,0
1253
+ 86,1.04,18.7,0,1,66.7,1317.0,0,0
1254
+ 44,1.47,26.0,1,0,93.7,1289.0,0,0
1255
+ 61,0.38,15.7,0,1,5.0,1954.0,1,1
1256
+ 28,1.85,43.5,0,0,62.9,641.0,1,0
1257
+ 59,0.79,18.5,0,0,28.5,742.0,1,0
1258
+ 44,1.78,5.0,0,0,69.2,1145.0,0,0
1259
+ 24,1.88,19.0,0,1,32.4,1485.0,1,0
1260
+ 30,0.62,33.1,1,1,73.4,1079.0,1,0
1261
+ 78,0.3,6.9,0,0,110.7,1038.0,0,0
1262
+ 57,2.58,6.2,0,1,45.5,1887.0,1,0
1263
+ 24,1.03,7.9,0,1,49.1,1536.0,1,0
1264
+ 67,1.4,5.1,0,0,58.3,808.0,1,0
1265
+ 37,1.64,12.2,0,1,78.0,1045.0,0,0
1266
+ 89,0.3,28.9,0,0,44.5,1558.0,1,0
1267
+ 56,1.62,36.3,0,1,60.5,669.0,1,0
1268
+ 79,1.29,5.0,0,1,53.3,1555.0,1,0
1269
+ 67,0.62,13.5,0,0,58.3,1128.0,1,0
1270
+ 47,0.3,21.6,0,0,78.3,1481.0,0,0
1271
+ 88,1.75,20.4,1,1,83.8,1360.0,0,0
1272
+ 59,2.21,40.8,1,1,33.1,741.0,1,0
1273
+ 64,1.36,5.0,1,1,78.2,982.0,0,0
1274
+ 81,0.3,5.0,0,0,120.0,2024.0,0,0
1275
+ 77,0.3,42.7,0,0,108.6,2486.0,1,0
1276
+ 86,0.81,27.0,1,0,54.0,426.0,1,0
1277
+ 75,2.61,11.1,0,0,73.3,1822.0,1,0
1278
+ 59,0.98,20.1,0,1,69.2,1448.0,0,0
1279
+ 59,0.78,20.9,0,1,81.5,2341.0,0,0
1280
+ 52,0.3,10.9,0,1,59.4,1021.0,1,0
1281
+ 25,0.61,19.7,0,0,63.3,1749.0,0,0
1282
+ 38,0.3,22.3,1,1,51.7,1149.0,1,0
1283
+ 59,0.3,42.2,0,1,97.4,1941.0,1,0
1284
+ 78,1.31,29.6,1,1,77.8,2456.0,0,0
1285
+ 78,0.84,38.9,0,1,78.0,1407.0,1,0
1286
+ 67,2.73,5.0,0,1,100.5,731.0,1,0
1287
+ 60,2.17,13.8,1,1,100.8,2007.0,0,0
1288
+ 32,0.65,20.9,1,0,96.1,1583.0,0,0
1289
+ 64,0.37,5.0,0,0,100.1,1489.0,0,0
1290
+ 72,2.44,32.2,0,1,109.1,2092.0,1,0
1291
+ 61,2.69,25.7,1,0,45.8,731.0,1,0
1292
+ 82,0.3,13.6,0,0,62.5,942.0,0,0
1293
+ 46,1.28,15.8,0,0,87.7,1597.0,0,0
1294
+ 57,0.97,33.0,1,1,47.9,931.0,1,0
1295
+ 79,1.78,8.5,0,1,60.9,1142.0,0,0
1296
+ 26,2.95,33.5,0,0,74.9,1937.0,1,0
1297
+ 24,0.76,15.0,0,1,64.2,1516.0,0,0
1298
+ 64,0.3,27.1,0,1,71.7,711.0,0,0
1299
+ 77,1.72,19.0,1,0,41.4,1504.0,1,0
1300
+ 50,2.45,44.8,0,0,69.1,1920.0,1,0
1301
+ 42,0.93,7.4,1,1,73.4,1386.0,0,0
1302
+ 61,0.57,11.1,0,0,110.4,1736.0,0,0
1303
+ 29,0.81,5.0,0,1,63.3,1041.0,0,0
1304
+ 51,1.97,5.0,0,1,53.7,1430.0,1,0
1305
+ 72,0.79,26.6,1,0,87.8,512.0,0,0
1306
+ 49,1.5,37.2,1,1,5.0,1615.0,1,1
1307
+ 58,1.23,27.9,0,0,62.1,1480.0,0,0
1308
+ 50,1.13,17.9,0,0,57.2,655.0,1,0
1309
+ 21,1.83,7.3,0,0,76.5,2060.0,0,0
1310
+ 31,0.77,28.8,1,0,101.2,1586.0,0,0
1311
+ 58,0.81,6.6,0,1,108.8,954.0,0,0
1312
+ 85,1.92,5.0,1,1,76.2,1628.0,0,0
1313
+ 32,0.31,14.3,0,1,31.2,808.0,1,0
1314
+ 65,0.41,5.0,0,0,57.1,877.0,1,0
1315
+ 46,0.3,5.0,0,1,59.9,810.0,1,0
1316
+ 36,1.96,40.6,0,1,79.2,796.0,1,0
1317
+ 79,1.11,5.0,1,1,71.4,1519.0,0,0
1318
+ 83,0.3,5.0,1,1,52.8,1347.0,1,0
1319
+ 54,1.97,18.9,0,0,38.7,1674.0,1,0
1320
+ 89,0.7,19.5,0,0,48.3,100.0,1,0
1321
+ 49,0.42,15.2,0,0,47.4,1104.0,1,0
1322
+ 90,1.02,5.0,1,1,110.5,1111.0,0,0
1323
+ 82,2.53,28.2,0,1,50.8,1326.0,1,0
1324
+ 47,0.84,12.7,0,0,71.5,1313.0,0,0
1325
+ 79,1.72,32.6,0,0,94.2,1414.0,1,0
1326
+ 56,1.85,10.3,0,0,74.9,1344.0,0,0
1327
+ 41,1.6,29.8,0,1,42.8,1071.0,1,0
1328
+ 87,2.34,33.6,0,0,94.6,1100.0,1,0
1329
+ 39,0.56,12.4,0,0,78.9,1274.0,0,0
1330
+ 87,0.3,28.6,1,0,15.4,1552.0,1,0
1331
+ 83,0.3,5.0,0,1,101.1,1343.0,0,0
1332
+ 36,1.07,21.2,0,1,91.8,907.0,0,0
1333
+ 31,0.35,32.7,1,1,78.5,881.0,1,0
1334
+ 41,1.33,24.2,0,0,110.9,1555.0,0,0
1335
+ 36,1.27,46.9,1,0,91.3,1679.0,1,0
1336
+ 29,2.12,24.9,0,0,98.2,1836.0,0,0
1337
+ 84,1.46,13.6,0,0,95.9,1055.0,0,0
1338
+ 41,0.83,52.1,0,0,88.9,361.0,1,0
1339
+ 69,1.57,37.6,0,0,25.2,1491.0,1,0
1340
+ 33,0.3,5.0,1,1,28.2,942.0,1,0
1341
+ 83,1.17,8.6,0,0,91.3,1248.0,0,0
1342
+ 66,1.49,5.5,0,0,100.8,1374.0,0,0
1343
+ 48,1.32,25.7,0,1,52.4,1577.0,1,0
1344
+ 55,1.57,24.9,0,1,42.2,1747.0,1,0
1345
+ 71,0.62,24.8,0,1,76.6,1885.0,0,0
1346
+ 26,2.24,5.0,0,1,33.7,1960.0,1,0
1347
+ 48,2.84,10.3,0,0,65.8,1352.0,1,0
1348
+ 30,0.3,16.2,1,1,61.1,456.0,0,0
1349
+ 52,0.3,5.0,0,1,64.4,995.0,0,0
1350
+ 25,1.24,7.5,1,0,117.1,2004.0,0,0
1351
+ 51,0.97,34.3,1,0,54.2,1374.0,1,0
1352
+ 70,2.91,5.0,0,0,71.3,2389.0,1,0
1353
+ 77,1.4,35.5,1,0,37.2,1111.0,1,0
1354
+ 45,2.45,31.1,1,0,93.5,2456.0,1,0
1355
+ 65,0.3,14.5,0,0,65.5,1299.0,0,0
1356
+ 48,1.93,10.2,1,0,99.5,1090.0,0,0
1357
+ 23,0.56,28.0,0,0,8.6,944.0,1,1
1358
+ 32,0.54,8.5,0,0,68.5,1630.0,0,0
1359
+ 58,0.98,9.1,1,0,73.3,593.0,0,0
1360
+ 34,0.3,17.7,0,0,92.8,1025.0,0,0
1361
+ 48,1.6,5.0,0,1,54.0,1274.0,1,0
1362
+ 48,1.37,5.0,0,0,89.7,171.0,0,0
1363
+ 51,1.44,14.2,1,1,56.8,1251.0,1,0
1364
+ 21,2.0,23.7,1,1,72.3,2160.0,0,0
1365
+ 66,2.56,8.4,0,1,93.0,1516.0,1,0
1366
+ 41,0.87,15.6,1,1,46.8,971.0,1,0
1367
+ 46,1.63,5.0,0,0,88.5,1061.0,0,0
1368
+ 86,1.46,29.2,0,0,78.4,1469.0,0,0
1369
+ 75,1.54,20.6,1,1,61.7,1045.0,0,0
1370
+ 40,1.55,21.7,1,0,53.3,1534.0,1,0
1371
+ 66,2.63,23.9,0,1,17.5,1031.0,1,0
1372
+ 78,0.79,18.9,0,1,68.0,788.0,0,0
1373
+ 25,0.3,12.2,1,0,61.7,1890.0,0,0
1374
+ 38,0.57,31.6,1,0,86.0,1655.0,1,0
1375
+ 76,1.88,19.9,1,1,83.4,356.0,0,0
1376
+ 88,1.22,16.0,0,0,96.8,1132.0,0,0
1377
+ 22,0.78,17.9,1,0,97.7,1821.0,0,0
1378
+ 20,0.3,17.6,1,1,120.0,1217.0,0,0
1379
+ 77,1.4,15.9,0,1,82.8,1010.0,0,0
1380
+ 57,1.78,23.4,1,0,48.5,1174.0,1,0
1381
+ 34,1.48,6.8,1,0,90.7,1355.0,0,0
1382
+ 53,0.97,7.6,1,1,110.1,1210.0,0,0
1383
+ 80,1.33,24.7,1,1,81.9,1259.0,0,0
1384
+ 54,1.33,16.3,1,1,16.9,1225.0,1,0
1385
+ 83,1.37,29.7,1,1,83.9,813.0,0,0
1386
+ 44,0.3,22.9,0,0,54.3,787.0,1,0
1387
+ 43,1.38,11.4,1,0,37.0,755.0,1,0
1388
+ 31,0.8,24.9,1,1,74.7,1346.0,0,0
1389
+ 37,2.14,32.4,1,1,31.9,1591.0,1,0
1390
+ 34,1.32,23.4,0,0,95.6,829.0,0,0
1391
+ 46,1.95,26.0,0,0,88.3,550.0,0,0
1392
+ 79,0.93,15.9,0,1,67.8,864.0,0,0
1393
+ 65,0.96,29.9,1,0,56.2,2001.0,1,0
1394
+ 36,2.54,11.0,1,1,65.4,1143.0,1,0
1395
+ 72,1.59,22.1,0,0,44.7,1193.0,1,0
1396
+ 27,0.56,48.8,0,0,68.1,901.0,1,0
1397
+ 46,2.01,24.5,0,0,5.0,1586.0,1,1
1398
+ 65,0.72,13.0,0,1,72.2,1238.0,0,0
1399
+ 69,1.4,12.9,1,1,72.9,937.0,0,0
1400
+ 90,2.85,17.1,0,1,91.1,785.0,1,0
1401
+ 22,0.3,28.2,0,1,77.5,1489.0,0,0
1402
+ 83,1.04,19.7,0,0,94.4,1432.0,0,0
1403
+ 63,1.57,10.2,0,0,83.7,681.0,0,0
1404
+ 72,1.89,10.2,1,1,95.9,1914.0,0,0
1405
+ 43,0.3,19.8,0,1,120.0,979.0,0,0
1406
+ 79,0.3,18.5,1,1,80.5,188.0,0,0
1407
+ 22,2.18,23.5,0,1,74.6,2064.0,0,0
1408
+ 39,0.55,29.0,0,0,99.7,1249.0,0,0
1409
+ 65,0.51,50.7,0,0,58.3,1517.0,1,0
1410
+ 34,2.6,5.0,1,1,67.0,2136.0,1,0
1411
+ 44,1.26,26.2,0,0,80.5,799.0,0,0
1412
+ 90,1.27,19.2,1,0,71.8,1540.0,0,0
1413
+ 36,1.04,5.0,1,1,71.7,1888.0,0,0
1414
+ 28,0.3,33.0,0,0,92.5,833.0,1,0
1415
+ 57,1.81,23.1,1,1,27.6,2030.0,1,0
1416
+ 67,1.57,27.6,1,0,120.0,595.0,0,0
1417
+ 79,1.35,5.0,0,1,82.1,1252.0,0,0
1418
+ 82,1.1,15.4,0,1,60.0,762.0,0,0
1419
+ 21,0.94,5.0,1,1,110.7,1648.0,0,0
1420
+ 30,2.02,44.0,0,0,72.6,817.0,1,0
1421
+ 83,1.07,31.7,1,0,73.2,991.0,1,0
1422
+ 40,1.14,9.8,0,0,64.6,861.0,0,0
1423
+ 37,1.68,5.0,0,0,106.7,699.0,0,0
1424
+ 83,1.39,20.3,1,1,69.8,917.0,0,0
1425
+ 57,2.68,31.1,1,0,56.0,1277.0,1,0
1426
+ 51,0.3,5.0,0,0,95.0,1250.0,0,0
1427
+ 30,1.47,6.8,1,0,99.6,1192.0,0,0
1428
+ 64,0.56,5.0,0,1,110.2,967.0,0,0
1429
+ 52,0.35,28.4,0,0,85.8,1122.0,0,0
1430
+ 60,0.79,13.6,1,1,98.7,507.0,0,0
1431
+ 27,1.25,14.1,0,1,63.5,951.0,0,0
1432
+ 30,1.29,20.1,0,1,95.6,1189.0,0,0
1433
+ 70,0.3,7.5,0,1,88.6,1447.0,0,0
1434
+ 60,0.71,5.0,1,0,83.3,1386.0,0,0
1435
+ 36,1.45,34.4,0,1,31.1,686.0,1,0
1436
+ 65,0.41,35.5,0,1,60.3,1514.0,1,0
1437
+ 51,0.3,20.2,1,1,68.9,1361.0,0,0
1438
+ 73,0.3,21.0,0,1,83.3,2020.0,0,0
1439
+ 39,0.6,33.1,1,0,120.0,553.0,1,0
1440
+ 52,0.3,19.9,1,0,91.5,1232.0,0,0
1441
+ 59,0.31,13.0,0,1,49.7,1816.0,1,0
1442
+ 51,0.96,18.5,0,1,58.0,1152.0,1,0
1443
+ 21,0.66,34.7,0,0,104.7,843.0,1,0
1444
+ 52,0.3,18.6,1,0,56.9,892.0,1,0
1445
+ 49,0.3,10.0,1,0,95.5,1692.0,0,0
1446
+ 52,1.47,19.8,0,1,72.9,526.0,0,0
1447
+ 45,1.88,25.9,0,1,65.8,1133.0,0,0
1448
+ 41,0.84,24.4,0,1,57.3,862.0,1,0
1449
+ 85,0.96,24.6,0,0,5.0,900.0,1,1
1450
+ 57,1.2,8.1,0,0,83.5,1521.0,0,0
1451
+ 65,2.62,27.2,1,0,43.7,1102.0,1,0
1452
+ 34,0.3,18.3,0,0,34.5,1417.0,1,0
1453
+ 63,0.83,9.5,1,1,76.2,679.0,0,0
1454
+ 68,0.3,27.1,0,0,95.7,1715.0,0,0
1455
+ 80,1.53,12.6,0,1,27.6,1406.0,1,0
1456
+ 86,1.07,5.0,0,1,95.1,1919.0,0,0
1457
+ 25,1.38,6.0,1,1,47.4,1097.0,1,0
1458
+ 28,1.34,15.8,0,0,86.2,1525.0,0,0
1459
+ 25,2.09,24.9,0,0,84.5,1692.0,0,0
1460
+ 51,1.68,7.6,0,0,64.8,1515.0,0,0
1461
+ 60,1.95,15.1,1,1,70.7,2149.0,0,0
1462
+ 27,0.3,5.0,0,1,60.1,468.0,0,0
1463
+ 69,2.27,29.8,0,0,76.6,1387.0,0,0
1464
+ 81,0.55,38.6,1,0,76.4,1097.0,1,0
1465
+ 81,0.6,37.3,1,1,46.9,1061.0,1,0
1466
+ 26,1.44,29.6,0,1,36.1,2047.0,1,0
1467
+ 23,1.47,28.4,1,1,95.2,990.0,0,0
1468
+ 25,0.3,5.0,0,0,75.1,1726.0,0,0
1469
+ 77,1.04,20.1,1,0,91.7,773.0,0,0
1470
+ 41,2.54,12.0,1,0,53.2,1810.0,1,0
1471
+ 45,0.3,28.6,0,0,49.4,1289.0,1,0
1472
+ 22,2.54,5.0,1,1,44.7,1159.0,1,0
1473
+ 60,0.98,20.3,0,0,65.5,532.0,0,0
1474
+ 79,0.3,15.4,0,0,75.8,1160.0,0,0
1475
+ 33,0.3,31.4,1,1,56.4,957.0,1,0
1476
+ 31,0.33,36.6,1,0,109.1,2174.0,1,0
1477
+ 31,0.64,6.9,0,1,53.9,1326.0,1,0
1478
+ 32,1.11,7.4,0,0,76.2,1002.0,0,0
1479
+ 44,0.3,20.8,0,1,47.9,981.0,1,0
1480
+ 64,1.37,38.8,1,0,53.2,620.0,1,0
1481
+ 38,0.3,18.7,1,1,67.8,2061.0,0,0
1482
+ 74,2.45,5.0,1,0,49.2,1928.0,1,0
1483
+ 64,0.96,10.7,0,0,72.2,1267.0,0,0
1484
+ 27,2.05,20.4,1,1,81.0,2390.0,0,0
1485
+ 72,2.2,20.9,1,0,97.3,1293.0,0,0
1486
+ 74,2.17,9.6,1,0,43.0,1848.0,1,0
1487
+ 51,0.69,10.5,0,1,74.2,1583.0,0,0
1488
+ 70,0.68,6.2,0,1,68.5,1013.0,0,0
1489
+ 63,1.0,31.7,0,0,23.8,1391.0,1,0
1490
+ 89,1.77,8.0,1,0,41.8,1486.0,1,0
1491
+ 37,0.74,12.4,0,0,81.9,648.0,0,0
1492
+ 41,1.09,12.1,1,0,36.2,1444.0,1,0
1493
+ 56,1.45,5.0,0,1,68.2,1870.0,0,0
1494
+ 75,0.39,7.6,1,1,16.9,954.0,1,0
1495
+ 78,0.33,32.7,0,0,67.4,1195.0,1,0
1496
+ 22,1.06,5.0,0,1,18.7,745.0,1,0
1497
+ 47,1.18,6.4,0,1,54.9,1059.0,1,0
1498
+ 54,1.59,5.0,0,1,59.1,1097.0,1,0
1499
+ 80,1.8,16.9,0,0,73.1,2089.0,0,0
1500
+ 73,0.3,40.6,1,0,63.7,1141.0,1,0
1501
+ 82,0.47,16.4,0,1,39.1,1035.0,1,0
1502
+ 26,0.33,18.8,0,0,39.6,1253.0,1,0
1503
+ 68,2.47,8.5,0,0,29.6,446.0,1,0
1504
+ 50,1.09,17.3,0,0,75.2,121.0,0,0
1505
+ 77,1.21,32.7,0,0,74.1,609.0,1,0
1506
+ 80,1.25,19.7,0,1,86.7,1462.0,0,0
1507
+ 43,0.56,43.6,0,1,57.5,1299.0,1,0
1508
+ 39,2.61,33.1,0,0,26.6,1735.0,1,0
1509
+ 56,1.57,17.0,1,0,62.1,540.0,0,0
1510
+ 23,1.24,16.7,0,1,70.3,1198.0,0,0
1511
+ 39,0.3,37.6,0,0,40.9,504.0,1,0
1512
+ 79,0.3,19.6,0,1,43.3,1434.0,1,0
1513
+ 43,0.92,34.9,1,1,81.3,611.0,1,0
1514
+ 69,0.57,42.0,1,0,72.5,1178.0,1,0
1515
+ 68,0.3,15.5,1,1,98.3,1403.0,0,0
1516
+ 70,0.87,22.2,0,1,113.1,1104.0,0,0
1517
+ 55,1.01,29.8,1,0,32.4,169.0,1,0
1518
+ 85,1.33,27.2,0,0,59.5,2131.0,1,0
1519
+ 53,0.75,27.1,0,1,73.1,1051.0,0,0
1520
+ 55,0.3,5.0,1,0,79.1,495.0,0,0
1521
+ 25,0.32,7.8,0,1,95.4,1681.0,0,0
1522
+ 58,2.29,12.1,1,1,88.2,1699.0,0,0
1523
+ 61,0.3,32.6,0,0,98.5,1149.0,1,0
1524
+ 77,1.53,5.0,1,0,71.5,2068.0,0,0
1525
+ 31,1.67,36.3,1,0,54.3,930.0,1,0
1526
+ 22,1.09,27.4,0,0,118.7,1388.0,0,0
1527
+ 37,2.79,31.9,0,1,73.8,1555.0,1,0
1528
+ 59,1.65,6.8,0,1,64.0,2057.0,0,0
1529
+ 40,2.86,18.9,1,1,43.2,328.0,1,0
1530
+ 34,0.61,21.6,0,0,74.0,2446.0,0,0
1531
+ 45,0.63,21.1,1,1,95.1,1887.0,0,0
1532
+ 27,1.67,21.5,1,1,57.5,1525.0,1,0
1533
+ 61,0.96,14.7,0,1,66.7,900.0,0,0
1534
+ 63,2.72,19.6,0,0,76.2,858.0,1,0
1535
+ 33,1.51,30.4,1,1,81.8,1444.0,1,0
1536
+ 21,0.3,5.0,0,1,63.5,1547.0,0,0
1537
+ 56,0.3,36.6,0,0,60.2,1482.0,1,0
1538
+ 88,1.13,29.8,0,1,57.2,1380.0,1,0
1539
+ 57,1.12,6.4,0,0,42.3,1516.0,1,0
1540
+ 60,1.48,22.6,1,0,50.7,207.0,1,0
1541
+ 81,2.29,28.8,0,1,50.1,1167.0,1,0
1542
+ 79,2.17,5.0,1,0,31.4,608.0,1,0
1543
+ 33,0.68,18.5,0,1,94.8,1280.0,0,0
1544
+ 21,0.3,17.1,1,1,79.0,1953.0,0,0
1545
+ 89,0.3,10.3,0,0,73.6,846.0,0,0
1546
+ 36,0.54,19.1,0,0,102.6,945.0,0,0
1547
+ 47,0.87,10.8,0,1,87.9,875.0,0,0
1548
+ 85,1.47,34.5,1,1,50.3,942.0,1,0
1549
+ 54,0.48,10.5,1,1,99.3,1577.0,0,0
1550
+ 24,1.45,27.5,0,1,94.3,1694.0,0,0
1551
+ 84,1.53,5.0,0,0,42.1,2035.0,1,0
1552
+ 59,1.33,16.1,0,0,92.6,797.0,0,0
1553
+ 75,0.3,18.1,0,1,58.3,1642.0,1,0
1554
+ 55,1.62,15.7,1,1,94.9,1725.0,0,0
1555
+ 64,3.07,13.2,1,0,61.6,2127.0,1,0
1556
+ 42,1.42,10.0,0,1,56.7,835.0,1,0
1557
+ 66,0.3,27.1,1,1,59.2,298.0,1,0
1558
+ 50,2.32,30.0,0,1,45.7,1161.0,1,0
1559
+ 30,0.57,17.0,1,0,33.0,2704.0,1,0
1560
+ 29,3.24,5.0,0,1,7.5,752.0,1,1
1561
+ 86,1.3,39.5,0,1,43.6,1543.0,1,0
1562
+ 33,0.3,7.4,0,1,120.0,192.0,0,0
1563
+ 29,0.3,5.0,0,1,82.0,2207.0,0,0
1564
+ 20,2.59,5.0,1,1,116.6,361.0,1,0
1565
+ 24,2.2,19.2,1,1,62.0,104.0,0,0
1566
+ 39,3.2,15.4,0,1,58.3,1349.0,1,0
1567
+ 27,1.21,30.4,1,0,112.9,1359.0,1,0
1568
+ 62,1.15,25.3,0,0,79.4,2010.0,0,0
1569
+ 20,0.86,21.5,1,1,46.1,1725.0,1,0
1570
+ 76,0.61,14.7,0,0,85.8,300.0,0,0
1571
+ 83,0.85,31.3,0,0,101.3,1224.0,1,0
1572
+ 47,1.4,40.4,0,0,34.3,951.0,1,0
1573
+ 56,0.44,30.1,0,0,81.6,632.0,1,0
1574
+ 66,0.3,12.4,1,0,36.0,1517.0,1,0
1575
+ 56,1.34,27.4,0,0,99.9,1821.0,0,0
1576
+ 68,0.42,13.2,0,1,75.8,897.0,0,0
1577
+ 63,0.3,5.0,0,1,85.7,1134.0,0,0
1578
+ 75,1.7,7.2,1,1,64.6,1167.0,0,0
1579
+ 47,0.3,13.7,1,0,25.5,969.0,1,0
1580
+ 25,1.8,19.2,0,1,59.0,1086.0,1,0
1581
+ 80,1.77,42.7,0,1,93.2,969.0,1,0
1582
+ 39,1.46,7.4,1,1,119.8,1362.0,0,0
1583
+ 21,3.45,33.9,0,0,77.1,1007.0,1,0
1584
+ 56,1.08,14.2,0,0,52.8,1514.0,1,0
1585
+ 39,0.94,5.0,0,1,83.4,1005.0,0,0
1586
+ 45,1.82,11.9,0,1,91.0,1623.0,0,0
1587
+ 48,1.15,32.1,0,1,73.3,994.0,1,0
1588
+ 20,2.24,22.1,1,1,71.8,1603.0,0,0
1589
+ 54,0.3,22.9,0,0,75.3,876.0,0,0
1590
+ 89,0.3,33.9,1,1,71.1,1743.0,1,0
1591
+ 78,1.89,5.6,0,0,77.4,411.0,0,0
1592
+ 88,0.3,5.4,1,1,115.7,1297.0,0,0
1593
+ 52,1.75,5.0,0,1,19.2,1016.0,1,0
1594
+ 70,1.53,28.5,0,1,64.0,1277.0,0,0
1595
+ 31,0.57,24.7,0,0,46.7,707.0,1,0
1596
+ 39,1.53,26.7,0,0,99.5,1203.0,0,0
1597
+ 72,0.3,5.0,0,1,66.5,745.0,0,0
1598
+ 62,0.3,5.0,1,1,84.0,1181.0,0,0
1599
+ 69,0.99,5.0,0,1,105.7,1134.0,0,0
1600
+ 48,1.27,6.9,1,1,43.0,1465.0,1,0
1601
+ 76,0.93,36.6,1,0,56.8,1333.0,1,0
1602
+ 58,1.59,30.0,0,1,103.1,2239.0,0,0
1603
+ 75,1.55,12.5,1,1,42.0,1045.0,1,0
1604
+ 62,2.58,21.6,0,1,57.7,1234.0,1,0
1605
+ 69,1.11,9.9,0,0,30.0,2892.0,1,0
1606
+ 42,2.28,22.4,0,1,104.1,1188.0,0,0
1607
+ 63,2.03,5.0,0,0,55.5,1777.0,1,0
1608
+ 57,3.26,27.0,0,1,78.8,1588.0,1,0
1609
+ 42,1.09,7.8,1,1,86.9,2467.0,0,0
1610
+ 64,0.82,27.7,0,0,49.9,585.0,1,0
1611
+ 71,2.33,12.9,0,0,22.4,528.0,1,0
1612
+ 69,1.55,8.5,1,1,64.5,741.0,0,0
1613
+ 27,2.35,37.4,0,1,64.1,1386.0,1,0
1614
+ 20,1.85,20.1,0,0,68.5,798.0,0,0
1615
+ 27,0.3,14.1,1,0,68.6,233.0,0,0
1616
+ 48,1.54,27.1,0,1,57.5,838.0,1,0
1617
+ 24,1.48,5.0,0,1,56.6,1484.0,1,0
1618
+ 66,1.32,31.3,0,0,77.4,848.0,1,0
1619
+ 53,1.08,16.3,0,1,49.4,1871.0,1,0
1620
+ 84,0.3,25.2,1,0,67.6,737.0,0,0
1621
+ 74,1.99,5.0,1,0,55.9,1307.0,1,0
1622
+ 62,1.54,13.4,0,0,77.4,1105.0,0,0
1623
+ 49,2.19,18.1,0,1,97.7,1394.0,0,0
1624
+ 36,0.3,30.4,0,0,98.7,1444.0,1,0
1625
+ 45,1.66,26.2,1,1,102.2,2093.0,0,0
1626
+ 27,0.99,13.3,0,0,61.6,1645.0,0,0
1627
+ 66,1.33,21.8,0,1,63.7,1090.0,0,0
1628
+ 65,1.0,33.1,1,1,38.3,1606.0,1,0
1629
+ 87,1.69,15.6,1,1,61.4,1675.0,0,0
1630
+ 52,1.05,14.3,0,1,62.3,2322.0,0,0
1631
+ 20,0.3,5.0,0,1,54.6,1221.0,1,0
1632
+ 38,1.28,14.7,0,1,54.5,1259.0,1,0
1633
+ 50,1.01,5.0,0,0,27.6,1956.0,1,0
1634
+ 33,1.12,16.6,1,0,36.5,301.0,1,0
1635
+ 72,0.3,29.9,1,1,71.1,1198.0,0,0
1636
+ 67,1.81,5.0,1,0,72.1,1647.0,0,0
1637
+ 88,0.92,32.8,0,0,82.1,1824.0,1,0
1638
+ 81,0.3,14.0,0,1,63.5,195.0,0,0
1639
+ 85,2.03,17.7,0,0,70.3,631.0,0,0
1640
+ 83,1.77,12.0,0,1,101.3,100.0,0,0
1641
+ 89,0.91,5.0,1,0,68.7,1736.0,0,0
1642
+ 82,0.3,8.6,0,1,54.2,1402.0,1,0
1643
+ 52,1.36,43.2,0,1,40.2,2010.0,1,0
1644
+ 60,1.31,5.0,0,1,89.9,1315.0,0,0
1645
+ 67,2.03,5.0,0,0,27.4,2420.0,1,0
1646
+ 32,0.8,19.7,0,1,49.0,828.0,1,0
1647
+ 50,2.28,17.0,1,1,80.5,1116.0,0,0
1648
+ 87,0.71,14.1,0,1,22.3,1506.0,1,0
1649
+ 23,0.3,18.2,1,1,54.6,944.0,1,0
1650
+ 38,0.3,25.7,0,0,73.2,1509.0,0,0
1651
+ 89,1.14,11.0,0,1,60.4,1245.0,0,0
1652
+ 32,1.14,20.3,1,1,45.4,1216.0,1,0
1653
+ 42,1.5,30.3,0,0,55.2,1237.0,1,0
1654
+ 20,1.12,6.1,1,1,90.4,1653.0,0,0
1655
+ 73,2.08,5.0,0,1,115.8,1129.0,0,0
1656
+ 90,0.97,26.0,0,1,73.5,740.0,0,0
1657
+ 34,0.3,48.0,1,0,20.3,1334.0,1,0
1658
+ 84,1.09,17.9,1,1,84.2,983.0,0,0
1659
+ 90,0.3,20.4,1,1,60.1,800.0,0,0
1660
+ 34,1.44,14.5,0,1,42.6,435.0,1,0
1661
+ 40,2.15,37.1,0,1,50.0,1766.0,1,0
1662
+ 38,0.31,17.1,1,1,51.1,1631.0,1,0
1663
+ 79,2.48,15.8,1,1,34.7,2004.0,1,0
1664
+ 52,1.96,28.9,0,1,68.4,1301.0,0,0
1665
+ 68,2.29,12.2,0,0,115.7,1839.0,0,0
1666
+ 54,1.37,5.0,1,0,42.5,828.0,1,0
1667
+ 63,0.31,28.6,0,0,114.9,346.0,0,0
1668
+ 30,1.9,10.9,0,0,75.2,924.0,0,0
1669
+ 85,0.64,6.3,1,0,67.7,1197.0,0,0
1670
+ 65,1.31,43.2,0,0,62.0,1480.0,1,0
1671
+ 28,1.05,15.9,0,1,49.8,1940.0,1,0
1672
+ 22,2.21,23.9,1,0,77.3,1461.0,0,0
1673
+ 45,1.86,18.4,0,0,83.0,2429.0,0,0
1674
+ 67,1.13,7.4,1,0,9.4,1360.0,1,1
1675
+ 85,0.3,26.3,0,1,120.0,1350.0,0,0
1676
+ 89,0.63,21.8,0,0,24.7,1469.0,1,0
1677
+ 47,1.83,10.1,0,0,56.9,1489.0,1,0
1678
+ 45,1.45,23.2,1,0,6.0,1482.0,1,1
1679
+ 44,0.3,11.8,0,1,63.3,684.0,0,0
1680
+ 31,0.3,5.0,0,1,58.5,1726.0,1,0
1681
+ 24,1.38,5.0,0,1,57.2,2553.0,1,0
1682
+ 67,0.3,21.2,0,0,77.6,859.0,0,0
1683
+ 56,0.34,13.4,0,1,63.9,1279.0,0,0
1684
+ 63,1.81,36.0,0,1,83.5,614.0,1,0
1685
+ 34,2.28,17.5,0,0,39.1,1676.0,1,0
1686
+ 62,0.52,8.6,0,0,71.9,1675.0,0,0
1687
+ 67,1.16,19.9,1,0,54.2,548.0,1,0
1688
+ 89,1.13,5.0,1,1,60.7,644.0,0,0
1689
+ 65,1.05,17.0,0,0,76.8,259.0,0,0
1690
+ 62,1.24,21.8,0,0,57.4,2085.0,1,0
1691
+ 40,1.88,20.3,1,0,67.4,881.0,0,0
1692
+ 42,0.59,33.6,1,1,41.1,1233.0,1,0
1693
+ 66,0.3,49.2,0,1,97.4,1117.0,1,0
1694
+ 34,2.72,26.1,1,1,88.2,1794.0,1,0
1695
+ 44,2.18,32.1,0,1,72.5,1630.0,1,0
1696
+ 55,0.3,48.5,0,1,63.9,1603.0,1,0
1697
+ 70,1.32,5.9,0,0,67.4,894.0,0,0
1698
+ 34,2.11,19.6,1,0,96.9,1641.0,0,0
1699
+ 87,1.87,12.3,0,1,86.4,1764.0,0,0
1700
+ 40,1.62,28.1,1,1,97.3,1626.0,0,0
1701
+ 32,1.05,21.3,0,1,61.5,655.0,0,0
1702
+ 38,2.75,8.2,0,0,82.1,735.0,1,0
1703
+ 53,1.4,18.1,0,0,99.7,2169.0,0,0
1704
+ 87,0.74,30.6,1,0,46.8,2272.0,1,0
1705
+ 71,1.98,5.0,0,1,45.3,1265.0,1,0
1706
+ 46,1.29,8.4,0,1,76.9,1264.0,0,0
1707
+ 48,1.51,6.6,0,1,39.1,1379.0,1,0
1708
+ 47,1.38,21.9,1,1,24.6,1590.0,1,0
1709
+ 54,1.65,32.9,0,0,99.4,579.0,1,0
1710
+ 27,0.32,5.0,0,0,103.7,1415.0,0,0
1711
+ 35,0.3,19.1,0,0,40.5,785.0,1,0
1712
+ 55,2.49,6.9,1,1,34.2,1290.0,1,0
1713
+ 49,1.42,30.1,1,0,53.7,858.0,1,0
1714
+ 37,1.89,15.2,1,1,101.3,976.0,0,0
1715
+ 21,0.3,19.6,0,1,59.7,1391.0,1,0
1716
+ 68,2.16,18.0,0,0,72.4,991.0,0,0
1717
+ 23,0.73,31.5,1,0,78.1,751.0,1,0
1718
+ 26,0.47,42.6,0,0,74.3,2027.0,1,0
1719
+ 58,1.14,5.0,0,1,107.4,758.0,0,0
1720
+ 32,0.32,6.6,0,0,52.0,145.0,1,0
1721
+ 50,1.2,21.9,1,0,67.4,1584.0,0,0
1722
+ 90,1.08,8.2,0,1,75.8,1155.0,0,0
1723
+ 82,2.15,29.2,0,1,68.8,1285.0,0,0
1724
+ 75,2.56,31.1,1,1,39.5,1379.0,1,0
1725
+ 61,2.53,11.4,0,1,33.2,1935.0,1,0
1726
+ 80,0.3,8.8,0,1,32.7,2232.0,1,0
1727
+ 61,0.36,14.7,1,1,88.2,1427.0,0,0
1728
+ 75,0.3,19.2,1,0,49.5,712.0,1,0
1729
+ 55,0.3,21.8,1,0,81.7,1373.0,0,0
1730
+ 87,0.62,5.0,1,1,72.2,1595.0,0,0
1731
+ 26,1.57,6.4,0,1,45.6,1802.0,1,0
1732
+ 73,0.73,13.2,1,1,46.3,1369.0,1,0
1733
+ 20,0.76,8.4,0,1,73.4,1020.0,0,0
1734
+ 63,1.36,5.0,1,1,71.9,847.0,0,0
1735
+ 64,0.3,5.0,1,0,82.3,1242.0,0,0
1736
+ 66,0.45,5.0,1,0,58.6,549.0,1,0
1737
+ 32,0.75,16.6,1,0,48.8,1497.0,1,0
1738
+ 41,1.02,12.8,1,1,72.7,1389.0,0,0
1739
+ 40,1.27,10.4,0,0,105.5,1386.0,0,0
1740
+ 28,2.55,27.6,1,0,23.1,1659.0,1,0
1741
+ 45,2.02,27.6,0,0,50.0,2025.0,1,0
1742
+ 28,0.51,19.8,0,0,84.8,1265.0,0,0
1743
+ 34,0.96,19.4,0,0,75.4,1338.0,0,0
1744
+ 29,0.9,7.7,0,0,85.1,1115.0,0,0
1745
+ 61,0.74,9.2,1,1,59.3,1576.0,1,0
1746
+ 43,1.45,5.0,1,0,29.7,1296.0,1,0
1747
+ 68,0.3,15.0,0,0,111.8,1878.0,0,0
1748
+ 45,1.99,27.4,0,1,97.1,1867.0,0,0
1749
+ 56,2.72,34.3,0,1,69.4,1458.0,1,0
1750
+ 87,0.96,15.1,1,0,49.0,1260.0,1,0
1751
+ 69,0.94,23.9,0,0,57.7,1163.0,1,0
1752
+ 43,1.34,5.0,1,1,75.7,1540.0,0,0
1753
+ 38,2.12,12.8,1,0,63.7,1542.0,0,0
1754
+ 79,0.91,12.5,0,0,69.6,1163.0,0,0
1755
+ 58,2.04,35.9,1,0,110.3,1444.0,1,0
1756
+ 37,1.64,22.7,1,0,93.1,913.0,0,0
1757
+ 38,3.33,23.9,1,1,40.7,1525.0,1,0
1758
+ 55,0.9,23.3,0,1,71.9,955.0,0,0
1759
+ 74,0.3,18.5,0,1,57.0,1686.0,1,0
1760
+ 88,0.3,36.4,1,1,77.4,1142.0,1,0
1761
+ 66,1.21,5.0,0,0,68.4,2137.0,0,0
1762
+ 68,2.13,19.8,1,1,120.0,1320.0,0,0
1763
+ 52,0.61,31.6,0,0,80.7,1419.0,1,0
1764
+ 40,0.99,5.0,0,0,66.6,601.0,0,0
1765
+ 41,1.82,28.1,0,1,116.1,2003.0,0,0
1766
+ 67,0.33,8.9,0,1,75.1,1281.0,0,0
1767
+ 56,0.65,19.3,0,0,32.0,2170.0,1,0
1768
+ 34,0.3,8.6,0,1,66.9,1324.0,0,0
1769
+ 54,2.26,29.5,0,0,85.3,1193.0,0,0
1770
+ 90,2.59,14.5,1,0,82.1,1044.0,1,0
1771
+ 51,0.3,28.1,1,0,95.1,1621.0,0,0
1772
+ 30,1.07,23.2,0,1,73.8,1560.0,0,0
1773
+ 29,2.47,8.5,0,1,72.1,633.0,0,0
1774
+ 76,1.56,24.0,0,1,34.9,1016.0,1,0
1775
+ 44,0.76,10.0,0,0,108.2,1661.0,0,0
1776
+ 21,0.3,18.8,0,0,62.4,978.0,0,0
1777
+ 83,2.24,14.3,0,1,45.5,891.0,1,0
1778
+ 54,1.52,28.8,0,0,120.0,1398.0,0,0
1779
+ 26,0.3,24.5,1,0,112.0,1344.0,0,0
1780
+ 37,2.27,17.6,0,1,58.8,1068.0,1,0
1781
+ 86,0.3,9.8,1,1,23.0,2184.0,1,0
1782
+ 61,1.0,5.0,0,0,52.0,1225.0,1,0
1783
+ 58,0.96,19.6,1,0,109.5,668.0,0,0
1784
+ 60,2.66,10.4,0,0,74.4,491.0,1,0
1785
+ 43,0.97,5.0,0,1,36.3,1811.0,1,0
1786
+ 79,0.96,5.0,0,1,89.6,751.0,0,0
1787
+ 65,0.3,37.5,0,1,64.8,1315.0,1,0
1788
+ 38,0.62,10.1,0,0,53.8,863.0,1,0
1789
+ 87,0.46,31.0,0,0,55.7,1249.0,1,0
1790
+ 61,0.51,13.7,1,1,102.7,1474.0,0,0
1791
+ 51,1.21,32.9,0,1,83.7,617.0,1,0
1792
+ 58,0.3,32.0,1,1,32.8,1072.0,1,0
1793
+ 55,0.3,8.1,0,0,79.2,963.0,0,0
1794
+ 55,1.1,5.0,1,1,72.7,817.0,0,0
1795
+ 22,1.31,5.0,0,1,59.5,1112.0,1,0
1796
+ 27,0.99,8.3,0,1,60.8,988.0,0,0
1797
+ 89,1.16,40.7,0,1,48.4,1736.0,1,0
1798
+ 60,0.83,13.1,0,0,53.4,942.0,1,0
1799
+ 87,1.18,19.7,0,0,77.2,1525.0,0,0
1800
+ 32,1.59,33.6,0,0,63.1,1508.0,1,0
1801
+ 68,1.58,19.3,1,1,83.6,549.0,0,0
1802
+ 79,0.58,18.9,1,1,50.4,1047.0,1,0
1803
+ 21,2.02,25.5,0,1,87.7,1245.0,0,0
1804
+ 79,1.34,21.5,1,0,102.9,1433.0,0,0
1805
+ 24,2.31,16.8,1,1,69.8,1182.0,0,0
1806
+ 63,2.49,9.3,1,1,83.0,1821.0,0,0
1807
+ 46,0.3,18.9,0,0,84.0,1352.0,0,0
1808
+ 51,0.43,31.1,0,1,57.4,1523.0,1,0
1809
+ 40,1.93,39.4,0,0,84.1,1004.0,1,0
1810
+ 27,0.3,21.5,1,0,13.3,1530.0,1,1
1811
+ 69,2.48,27.1,0,0,5.0,2268.0,1,1
1812
+ 86,0.89,21.2,0,1,61.8,1563.0,0,0
1813
+ 63,1.72,17.0,0,1,85.8,1852.0,0,0
1814
+ 77,1.1,24.2,0,0,67.9,1154.0,0,0
1815
+ 22,0.3,32.3,1,1,88.6,1762.0,1,0
1816
+ 89,2.15,7.4,0,1,40.0,1806.0,1,0
1817
+ 21,3.68,5.0,1,1,92.1,1423.0,1,0
1818
+ 63,0.74,11.6,1,0,110.7,1263.0,0,0
1819
+ 21,0.91,20.5,0,1,52.6,552.0,1,0
1820
+ 54,0.3,28.4,0,1,89.3,1284.0,0,0
1821
+ 49,2.42,6.1,1,0,70.6,1583.0,0,0
1822
+ 27,2.02,5.0,0,0,81.0,917.0,0,0
1823
+ 41,0.3,11.9,0,1,110.7,665.0,0,0
1824
+ 63,0.3,15.7,0,0,78.2,1351.0,0,0
1825
+ 77,0.3,5.0,0,1,89.1,1415.0,0,0
1826
+ 55,1.78,8.9,0,0,38.4,626.0,1,0
1827
+ 88,1.87,28.4,0,1,88.3,1320.0,0,0
1828
+ 50,0.37,18.9,0,0,110.3,1445.0,0,0
1829
+ 66,1.65,22.1,0,0,46.9,1961.0,1,0
1830
+ 74,1.34,13.7,1,0,61.9,1062.0,0,0
1831
+ 81,0.87,9.0,0,1,87.2,2343.0,0,0
1832
+ 49,2.07,13.6,1,1,81.2,1327.0,0,0
1833
+ 74,0.3,24.0,0,0,36.0,699.0,1,0
1834
+ 35,2.23,5.0,1,0,74.1,1135.0,0,0
1835
+ 31,0.54,37.8,0,1,61.7,744.0,1,0
1836
+ 36,2.8,24.9,1,0,45.8,1216.0,1,0
1837
+ 35,0.3,11.6,0,1,103.9,1534.0,0,0
1838
+ 31,0.88,27.8,1,0,70.1,1434.0,0,0
1839
+ 27,1.25,32.7,0,1,94.6,735.0,1,0
1840
+ 22,1.25,14.0,0,1,40.7,673.0,1,0
1841
+ 35,1.64,15.4,0,1,84.7,1510.0,0,0
1842
+ 49,0.3,35.9,1,1,96.5,1622.0,1,0
1843
+ 42,1.17,43.4,1,0,63.9,1056.0,1,0
1844
+ 24,1.32,18.4,0,0,57.6,100.0,1,0
1845
+ 84,0.73,5.0,1,1,37.4,721.0,1,0
1846
+ 49,1.56,12.4,1,1,48.3,1793.0,1,0
1847
+ 40,0.3,30.4,1,1,58.7,931.0,1,0
1848
+ 89,0.91,5.6,1,1,45.6,1126.0,1,0
1849
+ 41,0.52,15.5,1,1,50.8,1577.0,1,0
1850
+ 51,0.91,21.5,0,0,74.0,1147.0,0,0
1851
+ 52,2.5,6.9,1,0,76.9,1999.0,0,0
1852
+ 35,2.52,31.2,0,0,97.3,1113.0,1,0
1853
+ 57,2.34,26.3,1,0,51.0,870.0,1,0
1854
+ 33,0.78,42.1,0,1,70.6,1891.0,1,0
1855
+ 55,2.02,27.4,0,0,59.6,1324.0,1,0
1856
+ 42,1.3,6.5,0,0,57.8,761.0,1,0
1857
+ 85,1.24,24.4,1,0,62.1,1536.0,0,0
1858
+ 21,1.13,29.9,1,0,65.1,1153.0,0,0
1859
+ 84,2.78,30.5,0,0,76.3,727.0,1,0
1860
+ 86,2.43,8.7,1,1,61.7,1348.0,0,0
1861
+ 71,1.87,7.2,1,0,100.7,1221.0,0,0
1862
+ 81,1.05,5.0,1,1,27.4,456.0,1,0
1863
+ 42,1.24,37.3,0,1,96.3,770.0,1,0
1864
+ 45,1.68,25.5,1,1,60.8,2233.0,0,0
1865
+ 87,0.73,8.1,0,0,65.3,1341.0,0,0
1866
+ 74,2.04,19.5,1,0,69.8,1973.0,0,0
1867
+ 25,0.37,16.5,0,0,87.6,1454.0,0,0
1868
+ 54,1.55,6.3,0,0,48.0,1919.0,1,0
1869
+ 41,0.3,18.4,1,1,53.6,1578.0,1,0
1870
+ 62,0.7,20.3,0,1,82.5,827.0,0,0
1871
+ 34,3.07,41.2,0,1,27.5,1603.0,1,0
1872
+ 79,2.13,10.1,1,0,69.1,824.0,0,0
1873
+ 31,2.58,5.0,0,1,50.1,1765.0,1,0
1874
+ 68,0.6,5.4,0,0,44.8,1409.0,1,0
1875
+ 61,1.29,7.3,0,1,29.0,1309.0,1,0
1876
+ 57,2.35,12.9,0,1,89.3,1081.0,0,0
1877
+ 64,1.77,5.4,0,0,74.0,1699.0,0,0
1878
+ 54,1.66,27.9,0,0,53.2,1221.0,1,0
1879
+ 49,2.67,5.0,1,1,65.9,345.0,1,0
1880
+ 49,0.3,18.2,0,0,42.7,443.0,1,0
1881
+ 25,1.03,42.0,0,0,56.6,665.0,1,0
1882
+ 86,0.3,24.6,0,0,65.0,1692.0,0,0
1883
+ 26,0.3,23.4,0,0,71.6,1730.0,0,0
1884
+ 71,2.17,40.3,1,1,79.8,1462.0,1,0
1885
+ 33,0.37,32.9,1,1,24.9,1457.0,1,0
1886
+ 34,1.86,24.8,0,1,79.9,2023.0,0,0
1887
+ 40,2.69,14.3,0,0,26.9,1471.0,1,0
1888
+ 54,1.04,17.7,0,1,80.8,1619.0,0,0
1889
+ 85,1.67,17.1,1,1,64.7,1295.0,0,0
1890
+ 21,1.87,13.2,0,0,97.3,1069.0,0,0
1891
+ 54,0.3,20.5,0,0,53.1,1160.0,1,0
1892
+ 39,0.65,22.2,0,1,89.5,2325.0,0,0
1893
+ 29,0.3,5.0,1,0,40.8,757.0,1,0
1894
+ 44,0.72,37.6,1,0,72.6,1457.0,1,0
1895
+ 85,1.84,22.9,1,0,19.0,542.0,1,0
1896
+ 44,0.66,14.8,0,0,92.1,995.0,0,0
1897
+ 73,1.17,20.7,0,0,113.2,1687.0,0,0
1898
+ 52,0.3,29.2,0,0,52.5,395.0,1,0
1899
+ 55,2.3,5.0,1,1,73.1,1752.0,0,0
1900
+ 33,0.71,16.7,1,0,81.1,2324.0,0,0
1901
+ 84,2.57,5.0,0,1,31.2,1483.0,1,0
1902
+ 73,1.25,49.9,0,0,51.3,1931.0,1,0
1903
+ 71,0.3,19.7,0,1,49.7,1424.0,1,0
1904
+ 22,1.05,5.0,0,1,120.0,1656.0,0,0
1905
+ 60,0.3,61.2,0,1,96.1,1527.0,1,0
1906
+ 25,1.73,11.6,0,1,64.6,1045.0,0,0
1907
+ 44,0.96,15.5,0,1,89.5,1000.0,0,0
1908
+ 32,1.35,16.4,0,1,75.3,1891.0,0,0
1909
+ 27,0.87,7.8,1,0,84.8,1279.0,0,0
1910
+ 40,0.7,21.0,0,0,43.7,1229.0,1,0
1911
+ 87,0.32,5.0,0,1,104.3,1219.0,0,0
1912
+ 44,1.95,31.0,0,0,50.8,1453.0,1,0
1913
+ 87,1.04,5.0,1,1,52.1,707.0,1,0
1914
+ 64,0.92,13.0,1,1,84.8,1209.0,0,0
1915
+ 79,1.02,27.0,0,0,78.6,1455.0,0,0
1916
+ 31,0.59,15.5,0,1,70.6,660.0,0,0
1917
+ 51,0.92,16.0,0,0,91.0,1405.0,0,0
1918
+ 32,1.39,5.9,1,0,41.0,851.0,1,0
1919
+ 50,0.3,43.1,1,1,116.1,1456.0,1,0
1920
+ 39,0.4,24.4,1,0,57.5,2379.0,1,0
1921
+ 37,2.44,5.0,0,1,67.8,1240.0,0,0
1922
+ 79,0.87,20.1,1,1,116.5,761.0,0,0
1923
+ 82,0.7,5.0,1,0,52.3,1419.0,1,0
1924
+ 25,0.3,38.7,1,1,95.6,1537.0,1,0
1925
+ 51,1.97,20.4,0,1,64.6,832.0,0,0
1926
+ 62,0.3,6.3,0,0,49.0,441.0,1,0
1927
+ 21,1.19,26.4,0,0,60.4,833.0,0,0
1928
+ 79,0.3,14.7,0,1,84.2,1276.0,0,0
1929
+ 42,1.94,5.0,0,1,95.4,1072.0,0,0
1930
+ 50,2.26,22.6,1,0,75.6,1839.0,0,0
1931
+ 24,1.64,22.2,1,0,30.1,1559.0,1,0
1932
+ 53,0.3,31.7,1,1,85.9,1351.0,1,0
1933
+ 29,1.95,18.8,0,1,66.4,428.0,0,0
1934
+ 21,0.46,19.3,0,0,42.4,1615.0,1,0
1935
+ 30,0.3,19.9,1,1,78.7,2290.0,0,0
1936
+ 69,0.85,37.1,0,0,98.3,1731.0,1,0
1937
+ 50,0.84,14.3,0,1,70.2,971.0,0,0
1938
+ 75,0.75,23.6,1,0,93.1,1232.0,0,0
1939
+ 28,2.35,25.4,1,0,81.6,1530.0,0,0
1940
+ 40,3.01,22.2,0,0,81.9,1993.0,1,0
1941
+ 47,0.3,13.8,1,1,62.4,947.0,0,0
1942
+ 81,0.58,19.4,1,1,90.5,1067.0,0,0
1943
+ 26,1.33,16.9,1,1,92.9,1278.0,0,0
1944
+ 35,0.85,41.5,1,1,89.8,1235.0,1,0
1945
+ 23,1.56,12.5,0,0,62.2,1696.0,0,0
1946
+ 23,2.02,7.0,1,1,94.6,1431.0,0,0
1947
+ 59,1.87,17.9,0,0,79.7,601.0,0,0
1948
+ 36,1.75,17.1,0,1,45.7,972.0,1,0
1949
+ 71,2.69,20.4,1,0,60.5,986.0,1,0
1950
+ 71,0.3,12.5,0,0,56.7,193.0,1,0
1951
+ 55,2.53,19.3,1,1,20.3,1765.0,1,0
1952
+ 57,0.83,19.6,1,1,95.1,1366.0,0,0
1953
+ 69,1.91,28.9,1,1,120.0,1030.0,0,0
1954
+ 82,0.3,19.1,1,1,100.2,1751.0,0,0
1955
+ 82,0.38,19.2,0,0,74.1,1451.0,0,0
1956
+ 81,1.8,24.2,0,1,57.1,657.0,1,0
1957
+ 26,0.3,28.4,0,0,46.9,1605.0,1,0
1958
+ 46,2.09,6.2,0,1,73.8,1986.0,0,0
1959
+ 33,2.33,5.0,0,1,94.2,1230.0,0,0
1960
+ 90,1.36,38.3,0,0,53.1,1266.0,1,0
1961
+ 24,1.33,26.4,1,0,120.0,1354.0,0,0
1962
+ 74,0.45,15.4,1,0,35.4,691.0,1,0
1963
+ 21,1.81,18.2,1,0,75.6,1371.0,0,0
1964
+ 81,1.51,13.3,1,0,71.8,854.0,0,0
1965
+ 40,0.37,20.5,0,0,70.2,1297.0,0,0
1966
+ 40,0.85,6.3,0,0,55.8,1383.0,1,0
1967
+ 29,1.06,28.1,0,1,72.1,1565.0,0,0
1968
+ 77,0.85,20.1,1,1,58.8,1584.0,1,0
1969
+ 58,0.3,20.5,0,0,102.2,836.0,0,0
1970
+ 24,1.83,7.3,1,0,110.5,1394.0,0,0
1971
+ 84,0.98,24.3,0,0,60.3,1778.0,0,0
1972
+ 32,1.21,7.5,0,1,28.9,723.0,1,0
1973
+ 72,0.68,9.7,0,1,77.9,2173.0,0,0
1974
+ 64,1.63,19.1,0,1,77.0,814.0,0,0
1975
+ 51,1.38,48.1,0,1,72.6,2114.0,1,0
1976
+ 55,2.29,20.1,1,1,83.3,823.0,0,0
1977
+ 79,1.63,5.0,1,1,104.5,1272.0,0,0
1978
+ 30,1.02,10.3,0,0,90.8,1204.0,0,0
1979
+ 82,0.53,26.2,1,1,83.3,617.0,0,0
1980
+ 40,1.98,5.0,0,1,88.8,1649.0,0,0
1981
+ 71,0.95,28.0,1,1,76.3,1675.0,0,0
1982
+ 74,1.05,19.9,0,1,46.4,1610.0,1,0
1983
+ 45,1.05,29.9,1,0,106.3,1176.0,0,0
1984
+ 87,0.84,11.3,0,1,72.6,949.0,0,0
1985
+ 53,1.06,10.4,0,0,46.4,1850.0,1,0
1986
+ 71,2.93,24.8,0,0,41.8,1407.0,1,0
1987
+ 71,0.3,17.9,0,0,47.1,922.0,1,0
1988
+ 48,0.47,17.2,0,1,39.2,1407.0,1,0
1989
+ 57,2.45,36.8,0,1,86.7,463.0,1,0
1990
+ 61,0.86,25.2,1,1,65.6,1354.0,0,0
1991
+ 40,0.79,5.0,1,1,89.4,1628.0,0,0
1992
+ 61,2.13,27.6,1,0,99.2,1210.0,0,0
1993
+ 32,0.3,26.4,1,1,92.8,1655.0,0,0
1994
+ 83,1.94,32.2,1,1,85.9,1707.0,1,0
1995
+ 36,1.24,6.7,0,1,77.2,1438.0,0,0
1996
+ 28,1.62,21.9,0,0,65.2,2184.0,0,0
1997
+ 60,1.6,19.3,1,1,66.9,1977.0,0,0
1998
+ 20,0.63,6.5,1,1,84.6,1614.0,0,0
1999
+ 21,2.15,29.4,0,1,46.0,1478.0,1,0
2000
+ 79,0.7,15.1,0,1,68.7,1172.0,0,0
2001
+ 67,1.57,31.8,0,1,51.4,976.0,1,0
2002
+ 48,2.31,9.1,1,1,99.3,1699.0,0,0
2003
+ 29,2.44,5.0,0,1,87.9,1200.0,0,0
2004
+ 77,0.96,15.1,1,1,120.0,793.0,0,0
2005
+ 79,1.62,20.8,1,0,51.1,899.0,1,0
2006
+ 40,0.88,11.6,1,1,53.7,965.0,1,0
2007
+ 47,3.45,5.0,0,1,71.4,2177.0,1,0
2008
+ 53,1.9,22.6,0,1,51.9,1724.0,1,0
2009
+ 27,1.28,22.5,0,0,83.4,1317.0,0,0
2010
+ 78,1.48,26.2,0,0,68.7,1507.0,0,0
2011
+ 68,1.57,13.4,1,0,57.8,1565.0,1,0
2012
+ 36,1.59,12.8,0,1,97.2,866.0,0,0
2013
+ 79,0.98,35.3,0,1,23.8,716.0,1,0
2014
+ 64,0.85,5.0,0,0,83.6,1826.0,0,0
2015
+ 88,1.06,15.0,1,0,56.2,625.0,1,0
2016
+ 51,0.3,19.7,0,0,90.4,1291.0,0,0
2017
+ 63,1.85,25.3,1,0,96.4,939.0,0,0
2018
+ 84,0.48,20.0,0,0,13.1,1410.0,1,1
2019
+ 27,0.3,6.9,0,0,64.7,1173.0,0,0
2020
+ 62,1.19,32.0,0,0,71.5,1567.0,1,0
2021
+ 20,1.08,18.0,0,0,11.1,144.0,1,1
2022
+ 70,1.42,5.0,1,0,75.7,1860.0,0,0
2023
+ 43,0.69,20.5,0,1,56.8,1668.0,1,0
2024
+ 43,0.85,23.7,0,0,39.9,1806.0,1,0
2025
+ 36,1.82,41.5,1,0,53.7,1748.0,1,0
2026
+ 24,1.77,22.9,1,0,49.4,1457.0,1,0
2027
+ 39,1.73,5.0,1,0,55.7,979.0,1,0
2028
+ 40,1.23,5.0,0,0,74.6,1519.0,0,0
2029
+ 77,1.35,33.1,0,0,94.5,1445.0,1,0
2030
+ 50,1.41,8.4,1,1,68.1,1738.0,0,0
2031
+ 30,0.61,5.0,1,1,97.6,1611.0,0,0
2032
+ 71,2.53,30.0,1,1,43.9,1347.0,1,0
2033
+ 34,2.4,12.3,0,1,73.8,1517.0,0,0
2034
+ 26,1.91,29.4,1,0,120.0,1561.0,0,0
2035
+ 47,0.82,7.0,1,1,30.2,1844.0,1,0
2036
+ 70,1.69,35.7,0,0,29.3,2168.0,1,0
2037
+ 77,2.08,28.5,1,1,102.0,1599.0,0,0
2038
+ 24,0.3,9.3,1,0,75.5,1563.0,0,0
2039
+ 24,2.73,5.0,0,1,55.0,1189.0,1,0
2040
+ 27,0.3,45.7,0,1,41.8,1128.0,1,0
2041
+ 83,1.83,15.5,1,0,69.1,937.0,0,0
2042
+ 29,2.51,8.8,0,1,73.3,100.0,1,0
2043
+ 57,1.1,34.6,0,0,73.5,880.0,1,0
2044
+ 27,1.06,29.3,0,1,41.5,1214.0,1,0
2045
+ 44,1.8,32.2,0,1,61.6,1147.0,1,0
2046
+ 85,2.87,16.8,1,0,55.8,1528.0,1,0
2047
+ 69,0.95,40.6,0,0,86.2,898.0,1,0
2048
+ 86,0.5,5.0,0,0,43.0,920.0,1,0
2049
+ 68,0.82,11.4,1,1,71.9,243.0,0,0
2050
+ 55,0.3,22.7,0,0,120.0,1536.0,0,0
2051
+ 87,2.01,32.0,0,1,41.3,856.0,1,0
2052
+ 60,0.74,25.9,1,1,51.3,942.0,1,0
2053
+ 81,1.01,17.0,0,0,67.7,1582.0,0,0
2054
+ 29,2.02,12.3,0,1,5.0,859.0,1,1
2055
+ 40,0.86,32.1,1,1,34.3,1490.0,1,0
2056
+ 55,1.88,27.2,1,0,77.8,697.0,0,0
2057
+ 31,0.3,7.5,1,0,65.6,1289.0,0,0
2058
+ 21,2.06,7.1,1,1,96.4,995.0,0,0
2059
+ 32,1.51,11.5,1,0,64.0,1167.0,0,0
2060
+ 72,1.12,9.9,1,0,61.8,2056.0,0,0
2061
+ 51,1.32,30.4,1,0,52.4,480.0,1,0
2062
+ 35,0.3,23.2,0,1,61.4,2011.0,0,0
2063
+ 51,1.3,24.7,0,1,39.7,841.0,1,0
2064
+ 51,1.07,20.3,1,1,66.3,1735.0,0,0
2065
+ 30,0.3,20.9,0,0,45.7,1834.0,1,0
2066
+ 29,0.6,5.0,0,1,39.7,1515.0,1,0
2067
+ 34,1.08,27.5,0,1,54.0,691.0,1,0
2068
+ 36,0.65,11.2,0,0,81.3,1436.0,0,0
2069
+ 59,0.3,17.6,0,0,73.6,2580.0,0,0
2070
+ 37,2.17,12.3,1,1,86.7,1306.0,0,0
2071
+ 74,1.07,19.8,1,1,46.9,1250.0,1,0
2072
+ 44,0.3,24.9,1,1,69.7,1201.0,0,0
2073
+ 78,3.12,5.9,1,1,112.5,1558.0,1,0
2074
+ 41,2.32,21.0,0,1,104.9,1256.0,0,0
2075
+ 49,0.89,12.6,0,0,38.1,1442.0,1,0
2076
+ 63,0.44,33.9,0,1,44.8,1154.0,1,0
2077
+ 51,1.56,5.0,1,1,112.4,782.0,0,0
2078
+ 70,1.38,6.0,0,1,81.3,2461.0,0,0
2079
+ 65,1.69,13.7,0,0,65.2,1252.0,0,0
2080
+ 40,0.44,6.9,1,1,62.4,2899.0,0,0
2081
+ 51,2.19,15.3,0,1,75.7,1512.0,0,0
2082
+ 58,0.77,11.7,1,0,76.0,1600.0,0,0
2083
+ 31,1.81,19.1,1,0,56.7,1145.0,1,0
2084
+ 66,0.48,30.1,0,1,65.9,1004.0,1,0
2085
+ 37,3.58,18.9,0,0,55.8,1157.0,1,0
2086
+ 40,1.83,19.9,1,1,74.2,884.0,0,0
2087
+ 32,3.8,5.3,0,1,51.6,838.0,1,0
2088
+ 40,1.94,16.4,0,0,38.3,2192.0,1,0
2089
+ 27,0.69,12.9,0,1,106.9,1700.0,0,0
2090
+ 65,1.95,26.2,1,1,68.3,2049.0,0,0
2091
+ 26,2.01,8.8,0,0,112.4,1862.0,0,0
2092
+ 42,1.54,7.7,1,0,21.7,999.0,1,0
2093
+ 41,1.77,21.8,1,1,33.8,530.0,1,0
2094
+ 41,1.89,41.8,0,0,81.7,1070.0,1,0
2095
+ 48,0.31,15.9,1,0,68.3,1346.0,0,0
2096
+ 32,0.3,20.0,0,0,41.1,1872.0,1,0
2097
+ 21,0.49,29.4,0,0,98.4,1273.0,0,0
2098
+ 48,1.31,24.1,1,0,48.3,2783.0,1,0
2099
+ 71,1.0,24.2,1,1,100.0,1084.0,0,0
2100
+ 46,0.32,16.9,0,1,68.2,1596.0,0,0
2101
+ 69,1.9,17.1,1,0,43.3,1001.0,1,0
2102
+ 42,1.45,8.9,1,0,53.3,1503.0,1,0
2103
+ 63,1.35,23.8,1,1,104.3,1237.0,0,0
2104
+ 41,0.97,23.6,0,0,62.6,1176.0,0,0
2105
+ 62,0.86,26.6,1,1,94.3,991.0,0,0
2106
+ 56,0.44,12.1,0,1,105.0,1374.0,0,0
2107
+ 80,2.04,28.0,0,1,68.0,1718.0,0,0
2108
+ 75,0.57,31.6,1,0,64.4,812.0,1,0
2109
+ 22,1.39,5.0,1,0,59.9,1276.0,1,0
2110
+ 82,2.7,14.4,0,0,78.8,1547.0,1,0
2111
+ 38,0.9,32.1,0,0,107.6,1641.0,1,0
2112
+ 42,2.06,10.2,0,0,39.3,2232.0,1,0
2113
+ 48,1.71,24.3,1,1,75.5,1589.0,0,0
2114
+ 49,1.48,18.1,0,1,74.4,1100.0,0,0
2115
+ 58,1.59,22.0,0,1,24.9,1016.0,1,0
2116
+ 44,1.11,18.5,0,1,47.8,1010.0,1,0
2117
+ 27,1.23,27.0,1,0,52.9,982.0,1,0
2118
+ 77,0.71,5.7,1,1,89.1,1408.0,0,0
2119
+ 35,1.24,7.0,1,0,93.5,1510.0,0,0
2120
+ 20,0.67,35.6,1,0,23.1,1712.0,1,0
2121
+ 24,2.11,43.2,0,1,86.0,1632.0,1,0
2122
+ 22,0.3,17.9,0,1,82.7,1923.0,0,0
2123
+ 84,1.63,38.6,0,1,84.5,966.0,1,0
2124
+ 23,1.5,8.7,1,0,73.8,2118.0,0,0
2125
+ 83,1.42,11.6,0,0,93.8,985.0,0,0
2126
+ 29,2.12,35.5,0,0,99.3,1474.0,1,0
2127
+ 40,0.94,27.6,0,0,29.2,1203.0,1,0
2128
+ 65,1.43,37.3,0,0,68.8,1288.0,1,0
2129
+ 46,0.3,23.6,0,1,63.6,1636.0,0,0
2130
+ 85,0.83,5.8,1,1,55.7,581.0,1,0
2131
+ 60,1.97,20.7,1,0,58.6,885.0,1,0
2132
+ 32,0.3,32.4,1,1,74.7,1675.0,1,0
2133
+ 28,1.34,16.4,1,0,37.6,1299.0,1,0
2134
+ 55,0.59,14.6,0,1,86.8,1172.0,0,0
2135
+ 77,1.1,23.8,0,0,60.8,740.0,0,0
2136
+ 73,0.64,11.3,1,1,91.9,1175.0,0,0
2137
+ 31,0.3,21.5,1,1,54.5,1640.0,1,0
2138
+ 33,1.55,18.8,0,1,53.1,1018.0,1,0
2139
+ 53,1.16,12.1,1,0,46.4,1982.0,1,0
2140
+ 72,1.75,29.8,0,1,54.6,1838.0,1,0
2141
+ 39,1.91,25.8,0,0,50.0,1125.0,1,0
2142
+ 35,2.3,13.8,1,0,80.9,1003.0,0,0
2143
+ 89,1.32,17.8,0,0,96.2,100.0,0,0
2144
+ 75,2.34,14.7,0,1,79.7,762.0,0,0
2145
+ 77,0.32,10.3,0,1,68.1,731.0,0,0
2146
+ 23,2.02,5.0,0,0,82.2,585.0,0,0
2147
+ 23,1.61,12.2,1,1,69.1,1282.0,0,0
2148
+ 39,1.41,10.5,1,1,70.7,1456.0,0,0
2149
+ 29,1.6,19.4,1,0,62.3,2207.0,0,0
2150
+ 43,0.34,23.3,1,0,90.9,1333.0,0,0
2151
+ 45,0.3,8.4,0,0,5.9,283.0,1,1
2152
+ 56,2.74,22.5,0,1,16.7,926.0,1,0
2153
+ 73,1.05,6.5,0,0,95.7,1605.0,0,0
2154
+ 40,1.04,16.5,0,1,65.1,1259.0,0,0
2155
+ 57,0.3,10.8,0,0,92.9,1728.0,0,0
2156
+ 65,0.3,27.0,1,0,54.8,1043.0,1,0
2157
+ 23,1.12,19.4,1,0,111.9,1876.0,0,0
2158
+ 79,0.89,16.7,0,0,66.6,1423.0,0,0
2159
+ 76,1.2,10.5,1,0,81.2,1436.0,0,0
2160
+ 64,1.28,14.1,0,0,58.8,1375.0,1,0
2161
+ 39,3.44,39.9,1,1,47.6,917.0,1,0
2162
+ 36,0.9,12.0,1,0,26.5,1271.0,1,0
2163
+ 90,2.62,23.8,0,1,89.6,1447.0,1,0
2164
+ 23,2.68,16.6,0,1,79.9,600.0,1,0
2165
+ 33,1.88,23.4,1,1,72.3,1340.0,0,0
2166
+ 22,0.99,28.0,1,1,41.5,1907.0,1,0
2167
+ 77,0.3,13.8,1,1,105.4,1517.0,0,0
2168
+ 74,1.63,26.5,1,0,72.6,1984.0,0,0
2169
+ 23,2.12,51.1,1,1,87.6,1504.0,1,0
2170
+ 43,2.77,24.8,0,1,69.9,851.0,1,0
2171
+ 53,0.35,37.4,0,1,42.8,1695.0,1,0
2172
+ 49,0.98,23.8,0,1,94.8,729.0,0,0
2173
+ 38,0.35,6.8,0,1,81.3,1196.0,0,0
2174
+ 50,0.63,21.3,0,0,65.5,1162.0,0,0
2175
+ 79,1.8,14.0,1,1,80.8,961.0,0,0
2176
+ 79,0.59,10.8,0,0,90.4,2489.0,0,0
2177
+ 38,0.46,17.1,0,0,86.5,1264.0,0,0
2178
+ 68,1.92,16.1,1,1,27.2,2205.0,1,0
2179
+ 82,1.61,5.3,0,0,32.7,1472.0,1,0
2180
+ 41,1.52,50.5,0,0,88.3,890.0,1,0
2181
+ 43,0.61,27.7,1,1,52.6,1095.0,1,0
2182
+ 49,2.36,20.9,1,1,43.8,1281.0,1,0
2183
+ 77,1.21,19.1,0,1,79.3,1129.0,0,0
2184
+ 50,3.34,32.4,0,1,43.0,1163.0,1,0
2185
+ 83,1.35,42.9,1,1,58.0,1587.0,1,0
2186
+ 38,0.3,26.2,0,0,91.3,1483.0,0,0
2187
+ 67,0.3,19.5,0,1,32.1,1645.0,1,0
2188
+ 64,1.76,35.7,1,0,35.8,2063.0,1,0
2189
+ 74,2.37,19.7,0,0,29.7,1064.0,1,0
2190
+ 74,0.49,23.2,0,1,48.5,1857.0,1,0
2191
+ 37,3.09,30.0,0,1,72.1,1997.0,1,0
2192
+ 82,2.7,13.4,1,0,54.5,1947.0,1,0
2193
+ 66,1.39,5.0,1,0,107.6,420.0,0,0
2194
+ 76,1.69,12.8,0,1,81.4,2199.0,0,0
2195
+ 64,2.01,27.3,0,1,69.5,982.0,0,0
2196
+ 52,2.9,26.4,0,1,101.7,380.0,1,0
2197
+ 36,1.81,34.1,0,0,36.7,2187.0,1,0
2198
+ 89,1.37,13.2,0,1,91.7,1557.0,0,0
2199
+ 23,1.81,37.0,1,0,64.1,1577.0,1,0
2200
+ 39,1.68,20.2,0,0,58.6,1134.0,1,0
2201
+ 66,2.03,25.3,0,1,85.3,1391.0,0,0
2202
+ 34,0.3,28.8,0,1,59.7,1230.0,1,0
2203
+ 89,1.48,5.0,0,0,74.5,988.0,0,0
2204
+ 66,1.61,5.9,0,0,67.5,1311.0,0,0
2205
+ 28,1.13,5.5,0,1,77.7,1357.0,0,0
2206
+ 35,1.91,30.9,1,0,57.3,639.0,1,0
2207
+ 88,2.93,14.3,1,0,93.2,1328.0,1,0
2208
+ 80,1.32,42.3,0,0,18.9,406.0,1,0
2209
+ 29,1.82,18.0,0,0,86.0,2260.0,0,0
2210
+ 69,2.65,5.0,0,0,22.7,1249.0,1,0
2211
+ 22,1.35,9.9,0,1,51.2,764.0,1,0
2212
+ 89,0.4,19.4,1,1,83.1,1557.0,0,0
2213
+ 70,1.75,24.2,0,1,19.7,927.0,1,0
2214
+ 38,0.3,6.2,1,1,74.2,1285.0,0,0
2215
+ 61,0.3,24.8,1,1,35.7,1528.0,1,0
2216
+ 54,1.5,28.0,1,1,45.8,792.0,1,0
2217
+ 65,0.3,10.3,1,1,44.6,2275.0,1,0
2218
+ 45,0.3,41.6,0,0,36.4,2322.0,1,0
2219
+ 88,0.86,11.6,1,1,26.8,1037.0,1,0
2220
+ 83,0.55,6.0,1,0,120.0,738.0,0,0
2221
+ 56,1.07,5.0,1,1,65.4,1035.0,0,0
2222
+ 68,2.2,32.6,0,1,39.1,1062.0,1,0
2223
+ 40,1.41,18.3,1,1,55.9,1855.0,1,0
2224
+ 83,0.44,12.2,0,1,70.9,1044.0,0,0
2225
+ 24,2.42,5.0,1,0,60.5,719.0,0,0
2226
+ 89,0.3,13.3,0,0,38.3,1351.0,1,0
2227
+ 23,1.4,46.6,1,0,47.5,555.0,1,0
2228
+ 58,0.3,5.0,0,0,99.6,1834.0,0,0
2229
+ 54,1.43,10.4,0,0,34.9,1600.0,1,0
2230
+ 20,0.91,39.5,0,0,20.1,1000.0,1,0
2231
+ 43,2.17,33.0,0,0,60.3,1055.0,1,0
2232
+ 76,1.85,11.2,0,1,21.7,1424.0,1,0
2233
+ 89,0.67,20.4,0,0,47.3,748.0,1,0
2234
+ 60,0.5,23.6,1,0,38.7,906.0,1,0
2235
+ 73,0.92,19.6,1,0,38.9,1187.0,1,0
2236
+ 65,2.89,39.4,1,1,71.7,641.0,1,0
2237
+ 79,2.66,22.1,0,0,76.4,1073.0,1,0
2238
+ 79,0.33,31.6,0,1,49.9,763.0,1,0
2239
+ 76,1.92,20.2,0,0,67.6,2013.0,0,0
2240
+ 50,0.3,5.0,1,1,48.6,1098.0,1,0
2241
+ 43,0.8,5.0,1,1,80.0,827.0,0,0
2242
+ 55,0.37,6.2,0,0,33.1,1637.0,1,0
2243
+ 49,2.16,15.0,0,0,74.1,986.0,0,0
2244
+ 43,0.3,42.9,1,0,76.0,749.0,1,0
2245
+ 49,1.59,22.3,1,1,120.0,1744.0,0,0
2246
+ 26,1.2,16.7,1,0,26.1,1138.0,1,0
2247
+ 54,1.04,32.9,1,1,120.0,1721.0,1,0
2248
+ 74,2.7,5.0,0,1,88.9,1292.0,1,0
2249
+ 33,2.78,12.1,0,1,115.7,1365.0,1,0
2250
+ 29,1.07,10.4,0,0,92.6,1582.0,0,0
2251
+ 35,0.89,22.8,0,0,46.4,983.0,1,0
2252
+ 73,0.3,28.8,0,1,86.4,895.0,0,0
2253
+ 89,1.2,23.7,0,1,53.4,1901.0,1,0
2254
+ 63,2.96,23.8,0,1,67.8,1589.0,1,0
2255
+ 64,1.08,13.7,0,1,40.6,1266.0,1,0
2256
+ 75,1.86,21.8,0,1,53.0,1698.0,1,0
2257
+ 76,0.3,7.9,0,1,92.4,1570.0,0,0
2258
+ 40,0.81,26.1,0,1,80.9,1772.0,0,0
2259
+ 87,1.62,12.0,1,0,95.6,729.0,0,0
2260
+ 69,1.3,5.0,1,1,35.1,1268.0,1,0
2261
+ 52,1.94,18.5,0,0,23.2,1865.0,1,0
2262
+ 26,0.66,5.0,0,0,97.5,2139.0,0,0
2263
+ 89,0.3,35.7,0,1,95.7,1032.0,1,0
2264
+ 34,2.21,27.6,1,0,75.3,1380.0,0,0
2265
+ 51,0.36,22.0,0,0,80.5,1310.0,0,0
2266
+ 39,1.66,5.0,0,0,91.6,678.0,0,0
2267
+ 34,1.61,9.6,1,1,74.5,1156.0,0,0
2268
+ 67,0.3,18.5,0,1,83.4,511.0,0,0
2269
+ 90,2.14,14.8,0,1,90.4,1216.0,0,0
2270
+ 40,0.69,5.0,0,0,67.7,781.0,0,0
2271
+ 61,1.25,5.0,0,0,61.4,1385.0,0,0
2272
+ 45,0.88,14.6,0,0,79.6,1145.0,0,0
2273
+ 33,2.66,5.0,1,0,120.0,1137.0,1,0
2274
+ 76,2.41,34.5,0,1,48.8,2077.0,1,0
2275
+ 56,0.3,23.9,1,0,59.2,1335.0,1,0
2276
+ 77,3.23,8.4,0,0,26.1,2239.0,1,0
2277
+ 40,0.59,32.0,0,0,80.9,1523.0,1,0
2278
+ 88,3.09,29.6,0,0,56.8,1708.0,1,0
2279
+ 22,0.97,21.5,0,0,35.0,865.0,1,0
2280
+ 56,0.89,17.5,0,1,68.4,953.0,0,0
2281
+ 68,0.98,14.4,0,1,107.4,1309.0,0,0
2282
+ 38,0.84,11.5,1,1,61.2,1907.0,0,0
2283
+ 31,3.47,5.0,0,1,63.5,1119.0,1,0
2284
+ 80,1.13,36.3,0,0,106.4,584.0,1,0
2285
+ 60,0.93,11.8,0,1,69.9,1499.0,0,0
2286
+ 52,1.27,18.3,0,1,39.8,1332.0,1,0
2287
+ 69,0.33,7.1,0,0,87.2,1024.0,0,0
2288
+ 87,2.64,14.9,0,1,98.1,1113.0,1,0
2289
+ 90,0.3,52.2,0,1,65.0,864.0,1,0
2290
+ 52,0.65,9.3,0,0,73.3,1762.0,0,0
2291
+ 43,2.04,35.4,1,1,37.2,1312.0,1,0
2292
+ 80,1.24,17.7,0,1,48.2,1420.0,1,0
2293
+ 80,1.69,26.2,0,1,61.7,1002.0,0,0
2294
+ 47,2.58,32.9,1,1,71.9,1968.0,1,0
2295
+ 77,2.1,21.3,1,0,54.5,1410.0,1,0
2296
+ 62,1.32,13.8,1,0,60.7,229.0,0,0
2297
+ 60,3.08,15.8,0,1,66.9,1530.0,1,0
2298
+ 58,0.63,16.2,1,1,45.0,1168.0,1,0
2299
+ 68,1.11,40.4,0,1,63.3,1218.0,1,0
2300
+ 36,1.17,5.0,0,0,98.9,1797.0,0,0
2301
+ 89,1.11,5.0,1,0,55.1,1344.0,1,0
2302
+ 89,0.3,5.0,0,0,47.5,2156.0,1,0
2303
+ 84,0.3,7.3,1,0,120.0,1353.0,0,0
2304
+ 24,1.58,26.4,1,0,75.6,1067.0,0,0
2305
+ 21,0.63,27.1,1,0,50.7,393.0,1,0
src/preprocessing.py ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from file_manage import list_files
4
+ import os
5
+ from sklearn.preprocessing import LabelEncoder
6
+ import warnings
7
+ import json
8
+
9
+ warnings.filterwarnings("ignore")
10
+
11
+ def preprocess_data():
12
+ st.title('Data Preprocessing')
13
+
14
+ csv_files = list_files()
15
+
16
+ if not csv_files:
17
+ st.warning("No CSV files available for preprocessing.")
18
+ else:
19
+ selected_file = st.selectbox('Select a CSV file for Preprocessing', csv_files)
20
+ if selected_file:
21
+ df = pd.read_csv(os.path.join('uploads', selected_file))
22
+ st.write('**Data Preview:**')
23
+ st.dataframe(df.head())
24
+
25
+ # Step 1: Show unique values before encoding
26
+ if st.button('Show Unique Values'):
27
+ st.subheader("Unique Values in Each Column")
28
+ for col in df.columns:
29
+ st.write(f"**{col}** ({df[col].dtype}) → {df[col].nunique()} unique values")
30
+ st.write(df[col].unique())
31
+
32
+ # Step 2: Analyze data
33
+ if st.button('Analyze Data'):
34
+ null_counts = df.isnull().sum()
35
+ null_info = pd.DataFrame({'Column': null_counts.index, 'Null Values': null_counts.values})
36
+ st.subheader("Null Values Information")
37
+ st.dataframe(null_info)
38
+
39
+ categorical_data = df.select_dtypes(include=['object']).columns.tolist()
40
+ st.subheader("Categorical Columns")
41
+ st.write(categorical_data if categorical_data else "No categorical columns found.")
42
+
43
+ # Step 3: Preprocess
44
+ if st.button('Preprocess Data'):
45
+ labelencoder_mappings = {} # save the encoded mappings
46
+
47
+ for col in df.columns:
48
+ # Fill missing values
49
+ if df[col].isnull().sum() > 0:
50
+ df[col].fillna(df[col].mode()[0], inplace=True)
51
+
52
+ # Encode categorical columns
53
+ if df[col].dtype == 'object':
54
+ le = LabelEncoder()
55
+ df[col] = le.fit_transform(df[col])
56
+ mapping_dict = {str(k): int(v) for k, v in zip(le.classes_, le.transform(le.classes_))}
57
+ labelencoder_mappings[col] = mapping_dict
58
+
59
+ # Show encoding mapping in Streamlit
60
+ st.write(f"**Encoding for column `{col}`:**")
61
+ st.json(mapping_dict)
62
+
63
+ # Save preprocessed CSV
64
+ preprocessed_folder = 'preprocessed_data'
65
+ os.makedirs(preprocessed_folder, exist_ok=True)
66
+ preprocessed_filename = selected_file
67
+ df.to_csv(os.path.join(preprocessed_folder, preprocessed_filename), index=False)
68
+ st.success(f"Preprocessed file saved as {preprocessed_filename}")
69
+
70
+ # Save label encoder mappings
71
+ mapping_folder = "mapping"
72
+ os.makedirs(mapping_folder, exist_ok=True)
73
+ mapping_file = os.path.join(mapping_folder, f"{selected_file.split('.')[0]}.json")
74
+ with open(mapping_file, "w") as f:
75
+ json.dump(labelencoder_mappings, f, indent=4)
76
+ st.success(f"Label encoding mappings saved in {mapping_file}")
77
+
78
+ # Show final preprocessed data
79
+ st.subheader("Preprocessed Data")
80
+ st.dataframe(df)
81
+ st.success("Data preprocessing completed successfully!")
src/saved_models/Linear_Regression.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52ebf4a17fdf32afdea5018871f3cd950c467bacfadf25079ca08f0b21a8534e
3
+ size 905
src/saved_models/Random_Forest_Classifier.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf947dc4b88eecfa698852107132f517a625121d202bb3e17428b2acb1b65380
3
+ size 3167337
src/saved_models/Random_Forest_Regressor.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24b686389d3004e0beb9d53bb4b13c51a9a1fa2c804c10e6f12a591a3e7916b1
3
+ size 1721089
src/streamlit_app.py CHANGED
@@ -1,40 +1,34 @@
1
- import altair as alt
2
- import numpy as np
3
- import pandas as pd
4
  import streamlit as st
5
 
6
- """
7
- # Welcome to Streamlit!
8
-
9
- Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
10
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
11
- forums](https://discuss.streamlit.io).
12
-
13
- In the meantime, below is an example of what you can do with just a few lines of code:
14
- """
15
-
16
- num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
17
- num_turns = st.slider("Number of turns in spiral", 1, 300, 31)
18
-
19
- indices = np.linspace(0, 1, num_points)
20
- theta = 2 * np.pi * num_turns * indices
21
- radius = indices
22
-
23
- x = radius * np.cos(theta)
24
- y = radius * np.sin(theta)
25
-
26
- df = pd.DataFrame({
27
- "x": x,
28
- "y": y,
29
- "idx": indices,
30
- "rand": np.random.randn(num_points),
31
- })
32
-
33
- st.altair_chart(alt.Chart(df, height=700, width=700)
34
- .mark_point(filled=True)
35
- .encode(
36
- x=alt.X("x", axis=None),
37
- y=alt.Y("y", axis=None),
38
- color=alt.Color("idx", legend=None, scale=alt.Scale()),
39
- size=alt.Size("rand", legend=None, scale=alt.Scale(range=[1, 150])),
40
- ))
 
 
 
 
1
  import streamlit as st
2
 
3
+ from file_manage import upload_csv, list_files
4
+
5
+ from preprocessing import preprocess_data
6
+
7
+ from model_training import model_training
8
+
9
+
10
+
11
+
12
+
13
+
14
+ st.set_page_config(page_title='Automation',
15
+ page_icon='ai_logo.png',
16
+ layout='wide'
17
+ )
18
+
19
+ st.sidebar.image('ai_logo.png')
20
+ page = st.sidebar.selectbox('Select an Option', ['File Management', 'Preprocessing Data', 'Model Training'])
21
+
22
+ if page == 'File Management':
23
+ st.title('File Management')
24
+ upload_csv()
25
+ list_files()
26
+
27
+ elif page == 'Preprocessing Data':
28
+ st.title('Preprocessing Data')
29
+ preprocess_data()
30
+
31
+
32
+ elif page == 'Model Training':
33
+ st.title('Model Training')
34
+ model_training()
 
 
 
src/uploads/Dataset09-Employee-salary-prediction.csv ADDED
@@ -0,0 +1,376 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Age,Gender,Education Level,Job Title,Years of Experience,Salary
2
+ 32,Male,Bachelor's,Software Engineer,5,90000
3
+ 28,Female,Master's,Data Analyst,3,65000
4
+ 45,Male,PhD,Senior Manager,15,150000
5
+ 36,Female,Bachelor's,Sales Associate,7,60000
6
+ 52,Male,Master's,Director,20,200000
7
+ 29,Male,Bachelor's,Marketing Analyst,2,55000
8
+ 42,Female,Master's,Product Manager,12,120000
9
+ 31,Male,Bachelor's,Sales Manager,4,80000
10
+ 26,Female,Bachelor's,Marketing Coordinator,1,45000
11
+ 38,Male,PhD,Senior Scientist,10,110000
12
+ 29,Male,Master's,Software Developer,3,75000
13
+ 48,Female,Bachelor's,HR Manager,18,140000
14
+ 35,Male,Bachelor's,Financial Analyst,6,65000
15
+ 40,Female,Master's,Project Manager,14,130000
16
+ 27,Male,Bachelor's,Customer Service Rep,2,40000
17
+ 44,Male,Bachelor's,Operations Manager,16,125000
18
+ 33,Female,Master's,Marketing Manager,7,90000
19
+ 39,Male,PhD,Senior Engineer,12,115000
20
+ 25,Female,Bachelor's,Data Entry Clerk,0,35000
21
+ 51,Male,Bachelor's,Sales Director,22,180000
22
+ 34,Female,Master's,Business Analyst,5,80000
23
+ 47,Male,Master's,VP of Operations,19,190000
24
+ 30,Male,Bachelor's,IT Support,2,50000
25
+ 36,Female,Bachelor's,Recruiter,9,60000
26
+ 41,Male,Master's,Financial Manager,13,140000
27
+ 28,Female,Bachelor's,Social Media Specialist,3,45000
28
+ 37,Female,Master's,Software Manager,11,110000
29
+ 24,Male,Bachelor's,Junior Developer,1,40000
30
+ 43,Female,PhD,Senior Consultant,15,140000
31
+ 33,Male,Master's,Product Designer,6,90000
32
+ 50,Male,Bachelor's,CEO,25,250000
33
+ 31,Female,Bachelor's,Accountant,4,55000
34
+ 29,Male,Master's,Data Scientist,3,75000
35
+ 39,Female,Bachelor's,Marketing Specialist,10,65000
36
+ 46,Male,PhD,Senior Manager,20,170000
37
+ 27,Male,Bachelor's,Technical Writer,2,45000
38
+ 35,Female,Bachelor's,HR Generalist,7,60000
39
+ 42,Male,Master's,Project Engineer,14,115000
40
+ 26,Female,Bachelor's,Customer Success Rep,1,40000
41
+ 49,Male,Bachelor's,Sales Executive,21,160000
42
+ 34,Female,Master's,UX Designer,5,80000
43
+ 48,Male,Master's,Operations Director,18,190000
44
+ 30,Male,Bachelor's,Network Engineer,3,60000
45
+ 36,Female,Bachelor's,Administrative Assistant,8,45000
46
+ 41,Male,Master's,Strategy Consultant,13,130000
47
+ 28,Female,Bachelor's,Copywriter,2,40000
48
+ 32,Male,Bachelor's,Account Manager,5,75000
49
+ 45,Female,Master's,Director of Marketing,16,180000
50
+ 38,Male,PhD,Senior Scientist,11,120000
51
+ 25,Male,Bachelor's,Help Desk Analyst,0,35000
52
+ 51,Female,Bachelor's,Customer Service Manager,22,130000
53
+ 33,Male,Master's,Business Intelligence Analyst,7,85000
54
+ 40,Female,Bachelor's,Event Coordinator,12,60000
55
+ 47,Male,Master's,VP of Finance,19,200000
56
+ 29,Female,Bachelor's,Graphic Designer,3,50000
57
+ 36,Male,Bachelor's,Sales Manager,9,95000
58
+ 27,Female,Master's,UX Researcher,2,65000
59
+ 43,Male,PhD,Senior Engineer,17,140000
60
+ 30,Female,Bachelor's,Social Media Manager,4,55000
61
+ 35,Male,Master's,Product Manager,7,105000
62
+ 51,Female,Master's,Director of Operations,23,170000
63
+ 29,Male,Bachelor's,Marketing Analyst,3,50000
64
+ 40,Female,Bachelor's,HR Manager,12,80000
65
+ 47,Male,PhD,Senior Data Scientist,21,180000
66
+ 26,Male,Bachelor's,Junior Accountant,1,35000
67
+ 38,Female,Master's,Digital Marketing Manager,10,90000
68
+ 46,Male,Bachelor's,IT Manager,19,120000
69
+ 31,Female,Bachelor's,Customer Service Representative,5,45000
70
+ 34,Male,Master's,Business Development Manager,8,90000
71
+ 49,Female,Master's,Senior Financial Analyst,18,150000
72
+ 33,Male,Bachelor's,Web Developer,6,65000
73
+ 39,Female,Bachelor's,Recruiter,11,70000
74
+ 45,Male,PhD,Research Director,16,190000
75
+ 28,Male,Bachelor's,Technical Support Specialist,2,40000
76
+ 42,Female,Master's,Creative Director,14,120000
77
+ 37,Male,Bachelor's,Project Manager,10,95000
78
+ 50,Female,Bachelor's,Operations Manager,22,160000
79
+ 32,Male,Master's,Senior Software Engineer,6,100000
80
+ 48,Female,Master's,Human Resources Director,20,180000
81
+ 30,Female,Bachelor's,Content Marketing Manager,3,55000
82
+ 36,Male,Bachelor's,Technical Recruiter,8,70000
83
+ 41,Female,Master's,Data Analyst,13,80000
84
+ 25,Male,Bachelor's,Sales Representative,0,30000
85
+ 52,Male,PhD,Chief Technology Officer,24,250000
86
+ 29,Female,Bachelor's,Junior Designer,2,40000
87
+ 34,Female,Master's,Financial Advisor,10,95000
88
+ 27,Male,Bachelor's,Junior Account Manager,2,45000
89
+ 40,Female,Bachelor's,HR Generalist,15,80000
90
+ 46,Male,Master's,Senior Project Manager,21,135000
91
+ 31,Female,Bachelor's,Marketing Coordinator,6,55000
92
+ 36,Male,PhD,Principal Scientist,11,120000
93
+ 29,Female,Bachelor's,Sales Associate,3,40000
94
+ 43,Male,Bachelor's,Supply Chain Manager,18,105000
95
+ 52,Female,Master's,Senior Marketing Manager,25,170000
96
+ 33,Male,Bachelor's,Business Analyst,7,75000
97
+ 39,Female,Bachelor's,Training Specialist,12,65000
98
+ 47,Male,PhD,Research Scientist,22,160000
99
+ 26,Male,Bachelor's,Junior Software Developer,1,35000
100
+ 38,Female,Master's,Public Relations Manager,10,90000
101
+ 45,Male,Bachelor's,Operations Analyst,20,110000
102
+ 31,Female,Bachelor's,Event Coordinator,5,45000
103
+ 35,Male,Master's,Product Marketing Manager,8,95000
104
+ 49,Female,Master's,Senior HR Manager,19,150000
105
+ 33,Male,Bachelor's,Junior Web Developer,5,50000
106
+ 39,Female,Master's,Senior Project Coordinator,13,80000
107
+ 44,Male,PhD,Chief Data Officer,16,220000
108
+ 30,Female,Bachelor's,Digital Content Producer,3,50000
109
+ 36,Male,Bachelor's,IT Support Specialist,7,60000
110
+ 41,Female,Master's,Senior Marketing Analyst,14,100000
111
+ 28,Male,Bachelor's,Customer Success Manager,2,40000
112
+ 42,Female,Master's,Senior Graphic Designer,15,110000
113
+ 37,Male,Bachelor's,Software Project Manager,9,95000
114
+ 50,Female,Bachelor's,Supply Chain Analyst,22,130000
115
+ 32,Male,Master's,Senior Business Analyst,6,90000
116
+ 23,Female,Bachelor's,Junior Marketing Analyst,0.5,35000
117
+ 31,Male,Master's,Senior Financial Analyst,6,95000
118
+ 40,Female,Bachelor's,Office Manager,15,65000
119
+ 48,Male,PhD,Principal Engineer,20,170000
120
+ 29,Female,Bachelor's,Junior HR Generalist,3,45000
121
+ 35,Male,Master's,Senior Product Manager,10,120000
122
+ 42,Female,Bachelor's,Sales Manager,17,100000
123
+ 53,Male,Master's,Director of Marketing,25,180000
124
+ 33,Female,Bachelor's,Junior Operations Analyst,5,50000
125
+ 38,Male,Bachelor's,Customer Service Manager,11,80000
126
+ 44,Female,PhD,Senior Scientist,16,140000
127
+ 26,Male,Bachelor's,Junior Accountant,2,40000
128
+ 37,Female,Master's,Senior HR Generalist,9,95000
129
+ 45,Male,Bachelor's,Sales Operations Manager,18,110000
130
+ 32,Female,Bachelor's,Marketing Coordinator,4,50000
131
+ 34,Male,Master's,Senior Software Developer,8,105000
132
+ 50,Female,Master's,Director of Operations,21,160000
133
+ 29,Male,Bachelor's,Junior Web Designer,3,45000
134
+ 40,Female,Master's,Senior Training Specialist,12,100000
135
+ 47,Male,PhD,Senior Research Scientist,22,160000
136
+ 27,Male,Bachelor's,Junior Sales Representative,1,35000
137
+ 39,Female,Bachelor's,Administrative Assistant,10,55000
138
+ 46,Male,Master's,Senior Project Manager,19,140000
139
+ 30,Female,Bachelor's,Junior Marketing Manager,4,50000
140
+ 36,Male,Bachelor's,Junior Data Analyst,7,60000
141
+ 43,Female,Master's,Senior Product Marketing Manager,14,120000
142
+ 28,Male,Bachelor's,Junior Business Analyst,2,40000
143
+ 41,Female,Master's,Senior Marketing Manager,13,110000
144
+ 33,Male,Bachelor's,Junior Software Developer,5,50000
145
+ 47,Male,Bachelor's,Senior Sales Manager,20,135000
146
+ 25,Female,Master's,Junior Marketing Specialist,1.5,40000
147
+ 34,Male,Bachelor's,Senior Business Analyst,8,90000
148
+ 42,Female,PhD,Senior Data Scientist,16,150000
149
+ 31,Male,Bachelor's,Junior Project Manager,4,60000
150
+ 38,Female,Bachelor's,Senior Accountant,10,80000
151
+ 45,Male,Master's,Director of Sales,19,175000
152
+ 29,Female,Bachelor's,Junior Recruiter,3,45000
153
+ 36,Male,Master's,Senior Business Development Manager,11,120000
154
+ 43,Female,PhD,Senior Product Designer,18,140000
155
+ 26,Male,Bachelor's,Junior Customer Support Specialist,2,35000
156
+ 37,Female,Master's,Senior Marketing Analyst,9,95000
157
+ 44,Male,Bachelor's,Senior IT Support Specialist,14,110000
158
+ 32,Female,Bachelor's,Junior Financial Analyst,5,50000
159
+ 33,Male,Master's,Senior Operations Manager,7,115000
160
+ 51,Female,PhD,Director of Human Resources,23,185000
161
+ 28,Male,Bachelor's,Junior Software Engineer,2,40000
162
+ 39,Female,Bachelor's,Senior Sales Representative,12,90000
163
+ 48,Male,Master's,Director of Product Management,21,175000
164
+ 30,Female,Bachelor's,Junior Copywriter,3,45000
165
+ 35,Male,Bachelor's,Senior Marketing Coordinator,7,80000
166
+ 41,Female,Master's,Senior Human Resources Manager,13,120000
167
+ 27,Male,Bachelor's,Junior Business Development Associate,1.5,35000
168
+ 40,Female,Bachelor's,Senior Account Manager,14,110000
169
+ 46,Male,PhD,Senior Researcher,18,150000
170
+ 31,Female,Bachelor's,Junior HR Coordinator,4,50000
171
+ 34,Male,Master's,Senior Software Engineer,9,105000
172
+ 50,Female,Master's,Director of Finance,20,180000
173
+ 29,Male,Bachelor's,Junior Marketing Coordinator,2,40000
174
+ ,,,,,
175
+ 43,Male,Bachelor's,Senior Project Manager,16,140000
176
+ 26,Female,Master's,Junior Data Scientist,1.5,45000
177
+ 35,Male,Bachelor's,Senior Operations Analyst,7,85000
178
+ 42,Female,PhD,Senior Marketing Manager,18,140000
179
+ 31,Male,Bachelor's,Junior Accountant,4,50000
180
+ 38,Female,Bachelor's,Senior Human Resources Coordinator,10,80000
181
+ 46,Male,Master's,Director of Operations,20,170000
182
+ 29,Female,Bachelor's,Junior Sales Representative,2,40000
183
+ 37,Male,Master's,Senior Business Analyst,9,105000
184
+ 44,Female,PhD,Senior UX Designer,15,145000
185
+ 27,Male,Bachelor's,Junior Product Manager,2,40000
186
+ 36,Female,Bachelor's,Senior Marketing Specialist,8,85000
187
+ 43,Male,Bachelor's,Senior IT Project Manager,14,130000
188
+ 33,Female,Master's,Senior Financial Analyst,6,95000
189
+ 34,Male,Bachelor's,Senior Quality Assurance Analyst,9,100000
190
+ 50,Female,PhD,Director of Sales and Marketing,22,180000
191
+ 28,Male,Bachelor's,Junior Operations Analyst,1.5,35000
192
+ 39,Female,Bachelor's,Senior Account Executive,12,95000
193
+ 47,Male,Master's,Director of Business Development,19,170000
194
+ 30,Female,Bachelor's,Junior Social Media Manager,3,45000
195
+ 34,Male,Bachelor's,Senior Product Manager,7,95000
196
+ 40,Female,Master's,Senior Human Resources Specialist,13,120000
197
+ 28,Male,Bachelor's,Junior Business Analyst,2,40000
198
+ 41,Female,Bachelor's,Senior Marketing Coordinator,11,90000
199
+ 45,Male,PhD,Senior Data Analyst,17,155000
200
+ 32,Female,Bachelor's,Junior Account Manager,5,55000
201
+ 35,Male,Master's,Senior Software Developer,9,110000
202
+ 49,Female,Master's,Director of Human Capital,21,180000
203
+ 30,Male,Bachelor's,Junior Advertising Coordinator,3,45000
204
+ 44,Male,Bachelor's,Senior Sales Manager,16,130000
205
+ 27,Female,Master's,Junior UX Designer,1.5,45000
206
+ 36,Male,Bachelor's,Senior Accountant,7,90000
207
+ 41,Female,PhD,Senior Marketing Director,17,160000
208
+ 31,Male,Bachelor's,Junior HR Generalist,4,50000
209
+ 39,Female,Bachelor's,Senior Operations Manager,10,120000
210
+ 47,Male,Master's,Director of Finance,20,170000
211
+ 30,Female,Bachelor's,Junior Marketing Coordinator,2,40000
212
+ 38,Male,Master's,Senior IT Consultant,9,110000
213
+ 45,Female,PhD,Senior Product Designer,15,150000
214
+ 28,Male,Bachelor's,Junior Business Development Associate,2,40000
215
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
216
+ 44,Male,Bachelor's,Senior Software Engineer,14,130000
217
+ 34,Female,Master's,Senior Financial Advisor,6,100000
218
+ 35,Male,Bachelor's,Senior Project Coordinator,9,95000
219
+ 50,Female,PhD,Director of Operations,22,180000
220
+ 29,Male,Bachelor's,Junior Business Operations Analyst,1.5,35000
221
+ 40,Female,Bachelor's,Senior Sales Representative,12,100000
222
+ 48,Male,Master's,Director of Marketing,19,170000
223
+ 31,Female,Bachelor's,Junior Social Media Specialist,3,45000
224
+ 33,Male,Bachelor's,Senior Product Development Manager,7,100000
225
+ 42,Female,Master's,Senior Human Resources Manager,13,140000
226
+ 28,Male,Bachelor's,Junior Financial Analyst,2,40000
227
+ 40,Female,Bachelor's,Senior Marketing Manager,11,105000
228
+ 46,Male,PhD,Senior Data Scientist,18,160000
229
+ 33,Female,Bachelor's,Junior Operations Manager,5,70000
230
+ 37,Male,Master's,Senior Software Architect,9,120000
231
+ 51,Female,Master's,Director of Human Resources,21,190000
232
+ 30,Male,Bachelor's,Junior Marketing Specialist,3,45000
233
+ 43,Male,Bachelor's,Senior Project Manager,15,120000
234
+ 27,Female,Master's,Junior Research Scientist,1.5,50000
235
+ 35,Male,Bachelor's,Senior Operations Analyst,8,85000
236
+ 42,Female,PhD,Senior Marketing Manager,13,140000
237
+ 32,Male,Bachelor's,Junior Sales Representative,3,45000
238
+ 37,Female,Bachelor's,Senior Financial Analyst,9,100000
239
+ 45,Male,Master's,Senior Software Developer,16,140000
240
+ 33,Female,Bachelor's,Junior Operations Analyst,5,70000
241
+ 39,Male,Bachelor's,Senior Marketing Specialist,10,120000
242
+ 44,Female,PhD,Senior HR Manager,18,160000
243
+ 29,Male,Bachelor's,Junior Business Analyst,1.5,40000
244
+ 38,Female,Bachelor's,Senior Product Manager,10,120000
245
+ 46,Male,PhD,Senior Data Analyst,19,150000
246
+ 34,Female,Bachelor's,Junior Marketing Analyst,6,70000
247
+ 36,Male,Bachelor's,Senior Operations Manager,8,95000
248
+ 49,Female,Master's,Director of Marketing,21,180000
249
+ 31,Male,Bachelor's,Junior Financial Analyst,3,50000
250
+ 41,Female,Bachelor's,Senior Project Coordinator,11,95000
251
+ 47,Male,Master's,Director of Operations,20,170000
252
+ 30,Female,Bachelor's,Junior Marketing Coordinator,2,40000
253
+ 38,Male,Master's,Senior IT Consultant,9,110000
254
+ 45,Female,PhD,Senior Product Designer,15,150000
255
+ 28,Male,Bachelor's,Junior Business Development Associate,2,40000
256
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
257
+ 44,Male,Bachelor's,Senior Software Engineer,14,130000
258
+ 34,Female,Master's,Senior Financial Advisor,6,100000
259
+ 35,Male,Bachelor's,Senior Project Coordinator,9,95000
260
+ 50,Female,PhD,Director of Operations,22,180000
261
+ 29,Male,Bachelor's,Junior Business Operations Analyst,1.5,350
262
+ ,,,,,
263
+ 37,Female,Bachelor's,Senior Financial Manager,10,120000
264
+ 46,Male,PhD,Senior Data Scientist,18,160000
265
+ 31,Female,Bachelor's,Junior Marketing Coordinator,3,50000
266
+ 42,Male,Bachelor's,Senior Operations Manager,12,110000
267
+ 29,Female,Bachelor's,Junior Sales Representative,1.5,40000
268
+ 36,Male,Bachelor's,Senior Marketing Specialist,8,95000
269
+ 44,Female,Master's,Senior HR Specialist,15,140000
270
+ 33,Male,Bachelor's,Junior Operations Manager,4,60000
271
+ 39,Female,Bachelor's,Senior Marketing Coordinator,9,110000
272
+ 45,Male,PhD,Senior Data Engineer,16,150000
273
+ 32,Female,Bachelor's,Junior Marketing Manager,4,60000
274
+ 37,Male,Bachelor's,Senior Financial Analyst,8,90000
275
+ 47,Female,Master's,Director of Marketing,20,180000
276
+ 30,Male,Bachelor's,Junior Business Analyst,2,40000
277
+ 38,Female,Bachelor's,Senior Project Manager,9,120000
278
+ 46,Male,PhD,Senior Data Analyst,17,160000
279
+ 34,Female,Bachelor's,Junior Financial Analyst,5,70000
280
+ 36,Male,Bachelor's,Senior Product Manager,8,95000
281
+ 49,Female,Master's,Director of Operations,21,180000
282
+ 31,Male,Bachelor's,Junior Operations Analyst,3,50000
283
+ 41,Female,Bachelor's,Senior Project Coordinator,11,95000
284
+ 47,Male,Master's,Director of Marketing,19,170000
285
+ 29,Female,Bachelor's,Junior Business Development Associate,1.5,35000
286
+ 35,Male,Bachelor's,Senior Financial Manager,9,100000
287
+ 44,Female,PhD,Senior Product Designer,15,150000
288
+ 33,Male,Bachelor's,Junior Business Analyst,4,60000
289
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
290
+ 44,Male,Bachelor's,Senior Software Engineer,13,130000
291
+ 32,Male,Bachelor's,Junior Product Manager,4,65000
292
+ 38,Female,Bachelor's,Senior Business Analyst,10,110000
293
+ 49,Male,PhD,Director of Operations,21,180000
294
+ 29,Female,Bachelor's,Junior Marketing Specialist,2,40000
295
+ 35,Male,Bachelor's,Senior Business Development Manager,7,90000
296
+ 45,Female,Master's,Senior HR Manager,14,140000
297
+ 33,Male,Bachelor's,Junior Financial Analyst,4,60000
298
+ 40,Female,Bachelor's,Senior Marketing Manager,12,130000
299
+ 44,Male,PhD,Senior Data Scientist,16,160000
300
+ 30,Female,Bachelor's,Junior Operations Coordinator,2,40000
301
+ 37,Male,Bachelor's,Senior Marketing Analyst,9,100000
302
+ 48,Female,Master's,Director of HR,20,180000
303
+ 31,Male,Bachelor's,Junior Project Manager,3,55000
304
+ 38,Female,Bachelor's,Senior Operations Coordinator,9,120000
305
+ 45,Male,PhD,Senior Data Engineer,16,150000
306
+ 33,Female,Bachelor's,Junior Marketing Manager,5,70000
307
+ 36,Male,Bachelor's,Senior Business Analyst,8,95000
308
+ 49,Female,Master's,Director of Marketing,21,180000
309
+ 31,Male,Bachelor's,Junior Operations Analyst,3,50000
310
+ 42,Female,Bachelor's,Senior Project Manager,12,120000
311
+ 47,Male,Master's,Director of Marketing,19,170000
312
+ 29,Female,Bachelor's,Junior Business Development Associate,1.5,35000
313
+ 35,Male,Bachelor's,Senior Financial Manager,9,100000
314
+ 44,Female,PhD,Senior Product Designer,15,150000
315
+ 33,Male,Bachelor's,Junior Business Analyst,4,60000
316
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
317
+ 44,Male,Bachelor's,Senior Software Engineer,13,130000
318
+ 34,Female,Master's,Senior Financial Advisor,6,80000
319
+ 36,Male,Bachelor's,Senior Marketing Specialist,8,95000
320
+ 30,Female,Bachelor's,Junior HR Coordinator,2,40000
321
+ 37,Male,Bachelor's,Senior Business Development Manager,10,120000
322
+ 45,Female,Master's,Senior Marketing Manager,16,160000
323
+ 32,Male,Bachelor's,Junior Financial Advisor,4,65000
324
+ 39,Female,Bachelor's,Senior Project Manager,12,130000
325
+ 47,Male,PhD,Director of Engineering,20,180000
326
+ 29,Female,Bachelor's,Junior Marketing Analyst,2,40000
327
+ 36,Male,Bachelor's,Senior Operations Manager,9,100000
328
+ 43,Female,PhD,Senior Data Scientist,15,150000
329
+ 32,Male,Bachelor's,Junior Marketing Coordinator,3,55000
330
+ 38,Female,Bachelor's,Senior Business Analyst,10,110000
331
+ 48,Male,Master's,Director of Marketing,21,180000
332
+ 31,Female,Bachelor's,Junior Business Development Associate,3,50000
333
+ 40,Male,Bachelor's,Senior Financial Analyst,12,130000
334
+ 45,Female,PhD,Senior UX Designer,16,160000
335
+ 33,Male,Bachelor's,Junior Product Manager,4,60000
336
+ 36,Female,Bachelor's,Senior Marketing Manager,8,95000
337
+ 47,Male,Master's,Director of Operations,19,170000
338
+ 29,Female,Bachelor's,Junior Project Manager,2,40000
339
+ 34,Male,Bachelor's,Senior Operations Coordinator,7,90000
340
+ 44,Female,PhD,Senior Business Analyst,15,150000
341
+ 33,Male,Bachelor's,Junior Marketing Specialist,5,70000
342
+ 35,Female,Bachelor's,Senior Financial Manager,8,90000
343
+ 43,Male,Master's,Director of Marketing,18,170000
344
+ 31,Female,Bachelor's,Junior Financial Analyst,3,50000
345
+ 41,Male,Bachelor's,Senior Product Manager,14,150000
346
+ 44,Female,PhD,Senior Data Engineer,16,160000
347
+ 33,Male,Bachelor's,Junior Business Analyst,4,60000
348
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
349
+ 45,Male,Master's,Director of Engineering,19,180000
350
+ 28,Female,Bachelor's,Junior Operations Manager,1,35000
351
+ 36,Male,Bachelor's,Senior Business Development Manager,8,110000
352
+ 44,Female,PhD,Senior Data Scientist,16,160000
353
+ 31,Male,Bachelor's,Junior Marketing Coordinator,3,55000
354
+ 38,Female,Bachelor's,Senior Business Analyst,10,110000
355
+ 48,Male,Master's,Director of Marketing,21,180000
356
+ 31,Female,Bachelor's,Junior Business Development Associate,3,50000
357
+ 40,Male,Bachelor's,Senior Financial Analyst,12,130000
358
+ 45,Female,PhD,Senior UX Designer,16,160000
359
+ 33,Male,Bachelor's,Junior Product Manager,4,60000
360
+ 36,Female,Bachelor's,Senior Marketing Manager,8,95000
361
+ 47,Male,Master's,Director of Operations,19,170000
362
+ 29,Female,Bachelor's,Junior Project Manager,2,40000
363
+ 34,Male,Bachelor's,Senior Operations Coordinator,7,90000
364
+ 44,Female,PhD,Senior Business Analyst,15,150000
365
+ 33,Male,Bachelor's,Junior Marketing Specialist,5,70000
366
+ 35,Female,Bachelor's,Senior Financial Manager,8,90000
367
+ 43,Male,Master's,Director of Marketing,18,170000
368
+ 31,Female,Bachelor's,Junior Financial Analyst,3,50000
369
+ 41,Male,Bachelor's,Senior Product Manager,14,150000
370
+ 44,Female,PhD,Senior Data Engineer,16,160000
371
+ 33,Male,Bachelor's,Junior Business Analyst,4,60000
372
+ 35,Female,Bachelor's,Senior Marketing Analyst,8,85000
373
+ 43,Male,Master's,Director of Operations,19,170000
374
+ 29,Female,Bachelor's,Junior Project Manager,2,40000
375
+ 34,Male,Bachelor's,Senior Operations Coordinator,7,90000
376
+ 44,Female,PhD,Senior Business Analyst,15,150000
src/uploads/cars_train.csv ADDED
@@ -0,0 +1,1382 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ vhigh,high,3,more,small,low,unacc
2
+ low,vhigh,3,4,small,med,unacc
3
+ low,high,5more,more,big,low,unacc
4
+ high,med,4,2,small,med,unacc
5
+ low,low,3,more,big,med,good
6
+ low,low,2,4,big,high,vgood
7
+ low,high,5more,more,big,high,vgood
8
+ high,med,5more,4,small,low,unacc
9
+ med,low,3,2,small,low,unacc
10
+ vhigh,low,3,4,big,low,unacc
11
+ med,vhigh,5more,more,med,low,unacc
12
+ low,high,5more,more,med,med,acc
13
+ med,vhigh,3,4,big,low,unacc
14
+ vhigh,vhigh,2,4,big,med,unacc
15
+ vhigh,med,5more,2,big,med,unacc
16
+ med,med,4,more,big,high,vgood
17
+ high,med,3,more,small,low,unacc
18
+ high,high,2,more,small,low,unacc
19
+ low,med,2,4,small,high,good
20
+ low,low,4,2,med,high,unacc
21
+ low,low,4,4,big,med,good
22
+ vhigh,vhigh,4,more,med,low,unacc
23
+ med,high,2,more,small,med,unacc
24
+ med,vhigh,5more,4,big,low,unacc
25
+ med,high,4,more,med,high,acc
26
+ high,med,3,4,big,med,acc
27
+ vhigh,vhigh,3,2,small,high,unacc
28
+ low,med,2,more,big,low,unacc
29
+ med,vhigh,3,2,med,low,unacc
30
+ med,med,2,2,big,low,unacc
31
+ high,low,2,2,small,low,unacc
32
+ vhigh,low,2,4,small,med,unacc
33
+ med,low,3,2,big,high,unacc
34
+ low,vhigh,5more,more,med,med,acc
35
+ med,vhigh,3,2,big,low,unacc
36
+ med,med,5more,4,small,med,acc
37
+ low,low,4,4,small,high,good
38
+ vhigh,high,5more,2,small,med,unacc
39
+ high,vhigh,2,2,med,low,unacc
40
+ low,high,5more,4,med,low,unacc
41
+ high,med,2,more,small,low,unacc
42
+ vhigh,med,4,2,med,med,unacc
43
+ low,high,3,more,small,med,acc
44
+ vhigh,med,5more,more,big,low,unacc
45
+ vhigh,low,3,more,big,low,unacc
46
+ low,med,5more,4,big,high,vgood
47
+ low,vhigh,4,4,med,med,acc
48
+ high,low,5more,more,big,high,acc
49
+ high,high,4,more,big,med,acc
50
+ high,low,2,4,big,high,acc
51
+ high,vhigh,2,2,big,high,unacc
52
+ low,low,3,4,med,med,acc
53
+ low,high,3,4,med,low,unacc
54
+ med,med,3,2,big,med,unacc
55
+ med,vhigh,3,more,big,low,unacc
56
+ vhigh,low,4,more,big,med,acc
57
+ med,med,5more,4,small,high,acc
58
+ vhigh,low,2,4,med,low,unacc
59
+ med,vhigh,4,more,med,med,acc
60
+ low,low,5more,2,small,low,unacc
61
+ low,low,3,4,med,high,good
62
+ vhigh,low,3,4,big,med,acc
63
+ low,low,5more,4,med,low,unacc
64
+ high,high,4,4,small,med,unacc
65
+ high,high,4,more,med,med,acc
66
+ med,med,3,2,big,high,unacc
67
+ vhigh,vhigh,3,4,med,low,unacc
68
+ high,med,2,2,big,low,unacc
69
+ low,high,2,4,small,high,acc
70
+ low,med,2,more,med,high,good
71
+ med,vhigh,5more,more,small,med,unacc
72
+ low,high,4,4,small,high,acc
73
+ low,vhigh,3,more,big,high,acc
74
+ vhigh,high,2,2,med,med,unacc
75
+ low,high,3,4,small,med,acc
76
+ low,low,3,2,big,low,unacc
77
+ low,high,4,more,small,low,unacc
78
+ high,low,3,4,med,low,unacc
79
+ vhigh,vhigh,3,2,small,med,unacc
80
+ high,med,4,2,med,med,unacc
81
+ med,low,4,2,small,low,unacc
82
+ high,vhigh,3,more,med,med,unacc
83
+ med,vhigh,5more,4,med,low,unacc
84
+ low,low,3,2,med,low,unacc
85
+ high,high,4,more,small,low,unacc
86
+ med,high,2,4,big,low,unacc
87
+ low,low,2,more,small,low,unacc
88
+ med,vhigh,5more,4,med,med,acc
89
+ vhigh,low,5more,2,big,high,unacc
90
+ low,low,2,2,small,med,unacc
91
+ med,low,5more,4,med,high,vgood
92
+ vhigh,high,2,4,small,med,unacc
93
+ med,vhigh,5more,2,med,med,unacc
94
+ med,high,5more,4,small,low,unacc
95
+ high,med,4,more,med,low,unacc
96
+ low,low,5more,4,small,med,acc
97
+ med,low,4,more,big,low,unacc
98
+ vhigh,high,2,4,big,med,unacc
99
+ vhigh,low,2,2,big,high,unacc
100
+ high,low,5more,4,med,med,acc
101
+ low,high,2,more,big,low,unacc
102
+ vhigh,med,5more,2,big,low,unacc
103
+ vhigh,high,4,4,med,med,unacc
104
+ med,med,5more,4,med,med,acc
105
+ high,med,3,2,med,med,unacc
106
+ vhigh,low,3,more,small,med,unacc
107
+ low,low,4,more,med,low,unacc
108
+ vhigh,med,5more,more,big,high,acc
109
+ med,high,5more,2,med,med,unacc
110
+ vhigh,low,3,2,med,low,unacc
111
+ low,med,3,more,small,med,acc
112
+ low,med,2,more,big,high,vgood
113
+ med,high,2,2,med,med,unacc
114
+ high,low,5more,2,small,med,unacc
115
+ med,med,5more,2,med,low,unacc
116
+ med,low,2,more,small,high,unacc
117
+ low,med,3,4,med,high,good
118
+ vhigh,med,5more,2,small,med,unacc
119
+ high,high,3,2,med,med,unacc
120
+ low,vhigh,2,2,med,med,unacc
121
+ vhigh,med,3,2,small,high,unacc
122
+ med,vhigh,3,more,small,low,unacc
123
+ vhigh,vhigh,5more,4,med,med,unacc
124
+ med,vhigh,3,more,big,med,acc
125
+ high,high,4,more,big,low,unacc
126
+ vhigh,low,4,more,small,high,acc
127
+ vhigh,vhigh,3,4,big,med,unacc
128
+ high,med,4,more,small,high,acc
129
+ med,high,4,4,small,low,unacc
130
+ vhigh,med,3,2,med,med,unacc
131
+ vhigh,med,2,4,med,low,unacc
132
+ high,med,5more,2,small,high,unacc
133
+ high,low,4,more,big,med,acc
134
+ vhigh,vhigh,3,more,small,high,unacc
135
+ high,vhigh,5more,4,small,high,unacc
136
+ low,vhigh,3,2,big,low,unacc
137
+ vhigh,high,5more,2,med,high,unacc
138
+ vhigh,vhigh,4,4,med,high,unacc
139
+ high,vhigh,5more,4,big,low,unacc
140
+ high,high,5more,2,small,low,unacc
141
+ low,vhigh,3,2,big,high,unacc
142
+ low,low,2,4,small,low,unacc
143
+ low,low,2,4,small,high,good
144
+ med,high,4,4,big,low,unacc
145
+ low,med,5more,2,small,med,unacc
146
+ low,high,3,2,med,high,unacc
147
+ high,low,2,2,big,high,unacc
148
+ high,med,4,2,med,high,unacc
149
+ med,high,4,4,big,med,acc
150
+ high,low,5more,more,med,high,acc
151
+ low,high,5more,2,med,high,unacc
152
+ vhigh,vhigh,2,4,small,high,unacc
153
+ med,med,4,4,small,low,unacc
154
+ med,med,2,4,med,high,acc
155
+ low,low,4,2,big,med,unacc
156
+ high,vhigh,4,2,small,low,unacc
157
+ vhigh,vhigh,4,more,small,med,unacc
158
+ low,low,2,2,small,low,unacc
159
+ high,high,2,4,big,low,unacc
160
+ med,high,5more,more,big,high,acc
161
+ vhigh,med,3,more,small,low,unacc
162
+ high,med,3,4,big,high,acc
163
+ vhigh,med,2,2,big,low,unacc
164
+ med,low,4,2,small,high,unacc
165
+ low,vhigh,5more,more,big,high,acc
166
+ low,low,4,2,med,low,unacc
167
+ low,high,5more,4,big,med,acc
168
+ high,high,3,4,small,low,unacc
169
+ high,low,2,more,small,high,unacc
170
+ high,med,2,4,med,low,unacc
171
+ low,high,4,4,big,high,vgood
172
+ high,low,4,more,small,low,unacc
173
+ high,med,5more,more,big,med,acc
174
+ high,high,3,more,big,high,acc
175
+ low,vhigh,2,more,med,low,unacc
176
+ med,vhigh,4,more,small,low,unacc
177
+ high,low,3,more,small,high,acc
178
+ high,low,4,4,small,high,acc
179
+ med,low,4,2,small,med,unacc
180
+ med,high,4,2,big,high,unacc
181
+ med,high,3,2,med,med,unacc
182
+ med,med,2,2,small,low,unacc
183
+ med,high,4,more,med,med,acc
184
+ med,vhigh,4,more,med,low,unacc
185
+ low,low,5more,4,small,low,unacc
186
+ vhigh,low,5more,4,big,med,acc
187
+ high,vhigh,4,4,big,low,unacc
188
+ vhigh,med,2,2,big,med,unacc
189
+ high,vhigh,4,2,med,low,unacc
190
+ med,vhigh,5more,2,small,med,unacc
191
+ high,low,2,2,big,med,unacc
192
+ med,low,4,4,small,med,acc
193
+ high,high,5more,4,med,low,unacc
194
+ med,vhigh,5more,2,med,low,unacc
195
+ high,low,3,4,big,low,unacc
196
+ low,vhigh,2,2,small,low,unacc
197
+ med,vhigh,2,4,big,med,acc
198
+ low,low,2,more,small,med,unacc
199
+ vhigh,vhigh,4,more,big,low,unacc
200
+ vhigh,high,4,4,big,high,unacc
201
+ low,med,3,2,small,med,unacc
202
+ high,low,5more,2,med,high,unacc
203
+ low,high,3,2,med,med,unacc
204
+ high,low,2,4,med,med,unacc
205
+ med,high,3,4,med,med,unacc
206
+ vhigh,high,2,4,med,med,unacc
207
+ vhigh,vhigh,4,more,small,low,unacc
208
+ high,vhigh,3,more,big,low,unacc
209
+ med,low,2,2,med,high,unacc
210
+ med,high,2,2,small,med,unacc
211
+ high,high,5more,4,big,low,unacc
212
+ high,high,2,more,big,low,unacc
213
+ high,low,2,more,small,low,unacc
214
+ high,low,5more,4,big,high,acc
215
+ low,high,5more,4,med,high,vgood
216
+ high,med,2,2,small,med,unacc
217
+ med,med,5more,2,big,low,unacc
218
+ med,vhigh,2,2,big,high,unacc
219
+ high,low,3,4,big,high,acc
220
+ low,vhigh,5more,more,big,low,unacc
221
+ med,low,2,2,med,low,unacc
222
+ low,high,4,more,med,med,acc
223
+ low,vhigh,4,2,small,low,unacc
224
+ low,vhigh,5more,2,med,low,unacc
225
+ low,med,4,4,small,low,unacc
226
+ low,vhigh,5more,4,big,low,unacc
227
+ high,high,5more,4,big,med,acc
228
+ med,low,2,2,med,med,unacc
229
+ low,high,5more,more,small,med,acc
230
+ high,high,5more,4,small,med,unacc
231
+ high,med,2,more,small,med,unacc
232
+ high,high,4,more,med,low,unacc
233
+ med,high,5more,2,small,high,unacc
234
+ med,high,2,more,big,low,unacc
235
+ vhigh,low,2,2,small,med,unacc
236
+ med,high,3,2,big,high,unacc
237
+ vhigh,high,3,2,med,med,unacc
238
+ vhigh,med,4,2,small,med,unacc
239
+ med,med,3,more,big,high,vgood
240
+ low,vhigh,5more,4,med,high,acc
241
+ low,med,2,4,med,low,unacc
242
+ high,med,2,4,small,low,unacc
243
+ high,low,5more,4,small,low,unacc
244
+ low,vhigh,3,more,big,med,acc
245
+ low,high,2,more,big,high,vgood
246
+ low,vhigh,5more,more,small,low,unacc
247
+ high,med,3,more,big,low,unacc
248
+ med,low,5more,4,small,low,unacc
249
+ med,high,4,2,med,med,unacc
250
+ high,vhigh,2,4,med,med,unacc
251
+ vhigh,low,4,4,small,low,unacc
252
+ low,vhigh,4,4,small,low,unacc
253
+ low,med,5more,2,med,high,unacc
254
+ vhigh,med,5more,2,big,high,unacc
255
+ med,low,2,2,small,high,unacc
256
+ high,high,2,more,small,med,unacc
257
+ vhigh,vhigh,2,2,med,low,unacc
258
+ med,low,3,2,small,med,unacc
259
+ med,high,5more,4,small,med,unacc
260
+ med,high,5more,more,med,low,unacc
261
+ low,med,2,more,small,high,unacc
262
+ high,vhigh,2,4,big,low,unacc
263
+ high,low,4,more,med,high,acc
264
+ high,high,3,2,med,high,unacc
265
+ high,low,3,4,big,med,acc
266
+ vhigh,vhigh,5more,more,med,high,unacc
267
+ vhigh,low,3,4,med,low,unacc
268
+ high,med,5more,4,med,med,acc
269
+ low,low,2,2,big,low,unacc
270
+ med,vhigh,4,4,big,high,acc
271
+ low,med,5more,more,small,low,unacc
272
+ low,low,5more,2,small,high,unacc
273
+ low,vhigh,4,2,med,low,unacc
274
+ med,high,5more,4,big,med,acc
275
+ med,low,2,more,small,med,unacc
276
+ high,low,3,2,med,low,unacc
277
+ low,med,3,2,big,med,unacc
278
+ med,med,2,2,med,med,unacc
279
+ med,high,5more,2,small,low,unacc
280
+ med,med,2,more,small,med,unacc
281
+ high,vhigh,5more,more,small,med,unacc
282
+ low,med,4,2,small,med,unacc
283
+ low,vhigh,4,more,med,high,acc
284
+ vhigh,vhigh,2,more,med,med,unacc
285
+ vhigh,high,4,2,small,high,unacc
286
+ high,med,4,more,small,med,unacc
287
+ low,high,4,4,big,med,acc
288
+ low,low,4,2,med,med,unacc
289
+ med,low,4,2,med,med,unacc
290
+ vhigh,low,4,2,med,low,unacc
291
+ low,vhigh,5more,4,small,low,unacc
292
+ med,high,3,more,small,high,acc
293
+ vhigh,high,3,4,big,med,unacc
294
+ high,vhigh,5more,2,small,med,unacc
295
+ high,vhigh,3,2,small,high,unacc
296
+ low,low,3,2,small,low,unacc
297
+ med,med,2,2,big,high,unacc
298
+ vhigh,low,3,4,med,high,acc
299
+ low,low,2,2,med,med,unacc
300
+ vhigh,high,4,4,small,med,unacc
301
+ med,low,4,4,med,med,good
302
+ med,vhigh,2,2,big,low,unacc
303
+ vhigh,med,2,4,med,med,unacc
304
+ med,high,3,2,big,low,unacc
305
+ med,med,2,more,small,high,unacc
306
+ low,high,2,2,big,med,unacc
307
+ low,vhigh,2,4,small,high,acc
308
+ high,med,3,more,med,med,acc
309
+ vhigh,vhigh,4,more,big,high,unacc
310
+ low,low,5more,more,med,med,good
311
+ high,vhigh,2,2,big,low,unacc
312
+ vhigh,high,3,more,med,med,unacc
313
+ high,low,4,2,med,high,unacc
314
+ vhigh,high,4,more,big,low,unacc
315
+ high,med,2,more,med,low,unacc
316
+ high,low,2,more,med,high,acc
317
+ med,med,5more,more,small,low,unacc
318
+ high,low,5more,2,med,low,unacc
319
+ med,low,5more,more,med,high,vgood
320
+ med,vhigh,4,more,med,high,acc
321
+ med,low,4,4,med,low,unacc
322
+ vhigh,high,4,4,big,low,unacc
323
+ med,vhigh,4,more,big,low,unacc
324
+ med,med,5more,2,small,low,unacc
325
+ low,high,4,2,small,high,unacc
326
+ low,low,5more,more,small,med,acc
327
+ med,med,5more,2,small,high,unacc
328
+ high,low,4,more,med,low,unacc
329
+ high,low,4,4,small,low,unacc
330
+ med,low,4,2,big,low,unacc
331
+ high,low,4,more,med,med,acc
332
+ low,vhigh,2,2,big,high,unacc
333
+ vhigh,low,2,4,big,high,acc
334
+ med,high,3,more,med,high,acc
335
+ low,high,5more,2,big,low,unacc
336
+ high,vhigh,3,more,med,high,unacc
337
+ high,low,4,4,med,high,acc
338
+ med,med,3,2,med,high,unacc
339
+ high,vhigh,4,4,med,low,unacc
340
+ vhigh,low,5more,more,big,high,acc
341
+ med,low,3,4,big,high,vgood
342
+ vhigh,med,5more,2,med,low,unacc
343
+ low,vhigh,3,4,small,low,unacc
344
+ med,vhigh,2,more,med,med,unacc
345
+ vhigh,med,4,4,med,low,unacc
346
+ vhigh,low,3,2,big,med,unacc
347
+ med,low,4,4,big,high,vgood
348
+ vhigh,vhigh,3,more,big,med,unacc
349
+ low,vhigh,5more,4,med,low,unacc
350
+ high,low,4,more,small,med,unacc
351
+ low,med,5more,more,big,med,good
352
+ med,med,3,4,small,high,acc
353
+ low,low,5more,4,med,med,good
354
+ high,vhigh,3,2,big,high,unacc
355
+ med,vhigh,5more,2,big,med,unacc
356
+ vhigh,low,5more,2,big,low,unacc
357
+ high,med,3,2,med,low,unacc
358
+ low,med,4,2,big,low,unacc
359
+ low,vhigh,2,2,big,med,unacc
360
+ vhigh,low,3,more,med,med,acc
361
+ vhigh,vhigh,2,more,small,high,unacc
362
+ vhigh,high,3,4,big,high,unacc
363
+ med,low,4,2,med,high,unacc
364
+ med,med,2,2,big,med,unacc
365
+ vhigh,vhigh,3,4,med,high,unacc
366
+ med,med,2,2,small,med,unacc
367
+ low,high,4,2,big,high,unacc
368
+ low,vhigh,2,4,med,med,unacc
369
+ low,med,5more,2,big,low,unacc
370
+ high,low,3,4,small,low,unacc
371
+ med,high,4,2,small,low,unacc
372
+ vhigh,med,4,4,small,med,unacc
373
+ high,vhigh,4,4,small,low,unacc
374
+ vhigh,high,4,4,small,high,unacc
375
+ med,med,4,2,med,low,unacc
376
+ med,vhigh,3,more,small,med,unacc
377
+ high,high,2,4,small,med,unacc
378
+ high,vhigh,2,2,big,med,unacc
379
+ vhigh,vhigh,3,more,big,low,unacc
380
+ med,low,2,4,small,high,good
381
+ vhigh,low,5more,more,small,high,acc
382
+ low,high,3,2,big,high,unacc
383
+ high,med,5more,2,med,high,unacc
384
+ vhigh,med,2,2,big,high,unacc
385
+ low,low,5more,more,big,med,good
386
+ vhigh,med,4,more,big,low,unacc
387
+ high,high,5more,2,med,med,unacc
388
+ high,vhigh,5more,more,big,med,unacc
389
+ low,med,5more,2,med,med,unacc
390
+ med,med,5more,4,big,high,vgood
391
+ med,high,3,2,small,low,unacc
392
+ vhigh,vhigh,3,2,med,low,unacc
393
+ vhigh,high,5more,4,big,low,unacc
394
+ low,low,5more,2,big,high,unacc
395
+ vhigh,high,4,more,small,low,unacc
396
+ high,high,5more,more,big,high,acc
397
+ high,med,2,more,big,low,unacc
398
+ vhigh,low,5more,4,big,low,unacc
399
+ vhigh,high,5more,4,small,med,unacc
400
+ high,low,5more,2,big,high,unacc
401
+ vhigh,high,2,4,med,high,unacc
402
+ high,vhigh,4,4,small,med,unacc
403
+ high,vhigh,5more,4,med,low,unacc
404
+ low,med,5more,4,small,low,unacc
405
+ vhigh,high,5more,more,big,low,unacc
406
+ med,vhigh,4,2,big,low,unacc
407
+ low,med,3,more,big,low,unacc
408
+ vhigh,med,3,4,med,low,unacc
409
+ med,high,3,4,small,med,unacc
410
+ vhigh,vhigh,5more,more,big,med,unacc
411
+ med,vhigh,2,4,small,med,unacc
412
+ high,low,2,2,small,high,unacc
413
+ med,vhigh,5more,2,big,high,unacc
414
+ low,med,2,more,small,low,unacc
415
+ med,vhigh,3,4,med,med,unacc
416
+ high,med,3,4,med,med,unacc
417
+ low,low,3,more,small,high,good
418
+ med,low,2,4,med,low,unacc
419
+ med,med,5more,more,med,high,vgood
420
+ med,low,2,4,med,med,acc
421
+ vhigh,low,3,more,med,high,acc
422
+ vhigh,vhigh,2,2,big,low,unacc
423
+ med,low,2,4,big,low,unacc
424
+ vhigh,med,2,4,small,med,unacc
425
+ vhigh,low,4,more,small,med,unacc
426
+ high,vhigh,2,2,med,high,unacc
427
+ vhigh,low,5more,4,med,high,acc
428
+ vhigh,high,5more,2,big,med,unacc
429
+ high,vhigh,5more,2,big,med,unacc
430
+ vhigh,low,4,2,small,low,unacc
431
+ low,vhigh,4,2,small,high,unacc
432
+ low,high,3,2,small,high,unacc
433
+ high,high,4,4,small,low,unacc
434
+ high,vhigh,2,4,small,med,unacc
435
+ med,high,2,more,small,high,unacc
436
+ vhigh,vhigh,5more,2,small,med,unacc
437
+ high,vhigh,5more,2,big,high,unacc
438
+ med,low,4,2,big,med,unacc
439
+ med,med,3,2,med,med,unacc
440
+ low,vhigh,5more,more,big,med,acc
441
+ low,med,3,4,small,low,unacc
442
+ med,vhigh,5more,more,big,med,acc
443
+ med,vhigh,2,more,big,high,acc
444
+ high,vhigh,4,4,med,high,unacc
445
+ vhigh,med,4,4,big,high,acc
446
+ vhigh,low,2,4,small,high,acc
447
+ low,low,4,4,med,low,unacc
448
+ vhigh,low,5more,4,small,high,acc
449
+ med,med,3,4,big,med,acc
450
+ high,low,5more,2,big,low,unacc
451
+ vhigh,high,4,2,big,med,unacc
452
+ high,low,5more,more,small,high,acc
453
+ high,med,5more,more,med,med,acc
454
+ low,low,4,4,big,low,unacc
455
+ med,med,3,4,big,low,unacc
456
+ low,vhigh,2,4,big,low,unacc
457
+ low,med,4,2,small,high,unacc
458
+ low,low,3,2,small,high,unacc
459
+ high,vhigh,4,more,big,med,unacc
460
+ high,low,3,2,med,high,unacc
461
+ med,high,2,4,big,high,acc
462
+ med,vhigh,2,2,med,high,unacc
463
+ high,low,3,4,small,med,unacc
464
+ med,high,2,more,med,high,acc
465
+ vhigh,med,2,more,big,low,unacc
466
+ high,med,2,4,small,med,unacc
467
+ low,med,4,2,big,med,unacc
468
+ high,low,5more,more,med,low,unacc
469
+ med,high,4,more,small,low,unacc
470
+ high,vhigh,3,more,small,high,unacc
471
+ med,med,4,2,big,low,unacc
472
+ med,vhigh,5more,4,big,high,acc
473
+ med,vhigh,3,4,small,low,unacc
474
+ med,low,3,2,med,high,unacc
475
+ high,high,3,more,med,high,acc
476
+ med,med,4,4,med,high,vgood
477
+ med,high,3,more,small,med,unacc
478
+ high,med,2,4,big,high,acc
479
+ med,low,3,2,med,med,unacc
480
+ vhigh,med,2,more,small,high,unacc
481
+ vhigh,low,4,more,med,low,unacc
482
+ vhigh,vhigh,5more,4,med,high,unacc
483
+ vhigh,med,4,4,med,high,acc
484
+ high,vhigh,2,4,small,low,unacc
485
+ high,low,3,more,big,high,acc
486
+ high,high,2,4,med,high,acc
487
+ med,med,3,more,big,low,unacc
488
+ high,vhigh,4,2,big,low,unacc
489
+ med,high,5more,2,big,high,unacc
490
+ vhigh,high,3,more,small,high,unacc
491
+ med,low,5more,4,med,low,unacc
492
+ med,vhigh,5more,4,small,med,unacc
493
+ high,vhigh,3,more,small,low,unacc
494
+ med,med,4,2,med,high,unacc
495
+ low,high,3,2,small,med,unacc
496
+ high,vhigh,4,more,small,med,unacc
497
+ med,vhigh,5more,more,small,high,acc
498
+ med,low,3,4,med,low,unacc
499
+ vhigh,vhigh,5more,more,small,high,unacc
500
+ vhigh,high,5more,more,big,high,unacc
501
+ high,med,5more,more,small,med,unacc
502
+ low,med,2,more,big,med,good
503
+ vhigh,high,3,2,med,high,unacc
504
+ med,med,3,more,small,med,acc
505
+ high,high,3,4,big,low,unacc
506
+ med,low,5more,4,big,high,vgood
507
+ vhigh,low,5more,2,med,high,unacc
508
+ vhigh,vhigh,4,more,big,med,unacc
509
+ low,vhigh,3,4,med,high,acc
510
+ vhigh,med,3,4,small,med,unacc
511
+ low,med,5more,4,med,med,good
512
+ vhigh,med,3,2,big,low,unacc
513
+ med,low,3,more,big,high,vgood
514
+ vhigh,high,5more,4,big,med,unacc
515
+ low,vhigh,4,4,big,high,acc
516
+ vhigh,low,4,4,big,low,unacc
517
+ low,vhigh,2,more,small,low,unacc
518
+ med,low,5more,2,med,low,unacc
519
+ vhigh,vhigh,5more,2,big,med,unacc
520
+ vhigh,med,2,more,big,high,acc
521
+ med,high,3,more,big,high,acc
522
+ low,med,3,more,big,med,good
523
+ high,low,2,more,big,high,acc
524
+ vhigh,low,2,more,big,med,acc
525
+ high,vhigh,5more,2,small,low,unacc
526
+ med,vhigh,3,2,small,high,unacc
527
+ vhigh,med,3,2,big,med,unacc
528
+ vhigh,vhigh,5more,more,small,low,unacc
529
+ med,high,4,more,small,high,acc
530
+ vhigh,med,3,2,small,low,unacc
531
+ low,vhigh,4,more,small,high,acc
532
+ low,high,5more,more,med,low,unacc
533
+ high,med,5more,2,big,low,unacc
534
+ med,low,4,more,small,high,good
535
+ med,high,2,4,small,med,unacc
536
+ low,high,3,more,small,low,unacc
537
+ low,low,5more,2,med,high,unacc
538
+ high,high,4,4,big,high,acc
539
+ low,med,4,2,big,high,unacc
540
+ vhigh,vhigh,2,4,small,med,unacc
541
+ vhigh,med,4,2,big,low,unacc
542
+ vhigh,high,5more,2,med,med,unacc
543
+ low,high,4,2,med,med,unacc
544
+ med,high,2,more,med,med,unacc
545
+ high,vhigh,4,more,small,low,unacc
546
+ low,vhigh,5more,2,med,high,unacc
547
+ med,vhigh,4,4,med,high,acc
548
+ vhigh,high,2,2,big,high,unacc
549
+ high,vhigh,2,2,small,high,unacc
550
+ low,vhigh,3,more,small,low,unacc
551
+ high,vhigh,2,4,small,high,unacc
552
+ vhigh,vhigh,3,more,small,low,unacc
553
+ med,low,2,4,small,med,acc
554
+ high,med,5more,4,big,med,acc
555
+ high,vhigh,5more,4,med,med,unacc
556
+ vhigh,med,2,more,med,low,unacc
557
+ vhigh,low,4,2,big,med,unacc
558
+ low,vhigh,2,more,med,high,acc
559
+ low,med,3,4,med,low,unacc
560
+ low,high,2,2,med,low,unacc
561
+ vhigh,vhigh,3,more,big,high,unacc
562
+ high,high,2,more,med,high,acc
563
+ vhigh,low,2,more,small,low,unacc
564
+ vhigh,high,2,more,big,low,unacc
565
+ med,low,3,more,big,low,unacc
566
+ low,low,4,more,big,low,unacc
567
+ med,med,5more,more,small,high,acc
568
+ high,med,3,2,big,med,unacc
569
+ low,vhigh,4,4,big,low,unacc
570
+ low,vhigh,5more,2,small,low,unacc
571
+ high,low,4,2,small,low,unacc
572
+ vhigh,high,5more,2,big,low,unacc
573
+ med,vhigh,2,4,small,low,unacc
574
+ low,low,5more,more,med,high,vgood
575
+ med,low,3,2,big,low,unacc
576
+ med,med,4,more,med,high,vgood
577
+ high,med,3,2,big,high,unacc
578
+ low,vhigh,4,4,small,med,unacc
579
+ vhigh,high,3,2,big,low,unacc
580
+ high,vhigh,4,more,med,med,unacc
581
+ med,vhigh,3,4,med,high,acc
582
+ med,high,4,2,med,low,unacc
583
+ high,high,3,4,med,med,unacc
584
+ med,med,2,2,small,high,unacc
585
+ high,low,4,2,big,low,unacc
586
+ low,high,5more,more,small,high,acc
587
+ low,vhigh,2,more,big,high,acc
588
+ vhigh,high,3,4,med,low,unacc
589
+ vhigh,med,2,more,med,med,unacc
590
+ med,med,2,4,med,low,unacc
591
+ high,vhigh,3,4,big,low,unacc
592
+ med,vhigh,3,4,big,high,acc
593
+ med,low,4,more,med,low,unacc
594
+ vhigh,vhigh,4,2,med,low,unacc
595
+ vhigh,med,4,4,big,low,unacc
596
+ med,low,5more,2,med,med,unacc
597
+ vhigh,high,5more,2,big,high,unacc
598
+ med,vhigh,2,more,small,high,unacc
599
+ vhigh,high,3,2,med,low,unacc
600
+ high,high,5more,more,big,med,acc
601
+ vhigh,vhigh,2,more,med,high,unacc
602
+ high,high,2,more,big,high,acc
603
+ high,low,4,2,small,high,unacc
604
+ low,high,4,2,big,low,unacc
605
+ med,vhigh,4,4,big,low,unacc
606
+ low,low,5more,2,small,med,unacc
607
+ vhigh,vhigh,5more,4,small,high,unacc
608
+ low,vhigh,4,more,big,med,acc
609
+ high,med,4,4,small,med,unacc
610
+ vhigh,high,3,2,small,low,unacc
611
+ med,med,4,2,med,med,unacc
612
+ vhigh,high,4,2,small,med,unacc
613
+ med,med,2,4,med,med,acc
614
+ med,med,5more,4,med,low,unacc
615
+ med,low,5more,2,small,low,unacc
616
+ high,vhigh,2,4,big,med,unacc
617
+ med,med,5more,2,small,med,unacc
618
+ low,high,5more,2,small,high,unacc
619
+ high,vhigh,5more,more,small,low,unacc
620
+ high,med,3,4,med,low,unacc
621
+ med,low,5more,4,med,med,good
622
+ med,high,2,more,small,low,unacc
623
+ low,vhigh,3,more,small,med,unacc
624
+ low,low,3,2,small,med,unacc
625
+ low,med,4,2,med,high,unacc
626
+ med,high,5more,more,med,high,acc
627
+ low,vhigh,4,2,small,med,unacc
628
+ med,med,3,2,small,med,unacc
629
+ vhigh,med,2,2,small,low,unacc
630
+ vhigh,med,5more,2,med,high,unacc
631
+ vhigh,high,4,4,med,high,unacc
632
+ vhigh,high,2,2,big,low,unacc
633
+ low,med,2,2,big,med,unacc
634
+ high,vhigh,3,more,big,med,unacc
635
+ high,high,4,4,big,low,unacc
636
+ vhigh,low,5more,more,big,low,unacc
637
+ vhigh,low,4,2,big,high,unacc
638
+ vhigh,med,5more,more,small,low,unacc
639
+ low,high,5more,2,small,med,unacc
640
+ vhigh,high,4,more,small,med,unacc
641
+ vhigh,vhigh,4,4,small,high,unacc
642
+ low,vhigh,3,2,med,med,unacc
643
+ vhigh,med,4,2,big,med,unacc
644
+ vhigh,med,3,more,small,med,unacc
645
+ vhigh,med,4,more,med,med,acc
646
+ low,high,2,more,med,high,acc
647
+ low,med,4,4,med,high,vgood
648
+ med,med,2,2,med,low,unacc
649
+ med,med,2,more,big,low,unacc
650
+ med,med,2,4,small,med,acc
651
+ med,vhigh,2,more,small,low,unacc
652
+ high,med,3,more,med,low,unacc
653
+ med,med,5more,2,med,high,unacc
654
+ med,vhigh,2,2,big,med,unacc
655
+ low,high,3,more,big,high,vgood
656
+ vhigh,vhigh,2,4,med,low,unacc
657
+ low,med,5more,more,med,low,unacc
658
+ low,med,2,4,big,med,good
659
+ high,med,4,4,small,low,unacc
660
+ low,high,3,4,big,high,vgood
661
+ high,med,3,2,small,low,unacc
662
+ med,med,3,4,big,high,vgood
663
+ high,med,4,4,med,high,acc
664
+ high,high,2,2,big,low,unacc
665
+ low,med,4,more,small,low,unacc
666
+ low,high,2,4,big,med,acc
667
+ vhigh,vhigh,2,4,small,low,unacc
668
+ low,low,2,more,med,low,unacc
669
+ vhigh,low,2,4,med,med,unacc
670
+ low,vhigh,2,4,small,med,unacc
671
+ vhigh,low,5more,2,med,low,unacc
672
+ vhigh,vhigh,4,more,med,med,unacc
673
+ vhigh,med,2,more,small,med,unacc
674
+ low,vhigh,2,4,small,low,unacc
675
+ vhigh,med,3,2,med,high,unacc
676
+ vhigh,vhigh,3,2,big,low,unacc
677
+ high,high,5more,2,big,med,unacc
678
+ vhigh,vhigh,3,4,big,low,unacc
679
+ low,med,3,2,med,low,unacc
680
+ vhigh,vhigh,2,2,big,high,unacc
681
+ low,high,2,4,small,low,unacc
682
+ low,med,5more,4,med,low,unacc
683
+ high,med,5more,4,med,low,unacc
684
+ med,vhigh,2,2,med,med,unacc
685
+ vhigh,high,5more,2,med,low,unacc
686
+ vhigh,low,3,2,small,high,unacc
687
+ low,low,3,more,med,low,unacc
688
+ high,vhigh,2,4,med,low,unacc
689
+ med,low,2,4,small,low,unacc
690
+ low,vhigh,2,more,big,med,acc
691
+ high,vhigh,4,2,small,med,unacc
692
+ high,high,3,2,small,high,unacc
693
+ high,vhigh,4,4,med,med,unacc
694
+ vhigh,vhigh,3,more,med,med,unacc
695
+ high,high,5more,2,small,med,unacc
696
+ med,high,4,4,small,med,unacc
697
+ med,high,4,more,big,low,unacc
698
+ low,high,3,4,small,high,acc
699
+ low,high,2,more,big,med,acc
700
+ high,high,2,2,big,high,unacc
701
+ high,high,3,more,small,low,unacc
702
+ med,vhigh,3,more,med,low,unacc
703
+ vhigh,low,5more,more,big,med,acc
704
+ high,high,2,2,med,high,unacc
705
+ vhigh,med,3,4,big,med,acc
706
+ high,low,3,more,big,low,unacc
707
+ high,vhigh,5more,4,big,high,unacc
708
+ low,vhigh,4,2,big,med,unacc
709
+ low,vhigh,3,4,med,low,unacc
710
+ vhigh,high,4,2,big,high,unacc
711
+ high,med,4,2,small,low,unacc
712
+ vhigh,med,3,4,small,low,unacc
713
+ med,vhigh,3,more,small,high,acc
714
+ med,low,3,4,small,high,good
715
+ high,high,4,2,big,high,unacc
716
+ low,low,4,4,med,med,good
717
+ low,low,3,2,med,high,unacc
718
+ med,vhigh,5more,more,big,high,acc
719
+ vhigh,med,3,4,big,high,acc
720
+ vhigh,med,5more,more,big,med,acc
721
+ med,vhigh,2,2,med,low,unacc
722
+ high,high,5more,4,med,high,acc
723
+ high,vhigh,3,4,med,high,unacc
724
+ high,high,5more,2,big,high,unacc
725
+ vhigh,low,3,2,small,low,unacc
726
+ high,med,4,2,big,med,unacc
727
+ med,vhigh,4,4,med,med,acc
728
+ low,high,3,2,big,med,unacc
729
+ vhigh,vhigh,5more,2,small,high,unacc
730
+ high,med,2,4,big,med,acc
731
+ high,vhigh,2,more,big,med,unacc
732
+ low,vhigh,3,more,big,low,unacc
733
+ vhigh,low,3,2,big,low,unacc
734
+ vhigh,med,3,4,small,high,acc
735
+ vhigh,high,3,more,big,high,unacc
736
+ low,vhigh,3,4,big,low,unacc
737
+ vhigh,vhigh,2,more,small,med,unacc
738
+ low,high,3,2,big,low,unacc
739
+ high,vhigh,3,more,big,high,unacc
740
+ vhigh,med,3,more,small,high,acc
741
+ low,low,2,4,small,med,acc
742
+ vhigh,high,4,2,med,high,unacc
743
+ vhigh,med,4,more,big,med,acc
744
+ high,high,3,4,big,high,acc
745
+ high,high,2,4,small,low,unacc
746
+ med,vhigh,5more,more,big,low,unacc
747
+ vhigh,vhigh,5more,more,small,med,unacc
748
+ med,low,4,more,med,high,vgood
749
+ high,high,3,more,big,med,acc
750
+ vhigh,vhigh,5more,2,med,low,unacc
751
+ high,vhigh,5more,2,big,low,unacc
752
+ high,vhigh,2,more,big,low,unacc
753
+ low,low,2,more,big,high,vgood
754
+ high,low,2,4,med,low,unacc
755
+ high,high,3,4,small,high,acc
756
+ high,high,2,2,big,med,unacc
757
+ med,med,3,more,med,low,unacc
758
+ med,med,3,more,med,med,acc
759
+ vhigh,med,4,more,med,high,acc
760
+ low,med,5more,2,small,low,unacc
761
+ high,med,4,more,big,low,unacc
762
+ low,med,3,more,med,low,unacc
763
+ high,low,3,more,med,low,unacc
764
+ med,med,3,more,big,med,acc
765
+ vhigh,low,5more,4,small,med,unacc
766
+ low,med,5more,more,med,high,vgood
767
+ high,low,2,4,med,high,acc
768
+ high,med,5more,4,med,high,acc
769
+ med,low,2,2,small,low,unacc
770
+ med,high,2,4,big,med,acc
771
+ low,med,4,4,big,med,good
772
+ med,med,4,4,big,med,acc
773
+ high,med,2,more,big,med,acc
774
+ high,med,3,more,med,high,acc
775
+ med,low,3,more,med,high,vgood
776
+ med,low,2,4,med,high,good
777
+ med,med,5more,more,med,med,acc
778
+ med,high,2,more,med,low,unacc
779
+ med,med,4,more,small,med,acc
780
+ med,vhigh,3,more,med,med,acc
781
+ vhigh,high,4,more,med,low,unacc
782
+ high,vhigh,5more,2,med,med,unacc
783
+ high,low,4,more,big,low,unacc
784
+ med,vhigh,2,4,med,high,acc
785
+ med,high,2,4,small,high,acc
786
+ med,low,5more,more,small,med,acc
787
+ high,high,3,2,small,med,unacc
788
+ med,vhigh,5more,2,med,high,unacc
789
+ low,high,5more,4,med,med,acc
790
+ low,high,4,more,big,high,vgood
791
+ high,high,5more,more,small,low,unacc
792
+ vhigh,high,4,more,med,med,unacc
793
+ vhigh,med,5more,4,med,low,unacc
794
+ vhigh,high,5more,4,small,low,unacc
795
+ med,low,2,more,med,high,good
796
+ med,med,4,more,med,med,acc
797
+ low,high,2,more,small,high,unacc
798
+ low,vhigh,5more,2,small,high,unacc
799
+ med,low,2,more,big,low,unacc
800
+ vhigh,low,4,4,small,high,acc
801
+ low,med,5more,4,big,low,unacc
802
+ high,low,4,2,med,med,unacc
803
+ vhigh,high,3,more,big,low,unacc
804
+ med,high,5more,more,small,low,unacc
805
+ high,low,3,2,big,med,unacc
806
+ vhigh,high,4,2,med,med,unacc
807
+ med,low,5more,more,big,high,vgood
808
+ low,high,5more,more,big,med,acc
809
+ low,vhigh,2,more,small,high,unacc
810
+ high,med,3,2,big,low,unacc
811
+ high,high,4,4,big,med,acc
812
+ high,high,5more,2,small,high,unacc
813
+ med,low,5more,4,big,low,unacc
814
+ low,med,5more,2,big,med,unacc
815
+ med,low,5more,2,big,med,unacc
816
+ med,high,4,more,small,med,unacc
817
+ low,med,2,4,med,med,acc
818
+ high,vhigh,5more,more,med,high,unacc
819
+ high,low,3,2,big,high,unacc
820
+ high,high,4,2,small,low,unacc
821
+ med,med,2,4,small,low,unacc
822
+ high,vhigh,3,2,small,med,unacc
823
+ low,high,4,4,small,low,unacc
824
+ vhigh,med,4,2,small,high,unacc
825
+ vhigh,high,5more,4,small,high,unacc
826
+ vhigh,med,5more,4,med,high,acc
827
+ med,high,4,more,big,high,acc
828
+ low,high,3,more,med,low,unacc
829
+ high,high,3,4,med,high,acc
830
+ med,high,3,more,big,low,unacc
831
+ med,med,3,4,med,high,acc
832
+ med,vhigh,4,more,small,med,unacc
833
+ med,high,3,more,small,low,unacc
834
+ low,low,5more,more,big,low,unacc
835
+ med,med,4,more,small,high,acc
836
+ high,low,4,more,big,high,acc
837
+ vhigh,low,4,more,big,low,unacc
838
+ med,low,5more,more,big,low,unacc
839
+ med,med,3,4,med,med,acc
840
+ vhigh,low,3,2,small,med,unacc
841
+ low,med,5more,2,big,high,unacc
842
+ low,med,4,4,small,high,good
843
+ med,vhigh,4,more,big,med,acc
844
+ med,low,4,more,big,high,vgood
845
+ low,vhigh,2,more,big,low,unacc
846
+ low,vhigh,4,2,big,high,unacc
847
+ low,med,5more,more,big,low,unacc
848
+ med,med,4,2,small,low,unacc
849
+ vhigh,vhigh,2,more,med,low,unacc
850
+ med,low,2,2,big,low,unacc
851
+ med,med,2,4,big,med,acc
852
+ low,low,2,more,med,high,good
853
+ med,high,3,2,med,high,unacc
854
+ vhigh,low,4,4,small,med,unacc
855
+ low,med,2,2,big,low,unacc
856
+ vhigh,vhigh,5more,more,big,low,unacc
857
+ low,vhigh,2,2,med,high,unacc
858
+ vhigh,vhigh,5more,4,small,med,unacc
859
+ high,med,5more,4,small,high,acc
860
+ high,low,2,4,big,low,unacc
861
+ high,high,5more,2,med,high,unacc
862
+ low,med,3,2,small,high,unacc
863
+ high,low,5more,4,big,med,acc
864
+ vhigh,high,3,more,med,low,unacc
865
+ low,vhigh,3,2,big,med,unacc
866
+ med,vhigh,5more,more,med,med,acc
867
+ high,vhigh,3,2,big,med,unacc
868
+ med,low,3,4,big,med,good
869
+ low,high,5more,2,big,high,unacc
870
+ med,high,3,more,big,med,acc
871
+ high,vhigh,4,4,small,high,unacc
872
+ vhigh,vhigh,5more,2,med,high,unacc
873
+ vhigh,low,4,more,small,low,unacc
874
+ vhigh,med,3,4,med,high,acc
875
+ low,low,5more,more,small,low,unacc
876
+ high,low,5more,4,med,low,unacc
877
+ vhigh,med,2,4,big,low,unacc
878
+ high,vhigh,3,2,med,low,unacc
879
+ low,med,4,4,big,high,vgood
880
+ low,med,4,more,med,med,good
881
+ low,vhigh,5more,4,big,high,acc
882
+ vhigh,low,5more,2,small,high,unacc
883
+ med,high,4,2,small,high,unacc
884
+ low,med,3,more,big,high,vgood
885
+ vhigh,med,4,more,big,high,acc
886
+ low,high,4,2,big,med,unacc
887
+ low,med,5more,4,small,high,good
888
+ high,vhigh,3,more,small,med,unacc
889
+ med,high,3,2,small,high,unacc
890
+ high,vhigh,4,4,big,high,unacc
891
+ vhigh,vhigh,5more,more,big,high,unacc
892
+ high,low,2,4,small,low,unacc
893
+ med,vhigh,4,4,big,med,acc
894
+ vhigh,low,3,more,big,high,acc
895
+ vhigh,vhigh,4,4,big,med,unacc
896
+ med,med,2,more,big,med,acc
897
+ low,vhigh,2,4,big,high,acc
898
+ vhigh,low,4,4,med,low,unacc
899
+ vhigh,low,5more,more,small,med,unacc
900
+ med,low,2,more,big,med,good
901
+ vhigh,low,2,4,small,low,unacc
902
+ high,med,4,more,big,high,acc
903
+ high,high,5more,more,small,high,acc
904
+ high,low,5more,more,big,med,acc
905
+ med,low,4,4,small,high,good
906
+ low,med,3,4,big,high,vgood
907
+ med,med,4,2,big,high,unacc
908
+ vhigh,high,3,more,small,med,unacc
909
+ low,high,3,more,med,med,acc
910
+ high,high,4,2,big,low,unacc
911
+ low,low,4,more,big,high,vgood
912
+ low,low,3,more,med,med,good
913
+ vhigh,high,3,2,small,med,unacc
914
+ vhigh,vhigh,3,more,med,high,unacc
915
+ med,vhigh,2,2,small,low,unacc
916
+ high,med,5more,more,big,low,unacc
917
+ low,high,2,2,small,low,unacc
918
+ low,high,4,more,med,low,unacc
919
+ vhigh,med,2,more,big,med,acc
920
+ high,low,2,2,small,med,unacc
921
+ low,high,2,4,med,high,acc
922
+ vhigh,vhigh,5more,4,big,high,unacc
923
+ low,med,3,2,big,low,unacc
924
+ high,vhigh,2,more,small,med,unacc
925
+ low,med,4,more,med,high,vgood
926
+ high,high,3,4,big,med,acc
927
+ med,med,3,2,small,low,unacc
928
+ vhigh,low,5more,2,small,low,unacc
929
+ med,vhigh,5more,4,small,high,acc
930
+ high,high,5more,4,med,med,acc
931
+ high,med,3,more,small,med,unacc
932
+ vhigh,vhigh,4,2,big,med,unacc
933
+ med,med,5more,4,small,low,unacc
934
+ vhigh,low,4,more,med,med,acc
935
+ vhigh,high,4,2,small,low,unacc
936
+ vhigh,vhigh,4,2,med,high,unacc
937
+ med,high,3,4,med,low,unacc
938
+ vhigh,med,5more,4,small,low,unacc
939
+ med,high,4,2,small,med,unacc
940
+ vhigh,med,5more,more,small,med,unacc
941
+ high,low,2,2,med,low,unacc
942
+ low,high,2,4,small,med,acc
943
+ high,med,3,2,small,med,unacc
944
+ med,high,5more,4,big,high,acc
945
+ high,med,2,2,med,low,unacc
946
+ vhigh,high,2,4,small,high,unacc
947
+ vhigh,high,5more,more,med,low,unacc
948
+ high,vhigh,4,more,med,high,unacc
949
+ high,vhigh,5more,4,small,med,unacc
950
+ low,high,3,more,big,med,acc
951
+ vhigh,med,3,more,med,high,acc
952
+ high,high,3,2,med,low,unacc
953
+ low,med,3,2,med,med,unacc
954
+ vhigh,high,2,more,med,low,unacc
955
+ vhigh,med,4,4,small,low,unacc
956
+ high,vhigh,5more,4,small,low,unacc
957
+ vhigh,vhigh,5more,2,small,low,unacc
958
+ med,vhigh,4,2,big,high,unacc
959
+ med,vhigh,2,more,big,low,unacc
960
+ vhigh,vhigh,2,4,med,high,unacc
961
+ high,vhigh,3,4,small,med,unacc
962
+ vhigh,high,4,4,big,med,unacc
963
+ med,vhigh,5more,2,small,high,unacc
964
+ high,high,4,more,big,high,acc
965
+ low,low,4,more,big,med,good
966
+ vhigh,high,2,2,med,low,unacc
967
+ high,med,3,2,small,high,unacc
968
+ med,med,4,2,small,med,unacc
969
+ high,vhigh,3,4,small,low,unacc
970
+ low,high,3,4,big,low,unacc
971
+ med,high,4,4,med,low,unacc
972
+ vhigh,high,5more,more,big,med,unacc
973
+ low,vhigh,3,more,small,high,acc
974
+ vhigh,low,2,2,med,low,unacc
975
+ vhigh,high,3,more,big,med,unacc
976
+ high,vhigh,3,4,big,high,unacc
977
+ low,low,5more,4,big,high,vgood
978
+ vhigh,vhigh,2,more,big,high,unacc
979
+ low,high,2,4,med,low,unacc
980
+ low,low,2,4,med,med,acc
981
+ vhigh,high,4,more,small,high,unacc
982
+ med,high,4,4,med,med,acc
983
+ vhigh,vhigh,2,more,big,med,unacc
984
+ vhigh,med,4,2,med,high,unacc
985
+ low,low,4,more,small,low,unacc
986
+ med,vhigh,3,4,small,med,unacc
987
+ low,vhigh,4,more,small,med,unacc
988
+ med,high,5more,more,small,high,acc
989
+ med,vhigh,2,more,med,low,unacc
990
+ vhigh,vhigh,3,4,small,high,unacc
991
+ high,low,5more,4,small,high,acc
992
+ low,med,5more,more,small,med,acc
993
+ low,low,3,more,big,low,unacc
994
+ high,high,3,more,small,med,unacc
995
+ low,high,5more,4,small,med,acc
996
+ vhigh,low,4,2,med,med,unacc
997
+ high,vhigh,3,2,big,low,unacc
998
+ vhigh,low,2,more,small,med,unacc
999
+ low,med,4,more,big,high,vgood
1000
+ low,vhigh,3,4,med,med,unacc
1001
+ low,med,4,more,med,low,unacc
1002
+ vhigh,vhigh,4,4,med,low,unacc
1003
+ med,low,3,4,med,high,good
1004
+ vhigh,low,2,4,med,high,acc
1005
+ med,low,4,2,big,high,unacc
1006
+ high,high,5more,more,med,low,unacc
1007
+ vhigh,med,4,more,small,med,unacc
1008
+ high,vhigh,2,2,small,med,unacc
1009
+ vhigh,high,3,4,med,med,unacc
1010
+ high,low,5more,4,big,low,unacc
1011
+ low,vhigh,3,2,small,high,unacc
1012
+ high,med,3,4,small,high,acc
1013
+ vhigh,med,2,4,small,high,acc
1014
+ high,med,4,more,med,med,acc
1015
+ vhigh,high,3,4,med,high,unacc
1016
+ med,low,3,more,med,low,unacc
1017
+ med,high,2,2,med,low,unacc
1018
+ med,med,3,more,small,low,unacc
1019
+ low,low,5more,more,small,high,good
1020
+ low,vhigh,2,4,med,high,acc
1021
+ high,high,4,4,small,high,acc
1022
+ high,high,3,more,small,high,acc
1023
+ low,vhigh,4,2,big,low,unacc
1024
+ high,med,5more,2,big,high,unacc
1025
+ high,vhigh,4,2,small,high,unacc
1026
+ low,med,3,more,med,med,good
1027
+ high,med,2,4,small,high,acc
1028
+ med,high,4,more,med,low,unacc
1029
+ vhigh,high,2,2,med,high,unacc
1030
+ low,vhigh,5more,more,med,low,unacc
1031
+ low,med,3,more,small,high,good
1032
+ vhigh,med,5more,4,small,high,acc
1033
+ low,low,4,4,small,low,unacc
1034
+ vhigh,med,3,more,med,med,acc
1035
+ vhigh,med,5more,more,med,high,acc
1036
+ high,high,2,more,small,high,unacc
1037
+ low,low,3,4,big,med,good
1038
+ med,low,2,more,med,low,unacc
1039
+ high,low,5more,4,med,high,acc
1040
+ vhigh,vhigh,4,4,small,low,unacc
1041
+ med,vhigh,2,more,big,med,acc
1042
+ vhigh,high,3,4,small,low,unacc
1043
+ vhigh,med,2,2,med,low,unacc
1044
+ low,low,4,2,small,high,unacc
1045
+ high,low,5more,2,small,low,unacc
1046
+ med,vhigh,4,4,small,med,unacc
1047
+ low,med,5more,4,big,med,good
1048
+ high,med,2,2,small,high,unacc
1049
+ vhigh,vhigh,4,2,med,med,unacc
1050
+ low,med,2,2,med,med,unacc
1051
+ vhigh,vhigh,2,2,small,high,unacc
1052
+ vhigh,high,5more,more,small,med,unacc
1053
+ low,low,4,4,small,med,acc
1054
+ high,high,4,2,med,high,unacc
1055
+ med,vhigh,4,more,small,high,acc
1056
+ vhigh,med,3,2,big,high,unacc
1057
+ vhigh,low,4,4,med,med,acc
1058
+ low,vhigh,2,2,med,low,unacc
1059
+ low,vhigh,4,more,med,med,acc
1060
+ med,med,3,more,med,high,vgood
1061
+ high,high,2,2,small,med,unacc
1062
+ low,med,2,2,small,low,unacc
1063
+ med,vhigh,5more,4,med,high,acc
1064
+ med,low,3,2,big,med,unacc
1065
+ vhigh,vhigh,2,4,big,high,unacc
1066
+ high,high,2,2,small,high,unacc
1067
+ low,med,2,4,big,low,unacc
1068
+ med,high,3,4,small,high,acc
1069
+ high,high,3,2,big,high,unacc
1070
+ vhigh,med,4,4,small,high,acc
1071
+ low,vhigh,4,more,big,high,acc
1072
+ med,low,5more,4,small,high,good
1073
+ med,med,3,2,big,low,unacc
1074
+ low,high,2,more,med,low,unacc
1075
+ low,vhigh,5more,2,big,low,unacc
1076
+ vhigh,high,4,more,big,med,unacc
1077
+ vhigh,high,5more,more,small,low,unacc
1078
+ vhigh,high,4,2,med,low,unacc
1079
+ low,vhigh,2,4,big,med,acc
1080
+ med,vhigh,4,4,small,low,unacc
1081
+ med,vhigh,3,2,small,med,unacc
1082
+ vhigh,med,3,2,med,low,unacc
1083
+ vhigh,med,3,more,big,high,acc
1084
+ vhigh,med,4,more,small,low,unacc
1085
+ high,low,4,more,small,high,acc
1086
+ med,med,5more,more,med,low,unacc
1087
+ med,low,5more,2,big,low,unacc
1088
+ med,high,5more,2,big,med,unacc
1089
+ vhigh,low,4,4,big,med,acc
1090
+ high,med,3,more,big,high,acc
1091
+ med,high,2,2,med,high,unacc
1092
+ vhigh,med,5more,2,small,low,unacc
1093
+ med,high,4,4,big,high,acc
1094
+ med,high,2,2,big,low,unacc
1095
+ vhigh,med,5more,4,med,med,acc
1096
+ high,high,2,4,med,med,unacc
1097
+ med,low,5more,more,med,med,good
1098
+ med,med,4,2,small,high,unacc
1099
+ vhigh,med,4,more,med,low,unacc
1100
+ high,high,5more,4,small,high,acc
1101
+ low,vhigh,2,more,small,med,unacc
1102
+ low,med,5more,more,big,high,vgood
1103
+ low,low,2,more,small,high,unacc
1104
+ high,low,3,2,med,med,unacc
1105
+ med,vhigh,4,2,small,low,unacc
1106
+ high,high,5more,more,med,high,acc
1107
+ high,med,4,4,med,low,unacc
1108
+ low,low,2,2,big,med,unacc
1109
+ vhigh,high,5more,2,small,low,unacc
1110
+ high,med,4,2,big,high,unacc
1111
+ med,low,5more,2,small,high,unacc
1112
+ vhigh,vhigh,2,2,med,high,unacc
1113
+ low,high,4,4,small,med,acc
1114
+ med,vhigh,4,2,big,med,unacc
1115
+ med,med,5more,2,big,high,unacc
1116
+ med,low,3,4,med,med,acc
1117
+ high,vhigh,5more,2,small,high,unacc
1118
+ low,vhigh,5more,2,big,med,unacc
1119
+ low,high,2,4,big,high,vgood
1120
+ high,low,4,4,big,med,acc
1121
+ low,vhigh,3,4,big,high,acc
1122
+ high,vhigh,2,2,small,low,unacc
1123
+ high,vhigh,2,more,med,low,unacc
1124
+ high,low,5more,4,small,med,unacc
1125
+ vhigh,low,3,4,small,high,acc
1126
+ med,low,3,4,big,low,unacc
1127
+ low,low,4,2,small,med,unacc
1128
+ vhigh,high,2,more,small,med,unacc
1129
+ high,high,2,more,med,low,unacc
1130
+ vhigh,high,5more,more,small,high,unacc
1131
+ vhigh,med,5more,4,big,high,acc
1132
+ low,high,3,4,big,med,acc
1133
+ vhigh,low,2,2,big,med,unacc
1134
+ high,med,2,2,big,high,unacc
1135
+ high,high,2,4,med,low,unacc
1136
+ vhigh,low,4,more,big,high,acc
1137
+ high,low,3,more,med,high,acc
1138
+ vhigh,low,3,4,big,high,acc
1139
+ med,low,3,4,small,med,acc
1140
+ med,high,5more,4,med,med,acc
1141
+ med,vhigh,3,4,small,high,acc
1142
+ low,high,2,2,big,high,unacc
1143
+ vhigh,high,2,4,small,low,unacc
1144
+ high,vhigh,4,2,big,med,unacc
1145
+ med,low,5more,more,big,med,good
1146
+ vhigh,low,2,2,small,low,unacc
1147
+ high,high,2,4,big,med,acc
1148
+ vhigh,vhigh,2,2,small,low,unacc
1149
+ med,high,4,2,big,med,unacc
1150
+ vhigh,vhigh,4,2,small,med,unacc
1151
+ low,low,2,more,big,low,unacc
1152
+ med,med,3,more,small,high,acc
1153
+ low,low,3,4,small,med,acc
1154
+ high,vhigh,2,more,med,high,unacc
1155
+ high,high,4,2,small,med,unacc
1156
+ low,med,4,4,small,med,acc
1157
+ high,med,4,4,big,low,unacc
1158
+ med,vhigh,2,4,small,high,acc
1159
+ vhigh,med,5more,more,med,med,acc
1160
+ low,high,2,2,med,high,unacc
1161
+ low,high,4,2,small,low,unacc
1162
+ vhigh,vhigh,2,more,small,low,unacc
1163
+ high,low,4,2,med,low,unacc
1164
+ low,vhigh,5more,more,med,high,acc
1165
+ low,low,4,more,med,med,good
1166
+ med,low,2,more,med,med,acc
1167
+ med,med,3,2,med,low,unacc
1168
+ vhigh,low,2,more,big,high,acc
1169
+ vhigh,vhigh,3,more,small,med,unacc
1170
+ vhigh,high,4,2,big,low,unacc
1171
+ high,med,2,more,big,high,acc
1172
+ med,vhigh,4,more,big,high,acc
1173
+ vhigh,low,2,4,big,med,acc
1174
+ vhigh,med,2,2,med,high,unacc
1175
+ low,low,3,2,big,high,unacc
1176
+ high,vhigh,2,2,med,med,unacc
1177
+ low,high,4,more,big,med,acc
1178
+ low,low,4,4,big,high,vgood
1179
+ low,med,2,2,small,high,unacc
1180
+ high,high,5more,2,big,low,unacc
1181
+ med,high,2,more,big,high,acc
1182
+ vhigh,med,3,4,big,low,unacc
1183
+ vhigh,high,3,2,small,high,unacc
1184
+ vhigh,low,2,2,big,low,unacc
1185
+ vhigh,low,3,more,big,med,acc
1186
+ med,high,3,2,big,med,unacc
1187
+ low,high,4,more,small,high,acc
1188
+ vhigh,high,3,more,med,high,unacc
1189
+ med,high,2,2,small,low,unacc
1190
+ med,low,2,4,big,med,good
1191
+ vhigh,vhigh,3,2,med,high,unacc
1192
+ vhigh,high,3,4,big,low,unacc
1193
+ med,low,5more,more,small,low,unacc
1194
+ high,low,2,more,med,low,unacc
1195
+ vhigh,vhigh,5more,more,med,med,unacc
1196
+ vhigh,low,2,more,med,high,acc
1197
+ high,high,2,4,small,high,acc
1198
+ high,high,2,2,small,low,unacc
1199
+ low,vhigh,4,more,big,low,unacc
1200
+ high,med,4,more,big,med,acc
1201
+ high,vhigh,5more,2,med,low,unacc
1202
+ med,vhigh,4,4,small,high,acc
1203
+ med,high,4,4,small,high,acc
1204
+ med,low,3,more,med,med,good
1205
+ low,high,5more,2,med,med,unacc
1206
+ vhigh,high,5more,4,big,high,unacc
1207
+ med,high,2,4,med,med,unacc
1208
+ low,low,5more,more,med,low,unacc
1209
+ med,vhigh,2,4,med,med,unacc
1210
+ med,low,5more,4,small,med,acc
1211
+ vhigh,low,5more,2,big,med,unacc
1212
+ vhigh,low,2,2,med,med,unacc
1213
+ high,med,2,2,small,low,unacc
1214
+ vhigh,low,2,more,med,med,unacc
1215
+ low,high,3,more,small,high,acc
1216
+ low,med,4,more,small,high,good
1217
+ high,med,3,2,med,high,unacc
1218
+ low,low,5more,4,big,med,good
1219
+ high,med,5more,2,big,med,unacc
1220
+ high,high,4,4,med,med,acc
1221
+ med,vhigh,3,more,big,high,acc
1222
+ low,high,3,4,med,high,acc
1223
+ low,high,5more,4,small,low,unacc
1224
+ high,vhigh,3,2,small,low,unacc
1225
+ low,vhigh,5more,more,small,high,acc
1226
+ med,high,5more,more,small,med,unacc
1227
+ low,low,5more,2,med,low,unacc
1228
+ high,vhigh,4,more,small,high,unacc
1229
+ low,low,2,4,med,low,unacc
1230
+ med,med,2,more,big,high,vgood
1231
+ med,vhigh,4,2,med,high,unacc
1232
+ vhigh,low,3,2,med,med,unacc
1233
+ med,med,3,4,med,low,unacc
1234
+ high,vhigh,2,4,med,high,unacc
1235
+ med,med,2,4,small,high,acc
1236
+ high,vhigh,5more,more,med,low,unacc
1237
+ high,low,2,4,small,med,unacc
1238
+ vhigh,low,5more,4,big,high,acc
1239
+ vhigh,low,4,2,small,high,unacc
1240
+ vhigh,high,5more,4,med,low,unacc
1241
+ low,vhigh,5more,2,med,med,unacc
1242
+ high,med,2,more,med,high,acc
1243
+ vhigh,high,2,more,small,high,unacc
1244
+ med,med,5more,2,big,med,unacc
1245
+ med,high,3,more,med,low,unacc
1246
+ vhigh,low,4,more,med,high,acc
1247
+ med,low,3,more,small,low,unacc
1248
+ vhigh,med,4,4,big,med,acc
1249
+ low,med,2,4,small,med,acc
1250
+ vhigh,med,3,more,big,med,acc
1251
+ vhigh,vhigh,5more,4,small,low,unacc
1252
+ med,high,5more,4,med,low,unacc
1253
+ high,vhigh,3,2,med,high,unacc
1254
+ low,vhigh,4,4,small,high,acc
1255
+ low,high,3,4,small,low,unacc
1256
+ low,med,5more,4,med,high,vgood
1257
+ med,low,4,4,big,med,good
1258
+ low,vhigh,5more,4,med,med,acc
1259
+ med,vhigh,4,2,med,low,unacc
1260
+ med,high,5more,more,big,low,unacc
1261
+ high,med,3,4,big,low,unacc
1262
+ high,low,3,2,small,high,unacc
1263
+ med,low,4,more,big,med,good
1264
+ med,med,2,more,med,high,acc
1265
+ med,high,5more,more,med,med,acc
1266
+ low,med,3,4,small,high,good
1267
+ low,vhigh,4,4,med,low,unacc
1268
+ low,vhigh,4,4,med,high,acc
1269
+ high,low,3,4,med,high,acc
1270
+ low,med,3,2,small,low,unacc
1271
+ high,vhigh,5more,more,med,med,unacc
1272
+ med,vhigh,3,more,med,high,acc
1273
+ high,high,5more,more,small,med,unacc
1274
+ high,med,4,4,small,high,acc
1275
+ high,high,2,4,big,high,acc
1276
+ high,low,4,2,big,high,unacc
1277
+ med,vhigh,2,2,small,med,unacc
1278
+ high,med,5more,more,small,low,unacc
1279
+ vhigh,med,5more,4,big,med,acc
1280
+ high,med,5more,more,small,high,acc
1281
+ low,med,4,4,med,low,unacc
1282
+ vhigh,med,2,4,big,med,acc
1283
+ vhigh,low,3,4,med,med,unacc
1284
+ low,med,5more,more,med,med,good
1285
+ vhigh,high,4,more,med,high,unacc
1286
+ low,med,2,4,med,high,good
1287
+ vhigh,vhigh,4,2,big,high,unacc
1288
+ high,vhigh,3,more,med,low,unacc
1289
+ high,med,5more,2,med,low,unacc
1290
+ high,low,2,more,big,low,unacc
1291
+ high,high,5more,2,med,low,unacc
1292
+ low,med,3,2,big,high,unacc
1293
+ high,med,2,4,med,high,acc
1294
+ high,med,5more,4,big,high,acc
1295
+ high,high,4,2,med,low,unacc
1296
+ med,low,5more,2,small,med,unacc
1297
+ vhigh,high,2,more,big,high,unacc
1298
+ med,high,3,more,med,med,acc
1299
+ high,med,2,2,big,med,unacc
1300
+ high,low,5more,more,small,med,unacc
1301
+ low,high,5more,2,small,low,unacc
1302
+ high,low,3,2,small,low,unacc
1303
+ vhigh,low,3,4,small,low,unacc
1304
+ vhigh,med,4,more,small,high,acc
1305
+ med,low,2,more,small,low,unacc
1306
+ low,vhigh,5more,4,small,high,acc
1307
+ low,low,3,more,small,med,acc
1308
+ vhigh,vhigh,4,4,big,high,unacc
1309
+ vhigh,vhigh,2,2,med,med,unacc
1310
+ high,high,5more,more,big,low,unacc
1311
+ vhigh,vhigh,3,4,big,high,unacc
1312
+ high,vhigh,3,4,med,med,unacc
1313
+ high,low,2,2,big,low,unacc
1314
+ low,high,5more,2,big,med,unacc
1315
+ high,low,3,more,small,low,unacc
1316
+ high,low,3,4,med,med,unacc
1317
+ high,med,4,4,med,med,acc
1318
+ med,med,4,more,big,med,acc
1319
+ low,high,3,more,med,high,vgood
1320
+ low,high,2,4,big,low,unacc
1321
+ low,low,5more,2,med,med,unacc
1322
+ med,med,2,4,big,low,unacc
1323
+ high,high,5more,4,small,low,unacc
1324
+ low,high,5more,2,med,low,unacc
1325
+ low,low,4,2,big,high,unacc
1326
+ vhigh,vhigh,2,4,big,low,unacc
1327
+ low,high,2,4,med,med,acc
1328
+ med,low,3,more,big,med,good
1329
+ med,med,2,more,small,low,unacc
1330
+ low,low,5more,2,big,low,unacc
1331
+ high,low,2,2,med,med,unacc
1332
+ high,high,4,4,med,low,unacc
1333
+ med,vhigh,4,2,small,med,unacc
1334
+ vhigh,low,5more,2,small,med,unacc
1335
+ low,low,4,more,med,high,vgood
1336
+ vhigh,vhigh,5more,4,med,low,unacc
1337
+ low,med,3,4,big,low,unacc
1338
+ vhigh,med,4,4,med,med,acc
1339
+ high,low,4,4,big,low,unacc
1340
+ high,high,2,2,med,low,unacc
1341
+ low,vhigh,3,more,med,med,acc
1342
+ high,med,2,2,med,med,unacc
1343
+ vhigh,vhigh,5more,2,big,high,unacc
1344
+ high,med,2,more,med,med,unacc
1345
+ low,vhigh,4,4,big,med,acc
1346
+ high,med,2,2,med,high,unacc
1347
+ low,high,2,2,small,high,unacc
1348
+ vhigh,low,5more,2,med,med,unacc
1349
+ high,med,5more,more,big,high,acc
1350
+ vhigh,vhigh,2,4,med,med,unacc
1351
+ low,high,4,more,small,med,acc
1352
+ vhigh,vhigh,4,more,med,high,unacc
1353
+ med,high,5more,more,big,med,acc
1354
+ med,high,2,2,small,high,unacc
1355
+ med,low,3,4,small,low,unacc
1356
+ low,med,4,2,med,low,unacc
1357
+ high,high,3,2,big,med,unacc
1358
+ med,med,4,4,med,low,unacc
1359
+ low,vhigh,5more,4,small,med,unacc
1360
+ low,vhigh,4,more,small,low,unacc
1361
+ vhigh,vhigh,4,2,small,low,unacc
1362
+ vhigh,low,4,4,big,high,acc
1363
+ vhigh,med,2,more,med,high,acc
1364
+ vhigh,low,3,2,med,high,unacc
1365
+ low,med,3,4,med,med,acc
1366
+ vhigh,low,3,more,small,high,acc
1367
+ low,high,3,4,med,med,acc
1368
+ high,vhigh,4,4,big,med,unacc
1369
+ vhigh,vhigh,3,4,med,med,unacc
1370
+ high,vhigh,4,2,med,med,unacc
1371
+ vhigh,med,3,4,med,med,unacc
1372
+ med,med,2,4,big,high,vgood
1373
+ med,high,4,2,big,low,unacc
1374
+ low,med,2,2,big,high,unacc
1375
+ high,med,5more,2,med,med,unacc
1376
+ med,med,5more,more,small,med,acc
1377
+ med,med,4,4,med,med,acc
1378
+ low,vhigh,5more,4,big,med,acc
1379
+ low,vhigh,3,more,med,low,unacc
1380
+ high,vhigh,5more,4,med,high,unacc
1381
+ med,med,4,4,big,low,unacc
1382
+ med,low,5more,more,small,high,good
src/uploads/kidney_disease_dataset.csv ADDED
@@ -0,0 +1,2305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Age,Creatinine_Level,BUN,Diabetes,Hypertension,GFR,Urine_Output,CKD_Status,Dialysis_Needed
2
+ 71,0.3,40.9,0,1,46.8,1622.0,1,0
3
+ 34,1.79,17.1,0,0,43.8,1428.0,1,0
4
+ 80,2.67,15.0,0,1,78.2,1015.0,1,0
5
+ 40,0.97,31.1,0,1,92.8,1276.0,1,0
6
+ 43,2.05,22.8,1,1,62.2,1154.0,0,0
7
+ 22,0.58,15.9,0,1,89.2,1795.0,0,0
8
+ 41,0.93,10.3,1,1,93.8,1641.0,0,0
9
+ 72,0.47,61.9,1,1,67.9,229.0,1,0
10
+ 21,0.3,22.3,1,1,80.2,2251.0,0,0
11
+ 49,1.17,31.0,0,1,64.4,1156.0,1,0
12
+ 57,1.32,5.7,1,0,41.9,2161.0,1,0
13
+ 21,2.16,11.1,1,1,51.3,1658.0,1,0
14
+ 83,1.92,43.3,1,0,78.2,1424.0,1,0
15
+ 79,1.93,34.8,0,0,67.0,1253.0,1,0
16
+ 40,0.32,23.5,0,0,88.4,2679.0,0,0
17
+ 52,1.61,13.4,1,1,22.8,1164.0,1,0
18
+ 77,2.62,15.2,0,1,28.8,964.0,1,0
19
+ 41,1.54,9.9,0,1,31.8,1009.0,1,0
20
+ 68,2.85,5.0,1,0,74.2,1301.0,1,0
21
+ 78,3.02,29.1,0,1,35.5,1300.0,1,0
22
+ 61,0.96,24.5,0,1,78.0,1802.0,0,0
23
+ 79,0.57,26.8,0,0,88.8,1679.0,0,0
24
+ 34,0.51,14.0,1,0,107.9,1680.0,0,0
25
+ 81,0.3,21.1,0,0,105.1,1186.0,0,0
26
+ 81,0.73,12.8,1,1,52.6,1638.0,1,0
27
+ 66,2.29,9.3,0,1,28.3,1691.0,1,0
28
+ 81,0.3,38.0,0,0,54.2,1260.0,1,0
29
+ 70,0.3,19.5,1,1,94.4,1440.0,0,0
30
+ 74,1.09,24.1,0,0,60.3,1690.0,0,0
31
+ 83,0.41,28.0,1,0,69.4,1406.0,0,0
32
+ 22,0.73,19.6,0,0,56.1,1453.0,1,0
33
+ 70,0.74,20.9,0,0,109.5,2004.0,0,0
34
+ 26,0.97,5.0,0,0,44.6,1410.0,1,0
35
+ 40,0.54,7.2,0,0,71.7,996.0,0,0
36
+ 58,0.47,6.6,1,1,97.7,627.0,0,0
37
+ 37,2.04,25.3,1,0,116.0,1357.0,0,0
38
+ 23,2.14,18.9,0,1,52.6,1134.0,1,0
39
+ 79,0.3,7.2,0,1,94.0,1704.0,0,0
40
+ 33,0.3,25.0,1,0,54.2,2089.0,1,0
41
+ 28,2.16,24.5,0,1,104.4,785.0,0,0
42
+ 72,0.3,9.7,0,0,113.2,857.0,0,0
43
+ 21,1.39,17.7,1,1,47.8,1288.0,1,0
44
+ 79,0.3,24.6,1,1,86.3,900.0,0,0
45
+ 90,2.37,7.7,1,0,97.8,1189.0,0,0
46
+ 63,3.49,24.8,1,1,62.6,1032.0,1,0
47
+ 27,1.36,21.6,1,1,83.7,796.0,0,0
48
+ 66,1.12,6.0,0,1,85.0,1713.0,0,0
49
+ 54,0.91,20.6,0,1,120.0,1338.0,0,0
50
+ 55,1.9,22.4,0,0,20.7,2215.0,1,0
51
+ 69,1.71,10.5,1,1,68.6,1480.0,0,0
52
+ 23,2.1,11.4,1,0,38.7,1944.0,1,0
53
+ 21,0.63,5.9,1,0,70.3,936.0,0,0
54
+ 25,1.51,12.6,1,0,50.4,929.0,1,0
55
+ 73,0.71,17.9,1,0,63.6,2410.0,0,0
56
+ 23,0.3,11.5,1,1,48.1,996.0,1,0
57
+ 73,1.16,5.0,0,1,73.9,825.0,0,0
58
+ 82,0.37,9.7,1,1,96.8,714.0,0,0
59
+ 37,2.26,13.0,0,0,60.7,2258.0,0,0
60
+ 63,0.42,27.8,0,1,105.8,1163.0,0,0
61
+ 53,1.53,25.1,1,1,96.1,1502.0,0,0
62
+ 81,0.66,28.0,1,0,120.0,1376.0,0,0
63
+ 33,1.45,9.1,0,0,80.3,938.0,0,0
64
+ 67,0.73,19.7,0,1,68.5,1152.0,0,0
65
+ 34,0.3,5.0,1,1,30.4,1723.0,1,0
66
+ 81,1.64,23.1,1,1,50.5,687.0,1,0
67
+ 59,0.99,25.3,1,1,64.8,1637.0,0,0
68
+ 72,1.46,13.8,0,0,67.8,2017.0,0,0
69
+ 43,0.81,21.5,0,0,120.0,1446.0,0,0
70
+ 45,0.3,5.0,0,1,64.8,1967.0,0,0
71
+ 79,2.17,8.4,0,0,25.8,614.0,1,0
72
+ 60,1.86,27.2,0,1,86.6,385.0,0,0
73
+ 48,0.69,24.1,1,1,85.2,1421.0,0,0
74
+ 34,1.26,13.1,0,1,58.5,1007.0,1,0
75
+ 64,2.14,27.7,0,1,120.0,1739.0,0,0
76
+ 84,0.79,19.7,0,0,22.6,1145.0,1,0
77
+ 90,0.93,11.9,0,1,101.2,1374.0,0,0
78
+ 28,1.42,15.8,1,1,62.7,1340.0,0,0
79
+ 20,0.79,12.5,1,1,46.2,1356.0,1,0
80
+ 27,1.97,5.0,1,1,120.0,1029.0,0,0
81
+ 82,1.05,33.1,0,0,88.4,618.0,1,0
82
+ 30,0.49,11.2,0,1,62.5,1190.0,0,0
83
+ 27,1.75,8.0,0,1,62.0,2025.0,0,0
84
+ 54,0.3,5.0,0,0,76.9,996.0,0,0
85
+ 54,3.01,5.0,1,1,58.5,993.0,1,0
86
+ 52,2.62,26.4,0,1,102.5,1379.0,1,0
87
+ 24,1.66,27.5,1,1,72.2,711.0,0,0
88
+ 60,1.59,32.3,0,0,95.4,1802.0,1,0
89
+ 47,1.54,16.2,1,1,75.2,759.0,0,0
90
+ 26,0.76,14.1,1,1,91.7,1155.0,0,0
91
+ 31,1.47,11.9,1,1,103.6,2569.0,0,0
92
+ 53,0.37,13.0,0,0,112.0,729.0,0,0
93
+ 52,1.65,31.4,1,0,82.3,2036.0,1,0
94
+ 67,1.98,17.7,1,1,48.3,1361.0,1,0
95
+ 42,0.86,22.5,0,1,65.7,1431.0,0,0
96
+ 81,0.66,12.7,0,0,69.3,895.0,0,0
97
+ 56,0.3,33.9,1,0,55.7,1699.0,1,0
98
+ 63,2.51,5.0,1,0,51.5,1117.0,1,0
99
+ 54,0.74,5.0,0,1,74.4,726.0,0,0
100
+ 84,1.02,22.6,0,0,45.4,2028.0,1,0
101
+ 66,1.47,39.0,1,0,40.6,1107.0,1,0
102
+ 22,1.45,15.3,0,0,27.6,370.0,1,0
103
+ 20,1.87,7.9,0,1,82.0,1166.0,0,0
104
+ 24,0.86,30.0,0,0,78.5,1704.0,0,0
105
+ 33,0.3,21.9,1,0,61.9,1624.0,0,0
106
+ 46,0.3,33.5,0,1,94.9,980.0,1,0
107
+ 28,0.68,5.0,1,0,45.0,811.0,1,0
108
+ 34,0.34,32.5,0,0,79.5,617.0,1,0
109
+ 61,0.93,5.0,1,1,71.4,1289.0,0,0
110
+ 70,2.38,14.5,1,0,51.5,1375.0,1,0
111
+ 82,0.86,23.0,0,1,57.7,1654.0,1,0
112
+ 71,0.86,20.2,0,0,55.8,1225.0,1,0
113
+ 23,1.19,30.7,0,1,76.3,1211.0,1,0
114
+ 42,0.83,5.0,0,0,84.8,1161.0,0,0
115
+ 34,1.14,19.7,1,1,59.3,1376.0,1,0
116
+ 62,1.69,32.4,0,0,52.2,1233.0,1,0
117
+ 48,2.0,18.7,1,0,73.4,1770.0,0,0
118
+ 55,2.1,5.0,0,1,28.7,1455.0,1,0
119
+ 32,3.05,30.1,0,1,70.9,1354.0,1,0
120
+ 51,1.71,10.2,0,0,109.0,1279.0,0,0
121
+ 90,3.21,8.1,0,1,52.4,829.0,1,0
122
+ 78,0.5,6.6,0,0,65.6,1300.0,0,0
123
+ 47,3.08,15.6,1,1,95.6,977.0,1,0
124
+ 85,0.86,20.2,0,0,88.9,1473.0,0,0
125
+ 61,0.95,5.0,0,1,71.5,1196.0,0,0
126
+ 64,1.09,5.2,1,0,68.5,2132.0,0,0
127
+ 81,1.0,9.7,1,0,39.1,669.0,1,0
128
+ 76,1.28,6.5,0,0,82.3,100.0,0,0
129
+ 25,0.68,18.4,1,0,36.4,1434.0,1,0
130
+ 47,1.95,22.3,0,1,18.4,978.0,1,0
131
+ 47,0.7,20.7,1,1,95.2,1381.0,0,0
132
+ 63,1.79,20.7,1,1,79.7,682.0,0,0
133
+ 49,2.57,38.1,1,0,92.0,2254.0,1,0
134
+ 81,0.88,23.1,1,0,51.6,1107.0,1,0
135
+ 81,1.91,27.4,0,1,81.7,946.0,0,0
136
+ 20,1.7,13.0,1,1,59.0,2245.0,1,0
137
+ 46,3.23,29.3,0,0,61.8,1720.0,1,0
138
+ 81,0.75,12.5,0,1,94.3,1995.0,0,0
139
+ 22,1.92,22.9,0,1,66.3,1214.0,0,0
140
+ 89,0.3,5.0,1,1,52.6,1323.0,1,0
141
+ 46,0.75,20.0,1,0,35.9,1002.0,1,0
142
+ 28,1.52,6.3,0,0,79.0,943.0,0,0
143
+ 81,2.45,29.2,1,0,96.5,1499.0,0,0
144
+ 56,0.3,28.5,1,1,50.4,1116.0,1,0
145
+ 70,1.91,12.4,0,0,87.2,2410.0,0,0
146
+ 63,1.14,42.6,0,0,46.4,1721.0,1,0
147
+ 43,0.3,14.6,1,1,88.7,2242.0,0,0
148
+ 78,1.36,5.0,0,0,70.8,186.0,0,0
149
+ 51,2.74,8.7,0,0,76.7,2248.0,1,0
150
+ 71,0.3,5.5,1,1,52.6,108.0,1,0
151
+ 81,1.1,22.6,1,1,78.9,670.0,0,0
152
+ 77,0.31,5.0,1,1,55.1,424.0,1,0
153
+ 71,0.78,11.5,1,0,59.7,1422.0,1,0
154
+ 31,2.49,21.8,0,1,32.1,1291.0,1,0
155
+ 58,0.96,19.7,0,1,50.7,1697.0,1,0
156
+ 21,2.46,17.8,1,0,56.9,1256.0,1,0
157
+ 22,2.2,19.5,0,1,77.8,1913.0,0,0
158
+ 75,0.87,13.6,1,0,84.9,834.0,0,0
159
+ 78,0.75,5.0,0,0,54.8,1924.0,1,0
160
+ 21,0.39,13.2,0,0,65.9,1285.0,0,0
161
+ 21,0.36,23.6,0,0,112.2,2478.0,0,0
162
+ 73,1.52,16.4,1,0,73.3,1736.0,0,0
163
+ 20,1.18,22.7,0,1,56.6,1148.0,1,0
164
+ 38,0.64,11.0,0,0,28.0,1283.0,1,0
165
+ 21,0.3,29.9,0,1,48.7,795.0,1,0
166
+ 72,1.3,5.0,1,1,47.7,1480.0,1,0
167
+ 63,0.78,19.7,0,0,119.4,1148.0,0,0
168
+ 51,1.02,34.2,0,0,48.8,1662.0,1,0
169
+ 89,1.47,36.0,0,1,71.3,631.0,1,0
170
+ 51,0.3,15.2,1,1,79.3,1135.0,0,0
171
+ 87,0.3,5.0,0,0,97.7,720.0,0,0
172
+ 74,3.27,34.4,0,0,70.2,751.0,1,0
173
+ 75,0.74,17.4,0,1,57.2,1603.0,1,0
174
+ 36,0.3,16.1,0,0,55.6,1862.0,1,0
175
+ 57,0.3,7.3,1,1,78.9,134.0,0,0
176
+ 43,3.44,5.0,0,1,52.9,2231.0,1,0
177
+ 88,0.57,24.8,1,0,42.4,2002.0,1,0
178
+ 89,2.24,26.0,1,0,57.2,627.0,1,0
179
+ 30,1.31,20.4,0,0,36.9,1713.0,1,0
180
+ 35,0.76,8.8,1,1,116.3,1070.0,0,0
181
+ 78,1.9,5.2,1,0,84.9,1251.0,0,0
182
+ 89,0.3,5.0,1,0,110.5,1601.0,0,0
183
+ 22,0.3,11.3,0,1,82.1,1540.0,0,0
184
+ 39,0.76,5.9,0,0,108.1,1014.0,0,0
185
+ 78,0.3,5.0,0,0,79.2,1011.0,0,0
186
+ 55,0.68,25.8,1,1,88.2,1041.0,0,0
187
+ 38,1.97,5.0,0,0,16.7,1871.0,1,0
188
+ 86,1.32,29.8,0,1,47.1,369.0,1,0
189
+ 38,2.4,22.7,0,1,70.9,1219.0,0,0
190
+ 39,1.38,21.5,0,0,71.5,2086.0,0,0
191
+ 90,2.09,38.0,0,0,68.1,1652.0,1,0
192
+ 71,1.14,5.0,0,0,81.3,1825.0,0,0
193
+ 52,0.67,28.5,0,1,82.4,1226.0,0,0
194
+ 59,2.53,14.4,1,0,91.6,718.0,1,0
195
+ 58,0.56,48.9,0,1,86.7,1328.0,1,0
196
+ 20,1.51,13.4,1,1,100.1,956.0,0,0
197
+ 30,1.89,11.5,0,0,100.3,2415.0,0,0
198
+ 76,1.96,23.1,0,1,74.4,1221.0,0,0
199
+ 69,0.3,15.5,1,0,120.0,1619.0,0,0
200
+ 42,2.15,8.9,1,1,104.0,2151.0,0,0
201
+ 50,0.32,6.4,0,1,49.8,752.0,1,0
202
+ 61,1.93,35.5,1,0,79.8,160.0,1,0
203
+ 26,1.68,5.0,1,0,23.9,1545.0,1,0
204
+ 35,1.94,20.7,1,1,28.1,1639.0,1,0
205
+ 79,0.3,30.7,0,1,57.5,1093.0,1,0
206
+ 21,1.73,31.3,0,1,48.1,722.0,1,0
207
+ 20,2.18,10.8,1,0,57.7,1455.0,1,0
208
+ 67,1.37,15.5,1,0,78.2,1288.0,0,0
209
+ 31,0.46,13.2,0,0,100.6,1461.0,0,0
210
+ 88,2.03,5.0,1,1,99.3,734.0,0,0
211
+ 56,1.3,24.5,0,0,80.3,1462.0,0,0
212
+ 51,0.3,18.5,0,0,42.8,1710.0,1,0
213
+ 28,0.39,35.3,0,1,56.1,547.0,1,0
214
+ 38,0.73,8.1,1,1,85.9,2030.0,0,0
215
+ 67,2.56,31.1,0,0,49.3,1427.0,1,0
216
+ 22,2.4,31.9,1,0,38.3,1725.0,1,0
217
+ 39,2.39,18.6,0,1,82.3,661.0,0,0
218
+ 43,1.41,5.0,1,0,68.8,1641.0,0,0
219
+ 73,2.02,11.8,1,0,64.7,478.0,0,0
220
+ 52,0.3,39.4,1,0,97.7,826.0,1,0
221
+ 43,1.21,21.6,1,1,97.2,1432.0,0,0
222
+ 55,1.61,26.3,0,1,114.5,1162.0,0,0
223
+ 57,0.3,16.9,0,0,53.7,1314.0,1,0
224
+ 44,1.39,15.3,0,0,80.7,2264.0,0,0
225
+ 37,2.72,5.0,0,1,70.5,1306.0,1,0
226
+ 85,1.7,27.5,1,1,78.5,1655.0,0,0
227
+ 73,2.03,31.0,0,1,41.6,1267.0,1,0
228
+ 54,0.3,6.6,0,1,34.9,1252.0,1,0
229
+ 80,2.6,15.9,0,1,69.0,811.0,1,0
230
+ 60,1.03,14.2,0,1,48.9,1484.0,1,0
231
+ 52,0.51,23.0,0,0,93.5,2568.0,0,0
232
+ 87,1.04,11.5,1,0,32.5,1344.0,1,0
233
+ 52,0.3,29.2,0,0,34.5,1166.0,1,0
234
+ 33,2.14,18.9,0,1,59.6,1870.0,1,0
235
+ 40,0.9,5.0,1,1,31.5,1811.0,1,0
236
+ 67,0.54,23.3,1,1,111.9,1520.0,0,0
237
+ 39,1.05,30.0,0,0,65.4,1146.0,0,0
238
+ 27,2.21,5.0,1,0,54.9,1872.0,1,0
239
+ 26,1.32,22.9,0,0,81.7,1360.0,0,0
240
+ 86,0.3,40.0,0,0,92.1,1757.0,1,0
241
+ 36,1.62,19.3,0,1,75.2,890.0,0,0
242
+ 52,0.36,31.7,0,1,68.3,1007.0,1,0
243
+ 67,0.3,12.7,1,0,45.4,1348.0,1,0
244
+ 78,2.55,17.8,0,0,85.8,682.0,1,0
245
+ 41,1.61,15.5,0,1,105.4,1115.0,0,0
246
+ 49,1.13,13.4,1,0,64.5,660.0,0,0
247
+ 57,0.89,16.2,0,1,48.8,528.0,1,0
248
+ 70,2.46,5.0,0,0,74.5,2518.0,0,0
249
+ 73,3.98,14.0,1,0,70.1,996.0,1,0
250
+ 27,1.6,34.1,0,0,39.6,1039.0,1,0
251
+ 46,0.3,6.4,1,0,57.4,1340.0,1,0
252
+ 46,1.06,5.2,0,1,114.7,769.0,0,0
253
+ 40,1.59,18.7,1,0,36.3,1049.0,1,0
254
+ 49,0.3,19.3,0,0,52.7,2217.0,1,0
255
+ 47,1.5,22.5,1,0,46.3,1479.0,1,0
256
+ 83,1.59,16.6,0,0,48.5,1793.0,1,0
257
+ 88,2.39,18.9,1,0,58.9,2087.0,1,0
258
+ 80,2.3,13.8,0,1,81.2,1405.0,0,0
259
+ 67,1.3,5.0,0,1,102.7,1189.0,0,0
260
+ 38,2.56,17.1,0,1,75.1,583.0,1,0
261
+ 23,3.03,26.7,1,0,52.9,1109.0,1,0
262
+ 54,1.23,24.2,1,0,108.5,1219.0,0,0
263
+ 83,1.58,5.0,0,0,18.3,896.0,1,0
264
+ 68,0.3,21.0,0,0,86.8,2073.0,0,0
265
+ 36,0.3,7.3,1,1,44.3,1851.0,1,0
266
+ 63,0.45,34.7,0,1,68.7,1793.0,1,0
267
+ 49,0.8,21.9,1,1,84.1,1242.0,0,0
268
+ 65,0.3,28.8,1,0,29.9,783.0,1,0
269
+ 25,1.17,18.3,1,0,73.5,1964.0,0,0
270
+ 56,0.83,17.2,0,1,75.5,1468.0,0,0
271
+ 43,2.16,36.0,0,0,106.6,1687.0,1,0
272
+ 65,0.77,29.7,1,0,120.0,1610.0,0,0
273
+ 72,0.3,19.4,1,1,31.2,1455.0,1,0
274
+ 79,1.31,15.6,1,1,105.4,2300.0,0,0
275
+ 82,1.19,5.0,0,1,69.1,971.0,0,0
276
+ 51,0.42,21.9,0,0,49.8,1146.0,1,0
277
+ 52,1.29,16.5,0,0,79.2,2121.0,0,0
278
+ 86,0.3,24.6,1,0,37.4,1341.0,1,0
279
+ 37,1.5,28.3,0,1,38.9,1237.0,1,0
280
+ 44,3.57,32.8,0,0,26.6,1173.0,1,0
281
+ 73,0.3,22.0,0,1,83.7,1640.0,0,0
282
+ 77,0.74,5.4,0,1,78.2,1185.0,0,0
283
+ 86,0.59,5.0,1,1,49.6,1129.0,1,0
284
+ 65,0.81,8.1,0,0,108.1,1631.0,0,0
285
+ 43,2.12,34.0,0,0,53.4,1347.0,1,0
286
+ 51,1.69,39.9,0,1,102.1,795.0,1,0
287
+ 66,1.96,15.1,0,1,73.1,1316.0,0,0
288
+ 42,1.23,5.0,0,1,53.1,1997.0,1,0
289
+ 85,0.3,10.2,0,0,67.1,1683.0,0,0
290
+ 46,0.3,31.7,1,1,38.7,2059.0,1,0
291
+ 21,1.87,10.9,0,1,75.4,934.0,0,0
292
+ 36,1.35,25.1,0,0,70.8,1835.0,0,0
293
+ 52,2.33,20.0,0,1,83.2,976.0,0,0
294
+ 28,1.46,26.5,1,1,92.0,684.0,0,0
295
+ 62,0.3,39.8,0,0,72.9,898.0,1,0
296
+ 67,0.73,25.1,1,0,33.1,1366.0,1,0
297
+ 58,1.71,19.8,0,1,93.3,1814.0,0,0
298
+ 61,1.84,41.1,1,0,70.4,1455.0,1,0
299
+ 45,1.97,22.2,0,1,22.6,1223.0,1,0
300
+ 69,0.3,8.5,1,1,77.7,784.0,0,0
301
+ 44,0.3,26.2,0,1,79.6,1653.0,0,0
302
+ 43,1.03,23.4,0,1,61.0,1782.0,0,0
303
+ 32,2.5,14.3,1,0,65.1,1449.0,0,0
304
+ 79,0.58,11.8,0,0,55.1,774.0,1,0
305
+ 26,1.61,14.4,1,1,80.4,1704.0,0,0
306
+ 76,1.61,11.6,0,0,73.5,1914.0,0,0
307
+ 55,1.88,14.8,1,1,47.3,2067.0,1,0
308
+ 64,2.7,7.9,1,1,110.4,1081.0,1,0
309
+ 39,2.61,22.6,1,0,53.4,1518.0,1,0
310
+ 84,0.66,21.7,1,0,5.0,1033.0,1,1
311
+ 27,0.3,22.1,1,1,58.2,839.0,1,0
312
+ 35,0.59,17.3,1,1,95.8,2092.0,0,0
313
+ 33,1.27,15.9,0,0,64.8,1582.0,0,0
314
+ 34,0.87,35.3,0,1,29.1,1946.0,1,0
315
+ 85,2.97,18.8,1,1,44.3,688.0,1,0
316
+ 51,1.22,33.2,1,1,43.0,1444.0,1,0
317
+ 82,1.79,6.0,1,0,55.6,1554.0,1,0
318
+ 70,1.4,25.1,1,0,63.5,884.0,0,0
319
+ 44,0.89,9.2,1,1,82.3,2044.0,0,0
320
+ 77,0.3,11.3,0,1,73.2,1177.0,0,0
321
+ 82,1.13,13.1,0,0,74.4,1527.0,0,0
322
+ 81,4.13,12.3,0,1,114.5,1025.0,1,0
323
+ 41,0.3,12.4,0,1,91.5,703.0,0,0
324
+ 77,0.3,32.6,0,0,89.3,1757.0,1,0
325
+ 77,2.94,18.5,1,1,24.7,1490.0,1,0
326
+ 68,1.87,20.7,1,1,51.2,1419.0,1,0
327
+ 71,1.37,12.5,0,0,30.1,1161.0,1,0
328
+ 61,2.43,28.3,0,0,50.8,1476.0,1,0
329
+ 89,0.45,22.3,0,1,89.9,1933.0,0,0
330
+ 34,1.1,14.3,0,0,60.2,958.0,0,0
331
+ 73,2.06,5.0,0,0,96.8,1580.0,0,0
332
+ 79,3.1,20.6,0,1,87.3,1401.0,1,0
333
+ 27,0.3,24.9,0,1,71.3,1208.0,0,0
334
+ 72,2.35,6.3,0,1,97.4,477.0,0,0
335
+ 79,1.54,14.5,1,1,104.1,1294.0,0,0
336
+ 24,1.35,24.4,0,0,81.4,1636.0,0,0
337
+ 87,1.19,5.0,0,0,75.7,1462.0,0,0
338
+ 25,0.3,10.2,0,0,85.8,581.0,0,0
339
+ 66,2.07,22.5,0,0,34.8,1924.0,1,0
340
+ 74,0.5,31.3,1,1,67.1,2124.0,1,0
341
+ 59,0.3,44.2,1,1,69.4,1245.0,1,0
342
+ 71,2.0,41.5,0,0,60.8,2456.0,1,0
343
+ 35,1.91,19.7,1,0,50.3,885.0,1,0
344
+ 32,1.27,12.2,0,0,95.0,664.0,0,0
345
+ 49,2.17,29.1,1,1,74.3,793.0,0,0
346
+ 38,2.48,11.5,0,0,76.5,1423.0,0,0
347
+ 36,2.38,8.9,0,0,105.6,411.0,0,0
348
+ 82,0.72,14.3,1,1,65.1,1145.0,0,0
349
+ 38,2.11,12.8,1,0,60.3,2767.0,0,0
350
+ 77,1.39,23.0,1,0,104.0,548.0,0,0
351
+ 74,2.75,10.8,0,1,32.7,1026.0,1,0
352
+ 81,1.09,19.0,0,0,71.3,782.0,0,0
353
+ 42,0.88,37.1,1,1,51.6,1158.0,1,0
354
+ 28,0.65,19.5,0,0,77.3,1126.0,0,0
355
+ 31,1.37,36.2,0,0,84.3,965.0,1,0
356
+ 20,1.62,32.4,0,0,85.7,1222.0,1,0
357
+ 77,1.64,25.1,0,1,95.7,1617.0,0,0
358
+ 20,1.51,13.8,0,1,63.7,1993.0,0,0
359
+ 53,1.8,30.5,0,1,65.2,1158.0,1,0
360
+ 67,1.0,15.0,0,1,83.2,1303.0,0,0
361
+ 20,0.41,18.0,1,1,92.2,1532.0,0,0
362
+ 35,0.34,22.0,0,0,37.5,682.0,1,0
363
+ 80,2.08,17.9,0,0,77.9,1224.0,0,0
364
+ 83,1.62,9.4,0,0,60.1,1047.0,0,0
365
+ 82,0.3,5.0,1,0,72.2,1776.0,0,0
366
+ 88,2.19,29.5,0,0,61.1,2176.0,0,0
367
+ 41,2.89,24.8,1,0,51.9,911.0,1,0
368
+ 86,0.56,5.0,0,0,44.5,1940.0,1,0
369
+ 45,1.5,9.0,1,0,66.2,571.0,0,0
370
+ 35,0.77,20.1,0,0,79.0,1400.0,0,0
371
+ 70,1.77,23.3,0,1,54.9,1430.0,1,0
372
+ 76,0.3,5.0,1,1,99.7,558.0,0,0
373
+ 48,1.14,16.9,1,0,120.0,886.0,0,0
374
+ 88,2.08,24.5,0,0,80.3,837.0,0,0
375
+ 66,2.31,13.8,0,0,69.0,644.0,0,0
376
+ 81,1.58,21.1,0,1,47.2,100.0,1,0
377
+ 88,0.89,12.1,1,0,79.3,1196.0,0,0
378
+ 35,0.3,28.9,0,1,106.9,1257.0,0,0
379
+ 67,0.52,8.4,0,0,118.7,1253.0,0,0
380
+ 58,0.78,5.0,0,0,104.9,1683.0,0,0
381
+ 52,0.57,18.3,1,0,91.1,331.0,0,0
382
+ 42,1.25,5.0,1,0,80.3,1109.0,0,0
383
+ 29,0.89,5.0,1,1,43.8,2580.0,1,0
384
+ 88,1.35,31.0,0,0,67.5,1743.0,1,0
385
+ 53,2.28,6.2,1,1,64.6,1746.0,0,0
386
+ 71,0.83,5.0,1,1,67.7,792.0,0,0
387
+ 29,0.3,8.3,1,1,52.0,1202.0,1,0
388
+ 38,0.57,7.7,0,0,88.9,150.0,0,0
389
+ 77,1.73,16.3,0,0,63.2,1593.0,0,0
390
+ 20,1.81,5.0,1,0,61.1,2000.0,0,0
391
+ 88,1.57,24.0,0,0,52.1,575.0,1,0
392
+ 23,2.37,25.8,0,1,75.8,721.0,0,0
393
+ 35,1.03,5.0,1,0,107.4,1284.0,0,0
394
+ 43,3.05,10.6,1,1,69.7,1377.0,1,0
395
+ 21,1.94,11.7,1,0,77.0,1029.0,0,0
396
+ 51,0.3,16.0,1,1,118.4,892.0,0,0
397
+ 43,2.82,31.0,0,0,100.1,898.0,1,0
398
+ 31,0.51,31.7,0,0,84.7,1275.0,1,0
399
+ 69,0.3,48.0,0,1,83.6,1593.0,1,0
400
+ 54,1.67,5.0,0,0,54.9,1275.0,1,0
401
+ 52,0.3,6.9,0,1,52.5,1228.0,1,0
402
+ 52,0.57,39.8,0,0,73.5,420.0,1,0
403
+ 80,2.6,5.0,0,0,74.2,1734.0,1,0
404
+ 70,1.7,39.5,1,1,48.8,1274.0,1,0
405
+ 62,1.93,19.8,1,1,87.6,1082.0,0,0
406
+ 31,0.61,20.2,1,0,63.1,1428.0,0,0
407
+ 86,0.3,5.0,1,1,98.2,878.0,0,0
408
+ 84,1.84,12.6,1,1,68.6,1092.0,0,0
409
+ 52,2.04,39.0,1,1,66.4,1354.0,1,0
410
+ 59,2.0,17.4,1,0,46.6,961.0,1,0
411
+ 62,1.39,12.7,1,0,49.3,477.0,1,0
412
+ 63,0.33,22.9,1,1,102.9,396.0,0,0
413
+ 48,3.39,15.7,1,1,76.7,1523.0,1,0
414
+ 32,1.63,22.1,0,0,79.7,1284.0,0,0
415
+ 31,1.04,7.8,0,0,110.0,1267.0,0,0
416
+ 65,1.05,17.1,0,0,37.1,719.0,1,0
417
+ 21,1.33,10.3,0,1,86.8,1290.0,0,0
418
+ 54,2.16,5.0,0,0,30.3,1100.0,1,0
419
+ 27,1.37,23.8,0,0,59.1,1000.0,1,0
420
+ 45,1.97,5.0,0,0,41.4,1262.0,1,0
421
+ 53,1.34,16.0,0,1,91.5,1448.0,0,0
422
+ 26,1.1,29.1,1,0,22.8,2175.0,1,0
423
+ 87,1.78,5.0,0,0,64.2,1583.0,0,0
424
+ 77,1.74,25.3,1,1,41.0,1729.0,1,0
425
+ 48,1.05,14.4,1,1,48.6,1852.0,1,0
426
+ 55,0.53,6.4,0,0,52.5,918.0,1,0
427
+ 40,1.51,42.3,1,0,103.0,1140.0,1,0
428
+ 55,1.27,18.0,0,1,61.6,848.0,0,0
429
+ 29,0.7,11.2,0,1,113.2,959.0,0,0
430
+ 43,0.44,8.6,0,1,118.4,1086.0,0,0
431
+ 83,1.57,28.6,0,1,120.0,947.0,0,0
432
+ 68,1.7,10.7,0,1,68.5,1412.0,0,0
433
+ 55,0.88,27.1,0,1,75.3,1516.0,0,0
434
+ 43,0.68,18.0,0,0,79.4,647.0,0,0
435
+ 42,0.45,31.4,0,0,60.8,1144.0,1,0
436
+ 81,1.54,5.5,0,0,80.6,1149.0,0,0
437
+ 56,0.48,7.2,1,0,46.6,564.0,1,0
438
+ 31,3.22,14.6,0,1,23.1,917.0,1,0
439
+ 74,0.83,15.6,0,0,87.9,1737.0,0,0
440
+ 32,0.3,13.7,0,1,61.3,1730.0,0,0
441
+ 42,1.17,49.6,0,0,45.6,485.0,1,0
442
+ 49,1.13,42.8,0,0,48.7,1536.0,1,0
443
+ 36,2.2,21.6,1,1,107.9,565.0,0,0
444
+ 81,1.46,23.0,0,0,81.6,1099.0,0,0
445
+ 32,0.45,15.2,1,0,31.9,1251.0,1,0
446
+ 78,0.94,5.4,1,0,40.3,1676.0,1,0
447
+ 38,1.49,15.8,0,1,62.7,1213.0,0,0
448
+ 68,0.3,27.3,0,0,81.9,793.0,0,0
449
+ 31,2.4,33.7,1,1,50.1,708.0,1,0
450
+ 80,0.45,29.9,1,0,65.7,1384.0,0,0
451
+ 38,2.48,5.0,0,1,72.9,983.0,0,0
452
+ 28,1.55,14.5,1,0,73.4,1096.0,0,0
453
+ 90,1.77,5.0,1,1,10.1,1785.0,1,1
454
+ 47,2.23,32.0,0,1,75.5,1517.0,1,0
455
+ 71,1.72,13.1,1,1,26.7,2093.0,1,0
456
+ 35,1.81,17.4,0,1,62.8,791.0,0,0
457
+ 88,1.05,23.8,0,1,57.5,945.0,1,0
458
+ 31,1.53,51.2,1,1,43.0,1392.0,1,0
459
+ 44,0.67,21.2,1,0,91.1,2209.0,0,0
460
+ 71,0.89,15.1,0,1,41.9,903.0,1,0
461
+ 72,2.97,5.0,0,0,56.9,1319.0,1,0
462
+ 42,0.47,35.5,1,0,92.0,1961.0,1,0
463
+ 35,1.34,15.8,1,0,56.2,1325.0,1,0
464
+ 76,1.3,37.9,1,0,51.0,1810.0,1,0
465
+ 58,0.92,31.3,1,0,63.3,2279.0,1,0
466
+ 72,1.66,12.4,1,1,83.5,1448.0,0,0
467
+ 61,1.73,5.0,0,0,106.2,1529.0,0,0
468
+ 77,0.37,21.3,0,0,46.6,1671.0,1,0
469
+ 58,1.29,10.6,0,1,48.6,848.0,1,0
470
+ 33,0.3,18.5,1,0,63.1,559.0,0,0
471
+ 24,1.91,30.6,1,1,75.8,1379.0,1,0
472
+ 54,1.36,5.0,0,1,50.7,987.0,1,0
473
+ 37,1.27,21.2,0,1,87.2,1826.0,0,0
474
+ 28,1.79,27.1,0,1,47.1,1457.0,1,0
475
+ 77,0.95,27.7,0,0,22.5,1818.0,1,0
476
+ 36,2.02,5.0,0,0,83.3,699.0,0,0
477
+ 26,0.35,23.0,0,0,86.2,1801.0,0,0
478
+ 65,2.47,32.4,0,1,96.1,151.0,1,0
479
+ 32,0.7,22.1,0,0,20.2,740.0,1,0
480
+ 59,0.3,16.6,0,0,53.4,1616.0,1,0
481
+ 61,0.9,31.7,0,0,63.7,1049.0,1,0
482
+ 28,0.8,9.7,1,1,113.9,1097.0,0,0
483
+ 69,0.9,5.0,0,0,66.0,1354.0,0,0
484
+ 46,1.41,15.6,1,1,36.3,2011.0,1,0
485
+ 85,2.19,24.4,1,0,77.4,339.0,0,0
486
+ 24,1.03,30.5,0,0,102.7,1924.0,1,0
487
+ 48,0.58,24.4,0,0,97.4,1954.0,0,0
488
+ 56,0.3,28.0,1,1,84.0,1048.0,0,0
489
+ 57,0.78,30.5,1,1,76.6,953.0,1,0
490
+ 27,0.3,13.9,1,0,13.3,1241.0,1,1
491
+ 84,0.55,16.2,1,0,70.6,942.0,0,0
492
+ 36,2.32,33.4,0,1,74.5,1472.0,1,0
493
+ 90,0.46,5.0,0,0,66.0,1538.0,0,0
494
+ 64,1.77,23.1,0,0,87.7,523.0,0,0
495
+ 23,0.3,9.4,0,0,65.6,840.0,0,0
496
+ 55,2.79,31.2,0,0,60.8,707.0,1,0
497
+ 89,2.85,17.8,1,0,96.0,1407.0,1,0
498
+ 50,1.73,18.1,0,0,59.7,1736.0,1,0
499
+ 38,2.99,38.7,0,0,71.6,763.0,1,0
500
+ 80,1.52,5.1,1,1,92.4,1733.0,0,0
501
+ 73,1.89,20.6,1,0,44.7,838.0,1,0
502
+ 58,2.34,15.8,0,1,42.0,1659.0,1,0
503
+ 38,1.36,24.4,1,0,103.9,1158.0,0,0
504
+ 58,0.3,41.2,1,1,55.2,1079.0,1,0
505
+ 86,1.91,10.7,0,0,87.3,1871.0,0,0
506
+ 64,0.78,5.0,0,1,25.6,2194.0,1,0
507
+ 32,0.84,8.3,0,0,7.4,329.0,1,1
508
+ 77,1.47,15.2,0,1,79.1,1600.0,0,0
509
+ 39,1.71,18.8,0,0,66.8,1389.0,0,0
510
+ 80,1.34,19.4,1,0,79.3,1629.0,0,0
511
+ 58,1.77,39.6,1,1,116.9,581.0,1,0
512
+ 20,0.56,37.5,1,1,39.1,758.0,1,0
513
+ 22,1.16,33.6,1,0,71.0,964.0,1,0
514
+ 81,1.96,48.2,1,1,106.9,1407.0,1,0
515
+ 82,2.8,27.9,0,0,42.7,934.0,1,0
516
+ 44,3.11,31.3,0,0,55.4,1138.0,1,0
517
+ 75,1.59,27.7,1,1,25.8,1715.0,1,0
518
+ 52,1.96,25.7,0,0,120.0,2324.0,0,0
519
+ 57,2.98,22.7,0,1,14.9,1680.0,1,1
520
+ 25,0.6,13.2,1,0,90.0,1730.0,0,0
521
+ 77,1.77,5.0,1,1,37.0,1209.0,1,0
522
+ 63,1.89,16.4,0,1,43.7,855.0,1,0
523
+ 64,2.5,24.8,1,1,96.6,1137.0,0,0
524
+ 51,0.3,18.9,0,1,51.4,1271.0,1,0
525
+ 64,0.35,5.2,1,0,86.3,720.0,0,0
526
+ 80,1.22,16.0,0,1,104.5,1708.0,0,0
527
+ 66,1.54,15.4,1,0,75.0,2060.0,0,0
528
+ 40,2.21,17.3,0,1,92.2,1361.0,0,0
529
+ 55,1.67,23.9,1,1,72.0,1842.0,0,0
530
+ 38,1.06,26.5,0,0,73.2,1904.0,0,0
531
+ 39,1.57,12.0,0,1,54.1,783.0,1,0
532
+ 76,1.47,29.8,0,0,118.2,431.0,0,0
533
+ 37,2.77,31.6,0,0,88.6,1050.0,1,0
534
+ 66,1.35,21.8,0,0,83.0,1348.0,0,0
535
+ 68,0.86,26.0,0,1,89.3,702.0,0,0
536
+ 33,1.6,29.8,1,0,53.1,2011.0,1,0
537
+ 34,1.38,5.0,1,1,93.3,2274.0,0,0
538
+ 50,0.3,30.7,0,0,108.9,1390.0,1,0
539
+ 20,1.19,8.5,1,1,35.5,809.0,1,0
540
+ 73,1.11,9.7,0,0,83.5,1543.0,0,0
541
+ 22,0.71,20.4,0,1,71.6,808.0,0,0
542
+ 35,2.13,5.0,0,0,57.0,1872.0,1,0
543
+ 76,0.49,20.1,0,1,42.7,1184.0,1,0
544
+ 31,1.61,29.8,0,0,96.3,1664.0,0,0
545
+ 35,1.07,5.0,1,1,75.2,1751.0,0,0
546
+ 43,1.3,31.1,0,0,64.8,1569.0,1,0
547
+ 47,1.57,9.6,0,1,83.6,2193.0,0,0
548
+ 27,0.3,20.5,0,0,66.8,1389.0,0,0
549
+ 55,1.37,11.4,1,1,52.4,1048.0,1,0
550
+ 27,3.26,24.9,1,0,73.2,249.0,1,0
551
+ 77,0.3,30.3,1,0,69.3,158.0,1,0
552
+ 79,1.15,25.8,1,0,25.6,1626.0,1,0
553
+ 69,2.21,18.0,1,0,54.3,1208.0,1,0
554
+ 47,1.47,12.3,1,0,38.4,892.0,1,0
555
+ 60,1.82,17.2,0,1,28.7,743.0,1,0
556
+ 83,0.3,25.9,1,1,81.7,1670.0,0,0
557
+ 46,1.74,26.3,0,1,53.3,808.0,1,0
558
+ 82,0.51,24.6,1,0,96.0,2115.0,0,0
559
+ 36,1.48,5.0,1,0,24.3,2475.0,1,0
560
+ 52,1.17,17.7,1,1,62.6,850.0,0,0
561
+ 48,3.25,10.4,0,0,54.6,1635.0,1,0
562
+ 32,1.69,26.0,1,1,30.6,1520.0,1,0
563
+ 65,1.1,8.8,1,0,70.1,806.0,0,0
564
+ 54,0.3,23.4,0,1,32.7,809.0,1,0
565
+ 25,1.31,14.6,0,0,75.6,1239.0,0,0
566
+ 88,1.94,5.0,1,1,88.0,731.0,0,0
567
+ 66,1.13,29.2,1,0,76.7,1846.0,0,0
568
+ 44,0.74,17.7,0,1,79.8,1177.0,0,0
569
+ 85,0.68,33.3,0,0,95.8,740.0,1,0
570
+ 29,1.68,5.0,0,1,69.3,1256.0,0,0
571
+ 75,1.88,14.5,0,1,49.3,1533.0,1,0
572
+ 49,2.43,15.4,1,0,54.8,938.0,1,0
573
+ 24,0.3,21.2,1,0,55.3,303.0,1,0
574
+ 52,1.67,5.0,1,0,43.9,1363.0,1,0
575
+ 84,1.09,24.5,0,0,89.6,692.0,0,0
576
+ 37,1.12,40.9,1,0,83.2,903.0,1,0
577
+ 68,1.56,23.7,0,0,28.4,1535.0,1,0
578
+ 30,1.57,19.1,0,0,49.3,1006.0,1,0
579
+ 45,1.68,5.0,0,1,42.7,1229.0,1,0
580
+ 82,0.3,8.7,0,1,77.9,2027.0,0,0
581
+ 78,0.53,17.3,0,0,96.9,1124.0,0,0
582
+ 46,2.54,11.6,0,1,81.2,2311.0,1,0
583
+ 68,1.0,30.3,0,1,52.5,1670.0,1,0
584
+ 52,1.48,24.4,0,1,62.0,834.0,0,0
585
+ 20,2.15,50.3,1,0,35.2,1062.0,1,0
586
+ 40,1.62,6.2,0,0,37.1,669.0,1,0
587
+ 74,1.69,18.4,1,1,91.2,1619.0,0,0
588
+ 25,2.01,5.0,0,1,106.1,1962.0,0,0
589
+ 88,0.3,5.0,1,0,52.1,1121.0,1,0
590
+ 24,0.76,26.7,1,1,71.2,369.0,0,0
591
+ 22,1.62,24.0,1,0,88.0,1480.0,0,0
592
+ 72,2.45,7.7,1,0,28.4,869.0,1,0
593
+ 42,1.26,19.1,0,1,43.8,945.0,1,0
594
+ 72,0.44,10.4,0,1,119.8,1456.0,0,0
595
+ 56,0.46,12.1,0,0,46.1,1916.0,1,0
596
+ 36,2.0,14.2,0,1,61.0,1670.0,0,0
597
+ 20,1.0,7.2,0,1,54.9,1515.0,1,0
598
+ 70,1.19,9.4,1,1,20.1,1221.0,1,0
599
+ 64,1.75,9.7,0,1,72.1,640.0,0,0
600
+ 23,0.3,23.1,1,0,69.4,1474.0,0,0
601
+ 81,3.0,5.0,1,0,74.5,1659.0,1,0
602
+ 84,0.54,15.3,1,0,67.9,1002.0,0,0
603
+ 51,1.42,5.0,1,1,58.5,1117.0,1,0
604
+ 53,0.3,5.4,1,1,57.1,1855.0,1,0
605
+ 58,0.82,11.7,0,0,57.5,1104.0,1,0
606
+ 45,2.32,17.8,0,0,45.3,1165.0,1,0
607
+ 53,0.3,15.4,1,0,49.2,1256.0,1,0
608
+ 73,2.21,5.2,1,0,45.7,1633.0,1,0
609
+ 22,0.95,26.7,1,1,84.3,1447.0,0,0
610
+ 69,1.64,7.2,0,1,77.7,1410.0,0,0
611
+ 31,1.79,9.2,1,0,70.7,2059.0,0,0
612
+ 84,1.6,21.4,0,1,118.6,1095.0,0,0
613
+ 73,0.42,21.8,0,1,46.9,825.0,1,0
614
+ 24,0.87,10.7,0,1,98.0,1811.0,0,0
615
+ 76,0.3,5.0,0,0,63.5,1415.0,0,0
616
+ 36,1.64,7.4,0,0,73.9,1005.0,0,0
617
+ 66,2.73,19.9,0,0,86.8,1120.0,1,0
618
+ 42,0.3,26.3,0,1,58.1,663.0,1,0
619
+ 33,0.51,17.0,0,1,43.6,1416.0,1,0
620
+ 85,1.04,12.3,1,1,47.7,569.0,1,0
621
+ 70,1.36,45.5,1,0,17.3,1641.0,1,0
622
+ 57,1.99,13.5,0,0,85.2,1039.0,0,0
623
+ 83,1.06,25.3,0,0,84.6,603.0,0,0
624
+ 57,0.92,5.0,1,1,109.6,1849.0,0,0
625
+ 69,2.19,5.0,0,0,80.4,2428.0,0,0
626
+ 49,1.8,25.8,0,0,86.4,1519.0,0,0
627
+ 70,1.69,30.5,1,1,68.0,1157.0,1,0
628
+ 82,1.3,13.3,1,1,81.6,820.0,0,0
629
+ 71,2.08,5.0,0,1,97.2,1431.0,0,0
630
+ 57,0.61,16.0,0,0,74.5,1618.0,0,0
631
+ 49,0.49,20.3,0,1,57.0,1303.0,1,0
632
+ 70,1.87,19.2,0,0,64.5,1748.0,0,0
633
+ 24,0.3,11.2,0,1,88.8,2057.0,0,0
634
+ 48,1.28,16.2,0,0,57.7,670.0,1,0
635
+ 23,0.92,9.0,0,0,92.2,1447.0,0,0
636
+ 29,0.3,5.0,1,1,117.7,348.0,0,0
637
+ 75,0.36,27.1,1,1,92.5,893.0,0,0
638
+ 36,1.1,19.2,1,1,88.7,1660.0,0,0
639
+ 36,2.13,16.2,1,0,78.7,1277.0,0,0
640
+ 88,0.61,11.9,0,0,50.6,495.0,1,0
641
+ 53,2.29,15.8,1,1,48.3,1825.0,1,0
642
+ 25,1.26,19.9,0,1,48.1,1028.0,1,0
643
+ 72,2.38,38.7,0,1,83.9,1725.0,1,0
644
+ 85,0.66,25.9,1,1,60.3,1556.0,0,0
645
+ 62,1.16,10.0,1,0,69.3,883.0,0,0
646
+ 42,1.53,10.1,1,1,80.5,1734.0,0,0
647
+ 74,1.04,8.3,0,0,49.0,1459.0,1,0
648
+ 35,2.06,15.6,1,0,57.5,1388.0,1,0
649
+ 27,0.3,8.3,1,0,78.1,1066.0,0,0
650
+ 23,3.38,23.7,0,0,62.7,749.0,1,0
651
+ 23,1.97,5.0,0,1,65.1,1091.0,0,0
652
+ 75,1.04,24.4,0,1,44.2,1080.0,1,0
653
+ 44,0.7,21.3,1,1,65.4,1726.0,0,0
654
+ 86,0.42,33.2,0,0,111.3,476.0,1,0
655
+ 86,1.78,28.5,0,0,58.8,2035.0,1,0
656
+ 46,2.1,9.8,0,0,41.3,2063.0,1,0
657
+ 51,1.05,27.2,0,1,94.0,979.0,0,0
658
+ 69,2.2,16.0,1,0,83.1,2001.0,0,0
659
+ 80,0.38,5.0,0,1,75.3,797.0,0,0
660
+ 70,0.3,19.9,1,0,37.0,1864.0,1,0
661
+ 38,2.83,10.5,1,0,40.6,890.0,1,0
662
+ 40,1.73,18.0,1,1,31.6,1817.0,1,0
663
+ 24,2.46,37.8,0,1,80.8,581.0,1,0
664
+ 61,0.43,20.7,0,0,95.5,1841.0,0,0
665
+ 80,0.37,5.8,0,1,81.6,1944.0,0,0
666
+ 41,0.88,29.6,0,1,118.7,565.0,0,0
667
+ 40,0.46,22.4,0,1,59.0,2179.0,1,0
668
+ 89,1.83,5.0,1,1,61.9,1809.0,0,0
669
+ 20,0.52,5.0,0,1,72.7,301.0,0,0
670
+ 24,0.3,6.3,0,0,64.3,1055.0,0,0
671
+ 31,1.33,28.0,0,1,82.5,1819.0,0,0
672
+ 65,0.3,14.4,0,0,54.0,1662.0,1,0
673
+ 53,0.3,19.0,1,1,35.1,1356.0,1,0
674
+ 68,1.32,5.0,0,0,25.3,1764.0,1,0
675
+ 64,0.3,28.4,0,0,82.0,863.0,0,0
676
+ 46,1.9,5.0,1,1,56.9,1324.0,1,0
677
+ 45,0.3,10.1,0,0,40.8,877.0,1,0
678
+ 66,0.3,23.0,0,0,54.5,1367.0,1,0
679
+ 75,0.94,5.0,0,1,118.8,1801.0,0,0
680
+ 82,1.33,25.4,0,1,42.2,1691.0,1,0
681
+ 67,1.64,7.6,0,1,88.2,1411.0,0,0
682
+ 80,1.35,5.0,0,0,80.5,1795.0,0,0
683
+ 45,0.3,33.4,1,1,103.5,1844.0,1,0
684
+ 55,1.84,19.8,0,0,66.9,2199.0,0,0
685
+ 20,2.06,24.2,1,0,31.0,1884.0,1,0
686
+ 27,0.3,30.2,1,1,94.8,1628.0,1,0
687
+ 71,1.04,5.0,0,1,63.8,1767.0,0,0
688
+ 66,0.95,25.6,0,0,101.9,1422.0,0,0
689
+ 75,1.4,8.9,0,1,90.4,1160.0,0,0
690
+ 33,1.02,10.4,1,0,94.9,1734.0,0,0
691
+ 47,1.14,23.2,1,0,120.0,1679.0,0,0
692
+ 21,1.78,13.6,1,0,77.0,1446.0,0,0
693
+ 45,0.3,25.1,0,1,106.1,1203.0,0,0
694
+ 33,1.86,17.5,1,1,59.9,1175.0,1,0
695
+ 78,2.23,20.0,0,1,83.5,1096.0,0,0
696
+ 75,2.67,12.1,0,1,57.4,1928.0,1,0
697
+ 26,0.3,5.2,0,1,82.0,1889.0,0,0
698
+ 22,1.04,9.1,0,0,79.4,1868.0,0,0
699
+ 42,0.3,16.8,0,0,18.5,774.0,1,0
700
+ 37,0.3,40.0,1,0,54.7,1120.0,1,0
701
+ 57,1.33,35.7,1,1,75.8,1171.0,1,0
702
+ 34,0.84,10.2,1,1,13.6,997.0,1,1
703
+ 83,1.47,18.7,0,0,67.6,2231.0,0,0
704
+ 47,1.64,14.5,1,0,95.2,1500.0,0,0
705
+ 58,2.32,19.6,0,0,102.5,1464.0,0,0
706
+ 76,1.25,21.1,0,1,50.4,1067.0,1,0
707
+ 36,3.83,24.3,0,0,104.1,1731.0,1,0
708
+ 63,1.48,5.0,0,0,100.2,2396.0,0,0
709
+ 44,2.86,22.4,0,1,16.3,1340.0,1,0
710
+ 36,0.3,13.2,0,1,72.9,1183.0,0,0
711
+ 32,2.41,9.5,0,0,75.7,1255.0,0,0
712
+ 44,1.04,27.5,1,0,108.0,1139.0,0,0
713
+ 87,0.3,35.6,0,1,77.2,1299.0,1,0
714
+ 29,1.58,26.3,1,0,104.8,994.0,0,0
715
+ 86,0.93,11.8,1,1,50.5,857.0,1,0
716
+ 37,1.72,5.1,0,1,30.0,1289.0,1,0
717
+ 53,2.11,5.0,1,0,53.8,1341.0,1,0
718
+ 27,0.3,20.2,0,0,109.4,1163.0,0,0
719
+ 59,2.11,24.9,1,0,93.1,2028.0,0,0
720
+ 61,1.21,16.8,0,0,120.0,1508.0,0,0
721
+ 60,2.42,29.2,1,1,33.9,1671.0,1,0
722
+ 25,1.02,5.0,1,1,96.0,1685.0,0,0
723
+ 71,0.78,15.9,1,0,88.9,1352.0,0,0
724
+ 45,1.22,15.0,1,0,62.9,1409.0,0,0
725
+ 83,1.29,16.7,0,0,89.4,870.0,0,0
726
+ 78,0.6,32.0,0,0,73.5,1628.0,1,0
727
+ 75,0.75,16.7,0,1,81.5,1133.0,0,0
728
+ 78,0.3,14.5,0,0,87.0,980.0,0,0
729
+ 89,0.81,6.8,0,1,94.5,1951.0,0,0
730
+ 52,1.81,33.9,1,0,72.2,634.0,1,0
731
+ 72,1.08,5.0,0,1,114.4,2160.0,0,0
732
+ 41,2.11,11.4,1,1,64.6,2120.0,0,0
733
+ 40,1.03,38.3,1,0,117.1,1189.0,1,0
734
+ 89,0.3,23.6,0,0,41.8,2193.0,1,0
735
+ 89,1.74,17.8,1,0,45.4,856.0,1,0
736
+ 23,0.59,18.3,0,0,46.8,1797.0,1,0
737
+ 81,0.99,6.6,1,1,93.9,1308.0,0,0
738
+ 81,2.31,17.2,0,1,49.9,397.0,1,0
739
+ 43,0.3,13.8,0,1,107.3,984.0,0,0
740
+ 74,1.35,20.2,0,1,56.8,1213.0,1,0
741
+ 28,1.16,5.0,0,0,80.0,1690.0,0,0
742
+ 22,1.83,22.8,0,1,86.0,1061.0,0,0
743
+ 50,1.97,30.2,0,1,44.6,1163.0,1,0
744
+ 59,1.44,15.6,0,0,35.2,1570.0,1,0
745
+ 55,0.88,25.8,1,0,77.1,1544.0,0,0
746
+ 43,1.63,21.7,0,1,63.1,1254.0,0,0
747
+ 25,2.4,10.7,0,0,82.5,1149.0,0,0
748
+ 85,1.18,5.3,1,0,36.4,1770.0,1,0
749
+ 23,0.96,7.0,1,1,61.1,1146.0,0,0
750
+ 25,1.55,21.5,1,1,65.5,705.0,0,0
751
+ 70,1.23,17.3,0,0,9.1,1103.0,1,1
752
+ 81,0.3,33.3,0,0,94.9,1573.0,1,0
753
+ 76,1.42,27.5,0,1,51.1,1225.0,1,0
754
+ 85,0.3,27.5,0,1,107.5,1049.0,0,0
755
+ 27,1.54,21.2,1,0,52.7,673.0,1,0
756
+ 45,0.48,6.5,0,1,57.0,1228.0,1,0
757
+ 70,1.23,21.9,1,1,39.0,1414.0,1,0
758
+ 64,1.55,18.8,0,1,98.7,796.0,0,0
759
+ 63,3.41,5.0,1,0,81.4,1205.0,1,0
760
+ 24,1.87,32.5,0,0,105.0,753.0,1,0
761
+ 89,2.43,31.2,1,1,64.8,1236.0,1,0
762
+ 45,2.88,5.0,1,0,69.0,2163.0,1,0
763
+ 87,1.64,10.3,1,1,27.9,1386.0,1,0
764
+ 38,1.46,11.4,0,0,54.4,509.0,1,0
765
+ 39,0.3,25.3,0,0,74.3,1466.0,0,0
766
+ 31,1.1,23.9,1,0,79.7,1956.0,0,0
767
+ 66,0.55,18.5,0,0,115.6,608.0,0,0
768
+ 20,0.84,21.3,0,1,23.7,777.0,1,0
769
+ 33,2.88,5.0,0,0,75.7,1429.0,1,0
770
+ 83,1.3,22.6,0,1,60.6,1256.0,0,0
771
+ 57,0.41,16.8,0,1,71.9,1906.0,0,0
772
+ 56,2.44,9.9,0,0,72.6,1210.0,0,0
773
+ 30,2.06,5.0,0,1,65.2,1713.0,0,0
774
+ 22,2.11,18.3,0,0,41.7,2064.0,1,0
775
+ 52,0.3,22.3,0,1,37.0,866.0,1,0
776
+ 25,2.95,5.0,0,1,63.4,1674.0,1,0
777
+ 69,0.7,18.2,0,0,34.5,1100.0,1,0
778
+ 29,1.9,19.5,1,0,67.2,192.0,0,0
779
+ 24,3.47,11.3,1,1,63.7,1538.0,1,0
780
+ 42,3.14,22.6,1,1,8.7,1600.0,1,1
781
+ 29,0.32,16.4,1,0,118.3,525.0,0,0
782
+ 63,0.3,21.4,0,1,71.9,1073.0,0,0
783
+ 21,2.49,24.4,1,0,9.1,988.0,1,1
784
+ 32,1.33,24.4,0,1,76.2,1705.0,0,0
785
+ 59,0.75,30.2,1,0,64.9,525.0,1,0
786
+ 21,1.76,22.1,0,1,37.1,1353.0,1,0
787
+ 84,1.05,12.3,1,0,77.7,130.0,0,0
788
+ 82,1.83,10.2,0,1,46.4,1490.0,1,0
789
+ 36,1.26,5.2,0,1,74.8,1363.0,0,0
790
+ 28,1.85,19.8,1,1,52.5,1045.0,1,0
791
+ 34,0.39,33.9,0,1,47.4,2014.0,1,0
792
+ 43,2.48,13.7,0,1,69.6,100.0,0,0
793
+ 57,1.83,23.4,0,1,29.4,1291.0,1,0
794
+ 54,1.78,9.0,0,1,67.9,1899.0,0,0
795
+ 68,0.3,20.3,0,1,86.4,1364.0,0,0
796
+ 88,2.73,33.1,1,1,101.8,1983.0,1,0
797
+ 81,1.19,26.2,0,1,97.2,1075.0,0,0
798
+ 79,1.86,5.0,0,0,103.8,1216.0,0,0
799
+ 69,0.91,24.8,0,1,58.6,1917.0,1,0
800
+ 28,1.43,25.4,1,0,44.4,1747.0,1,0
801
+ 53,1.47,20.1,1,1,90.4,2500.0,0,0
802
+ 54,0.3,26.0,1,1,57.1,1351.0,1,0
803
+ 20,1.72,8.0,1,1,70.2,1400.0,0,0
804
+ 59,2.97,18.8,1,0,88.7,1069.0,1,0
805
+ 83,1.69,31.3,1,0,120.0,1198.0,1,0
806
+ 41,0.34,30.2,1,1,83.2,1839.0,1,0
807
+ 79,1.78,24.6,0,0,75.1,1300.0,0,0
808
+ 83,2.15,7.4,1,0,42.0,896.0,1,0
809
+ 30,1.66,5.5,0,1,99.2,1112.0,0,0
810
+ 33,1.13,19.4,1,1,80.2,1255.0,0,0
811
+ 79,0.98,20.2,1,0,61.3,929.0,0,0
812
+ 49,0.98,16.8,1,1,58.7,1071.0,1,0
813
+ 54,1.83,8.3,1,0,59.8,800.0,1,0
814
+ 56,0.3,23.2,0,1,71.1,1089.0,0,0
815
+ 24,0.87,19.3,0,0,33.5,1883.0,1,0
816
+ 45,2.64,21.5,0,1,100.5,1324.0,1,0
817
+ 81,2.67,25.1,1,0,95.9,2531.0,1,0
818
+ 23,0.3,14.7,1,1,65.8,918.0,0,0
819
+ 61,0.3,12.1,1,0,59.9,1543.0,1,0
820
+ 37,0.96,31.3,1,1,69.4,1411.0,1,0
821
+ 59,2.0,8.9,1,0,73.7,1625.0,0,0
822
+ 58,0.3,12.4,1,0,62.5,997.0,0,0
823
+ 33,1.15,32.8,1,1,95.0,1116.0,1,0
824
+ 51,0.77,11.4,1,0,34.4,1504.0,1,0
825
+ 70,2.39,16.8,1,0,52.2,1048.0,1,0
826
+ 57,0.3,13.1,0,0,89.4,413.0,0,0
827
+ 42,1.28,5.0,1,0,78.1,1955.0,0,0
828
+ 82,0.85,16.5,0,0,53.0,1744.0,1,0
829
+ 34,2.52,5.9,0,0,80.0,1091.0,1,0
830
+ 44,1.74,21.1,1,0,50.2,1409.0,1,0
831
+ 36,0.67,31.3,0,1,62.2,1803.0,1,0
832
+ 85,1.97,5.0,1,1,96.1,1972.0,0,0
833
+ 72,0.85,13.1,0,0,93.3,1352.0,0,0
834
+ 70,2.1,23.4,0,1,77.2,1007.0,0,0
835
+ 58,0.99,5.0,0,1,43.7,2032.0,1,0
836
+ 70,2.15,34.0,0,0,60.6,1347.0,1,0
837
+ 89,1.59,22.6,0,0,72.4,1226.0,0,0
838
+ 25,4.13,31.0,0,1,106.4,1432.0,1,0
839
+ 86,1.15,11.2,0,0,25.4,1877.0,1,0
840
+ 26,1.54,12.7,0,0,48.2,1281.0,1,0
841
+ 70,0.77,16.1,0,0,98.2,1793.0,0,0
842
+ 61,1.2,43.7,1,1,104.0,1196.0,1,0
843
+ 83,0.3,33.8,0,0,68.3,1605.0,1,0
844
+ 34,1.62,19.6,1,1,108.5,826.0,0,0
845
+ 48,2.41,21.1,1,1,51.7,1835.0,1,0
846
+ 52,1.56,25.6,0,1,32.3,962.0,1,0
847
+ 46,0.3,46.7,1,1,89.8,1530.0,1,0
848
+ 55,0.48,22.6,1,0,102.4,557.0,0,0
849
+ 48,0.3,18.6,1,1,102.0,1312.0,0,0
850
+ 57,2.08,13.9,0,0,48.4,1394.0,1,0
851
+ 76,0.3,20.8,1,0,75.0,959.0,0,0
852
+ 46,1.17,11.0,1,0,91.0,1245.0,0,0
853
+ 74,1.06,24.0,0,0,77.5,1431.0,0,0
854
+ 52,2.54,5.0,0,0,106.2,1582.0,1,0
855
+ 87,1.28,14.9,0,0,59.9,1350.0,1,0
856
+ 85,1.93,26.8,1,0,68.2,1966.0,0,0
857
+ 29,1.69,22.4,0,1,75.9,1879.0,0,0
858
+ 24,2.42,12.4,1,0,90.8,1285.0,0,0
859
+ 57,0.98,15.2,0,1,65.1,635.0,0,0
860
+ 32,2.88,30.4,1,0,93.2,1056.0,1,0
861
+ 50,0.3,5.0,0,0,110.1,185.0,0,0
862
+ 66,1.97,5.0,0,0,57.0,1208.0,1,0
863
+ 71,0.42,6.8,0,0,65.9,2001.0,0,0
864
+ 75,0.76,17.9,0,1,94.2,1696.0,0,0
865
+ 34,1.71,5.0,0,0,118.2,1342.0,0,0
866
+ 48,1.71,29.4,0,1,85.9,936.0,0,0
867
+ 27,1.75,6.9,0,1,50.3,1361.0,1,0
868
+ 24,0.3,20.7,1,0,75.0,2366.0,0,0
869
+ 48,2.5,11.1,1,1,94.0,2044.0,0,0
870
+ 66,0.39,17.2,0,0,49.7,1225.0,1,0
871
+ 87,0.51,5.0,0,1,43.0,559.0,1,0
872
+ 64,1.77,30.0,0,1,61.4,2404.0,0,0
873
+ 21,0.94,6.5,1,0,86.5,936.0,0,0
874
+ 46,1.48,5.2,0,0,35.8,1565.0,1,0
875
+ 55,0.3,46.5,0,0,52.7,521.0,1,0
876
+ 55,1.46,24.7,0,0,76.8,1138.0,0,0
877
+ 45,1.4,29.5,1,1,97.3,519.0,0,0
878
+ 62,0.74,23.5,0,0,77.3,719.0,0,0
879
+ 46,0.3,12.6,1,0,79.4,838.0,0,0
880
+ 88,1.01,5.0,0,0,95.1,1539.0,0,0
881
+ 39,1.17,14.4,0,1,109.9,1252.0,0,0
882
+ 30,0.87,6.3,0,0,107.1,2656.0,0,0
883
+ 57,0.3,7.0,0,1,19.0,1867.0,1,0
884
+ 25,2.64,5.0,0,1,72.5,1878.0,1,0
885
+ 42,0.63,19.4,0,1,92.8,1552.0,0,0
886
+ 66,1.0,36.9,0,1,112.5,1438.0,1,0
887
+ 65,0.3,24.7,0,0,86.0,1895.0,0,0
888
+ 31,2.64,16.7,0,0,48.5,109.0,1,0
889
+ 32,0.78,17.5,1,1,51.8,989.0,1,0
890
+ 81,1.29,5.0,0,1,52.5,620.0,1,0
891
+ 79,2.21,12.9,1,1,77.7,358.0,0,0
892
+ 62,0.59,5.0,0,0,58.0,916.0,1,0
893
+ 87,2.07,19.6,0,0,5.0,726.0,1,1
894
+ 24,0.3,14.9,0,1,40.5,1897.0,1,0
895
+ 56,1.7,7.6,0,0,58.9,1346.0,1,0
896
+ 50,2.62,19.3,0,0,35.9,295.0,1,0
897
+ 28,0.68,19.2,0,0,39.7,1457.0,1,0
898
+ 70,2.21,36.2,1,1,120.0,794.0,1,0
899
+ 48,2.85,26.2,0,0,69.8,1331.0,1,0
900
+ 59,0.97,20.6,0,0,60.3,1497.0,0,0
901
+ 60,0.9,6.6,0,1,86.7,925.0,0,0
902
+ 30,0.39,5.1,0,0,98.7,1409.0,0,0
903
+ 42,0.74,25.2,1,1,120.0,1501.0,0,0
904
+ 20,0.47,15.6,0,1,112.6,1218.0,0,0
905
+ 65,0.39,21.0,0,0,80.9,940.0,0,0
906
+ 40,2.28,29.7,0,1,31.7,1302.0,1,0
907
+ 55,0.49,5.0,0,1,44.9,1230.0,1,0
908
+ 73,1.43,34.8,1,0,60.0,1458.0,1,0
909
+ 76,1.23,29.6,1,0,82.7,1168.0,0,0
910
+ 20,2.55,5.0,0,1,72.4,704.0,1,0
911
+ 82,0.75,46.2,0,0,33.2,1215.0,1,0
912
+ 73,1.54,21.9,1,1,28.7,1463.0,1,0
913
+ 74,1.91,12.3,0,1,76.5,1393.0,0,0
914
+ 59,2.54,24.2,0,0,73.0,1245.0,1,0
915
+ 34,0.73,6.3,1,1,64.8,1057.0,0,0
916
+ 40,0.64,24.6,0,0,82.1,1031.0,0,0
917
+ 66,0.3,8.5,0,1,101.2,1083.0,0,0
918
+ 72,3.21,42.2,0,0,77.8,1838.0,1,0
919
+ 28,2.45,18.7,1,1,46.5,826.0,1,0
920
+ 71,1.16,25.8,0,1,117.9,1345.0,0,0
921
+ 76,2.94,8.6,1,1,65.6,671.0,1,0
922
+ 45,1.11,27.8,1,1,71.2,1682.0,0,0
923
+ 60,1.85,17.8,0,1,53.7,1032.0,1,0
924
+ 54,1.21,5.0,0,0,43.1,887.0,1,0
925
+ 82,1.56,15.1,0,1,45.2,1408.0,1,0
926
+ 44,1.46,41.2,0,1,39.7,100.0,1,0
927
+ 57,0.82,28.3,1,1,5.0,650.0,1,1
928
+ 21,2.18,13.5,0,1,66.1,1480.0,0,0
929
+ 26,1.84,5.0,0,0,97.6,1807.0,0,0
930
+ 53,2.12,8.0,1,0,45.4,1525.0,1,0
931
+ 36,1.49,5.0,0,0,120.0,1370.0,0,0
932
+ 62,0.38,5.0,1,1,104.7,2505.0,0,0
933
+ 78,2.74,27.4,1,0,69.5,1546.0,1,0
934
+ 70,0.96,18.7,0,1,42.2,778.0,1,0
935
+ 73,1.53,39.5,0,0,30.1,1812.0,1,0
936
+ 43,1.77,6.0,1,0,67.2,979.0,0,0
937
+ 44,1.52,18.0,1,0,71.7,946.0,0,0
938
+ 90,2.02,5.0,0,0,64.9,610.0,0,0
939
+ 71,2.17,10.9,0,1,96.7,1094.0,0,0
940
+ 89,1.0,15.3,0,0,107.4,685.0,0,0
941
+ 52,2.66,13.5,0,0,81.8,1579.0,1,0
942
+ 68,0.96,18.6,0,0,83.2,1237.0,0,0
943
+ 48,1.5,29.7,0,1,62.1,620.0,0,0
944
+ 82,0.85,28.4,0,1,69.9,1259.0,0,0
945
+ 41,0.59,8.8,0,0,80.3,1797.0,0,0
946
+ 45,2.14,17.6,1,1,62.1,2111.0,0,0
947
+ 47,4.01,27.5,1,0,86.5,405.0,1,0
948
+ 68,0.87,30.4,0,0,43.6,911.0,1,0
949
+ 90,2.29,10.1,0,1,51.7,655.0,1,0
950
+ 68,0.91,26.5,0,0,43.8,1477.0,1,0
951
+ 39,1.19,22.0,0,1,53.3,596.0,1,0
952
+ 82,2.78,5.2,1,0,62.8,1830.0,1,0
953
+ 80,0.3,27.6,0,1,95.7,1902.0,0,0
954
+ 68,0.3,19.8,1,0,71.0,1709.0,0,0
955
+ 90,1.12,5.0,0,1,37.9,941.0,1,0
956
+ 20,1.8,14.5,1,1,35.0,973.0,1,0
957
+ 32,1.62,18.5,0,0,59.6,1072.0,1,0
958
+ 70,1.52,10.7,0,0,90.9,1853.0,0,0
959
+ 75,1.23,32.7,0,0,105.1,451.0,1,0
960
+ 81,1.91,33.2,1,1,30.2,1493.0,1,0
961
+ 51,0.3,13.4,1,0,79.3,833.0,0,0
962
+ 49,0.52,12.1,1,0,60.0,1090.0,0,0
963
+ 48,1.12,16.4,1,1,61.9,1668.0,0,0
964
+ 68,1.83,15.6,1,0,43.4,542.0,1,0
965
+ 64,2.54,10.9,0,1,64.5,1161.0,1,0
966
+ 49,0.4,5.0,0,0,42.3,1236.0,1,0
967
+ 35,2.51,39.1,1,0,63.4,1281.0,1,0
968
+ 59,0.79,18.0,1,1,98.7,1248.0,0,0
969
+ 38,1.08,15.9,1,1,85.8,1578.0,0,0
970
+ 37,1.72,21.9,0,0,117.8,1074.0,0,0
971
+ 20,1.02,17.0,0,0,83.2,1483.0,0,0
972
+ 66,2.2,12.8,1,0,74.4,1465.0,0,0
973
+ 85,0.84,5.9,0,0,83.8,1443.0,0,0
974
+ 57,0.85,5.0,0,0,50.6,1564.0,1,0
975
+ 70,2.15,5.0,1,0,17.8,1441.0,1,0
976
+ 82,0.51,5.0,1,1,89.9,1255.0,0,0
977
+ 23,1.42,25.8,0,1,25.1,666.0,1,0
978
+ 20,0.3,26.7,1,0,98.0,1979.0,0,0
979
+ 27,2.84,7.4,1,0,88.8,2147.0,1,0
980
+ 48,2.29,5.0,1,0,48.8,1120.0,1,0
981
+ 74,3.68,18.1,1,1,59.1,1528.0,1,0
982
+ 22,2.4,12.9,0,1,69.7,1026.0,0,0
983
+ 51,0.3,12.6,0,1,46.9,940.0,1,0
984
+ 29,1.8,29.5,0,1,83.5,1328.0,0,0
985
+ 53,0.37,19.7,0,1,85.7,2704.0,0,0
986
+ 74,2.62,6.3,0,0,33.9,2098.0,1,0
987
+ 51,0.3,5.0,0,0,49.4,2023.0,1,0
988
+ 69,0.3,14.8,0,1,69.1,1559.0,0,0
989
+ 26,0.3,7.1,0,0,98.5,841.0,0,0
990
+ 27,0.76,17.1,0,1,86.3,1818.0,0,0
991
+ 84,0.58,30.3,1,1,11.7,100.0,1,1
992
+ 76,0.3,5.0,0,1,62.7,1495.0,0,0
993
+ 86,2.99,19.1,0,0,81.8,1849.0,1,0
994
+ 78,1.68,29.0,0,1,50.0,1376.0,1,0
995
+ 73,1.57,17.0,0,1,48.1,2130.0,1,0
996
+ 86,2.63,26.7,1,1,51.3,587.0,1,0
997
+ 70,1.43,14.6,0,1,62.3,2100.0,0,0
998
+ 27,0.53,20.0,0,1,45.5,1221.0,1,0
999
+ 53,0.3,23.3,0,0,86.5,2025.0,0,0
1000
+ 54,0.48,11.1,0,0,48.5,1810.0,1,0
1001
+ 51,2.55,41.9,0,0,44.1,2057.0,1,0
1002
+ 65,0.3,24.9,0,0,60.0,1788.0,0,0
1003
+ 35,1.52,33.6,0,1,107.0,1646.0,1,0
1004
+ 87,2.13,30.9,1,1,83.1,1983.0,1,0
1005
+ 56,1.46,21.9,1,0,84.7,1328.0,0,0
1006
+ 73,1.56,34.6,0,0,77.2,1601.0,1,0
1007
+ 33,1.79,20.3,0,0,46.3,1298.0,1,0
1008
+ 74,1.54,9.2,0,1,54.0,957.0,1,0
1009
+ 67,2.65,18.2,0,0,49.8,1563.0,1,0
1010
+ 26,0.3,5.9,0,0,97.3,1398.0,0,0
1011
+ 26,1.42,5.0,1,0,77.4,1928.0,0,0
1012
+ 52,0.3,7.8,0,0,28.3,1204.0,1,0
1013
+ 42,0.3,18.9,1,1,106.3,920.0,0,0
1014
+ 38,1.13,30.7,0,0,61.7,1922.0,1,0
1015
+ 38,1.69,7.7,1,0,86.3,1332.0,0,0
1016
+ 55,2.67,30.1,1,0,96.3,904.0,1,0
1017
+ 48,3.38,5.0,1,0,5.9,1995.0,1,1
1018
+ 79,2.39,7.0,0,1,81.4,1763.0,0,0
1019
+ 21,1.85,35.4,1,0,63.7,2224.0,1,0
1020
+ 20,1.34,18.6,1,0,9.5,1130.0,1,1
1021
+ 66,0.3,15.9,1,1,41.7,1060.0,1,0
1022
+ 88,1.07,20.8,0,0,58.6,757.0,1,0
1023
+ 39,2.36,5.0,1,1,91.1,1017.0,0,0
1024
+ 30,2.01,14.0,0,0,65.6,1107.0,0,0
1025
+ 21,0.3,18.0,0,0,73.7,1642.0,0,0
1026
+ 86,1.75,32.8,1,1,61.1,835.0,1,0
1027
+ 31,1.68,5.0,0,1,97.2,968.0,0,0
1028
+ 39,1.51,39.2,0,1,83.0,2148.0,1,0
1029
+ 24,1.17,16.5,0,0,74.1,100.0,0,0
1030
+ 56,1.8,5.0,1,0,41.4,1540.0,1,0
1031
+ 57,1.83,5.0,0,0,73.0,655.0,0,0
1032
+ 28,0.62,21.3,0,1,120.0,897.0,0,0
1033
+ 72,1.61,5.0,0,1,89.9,2012.0,0,0
1034
+ 63,1.03,11.3,1,0,51.5,1336.0,1,0
1035
+ 43,0.3,15.0,0,1,116.3,2629.0,0,0
1036
+ 49,0.69,31.7,1,1,50.4,1613.0,1,0
1037
+ 78,0.3,30.2,0,0,87.9,885.0,1,0
1038
+ 33,2.08,10.3,1,1,68.8,1579.0,0,0
1039
+ 28,1.52,15.4,1,0,74.6,1865.0,0,0
1040
+ 59,0.88,5.0,0,0,75.5,1561.0,0,0
1041
+ 85,2.48,5.0,0,1,63.8,1192.0,0,0
1042
+ 44,1.26,5.0,1,0,60.3,454.0,0,0
1043
+ 41,0.3,31.5,0,0,37.1,1139.0,1,0
1044
+ 23,0.8,27.4,0,1,41.9,2134.0,1,0
1045
+ 45,2.67,22.6,1,1,78.3,902.0,1,0
1046
+ 77,0.6,5.0,1,1,52.9,1094.0,1,0
1047
+ 48,1.45,9.5,0,1,47.2,1797.0,1,0
1048
+ 56,1.87,7.7,0,0,120.0,1610.0,0,0
1049
+ 89,1.73,16.0,0,1,120.0,645.0,0,0
1050
+ 37,3.4,15.3,0,1,84.5,1246.0,1,0
1051
+ 61,0.3,6.0,1,0,88.0,2003.0,0,0
1052
+ 60,0.3,22.2,1,1,49.7,1313.0,1,0
1053
+ 57,0.3,20.7,1,0,40.4,2016.0,1,0
1054
+ 53,0.93,9.3,0,0,61.5,2044.0,0,0
1055
+ 36,2.19,21.7,0,1,70.0,836.0,0,0
1056
+ 56,0.3,31.5,0,1,87.8,1152.0,1,0
1057
+ 44,2.2,35.1,0,0,24.2,1629.0,1,0
1058
+ 46,1.23,23.9,1,0,120.0,531.0,0,0
1059
+ 76,0.3,23.5,0,1,76.2,1188.0,0,0
1060
+ 50,0.3,15.1,1,0,31.2,1573.0,1,0
1061
+ 25,0.3,30.4,1,0,73.9,989.0,1,0
1062
+ 59,0.6,5.2,1,1,47.4,1594.0,1,0
1063
+ 31,1.05,29.0,1,1,45.7,1000.0,1,0
1064
+ 72,2.41,14.5,1,1,43.4,994.0,1,0
1065
+ 90,1.92,35.9,0,1,63.6,1672.0,1,0
1066
+ 29,0.44,25.1,0,1,120.0,1984.0,0,0
1067
+ 64,1.57,17.2,0,1,72.3,945.0,0,0
1068
+ 36,2.69,15.2,0,0,87.3,694.0,1,0
1069
+ 45,2.89,24.3,1,1,93.5,1281.0,1,0
1070
+ 81,0.92,23.7,1,0,66.4,1533.0,0,0
1071
+ 65,2.06,13.2,0,0,41.0,940.0,1,0
1072
+ 83,2.45,19.1,0,0,30.0,2130.0,1,0
1073
+ 21,0.3,28.8,0,1,60.3,1227.0,0,0
1074
+ 73,0.74,5.0,1,0,98.6,935.0,0,0
1075
+ 84,3.2,26.7,1,0,93.4,2266.0,1,0
1076
+ 70,0.93,24.3,1,1,76.4,1933.0,0,0
1077
+ 72,0.3,32.2,0,1,79.7,936.0,1,0
1078
+ 55,1.09,9.4,0,1,66.6,1834.0,0,0
1079
+ 45,2.21,18.1,1,0,58.0,972.0,1,0
1080
+ 48,1.21,20.5,1,0,51.5,1684.0,1,0
1081
+ 40,1.84,26.9,0,1,33.2,2189.0,1,0
1082
+ 30,2.04,23.1,1,0,114.9,696.0,0,0
1083
+ 59,0.88,5.0,0,1,74.3,1031.0,0,0
1084
+ 30,0.73,21.5,1,0,58.9,1042.0,1,0
1085
+ 55,1.34,42.1,1,1,115.5,1433.0,1,0
1086
+ 78,1.36,25.3,1,0,120.0,1537.0,0,0
1087
+ 58,1.25,37.7,0,0,120.0,1255.0,1,0
1088
+ 73,1.29,30.5,0,1,63.8,459.0,1,0
1089
+ 74,0.53,34.3,1,0,72.6,684.0,1,0
1090
+ 43,1.88,21.7,1,0,86.3,858.0,0,0
1091
+ 41,1.74,24.3,0,1,111.6,1580.0,0,0
1092
+ 88,0.3,21.1,1,0,71.6,602.0,0,0
1093
+ 75,0.85,18.1,0,0,45.4,843.0,1,0
1094
+ 52,1.28,26.9,1,0,51.2,733.0,1,0
1095
+ 55,0.72,11.7,1,0,99.4,1471.0,0,0
1096
+ 39,1.77,40.6,0,0,85.5,1866.0,1,0
1097
+ 81,1.14,6.9,0,1,65.7,1377.0,0,0
1098
+ 45,1.35,27.7,0,1,64.0,2297.0,0,0
1099
+ 85,0.84,34.5,0,0,65.7,1377.0,1,0
1100
+ 59,0.3,15.9,0,0,101.0,1253.0,0,0
1101
+ 36,0.3,5.0,1,1,50.3,908.0,1,0
1102
+ 20,1.73,31.9,1,1,39.7,1401.0,1,0
1103
+ 80,1.44,20.4,0,0,115.4,887.0,0,0
1104
+ 62,1.59,27.8,0,1,70.6,811.0,0,0
1105
+ 61,1.32,16.7,0,1,68.0,796.0,0,0
1106
+ 44,1.39,38.8,0,0,86.8,1188.0,1,0
1107
+ 58,2.07,5.0,0,0,45.3,1050.0,1,0
1108
+ 54,1.6,22.5,1,0,88.8,2627.0,0,0
1109
+ 22,2.14,34.1,1,1,60.4,1405.0,1,0
1110
+ 63,1.35,19.3,0,1,98.1,1396.0,0,0
1111
+ 70,0.93,21.6,1,1,31.7,1024.0,1,0
1112
+ 31,1.37,12.8,1,0,81.3,2833.0,0,0
1113
+ 38,0.45,18.2,0,1,64.2,838.0,0,0
1114
+ 63,0.86,5.0,1,1,52.4,1063.0,1,0
1115
+ 78,1.36,9.4,1,1,89.3,1800.0,0,0
1116
+ 68,1.35,8.6,0,0,66.3,1401.0,0,0
1117
+ 80,1.1,26.0,0,1,81.7,663.0,0,0
1118
+ 36,0.3,11.1,1,0,101.6,1314.0,0,0
1119
+ 76,1.77,11.5,1,1,89.8,1640.0,0,0
1120
+ 74,1.95,13.5,0,1,43.0,1556.0,1,0
1121
+ 66,2.68,9.0,0,0,56.5,1631.0,1,0
1122
+ 31,1.6,21.2,0,1,81.5,2393.0,0,0
1123
+ 81,1.2,22.5,1,0,89.8,1436.0,0,0
1124
+ 27,0.3,27.9,0,1,60.2,1698.0,0,0
1125
+ 40,2.54,25.8,1,0,74.9,100.0,1,0
1126
+ 89,1.42,24.6,0,1,74.8,2233.0,0,0
1127
+ 44,1.37,14.1,0,1,78.3,1332.0,0,0
1128
+ 31,0.97,13.3,0,0,40.5,866.0,1,0
1129
+ 34,0.91,7.5,0,1,34.6,1202.0,1,0
1130
+ 78,1.82,7.3,0,0,13.5,1631.0,1,1
1131
+ 45,0.3,20.3,0,0,72.6,1817.0,0,0
1132
+ 45,2.66,9.4,0,1,35.9,1252.0,1,0
1133
+ 66,2.47,35.6,0,1,120.0,1601.0,1,0
1134
+ 51,0.88,17.5,0,1,86.4,1168.0,0,0
1135
+ 29,0.42,36.0,0,1,40.5,1546.0,1,0
1136
+ 35,0.3,24.9,1,1,98.4,1403.0,0,0
1137
+ 90,0.3,8.7,1,1,98.4,1450.0,0,0
1138
+ 36,1.86,17.3,1,1,100.5,1145.0,0,0
1139
+ 42,1.48,5.0,0,0,49.8,1502.0,1,0
1140
+ 45,1.64,20.3,0,0,87.9,887.0,0,0
1141
+ 26,0.3,9.8,0,0,100.9,1397.0,0,0
1142
+ 33,0.84,5.0,0,1,109.3,983.0,0,0
1143
+ 26,2.43,36.3,1,1,31.9,803.0,1,0
1144
+ 28,1.11,30.4,0,1,64.6,947.0,1,0
1145
+ 67,0.3,30.0,0,0,48.9,1196.0,1,0
1146
+ 78,1.1,27.4,0,1,116.6,1036.0,0,0
1147
+ 58,0.51,5.0,1,0,82.3,1498.0,0,0
1148
+ 37,1.5,13.2,1,1,92.3,1340.0,0,0
1149
+ 78,1.22,13.9,0,0,81.9,1807.0,0,0
1150
+ 36,1.69,5.0,0,0,79.4,1258.0,0,0
1151
+ 33,0.3,11.3,1,1,48.4,1390.0,1,0
1152
+ 50,0.8,11.4,1,1,58.8,2233.0,1,0
1153
+ 43,2.18,19.5,0,0,71.8,1081.0,0,0
1154
+ 79,0.3,48.4,0,0,53.8,1157.0,1,0
1155
+ 64,0.3,17.7,1,0,49.2,1902.0,1,0
1156
+ 22,1.38,19.5,1,0,64.9,822.0,0,0
1157
+ 56,1.46,15.0,0,0,54.9,1958.0,1,0
1158
+ 62,0.76,26.9,0,1,71.2,1182.0,0,0
1159
+ 59,0.95,5.1,1,1,58.9,883.0,1,0
1160
+ 74,1.68,40.8,1,0,52.9,1753.0,1,0
1161
+ 58,1.96,16.5,1,1,46.8,1174.0,1,0
1162
+ 34,0.3,13.3,1,0,70.2,2212.0,0,0
1163
+ 23,1.53,29.6,0,0,92.2,1341.0,0,0
1164
+ 44,2.56,7.3,1,0,86.3,1337.0,1,0
1165
+ 32,1.1,26.6,0,1,31.8,1007.0,1,0
1166
+ 52,0.3,34.9,1,0,91.5,1227.0,1,0
1167
+ 35,0.3,15.1,0,0,86.1,1164.0,0,0
1168
+ 61,1.06,42.6,1,0,92.2,1966.0,1,0
1169
+ 85,2.13,25.7,0,0,97.1,1445.0,0,0
1170
+ 74,1.16,25.9,0,0,51.8,1653.0,1,0
1171
+ 61,1.37,34.4,0,1,62.5,1349.0,1,0
1172
+ 53,0.3,37.6,1,1,114.8,1095.0,1,0
1173
+ 49,2.08,21.1,1,1,113.3,1485.0,0,0
1174
+ 32,0.3,27.6,1,0,68.1,2095.0,0,0
1175
+ 32,0.75,34.8,0,0,85.1,776.0,1,0
1176
+ 37,1.77,5.0,0,0,87.3,1510.0,0,0
1177
+ 51,0.3,5.0,1,0,113.9,2048.0,0,0
1178
+ 58,1.36,17.3,1,1,78.6,893.0,0,0
1179
+ 65,0.3,5.0,1,0,39.7,1761.0,1,0
1180
+ 48,1.21,14.2,1,0,58.1,1762.0,1,0
1181
+ 81,0.88,21.8,1,1,120.0,653.0,0,0
1182
+ 81,3.1,14.7,0,0,38.5,1855.0,1,0
1183
+ 76,0.85,16.3,1,1,71.3,1003.0,0,0
1184
+ 35,2.86,6.0,1,0,120.0,1479.0,1,0
1185
+ 75,1.73,27.5,1,1,50.0,1812.0,1,0
1186
+ 29,0.48,5.2,1,0,5.0,1900.0,1,1
1187
+ 49,1.5,5.0,0,1,6.4,532.0,1,1
1188
+ 44,0.93,15.5,0,0,50.1,2194.0,1,0
1189
+ 24,1.42,29.0,0,1,25.9,2009.0,1,0
1190
+ 84,0.56,19.0,0,0,95.9,1826.0,0,0
1191
+ 68,2.72,5.0,1,1,76.7,1481.0,1,0
1192
+ 22,2.03,19.2,1,0,16.7,1082.0,1,0
1193
+ 64,1.23,23.3,0,0,30.1,758.0,1,0
1194
+ 33,2.76,19.1,0,1,101.0,488.0,1,0
1195
+ 49,1.27,14.8,1,1,74.8,1622.0,0,0
1196
+ 87,2.19,23.8,1,0,105.8,1826.0,0,0
1197
+ 37,1.23,5.0,0,1,98.0,1258.0,0,0
1198
+ 81,1.55,7.3,1,0,41.2,1070.0,1,0
1199
+ 56,1.13,5.0,0,1,92.0,1335.0,0,0
1200
+ 44,1.29,34.2,0,1,84.1,980.0,1,0
1201
+ 67,1.35,26.5,0,0,21.0,1311.0,1,0
1202
+ 84,0.6,20.2,0,1,36.0,951.0,1,0
1203
+ 72,0.84,5.0,0,1,120.0,1606.0,0,0
1204
+ 34,1.0,26.9,1,0,46.8,1922.0,1,0
1205
+ 68,1.41,34.6,1,1,80.3,1554.0,1,0
1206
+ 87,1.17,24.9,0,0,65.2,1260.0,0,0
1207
+ 31,2.26,17.6,0,1,74.6,1795.0,0,0
1208
+ 78,1.96,25.6,0,1,66.9,1309.0,0,0
1209
+ 56,1.02,21.3,1,0,94.1,1779.0,0,0
1210
+ 80,2.44,29.1,1,1,93.5,982.0,0,0
1211
+ 62,2.89,28.8,0,1,72.9,1047.0,1,0
1212
+ 89,0.3,15.3,0,1,47.4,806.0,1,0
1213
+ 58,2.04,10.1,1,0,55.8,1067.0,1,0
1214
+ 75,0.58,13.2,0,0,30.6,1791.0,1,0
1215
+ 82,1.92,24.4,0,1,61.6,864.0,0,0
1216
+ 65,2.31,13.9,1,0,25.8,148.0,1,0
1217
+ 30,0.41,9.0,0,0,75.5,1093.0,0,0
1218
+ 81,0.3,18.0,0,1,77.4,713.0,0,0
1219
+ 44,1.95,31.3,0,0,95.1,1048.0,1,0
1220
+ 90,1.32,19.6,0,1,39.5,2353.0,1,0
1221
+ 71,0.3,14.7,1,1,41.2,856.0,1,0
1222
+ 23,3.48,21.8,1,1,108.1,1617.0,1,0
1223
+ 78,1.76,19.0,1,0,35.8,1260.0,1,0
1224
+ 39,1.8,5.0,1,0,120.0,1486.0,0,0
1225
+ 82,2.43,26.4,0,0,46.9,1045.0,1,0
1226
+ 73,0.68,22.9,1,1,47.1,1881.0,1,0
1227
+ 76,1.32,18.2,1,0,91.1,1513.0,0,0
1228
+ 60,0.3,30.7,0,1,83.7,1527.0,1,0
1229
+ 22,0.65,32.6,0,1,111.0,1349.0,1,0
1230
+ 25,1.55,27.6,1,1,22.7,1928.0,1,0
1231
+ 24,0.3,7.8,1,0,83.3,1580.0,0,0
1232
+ 24,0.63,8.2,0,0,68.9,1485.0,0,0
1233
+ 73,0.36,31.4,0,1,43.1,1626.0,1,0
1234
+ 66,1.33,5.0,1,0,117.0,420.0,0,0
1235
+ 68,1.72,16.2,0,0,75.9,1394.0,0,0
1236
+ 28,1.87,23.3,1,0,68.4,1268.0,0,0
1237
+ 39,2.1,5.0,0,1,81.4,1884.0,0,0
1238
+ 80,2.43,20.8,1,1,26.8,949.0,1,0
1239
+ 54,1.75,29.5,0,1,38.8,1401.0,1,0
1240
+ 69,2.9,5.0,0,1,61.7,2262.0,1,0
1241
+ 81,1.31,37.9,0,0,77.9,1287.0,1,0
1242
+ 36,1.04,5.9,0,1,101.9,635.0,0,0
1243
+ 22,1.75,24.9,1,0,47.9,2387.0,1,0
1244
+ 51,1.01,17.0,0,1,42.2,942.0,1,0
1245
+ 32,2.87,18.8,0,0,82.5,780.0,1,0
1246
+ 87,2.22,5.0,0,0,66.6,800.0,0,0
1247
+ 33,1.88,33.1,1,1,22.0,1664.0,1,0
1248
+ 30,1.32,21.9,1,0,47.0,1949.0,1,0
1249
+ 75,0.83,37.5,0,1,65.5,2180.0,1,0
1250
+ 86,1.83,5.0,1,0,66.1,1308.0,0,0
1251
+ 48,0.3,15.8,1,0,72.2,807.0,0,0
1252
+ 28,2.58,20.5,1,0,37.5,1015.0,1,0
1253
+ 86,1.04,18.7,0,1,66.7,1317.0,0,0
1254
+ 44,1.47,26.0,1,0,93.7,1289.0,0,0
1255
+ 61,0.38,15.7,0,1,5.0,1954.0,1,1
1256
+ 28,1.85,43.5,0,0,62.9,641.0,1,0
1257
+ 59,0.79,18.5,0,0,28.5,742.0,1,0
1258
+ 44,1.78,5.0,0,0,69.2,1145.0,0,0
1259
+ 24,1.88,19.0,0,1,32.4,1485.0,1,0
1260
+ 30,0.62,33.1,1,1,73.4,1079.0,1,0
1261
+ 78,0.3,6.9,0,0,110.7,1038.0,0,0
1262
+ 57,2.58,6.2,0,1,45.5,1887.0,1,0
1263
+ 24,1.03,7.9,0,1,49.1,1536.0,1,0
1264
+ 67,1.4,5.1,0,0,58.3,808.0,1,0
1265
+ 37,1.64,12.2,0,1,78.0,1045.0,0,0
1266
+ 89,0.3,28.9,0,0,44.5,1558.0,1,0
1267
+ 56,1.62,36.3,0,1,60.5,669.0,1,0
1268
+ 79,1.29,5.0,0,1,53.3,1555.0,1,0
1269
+ 67,0.62,13.5,0,0,58.3,1128.0,1,0
1270
+ 47,0.3,21.6,0,0,78.3,1481.0,0,0
1271
+ 88,1.75,20.4,1,1,83.8,1360.0,0,0
1272
+ 59,2.21,40.8,1,1,33.1,741.0,1,0
1273
+ 64,1.36,5.0,1,1,78.2,982.0,0,0
1274
+ 81,0.3,5.0,0,0,120.0,2024.0,0,0
1275
+ 77,0.3,42.7,0,0,108.6,2486.0,1,0
1276
+ 86,0.81,27.0,1,0,54.0,426.0,1,0
1277
+ 75,2.61,11.1,0,0,73.3,1822.0,1,0
1278
+ 59,0.98,20.1,0,1,69.2,1448.0,0,0
1279
+ 59,0.78,20.9,0,1,81.5,2341.0,0,0
1280
+ 52,0.3,10.9,0,1,59.4,1021.0,1,0
1281
+ 25,0.61,19.7,0,0,63.3,1749.0,0,0
1282
+ 38,0.3,22.3,1,1,51.7,1149.0,1,0
1283
+ 59,0.3,42.2,0,1,97.4,1941.0,1,0
1284
+ 78,1.31,29.6,1,1,77.8,2456.0,0,0
1285
+ 78,0.84,38.9,0,1,78.0,1407.0,1,0
1286
+ 67,2.73,5.0,0,1,100.5,731.0,1,0
1287
+ 60,2.17,13.8,1,1,100.8,2007.0,0,0
1288
+ 32,0.65,20.9,1,0,96.1,1583.0,0,0
1289
+ 64,0.37,5.0,0,0,100.1,1489.0,0,0
1290
+ 72,2.44,32.2,0,1,109.1,2092.0,1,0
1291
+ 61,2.69,25.7,1,0,45.8,731.0,1,0
1292
+ 82,0.3,13.6,0,0,62.5,942.0,0,0
1293
+ 46,1.28,15.8,0,0,87.7,1597.0,0,0
1294
+ 57,0.97,33.0,1,1,47.9,931.0,1,0
1295
+ 79,1.78,8.5,0,1,60.9,1142.0,0,0
1296
+ 26,2.95,33.5,0,0,74.9,1937.0,1,0
1297
+ 24,0.76,15.0,0,1,64.2,1516.0,0,0
1298
+ 64,0.3,27.1,0,1,71.7,711.0,0,0
1299
+ 77,1.72,19.0,1,0,41.4,1504.0,1,0
1300
+ 50,2.45,44.8,0,0,69.1,1920.0,1,0
1301
+ 42,0.93,7.4,1,1,73.4,1386.0,0,0
1302
+ 61,0.57,11.1,0,0,110.4,1736.0,0,0
1303
+ 29,0.81,5.0,0,1,63.3,1041.0,0,0
1304
+ 51,1.97,5.0,0,1,53.7,1430.0,1,0
1305
+ 72,0.79,26.6,1,0,87.8,512.0,0,0
1306
+ 49,1.5,37.2,1,1,5.0,1615.0,1,1
1307
+ 58,1.23,27.9,0,0,62.1,1480.0,0,0
1308
+ 50,1.13,17.9,0,0,57.2,655.0,1,0
1309
+ 21,1.83,7.3,0,0,76.5,2060.0,0,0
1310
+ 31,0.77,28.8,1,0,101.2,1586.0,0,0
1311
+ 58,0.81,6.6,0,1,108.8,954.0,0,0
1312
+ 85,1.92,5.0,1,1,76.2,1628.0,0,0
1313
+ 32,0.31,14.3,0,1,31.2,808.0,1,0
1314
+ 65,0.41,5.0,0,0,57.1,877.0,1,0
1315
+ 46,0.3,5.0,0,1,59.9,810.0,1,0
1316
+ 36,1.96,40.6,0,1,79.2,796.0,1,0
1317
+ 79,1.11,5.0,1,1,71.4,1519.0,0,0
1318
+ 83,0.3,5.0,1,1,52.8,1347.0,1,0
1319
+ 54,1.97,18.9,0,0,38.7,1674.0,1,0
1320
+ 89,0.7,19.5,0,0,48.3,100.0,1,0
1321
+ 49,0.42,15.2,0,0,47.4,1104.0,1,0
1322
+ 90,1.02,5.0,1,1,110.5,1111.0,0,0
1323
+ 82,2.53,28.2,0,1,50.8,1326.0,1,0
1324
+ 47,0.84,12.7,0,0,71.5,1313.0,0,0
1325
+ 79,1.72,32.6,0,0,94.2,1414.0,1,0
1326
+ 56,1.85,10.3,0,0,74.9,1344.0,0,0
1327
+ 41,1.6,29.8,0,1,42.8,1071.0,1,0
1328
+ 87,2.34,33.6,0,0,94.6,1100.0,1,0
1329
+ 39,0.56,12.4,0,0,78.9,1274.0,0,0
1330
+ 87,0.3,28.6,1,0,15.4,1552.0,1,0
1331
+ 83,0.3,5.0,0,1,101.1,1343.0,0,0
1332
+ 36,1.07,21.2,0,1,91.8,907.0,0,0
1333
+ 31,0.35,32.7,1,1,78.5,881.0,1,0
1334
+ 41,1.33,24.2,0,0,110.9,1555.0,0,0
1335
+ 36,1.27,46.9,1,0,91.3,1679.0,1,0
1336
+ 29,2.12,24.9,0,0,98.2,1836.0,0,0
1337
+ 84,1.46,13.6,0,0,95.9,1055.0,0,0
1338
+ 41,0.83,52.1,0,0,88.9,361.0,1,0
1339
+ 69,1.57,37.6,0,0,25.2,1491.0,1,0
1340
+ 33,0.3,5.0,1,1,28.2,942.0,1,0
1341
+ 83,1.17,8.6,0,0,91.3,1248.0,0,0
1342
+ 66,1.49,5.5,0,0,100.8,1374.0,0,0
1343
+ 48,1.32,25.7,0,1,52.4,1577.0,1,0
1344
+ 55,1.57,24.9,0,1,42.2,1747.0,1,0
1345
+ 71,0.62,24.8,0,1,76.6,1885.0,0,0
1346
+ 26,2.24,5.0,0,1,33.7,1960.0,1,0
1347
+ 48,2.84,10.3,0,0,65.8,1352.0,1,0
1348
+ 30,0.3,16.2,1,1,61.1,456.0,0,0
1349
+ 52,0.3,5.0,0,1,64.4,995.0,0,0
1350
+ 25,1.24,7.5,1,0,117.1,2004.0,0,0
1351
+ 51,0.97,34.3,1,0,54.2,1374.0,1,0
1352
+ 70,2.91,5.0,0,0,71.3,2389.0,1,0
1353
+ 77,1.4,35.5,1,0,37.2,1111.0,1,0
1354
+ 45,2.45,31.1,1,0,93.5,2456.0,1,0
1355
+ 65,0.3,14.5,0,0,65.5,1299.0,0,0
1356
+ 48,1.93,10.2,1,0,99.5,1090.0,0,0
1357
+ 23,0.56,28.0,0,0,8.6,944.0,1,1
1358
+ 32,0.54,8.5,0,0,68.5,1630.0,0,0
1359
+ 58,0.98,9.1,1,0,73.3,593.0,0,0
1360
+ 34,0.3,17.7,0,0,92.8,1025.0,0,0
1361
+ 48,1.6,5.0,0,1,54.0,1274.0,1,0
1362
+ 48,1.37,5.0,0,0,89.7,171.0,0,0
1363
+ 51,1.44,14.2,1,1,56.8,1251.0,1,0
1364
+ 21,2.0,23.7,1,1,72.3,2160.0,0,0
1365
+ 66,2.56,8.4,0,1,93.0,1516.0,1,0
1366
+ 41,0.87,15.6,1,1,46.8,971.0,1,0
1367
+ 46,1.63,5.0,0,0,88.5,1061.0,0,0
1368
+ 86,1.46,29.2,0,0,78.4,1469.0,0,0
1369
+ 75,1.54,20.6,1,1,61.7,1045.0,0,0
1370
+ 40,1.55,21.7,1,0,53.3,1534.0,1,0
1371
+ 66,2.63,23.9,0,1,17.5,1031.0,1,0
1372
+ 78,0.79,18.9,0,1,68.0,788.0,0,0
1373
+ 25,0.3,12.2,1,0,61.7,1890.0,0,0
1374
+ 38,0.57,31.6,1,0,86.0,1655.0,1,0
1375
+ 76,1.88,19.9,1,1,83.4,356.0,0,0
1376
+ 88,1.22,16.0,0,0,96.8,1132.0,0,0
1377
+ 22,0.78,17.9,1,0,97.7,1821.0,0,0
1378
+ 20,0.3,17.6,1,1,120.0,1217.0,0,0
1379
+ 77,1.4,15.9,0,1,82.8,1010.0,0,0
1380
+ 57,1.78,23.4,1,0,48.5,1174.0,1,0
1381
+ 34,1.48,6.8,1,0,90.7,1355.0,0,0
1382
+ 53,0.97,7.6,1,1,110.1,1210.0,0,0
1383
+ 80,1.33,24.7,1,1,81.9,1259.0,0,0
1384
+ 54,1.33,16.3,1,1,16.9,1225.0,1,0
1385
+ 83,1.37,29.7,1,1,83.9,813.0,0,0
1386
+ 44,0.3,22.9,0,0,54.3,787.0,1,0
1387
+ 43,1.38,11.4,1,0,37.0,755.0,1,0
1388
+ 31,0.8,24.9,1,1,74.7,1346.0,0,0
1389
+ 37,2.14,32.4,1,1,31.9,1591.0,1,0
1390
+ 34,1.32,23.4,0,0,95.6,829.0,0,0
1391
+ 46,1.95,26.0,0,0,88.3,550.0,0,0
1392
+ 79,0.93,15.9,0,1,67.8,864.0,0,0
1393
+ 65,0.96,29.9,1,0,56.2,2001.0,1,0
1394
+ 36,2.54,11.0,1,1,65.4,1143.0,1,0
1395
+ 72,1.59,22.1,0,0,44.7,1193.0,1,0
1396
+ 27,0.56,48.8,0,0,68.1,901.0,1,0
1397
+ 46,2.01,24.5,0,0,5.0,1586.0,1,1
1398
+ 65,0.72,13.0,0,1,72.2,1238.0,0,0
1399
+ 69,1.4,12.9,1,1,72.9,937.0,0,0
1400
+ 90,2.85,17.1,0,1,91.1,785.0,1,0
1401
+ 22,0.3,28.2,0,1,77.5,1489.0,0,0
1402
+ 83,1.04,19.7,0,0,94.4,1432.0,0,0
1403
+ 63,1.57,10.2,0,0,83.7,681.0,0,0
1404
+ 72,1.89,10.2,1,1,95.9,1914.0,0,0
1405
+ 43,0.3,19.8,0,1,120.0,979.0,0,0
1406
+ 79,0.3,18.5,1,1,80.5,188.0,0,0
1407
+ 22,2.18,23.5,0,1,74.6,2064.0,0,0
1408
+ 39,0.55,29.0,0,0,99.7,1249.0,0,0
1409
+ 65,0.51,50.7,0,0,58.3,1517.0,1,0
1410
+ 34,2.6,5.0,1,1,67.0,2136.0,1,0
1411
+ 44,1.26,26.2,0,0,80.5,799.0,0,0
1412
+ 90,1.27,19.2,1,0,71.8,1540.0,0,0
1413
+ 36,1.04,5.0,1,1,71.7,1888.0,0,0
1414
+ 28,0.3,33.0,0,0,92.5,833.0,1,0
1415
+ 57,1.81,23.1,1,1,27.6,2030.0,1,0
1416
+ 67,1.57,27.6,1,0,120.0,595.0,0,0
1417
+ 79,1.35,5.0,0,1,82.1,1252.0,0,0
1418
+ 82,1.1,15.4,0,1,60.0,762.0,0,0
1419
+ 21,0.94,5.0,1,1,110.7,1648.0,0,0
1420
+ 30,2.02,44.0,0,0,72.6,817.0,1,0
1421
+ 83,1.07,31.7,1,0,73.2,991.0,1,0
1422
+ 40,1.14,9.8,0,0,64.6,861.0,0,0
1423
+ 37,1.68,5.0,0,0,106.7,699.0,0,0
1424
+ 83,1.39,20.3,1,1,69.8,917.0,0,0
1425
+ 57,2.68,31.1,1,0,56.0,1277.0,1,0
1426
+ 51,0.3,5.0,0,0,95.0,1250.0,0,0
1427
+ 30,1.47,6.8,1,0,99.6,1192.0,0,0
1428
+ 64,0.56,5.0,0,1,110.2,967.0,0,0
1429
+ 52,0.35,28.4,0,0,85.8,1122.0,0,0
1430
+ 60,0.79,13.6,1,1,98.7,507.0,0,0
1431
+ 27,1.25,14.1,0,1,63.5,951.0,0,0
1432
+ 30,1.29,20.1,0,1,95.6,1189.0,0,0
1433
+ 70,0.3,7.5,0,1,88.6,1447.0,0,0
1434
+ 60,0.71,5.0,1,0,83.3,1386.0,0,0
1435
+ 36,1.45,34.4,0,1,31.1,686.0,1,0
1436
+ 65,0.41,35.5,0,1,60.3,1514.0,1,0
1437
+ 51,0.3,20.2,1,1,68.9,1361.0,0,0
1438
+ 73,0.3,21.0,0,1,83.3,2020.0,0,0
1439
+ 39,0.6,33.1,1,0,120.0,553.0,1,0
1440
+ 52,0.3,19.9,1,0,91.5,1232.0,0,0
1441
+ 59,0.31,13.0,0,1,49.7,1816.0,1,0
1442
+ 51,0.96,18.5,0,1,58.0,1152.0,1,0
1443
+ 21,0.66,34.7,0,0,104.7,843.0,1,0
1444
+ 52,0.3,18.6,1,0,56.9,892.0,1,0
1445
+ 49,0.3,10.0,1,0,95.5,1692.0,0,0
1446
+ 52,1.47,19.8,0,1,72.9,526.0,0,0
1447
+ 45,1.88,25.9,0,1,65.8,1133.0,0,0
1448
+ 41,0.84,24.4,0,1,57.3,862.0,1,0
1449
+ 85,0.96,24.6,0,0,5.0,900.0,1,1
1450
+ 57,1.2,8.1,0,0,83.5,1521.0,0,0
1451
+ 65,2.62,27.2,1,0,43.7,1102.0,1,0
1452
+ 34,0.3,18.3,0,0,34.5,1417.0,1,0
1453
+ 63,0.83,9.5,1,1,76.2,679.0,0,0
1454
+ 68,0.3,27.1,0,0,95.7,1715.0,0,0
1455
+ 80,1.53,12.6,0,1,27.6,1406.0,1,0
1456
+ 86,1.07,5.0,0,1,95.1,1919.0,0,0
1457
+ 25,1.38,6.0,1,1,47.4,1097.0,1,0
1458
+ 28,1.34,15.8,0,0,86.2,1525.0,0,0
1459
+ 25,2.09,24.9,0,0,84.5,1692.0,0,0
1460
+ 51,1.68,7.6,0,0,64.8,1515.0,0,0
1461
+ 60,1.95,15.1,1,1,70.7,2149.0,0,0
1462
+ 27,0.3,5.0,0,1,60.1,468.0,0,0
1463
+ 69,2.27,29.8,0,0,76.6,1387.0,0,0
1464
+ 81,0.55,38.6,1,0,76.4,1097.0,1,0
1465
+ 81,0.6,37.3,1,1,46.9,1061.0,1,0
1466
+ 26,1.44,29.6,0,1,36.1,2047.0,1,0
1467
+ 23,1.47,28.4,1,1,95.2,990.0,0,0
1468
+ 25,0.3,5.0,0,0,75.1,1726.0,0,0
1469
+ 77,1.04,20.1,1,0,91.7,773.0,0,0
1470
+ 41,2.54,12.0,1,0,53.2,1810.0,1,0
1471
+ 45,0.3,28.6,0,0,49.4,1289.0,1,0
1472
+ 22,2.54,5.0,1,1,44.7,1159.0,1,0
1473
+ 60,0.98,20.3,0,0,65.5,532.0,0,0
1474
+ 79,0.3,15.4,0,0,75.8,1160.0,0,0
1475
+ 33,0.3,31.4,1,1,56.4,957.0,1,0
1476
+ 31,0.33,36.6,1,0,109.1,2174.0,1,0
1477
+ 31,0.64,6.9,0,1,53.9,1326.0,1,0
1478
+ 32,1.11,7.4,0,0,76.2,1002.0,0,0
1479
+ 44,0.3,20.8,0,1,47.9,981.0,1,0
1480
+ 64,1.37,38.8,1,0,53.2,620.0,1,0
1481
+ 38,0.3,18.7,1,1,67.8,2061.0,0,0
1482
+ 74,2.45,5.0,1,0,49.2,1928.0,1,0
1483
+ 64,0.96,10.7,0,0,72.2,1267.0,0,0
1484
+ 27,2.05,20.4,1,1,81.0,2390.0,0,0
1485
+ 72,2.2,20.9,1,0,97.3,1293.0,0,0
1486
+ 74,2.17,9.6,1,0,43.0,1848.0,1,0
1487
+ 51,0.69,10.5,0,1,74.2,1583.0,0,0
1488
+ 70,0.68,6.2,0,1,68.5,1013.0,0,0
1489
+ 63,1.0,31.7,0,0,23.8,1391.0,1,0
1490
+ 89,1.77,8.0,1,0,41.8,1486.0,1,0
1491
+ 37,0.74,12.4,0,0,81.9,648.0,0,0
1492
+ 41,1.09,12.1,1,0,36.2,1444.0,1,0
1493
+ 56,1.45,5.0,0,1,68.2,1870.0,0,0
1494
+ 75,0.39,7.6,1,1,16.9,954.0,1,0
1495
+ 78,0.33,32.7,0,0,67.4,1195.0,1,0
1496
+ 22,1.06,5.0,0,1,18.7,745.0,1,0
1497
+ 47,1.18,6.4,0,1,54.9,1059.0,1,0
1498
+ 54,1.59,5.0,0,1,59.1,1097.0,1,0
1499
+ 80,1.8,16.9,0,0,73.1,2089.0,0,0
1500
+ 73,0.3,40.6,1,0,63.7,1141.0,1,0
1501
+ 82,0.47,16.4,0,1,39.1,1035.0,1,0
1502
+ 26,0.33,18.8,0,0,39.6,1253.0,1,0
1503
+ 68,2.47,8.5,0,0,29.6,446.0,1,0
1504
+ 50,1.09,17.3,0,0,75.2,121.0,0,0
1505
+ 77,1.21,32.7,0,0,74.1,609.0,1,0
1506
+ 80,1.25,19.7,0,1,86.7,1462.0,0,0
1507
+ 43,0.56,43.6,0,1,57.5,1299.0,1,0
1508
+ 39,2.61,33.1,0,0,26.6,1735.0,1,0
1509
+ 56,1.57,17.0,1,0,62.1,540.0,0,0
1510
+ 23,1.24,16.7,0,1,70.3,1198.0,0,0
1511
+ 39,0.3,37.6,0,0,40.9,504.0,1,0
1512
+ 79,0.3,19.6,0,1,43.3,1434.0,1,0
1513
+ 43,0.92,34.9,1,1,81.3,611.0,1,0
1514
+ 69,0.57,42.0,1,0,72.5,1178.0,1,0
1515
+ 68,0.3,15.5,1,1,98.3,1403.0,0,0
1516
+ 70,0.87,22.2,0,1,113.1,1104.0,0,0
1517
+ 55,1.01,29.8,1,0,32.4,169.0,1,0
1518
+ 85,1.33,27.2,0,0,59.5,2131.0,1,0
1519
+ 53,0.75,27.1,0,1,73.1,1051.0,0,0
1520
+ 55,0.3,5.0,1,0,79.1,495.0,0,0
1521
+ 25,0.32,7.8,0,1,95.4,1681.0,0,0
1522
+ 58,2.29,12.1,1,1,88.2,1699.0,0,0
1523
+ 61,0.3,32.6,0,0,98.5,1149.0,1,0
1524
+ 77,1.53,5.0,1,0,71.5,2068.0,0,0
1525
+ 31,1.67,36.3,1,0,54.3,930.0,1,0
1526
+ 22,1.09,27.4,0,0,118.7,1388.0,0,0
1527
+ 37,2.79,31.9,0,1,73.8,1555.0,1,0
1528
+ 59,1.65,6.8,0,1,64.0,2057.0,0,0
1529
+ 40,2.86,18.9,1,1,43.2,328.0,1,0
1530
+ 34,0.61,21.6,0,0,74.0,2446.0,0,0
1531
+ 45,0.63,21.1,1,1,95.1,1887.0,0,0
1532
+ 27,1.67,21.5,1,1,57.5,1525.0,1,0
1533
+ 61,0.96,14.7,0,1,66.7,900.0,0,0
1534
+ 63,2.72,19.6,0,0,76.2,858.0,1,0
1535
+ 33,1.51,30.4,1,1,81.8,1444.0,1,0
1536
+ 21,0.3,5.0,0,1,63.5,1547.0,0,0
1537
+ 56,0.3,36.6,0,0,60.2,1482.0,1,0
1538
+ 88,1.13,29.8,0,1,57.2,1380.0,1,0
1539
+ 57,1.12,6.4,0,0,42.3,1516.0,1,0
1540
+ 60,1.48,22.6,1,0,50.7,207.0,1,0
1541
+ 81,2.29,28.8,0,1,50.1,1167.0,1,0
1542
+ 79,2.17,5.0,1,0,31.4,608.0,1,0
1543
+ 33,0.68,18.5,0,1,94.8,1280.0,0,0
1544
+ 21,0.3,17.1,1,1,79.0,1953.0,0,0
1545
+ 89,0.3,10.3,0,0,73.6,846.0,0,0
1546
+ 36,0.54,19.1,0,0,102.6,945.0,0,0
1547
+ 47,0.87,10.8,0,1,87.9,875.0,0,0
1548
+ 85,1.47,34.5,1,1,50.3,942.0,1,0
1549
+ 54,0.48,10.5,1,1,99.3,1577.0,0,0
1550
+ 24,1.45,27.5,0,1,94.3,1694.0,0,0
1551
+ 84,1.53,5.0,0,0,42.1,2035.0,1,0
1552
+ 59,1.33,16.1,0,0,92.6,797.0,0,0
1553
+ 75,0.3,18.1,0,1,58.3,1642.0,1,0
1554
+ 55,1.62,15.7,1,1,94.9,1725.0,0,0
1555
+ 64,3.07,13.2,1,0,61.6,2127.0,1,0
1556
+ 42,1.42,10.0,0,1,56.7,835.0,1,0
1557
+ 66,0.3,27.1,1,1,59.2,298.0,1,0
1558
+ 50,2.32,30.0,0,1,45.7,1161.0,1,0
1559
+ 30,0.57,17.0,1,0,33.0,2704.0,1,0
1560
+ 29,3.24,5.0,0,1,7.5,752.0,1,1
1561
+ 86,1.3,39.5,0,1,43.6,1543.0,1,0
1562
+ 33,0.3,7.4,0,1,120.0,192.0,0,0
1563
+ 29,0.3,5.0,0,1,82.0,2207.0,0,0
1564
+ 20,2.59,5.0,1,1,116.6,361.0,1,0
1565
+ 24,2.2,19.2,1,1,62.0,104.0,0,0
1566
+ 39,3.2,15.4,0,1,58.3,1349.0,1,0
1567
+ 27,1.21,30.4,1,0,112.9,1359.0,1,0
1568
+ 62,1.15,25.3,0,0,79.4,2010.0,0,0
1569
+ 20,0.86,21.5,1,1,46.1,1725.0,1,0
1570
+ 76,0.61,14.7,0,0,85.8,300.0,0,0
1571
+ 83,0.85,31.3,0,0,101.3,1224.0,1,0
1572
+ 47,1.4,40.4,0,0,34.3,951.0,1,0
1573
+ 56,0.44,30.1,0,0,81.6,632.0,1,0
1574
+ 66,0.3,12.4,1,0,36.0,1517.0,1,0
1575
+ 56,1.34,27.4,0,0,99.9,1821.0,0,0
1576
+ 68,0.42,13.2,0,1,75.8,897.0,0,0
1577
+ 63,0.3,5.0,0,1,85.7,1134.0,0,0
1578
+ 75,1.7,7.2,1,1,64.6,1167.0,0,0
1579
+ 47,0.3,13.7,1,0,25.5,969.0,1,0
1580
+ 25,1.8,19.2,0,1,59.0,1086.0,1,0
1581
+ 80,1.77,42.7,0,1,93.2,969.0,1,0
1582
+ 39,1.46,7.4,1,1,119.8,1362.0,0,0
1583
+ 21,3.45,33.9,0,0,77.1,1007.0,1,0
1584
+ 56,1.08,14.2,0,0,52.8,1514.0,1,0
1585
+ 39,0.94,5.0,0,1,83.4,1005.0,0,0
1586
+ 45,1.82,11.9,0,1,91.0,1623.0,0,0
1587
+ 48,1.15,32.1,0,1,73.3,994.0,1,0
1588
+ 20,2.24,22.1,1,1,71.8,1603.0,0,0
1589
+ 54,0.3,22.9,0,0,75.3,876.0,0,0
1590
+ 89,0.3,33.9,1,1,71.1,1743.0,1,0
1591
+ 78,1.89,5.6,0,0,77.4,411.0,0,0
1592
+ 88,0.3,5.4,1,1,115.7,1297.0,0,0
1593
+ 52,1.75,5.0,0,1,19.2,1016.0,1,0
1594
+ 70,1.53,28.5,0,1,64.0,1277.0,0,0
1595
+ 31,0.57,24.7,0,0,46.7,707.0,1,0
1596
+ 39,1.53,26.7,0,0,99.5,1203.0,0,0
1597
+ 72,0.3,5.0,0,1,66.5,745.0,0,0
1598
+ 62,0.3,5.0,1,1,84.0,1181.0,0,0
1599
+ 69,0.99,5.0,0,1,105.7,1134.0,0,0
1600
+ 48,1.27,6.9,1,1,43.0,1465.0,1,0
1601
+ 76,0.93,36.6,1,0,56.8,1333.0,1,0
1602
+ 58,1.59,30.0,0,1,103.1,2239.0,0,0
1603
+ 75,1.55,12.5,1,1,42.0,1045.0,1,0
1604
+ 62,2.58,21.6,0,1,57.7,1234.0,1,0
1605
+ 69,1.11,9.9,0,0,30.0,2892.0,1,0
1606
+ 42,2.28,22.4,0,1,104.1,1188.0,0,0
1607
+ 63,2.03,5.0,0,0,55.5,1777.0,1,0
1608
+ 57,3.26,27.0,0,1,78.8,1588.0,1,0
1609
+ 42,1.09,7.8,1,1,86.9,2467.0,0,0
1610
+ 64,0.82,27.7,0,0,49.9,585.0,1,0
1611
+ 71,2.33,12.9,0,0,22.4,528.0,1,0
1612
+ 69,1.55,8.5,1,1,64.5,741.0,0,0
1613
+ 27,2.35,37.4,0,1,64.1,1386.0,1,0
1614
+ 20,1.85,20.1,0,0,68.5,798.0,0,0
1615
+ 27,0.3,14.1,1,0,68.6,233.0,0,0
1616
+ 48,1.54,27.1,0,1,57.5,838.0,1,0
1617
+ 24,1.48,5.0,0,1,56.6,1484.0,1,0
1618
+ 66,1.32,31.3,0,0,77.4,848.0,1,0
1619
+ 53,1.08,16.3,0,1,49.4,1871.0,1,0
1620
+ 84,0.3,25.2,1,0,67.6,737.0,0,0
1621
+ 74,1.99,5.0,1,0,55.9,1307.0,1,0
1622
+ 62,1.54,13.4,0,0,77.4,1105.0,0,0
1623
+ 49,2.19,18.1,0,1,97.7,1394.0,0,0
1624
+ 36,0.3,30.4,0,0,98.7,1444.0,1,0
1625
+ 45,1.66,26.2,1,1,102.2,2093.0,0,0
1626
+ 27,0.99,13.3,0,0,61.6,1645.0,0,0
1627
+ 66,1.33,21.8,0,1,63.7,1090.0,0,0
1628
+ 65,1.0,33.1,1,1,38.3,1606.0,1,0
1629
+ 87,1.69,15.6,1,1,61.4,1675.0,0,0
1630
+ 52,1.05,14.3,0,1,62.3,2322.0,0,0
1631
+ 20,0.3,5.0,0,1,54.6,1221.0,1,0
1632
+ 38,1.28,14.7,0,1,54.5,1259.0,1,0
1633
+ 50,1.01,5.0,0,0,27.6,1956.0,1,0
1634
+ 33,1.12,16.6,1,0,36.5,301.0,1,0
1635
+ 72,0.3,29.9,1,1,71.1,1198.0,0,0
1636
+ 67,1.81,5.0,1,0,72.1,1647.0,0,0
1637
+ 88,0.92,32.8,0,0,82.1,1824.0,1,0
1638
+ 81,0.3,14.0,0,1,63.5,195.0,0,0
1639
+ 85,2.03,17.7,0,0,70.3,631.0,0,0
1640
+ 83,1.77,12.0,0,1,101.3,100.0,0,0
1641
+ 89,0.91,5.0,1,0,68.7,1736.0,0,0
1642
+ 82,0.3,8.6,0,1,54.2,1402.0,1,0
1643
+ 52,1.36,43.2,0,1,40.2,2010.0,1,0
1644
+ 60,1.31,5.0,0,1,89.9,1315.0,0,0
1645
+ 67,2.03,5.0,0,0,27.4,2420.0,1,0
1646
+ 32,0.8,19.7,0,1,49.0,828.0,1,0
1647
+ 50,2.28,17.0,1,1,80.5,1116.0,0,0
1648
+ 87,0.71,14.1,0,1,22.3,1506.0,1,0
1649
+ 23,0.3,18.2,1,1,54.6,944.0,1,0
1650
+ 38,0.3,25.7,0,0,73.2,1509.0,0,0
1651
+ 89,1.14,11.0,0,1,60.4,1245.0,0,0
1652
+ 32,1.14,20.3,1,1,45.4,1216.0,1,0
1653
+ 42,1.5,30.3,0,0,55.2,1237.0,1,0
1654
+ 20,1.12,6.1,1,1,90.4,1653.0,0,0
1655
+ 73,2.08,5.0,0,1,115.8,1129.0,0,0
1656
+ 90,0.97,26.0,0,1,73.5,740.0,0,0
1657
+ 34,0.3,48.0,1,0,20.3,1334.0,1,0
1658
+ 84,1.09,17.9,1,1,84.2,983.0,0,0
1659
+ 90,0.3,20.4,1,1,60.1,800.0,0,0
1660
+ 34,1.44,14.5,0,1,42.6,435.0,1,0
1661
+ 40,2.15,37.1,0,1,50.0,1766.0,1,0
1662
+ 38,0.31,17.1,1,1,51.1,1631.0,1,0
1663
+ 79,2.48,15.8,1,1,34.7,2004.0,1,0
1664
+ 52,1.96,28.9,0,1,68.4,1301.0,0,0
1665
+ 68,2.29,12.2,0,0,115.7,1839.0,0,0
1666
+ 54,1.37,5.0,1,0,42.5,828.0,1,0
1667
+ 63,0.31,28.6,0,0,114.9,346.0,0,0
1668
+ 30,1.9,10.9,0,0,75.2,924.0,0,0
1669
+ 85,0.64,6.3,1,0,67.7,1197.0,0,0
1670
+ 65,1.31,43.2,0,0,62.0,1480.0,1,0
1671
+ 28,1.05,15.9,0,1,49.8,1940.0,1,0
1672
+ 22,2.21,23.9,1,0,77.3,1461.0,0,0
1673
+ 45,1.86,18.4,0,0,83.0,2429.0,0,0
1674
+ 67,1.13,7.4,1,0,9.4,1360.0,1,1
1675
+ 85,0.3,26.3,0,1,120.0,1350.0,0,0
1676
+ 89,0.63,21.8,0,0,24.7,1469.0,1,0
1677
+ 47,1.83,10.1,0,0,56.9,1489.0,1,0
1678
+ 45,1.45,23.2,1,0,6.0,1482.0,1,1
1679
+ 44,0.3,11.8,0,1,63.3,684.0,0,0
1680
+ 31,0.3,5.0,0,1,58.5,1726.0,1,0
1681
+ 24,1.38,5.0,0,1,57.2,2553.0,1,0
1682
+ 67,0.3,21.2,0,0,77.6,859.0,0,0
1683
+ 56,0.34,13.4,0,1,63.9,1279.0,0,0
1684
+ 63,1.81,36.0,0,1,83.5,614.0,1,0
1685
+ 34,2.28,17.5,0,0,39.1,1676.0,1,0
1686
+ 62,0.52,8.6,0,0,71.9,1675.0,0,0
1687
+ 67,1.16,19.9,1,0,54.2,548.0,1,0
1688
+ 89,1.13,5.0,1,1,60.7,644.0,0,0
1689
+ 65,1.05,17.0,0,0,76.8,259.0,0,0
1690
+ 62,1.24,21.8,0,0,57.4,2085.0,1,0
1691
+ 40,1.88,20.3,1,0,67.4,881.0,0,0
1692
+ 42,0.59,33.6,1,1,41.1,1233.0,1,0
1693
+ 66,0.3,49.2,0,1,97.4,1117.0,1,0
1694
+ 34,2.72,26.1,1,1,88.2,1794.0,1,0
1695
+ 44,2.18,32.1,0,1,72.5,1630.0,1,0
1696
+ 55,0.3,48.5,0,1,63.9,1603.0,1,0
1697
+ 70,1.32,5.9,0,0,67.4,894.0,0,0
1698
+ 34,2.11,19.6,1,0,96.9,1641.0,0,0
1699
+ 87,1.87,12.3,0,1,86.4,1764.0,0,0
1700
+ 40,1.62,28.1,1,1,97.3,1626.0,0,0
1701
+ 32,1.05,21.3,0,1,61.5,655.0,0,0
1702
+ 38,2.75,8.2,0,0,82.1,735.0,1,0
1703
+ 53,1.4,18.1,0,0,99.7,2169.0,0,0
1704
+ 87,0.74,30.6,1,0,46.8,2272.0,1,0
1705
+ 71,1.98,5.0,0,1,45.3,1265.0,1,0
1706
+ 46,1.29,8.4,0,1,76.9,1264.0,0,0
1707
+ 48,1.51,6.6,0,1,39.1,1379.0,1,0
1708
+ 47,1.38,21.9,1,1,24.6,1590.0,1,0
1709
+ 54,1.65,32.9,0,0,99.4,579.0,1,0
1710
+ 27,0.32,5.0,0,0,103.7,1415.0,0,0
1711
+ 35,0.3,19.1,0,0,40.5,785.0,1,0
1712
+ 55,2.49,6.9,1,1,34.2,1290.0,1,0
1713
+ 49,1.42,30.1,1,0,53.7,858.0,1,0
1714
+ 37,1.89,15.2,1,1,101.3,976.0,0,0
1715
+ 21,0.3,19.6,0,1,59.7,1391.0,1,0
1716
+ 68,2.16,18.0,0,0,72.4,991.0,0,0
1717
+ 23,0.73,31.5,1,0,78.1,751.0,1,0
1718
+ 26,0.47,42.6,0,0,74.3,2027.0,1,0
1719
+ 58,1.14,5.0,0,1,107.4,758.0,0,0
1720
+ 32,0.32,6.6,0,0,52.0,145.0,1,0
1721
+ 50,1.2,21.9,1,0,67.4,1584.0,0,0
1722
+ 90,1.08,8.2,0,1,75.8,1155.0,0,0
1723
+ 82,2.15,29.2,0,1,68.8,1285.0,0,0
1724
+ 75,2.56,31.1,1,1,39.5,1379.0,1,0
1725
+ 61,2.53,11.4,0,1,33.2,1935.0,1,0
1726
+ 80,0.3,8.8,0,1,32.7,2232.0,1,0
1727
+ 61,0.36,14.7,1,1,88.2,1427.0,0,0
1728
+ 75,0.3,19.2,1,0,49.5,712.0,1,0
1729
+ 55,0.3,21.8,1,0,81.7,1373.0,0,0
1730
+ 87,0.62,5.0,1,1,72.2,1595.0,0,0
1731
+ 26,1.57,6.4,0,1,45.6,1802.0,1,0
1732
+ 73,0.73,13.2,1,1,46.3,1369.0,1,0
1733
+ 20,0.76,8.4,0,1,73.4,1020.0,0,0
1734
+ 63,1.36,5.0,1,1,71.9,847.0,0,0
1735
+ 64,0.3,5.0,1,0,82.3,1242.0,0,0
1736
+ 66,0.45,5.0,1,0,58.6,549.0,1,0
1737
+ 32,0.75,16.6,1,0,48.8,1497.0,1,0
1738
+ 41,1.02,12.8,1,1,72.7,1389.0,0,0
1739
+ 40,1.27,10.4,0,0,105.5,1386.0,0,0
1740
+ 28,2.55,27.6,1,0,23.1,1659.0,1,0
1741
+ 45,2.02,27.6,0,0,50.0,2025.0,1,0
1742
+ 28,0.51,19.8,0,0,84.8,1265.0,0,0
1743
+ 34,0.96,19.4,0,0,75.4,1338.0,0,0
1744
+ 29,0.9,7.7,0,0,85.1,1115.0,0,0
1745
+ 61,0.74,9.2,1,1,59.3,1576.0,1,0
1746
+ 43,1.45,5.0,1,0,29.7,1296.0,1,0
1747
+ 68,0.3,15.0,0,0,111.8,1878.0,0,0
1748
+ 45,1.99,27.4,0,1,97.1,1867.0,0,0
1749
+ 56,2.72,34.3,0,1,69.4,1458.0,1,0
1750
+ 87,0.96,15.1,1,0,49.0,1260.0,1,0
1751
+ 69,0.94,23.9,0,0,57.7,1163.0,1,0
1752
+ 43,1.34,5.0,1,1,75.7,1540.0,0,0
1753
+ 38,2.12,12.8,1,0,63.7,1542.0,0,0
1754
+ 79,0.91,12.5,0,0,69.6,1163.0,0,0
1755
+ 58,2.04,35.9,1,0,110.3,1444.0,1,0
1756
+ 37,1.64,22.7,1,0,93.1,913.0,0,0
1757
+ 38,3.33,23.9,1,1,40.7,1525.0,1,0
1758
+ 55,0.9,23.3,0,1,71.9,955.0,0,0
1759
+ 74,0.3,18.5,0,1,57.0,1686.0,1,0
1760
+ 88,0.3,36.4,1,1,77.4,1142.0,1,0
1761
+ 66,1.21,5.0,0,0,68.4,2137.0,0,0
1762
+ 68,2.13,19.8,1,1,120.0,1320.0,0,0
1763
+ 52,0.61,31.6,0,0,80.7,1419.0,1,0
1764
+ 40,0.99,5.0,0,0,66.6,601.0,0,0
1765
+ 41,1.82,28.1,0,1,116.1,2003.0,0,0
1766
+ 67,0.33,8.9,0,1,75.1,1281.0,0,0
1767
+ 56,0.65,19.3,0,0,32.0,2170.0,1,0
1768
+ 34,0.3,8.6,0,1,66.9,1324.0,0,0
1769
+ 54,2.26,29.5,0,0,85.3,1193.0,0,0
1770
+ 90,2.59,14.5,1,0,82.1,1044.0,1,0
1771
+ 51,0.3,28.1,1,0,95.1,1621.0,0,0
1772
+ 30,1.07,23.2,0,1,73.8,1560.0,0,0
1773
+ 29,2.47,8.5,0,1,72.1,633.0,0,0
1774
+ 76,1.56,24.0,0,1,34.9,1016.0,1,0
1775
+ 44,0.76,10.0,0,0,108.2,1661.0,0,0
1776
+ 21,0.3,18.8,0,0,62.4,978.0,0,0
1777
+ 83,2.24,14.3,0,1,45.5,891.0,1,0
1778
+ 54,1.52,28.8,0,0,120.0,1398.0,0,0
1779
+ 26,0.3,24.5,1,0,112.0,1344.0,0,0
1780
+ 37,2.27,17.6,0,1,58.8,1068.0,1,0
1781
+ 86,0.3,9.8,1,1,23.0,2184.0,1,0
1782
+ 61,1.0,5.0,0,0,52.0,1225.0,1,0
1783
+ 58,0.96,19.6,1,0,109.5,668.0,0,0
1784
+ 60,2.66,10.4,0,0,74.4,491.0,1,0
1785
+ 43,0.97,5.0,0,1,36.3,1811.0,1,0
1786
+ 79,0.96,5.0,0,1,89.6,751.0,0,0
1787
+ 65,0.3,37.5,0,1,64.8,1315.0,1,0
1788
+ 38,0.62,10.1,0,0,53.8,863.0,1,0
1789
+ 87,0.46,31.0,0,0,55.7,1249.0,1,0
1790
+ 61,0.51,13.7,1,1,102.7,1474.0,0,0
1791
+ 51,1.21,32.9,0,1,83.7,617.0,1,0
1792
+ 58,0.3,32.0,1,1,32.8,1072.0,1,0
1793
+ 55,0.3,8.1,0,0,79.2,963.0,0,0
1794
+ 55,1.1,5.0,1,1,72.7,817.0,0,0
1795
+ 22,1.31,5.0,0,1,59.5,1112.0,1,0
1796
+ 27,0.99,8.3,0,1,60.8,988.0,0,0
1797
+ 89,1.16,40.7,0,1,48.4,1736.0,1,0
1798
+ 60,0.83,13.1,0,0,53.4,942.0,1,0
1799
+ 87,1.18,19.7,0,0,77.2,1525.0,0,0
1800
+ 32,1.59,33.6,0,0,63.1,1508.0,1,0
1801
+ 68,1.58,19.3,1,1,83.6,549.0,0,0
1802
+ 79,0.58,18.9,1,1,50.4,1047.0,1,0
1803
+ 21,2.02,25.5,0,1,87.7,1245.0,0,0
1804
+ 79,1.34,21.5,1,0,102.9,1433.0,0,0
1805
+ 24,2.31,16.8,1,1,69.8,1182.0,0,0
1806
+ 63,2.49,9.3,1,1,83.0,1821.0,0,0
1807
+ 46,0.3,18.9,0,0,84.0,1352.0,0,0
1808
+ 51,0.43,31.1,0,1,57.4,1523.0,1,0
1809
+ 40,1.93,39.4,0,0,84.1,1004.0,1,0
1810
+ 27,0.3,21.5,1,0,13.3,1530.0,1,1
1811
+ 69,2.48,27.1,0,0,5.0,2268.0,1,1
1812
+ 86,0.89,21.2,0,1,61.8,1563.0,0,0
1813
+ 63,1.72,17.0,0,1,85.8,1852.0,0,0
1814
+ 77,1.1,24.2,0,0,67.9,1154.0,0,0
1815
+ 22,0.3,32.3,1,1,88.6,1762.0,1,0
1816
+ 89,2.15,7.4,0,1,40.0,1806.0,1,0
1817
+ 21,3.68,5.0,1,1,92.1,1423.0,1,0
1818
+ 63,0.74,11.6,1,0,110.7,1263.0,0,0
1819
+ 21,0.91,20.5,0,1,52.6,552.0,1,0
1820
+ 54,0.3,28.4,0,1,89.3,1284.0,0,0
1821
+ 49,2.42,6.1,1,0,70.6,1583.0,0,0
1822
+ 27,2.02,5.0,0,0,81.0,917.0,0,0
1823
+ 41,0.3,11.9,0,1,110.7,665.0,0,0
1824
+ 63,0.3,15.7,0,0,78.2,1351.0,0,0
1825
+ 77,0.3,5.0,0,1,89.1,1415.0,0,0
1826
+ 55,1.78,8.9,0,0,38.4,626.0,1,0
1827
+ 88,1.87,28.4,0,1,88.3,1320.0,0,0
1828
+ 50,0.37,18.9,0,0,110.3,1445.0,0,0
1829
+ 66,1.65,22.1,0,0,46.9,1961.0,1,0
1830
+ 74,1.34,13.7,1,0,61.9,1062.0,0,0
1831
+ 81,0.87,9.0,0,1,87.2,2343.0,0,0
1832
+ 49,2.07,13.6,1,1,81.2,1327.0,0,0
1833
+ 74,0.3,24.0,0,0,36.0,699.0,1,0
1834
+ 35,2.23,5.0,1,0,74.1,1135.0,0,0
1835
+ 31,0.54,37.8,0,1,61.7,744.0,1,0
1836
+ 36,2.8,24.9,1,0,45.8,1216.0,1,0
1837
+ 35,0.3,11.6,0,1,103.9,1534.0,0,0
1838
+ 31,0.88,27.8,1,0,70.1,1434.0,0,0
1839
+ 27,1.25,32.7,0,1,94.6,735.0,1,0
1840
+ 22,1.25,14.0,0,1,40.7,673.0,1,0
1841
+ 35,1.64,15.4,0,1,84.7,1510.0,0,0
1842
+ 49,0.3,35.9,1,1,96.5,1622.0,1,0
1843
+ 42,1.17,43.4,1,0,63.9,1056.0,1,0
1844
+ 24,1.32,18.4,0,0,57.6,100.0,1,0
1845
+ 84,0.73,5.0,1,1,37.4,721.0,1,0
1846
+ 49,1.56,12.4,1,1,48.3,1793.0,1,0
1847
+ 40,0.3,30.4,1,1,58.7,931.0,1,0
1848
+ 89,0.91,5.6,1,1,45.6,1126.0,1,0
1849
+ 41,0.52,15.5,1,1,50.8,1577.0,1,0
1850
+ 51,0.91,21.5,0,0,74.0,1147.0,0,0
1851
+ 52,2.5,6.9,1,0,76.9,1999.0,0,0
1852
+ 35,2.52,31.2,0,0,97.3,1113.0,1,0
1853
+ 57,2.34,26.3,1,0,51.0,870.0,1,0
1854
+ 33,0.78,42.1,0,1,70.6,1891.0,1,0
1855
+ 55,2.02,27.4,0,0,59.6,1324.0,1,0
1856
+ 42,1.3,6.5,0,0,57.8,761.0,1,0
1857
+ 85,1.24,24.4,1,0,62.1,1536.0,0,0
1858
+ 21,1.13,29.9,1,0,65.1,1153.0,0,0
1859
+ 84,2.78,30.5,0,0,76.3,727.0,1,0
1860
+ 86,2.43,8.7,1,1,61.7,1348.0,0,0
1861
+ 71,1.87,7.2,1,0,100.7,1221.0,0,0
1862
+ 81,1.05,5.0,1,1,27.4,456.0,1,0
1863
+ 42,1.24,37.3,0,1,96.3,770.0,1,0
1864
+ 45,1.68,25.5,1,1,60.8,2233.0,0,0
1865
+ 87,0.73,8.1,0,0,65.3,1341.0,0,0
1866
+ 74,2.04,19.5,1,0,69.8,1973.0,0,0
1867
+ 25,0.37,16.5,0,0,87.6,1454.0,0,0
1868
+ 54,1.55,6.3,0,0,48.0,1919.0,1,0
1869
+ 41,0.3,18.4,1,1,53.6,1578.0,1,0
1870
+ 62,0.7,20.3,0,1,82.5,827.0,0,0
1871
+ 34,3.07,41.2,0,1,27.5,1603.0,1,0
1872
+ 79,2.13,10.1,1,0,69.1,824.0,0,0
1873
+ 31,2.58,5.0,0,1,50.1,1765.0,1,0
1874
+ 68,0.6,5.4,0,0,44.8,1409.0,1,0
1875
+ 61,1.29,7.3,0,1,29.0,1309.0,1,0
1876
+ 57,2.35,12.9,0,1,89.3,1081.0,0,0
1877
+ 64,1.77,5.4,0,0,74.0,1699.0,0,0
1878
+ 54,1.66,27.9,0,0,53.2,1221.0,1,0
1879
+ 49,2.67,5.0,1,1,65.9,345.0,1,0
1880
+ 49,0.3,18.2,0,0,42.7,443.0,1,0
1881
+ 25,1.03,42.0,0,0,56.6,665.0,1,0
1882
+ 86,0.3,24.6,0,0,65.0,1692.0,0,0
1883
+ 26,0.3,23.4,0,0,71.6,1730.0,0,0
1884
+ 71,2.17,40.3,1,1,79.8,1462.0,1,0
1885
+ 33,0.37,32.9,1,1,24.9,1457.0,1,0
1886
+ 34,1.86,24.8,0,1,79.9,2023.0,0,0
1887
+ 40,2.69,14.3,0,0,26.9,1471.0,1,0
1888
+ 54,1.04,17.7,0,1,80.8,1619.0,0,0
1889
+ 85,1.67,17.1,1,1,64.7,1295.0,0,0
1890
+ 21,1.87,13.2,0,0,97.3,1069.0,0,0
1891
+ 54,0.3,20.5,0,0,53.1,1160.0,1,0
1892
+ 39,0.65,22.2,0,1,89.5,2325.0,0,0
1893
+ 29,0.3,5.0,1,0,40.8,757.0,1,0
1894
+ 44,0.72,37.6,1,0,72.6,1457.0,1,0
1895
+ 85,1.84,22.9,1,0,19.0,542.0,1,0
1896
+ 44,0.66,14.8,0,0,92.1,995.0,0,0
1897
+ 73,1.17,20.7,0,0,113.2,1687.0,0,0
1898
+ 52,0.3,29.2,0,0,52.5,395.0,1,0
1899
+ 55,2.3,5.0,1,1,73.1,1752.0,0,0
1900
+ 33,0.71,16.7,1,0,81.1,2324.0,0,0
1901
+ 84,2.57,5.0,0,1,31.2,1483.0,1,0
1902
+ 73,1.25,49.9,0,0,51.3,1931.0,1,0
1903
+ 71,0.3,19.7,0,1,49.7,1424.0,1,0
1904
+ 22,1.05,5.0,0,1,120.0,1656.0,0,0
1905
+ 60,0.3,61.2,0,1,96.1,1527.0,1,0
1906
+ 25,1.73,11.6,0,1,64.6,1045.0,0,0
1907
+ 44,0.96,15.5,0,1,89.5,1000.0,0,0
1908
+ 32,1.35,16.4,0,1,75.3,1891.0,0,0
1909
+ 27,0.87,7.8,1,0,84.8,1279.0,0,0
1910
+ 40,0.7,21.0,0,0,43.7,1229.0,1,0
1911
+ 87,0.32,5.0,0,1,104.3,1219.0,0,0
1912
+ 44,1.95,31.0,0,0,50.8,1453.0,1,0
1913
+ 87,1.04,5.0,1,1,52.1,707.0,1,0
1914
+ 64,0.92,13.0,1,1,84.8,1209.0,0,0
1915
+ 79,1.02,27.0,0,0,78.6,1455.0,0,0
1916
+ 31,0.59,15.5,0,1,70.6,660.0,0,0
1917
+ 51,0.92,16.0,0,0,91.0,1405.0,0,0
1918
+ 32,1.39,5.9,1,0,41.0,851.0,1,0
1919
+ 50,0.3,43.1,1,1,116.1,1456.0,1,0
1920
+ 39,0.4,24.4,1,0,57.5,2379.0,1,0
1921
+ 37,2.44,5.0,0,1,67.8,1240.0,0,0
1922
+ 79,0.87,20.1,1,1,116.5,761.0,0,0
1923
+ 82,0.7,5.0,1,0,52.3,1419.0,1,0
1924
+ 25,0.3,38.7,1,1,95.6,1537.0,1,0
1925
+ 51,1.97,20.4,0,1,64.6,832.0,0,0
1926
+ 62,0.3,6.3,0,0,49.0,441.0,1,0
1927
+ 21,1.19,26.4,0,0,60.4,833.0,0,0
1928
+ 79,0.3,14.7,0,1,84.2,1276.0,0,0
1929
+ 42,1.94,5.0,0,1,95.4,1072.0,0,0
1930
+ 50,2.26,22.6,1,0,75.6,1839.0,0,0
1931
+ 24,1.64,22.2,1,0,30.1,1559.0,1,0
1932
+ 53,0.3,31.7,1,1,85.9,1351.0,1,0
1933
+ 29,1.95,18.8,0,1,66.4,428.0,0,0
1934
+ 21,0.46,19.3,0,0,42.4,1615.0,1,0
1935
+ 30,0.3,19.9,1,1,78.7,2290.0,0,0
1936
+ 69,0.85,37.1,0,0,98.3,1731.0,1,0
1937
+ 50,0.84,14.3,0,1,70.2,971.0,0,0
1938
+ 75,0.75,23.6,1,0,93.1,1232.0,0,0
1939
+ 28,2.35,25.4,1,0,81.6,1530.0,0,0
1940
+ 40,3.01,22.2,0,0,81.9,1993.0,1,0
1941
+ 47,0.3,13.8,1,1,62.4,947.0,0,0
1942
+ 81,0.58,19.4,1,1,90.5,1067.0,0,0
1943
+ 26,1.33,16.9,1,1,92.9,1278.0,0,0
1944
+ 35,0.85,41.5,1,1,89.8,1235.0,1,0
1945
+ 23,1.56,12.5,0,0,62.2,1696.0,0,0
1946
+ 23,2.02,7.0,1,1,94.6,1431.0,0,0
1947
+ 59,1.87,17.9,0,0,79.7,601.0,0,0
1948
+ 36,1.75,17.1,0,1,45.7,972.0,1,0
1949
+ 71,2.69,20.4,1,0,60.5,986.0,1,0
1950
+ 71,0.3,12.5,0,0,56.7,193.0,1,0
1951
+ 55,2.53,19.3,1,1,20.3,1765.0,1,0
1952
+ 57,0.83,19.6,1,1,95.1,1366.0,0,0
1953
+ 69,1.91,28.9,1,1,120.0,1030.0,0,0
1954
+ 82,0.3,19.1,1,1,100.2,1751.0,0,0
1955
+ 82,0.38,19.2,0,0,74.1,1451.0,0,0
1956
+ 81,1.8,24.2,0,1,57.1,657.0,1,0
1957
+ 26,0.3,28.4,0,0,46.9,1605.0,1,0
1958
+ 46,2.09,6.2,0,1,73.8,1986.0,0,0
1959
+ 33,2.33,5.0,0,1,94.2,1230.0,0,0
1960
+ 90,1.36,38.3,0,0,53.1,1266.0,1,0
1961
+ 24,1.33,26.4,1,0,120.0,1354.0,0,0
1962
+ 74,0.45,15.4,1,0,35.4,691.0,1,0
1963
+ 21,1.81,18.2,1,0,75.6,1371.0,0,0
1964
+ 81,1.51,13.3,1,0,71.8,854.0,0,0
1965
+ 40,0.37,20.5,0,0,70.2,1297.0,0,0
1966
+ 40,0.85,6.3,0,0,55.8,1383.0,1,0
1967
+ 29,1.06,28.1,0,1,72.1,1565.0,0,0
1968
+ 77,0.85,20.1,1,1,58.8,1584.0,1,0
1969
+ 58,0.3,20.5,0,0,102.2,836.0,0,0
1970
+ 24,1.83,7.3,1,0,110.5,1394.0,0,0
1971
+ 84,0.98,24.3,0,0,60.3,1778.0,0,0
1972
+ 32,1.21,7.5,0,1,28.9,723.0,1,0
1973
+ 72,0.68,9.7,0,1,77.9,2173.0,0,0
1974
+ 64,1.63,19.1,0,1,77.0,814.0,0,0
1975
+ 51,1.38,48.1,0,1,72.6,2114.0,1,0
1976
+ 55,2.29,20.1,1,1,83.3,823.0,0,0
1977
+ 79,1.63,5.0,1,1,104.5,1272.0,0,0
1978
+ 30,1.02,10.3,0,0,90.8,1204.0,0,0
1979
+ 82,0.53,26.2,1,1,83.3,617.0,0,0
1980
+ 40,1.98,5.0,0,1,88.8,1649.0,0,0
1981
+ 71,0.95,28.0,1,1,76.3,1675.0,0,0
1982
+ 74,1.05,19.9,0,1,46.4,1610.0,1,0
1983
+ 45,1.05,29.9,1,0,106.3,1176.0,0,0
1984
+ 87,0.84,11.3,0,1,72.6,949.0,0,0
1985
+ 53,1.06,10.4,0,0,46.4,1850.0,1,0
1986
+ 71,2.93,24.8,0,0,41.8,1407.0,1,0
1987
+ 71,0.3,17.9,0,0,47.1,922.0,1,0
1988
+ 48,0.47,17.2,0,1,39.2,1407.0,1,0
1989
+ 57,2.45,36.8,0,1,86.7,463.0,1,0
1990
+ 61,0.86,25.2,1,1,65.6,1354.0,0,0
1991
+ 40,0.79,5.0,1,1,89.4,1628.0,0,0
1992
+ 61,2.13,27.6,1,0,99.2,1210.0,0,0
1993
+ 32,0.3,26.4,1,1,92.8,1655.0,0,0
1994
+ 83,1.94,32.2,1,1,85.9,1707.0,1,0
1995
+ 36,1.24,6.7,0,1,77.2,1438.0,0,0
1996
+ 28,1.62,21.9,0,0,65.2,2184.0,0,0
1997
+ 60,1.6,19.3,1,1,66.9,1977.0,0,0
1998
+ 20,0.63,6.5,1,1,84.6,1614.0,0,0
1999
+ 21,2.15,29.4,0,1,46.0,1478.0,1,0
2000
+ 79,0.7,15.1,0,1,68.7,1172.0,0,0
2001
+ 67,1.57,31.8,0,1,51.4,976.0,1,0
2002
+ 48,2.31,9.1,1,1,99.3,1699.0,0,0
2003
+ 29,2.44,5.0,0,1,87.9,1200.0,0,0
2004
+ 77,0.96,15.1,1,1,120.0,793.0,0,0
2005
+ 79,1.62,20.8,1,0,51.1,899.0,1,0
2006
+ 40,0.88,11.6,1,1,53.7,965.0,1,0
2007
+ 47,3.45,5.0,0,1,71.4,2177.0,1,0
2008
+ 53,1.9,22.6,0,1,51.9,1724.0,1,0
2009
+ 27,1.28,22.5,0,0,83.4,1317.0,0,0
2010
+ 78,1.48,26.2,0,0,68.7,1507.0,0,0
2011
+ 68,1.57,13.4,1,0,57.8,1565.0,1,0
2012
+ 36,1.59,12.8,0,1,97.2,866.0,0,0
2013
+ 79,0.98,35.3,0,1,23.8,716.0,1,0
2014
+ 64,0.85,5.0,0,0,83.6,1826.0,0,0
2015
+ 88,1.06,15.0,1,0,56.2,625.0,1,0
2016
+ 51,0.3,19.7,0,0,90.4,1291.0,0,0
2017
+ 63,1.85,25.3,1,0,96.4,939.0,0,0
2018
+ 84,0.48,20.0,0,0,13.1,1410.0,1,1
2019
+ 27,0.3,6.9,0,0,64.7,1173.0,0,0
2020
+ 62,1.19,32.0,0,0,71.5,1567.0,1,0
2021
+ 20,1.08,18.0,0,0,11.1,144.0,1,1
2022
+ 70,1.42,5.0,1,0,75.7,1860.0,0,0
2023
+ 43,0.69,20.5,0,1,56.8,1668.0,1,0
2024
+ 43,0.85,23.7,0,0,39.9,1806.0,1,0
2025
+ 36,1.82,41.5,1,0,53.7,1748.0,1,0
2026
+ 24,1.77,22.9,1,0,49.4,1457.0,1,0
2027
+ 39,1.73,5.0,1,0,55.7,979.0,1,0
2028
+ 40,1.23,5.0,0,0,74.6,1519.0,0,0
2029
+ 77,1.35,33.1,0,0,94.5,1445.0,1,0
2030
+ 50,1.41,8.4,1,1,68.1,1738.0,0,0
2031
+ 30,0.61,5.0,1,1,97.6,1611.0,0,0
2032
+ 71,2.53,30.0,1,1,43.9,1347.0,1,0
2033
+ 34,2.4,12.3,0,1,73.8,1517.0,0,0
2034
+ 26,1.91,29.4,1,0,120.0,1561.0,0,0
2035
+ 47,0.82,7.0,1,1,30.2,1844.0,1,0
2036
+ 70,1.69,35.7,0,0,29.3,2168.0,1,0
2037
+ 77,2.08,28.5,1,1,102.0,1599.0,0,0
2038
+ 24,0.3,9.3,1,0,75.5,1563.0,0,0
2039
+ 24,2.73,5.0,0,1,55.0,1189.0,1,0
2040
+ 27,0.3,45.7,0,1,41.8,1128.0,1,0
2041
+ 83,1.83,15.5,1,0,69.1,937.0,0,0
2042
+ 29,2.51,8.8,0,1,73.3,100.0,1,0
2043
+ 57,1.1,34.6,0,0,73.5,880.0,1,0
2044
+ 27,1.06,29.3,0,1,41.5,1214.0,1,0
2045
+ 44,1.8,32.2,0,1,61.6,1147.0,1,0
2046
+ 85,2.87,16.8,1,0,55.8,1528.0,1,0
2047
+ 69,0.95,40.6,0,0,86.2,898.0,1,0
2048
+ 86,0.5,5.0,0,0,43.0,920.0,1,0
2049
+ 68,0.82,11.4,1,1,71.9,243.0,0,0
2050
+ 55,0.3,22.7,0,0,120.0,1536.0,0,0
2051
+ 87,2.01,32.0,0,1,41.3,856.0,1,0
2052
+ 60,0.74,25.9,1,1,51.3,942.0,1,0
2053
+ 81,1.01,17.0,0,0,67.7,1582.0,0,0
2054
+ 29,2.02,12.3,0,1,5.0,859.0,1,1
2055
+ 40,0.86,32.1,1,1,34.3,1490.0,1,0
2056
+ 55,1.88,27.2,1,0,77.8,697.0,0,0
2057
+ 31,0.3,7.5,1,0,65.6,1289.0,0,0
2058
+ 21,2.06,7.1,1,1,96.4,995.0,0,0
2059
+ 32,1.51,11.5,1,0,64.0,1167.0,0,0
2060
+ 72,1.12,9.9,1,0,61.8,2056.0,0,0
2061
+ 51,1.32,30.4,1,0,52.4,480.0,1,0
2062
+ 35,0.3,23.2,0,1,61.4,2011.0,0,0
2063
+ 51,1.3,24.7,0,1,39.7,841.0,1,0
2064
+ 51,1.07,20.3,1,1,66.3,1735.0,0,0
2065
+ 30,0.3,20.9,0,0,45.7,1834.0,1,0
2066
+ 29,0.6,5.0,0,1,39.7,1515.0,1,0
2067
+ 34,1.08,27.5,0,1,54.0,691.0,1,0
2068
+ 36,0.65,11.2,0,0,81.3,1436.0,0,0
2069
+ 59,0.3,17.6,0,0,73.6,2580.0,0,0
2070
+ 37,2.17,12.3,1,1,86.7,1306.0,0,0
2071
+ 74,1.07,19.8,1,1,46.9,1250.0,1,0
2072
+ 44,0.3,24.9,1,1,69.7,1201.0,0,0
2073
+ 78,3.12,5.9,1,1,112.5,1558.0,1,0
2074
+ 41,2.32,21.0,0,1,104.9,1256.0,0,0
2075
+ 49,0.89,12.6,0,0,38.1,1442.0,1,0
2076
+ 63,0.44,33.9,0,1,44.8,1154.0,1,0
2077
+ 51,1.56,5.0,1,1,112.4,782.0,0,0
2078
+ 70,1.38,6.0,0,1,81.3,2461.0,0,0
2079
+ 65,1.69,13.7,0,0,65.2,1252.0,0,0
2080
+ 40,0.44,6.9,1,1,62.4,2899.0,0,0
2081
+ 51,2.19,15.3,0,1,75.7,1512.0,0,0
2082
+ 58,0.77,11.7,1,0,76.0,1600.0,0,0
2083
+ 31,1.81,19.1,1,0,56.7,1145.0,1,0
2084
+ 66,0.48,30.1,0,1,65.9,1004.0,1,0
2085
+ 37,3.58,18.9,0,0,55.8,1157.0,1,0
2086
+ 40,1.83,19.9,1,1,74.2,884.0,0,0
2087
+ 32,3.8,5.3,0,1,51.6,838.0,1,0
2088
+ 40,1.94,16.4,0,0,38.3,2192.0,1,0
2089
+ 27,0.69,12.9,0,1,106.9,1700.0,0,0
2090
+ 65,1.95,26.2,1,1,68.3,2049.0,0,0
2091
+ 26,2.01,8.8,0,0,112.4,1862.0,0,0
2092
+ 42,1.54,7.7,1,0,21.7,999.0,1,0
2093
+ 41,1.77,21.8,1,1,33.8,530.0,1,0
2094
+ 41,1.89,41.8,0,0,81.7,1070.0,1,0
2095
+ 48,0.31,15.9,1,0,68.3,1346.0,0,0
2096
+ 32,0.3,20.0,0,0,41.1,1872.0,1,0
2097
+ 21,0.49,29.4,0,0,98.4,1273.0,0,0
2098
+ 48,1.31,24.1,1,0,48.3,2783.0,1,0
2099
+ 71,1.0,24.2,1,1,100.0,1084.0,0,0
2100
+ 46,0.32,16.9,0,1,68.2,1596.0,0,0
2101
+ 69,1.9,17.1,1,0,43.3,1001.0,1,0
2102
+ 42,1.45,8.9,1,0,53.3,1503.0,1,0
2103
+ 63,1.35,23.8,1,1,104.3,1237.0,0,0
2104
+ 41,0.97,23.6,0,0,62.6,1176.0,0,0
2105
+ 62,0.86,26.6,1,1,94.3,991.0,0,0
2106
+ 56,0.44,12.1,0,1,105.0,1374.0,0,0
2107
+ 80,2.04,28.0,0,1,68.0,1718.0,0,0
2108
+ 75,0.57,31.6,1,0,64.4,812.0,1,0
2109
+ 22,1.39,5.0,1,0,59.9,1276.0,1,0
2110
+ 82,2.7,14.4,0,0,78.8,1547.0,1,0
2111
+ 38,0.9,32.1,0,0,107.6,1641.0,1,0
2112
+ 42,2.06,10.2,0,0,39.3,2232.0,1,0
2113
+ 48,1.71,24.3,1,1,75.5,1589.0,0,0
2114
+ 49,1.48,18.1,0,1,74.4,1100.0,0,0
2115
+ 58,1.59,22.0,0,1,24.9,1016.0,1,0
2116
+ 44,1.11,18.5,0,1,47.8,1010.0,1,0
2117
+ 27,1.23,27.0,1,0,52.9,982.0,1,0
2118
+ 77,0.71,5.7,1,1,89.1,1408.0,0,0
2119
+ 35,1.24,7.0,1,0,93.5,1510.0,0,0
2120
+ 20,0.67,35.6,1,0,23.1,1712.0,1,0
2121
+ 24,2.11,43.2,0,1,86.0,1632.0,1,0
2122
+ 22,0.3,17.9,0,1,82.7,1923.0,0,0
2123
+ 84,1.63,38.6,0,1,84.5,966.0,1,0
2124
+ 23,1.5,8.7,1,0,73.8,2118.0,0,0
2125
+ 83,1.42,11.6,0,0,93.8,985.0,0,0
2126
+ 29,2.12,35.5,0,0,99.3,1474.0,1,0
2127
+ 40,0.94,27.6,0,0,29.2,1203.0,1,0
2128
+ 65,1.43,37.3,0,0,68.8,1288.0,1,0
2129
+ 46,0.3,23.6,0,1,63.6,1636.0,0,0
2130
+ 85,0.83,5.8,1,1,55.7,581.0,1,0
2131
+ 60,1.97,20.7,1,0,58.6,885.0,1,0
2132
+ 32,0.3,32.4,1,1,74.7,1675.0,1,0
2133
+ 28,1.34,16.4,1,0,37.6,1299.0,1,0
2134
+ 55,0.59,14.6,0,1,86.8,1172.0,0,0
2135
+ 77,1.1,23.8,0,0,60.8,740.0,0,0
2136
+ 73,0.64,11.3,1,1,91.9,1175.0,0,0
2137
+ 31,0.3,21.5,1,1,54.5,1640.0,1,0
2138
+ 33,1.55,18.8,0,1,53.1,1018.0,1,0
2139
+ 53,1.16,12.1,1,0,46.4,1982.0,1,0
2140
+ 72,1.75,29.8,0,1,54.6,1838.0,1,0
2141
+ 39,1.91,25.8,0,0,50.0,1125.0,1,0
2142
+ 35,2.3,13.8,1,0,80.9,1003.0,0,0
2143
+ 89,1.32,17.8,0,0,96.2,100.0,0,0
2144
+ 75,2.34,14.7,0,1,79.7,762.0,0,0
2145
+ 77,0.32,10.3,0,1,68.1,731.0,0,0
2146
+ 23,2.02,5.0,0,0,82.2,585.0,0,0
2147
+ 23,1.61,12.2,1,1,69.1,1282.0,0,0
2148
+ 39,1.41,10.5,1,1,70.7,1456.0,0,0
2149
+ 29,1.6,19.4,1,0,62.3,2207.0,0,0
2150
+ 43,0.34,23.3,1,0,90.9,1333.0,0,0
2151
+ 45,0.3,8.4,0,0,5.9,283.0,1,1
2152
+ 56,2.74,22.5,0,1,16.7,926.0,1,0
2153
+ 73,1.05,6.5,0,0,95.7,1605.0,0,0
2154
+ 40,1.04,16.5,0,1,65.1,1259.0,0,0
2155
+ 57,0.3,10.8,0,0,92.9,1728.0,0,0
2156
+ 65,0.3,27.0,1,0,54.8,1043.0,1,0
2157
+ 23,1.12,19.4,1,0,111.9,1876.0,0,0
2158
+ 79,0.89,16.7,0,0,66.6,1423.0,0,0
2159
+ 76,1.2,10.5,1,0,81.2,1436.0,0,0
2160
+ 64,1.28,14.1,0,0,58.8,1375.0,1,0
2161
+ 39,3.44,39.9,1,1,47.6,917.0,1,0
2162
+ 36,0.9,12.0,1,0,26.5,1271.0,1,0
2163
+ 90,2.62,23.8,0,1,89.6,1447.0,1,0
2164
+ 23,2.68,16.6,0,1,79.9,600.0,1,0
2165
+ 33,1.88,23.4,1,1,72.3,1340.0,0,0
2166
+ 22,0.99,28.0,1,1,41.5,1907.0,1,0
2167
+ 77,0.3,13.8,1,1,105.4,1517.0,0,0
2168
+ 74,1.63,26.5,1,0,72.6,1984.0,0,0
2169
+ 23,2.12,51.1,1,1,87.6,1504.0,1,0
2170
+ 43,2.77,24.8,0,1,69.9,851.0,1,0
2171
+ 53,0.35,37.4,0,1,42.8,1695.0,1,0
2172
+ 49,0.98,23.8,0,1,94.8,729.0,0,0
2173
+ 38,0.35,6.8,0,1,81.3,1196.0,0,0
2174
+ 50,0.63,21.3,0,0,65.5,1162.0,0,0
2175
+ 79,1.8,14.0,1,1,80.8,961.0,0,0
2176
+ 79,0.59,10.8,0,0,90.4,2489.0,0,0
2177
+ 38,0.46,17.1,0,0,86.5,1264.0,0,0
2178
+ 68,1.92,16.1,1,1,27.2,2205.0,1,0
2179
+ 82,1.61,5.3,0,0,32.7,1472.0,1,0
2180
+ 41,1.52,50.5,0,0,88.3,890.0,1,0
2181
+ 43,0.61,27.7,1,1,52.6,1095.0,1,0
2182
+ 49,2.36,20.9,1,1,43.8,1281.0,1,0
2183
+ 77,1.21,19.1,0,1,79.3,1129.0,0,0
2184
+ 50,3.34,32.4,0,1,43.0,1163.0,1,0
2185
+ 83,1.35,42.9,1,1,58.0,1587.0,1,0
2186
+ 38,0.3,26.2,0,0,91.3,1483.0,0,0
2187
+ 67,0.3,19.5,0,1,32.1,1645.0,1,0
2188
+ 64,1.76,35.7,1,0,35.8,2063.0,1,0
2189
+ 74,2.37,19.7,0,0,29.7,1064.0,1,0
2190
+ 74,0.49,23.2,0,1,48.5,1857.0,1,0
2191
+ 37,3.09,30.0,0,1,72.1,1997.0,1,0
2192
+ 82,2.7,13.4,1,0,54.5,1947.0,1,0
2193
+ 66,1.39,5.0,1,0,107.6,420.0,0,0
2194
+ 76,1.69,12.8,0,1,81.4,2199.0,0,0
2195
+ 64,2.01,27.3,0,1,69.5,982.0,0,0
2196
+ 52,2.9,26.4,0,1,101.7,380.0,1,0
2197
+ 36,1.81,34.1,0,0,36.7,2187.0,1,0
2198
+ 89,1.37,13.2,0,1,91.7,1557.0,0,0
2199
+ 23,1.81,37.0,1,0,64.1,1577.0,1,0
2200
+ 39,1.68,20.2,0,0,58.6,1134.0,1,0
2201
+ 66,2.03,25.3,0,1,85.3,1391.0,0,0
2202
+ 34,0.3,28.8,0,1,59.7,1230.0,1,0
2203
+ 89,1.48,5.0,0,0,74.5,988.0,0,0
2204
+ 66,1.61,5.9,0,0,67.5,1311.0,0,0
2205
+ 28,1.13,5.5,0,1,77.7,1357.0,0,0
2206
+ 35,1.91,30.9,1,0,57.3,639.0,1,0
2207
+ 88,2.93,14.3,1,0,93.2,1328.0,1,0
2208
+ 80,1.32,42.3,0,0,18.9,406.0,1,0
2209
+ 29,1.82,18.0,0,0,86.0,2260.0,0,0
2210
+ 69,2.65,5.0,0,0,22.7,1249.0,1,0
2211
+ 22,1.35,9.9,0,1,51.2,764.0,1,0
2212
+ 89,0.4,19.4,1,1,83.1,1557.0,0,0
2213
+ 70,1.75,24.2,0,1,19.7,927.0,1,0
2214
+ 38,0.3,6.2,1,1,74.2,1285.0,0,0
2215
+ 61,0.3,24.8,1,1,35.7,1528.0,1,0
2216
+ 54,1.5,28.0,1,1,45.8,792.0,1,0
2217
+ 65,0.3,10.3,1,1,44.6,2275.0,1,0
2218
+ 45,0.3,41.6,0,0,36.4,2322.0,1,0
2219
+ 88,0.86,11.6,1,1,26.8,1037.0,1,0
2220
+ 83,0.55,6.0,1,0,120.0,738.0,0,0
2221
+ 56,1.07,5.0,1,1,65.4,1035.0,0,0
2222
+ 68,2.2,32.6,0,1,39.1,1062.0,1,0
2223
+ 40,1.41,18.3,1,1,55.9,1855.0,1,0
2224
+ 83,0.44,12.2,0,1,70.9,1044.0,0,0
2225
+ 24,2.42,5.0,1,0,60.5,719.0,0,0
2226
+ 89,0.3,13.3,0,0,38.3,1351.0,1,0
2227
+ 23,1.4,46.6,1,0,47.5,555.0,1,0
2228
+ 58,0.3,5.0,0,0,99.6,1834.0,0,0
2229
+ 54,1.43,10.4,0,0,34.9,1600.0,1,0
2230
+ 20,0.91,39.5,0,0,20.1,1000.0,1,0
2231
+ 43,2.17,33.0,0,0,60.3,1055.0,1,0
2232
+ 76,1.85,11.2,0,1,21.7,1424.0,1,0
2233
+ 89,0.67,20.4,0,0,47.3,748.0,1,0
2234
+ 60,0.5,23.6,1,0,38.7,906.0,1,0
2235
+ 73,0.92,19.6,1,0,38.9,1187.0,1,0
2236
+ 65,2.89,39.4,1,1,71.7,641.0,1,0
2237
+ 79,2.66,22.1,0,0,76.4,1073.0,1,0
2238
+ 79,0.33,31.6,0,1,49.9,763.0,1,0
2239
+ 76,1.92,20.2,0,0,67.6,2013.0,0,0
2240
+ 50,0.3,5.0,1,1,48.6,1098.0,1,0
2241
+ 43,0.8,5.0,1,1,80.0,827.0,0,0
2242
+ 55,0.37,6.2,0,0,33.1,1637.0,1,0
2243
+ 49,2.16,15.0,0,0,74.1,986.0,0,0
2244
+ 43,0.3,42.9,1,0,76.0,749.0,1,0
2245
+ 49,1.59,22.3,1,1,120.0,1744.0,0,0
2246
+ 26,1.2,16.7,1,0,26.1,1138.0,1,0
2247
+ 54,1.04,32.9,1,1,120.0,1721.0,1,0
2248
+ 74,2.7,5.0,0,1,88.9,1292.0,1,0
2249
+ 33,2.78,12.1,0,1,115.7,1365.0,1,0
2250
+ 29,1.07,10.4,0,0,92.6,1582.0,0,0
2251
+ 35,0.89,22.8,0,0,46.4,983.0,1,0
2252
+ 73,0.3,28.8,0,1,86.4,895.0,0,0
2253
+ 89,1.2,23.7,0,1,53.4,1901.0,1,0
2254
+ 63,2.96,23.8,0,1,67.8,1589.0,1,0
2255
+ 64,1.08,13.7,0,1,40.6,1266.0,1,0
2256
+ 75,1.86,21.8,0,1,53.0,1698.0,1,0
2257
+ 76,0.3,7.9,0,1,92.4,1570.0,0,0
2258
+ 40,0.81,26.1,0,1,80.9,1772.0,0,0
2259
+ 87,1.62,12.0,1,0,95.6,729.0,0,0
2260
+ 69,1.3,5.0,1,1,35.1,1268.0,1,0
2261
+ 52,1.94,18.5,0,0,23.2,1865.0,1,0
2262
+ 26,0.66,5.0,0,0,97.5,2139.0,0,0
2263
+ 89,0.3,35.7,0,1,95.7,1032.0,1,0
2264
+ 34,2.21,27.6,1,0,75.3,1380.0,0,0
2265
+ 51,0.36,22.0,0,0,80.5,1310.0,0,0
2266
+ 39,1.66,5.0,0,0,91.6,678.0,0,0
2267
+ 34,1.61,9.6,1,1,74.5,1156.0,0,0
2268
+ 67,0.3,18.5,0,1,83.4,511.0,0,0
2269
+ 90,2.14,14.8,0,1,90.4,1216.0,0,0
2270
+ 40,0.69,5.0,0,0,67.7,781.0,0,0
2271
+ 61,1.25,5.0,0,0,61.4,1385.0,0,0
2272
+ 45,0.88,14.6,0,0,79.6,1145.0,0,0
2273
+ 33,2.66,5.0,1,0,120.0,1137.0,1,0
2274
+ 76,2.41,34.5,0,1,48.8,2077.0,1,0
2275
+ 56,0.3,23.9,1,0,59.2,1335.0,1,0
2276
+ 77,3.23,8.4,0,0,26.1,2239.0,1,0
2277
+ 40,0.59,32.0,0,0,80.9,1523.0,1,0
2278
+ 88,3.09,29.6,0,0,56.8,1708.0,1,0
2279
+ 22,0.97,21.5,0,0,35.0,865.0,1,0
2280
+ 56,0.89,17.5,0,1,68.4,953.0,0,0
2281
+ 68,0.98,14.4,0,1,107.4,1309.0,0,0
2282
+ 38,0.84,11.5,1,1,61.2,1907.0,0,0
2283
+ 31,3.47,5.0,0,1,63.5,1119.0,1,0
2284
+ 80,1.13,36.3,0,0,106.4,584.0,1,0
2285
+ 60,0.93,11.8,0,1,69.9,1499.0,0,0
2286
+ 52,1.27,18.3,0,1,39.8,1332.0,1,0
2287
+ 69,0.33,7.1,0,0,87.2,1024.0,0,0
2288
+ 87,2.64,14.9,0,1,98.1,1113.0,1,0
2289
+ 90,0.3,52.2,0,1,65.0,864.0,1,0
2290
+ 52,0.65,9.3,0,0,73.3,1762.0,0,0
2291
+ 43,2.04,35.4,1,1,37.2,1312.0,1,0
2292
+ 80,1.24,17.7,0,1,48.2,1420.0,1,0
2293
+ 80,1.69,26.2,0,1,61.7,1002.0,0,0
2294
+ 47,2.58,32.9,1,1,71.9,1968.0,1,0
2295
+ 77,2.1,21.3,1,0,54.5,1410.0,1,0
2296
+ 62,1.32,13.8,1,0,60.7,229.0,0,0
2297
+ 60,3.08,15.8,0,1,66.9,1530.0,1,0
2298
+ 58,0.63,16.2,1,1,45.0,1168.0,1,0
2299
+ 68,1.11,40.4,0,1,63.3,1218.0,1,0
2300
+ 36,1.17,5.0,0,0,98.9,1797.0,0,0
2301
+ 89,1.11,5.0,1,0,55.1,1344.0,1,0
2302
+ 89,0.3,5.0,0,0,47.5,2156.0,1,0
2303
+ 84,0.3,7.3,1,0,120.0,1353.0,0,0
2304
+ 24,1.58,26.4,1,0,75.6,1067.0,0,0
2305
+ 21,0.63,27.1,1,0,50.7,393.0,1,0