├── README.md ├── diabetes_model.sav ├── parkinsons_model.sav ├── heart_disease_model.sav ├── streamlit run command.txt ├── COLAB LINKS.txt ├── .gitignore ├── deng format.csv ├── heart.csv ├── survey lung cancer.csv ├── diabetes.csv ├── DengAI__Training_Data_Labels.csv ├── parkinsons.csv └── kidney_disease.csv /README.md: -------------------------------------------------------------------------------- 1 | # MULTIPLE-DISEASE -------------------------------------------------------------------------------- /diabetes_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhini-1402/MULTIPLE-DISEASE/HEAD/diabetes_model.sav -------------------------------------------------------------------------------- /parkinsons_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhini-1402/MULTIPLE-DISEASE/HEAD/parkinsons_model.sav -------------------------------------------------------------------------------- /heart_disease_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandhini-1402/MULTIPLE-DISEASE/HEAD/heart_disease_model.sav -------------------------------------------------------------------------------- /streamlit run command.txt: -------------------------------------------------------------------------------- 1 | streamlit run "C:\Users\91959\Desktop\PROJECT\ELITE\MULTIPLE DISEASE PREDICTION\mdp.py" -------------------------------------------------------------------------------- /COLAB LINKS.txt: -------------------------------------------------------------------------------- 1 | https://colab.research.google.com/drive/1ZN6FQz79zE7q4Sf_haUBIJzIu-dlRewC 2 | https://colab.research.google.com/drive/10bP1QG07McfpRbux_I9CV4Ldu7RRVEXi 3 | https://colab.research.google.com/drive/19zrDEIGLLtmmDKiqaGKMZDxFuWhuoTga 4 | https://colab.research.google.com/drive/1Pw_-ntkKkx2nZAFKbfWJBJAqwJfxEKto-LUNG CANCER 5 | https://colab.research.google.com/drive/1Pw_-ntkKkx2nZAFKbfWJBJAqwJfxEKto-BREAST CANCER -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | /site 140 | 141 | # mypy 142 | .mypy_cache/ 143 | .dmypy.json 144 | dmypy.json 145 | 146 | # Pyre type checker 147 | .pyre/ 148 | 149 | # pytype static type analyzer 150 | .pytype/ 151 | 152 | # Cython debug symbols 153 | cython_debug/ 154 | 155 | # PyCharm 156 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 157 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 158 | # and can be added to the global gitignore or merged into this file. For a more nuclear 159 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 160 | #.idea/ 161 | -------------------------------------------------------------------------------- /deng format.csv: -------------------------------------------------------------------------------- 1 | city,year,weekofyear,total_cases 2 | sj,2008,18,0 3 | sj,2008,19,0 4 | sj,2008,20,0 5 | sj,2008,21,0 6 | sj,2008,22,0 7 | sj,2008,23,0 8 | sj,2008,24,0 9 | sj,2008,25,0 10 | sj,2008,26,0 11 | sj,2008,27,0 12 | sj,2008,28,0 13 | sj,2008,29,0 14 | sj,2008,30,0 15 | sj,2008,31,0 16 | sj,2008,32,0 17 | sj,2008,33,0 18 | sj,2008,34,0 19 | sj,2008,35,0 20 | sj,2008,36,0 21 | sj,2008,37,0 22 | sj,2008,38,0 23 | sj,2008,39,0 24 | sj,2008,40,0 25 | sj,2008,41,0 26 | sj,2008,42,0 27 | sj,2008,43,0 28 | sj,2008,44,0 29 | sj,2008,45,0 30 | sj,2008,46,0 31 | sj,2008,47,0 32 | sj,2008,48,0 33 | sj,2008,49,0 34 | sj,2008,50,0 35 | sj,2008,51,0 36 | sj,2008,52,0 37 | sj,2009,1,0 38 | sj,2009,2,0 39 | sj,2009,3,0 40 | sj,2009,4,0 41 | sj,2009,5,0 42 | sj,2009,6,0 43 | sj,2009,7,0 44 | sj,2009,8,0 45 | sj,2009,9,0 46 | sj,2009,10,0 47 | sj,2009,11,0 48 | sj,2009,12,0 49 | sj,2009,13,0 50 | sj,2009,14,0 51 | sj,2009,15,0 52 | sj,2009,16,0 53 | sj,2009,17,0 54 | sj,2009,18,0 55 | sj,2009,19,0 56 | sj,2009,20,0 57 | sj,2009,21,0 58 | sj,2009,22,0 59 | sj,2009,23,0 60 | sj,2009,24,0 61 | sj,2009,25,0 62 | sj,2009,26,0 63 | sj,2009,27,0 64 | sj,2009,28,0 65 | sj,2009,29,0 66 | sj,2009,30,0 67 | sj,2009,31,0 68 | sj,2009,32,0 69 | sj,2009,33,0 70 | sj,2009,34,0 71 | sj,2009,35,0 72 | sj,2009,36,0 73 | sj,2009,37,0 74 | sj,2009,38,0 75 | sj,2009,39,0 76 | sj,2009,40,0 77 | sj,2009,41,0 78 | sj,2009,42,0 79 | sj,2009,43,0 80 | sj,2009,44,0 81 | sj,2009,45,0 82 | sj,2009,46,0 83 | sj,2009,47,0 84 | sj,2009,48,0 85 | sj,2009,49,0 86 | sj,2009,50,0 87 | sj,2009,51,0 88 | sj,2009,52,0 89 | sj,2010,53,0 90 | sj,2010,1,0 91 | sj,2010,2,0 92 | sj,2010,3,0 93 | sj,2010,4,0 94 | sj,2010,5,0 95 | sj,2010,6,0 96 | sj,2010,7,0 97 | sj,2010,8,0 98 | sj,2010,9,0 99 | sj,2010,10,0 100 | sj,2010,11,0 101 | sj,2010,12,0 102 | sj,2010,13,0 103 | sj,2010,14,0 104 | sj,2010,15,0 105 | sj,2010,16,0 106 | sj,2010,17,0 107 | sj,2010,18,0 108 | sj,2010,19,0 109 | sj,2010,20,0 110 | sj,2010,21,0 111 | sj,2010,22,0 112 | sj,2010,23,0 113 | sj,2010,24,0 114 | sj,2010,25,0 115 | sj,2010,26,0 116 | sj,2010,27,0 117 | sj,2010,28,0 118 | sj,2010,29,0 119 | sj,2010,30,0 120 | sj,2010,31,0 121 | sj,2010,32,0 122 | sj,2010,33,0 123 | sj,2010,34,0 124 | sj,2010,35,0 125 | sj,2010,36,0 126 | sj,2010,37,0 127 | sj,2010,38,0 128 | sj,2010,39,0 129 | sj,2010,40,0 130 | sj,2010,41,0 131 | sj,2010,42,0 132 | sj,2010,43,0 133 | sj,2010,44,0 134 | sj,2010,45,0 135 | sj,2010,46,0 136 | sj,2010,47,0 137 | sj,2010,48,0 138 | sj,2010,49,0 139 | sj,2010,50,0 140 | sj,2010,51,0 141 | sj,2011,52,0 142 | sj,2011,1,0 143 | sj,2011,2,0 144 | sj,2011,3,0 145 | sj,2011,4,0 146 | sj,2011,5,0 147 | sj,2011,6,0 148 | sj,2011,7,0 149 | sj,2011,8,0 150 | sj,2011,9,0 151 | sj,2011,10,0 152 | sj,2011,11,0 153 | sj,2011,12,0 154 | sj,2011,13,0 155 | sj,2011,14,0 156 | sj,2011,15,0 157 | sj,2011,16,0 158 | sj,2011,17,0 159 | sj,2011,18,0 160 | sj,2011,19,0 161 | sj,2011,20,0 162 | sj,2011,21,0 163 | sj,2011,22,0 164 | sj,2011,23,0 165 | sj,2011,24,0 166 | sj,2011,25,0 167 | sj,2011,26,0 168 | sj,2011,27,0 169 | sj,2011,28,0 170 | sj,2011,29,0 171 | sj,2011,30,0 172 | sj,2011,31,0 173 | sj,2011,32,0 174 | sj,2011,33,0 175 | sj,2011,34,0 176 | sj,2011,35,0 177 | sj,2011,36,0 178 | sj,2011,37,0 179 | sj,2011,38,0 180 | sj,2011,39,0 181 | sj,2011,40,0 182 | sj,2011,41,0 183 | sj,2011,42,0 184 | sj,2011,43,0 185 | sj,2011,44,0 186 | sj,2011,45,0 187 | sj,2011,46,0 188 | sj,2011,47,0 189 | sj,2011,48,0 190 | sj,2011,49,0 191 | sj,2011,50,0 192 | sj,2011,51,0 193 | sj,2012,52,0 194 | sj,2012,1,0 195 | sj,2012,2,0 196 | sj,2012,3,0 197 | sj,2012,4,0 198 | sj,2012,5,0 199 | sj,2012,6,0 200 | sj,2012,7,0 201 | sj,2012,8,0 202 | sj,2012,9,0 203 | sj,2012,10,0 204 | sj,2012,11,0 205 | sj,2012,12,0 206 | sj,2012,13,0 207 | sj,2012,14,0 208 | sj,2012,15,0 209 | sj,2012,16,0 210 | sj,2012,17,0 211 | sj,2012,18,0 212 | sj,2012,19,0 213 | sj,2012,20,0 214 | sj,2012,21,0 215 | sj,2012,22,0 216 | sj,2012,23,0 217 | sj,2012,24,0 218 | sj,2012,25,0 219 | sj,2012,26,0 220 | sj,2012,27,0 221 | sj,2012,28,0 222 | sj,2012,29,0 223 | sj,2012,30,0 224 | sj,2012,31,0 225 | sj,2012,32,0 226 | sj,2012,33,0 227 | sj,2012,34,0 228 | sj,2012,35,0 229 | sj,2012,36,0 230 | sj,2012,37,0 231 | sj,2012,38,0 232 | sj,2012,39,0 233 | sj,2012,40,0 234 | sj,2012,41,0 235 | sj,2012,42,0 236 | sj,2012,43,0 237 | sj,2012,44,0 238 | sj,2012,45,0 239 | sj,2012,46,0 240 | sj,2012,47,0 241 | sj,2012,48,0 242 | sj,2012,49,0 243 | sj,2012,50,0 244 | sj,2012,51,0 245 | sj,2013,1,0 246 | sj,2013,2,0 247 | sj,2013,3,0 248 | sj,2013,4,0 249 | sj,2013,5,0 250 | sj,2013,6,0 251 | sj,2013,7,0 252 | sj,2013,8,0 253 | sj,2013,9,0 254 | sj,2013,10,0 255 | sj,2013,11,0 256 | sj,2013,12,0 257 | sj,2013,13,0 258 | sj,2013,14,0 259 | sj,2013,15,0 260 | sj,2013,16,0 261 | sj,2013,17,0 262 | iq,2010,26,0 263 | iq,2010,27,0 264 | iq,2010,28,0 265 | iq,2010,29,0 266 | iq,2010,30,0 267 | iq,2010,31,0 268 | iq,2010,32,0 269 | iq,2010,33,0 270 | iq,2010,34,0 271 | iq,2010,35,0 272 | iq,2010,36,0 273 | iq,2010,37,0 274 | iq,2010,38,0 275 | iq,2010,39,0 276 | iq,2010,40,0 277 | iq,2010,41,0 278 | iq,2010,42,0 279 | iq,2010,43,0 280 | iq,2010,44,0 281 | iq,2010,45,0 282 | iq,2010,46,0 283 | iq,2010,47,0 284 | iq,2010,48,0 285 | iq,2010,49,0 286 | iq,2010,50,0 287 | iq,2010,51,0 288 | iq,2011,52,0 289 | iq,2011,1,0 290 | iq,2011,2,0 291 | iq,2011,3,0 292 | iq,2011,4,0 293 | iq,2011,5,0 294 | iq,2011,6,0 295 | iq,2011,7,0 296 | iq,2011,8,0 297 | iq,2011,9,0 298 | iq,2011,10,0 299 | iq,2011,11,0 300 | iq,2011,12,0 301 | iq,2011,13,0 302 | iq,2011,14,0 303 | iq,2011,15,0 304 | iq,2011,16,0 305 | iq,2011,17,0 306 | iq,2011,18,0 307 | iq,2011,19,0 308 | iq,2011,20,0 309 | iq,2011,21,0 310 | iq,2011,22,0 311 | iq,2011,23,0 312 | iq,2011,24,0 313 | iq,2011,25,0 314 | iq,2011,26,0 315 | iq,2011,27,0 316 | iq,2011,28,0 317 | iq,2011,29,0 318 | iq,2011,30,0 319 | iq,2011,31,0 320 | iq,2011,32,0 321 | iq,2011,33,0 322 | iq,2011,34,0 323 | iq,2011,35,0 324 | iq,2011,36,0 325 | iq,2011,37,0 326 | iq,2011,38,0 327 | iq,2011,39,0 328 | iq,2011,40,0 329 | iq,2011,41,0 330 | iq,2011,42,0 331 | iq,2011,43,0 332 | iq,2011,44,0 333 | iq,2011,45,0 334 | iq,2011,46,0 335 | iq,2011,47,0 336 | iq,2011,48,0 337 | iq,2011,49,0 338 | iq,2011,50,0 339 | iq,2011,51,0 340 | iq,2012,52,0 341 | iq,2012,1,0 342 | iq,2012,2,0 343 | iq,2012,3,0 344 | iq,2012,4,0 345 | iq,2012,5,0 346 | iq,2012,6,0 347 | iq,2012,7,0 348 | iq,2012,8,0 349 | iq,2012,9,0 350 | iq,2012,10,0 351 | iq,2012,11,0 352 | iq,2012,12,0 353 | iq,2012,13,0 354 | iq,2012,14,0 355 | iq,2012,15,0 356 | iq,2012,16,0 357 | iq,2012,17,0 358 | iq,2012,18,0 359 | iq,2012,19,0 360 | iq,2012,20,0 361 | iq,2012,21,0 362 | iq,2012,22,0 363 | iq,2012,23,0 364 | iq,2012,24,0 365 | iq,2012,25,0 366 | iq,2012,26,0 367 | iq,2012,27,0 368 | iq,2012,28,0 369 | iq,2012,29,0 370 | iq,2012,30,0 371 | iq,2012,31,0 372 | iq,2012,32,0 373 | iq,2012,33,0 374 | iq,2012,34,0 375 | iq,2012,35,0 376 | iq,2012,36,0 377 | iq,2012,37,0 378 | iq,2012,38,0 379 | iq,2012,39,0 380 | iq,2012,40,0 381 | iq,2012,41,0 382 | iq,2012,42,0 383 | iq,2012,43,0 384 | iq,2012,44,0 385 | iq,2012,45,0 386 | iq,2012,46,0 387 | iq,2012,47,0 388 | iq,2012,48,0 389 | iq,2012,49,0 390 | iq,2012,50,0 391 | iq,2012,51,0 392 | iq,2013,1,0 393 | iq,2013,2,0 394 | iq,2013,3,0 395 | iq,2013,4,0 396 | iq,2013,5,0 397 | iq,2013,6,0 398 | iq,2013,7,0 399 | iq,2013,8,0 400 | iq,2013,9,0 401 | iq,2013,10,0 402 | iq,2013,11,0 403 | iq,2013,12,0 404 | iq,2013,13,0 405 | iq,2013,14,0 406 | iq,2013,15,0 407 | iq,2013,16,0 408 | iq,2013,17,0 409 | iq,2013,18,0 410 | iq,2013,19,0 411 | iq,2013,20,0 412 | iq,2013,21,0 413 | iq,2013,22,0 414 | iq,2013,23,0 415 | iq,2013,24,0 416 | iq,2013,25,0 417 | iq,2013,26,0 418 | -------------------------------------------------------------------------------- /heart.csv: -------------------------------------------------------------------------------- 1 | age,sex,cp,trestbps,chol,fbs,restecg,thalach,exang,oldpeak,slope,ca,thal,target 2 | 63,1,3,145,233,1,0,150,0,2.3,0,0,1,1 3 | 37,1,2,130,250,0,1,187,0,3.5,0,0,2,1 4 | 41,0,1,130,204,0,0,172,0,1.4,2,0,2,1 5 | 56,1,1,120,236,0,1,178,0,0.8,2,0,2,1 6 | 57,0,0,120,354,0,1,163,1,0.6,2,0,2,1 7 | 57,1,0,140,192,0,1,148,0,0.4,1,0,1,1 8 | 56,0,1,140,294,0,0,153,0,1.3,1,0,2,1 9 | 44,1,1,120,263,0,1,173,0,0,2,0,3,1 10 | 52,1,2,172,199,1,1,162,0,0.5,2,0,3,1 11 | 57,1,2,150,168,0,1,174,0,1.6,2,0,2,1 12 | 54,1,0,140,239,0,1,160,0,1.2,2,0,2,1 13 | 48,0,2,130,275,0,1,139,0,0.2,2,0,2,1 14 | 49,1,1,130,266,0,1,171,0,0.6,2,0,2,1 15 | 64,1,3,110,211,0,0,144,1,1.8,1,0,2,1 16 | 58,0,3,150,283,1,0,162,0,1,2,0,2,1 17 | 50,0,2,120,219,0,1,158,0,1.6,1,0,2,1 18 | 58,0,2,120,340,0,1,172,0,0,2,0,2,1 19 | 66,0,3,150,226,0,1,114,0,2.6,0,0,2,1 20 | 43,1,0,150,247,0,1,171,0,1.5,2,0,2,1 21 | 69,0,3,140,239,0,1,151,0,1.8,2,2,2,1 22 | 59,1,0,135,234,0,1,161,0,0.5,1,0,3,1 23 | 44,1,2,130,233,0,1,179,1,0.4,2,0,2,1 24 | 42,1,0,140,226,0,1,178,0,0,2,0,2,1 25 | 61,1,2,150,243,1,1,137,1,1,1,0,2,1 26 | 40,1,3,140,199,0,1,178,1,1.4,2,0,3,1 27 | 71,0,1,160,302,0,1,162,0,0.4,2,2,2,1 28 | 59,1,2,150,212,1,1,157,0,1.6,2,0,2,1 29 | 51,1,2,110,175,0,1,123,0,0.6,2,0,2,1 30 | 65,0,2,140,417,1,0,157,0,0.8,2,1,2,1 31 | 53,1,2,130,197,1,0,152,0,1.2,0,0,2,1 32 | 41,0,1,105,198,0,1,168,0,0,2,1,2,1 33 | 65,1,0,120,177,0,1,140,0,0.4,2,0,3,1 34 | 44,1,1,130,219,0,0,188,0,0,2,0,2,1 35 | 54,1,2,125,273,0,0,152,0,0.5,0,1,2,1 36 | 51,1,3,125,213,0,0,125,1,1.4,2,1,2,1 37 | 46,0,2,142,177,0,0,160,1,1.4,0,0,2,1 38 | 54,0,2,135,304,1,1,170,0,0,2,0,2,1 39 | 54,1,2,150,232,0,0,165,0,1.6,2,0,3,1 40 | 65,0,2,155,269,0,1,148,0,0.8,2,0,2,1 41 | 65,0,2,160,360,0,0,151,0,0.8,2,0,2,1 42 | 51,0,2,140,308,0,0,142,0,1.5,2,1,2,1 43 | 48,1,1,130,245,0,0,180,0,0.2,1,0,2,1 44 | 45,1,0,104,208,0,0,148,1,3,1,0,2,1 45 | 53,0,0,130,264,0,0,143,0,0.4,1,0,2,1 46 | 39,1,2,140,321,0,0,182,0,0,2,0,2,1 47 | 52,1,1,120,325,0,1,172,0,0.2,2,0,2,1 48 | 44,1,2,140,235,0,0,180,0,0,2,0,2,1 49 | 47,1,2,138,257,0,0,156,0,0,2,0,2,1 50 | 53,0,2,128,216,0,0,115,0,0,2,0,0,1 51 | 53,0,0,138,234,0,0,160,0,0,2,0,2,1 52 | 51,0,2,130,256,0,0,149,0,0.5,2,0,2,1 53 | 66,1,0,120,302,0,0,151,0,0.4,1,0,2,1 54 | 62,1,2,130,231,0,1,146,0,1.8,1,3,3,1 55 | 44,0,2,108,141,0,1,175,0,0.6,1,0,2,1 56 | 63,0,2,135,252,0,0,172,0,0,2,0,2,1 57 | 52,1,1,134,201,0,1,158,0,0.8,2,1,2,1 58 | 48,1,0,122,222,0,0,186,0,0,2,0,2,1 59 | 45,1,0,115,260,0,0,185,0,0,2,0,2,1 60 | 34,1,3,118,182,0,0,174,0,0,2,0,2,1 61 | 57,0,0,128,303,0,0,159,0,0,2,1,2,1 62 | 71,0,2,110,265,1,0,130,0,0,2,1,2,1 63 | 54,1,1,108,309,0,1,156,0,0,2,0,3,1 64 | 52,1,3,118,186,0,0,190,0,0,1,0,1,1 65 | 41,1,1,135,203,0,1,132,0,0,1,0,1,1 66 | 58,1,2,140,211,1,0,165,0,0,2,0,2,1 67 | 35,0,0,138,183,0,1,182,0,1.4,2,0,2,1 68 | 51,1,2,100,222,0,1,143,1,1.2,1,0,2,1 69 | 45,0,1,130,234,0,0,175,0,0.6,1,0,2,1 70 | 44,1,1,120,220,0,1,170,0,0,2,0,2,1 71 | 62,0,0,124,209,0,1,163,0,0,2,0,2,1 72 | 54,1,2,120,258,0,0,147,0,0.4,1,0,3,1 73 | 51,1,2,94,227,0,1,154,1,0,2,1,3,1 74 | 29,1,1,130,204,0,0,202,0,0,2,0,2,1 75 | 51,1,0,140,261,0,0,186,1,0,2,0,2,1 76 | 43,0,2,122,213,0,1,165,0,0.2,1,0,2,1 77 | 55,0,1,135,250,0,0,161,0,1.4,1,0,2,1 78 | 51,1,2,125,245,1,0,166,0,2.4,1,0,2,1 79 | 59,1,1,140,221,0,1,164,1,0,2,0,2,1 80 | 52,1,1,128,205,1,1,184,0,0,2,0,2,1 81 | 58,1,2,105,240,0,0,154,1,0.6,1,0,3,1 82 | 41,1,2,112,250,0,1,179,0,0,2,0,2,1 83 | 45,1,1,128,308,0,0,170,0,0,2,0,2,1 84 | 60,0,2,102,318,0,1,160,0,0,2,1,2,1 85 | 52,1,3,152,298,1,1,178,0,1.2,1,0,3,1 86 | 42,0,0,102,265,0,0,122,0,0.6,1,0,2,1 87 | 67,0,2,115,564,0,0,160,0,1.6,1,0,3,1 88 | 68,1,2,118,277,0,1,151,0,1,2,1,3,1 89 | 46,1,1,101,197,1,1,156,0,0,2,0,3,1 90 | 54,0,2,110,214,0,1,158,0,1.6,1,0,2,1 91 | 58,0,0,100,248,0,0,122,0,1,1,0,2,1 92 | 48,1,2,124,255,1,1,175,0,0,2,2,2,1 93 | 57,1,0,132,207,0,1,168,1,0,2,0,3,1 94 | 52,1,2,138,223,0,1,169,0,0,2,4,2,1 95 | 54,0,1,132,288,1,0,159,1,0,2,1,2,1 96 | 45,0,1,112,160,0,1,138,0,0,1,0,2,1 97 | 53,1,0,142,226,0,0,111,1,0,2,0,3,1 98 | 62,0,0,140,394,0,0,157,0,1.2,1,0,2,1 99 | 52,1,0,108,233,1,1,147,0,0.1,2,3,3,1 100 | 43,1,2,130,315,0,1,162,0,1.9,2,1,2,1 101 | 53,1,2,130,246,1,0,173,0,0,2,3,2,1 102 | 42,1,3,148,244,0,0,178,0,0.8,2,2,2,1 103 | 59,1,3,178,270,0,0,145,0,4.2,0,0,3,1 104 | 63,0,1,140,195,0,1,179,0,0,2,2,2,1 105 | 42,1,2,120,240,1,1,194,0,0.8,0,0,3,1 106 | 50,1,2,129,196,0,1,163,0,0,2,0,2,1 107 | 68,0,2,120,211,0,0,115,0,1.5,1,0,2,1 108 | 69,1,3,160,234,1,0,131,0,0.1,1,1,2,1 109 | 45,0,0,138,236,0,0,152,1,0.2,1,0,2,1 110 | 50,0,1,120,244,0,1,162,0,1.1,2,0,2,1 111 | 50,0,0,110,254,0,0,159,0,0,2,0,2,1 112 | 64,0,0,180,325,0,1,154,1,0,2,0,2,1 113 | 57,1,2,150,126,1,1,173,0,0.2,2,1,3,1 114 | 64,0,2,140,313,0,1,133,0,0.2,2,0,3,1 115 | 43,1,0,110,211,0,1,161,0,0,2,0,3,1 116 | 55,1,1,130,262,0,1,155,0,0,2,0,2,1 117 | 37,0,2,120,215,0,1,170,0,0,2,0,2,1 118 | 41,1,2,130,214,0,0,168,0,2,1,0,2,1 119 | 56,1,3,120,193,0,0,162,0,1.9,1,0,3,1 120 | 46,0,1,105,204,0,1,172,0,0,2,0,2,1 121 | 46,0,0,138,243,0,0,152,1,0,1,0,2,1 122 | 64,0,0,130,303,0,1,122,0,2,1,2,2,1 123 | 59,1,0,138,271,0,0,182,0,0,2,0,2,1 124 | 41,0,2,112,268,0,0,172,1,0,2,0,2,1 125 | 54,0,2,108,267,0,0,167,0,0,2,0,2,1 126 | 39,0,2,94,199,0,1,179,0,0,2,0,2,1 127 | 34,0,1,118,210,0,1,192,0,0.7,2,0,2,1 128 | 47,1,0,112,204,0,1,143,0,0.1,2,0,2,1 129 | 67,0,2,152,277,0,1,172,0,0,2,1,2,1 130 | 52,0,2,136,196,0,0,169,0,0.1,1,0,2,1 131 | 74,0,1,120,269,0,0,121,1,0.2,2,1,2,1 132 | 54,0,2,160,201,0,1,163,0,0,2,1,2,1 133 | 49,0,1,134,271,0,1,162,0,0,1,0,2,1 134 | 42,1,1,120,295,0,1,162,0,0,2,0,2,1 135 | 41,1,1,110,235,0,1,153,0,0,2,0,2,1 136 | 41,0,1,126,306,0,1,163,0,0,2,0,2,1 137 | 49,0,0,130,269,0,1,163,0,0,2,0,2,1 138 | 60,0,2,120,178,1,1,96,0,0,2,0,2,1 139 | 62,1,1,128,208,1,0,140,0,0,2,0,2,1 140 | 57,1,0,110,201,0,1,126,1,1.5,1,0,1,1 141 | 64,1,0,128,263,0,1,105,1,0.2,1,1,3,1 142 | 51,0,2,120,295,0,0,157,0,0.6,2,0,2,1 143 | 43,1,0,115,303,0,1,181,0,1.2,1,0,2,1 144 | 42,0,2,120,209,0,1,173,0,0,1,0,2,1 145 | 67,0,0,106,223,0,1,142,0,0.3,2,2,2,1 146 | 76,0,2,140,197,0,2,116,0,1.1,1,0,2,1 147 | 70,1,1,156,245,0,0,143,0,0,2,0,2,1 148 | 44,0,2,118,242,0,1,149,0,0.3,1,1,2,1 149 | 60,0,3,150,240,0,1,171,0,0.9,2,0,2,1 150 | 44,1,2,120,226,0,1,169,0,0,2,0,2,1 151 | 42,1,2,130,180,0,1,150,0,0,2,0,2,1 152 | 66,1,0,160,228,0,0,138,0,2.3,2,0,1,1 153 | 71,0,0,112,149,0,1,125,0,1.6,1,0,2,1 154 | 64,1,3,170,227,0,0,155,0,0.6,1,0,3,1 155 | 66,0,2,146,278,0,0,152,0,0,1,1,2,1 156 | 39,0,2,138,220,0,1,152,0,0,1,0,2,1 157 | 58,0,0,130,197,0,1,131,0,0.6,1,0,2,1 158 | 47,1,2,130,253,0,1,179,0,0,2,0,2,1 159 | 35,1,1,122,192,0,1,174,0,0,2,0,2,1 160 | 58,1,1,125,220,0,1,144,0,0.4,1,4,3,1 161 | 56,1,1,130,221,0,0,163,0,0,2,0,3,1 162 | 56,1,1,120,240,0,1,169,0,0,0,0,2,1 163 | 55,0,1,132,342,0,1,166,0,1.2,2,0,2,1 164 | 41,1,1,120,157,0,1,182,0,0,2,0,2,1 165 | 38,1,2,138,175,0,1,173,0,0,2,4,2,1 166 | 38,1,2,138,175,0,1,173,0,0,2,4,2,1 167 | 67,1,0,160,286,0,0,108,1,1.5,1,3,2,0 168 | 67,1,0,120,229,0,0,129,1,2.6,1,2,3,0 169 | 62,0,0,140,268,0,0,160,0,3.6,0,2,2,0 170 | 63,1,0,130,254,0,0,147,0,1.4,1,1,3,0 171 | 53,1,0,140,203,1,0,155,1,3.1,0,0,3,0 172 | 56,1,2,130,256,1,0,142,1,0.6,1,1,1,0 173 | 48,1,1,110,229,0,1,168,0,1,0,0,3,0 174 | 58,1,1,120,284,0,0,160,0,1.8,1,0,2,0 175 | 58,1,2,132,224,0,0,173,0,3.2,2,2,3,0 176 | 60,1,0,130,206,0,0,132,1,2.4,1,2,3,0 177 | 40,1,0,110,167,0,0,114,1,2,1,0,3,0 178 | 60,1,0,117,230,1,1,160,1,1.4,2,2,3,0 179 | 64,1,2,140,335,0,1,158,0,0,2,0,2,0 180 | 43,1,0,120,177,0,0,120,1,2.5,1,0,3,0 181 | 57,1,0,150,276,0,0,112,1,0.6,1,1,1,0 182 | 55,1,0,132,353,0,1,132,1,1.2,1,1,3,0 183 | 65,0,0,150,225,0,0,114,0,1,1,3,3,0 184 | 61,0,0,130,330,0,0,169,0,0,2,0,2,0 185 | 58,1,2,112,230,0,0,165,0,2.5,1,1,3,0 186 | 50,1,0,150,243,0,0,128,0,2.6,1,0,3,0 187 | 44,1,0,112,290,0,0,153,0,0,2,1,2,0 188 | 60,1,0,130,253,0,1,144,1,1.4,2,1,3,0 189 | 54,1,0,124,266,0,0,109,1,2.2,1,1,3,0 190 | 50,1,2,140,233,0,1,163,0,0.6,1,1,3,0 191 | 41,1,0,110,172,0,0,158,0,0,2,0,3,0 192 | 51,0,0,130,305,0,1,142,1,1.2,1,0,3,0 193 | 58,1,0,128,216,0,0,131,1,2.2,1,3,3,0 194 | 54,1,0,120,188,0,1,113,0,1.4,1,1,3,0 195 | 60,1,0,145,282,0,0,142,1,2.8,1,2,3,0 196 | 60,1,2,140,185,0,0,155,0,3,1,0,2,0 197 | 59,1,0,170,326,0,0,140,1,3.4,0,0,3,0 198 | 46,1,2,150,231,0,1,147,0,3.6,1,0,2,0 199 | 67,1,0,125,254,1,1,163,0,0.2,1,2,3,0 200 | 62,1,0,120,267,0,1,99,1,1.8,1,2,3,0 201 | 65,1,0,110,248,0,0,158,0,0.6,2,2,1,0 202 | 44,1,0,110,197,0,0,177,0,0,2,1,2,0 203 | 60,1,0,125,258,0,0,141,1,2.8,1,1,3,0 204 | 58,1,0,150,270,0,0,111,1,0.8,2,0,3,0 205 | 68,1,2,180,274,1,0,150,1,1.6,1,0,3,0 206 | 62,0,0,160,164,0,0,145,0,6.2,0,3,3,0 207 | 52,1,0,128,255,0,1,161,1,0,2,1,3,0 208 | 59,1,0,110,239,0,0,142,1,1.2,1,1,3,0 209 | 60,0,0,150,258,0,0,157,0,2.6,1,2,3,0 210 | 49,1,2,120,188,0,1,139,0,2,1,3,3,0 211 | 59,1,0,140,177,0,1,162,1,0,2,1,3,0 212 | 57,1,2,128,229,0,0,150,0,0.4,1,1,3,0 213 | 61,1,0,120,260,0,1,140,1,3.6,1,1,3,0 214 | 39,1,0,118,219,0,1,140,0,1.2,1,0,3,0 215 | 61,0,0,145,307,0,0,146,1,1,1,0,3,0 216 | 56,1,0,125,249,1,0,144,1,1.2,1,1,2,0 217 | 43,0,0,132,341,1,0,136,1,3,1,0,3,0 218 | 62,0,2,130,263,0,1,97,0,1.2,1,1,3,0 219 | 63,1,0,130,330,1,0,132,1,1.8,2,3,3,0 220 | 65,1,0,135,254,0,0,127,0,2.8,1,1,3,0 221 | 48,1,0,130,256,1,0,150,1,0,2,2,3,0 222 | 63,0,0,150,407,0,0,154,0,4,1,3,3,0 223 | 55,1,0,140,217,0,1,111,1,5.6,0,0,3,0 224 | 65,1,3,138,282,1,0,174,0,1.4,1,1,2,0 225 | 56,0,0,200,288,1,0,133,1,4,0,2,3,0 226 | 54,1,0,110,239,0,1,126,1,2.8,1,1,3,0 227 | 70,1,0,145,174,0,1,125,1,2.6,0,0,3,0 228 | 62,1,1,120,281,0,0,103,0,1.4,1,1,3,0 229 | 35,1,0,120,198,0,1,130,1,1.6,1,0,3,0 230 | 59,1,3,170,288,0,0,159,0,0.2,1,0,3,0 231 | 64,1,2,125,309,0,1,131,1,1.8,1,0,3,0 232 | 47,1,2,108,243,0,1,152,0,0,2,0,2,0 233 | 57,1,0,165,289,1,0,124,0,1,1,3,3,0 234 | 55,1,0,160,289,0,0,145,1,0.8,1,1,3,0 235 | 64,1,0,120,246,0,0,96,1,2.2,0,1,2,0 236 | 70,1,0,130,322,0,0,109,0,2.4,1,3,2,0 237 | 51,1,0,140,299,0,1,173,1,1.6,2,0,3,0 238 | 58,1,0,125,300,0,0,171,0,0,2,2,3,0 239 | 60,1,0,140,293,0,0,170,0,1.2,1,2,3,0 240 | 77,1,0,125,304,0,0,162,1,0,2,3,2,0 241 | 35,1,0,126,282,0,0,156,1,0,2,0,3,0 242 | 70,1,2,160,269,0,1,112,1,2.9,1,1,3,0 243 | 59,0,0,174,249,0,1,143,1,0,1,0,2,0 244 | 64,1,0,145,212,0,0,132,0,2,1,2,1,0 245 | 57,1,0,152,274,0,1,88,1,1.2,1,1,3,0 246 | 56,1,0,132,184,0,0,105,1,2.1,1,1,1,0 247 | 48,1,0,124,274,0,0,166,0,0.5,1,0,3,0 248 | 56,0,0,134,409,0,0,150,1,1.9,1,2,3,0 249 | 66,1,1,160,246,0,1,120,1,0,1,3,1,0 250 | 54,1,1,192,283,0,0,195,0,0,2,1,3,0 251 | 69,1,2,140,254,0,0,146,0,2,1,3,3,0 252 | 51,1,0,140,298,0,1,122,1,4.2,1,3,3,0 253 | 43,1,0,132,247,1,0,143,1,0.1,1,4,3,0 254 | 62,0,0,138,294,1,1,106,0,1.9,1,3,2,0 255 | 67,1,0,100,299,0,0,125,1,0.9,1,2,2,0 256 | 59,1,3,160,273,0,0,125,0,0,2,0,2,0 257 | 45,1,0,142,309,0,0,147,1,0,1,3,3,0 258 | 58,1,0,128,259,0,0,130,1,3,1,2,3,0 259 | 50,1,0,144,200,0,0,126,1,0.9,1,0,3,0 260 | 62,0,0,150,244,0,1,154,1,1.4,1,0,2,0 261 | 38,1,3,120,231,0,1,182,1,3.8,1,0,3,0 262 | 66,0,0,178,228,1,1,165,1,1,1,2,3,0 263 | 52,1,0,112,230,0,1,160,0,0,2,1,2,0 264 | 53,1,0,123,282,0,1,95,1,2,1,2,3,0 265 | 63,0,0,108,269,0,1,169,1,1.8,1,2,2,0 266 | 54,1,0,110,206,0,0,108,1,0,1,1,2,0 267 | 66,1,0,112,212,0,0,132,1,0.1,2,1,2,0 268 | 55,0,0,180,327,0,2,117,1,3.4,1,0,2,0 269 | 49,1,2,118,149,0,0,126,0,0.8,2,3,2,0 270 | 54,1,0,122,286,0,0,116,1,3.2,1,2,2,0 271 | 56,1,0,130,283,1,0,103,1,1.6,0,0,3,0 272 | 46,1,0,120,249,0,0,144,0,0.8,2,0,3,0 273 | 61,1,3,134,234,0,1,145,0,2.6,1,2,2,0 274 | 67,1,0,120,237,0,1,71,0,1,1,0,2,0 275 | 58,1,0,100,234,0,1,156,0,0.1,2,1,3,0 276 | 47,1,0,110,275,0,0,118,1,1,1,1,2,0 277 | 52,1,0,125,212,0,1,168,0,1,2,2,3,0 278 | 58,1,0,146,218,0,1,105,0,2,1,1,3,0 279 | 57,1,1,124,261,0,1,141,0,0.3,2,0,3,0 280 | 58,0,1,136,319,1,0,152,0,0,2,2,2,0 281 | 61,1,0,138,166,0,0,125,1,3.6,1,1,2,0 282 | 42,1,0,136,315,0,1,125,1,1.8,1,0,1,0 283 | 52,1,0,128,204,1,1,156,1,1,1,0,0,0 284 | 59,1,2,126,218,1,1,134,0,2.2,1,1,1,0 285 | 40,1,0,152,223,0,1,181,0,0,2,0,3,0 286 | 61,1,0,140,207,0,0,138,1,1.9,2,1,3,0 287 | 46,1,0,140,311,0,1,120,1,1.8,1,2,3,0 288 | 59,1,3,134,204,0,1,162,0,0.8,2,2,2,0 289 | 57,1,1,154,232,0,0,164,0,0,2,1,2,0 290 | 57,1,0,110,335,0,1,143,1,3,1,1,3,0 291 | 55,0,0,128,205,0,2,130,1,2,1,1,3,0 292 | 61,1,0,148,203,0,1,161,0,0,2,1,3,0 293 | 58,1,0,114,318,0,2,140,0,4.4,0,3,1,0 294 | 58,0,0,170,225,1,0,146,1,2.8,1,2,1,0 295 | 67,1,2,152,212,0,0,150,0,0.8,1,0,3,0 296 | 44,1,0,120,169,0,1,144,1,2.8,0,0,1,0 297 | 63,1,0,140,187,0,0,144,1,4,2,2,3,0 298 | 63,0,0,124,197,0,1,136,1,0,1,0,2,0 299 | 59,1,0,164,176,1,0,90,0,1,1,2,1,0 300 | 57,0,0,140,241,0,1,123,1,0.2,1,0,3,0 301 | 45,1,3,110,264,0,1,132,0,1.2,1,0,3,0 302 | 68,1,0,144,193,1,1,141,0,3.4,1,2,3,0 303 | 57,1,0,130,131,0,1,115,1,1.2,1,1,3,0 304 | 57,0,1,130,236,0,0,174,0,0,1,1,2,0 305 | -------------------------------------------------------------------------------- /survey lung cancer.csv: -------------------------------------------------------------------------------- 1 | GENDER,AGE,SMOKING,YELLOW_FINGERS,ANXIETY,PEER_PRESSURE,CHRONIC DISEASE,FATIGUE ,ALLERGY ,WHEEZING,ALCOHOL CONSUMING,COUGHING,SHORTNESS OF BREATH,SWALLOWING DIFFICULTY,CHEST PAIN,LUNG_CANCER 2 | M,69,1,2,2,1,1,2,1,2,2,2,2,2,2,YES 3 | M,74,2,1,1,1,2,2,2,1,1,1,2,2,2,YES 4 | F,59,1,1,1,2,1,2,1,2,1,2,2,1,2,NO 5 | M,63,2,2,2,1,1,1,1,1,2,1,1,2,2,NO 6 | F,63,1,2,1,1,1,1,1,2,1,2,2,1,1,NO 7 | F,75,1,2,1,1,2,2,2,2,1,2,2,1,1,YES 8 | M,52,2,1,1,1,1,2,1,2,2,2,2,1,2,YES 9 | F,51,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 10 | F,68,2,1,2,1,1,2,1,1,1,1,1,1,1,NO 11 | M,53,2,2,2,2,2,1,2,1,2,1,1,2,2,YES 12 | F,61,2,2,2,2,2,2,1,2,1,2,2,2,1,YES 13 | M,72,1,1,1,1,2,2,2,2,2,2,2,1,2,YES 14 | F,60,2,1,1,1,1,2,1,1,1,1,2,1,1,NO 15 | M,58,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 16 | M,69,2,1,1,1,1,1,2,2,2,2,1,1,2,NO 17 | F,48,1,2,2,2,2,2,2,2,1,2,2,2,1,YES 18 | M,75,2,1,1,1,2,1,2,2,2,2,2,1,2,YES 19 | M,57,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 20 | F,68,2,2,2,2,2,2,1,1,1,2,2,1,1,YES 21 | F,61,1,1,1,1,2,2,1,1,1,1,2,1,1,NO 22 | F,44,2,2,2,2,2,2,1,1,1,1,2,2,1,YES 23 | F,64,1,2,2,2,1,1,2,2,1,2,1,2,1,YES 24 | F,21,2,1,1,1,2,2,2,1,1,1,2,1,1,NO 25 | M,60,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 26 | M,72,2,2,2,2,2,1,2,2,2,2,1,2,2,YES 27 | M,65,1,2,2,1,1,2,1,2,2,2,2,2,2,YES 28 | F,61,2,2,2,1,1,2,2,1,2,1,2,2,2,YES 29 | M,69,1,1,1,2,1,2,1,2,1,2,2,1,2,NO 30 | F,53,2,2,2,1,2,1,1,2,2,1,2,2,2,YES 31 | M,55,1,2,1,1,1,2,1,2,2,2,2,1,1,NO 32 | F,57,2,2,1,1,1,1,1,1,1,1,2,1,1,NO 33 | M,62,2,1,2,1,1,1,2,2,2,1,2,2,2,YES 34 | M,56,2,2,2,1,1,1,1,1,1,1,2,2,1,NO 35 | F,67,2,2,2,1,2,1,1,1,1,1,2,2,2,YES 36 | M,59,1,2,2,1,1,1,1,1,1,1,1,2,2,NO 37 | F,59,2,2,2,1,2,1,1,1,1,1,2,2,1,YES 38 | M,60,1,2,1,1,2,1,1,2,1,2,2,1,2,YES 39 | F,56,1,1,1,1,2,1,1,2,1,1,2,2,1,NO 40 | M,56,2,1,1,1,2,1,1,2,1,1,2,1,2,YES 41 | M,60,2,1,1,1,2,1,2,2,2,2,1,1,2,YES 42 | M,68,2,1,2,1,1,2,2,1,2,2,2,1,2,YES 43 | M,63,1,1,1,2,1,2,2,2,2,1,1,2,1,YES 44 | F,77,1,2,2,2,2,2,1,2,2,1,1,1,1,YES 45 | M,52,2,1,1,2,1,2,2,2,2,1,2,1,2,YES 46 | F,70,2,2,1,2,2,1,1,1,2,2,1,2,1,YES 47 | M,72,2,2,2,2,2,2,1,2,2,2,2,2,2,YES 48 | M,62,2,2,1,1,2,1,2,1,1,2,2,2,2,YES 49 | F,64,2,2,1,2,1,2,1,2,2,2,1,2,2,YES 50 | F,70,1,1,2,2,2,2,2,2,2,1,2,2,2,YES 51 | M,60,1,1,2,2,2,1,1,1,2,1,1,1,1,NO 52 | F,56,1,1,1,2,2,2,2,2,2,1,1,1,2,YES 53 | M,63,2,2,2,1,2,2,2,2,1,1,2,1,1,YES 54 | F,54,2,1,1,2,1,2,2,2,2,2,1,2,2,YES 55 | M,49,2,1,1,2,2,2,2,2,2,2,2,2,2,YES 56 | F,57,1,2,1,2,2,2,2,1,2,2,1,1,1,YES 57 | M,52,1,2,2,1,2,1,2,2,2,2,1,2,1,YES 58 | F,63,1,2,1,2,1,2,1,1,1,2,2,1,2,YES 59 | M,73,1,1,1,1,2,1,2,1,2,2,2,2,2,YES 60 | M,47,1,2,1,2,2,2,1,2,1,1,2,2,2,YES 61 | M,69,2,2,2,2,1,2,2,1,2,2,2,1,2,YES 62 | M,70,1,2,1,2,2,2,2,2,2,2,1,2,2,YES 63 | F,60,1,2,2,1,1,1,1,1,1,2,1,1,1,NO 64 | M,70,1,2,1,2,1,2,2,2,2,2,1,1,1,YES 65 | F,68,1,1,2,1,2,1,2,2,2,1,1,2,1,YES 66 | M,74,1,2,1,2,1,2,2,2,2,2,2,1,2,YES 67 | F,71,2,2,2,2,2,2,1,2,1,2,1,2,2,YES 68 | F,56,1,2,1,1,2,2,2,2,1,2,2,1,2,YES 69 | M,66,2,1,1,1,1,2,1,2,2,2,2,1,1,YES 70 | F,76,2,2,2,2,1,2,2,1,1,1,2,2,2,YES 71 | F,78,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 72 | M,68,2,2,2,2,1,1,2,1,2,1,1,2,2,YES 73 | F,66,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 74 | M,67,1,1,1,1,2,2,2,2,2,2,2,1,2,YES 75 | F,60,2,1,1,1,2,2,1,1,1,1,2,1,1,YES 76 | M,61,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 77 | M,58,2,1,1,1,1,1,2,2,2,2,1,1,1,YES 78 | F,76,1,2,2,2,2,2,2,2,1,2,2,2,2,YES 79 | M,56,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 80 | M,67,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 81 | F,73,2,2,2,2,1,2,1,1,1,2,2,2,2,YES 82 | F,58,1,1,1,1,1,2,1,1,1,1,2,1,1,NO 83 | F,54,2,2,2,2,2,2,1,1,1,1,2,2,1,YES 84 | F,62,2,2,2,2,2,1,2,2,2,1,1,2,2,YES 85 | F,81,1,1,1,2,2,1,2,1,2,2,2,1,1,YES 86 | M,56,1,1,1,1,2,2,2,1,2,2,2,1,2,YES 87 | M,60,1,2,2,1,1,1,1,2,2,2,2,2,1,YES 88 | M,66,1,2,2,1,2,1,2,1,2,2,2,1,2,YES 89 | M,62,1,2,2,1,1,2,1,2,1,1,1,2,2,YES 90 | F,62,2,2,2,1,2,1,2,1,2,1,1,1,1,YES 91 | F,55,2,1,1,2,2,2,2,2,2,1,1,2,2,YES 92 | F,62,1,1,1,2,1,1,1,2,2,1,1,2,2,YES 93 | F,71,1,1,1,1,2,2,2,1,1,2,2,1,2,YES 94 | M,52,2,1,1,1,2,2,2,2,2,1,1,2,2,YES 95 | F,59,1,2,2,2,2,1,2,2,2,2,2,2,1,YES 96 | M,48,2,1,1,1,2,2,2,1,2,2,2,2,2,YES 97 | M,60,1,2,2,2,1,2,1,1,1,1,1,2,2,YES 98 | F,61,2,2,2,1,1,1,2,1,2,2,2,1,2,YES 99 | M,59,2,1,1,2,1,1,1,1,2,2,2,1,1,YES 100 | M,64,1,2,2,2,1,2,2,1,1,2,1,2,1,YES 101 | M,56,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 102 | M,58,2,1,1,1,1,1,2,2,2,2,1,1,1,YES 103 | F,81,1,2,2,2,2,2,2,2,1,2,2,2,2,YES 104 | M,64,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 105 | M,62,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 106 | F,72,2,2,2,2,1,2,1,1,1,2,2,2,2,YES 107 | F,60,1,1,1,1,2,2,1,1,1,1,2,1,1,YES 108 | F,61,2,2,2,2,2,2,1,1,1,1,2,2,1,YES 109 | F,60,2,2,2,2,2,1,2,2,2,1,1,2,2,YES 110 | F,49,1,1,1,2,2,1,2,1,2,2,2,1,1,YES 111 | M,53,1,1,1,1,2,2,2,1,2,1,2,1,2,YES 112 | M,58,1,2,2,1,1,2,1,2,2,2,2,2,2,YES 113 | M,61,2,2,2,1,1,2,2,1,2,1,2,2,2,YES 114 | F,68,1,1,1,2,1,2,1,2,1,2,2,1,2,YES 115 | M,60,2,2,2,1,1,1,1,1,2,1,1,2,2,YES 116 | F,72,1,2,1,1,1,2,1,2,2,2,2,1,1,YES 117 | F,72,1,2,1,1,2,2,2,2,1,2,2,1,1,YES 118 | M,57,2,1,1,1,1,2,1,2,2,2,2,1,2,YES 119 | F,51,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 120 | F,54,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 121 | F,56,1,2,2,2,1,1,2,1,2,1,1,2,2,YES 122 | M,77,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 123 | M,64,1,1,1,1,2,2,2,2,2,2,2,1,2,YES 124 | M,57,2,1,2,1,2,2,1,1,1,1,2,1,1,YES 125 | F,66,2,2,2,1,2,2,2,2,2,2,2,1,1,YES 126 | M,70,2,1,1,1,1,1,2,1,2,2,1,1,2,YES 127 | F,53,1,2,2,2,2,2,2,1,1,2,2,1,1,YES 128 | M,51,2,1,1,1,1,2,1,2,2,2,2,1,2,YES 129 | M,58,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 130 | F,58,2,2,2,2,1,2,1,1,1,2,2,2,1,YES 131 | F,63,1,1,1,1,2,2,1,1,1,1,2,1,1,NO 132 | F,51,2,2,2,2,1,2,1,1,1,1,2,2,1,YES 133 | F,61,1,2,2,2,1,1,2,2,1,2,1,2,1,YES 134 | F,61,2,1,1,1,2,2,2,1,1,1,2,1,1,YES 135 | M,76,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 136 | M,71,2,2,2,1,2,1,2,2,2,2,1,2,2,YES 137 | M,69,1,1,2,1,1,2,1,2,2,2,2,2,1,YES 138 | F,56,2,2,2,1,1,2,2,1,1,1,2,1,2,YES 139 | M,67,1,1,1,2,1,2,1,2,1,2,2,1,2,YES 140 | F,54,2,2,2,1,2,1,1,2,2,1,2,2,2,YES 141 | M,63,1,2,1,1,1,2,1,2,2,2,2,1,1,YES 142 | F,47,2,2,1,2,2,2,2,2,1,2,2,1,1,YES 143 | M,62,2,1,2,1,1,2,1,2,2,2,2,1,2,YES 144 | M,65,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 145 | F,63,2,2,2,2,2,2,2,2,1,2,2,2,2,YES 146 | M,64,1,2,2,2,1,1,2,1,2,1,1,2,2,YES 147 | F,65,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 148 | M,51,1,2,1,1,2,2,2,2,2,2,2,1,2,YES 149 | F,56,1,1,1,2,2,2,1,1,2,2,2,2,1,YES 150 | M,70,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 151 | M,58,2,1,1,1,1,1,2,2,2,2,1,1,2,YES 152 | M,67,2,1,2,1,1,2,2,1,2,2,2,1,2,YES 153 | M,62,1,1,1,2,1,2,2,2,2,1,1,2,1,YES 154 | F,74,1,2,2,2,2,2,1,2,2,1,1,1,1,YES 155 | M,69,2,1,1,2,1,1,1,1,1,1,1,1,2,NO 156 | F,64,2,2,1,2,2,1,1,1,1,1,1,1,1,NO 157 | M,75,2,2,2,2,2,1,1,1,1,1,1,1,2,YES 158 | M,47,2,2,1,1,2,1,1,1,1,1,1,1,2,NO 159 | F,57,2,2,1,2,1,1,1,1,1,1,1,1,2,NO 160 | F,56,1,1,2,2,2,2,2,2,2,1,2,2,2,YES 161 | M,68,1,1,2,2,2,1,1,1,2,1,1,1,1,NO 162 | F,55,1,1,1,2,2,2,2,2,2,1,1,1,2,YES 163 | M,62,2,2,2,1,2,2,2,2,1,1,2,1,1,YES 164 | F,73,2,1,1,2,1,2,2,2,2,2,1,2,2,YES 165 | M,68,2,1,1,2,2,2,2,2,2,2,2,2,2,YES 166 | F,75,1,2,1,2,2,2,2,1,2,2,1,1,1,YES 167 | M,63,1,2,2,1,2,1,2,2,2,2,1,2,1,YES 168 | F,61,1,2,1,2,1,2,1,1,1,2,2,1,2,YES 169 | M,62,1,1,1,1,2,1,2,1,2,2,2,2,2,YES 170 | M,44,1,2,1,2,2,2,1,2,1,1,2,2,2,YES 171 | M,56,2,2,2,2,1,2,2,1,2,2,2,1,2,YES 172 | M,54,1,2,1,2,2,2,2,2,2,2,1,2,2,YES 173 | F,57,1,2,2,1,1,1,1,1,1,2,1,1,1,NO 174 | M,56,1,2,1,2,1,2,2,2,2,2,1,1,1,YES 175 | F,69,1,1,2,1,2,1,2,2,2,1,1,2,1,YES 176 | M,72,1,2,1,2,1,2,2,2,2,2,2,1,2,YES 177 | F,59,2,2,2,2,2,2,1,2,1,2,1,2,2,YES 178 | F,70,1,2,1,1,2,2,2,2,1,2,2,1,2,YES 179 | M,64,2,1,1,1,1,2,1,2,2,2,2,1,1,YES 180 | F,61,2,2,2,2,1,2,2,1,1,1,2,2,2,YES 181 | F,72,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 182 | M,63,2,2,2,2,1,1,2,1,2,1,1,2,2,YES 183 | F,74,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 184 | M,71,1,1,1,1,2,2,2,2,2,2,2,1,2,YES 185 | F,71,2,1,1,1,2,2,1,1,1,1,2,1,1,NO 186 | M,72,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 187 | M,77,2,1,1,1,1,1,2,2,2,2,1,1,1,YES 188 | F,72,1,2,2,2,2,2,1,1,1,1,1,1,1,YES 189 | M,55,2,1,1,1,1,2,1,1,1,1,1,1,1,YES 190 | M,65,2,2,2,2,2,1,1,1,1,1,1,1,1,YES 191 | F,67,2,2,2,2,1,2,1,1,1,1,1,1,1,YES 192 | F,69,1,1,1,1,2,2,1,1,1,1,1,1,1,YES 193 | F,55,2,2,2,2,2,2,1,1,1,1,1,1,1,YES 194 | F,51,2,2,2,2,2,1,1,1,1,1,1,1,1,YES 195 | F,64,1,1,1,2,2,1,1,1,1,1,1,1,1,YES 196 | M,63,1,1,1,1,2,2,2,1,2,2,2,1,2,YES 197 | M,69,1,2,2,1,1,1,1,2,2,2,2,2,1,YES 198 | M,64,1,2,2,1,2,1,2,1,2,2,2,1,2,YES 199 | M,59,1,2,2,1,1,2,1,2,1,1,1,2,2,YES 200 | F,73,2,2,2,1,2,1,2,1,2,1,1,1,1,YES 201 | F,55,2,1,1,2,2,2,2,2,2,1,1,2,2,YES 202 | F,63,1,1,1,2,1,1,1,2,2,1,1,2,2,YES 203 | F,60,1,1,1,1,2,2,2,1,1,2,2,1,2,YES 204 | M,74,2,1,1,1,2,2,2,2,2,1,1,2,2,YES 205 | F,65,1,2,2,2,2,1,2,2,2,2,2,2,1,YES 206 | M,79,2,1,1,1,2,2,2,1,2,2,2,2,2,YES 207 | M,62,1,2,2,2,1,2,1,1,1,1,1,2,2,YES 208 | F,71,2,2,2,1,1,1,2,1,2,2,2,1,2,YES 209 | M,63,2,1,1,2,1,1,1,1,1,2,2,1,1,NO 210 | M,67,1,2,2,2,1,2,2,1,1,2,1,2,1,YES 211 | M,55,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 212 | M,54,2,1,1,1,1,1,2,2,2,2,1,1,1,YES 213 | F,77,1,2,2,2,2,2,2,2,1,2,2,2,2,YES 214 | M,58,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 215 | M,64,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 216 | F,61,2,2,2,2,1,2,1,1,1,2,2,2,2,YES 217 | F,62,1,1,1,1,2,2,1,1,1,1,2,1,1,NO 218 | F,67,2,2,2,2,2,2,1,1,1,1,2,2,1,YES 219 | F,56,2,2,2,2,2,1,2,2,2,1,1,2,2,YES 220 | F,70,1,1,1,2,2,1,2,1,2,2,2,1,1,YES 221 | M,70,1,1,1,1,2,2,2,1,2,2,2,1,2,YES 222 | F,57,1,1,2,2,2,2,2,2,2,1,2,2,2,YES 223 | M,61,1,1,2,2,2,1,1,1,2,1,1,1,1,NO 224 | F,77,1,1,1,2,2,2,2,2,2,1,1,1,2,YES 225 | M,63,2,2,2,1,2,2,2,2,1,1,2,1,1,YES 226 | F,62,2,1,1,2,1,2,2,2,2,2,1,2,2,YES 227 | M,59,2,1,1,2,2,2,2,2,2,2,2,2,2,YES 228 | F,70,1,2,1,2,2,2,2,1,2,2,1,1,1,YES 229 | M,71,1,2,2,1,2,1,2,2,2,2,1,2,1,YES 230 | F,56,1,2,1,2,1,2,1,1,1,2,2,1,2,YES 231 | M,57,1,1,1,1,2,1,2,1,2,2,2,2,2,YES 232 | M,78,1,2,1,2,2,2,1,2,1,1,2,2,2,YES 233 | M,64,2,2,2,2,1,2,2,1,2,2,2,1,2,YES 234 | M,62,1,2,1,2,2,2,2,2,2,2,1,2,2,YES 235 | F,49,1,2,2,1,1,1,1,1,1,2,1,1,1,YES 236 | M,77,1,2,1,2,1,2,2,2,2,2,1,1,1,YES 237 | F,64,1,1,2,1,2,1,2,2,2,1,1,2,1,YES 238 | M,63,1,2,1,2,1,2,2,2,2,2,2,1,2,YES 239 | F,54,2,2,2,2,2,2,1,2,1,2,1,2,2,YES 240 | F,38,1,2,1,1,2,2,2,2,1,2,2,1,2,YES 241 | F,75,1,2,2,2,1,1,2,2,1,2,1,2,1,YES 242 | F,70,2,1,1,2,2,1,2,1,1,1,2,1,1,YES 243 | M,59,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 244 | M,77,2,2,2,1,2,1,2,2,1,1,1,2,2,YES 245 | M,61,1,1,2,1,2,2,1,2,2,2,2,2,1,YES 246 | F,64,2,2,2,1,1,2,2,1,1,1,2,1,2,YES 247 | M,59,1,1,1,2,1,2,1,2,1,1,2,1,2,NO 248 | F,71,2,2,2,1,2,1,1,2,2,1,2,2,2,YES 249 | M,67,1,2,1,1,1,2,1,2,2,2,2,1,1,YES 250 | F,64,2,2,1,2,2,2,2,2,1,2,2,1,1,YES 251 | M,68,2,1,2,1,1,2,1,1,1,1,1,1,1,NO 252 | M,69,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 253 | F,64,2,2,2,2,2,2,2,2,1,2,2,2,2,YES 254 | M,59,1,2,2,2,2,1,2,1,2,1,1,2,2,YES 255 | F,67,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 256 | M,74,1,2,1,1,2,2,2,2,2,2,2,1,2,YES 257 | F,77,1,1,1,2,2,2,1,1,2,2,2,2,1,YES 258 | M,60,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 259 | M,64,2,1,1,1,1,1,2,2,2,2,1,1,2,YES 260 | M,70,2,1,2,1,1,2,2,1,2,2,2,1,2,YES 261 | M,58,1,1,1,2,1,2,2,2,2,1,1,2,1,YES 262 | F,59,1,2,2,2,2,2,1,2,2,1,1,1,1,YES 263 | M,39,2,1,1,2,1,2,2,2,2,1,2,1,2,YES 264 | F,67,1,2,1,1,1,1,1,2,1,2,2,1,1,NO 265 | F,71,1,2,1,1,2,2,2,2,1,2,2,1,1,YES 266 | M,70,2,1,1,1,1,2,1,2,2,2,2,1,2,YES 267 | F,60,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 268 | F,55,2,1,2,1,1,2,1,1,1,1,1,1,1,NO 269 | M,60,2,2,2,2,2,1,2,1,2,1,1,2,2,YES 270 | F,55,2,2,2,2,2,2,1,2,1,2,2,2,1,YES 271 | M,55,1,1,1,1,2,2,2,2,2,2,2,1,2,YES 272 | F,70,2,1,1,1,1,2,1,1,1,1,2,1,1,NO 273 | M,63,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 274 | M,64,2,1,1,1,1,1,2,2,2,2,1,1,2,NO 275 | F,59,1,2,2,2,2,2,2,2,1,2,2,2,1,YES 276 | M,56,2,1,1,1,2,1,2,2,2,2,2,1,2,YES 277 | M,64,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 278 | F,62,2,2,2,2,2,2,1,1,1,2,2,1,1,YES 279 | F,87,1,1,1,1,2,2,1,1,1,1,2,1,1,NO 280 | F,77,2,2,2,2,2,2,1,1,1,1,2,2,1,YES 281 | F,59,1,2,2,2,1,1,2,2,1,2,1,2,1,YES 282 | F,59,2,1,1,1,2,2,2,1,1,1,2,1,1,NO 283 | M,55,2,1,1,1,1,2,2,1,1,1,2,1,2,NO 284 | M,46,1,2,2,1,1,1,1,1,1,1,1,2,2,NO 285 | M,60,1,2,2,1,1,2,1,2,2,2,2,2,2,YES 286 | M,58,2,2,2,2,2,1,1,1,2,1,1,2,2,YES 287 | F,58,2,2,2,2,1,2,1,1,1,2,2,2,1,YES 288 | F,63,1,1,1,1,2,2,1,1,1,1,2,1,1,NO 289 | F,51,2,2,2,2,1,2,1,1,1,1,2,2,1,YES 290 | F,61,1,2,2,2,1,1,2,2,1,2,1,2,1,YES 291 | F,61,2,1,1,1,2,2,2,1,1,1,2,1,1,YES 292 | M,76,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 293 | M,71,2,2,2,1,2,1,2,2,2,2,1,2,2,YES 294 | M,69,1,1,2,1,1,2,1,2,2,2,2,2,1,YES 295 | F,56,2,2,2,1,1,2,2,1,1,1,2,1,2,YES 296 | M,67,1,1,1,2,1,2,1,2,1,2,2,1,2,YES 297 | F,54,2,2,2,1,2,1,1,2,2,1,2,2,2,YES 298 | M,63,1,2,1,1,1,2,1,2,2,2,2,1,1,YES 299 | F,47,2,2,1,2,2,2,2,2,1,2,2,1,1,YES 300 | M,62,2,1,2,1,1,2,1,2,2,2,2,1,2,YES 301 | M,65,2,2,2,2,1,2,2,1,1,1,2,2,1,YES 302 | F,63,2,2,2,2,2,2,2,2,1,2,2,2,2,YES 303 | M,64,1,2,2,2,1,1,2,1,2,1,1,2,2,YES 304 | F,65,2,2,2,2,1,2,1,2,1,2,2,2,1,YES 305 | M,51,1,2,1,1,2,2,2,2,2,2,2,1,2,YES 306 | F,56,1,1,1,2,2,2,1,1,2,2,2,2,1,YES 307 | M,70,2,1,1,1,1,2,2,2,2,2,2,1,2,YES 308 | M,58,2,1,1,1,1,1,2,2,2,2,1,1,2,YES 309 | M,67,2,1,2,1,1,2,2,1,2,2,2,1,2,YES 310 | M,62,1,1,1,2,1,2,2,2,2,1,1,2,1,YES 311 | -------------------------------------------------------------------------------- /diabetes.csv: -------------------------------------------------------------------------------- 1 | Pregnancies,Glucose,BloodPressure,SkinThickness,Insulin,BMI,DiabetesPedigreeFunction,Age,Outcome 2 | 6,148,72,35,0,33.6,0.627,50,1 3 | 1,85,66,29,0,26.6,0.351,31,0 4 | 8,183,64,0,0,23.3,0.672,32,1 5 | 1,89,66,23,94,28.1,0.167,21,0 6 | 0,137,40,35,168,43.1,2.288,33,1 7 | 5,116,74,0,0,25.6,0.201,30,0 8 | 3,78,50,32,88,31,0.248,26,1 9 | 10,115,0,0,0,35.3,0.134,29,0 10 | 2,197,70,45,543,30.5,0.158,53,1 11 | 8,125,96,0,0,0,0.232,54,1 12 | 4,110,92,0,0,37.6,0.191,30,0 13 | 10,168,74,0,0,38,0.537,34,1 14 | 10,139,80,0,0,27.1,1.441,57,0 15 | 1,189,60,23,846,30.1,0.398,59,1 16 | 5,166,72,19,175,25.8,0.587,51,1 17 | 7,100,0,0,0,30,0.484,32,1 18 | 0,118,84,47,230,45.8,0.551,31,1 19 | 7,107,74,0,0,29.6,0.254,31,1 20 | 1,103,30,38,83,43.3,0.183,33,0 21 | 1,115,70,30,96,34.6,0.529,32,1 22 | 3,126,88,41,235,39.3,0.704,27,0 23 | 8,99,84,0,0,35.4,0.388,50,0 24 | 7,196,90,0,0,39.8,0.451,41,1 25 | 9,119,80,35,0,29,0.263,29,1 26 | 11,143,94,33,146,36.6,0.254,51,1 27 | 10,125,70,26,115,31.1,0.205,41,1 28 | 7,147,76,0,0,39.4,0.257,43,1 29 | 1,97,66,15,140,23.2,0.487,22,0 30 | 13,145,82,19,110,22.2,0.245,57,0 31 | 5,117,92,0,0,34.1,0.337,38,0 32 | 5,109,75,26,0,36,0.546,60,0 33 | 3,158,76,36,245,31.6,0.851,28,1 34 | 3,88,58,11,54,24.8,0.267,22,0 35 | 6,92,92,0,0,19.9,0.188,28,0 36 | 10,122,78,31,0,27.6,0.512,45,0 37 | 4,103,60,33,192,24,0.966,33,0 38 | 11,138,76,0,0,33.2,0.42,35,0 39 | 9,102,76,37,0,32.9,0.665,46,1 40 | 2,90,68,42,0,38.2,0.503,27,1 41 | 4,111,72,47,207,37.1,1.39,56,1 42 | 3,180,64,25,70,34,0.271,26,0 43 | 7,133,84,0,0,40.2,0.696,37,0 44 | 7,106,92,18,0,22.7,0.235,48,0 45 | 9,171,110,24,240,45.4,0.721,54,1 46 | 7,159,64,0,0,27.4,0.294,40,0 47 | 0,180,66,39,0,42,1.893,25,1 48 | 1,146,56,0,0,29.7,0.564,29,0 49 | 2,71,70,27,0,28,0.586,22,0 50 | 7,103,66,32,0,39.1,0.344,31,1 51 | 7,105,0,0,0,0,0.305,24,0 52 | 1,103,80,11,82,19.4,0.491,22,0 53 | 1,101,50,15,36,24.2,0.526,26,0 54 | 5,88,66,21,23,24.4,0.342,30,0 55 | 8,176,90,34,300,33.7,0.467,58,1 56 | 7,150,66,42,342,34.7,0.718,42,0 57 | 1,73,50,10,0,23,0.248,21,0 58 | 7,187,68,39,304,37.7,0.254,41,1 59 | 0,100,88,60,110,46.8,0.962,31,0 60 | 0,146,82,0,0,40.5,1.781,44,0 61 | 0,105,64,41,142,41.5,0.173,22,0 62 | 2,84,0,0,0,0,0.304,21,0 63 | 8,133,72,0,0,32.9,0.27,39,1 64 | 5,44,62,0,0,25,0.587,36,0 65 | 2,141,58,34,128,25.4,0.699,24,0 66 | 7,114,66,0,0,32.8,0.258,42,1 67 | 5,99,74,27,0,29,0.203,32,0 68 | 0,109,88,30,0,32.5,0.855,38,1 69 | 2,109,92,0,0,42.7,0.845,54,0 70 | 1,95,66,13,38,19.6,0.334,25,0 71 | 4,146,85,27,100,28.9,0.189,27,0 72 | 2,100,66,20,90,32.9,0.867,28,1 73 | 5,139,64,35,140,28.6,0.411,26,0 74 | 13,126,90,0,0,43.4,0.583,42,1 75 | 4,129,86,20,270,35.1,0.231,23,0 76 | 1,79,75,30,0,32,0.396,22,0 77 | 1,0,48,20,0,24.7,0.14,22,0 78 | 7,62,78,0,0,32.6,0.391,41,0 79 | 5,95,72,33,0,37.7,0.37,27,0 80 | 0,131,0,0,0,43.2,0.27,26,1 81 | 2,112,66,22,0,25,0.307,24,0 82 | 3,113,44,13,0,22.4,0.14,22,0 83 | 2,74,0,0,0,0,0.102,22,0 84 | 7,83,78,26,71,29.3,0.767,36,0 85 | 0,101,65,28,0,24.6,0.237,22,0 86 | 5,137,108,0,0,48.8,0.227,37,1 87 | 2,110,74,29,125,32.4,0.698,27,0 88 | 13,106,72,54,0,36.6,0.178,45,0 89 | 2,100,68,25,71,38.5,0.324,26,0 90 | 15,136,70,32,110,37.1,0.153,43,1 91 | 1,107,68,19,0,26.5,0.165,24,0 92 | 1,80,55,0,0,19.1,0.258,21,0 93 | 4,123,80,15,176,32,0.443,34,0 94 | 7,81,78,40,48,46.7,0.261,42,0 95 | 4,134,72,0,0,23.8,0.277,60,1 96 | 2,142,82,18,64,24.7,0.761,21,0 97 | 6,144,72,27,228,33.9,0.255,40,0 98 | 2,92,62,28,0,31.6,0.13,24,0 99 | 1,71,48,18,76,20.4,0.323,22,0 100 | 6,93,50,30,64,28.7,0.356,23,0 101 | 1,122,90,51,220,49.7,0.325,31,1 102 | 1,163,72,0,0,39,1.222,33,1 103 | 1,151,60,0,0,26.1,0.179,22,0 104 | 0,125,96,0,0,22.5,0.262,21,0 105 | 1,81,72,18,40,26.6,0.283,24,0 106 | 2,85,65,0,0,39.6,0.93,27,0 107 | 1,126,56,29,152,28.7,0.801,21,0 108 | 1,96,122,0,0,22.4,0.207,27,0 109 | 4,144,58,28,140,29.5,0.287,37,0 110 | 3,83,58,31,18,34.3,0.336,25,0 111 | 0,95,85,25,36,37.4,0.247,24,1 112 | 3,171,72,33,135,33.3,0.199,24,1 113 | 8,155,62,26,495,34,0.543,46,1 114 | 1,89,76,34,37,31.2,0.192,23,0 115 | 4,76,62,0,0,34,0.391,25,0 116 | 7,160,54,32,175,30.5,0.588,39,1 117 | 4,146,92,0,0,31.2,0.539,61,1 118 | 5,124,74,0,0,34,0.22,38,1 119 | 5,78,48,0,0,33.7,0.654,25,0 120 | 4,97,60,23,0,28.2,0.443,22,0 121 | 4,99,76,15,51,23.2,0.223,21,0 122 | 0,162,76,56,100,53.2,0.759,25,1 123 | 6,111,64,39,0,34.2,0.26,24,0 124 | 2,107,74,30,100,33.6,0.404,23,0 125 | 5,132,80,0,0,26.8,0.186,69,0 126 | 0,113,76,0,0,33.3,0.278,23,1 127 | 1,88,30,42,99,55,0.496,26,1 128 | 3,120,70,30,135,42.9,0.452,30,0 129 | 1,118,58,36,94,33.3,0.261,23,0 130 | 1,117,88,24,145,34.5,0.403,40,1 131 | 0,105,84,0,0,27.9,0.741,62,1 132 | 4,173,70,14,168,29.7,0.361,33,1 133 | 9,122,56,0,0,33.3,1.114,33,1 134 | 3,170,64,37,225,34.5,0.356,30,1 135 | 8,84,74,31,0,38.3,0.457,39,0 136 | 2,96,68,13,49,21.1,0.647,26,0 137 | 2,125,60,20,140,33.8,0.088,31,0 138 | 0,100,70,26,50,30.8,0.597,21,0 139 | 0,93,60,25,92,28.7,0.532,22,0 140 | 0,129,80,0,0,31.2,0.703,29,0 141 | 5,105,72,29,325,36.9,0.159,28,0 142 | 3,128,78,0,0,21.1,0.268,55,0 143 | 5,106,82,30,0,39.5,0.286,38,0 144 | 2,108,52,26,63,32.5,0.318,22,0 145 | 10,108,66,0,0,32.4,0.272,42,1 146 | 4,154,62,31,284,32.8,0.237,23,0 147 | 0,102,75,23,0,0,0.572,21,0 148 | 9,57,80,37,0,32.8,0.096,41,0 149 | 2,106,64,35,119,30.5,1.4,34,0 150 | 5,147,78,0,0,33.7,0.218,65,0 151 | 2,90,70,17,0,27.3,0.085,22,0 152 | 1,136,74,50,204,37.4,0.399,24,0 153 | 4,114,65,0,0,21.9,0.432,37,0 154 | 9,156,86,28,155,34.3,1.189,42,1 155 | 1,153,82,42,485,40.6,0.687,23,0 156 | 8,188,78,0,0,47.9,0.137,43,1 157 | 7,152,88,44,0,50,0.337,36,1 158 | 2,99,52,15,94,24.6,0.637,21,0 159 | 1,109,56,21,135,25.2,0.833,23,0 160 | 2,88,74,19,53,29,0.229,22,0 161 | 17,163,72,41,114,40.9,0.817,47,1 162 | 4,151,90,38,0,29.7,0.294,36,0 163 | 7,102,74,40,105,37.2,0.204,45,0 164 | 0,114,80,34,285,44.2,0.167,27,0 165 | 2,100,64,23,0,29.7,0.368,21,0 166 | 0,131,88,0,0,31.6,0.743,32,1 167 | 6,104,74,18,156,29.9,0.722,41,1 168 | 3,148,66,25,0,32.5,0.256,22,0 169 | 4,120,68,0,0,29.6,0.709,34,0 170 | 4,110,66,0,0,31.9,0.471,29,0 171 | 3,111,90,12,78,28.4,0.495,29,0 172 | 6,102,82,0,0,30.8,0.18,36,1 173 | 6,134,70,23,130,35.4,0.542,29,1 174 | 2,87,0,23,0,28.9,0.773,25,0 175 | 1,79,60,42,48,43.5,0.678,23,0 176 | 2,75,64,24,55,29.7,0.37,33,0 177 | 8,179,72,42,130,32.7,0.719,36,1 178 | 6,85,78,0,0,31.2,0.382,42,0 179 | 0,129,110,46,130,67.1,0.319,26,1 180 | 5,143,78,0,0,45,0.19,47,0 181 | 5,130,82,0,0,39.1,0.956,37,1 182 | 6,87,80,0,0,23.2,0.084,32,0 183 | 0,119,64,18,92,34.9,0.725,23,0 184 | 1,0,74,20,23,27.7,0.299,21,0 185 | 5,73,60,0,0,26.8,0.268,27,0 186 | 4,141,74,0,0,27.6,0.244,40,0 187 | 7,194,68,28,0,35.9,0.745,41,1 188 | 8,181,68,36,495,30.1,0.615,60,1 189 | 1,128,98,41,58,32,1.321,33,1 190 | 8,109,76,39,114,27.9,0.64,31,1 191 | 5,139,80,35,160,31.6,0.361,25,1 192 | 3,111,62,0,0,22.6,0.142,21,0 193 | 9,123,70,44,94,33.1,0.374,40,0 194 | 7,159,66,0,0,30.4,0.383,36,1 195 | 11,135,0,0,0,52.3,0.578,40,1 196 | 8,85,55,20,0,24.4,0.136,42,0 197 | 5,158,84,41,210,39.4,0.395,29,1 198 | 1,105,58,0,0,24.3,0.187,21,0 199 | 3,107,62,13,48,22.9,0.678,23,1 200 | 4,109,64,44,99,34.8,0.905,26,1 201 | 4,148,60,27,318,30.9,0.15,29,1 202 | 0,113,80,16,0,31,0.874,21,0 203 | 1,138,82,0,0,40.1,0.236,28,0 204 | 0,108,68,20,0,27.3,0.787,32,0 205 | 2,99,70,16,44,20.4,0.235,27,0 206 | 6,103,72,32,190,37.7,0.324,55,0 207 | 5,111,72,28,0,23.9,0.407,27,0 208 | 8,196,76,29,280,37.5,0.605,57,1 209 | 5,162,104,0,0,37.7,0.151,52,1 210 | 1,96,64,27,87,33.2,0.289,21,0 211 | 7,184,84,33,0,35.5,0.355,41,1 212 | 2,81,60,22,0,27.7,0.29,25,0 213 | 0,147,85,54,0,42.8,0.375,24,0 214 | 7,179,95,31,0,34.2,0.164,60,0 215 | 0,140,65,26,130,42.6,0.431,24,1 216 | 9,112,82,32,175,34.2,0.26,36,1 217 | 12,151,70,40,271,41.8,0.742,38,1 218 | 5,109,62,41,129,35.8,0.514,25,1 219 | 6,125,68,30,120,30,0.464,32,0 220 | 5,85,74,22,0,29,1.224,32,1 221 | 5,112,66,0,0,37.8,0.261,41,1 222 | 0,177,60,29,478,34.6,1.072,21,1 223 | 2,158,90,0,0,31.6,0.805,66,1 224 | 7,119,0,0,0,25.2,0.209,37,0 225 | 7,142,60,33,190,28.8,0.687,61,0 226 | 1,100,66,15,56,23.6,0.666,26,0 227 | 1,87,78,27,32,34.6,0.101,22,0 228 | 0,101,76,0,0,35.7,0.198,26,0 229 | 3,162,52,38,0,37.2,0.652,24,1 230 | 4,197,70,39,744,36.7,2.329,31,0 231 | 0,117,80,31,53,45.2,0.089,24,0 232 | 4,142,86,0,0,44,0.645,22,1 233 | 6,134,80,37,370,46.2,0.238,46,1 234 | 1,79,80,25,37,25.4,0.583,22,0 235 | 4,122,68,0,0,35,0.394,29,0 236 | 3,74,68,28,45,29.7,0.293,23,0 237 | 4,171,72,0,0,43.6,0.479,26,1 238 | 7,181,84,21,192,35.9,0.586,51,1 239 | 0,179,90,27,0,44.1,0.686,23,1 240 | 9,164,84,21,0,30.8,0.831,32,1 241 | 0,104,76,0,0,18.4,0.582,27,0 242 | 1,91,64,24,0,29.2,0.192,21,0 243 | 4,91,70,32,88,33.1,0.446,22,0 244 | 3,139,54,0,0,25.6,0.402,22,1 245 | 6,119,50,22,176,27.1,1.318,33,1 246 | 2,146,76,35,194,38.2,0.329,29,0 247 | 9,184,85,15,0,30,1.213,49,1 248 | 10,122,68,0,0,31.2,0.258,41,0 249 | 0,165,90,33,680,52.3,0.427,23,0 250 | 9,124,70,33,402,35.4,0.282,34,0 251 | 1,111,86,19,0,30.1,0.143,23,0 252 | 9,106,52,0,0,31.2,0.38,42,0 253 | 2,129,84,0,0,28,0.284,27,0 254 | 2,90,80,14,55,24.4,0.249,24,0 255 | 0,86,68,32,0,35.8,0.238,25,0 256 | 12,92,62,7,258,27.6,0.926,44,1 257 | 1,113,64,35,0,33.6,0.543,21,1 258 | 3,111,56,39,0,30.1,0.557,30,0 259 | 2,114,68,22,0,28.7,0.092,25,0 260 | 1,193,50,16,375,25.9,0.655,24,0 261 | 11,155,76,28,150,33.3,1.353,51,1 262 | 3,191,68,15,130,30.9,0.299,34,0 263 | 3,141,0,0,0,30,0.761,27,1 264 | 4,95,70,32,0,32.1,0.612,24,0 265 | 3,142,80,15,0,32.4,0.2,63,0 266 | 4,123,62,0,0,32,0.226,35,1 267 | 5,96,74,18,67,33.6,0.997,43,0 268 | 0,138,0,0,0,36.3,0.933,25,1 269 | 2,128,64,42,0,40,1.101,24,0 270 | 0,102,52,0,0,25.1,0.078,21,0 271 | 2,146,0,0,0,27.5,0.24,28,1 272 | 10,101,86,37,0,45.6,1.136,38,1 273 | 2,108,62,32,56,25.2,0.128,21,0 274 | 3,122,78,0,0,23,0.254,40,0 275 | 1,71,78,50,45,33.2,0.422,21,0 276 | 13,106,70,0,0,34.2,0.251,52,0 277 | 2,100,70,52,57,40.5,0.677,25,0 278 | 7,106,60,24,0,26.5,0.296,29,1 279 | 0,104,64,23,116,27.8,0.454,23,0 280 | 5,114,74,0,0,24.9,0.744,57,0 281 | 2,108,62,10,278,25.3,0.881,22,0 282 | 0,146,70,0,0,37.9,0.334,28,1 283 | 10,129,76,28,122,35.9,0.28,39,0 284 | 7,133,88,15,155,32.4,0.262,37,0 285 | 7,161,86,0,0,30.4,0.165,47,1 286 | 2,108,80,0,0,27,0.259,52,1 287 | 7,136,74,26,135,26,0.647,51,0 288 | 5,155,84,44,545,38.7,0.619,34,0 289 | 1,119,86,39,220,45.6,0.808,29,1 290 | 4,96,56,17,49,20.8,0.34,26,0 291 | 5,108,72,43,75,36.1,0.263,33,0 292 | 0,78,88,29,40,36.9,0.434,21,0 293 | 0,107,62,30,74,36.6,0.757,25,1 294 | 2,128,78,37,182,43.3,1.224,31,1 295 | 1,128,48,45,194,40.5,0.613,24,1 296 | 0,161,50,0,0,21.9,0.254,65,0 297 | 6,151,62,31,120,35.5,0.692,28,0 298 | 2,146,70,38,360,28,0.337,29,1 299 | 0,126,84,29,215,30.7,0.52,24,0 300 | 14,100,78,25,184,36.6,0.412,46,1 301 | 8,112,72,0,0,23.6,0.84,58,0 302 | 0,167,0,0,0,32.3,0.839,30,1 303 | 2,144,58,33,135,31.6,0.422,25,1 304 | 5,77,82,41,42,35.8,0.156,35,0 305 | 5,115,98,0,0,52.9,0.209,28,1 306 | 3,150,76,0,0,21,0.207,37,0 307 | 2,120,76,37,105,39.7,0.215,29,0 308 | 10,161,68,23,132,25.5,0.326,47,1 309 | 0,137,68,14,148,24.8,0.143,21,0 310 | 0,128,68,19,180,30.5,1.391,25,1 311 | 2,124,68,28,205,32.9,0.875,30,1 312 | 6,80,66,30,0,26.2,0.313,41,0 313 | 0,106,70,37,148,39.4,0.605,22,0 314 | 2,155,74,17,96,26.6,0.433,27,1 315 | 3,113,50,10,85,29.5,0.626,25,0 316 | 7,109,80,31,0,35.9,1.127,43,1 317 | 2,112,68,22,94,34.1,0.315,26,0 318 | 3,99,80,11,64,19.3,0.284,30,0 319 | 3,182,74,0,0,30.5,0.345,29,1 320 | 3,115,66,39,140,38.1,0.15,28,0 321 | 6,194,78,0,0,23.5,0.129,59,1 322 | 4,129,60,12,231,27.5,0.527,31,0 323 | 3,112,74,30,0,31.6,0.197,25,1 324 | 0,124,70,20,0,27.4,0.254,36,1 325 | 13,152,90,33,29,26.8,0.731,43,1 326 | 2,112,75,32,0,35.7,0.148,21,0 327 | 1,157,72,21,168,25.6,0.123,24,0 328 | 1,122,64,32,156,35.1,0.692,30,1 329 | 10,179,70,0,0,35.1,0.2,37,0 330 | 2,102,86,36,120,45.5,0.127,23,1 331 | 6,105,70,32,68,30.8,0.122,37,0 332 | 8,118,72,19,0,23.1,1.476,46,0 333 | 2,87,58,16,52,32.7,0.166,25,0 334 | 1,180,0,0,0,43.3,0.282,41,1 335 | 12,106,80,0,0,23.6,0.137,44,0 336 | 1,95,60,18,58,23.9,0.26,22,0 337 | 0,165,76,43,255,47.9,0.259,26,0 338 | 0,117,0,0,0,33.8,0.932,44,0 339 | 5,115,76,0,0,31.2,0.343,44,1 340 | 9,152,78,34,171,34.2,0.893,33,1 341 | 7,178,84,0,0,39.9,0.331,41,1 342 | 1,130,70,13,105,25.9,0.472,22,0 343 | 1,95,74,21,73,25.9,0.673,36,0 344 | 1,0,68,35,0,32,0.389,22,0 345 | 5,122,86,0,0,34.7,0.29,33,0 346 | 8,95,72,0,0,36.8,0.485,57,0 347 | 8,126,88,36,108,38.5,0.349,49,0 348 | 1,139,46,19,83,28.7,0.654,22,0 349 | 3,116,0,0,0,23.5,0.187,23,0 350 | 3,99,62,19,74,21.8,0.279,26,0 351 | 5,0,80,32,0,41,0.346,37,1 352 | 4,92,80,0,0,42.2,0.237,29,0 353 | 4,137,84,0,0,31.2,0.252,30,0 354 | 3,61,82,28,0,34.4,0.243,46,0 355 | 1,90,62,12,43,27.2,0.58,24,0 356 | 3,90,78,0,0,42.7,0.559,21,0 357 | 9,165,88,0,0,30.4,0.302,49,1 358 | 1,125,50,40,167,33.3,0.962,28,1 359 | 13,129,0,30,0,39.9,0.569,44,1 360 | 12,88,74,40,54,35.3,0.378,48,0 361 | 1,196,76,36,249,36.5,0.875,29,1 362 | 5,189,64,33,325,31.2,0.583,29,1 363 | 5,158,70,0,0,29.8,0.207,63,0 364 | 5,103,108,37,0,39.2,0.305,65,0 365 | 4,146,78,0,0,38.5,0.52,67,1 366 | 4,147,74,25,293,34.9,0.385,30,0 367 | 5,99,54,28,83,34,0.499,30,0 368 | 6,124,72,0,0,27.6,0.368,29,1 369 | 0,101,64,17,0,21,0.252,21,0 370 | 3,81,86,16,66,27.5,0.306,22,0 371 | 1,133,102,28,140,32.8,0.234,45,1 372 | 3,173,82,48,465,38.4,2.137,25,1 373 | 0,118,64,23,89,0,1.731,21,0 374 | 0,84,64,22,66,35.8,0.545,21,0 375 | 2,105,58,40,94,34.9,0.225,25,0 376 | 2,122,52,43,158,36.2,0.816,28,0 377 | 12,140,82,43,325,39.2,0.528,58,1 378 | 0,98,82,15,84,25.2,0.299,22,0 379 | 1,87,60,37,75,37.2,0.509,22,0 380 | 4,156,75,0,0,48.3,0.238,32,1 381 | 0,93,100,39,72,43.4,1.021,35,0 382 | 1,107,72,30,82,30.8,0.821,24,0 383 | 0,105,68,22,0,20,0.236,22,0 384 | 1,109,60,8,182,25.4,0.947,21,0 385 | 1,90,62,18,59,25.1,1.268,25,0 386 | 1,125,70,24,110,24.3,0.221,25,0 387 | 1,119,54,13,50,22.3,0.205,24,0 388 | 5,116,74,29,0,32.3,0.66,35,1 389 | 8,105,100,36,0,43.3,0.239,45,1 390 | 5,144,82,26,285,32,0.452,58,1 391 | 3,100,68,23,81,31.6,0.949,28,0 392 | 1,100,66,29,196,32,0.444,42,0 393 | 5,166,76,0,0,45.7,0.34,27,1 394 | 1,131,64,14,415,23.7,0.389,21,0 395 | 4,116,72,12,87,22.1,0.463,37,0 396 | 4,158,78,0,0,32.9,0.803,31,1 397 | 2,127,58,24,275,27.7,1.6,25,0 398 | 3,96,56,34,115,24.7,0.944,39,0 399 | 0,131,66,40,0,34.3,0.196,22,1 400 | 3,82,70,0,0,21.1,0.389,25,0 401 | 3,193,70,31,0,34.9,0.241,25,1 402 | 4,95,64,0,0,32,0.161,31,1 403 | 6,137,61,0,0,24.2,0.151,55,0 404 | 5,136,84,41,88,35,0.286,35,1 405 | 9,72,78,25,0,31.6,0.28,38,0 406 | 5,168,64,0,0,32.9,0.135,41,1 407 | 2,123,48,32,165,42.1,0.52,26,0 408 | 4,115,72,0,0,28.9,0.376,46,1 409 | 0,101,62,0,0,21.9,0.336,25,0 410 | 8,197,74,0,0,25.9,1.191,39,1 411 | 1,172,68,49,579,42.4,0.702,28,1 412 | 6,102,90,39,0,35.7,0.674,28,0 413 | 1,112,72,30,176,34.4,0.528,25,0 414 | 1,143,84,23,310,42.4,1.076,22,0 415 | 1,143,74,22,61,26.2,0.256,21,0 416 | 0,138,60,35,167,34.6,0.534,21,1 417 | 3,173,84,33,474,35.7,0.258,22,1 418 | 1,97,68,21,0,27.2,1.095,22,0 419 | 4,144,82,32,0,38.5,0.554,37,1 420 | 1,83,68,0,0,18.2,0.624,27,0 421 | 3,129,64,29,115,26.4,0.219,28,1 422 | 1,119,88,41,170,45.3,0.507,26,0 423 | 2,94,68,18,76,26,0.561,21,0 424 | 0,102,64,46,78,40.6,0.496,21,0 425 | 2,115,64,22,0,30.8,0.421,21,0 426 | 8,151,78,32,210,42.9,0.516,36,1 427 | 4,184,78,39,277,37,0.264,31,1 428 | 0,94,0,0,0,0,0.256,25,0 429 | 1,181,64,30,180,34.1,0.328,38,1 430 | 0,135,94,46,145,40.6,0.284,26,0 431 | 1,95,82,25,180,35,0.233,43,1 432 | 2,99,0,0,0,22.2,0.108,23,0 433 | 3,89,74,16,85,30.4,0.551,38,0 434 | 1,80,74,11,60,30,0.527,22,0 435 | 2,139,75,0,0,25.6,0.167,29,0 436 | 1,90,68,8,0,24.5,1.138,36,0 437 | 0,141,0,0,0,42.4,0.205,29,1 438 | 12,140,85,33,0,37.4,0.244,41,0 439 | 5,147,75,0,0,29.9,0.434,28,0 440 | 1,97,70,15,0,18.2,0.147,21,0 441 | 6,107,88,0,0,36.8,0.727,31,0 442 | 0,189,104,25,0,34.3,0.435,41,1 443 | 2,83,66,23,50,32.2,0.497,22,0 444 | 4,117,64,27,120,33.2,0.23,24,0 445 | 8,108,70,0,0,30.5,0.955,33,1 446 | 4,117,62,12,0,29.7,0.38,30,1 447 | 0,180,78,63,14,59.4,2.42,25,1 448 | 1,100,72,12,70,25.3,0.658,28,0 449 | 0,95,80,45,92,36.5,0.33,26,0 450 | 0,104,64,37,64,33.6,0.51,22,1 451 | 0,120,74,18,63,30.5,0.285,26,0 452 | 1,82,64,13,95,21.2,0.415,23,0 453 | 2,134,70,0,0,28.9,0.542,23,1 454 | 0,91,68,32,210,39.9,0.381,25,0 455 | 2,119,0,0,0,19.6,0.832,72,0 456 | 2,100,54,28,105,37.8,0.498,24,0 457 | 14,175,62,30,0,33.6,0.212,38,1 458 | 1,135,54,0,0,26.7,0.687,62,0 459 | 5,86,68,28,71,30.2,0.364,24,0 460 | 10,148,84,48,237,37.6,1.001,51,1 461 | 9,134,74,33,60,25.9,0.46,81,0 462 | 9,120,72,22,56,20.8,0.733,48,0 463 | 1,71,62,0,0,21.8,0.416,26,0 464 | 8,74,70,40,49,35.3,0.705,39,0 465 | 5,88,78,30,0,27.6,0.258,37,0 466 | 10,115,98,0,0,24,1.022,34,0 467 | 0,124,56,13,105,21.8,0.452,21,0 468 | 0,74,52,10,36,27.8,0.269,22,0 469 | 0,97,64,36,100,36.8,0.6,25,0 470 | 8,120,0,0,0,30,0.183,38,1 471 | 6,154,78,41,140,46.1,0.571,27,0 472 | 1,144,82,40,0,41.3,0.607,28,0 473 | 0,137,70,38,0,33.2,0.17,22,0 474 | 0,119,66,27,0,38.8,0.259,22,0 475 | 7,136,90,0,0,29.9,0.21,50,0 476 | 4,114,64,0,0,28.9,0.126,24,0 477 | 0,137,84,27,0,27.3,0.231,59,0 478 | 2,105,80,45,191,33.7,0.711,29,1 479 | 7,114,76,17,110,23.8,0.466,31,0 480 | 8,126,74,38,75,25.9,0.162,39,0 481 | 4,132,86,31,0,28,0.419,63,0 482 | 3,158,70,30,328,35.5,0.344,35,1 483 | 0,123,88,37,0,35.2,0.197,29,0 484 | 4,85,58,22,49,27.8,0.306,28,0 485 | 0,84,82,31,125,38.2,0.233,23,0 486 | 0,145,0,0,0,44.2,0.63,31,1 487 | 0,135,68,42,250,42.3,0.365,24,1 488 | 1,139,62,41,480,40.7,0.536,21,0 489 | 0,173,78,32,265,46.5,1.159,58,0 490 | 4,99,72,17,0,25.6,0.294,28,0 491 | 8,194,80,0,0,26.1,0.551,67,0 492 | 2,83,65,28,66,36.8,0.629,24,0 493 | 2,89,90,30,0,33.5,0.292,42,0 494 | 4,99,68,38,0,32.8,0.145,33,0 495 | 4,125,70,18,122,28.9,1.144,45,1 496 | 3,80,0,0,0,0,0.174,22,0 497 | 6,166,74,0,0,26.6,0.304,66,0 498 | 5,110,68,0,0,26,0.292,30,0 499 | 2,81,72,15,76,30.1,0.547,25,0 500 | 7,195,70,33,145,25.1,0.163,55,1 501 | 6,154,74,32,193,29.3,0.839,39,0 502 | 2,117,90,19,71,25.2,0.313,21,0 503 | 3,84,72,32,0,37.2,0.267,28,0 504 | 6,0,68,41,0,39,0.727,41,1 505 | 7,94,64,25,79,33.3,0.738,41,0 506 | 3,96,78,39,0,37.3,0.238,40,0 507 | 10,75,82,0,0,33.3,0.263,38,0 508 | 0,180,90,26,90,36.5,0.314,35,1 509 | 1,130,60,23,170,28.6,0.692,21,0 510 | 2,84,50,23,76,30.4,0.968,21,0 511 | 8,120,78,0,0,25,0.409,64,0 512 | 12,84,72,31,0,29.7,0.297,46,1 513 | 0,139,62,17,210,22.1,0.207,21,0 514 | 9,91,68,0,0,24.2,0.2,58,0 515 | 2,91,62,0,0,27.3,0.525,22,0 516 | 3,99,54,19,86,25.6,0.154,24,0 517 | 3,163,70,18,105,31.6,0.268,28,1 518 | 9,145,88,34,165,30.3,0.771,53,1 519 | 7,125,86,0,0,37.6,0.304,51,0 520 | 13,76,60,0,0,32.8,0.18,41,0 521 | 6,129,90,7,326,19.6,0.582,60,0 522 | 2,68,70,32,66,25,0.187,25,0 523 | 3,124,80,33,130,33.2,0.305,26,0 524 | 6,114,0,0,0,0,0.189,26,0 525 | 9,130,70,0,0,34.2,0.652,45,1 526 | 3,125,58,0,0,31.6,0.151,24,0 527 | 3,87,60,18,0,21.8,0.444,21,0 528 | 1,97,64,19,82,18.2,0.299,21,0 529 | 3,116,74,15,105,26.3,0.107,24,0 530 | 0,117,66,31,188,30.8,0.493,22,0 531 | 0,111,65,0,0,24.6,0.66,31,0 532 | 2,122,60,18,106,29.8,0.717,22,0 533 | 0,107,76,0,0,45.3,0.686,24,0 534 | 1,86,66,52,65,41.3,0.917,29,0 535 | 6,91,0,0,0,29.8,0.501,31,0 536 | 1,77,56,30,56,33.3,1.251,24,0 537 | 4,132,0,0,0,32.9,0.302,23,1 538 | 0,105,90,0,0,29.6,0.197,46,0 539 | 0,57,60,0,0,21.7,0.735,67,0 540 | 0,127,80,37,210,36.3,0.804,23,0 541 | 3,129,92,49,155,36.4,0.968,32,1 542 | 8,100,74,40,215,39.4,0.661,43,1 543 | 3,128,72,25,190,32.4,0.549,27,1 544 | 10,90,85,32,0,34.9,0.825,56,1 545 | 4,84,90,23,56,39.5,0.159,25,0 546 | 1,88,78,29,76,32,0.365,29,0 547 | 8,186,90,35,225,34.5,0.423,37,1 548 | 5,187,76,27,207,43.6,1.034,53,1 549 | 4,131,68,21,166,33.1,0.16,28,0 550 | 1,164,82,43,67,32.8,0.341,50,0 551 | 4,189,110,31,0,28.5,0.68,37,0 552 | 1,116,70,28,0,27.4,0.204,21,0 553 | 3,84,68,30,106,31.9,0.591,25,0 554 | 6,114,88,0,0,27.8,0.247,66,0 555 | 1,88,62,24,44,29.9,0.422,23,0 556 | 1,84,64,23,115,36.9,0.471,28,0 557 | 7,124,70,33,215,25.5,0.161,37,0 558 | 1,97,70,40,0,38.1,0.218,30,0 559 | 8,110,76,0,0,27.8,0.237,58,0 560 | 11,103,68,40,0,46.2,0.126,42,0 561 | 11,85,74,0,0,30.1,0.3,35,0 562 | 6,125,76,0,0,33.8,0.121,54,1 563 | 0,198,66,32,274,41.3,0.502,28,1 564 | 1,87,68,34,77,37.6,0.401,24,0 565 | 6,99,60,19,54,26.9,0.497,32,0 566 | 0,91,80,0,0,32.4,0.601,27,0 567 | 2,95,54,14,88,26.1,0.748,22,0 568 | 1,99,72,30,18,38.6,0.412,21,0 569 | 6,92,62,32,126,32,0.085,46,0 570 | 4,154,72,29,126,31.3,0.338,37,0 571 | 0,121,66,30,165,34.3,0.203,33,1 572 | 3,78,70,0,0,32.5,0.27,39,0 573 | 2,130,96,0,0,22.6,0.268,21,0 574 | 3,111,58,31,44,29.5,0.43,22,0 575 | 2,98,60,17,120,34.7,0.198,22,0 576 | 1,143,86,30,330,30.1,0.892,23,0 577 | 1,119,44,47,63,35.5,0.28,25,0 578 | 6,108,44,20,130,24,0.813,35,0 579 | 2,118,80,0,0,42.9,0.693,21,1 580 | 10,133,68,0,0,27,0.245,36,0 581 | 2,197,70,99,0,34.7,0.575,62,1 582 | 0,151,90,46,0,42.1,0.371,21,1 583 | 6,109,60,27,0,25,0.206,27,0 584 | 12,121,78,17,0,26.5,0.259,62,0 585 | 8,100,76,0,0,38.7,0.19,42,0 586 | 8,124,76,24,600,28.7,0.687,52,1 587 | 1,93,56,11,0,22.5,0.417,22,0 588 | 8,143,66,0,0,34.9,0.129,41,1 589 | 6,103,66,0,0,24.3,0.249,29,0 590 | 3,176,86,27,156,33.3,1.154,52,1 591 | 0,73,0,0,0,21.1,0.342,25,0 592 | 11,111,84,40,0,46.8,0.925,45,1 593 | 2,112,78,50,140,39.4,0.175,24,0 594 | 3,132,80,0,0,34.4,0.402,44,1 595 | 2,82,52,22,115,28.5,1.699,25,0 596 | 6,123,72,45,230,33.6,0.733,34,0 597 | 0,188,82,14,185,32,0.682,22,1 598 | 0,67,76,0,0,45.3,0.194,46,0 599 | 1,89,24,19,25,27.8,0.559,21,0 600 | 1,173,74,0,0,36.8,0.088,38,1 601 | 1,109,38,18,120,23.1,0.407,26,0 602 | 1,108,88,19,0,27.1,0.4,24,0 603 | 6,96,0,0,0,23.7,0.19,28,0 604 | 1,124,74,36,0,27.8,0.1,30,0 605 | 7,150,78,29,126,35.2,0.692,54,1 606 | 4,183,0,0,0,28.4,0.212,36,1 607 | 1,124,60,32,0,35.8,0.514,21,0 608 | 1,181,78,42,293,40,1.258,22,1 609 | 1,92,62,25,41,19.5,0.482,25,0 610 | 0,152,82,39,272,41.5,0.27,27,0 611 | 1,111,62,13,182,24,0.138,23,0 612 | 3,106,54,21,158,30.9,0.292,24,0 613 | 3,174,58,22,194,32.9,0.593,36,1 614 | 7,168,88,42,321,38.2,0.787,40,1 615 | 6,105,80,28,0,32.5,0.878,26,0 616 | 11,138,74,26,144,36.1,0.557,50,1 617 | 3,106,72,0,0,25.8,0.207,27,0 618 | 6,117,96,0,0,28.7,0.157,30,0 619 | 2,68,62,13,15,20.1,0.257,23,0 620 | 9,112,82,24,0,28.2,1.282,50,1 621 | 0,119,0,0,0,32.4,0.141,24,1 622 | 2,112,86,42,160,38.4,0.246,28,0 623 | 2,92,76,20,0,24.2,1.698,28,0 624 | 6,183,94,0,0,40.8,1.461,45,0 625 | 0,94,70,27,115,43.5,0.347,21,0 626 | 2,108,64,0,0,30.8,0.158,21,0 627 | 4,90,88,47,54,37.7,0.362,29,0 628 | 0,125,68,0,0,24.7,0.206,21,0 629 | 0,132,78,0,0,32.4,0.393,21,0 630 | 5,128,80,0,0,34.6,0.144,45,0 631 | 4,94,65,22,0,24.7,0.148,21,0 632 | 7,114,64,0,0,27.4,0.732,34,1 633 | 0,102,78,40,90,34.5,0.238,24,0 634 | 2,111,60,0,0,26.2,0.343,23,0 635 | 1,128,82,17,183,27.5,0.115,22,0 636 | 10,92,62,0,0,25.9,0.167,31,0 637 | 13,104,72,0,0,31.2,0.465,38,1 638 | 5,104,74,0,0,28.8,0.153,48,0 639 | 2,94,76,18,66,31.6,0.649,23,0 640 | 7,97,76,32,91,40.9,0.871,32,1 641 | 1,100,74,12,46,19.5,0.149,28,0 642 | 0,102,86,17,105,29.3,0.695,27,0 643 | 4,128,70,0,0,34.3,0.303,24,0 644 | 6,147,80,0,0,29.5,0.178,50,1 645 | 4,90,0,0,0,28,0.61,31,0 646 | 3,103,72,30,152,27.6,0.73,27,0 647 | 2,157,74,35,440,39.4,0.134,30,0 648 | 1,167,74,17,144,23.4,0.447,33,1 649 | 0,179,50,36,159,37.8,0.455,22,1 650 | 11,136,84,35,130,28.3,0.26,42,1 651 | 0,107,60,25,0,26.4,0.133,23,0 652 | 1,91,54,25,100,25.2,0.234,23,0 653 | 1,117,60,23,106,33.8,0.466,27,0 654 | 5,123,74,40,77,34.1,0.269,28,0 655 | 2,120,54,0,0,26.8,0.455,27,0 656 | 1,106,70,28,135,34.2,0.142,22,0 657 | 2,155,52,27,540,38.7,0.24,25,1 658 | 2,101,58,35,90,21.8,0.155,22,0 659 | 1,120,80,48,200,38.9,1.162,41,0 660 | 11,127,106,0,0,39,0.19,51,0 661 | 3,80,82,31,70,34.2,1.292,27,1 662 | 10,162,84,0,0,27.7,0.182,54,0 663 | 1,199,76,43,0,42.9,1.394,22,1 664 | 8,167,106,46,231,37.6,0.165,43,1 665 | 9,145,80,46,130,37.9,0.637,40,1 666 | 6,115,60,39,0,33.7,0.245,40,1 667 | 1,112,80,45,132,34.8,0.217,24,0 668 | 4,145,82,18,0,32.5,0.235,70,1 669 | 10,111,70,27,0,27.5,0.141,40,1 670 | 6,98,58,33,190,34,0.43,43,0 671 | 9,154,78,30,100,30.9,0.164,45,0 672 | 6,165,68,26,168,33.6,0.631,49,0 673 | 1,99,58,10,0,25.4,0.551,21,0 674 | 10,68,106,23,49,35.5,0.285,47,0 675 | 3,123,100,35,240,57.3,0.88,22,0 676 | 8,91,82,0,0,35.6,0.587,68,0 677 | 6,195,70,0,0,30.9,0.328,31,1 678 | 9,156,86,0,0,24.8,0.23,53,1 679 | 0,93,60,0,0,35.3,0.263,25,0 680 | 3,121,52,0,0,36,0.127,25,1 681 | 2,101,58,17,265,24.2,0.614,23,0 682 | 2,56,56,28,45,24.2,0.332,22,0 683 | 0,162,76,36,0,49.6,0.364,26,1 684 | 0,95,64,39,105,44.6,0.366,22,0 685 | 4,125,80,0,0,32.3,0.536,27,1 686 | 5,136,82,0,0,0,0.64,69,0 687 | 2,129,74,26,205,33.2,0.591,25,0 688 | 3,130,64,0,0,23.1,0.314,22,0 689 | 1,107,50,19,0,28.3,0.181,29,0 690 | 1,140,74,26,180,24.1,0.828,23,0 691 | 1,144,82,46,180,46.1,0.335,46,1 692 | 8,107,80,0,0,24.6,0.856,34,0 693 | 13,158,114,0,0,42.3,0.257,44,1 694 | 2,121,70,32,95,39.1,0.886,23,0 695 | 7,129,68,49,125,38.5,0.439,43,1 696 | 2,90,60,0,0,23.5,0.191,25,0 697 | 7,142,90,24,480,30.4,0.128,43,1 698 | 3,169,74,19,125,29.9,0.268,31,1 699 | 0,99,0,0,0,25,0.253,22,0 700 | 4,127,88,11,155,34.5,0.598,28,0 701 | 4,118,70,0,0,44.5,0.904,26,0 702 | 2,122,76,27,200,35.9,0.483,26,0 703 | 6,125,78,31,0,27.6,0.565,49,1 704 | 1,168,88,29,0,35,0.905,52,1 705 | 2,129,0,0,0,38.5,0.304,41,0 706 | 4,110,76,20,100,28.4,0.118,27,0 707 | 6,80,80,36,0,39.8,0.177,28,0 708 | 10,115,0,0,0,0,0.261,30,1 709 | 2,127,46,21,335,34.4,0.176,22,0 710 | 9,164,78,0,0,32.8,0.148,45,1 711 | 2,93,64,32,160,38,0.674,23,1 712 | 3,158,64,13,387,31.2,0.295,24,0 713 | 5,126,78,27,22,29.6,0.439,40,0 714 | 10,129,62,36,0,41.2,0.441,38,1 715 | 0,134,58,20,291,26.4,0.352,21,0 716 | 3,102,74,0,0,29.5,0.121,32,0 717 | 7,187,50,33,392,33.9,0.826,34,1 718 | 3,173,78,39,185,33.8,0.97,31,1 719 | 10,94,72,18,0,23.1,0.595,56,0 720 | 1,108,60,46,178,35.5,0.415,24,0 721 | 5,97,76,27,0,35.6,0.378,52,1 722 | 4,83,86,19,0,29.3,0.317,34,0 723 | 1,114,66,36,200,38.1,0.289,21,0 724 | 1,149,68,29,127,29.3,0.349,42,1 725 | 5,117,86,30,105,39.1,0.251,42,0 726 | 1,111,94,0,0,32.8,0.265,45,0 727 | 4,112,78,40,0,39.4,0.236,38,0 728 | 1,116,78,29,180,36.1,0.496,25,0 729 | 0,141,84,26,0,32.4,0.433,22,0 730 | 2,175,88,0,0,22.9,0.326,22,0 731 | 2,92,52,0,0,30.1,0.141,22,0 732 | 3,130,78,23,79,28.4,0.323,34,1 733 | 8,120,86,0,0,28.4,0.259,22,1 734 | 2,174,88,37,120,44.5,0.646,24,1 735 | 2,106,56,27,165,29,0.426,22,0 736 | 2,105,75,0,0,23.3,0.56,53,0 737 | 4,95,60,32,0,35.4,0.284,28,0 738 | 0,126,86,27,120,27.4,0.515,21,0 739 | 8,65,72,23,0,32,0.6,42,0 740 | 2,99,60,17,160,36.6,0.453,21,0 741 | 1,102,74,0,0,39.5,0.293,42,1 742 | 11,120,80,37,150,42.3,0.785,48,1 743 | 3,102,44,20,94,30.8,0.4,26,0 744 | 1,109,58,18,116,28.5,0.219,22,0 745 | 9,140,94,0,0,32.7,0.734,45,1 746 | 13,153,88,37,140,40.6,1.174,39,0 747 | 12,100,84,33,105,30,0.488,46,0 748 | 1,147,94,41,0,49.3,0.358,27,1 749 | 1,81,74,41,57,46.3,1.096,32,0 750 | 3,187,70,22,200,36.4,0.408,36,1 751 | 6,162,62,0,0,24.3,0.178,50,1 752 | 4,136,70,0,0,31.2,1.182,22,1 753 | 1,121,78,39,74,39,0.261,28,0 754 | 3,108,62,24,0,26,0.223,25,0 755 | 0,181,88,44,510,43.3,0.222,26,1 756 | 8,154,78,32,0,32.4,0.443,45,1 757 | 1,128,88,39,110,36.5,1.057,37,1 758 | 7,137,90,41,0,32,0.391,39,0 759 | 0,123,72,0,0,36.3,0.258,52,1 760 | 1,106,76,0,0,37.5,0.197,26,0 761 | 6,190,92,0,0,35.5,0.278,66,1 762 | 2,88,58,26,16,28.4,0.766,22,0 763 | 9,170,74,31,0,44,0.403,43,1 764 | 9,89,62,0,0,22.5,0.142,33,0 765 | 10,101,76,48,180,32.9,0.171,63,0 766 | 2,122,70,27,0,36.8,0.34,27,0 767 | 5,121,72,23,112,26.2,0.245,30,0 768 | 1,126,60,0,0,30.1,0.349,47,1 769 | 1,93,70,31,0,30.4,0.315,23,0 770 | -------------------------------------------------------------------------------- /DengAI__Training_Data_Labels.csv: -------------------------------------------------------------------------------- 1 | city,year,weekofyear,total_cases 2 | sj,1990,18,4 3 | sj,1990,19,5 4 | sj,1990,20,4 5 | sj,1990,21,3 6 | sj,1990,22,6 7 | sj,1990,23,2 8 | sj,1990,24,4 9 | sj,1990,25,5 10 | sj,1990,26,10 11 | sj,1990,27,6 12 | sj,1990,28,8 13 | sj,1990,29,2 14 | sj,1990,30,6 15 | sj,1990,31,17 16 | sj,1990,32,23 17 | sj,1990,33,13 18 | sj,1990,34,21 19 | sj,1990,35,28 20 | sj,1990,36,24 21 | sj,1990,37,20 22 | sj,1990,38,40 23 | sj,1990,39,27 24 | sj,1990,40,42 25 | sj,1990,41,33 26 | sj,1990,42,43 27 | sj,1990,43,37 28 | sj,1990,44,57 29 | sj,1990,45,71 30 | sj,1990,46,44 31 | sj,1990,47,56 32 | sj,1990,48,53 33 | sj,1990,49,52 34 | sj,1990,50,47 35 | sj,1990,51,26 36 | sj,1990,52,27 37 | sj,1991,1,21 38 | sj,1991,2,21 39 | sj,1991,3,26 40 | sj,1991,4,34 41 | sj,1991,5,37 42 | sj,1991,6,17 43 | sj,1991,7,19 44 | sj,1991,8,25 45 | sj,1991,9,18 46 | sj,1991,10,21 47 | sj,1991,11,17 48 | sj,1991,12,17 49 | sj,1991,13,16 50 | sj,1991,14,16 51 | sj,1991,15,15 52 | sj,1991,16,23 53 | sj,1991,17,16 54 | sj,1991,18,17 55 | sj,1991,19,12 56 | sj,1991,20,17 57 | sj,1991,21,10 58 | sj,1991,22,15 59 | sj,1991,23,19 60 | sj,1991,24,21 61 | sj,1991,25,14 62 | sj,1991,26,18 63 | sj,1991,27,13 64 | sj,1991,28,14 65 | sj,1991,29,18 66 | sj,1991,30,23 67 | sj,1991,31,25 68 | sj,1991,32,62 69 | sj,1991,33,60 70 | sj,1991,34,76 71 | sj,1991,35,66 72 | sj,1991,36,64 73 | sj,1991,37,68 74 | sj,1991,38,89 75 | sj,1991,39,92 76 | sj,1991,40,140 77 | sj,1991,41,116 78 | sj,1991,42,142 79 | sj,1991,43,129 80 | sj,1991,44,140 81 | sj,1991,45,140 82 | sj,1991,46,127 83 | sj,1991,47,129 84 | sj,1991,48,169 85 | sj,1991,49,141 86 | sj,1991,50,108 87 | sj,1991,51,78 88 | sj,1991,52,70 89 | sj,1992,1,81 90 | sj,1992,2,104 91 | sj,1992,3,90 92 | sj,1992,4,85 93 | sj,1992,5,55 94 | sj,1992,6,53 95 | sj,1992,7,65 96 | sj,1992,8,33 97 | sj,1992,9,38 98 | sj,1992,10,59 99 | sj,1992,11,40 100 | sj,1992,12,37 101 | sj,1992,13,29 102 | sj,1992,14,30 103 | sj,1992,15,30 104 | sj,1992,16,28 105 | sj,1992,17,23 106 | sj,1992,18,24 107 | sj,1992,19,29 108 | sj,1992,20,26 109 | sj,1992,21,23 110 | sj,1992,22,20 111 | sj,1992,23,19 112 | sj,1992,24,20 113 | sj,1992,25,26 114 | sj,1992,26,29 115 | sj,1992,27,31 116 | sj,1992,28,28 117 | sj,1992,29,26 118 | sj,1992,30,32 119 | sj,1992,31,35 120 | sj,1992,32,33 121 | sj,1992,33,30 122 | sj,1992,34,52 123 | sj,1992,35,59 124 | sj,1992,36,67 125 | sj,1992,37,65 126 | sj,1992,38,74 127 | sj,1992,39,70 128 | sj,1992,40,61 129 | sj,1992,41,53 130 | sj,1992,42,76 131 | sj,1992,43,61 132 | sj,1992,44,57 133 | sj,1992,45,44 134 | sj,1992,46,34 135 | sj,1992,47,47 136 | sj,1992,48,60 137 | sj,1992,49,60 138 | sj,1992,50,53 139 | sj,1992,51,36 140 | sj,1992,52,31 141 | sj,1993,53,30 142 | sj,1993,1,32 143 | sj,1993,2,28 144 | sj,1993,3,33 145 | sj,1993,4,33 146 | sj,1993,5,35 147 | sj,1993,6,22 148 | sj,1993,7,13 149 | sj,1993,8,13 150 | sj,1993,9,21 151 | sj,1993,10,17 152 | sj,1993,11,11 153 | sj,1993,12,8 154 | sj,1993,13,8 155 | sj,1993,14,6 156 | sj,1993,15,6 157 | sj,1993,16,7 158 | sj,1993,17,12 159 | sj,1993,18,17 160 | sj,1993,19,10 161 | sj,1993,20,10 162 | sj,1993,21,18 163 | sj,1993,22,19 164 | sj,1993,23,12 165 | sj,1993,24,22 166 | sj,1993,25,12 167 | sj,1993,26,21 168 | sj,1993,27,18 169 | sj,1993,28,16 170 | sj,1993,29,16 171 | sj,1993,30,22 172 | sj,1993,31,17 173 | sj,1993,32,25 174 | sj,1993,33,23 175 | sj,1993,34,12 176 | sj,1993,35,25 177 | sj,1993,36,28 178 | sj,1993,37,27 179 | sj,1993,38,18 180 | sj,1993,39,23 181 | sj,1993,40,23 182 | sj,1993,41,29 183 | sj,1993,42,38 184 | sj,1993,43,36 185 | sj,1993,44,43 186 | sj,1993,45,46 187 | sj,1993,46,31 188 | sj,1993,47,25 189 | sj,1993,48,40 190 | sj,1993,49,31 191 | sj,1993,50,38 192 | sj,1993,51,30 193 | sj,1994,52,22 194 | sj,1994,1,31 195 | sj,1994,2,26 196 | sj,1994,3,35 197 | sj,1994,4,36 198 | sj,1994,5,39 199 | sj,1994,6,25 200 | sj,1994,7,31 201 | sj,1994,8,37 202 | sj,1994,9,33 203 | sj,1994,10,25 204 | sj,1994,11,24 205 | sj,1994,12,18 206 | sj,1994,13,23 207 | sj,1994,14,13 208 | sj,1994,15,18 209 | sj,1994,16,14 210 | sj,1994,17,17 211 | sj,1994,18,22 212 | sj,1994,19,13 213 | sj,1994,20,24 214 | sj,1994,21,31 215 | sj,1994,22,34 216 | sj,1994,23,31 217 | sj,1994,24,31 218 | sj,1994,25,38 219 | sj,1994,26,49 220 | sj,1994,27,42 221 | sj,1994,28,49 222 | sj,1994,29,55 223 | sj,1994,30,80 224 | sj,1994,31,84 225 | sj,1994,32,72 226 | sj,1994,33,89 227 | sj,1994,34,115 228 | sj,1994,35,179 229 | sj,1994,36,202 230 | sj,1994,37,272 231 | sj,1994,38,302 232 | sj,1994,39,395 233 | sj,1994,40,426 234 | sj,1994,41,461 235 | sj,1994,42,381 236 | sj,1994,43,333 237 | sj,1994,44,353 238 | sj,1994,45,410 239 | sj,1994,46,364 240 | sj,1994,47,359 241 | sj,1994,48,288 242 | sj,1994,49,221 243 | sj,1994,50,149 244 | sj,1994,51,112 245 | sj,1995,52,154 246 | sj,1995,1,91 247 | sj,1995,2,72 248 | sj,1995,3,56 249 | sj,1995,4,46 250 | sj,1995,5,37 251 | sj,1995,6,26 252 | sj,1995,7,17 253 | sj,1995,8,17 254 | sj,1995,9,20 255 | sj,1995,10,11 256 | sj,1995,11,7 257 | sj,1995,12,16 258 | sj,1995,13,14 259 | sj,1995,14,16 260 | sj,1995,15,5 261 | sj,1995,16,2 262 | sj,1995,17,6 263 | sj,1995,18,5 264 | sj,1995,19,4 265 | sj,1995,20,3 266 | sj,1995,21,4 267 | sj,1995,22,16 268 | sj,1995,23,8 269 | sj,1995,24,7 270 | sj,1995,25,10 271 | sj,1995,26,14 272 | sj,1995,27,7 273 | sj,1995,28,9 274 | sj,1995,29,11 275 | sj,1995,30,23 276 | sj,1995,31,17 277 | sj,1995,32,19 278 | sj,1995,33,24 279 | sj,1995,34,17 280 | sj,1995,35,28 281 | sj,1995,36,40 282 | sj,1995,37,33 283 | sj,1995,38,31 284 | sj,1995,39,33 285 | sj,1995,40,29 286 | sj,1995,41,30 287 | sj,1995,42,36 288 | sj,1995,43,48 289 | sj,1995,44,40 290 | sj,1995,45,28 291 | sj,1995,46,36 292 | sj,1995,47,19 293 | sj,1995,48,34 294 | sj,1995,49,23 295 | sj,1995,50,17 296 | sj,1995,51,17 297 | sj,1996,1,23 298 | sj,1996,2,14 299 | sj,1996,3,20 300 | sj,1996,4,13 301 | sj,1996,5,23 302 | sj,1996,6,20 303 | sj,1996,7,16 304 | sj,1996,8,16 305 | sj,1996,9,23 306 | sj,1996,10,14 307 | sj,1996,11,15 308 | sj,1996,12,4 309 | sj,1996,13,5 310 | sj,1996,14,5 311 | sj,1996,15,11 312 | sj,1996,16,11 313 | sj,1996,17,7 314 | sj,1996,18,4 315 | sj,1996,19,6 316 | sj,1996,20,5 317 | sj,1996,21,2 318 | sj,1996,22,4 319 | sj,1996,23,2 320 | sj,1996,24,4 321 | sj,1996,25,6 322 | sj,1996,26,6 323 | sj,1996,27,4 324 | sj,1996,28,6 325 | sj,1996,29,11 326 | sj,1996,30,16 327 | sj,1996,31,9 328 | sj,1996,32,12 329 | sj,1996,33,13 330 | sj,1996,34,27 331 | sj,1996,35,21 332 | sj,1996,36,19 333 | sj,1996,37,17 334 | sj,1996,38,24 335 | sj,1996,39,27 336 | sj,1996,40,30 337 | sj,1996,41,29 338 | sj,1996,42,25 339 | sj,1996,43,35 340 | sj,1996,44,33 341 | sj,1996,45,30 342 | sj,1996,46,29 343 | sj,1996,47,31 344 | sj,1996,48,29 345 | sj,1996,49,22 346 | sj,1996,50,27 347 | sj,1996,51,24 348 | sj,1996,52,26 349 | sj,1997,1,29 350 | sj,1997,2,22 351 | sj,1997,3,33 352 | sj,1997,4,24 353 | sj,1997,5,30 354 | sj,1997,6,20 355 | sj,1997,7,17 356 | sj,1997,8,24 357 | sj,1997,9,28 358 | sj,1997,10,18 359 | sj,1997,11,13 360 | sj,1997,12,9 361 | sj,1997,13,14 362 | sj,1997,14,11 363 | sj,1997,15,11 364 | sj,1997,16,19 365 | sj,1997,17,10 366 | sj,1997,18,8 367 | sj,1997,19,8 368 | sj,1997,20,9 369 | sj,1997,21,3 370 | sj,1997,22,7 371 | sj,1997,23,14 372 | sj,1997,24,4 373 | sj,1997,25,9 374 | sj,1997,26,14 375 | sj,1997,27,7 376 | sj,1997,28,9 377 | sj,1997,29,3 378 | sj,1997,30,3 379 | sj,1997,31,14 380 | sj,1997,32,12 381 | sj,1997,33,10 382 | sj,1997,34,21 383 | sj,1997,35,26 384 | sj,1997,36,47 385 | sj,1997,37,42 386 | sj,1997,38,31 387 | sj,1997,39,34 388 | sj,1997,40,33 389 | sj,1997,41,52 390 | sj,1997,42,56 391 | sj,1997,43,70 392 | sj,1997,44,112 393 | sj,1997,45,70 394 | sj,1997,46,47 395 | sj,1997,47,48 396 | sj,1997,48,49 397 | sj,1997,49,66 398 | sj,1997,50,56 399 | sj,1997,51,61 400 | sj,1997,52,67 401 | sj,1998,1,64 402 | sj,1998,2,68 403 | sj,1998,3,49 404 | sj,1998,4,50 405 | sj,1998,5,56 406 | sj,1998,6,75 407 | sj,1998,7,63 408 | sj,1998,8,62 409 | sj,1998,9,41 410 | sj,1998,10,50 411 | sj,1998,11,34 412 | sj,1998,12,31 413 | sj,1998,13,38 414 | sj,1998,14,30 415 | sj,1998,15,32 416 | sj,1998,16,26 417 | sj,1998,17,30 418 | sj,1998,18,36 419 | sj,1998,19,35 420 | sj,1998,20,46 421 | sj,1998,21,48 422 | sj,1998,22,44 423 | sj,1998,23,51 424 | sj,1998,24,59 425 | sj,1998,25,71 426 | sj,1998,26,102 427 | sj,1998,27,128 428 | sj,1998,28,127 429 | sj,1998,29,150 430 | sj,1998,30,191 431 | sj,1998,31,256 432 | sj,1998,32,329 433 | sj,1998,33,263 434 | sj,1998,34,220 435 | sj,1998,35,204 436 | sj,1998,36,181 437 | sj,1998,37,99 438 | sj,1998,38,54 439 | sj,1998,39,80 440 | sj,1998,40,102 441 | sj,1998,41,127 442 | sj,1998,42,73 443 | sj,1998,43,68 444 | sj,1998,44,64 445 | sj,1998,45,55 446 | sj,1998,46,67 447 | sj,1998,47,84 448 | sj,1998,48,85 449 | sj,1998,49,67 450 | sj,1998,50,73 451 | sj,1998,51,89 452 | sj,1998,52,68 453 | sj,1999,53,59 454 | sj,1999,1,56 455 | sj,1999,2,77 456 | sj,1999,3,75 457 | sj,1999,4,47 458 | sj,1999,5,50 459 | sj,1999,6,42 460 | sj,1999,7,28 461 | sj,1999,8,37 462 | sj,1999,9,37 463 | sj,1999,10,27 464 | sj,1999,11,12 465 | sj,1999,12,15 466 | sj,1999,13,22 467 | sj,1999,14,8 468 | sj,1999,15,15 469 | sj,1999,16,17 470 | sj,1999,17,10 471 | sj,1999,18,9 472 | sj,1999,19,11 473 | sj,1999,20,20 474 | sj,1999,21,13 475 | sj,1999,22,11 476 | sj,1999,23,16 477 | sj,1999,24,11 478 | sj,1999,25,7 479 | sj,1999,26,17 480 | sj,1999,27,14 481 | sj,1999,28,13 482 | sj,1999,29,15 483 | sj,1999,30,30 484 | sj,1999,31,25 485 | sj,1999,32,40 486 | sj,1999,33,44 487 | sj,1999,34,25 488 | sj,1999,35,21 489 | sj,1999,36,48 490 | sj,1999,37,56 491 | sj,1999,38,60 492 | sj,1999,39,45 493 | sj,1999,40,55 494 | sj,1999,41,32 495 | sj,1999,42,46 496 | sj,1999,43,61 497 | sj,1999,44,42 498 | sj,1999,45,37 499 | sj,1999,46,43 500 | sj,1999,47,34 501 | sj,1999,48,40 502 | sj,1999,49,25 503 | sj,1999,50,16 504 | sj,1999,51,17 505 | sj,2000,52,17 506 | sj,2000,1,16 507 | sj,2000,2,23 508 | sj,2000,3,18 509 | sj,2000,4,18 510 | sj,2000,5,9 511 | sj,2000,6,7 512 | sj,2000,7,7 513 | sj,2000,8,4 514 | sj,2000,9,3 515 | sj,2000,10,2 516 | sj,2000,11,8 517 | sj,2000,12,3 518 | sj,2000,13,1 519 | sj,2000,14,1 520 | sj,2000,15,2 521 | sj,2000,16,3 522 | sj,2000,17,3 523 | sj,2000,18,2 524 | sj,2000,19,0 525 | sj,2000,20,0 526 | sj,2000,21,2 527 | sj,2000,22,2 528 | sj,2000,23,0 529 | sj,2000,24,6 530 | sj,2000,25,3 531 | sj,2000,26,6 532 | sj,2000,27,2 533 | sj,2000,28,3 534 | sj,2000,29,2 535 | sj,2000,30,4 536 | sj,2000,31,5 537 | sj,2000,32,2 538 | sj,2000,33,9 539 | sj,2000,34,2 540 | sj,2000,35,4 541 | sj,2000,36,8 542 | sj,2000,37,6 543 | sj,2000,38,3 544 | sj,2000,39,11 545 | sj,2000,40,14 546 | sj,2000,41,15 547 | sj,2000,42,20 548 | sj,2000,43,9 549 | sj,2000,44,20 550 | sj,2000,45,28 551 | sj,2000,46,38 552 | sj,2000,47,30 553 | sj,2000,48,30 554 | sj,2000,49,23 555 | sj,2000,50,16 556 | sj,2000,51,22 557 | sj,2001,1,28 558 | sj,2001,2,14 559 | sj,2001,3,17 560 | sj,2001,4,20 561 | sj,2001,5,17 562 | sj,2001,6,10 563 | sj,2001,7,13 564 | sj,2001,8,20 565 | sj,2001,9,9 566 | sj,2001,10,18 567 | sj,2001,11,9 568 | sj,2001,12,8 569 | sj,2001,13,19 570 | sj,2001,14,11 571 | sj,2001,15,4 572 | sj,2001,16,6 573 | sj,2001,17,6 574 | sj,2001,18,8 575 | sj,2001,19,13 576 | sj,2001,20,8 577 | sj,2001,21,8 578 | sj,2001,22,5 579 | sj,2001,23,16 580 | sj,2001,24,12 581 | sj,2001,25,11 582 | sj,2001,26,18 583 | sj,2001,27,10 584 | sj,2001,28,22 585 | sj,2001,29,14 586 | sj,2001,30,16 587 | sj,2001,31,18 588 | sj,2001,32,27 589 | sj,2001,33,38 590 | sj,2001,34,35 591 | sj,2001,35,41 592 | sj,2001,36,51 593 | sj,2001,37,65 594 | sj,2001,38,55 595 | sj,2001,39,54 596 | sj,2001,40,62 597 | sj,2001,41,64 598 | sj,2001,42,56 599 | sj,2001,43,65 600 | sj,2001,44,71 601 | sj,2001,45,75 602 | sj,2001,46,71 603 | sj,2001,47,72 604 | sj,2001,48,47 605 | sj,2001,49,27 606 | sj,2001,50,35 607 | sj,2001,51,25 608 | sj,2001,52,19 609 | sj,2002,1,37 610 | sj,2002,2,38 611 | sj,2002,3,34 612 | sj,2002,4,26 613 | sj,2002,5,19 614 | sj,2002,6,18 615 | sj,2002,7,22 616 | sj,2002,8,16 617 | sj,2002,9,18 618 | sj,2002,10,6 619 | sj,2002,11,12 620 | sj,2002,12,6 621 | sj,2002,13,6 622 | sj,2002,14,3 623 | sj,2002,15,7 624 | sj,2002,16,6 625 | sj,2002,17,1 626 | sj,2002,18,3 627 | sj,2002,19,2 628 | sj,2002,20,2 629 | sj,2002,21,1 630 | sj,2002,22,10 631 | sj,2002,23,3 632 | sj,2002,24,3 633 | sj,2002,25,1 634 | sj,2002,26,1 635 | sj,2002,27,2 636 | sj,2002,28,6 637 | sj,2002,29,3 638 | sj,2002,30,3 639 | sj,2002,31,5 640 | sj,2002,32,4 641 | sj,2002,33,7 642 | sj,2002,34,6 643 | sj,2002,35,5 644 | sj,2002,36,7 645 | sj,2002,37,6 646 | sj,2002,38,4 647 | sj,2002,39,4 648 | sj,2002,40,7 649 | sj,2002,41,9 650 | sj,2002,42,5 651 | sj,2002,43,5 652 | sj,2002,44,10 653 | sj,2002,45,6 654 | sj,2002,46,13 655 | sj,2002,47,6 656 | sj,2002,48,5 657 | sj,2002,49,5 658 | sj,2002,50,9 659 | sj,2002,51,3 660 | sj,2002,52,6 661 | sj,2003,1,11 662 | sj,2003,2,7 663 | sj,2003,3,7 664 | sj,2003,4,15 665 | sj,2003,5,9 666 | sj,2003,6,6 667 | sj,2003,7,6 668 | sj,2003,8,6 669 | sj,2003,9,7 670 | sj,2003,10,10 671 | sj,2003,11,8 672 | sj,2003,12,7 673 | sj,2003,13,12 674 | sj,2003,14,3 675 | sj,2003,15,2 676 | sj,2003,16,7 677 | sj,2003,17,5 678 | sj,2003,18,5 679 | sj,2003,19,7 680 | sj,2003,20,7 681 | sj,2003,21,7 682 | sj,2003,22,7 683 | sj,2003,23,10 684 | sj,2003,24,13 685 | sj,2003,25,10 686 | sj,2003,26,14 687 | sj,2003,27,11 688 | sj,2003,28,20 689 | sj,2003,29,25 690 | sj,2003,30,17 691 | sj,2003,31,18 692 | sj,2003,32,25 693 | sj,2003,33,21 694 | sj,2003,34,31 695 | sj,2003,35,32 696 | sj,2003,36,26 697 | sj,2003,37,35 698 | sj,2003,38,28 699 | sj,2003,39,37 700 | sj,2003,40,41 701 | sj,2003,41,34 702 | sj,2003,42,30 703 | sj,2003,43,39 704 | sj,2003,44,39 705 | sj,2003,45,39 706 | sj,2003,46,34 707 | sj,2003,47,30 708 | sj,2003,48,37 709 | sj,2003,49,29 710 | sj,2003,50,26 711 | sj,2003,51,15 712 | sj,2003,52,22 713 | sj,2004,1,15 714 | sj,2004,2,20 715 | sj,2004,3,14 716 | sj,2004,4,10 717 | sj,2004,5,21 718 | sj,2004,6,14 719 | sj,2004,7,14 720 | sj,2004,8,9 721 | sj,2004,9,11 722 | sj,2004,10,5 723 | sj,2004,11,6 724 | sj,2004,12,7 725 | sj,2004,13,11 726 | sj,2004,14,4 727 | sj,2004,15,3 728 | sj,2004,16,2 729 | sj,2004,17,6 730 | sj,2004,18,10 731 | sj,2004,19,7 732 | sj,2004,20,5 733 | sj,2004,21,3 734 | sj,2004,22,12 735 | sj,2004,23,13 736 | sj,2004,24,10 737 | sj,2004,25,13 738 | sj,2004,26,13 739 | sj,2004,27,8 740 | sj,2004,28,21 741 | sj,2004,29,18 742 | sj,2004,30,8 743 | sj,2004,31,7 744 | sj,2004,32,20 745 | sj,2004,33,14 746 | sj,2004,34,14 747 | sj,2004,35,7 748 | sj,2004,36,14 749 | sj,2004,37,10 750 | sj,2004,38,13 751 | sj,2004,39,27 752 | sj,2004,40,13 753 | sj,2004,41,18 754 | sj,2004,42,16 755 | sj,2004,43,16 756 | sj,2004,44,20 757 | sj,2004,45,17 758 | sj,2004,46,4 759 | sj,2004,47,15 760 | sj,2004,48,8 761 | sj,2004,49,6 762 | sj,2004,50,12 763 | sj,2004,51,15 764 | sj,2004,52,11 765 | sj,2005,53,10 766 | sj,2005,1,15 767 | sj,2005,2,17 768 | sj,2005,3,7 769 | sj,2005,4,7 770 | sj,2005,5,8 771 | sj,2005,6,9 772 | sj,2005,7,12 773 | sj,2005,8,12 774 | sj,2005,9,5 775 | sj,2005,10,4 776 | sj,2005,11,11 777 | sj,2005,12,4 778 | sj,2005,13,5 779 | sj,2005,14,7 780 | sj,2005,15,1 781 | sj,2005,16,1 782 | sj,2005,17,4 783 | sj,2005,18,2 784 | sj,2005,19,6 785 | sj,2005,20,3 786 | sj,2005,21,4 787 | sj,2005,22,10 788 | sj,2005,23,12 789 | sj,2005,24,21 790 | sj,2005,25,26 791 | sj,2005,26,21 792 | sj,2005,27,30 793 | sj,2005,28,45 794 | sj,2005,29,56 795 | sj,2005,30,75 796 | sj,2005,31,83 797 | sj,2005,32,82 798 | sj,2005,33,126 799 | sj,2005,34,119 800 | sj,2005,35,137 801 | sj,2005,36,131 802 | sj,2005,37,112 803 | sj,2005,38,82 804 | sj,2005,39,73 805 | sj,2005,40,43 806 | sj,2005,41,55 807 | sj,2005,42,55 808 | sj,2005,43,53 809 | sj,2005,44,46 810 | sj,2005,45,43 811 | sj,2005,46,29 812 | sj,2005,47,22 813 | sj,2005,48,26 814 | sj,2005,49,13 815 | sj,2005,50,17 816 | sj,2005,51,8 817 | sj,2006,52,13 818 | sj,2006,1,10 819 | sj,2006,2,17 820 | sj,2006,3,19 821 | sj,2006,4,9 822 | sj,2006,5,9 823 | sj,2006,6,9 824 | sj,2006,7,3 825 | sj,2006,8,7 826 | sj,2006,9,7 827 | sj,2006,10,0 828 | sj,2006,11,2 829 | sj,2006,12,3 830 | sj,2006,13,3 831 | sj,2006,14,1 832 | sj,2006,15,3 833 | sj,2006,16,3 834 | sj,2006,17,3 835 | sj,2006,18,7 836 | sj,2006,19,3 837 | sj,2006,20,5 838 | sj,2006,21,11 839 | sj,2006,22,5 840 | sj,2006,23,5 841 | sj,2006,24,6 842 | sj,2006,25,6 843 | sj,2006,26,4 844 | sj,2006,27,4 845 | sj,2006,28,8 846 | sj,2006,29,14 847 | sj,2006,30,12 848 | sj,2006,31,16 849 | sj,2006,32,10 850 | sj,2006,33,16 851 | sj,2006,34,18 852 | sj,2006,35,15 853 | sj,2006,36,23 854 | sj,2006,37,17 855 | sj,2006,38,33 856 | sj,2006,39,15 857 | sj,2006,40,13 858 | sj,2006,41,11 859 | sj,2006,42,14 860 | sj,2006,43,17 861 | sj,2006,44,19 862 | sj,2006,45,20 863 | sj,2006,46,12 864 | sj,2006,47,21 865 | sj,2006,48,7 866 | sj,2006,49,19 867 | sj,2006,50,10 868 | sj,2006,51,13 869 | sj,2007,1,10 870 | sj,2007,2,8 871 | sj,2007,3,21 872 | sj,2007,4,11 873 | sj,2007,5,9 874 | sj,2007,6,14 875 | sj,2007,7,14 876 | sj,2007,8,15 877 | sj,2007,9,18 878 | sj,2007,10,16 879 | sj,2007,11,12 880 | sj,2007,12,20 881 | sj,2007,13,8 882 | sj,2007,14,3 883 | sj,2007,15,13 884 | sj,2007,16,4 885 | sj,2007,17,1 886 | sj,2007,18,10 887 | sj,2007,19,8 888 | sj,2007,20,13 889 | sj,2007,21,10 890 | sj,2007,22,21 891 | sj,2007,23,18 892 | sj,2007,24,21 893 | sj,2007,25,34 894 | sj,2007,26,25 895 | sj,2007,27,34 896 | sj,2007,28,33 897 | sj,2007,29,40 898 | sj,2007,30,42 899 | sj,2007,31,36 900 | sj,2007,32,72 901 | sj,2007,33,75 902 | sj,2007,34,76 903 | sj,2007,35,92 904 | sj,2007,36,71 905 | sj,2007,37,112 906 | sj,2007,38,106 907 | sj,2007,39,101 908 | sj,2007,40,170 909 | sj,2007,41,135 910 | sj,2007,42,106 911 | sj,2007,43,68 912 | sj,2007,44,48 913 | sj,2007,45,48 914 | sj,2007,46,26 915 | sj,2007,47,33 916 | sj,2007,48,29 917 | sj,2007,49,17 918 | sj,2007,50,12 919 | sj,2007,51,13 920 | sj,2007,52,17 921 | sj,2008,1,15 922 | sj,2008,2,14 923 | sj,2008,3,15 924 | sj,2008,4,10 925 | sj,2008,5,9 926 | sj,2008,6,2 927 | sj,2008,7,6 928 | sj,2008,8,8 929 | sj,2008,9,5 930 | sj,2008,10,1 931 | sj,2008,11,2 932 | sj,2008,12,3 933 | sj,2008,13,4 934 | sj,2008,14,3 935 | sj,2008,15,1 936 | sj,2008,16,3 937 | sj,2008,17,5 938 | iq,2000,26,0 939 | iq,2000,27,0 940 | iq,2000,28,0 941 | iq,2000,29,0 942 | iq,2000,30,0 943 | iq,2000,31,0 944 | iq,2000,32,0 945 | iq,2000,33,0 946 | iq,2000,34,0 947 | iq,2000,35,0 948 | iq,2000,36,1 949 | iq,2000,37,0 950 | iq,2000,38,0 951 | iq,2000,39,0 952 | iq,2000,40,0 953 | iq,2000,41,1 954 | iq,2000,42,1 955 | iq,2000,43,0 956 | iq,2000,44,0 957 | iq,2000,45,0 958 | iq,2000,46,0 959 | iq,2000,47,0 960 | iq,2000,48,0 961 | iq,2000,49,0 962 | iq,2000,50,1 963 | iq,2000,51,0 964 | iq,2001,1,0 965 | iq,2001,2,0 966 | iq,2001,3,0 967 | iq,2001,4,0 968 | iq,2001,5,0 969 | iq,2001,6,0 970 | iq,2001,7,0 971 | iq,2001,8,0 972 | iq,2001,9,0 973 | iq,2001,10,0 974 | iq,2001,11,0 975 | iq,2001,12,0 976 | iq,2001,13,0 977 | iq,2001,14,0 978 | iq,2001,15,0 979 | iq,2001,16,1 980 | iq,2001,17,0 981 | iq,2001,18,0 982 | iq,2001,19,0 983 | iq,2001,20,0 984 | iq,2001,21,1 985 | iq,2001,22,1 986 | iq,2001,23,0 987 | iq,2001,24,0 988 | iq,2001,25,1 989 | iq,2001,26,0 990 | iq,2001,27,0 991 | iq,2001,28,0 992 | iq,2001,29,0 993 | iq,2001,30,0 994 | iq,2001,31,0 995 | iq,2001,32,0 996 | iq,2001,33,0 997 | iq,2001,34,0 998 | iq,2001,35,0 999 | iq,2001,36,0 1000 | iq,2001,37,0 1001 | iq,2001,38,0 1002 | iq,2001,39,0 1003 | iq,2001,40,0 1004 | iq,2001,41,0 1005 | iq,2001,42,0 1006 | iq,2001,43,0 1007 | iq,2001,44,0 1008 | iq,2001,45,0 1009 | iq,2001,46,0 1010 | iq,2001,47,1 1011 | iq,2001,48,1 1012 | iq,2001,49,1 1013 | iq,2001,50,2 1014 | iq,2001,51,4 1015 | iq,2001,52,1 1016 | iq,2002,1,4 1017 | iq,2002,2,11 1018 | iq,2002,3,16 1019 | iq,2002,4,23 1020 | iq,2002,5,12 1021 | iq,2002,6,14 1022 | iq,2002,7,18 1023 | iq,2002,8,8 1024 | iq,2002,9,7 1025 | iq,2002,10,10 1026 | iq,2002,11,7 1027 | iq,2002,12,10 1028 | iq,2002,13,5 1029 | iq,2002,14,11 1030 | iq,2002,15,8 1031 | iq,2002,16,18 1032 | iq,2002,17,13 1033 | iq,2002,18,9 1034 | iq,2002,19,22 1035 | iq,2002,20,10 1036 | iq,2002,21,5 1037 | iq,2002,22,13 1038 | iq,2002,23,2 1039 | iq,2002,24,11 1040 | iq,2002,25,11 1041 | iq,2002,26,3 1042 | iq,2002,27,7 1043 | iq,2002,28,7 1044 | iq,2002,29,4 1045 | iq,2002,30,5 1046 | iq,2002,31,6 1047 | iq,2002,32,7 1048 | iq,2002,33,7 1049 | iq,2002,34,4 1050 | iq,2002,35,9 1051 | iq,2002,36,17 1052 | iq,2002,37,8 1053 | iq,2002,38,22 1054 | iq,2002,39,18 1055 | iq,2002,40,21 1056 | iq,2002,41,16 1057 | iq,2002,42,31 1058 | iq,2002,43,25 1059 | iq,2002,44,28 1060 | iq,2002,45,26 1061 | iq,2002,46,18 1062 | iq,2002,47,27 1063 | iq,2002,48,11 1064 | iq,2002,49,38 1065 | iq,2002,50,29 1066 | iq,2002,51,21 1067 | iq,2002,52,11 1068 | iq,2003,1,10 1069 | iq,2003,2,5 1070 | iq,2003,3,6 1071 | iq,2003,4,2 1072 | iq,2003,5,1 1073 | iq,2003,6,2 1074 | iq,2003,7,2 1075 | iq,2003,8,3 1076 | iq,2003,9,5 1077 | iq,2003,10,1 1078 | iq,2003,11,4 1079 | iq,2003,12,2 1080 | iq,2003,13,4 1081 | iq,2003,14,0 1082 | iq,2003,15,0 1083 | iq,2003,16,0 1084 | iq,2003,17,0 1085 | iq,2003,18,1 1086 | iq,2003,19,1 1087 | iq,2003,20,1 1088 | iq,2003,21,1 1089 | iq,2003,22,1 1090 | iq,2003,23,2 1091 | iq,2003,24,3 1092 | iq,2003,25,4 1093 | iq,2003,26,6 1094 | iq,2003,27,2 1095 | iq,2003,28,2 1096 | iq,2003,29,5 1097 | iq,2003,30,1 1098 | iq,2003,31,1 1099 | iq,2003,32,0 1100 | iq,2003,33,0 1101 | iq,2003,34,0 1102 | iq,2003,35,0 1103 | iq,2003,36,2 1104 | iq,2003,37,0 1105 | iq,2003,38,3 1106 | iq,2003,39,0 1107 | iq,2003,40,0 1108 | iq,2003,41,0 1109 | iq,2003,42,2 1110 | iq,2003,43,2 1111 | iq,2003,44,3 1112 | iq,2003,45,3 1113 | iq,2003,46,3 1114 | iq,2003,47,1 1115 | iq,2003,48,2 1116 | iq,2003,49,3 1117 | iq,2003,50,6 1118 | iq,2003,51,5 1119 | iq,2003,52,1 1120 | iq,2004,1,4 1121 | iq,2004,2,5 1122 | iq,2004,3,8 1123 | iq,2004,4,5 1124 | iq,2004,5,2 1125 | iq,2004,6,3 1126 | iq,2004,7,3 1127 | iq,2004,8,1 1128 | iq,2004,9,6 1129 | iq,2004,10,4 1130 | iq,2004,11,1 1131 | iq,2004,12,2 1132 | iq,2004,13,3 1133 | iq,2004,14,1 1134 | iq,2004,15,8 1135 | iq,2004,16,4 1136 | iq,2004,17,6 1137 | iq,2004,18,7 1138 | iq,2004,19,5 1139 | iq,2004,20,8 1140 | iq,2004,21,6 1141 | iq,2004,22,5 1142 | iq,2004,23,6 1143 | iq,2004,24,6 1144 | iq,2004,25,13 1145 | iq,2004,26,2 1146 | iq,2004,27,10 1147 | iq,2004,28,3 1148 | iq,2004,29,12 1149 | iq,2004,30,7 1150 | iq,2004,31,6 1151 | iq,2004,32,5 1152 | iq,2004,33,6 1153 | iq,2004,34,6 1154 | iq,2004,35,6 1155 | iq,2004,36,8 1156 | iq,2004,37,6 1157 | iq,2004,38,9 1158 | iq,2004,39,12 1159 | iq,2004,40,19 1160 | iq,2004,41,8 1161 | iq,2004,42,16 1162 | iq,2004,43,21 1163 | iq,2004,44,6 1164 | iq,2004,45,22 1165 | iq,2004,46,37 1166 | iq,2004,47,33 1167 | iq,2004,48,18 1168 | iq,2004,49,83 1169 | iq,2004,50,116 1170 | iq,2004,51,32 1171 | iq,2004,52,7 1172 | iq,2005,53,9 1173 | iq,2005,1,10 1174 | iq,2005,2,5 1175 | iq,2005,3,8 1176 | iq,2005,4,7 1177 | iq,2005,5,8 1178 | iq,2005,6,11 1179 | iq,2005,7,6 1180 | iq,2005,8,7 1181 | iq,2005,9,7 1182 | iq,2005,10,14 1183 | iq,2005,11,7 1184 | iq,2005,12,9 1185 | iq,2005,13,13 1186 | iq,2005,14,16 1187 | iq,2005,15,7 1188 | iq,2005,16,9 1189 | iq,2005,17,2 1190 | iq,2005,18,13 1191 | iq,2005,19,8 1192 | iq,2005,20,3 1193 | iq,2005,21,5 1194 | iq,2005,22,4 1195 | iq,2005,23,8 1196 | iq,2005,24,2 1197 | iq,2005,25,3 1198 | iq,2005,26,5 1199 | iq,2005,27,7 1200 | iq,2005,28,3 1201 | iq,2005,29,5 1202 | iq,2005,30,6 1203 | iq,2005,31,5 1204 | iq,2005,32,5 1205 | iq,2005,33,4 1206 | iq,2005,34,0 1207 | iq,2005,35,0 1208 | iq,2005,36,0 1209 | iq,2005,37,0 1210 | iq,2005,38,0 1211 | iq,2005,39,2 1212 | iq,2005,40,4 1213 | iq,2005,41,4 1214 | iq,2005,42,3 1215 | iq,2005,43,3 1216 | iq,2005,44,5 1217 | iq,2005,45,6 1218 | iq,2005,46,14 1219 | iq,2005,47,3 1220 | iq,2005,48,7 1221 | iq,2005,49,11 1222 | iq,2005,50,2 1223 | iq,2005,51,6 1224 | iq,2006,52,8 1225 | iq,2006,1,25 1226 | iq,2006,2,21 1227 | iq,2006,3,10 1228 | iq,2006,4,28 1229 | iq,2006,5,39 1230 | iq,2006,6,20 1231 | iq,2006,7,24 1232 | iq,2006,8,28 1233 | iq,2006,9,26 1234 | iq,2006,10,8 1235 | iq,2006,11,9 1236 | iq,2006,12,12 1237 | iq,2006,13,18 1238 | iq,2006,14,9 1239 | iq,2006,15,9 1240 | iq,2006,16,6 1241 | iq,2006,17,6 1242 | iq,2006,18,8 1243 | iq,2006,19,5 1244 | iq,2006,20,7 1245 | iq,2006,21,6 1246 | iq,2006,22,5 1247 | iq,2006,23,3 1248 | iq,2006,24,1 1249 | iq,2006,25,0 1250 | iq,2006,26,1 1251 | iq,2006,27,2 1252 | iq,2006,28,3 1253 | iq,2006,29,2 1254 | iq,2006,30,2 1255 | iq,2006,31,2 1256 | iq,2006,32,2 1257 | iq,2006,33,2 1258 | iq,2006,34,4 1259 | iq,2006,35,0 1260 | iq,2006,36,6 1261 | iq,2006,37,3 1262 | iq,2006,38,2 1263 | iq,2006,39,6 1264 | iq,2006,40,2 1265 | iq,2006,41,7 1266 | iq,2006,42,4 1267 | iq,2006,43,6 1268 | iq,2006,44,6 1269 | iq,2006,45,2 1270 | iq,2006,46,13 1271 | iq,2006,47,10 1272 | iq,2006,48,5 1273 | iq,2006,49,2 1274 | iq,2006,50,0 1275 | iq,2006,51,1 1276 | iq,2007,1,0 1277 | iq,2007,2,14 1278 | iq,2007,3,6 1279 | iq,2007,4,10 1280 | iq,2007,5,5 1281 | iq,2007,6,12 1282 | iq,2007,7,9 1283 | iq,2007,8,5 1284 | iq,2007,9,11 1285 | iq,2007,10,2 1286 | iq,2007,11,6 1287 | iq,2007,12,7 1288 | iq,2007,13,6 1289 | iq,2007,14,5 1290 | iq,2007,15,9 1291 | iq,2007,16,5 1292 | iq,2007,17,8 1293 | iq,2007,18,3 1294 | iq,2007,19,4 1295 | iq,2007,20,11 1296 | iq,2007,21,5 1297 | iq,2007,22,8 1298 | iq,2007,23,4 1299 | iq,2007,24,3 1300 | iq,2007,25,1 1301 | iq,2007,26,2 1302 | iq,2007,27,3 1303 | iq,2007,28,4 1304 | iq,2007,29,1 1305 | iq,2007,30,8 1306 | iq,2007,31,5 1307 | iq,2007,32,3 1308 | iq,2007,33,2 1309 | iq,2007,34,7 1310 | iq,2007,35,1 1311 | iq,2007,36,6 1312 | iq,2007,37,7 1313 | iq,2007,38,5 1314 | iq,2007,39,2 1315 | iq,2007,40,6 1316 | iq,2007,41,11 1317 | iq,2007,42,6 1318 | iq,2007,43,3 1319 | iq,2007,44,11 1320 | iq,2007,45,11 1321 | iq,2007,46,5 1322 | iq,2007,47,4 1323 | iq,2007,48,9 1324 | iq,2007,49,23 1325 | iq,2007,50,28 1326 | iq,2007,51,26 1327 | iq,2007,52,7 1328 | iq,2008,1,29 1329 | iq,2008,2,58 1330 | iq,2008,3,26 1331 | iq,2008,4,38 1332 | iq,2008,5,35 1333 | iq,2008,6,37 1334 | iq,2008,7,20 1335 | iq,2008,8,29 1336 | iq,2008,9,25 1337 | iq,2008,10,23 1338 | iq,2008,11,9 1339 | iq,2008,12,3 1340 | iq,2008,13,6 1341 | iq,2008,14,6 1342 | iq,2008,15,3 1343 | iq,2008,16,1 1344 | iq,2008,17,3 1345 | iq,2008,18,1 1346 | iq,2008,19,1 1347 | iq,2008,20,0 1348 | iq,2008,21,2 1349 | iq,2008,22,1 1350 | iq,2008,23,1 1351 | iq,2008,24,0 1352 | iq,2008,25,0 1353 | iq,2008,26,1 1354 | iq,2008,27,0 1355 | iq,2008,28,3 1356 | iq,2008,29,3 1357 | iq,2008,30,1 1358 | iq,2008,31,5 1359 | iq,2008,32,2 1360 | iq,2008,33,5 1361 | iq,2008,34,5 1362 | iq,2008,35,5 1363 | iq,2008,36,9 1364 | iq,2008,37,17 1365 | iq,2008,38,19 1366 | iq,2008,39,25 1367 | iq,2008,40,45 1368 | iq,2008,41,34 1369 | iq,2008,42,63 1370 | iq,2008,43,44 1371 | iq,2008,44,50 1372 | iq,2008,45,35 1373 | iq,2008,46,16 1374 | iq,2008,47,16 1375 | iq,2008,48,13 1376 | iq,2008,49,9 1377 | iq,2008,50,15 1378 | iq,2008,51,4 1379 | iq,2008,52,0 1380 | iq,2009,1,1 1381 | iq,2009,2,10 1382 | iq,2009,3,11 1383 | iq,2009,4,29 1384 | iq,2009,5,35 1385 | iq,2009,6,30 1386 | iq,2009,7,20 1387 | iq,2009,8,21 1388 | iq,2009,9,12 1389 | iq,2009,10,9 1390 | iq,2009,11,11 1391 | iq,2009,12,9 1392 | iq,2009,13,5 1393 | iq,2009,14,11 1394 | iq,2009,15,3 1395 | iq,2009,16,5 1396 | iq,2009,17,5 1397 | iq,2009,18,4 1398 | iq,2009,19,4 1399 | iq,2009,20,1 1400 | iq,2009,21,0 1401 | iq,2009,22,2 1402 | iq,2009,23,3 1403 | iq,2009,24,3 1404 | iq,2009,25,5 1405 | iq,2009,26,2 1406 | iq,2009,27,1 1407 | iq,2009,28,2 1408 | iq,2009,29,0 1409 | iq,2009,30,0 1410 | iq,2009,31,3 1411 | iq,2009,32,5 1412 | iq,2009,33,5 1413 | iq,2009,34,7 1414 | iq,2009,35,5 1415 | iq,2009,36,2 1416 | iq,2009,37,2 1417 | iq,2009,38,2 1418 | iq,2009,39,0 1419 | iq,2009,40,2 1420 | iq,2009,41,1 1421 | iq,2009,42,1 1422 | iq,2009,43,2 1423 | iq,2009,44,2 1424 | iq,2009,45,3 1425 | iq,2009,46,9 1426 | iq,2009,47,5 1427 | iq,2009,48,5 1428 | iq,2009,49,4 1429 | iq,2009,50,4 1430 | iq,2009,51,1 1431 | iq,2009,52,0 1432 | iq,2010,53,0 1433 | iq,2010,1,10 1434 | iq,2010,2,9 1435 | iq,2010,3,17 1436 | iq,2010,4,16 1437 | iq,2010,5,11 1438 | iq,2010,6,12 1439 | iq,2010,7,19 1440 | iq,2010,8,15 1441 | iq,2010,9,12 1442 | iq,2010,10,12 1443 | iq,2010,11,16 1444 | iq,2010,12,9 1445 | iq,2010,13,4 1446 | iq,2010,14,9 1447 | iq,2010,15,6 1448 | iq,2010,16,8 1449 | iq,2010,17,4 1450 | iq,2010,18,2 1451 | iq,2010,19,7 1452 | iq,2010,20,6 1453 | iq,2010,21,5 1454 | iq,2010,22,8 1455 | iq,2010,23,1 1456 | iq,2010,24,1 1457 | iq,2010,25,4 1458 | -------------------------------------------------------------------------------- /parkinsons.csv: -------------------------------------------------------------------------------- 1 | name,MDVP:Fo(Hz),MDVP:Fhi(Hz),MDVP:Flo(Hz),MDVP:Jitter(%),MDVP:Jitter(Abs),MDVP:RAP,MDVP:PPQ,Jitter:DDP,MDVP:Shimmer,MDVP:Shimmer(dB),Shimmer:APQ3,Shimmer:APQ5,MDVP:APQ,Shimmer:DDA,NHR,HNR,status,RPDE,DFA,spread1,spread2,D2,PPE 2 | phon_R01_S01_1,119.992,157.302,74.997,0.00784,0.00007,0.0037,0.00554,0.01109,0.04374,0.426,0.02182,0.0313,0.02971,0.06545,0.02211,21.033,1,0.414783,0.815285,-4.813031,0.266482,2.301442,0.284654 3 | phon_R01_S01_2,122.4,148.65,113.819,0.00968,0.00008,0.00465,0.00696,0.01394,0.06134,0.626,0.03134,0.04518,0.04368,0.09403,0.01929,19.085,1,0.458359,0.819521,-4.075192,0.33559,2.486855,0.368674 4 | phon_R01_S01_3,116.682,131.111,111.555,0.0105,0.00009,0.00544,0.00781,0.01633,0.05233,0.482,0.02757,0.03858,0.0359,0.0827,0.01309,20.651,1,0.429895,0.825288,-4.443179,0.311173,2.342259,0.332634 5 | phon_R01_S01_4,116.676,137.871,111.366,0.00997,0.00009,0.00502,0.00698,0.01505,0.05492,0.517,0.02924,0.04005,0.03772,0.08771,0.01353,20.644,1,0.434969,0.819235,-4.117501,0.334147,2.405554,0.368975 6 | phon_R01_S01_5,116.014,141.781,110.655,0.01284,0.00011,0.00655,0.00908,0.01966,0.06425,0.584,0.0349,0.04825,0.04465,0.1047,0.01767,19.649,1,0.417356,0.823484,-3.747787,0.234513,2.33218,0.410335 7 | phon_R01_S01_6,120.552,131.162,113.787,0.00968,0.00008,0.00463,0.0075,0.01388,0.04701,0.456,0.02328,0.03526,0.03243,0.06985,0.01222,21.378,1,0.415564,0.825069,-4.242867,0.299111,2.18756,0.357775 8 | phon_R01_S02_1,120.267,137.244,114.82,0.00333,0.00003,0.00155,0.00202,0.00466,0.01608,0.14,0.00779,0.00937,0.01351,0.02337,0.00607,24.886,1,0.59604,0.764112,-5.634322,0.257682,1.854785,0.211756 9 | phon_R01_S02_2,107.332,113.84,104.315,0.0029,0.00003,0.00144,0.00182,0.00431,0.01567,0.134,0.00829,0.00946,0.01256,0.02487,0.00344,26.892,1,0.63742,0.763262,-6.167603,0.183721,2.064693,0.163755 10 | phon_R01_S02_3,95.73,132.068,91.754,0.00551,0.00006,0.00293,0.00332,0.0088,0.02093,0.191,0.01073,0.01277,0.01717,0.03218,0.0107,21.812,1,0.615551,0.773587,-5.498678,0.327769,2.322511,0.231571 11 | phon_R01_S02_4,95.056,120.103,91.226,0.00532,0.00006,0.00268,0.00332,0.00803,0.02838,0.255,0.01441,0.01725,0.02444,0.04324,0.01022,21.862,1,0.547037,0.798463,-5.011879,0.325996,2.432792,0.271362 12 | phon_R01_S02_5,88.333,112.24,84.072,0.00505,0.00006,0.00254,0.0033,0.00763,0.02143,0.197,0.01079,0.01342,0.01892,0.03237,0.01166,21.118,1,0.611137,0.776156,-5.24977,0.391002,2.407313,0.24974 13 | phon_R01_S02_6,91.904,115.871,86.292,0.0054,0.00006,0.00281,0.00336,0.00844,0.02752,0.249,0.01424,0.01641,0.02214,0.04272,0.01141,21.414,1,0.58339,0.79252,-4.960234,0.363566,2.642476,0.275931 14 | phon_R01_S04_1,136.926,159.866,131.276,0.00293,0.00002,0.00118,0.00153,0.00355,0.01259,0.112,0.00656,0.00717,0.0114,0.01968,0.00581,25.703,1,0.4606,0.646846,-6.547148,0.152813,2.041277,0.138512 15 | phon_R01_S04_2,139.173,179.139,76.556,0.0039,0.00003,0.00165,0.00208,0.00496,0.01642,0.154,0.00728,0.00932,0.01797,0.02184,0.01041,24.889,1,0.430166,0.665833,-5.660217,0.254989,2.519422,0.199889 16 | phon_R01_S04_3,152.845,163.305,75.836,0.00294,0.00002,0.00121,0.00149,0.00364,0.01828,0.158,0.01064,0.00972,0.01246,0.03191,0.00609,24.922,1,0.474791,0.654027,-6.105098,0.203653,2.125618,0.1701 17 | phon_R01_S04_4,142.167,217.455,83.159,0.00369,0.00003,0.00157,0.00203,0.00471,0.01503,0.126,0.00772,0.00888,0.01359,0.02316,0.00839,25.175,1,0.565924,0.658245,-5.340115,0.210185,2.205546,0.234589 18 | phon_R01_S04_5,144.188,349.259,82.764,0.00544,0.00004,0.00211,0.00292,0.00632,0.02047,0.192,0.00969,0.012,0.02074,0.02908,0.01859,22.333,1,0.56738,0.644692,-5.44004,0.239764,2.264501,0.218164 19 | phon_R01_S04_6,168.778,232.181,75.603,0.00718,0.00004,0.00284,0.00387,0.00853,0.03327,0.348,0.01441,0.01893,0.0343,0.04322,0.02919,20.376,1,0.631099,0.605417,-2.93107,0.434326,3.007463,0.430788 20 | phon_R01_S05_1,153.046,175.829,68.623,0.00742,0.00005,0.00364,0.00432,0.01092,0.05517,0.542,0.02471,0.03572,0.05767,0.07413,0.0316,17.28,1,0.665318,0.719467,-3.949079,0.35787,3.10901,0.377429 21 | phon_R01_S05_2,156.405,189.398,142.822,0.00768,0.00005,0.00372,0.00399,0.01116,0.03995,0.348,0.01721,0.02374,0.0431,0.05164,0.03365,17.153,1,0.649554,0.68608,-4.554466,0.340176,2.856676,0.322111 22 | phon_R01_S05_3,153.848,165.738,65.782,0.0084,0.00005,0.00428,0.0045,0.01285,0.0381,0.328,0.01667,0.02383,0.04055,0.05,0.03871,17.536,1,0.660125,0.704087,-4.095442,0.262564,2.73971,0.365391 23 | phon_R01_S05_4,153.88,172.86,78.128,0.0048,0.00003,0.00232,0.00267,0.00696,0.04137,0.37,0.02021,0.02591,0.04525,0.06062,0.01849,19.493,1,0.629017,0.698951,-5.18696,0.237622,2.557536,0.259765 24 | phon_R01_S05_5,167.93,193.221,79.068,0.00442,0.00003,0.0022,0.00247,0.00661,0.04351,0.377,0.02228,0.0254,0.04246,0.06685,0.0128,22.468,1,0.61906,0.679834,-4.330956,0.262384,2.916777,0.285695 25 | phon_R01_S05_6,173.917,192.735,86.18,0.00476,0.00003,0.00221,0.00258,0.00663,0.04192,0.364,0.02187,0.0247,0.03772,0.06562,0.0184,20.422,1,0.537264,0.686894,-5.248776,0.210279,2.547508,0.253556 26 | phon_R01_S06_1,163.656,200.841,76.779,0.00742,0.00005,0.0038,0.0039,0.0114,0.01659,0.164,0.00738,0.00948,0.01497,0.02214,0.01778,23.831,1,0.397937,0.732479,-5.557447,0.22089,2.692176,0.215961 27 | phon_R01_S06_2,104.4,206.002,77.968,0.00633,0.00006,0.00316,0.00375,0.00948,0.03767,0.381,0.01732,0.02245,0.0378,0.05197,0.02887,22.066,1,0.522746,0.737948,-5.571843,0.236853,2.846369,0.219514 28 | phon_R01_S06_3,171.041,208.313,75.501,0.00455,0.00003,0.0025,0.00234,0.0075,0.01966,0.186,0.00889,0.01169,0.01872,0.02666,0.01095,25.908,1,0.418622,0.720916,-6.18359,0.226278,2.589702,0.147403 29 | phon_R01_S06_4,146.845,208.701,81.737,0.00496,0.00003,0.0025,0.00275,0.00749,0.01919,0.198,0.00883,0.01144,0.01826,0.0265,0.01328,25.119,1,0.358773,0.726652,-6.27169,0.196102,2.314209,0.162999 30 | phon_R01_S06_5,155.358,227.383,80.055,0.0031,0.00002,0.00159,0.00176,0.00476,0.01718,0.161,0.00769,0.01012,0.01661,0.02307,0.00677,25.97,1,0.470478,0.676258,-7.120925,0.279789,2.241742,0.108514 31 | phon_R01_S06_6,162.568,198.346,77.63,0.00502,0.00003,0.0028,0.00253,0.00841,0.01791,0.168,0.00793,0.01057,0.01799,0.0238,0.0117,25.678,1,0.427785,0.723797,-6.635729,0.209866,1.957961,0.135242 32 | phon_R01_S07_1,197.076,206.896,192.055,0.00289,0.00001,0.00166,0.00168,0.00498,0.01098,0.097,0.00563,0.0068,0.00802,0.01689,0.00339,26.775,0,0.422229,0.741367,-7.3483,0.177551,1.743867,0.085569 33 | phon_R01_S07_2,199.228,209.512,192.091,0.00241,0.00001,0.00134,0.00138,0.00402,0.01015,0.089,0.00504,0.00641,0.00762,0.01513,0.00167,30.94,0,0.432439,0.742055,-7.682587,0.173319,2.103106,0.068501 34 | phon_R01_S07_3,198.383,215.203,193.104,0.00212,0.00001,0.00113,0.00135,0.00339,0.01263,0.111,0.0064,0.00825,0.00951,0.01919,0.00119,30.775,0,0.465946,0.738703,-7.067931,0.175181,1.512275,0.09632 35 | phon_R01_S07_4,202.266,211.604,197.079,0.0018,0.000009,0.00093,0.00107,0.00278,0.00954,0.085,0.00469,0.00606,0.00719,0.01407,0.00072,32.684,0,0.368535,0.742133,-7.695734,0.17854,1.544609,0.056141 36 | phon_R01_S07_5,203.184,211.526,196.16,0.00178,0.000009,0.00094,0.00106,0.00283,0.00958,0.085,0.00468,0.0061,0.00726,0.01403,0.00065,33.047,0,0.340068,0.741899,-7.964984,0.163519,1.423287,0.044539 37 | phon_R01_S07_6,201.464,210.565,195.708,0.00198,0.00001,0.00105,0.00115,0.00314,0.01194,0.107,0.00586,0.0076,0.00957,0.01758,0.00135,31.732,0,0.344252,0.742737,-7.777685,0.170183,2.447064,0.05761 38 | phon_R01_S08_1,177.876,192.921,168.013,0.00411,0.00002,0.00233,0.00241,0.007,0.02126,0.189,0.01154,0.01347,0.01612,0.03463,0.00586,23.216,1,0.360148,0.778834,-6.149653,0.218037,2.477082,0.165827 39 | phon_R01_S08_2,176.17,185.604,163.564,0.00369,0.00002,0.00205,0.00218,0.00616,0.01851,0.168,0.00938,0.0116,0.01491,0.02814,0.0034,24.951,1,0.341435,0.783626,-6.006414,0.196371,2.536527,0.173218 40 | phon_R01_S08_3,180.198,201.249,175.456,0.00284,0.00002,0.00153,0.00166,0.00459,0.01444,0.131,0.00726,0.00885,0.0119,0.02177,0.00231,26.738,1,0.403884,0.766209,-6.452058,0.212294,2.269398,0.141929 41 | phon_R01_S08_4,187.733,202.324,173.015,0.00316,0.00002,0.00168,0.00182,0.00504,0.01663,0.151,0.00829,0.01003,0.01366,0.02488,0.00265,26.31,1,0.396793,0.758324,-6.006647,0.266892,2.382544,0.160691 42 | phon_R01_S08_5,186.163,197.724,177.584,0.00298,0.00002,0.00165,0.00175,0.00496,0.01495,0.135,0.00774,0.00941,0.01233,0.02321,0.00231,26.822,1,0.32648,0.765623,-6.647379,0.201095,2.374073,0.130554 43 | phon_R01_S08_6,184.055,196.537,166.977,0.00258,0.00001,0.00134,0.00147,0.00403,0.01463,0.132,0.00742,0.00901,0.01234,0.02226,0.00257,26.453,1,0.306443,0.759203,-7.044105,0.063412,2.361532,0.11573 44 | phon_R01_S10_1,237.226,247.326,225.227,0.00298,0.00001,0.00169,0.00182,0.00507,0.01752,0.164,0.01035,0.01024,0.01133,0.03104,0.0074,22.736,0,0.305062,0.654172,-7.31055,0.098648,2.416838,0.095032 45 | phon_R01_S10_2,241.404,248.834,232.483,0.00281,0.00001,0.00157,0.00173,0.0047,0.0176,0.154,0.01006,0.01038,0.01251,0.03017,0.00675,23.145,0,0.457702,0.634267,-6.793547,0.158266,2.256699,0.117399 46 | phon_R01_S10_3,243.439,250.912,232.435,0.0021,0.000009,0.00109,0.00137,0.00327,0.01419,0.126,0.00777,0.00898,0.01033,0.0233,0.00454,25.368,0,0.438296,0.635285,-7.057869,0.091608,2.330716,0.09147 47 | phon_R01_S10_4,242.852,255.034,227.911,0.00225,0.000009,0.00117,0.00139,0.0035,0.01494,0.134,0.00847,0.00879,0.01014,0.02542,0.00476,25.032,0,0.431285,0.638928,-6.99582,0.102083,2.3658,0.102706 48 | phon_R01_S10_5,245.51,262.09,231.848,0.00235,0.00001,0.00127,0.00148,0.0038,0.01608,0.141,0.00906,0.00977,0.01149,0.02719,0.00476,24.602,0,0.467489,0.631653,-7.156076,0.127642,2.392122,0.097336 49 | phon_R01_S10_6,252.455,261.487,182.786,0.00185,0.000007,0.00092,0.00113,0.00276,0.01152,0.103,0.00614,0.0073,0.0086,0.01841,0.00432,26.805,0,0.610367,0.635204,-7.31951,0.200873,2.028612,0.086398 50 | phon_R01_S13_1,122.188,128.611,115.765,0.00524,0.00004,0.00169,0.00203,0.00507,0.01613,0.143,0.00855,0.00776,0.01433,0.02566,0.00839,23.162,0,0.579597,0.733659,-6.439398,0.266392,2.079922,0.133867 51 | phon_R01_S13_2,122.964,130.049,114.676,0.00428,0.00003,0.00124,0.00155,0.00373,0.01681,0.154,0.0093,0.00802,0.014,0.02789,0.00462,24.971,0,0.538688,0.754073,-6.482096,0.264967,2.054419,0.128872 52 | phon_R01_S13_3,124.445,135.069,117.495,0.00431,0.00003,0.00141,0.00167,0.00422,0.02184,0.197,0.01241,0.01024,0.01685,0.03724,0.00479,25.135,0,0.553134,0.775933,-6.650471,0.254498,1.840198,0.103561 53 | phon_R01_S13_4,126.344,134.231,112.773,0.00448,0.00004,0.00131,0.00169,0.00393,0.02033,0.185,0.01143,0.00959,0.01614,0.03429,0.00474,25.03,0,0.507504,0.760361,-6.689151,0.291954,2.431854,0.105993 54 | phon_R01_S13_5,128.001,138.052,122.08,0.00436,0.00003,0.00137,0.00166,0.00411,0.02297,0.21,0.01323,0.01072,0.01677,0.03969,0.00481,24.692,0,0.459766,0.766204,-7.072419,0.220434,1.972297,0.119308 55 | phon_R01_S13_6,129.336,139.867,118.604,0.0049,0.00004,0.00165,0.00183,0.00495,0.02498,0.228,0.01396,0.01219,0.01947,0.04188,0.00484,25.429,0,0.420383,0.785714,-6.836811,0.269866,2.223719,0.147491 56 | phon_R01_S16_1,108.807,134.656,102.874,0.00761,0.00007,0.00349,0.00486,0.01046,0.02719,0.255,0.01483,0.01609,0.02067,0.0445,0.01036,21.028,1,0.536009,0.819032,-4.649573,0.205558,1.986899,0.3167 57 | phon_R01_S16_2,109.86,126.358,104.437,0.00874,0.00008,0.00398,0.00539,0.01193,0.03209,0.307,0.01789,0.01992,0.02454,0.05368,0.0118,20.767,1,0.558586,0.811843,-4.333543,0.221727,2.014606,0.344834 58 | phon_R01_S16_3,110.417,131.067,103.37,0.00784,0.00007,0.00352,0.00514,0.01056,0.03715,0.334,0.02032,0.02302,0.02802,0.06097,0.00969,21.422,1,0.541781,0.821364,-4.438453,0.238298,1.92294,0.335041 59 | phon_R01_S16_4,117.274,129.916,110.402,0.00752,0.00006,0.00299,0.00469,0.00898,0.02293,0.221,0.01189,0.01459,0.01948,0.03568,0.00681,22.817,1,0.530529,0.817756,-4.60826,0.290024,2.021591,0.314464 60 | phon_R01_S16_5,116.879,131.897,108.153,0.00788,0.00007,0.00334,0.00493,0.01003,0.02645,0.265,0.01394,0.01625,0.02137,0.04183,0.00786,22.603,1,0.540049,0.813432,-4.476755,0.262633,1.827012,0.326197 61 | phon_R01_S16_6,114.847,271.314,104.68,0.00867,0.00008,0.00373,0.0052,0.0112,0.03225,0.35,0.01805,0.01974,0.02519,0.05414,0.01143,21.66,1,0.547975,0.817396,-4.609161,0.221711,1.831691,0.316395 62 | phon_R01_S17_1,209.144,237.494,109.379,0.00282,0.00001,0.00147,0.00152,0.00442,0.01861,0.17,0.00975,0.01258,0.01382,0.02925,0.00871,25.554,0,0.341788,0.678874,-7.040508,0.066994,2.460791,0.101516 63 | phon_R01_S17_2,223.365,238.987,98.664,0.00264,0.00001,0.00154,0.00151,0.00461,0.01906,0.165,0.01013,0.01296,0.0134,0.03039,0.00301,26.138,0,0.447979,0.686264,-7.293801,0.086372,2.32156,0.098555 64 | phon_R01_S17_3,222.236,231.345,205.495,0.00266,0.00001,0.00152,0.00144,0.00457,0.01643,0.145,0.00867,0.01108,0.012,0.02602,0.0034,25.856,0,0.364867,0.694399,-6.966321,0.095882,2.278687,0.103224 65 | phon_R01_S17_4,228.832,234.619,223.634,0.00296,0.00001,0.00175,0.00155,0.00526,0.01644,0.145,0.00882,0.01075,0.01179,0.02647,0.00351,25.964,0,0.25657,0.683296,-7.24562,0.018689,2.498224,0.093534 66 | phon_R01_S17_5,229.401,252.221,221.156,0.00205,0.000009,0.00114,0.00113,0.00342,0.01457,0.129,0.00769,0.00957,0.01016,0.02308,0.003,26.415,0,0.27685,0.673636,-7.496264,0.056844,2.003032,0.073581 67 | phon_R01_S17_6,228.969,239.541,113.201,0.00238,0.00001,0.00136,0.0014,0.00408,0.01745,0.154,0.00942,0.0116,0.01234,0.02827,0.0042,24.547,0,0.305429,0.681811,-7.314237,0.006274,2.118596,0.091546 68 | phon_R01_S18_1,140.341,159.774,67.021,0.00817,0.00006,0.0043,0.0044,0.01289,0.03198,0.313,0.0183,0.0181,0.02428,0.0549,0.02183,19.56,1,0.460139,0.720908,-5.409423,0.22685,2.359973,0.226156 69 | phon_R01_S18_2,136.969,166.607,66.004,0.00923,0.00007,0.00507,0.00463,0.0152,0.03111,0.308,0.01638,0.01759,0.02603,0.04914,0.02659,19.979,1,0.498133,0.729067,-5.324574,0.20566,2.291558,0.226247 70 | phon_R01_S18_3,143.533,162.215,65.809,0.01101,0.00008,0.00647,0.00467,0.01941,0.05384,0.478,0.03152,0.02422,0.03392,0.09455,0.04882,20.338,1,0.513237,0.731444,-5.86975,0.151814,2.118496,0.18558 71 | phon_R01_S18_4,148.09,162.824,67.343,0.00762,0.00005,0.00467,0.00354,0.014,0.05428,0.497,0.03357,0.02494,0.03635,0.1007,0.02431,21.718,1,0.487407,0.727313,-6.261141,0.120956,2.137075,0.141958 72 | phon_R01_S18_5,142.729,162.408,65.476,0.00831,0.00006,0.00469,0.00419,0.01407,0.03485,0.365,0.01868,0.01906,0.02949,0.05605,0.02599,20.264,1,0.489345,0.730387,-5.720868,0.15883,2.277927,0.180828 73 | phon_R01_S18_6,136.358,176.595,65.75,0.00971,0.00007,0.00534,0.00478,0.01601,0.04978,0.483,0.02749,0.02466,0.03736,0.08247,0.03361,18.57,1,0.543299,0.733232,-5.207985,0.224852,2.642276,0.242981 74 | phon_R01_S19_1,120.08,139.71,111.208,0.00405,0.00003,0.0018,0.0022,0.0054,0.01706,0.152,0.00974,0.00925,0.01345,0.02921,0.00442,25.742,1,0.495954,0.762959,-5.79182,0.329066,2.205024,0.18818 75 | phon_R01_S19_2,112.014,588.518,107.024,0.00533,0.00005,0.00268,0.00329,0.00805,0.02448,0.226,0.01373,0.01375,0.01956,0.0412,0.00623,24.178,1,0.509127,0.789532,-5.389129,0.306636,1.928708,0.225461 76 | phon_R01_S19_3,110.793,128.101,107.316,0.00494,0.00004,0.0026,0.00283,0.0078,0.02442,0.216,0.01432,0.01325,0.01831,0.04295,0.00479,25.438,1,0.437031,0.815908,-5.31336,0.201861,2.225815,0.244512 77 | phon_R01_S19_4,110.707,122.611,105.007,0.00516,0.00005,0.00277,0.00289,0.00831,0.02215,0.206,0.01284,0.01219,0.01715,0.03851,0.00472,25.197,1,0.463514,0.807217,-5.477592,0.315074,1.862092,0.228624 78 | phon_R01_S19_5,112.876,148.826,106.981,0.005,0.00004,0.0027,0.00289,0.0081,0.03999,0.35,0.02413,0.02231,0.02704,0.07238,0.00905,23.37,1,0.489538,0.789977,-5.775966,0.341169,2.007923,0.193918 79 | phon_R01_S19_6,110.568,125.394,106.821,0.00462,0.00004,0.00226,0.0028,0.00677,0.02199,0.197,0.01284,0.01199,0.01636,0.03852,0.0042,25.82,1,0.429484,0.81634,-5.391029,0.250572,1.777901,0.232744 80 | phon_R01_S20_1,95.385,102.145,90.264,0.00608,0.00006,0.00331,0.00332,0.00994,0.03202,0.263,0.01803,0.01886,0.02455,0.05408,0.01062,21.875,1,0.644954,0.779612,-5.115212,0.249494,2.017753,0.260015 81 | phon_R01_S20_2,100.77,115.697,85.545,0.01038,0.0001,0.00622,0.00576,0.01865,0.03121,0.361,0.01773,0.01783,0.02139,0.0532,0.0222,19.2,1,0.594387,0.790117,-4.913885,0.265699,2.398422,0.277948 82 | phon_R01_S20_3,96.106,108.664,84.51,0.00694,0.00007,0.00389,0.00415,0.01168,0.04024,0.364,0.02266,0.02451,0.02876,0.06799,0.01823,19.055,1,0.544805,0.770466,-4.441519,0.155097,2.645959,0.327978 83 | phon_R01_S20_4,95.605,107.715,87.549,0.00702,0.00007,0.00428,0.00371,0.01283,0.03156,0.296,0.01792,0.01841,0.0219,0.05377,0.01825,19.659,1,0.576084,0.778747,-5.132032,0.210458,2.232576,0.260633 84 | phon_R01_S20_5,100.96,110.019,95.628,0.00606,0.00006,0.00351,0.00348,0.01053,0.02427,0.216,0.01371,0.01421,0.01751,0.04114,0.01237,20.536,1,0.55461,0.787896,-5.022288,0.146948,2.428306,0.264666 85 | phon_R01_S20_6,98.804,102.305,87.804,0.00432,0.00004,0.00247,0.00258,0.00742,0.02223,0.202,0.01277,0.01343,0.01552,0.03831,0.00882,22.244,1,0.576644,0.772416,-6.025367,0.078202,2.053601,0.177275 86 | phon_R01_S21_1,176.858,205.56,75.344,0.00747,0.00004,0.00418,0.0042,0.01254,0.04795,0.435,0.02679,0.03022,0.0351,0.08037,0.0547,13.893,1,0.556494,0.729586,-5.288912,0.343073,3.099301,0.242119 87 | phon_R01_S21_2,180.978,200.125,155.495,0.00406,0.00002,0.0022,0.00244,0.00659,0.03852,0.331,0.02107,0.02493,0.02877,0.06321,0.02782,16.176,1,0.583574,0.727747,-5.657899,0.315903,3.098256,0.200423 88 | phon_R01_S21_3,178.222,202.45,141.047,0.00321,0.00002,0.00163,0.00194,0.00488,0.03759,0.327,0.02073,0.02415,0.02784,0.06219,0.03151,15.924,1,0.598714,0.712199,-6.366916,0.335753,2.654271,0.144614 89 | phon_R01_S21_4,176.281,227.381,125.61,0.0052,0.00003,0.00287,0.00312,0.00862,0.06511,0.58,0.03671,0.04159,0.04683,0.11012,0.04824,13.922,1,0.602874,0.740837,-5.515071,0.299549,3.13655,0.220968 90 | phon_R01_S21_5,173.898,211.35,74.677,0.00448,0.00003,0.00237,0.00254,0.0071,0.06727,0.65,0.03788,0.04254,0.04802,0.11363,0.04214,14.739,1,0.599371,0.743937,-5.783272,0.299793,3.007096,0.194052 91 | phon_R01_S21_6,179.711,225.93,144.878,0.00709,0.00004,0.00391,0.00419,0.01172,0.04313,0.442,0.02297,0.02768,0.03455,0.06892,0.07223,11.866,1,0.590951,0.745526,-4.379411,0.375531,3.671155,0.332086 92 | phon_R01_S21_7,166.605,206.008,78.032,0.00742,0.00004,0.00387,0.00453,0.01161,0.0664,0.634,0.0365,0.04282,0.05114,0.10949,0.08725,11.744,1,0.65341,0.733165,-4.508984,0.389232,3.317586,0.301952 93 | phon_R01_S22_1,151.955,163.335,147.226,0.00419,0.00003,0.00224,0.00227,0.00672,0.07959,0.772,0.04421,0.04962,0.0569,0.13262,0.01658,19.664,1,0.501037,0.71436,-6.411497,0.207156,2.344876,0.13412 94 | phon_R01_S22_2,148.272,164.989,142.299,0.00459,0.00003,0.0025,0.00256,0.0075,0.0419,0.383,0.02383,0.02521,0.03051,0.0715,0.01914,18.78,1,0.454444,0.734504,-5.952058,0.08784,2.344336,0.186489 95 | phon_R01_S22_3,152.125,161.469,76.596,0.00382,0.00003,0.00191,0.00226,0.00574,0.05925,0.637,0.03341,0.03794,0.04398,0.10024,0.01211,20.969,1,0.447456,0.69779,-6.152551,0.17352,2.080121,0.160809 96 | phon_R01_S22_4,157.821,172.975,68.401,0.00358,0.00002,0.00196,0.00196,0.00587,0.03716,0.307,0.02062,0.02321,0.02764,0.06185,0.0085,22.219,1,0.50238,0.71217,-6.251425,0.188056,2.143851,0.160812 97 | phon_R01_S22_5,157.447,163.267,149.605,0.00369,0.00002,0.00201,0.00197,0.00602,0.03272,0.283,0.01813,0.01909,0.02571,0.05439,0.01018,21.693,1,0.447285,0.705658,-6.247076,0.180528,2.344348,0.164916 98 | phon_R01_S22_6,159.116,168.913,144.811,0.00342,0.00002,0.00178,0.00184,0.00535,0.03381,0.307,0.01806,0.02024,0.02809,0.05417,0.00852,22.663,1,0.366329,0.693429,-6.41744,0.194627,2.473239,0.151709 99 | phon_R01_S24_1,125.036,143.946,116.187,0.0128,0.0001,0.00743,0.00623,0.02228,0.03886,0.342,0.02135,0.02174,0.03088,0.06406,0.08151,15.338,1,0.629574,0.714485,-4.020042,0.265315,2.671825,0.340623 100 | phon_R01_S24_2,125.791,140.557,96.206,0.01378,0.00011,0.00826,0.00655,0.02478,0.04689,0.422,0.02542,0.0263,0.03908,0.07625,0.10323,15.433,1,0.57101,0.690892,-5.159169,0.202146,2.441612,0.260375 101 | phon_R01_S24_3,126.512,141.756,99.77,0.01936,0.00015,0.01159,0.0099,0.03476,0.06734,0.659,0.03611,0.03963,0.05783,0.10833,0.16744,12.435,1,0.638545,0.674953,-3.760348,0.242861,2.634633,0.378483 102 | phon_R01_S24_4,125.641,141.068,116.346,0.03316,0.00026,0.02144,0.01522,0.06433,0.09178,0.891,0.05358,0.04791,0.06196,0.16074,0.31482,8.867,1,0.671299,0.656846,-3.700544,0.260481,2.991063,0.370961 103 | phon_R01_S24_5,128.451,150.449,75.632,0.01551,0.00012,0.00905,0.00909,0.02716,0.0617,0.584,0.03223,0.03672,0.05174,0.09669,0.11843,15.06,1,0.639808,0.643327,-4.20273,0.310163,2.638279,0.356881 104 | phon_R01_S24_6,139.224,586.567,66.157,0.03011,0.00022,0.01854,0.01628,0.05563,0.09419,0.93,0.05551,0.05005,0.06023,0.16654,0.2593,10.489,1,0.596362,0.641418,-3.269487,0.270641,2.690917,0.444774 105 | phon_R01_S25_1,150.258,154.609,75.349,0.00248,0.00002,0.00105,0.00136,0.00315,0.01131,0.107,0.00522,0.00659,0.01009,0.01567,0.00495,26.759,1,0.296888,0.722356,-6.878393,0.089267,2.004055,0.113942 106 | phon_R01_S25_2,154.003,160.267,128.621,0.00183,0.00001,0.00076,0.001,0.00229,0.0103,0.094,0.00469,0.00582,0.00871,0.01406,0.00243,28.409,1,0.263654,0.691483,-7.111576,0.14478,2.065477,0.093193 107 | phon_R01_S25_3,149.689,160.368,133.608,0.00257,0.00002,0.00116,0.00134,0.00349,0.01346,0.126,0.0066,0.00818,0.01059,0.01979,0.00578,27.421,1,0.365488,0.719974,-6.997403,0.210279,1.994387,0.112878 108 | phon_R01_S25_4,155.078,163.736,144.148,0.00168,0.00001,0.00068,0.00092,0.00204,0.01064,0.097,0.00522,0.00632,0.00928,0.01567,0.00233,29.746,1,0.334171,0.67793,-6.981201,0.18455,2.129924,0.106802 109 | phon_R01_S25_5,151.884,157.765,133.751,0.00258,0.00002,0.00115,0.00122,0.00346,0.0145,0.137,0.00633,0.00788,0.01267,0.01898,0.00659,26.833,1,0.393563,0.700246,-6.600023,0.249172,2.499148,0.105306 110 | phon_R01_S25_6,151.989,157.339,132.857,0.00174,0.00001,0.00075,0.00096,0.00225,0.01024,0.093,0.00455,0.00576,0.00993,0.01364,0.00238,29.928,1,0.311369,0.676066,-6.739151,0.160686,2.296873,0.11513 111 | phon_R01_S26_1,193.03,208.9,80.297,0.00766,0.00004,0.0045,0.00389,0.01351,0.03044,0.275,0.01771,0.01815,0.02084,0.05312,0.00947,21.934,1,0.497554,0.740539,-5.845099,0.278679,2.608749,0.185668 112 | phon_R01_S26_2,200.714,223.982,89.686,0.00621,0.00003,0.00371,0.00337,0.01112,0.02286,0.207,0.01192,0.01439,0.01852,0.03576,0.00704,23.239,1,0.436084,0.727863,-5.25832,0.256454,2.550961,0.23252 113 | phon_R01_S26_3,208.519,220.315,199.02,0.00609,0.00003,0.00368,0.00339,0.01105,0.01761,0.155,0.00952,0.01058,0.01307,0.02855,0.0083,22.407,1,0.338097,0.712466,-6.471427,0.184378,2.502336,0.13639 114 | phon_R01_S26_4,204.664,221.3,189.621,0.00841,0.00004,0.00502,0.00485,0.01506,0.02378,0.21,0.01277,0.01483,0.01767,0.03831,0.01316,21.305,1,0.498877,0.722085,-4.876336,0.212054,2.376749,0.268144 115 | phon_R01_S26_5,210.141,232.706,185.258,0.00534,0.00003,0.00321,0.0028,0.00964,0.0168,0.149,0.00861,0.01017,0.01301,0.02583,0.0062,23.671,1,0.441097,0.722254,-5.96304,0.250283,2.489191,0.177807 116 | phon_R01_S26_6,206.327,226.355,92.02,0.00495,0.00002,0.00302,0.00246,0.00905,0.02105,0.209,0.01107,0.01284,0.01604,0.0332,0.01048,21.864,1,0.331508,0.715121,-6.729713,0.181701,2.938114,0.115515 117 | phon_R01_S27_1,151.872,492.892,69.085,0.00856,0.00006,0.00404,0.00385,0.01211,0.01843,0.235,0.00796,0.00832,0.01271,0.02389,0.06051,23.693,1,0.407701,0.662668,-4.673241,0.261549,2.702355,0.274407 118 | phon_R01_S27_2,158.219,442.557,71.948,0.00476,0.00003,0.00214,0.00207,0.00642,0.01458,0.148,0.00606,0.00747,0.01312,0.01818,0.01554,26.356,1,0.450798,0.653823,-6.051233,0.27328,2.640798,0.170106 119 | phon_R01_S27_3,170.756,450.247,79.032,0.00555,0.00003,0.00244,0.00261,0.00731,0.01725,0.175,0.00757,0.00971,0.01652,0.0227,0.01802,25.69,1,0.486738,0.676023,-4.597834,0.372114,2.975889,0.28278 120 | phon_R01_S27_4,178.285,442.824,82.063,0.00462,0.00003,0.00157,0.00194,0.00472,0.01279,0.129,0.00617,0.00744,0.01151,0.01851,0.00856,25.02,1,0.470422,0.655239,-4.913137,0.393056,2.816781,0.251972 121 | phon_R01_S27_5,217.116,233.481,93.978,0.00404,0.00002,0.00127,0.00128,0.00381,0.01299,0.124,0.00679,0.00631,0.01075,0.02038,0.00681,24.581,1,0.462516,0.58271,-5.517173,0.389295,2.925862,0.220657 122 | phon_R01_S27_6,128.94,479.697,88.251,0.00581,0.00005,0.00241,0.00314,0.00723,0.02008,0.221,0.00849,0.01117,0.01734,0.02548,0.0235,24.743,1,0.487756,0.68413,-6.186128,0.279933,2.68624,0.152428 123 | phon_R01_S27_7,176.824,215.293,83.961,0.0046,0.00003,0.00209,0.00221,0.00628,0.01169,0.117,0.00534,0.0063,0.01104,0.01603,0.01161,27.166,1,0.400088,0.656182,-4.711007,0.281618,2.655744,0.234809 124 | phon_R01_S31_1,138.19,203.522,83.34,0.00704,0.00005,0.00406,0.00398,0.01218,0.04479,0.441,0.02587,0.02567,0.0322,0.07761,0.01968,18.305,1,0.538016,0.74148,-5.418787,0.160267,2.090438,0.229892 125 | phon_R01_S31_2,182.018,197.173,79.187,0.00842,0.00005,0.00506,0.00449,0.01517,0.02503,0.231,0.01372,0.0158,0.01931,0.04115,0.01813,18.784,1,0.589956,0.732903,-5.44514,0.142466,2.174306,0.215558 126 | phon_R01_S31_3,156.239,195.107,79.82,0.00694,0.00004,0.00403,0.00395,0.01209,0.02343,0.224,0.01289,0.0142,0.0172,0.03867,0.0202,19.196,1,0.618663,0.728421,-5.944191,0.143359,1.929715,0.181988 127 | phon_R01_S31_4,145.174,198.109,80.637,0.00733,0.00005,0.00414,0.00422,0.01242,0.02362,0.233,0.01235,0.01495,0.01944,0.03706,0.01874,18.857,1,0.637518,0.735546,-5.594275,0.12795,1.765957,0.222716 128 | phon_R01_S31_5,138.145,197.238,81.114,0.00544,0.00004,0.00294,0.00327,0.00883,0.02791,0.246,0.01484,0.01805,0.02259,0.04451,0.01794,18.178,1,0.623209,0.738245,-5.540351,0.087165,1.821297,0.214075 129 | phon_R01_S31_6,166.888,198.966,79.512,0.00638,0.00004,0.00368,0.00351,0.01104,0.02857,0.257,0.01547,0.01859,0.02301,0.04641,0.01796,18.33,1,0.585169,0.736964,-5.825257,0.115697,1.996146,0.196535 130 | phon_R01_S32_1,119.031,127.533,109.216,0.0044,0.00004,0.00214,0.00192,0.00641,0.01033,0.098,0.00538,0.0057,0.00811,0.01614,0.01724,26.842,1,0.457541,0.699787,-6.890021,0.152941,2.328513,0.112856 131 | phon_R01_S32_2,120.078,126.632,105.667,0.0027,0.00002,0.00116,0.00135,0.00349,0.01022,0.09,0.00476,0.00588,0.00903,0.01428,0.00487,26.369,1,0.491345,0.718839,-5.892061,0.195976,2.108873,0.183572 132 | phon_R01_S32_3,120.289,128.143,100.209,0.00492,0.00004,0.00269,0.00238,0.00808,0.01412,0.125,0.00703,0.0082,0.01194,0.0211,0.0161,23.949,1,0.46716,0.724045,-6.135296,0.20363,2.539724,0.169923 133 | phon_R01_S32_4,120.256,125.306,104.773,0.00407,0.00003,0.00224,0.00205,0.00671,0.01516,0.138,0.00721,0.00815,0.0131,0.02164,0.01015,26.017,1,0.468621,0.735136,-6.112667,0.217013,2.527742,0.170633 134 | phon_R01_S32_5,119.056,125.213,86.795,0.00346,0.00003,0.00169,0.0017,0.00508,0.01201,0.106,0.00633,0.00701,0.00915,0.01898,0.00903,23.389,1,0.470972,0.721308,-5.436135,0.254909,2.51632,0.232209 135 | phon_R01_S32_6,118.747,123.723,109.836,0.00331,0.00003,0.00168,0.00171,0.00504,0.01043,0.099,0.0049,0.00621,0.00903,0.01471,0.00504,25.619,1,0.482296,0.723096,-6.448134,0.178713,2.034827,0.141422 136 | phon_R01_S33_1,106.516,112.777,93.105,0.00589,0.00006,0.00291,0.00319,0.00873,0.04932,0.441,0.02683,0.03112,0.03651,0.0805,0.03031,17.06,1,0.637814,0.744064,-5.301321,0.320385,2.375138,0.24308 137 | phon_R01_S33_2,110.453,127.611,105.554,0.00494,0.00004,0.00244,0.00315,0.00731,0.04128,0.379,0.02229,0.02592,0.03316,0.06688,0.02529,17.707,1,0.653427,0.706687,-5.333619,0.322044,2.631793,0.228319 138 | phon_R01_S33_3,113.4,133.344,107.816,0.00451,0.00004,0.00219,0.00283,0.00658,0.04879,0.431,0.02385,0.02973,0.0437,0.07154,0.02278,19.013,1,0.6479,0.708144,-4.378916,0.300067,2.445502,0.259451 139 | phon_R01_S33_4,113.166,130.27,100.673,0.00502,0.00004,0.00257,0.00312,0.00772,0.05279,0.476,0.02896,0.03347,0.04134,0.08689,0.0369,16.747,1,0.625362,0.708617,-4.654894,0.304107,2.672362,0.274387 140 | phon_R01_S33_5,112.239,126.609,104.095,0.00472,0.00004,0.00238,0.0029,0.00715,0.05643,0.517,0.0307,0.0353,0.04451,0.09211,0.02629,17.366,1,0.640945,0.701404,-5.634576,0.306014,2.419253,0.209191 141 | phon_R01_S33_6,116.15,131.731,109.815,0.00381,0.00003,0.00181,0.00232,0.00542,0.03026,0.267,0.01514,0.01812,0.0277,0.04543,0.01827,18.801,1,0.624811,0.696049,-5.866357,0.23307,2.445646,0.184985 142 | phon_R01_S34_1,170.368,268.796,79.543,0.00571,0.00003,0.00232,0.00269,0.00696,0.03273,0.281,0.01713,0.01964,0.02824,0.05139,0.02485,18.54,1,0.677131,0.685057,-4.796845,0.397749,2.963799,0.277227 143 | phon_R01_S34_2,208.083,253.792,91.802,0.00757,0.00004,0.00428,0.00428,0.01285,0.06725,0.571,0.04016,0.04003,0.04464,0.12047,0.04238,15.648,1,0.606344,0.665945,-5.410336,0.288917,2.665133,0.231723 144 | phon_R01_S34_3,198.458,219.29,148.691,0.00376,0.00002,0.00182,0.00215,0.00546,0.03527,0.297,0.02055,0.02076,0.0253,0.06165,0.01728,18.702,1,0.606273,0.661735,-5.585259,0.310746,2.465528,0.209863 145 | phon_R01_S34_4,202.805,231.508,86.232,0.0037,0.00002,0.00189,0.00211,0.00568,0.01997,0.18,0.01117,0.01177,0.01506,0.0335,0.0201,18.687,1,0.536102,0.632631,-5.898673,0.213353,2.470746,0.189032 146 | phon_R01_S34_5,202.544,241.35,164.168,0.00254,0.00001,0.001,0.00133,0.00301,0.02662,0.228,0.01475,0.01558,0.02006,0.04426,0.01049,20.68,1,0.49748,0.630409,-6.132663,0.220617,2.576563,0.159777 147 | phon_R01_S34_6,223.361,263.872,87.638,0.00352,0.00002,0.00169,0.00188,0.00506,0.02536,0.225,0.01379,0.01478,0.01909,0.04137,0.01493,20.366,1,0.566849,0.574282,-5.456811,0.345238,2.840556,0.232861 148 | phon_R01_S35_1,169.774,191.759,151.451,0.01568,0.00009,0.00863,0.00946,0.02589,0.08143,0.821,0.03804,0.05426,0.08808,0.11411,0.0753,12.359,1,0.56161,0.793509,-3.297668,0.414758,3.413649,0.457533 149 | phon_R01_S35_2,183.52,216.814,161.34,0.01466,0.00008,0.00849,0.00819,0.02546,0.0605,0.618,0.02865,0.04101,0.06359,0.08595,0.06057,14.367,1,0.478024,0.768974,-4.276605,0.355736,3.142364,0.336085 150 | phon_R01_S35_3,188.62,216.302,165.982,0.01719,0.00009,0.00996,0.01027,0.02987,0.07118,0.722,0.03474,0.0458,0.06824,0.10422,0.08069,12.298,1,0.55287,0.764036,-3.377325,0.335357,3.274865,0.418646 151 | phon_R01_S35_4,202.632,565.74,177.258,0.01627,0.00008,0.00919,0.00963,0.02756,0.0717,0.833,0.03515,0.04265,0.0646,0.10546,0.07889,14.989,1,0.427627,0.775708,-4.892495,0.262281,2.910213,0.270173 152 | phon_R01_S35_5,186.695,211.961,149.442,0.01872,0.0001,0.01075,0.01154,0.03225,0.0583,0.784,0.02699,0.03714,0.06259,0.08096,0.10952,12.529,1,0.507826,0.762726,-4.484303,0.340256,2.958815,0.301487 153 | phon_R01_S35_6,192.818,224.429,168.793,0.03107,0.00016,0.018,0.01958,0.05401,0.11908,1.302,0.05647,0.0794,0.13778,0.16942,0.21713,8.441,1,0.625866,0.76832,-2.434031,0.450493,3.079221,0.527367 154 | phon_R01_S35_7,198.116,233.099,174.478,0.02714,0.00014,0.01568,0.01699,0.04705,0.08684,1.018,0.04284,0.05556,0.08318,0.12851,0.16265,9.449,1,0.584164,0.754449,-2.839756,0.356224,3.184027,0.454721 155 | phon_R01_S37_1,121.345,139.644,98.25,0.00684,0.00006,0.00388,0.00332,0.01164,0.02534,0.241,0.0134,0.01399,0.02056,0.04019,0.04179,21.52,1,0.566867,0.670475,-4.865194,0.246404,2.01353,0.168581 156 | phon_R01_S37_2,119.1,128.442,88.833,0.00692,0.00006,0.00393,0.003,0.01179,0.02682,0.236,0.01484,0.01405,0.02018,0.04451,0.04611,21.824,1,0.65168,0.659333,-4.239028,0.175691,2.45113,0.247455 157 | phon_R01_S37_3,117.87,127.349,95.654,0.00647,0.00005,0.00356,0.003,0.01067,0.03087,0.276,0.01659,0.01804,0.02402,0.04977,0.02631,22.431,1,0.6283,0.652025,-3.583722,0.207914,2.439597,0.206256 158 | phon_R01_S37_4,122.336,142.369,94.794,0.00727,0.00006,0.00415,0.00339,0.01246,0.02293,0.223,0.01205,0.01289,0.01771,0.03615,0.03191,22.953,1,0.611679,0.623731,-5.4351,0.230532,2.699645,0.220546 159 | phon_R01_S37_5,117.963,134.209,100.757,0.01813,0.00015,0.01117,0.00718,0.03351,0.04912,0.438,0.0261,0.02161,0.02916,0.0783,0.10748,19.075,1,0.630547,0.646786,-3.444478,0.303214,2.964568,0.261305 160 | phon_R01_S37_6,126.144,154.284,97.543,0.00975,0.00008,0.00593,0.00454,0.01778,0.02852,0.266,0.015,0.01581,0.02157,0.04499,0.03828,21.534,1,0.635015,0.627337,-5.070096,0.280091,2.8923,0.249703 161 | phon_R01_S39_1,127.93,138.752,112.173,0.00605,0.00005,0.00321,0.00318,0.00962,0.03235,0.339,0.0136,0.0165,0.03105,0.04079,0.02663,19.651,1,0.654945,0.675865,-5.498456,0.234196,2.103014,0.216638 162 | phon_R01_S39_2,114.238,124.393,77.022,0.00581,0.00005,0.00299,0.00316,0.00896,0.04009,0.406,0.01579,0.01994,0.04114,0.04736,0.02073,20.437,1,0.653139,0.694571,-5.185987,0.259229,2.151121,0.244948 163 | phon_R01_S39_3,115.322,135.738,107.802,0.00619,0.00005,0.00352,0.00329,0.01057,0.03273,0.325,0.01644,0.01722,0.02931,0.04933,0.0281,19.388,1,0.577802,0.684373,-5.283009,0.226528,2.442906,0.238281 164 | phon_R01_S39_4,114.554,126.778,91.121,0.00651,0.00006,0.00366,0.0034,0.01097,0.03658,0.369,0.01864,0.0194,0.03091,0.05592,0.02707,18.954,1,0.685151,0.719576,-5.529833,0.24275,2.408689,0.22052 165 | phon_R01_S39_5,112.15,131.669,97.527,0.00519,0.00005,0.00291,0.00284,0.00873,0.01756,0.155,0.00967,0.01033,0.01363,0.02902,0.01435,21.219,1,0.557045,0.673086,-5.617124,0.184896,1.871871,0.212386 166 | phon_R01_S39_6,102.273,142.83,85.902,0.00907,0.00009,0.00493,0.00461,0.0148,0.02814,0.272,0.01579,0.01553,0.02073,0.04736,0.03882,18.447,1,0.671378,0.674562,-2.929379,0.396746,2.560422,0.367233 167 | phon_R01_S42_1,236.2,244.663,102.137,0.00277,0.00001,0.00154,0.00153,0.00462,0.02448,0.217,0.0141,0.01426,0.01621,0.04231,0.0062,24.078,0,0.469928,0.628232,-6.816086,0.17227,2.235197,0.119652 168 | phon_R01_S42_2,237.323,243.709,229.256,0.00303,0.00001,0.00173,0.00159,0.00519,0.01242,0.116,0.00696,0.00747,0.00882,0.02089,0.00533,24.679,0,0.384868,0.62671,-7.018057,0.176316,1.852402,0.091604 169 | phon_R01_S42_3,260.105,264.919,237.303,0.00339,0.00001,0.00205,0.00186,0.00616,0.0203,0.197,0.01186,0.0123,0.01367,0.03557,0.0091,21.083,0,0.440988,0.628058,-7.517934,0.160414,1.881767,0.075587 170 | phon_R01_S42_4,197.569,217.627,90.794,0.00803,0.00004,0.0049,0.00448,0.0147,0.02177,0.189,0.01279,0.01272,0.01439,0.03836,0.01337,19.269,0,0.372222,0.725216,-5.736781,0.164529,2.88245,0.202879 171 | phon_R01_S42_5,240.301,245.135,219.783,0.00517,0.00002,0.00316,0.00283,0.00949,0.02018,0.212,0.01176,0.01191,0.01344,0.03529,0.00965,21.02,0,0.371837,0.646167,-7.169701,0.073298,2.266432,0.100881 172 | phon_R01_S42_6,244.99,272.21,239.17,0.00451,0.00002,0.00279,0.00237,0.00837,0.01897,0.181,0.01084,0.01121,0.01255,0.03253,0.01049,21.528,0,0.522812,0.646818,-7.3045,0.171088,2.095237,0.09622 173 | phon_R01_S43_1,112.547,133.374,105.715,0.00355,0.00003,0.00166,0.0019,0.00499,0.01358,0.129,0.00664,0.00786,0.0114,0.01992,0.00435,26.436,0,0.413295,0.7567,-6.323531,0.218885,2.193412,0.160376 174 | phon_R01_S43_2,110.739,113.597,100.139,0.00356,0.00003,0.0017,0.002,0.0051,0.01484,0.133,0.00754,0.0095,0.01285,0.02261,0.0043,26.55,0,0.36909,0.776158,-6.085567,0.192375,1.889002,0.174152 175 | phon_R01_S43_3,113.715,116.443,96.913,0.00349,0.00003,0.00171,0.00203,0.00514,0.01472,0.133,0.00748,0.00905,0.01148,0.02245,0.00478,26.547,0,0.380253,0.7667,-5.943501,0.19215,1.852542,0.179677 176 | phon_R01_S43_4,117.004,144.466,99.923,0.00353,0.00003,0.00176,0.00218,0.00528,0.01657,0.145,0.00881,0.01062,0.01318,0.02643,0.0059,25.445,0,0.387482,0.756482,-6.012559,0.229298,1.872946,0.163118 177 | phon_R01_S43_5,115.38,123.109,108.634,0.00332,0.00003,0.0016,0.00199,0.0048,0.01503,0.137,0.00812,0.00933,0.01133,0.02436,0.00401,26.005,0,0.405991,0.761255,-5.966779,0.197938,1.974857,0.184067 178 | phon_R01_S43_6,116.388,129.038,108.97,0.00346,0.00003,0.00169,0.00213,0.00507,0.01725,0.155,0.00874,0.01021,0.01331,0.02623,0.00415,26.143,0,0.361232,0.763242,-6.016891,0.109256,2.004719,0.174429 179 | phon_R01_S44_1,151.737,190.204,129.859,0.00314,0.00002,0.00135,0.00162,0.00406,0.01469,0.132,0.00728,0.00886,0.0123,0.02184,0.0057,24.151,1,0.39661,0.745957,-6.486822,0.197919,2.449763,0.132703 180 | phon_R01_S44_2,148.79,158.359,138.99,0.00309,0.00002,0.00152,0.00186,0.00456,0.01574,0.142,0.00839,0.00956,0.01309,0.02518,0.00488,24.412,1,0.402591,0.762508,-6.311987,0.182459,2.251553,0.160306 181 | phon_R01_S44_3,148.143,155.982,135.041,0.00392,0.00003,0.00204,0.00231,0.00612,0.0145,0.131,0.00725,0.00876,0.01263,0.02175,0.0054,23.683,1,0.398499,0.778349,-5.711205,0.240875,2.845109,0.19273 182 | phon_R01_S44_4,150.44,163.441,144.736,0.00396,0.00003,0.00206,0.00233,0.00619,0.02551,0.237,0.01321,0.01574,0.02148,0.03964,0.00611,23.133,1,0.352396,0.75932,-6.261446,0.183218,2.264226,0.144105 183 | phon_R01_S44_5,148.462,161.078,141.998,0.00397,0.00003,0.00202,0.00235,0.00605,0.01831,0.163,0.0095,0.01103,0.01559,0.02849,0.00639,22.866,1,0.408598,0.768845,-5.704053,0.216204,2.679185,0.19771 184 | phon_R01_S44_6,149.818,163.417,144.786,0.00336,0.00002,0.00174,0.00198,0.00521,0.02145,0.198,0.01155,0.01341,0.01666,0.03464,0.00595,23.008,1,0.329577,0.75718,-6.27717,0.109397,2.209021,0.156368 185 | phon_R01_S49_1,117.226,123.925,106.656,0.00417,0.00004,0.00186,0.0027,0.00558,0.01909,0.171,0.00864,0.01223,0.01949,0.02592,0.00955,23.079,0,0.603515,0.669565,-5.61907,0.191576,2.027228,0.215724 186 | phon_R01_S49_2,116.848,217.552,99.503,0.00531,0.00005,0.0026,0.00346,0.0078,0.01795,0.163,0.0081,0.01144,0.01756,0.02429,0.01179,22.085,0,0.663842,0.656516,-5.198864,0.206768,2.120412,0.252404 187 | phon_R01_S49_3,116.286,177.291,96.983,0.00314,0.00003,0.00134,0.00192,0.00403,0.01564,0.136,0.00667,0.0099,0.01691,0.02001,0.00737,24.199,0,0.598515,0.654331,-5.592584,0.133917,2.058658,0.214346 188 | phon_R01_S49_4,116.556,592.03,86.228,0.00496,0.00004,0.00254,0.00263,0.00762,0.0166,0.154,0.0082,0.00972,0.01491,0.0246,0.01397,23.958,0,0.566424,0.667654,-6.431119,0.15331,2.161936,0.120605 189 | phon_R01_S49_5,116.342,581.289,94.246,0.00267,0.00002,0.00115,0.00148,0.00345,0.013,0.117,0.00631,0.00789,0.01144,0.01892,0.0068,25.023,0,0.528485,0.663884,-6.359018,0.116636,2.152083,0.138868 190 | phon_R01_S49_6,114.563,119.167,86.647,0.00327,0.00003,0.00146,0.00184,0.00439,0.01185,0.106,0.00557,0.00721,0.01095,0.01672,0.00703,24.775,0,0.555303,0.659132,-6.710219,0.149694,1.91399,0.121777 191 | phon_R01_S50_1,201.774,262.707,78.228,0.00694,0.00003,0.00412,0.00396,0.01235,0.02574,0.255,0.01454,0.01582,0.01758,0.04363,0.04441,19.368,0,0.508479,0.683761,-6.934474,0.15989,2.316346,0.112838 192 | phon_R01_S50_2,174.188,230.978,94.261,0.00459,0.00003,0.00263,0.00259,0.0079,0.04087,0.405,0.02336,0.02498,0.02745,0.07008,0.02764,19.517,0,0.448439,0.657899,-6.538586,0.121952,2.657476,0.13305 193 | phon_R01_S50_3,209.516,253.017,89.488,0.00564,0.00003,0.00331,0.00292,0.00994,0.02751,0.263,0.01604,0.01657,0.01879,0.04812,0.0181,19.147,0,0.431674,0.683244,-6.195325,0.129303,2.784312,0.168895 194 | phon_R01_S50_4,174.688,240.005,74.287,0.0136,0.00008,0.00624,0.00564,0.01873,0.02308,0.256,0.01268,0.01365,0.01667,0.03804,0.10715,17.883,0,0.407567,0.655683,-6.787197,0.158453,2.679772,0.131728 195 | phon_R01_S50_5,198.764,396.961,74.904,0.0074,0.00004,0.0037,0.0039,0.01109,0.02296,0.241,0.01265,0.01321,0.01588,0.03794,0.07223,19.02,0,0.451221,0.643956,-6.744577,0.207454,2.138608,0.123306 196 | phon_R01_S50_6,214.289,260.277,77.973,0.00567,0.00003,0.00295,0.00317,0.00885,0.01884,0.19,0.01026,0.01161,0.01373,0.03078,0.04398,21.209,0,0.462803,0.664357,-5.724056,0.190667,2.555477,0.148569 197 | -------------------------------------------------------------------------------- /kidney_disease.csv: -------------------------------------------------------------------------------- 1 | id,age,bp,sg,al,su,rbc,pc,pcc,ba,bgr,bu,sc,sod,pot,hemo,pcv,wc,rc,htn,dm,cad,appet,pe,ane,classification 2 | 0,48,80,1.02,1,0,,normal,notpresent,notpresent,121,36,1.2,,,15.4,44,7800,5.2,yes,yes,no,good,no,no,ckd 3 | 1,7,50,1.02,4,0,,normal,notpresent,notpresent,,18,0.8,,,11.3,38,6000,,no,no,no,good,no,no,ckd 4 | 2,62,80,1.01,2,3,normal,normal,notpresent,notpresent,423,53,1.8,,,9.6,31,7500,,no,yes,no,poor,no,yes,ckd 5 | 3,48,70,1.005,4,0,normal,abnormal,present,notpresent,117,56,3.8,111,2.5,11.2,32,6700,3.9,yes,no,no,poor,yes,yes,ckd 6 | 4,51,80,1.01,2,0,normal,normal,notpresent,notpresent,106,26,1.4,,,11.6,35,7300,4.6,no,no,no,good,no,no,ckd 7 | 5,60,90,1.015,3,0,,,notpresent,notpresent,74,25,1.1,142,3.2,12.2,39,7800,4.4,yes,yes,no,good,yes,no,ckd 8 | 6,68,70,1.01,0,0,,normal,notpresent,notpresent,100,54,24,104,4,12.4,36,,,no,no,no,good,no,no,ckd 9 | 7,24,,1.015,2,4,normal,abnormal,notpresent,notpresent,410,31,1.1,,,12.4,44,6900,5,no,yes,no,good,yes,no,ckd 10 | 8,52,100,1.015,3,0,normal,abnormal,present,notpresent,138,60,1.9,,,10.8,33,9600,4,yes,yes,no,good,no,yes,ckd 11 | 9,53,90,1.02,2,0,abnormal,abnormal,present,notpresent,70,107,7.2,114,3.7,9.5,29,12100,3.7,yes,yes,no,poor,no,yes,ckd 12 | 10,50,60,1.01,2,4,,abnormal,present,notpresent,490,55,4,,,9.4,28,,,yes,yes,no,good,no,yes,ckd 13 | 11,63,70,1.01,3,0,abnormal,abnormal,present,notpresent,380,60,2.7,131,4.2,10.8,32,4500,3.8,yes,yes,no,poor,yes,no,ckd 14 | 12,68,70,1.015,3,1,,normal,present,notpresent,208,72,2.1,138,5.8,9.7,28,12200,3.4,yes,yes,yes,poor,yes,no,ckd 15 | 13,68,70,,,,,,notpresent,notpresent,98,86,4.6,135,3.4,9.8,,,,yes,yes,yes,poor,yes,no,ckd 16 | 14,68,80,1.01,3,2,normal,abnormal,present,present,157,90,4.1,130,6.4,5.6,16,11000,2.6,yes,yes,yes,poor,yes,no,ckd 17 | 15,40,80,1.015,3,0,,normal,notpresent,notpresent,76,162,9.6,141,4.9,7.6,24,3800,2.8,yes,no,no,good,no,yes,ckd 18 | 16,47,70,1.015,2,0,,normal,notpresent,notpresent,99,46,2.2,138,4.1,12.6,,,,no,no,no,good,no,no,ckd 19 | 17,47,80,,,,,,notpresent,notpresent,114,87,5.2,139,3.7,12.1,,,,yes,no,no,poor,no,no,ckd 20 | 18,60,100,1.025,0,3,,normal,notpresent,notpresent,263,27,1.3,135,4.3,12.7,37,11400,4.3,yes,yes,yes,good,no,no,ckd 21 | 19,62,60,1.015,1,0,,abnormal,present,notpresent,100,31,1.6,,,10.3,30,5300,3.7,yes,no,yes,good,no,no,ckd 22 | 20,61,80,1.015,2,0,abnormal,abnormal,notpresent,notpresent,173,148,3.9,135,5.2,7.7,24,9200,3.2,yes,yes,yes,poor,yes,yes,ckd 23 | 21,60,90,,,,,,notpresent,notpresent,,180,76,4.5,,10.9,32,6200,3.6,yes,yes,yes,good,no,no,ckd 24 | 22,48,80,1.025,4,0,normal,abnormal,notpresent,notpresent,95,163,7.7,136,3.8,9.8,32,6900,3.4,yes,no,no,good,no,yes,ckd 25 | 23,21,70,1.01,0,0,,normal,notpresent,notpresent,,,,,,,,,,no,no,no,poor,no,yes,ckd 26 | 24,42,100,1.015,4,0,normal,abnormal,notpresent,present,,50,1.4,129,4,11.1,39,8300,4.6,yes,no,no,poor,no,no,ckd 27 | 25,61,60,1.025,0,0,,normal,notpresent,notpresent,108,75,1.9,141,5.2,9.9,29,8400,3.7,yes,yes,no,good,no,yes,ckd 28 | 26,75,80,1.015,0,0,,normal,notpresent,notpresent,156,45,2.4,140,3.4,11.6,35,10300,4,yes,yes,no,poor,no,no,ckd 29 | 27,69,70,1.01,3,4,normal,abnormal,notpresent,notpresent,264,87,2.7,130,4,12.5,37,9600,4.1,yes,yes,yes,good,yes,no,ckd 30 | 28,75,70,,1,3,,,notpresent,notpresent,123,31,1.4,,,,,,,no,yes,no,good,no,no,ckd 31 | 29,68,70,1.005,1,0,abnormal,abnormal,present,notpresent,,28,1.4,,,12.9,38,,,no,no,yes,good,no,no,ckd 32 | 30,,70,,,,,,notpresent,notpresent,93,155,7.3,132,4.9,,,,,yes, yes,no,good,no,no,ckd 33 | 31,73,90,1.015,3,0,,abnormal,present,notpresent,107,33,1.5,141,4.6,10.1,30,7800,4,no,no,no,poor,no,no,ckd 34 | 32,61,90,1.01,1,1,,normal,notpresent,notpresent,159,39,1.5,133,4.9,11.3,34,9600,4,yes,yes,no,poor,no,no,ckd 35 | 33,60,100,1.02,2,0,abnormal,abnormal,notpresent,notpresent,140,55,2.5,,,10.1,29,,,yes,no,no,poor,no,no,ckd 36 | 34,70,70,1.01,1,0,normal,,present,present,171,153,5.2,,,,,,,no,yes,no,poor,no,no,ckd 37 | 35,65,90,1.02,2,1,abnormal,normal,notpresent,notpresent,270,39,2,,,12,36,9800,4.9,yes,yes,no,poor,no,yes,ckd 38 | 36,76,70,1.015,1,0,normal,normal,notpresent,notpresent,92,29,1.8,133,3.9,10.3,32,,,yes,no,no,good,no,no,ckd 39 | 37,72,80,,,,,,notpresent,notpresent,137,65,3.4,141,4.7,9.7,28,6900,2.5,yes,yes,no,poor,no,yes,"ckd " 40 | 38,69,80,1.02,3,0,abnormal,normal,notpresent,notpresent,,103,4.1,132,5.9,12.5,,,,yes,no,no,good,no,no,ckd 41 | 39,82,80,1.01,2,2,normal,,notpresent,notpresent,140,70,3.4,136,4.2,13,40,9800,4.2,yes,yes,no,good,no,no,ckd 42 | 40,46,90,1.01,2,0,normal,abnormal,notpresent,notpresent,99,80,2.1,,,11.1,32,9100,4.1,yes,no," no",good,no,no,ckd 43 | 41,45,70,1.01,0,0,,normal,notpresent,notpresent,,20,0.7,,,,,,,no,no,no,good,yes,no,ckd 44 | 42,47,100,1.01,0,0,,normal,notpresent,notpresent,204,29,1,139,4.2,9.7,33,9200,4.5,yes,no,no,good,no,yes,ckd 45 | 43,35,80,1.01,1,0,abnormal,,notpresent,notpresent,79,202,10.8,134,3.4,7.9,24,7900,3.1,no,yes,no,good,no,no,ckd 46 | 44,54,80,1.01,3,0,abnormal,abnormal,notpresent,notpresent,207,77,6.3,134,4.8,9.7,28,,,yes,yes,no,poor,yes,no,ckd 47 | 45,54,80,1.02,3,0,,abnormal,notpresent,notpresent,208,89,5.9,130,4.9,9.3,,,,yes,yes,no,poor,yes,no,ckd 48 | 46,48,70,1.015,0,0,,normal,notpresent,notpresent,124,24,1.2,142,4.2,12.4,37,6400,4.7,no,yes,no,good,no,no,ckd 49 | 47,11,80,1.01,3,0,,normal,notpresent,notpresent,,17,0.8,,,15,45,8600,,no,no,no,good,no,no,ckd 50 | 48,73,70,1.005,0,0,normal,normal,notpresent,notpresent,70,32,0.9,125,4,10,29,18900,3.5,yes,yes,no,good,yes,no,ckd 51 | 49,60,70,1.01,2,0,normal,abnormal,present,notpresent,144,72,3,,,9.7,29,21600,3.5,yes,yes,no,poor,no,yes,ckd 52 | 50,53,60,,,,,,notpresent,notpresent,91,114,3.25,142,4.3,8.6,28,11000,3.8,yes,yes,no,poor,yes,yes,ckd 53 | 51,54,100,1.015,3,0,,normal,present,notpresent,162,66,1.6,136,4.4,10.3,33,,,yes,yes,no,poor,yes,no,ckd 54 | 52,53,90,1.015,0,0,,normal,notpresent,notpresent,,38,2.2,,,10.9,34,4300,3.7,no,no,no,poor,no,yes,ckd 55 | 53,62,80,1.015,0,5,,,notpresent,notpresent,246,24,1,,,13.6,40,8500,4.7,yes,yes,no,good,no,no,ckd 56 | 54,63,80,1.01,2,2,normal,,notpresent,notpresent,,,3.4,136,4.2,13,40,9800,4.2,yes,no,yes,good,no,no,ckd 57 | 55,35,80,1.005,3,0,abnormal,normal,notpresent,notpresent,,,,,,9.5,28,,,no,no,no,good,yes,no,ckd 58 | 56,76,70,1.015,3,4,normal,abnormal,present,notpresent,,164,9.7,131,4.4,10.2,30,11300,3.4,yes,yes,yes,poor,yes,no,ckd 59 | 57,76,90,,,,,normal,notpresent,notpresent,93,155,7.3,132,4.9,,,,,yes,yes,yes,poor,no,no,ckd 60 | 58,73,80,1.02,2,0,abnormal,abnormal,notpresent,notpresent,253,142,4.6,138,5.8,10.5,33,7200,4.3,yes,yes,yes,good,no,no,ckd 61 | 59,59,100,,,,,,notpresent,notpresent,,96,6.4,,,6.6,,,,yes,yes,no,good,no,yes,ckd 62 | 60,67,90,1.02,1,0,,abnormal,present,notpresent,141,66,3.2,138,6.6,,,,,yes,no,no,good,no,no,ckd 63 | 61,67,80,1.01,1,3,normal,abnormal,notpresent,notpresent,182,391,32,163,39,,,,,no,no,no,good,yes,no,ckd 64 | 62,15,60,1.02,3,0,,normal,notpresent,notpresent,86,15,0.6,138,4,11,33,7700,3.8,yes,yes,no,good,no,no,ckd 65 | 63,46,70,1.015,1,0,abnormal,normal,notpresent,notpresent,150,111,6.1,131,3.7,7.5,27,,,no,no,no,good,no,yes,ckd 66 | 64,55,80,1.01,0,0,,normal,notpresent,notpresent,146,,,,,9.8,,,,no,no," no",good,no,no,ckd 67 | 65,44,90,1.01,1,0,,normal,notpresent,notpresent,,20,1.1,,,15,48,,,no," no",no,good,no,no,ckd 68 | 66,67,70,1.02,2,0,abnormal,normal,notpresent,notpresent,150,55,1.6,131,4.8,," ?",,,yes,yes,no,good,yes,no,ckd 69 | 67,45,80,1.02,3,0,normal,abnormal,notpresent,notpresent,425,,,,,,,,,no,no,no,poor,no,no,ckd 70 | 68,65,70,1.01,2,0,,normal,present,notpresent,112,73,3.3,,,10.9,37,,,no,no,no,good,no,no,ckd 71 | 69,26,70,1.015,0,4,,normal,notpresent,notpresent,250,20,1.1,,,15.6,52,6900,6,no,yes,no,good,no,no,ckd 72 | 70,61,80,1.015,0,4,,normal,notpresent,notpresent,360,19,0.7,137,4.4,15.2,44,8300,5.2,yes,yes,no,good,no,no,ckd 73 | 71,46,60,1.01,1,0,normal,normal,notpresent,notpresent,163,92,3.3,141,4,9.8,28,14600,3.2,yes,yes,no,good,no,no,ckd 74 | 72,64,90,1.01,3,3,,abnormal,present,notpresent,,35,1.3,,,10.3,,,,yes,yes,no,good,yes,no,ckd 75 | 73,,100,1.015,2,0,abnormal,abnormal,notpresent,notpresent,129,107,6.7,132,4.4,4.8,14,6300,,yes,no,no,good,yes,yes,ckd 76 | 74,56,90,1.015,2,0,abnormal,abnormal,notpresent,notpresent,129,107,6.7,131,4.8,9.1,29,6400,3.4,yes,no,no,good,no,no,ckd 77 | 75,5,,1.015,1,0,,normal,notpresent,notpresent,,16,0.7,138,3.2,8.1,,,,no,no,no,good,no,yes,ckd 78 | 76,48,80,1.005,4,0,abnormal,abnormal,notpresent,present,133,139,8.5,132,5.5,10.3,36," 6200",4,no,yes,no,good,yes,no,ckd 79 | 77,67,70,1.01,1,0,,normal,notpresent,notpresent,102,48,3.2,137,5,11.9,34,7100,3.7,yes,yes,no,good,yes,no,ckd 80 | 78,70,80,,,,,,notpresent,notpresent,158,85,3.2,141,3.5,10.1,30,,,yes,no,no,good,yes,no,ckd 81 | 79,56,80,1.01,1,0,,normal,notpresent,notpresent,165,55,1.8,,,13.5,40,11800,5,yes,yes,no,poor,yes,no,ckd 82 | 80,74,80,1.01,0,0,,normal,notpresent,notpresent,132,98,2.8,133,5,10.8,31,9400,3.8,yes,yes,no,good,no,no,ckd 83 | 81,45,90,,,,,,notpresent,notpresent,360,45,2.4,128,4.4,8.3,29,5500,3.7,yes,yes,no,good,no,no,ckd 84 | 82,38,70,,,,,,notpresent,notpresent,104,77,1.9,140,3.9,,,,,yes,no,no,poor,yes,no,ckd 85 | 83,48,70,1.015,1,0,normal,normal,notpresent,notpresent,127,19,1,134,3.6,,,,,yes,yes,no,good,no,no,ckd 86 | 84,59,70,1.01,3,0,normal,abnormal,notpresent,notpresent,76,186,15,135,7.6,7.1,22,3800,2.1,yes,no,no,poor,yes,yes,ckd 87 | 85,70,70,1.015,2,,,,notpresent,notpresent,,46,1.5,,,9.9,,,,no,yes,no,poor,yes,no,ckd 88 | 86,56,80,,,,,,notpresent,notpresent,415,37,1.9,,,,,,,no,yes,no,good,no,no,ckd 89 | 87,70,100,1.005,1,0,normal,abnormal,present,notpresent,169,47,2.9,,,11.1,32,5800,5,yes,yes,no,poor,no,no,ckd 90 | 88,58,110,1.01,4,0,,normal,notpresent,notpresent,251,52,2.2,,,,,13200,4.7,yes," yes",no,good,no,no,ckd 91 | 89,50,70,1.02,0,0,,normal,notpresent,notpresent,109,32,1.4,139,4.7,,,,,no,no,no,poor,no,no,ckd 92 | 90,63,100,1.01,2,2,normal,normal,notpresent,present,280,35,3.2,143,3.5,13,40,9800,4.2,yes,no,yes,good,no,no,ckd 93 | 91,56,70,1.015,4,1,abnormal,normal,notpresent,notpresent,210,26,1.7,136,3.8,16.1,52,12500,5.6,no,no,no,good,no,no,ckd 94 | 92,71,70,1.01,3,0,normal,abnormal,present,present,219,82,3.6,133,4.4,10.4,33,5600,3.6,yes,yes,yes,good,no,no,ckd 95 | 93,73,100,1.01,3,2,abnormal,abnormal,present,notpresent,295,90,5.6,140,2.9,9.2,30,7000,3.2,yes,yes,yes,poor,no,no,ckd 96 | 94,65,70,1.01,0,0,,normal,notpresent,notpresent,93,66,1.6,137,4.5,11.6,36,11900,3.9,no,yes,no,good,no,no,ckd 97 | 95,62,90,1.015,1,0,,normal,notpresent,notpresent,94,25,1.1,131,3.7,,,,,yes,no,no,good,yes,yes,ckd 98 | 96,60,80,1.01,1,1,,normal,notpresent,notpresent,172,32,2.7,,,11.2,36,,,no,yes,yes,poor,no,no,ckd 99 | 97,65,60,1.015,1,0,,normal,notpresent,notpresent,91,51,2.2,132,3.8,10,32,9100,4,yes,yes,no,poor,yes,no,ckd 100 | 98,50,140,,,,,,notpresent,notpresent,101,106,6.5,135,4.3,6.2,18,5800,2.3,yes,yes,no,poor,no,yes,ckd 101 | 99,56,180,,0,4,,abnormal,notpresent,notpresent,298,24,1.2,139,3.9,11.2,32,10400,4.2,yes,yes,no,poor,yes,no,ckd 102 | 100,34,70,1.015,4,0,abnormal,abnormal,notpresent,notpresent,153,22,0.9,133,3.8,,,,,no,no,no,good,yes,no,ckd 103 | 101,71,90,1.015,2,0,,abnormal,present,present,88,80,4.4,139,5.7,11.3,33,10700,3.9,no,no,no,good,no,no,ckd 104 | 102,17,60,1.01,0,0,,normal,notpresent,notpresent,92,32,2.1,141,4.2,13.9,52,7000,,no,no,no,good,no,no,ckd 105 | 103,76,70,1.015,2,0,normal,abnormal,present,notpresent,226,217,10.2,,,10.2,36,12700,4.2,yes,no,no,poor,yes,yes,ckd 106 | 104,55,90,,,,,,notpresent,notpresent,143,88,2,,,,,,,yes,yes,no,poor,yes,no,ckd 107 | 105,65,80,1.015,0,0,,normal,notpresent,notpresent,115,32,11.5,139,4,14.1,42,6800,5.2,no,no,no,good,no,no,ckd 108 | 106,50,90,,,,,,notpresent,notpresent,89,118,6.1,127,4.4,6,17,6500,,yes,yes,no,good,yes,yes,ckd 109 | 107,55,100,1.015,1,4,normal,,notpresent,notpresent,297,53,2.8,139,4.5,11.2,34,13600,4.4,yes,yes,no,good,no,no,ckd 110 | 108,45,80,1.015,0,0,,abnormal,notpresent,notpresent,107,15,1,141,4.2,11.8,37,10200,4.2,no,no,no,good,no,no,ckd 111 | 109,54,70,,,,,,notpresent,notpresent,233,50.1,1.9,,,11.7,,,,no,yes,no,good,no,no,ckd 112 | 110,63,90,1.015,0,0,,normal,notpresent,notpresent,123,19,2,142,3.8,11.7,34,11400,4.7,no,no,no,good,no,no,ckd 113 | 111,65,80,1.01,3,3,,normal,notpresent,notpresent,294,71,4.4,128,5.4,10,32,9000,3.9,yes,yes,yes,good,no,no,ckd 114 | 112,,60,1.015,3,0,abnormal,abnormal,notpresent,notpresent,,34,1.2,,,10.8,33,,,no,no,no,good,no,no,ckd 115 | 113,61,90,1.015,0,2,,normal,notpresent,notpresent,,,,,,,,9800,,no,yes,no,poor,no,yes,ckd 116 | 114,12,60,1.015,3,0,abnormal,abnormal,present,notpresent,,51,1.8,,,12.1,,10300,,no,no,no,good,no,no,ckd 117 | 115,47,80,1.01,0,0,,abnormal,notpresent,notpresent,,28,0.9,,,12.4,44,5600,4.3,no,no,no,good,no,yes,ckd 118 | 116,,70,1.015,4,0,abnormal,normal,notpresent,notpresent,104,16,0.5,,,,,,,no,no,no,good,yes,no,ckd 119 | 117,,70,1.02,0,0,,,notpresent,notpresent,219,36,1.3,139,3.7,12.5,37,9800,4.4,no,no,no,good,no,no,ckd 120 | 118,55,70,1.01,3,0,,normal,notpresent,notpresent,99,25,1.2,,,11.4,,,,no,no,no,poor,yes,no,ckd 121 | 119,60,70,1.01,0,0,,normal,notpresent,notpresent,140,27,1.2,,,,,,,no,no,no,good,no,no,ckd 122 | 120,72,90,1.025,1,3,,normal,notpresent,notpresent,323,40,2.2,137,5.3,12.6,,,,no,yes,yes,poor,no,no,ckd 123 | 121,54,60,,3,,,,notpresent,notpresent,125,21,1.3,137,3.4,15,46,,,yes,yes,no,good,yes,no,ckd 124 | 122,34,70,,,,,,notpresent,notpresent,,219,12.2,130,3.8,6,,,,yes,no,no,good,no,yes,ckd 125 | 123,43,80,1.015,2,3,,abnormal,present,present,,30,1.1,,,14,42,14900,,no,no,no,good,no,no,ckd 126 | 124,65,100,1.015,0,0,,normal,notpresent,notpresent,90,98,2.5,,,9.1,28,5500,3.6,yes,no,no,good,no,no,ckd 127 | 125,72,90,,,,,,notpresent,notpresent,308,36,2.5,131,4.3,,,,,yes,yes,no,poor,no,no,ckd 128 | 126,70,90,1.015,0,0,,normal,notpresent,notpresent,144,125,4,136,4.6,12,37,8200,4.5,yes,yes,no,poor,yes,no,ckd 129 | 127,71,60,1.015,4,0,normal,normal,notpresent,notpresent,118,125,5.3,136,4.9,11.4,35,15200,4.3,yes,yes,no,poor,yes,no,ckd 130 | 128,52,90,1.015,4,3,normal,abnormal,notpresent,notpresent,224,166,5.6,133,47,8.1,23,5000,2.9,yes,yes,no,good,no,yes,ckd 131 | 129,75,70,1.025,1,0,,normal,notpresent,notpresent,158,49,1.4,135,4.7,11.1,,,,yes,no,no,poor,yes,no,ckd 132 | 130,50,90,1.01,2,0,normal,abnormal,present,present,128,208,9.2,134,4.8,8.2,22,16300,2.7,no,no,no,poor,yes,yes,ckd 133 | 131,5,50,1.01,0,0,,normal,notpresent,notpresent,,25,0.6,,,11.8,36,12400,,no,no,no,good,no,no,ckd 134 | 132,50,,,,,normal,,notpresent,notpresent,219,176,13.8,136,4.5,8.6,24,13200,2.7,yes,no,no,good,yes,yes,ckd 135 | 133,70,100,1.015,4,0,normal,normal,notpresent,notpresent,118,125,5.3,136,4.9,12,37," 8400",8,yes,no,no,good,no,no,ckd 136 | 134,47,100,1.01,,,normal,,notpresent,notpresent,122,,16.9,138,5.2,10.8,33,10200,3.8,no,yes,no,good,no,no,ckd 137 | 135,48,80,1.015,0,2,,normal,notpresent,notpresent,214,24,1.3,140,4,13.2,39,,,no,yes,no,poor,no,no,ckd 138 | 136,46,90,1.02,,,,normal,notpresent,notpresent,213,68,2.8,146,6.3,9.3,,,,yes,yes,no,good,no,no,ckd 139 | 137,45,60,1.01,2,0,normal,abnormal,present,notpresent,268,86,4,134,5.1,10,29,9200,,yes,yes,no,good,no,no,ckd 140 | 138,73,,1.01,1,0,,,notpresent,notpresent,95,51,1.6,142,3.5,,,,,no," no",no,good,no,no,ckd 141 | 139,41,70,1.015,2,0,,abnormal,notpresent,present,,68,2.8,132,4.1,11.1,33,,,yes,no,no,good,yes,yes,ckd 142 | 140,69,70,1.01,0,4,,normal,notpresent,notpresent,256,40,1.2,142,5.6,,,,,no,no,no,good,no,no,ckd 143 | 141,67,70,1.01,1,0,normal,normal,notpresent,notpresent,,106,6,137,4.9,6.1,19,6500,,yes,no,no,good,no,yes,ckd 144 | 142,72,90,,,,,,notpresent,notpresent,84,145,7.1,135,5.3,,,,,no,yes,no,good,no,no,ckd 145 | 143,41,80,1.015,1,4,abnormal,normal,notpresent,notpresent,210,165,18,135,4.7,,,,,no,yes,no,good,no,no,ckd 146 | 144,60,90,1.01,2,0,abnormal,normal,notpresent,notpresent,105,53,2.3,136,5.2,11.1,33,10500,4.1,no,no,no,good,no,no,ckd 147 | 145,57,90,1.015,5,0,abnormal,abnormal,notpresent,present,,322,13,126,4.8,8,24,4200,3.3,yes,yes,yes,poor,yes,yes,ckd 148 | 146,53,100,1.01,1,3,abnormal,normal,notpresent,notpresent,213,23,1,139,4,,,,,no,yes,no,good,no,no,ckd 149 | 147,60,60,1.01,3,1,normal,abnormal,present,notpresent,288,36,1.7,130,3,7.9,25,15200,3,yes,no,no,poor,no,yes,ckd 150 | 148,69,60,,,,,,notpresent,notpresent,171,26,48.1,,,,,,,yes,no,no,poor,no,no,ckd 151 | 149,65,70,1.02,1,0,abnormal,abnormal,notpresent,notpresent,139,29,1,,,10.5,32,,,yes,no,no,good,yes,no,ckd 152 | 150,8,60,1.025,3,0,normal,normal,notpresent,notpresent,78,27,0.9,,,12.3,41,6700,,no,no,no,poor,yes,no,ckd 153 | 151,76,90,,,,,,notpresent,notpresent,172,46,1.7,141,5.5,9.6,30,,,yes,yes,no,good,no,yes,ckd 154 | 152,39,70,1.01,0,0,,normal,notpresent,notpresent,121,20,0.8,133,3.5,10.9,32,,,no,yes,no,good,no,no,ckd 155 | 153,55,90,1.01,2,1,abnormal,abnormal,notpresent,notpresent,273,235,14.2,132,3.4,8.3,22,14600,2.9,yes,yes,no,poor,yes,yes,ckd 156 | 154,56,90,1.005,4,3,abnormal,abnormal,notpresent,notpresent,242,132,16.4,140,4.2,8.4,26,,3,yes,yes,no,poor,yes,yes,ckd 157 | 155,50,70,1.02,3,0,abnormal,normal,present,present,123,40,1.8,,,11.1,36,4700,,no,no,no,good,no,no,ckd 158 | 156,66,90,1.015,2,0,,normal,notpresent,present,153,76,3.3,,,,,,,no,no,no,poor,no,no,ckd 159 | 157,62,70,1.025,3,0,normal,abnormal,notpresent,notpresent,122,42,1.7,136,4.7,12.6,39,7900,3.9,yes,yes,no,good,no,no,ckd 160 | 158,71,60,1.02,3,2,normal,normal,present,notpresent,424,48,1.5,132,4,10.9,31,,,yes,yes,yes,good,no,no,ckd 161 | 159,59,80,1.01,1,0,abnormal,normal,notpresent,notpresent,303,35,1.3,122,3.5,10.4,35,10900,4.3,no,yes,no,poor,no,no,ckd 162 | 160,81,60,,,,,,notpresent,notpresent,148,39,2.1,147,4.2,10.9,35,9400,2.4,yes,yes,yes,poor,yes,no,ckd 163 | 161,62,,1.015,3,0,abnormal,,notpresent,notpresent,,,,,,14.3,42,10200,4.8,yes,yes,no,good,no,no,ckd 164 | 162,59,70,,,,,,notpresent,notpresent,204,34,1.5,124,4.1,9.8,37,6000," ?",no,yes,no,good,no,no,ckd 165 | 163,46,80,1.01,0,0,,normal,notpresent,notpresent,160,40,2,140,4.1,9,27,8100,3.2,yes,no,no,poor,no,yes,ckd 166 | 164,14,,1.015,0,0,,,notpresent,notpresent,192,15,0.8,137,4.2,14.3,40,9500,5.4,no,yes,no,poor,yes,no,ckd 167 | 165,60,80,1.02,0,2,,,notpresent,notpresent,,,,,,,,,,no,yes,no,good,no,no,ckd 168 | 166,27,60,,,,,,notpresent,notpresent,76,44,3.9,127,4.3,,,,,no,no,no,poor,yes,yes,ckd 169 | 167,34,70,1.02,0,0,abnormal,normal,notpresent,notpresent,139,19,0.9,,,12.7,42,2200,,no,no,no,poor,no,no,ckd 170 | 168,65,70,1.015,4,4,,normal,present,notpresent,307,28,1.5,,,11,39,6700,,yes,yes,no,good,no,no,ckd 171 | 169,,70,1.01,0,2,,normal,notpresent,notpresent,220,68,2.8,,,8.7,27,,,yes,yes,no,good,no,yes,ckd 172 | 170,66,70,1.015,2,5,,normal,notpresent,notpresent,447,41,1.7,131,3.9,12.5,33,9600,4.4,yes,yes,no,good,no,no,ckd 173 | 171,83,70,1.02,3,0,normal,normal,notpresent,notpresent,102,60,2.6,115,5.7,8.7,26,12800,3.1,yes,no,no,poor,no,yes,ckd 174 | 172,62,80,1.01,1,2,,,notpresent,notpresent,309,113,2.9,130,2.5,10.6,34,12800,4.9,no,no,no,good,no,no,ckd 175 | 173,17,70,1.015,1,0,abnormal,normal,notpresent,notpresent,22,1.5,7.3,145,2.8,13.1,41,11200,,no,no,no,good,no,no,ckd 176 | 174,54,70,,,,,,notpresent,notpresent,111,146,7.5,141,4.7,11,35,8600,4.6,no,no,no,good,no,no,ckd 177 | 175,60,50,1.01,0,0,,normal,notpresent,notpresent,261,58,2.2,113,3,,,4200,3.4,yes,no,no,good,no,no,ckd 178 | 176,21,90,1.01,4,0,normal,abnormal,present,present,107,40,1.7,125,3.5,8.3,23,12400,3.9,no,no,no,good,no,yes,ckd 179 | 177,65,80,1.015,2,1,normal,normal,present,notpresent,215,133,2.5,,,13.2,41,,,no,yes,no,good,no,no,ckd 180 | 178,42,90,1.02,2,0,abnormal,abnormal,present,notpresent,93,153,2.7,139,4.3,9.8,34,9800,,no,no,no,poor,yes,yes,ckd 181 | 179,72,90,1.01,2,0,,abnormal,present,notpresent,124,53,2.3,,,11.9,39,,,no,no,no,good,no,no,ckd 182 | 180,73,90,1.01,1,4,abnormal,abnormal,present,notpresent,234,56,1.9,,,10.3,28,,,no,yes,no,good,no,no,ckd 183 | 181,45,70,1.025,2,0,normal,abnormal,present,notpresent,117,52,2.2,136,3.8,10,30,19100,3.7,no,no,no,good,no,no,ckd 184 | 182,61,80,1.02,0,0,,normal,notpresent,notpresent,131,23,0.8,140,4.1,11.3,35,,,no,no,no,good,no,no,ckd 185 | 183,30,70,1.015,0,0,,normal,notpresent,notpresent,101,106,6.5,135,4.3,,,,,no,no,no,poor,no,no,ckd 186 | 184,54,60,1.015,3,2,,abnormal,notpresent,notpresent,352,137,3.3,133,4.5,11.3,31,5800,3.6,yes,yes,yes,poor,yes,no,ckd 187 | 185,4,,1.02,1,0,,normal,notpresent,notpresent,99,23,0.6,138,4.4,12,34," ?",,no,no,no,good,no,no,ckd 188 | 186,8,50,1.02,4,0,normal,normal,notpresent,notpresent,,46,1,135,3.8,,,,,no,no,no,good,yes,no,ckd 189 | 187,3,,1.01,2,0,normal,normal,notpresent,notpresent,,22,0.7,,,10.7,34,12300,,no,no,no,good,no,no,ckd 190 | 188,8,,,,,,,notpresent,notpresent,80,66,2.5,142,3.6,12.2,38,,,no," no",no,good,no,no,ckd 191 | 189,64,60,1.01,4,1,abnormal,abnormal,notpresent,present,239,58,4.3,137,5.4,9.5,29,7500,3.4,yes,yes,no,poor,yes,no,ckd 192 | 190,6,60,1.01,4,0,abnormal,abnormal,notpresent,present,94,67,1,135,4.9,9.9,30,16700,4.8,no,no,no,poor,no,no,ckd 193 | 191,,70,1.01,3,0,normal,normal,notpresent,notpresent,110,115,6,134,2.7,9.1,26,9200,3.4,yes,yes,no,poor,no,no,ckd 194 | 192,46,110,1.015,0,0,,normal,notpresent,notpresent,130,16,0.9,,,,,,,no,no,no,good,no,no,ckd 195 | 193,32,90,1.025,1,0,abnormal,abnormal,notpresent,notpresent,,223,18.1,113,6.5,5.5,15,2600,2.8,yes,yes,no,poor,yes,yes,ckd 196 | 194,80,70,1.01,2,,,abnormal,notpresent,notpresent,,49,1.2,,,,,,,yes," yes",no,good,no,no,ckd 197 | 195,70,90,1.02,2,1,abnormal,abnormal,notpresent,present,184,98.6,3.3,138,3.9,5.8,,,,yes,yes,yes,poor,no,no,ckd 198 | 196,49,100,1.01,3,0,abnormal,abnormal,notpresent,notpresent,129,158,11.8,122,3.2,8.1,24,9600,3.5,yes,yes,no,poor,yes,yes,ckd 199 | 197,57,80,,,,,,notpresent,notpresent,,111,9.3,124,5.3,6.8,,4300,3,yes,yes,no,good,no,yes,ckd 200 | 198,59,100,1.02,4,2,normal,normal,notpresent,notpresent,252,40,3.2,137,4.7,11.2,30,26400,3.9,yes,yes,no,poor,yes,no,ckd 201 | 199,65,80,1.015,0,0,,normal,notpresent,notpresent,92,37,1.5,140,5.2,8.8,25,10700,3.2,yes,no,yes,good,yes,no,ckd 202 | 200,90,90,1.025,1,0,,normal,notpresent,notpresent,139,89,3,140,4.1,12,37,7900,3.9,yes,yes,no,good,no,no,ckd 203 | 201,64,70,,,,,,notpresent,notpresent,113,94,7.3,137,4.3,7.9,21,,,yes,yes,yes,good,yes,yes,ckd 204 | 202,78,60,,,,,,notpresent,notpresent,114,74,2.9,135,5.9,8,24,,,no,yes,no,good,no,yes,ckd 205 | 203,,90,,,,,,notpresent,notpresent,207,80,6.8,142,5.5,8.5,,,,yes,yes,no,good,no,yes,ckd 206 | 204,65,90,1.01,4,2,normal,normal,notpresent,notpresent,172,82,13.5,145,6.3,8.8,31,,,yes,yes,no,good,yes,yes,ckd 207 | 205,61,70,,,,,,notpresent,notpresent,100,28,2.1,,,12.6,43,,,yes,yes,no,good,no,no,ckd 208 | 206,60,70,1.01,1,0,,normal,notpresent,notpresent,109,96,3.9,135,4,13.8,41,,,yes,no,no,good,no,no,ckd 209 | 207,50,70,1.01,0,0,,normal,notpresent,notpresent,230,50,2.2,,,12,41,10400,4.6,yes,yes,no,good,no,no,ckd 210 | 208,67,80,,,,,,notpresent,notpresent,341,37,1.5,,,12.3,41,6900,4.9,yes,yes,no,good,no,yes,ckd 211 | 209,19,70,1.02,0,0,,normal,notpresent,notpresent,,,,,,11.5,,6900,,no,no,no,good,no,no,ckd 212 | 210,59,100,1.015,4,2,normal,normal,notpresent,notpresent,255,132,12.8,135,5.7,7.3,20,9800,3.9,yes,yes,yes,good,no,yes,ckd 213 | 211,54,120,1.015,0,0,,normal,notpresent,notpresent,103,18,1.2,,,,,,,no,no,no,good,no,no,ckd 214 | 212,40,70,1.015,3,4,normal,normal,notpresent,notpresent,253,150,11.9,132,5.6,10.9,31,8800,3.4,yes,yes,no,poor,yes,no,ckd 215 | 213,55,80,1.01,3,1,normal,abnormal,present,present,214,73,3.9,137,4.9,10.9,34,7400,3.7,yes,yes,no,good,yes,no,ckd 216 | 214,68,80,1.015,0,0,,abnormal,notpresent,notpresent,171,30,1,,,13.7," 43",4900,5.2,no,yes,no,good,no,no,ckd 217 | 215,2,,1.01,3,0,normal,abnormal,notpresent,notpresent,,,,,,,,,,no,no,no,good,yes,no,ckd 218 | 216,64,70,1.01,0,0,,normal,notpresent,notpresent,107,15,,,,12.8,38,,,no,no,no,good,no,no,ckd 219 | 217,63,100,1.01,1,0,,normal,notpresent,notpresent,78,61,1.8,141,4.4,12.2,36,10500,4.3,no,yes,no,good,no,no,ckd 220 | 218,33,90,1.015,0,0,,normal,notpresent,notpresent,92,19,0.8,,,11.8,34,7000,,no,no,no,good,no,no,ckd 221 | 219,68,90,1.01,0,0,,normal,notpresent,notpresent,238,57,2.5,,,9.8,28,8000,3.3,yes,yes,no,poor,no,no,ckd 222 | 220,36,80,1.01,0,0,,normal,notpresent,notpresent,103,,,,,11.9,36,8800,,no,no,no,good,no,no,ckd 223 | 221,66,70,1.02,1,0,normal,,notpresent,notpresent,248,30,1.7,138,5.3,,,,,yes,yes,no,good,no,no,ckd 224 | 222,74,60,,,,,,notpresent,notpresent,108,68,1.8,,,,,,,yes,yes,no,good,no,no,ckd 225 | 223,71,90,1.01,0,3,,normal,notpresent,notpresent,303,30,1.3,136,4.1,13,38,9200,4.6,yes,yes,no,good,no,no,ckd 226 | 224,34,60,1.02,0,0,,normal,notpresent,notpresent,117,28,2.2,138,3.8,,,,,no,no,no,good,yes,no,ckd 227 | 225,60,90,1.01,3,5,abnormal,normal,notpresent,present,490,95,2.7,131,3.8,11.5,35,12000,4.5,yes,yes,no,good,no,no,ckd 228 | 226,64,100,1.015,4,2,abnormal,abnormal,notpresent,present,163,54,7.2,140,4.6,7.9,26,7500,3.4,yes,yes,no,good,yes,no,ckd 229 | 227,57,80,1.015,0,0,,normal,notpresent,notpresent,120,48,1.6,,,11.3,36,7200,3.8,yes,yes,no,good,no,no,ckd 230 | 228,60,70,,,,,,notpresent,notpresent,124,52,2.5,,,,,,,yes,no,no,good,no,no,ckd 231 | 229,59,50,1.01,3,0,normal,abnormal,notpresent,notpresent,241,191,12,114,2.9,9.6,31,15700,3.8,no,yes,no,good,yes,no,ckd 232 | 230,65,60,1.01,2,0,normal,abnormal,present,notpresent,192,17,1.7,130,4.3,,,9500,,yes,yes,no,poor,no,no,"ckd " 233 | 231,60,90,,,,,,notpresent,notpresent,269,51,2.8,138,3.7,11.5,35,,,yes,yes,yes,good,yes,no,ckd 234 | 232,50,90,1.015,1,0,abnormal,abnormal,notpresent,notpresent,,,,,,,,,,no,no,no,good,yes,no,ckd 235 | 233,51,100,1.015,2,0,normal,normal,notpresent,present,93,20,1.6,146,4.5,,,,,no,no,no,poor,no,no,ckd 236 | 234,37,100,1.01,0,0,abnormal,normal,notpresent,notpresent,,19,1.3,,,15,44,4100,5.2,yes,no,no,good,no,no,ckd 237 | 235,45,70,1.01,2,0,,normal,notpresent,notpresent,113,93,2.3,,,7.9,26,5700,,no,no,yes,good,no,yes,ckd 238 | 236,65,80,,,,,,notpresent,notpresent,74,66,2,136,5.4,9.1,25,,,yes,yes,yes,good,yes,no,ckd 239 | 237,80,70,1.015,2,2,,normal,notpresent,notpresent,141,53,2.2,,,12.7,40,9600,,yes,yes,no,poor,yes,no,ckd 240 | 238,72,100,,,,,,notpresent,notpresent,201,241,13.4,127,4.8,9.4,28,,,yes,yes,no,good,no,yes,ckd 241 | 239,34,90,1.015,2,0,normal,normal,notpresent,notpresent,104,50,1.6,137,4.1,11.9,39,,,no,no,no,good,no,no,ckd 242 | 240,65,70,1.015,1,0,,normal,notpresent,notpresent,203,46,1.4,,,11.4,36,5000,4.1,yes,yes,no,poor,yes,no,ckd 243 | 241,57,70,1.015,1,0,,abnormal,notpresent,notpresent,165,45,1.5,140,3.3,10.4,31,4200,3.9,no,no,no,good,no,no,ckd 244 | 242,69,70,1.01,4,3,normal,abnormal,present,present,214,96,6.3,120,3.9,9.4,28,11500,3.3,yes,yes,yes,good,yes,yes,ckd 245 | 243,62,90,1.02,2,1,,normal,notpresent,notpresent,169,48,2.4,138,2.9,13.4,47,11000,6.1,yes,no,no,good,no,no,ckd 246 | 244,64,90,1.015,3,2,,abnormal,present,notpresent,463,64,2.8,135,4.1,12.2,40,9800,4.6,yes,yes,no,good,no,yes,ckd 247 | 245,48,100,,,,,,notpresent,notpresent,103,79,5.3,135,6.3,6.3,19,7200,2.6,yes,no,yes,poor,no,no,ckd 248 | 246,48,110,1.015,3,0,abnormal,normal,present,notpresent,106,215,15.2,120,5.7,8.6,26,5000,2.5,yes,no,yes,good,no,yes,ckd 249 | 247,54,90,1.025,1,0,normal,abnormal,notpresent,notpresent,150,18,1.2,140,4.2,,,,,no,no,no,poor,yes,yes,ckd 250 | 248,59,70,1.01,1,3,abnormal,abnormal,notpresent,notpresent,424,55,1.7,138,4.5,12.6,37,10200,4.1,yes,yes,yes,good,no,no,ckd 251 | 249,56,90,1.01,4,1,normal,abnormal,present,notpresent,176,309,13.3,124,6.5,3.1,9,5400,2.1,yes,yes,no,poor,yes,yes,ckd 252 | 250,40,80,1.025,0,0,normal,normal,notpresent,notpresent,140,10,1.2,135,5,15,48,10400,4.5,no,no,no,good,no,no,notckd 253 | 251,23,80,1.025,0,0,normal,normal,notpresent,notpresent,70,36,1,150,4.6,17,52,9800,5,no,no,no,good,no,no,notckd 254 | 252,45,80,1.025,0,0,normal,normal,notpresent,notpresent,82,49,0.6,147,4.4,15.9,46,9100,4.7,no,no,no,good,no,no,notckd 255 | 253,57,80,1.025,0,0,normal,normal,notpresent,notpresent,119,17,1.2,135,4.7,15.4,42,6200,6.2,no,no,no,good,no,no,notckd 256 | 254,51,60,1.025,0,0,normal,normal,notpresent,notpresent,99,38,0.8,135,3.7,13,49,8300,5.2,no,no,no,good,no,no,notckd 257 | 255,34,80,1.025,0,0,normal,normal,notpresent,notpresent,121,27,1.2,144,3.9,13.6,52,9200,6.3,no,no,no,good,no,no,notckd 258 | 256,60,80,1.025,0,0,normal,normal,notpresent,notpresent,131,10,0.5,146,5,14.5,41,10700,5.1,no,no,no,good,no,no,notckd 259 | 257,38,60,1.02,0,0,normal,normal,notpresent,notpresent,91,36,0.7,135,3.7,14,46,9100,5.8,no,no,no,good,no,no,notckd 260 | 258,42,80,1.02,0,0,normal,normal,notpresent,notpresent,98,20,0.5,140,3.5,13.9,44,8400,5.5,no,no,no,good,no,no,notckd 261 | 259,35,80,1.02,0,0,normal,normal,notpresent,notpresent,104,31,1.2,135,5,16.1,45,4300,5.2,no,no,no,good,no,no,notckd 262 | 260,30,80,1.02,0,0,normal,normal,notpresent,notpresent,131,38,1,147,3.8,14.1,45,9400,5.3,no,no,no,good,no,no,notckd 263 | 261,49,80,1.02,0,0,normal,normal,notpresent,notpresent,122,32,1.2,139,3.9,17,41,5600,4.9,no,no,no,good,no,no,notckd 264 | 262,55,80,1.02,0,0,normal,normal,notpresent,notpresent,118,18,0.9,135,3.6,15.5,43,7200,5.4,no,no,no,good,no,no,notckd 265 | 263,45,80,1.02,0,0,normal,normal,notpresent,notpresent,117,46,1.2,137,5,16.2,45,8600,5.2,no,no,no,good,no,no,notckd 266 | 264,42,80,1.02,0,0,normal,normal,notpresent,notpresent,132,24,0.7,140,4.1,14.4,50,5000,4.5,no,no,no,good,no,no,notckd 267 | 265,50,80,1.02,0,0,normal,normal,notpresent,notpresent,97,40,0.6,150,4.5,14.2,48,10500,5,no,no,no,good,no,no,notckd 268 | 266,55,80,1.02,0,0,normal,normal,notpresent,notpresent,133,17,1.2,135,4.8,13.2,41,6800,5.3,no,no,no,good,no,no,notckd 269 | 267,48,80,1.025,0,0,normal,normal,notpresent,notpresent,122,33,0.9,146,3.9,13.9,48,9500,4.8,no,no,no,good,no,no,notckd 270 | 268,,80,,,,,,notpresent,notpresent,100,49,1,140,5,16.3,53,8500,4.9,no,no,no,good,no,no,notckd 271 | 269,25,80,1.025,0,0,normal,normal,notpresent,notpresent,121,19,1.2,142,4.9,15,48,6900,5.3,no,no,no,good,no,no,notckd 272 | 270,23,80,1.025,0,0,normal,normal,notpresent,notpresent,111,34,1.1,145,4,14.3,41,7200,5,no,no,no,good,no,no,notckd 273 | 271,30,80,1.025,0,0,normal,normal,notpresent,notpresent,96,25,0.5,144,4.8,13.8,42,9000,4.5,no,no,no,good,no,no,notckd 274 | 272,56,80,1.025,0,0,normal,normal,notpresent,notpresent,139,15,1.2,135,5,14.8,42,5600,5.5,no,no,no,good,no,no,notckd 275 | 273,47,80,1.02,0,0,normal,normal,notpresent,notpresent,95,35,0.9,140,4.1,,,,,no,no,no,good,no,no,notckd 276 | 274,19,80,1.02,0,0,normal,normal,notpresent,notpresent,107,23,0.7,141,4.2,14.4,44,,,no,no,no,good,no,no,notckd 277 | 275,52,80,1.02,0,0,normal,normal,notpresent,notpresent,125,22,1.2,139,4.6,16.5,43,4700,4.6,no,no,no,good,no,no,notckd 278 | 276,20,60,1.025,0,0,normal,normal,notpresent,notpresent,,,,137,4.7,14,41,4500,5.5,no,no,no,good,no,no,notckd 279 | 277,46,60,1.025,0,0,normal,normal,notpresent,notpresent,123,46,1,135,5,15.7,50,6300,4.8,no,no,no,good,no,no,notckd 280 | 278,48,60,1.02,0,0,normal,normal,notpresent,notpresent,112,44,1.2,142,4.9,14.5,44,9400,6.4,no,no,no,good,no,no,notckd 281 | 279,24,70,1.025,0,0,normal,normal,notpresent,notpresent,140,23,0.6,140,4.7,16.3,48,5800,5.6,no,no,no,good,no,no,notckd 282 | 280,47,80,,,,,,notpresent,notpresent,93,33,0.9,144,4.5,13.3,52,8100,5.2,no,no,no,good,no,no,notckd 283 | 281,55,80,1.025,0,0,normal,normal,notpresent,notpresent,130,50,1.2,147,5,15.5,41,9100,6,no,no,no,good,no,no,notckd 284 | 282,20,70,1.02,0,0,normal,normal,notpresent,notpresent,123,44,1,135,3.8,14.6,44,5500,4.8,no,no,no,good,no,no,notckd 285 | 283,60,70,1.02,0,0,normal,normal,notpresent,notpresent,,,,,,16.4,43,10800,5.7,no,no,no,good,no,no,notckd 286 | 284,33,80,1.025,0,0,normal,normal,notpresent,notpresent,100,37,1.2,142,4,16.9,52,6700,6,no,no,no,good,no,no,notckd 287 | 285,66,70,1.02,0,0,normal,normal,notpresent,notpresent,94,19,0.7,135,3.9,16,41,5300,5.9,no,no,no,good,no,no,notckd 288 | 286,71,70,1.02,0,0,normal,normal,notpresent,notpresent,81,18,0.8,145,5,14.7,44,9800,6,no,no,no,good,no,no,notckd 289 | 287,39,70,1.025,0,0,normal,normal,notpresent,notpresent,124,22,0.6,137,3.8,13.4,43,,,no,no,no,good,no,no,notckd 290 | 288,56,70,1.025,0,0,normal,normal,notpresent,notpresent,70,46,1.2,135,4.9,15.9,50,11000,5.1,,,,good,no,no,notckd 291 | 289,42,70,1.02,0,0,normal,normal,notpresent,notpresent,93,32,0.9,143,4.7,16.6,43,7100,5.3,no,no,no,good,no,no,notckd 292 | 290,54,70,1.02,0,0,,,,,76,28,0.6,146,3.5,14.8,52,8400,5.9,no,no,no,good,no,no,notckd 293 | 291,47,80,1.025,0,0,normal,normal,notpresent,notpresent,124,44,1,140,4.9,14.9,41,7000,5.7,no,no,no,good,no,no,notckd 294 | 292,30,80,1.02,0,0,normal,normal,notpresent,notpresent,89,42,0.5,139,5,16.7,52,10200,5,no,no,no,good,no,no,notckd 295 | 293,50,,1.02,0,0,normal,normal,notpresent,notpresent,92,19,1.2,150,4.8,14.9,48,4700,5.4,no,no,no,good,no,no,notckd 296 | 294,75,60,1.02,0,0,normal,normal,notpresent,notpresent,110,50,0.7,135,5,14.3,40,8300,5.8,no,no,no,,,,notckd 297 | 295,44,70,,,,,,notpresent,notpresent,106,25,0.9,150,3.6,15,50,9600,6.5,no,no,no,good,no,no,notckd 298 | 296,41,70,1.02,0,0,normal,normal,notpresent,notpresent,125,38,0.6,140,5,16.8,41,6300,5.9,no,no,no,good,no,no,notckd 299 | 297,53,60,1.025,0,0,normal,normal,notpresent,notpresent,116,26,1,146,4.9,15.8,45,7700,5.2,,,,good,no,no,notckd 300 | 298,34,60,1.02,0,0,normal,normal,notpresent,notpresent,91,49,1.2,135,4.5,13.5,48,8600,4.9,no,no,no,good,no,no,notckd 301 | 299,73,60,1.02,0,0,normal,normal,notpresent,notpresent,127,48,0.5,150,3.5,15.1,52,11000,4.7,no,no,no,good,no,no,notckd 302 | 300,45,60,1.02,0,0,normal,normal,,,114,26,0.7,141,4.2,15,43,9200,5.8,no,no,no,good,no,no,notckd 303 | 301,44,60,1.025,0,0,normal,normal,notpresent,notpresent,96,33,0.9,147,4.5,16.9,41,7200,5,no,no,no,good,no,no,notckd 304 | 302,29,70,1.02,0,0,normal,normal,notpresent,notpresent,127,44,1.2,145,5,14.8,48,,,no,no,no,good,no,no,notckd 305 | 303,55,70,1.02,0,0,normal,normal,notpresent,notpresent,107,26,1.1,,,17,50,6700,6.1,no,no,no,good,no,no,notckd 306 | 304,33,80,1.025,0,0,normal,normal,notpresent,notpresent,128,38,0.6,135,3.9,13.1,45,6200,4.5,no,no,no,good,no,no,notckd 307 | 305,41,80,1.02,0,0,normal,normal,notpresent,notpresent,122,25,0.8,138,5,17.1,41,9100,5.2,no,no,no,good,no,no,notckd 308 | 306,52,80,1.02,0,0,normal,normal,notpresent,notpresent,128,30,1.2,140,4.5,15.2,52,4300,5.7,no,no,no,good,no,no,notckd 309 | 307,47,60,1.02,0,0,normal,normal,notpresent,notpresent,137,17,0.5,150,3.5,13.6,44,7900,4.5,no,no,no,good,no,no,notckd 310 | 308,43,80,1.025,0,0,normal,normal,notpresent,notpresent,81,46,0.6,135,4.9,13.9,48,6900,4.9,no,no,no,good,no,no,notckd 311 | 309,51,60,1.02,0,0,,,notpresent,notpresent,129,25,1.2,139,5,17.2,40,8100,5.9,no,no,no,good,no,no,notckd 312 | 310,46,60,1.02,0,0,normal,normal,notpresent,notpresent,102,27,0.7,142,4.9,13.2,44,11000,5.4,no,no,no,good,no,no,notckd 313 | 311,56,60,1.025,0,0,normal,normal,notpresent,notpresent,132,18,1.1,147,4.7,13.7,45,7500,5.6,no,no,no,good,no,no,notckd 314 | 312,80,70,1.02,0,0,normal,normal,notpresent,notpresent,,,,135,4.1,15.3,48,6300,6.1,no,no,no,good,no,no,notckd 315 | 313,55,80,1.02,0,0,normal,normal,notpresent,notpresent,104,28,0.9,142,4.8,17.3,52,8200,4.8,no,no,no,good,no,no,notckd 316 | 314,39,70,1.025,0,0,normal,normal,notpresent,notpresent,131,46,0.6,145,5,15.6,41,9400,4.7,no,no,no,good,no,no,notckd 317 | 315,44,70,1.025,0,0,normal,normal,notpresent,notpresent,,,,,,13.8,48,7800,4.4,no,no,no,good,no,no,notckd 318 | 316,35,,1.02,0,0,normal,normal,,,99,30,0.5,135,4.9,15.4,48,5000,5.2,no,no,no,good,no,no,notckd 319 | 317,58,70,1.02,0,0,normal,normal,notpresent,notpresent,102,48,1.2,139,4.3,15,40,8100,4.9,no,no,no,good,no,no,notckd 320 | 318,61,70,1.025,0,0,normal,normal,notpresent,notpresent,120,29,0.7,137,3.5,17.4,52,7000,5.3,no,no,no,good,no,no,notckd 321 | 319,30,60,1.02,0,0,normal,normal,notpresent,notpresent,138,15,1.1,135,4.4,,,,,no,no,no,good,no,no,notckd 322 | 320,57,60,1.02,0,0,normal,normal,notpresent,notpresent,105,49,1.2,150,4.7,15.7,44,10400,6.2,no,no,no,good,no,no,notckd 323 | 321,65,60,1.02,0,0,normal,normal,notpresent,notpresent,109,39,1,144,3.5,13.9,48,9600,4.8,no,no,no,good,no,no,notckd 324 | 322,70,60,,,,,,notpresent,notpresent,120,40,0.5,140,4.6,16,43,4500,4.9,no,no,no,good,no,no,notckd 325 | 323,43,80,1.025,0,0,normal,normal,notpresent,notpresent,130,30,1.1,143,5,15.9,45,7800,4.5,no,no,no,good,no,no,notckd 326 | 324,40,80,1.02,0,0,normal,normal,notpresent,notpresent,119,15,0.7,150,4.9,,,,,no,no,no,good,no,no,notckd 327 | 325,58,80,1.02,0,0,normal,normal,notpresent,notpresent,100,50,1.2,140,3.5,14,50,6700,6.5,no,no,no,good,no,no,notckd 328 | 326,47,60,1.02,0,0,normal,normal,notpresent,notpresent,109,25,1.1,141,4.7,15.8,41,8300,5.2,no,no,no,good,no,no,notckd 329 | 327,30,60,1.025,0,0,normal,normal,notpresent,notpresent,120,31,0.8,150,4.6,13.4,44,10700,5.8,no,no,no,good,no,no,notckd 330 | 328,28,70,1.02,0,0,normal,normal,,,131,29,0.6,145,4.9,,45,8600,6.5,no,no,no,good,no,no,notckd 331 | 329,33,60,1.025,0,0,normal,normal,notpresent,notpresent,80,25,0.9,146,3.5,14.1,48,7800,5.1,no,no,no,good,no,no,notckd 332 | 330,43,80,1.02,0,0,normal,normal,notpresent,notpresent,114,32,1.1,135,3.9,,42,,,no,no,no,good,no,no,notckd 333 | 331,59,70,1.025,0,0,normal,normal,notpresent,notpresent,130,39,0.7,147,4.7,13.5,46,6700,4.5,no,no,no,good,no,no,notckd 334 | 332,34,70,1.025,0,0,normal,normal,notpresent,notpresent,,33,1,150,5,15.3,44,10500,6.1,no,no,no,good,no,no,notckd 335 | 333,23,80,1.02,0,0,normal,normal,notpresent,notpresent,99,46,1.2,142,4,17.7,46,4300,5.5,no,no,no,good,no,no,notckd 336 | 334,24,80,1.025,0,0,normal,normal,notpresent,notpresent,125,,,136,3.5,15.4,43,5600,4.5,no,no,no,good,no,no,notckd 337 | 335,60,60,1.02,0,0,normal,normal,notpresent,notpresent,134,45,0.5,139,4.8,14.2,48,10700,5.6,no,no,no,good,no,no,notckd 338 | 336,25,60,1.02,0,0,normal,normal,notpresent,notpresent,119,27,0.5,,,15.2,40,9200,5.2,no,no,no,good,no,no,notckd 339 | 337,44,70,1.025,0,0,normal,normal,notpresent,notpresent,92,40,0.9,141,4.9,14,52,7500,6.2,no,no,no,good,no,no,notckd 340 | 338,62,80,1.02,0,0,normal,normal,notpresent,notpresent,132,34,0.8,147,3.5,17.8,44,4700,4.5,no,no,no,good,no,no,notckd 341 | 339,25,70,1.02,0,0,normal,normal,notpresent,notpresent,88,42,0.5,136,3.5,13.3,48,7000,4.9,no,no,no,good,no,no,notckd 342 | 340,32,70,1.025,0,0,normal,normal,notpresent,notpresent,100,29,1.1,142,4.5,14.3,43,6700,5.9,no,no,no,good,no,no,notckd 343 | 341,63,70,1.025,0,0,normal,normal,notpresent,notpresent,130,37,0.9,150,5,13.4,41,7300,4.7,no,no,no,good,no,no,notckd 344 | 342,44,60,1.02,0,0,normal,normal,notpresent,notpresent,95,46,0.5,138,4.2,15,50,7700,6.3,no,no,no,good,no,no,notckd 345 | 343,37,60,1.025,0,0,normal,normal,notpresent,notpresent,111,35,0.8,135,4.1,16.2,50,5500,5.7,no,no,no,good,no,no,notckd 346 | 344,64,60,1.02,0,0,normal,normal,notpresent,notpresent,106,27,0.7,150,3.3,14.4,42,8100,4.7,no,no,no,good,no,no,notckd 347 | 345,22,60,1.025,0,0,normal,normal,notpresent,notpresent,97,18,1.2,138,4.3,13.5,42,7900,6.4,no,no,no,good,no,no,notckd 348 | 346,33,60,,,,normal,normal,notpresent,notpresent,130,41,0.9,141,4.4,15.5,52,4300,5.8,no,no,no,good,no,no,notckd 349 | 347,43,60,1.025,0,0,normal,normal,notpresent,notpresent,108,25,1,144,5,17.8,43,7200,5.5,no,no,no,good,no,no,notckd 350 | 348,38,80,1.02,0,0,normal,normal,notpresent,notpresent,99,19,0.5,147,3.5,13.6,44,7300,6.4,no,no,no,good,no,no,notckd 351 | 349,35,70,1.025,0,0,,,notpresent,notpresent,82,36,1.1,150,3.5,14.5,52,9400,6.1,no,no,no,good,no,no,notckd 352 | 350,65,70,1.025,0,0,,,notpresent,notpresent,85,20,1,142,4.8,16.1,43,9600,4.5,no,no,no,good,no,no,notckd 353 | 351,29,80,1.02,0,0,normal,normal,notpresent,notpresent,83,49,0.9,139,3.3,17.5,40,9900,4.7,no,no,no,good,no,no,notckd 354 | 352,37,60,1.02,0,0,normal,normal,notpresent,notpresent,109,47,1.1,141,4.9,15,48,7000,5.2,no,no,no,good,no,no,notckd 355 | 353,39,60,1.02,0,0,normal,normal,notpresent,notpresent,86,37,0.6,150,5,13.6,51,5800,4.5,no,no,no,good,no,no,notckd 356 | 354,32,60,1.025,0,0,normal,normal,notpresent,notpresent,102,17,0.4,147,4.7,14.6,41,6800,5.1,no,no,no,good,no,no,notckd 357 | 355,23,60,1.02,0,0,normal,normal,notpresent,notpresent,95,24,0.8,145,5,15,52,6300,4.6,no,no,no,good,no,no,notckd 358 | 356,34,70,1.025,0,0,normal,normal,notpresent,notpresent,87,38,0.5,144,4.8,17.1,47,7400,6.1,no,no,no,good,no,no,notckd 359 | 357,66,70,1.025,0,0,normal,normal,notpresent,notpresent,107,16,1.1,140,3.6,13.6,42,11000,4.9,no,no,no,good,no,no,notckd 360 | 358,47,60,1.02,0,0,normal,normal,notpresent,notpresent,117,22,1.2,138,3.5,13,45,5200,5.6,no,no,no,good,no,no,notckd 361 | 359,74,60,1.02,0,0,normal,normal,notpresent,notpresent,88,50,0.6,147,3.7,17.2,53,6000,4.5,no,no,no,good,no,no,notckd 362 | 360,35,60,1.025,0,0,normal,normal,notpresent,notpresent,105,39,0.5,135,3.9,14.7,43,5800,6.2,no,no,no,good,no,no,notckd 363 | 361,29,80,1.02,0,0,normal,normal,notpresent,notpresent,70,16,0.7,138,3.5,13.7,54,5400,5.8,no,no,no,good,no,no,notckd 364 | 362,33,80,1.025,0,0,normal,normal,notpresent,notpresent,89,19,1.1,144,5,15,40,10300,4.8,no,no,no,good,no,no,notckd 365 | 363,67,80,1.025,0,0,normal,normal,notpresent,notpresent,99,40,0.5,,,17.8,44,5900,5.2,no,no,no,good,no,no,notckd 366 | 364,73,80,1.025,0,0,normal,normal,notpresent,notpresent,118,44,0.7,137,3.5,14.8,45,9300,4.7,no,no,no,good,no,no,notckd 367 | 365,24,80,1.02,0,0,normal,normal,notpresent,notpresent,93,46,1,145,3.5,,,10700,6.3,no,no,no,good,no,no,notckd 368 | 366,60,80,1.025,0,0,normal,normal,notpresent,notpresent,81,15,0.5,141,3.6,15,46,10500,5.3,no,no,no,good,no,no,notckd 369 | 367,68,60,1.025,0,0,normal,normal,notpresent,notpresent,125,41,1.1,139,3.8,17.4,50,6700,6.1,no,no,no,good,no,no,notckd 370 | 368,30,80,1.025,0,0,normal,normal,notpresent,notpresent,82,42,0.7,146,5,14.9,45,9400,5.9,no,no,no,good,no,no,notckd 371 | 369,75,70,1.02,0,0,normal,normal,notpresent,notpresent,107,48,0.8,144,3.5,13.6,46,10300,4.8,no,no,no,good,no,no,notckd 372 | 370,69,70,1.02,0,0,normal,normal,notpresent,notpresent,83,42,1.2,139,3.7,16.2,50,9300,5.4,no,no,no,good,no,no,notckd 373 | 371,28,60,1.025,0,0,normal,normal,notpresent,notpresent,79,50,0.5,145,5,17.6,51,6500,5,no,no,no,good,no,no,notckd 374 | 372,72,60,1.02,0,0,normal,normal,notpresent,notpresent,109,26,0.9,150,4.9,15,52,10500,5.5,no,no,no,good,no,no,notckd 375 | 373,61,70,1.025,0,0,normal,normal,notpresent,notpresent,133,38,1,142,3.6,13.7,47,9200,4.9,no,no,no,good,no,no,notckd 376 | 374,79,80,1.025,0,0,normal,normal,notpresent,notpresent,111,44,1.2,146,3.6,16.3,40,8000,6.4,no,no,no,good,no,no,notckd 377 | 375,70,80,1.02,0,0,normal,normal,notpresent,notpresent,74,41,0.5,143,4.5,15.1,48,9700,5.6,no,no,no,good,no,no,notckd 378 | 376,58,70,1.025,0,0,normal,normal,notpresent,notpresent,88,16,1.1,147,3.5,16.4,53,9100,5.2,no,no,no,good,no,no,notckd 379 | 377,64,70,1.02,0,0,normal,normal,notpresent,notpresent,97,27,0.7,145,4.8,13.8,49,6400,4.8,no,no,no,good,no,no,notckd 380 | 378,71,60,1.025,0,0,normal,normal,notpresent,notpresent,,,0.9,140,4.8,15.2,42,7700,5.5,no,no,no,good,no,no,notckd 381 | 379,62,80,1.025,0,0,normal,normal,notpresent,notpresent,78,45,0.6,138,3.5,16.1,50,5400,5.7,no,no,no,good,no,no,notckd 382 | 380,59,60,1.02,0,0,normal,normal,notpresent,notpresent,113,23,1.1,139,3.5,15.3,54,6500,4.9,no,no,no,good,no,no,notckd 383 | 381,71,70,1.025,0,0,,,notpresent,notpresent,79,47,0.5,142,4.8,16.6,40,5800,5.9,no,no,no,good,no,no,notckd 384 | 382,48,80,1.025,0,0,normal,normal,notpresent,notpresent,75,22,0.8,137,5,16.8,51,6000,6.5,no,no,no,good,no,no,notckd 385 | 383,80,80,1.025,0,0,normal,normal,notpresent,notpresent,119,46,0.7,141,4.9,13.9,49,5100,5,no,no,no,good,no,no,notckd 386 | 384,57,60,1.02,0,0,normal,normal,notpresent,notpresent,132,18,1.1,150,4.7,15.4,42,11000,4.5,no,no,no,good,no,no,notckd 387 | 385,63,70,1.02,0,0,normal,normal,notpresent,notpresent,113,25,0.6,146,4.9,16.5,52,8000,5.1,no,no,no,good,no,no,notckd 388 | 386,46,70,1.025,0,0,normal,normal,notpresent,notpresent,100,47,0.5,142,3.5,16.4,43,5700,6.5,no,no,no,good,no,no,notckd 389 | 387,15,80,1.025,0,0,normal,normal,notpresent,notpresent,93,17,0.9,136,3.9,16.7,50,6200,5.2,no,no,no,good,no,no,notckd 390 | 388,51,80,1.02,0,0,normal,normal,notpresent,notpresent,94,15,1.2,144,3.7,15.5,46,9500,6.4,no,no,no,good,no,no,notckd 391 | 389,41,80,1.025,0,0,normal,normal,notpresent,notpresent,112,48,0.7,140,5,17,52,7200,5.8,no,no,no,good,no,no,notckd 392 | 390,52,80,1.025,0,0,normal,normal,notpresent,notpresent,99,25,0.8,135,3.7,15,52,6300,5.3,no,no,no,good,no,no,notckd 393 | 391,36,80,1.025,0,0,normal,normal,notpresent,notpresent,85,16,1.1,142,4.1,15.6,44,5800,6.3,no,no,no,good,no,no,notckd 394 | 392,57,80,1.02,0,0,normal,normal,notpresent,notpresent,133,48,1.2,147,4.3,14.8,46,6600,5.5,no,no,no,good,no,no,notckd 395 | 393,43,60,1.025,0,0,normal,normal,notpresent,notpresent,117,45,0.7,141,4.4,13,54,7400,5.4,no,no,no,good,no,no,notckd 396 | 394,50,80,1.02,0,0,normal,normal,notpresent,notpresent,137,46,0.8,139,5,14.1,45,9500,4.6,no,no,no,good,no,no,notckd 397 | 395,55,80,1.02,0,0,normal,normal,notpresent,notpresent,140,49,0.5,150,4.9,15.7,47,6700,4.9,no,no,no,good,no,no,notckd 398 | 396,42,70,1.025,0,0,normal,normal,notpresent,notpresent,75,31,1.2,141,3.5,16.5,54,7800,6.2,no,no,no,good,no,no,notckd 399 | 397,12,80,1.02,0,0,normal,normal,notpresent,notpresent,100,26,0.6,137,4.4,15.8,49,6600,5.4,no,no,no,good,no,no,notckd 400 | 398,17,60,1.025,0,0,normal,normal,notpresent,notpresent,114,50,1,135,4.9,14.2,51,7200,5.9,no,no,no,good,no,no,notckd 401 | 399,58,80,1.025,0,0,normal,normal,notpresent,notpresent,131,18,1.1,141,3.5,15.8,53,6800,6.1,no,no,no,good,no,no,notckd 402 | --------------------------------------------------------------------------------