Maharani commited on
Commit
a348318
1 Parent(s): 248cdb4

Upload 5 files

Browse files
Files changed (5) hide show
  1. kidney_app.py +102 -0
  2. kidney_clf.pkl +3 -0
  3. kidney_model.ipynb +261 -0
  4. new_model.csv +401 -0
  5. requirements.txt +6 -0
kidney_app.py ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+ import pickle
5
+ import base64
6
+ import seaborn as sns
7
+ import matplotlib.pyplot as plt
8
+
9
+ st.write("""
10
+ # Chronic Kidney Disease
11
+
12
+ #Context
13
+ This dataset is originally from UCI Machine Learning Repository. The objective of the dataset is to diagnostically predict whether a patient is having chronic kidney disease or not, based on certain diagnostic measurements included in the dataset.
14
+
15
+ #Content
16
+ The datasets consists of several medical predictor variables and one target variable, Class. Predictor variables includes Blood Pressure(Bp), Albumin(Al), etc.
17
+
18
+ #Inspiration
19
+ Can you build a machine learning model to accurately predict whether or not the patients in the dataset have chronic kidney disease or not?
20
+ """)
21
+
22
+ url_dataset = f'<a href="new_model.csv">Download Dataset CSV File</a>'
23
+ st.markdown(url_dataset, unsafe_allow_html=True)
24
+
25
+ def user_input_features() :
26
+ Bp = st.sidebar.slider('Bp', 50.000, 180.000)
27
+ Sg = st.sidebar.slider('Sg', 1.005, 1.025)
28
+ Al = st.sidebar.slider('Al', 0.000, 5.000)
29
+ Su = st.sidebar.slider('Su', 0.000, 5.000)
30
+ Rbc = st.sidebar.slider('Rbc', 0.000, 1.000)
31
+ Bu = st.sidebar.slider('Bu', 1.500, 391.000)
32
+ Sc = st.sidebar.slider('Sc', 0.400, 76.000)
33
+ Sod = st.sidebar.slider('Sod', 4.500, 163.000)
34
+ Pot = st.sidebar.slider('Pot', 2.500, 47.000)
35
+ Hemo = st.sidebar.slider('Hemo', 3.100, 17.800)
36
+ Wbcc = st.sidebar.slider('Wbcc', 2200.000, 26400.000)
37
+ Rbcc = st.sidebar.slider('Rbcc', 2.100, 8.000)
38
+ Htn = st.sidebar.slider('Htn', 0.000, 1.000)
39
+ Class = st.sidebar.slider('Class', 0.000, 1.000)
40
+
41
+
42
+
43
+ data = {'Bp':[Bp],
44
+ 'Sg':[Sg],
45
+ 'Al':[Al],
46
+ 'Su':[Su],
47
+ 'Rbc':[Rbc],
48
+ 'Bu':[Bu],
49
+ 'Sc':[Sc],
50
+ 'Sod':[Sod],
51
+ 'Pot':[Pot],
52
+ 'Hemo':[Hemo],
53
+ 'Wbcc':[Wbcc],
54
+ 'Rbcc':[Rbcc],
55
+ 'Htn':[Htn],
56
+ 'Class':[Class]
57
+ }
58
+
59
+ features = pd.DataFrame(data)
60
+ return features
61
+
62
+ input_df = user_input_features()
63
+
64
+
65
+ kidney_raw = pd.read_csv('new_model.csv')
66
+ kidney_raw.fillna(0, inplace=True)
67
+ kidney = kidney_raw.drop(columns=['Class'])
68
+ df = pd.concat([input_df, kidney], axis=0)
69
+
70
+ df = df[:1] # Selects only the first row (the user input data)
71
+ df.fillna(0, inplace=True)
72
+
73
+ features = ['Bp', 'Sg', 'Al',
74
+ 'Su',
75
+ 'Rbc',
76
+ 'Bu',
77
+ 'Sc',
78
+ 'Sod',
79
+ 'Pot',
80
+ 'Hemo',
81
+ 'Wbcc',
82
+ 'Rbcc',
83
+ 'Htn'
84
+ ]
85
+
86
+ df = df[features]
87
+
88
+
89
+ st.subheader('User Input features')
90
+ st.write(df)
91
+
92
+ load_clf = pickle.load(open('kidney_clf.pkl', 'rb'))
93
+ prediction = load_clf.predict(df)
94
+ prediction_proba = load_clf.predict_proba(df)
95
+ kidney_labels = np.array(['Normal', 'Chronic Kidney'])
96
+ st.subheader('Prediction')
97
+ st.write(kidney_labels[int(prediction)])
98
+ st.subheader('Prediction Probability')
99
+ df_prob = pd.DataFrame(data = prediction_proba,
100
+ index = ['Probability'],
101
+ columns = kidney_labels)
102
+ st.write(df_prob)
kidney_clf.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2da06293dd49baae23891f0444698d210d36bda33d332365f233d8343cf248e
3
+ size 254665
kidney_model.ipynb ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "a0c8ad0b",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Dataset\n",
9
+ "https://www.kaggle.com/datasets/abhia1999/chronic-kidney-disease"
10
+ ]
11
+ },
12
+ {
13
+ "cell_type": "code",
14
+ "execution_count": 1,
15
+ "id": "61347359",
16
+ "metadata": {},
17
+ "outputs": [],
18
+ "source": [
19
+ "import pandas as pd \n",
20
+ "from sklearn.ensemble import RandomForestClassifier\n",
21
+ "import pickle"
22
+ ]
23
+ },
24
+ {
25
+ "cell_type": "code",
26
+ "execution_count": 2,
27
+ "id": "b470f34b",
28
+ "metadata": {},
29
+ "outputs": [
30
+ {
31
+ "name": "stdout",
32
+ "output_type": "stream",
33
+ "text": [
34
+ " Bp Sg Al Su Rbc Bu Sc Sod Pot Hemo Wbcc Rbcc \\\n",
35
+ "0 80.0 1.020 1.0 0.0 1.0 36.0 1.2 137.53 4.63 15.4 7800.0 5.20 \n",
36
+ "1 50.0 1.020 4.0 0.0 1.0 18.0 0.8 137.53 4.63 11.3 6000.0 4.71 \n",
37
+ "2 80.0 1.010 2.0 3.0 1.0 53.0 1.8 137.53 4.63 9.6 7500.0 4.71 \n",
38
+ "3 70.0 1.005 4.0 0.0 1.0 56.0 3.8 111.00 2.50 11.2 6700.0 3.90 \n",
39
+ "4 80.0 1.010 2.0 0.0 1.0 26.0 1.4 137.53 4.63 11.6 7300.0 4.60 \n",
40
+ "\n",
41
+ " Htn Class \n",
42
+ "0 1.0 1 \n",
43
+ "1 0.0 1 \n",
44
+ "2 0.0 1 \n",
45
+ "3 1.0 1 \n",
46
+ "4 0.0 1 \n"
47
+ ]
48
+ }
49
+ ],
50
+ "source": [
51
+ "pd.set_option('display.max_columns', None)\n",
52
+ "pd.set_option('display.max_rows', None)\n",
53
+ "df_kidney = pd.read_csv('new_model.csv')\n",
54
+ "print(df_kidney.head())"
55
+ ]
56
+ },
57
+ {
58
+ "cell_type": "code",
59
+ "execution_count": 3,
60
+ "id": "412d6119",
61
+ "metadata": {},
62
+ "outputs": [
63
+ {
64
+ "data": {
65
+ "text/plain": [
66
+ "Index(['Bp', 'Sg', 'Al', 'Su', 'Rbc', 'Bu', 'Sc', 'Sod', 'Pot', 'Hemo', 'Wbcc',\n",
67
+ " 'Rbcc', 'Htn', 'Class'],\n",
68
+ " dtype='object')"
69
+ ]
70
+ },
71
+ "execution_count": 3,
72
+ "metadata": {},
73
+ "output_type": "execute_result"
74
+ }
75
+ ],
76
+ "source": [
77
+ "df_kidney.columns"
78
+ ]
79
+ },
80
+ {
81
+ "cell_type": "code",
82
+ "execution_count": 4,
83
+ "id": "46cacac6",
84
+ "metadata": {},
85
+ "outputs": [
86
+ {
87
+ "data": {
88
+ "text/plain": [
89
+ "Bp 50.000\n",
90
+ "Sg 1.005\n",
91
+ "Al 0.000\n",
92
+ "Su 0.000\n",
93
+ "Rbc 0.000\n",
94
+ "Bu 1.500\n",
95
+ "Sc 0.400\n",
96
+ "Sod 4.500\n",
97
+ "Pot 2.500\n",
98
+ "Hemo 3.100\n",
99
+ "Wbcc 2200.000\n",
100
+ "Rbcc 2.100\n",
101
+ "Htn 0.000\n",
102
+ "Class 0.000\n",
103
+ "dtype: float64"
104
+ ]
105
+ },
106
+ "execution_count": 4,
107
+ "metadata": {},
108
+ "output_type": "execute_result"
109
+ }
110
+ ],
111
+ "source": [
112
+ "df_kidney.min()"
113
+ ]
114
+ },
115
+ {
116
+ "cell_type": "code",
117
+ "execution_count": 5,
118
+ "id": "a4ac47e3",
119
+ "metadata": {},
120
+ "outputs": [
121
+ {
122
+ "data": {
123
+ "text/plain": [
124
+ "Bp 180.000\n",
125
+ "Sg 1.025\n",
126
+ "Al 5.000\n",
127
+ "Su 5.000\n",
128
+ "Rbc 1.000\n",
129
+ "Bu 391.000\n",
130
+ "Sc 76.000\n",
131
+ "Sod 163.000\n",
132
+ "Pot 47.000\n",
133
+ "Hemo 17.800\n",
134
+ "Wbcc 26400.000\n",
135
+ "Rbcc 8.000\n",
136
+ "Htn 1.000\n",
137
+ "Class 1.000\n",
138
+ "dtype: float64"
139
+ ]
140
+ },
141
+ "execution_count": 5,
142
+ "metadata": {},
143
+ "output_type": "execute_result"
144
+ }
145
+ ],
146
+ "source": [
147
+ "df_kidney.max()"
148
+ ]
149
+ },
150
+ {
151
+ "cell_type": "code",
152
+ "execution_count": 6,
153
+ "id": "7c835179",
154
+ "metadata": {},
155
+ "outputs": [
156
+ {
157
+ "name": "stdout",
158
+ "output_type": "stream",
159
+ "text": [
160
+ "<class 'pandas.core.frame.DataFrame'>\n",
161
+ "RangeIndex: 400 entries, 0 to 399\n",
162
+ "Data columns (total 14 columns):\n",
163
+ " # Column Non-Null Count Dtype \n",
164
+ "--- ------ -------------- ----- \n",
165
+ " 0 Bp 400 non-null float64\n",
166
+ " 1 Sg 400 non-null float64\n",
167
+ " 2 Al 400 non-null float64\n",
168
+ " 3 Su 400 non-null float64\n",
169
+ " 4 Rbc 400 non-null float64\n",
170
+ " 5 Bu 400 non-null float64\n",
171
+ " 6 Sc 400 non-null float64\n",
172
+ " 7 Sod 400 non-null float64\n",
173
+ " 8 Pot 400 non-null float64\n",
174
+ " 9 Hemo 400 non-null float64\n",
175
+ " 10 Wbcc 400 non-null float64\n",
176
+ " 11 Rbcc 400 non-null float64\n",
177
+ " 12 Htn 400 non-null float64\n",
178
+ " 13 Class 400 non-null int64 \n",
179
+ "dtypes: float64(13), int64(1)\n",
180
+ "memory usage: 43.9 KB\n"
181
+ ]
182
+ }
183
+ ],
184
+ "source": [
185
+ "df_kidney.info()"
186
+ ]
187
+ },
188
+ {
189
+ "cell_type": "code",
190
+ "execution_count": 7,
191
+ "id": "c5784db2",
192
+ "metadata": {},
193
+ "outputs": [],
194
+ "source": [
195
+ "X = df_kidney.drop('Class', axis=1)\n",
196
+ "Y = df_kidney['Class']"
197
+ ]
198
+ },
199
+ {
200
+ "cell_type": "code",
201
+ "execution_count": 8,
202
+ "id": "b0c5426f",
203
+ "metadata": {},
204
+ "outputs": [
205
+ {
206
+ "data": {
207
+ "text/plain": [
208
+ "RandomForestClassifier()"
209
+ ]
210
+ },
211
+ "execution_count": 8,
212
+ "metadata": {},
213
+ "output_type": "execute_result"
214
+ }
215
+ ],
216
+ "source": [
217
+ "clf = RandomForestClassifier()\n",
218
+ "clf.fit(X, Y)"
219
+ ]
220
+ },
221
+ {
222
+ "cell_type": "code",
223
+ "execution_count": 10,
224
+ "id": "db98ab11",
225
+ "metadata": {},
226
+ "outputs": [],
227
+ "source": [
228
+ "pickle.dump(clf, open('kidney_clf.pkl', 'wb'))"
229
+ ]
230
+ },
231
+ {
232
+ "cell_type": "code",
233
+ "execution_count": null,
234
+ "id": "3bbd5901",
235
+ "metadata": {},
236
+ "outputs": [],
237
+ "source": []
238
+ }
239
+ ],
240
+ "metadata": {
241
+ "kernelspec": {
242
+ "display_name": "Python 3 (ipykernel)",
243
+ "language": "python",
244
+ "name": "python3"
245
+ },
246
+ "language_info": {
247
+ "codemirror_mode": {
248
+ "name": "ipython",
249
+ "version": 3
250
+ },
251
+ "file_extension": ".py",
252
+ "mimetype": "text/x-python",
253
+ "name": "python",
254
+ "nbconvert_exporter": "python",
255
+ "pygments_lexer": "ipython3",
256
+ "version": "3.9.12"
257
+ }
258
+ },
259
+ "nbformat": 4,
260
+ "nbformat_minor": 5
261
+ }
new_model.csv ADDED
@@ -0,0 +1,401 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Bp,Sg,Al,Su,Rbc,Bu,Sc,Sod,Pot,Hemo,Wbcc,Rbcc,Htn,Class
2
+ 80.0,1.02,1.0,0.0,1.0,36.0,1.2,137.53,4.63,15.4,7800.0,5.2,1.0,1
3
+ 50.0,1.02,4.0,0.0,1.0,18.0,0.8,137.53,4.63,11.3,6000.0,4.71,0.0,1
4
+ 80.0,1.01,2.0,3.0,1.0,53.0,1.8,137.53,4.63,9.6,7500.0,4.71,0.0,1
5
+ 70.0,1.005,4.0,0.0,1.0,56.0,3.8,111.0,2.5,11.2,6700.0,3.9,1.0,1
6
+ 80.0,1.01,2.0,0.0,1.0,26.0,1.4,137.53,4.63,11.6,7300.0,4.6,0.0,1
7
+ 90.0,1.015,3.0,0.0,1.0,25.0,1.1,142.0,3.2,12.2,7800.0,4.4,1.0,1
8
+ 70.0,1.01,0.0,0.0,1.0,54.0,24.0,104.0,4.0,12.4,8406.0,4.71,0.0,1
9
+ 76.0,1.015,2.0,4.0,1.0,31.0,1.1,137.53,4.63,12.4,6900.0,5.0,0.0,1
10
+ 100.0,1.015,3.0,0.0,1.0,60.0,1.9,137.53,4.63,10.8,9600.0,4.0,1.0,1
11
+ 90.0,1.02,2.0,0.0,0.0,107.0,7.2,114.0,3.7,9.5,12100.0,3.7,1.0,1
12
+ 60.0,1.01,2.0,4.0,1.0,55.0,4.0,137.53,4.63,9.4,8406.0,4.71,1.0,1
13
+ 70.0,1.01,3.0,0.0,0.0,60.0,2.7,131.0,4.2,10.8,4500.0,3.8,1.0,1
14
+ 70.0,1.015,3.0,1.0,1.0,72.0,2.1,138.0,5.8,9.7,12200.0,3.4,1.0,1
15
+ 70.0,1.02,1.0,0.0,1.0,86.0,4.6,135.0,3.4,9.8,8406.0,4.71,1.0,1
16
+ 80.0,1.01,3.0,2.0,1.0,90.0,4.1,130.0,6.4,5.6,11000.0,2.6,1.0,1
17
+ 80.0,1.015,3.0,0.0,1.0,162.0,9.6,141.0,4.9,7.6,3800.0,2.8,1.0,1
18
+ 70.0,1.015,2.0,0.0,1.0,46.0,2.2,138.0,4.1,12.6,8406.0,4.71,0.0,1
19
+ 80.0,1.02,1.0,0.0,1.0,87.0,5.2,139.0,3.7,12.1,8406.0,4.71,1.0,1
20
+ 100.0,1.025,0.0,3.0,1.0,27.0,1.3,135.0,4.3,12.7,11400.0,4.3,1.0,1
21
+ 60.0,1.015,1.0,0.0,1.0,31.0,1.6,137.53,4.63,10.3,5300.0,3.7,1.0,1
22
+ 80.0,1.015,2.0,0.0,0.0,148.0,3.9,135.0,5.2,7.7,9200.0,3.2,1.0,1
23
+ 90.0,1.02,1.0,0.0,1.0,180.0,76.0,4.5,4.63,10.9,6200.0,3.6,1.0,1
24
+ 80.0,1.025,4.0,0.0,1.0,163.0,7.7,136.0,3.8,9.8,6900.0,3.4,1.0,1
25
+ 70.0,1.01,0.0,0.0,1.0,57.0,3.07,137.53,4.63,12.53,8406.0,4.71,0.0,1
26
+ 100.0,1.015,4.0,0.0,1.0,50.0,1.4,129.0,4.0,11.1,8300.0,4.6,1.0,1
27
+ 60.0,1.025,0.0,0.0,1.0,75.0,1.9,141.0,5.2,9.9,8400.0,3.7,1.0,1
28
+ 80.0,1.015,0.0,0.0,1.0,45.0,2.4,140.0,3.4,11.6,10300.0,4.0,1.0,1
29
+ 70.0,1.01,3.0,4.0,1.0,87.0,2.7,130.0,4.0,12.5,9600.0,4.1,1.0,1
30
+ 70.0,1.02,1.0,3.0,1.0,31.0,1.4,137.53,4.63,12.53,8406.0,4.71,0.0,1
31
+ 70.0,1.005,1.0,0.0,0.0,28.0,1.4,137.53,4.63,12.9,8406.0,4.71,0.0,1
32
+ 70.0,1.02,1.0,0.0,1.0,155.0,7.3,132.0,4.9,12.53,8406.0,4.71,1.0,1
33
+ 90.0,1.015,3.0,0.0,1.0,33.0,1.5,141.0,4.6,10.1,7800.0,4.0,0.0,1
34
+ 90.0,1.01,1.0,1.0,1.0,39.0,1.5,133.0,4.9,11.3,9600.0,4.0,1.0,1
35
+ 100.0,1.02,2.0,0.0,0.0,55.0,2.5,137.53,4.63,10.1,8406.0,4.71,1.0,1
36
+ 70.0,1.01,1.0,0.0,1.0,153.0,5.2,137.53,4.63,12.53,8406.0,4.71,0.0,1
37
+ 90.0,1.02,2.0,1.0,0.0,39.0,2.0,137.53,4.63,12.0,9800.0,4.9,1.0,1
38
+ 70.0,1.015,1.0,0.0,1.0,29.0,1.8,133.0,3.9,10.3,8406.0,4.71,1.0,1
39
+ 80.0,1.02,1.0,0.0,1.0,65.0,3.4,141.0,4.7,9.7,6900.0,2.5,1.0,1
40
+ 80.0,1.02,3.0,0.0,0.0,103.0,4.1,132.0,5.9,12.5,8406.0,4.71,1.0,1
41
+ 80.0,1.01,2.0,2.0,1.0,70.0,3.4,136.0,4.2,13.0,9800.0,4.2,1.0,1
42
+ 90.0,1.01,2.0,0.0,1.0,80.0,2.1,137.53,4.63,11.1,9100.0,4.1,1.0,1
43
+ 70.0,1.01,0.0,0.0,1.0,20.0,0.7,137.53,4.63,12.53,8406.0,4.71,0.0,1
44
+ 100.0,1.01,0.0,0.0,1.0,29.0,1.0,139.0,4.2,9.7,9200.0,4.5,1.0,1
45
+ 80.0,1.01,1.0,0.0,0.0,202.0,10.8,134.0,3.4,7.9,7900.0,3.1,0.0,1
46
+ 80.0,1.01,3.0,0.0,0.0,77.0,6.3,134.0,4.8,9.7,8406.0,4.71,1.0,1
47
+ 80.0,1.02,3.0,0.0,1.0,89.0,5.9,130.0,4.9,9.3,8406.0,4.71,1.0,1
48
+ 70.0,1.015,0.0,0.0,1.0,24.0,1.2,142.0,4.2,12.4,6400.0,4.7,0.0,1
49
+ 80.0,1.01,3.0,0.0,1.0,17.0,0.8,137.53,4.63,15.0,8600.0,4.71,0.0,1
50
+ 70.0,1.005,0.0,0.0,1.0,32.0,0.9,125.0,4.0,10.0,18900.0,3.5,1.0,1
51
+ 70.0,1.01,2.0,0.0,1.0,72.0,3.0,137.53,4.63,9.7,21600.0,3.5,1.0,1
52
+ 60.0,1.02,1.0,0.0,1.0,114.0,3.25,142.0,4.3,8.6,11000.0,3.8,1.0,1
53
+ 100.0,1.015,3.0,0.0,1.0,66.0,1.6,136.0,4.4,10.3,8406.0,4.71,1.0,1
54
+ 90.0,1.015,0.0,0.0,1.0,38.0,2.2,137.53,4.63,10.9,4300.0,3.7,0.0,1
55
+ 80.0,1.015,0.0,5.0,1.0,24.0,1.0,137.53,4.63,13.6,8500.0,4.7,1.0,1
56
+ 80.0,1.01,2.0,2.0,1.0,57.0,3.4,136.0,4.2,13.0,9800.0,4.2,1.0,1
57
+ 80.0,1.005,3.0,0.0,0.0,57.0,3.07,137.53,4.63,9.5,8406.0,4.71,0.0,1
58
+ 70.0,1.015,3.0,4.0,1.0,164.0,9.7,131.0,4.4,10.2,11300.0,3.4,1.0,1
59
+ 90.0,1.02,1.0,0.0,1.0,155.0,7.3,132.0,4.9,12.53,8406.0,4.71,1.0,1
60
+ 80.0,1.02,2.0,0.0,0.0,142.0,4.6,138.0,5.8,10.5,7200.0,4.3,1.0,1
61
+ 100.0,1.02,1.0,0.0,1.0,96.0,6.4,137.53,4.63,6.6,8406.0,4.71,1.0,1
62
+ 90.0,1.02,1.0,0.0,1.0,66.0,3.2,138.0,6.6,12.53,8406.0,4.71,1.0,1
63
+ 80.0,1.01,1.0,3.0,1.0,391.0,32.0,163.0,39.0,12.53,8406.0,4.71,0.0,1
64
+ 60.0,1.02,3.0,0.0,1.0,15.0,0.6,138.0,4.0,11.0,7700.0,3.8,1.0,1
65
+ 70.0,1.015,1.0,0.0,0.0,111.0,6.1,131.0,3.7,7.5,8406.0,4.71,0.0,1
66
+ 80.0,1.01,0.0,0.0,1.0,57.0,3.07,137.53,4.63,9.8,8406.0,4.71,0.0,1
67
+ 90.0,1.01,1.0,0.0,1.0,20.0,1.1,137.53,4.63,15.0,8406.0,4.71,0.0,1
68
+ 70.0,1.02,2.0,0.0,0.0,55.0,1.6,131.0,4.8,12.53,8406.0,4.71,1.0,1
69
+ 80.0,1.02,3.0,0.0,1.0,57.0,3.07,137.53,4.63,12.53,8406.0,4.71,0.0,1
70
+ 70.0,1.01,2.0,0.0,1.0,73.0,3.3,137.53,4.63,10.9,8406.0,4.71,0.0,1
71
+ 70.0,1.015,0.0,4.0,1.0,20.0,1.1,137.53,4.63,15.6,6900.0,6.0,0.0,1
72
+ 80.0,1.015,0.0,4.0,1.0,19.0,0.7,137.0,4.4,15.2,8300.0,5.2,1.0,1
73
+ 60.0,1.01,1.0,0.0,1.0,92.0,3.3,141.0,4.0,9.8,14600.0,3.2,1.0,1
74
+ 90.0,1.01,3.0,3.0,1.0,35.0,1.3,137.53,4.63,10.3,8406.0,4.71,1.0,1
75
+ 100.0,1.015,2.0,0.0,0.0,107.0,6.7,132.0,4.4,4.8,6300.0,4.71,1.0,1
76
+ 90.0,1.015,2.0,0.0,0.0,107.0,6.7,131.0,4.8,9.1,6400.0,3.4,1.0,1
77
+ 76.0,1.015,1.0,0.0,1.0,16.0,0.7,138.0,3.2,8.1,8406.0,4.71,0.0,1
78
+ 80.0,1.005,4.0,0.0,0.0,139.0,8.5,132.0,5.5,10.3,6200.0,4.0,0.0,1
79
+ 70.0,1.01,1.0,0.0,1.0,48.0,3.2,137.0,5.0,11.9,7100.0,3.7,1.0,1
80
+ 80.0,1.02,1.0,0.0,1.0,85.0,3.2,141.0,3.5,10.1,8406.0,4.71,1.0,1
81
+ 80.0,1.01,1.0,0.0,1.0,55.0,1.8,137.53,4.63,13.5,11800.0,5.0,1.0,1
82
+ 80.0,1.01,0.0,0.0,1.0,98.0,2.8,133.0,5.0,10.8,9400.0,3.8,1.0,1
83
+ 90.0,1.02,1.0,0.0,1.0,45.0,2.4,128.0,4.4,8.3,5500.0,3.7,1.0,1
84
+ 70.0,1.02,1.0,0.0,1.0,77.0,1.9,140.0,3.9,12.53,8406.0,4.71,1.0,1
85
+ 70.0,1.015,1.0,0.0,1.0,19.0,1.0,134.0,3.6,12.53,8406.0,4.71,1.0,1
86
+ 70.0,1.01,3.0,0.0,1.0,186.0,15.0,135.0,7.6,7.1,3800.0,2.1,1.0,1
87
+ 70.0,1.015,2.0,0.0,1.0,46.0,1.5,137.53,4.63,9.9,8406.0,4.71,0.0,1
88
+ 80.0,1.02,1.0,0.0,1.0,37.0,1.9,137.53,4.63,12.53,8406.0,4.71,0.0,1
89
+ 100.0,1.005,1.0,0.0,1.0,47.0,2.9,137.53,4.63,11.1,5800.0,5.0,1.0,1
90
+ 110.0,1.01,4.0,0.0,1.0,52.0,2.2,137.53,4.63,12.53,13200.0,4.7,1.0,1
91
+ 70.0,1.02,0.0,0.0,1.0,32.0,1.4,139.0,4.7,12.53,8406.0,4.71,0.0,1
92
+ 100.0,1.01,2.0,2.0,1.0,35.0,3.2,143.0,3.5,13.0,9800.0,4.2,1.0,1
93
+ 70.0,1.015,4.0,1.0,0.0,26.0,1.7,136.0,3.8,16.1,12500.0,5.6,0.0,1
94
+ 70.0,1.01,3.0,0.0,1.0,82.0,3.6,133.0,4.4,10.4,5600.0,3.6,1.0,1
95
+ 100.0,1.01,3.0,2.0,0.0,90.0,5.6,140.0,2.9,9.2,7000.0,3.2,1.0,1
96
+ 70.0,1.01,0.0,0.0,1.0,66.0,1.6,137.0,4.5,11.6,11900.0,3.9,0.0,1
97
+ 90.0,1.015,1.0,0.0,1.0,25.0,1.1,131.0,3.7,12.53,8406.0,4.71,1.0,1
98
+ 80.0,1.01,1.0,1.0,1.0,32.0,2.7,137.53,4.63,11.2,8406.0,4.71,0.0,1
99
+ 60.0,1.015,1.0,0.0,1.0,51.0,2.2,132.0,3.8,10.0,9100.0,4.0,1.0,1
100
+ 140.0,1.02,1.0,0.0,1.0,106.0,6.5,135.0,4.3,6.2,5800.0,2.3,1.0,1
101
+ 180.0,1.02,0.0,4.0,1.0,24.0,1.2,139.0,3.9,11.2,10400.0,4.2,1.0,1
102
+ 70.0,1.015,4.0,0.0,0.0,22.0,0.9,133.0,3.8,12.53,8406.0,4.71,0.0,1
103
+ 90.0,1.015,2.0,0.0,1.0,80.0,4.4,139.0,5.7,11.3,10700.0,3.9,0.0,1
104
+ 60.0,1.01,0.0,0.0,1.0,32.0,2.1,141.0,4.2,13.9,7000.0,4.71,0.0,1
105
+ 70.0,1.015,2.0,0.0,1.0,217.0,10.2,137.53,4.63,10.2,12700.0,4.2,1.0,1
106
+ 90.0,1.02,1.0,0.0,1.0,88.0,2.0,137.53,4.63,12.53,8406.0,4.71,1.0,1
107
+ 80.0,1.015,0.0,0.0,1.0,32.0,11.5,139.0,4.0,14.1,6800.0,5.2,0.0,1
108
+ 90.0,1.02,1.0,0.0,1.0,118.0,6.1,127.0,4.4,6.0,6500.0,4.71,1.0,1
109
+ 100.0,1.015,1.0,4.0,1.0,53.0,2.8,139.0,4.5,11.2,13600.0,4.4,1.0,1
110
+ 80.0,1.015,0.0,0.0,1.0,15.0,1.0,141.0,4.2,11.8,10200.0,4.2,0.0,1
111
+ 70.0,1.02,1.0,0.0,1.0,50.1,1.9,137.53,4.63,11.7,8406.0,4.71,0.0,1
112
+ 90.0,1.015,0.0,0.0,1.0,19.0,2.0,142.0,3.8,11.7,11400.0,4.7,0.0,1
113
+ 80.0,1.01,3.0,3.0,1.0,71.0,4.4,128.0,5.4,10.0,9000.0,3.9,1.0,1
114
+ 60.0,1.015,3.0,0.0,0.0,34.0,1.2,137.53,4.63,10.8,8406.0,4.71,0.0,1
115
+ 90.0,1.015,0.0,2.0,1.0,57.0,3.07,137.53,4.63,12.53,9800.0,4.71,0.0,1
116
+ 60.0,1.015,3.0,0.0,0.0,51.0,1.8,137.53,4.63,12.1,10300.0,4.71,0.0,1
117
+ 80.0,1.01,0.0,0.0,1.0,28.0,0.9,137.53,4.63,12.4,5600.0,4.3,0.0,1
118
+ 70.0,1.015,4.0,0.0,0.0,16.0,0.5,137.53,4.63,12.53,8406.0,4.71,0.0,1
119
+ 70.0,1.02,0.0,0.0,1.0,36.0,1.3,139.0,3.7,12.5,9800.0,4.4,0.0,1
120
+ 70.0,1.01,3.0,0.0,1.0,25.0,1.2,137.53,4.63,11.4,8406.0,4.71,0.0,1
121
+ 70.0,1.01,0.0,0.0,1.0,27.0,1.2,137.53,4.63,12.53,8406.0,4.71,0.0,1
122
+ 90.0,1.025,1.0,3.0,1.0,40.0,2.2,137.0,5.3,12.6,8406.0,4.71,0.0,1
123
+ 60.0,1.02,3.0,0.0,1.0,21.0,1.3,137.0,3.4,15.0,8406.0,4.71,1.0,1
124
+ 70.0,1.02,1.0,0.0,1.0,219.0,12.2,130.0,3.8,6.0,8406.0,4.71,1.0,1
125
+ 80.0,1.015,2.0,3.0,1.0,30.0,1.1,137.53,4.63,14.0,14900.0,4.71,0.0,1
126
+ 100.0,1.015,0.0,0.0,1.0,98.0,2.5,137.53,4.63,9.1,5500.0,3.6,1.0,1
127
+ 90.0,1.02,1.0,0.0,1.0,36.0,2.5,131.0,4.3,12.53,8406.0,4.71,1.0,1
128
+ 90.0,1.015,0.0,0.0,1.0,125.0,4.0,136.0,4.6,12.0,8200.0,4.5,1.0,1
129
+ 60.0,1.015,4.0,0.0,1.0,125.0,5.3,136.0,4.9,11.4,15200.0,4.3,1.0,1
130
+ 90.0,1.015,4.0,3.0,1.0,166.0,5.6,133.0,47.0,8.1,5000.0,2.9,1.0,1
131
+ 70.0,1.025,1.0,0.0,1.0,49.0,1.4,135.0,4.7,11.1,8406.0,4.71,1.0,1
132
+ 90.0,1.01,2.0,0.0,1.0,208.0,9.2,134.0,4.8,8.2,16300.0,2.7,0.0,1
133
+ 50.0,1.01,0.0,0.0,1.0,25.0,0.6,137.53,4.63,11.8,12400.0,4.71,0.0,1
134
+ 76.0,1.02,1.0,0.0,1.0,176.0,13.8,136.0,4.5,8.6,13200.0,2.7,1.0,1
135
+ 100.0,1.015,4.0,0.0,1.0,125.0,5.3,136.0,4.9,12.0,8400.0,8.0,1.0,1
136
+ 100.0,1.01,1.0,0.0,1.0,57.0,16.9,138.0,5.2,10.8,10200.0,3.8,0.0,1
137
+ 80.0,1.015,0.0,2.0,1.0,24.0,1.3,140.0,4.0,13.2,8406.0,4.71,0.0,1
138
+ 90.0,1.02,1.0,0.0,1.0,68.0,2.8,146.0,6.3,9.3,8406.0,4.71,1.0,1
139
+ 60.0,1.01,2.0,0.0,1.0,86.0,4.0,134.0,5.1,10.0,9200.0,4.71,1.0,1
140
+ 76.0,1.01,1.0,0.0,1.0,51.0,1.6,142.0,3.5,12.53,8406.0,4.71,0.0,1
141
+ 70.0,1.015,2.0,0.0,1.0,68.0,2.8,132.0,4.1,11.1,8406.0,4.71,1.0,1
142
+ 70.0,1.01,0.0,4.0,1.0,40.0,1.2,142.0,5.6,12.53,8406.0,4.71,0.0,1
143
+ 70.0,1.01,1.0,0.0,1.0,106.0,6.0,137.0,4.9,6.1,6500.0,4.71,1.0,1
144
+ 90.0,1.02,1.0,0.0,1.0,145.0,7.1,135.0,5.3,12.53,8406.0,4.71,0.0,1
145
+ 80.0,1.015,1.0,4.0,0.0,165.0,18.0,135.0,4.7,12.53,8406.0,4.71,0.0,1
146
+ 90.0,1.01,2.0,0.0,0.0,53.0,2.3,136.0,5.2,11.1,10500.0,4.1,0.0,1
147
+ 90.0,1.015,5.0,0.0,0.0,322.0,13.0,126.0,4.8,8.0,4200.0,3.3,1.0,1
148
+ 100.0,1.01,1.0,3.0,0.0,23.0,1.0,139.0,4.0,12.53,8406.0,4.71,0.0,1
149
+ 60.0,1.01,3.0,1.0,1.0,36.0,1.7,130.0,3.0,7.9,15200.0,3.0,1.0,1
150
+ 60.0,1.02,1.0,0.0,1.0,26.0,48.1,137.53,4.63,12.53,8406.0,4.71,1.0,1
151
+ 70.0,1.02,1.0,0.0,0.0,29.0,1.0,137.53,4.63,10.5,8406.0,4.71,1.0,1
152
+ 60.0,1.025,3.0,0.0,1.0,27.0,0.9,137.53,4.63,12.3,6700.0,4.71,0.0,1
153
+ 90.0,1.02,1.0,0.0,1.0,46.0,1.7,141.0,5.5,9.6,8406.0,4.71,1.0,1
154
+ 70.0,1.01,0.0,0.0,1.0,20.0,0.8,133.0,3.5,10.9,8406.0,4.71,0.0,1
155
+ 90.0,1.01,2.0,1.0,0.0,235.0,14.2,132.0,3.4,8.3,14600.0,2.9,1.0,1
156
+ 90.0,1.005,4.0,3.0,0.0,132.0,16.4,140.0,4.2,8.4,8406.0,3.0,1.0,1
157
+ 70.0,1.02,3.0,0.0,0.0,40.0,1.8,137.53,4.63,11.1,4700.0,4.71,0.0,1
158
+ 90.0,1.015,2.0,0.0,1.0,76.0,3.3,137.53,4.63,12.53,8406.0,4.71,0.0,1
159
+ 70.0,1.025,3.0,0.0,1.0,42.0,1.7,136.0,4.7,12.6,7900.0,3.9,1.0,1
160
+ 60.0,1.02,3.0,2.0,1.0,48.0,1.5,132.0,4.0,10.9,8406.0,4.71,1.0,1
161
+ 80.0,1.01,1.0,0.0,0.0,35.0,1.3,122.0,3.5,10.4,10900.0,4.3,0.0,1
162
+ 60.0,1.02,1.0,0.0,1.0,39.0,2.1,147.0,4.2,10.9,9400.0,2.4,1.0,1
163
+ 76.0,1.015,3.0,0.0,0.0,57.0,3.07,137.53,4.63,14.3,10200.0,4.8,1.0,1
164
+ 70.0,1.02,1.0,0.0,1.0,34.0,1.5,124.0,4.1,9.8,6000.0,4.71,0.0,1
165
+ 80.0,1.01,0.0,0.0,1.0,40.0,2.0,140.0,4.1,9.0,8100.0,3.2,1.0,1
166
+ 76.0,1.015,0.0,0.0,1.0,15.0,0.8,137.0,4.2,14.3,9500.0,5.4,0.0,1
167
+ 80.0,1.02,0.0,2.0,1.0,57.0,3.07,137.53,4.63,12.53,8406.0,4.71,0.0,1
168
+ 60.0,1.02,1.0,0.0,1.0,44.0,3.9,127.0,4.3,12.53,8406.0,4.71,0.0,1
169
+ 70.0,1.02,0.0,0.0,0.0,19.0,0.9,137.53,4.63,12.7,2200.0,4.71,0.0,1
170
+ 70.0,1.015,4.0,4.0,1.0,28.0,1.5,137.53,4.63,11.0,6700.0,4.71,1.0,1
171
+ 70.0,1.01,0.0,2.0,1.0,68.0,2.8,137.53,4.63,8.7,8406.0,4.71,1.0,1
172
+ 70.0,1.015,2.0,5.0,1.0,41.0,1.7,131.0,3.9,12.5,9600.0,4.4,1.0,1
173
+ 70.0,1.02,3.0,0.0,1.0,60.0,2.6,115.0,5.7,8.7,12800.0,3.1,1.0,1
174
+ 80.0,1.01,1.0,2.0,1.0,113.0,2.9,130.0,2.5,10.6,12800.0,4.9,0.0,1
175
+ 70.0,1.015,1.0,0.0,0.0,1.5,7.3,145.0,2.8,13.1,11200.0,4.71,0.0,1
176
+ 70.0,1.02,1.0,0.0,1.0,146.0,7.5,141.0,4.7,11.0,8600.0,4.6,0.0,1
177
+ 50.0,1.01,0.0,0.0,1.0,58.0,2.2,113.0,3.0,12.53,4200.0,3.4,1.0,1
178
+ 90.0,1.01,4.0,0.0,1.0,40.0,1.7,125.0,3.5,8.3,12400.0,3.9,0.0,1
179
+ 80.0,1.015,2.0,1.0,1.0,133.0,2.5,137.53,4.63,13.2,8406.0,4.71,0.0,1
180
+ 90.0,1.02,2.0,0.0,0.0,153.0,2.7,139.0,4.3,9.8,9800.0,4.71,0.0,1
181
+ 90.0,1.01,2.0,0.0,1.0,53.0,2.3,137.53,4.63,11.9,8406.0,4.71,0.0,1
182
+ 90.0,1.01,1.0,4.0,0.0,56.0,1.9,137.53,4.63,10.3,8406.0,4.71,0.0,1
183
+ 70.0,1.025,2.0,0.0,1.0,52.0,2.2,136.0,3.8,10.0,19100.0,3.7,0.0,1
184
+ 80.0,1.02,0.0,0.0,1.0,23.0,0.8,140.0,4.1,11.3,8406.0,4.71,0.0,1
185
+ 70.0,1.015,0.0,0.0,1.0,106.0,6.5,135.0,4.3,12.53,8406.0,4.71,0.0,1
186
+ 60.0,1.015,3.0,2.0,1.0,137.0,3.3,133.0,4.5,11.3,5800.0,3.6,1.0,1
187
+ 76.0,1.02,1.0,0.0,1.0,23.0,0.6,138.0,4.4,12.0,8406.0,4.71,0.0,1
188
+ 50.0,1.02,4.0,0.0,1.0,46.0,1.0,135.0,3.8,12.53,8406.0,4.71,0.0,1
189
+ 76.0,1.01,2.0,0.0,1.0,22.0,0.7,137.53,4.63,10.7,12300.0,4.71,0.0,1
190
+ 76.0,1.02,1.0,0.0,1.0,66.0,2.5,142.0,3.6,12.2,8406.0,4.71,0.0,1
191
+ 60.0,1.01,4.0,1.0,0.0,58.0,4.3,137.0,5.4,9.5,7500.0,3.4,1.0,1
192
+ 60.0,1.01,4.0,0.0,0.0,67.0,1.0,135.0,4.9,9.9,16700.0,4.8,0.0,1
193
+ 70.0,1.01,3.0,0.0,1.0,115.0,6.0,134.0,2.7,9.1,9200.0,3.4,1.0,1
194
+ 110.0,1.015,0.0,0.0,1.0,16.0,0.9,137.53,4.63,12.53,8406.0,4.71,0.0,1
195
+ 90.0,1.025,1.0,0.0,0.0,223.0,18.1,113.0,6.5,5.5,2600.0,2.8,1.0,1
196
+ 70.0,1.01,2.0,0.0,1.0,49.0,1.2,137.53,4.63,12.53,8406.0,4.71,1.0,1
197
+ 90.0,1.02,2.0,1.0,0.0,98.6,3.3,138.0,3.9,5.8,8406.0,4.71,1.0,1
198
+ 100.0,1.01,3.0,0.0,0.0,158.0,11.8,122.0,3.2,8.1,9600.0,3.5,1.0,1
199
+ 80.0,1.02,1.0,0.0,1.0,111.0,9.3,124.0,5.3,6.8,4300.0,3.0,1.0,1
200
+ 100.0,1.02,4.0,2.0,1.0,40.0,3.2,137.0,4.7,11.2,26400.0,3.9,1.0,1
201
+ 80.0,1.015,0.0,0.0,1.0,37.0,1.5,140.0,5.2,8.8,10700.0,3.2,1.0,1
202
+ 90.0,1.025,1.0,0.0,1.0,89.0,3.0,140.0,4.1,12.0,7900.0,3.9,1.0,1
203
+ 70.0,1.02,1.0,0.0,1.0,94.0,7.3,137.0,4.3,7.9,8406.0,4.71,1.0,1
204
+ 60.0,1.02,1.0,0.0,1.0,74.0,2.9,135.0,5.9,8.0,8406.0,4.71,0.0,1
205
+ 90.0,1.02,1.0,0.0,1.0,80.0,6.8,142.0,5.5,8.5,8406.0,4.71,1.0,1
206
+ 90.0,1.01,4.0,2.0,1.0,82.0,13.5,145.0,6.3,8.8,8406.0,4.71,1.0,1
207
+ 70.0,1.02,1.0,0.0,1.0,28.0,2.1,137.53,4.63,12.6,8406.0,4.71,1.0,1
208
+ 70.0,1.01,1.0,0.0,1.0,96.0,3.9,135.0,4.0,13.8,8406.0,4.71,1.0,1
209
+ 70.0,1.01,0.0,0.0,1.0,50.0,2.2,137.53,4.63,12.0,10400.0,4.6,1.0,1
210
+ 80.0,1.02,1.0,0.0,1.0,37.0,1.5,137.53,4.63,12.3,6900.0,4.9,1.0,1
211
+ 70.0,1.02,0.0,0.0,1.0,57.0,3.07,137.53,4.63,11.5,6900.0,4.71,0.0,1
212
+ 100.0,1.015,4.0,2.0,1.0,132.0,12.8,135.0,5.7,7.3,9800.0,3.9,1.0,1
213
+ 120.0,1.015,0.0,0.0,1.0,18.0,1.2,137.53,4.63,12.53,8406.0,4.71,0.0,1
214
+ 70.0,1.015,3.0,4.0,1.0,150.0,11.9,132.0,5.6,10.9,8800.0,3.4,1.0,1
215
+ 80.0,1.01,3.0,1.0,1.0,73.0,3.9,137.0,4.9,10.9,7400.0,3.7,1.0,1
216
+ 80.0,1.015,0.0,0.0,1.0,30.0,1.0,137.53,4.63,13.7,4900.0,5.2,0.0,1
217
+ 76.0,1.01,3.0,0.0,1.0,57.0,3.07,137.53,4.63,12.53,8406.0,4.71,0.0,1
218
+ 70.0,1.01,0.0,0.0,1.0,15.0,3.07,137.53,4.63,12.8,8406.0,4.71,0.0,1
219
+ 100.0,1.01,1.0,0.0,1.0,61.0,1.8,141.0,4.4,12.2,10500.0,4.3,0.0,1
220
+ 90.0,1.015,0.0,0.0,1.0,19.0,0.8,137.53,4.63,11.8,7000.0,4.71,0.0,1
221
+ 90.0,1.01,0.0,0.0,1.0,57.0,2.5,137.53,4.63,9.8,8000.0,3.3,1.0,1
222
+ 80.0,1.01,0.0,0.0,1.0,57.0,3.07,137.53,4.63,11.9,8800.0,4.71,0.0,1
223
+ 70.0,1.02,1.0,0.0,1.0,30.0,1.7,138.0,5.3,12.53,8406.0,4.71,1.0,1
224
+ 60.0,1.02,1.0,0.0,1.0,68.0,1.8,137.53,4.63,12.53,8406.0,4.71,1.0,1
225
+ 90.0,1.01,0.0,3.0,1.0,30.0,1.3,136.0,4.1,13.0,9200.0,4.6,1.0,1
226
+ 60.0,1.02,0.0,0.0,1.0,28.0,2.2,138.0,3.8,12.53,8406.0,4.71,0.0,1
227
+ 90.0,1.01,3.0,5.0,0.0,95.0,2.7,131.0,3.8,11.5,12000.0,4.5,1.0,1
228
+ 100.0,1.015,4.0,2.0,0.0,54.0,7.2,140.0,4.6,7.9,7500.0,3.4,1.0,1
229
+ 80.0,1.015,0.0,0.0,1.0,48.0,1.6,137.53,4.63,11.3,7200.0,3.8,1.0,1
230
+ 70.0,1.02,1.0,0.0,1.0,52.0,2.5,137.53,4.63,12.53,8406.0,4.71,1.0,1
231
+ 50.0,1.01,3.0,0.0,1.0,191.0,12.0,114.0,2.9,9.6,15700.0,3.8,0.0,1
232
+ 60.0,1.01,2.0,0.0,1.0,17.0,1.7,130.0,4.3,12.53,9500.0,4.71,1.0,1
233
+ 90.0,1.02,1.0,0.0,1.0,51.0,2.8,138.0,3.7,11.5,8406.0,4.71,1.0,1
234
+ 90.0,1.015,1.0,0.0,0.0,57.0,3.07,137.53,4.63,12.53,8406.0,4.71,0.0,1
235
+ 100.0,1.015,2.0,0.0,1.0,20.0,1.6,146.0,4.5,12.53,8406.0,4.71,0.0,1
236
+ 100.0,1.01,0.0,0.0,0.0,19.0,1.3,137.53,4.63,15.0,4100.0,5.2,1.0,1
237
+ 70.0,1.01,2.0,0.0,1.0,93.0,2.3,137.53,4.63,7.9,5700.0,4.71,0.0,1
238
+ 80.0,1.02,1.0,0.0,1.0,66.0,2.0,136.0,5.4,9.1,8406.0,4.71,1.0,1
239
+ 70.0,1.015,2.0,2.0,1.0,53.0,2.2,137.53,4.63,12.7,9600.0,4.71,1.0,1
240
+ 100.0,1.02,1.0,0.0,1.0,241.0,13.4,127.0,4.8,9.4,8406.0,4.71,1.0,1
241
+ 90.0,1.015,2.0,0.0,1.0,50.0,1.6,137.0,4.1,11.9,8406.0,4.71,0.0,1
242
+ 70.0,1.015,1.0,0.0,1.0,46.0,1.4,137.53,4.63,11.4,5000.0,4.1,1.0,1
243
+ 70.0,1.015,1.0,0.0,1.0,45.0,1.5,140.0,3.3,10.4,4200.0,3.9,0.0,1
244
+ 70.0,1.01,4.0,3.0,1.0,96.0,6.3,120.0,3.9,9.4,11500.0,3.3,1.0,1
245
+ 90.0,1.02,2.0,1.0,1.0,48.0,2.4,138.0,2.9,13.4,11000.0,6.1,1.0,1
246
+ 90.0,1.015,3.0,2.0,1.0,64.0,2.8,135.0,4.1,12.2,9800.0,4.6,1.0,1
247
+ 100.0,1.02,1.0,0.0,1.0,79.0,5.3,135.0,6.3,6.3,7200.0,2.6,1.0,1
248
+ 110.0,1.015,3.0,0.0,0.0,215.0,15.2,120.0,5.7,8.6,5000.0,2.5,1.0,1
249
+ 90.0,1.025,1.0,0.0,1.0,18.0,1.2,140.0,4.2,12.53,8406.0,4.71,0.0,1
250
+ 70.0,1.01,1.0,3.0,0.0,55.0,1.7,138.0,4.5,12.6,10200.0,4.1,1.0,1
251
+ 90.0,1.01,4.0,1.0,1.0,309.0,13.3,124.0,6.5,3.1,5400.0,2.1,1.0,1
252
+ 80.0,1.025,0.0,0.0,1.0,10.0,1.2,135.0,5.0,15.0,10400.0,4.5,0.0,0
253
+ 80.0,1.025,0.0,0.0,1.0,36.0,1.0,150.0,4.6,17.0,9800.0,5.0,0.0,0
254
+ 80.0,1.025,0.0,0.0,1.0,49.0,0.6,147.0,4.4,15.9,9100.0,4.7,0.0,0
255
+ 80.0,1.025,0.0,0.0,1.0,17.0,1.2,135.0,4.7,15.4,6200.0,6.2,0.0,0
256
+ 60.0,1.025,0.0,0.0,1.0,38.0,0.8,135.0,3.7,13.0,8300.0,5.2,0.0,0
257
+ 80.0,1.025,0.0,0.0,1.0,27.0,1.2,144.0,3.9,13.6,9200.0,6.3,0.0,0
258
+ 80.0,1.025,0.0,0.0,1.0,10.0,0.5,146.0,5.0,14.5,10700.0,5.1,0.0,0
259
+ 60.0,1.02,0.0,0.0,1.0,36.0,0.7,135.0,3.7,14.0,9100.0,5.8,0.0,0
260
+ 80.0,1.02,0.0,0.0,1.0,20.0,0.5,140.0,3.5,13.9,8400.0,5.5,0.0,0
261
+ 80.0,1.02,0.0,0.0,1.0,31.0,1.2,135.0,5.0,16.1,4300.0,5.2,0.0,0
262
+ 80.0,1.02,0.0,0.0,1.0,38.0,1.0,147.0,3.8,14.1,9400.0,5.3,0.0,0
263
+ 80.0,1.02,0.0,0.0,1.0,32.0,1.2,139.0,3.9,17.0,5600.0,4.9,0.0,0
264
+ 80.0,1.02,0.0,0.0,1.0,18.0,0.9,135.0,3.6,15.5,7200.0,5.4,0.0,0
265
+ 80.0,1.02,0.0,0.0,1.0,46.0,1.2,137.0,5.0,16.2,8600.0,5.2,0.0,0
266
+ 80.0,1.02,0.0,0.0,1.0,24.0,0.7,140.0,4.1,14.4,5000.0,4.5,0.0,0
267
+ 80.0,1.02,0.0,0.0,1.0,40.0,0.6,150.0,4.5,14.2,10500.0,5.0,0.0,0
268
+ 80.0,1.02,0.0,0.0,1.0,17.0,1.2,135.0,4.8,13.2,6800.0,5.3,0.0,0
269
+ 80.0,1.025,0.0,0.0,1.0,33.0,0.9,146.0,3.9,13.9,9500.0,4.8,0.0,0
270
+ 80.0,1.02,1.0,0.0,1.0,49.0,1.0,140.0,5.0,16.3,8500.0,4.9,0.0,0
271
+ 80.0,1.025,0.0,0.0,1.0,19.0,1.2,142.0,4.9,15.0,6900.0,5.3,0.0,0
272
+ 80.0,1.025,0.0,0.0,1.0,34.0,1.1,145.0,4.0,14.3,7200.0,5.0,0.0,0
273
+ 80.0,1.025,0.0,0.0,1.0,25.0,0.5,144.0,4.8,13.8,9000.0,4.5,0.0,0
274
+ 80.0,1.025,0.0,0.0,1.0,15.0,1.2,135.0,5.0,14.8,5600.0,5.5,0.0,0
275
+ 80.0,1.02,0.0,0.0,1.0,35.0,0.9,140.0,4.1,12.53,8406.0,4.71,0.0,0
276
+ 80.0,1.02,0.0,0.0,1.0,23.0,0.7,141.0,4.2,14.4,8406.0,4.71,0.0,0
277
+ 80.0,1.02,0.0,0.0,1.0,22.0,1.2,139.0,4.6,16.5,4700.0,4.6,0.0,0
278
+ 60.0,1.025,0.0,0.0,1.0,57.0,3.07,137.0,4.7,14.0,4500.0,5.5,0.0,0
279
+ 60.0,1.025,0.0,0.0,1.0,46.0,1.0,135.0,5.0,15.7,6300.0,4.8,0.0,0
280
+ 60.0,1.02,0.0,0.0,1.0,44.0,1.2,142.0,4.9,14.5,9400.0,6.4,0.0,0
281
+ 70.0,1.025,0.0,0.0,1.0,23.0,0.6,140.0,4.7,16.3,5800.0,5.6,0.0,0
282
+ 80.0,1.02,1.0,0.0,1.0,33.0,0.9,144.0,4.5,13.3,8100.0,5.2,0.0,0
283
+ 80.0,1.025,0.0,0.0,1.0,50.0,1.2,147.0,5.0,15.5,9100.0,6.0,0.0,0
284
+ 70.0,1.02,0.0,0.0,1.0,44.0,1.0,135.0,3.8,14.6,5500.0,4.8,0.0,0
285
+ 70.0,1.02,0.0,0.0,1.0,57.0,3.07,137.53,4.63,16.4,10800.0,5.7,0.0,0
286
+ 80.0,1.025,0.0,0.0,1.0,37.0,1.2,142.0,4.0,16.9,6700.0,6.0,0.0,0
287
+ 70.0,1.02,0.0,0.0,1.0,19.0,0.7,135.0,3.9,16.0,5300.0,5.9,0.0,0
288
+ 70.0,1.02,0.0,0.0,1.0,18.0,0.8,145.0,5.0,14.7,9800.0,6.0,0.0,0
289
+ 70.0,1.025,0.0,0.0,1.0,22.0,0.6,137.0,3.8,13.4,8406.0,4.71,0.0,0
290
+ 70.0,1.025,0.0,0.0,1.0,46.0,1.2,135.0,4.9,15.9,11000.0,5.1,0.37,0
291
+ 70.0,1.02,0.0,0.0,1.0,32.0,0.9,143.0,4.7,16.6,7100.0,5.3,0.0,0
292
+ 70.0,1.02,0.0,0.0,1.0,28.0,0.6,146.0,3.5,14.8,8400.0,5.9,0.0,0
293
+ 80.0,1.025,0.0,0.0,1.0,44.0,1.0,140.0,4.9,14.9,7000.0,5.7,0.0,0
294
+ 80.0,1.02,0.0,0.0,1.0,42.0,0.5,139.0,5.0,16.7,10200.0,5.0,0.0,0
295
+ 76.0,1.02,0.0,0.0,1.0,19.0,1.2,150.0,4.8,14.9,4700.0,5.4,0.0,0
296
+ 60.0,1.02,0.0,0.0,1.0,50.0,0.7,135.0,5.0,14.3,8300.0,5.8,0.0,0
297
+ 70.0,1.02,1.0,0.0,1.0,25.0,0.9,150.0,3.6,15.0,9600.0,6.5,0.0,0
298
+ 70.0,1.02,0.0,0.0,1.0,38.0,0.6,140.0,5.0,16.8,6300.0,5.9,0.0,0
299
+ 60.0,1.025,0.0,0.0,1.0,26.0,1.0,146.0,4.9,15.8,7700.0,5.2,0.37,0
300
+ 60.0,1.02,0.0,0.0,1.0,49.0,1.2,135.0,4.5,13.5,8600.0,4.9,0.0,0
301
+ 60.0,1.02,0.0,0.0,1.0,48.0,0.5,150.0,3.5,15.1,11000.0,4.7,0.0,0
302
+ 60.0,1.02,0.0,0.0,1.0,26.0,0.7,141.0,4.2,15.0,9200.0,5.8,0.0,0
303
+ 60.0,1.025,0.0,0.0,1.0,33.0,0.9,147.0,4.5,16.9,7200.0,5.0,0.0,0
304
+ 70.0,1.02,0.0,0.0,1.0,44.0,1.2,145.0,5.0,14.8,8406.0,4.71,0.0,0
305
+ 70.0,1.02,0.0,0.0,1.0,26.0,1.1,137.53,4.63,17.0,6700.0,6.1,0.0,0
306
+ 80.0,1.025,0.0,0.0,1.0,38.0,0.6,135.0,3.9,13.1,6200.0,4.5,0.0,0
307
+ 80.0,1.02,0.0,0.0,1.0,25.0,0.8,138.0,5.0,17.1,9100.0,5.2,0.0,0
308
+ 80.0,1.02,0.0,0.0,1.0,30.0,1.2,140.0,4.5,15.2,4300.0,5.7,0.0,0
309
+ 60.0,1.02,0.0,0.0,1.0,17.0,0.5,150.0,3.5,13.6,7900.0,4.5,0.0,0
310
+ 80.0,1.025,0.0,0.0,1.0,46.0,0.6,135.0,4.9,13.9,6900.0,4.9,0.0,0
311
+ 60.0,1.02,0.0,0.0,1.0,25.0,1.2,139.0,5.0,17.2,8100.0,5.9,0.0,0
312
+ 60.0,1.02,0.0,0.0,1.0,27.0,0.7,142.0,4.9,13.2,11000.0,5.4,0.0,0
313
+ 60.0,1.025,0.0,0.0,1.0,18.0,1.1,147.0,4.7,13.7,7500.0,5.6,0.0,0
314
+ 70.0,1.02,0.0,0.0,1.0,57.0,3.07,135.0,4.1,15.3,6300.0,6.1,0.0,0
315
+ 80.0,1.02,0.0,0.0,1.0,28.0,0.9,142.0,4.8,17.3,8200.0,4.8,0.0,0
316
+ 70.0,1.025,0.0,0.0,1.0,46.0,0.6,145.0,5.0,15.6,9400.0,4.7,0.0,0
317
+ 70.0,1.025,0.0,0.0,1.0,57.0,3.07,137.53,4.63,13.8,7800.0,4.4,0.0,0
318
+ 76.0,1.02,0.0,0.0,1.0,30.0,0.5,135.0,4.9,15.4,5000.0,5.2,0.0,0
319
+ 70.0,1.02,0.0,0.0,1.0,48.0,1.2,139.0,4.3,15.0,8100.0,4.9,0.0,0
320
+ 70.0,1.025,0.0,0.0,1.0,29.0,0.7,137.0,3.5,17.4,7000.0,5.3,0.0,0
321
+ 60.0,1.02,0.0,0.0,1.0,15.0,1.1,135.0,4.4,12.53,8406.0,4.71,0.0,0
322
+ 60.0,1.02,0.0,0.0,1.0,49.0,1.2,150.0,4.7,15.7,10400.0,6.2,0.0,0
323
+ 60.0,1.02,0.0,0.0,1.0,39.0,1.0,144.0,3.5,13.9,9600.0,4.8,0.0,0
324
+ 60.0,1.02,1.0,0.0,1.0,40.0,0.5,140.0,4.6,16.0,4500.0,4.9,0.0,0
325
+ 80.0,1.025,0.0,0.0,1.0,30.0,1.1,143.0,5.0,15.9,7800.0,4.5,0.0,0
326
+ 80.0,1.02,0.0,0.0,1.0,15.0,0.7,150.0,4.9,12.53,8406.0,4.71,0.0,0
327
+ 80.0,1.02,0.0,0.0,1.0,50.0,1.2,140.0,3.5,14.0,6700.0,6.5,0.0,0
328
+ 60.0,1.02,0.0,0.0,1.0,25.0,1.1,141.0,4.7,15.8,8300.0,5.2,0.0,0
329
+ 60.0,1.025,0.0,0.0,1.0,31.0,0.8,150.0,4.6,13.4,10700.0,5.8,0.0,0
330
+ 70.0,1.02,0.0,0.0,1.0,29.0,0.6,145.0,4.9,12.53,8600.0,6.5,0.0,0
331
+ 60.0,1.025,0.0,0.0,1.0,25.0,0.9,146.0,3.5,14.1,7800.0,5.1,0.0,0
332
+ 80.0,1.02,0.0,0.0,1.0,32.0,1.1,135.0,3.9,12.53,8406.0,4.71,0.0,0
333
+ 70.0,1.025,0.0,0.0,1.0,39.0,0.7,147.0,4.7,13.5,6700.0,4.5,0.0,0
334
+ 70.0,1.025,0.0,0.0,1.0,33.0,1.0,150.0,5.0,15.3,10500.0,6.1,0.0,0
335
+ 80.0,1.02,0.0,0.0,1.0,46.0,1.2,142.0,4.0,17.7,4300.0,5.5,0.0,0
336
+ 80.0,1.025,0.0,0.0,1.0,57.0,3.07,136.0,3.5,15.4,5600.0,4.5,0.0,0
337
+ 60.0,1.02,0.0,0.0,1.0,45.0,0.5,139.0,4.8,14.2,10700.0,5.6,0.0,0
338
+ 60.0,1.02,0.0,0.0,1.0,27.0,0.5,137.53,4.63,15.2,9200.0,5.2,0.0,0
339
+ 70.0,1.025,0.0,0.0,1.0,40.0,0.9,141.0,4.9,14.0,7500.0,6.2,0.0,0
340
+ 80.0,1.02,0.0,0.0,1.0,34.0,0.8,147.0,3.5,17.8,4700.0,4.5,0.0,0
341
+ 70.0,1.02,0.0,0.0,1.0,42.0,0.5,136.0,3.5,13.3,7000.0,4.9,0.0,0
342
+ 70.0,1.025,0.0,0.0,1.0,29.0,1.1,142.0,4.5,14.3,6700.0,5.9,0.0,0
343
+ 70.0,1.025,0.0,0.0,1.0,37.0,0.9,150.0,5.0,13.4,7300.0,4.7,0.0,0
344
+ 60.0,1.02,0.0,0.0,1.0,46.0,0.5,138.0,4.2,15.0,7700.0,6.3,0.0,0
345
+ 60.0,1.025,0.0,0.0,1.0,35.0,0.8,135.0,4.1,16.2,5500.0,5.7,0.0,0
346
+ 60.0,1.02,0.0,0.0,1.0,27.0,0.7,150.0,3.3,14.4,8100.0,4.7,0.0,0
347
+ 60.0,1.025,0.0,0.0,1.0,18.0,1.2,138.0,4.3,13.5,7900.0,6.4,0.0,0
348
+ 60.0,1.02,1.0,0.0,1.0,41.0,0.9,141.0,4.4,15.5,4300.0,5.8,0.0,0
349
+ 60.0,1.025,0.0,0.0,1.0,25.0,1.0,144.0,5.0,17.8,7200.0,5.5,0.0,0
350
+ 80.0,1.02,0.0,0.0,1.0,19.0,0.5,147.0,3.5,13.6,7300.0,6.4,0.0,0
351
+ 70.0,1.025,0.0,0.0,1.0,36.0,1.1,150.0,3.5,14.5,9400.0,6.1,0.0,0
352
+ 70.0,1.025,0.0,0.0,1.0,20.0,1.0,142.0,4.8,16.1,9600.0,4.5,0.0,0
353
+ 80.0,1.02,0.0,0.0,1.0,49.0,0.9,139.0,3.3,17.5,9900.0,4.7,0.0,0
354
+ 60.0,1.02,0.0,0.0,1.0,47.0,1.1,141.0,4.9,15.0,7000.0,5.2,0.0,0
355
+ 60.0,1.02,0.0,0.0,1.0,37.0,0.6,150.0,5.0,13.6,5800.0,4.5,0.0,0
356
+ 60.0,1.025,0.0,0.0,1.0,17.0,0.4,147.0,4.7,14.6,6800.0,5.1,0.0,0
357
+ 60.0,1.02,0.0,0.0,1.0,24.0,0.8,145.0,5.0,15.0,6300.0,4.6,0.0,0
358
+ 70.0,1.025,0.0,0.0,1.0,38.0,0.5,144.0,4.8,17.1,7400.0,6.1,0.0,0
359
+ 70.0,1.025,0.0,0.0,1.0,16.0,1.1,140.0,3.6,13.6,11000.0,4.9,0.0,0
360
+ 60.0,1.02,0.0,0.0,1.0,22.0,1.2,138.0,3.5,13.0,5200.0,5.6,0.0,0
361
+ 60.0,1.02,0.0,0.0,1.0,50.0,0.6,147.0,3.7,17.2,6000.0,4.5,0.0,0
362
+ 60.0,1.025,0.0,0.0,1.0,39.0,0.5,135.0,3.9,14.7,5800.0,6.2,0.0,0
363
+ 80.0,1.02,0.0,0.0,1.0,16.0,0.7,138.0,3.5,13.7,5400.0,5.8,0.0,0
364
+ 80.0,1.025,0.0,0.0,1.0,19.0,1.1,144.0,5.0,15.0,10300.0,4.8,0.0,0
365
+ 80.0,1.025,0.0,0.0,1.0,40.0,0.5,137.53,4.63,17.8,5900.0,5.2,0.0,0
366
+ 80.0,1.025,0.0,0.0,1.0,44.0,0.7,137.0,3.5,14.8,9300.0,4.7,0.0,0
367
+ 80.0,1.02,0.0,0.0,1.0,46.0,1.0,145.0,3.5,12.53,10700.0,6.3,0.0,0
368
+ 80.0,1.025,0.0,0.0,1.0,15.0,0.5,141.0,3.6,15.0,10500.0,5.3,0.0,0
369
+ 60.0,1.025,0.0,0.0,1.0,41.0,1.1,139.0,3.8,17.4,6700.0,6.1,0.0,0
370
+ 80.0,1.025,0.0,0.0,1.0,42.0,0.7,146.0,5.0,14.9,9400.0,5.9,0.0,0
371
+ 70.0,1.02,0.0,0.0,1.0,48.0,0.8,144.0,3.5,13.6,10300.0,4.8,0.0,0
372
+ 70.0,1.02,0.0,0.0,1.0,42.0,1.2,139.0,3.7,16.2,9300.0,5.4,0.0,0
373
+ 60.0,1.025,0.0,0.0,1.0,50.0,0.5,145.0,5.0,17.6,6500.0,5.0,0.0,0
374
+ 60.0,1.02,0.0,0.0,1.0,26.0,0.9,150.0,4.9,15.0,10500.0,5.5,0.0,0
375
+ 70.0,1.025,0.0,0.0,1.0,38.0,1.0,142.0,3.6,13.7,9200.0,4.9,0.0,0
376
+ 80.0,1.025,0.0,0.0,1.0,44.0,1.2,146.0,3.6,16.3,8000.0,6.4,0.0,0
377
+ 80.0,1.02,0.0,0.0,1.0,41.0,0.5,143.0,4.5,15.1,9700.0,5.6,0.0,0
378
+ 70.0,1.025,0.0,0.0,1.0,16.0,1.1,147.0,3.5,16.4,9100.0,5.2,0.0,0
379
+ 70.0,1.02,0.0,0.0,1.0,27.0,0.7,145.0,4.8,13.8,6400.0,4.8,0.0,0
380
+ 60.0,1.025,0.0,0.0,1.0,57.0,0.9,140.0,4.8,15.2,7700.0,5.5,0.0,0
381
+ 80.0,1.025,0.0,0.0,1.0,45.0,0.6,138.0,3.5,16.1,5400.0,5.7,0.0,0
382
+ 60.0,1.02,0.0,0.0,1.0,23.0,1.1,139.0,3.5,15.3,6500.0,4.9,0.0,0
383
+ 70.0,1.025,0.0,0.0,1.0,47.0,0.5,142.0,4.8,16.6,5800.0,5.9,0.0,0
384
+ 80.0,1.025,0.0,0.0,1.0,22.0,0.8,137.0,5.0,16.8,6000.0,6.5,0.0,0
385
+ 80.0,1.025,0.0,0.0,1.0,46.0,0.7,141.0,4.9,13.9,5100.0,5.0,0.0,0
386
+ 60.0,1.02,0.0,0.0,1.0,18.0,1.1,150.0,4.7,15.4,11000.0,4.5,0.0,0
387
+ 70.0,1.02,0.0,0.0,1.0,25.0,0.6,146.0,4.9,16.5,8000.0,5.1,0.0,0
388
+ 70.0,1.025,0.0,0.0,1.0,47.0,0.5,142.0,3.5,16.4,5700.0,6.5,0.0,0
389
+ 80.0,1.025,0.0,0.0,1.0,17.0,0.9,136.0,3.9,16.7,6200.0,5.2,0.0,0
390
+ 80.0,1.02,0.0,0.0,1.0,15.0,1.2,144.0,3.7,15.5,9500.0,6.4,0.0,0
391
+ 80.0,1.025,0.0,0.0,1.0,48.0,0.7,140.0,5.0,17.0,7200.0,5.8,0.0,0
392
+ 80.0,1.025,0.0,0.0,1.0,25.0,0.8,135.0,3.7,15.0,6300.0,5.3,0.0,0
393
+ 80.0,1.025,0.0,0.0,1.0,16.0,1.1,142.0,4.1,15.6,5800.0,6.3,0.0,0
394
+ 80.0,1.02,0.0,0.0,1.0,48.0,1.2,147.0,4.3,14.8,6600.0,5.5,0.0,0
395
+ 60.0,1.025,0.0,0.0,1.0,45.0,0.7,141.0,4.4,13.0,7400.0,5.4,0.0,0
396
+ 80.0,1.02,0.0,0.0,1.0,46.0,0.8,139.0,5.0,14.1,9500.0,4.6,0.0,0
397
+ 80.0,1.02,0.0,0.0,1.0,49.0,0.5,150.0,4.9,15.7,6700.0,4.9,0.0,0
398
+ 70.0,1.025,0.0,0.0,1.0,31.0,1.2,141.0,3.5,16.5,7800.0,6.2,0.0,0
399
+ 80.0,1.02,0.0,0.0,1.0,26.0,0.6,137.0,4.4,15.8,6600.0,5.4,0.0,0
400
+ 60.0,1.025,0.0,0.0,1.0,50.0,1.0,135.0,4.9,14.2,7200.0,5.9,0.0,0
401
+ 80.0,1.025,0.0,0.0,1.0,18.0,1.1,141.0,3.5,15.8,6800.0,6.1,0.0,0
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ matplotlib==3.5.2
2
+ numpy==1.23.1
3
+ pandas==1.4.3
4
+ streamlit==1.12.0
5
+ seaborn
6
+ tensorflow