├── README.md ├── challenger.csv ├── concrete.csv ├── credit.csv ├── groceries.csv ├── insurance.csv ├── letterdata.csv ├── mushrooms.csv ├── sms_spam.csv ├── snsdata.csv ├── usedcars.csv ├── whitewines.csv ├── winequality-white.csv └── wisc_bc_data.csv /README.md: -------------------------------------------------------------------------------- 1 | # Data for Machine Learning with R 2 | [Machine Learning with R](https://www.packtpub.com/big-data-and-business-intelligence/machine-learning-r) by Brett Lantz is a book that provides an introduction to machine learning using R. As far as I can tell, Packt Publishing does not make its datasets 3 | available online unless you buy the book and create a [user account](https://www.packtpub.com/books/content/support) which can be a problem if you are checking the book out from the library or borrowing the book from a friend. All of these datasets 4 | are in the public domain but simply needed some cleaning up and recoding to match the format in the book. 5 | 6 | # How to download the data 7 | 1. In your Mac or Linux envirounment, open a terminal and change to the directory where you want your data to be downloaded. 8 | 2. Go to the github page you want to download it's data (for example the challenger data in chapter 6: https://github.com/stedy/Machine-Learning-with-R-datasets/blob/master/challenger.csv) 9 | 3. On the right side, you will find a button called "raw". Click on it. 10 | 4. Copy the url you will get for the new page (in our example I got https://raw.githubusercontent.com/stedy/Machine-Learning-with-R-datasets/master/challenger.csv) 11 | 5. put the following command in the terminal screen 12 | wget name_of_url 13 | 14 | so in our example it should be like this 15 | `wget https://raw.githubusercontent.com/stedy/Machine-Learning-with-R-datasets/master/challenger.csv` 16 | 17 | 18 | Chapter 1 19 | --------- 20 | 21 | No datasets used 22 | 23 | Chapter 2 24 | --------- 25 | 26 | usedcars.csv could not be found online 27 | 28 | Chapter 3 29 | --------- 30 | 31 | wisc_bc_data.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin/ 32 | 33 | Chapter 4 34 | --------- 35 | 36 | sms_spam.csv from http://www.dt.fee.unicamp.br/~tiago/smsspamcollection/ 37 | 38 | Chapter 5 39 | --------- 40 | 41 | credit.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/german/ 42 | 43 | mushrooms.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/mushroom/ 44 | 45 | Chapter 6 46 | --------- 47 | challenger.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/space-shuttle/ 48 | 49 | insurance.csv could not be found online 50 | 51 | whitewines.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/ 52 | 53 | Chapter 7 54 | --------- 55 | 56 | concrete.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/concrete/compressive/ 57 | 58 | letterdata.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/letter-recognition/ 59 | 60 | Chapter 8 61 | --------- 62 | 63 | groceries.csv is from [arules](http://cran.r-project.org/web/packages/arules/index.html) package but probably just easier to call `library(arules); data(Groceries)` 64 | 65 | Chapter 9 66 | --------- 67 | 68 | snsdata.csv could not be found online 69 | 70 | Chapter 10 71 | ---------- 72 | 73 | sms_results.csv is likely from the `sms_test_pred` object in Chapter 4 but difficult to be sure. 74 | 75 | credit.csv is likely the same file from Chapter 5. 76 | 77 | Chapter 11 78 | ---------- 79 | 80 | credit.csv from Chapter 5 is reused. 81 | 82 | Chapter 12 83 | ---------- 84 | 85 | No datasets used 86 | 87 | 88 | -------------------------------------------------------------------------------- /challenger.csv: -------------------------------------------------------------------------------- 1 | "o_ring_ct","distress_ct","temperature","pressure","launch_id" 2 | 6,0,66,50,1 3 | 6,1,70,50,2 4 | 6,0,69,50,3 5 | 6,0,68,50,4 6 | 6,0,67,50,5 7 | 6,0,72,50,6 8 | 6,0,73,100,7 9 | 6,0,70,100,8 10 | 6,1,57,200,9 11 | 6,1,63,200,10 12 | 6,1,70,200,11 13 | 6,0,78,200,12 14 | 6,0,67,200,13 15 | 6,2,53,200,14 16 | 6,0,67,200,15 17 | 6,0,75,200,16 18 | 6,0,70,200,17 19 | 6,0,81,200,18 20 | 6,0,76,200,19 21 | 6,0,79,200,20 22 | 6,0,75,200,21 23 | 6,0,76,200,22 24 | 6,1,58,200,23 25 | -------------------------------------------------------------------------------- /concrete.csv: -------------------------------------------------------------------------------- 1 | cement,slag,ash,water,superplastic,coarseagg,fineagg,age,strength 2 | 540.0,0.0,0.0,162.0,2.5,1040.0,676.0,28,79.99 3 | 540.0,0.0,0.0,162.0,2.5,1055.0,676.0,28,61.89 4 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,270,40.27 5 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,365,41.05 6 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,360,44.30 7 | 266.0,114.0,0.0,228.0,0.0,932.0,670.0,90,47.03 8 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,365,43.70 9 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,28,36.45 10 | 266.0,114.0,0.0,228.0,0.0,932.0,670.0,28,45.85 11 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,28,39.29 12 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,90,38.07 13 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,28,28.02 14 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,270,43.01 15 | 190.0,190.0,0.0,228.0,0.0,932.0,670.0,90,42.33 16 | 304.0,76.0,0.0,228.0,0.0,932.0,670.0,28,47.81 17 | 380.0,0.0,0.0,228.0,0.0,932.0,670.0,90,52.91 18 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,90,39.36 19 | 342.0,38.0,0.0,228.0,0.0,932.0,670.0,365,56.14 20 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,90,40.56 21 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,180,42.62 22 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,180,41.84 23 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,28,28.24 24 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,3,8.06 25 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,180,44.21 26 | 380.0,0.0,0.0,228.0,0.0,932.0,670.0,365,52.52 27 | 380.0,0.0,0.0,228.0,0.0,932.0,670.0,270,53.30 28 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,270,41.15 29 | 342.0,38.0,0.0,228.0,0.0,932.0,670.0,180,52.12 30 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,28,37.43 31 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,7,38.60 32 | 304.0,76.0,0.0,228.0,0.0,932.0,670.0,365,55.26 33 | 266.0,114.0,0.0,228.0,0.0,932.0,670.0,365,52.91 34 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,180,41.72 35 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,270,42.13 36 | 190.0,190.0,0.0,228.0,0.0,932.0,670.0,365,53.69 37 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,270,38.41 38 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,28,30.08 39 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,90,37.72 40 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,90,42.23 41 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,180,36.25 42 | 342.0,38.0,0.0,228.0,0.0,932.0,670.0,90,50.46 43 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,365,43.70 44 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,365,39.00 45 | 380.0,0.0,0.0,228.0,0.0,932.0,670.0,180,53.10 46 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,90,41.54 47 | 427.5,47.5,0.0,228.0,0.0,932.0,594.0,7,35.08 48 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.9,3,15.05 49 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,180,40.76 50 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,7,26.26 51 | 380.0,95.0,0.0,228.0,0.0,932.0,594.0,7,32.82 52 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,180,39.78 53 | 190.0,190.0,0.0,228.0,0.0,932.0,670.0,180,46.93 54 | 237.5,237.5,0.0,228.0,0.0,932.0,594.0,90,33.12 55 | 304.0,76.0,0.0,228.0,0.0,932.0,670.0,90,49.19 56 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,7,14.59 57 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,7,14.64 58 | 475.0,0.0,0.0,228.0,0.0,932.0,594.0,365,41.93 59 | 198.6,132.4,0.0,192.0,0.0,978.4,825.5,3,9.13 60 | 304.0,76.0,0.0,228.0,0.0,932.0,670.0,180,50.95 61 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,28,33.02 62 | 304.0,76.0,0.0,228.0,0.0,932.0,670.0,270,54.38 63 | 266.0,114.0,0.0,228.0,0.0,932.0,670.0,270,51.73 64 | 310.0,0.0,0.0,192.0,0.0,971.0,850.6,3,9.87 65 | 190.0,190.0,0.0,228.0,0.0,932.0,670.0,270,50.66 66 | 266.0,114.0,0.0,228.0,0.0,932.0,670.0,180,48.70 67 | 342.0,38.0,0.0,228.0,0.0,932.0,670.0,270,55.06 68 | 139.6,209.4,0.0,192.0,0.0,1047.0,806.9,360,44.70 69 | 332.5,142.5,0.0,228.0,0.0,932.0,594.0,7,30.28 70 | 190.0,190.0,0.0,228.0,0.0,932.0,670.0,28,40.86 71 | 485.0,0.0,0.0,146.0,0.0,1120.0,800.0,28,71.99 72 | 374.0,189.2,0.0,170.1,10.1,926.1,756.7,3,34.40 73 | 313.3,262.2,0.0,175.5,8.6,1046.9,611.8,3,28.80 74 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,3,33.40 75 | 425.0,106.3,0.0,151.4,18.6,936.0,803.7,3,36.30 76 | 375.0,93.8,0.0,126.6,23.4,852.1,992.6,3,29.00 77 | 475.0,118.8,0.0,181.1,8.9,852.1,781.5,3,37.80 78 | 469.0,117.2,0.0,137.8,32.2,852.1,840.5,3,40.20 79 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,3,33.40 80 | 388.6,97.1,0.0,157.9,12.1,852.1,925.7,3,28.10 81 | 531.3,0.0,0.0,141.8,28.2,852.1,893.7,3,41.30 82 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,3,33.40 83 | 318.8,212.5,0.0,155.7,14.3,852.1,880.4,3,25.20 84 | 401.8,94.7,0.0,147.4,11.4,946.8,852.1,3,41.10 85 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,3,35.30 86 | 323.7,282.8,0.0,183.8,10.3,942.7,659.9,3,28.30 87 | 379.5,151.2,0.0,153.9,15.9,1134.3,605.0,3,28.60 88 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,3,35.30 89 | 286.3,200.9,0.0,144.7,11.2,1004.6,803.7,3,24.40 90 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,3,35.30 91 | 439.0,177.0,0.0,186.0,11.1,884.9,707.9,3,39.30 92 | 389.9,189.0,0.0,145.9,22.0,944.7,755.8,3,40.60 93 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,3,35.30 94 | 337.9,189.0,0.0,174.9,9.5,944.7,755.8,3,24.10 95 | 374.0,189.2,0.0,170.1,10.1,926.1,756.7,7,46.20 96 | 313.3,262.2,0.0,175.5,8.6,1046.9,611.8,7,42.80 97 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,7,49.20 98 | 425.0,106.3,0.0,151.4,18.6,936.0,803.7,7,46.80 99 | 375.0,93.8,0.0,126.6,23.4,852.1,992.6,7,45.70 100 | 475.0,118.8,0.0,181.1,8.9,852.1,781.5,7,55.60 101 | 469.0,117.2,0.0,137.8,32.2,852.1,840.5,7,54.90 102 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,7,49.20 103 | 388.6,97.1,0.0,157.9,12.1,852.1,925.7,7,34.90 104 | 531.3,0.0,0.0,141.8,28.2,852.1,893.7,7,46.90 105 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,7,49.20 106 | 318.8,212.5,0.0,155.7,14.3,852.1,880.4,7,33.40 107 | 401.8,94.7,0.0,147.4,11.4,946.8,852.1,7,54.10 108 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,7,55.90 109 | 323.7,282.8,0.0,183.8,10.3,942.7,659.9,7,49.80 110 | 379.5,151.2,0.0,153.9,15.9,1134.3,605.0,7,47.10 111 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,7,55.90 112 | 286.3,200.9,0.0,144.7,11.2,1004.6,803.7,7,38.00 113 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,7,55.90 114 | 439.0,177.0,0.0,186.0,11.1,884.9,707.9,7,56.10 115 | 389.9,189.0,0.0,145.9,22.0,944.7,755.8,7,59.09 116 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,7,22.90 117 | 337.9,189.0,0.0,174.9,9.5,944.7,755.8,7,35.10 118 | 374.0,189.2,0.0,170.1,10.1,926.1,756.7,28,61.09 119 | 313.3,262.2,0.0,175.5,8.6,1046.9,611.8,28,59.80 120 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,28,60.29 121 | 425.0,106.3,0.0,151.4,18.6,936.0,803.7,28,61.80 122 | 375.0,93.8,0.0,126.6,23.4,852.1,992.6,28,56.70 123 | 475.0,118.8,0.0,181.1,8.9,852.1,781.5,28,68.30 124 | 469.0,117.2,0.0,137.8,32.2,852.1,840.5,28,66.90 125 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,28,60.29 126 | 388.6,97.1,0.0,157.9,12.1,852.1,925.7,28,50.70 127 | 531.3,0.0,0.0,141.8,28.2,852.1,893.7,28,56.40 128 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,28,60.29 129 | 318.8,212.5,0.0,155.7,14.3,852.1,880.4,28,55.50 130 | 401.8,94.7,0.0,147.4,11.4,946.8,852.1,28,68.50 131 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,28,71.30 132 | 323.7,282.8,0.0,183.8,10.3,942.7,659.9,28,74.70 133 | 379.5,151.2,0.0,153.9,15.9,1134.3,605.0,28,52.20 134 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,28,71.30 135 | 286.3,200.9,0.0,144.7,11.2,1004.6,803.7,28,67.70 136 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,28,71.30 137 | 439.0,177.0,0.0,186.0,11.1,884.9,707.9,28,66.00 138 | 389.9,189.0,0.0,145.9,22.0,944.7,755.8,28,74.50 139 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,28,71.30 140 | 337.9,189.0,0.0,174.9,9.5,944.7,755.8,28,49.90 141 | 374.0,189.2,0.0,170.1,10.1,926.1,756.7,56,63.40 142 | 313.3,262.2,0.0,175.5,8.6,1046.9,611.8,56,64.90 143 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,56,64.30 144 | 425.0,106.3,0.0,151.4,18.6,936.0,803.7,56,64.90 145 | 375.0,93.8,0.0,126.6,23.4,852.1,992.6,56,60.20 146 | 475.0,118.8,0.0,181.1,8.9,852.1,781.5,56,72.30 147 | 469.0,117.2,0.0,137.8,32.2,852.1,840.5,56,69.30 148 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,56,64.30 149 | 388.6,97.1,0.0,157.9,12.1,852.1,925.7,56,55.20 150 | 531.3,0.0,0.0,141.8,28.2,852.1,893.7,56,58.80 151 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,56,64.30 152 | 318.8,212.5,0.0,155.7,14.3,852.1,880.4,56,66.10 153 | 401.8,94.7,0.0,147.4,11.4,946.8,852.1,56,73.70 154 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,56,77.30 155 | 323.7,282.8,0.0,183.8,10.3,942.7,659.9,56,80.20 156 | 379.5,151.2,0.0,153.9,15.9,1134.3,605.0,56,54.90 157 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,56,77.30 158 | 286.3,200.9,0.0,144.7,11.2,1004.6,803.7,56,72.99 159 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,56,77.30 160 | 439.0,177.0,0.0,186.0,11.1,884.9,707.9,56,71.70 161 | 389.9,189.0,0.0,145.9,22.0,944.7,755.8,56,79.40 162 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,56,77.30 163 | 337.9,189.0,0.0,174.9,9.5,944.7,755.8,56,59.89 164 | 374.0,189.2,0.0,170.1,10.1,926.1,756.7,91,64.90 165 | 313.3,262.2,0.0,175.5,8.6,1046.9,611.8,91,66.60 166 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,91,65.20 167 | 425.0,106.3,0.0,151.4,18.6,936.0,803.7,91,66.70 168 | 375.0,93.8,0.0,126.6,23.4,852.1,992.6,91,62.50 169 | 475.0,118.8,0.0,181.1,8.9,852.1,781.5,91,74.19 170 | 469.0,117.2,0.0,137.8,32.2,852.1,840.5,91,70.70 171 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,91,65.20 172 | 388.6,97.1,0.0,157.9,12.1,852.1,925.7,91,57.60 173 | 531.3,0.0,0.0,141.8,28.2,852.1,893.7,91,59.20 174 | 425.0,106.3,0.0,153.5,16.5,852.1,887.1,91,65.20 175 | 318.8,212.5,0.0,155.7,14.3,852.1,880.4,91,68.10 176 | 401.8,94.7,0.0,147.4,11.4,946.8,852.1,91,75.50 177 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,91,79.30 178 | 379.5,151.2,0.0,153.9,15.9,1134.3,605.0,91,56.50 179 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,91,79.30 180 | 286.3,200.9,0.0,144.7,11.2,1004.6,803.7,91,76.80 181 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,91,79.30 182 | 439.0,177.0,0.0,186.0,11.1,884.9,707.9,91,73.30 183 | 389.9,189.0,0.0,145.9,22.0,944.7,755.8,91,82.60 184 | 362.6,189.0,0.0,164.9,11.6,944.7,755.8,91,79.30 185 | 337.9,189.0,0.0,174.9,9.5,944.7,755.8,91,67.80 186 | 222.4,0.0,96.7,189.3,4.5,967.1,870.3,3,11.58 187 | 222.4,0.0,96.7,189.3,4.5,967.1,870.3,14,24.45 188 | 222.4,0.0,96.7,189.3,4.5,967.1,870.3,28,24.89 189 | 222.4,0.0,96.7,189.3,4.5,967.1,870.3,56,29.45 190 | 222.4,0.0,96.7,189.3,4.5,967.1,870.3,100,40.71 191 | 233.8,0.0,94.6,197.9,4.6,947.0,852.2,3,10.38 192 | 233.8,0.0,94.6,197.9,4.6,947.0,852.2,14,22.14 193 | 233.8,0.0,94.6,197.9,4.6,947.0,852.2,28,22.84 194 | 233.8,0.0,94.6,197.9,4.6,947.0,852.2,56,27.66 195 | 233.8,0.0,94.6,197.9,4.6,947.0,852.2,100,34.56 196 | 194.7,0.0,100.5,165.6,7.5,1006.4,905.9,3,12.45 197 | 194.7,0.0,100.5,165.6,7.5,1006.4,905.9,14,24.99 198 | 194.7,0.0,100.5,165.6,7.5,1006.4,905.9,28,25.72 199 | 194.7,0.0,100.5,165.6,7.5,1006.4,905.9,56,33.96 200 | 194.7,0.0,100.5,165.6,7.5,1006.4,905.9,100,37.34 201 | 190.7,0.0,125.4,162.1,7.8,1090.0,804.0,3,15.04 202 | 190.7,0.0,125.4,162.1,7.8,1090.0,804.0,14,21.06 203 | 190.7,0.0,125.4,162.1,7.8,1090.0,804.0,28,26.40 204 | 190.7,0.0,125.4,162.1,7.8,1090.0,804.0,56,35.34 205 | 190.7,0.0,125.4,162.1,7.8,1090.0,804.0,100,40.57 206 | 212.1,0.0,121.6,180.3,5.7,1057.6,779.3,3,12.47 207 | 212.1,0.0,121.6,180.3,5.7,1057.6,779.3,14,20.92 208 | 212.1,0.0,121.6,180.3,5.7,1057.6,779.3,28,24.90 209 | 212.1,0.0,121.6,180.3,5.7,1057.6,779.3,56,34.20 210 | 212.1,0.0,121.6,180.3,5.7,1057.6,779.3,100,39.61 211 | 230.0,0.0,118.3,195.5,4.6,1029.4,758.6,3,10.03 212 | 230.0,0.0,118.3,195.5,4.6,1029.4,758.6,14,20.08 213 | 230.0,0.0,118.3,195.5,4.6,1029.4,758.6,28,24.48 214 | 230.0,0.0,118.3,195.5,4.6,1029.4,758.6,56,31.54 215 | 230.0,0.0,118.3,195.5,4.6,1029.4,758.6,100,35.34 216 | 190.3,0.0,125.2,161.9,9.9,1088.1,802.6,3,9.45 217 | 190.3,0.0,125.2,161.9,9.9,1088.1,802.6,14,22.72 218 | 190.3,0.0,125.2,161.9,9.9,1088.1,802.6,28,28.47 219 | 190.3,0.0,125.2,161.9,9.9,1088.1,802.6,56,38.56 220 | 190.3,0.0,125.2,161.9,9.9,1088.1,802.6,100,40.39 221 | 166.1,0.0,163.3,176.5,4.5,1058.6,780.1,3,10.76 222 | 166.1,0.0,163.3,176.5,4.5,1058.6,780.1,14,25.48 223 | 166.1,0.0,163.3,176.5,4.5,1058.6,780.1,28,21.54 224 | 166.1,0.0,163.3,176.5,4.5,1058.6,780.1,56,28.63 225 | 166.1,0.0,163.3,176.5,4.5,1058.6,780.1,100,33.54 226 | 168.0,42.1,163.8,121.8,5.7,1058.7,780.1,3,7.75 227 | 168.0,42.1,163.8,121.8,5.7,1058.7,780.1,14,17.82 228 | 168.0,42.1,163.8,121.8,5.7,1058.7,780.1,28,24.24 229 | 168.0,42.1,163.8,121.8,5.7,1058.7,780.1,56,32.85 230 | 168.0,42.1,163.8,121.8,5.7,1058.7,780.1,100,39.23 231 | 213.7,98.1,24.5,181.7,6.9,1065.8,785.4,3,18.00 232 | 213.7,98.1,24.5,181.7,6.9,1065.8,785.4,14,30.39 233 | 213.7,98.1,24.5,181.7,6.9,1065.8,785.4,28,45.71 234 | 213.7,98.1,24.5,181.7,6.9,1065.8,785.4,56,50.77 235 | 213.7,98.1,24.5,181.7,6.9,1065.8,785.4,100,53.90 236 | 213.8,98.1,24.5,181.7,6.7,1066.0,785.5,3,13.18 237 | 213.8,98.1,24.5,181.7,6.7,1066.0,785.5,14,17.84 238 | 213.8,98.1,24.5,181.7,6.7,1066.0,785.5,28,40.23 239 | 213.8,98.1,24.5,181.7,6.7,1066.0,785.5,56,47.13 240 | 213.8,98.1,24.5,181.7,6.7,1066.0,785.5,100,49.97 241 | 229.7,0.0,118.2,195.2,6.1,1028.1,757.6,3,13.36 242 | 229.7,0.0,118.2,195.2,6.1,1028.1,757.6,14,22.32 243 | 229.7,0.0,118.2,195.2,6.1,1028.1,757.6,28,24.54 244 | 229.7,0.0,118.2,195.2,6.1,1028.1,757.6,56,31.35 245 | 229.7,0.0,118.2,195.2,6.1,1028.1,757.6,100,40.86 246 | 238.1,0.0,94.1,186.7,7.0,949.9,847.0,3,19.93 247 | 238.1,0.0,94.1,186.7,7.0,949.9,847.0,14,25.69 248 | 238.1,0.0,94.1,186.7,7.0,949.9,847.0,28,30.23 249 | 238.1,0.0,94.1,186.7,7.0,949.9,847.0,56,39.59 250 | 238.1,0.0,94.1,186.7,7.0,949.9,847.0,100,44.30 251 | 250.0,0.0,95.7,187.4,5.5,956.9,861.2,3,13.82 252 | 250.0,0.0,95.7,187.4,5.5,956.9,861.2,14,24.92 253 | 250.0,0.0,95.7,187.4,5.5,956.9,861.2,28,29.22 254 | 250.0,0.0,95.7,187.4,5.5,956.9,861.2,56,38.33 255 | 250.0,0.0,95.7,187.4,5.5,956.9,861.2,100,42.35 256 | 212.5,0.0,100.4,159.3,8.7,1007.8,903.6,3,13.54 257 | 212.5,0.0,100.4,159.3,8.7,1007.8,903.6,14,26.31 258 | 212.5,0.0,100.4,159.3,8.7,1007.8,903.6,28,31.64 259 | 212.5,0.0,100.4,159.3,8.7,1007.8,903.6,56,42.55 260 | 212.5,0.0,100.4,159.3,8.7,1007.8,903.6,100,42.92 261 | 212.6,0.0,100.4,159.4,10.4,1003.8,903.8,3,13.33 262 | 212.6,0.0,100.4,159.4,10.4,1003.8,903.8,14,25.37 263 | 212.6,0.0,100.4,159.4,10.4,1003.8,903.8,28,37.40 264 | 212.6,0.0,100.4,159.4,10.4,1003.8,903.8,56,44.40 265 | 212.6,0.0,100.4,159.4,10.4,1003.8,903.8,100,47.74 266 | 212.0,0.0,124.8,159.0,7.8,1085.4,799.5,3,19.52 267 | 212.0,0.0,124.8,159.0,7.8,1085.4,799.5,14,31.35 268 | 212.0,0.0,124.8,159.0,7.8,1085.4,799.5,28,38.50 269 | 212.0,0.0,124.8,159.0,7.8,1085.4,799.5,56,45.08 270 | 212.0,0.0,124.8,159.0,7.8,1085.4,799.5,100,47.82 271 | 231.8,0.0,121.6,174.0,6.7,1056.4,778.5,3,15.44 272 | 231.8,0.0,121.6,174.0,6.7,1056.4,778.5,14,26.77 273 | 231.8,0.0,121.6,174.0,6.7,1056.4,778.5,28,33.73 274 | 231.8,0.0,121.6,174.0,6.7,1056.4,778.5,56,42.70 275 | 231.8,0.0,121.6,174.0,6.7,1056.4,778.5,100,45.84 276 | 251.4,0.0,118.3,188.5,5.8,1028.4,757.7,3,17.22 277 | 251.4,0.0,118.3,188.5,5.8,1028.4,757.7,14,29.93 278 | 251.4,0.0,118.3,188.5,5.8,1028.4,757.7,28,29.65 279 | 251.4,0.0,118.3,188.5,5.8,1028.4,757.7,56,36.97 280 | 251.4,0.0,118.3,188.5,5.8,1028.4,757.7,100,43.58 281 | 251.4,0.0,118.3,188.5,6.4,1028.4,757.7,3,13.12 282 | 251.4,0.0,118.3,188.5,6.4,1028.4,757.7,14,24.43 283 | 251.4,0.0,118.3,188.5,6.4,1028.4,757.7,28,32.66 284 | 251.4,0.0,118.3,188.5,6.4,1028.4,757.7,56,36.64 285 | 251.4,0.0,118.3,188.5,6.4,1028.4,757.7,100,44.21 286 | 181.4,0.0,167.0,169.6,7.6,1055.6,777.8,3,13.62 287 | 181.4,0.0,167.0,169.6,7.6,1055.6,777.8,14,21.60 288 | 181.4,0.0,167.0,169.6,7.6,1055.6,777.8,28,27.77 289 | 181.4,0.0,167.0,169.6,7.6,1055.6,777.8,56,35.57 290 | 181.4,0.0,167.0,169.6,7.6,1055.6,777.8,100,45.37 291 | 182.0,45.2,122.0,170.2,8.2,1059.4,780.7,3,7.32 292 | 182.0,45.2,122.0,170.2,8.2,1059.4,780.7,14,21.50 293 | 182.0,45.2,122.0,170.2,8.2,1059.4,780.7,28,31.27 294 | 182.0,45.2,122.0,170.2,8.2,1059.4,780.7,56,43.50 295 | 182.0,45.2,122.0,170.2,8.2,1059.4,780.7,100,48.67 296 | 168.9,42.2,124.3,158.3,10.8,1080.8,796.2,3,7.40 297 | 168.9,42.2,124.3,158.3,10.8,1080.8,796.2,14,23.51 298 | 168.9,42.2,124.3,158.3,10.8,1080.8,796.2,28,31.12 299 | 168.9,42.2,124.3,158.3,10.8,1080.8,796.2,56,39.15 300 | 168.9,42.2,124.3,158.3,10.8,1080.8,796.2,100,48.15 301 | 290.4,0.0,96.2,168.1,9.4,961.2,865.0,3,22.50 302 | 290.4,0.0,96.2,168.1,9.4,961.2,865.0,14,34.67 303 | 290.4,0.0,96.2,168.1,9.4,961.2,865.0,28,34.74 304 | 290.4,0.0,96.2,168.1,9.4,961.2,865.0,56,45.08 305 | 290.4,0.0,96.2,168.1,9.4,961.2,865.0,100,48.97 306 | 277.1,0.0,97.4,160.6,11.8,973.9,875.6,3,23.14 307 | 277.1,0.0,97.4,160.6,11.8,973.9,875.6,14,41.89 308 | 277.1,0.0,97.4,160.6,11.8,973.9,875.6,28,48.28 309 | 277.1,0.0,97.4,160.6,11.8,973.9,875.6,56,51.04 310 | 277.1,0.0,97.4,160.6,11.8,973.9,875.6,100,55.64 311 | 295.7,0.0,95.6,171.5,8.9,955.1,859.2,3,22.95 312 | 295.7,0.0,95.6,171.5,8.9,955.1,859.2,14,35.23 313 | 295.7,0.0,95.6,171.5,8.9,955.1,859.2,28,39.94 314 | 295.7,0.0,95.6,171.5,8.9,955.1,859.2,56,48.72 315 | 295.7,0.0,95.6,171.5,8.9,955.1,859.2,100,52.04 316 | 251.8,0.0,99.9,146.1,12.4,1006.0,899.8,3,21.02 317 | 251.8,0.0,99.9,146.1,12.4,1006.0,899.8,14,33.36 318 | 251.8,0.0,99.9,146.1,12.4,1006.0,899.8,28,33.94 319 | 251.8,0.0,99.9,146.1,12.4,1006.0,899.8,56,44.14 320 | 251.8,0.0,99.9,146.1,12.4,1006.0,899.8,100,45.37 321 | 249.1,0.0,98.8,158.1,12.8,987.8,889.0,3,15.36 322 | 249.1,0.0,98.8,158.1,12.8,987.8,889.0,14,28.68 323 | 249.1,0.0,98.8,158.1,12.8,987.8,889.0,28,30.85 324 | 249.1,0.0,98.8,158.1,12.8,987.8,889.0,56,42.03 325 | 249.1,0.0,98.8,158.1,12.8,987.8,889.0,100,51.06 326 | 252.3,0.0,98.8,146.3,14.2,987.8,889.0,3,21.78 327 | 252.3,0.0,98.8,146.3,14.2,987.8,889.0,14,42.29 328 | 252.3,0.0,98.8,146.3,14.2,987.8,889.0,28,50.60 329 | 252.3,0.0,98.8,146.3,14.2,987.8,889.0,56,55.83 330 | 252.3,0.0,98.8,146.3,14.2,987.8,889.0,100,60.95 331 | 246.8,0.0,125.1,143.3,12.0,1086.8,800.9,3,23.52 332 | 246.8,0.0,125.1,143.3,12.0,1086.8,800.9,14,42.22 333 | 246.8,0.0,125.1,143.3,12.0,1086.8,800.9,28,52.50 334 | 246.8,0.0,125.1,143.3,12.0,1086.8,800.9,56,60.32 335 | 246.8,0.0,125.1,143.3,12.0,1086.8,800.9,100,66.42 336 | 275.1,0.0,121.4,159.5,9.9,1053.6,777.5,3,23.80 337 | 275.1,0.0,121.4,159.5,9.9,1053.6,777.5,14,38.77 338 | 275.1,0.0,121.4,159.5,9.9,1053.6,777.5,28,51.33 339 | 275.1,0.0,121.4,159.5,9.9,1053.6,777.5,56,56.85 340 | 275.1,0.0,121.4,159.5,9.9,1053.6,777.5,100,58.61 341 | 297.2,0.0,117.5,174.8,9.5,1022.8,753.5,3,21.91 342 | 297.2,0.0,117.5,174.8,9.5,1022.8,753.5,14,36.99 343 | 297.2,0.0,117.5,174.8,9.5,1022.8,753.5,28,47.40 344 | 297.2,0.0,117.5,174.8,9.5,1022.8,753.5,56,51.96 345 | 297.2,0.0,117.5,174.8,9.5,1022.8,753.5,100,56.74 346 | 213.7,0.0,174.7,154.8,10.2,1053.5,776.4,3,17.57 347 | 213.7,0.0,174.7,154.8,10.2,1053.5,776.4,14,33.73 348 | 213.7,0.0,174.7,154.8,10.2,1053.5,776.4,28,40.15 349 | 213.7,0.0,174.7,154.8,10.2,1053.5,776.4,56,46.64 350 | 213.7,0.0,174.7,154.8,10.2,1053.5,776.4,100,50.08 351 | 213.5,0.0,174.2,154.6,11.7,1052.3,775.5,3,17.37 352 | 213.5,0.0,174.2,154.6,11.7,1052.3,775.5,14,33.70 353 | 213.5,0.0,174.2,154.6,11.7,1052.3,775.5,28,45.94 354 | 213.5,0.0,174.2,154.6,11.7,1052.3,775.5,56,51.43 355 | 213.5,0.0,174.2,154.6,11.7,1052.3,775.5,100,59.30 356 | 277.2,97.8,24.5,160.7,11.2,1061.7,782.5,3,30.45 357 | 277.2,97.8,24.5,160.7,11.2,1061.7,782.5,14,47.71 358 | 277.2,97.8,24.5,160.7,11.2,1061.7,782.5,28,63.14 359 | 277.2,97.8,24.5,160.7,11.2,1061.7,782.5,56,66.82 360 | 277.2,97.8,24.5,160.7,11.2,1061.7,782.5,100,66.95 361 | 218.2,54.6,123.8,140.8,11.9,1075.7,792.7,3,27.42 362 | 218.2,54.6,123.8,140.8,11.9,1075.7,792.7,14,35.96 363 | 218.2,54.6,123.8,140.8,11.9,1075.7,792.7,28,55.51 364 | 218.2,54.6,123.8,140.8,11.9,1075.7,792.7,56,61.99 365 | 218.2,54.6,123.8,140.8,11.9,1075.7,792.7,100,63.53 366 | 214.9,53.8,121.9,155.6,9.6,1014.3,780.6,3,18.02 367 | 214.9,53.8,121.9,155.6,9.6,1014.3,780.6,14,38.60 368 | 214.9,53.8,121.9,155.6,9.6,1014.3,780.6,28,52.20 369 | 214.9,53.8,121.9,155.6,9.6,1014.3,780.6,56,53.96 370 | 214.9,53.8,121.9,155.6,9.6,1014.3,780.6,100,56.63 371 | 218.9,0.0,124.1,158.5,11.3,1078.7,794.9,3,15.34 372 | 218.9,0.0,124.1,158.5,11.3,1078.7,794.9,14,26.05 373 | 218.9,0.0,124.1,158.5,11.3,1078.7,794.9,28,30.22 374 | 218.9,0.0,124.1,158.5,11.3,1078.7,794.9,56,37.27 375 | 218.9,0.0,124.1,158.5,11.3,1078.7,794.9,100,46.23 376 | 376.0,0.0,0.0,214.6,0.0,1003.5,762.4,3,16.28 377 | 376.0,0.0,0.0,214.6,0.0,1003.5,762.4,14,25.62 378 | 376.0,0.0,0.0,214.6,0.0,1003.5,762.4,28,31.97 379 | 376.0,0.0,0.0,214.6,0.0,1003.5,762.4,56,36.30 380 | 376.0,0.0,0.0,214.6,0.0,1003.5,762.4,100,43.06 381 | 500.0,0.0,0.0,140.0,4.0,966.0,853.0,28,67.57 382 | 475.0,0.0,59.0,142.0,1.9,1098.0,641.0,28,57.23 383 | 315.0,137.0,0.0,145.0,5.9,1130.0,745.0,28,81.75 384 | 505.0,0.0,60.0,195.0,0.0,1030.0,630.0,28,64.02 385 | 451.0,0.0,0.0,165.0,11.3,1030.0,745.0,28,78.80 386 | 516.0,0.0,0.0,162.0,8.2,801.0,802.0,28,41.37 387 | 520.0,0.0,0.0,170.0,5.2,855.0,855.0,28,60.28 388 | 528.0,0.0,0.0,185.0,6.9,920.0,720.0,28,56.83 389 | 520.0,0.0,0.0,175.0,5.2,870.0,805.0,28,51.02 390 | 385.0,0.0,136.0,158.0,20.0,903.0,768.0,28,55.55 391 | 500.1,0.0,0.0,200.0,3.0,1124.4,613.2,28,44.13 392 | 450.1,50.0,0.0,200.0,3.0,1124.4,613.2,28,39.38 393 | 397.0,17.2,158.0,167.0,20.8,967.0,633.0,28,55.65 394 | 333.0,17.5,163.0,167.0,17.9,996.0,652.0,28,47.28 395 | 334.0,17.6,158.0,189.0,15.3,967.0,633.0,28,44.33 396 | 405.0,0.0,0.0,175.0,0.0,1120.0,695.0,28,52.30 397 | 200.0,200.0,0.0,190.0,0.0,1145.0,660.0,28,49.25 398 | 516.0,0.0,0.0,162.0,8.3,801.0,802.0,28,41.37 399 | 145.0,116.0,119.0,184.0,5.7,833.0,880.0,28,29.16 400 | 160.0,128.0,122.0,182.0,6.4,824.0,879.0,28,39.40 401 | 234.0,156.0,0.0,189.0,5.9,981.0,760.0,28,39.30 402 | 250.0,180.0,95.0,159.0,9.5,860.0,800.0,28,67.87 403 | 475.0,0.0,0.0,162.0,9.5,1044.0,662.0,28,58.52 404 | 285.0,190.0,0.0,163.0,7.6,1031.0,685.0,28,53.58 405 | 356.0,119.0,0.0,160.0,9.0,1061.0,657.0,28,59.00 406 | 275.0,180.0,120.0,162.0,10.4,830.0,765.0,28,76.24 407 | 500.0,0.0,0.0,151.0,9.0,1033.0,655.0,28,69.84 408 | 165.0,0.0,143.6,163.8,0.0,1005.6,900.9,3,14.40 409 | 165.0,128.5,132.1,175.1,8.1,1005.8,746.6,3,19.42 410 | 178.0,129.8,118.6,179.9,3.6,1007.3,746.8,3,20.73 411 | 167.4,129.9,128.6,175.5,7.8,1006.3,746.6,3,14.94 412 | 172.4,13.6,172.4,156.8,4.1,1006.3,856.4,3,21.29 413 | 173.5,50.1,173.5,164.8,6.5,1006.2,793.5,3,23.08 414 | 167.0,75.4,167.0,164.0,7.9,1007.3,770.1,3,15.52 415 | 173.8,93.4,159.9,172.3,9.7,1007.2,746.6,3,15.82 416 | 190.3,0.0,125.2,166.6,9.9,1079.0,798.9,3,12.55 417 | 250.0,0.0,95.7,191.8,5.3,948.9,857.2,3,8.49 418 | 213.5,0.0,174.2,159.2,11.7,1043.6,771.9,3,15.61 419 | 194.7,0.0,100.5,170.2,7.5,998.0,901.8,3,12.18 420 | 251.4,0.0,118.3,192.9,5.8,1043.6,754.3,3,11.98 421 | 165.0,0.0,143.6,163.8,0.0,1005.6,900.9,14,16.88 422 | 165.0,128.5,132.1,175.1,8.1,1005.8,746.6,14,33.09 423 | 178.0,129.8,118.6,179.9,3.6,1007.3,746.8,14,34.24 424 | 167.4,129.9,128.6,175.5,7.8,1006.3,746.6,14,31.81 425 | 172.4,13.6,172.4,156.8,4.1,1006.3,856.4,14,29.75 426 | 173.5,50.1,173.5,164.8,6.5,1006.2,793.5,14,33.01 427 | 167.0,75.4,167.0,164.0,7.9,1007.3,770.1,14,32.90 428 | 173.8,93.4,159.9,172.3,9.7,1007.2,746.6,14,29.55 429 | 190.3,0.0,125.2,166.6,9.9,1079.0,798.9,14,19.42 430 | 250.0,0.0,95.7,191.8,5.3,948.9,857.2,14,24.66 431 | 213.5,0.0,174.2,159.2,11.7,1043.6,771.9,14,29.59 432 | 194.7,0.0,100.5,170.2,7.5,998.0,901.8,14,24.28 433 | 251.4,0.0,118.3,192.9,5.8,1043.6,754.3,14,20.73 434 | 165.0,0.0,143.6,163.8,0.0,1005.6,900.9,28,26.20 435 | 165.0,128.5,132.1,175.1,8.1,1005.8,746.6,28,46.39 436 | 178.0,129.8,118.6,179.9,3.6,1007.3,746.8,28,39.16 437 | 167.4,129.9,128.6,175.5,7.8,1006.3,746.6,28,41.20 438 | 172.4,13.6,172.4,156.8,4.1,1006.3,856.4,28,33.69 439 | 173.5,50.1,173.5,164.8,6.5,1006.2,793.5,28,38.20 440 | 167.0,75.4,167.0,164.0,7.9,1007.3,770.1,28,41.41 441 | 173.8,93.4,159.9,172.3,9.7,1007.2,746.6,28,37.81 442 | 190.3,0.0,125.2,166.6,9.9,1079.0,798.9,28,24.85 443 | 250.0,0.0,95.7,191.8,5.3,948.9,857.2,28,27.22 444 | 213.5,0.0,174.2,159.2,11.7,1043.6,771.9,28,44.64 445 | 194.7,0.0,100.5,170.2,7.5,998.0,901.8,28,37.27 446 | 251.4,0.0,118.3,192.9,5.8,1043.6,754.3,28,33.27 447 | 165.0,0.0,143.6,163.8,0.0,1005.6,900.9,56,36.56 448 | 165.0,128.5,132.1,175.1,8.1,1005.8,746.6,56,53.72 449 | 178.0,129.8,118.6,179.9,3.6,1007.3,746.8,56,48.59 450 | 167.4,129.9,128.6,175.5,7.8,1006.3,746.6,56,51.72 451 | 172.4,13.6,172.4,156.8,4.1,1006.3,856.4,56,35.85 452 | 173.5,50.1,173.5,164.8,6.5,1006.2,793.5,56,53.77 453 | 167.0,75.4,167.0,164.0,7.9,1007.3,770.1,56,53.46 454 | 173.8,93.4,159.9,172.3,9.7,1007.2,746.6,56,48.99 455 | 190.3,0.0,125.2,166.6,9.9,1079.0,798.9,56,31.72 456 | 250.0,0.0,95.7,191.8,5.3,948.9,857.2,56,39.64 457 | 213.5,0.0,174.2,159.2,11.7,1043.6,771.9,56,51.26 458 | 194.7,0.0,100.5,170.2,7.5,998.0,901.8,56,43.39 459 | 251.4,0.0,118.3,192.9,5.8,1043.6,754.3,56,39.27 460 | 165.0,0.0,143.6,163.8,0.0,1005.6,900.9,100,37.96 461 | 165.0,128.5,132.1,175.1,8.1,1005.8,746.6,100,55.02 462 | 178.0,129.8,118.6,179.9,3.6,1007.3,746.8,100,49.99 463 | 167.4,129.9,128.6,175.5,7.8,1006.3,746.6,100,53.66 464 | 172.4,13.6,172.4,156.8,4.1,1006.3,856.4,100,37.68 465 | 173.5,50.1,173.5,164.8,6.5,1006.2,793.5,100,56.06 466 | 167.0,75.4,167.0,164.0,7.9,1007.3,770.1,100,56.81 467 | 173.8,93.4,159.9,172.3,9.7,1007.2,746.6,100,50.94 468 | 190.3,0.0,125.2,166.6,9.9,1079.0,798.9,100,33.56 469 | 250.0,0.0,95.7,191.8,5.3,948.9,857.2,100,41.16 470 | 213.5,0.0,174.2,159.2,11.7,1043.6,771.9,100,52.96 471 | 194.7,0.0,100.5,170.2,7.5,998.0,901.8,100,44.28 472 | 251.4,0.0,118.3,192.9,5.8,1043.6,754.3,100,40.15 473 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,28,57.03 474 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,28,44.42 475 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,28,51.02 476 | 446.0,24.0,79.0,162.0,10.3,967.0,712.0,28,53.39 477 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,3,35.36 478 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,3,25.02 479 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,3,23.35 480 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,7,52.01 481 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,7,38.02 482 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,7,39.30 483 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,56,61.07 484 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,56,56.14 485 | 446.0,24.0,79.0,162.0,11.6,967.0,712.0,56,55.25 486 | 446.0,24.0,79.0,162.0,10.3,967.0,712.0,56,54.77 487 | 387.0,20.0,94.0,157.0,14.3,938.0,845.0,28,50.24 488 | 387.0,20.0,94.0,157.0,13.9,938.0,845.0,28,46.68 489 | 387.0,20.0,94.0,157.0,11.6,938.0,845.0,28,46.68 490 | 387.0,20.0,94.0,157.0,14.3,938.0,845.0,3,22.75 491 | 387.0,20.0,94.0,157.0,13.9,938.0,845.0,3,25.51 492 | 387.0,20.0,94.0,157.0,11.6,938.0,845.0,3,34.77 493 | 387.0,20.0,94.0,157.0,14.3,938.0,845.0,7,36.84 494 | 387.0,20.0,94.0,157.0,13.9,938.0,845.0,7,45.90 495 | 387.0,20.0,94.0,157.0,11.6,938.0,845.0,7,41.67 496 | 387.0,20.0,94.0,157.0,14.3,938.0,845.0,56,56.34 497 | 387.0,20.0,94.0,157.0,13.9,938.0,845.0,56,47.97 498 | 387.0,20.0,94.0,157.0,11.6,938.0,845.0,56,61.46 499 | 355.0,19.0,97.0,145.0,13.1,967.0,871.0,28,44.03 500 | 355.0,19.0,97.0,145.0,12.3,967.0,871.0,28,55.45 501 | 491.0,26.0,123.0,210.0,3.9,882.0,699.0,28,55.55 502 | 491.0,26.0,123.0,201.0,3.9,822.0,699.0,28,57.92 503 | 491.0,26.0,123.0,210.0,3.9,882.0,699.0,3,25.61 504 | 491.0,26.0,123.0,210.0,3.9,882.0,699.0,7,33.49 505 | 491.0,26.0,123.0,210.0,3.9,882.0,699.0,56,59.59 506 | 491.0,26.0,123.0,201.0,3.9,822.0,699.0,3,29.55 507 | 491.0,26.0,123.0,201.0,3.9,822.0,699.0,7,37.92 508 | 491.0,26.0,123.0,201.0,3.9,822.0,699.0,56,61.86 509 | 424.0,22.0,132.0,178.0,8.5,822.0,750.0,28,62.05 510 | 424.0,22.0,132.0,178.0,8.5,882.0,750.0,3,32.01 511 | 424.0,22.0,132.0,168.0,8.9,822.0,750.0,28,72.10 512 | 424.0,22.0,132.0,178.0,8.5,822.0,750.0,7,39.00 513 | 424.0,22.0,132.0,178.0,8.5,822.0,750.0,56,65.70 514 | 424.0,22.0,132.0,168.0,8.9,822.0,750.0,3,32.11 515 | 424.0,22.0,132.0,168.0,8.9,822.0,750.0,7,40.29 516 | 424.0,22.0,132.0,168.0,8.9,822.0,750.0,56,74.36 517 | 202.0,11.0,141.0,206.0,1.7,942.0,801.0,28,21.97 518 | 202.0,11.0,141.0,206.0,1.7,942.0,801.0,3,9.85 519 | 202.0,11.0,141.0,206.0,1.7,942.0,801.0,7,15.07 520 | 202.0,11.0,141.0,206.0,1.7,942.0,801.0,56,23.25 521 | 284.0,15.0,141.0,179.0,5.5,842.0,801.0,28,43.73 522 | 284.0,15.0,141.0,179.0,5.5,842.0,801.0,3,13.40 523 | 284.0,15.0,141.0,179.0,5.5,842.0,801.0,7,24.13 524 | 284.0,15.0,141.0,179.0,5.5,842.0,801.0,56,44.52 525 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,28,62.94 526 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,28,59.49 527 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,3,25.12 528 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,3,23.64 529 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,7,35.75 530 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,7,38.61 531 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,56,68.75 532 | 359.0,19.0,141.0,154.0,10.9,942.0,801.0,56,66.78 533 | 436.0,0.0,0.0,218.0,0.0,838.4,719.7,28,23.85 534 | 289.0,0.0,0.0,192.0,0.0,913.2,895.3,90,32.07 535 | 289.0,0.0,0.0,192.0,0.0,913.2,895.3,3,11.65 536 | 393.0,0.0,0.0,192.0,0.0,940.6,785.6,3,19.20 537 | 393.0,0.0,0.0,192.0,0.0,940.6,785.6,90,48.85 538 | 393.0,0.0,0.0,192.0,0.0,940.6,785.6,28,39.60 539 | 480.0,0.0,0.0,192.0,0.0,936.2,712.2,28,43.94 540 | 480.0,0.0,0.0,192.0,0.0,936.2,712.2,7,34.57 541 | 480.0,0.0,0.0,192.0,0.0,936.2,712.2,90,54.32 542 | 480.0,0.0,0.0,192.0,0.0,936.2,712.2,3,24.40 543 | 333.0,0.0,0.0,192.0,0.0,931.2,842.6,3,15.62 544 | 255.0,0.0,0.0,192.0,0.0,889.8,945.0,90,21.86 545 | 255.0,0.0,0.0,192.0,0.0,889.8,945.0,7,10.22 546 | 289.0,0.0,0.0,192.0,0.0,913.2,895.3,7,14.60 547 | 255.0,0.0,0.0,192.0,0.0,889.8,945.0,28,18.75 548 | 333.0,0.0,0.0,192.0,0.0,931.2,842.6,28,31.97 549 | 333.0,0.0,0.0,192.0,0.0,931.2,842.6,7,23.40 550 | 289.0,0.0,0.0,192.0,0.0,913.2,895.3,28,25.57 551 | 333.0,0.0,0.0,192.0,0.0,931.2,842.6,90,41.68 552 | 393.0,0.0,0.0,192.0,0.0,940.6,785.6,7,27.74 553 | 255.0,0.0,0.0,192.0,0.0,889.8,945.0,3,8.20 554 | 158.8,238.2,0.0,185.7,0.0,1040.6,734.3,7,9.62 555 | 239.6,359.4,0.0,185.7,0.0,941.6,664.3,7,25.42 556 | 238.2,158.8,0.0,185.7,0.0,1040.6,734.3,7,15.69 557 | 181.9,272.8,0.0,185.7,0.0,1012.4,714.3,28,27.94 558 | 193.5,290.2,0.0,185.7,0.0,998.2,704.3,28,32.63 559 | 255.5,170.3,0.0,185.7,0.0,1026.6,724.3,7,17.24 560 | 272.8,181.9,0.0,185.7,0.0,1012.4,714.3,7,19.77 561 | 239.6,359.4,0.0,185.7,0.0,941.6,664.3,28,39.44 562 | 220.8,147.2,0.0,185.7,0.0,1055.0,744.3,28,25.75 563 | 397.0,0.0,0.0,185.7,0.0,1040.6,734.3,28,33.08 564 | 382.5,0.0,0.0,185.7,0.0,1047.8,739.3,7,24.07 565 | 210.7,316.1,0.0,185.7,0.0,977.0,689.3,7,21.82 566 | 158.8,238.2,0.0,185.7,0.0,1040.6,734.3,28,21.07 567 | 295.8,0.0,0.0,185.7,0.0,1091.4,769.3,7,14.84 568 | 255.5,170.3,0.0,185.7,0.0,1026.6,724.3,28,32.05 569 | 203.5,135.7,0.0,185.7,0.0,1076.2,759.3,7,11.96 570 | 397.0,0.0,0.0,185.7,0.0,1040.6,734.3,7,25.45 571 | 381.4,0.0,0.0,185.7,0.0,1104.6,784.3,28,22.49 572 | 295.8,0.0,0.0,185.7,0.0,1091.4,769.3,28,25.22 573 | 228.0,342.1,0.0,185.7,0.0,955.8,674.3,28,39.70 574 | 220.8,147.2,0.0,185.7,0.0,1055.0,744.3,7,13.09 575 | 316.1,210.7,0.0,185.7,0.0,977.0,689.3,28,38.70 576 | 135.7,203.5,0.0,185.7,0.0,1076.2,759.3,7,7.51 577 | 238.1,0.0,0.0,185.7,0.0,1118.8,789.3,28,17.58 578 | 339.2,0.0,0.0,185.7,0.0,1069.2,754.3,7,21.18 579 | 135.7,203.5,0.0,185.7,0.0,1076.2,759.3,28,18.20 580 | 193.5,290.2,0.0,185.7,0.0,998.2,704.3,7,17.20 581 | 203.5,135.7,0.0,185.7,0.0,1076.2,759.3,28,22.63 582 | 290.2,193.5,0.0,185.7,0.0,998.2,704.3,7,21.86 583 | 181.9,272.8,0.0,185.7,0.0,1012.4,714.3,7,12.37 584 | 170.3,155.5,0.0,185.7,0.0,1026.6,724.3,28,25.73 585 | 210.7,316.1,0.0,185.7,0.0,977.0,689.3,28,37.81 586 | 228.0,342.1,0.0,185.7,0.0,955.8,674.3,7,21.92 587 | 290.2,193.5,0.0,185.7,0.0,998.2,704.3,28,33.04 588 | 381.4,0.0,0.0,185.7,0.0,1104.6,784.3,7,14.54 589 | 238.2,158.8,0.0,185.7,0.0,1040.6,734.3,28,26.91 590 | 186.2,124.1,0.0,185.7,0.0,1083.4,764.3,7,8.00 591 | 339.2,0.0,0.0,185.7,0.0,1069.2,754.3,28,31.90 592 | 238.1,0.0,0.0,185.7,0.0,1118.8,789.3,7,10.34 593 | 252.5,0.0,0.0,185.7,0.0,1111.6,784.3,28,19.77 594 | 382.5,0.0,0.0,185.7,0.0,1047.8,739.3,28,37.44 595 | 252.5,0.0,0.0,185.7,0.0,1111.6,784.3,7,11.48 596 | 316.1,210.7,0.0,185.7,0.0,977.0,689.3,7,24.44 597 | 186.2,124.1,0.0,185.7,0.0,1083.4,764.3,28,17.60 598 | 170.3,155.5,0.0,185.7,0.0,1026.6,724.3,7,10.73 599 | 272.8,181.9,0.0,185.7,0.0,1012.4,714.3,28,31.38 600 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,3,13.22 601 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,7,20.97 602 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,14,27.04 603 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,28,32.04 604 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,90,35.17 605 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,180,36.45 606 | 339.0,0.0,0.0,197.0,0.0,968.0,781.0,365,38.89 607 | 236.0,0.0,0.0,194.0,0.0,968.0,885.0,3,6.47 608 | 236.0,0.0,0.0,194.0,0.0,968.0,885.0,14,12.84 609 | 236.0,0.0,0.0,194.0,0.0,968.0,885.0,28,18.42 610 | 236.0,0.0,0.0,194.0,0.0,968.0,885.0,90,21.95 611 | 236.0,0.0,0.0,193.0,0.0,968.0,885.0,180,24.10 612 | 236.0,0.0,0.0,193.0,0.0,968.0,885.0,365,25.08 613 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,14,21.26 614 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,28,25.97 615 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,3,11.36 616 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,90,31.25 617 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,180,32.33 618 | 277.0,0.0,0.0,191.0,0.0,968.0,856.0,360,33.70 619 | 254.0,0.0,0.0,198.0,0.0,968.0,863.0,3,9.31 620 | 254.0,0.0,0.0,198.0,0.0,968.0,863.0,90,26.94 621 | 254.0,0.0,0.0,198.0,0.0,968.0,863.0,180,27.63 622 | 254.0,0.0,0.0,198.0,0.0,968.0,863.0,365,29.79 623 | 307.0,0.0,0.0,193.0,0.0,968.0,812.0,180,34.49 624 | 307.0,0.0,0.0,193.0,0.0,968.0,812.0,365,36.15 625 | 307.0,0.0,0.0,193.0,0.0,968.0,812.0,3,12.54 626 | 307.0,0.0,0.0,193.0,0.0,968.0,812.0,28,27.53 627 | 307.0,0.0,0.0,193.0,0.0,968.0,812.0,90,32.92 628 | 236.0,0.0,0.0,193.0,0.0,968.0,885.0,7,9.99 629 | 200.0,0.0,0.0,180.0,0.0,1125.0,845.0,7,7.84 630 | 200.0,0.0,0.0,180.0,0.0,1125.0,845.0,28,12.25 631 | 225.0,0.0,0.0,181.0,0.0,1113.0,833.0,7,11.17 632 | 225.0,0.0,0.0,181.0,0.0,1113.0,833.0,28,17.34 633 | 325.0,0.0,0.0,184.0,0.0,1063.0,783.0,7,17.54 634 | 325.0,0.0,0.0,184.0,0.0,1063.0,783.0,28,30.57 635 | 275.0,0.0,0.0,183.0,0.0,1088.0,808.0,7,14.20 636 | 275.0,0.0,0.0,183.0,0.0,1088.0,808.0,28,24.50 637 | 300.0,0.0,0.0,184.0,0.0,1075.0,795.0,7,15.58 638 | 300.0,0.0,0.0,184.0,0.0,1075.0,795.0,28,26.85 639 | 375.0,0.0,0.0,186.0,0.0,1038.0,758.0,7,26.06 640 | 375.0,0.0,0.0,186.0,0.0,1038.0,758.0,28,38.21 641 | 400.0,0.0,0.0,187.0,0.0,1025.0,745.0,28,43.70 642 | 400.0,0.0,0.0,187.0,0.0,1025.0,745.0,7,30.14 643 | 250.0,0.0,0.0,182.0,0.0,1100.0,820.0,7,12.73 644 | 250.0,0.0,0.0,182.0,0.0,1100.0,820.0,28,20.87 645 | 350.0,0.0,0.0,186.0,0.0,1050.0,770.0,7,20.28 646 | 350.0,0.0,0.0,186.0,0.0,1050.0,770.0,28,34.29 647 | 203.5,305.3,0.0,203.5,0.0,963.4,630.0,7,19.54 648 | 250.2,166.8,0.0,203.5,0.0,977.6,694.1,90,47.71 649 | 157.0,236.0,0.0,192.0,0.0,935.4,781.2,90,43.38 650 | 141.3,212.0,0.0,203.5,0.0,971.8,748.5,28,29.89 651 | 166.8,250.2,0.0,203.5,0.0,975.6,692.6,3,6.90 652 | 122.6,183.9,0.0,203.5,0.0,958.2,800.1,90,33.19 653 | 183.9,122.6,0.0,203.5,0.0,959.2,800.0,3,4.90 654 | 102.0,153.0,0.0,192.0,0.0,887.0,942.0,3,4.57 655 | 102.0,153.0,0.0,192.0,0.0,887.0,942.0,90,25.46 656 | 122.6,183.9,0.0,203.5,0.0,958.2,800.1,28,24.29 657 | 166.8,250.2,0.0,203.5,0.0,975.6,692.6,28,33.95 658 | 200.0,133.0,0.0,192.0,0.0,965.4,806.2,3,11.41 659 | 108.3,162.4,0.0,203.5,0.0,938.2,849.0,28,20.59 660 | 305.3,203.5,0.0,203.5,0.0,965.4,631.0,7,25.89 661 | 108.3,162.4,0.0,203.5,0.0,938.2,849.0,90,29.23 662 | 116.0,173.0,0.0,192.0,0.0,909.8,891.9,90,31.02 663 | 141.3,212.0,0.0,203.5,0.0,971.8,748.5,7,10.39 664 | 157.0,236.0,0.0,192.0,0.0,935.4,781.2,28,33.66 665 | 133.0,200.0,0.0,192.0,0.0,927.4,839.2,28,27.87 666 | 250.2,166.8,0.0,203.5,0.0,977.6,694.1,7,19.35 667 | 173.0,116.0,0.0,192.0,0.0,946.8,856.8,7,11.39 668 | 192.0,288.0,0.0,192.0,0.0,929.8,716.1,3,12.79 669 | 192.0,288.0,0.0,192.0,0.0,929.8,716.1,28,39.32 670 | 153.0,102.0,0.0,192.0,0.0,888.0,943.1,3,4.78 671 | 288.0,192.0,0.0,192.0,0.0,932.0,717.8,3,16.11 672 | 305.3,203.5,0.0,203.5,0.0,965.4,631.0,28,43.38 673 | 236.0,157.0,0.0,192.0,0.0,972.6,749.1,7,20.42 674 | 173.0,116.0,0.0,192.0,0.0,946.8,856.8,3,6.94 675 | 212.0,141.3,0.0,203.5,0.0,973.4,750.0,7,15.03 676 | 236.0,157.0,0.0,192.0,0.0,972.6,749.1,3,13.57 677 | 183.9,122.6,0.0,203.5,0.0,959.2,800.0,90,32.53 678 | 166.8,250.2,0.0,203.5,0.0,975.6,692.6,7,15.75 679 | 102.0,153.0,0.0,192.0,0.0,887.0,942.0,7,7.68 680 | 288.0,192.0,0.0,192.0,0.0,932.0,717.8,28,38.80 681 | 212.0,141.3,0.0,203.5,0.0,973.4,750.0,28,33.00 682 | 102.0,153.0,0.0,192.0,0.0,887.0,942.0,28,17.28 683 | 173.0,116.0,0.0,192.0,0.0,946.8,856.8,28,24.28 684 | 183.9,122.6,0.0,203.5,0.0,959.2,800.0,28,24.05 685 | 133.0,200.0,0.0,192.0,0.0,927.4,839.2,90,36.59 686 | 192.0,288.0,0.0,192.0,0.0,929.8,716.1,90,50.73 687 | 133.0,200.0,0.0,192.0,0.0,927.4,839.2,7,13.66 688 | 305.3,203.5,0.0,203.5,0.0,965.4,631.0,3,14.14 689 | 236.0,157.0,0.0,192.0,0.0,972.6,749.1,90,47.78 690 | 108.3,162.4,0.0,203.5,0.0,938.2,849.0,3,2.33 691 | 157.0,236.0,0.0,192.0,0.0,935.4,781.2,7,16.89 692 | 288.0,192.0,0.0,192.0,0.0,932.0,717.8,7,23.52 693 | 212.0,141.3,0.0,203.5,0.0,973.4,750.0,3,6.81 694 | 212.0,141.3,0.0,203.5,0.0,973.4,750.0,90,39.70 695 | 153.0,102.0,0.0,192.0,0.0,888.0,943.1,28,17.96 696 | 236.0,157.0,0.0,192.0,0.0,972.6,749.1,28,32.88 697 | 116.0,173.0,0.0,192.0,0.0,909.8,891.9,28,22.35 698 | 183.9,122.6,0.0,203.5,0.0,959.2,800.0,7,10.79 699 | 108.3,162.4,0.0,203.5,0.0,938.2,849.0,7,7.72 700 | 203.5,305.3,0.0,203.5,0.0,963.4,630.0,28,41.68 701 | 203.5,305.3,0.0,203.5,0.0,963.4,630.0,3,9.56 702 | 133.0,200.0,0.0,192.0,0.0,927.4,839.2,3,6.88 703 | 288.0,192.0,0.0,192.0,0.0,932.0,717.8,90,50.53 704 | 200.0,133.0,0.0,192.0,0.0,965.4,806.2,7,17.17 705 | 200.0,133.0,0.0,192.0,0.0,965.4,806.2,28,30.44 706 | 250.2,166.8,0.0,203.5,0.0,977.6,694.1,3,9.73 707 | 122.6,183.9,0.0,203.5,0.0,958.2,800.1,3,3.32 708 | 153.0,102.0,0.0,192.0,0.0,888.0,943.1,90,26.32 709 | 200.0,133.0,0.0,192.0,0.0,965.4,806.2,90,43.25 710 | 116.0,173.0,0.0,192.0,0.0,909.8,891.9,3,6.28 711 | 173.0,116.0,0.0,192.0,0.0,946.8,856.8,90,32.10 712 | 250.2,166.8,0.0,203.5,0.0,977.6,694.1,28,36.96 713 | 305.3,203.5,0.0,203.5,0.0,965.4,631.0,90,54.60 714 | 192.0,288.0,0.0,192.0,0.0,929.8,716.1,7,21.48 715 | 157.0,236.0,0.0,192.0,0.0,935.4,781.2,3,9.69 716 | 153.0,102.0,0.0,192.0,0.0,888.0,943.1,7,8.37 717 | 141.3,212.0,0.0,203.5,0.0,971.8,748.5,90,39.66 718 | 116.0,173.0,0.0,192.0,0.0,909.8,891.9,7,10.09 719 | 141.3,212.0,0.0,203.5,0.0,971.8,748.5,3,4.83 720 | 122.6,183.9,0.0,203.5,0.0,958.2,800.1,7,10.35 721 | 166.8,250.2,0.0,203.5,0.0,975.6,692.6,90,43.57 722 | 203.5,305.3,0.0,203.5,0.0,963.4,630.0,90,51.86 723 | 310.0,0.0,0.0,192.0,0.0,1012.0,830.0,3,11.85 724 | 310.0,0.0,0.0,192.0,0.0,1012.0,830.0,7,17.24 725 | 310.0,0.0,0.0,192.0,0.0,1012.0,830.0,28,27.83 726 | 310.0,0.0,0.0,192.0,0.0,1012.0,830.0,90,35.76 727 | 310.0,0.0,0.0,192.0,0.0,1012.0,830.0,120,38.70 728 | 331.0,0.0,0.0,192.0,0.0,1025.0,821.0,3,14.31 729 | 331.0,0.0,0.0,192.0,0.0,1025.0,821.0,7,17.44 730 | 331.0,0.0,0.0,192.0,0.0,1025.0,821.0,28,31.74 731 | 331.0,0.0,0.0,192.0,0.0,1025.0,821.0,90,37.91 732 | 331.0,0.0,0.0,192.0,0.0,1025.0,821.0,120,39.38 733 | 349.0,0.0,0.0,192.0,0.0,1056.0,809.0,3,15.87 734 | 349.0,0.0,0.0,192.0,0.0,1056.0,809.0,7,9.01 735 | 349.0,0.0,0.0,192.0,0.0,1056.0,809.0,28,33.61 736 | 349.0,0.0,0.0,192.0,0.0,1056.0,809.0,90,40.66 737 | 349.0,0.0,0.0,192.0,0.0,1056.0,809.0,120,40.86 738 | 238.0,0.0,0.0,186.0,0.0,1119.0,789.0,7,12.05 739 | 238.0,0.0,0.0,186.0,0.0,1119.0,789.0,28,17.54 740 | 296.0,0.0,0.0,186.0,0.0,1090.0,769.0,7,18.91 741 | 296.0,0.0,0.0,186.0,0.0,1090.0,769.0,28,25.18 742 | 297.0,0.0,0.0,186.0,0.0,1040.0,734.0,7,30.96 743 | 480.0,0.0,0.0,192.0,0.0,936.0,721.0,28,43.89 744 | 480.0,0.0,0.0,192.0,0.0,936.0,721.0,90,54.28 745 | 397.0,0.0,0.0,186.0,0.0,1040.0,734.0,28,36.94 746 | 281.0,0.0,0.0,186.0,0.0,1104.0,774.0,7,14.50 747 | 281.0,0.0,0.0,185.0,0.0,1104.0,774.0,28,22.44 748 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,1,12.64 749 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,3,26.06 750 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,7,33.21 751 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,14,36.94 752 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,28,44.09 753 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,7,52.61 754 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,14,59.76 755 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,28,67.31 756 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,90,69.66 757 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,180,71.62 758 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,270,74.17 759 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,7,18.13 760 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,14,22.53 761 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,28,27.34 762 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,56,29.98 763 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,90,31.35 764 | 350.0,0.0,0.0,203.0,0.0,974.0,775.0,180,32.72 765 | 385.0,0.0,0.0,186.0,0.0,966.0,763.0,1,6.27 766 | 385.0,0.0,0.0,186.0,0.0,966.0,763.0,3,14.70 767 | 385.0,0.0,0.0,186.0,0.0,966.0,763.0,7,23.22 768 | 385.0,0.0,0.0,186.0,0.0,966.0,763.0,14,27.92 769 | 385.0,0.0,0.0,186.0,0.0,966.0,763.0,28,31.35 770 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,180,39.00 771 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,360,41.24 772 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,3,14.99 773 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,3,13.52 774 | 382.0,0.0,0.0,186.0,0.0,1047.0,739.0,7,24.00 775 | 382.0,0.0,0.0,186.0,0.0,1047.0,739.0,28,37.42 776 | 382.0,0.0,0.0,186.0,0.0,1111.0,784.0,7,11.47 777 | 281.0,0.0,0.0,186.0,0.0,1104.0,774.0,28,22.44 778 | 339.0,0.0,0.0,185.0,0.0,1069.0,754.0,7,21.16 779 | 339.0,0.0,0.0,185.0,0.0,1069.0,754.0,28,31.84 780 | 295.0,0.0,0.0,185.0,0.0,1069.0,769.0,7,14.80 781 | 295.0,0.0,0.0,185.0,0.0,1069.0,769.0,28,25.18 782 | 238.0,0.0,0.0,185.0,0.0,1118.0,789.0,28,17.54 783 | 296.0,0.0,0.0,192.0,0.0,1085.0,765.0,7,14.20 784 | 296.0,0.0,0.0,192.0,0.0,1085.0,765.0,28,21.65 785 | 296.0,0.0,0.0,192.0,0.0,1085.0,765.0,90,29.39 786 | 331.0,0.0,0.0,192.0,0.0,879.0,825.0,3,13.52 787 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,7,16.26 788 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,28,31.45 789 | 331.0,0.0,0.0,192.0,0.0,978.0,825.0,90,37.23 790 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,7,18.13 791 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,28,32.72 792 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,90,39.49 793 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,180,41.05 794 | 349.0,0.0,0.0,192.0,0.0,1047.0,806.0,360,42.13 795 | 302.0,0.0,0.0,203.0,0.0,974.0,817.0,14,18.13 796 | 302.0,0.0,0.0,203.0,0.0,974.0,817.0,180,26.74 797 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,180,61.92 798 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,90,47.22 799 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,180,51.04 800 | 500.0,0.0,0.0,200.0,0.0,1125.0,613.0,270,55.16 801 | 540.0,0.0,0.0,173.0,0.0,1125.0,613.0,3,41.64 802 | 252.0,0.0,0.0,185.0,0.0,1111.0,784.0,7,13.71 803 | 252.0,0.0,0.0,185.0,0.0,1111.0,784.0,28,19.69 804 | 339.0,0.0,0.0,185.0,0.0,1060.0,754.0,28,31.65 805 | 393.0,0.0,0.0,192.0,0.0,940.0,758.0,3,19.11 806 | 393.0,0.0,0.0,192.0,0.0,940.0,758.0,28,39.58 807 | 393.0,0.0,0.0,192.0,0.0,940.0,758.0,90,48.79 808 | 382.0,0.0,0.0,185.0,0.0,1047.0,739.0,7,24.00 809 | 382.0,0.0,0.0,185.0,0.0,1047.0,739.0,28,37.42 810 | 252.0,0.0,0.0,186.0,0.0,1111.0,784.0,7,11.47 811 | 252.0,0.0,0.0,185.0,0.0,1111.0,784.0,28,19.69 812 | 310.0,0.0,0.0,192.0,0.0,970.0,850.0,7,14.99 813 | 310.0,0.0,0.0,192.0,0.0,970.0,850.0,28,27.92 814 | 310.0,0.0,0.0,192.0,0.0,970.0,850.0,90,34.68 815 | 310.0,0.0,0.0,192.0,0.0,970.0,850.0,180,37.33 816 | 310.0,0.0,0.0,192.0,0.0,970.0,850.0,360,38.11 817 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,3,33.80 818 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,7,42.42 819 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,14,48.40 820 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,28,55.94 821 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,90,58.78 822 | 525.0,0.0,0.0,189.0,0.0,1125.0,613.0,270,67.11 823 | 322.0,0.0,0.0,203.0,0.0,974.0,800.0,14,20.77 824 | 322.0,0.0,0.0,203.0,0.0,974.0,800.0,28,25.18 825 | 322.0,0.0,0.0,203.0,0.0,974.0,800.0,180,29.59 826 | 302.0,0.0,0.0,203.0,0.0,974.0,817.0,28,21.75 827 | 397.0,0.0,0.0,185.0,0.0,1040.0,734.0,28,39.09 828 | 480.0,0.0,0.0,192.0,0.0,936.0,721.0,3,24.39 829 | 522.0,0.0,0.0,146.0,0.0,896.0,896.0,7,50.51 830 | 522.0,0.0,0.0,146.0,0.0,896.0,896.0,28,74.99 831 | 273.0,105.0,82.0,210.0,9.0,904.0,680.0,28,37.17 832 | 162.0,190.0,148.0,179.0,19.0,838.0,741.0,28,33.76 833 | 154.0,144.0,112.0,220.0,10.0,923.0,658.0,28,16.50 834 | 147.0,115.0,89.0,202.0,9.0,860.0,829.0,28,19.99 835 | 152.0,178.0,139.0,168.0,18.0,944.0,695.0,28,36.35 836 | 310.0,143.0,111.0,168.0,22.0,914.0,651.0,28,33.69 837 | 144.0,0.0,175.0,158.0,18.0,943.0,844.0,28,15.42 838 | 304.0,140.0,0.0,214.0,6.0,895.0,722.0,28,33.42 839 | 374.0,0.0,0.0,190.0,7.0,1013.0,730.0,28,39.05 840 | 159.0,149.0,116.0,175.0,15.0,953.0,720.0,28,27.68 841 | 153.0,239.0,0.0,200.0,6.0,1002.0,684.0,28,26.86 842 | 310.0,143.0,0.0,168.0,10.0,914.0,804.0,28,45.30 843 | 305.0,0.0,100.0,196.0,10.0,959.0,705.0,28,30.12 844 | 151.0,0.0,184.0,167.0,12.0,991.0,772.0,28,15.57 845 | 142.0,167.0,130.0,174.0,11.0,883.0,785.0,28,44.61 846 | 298.0,137.0,107.0,201.0,6.0,878.0,655.0,28,53.52 847 | 321.0,164.0,0.0,190.0,5.0,870.0,774.0,28,57.21 848 | 366.0,187.0,0.0,191.0,7.0,824.0,757.0,28,65.91 849 | 280.0,129.0,100.0,172.0,9.0,825.0,805.0,28,52.82 850 | 252.0,97.0,76.0,194.0,8.0,835.0,821.0,28,33.40 851 | 165.0,0.0,150.0,182.0,12.0,1023.0,729.0,28,18.03 852 | 156.0,243.0,0.0,180.0,11.0,1022.0,698.0,28,37.36 853 | 160.0,188.0,146.0,203.0,11.0,829.0,710.0,28,32.84 854 | 298.0,0.0,107.0,186.0,6.0,879.0,815.0,28,42.64 855 | 318.0,0.0,126.0,210.0,6.0,861.0,737.0,28,40.06 856 | 287.0,121.0,94.0,188.0,9.0,904.0,696.0,28,41.94 857 | 326.0,166.0,0.0,174.0,9.0,882.0,790.0,28,61.23 858 | 356.0,0.0,142.0,193.0,11.0,801.0,778.0,28,40.87 859 | 132.0,207.0,161.0,179.0,5.0,867.0,736.0,28,33.30 860 | 322.0,149.0,0.0,186.0,8.0,951.0,709.0,28,52.42 861 | 164.0,0.0,200.0,181.0,13.0,849.0,846.0,28,15.09 862 | 314.0,0.0,113.0,170.0,10.0,925.0,783.0,28,38.46 863 | 321.0,0.0,128.0,182.0,11.0,870.0,780.0,28,37.26 864 | 140.0,164.0,128.0,237.0,6.0,869.0,656.0,28,35.23 865 | 288.0,121.0,0.0,177.0,7.0,908.0,829.0,28,42.13 866 | 298.0,0.0,107.0,210.0,11.0,880.0,744.0,28,31.87 867 | 265.0,111.0,86.0,195.0,6.0,833.0,790.0,28,41.54 868 | 160.0,250.0,0.0,168.0,12.0,1049.0,688.0,28,39.45 869 | 166.0,260.0,0.0,183.0,13.0,859.0,827.0,28,37.91 870 | 276.0,116.0,90.0,180.0,9.0,870.0,768.0,28,44.28 871 | 322.0,0.0,116.0,196.0,10.0,818.0,813.0,28,31.18 872 | 149.0,139.0,109.0,193.0,6.0,892.0,780.0,28,23.69 873 | 159.0,187.0,0.0,176.0,11.0,990.0,789.0,28,32.76 874 | 261.0,100.0,78.0,201.0,9.0,864.0,761.0,28,32.40 875 | 237.0,92.0,71.0,247.0,6.0,853.0,695.0,28,28.63 876 | 313.0,0.0,113.0,178.0,8.0,1002.0,689.0,28,36.80 877 | 155.0,183.0,0.0,193.0,9.0,1047.0,697.0,28,18.28 878 | 146.0,230.0,0.0,202.0,3.0,827.0,872.0,28,33.06 879 | 296.0,0.0,107.0,221.0,11.0,819.0,778.0,28,31.42 880 | 133.0,210.0,0.0,196.0,3.0,949.0,795.0,28,31.03 881 | 313.0,145.0,0.0,178.0,8.0,867.0,824.0,28,44.39 882 | 152.0,0.0,112.0,184.0,8.0,992.0,816.0,28,12.18 883 | 153.0,145.0,113.0,178.0,8.0,1002.0,689.0,28,25.56 884 | 140.0,133.0,103.0,200.0,7.0,916.0,753.0,28,36.44 885 | 149.0,236.0,0.0,176.0,13.0,847.0,893.0,28,32.96 886 | 300.0,0.0,120.0,212.0,10.0,878.0,728.0,28,23.84 887 | 153.0,145.0,113.0,178.0,8.0,867.0,824.0,28,26.23 888 | 148.0,0.0,137.0,158.0,16.0,1002.0,830.0,28,17.95 889 | 326.0,0.0,138.0,199.0,11.0,801.0,792.0,28,40.68 890 | 153.0,145.0,0.0,178.0,8.0,1000.0,822.0,28,19.01 891 | 262.0,111.0,86.0,195.0,5.0,895.0,733.0,28,33.72 892 | 158.0,0.0,195.0,220.0,11.0,898.0,713.0,28,8.54 893 | 151.0,0.0,185.0,167.0,16.0,1074.0,678.0,28,13.46 894 | 273.0,0.0,90.0,199.0,11.0,931.0,762.0,28,32.24 895 | 149.0,118.0,92.0,183.0,7.0,953.0,780.0,28,23.52 896 | 143.0,169.0,143.0,191.0,8.0,967.0,643.0,28,29.72 897 | 260.0,101.0,78.0,171.0,10.0,936.0,763.0,28,49.77 898 | 313.0,161.0,0.0,178.0,10.0,917.0,759.0,28,52.44 899 | 284.0,120.0,0.0,168.0,7.0,970.0,794.0,28,40.93 900 | 336.0,0.0,0.0,182.0,3.0,986.0,817.0,28,44.86 901 | 145.0,0.0,134.0,181.0,11.0,979.0,812.0,28,13.20 902 | 150.0,237.0,0.0,174.0,12.0,1069.0,675.0,28,37.43 903 | 144.0,170.0,133.0,192.0,8.0,814.0,805.0,28,29.87 904 | 331.0,170.0,0.0,195.0,8.0,811.0,802.0,28,56.61 905 | 155.0,0.0,143.0,193.0,9.0,1047.0,697.0,28,12.46 906 | 155.0,183.0,0.0,193.0,9.0,877.0,868.0,28,23.79 907 | 135.0,0.0,166.0,180.0,10.0,961.0,805.0,28,13.29 908 | 266.0,112.0,87.0,178.0,10.0,910.0,745.0,28,39.42 909 | 314.0,145.0,113.0,179.0,8.0,869.0,690.0,28,46.23 910 | 313.0,145.0,0.0,127.0,8.0,1000.0,822.0,28,44.52 911 | 146.0,173.0,0.0,182.0,3.0,986.0,817.0,28,23.74 912 | 144.0,136.0,106.0,178.0,7.0,941.0,774.0,28,26.14 913 | 148.0,0.0,182.0,181.0,15.0,839.0,884.0,28,15.52 914 | 277.0,117.0,91.0,191.0,7.0,946.0,666.0,28,43.57 915 | 298.0,0.0,107.0,164.0,13.0,953.0,784.0,28,35.86 916 | 313.0,145.0,0.0,178.0,8.0,1002.0,689.0,28,41.05 917 | 155.0,184.0,143.0,194.0,9.0,880.0,699.0,28,28.99 918 | 289.0,134.0,0.0,195.0,6.0,924.0,760.0,28,46.24 919 | 148.0,175.0,0.0,171.0,2.0,1000.0,828.0,28,26.92 920 | 145.0,0.0,179.0,202.0,8.0,824.0,869.0,28,10.54 921 | 313.0,0.0,0.0,178.0,8.0,1000.0,822.0,28,25.10 922 | 136.0,162.0,126.0,172.0,10.0,923.0,764.0,28,29.07 923 | 155.0,0.0,143.0,193.0,9.0,877.0,868.0,28,9.74 924 | 255.0,99.0,77.0,189.0,6.0,919.0,749.0,28,33.80 925 | 162.0,207.0,172.0,216.0,10.0,822.0,638.0,28,39.84 926 | 136.0,196.0,98.0,199.0,6.0,847.0,783.0,28,26.97 927 | 164.0,163.0,128.0,197.0,8.0,961.0,641.0,28,27.23 928 | 162.0,214.0,164.0,202.0,10.0,820.0,680.0,28,30.65 929 | 157.0,214.0,152.0,200.0,9.0,819.0,704.0,28,33.05 930 | 149.0,153.0,194.0,192.0,8.0,935.0,623.0,28,24.58 931 | 135.0,105.0,193.0,196.0,6.0,965.0,643.0,28,21.91 932 | 159.0,209.0,161.0,201.0,7.0,848.0,669.0,28,30.88 933 | 144.0,15.0,195.0,176.0,6.0,1021.0,709.0,28,15.34 934 | 154.0,174.0,185.0,228.0,7.0,845.0,612.0,28,24.34 935 | 167.0,187.0,195.0,185.0,7.0,898.0,636.0,28,23.89 936 | 184.0,86.0,190.0,213.0,6.0,923.0,623.0,28,22.93 937 | 156.0,178.0,187.0,221.0,7.0,854.0,614.0,28,29.41 938 | 236.9,91.7,71.5,246.9,6.0,852.9,695.4,28,28.63 939 | 313.3,0.0,113.0,178.5,8.0,1001.9,688.7,28,36.80 940 | 154.8,183.4,0.0,193.3,9.1,1047.4,696.7,28,18.29 941 | 145.9,230.5,0.0,202.5,3.4,827.0,871.8,28,32.72 942 | 296.0,0.0,106.7,221.4,10.5,819.2,778.4,28,31.42 943 | 133.1,210.2,0.0,195.7,3.1,949.4,795.3,28,28.94 944 | 313.3,145.0,0.0,178.5,8.0,867.2,824.0,28,40.93 945 | 151.6,0.0,111.9,184.4,7.9,992.0,815.9,28,12.18 946 | 153.1,145.0,113.0,178.5,8.0,1001.9,688.7,28,25.56 947 | 139.9,132.6,103.3,200.3,7.4,916.0,753.4,28,36.44 948 | 149.5,236.0,0.0,175.8,12.6,846.8,892.7,28,32.96 949 | 299.8,0.0,119.8,211.5,9.9,878.2,727.6,28,23.84 950 | 153.1,145.0,113.0,178.5,8.0,867.2,824.0,28,26.23 951 | 148.1,0.0,136.6,158.1,16.1,1001.8,830.1,28,17.96 952 | 326.5,0.0,137.9,199.0,10.8,801.1,792.5,28,38.63 953 | 152.7,144.7,0.0,178.1,8.0,999.7,822.2,28,19.01 954 | 261.9,110.5,86.1,195.4,5.0,895.2,732.6,28,33.72 955 | 158.4,0.0,194.9,219.7,11.0,897.7,712.9,28,8.54 956 | 150.7,0.0,185.3,166.7,15.6,1074.5,678.0,28,13.46 957 | 272.6,0.0,89.6,198.7,10.6,931.3,762.2,28,32.25 958 | 149.0,117.6,91.7,182.9,7.1,953.4,780.3,28,23.52 959 | 143.0,169.4,142.7,190.7,8.4,967.4,643.5,28,29.73 960 | 259.9,100.6,78.4,170.6,10.4,935.7,762.9,28,49.77 961 | 312.9,160.5,0.0,177.6,9.6,916.6,759.5,28,52.45 962 | 284.0,119.7,0.0,168.3,7.2,970.4,794.2,28,40.93 963 | 336.5,0.0,0.0,181.9,3.4,985.8,816.8,28,44.87 964 | 144.8,0.0,133.6,180.8,11.1,979.5,811.5,28,13.20 965 | 150.0,236.8,0.0,173.8,11.9,1069.3,674.8,28,37.43 966 | 143.7,170.2,132.6,191.6,8.5,814.1,805.3,28,29.87 967 | 330.5,169.6,0.0,194.9,8.1,811.0,802.3,28,56.62 968 | 154.8,0.0,142.8,193.3,9.1,1047.4,696.7,28,12.46 969 | 154.8,183.4,0.0,193.3,9.1,877.2,867.7,28,23.79 970 | 134.7,0.0,165.7,180.2,10.0,961.0,804.9,28,13.29 971 | 266.2,112.3,87.5,177.9,10.4,909.7,744.5,28,39.42 972 | 314.0,145.3,113.2,178.9,8.0,869.1,690.2,28,46.23 973 | 312.7,144.7,0.0,127.3,8.0,999.7,822.2,28,44.52 974 | 145.7,172.6,0.0,181.9,3.4,985.8,816.8,28,23.74 975 | 143.8,136.3,106.2,178.1,7.5,941.5,774.3,28,26.15 976 | 148.1,0.0,182.1,181.4,15.0,838.9,884.3,28,15.53 977 | 277.0,116.8,91.0,190.6,7.0,946.5,665.6,28,43.58 978 | 298.1,0.0,107.5,163.6,12.8,953.2,784.0,28,35.87 979 | 313.3,145.0,0.0,178.5,8.0,1001.9,688.7,28,41.05 980 | 155.2,183.9,143.2,193.8,9.2,879.6,698.5,28,28.99 981 | 289.0,133.7,0.0,194.9,5.5,924.1,760.1,28,46.25 982 | 147.8,175.1,0.0,171.2,2.2,1000.0,828.5,28,26.92 983 | 145.4,0.0,178.9,201.7,7.8,824.0,868.7,28,10.54 984 | 312.7,0.0,0.0,178.1,8.0,999.7,822.2,28,25.10 985 | 136.4,161.6,125.8,171.6,10.4,922.6,764.4,28,29.07 986 | 154.8,0.0,142.8,193.3,9.1,877.2,867.7,28,9.74 987 | 255.3,98.8,77.0,188.6,6.5,919.0,749.3,28,33.80 988 | 272.8,105.1,81.8,209.7,9.0,904.0,679.7,28,37.17 989 | 162.0,190.1,148.1,178.8,18.8,838.1,741.4,28,33.76 990 | 153.6,144.2,112.3,220.1,10.1,923.2,657.9,28,16.50 991 | 146.5,114.6,89.3,201.9,8.8,860.0,829.5,28,19.99 992 | 151.8,178.1,138.7,167.5,18.3,944.0,694.6,28,36.35 993 | 309.9,142.8,111.2,167.8,22.1,913.9,651.2,28,38.22 994 | 143.6,0.0,174.9,158.4,17.9,942.7,844.5,28,15.42 995 | 303.6,139.9,0.0,213.5,6.2,895.5,722.5,28,33.42 996 | 374.3,0.0,0.0,190.2,6.7,1013.2,730.4,28,39.06 997 | 158.6,148.9,116.0,175.1,15.0,953.3,719.7,28,27.68 998 | 152.6,238.7,0.0,200.0,6.3,1001.8,683.9,28,26.86 999 | 310.0,142.8,0.0,167.9,10.0,914.3,804.0,28,45.30 1000 | 304.8,0.0,99.6,196.0,9.8,959.4,705.2,28,30.12 1001 | 150.9,0.0,183.9,166.6,11.6,991.2,772.2,28,15.57 1002 | 141.9,166.6,129.7,173.5,10.9,882.6,785.3,28,44.61 1003 | 297.8,137.2,106.9,201.3,6.0,878.4,655.3,28,53.52 1004 | 321.3,164.2,0.0,190.5,4.6,870.0,774.0,28,57.22 1005 | 366.0,187.0,0.0,191.3,6.6,824.3,756.9,28,65.91 1006 | 279.8,128.9,100.4,172.4,9.5,825.1,804.9,28,52.83 1007 | 252.1,97.1,75.6,193.8,8.3,835.5,821.4,28,33.40 1008 | 164.6,0.0,150.4,181.6,11.7,1023.3,728.9,28,18.03 1009 | 155.6,243.5,0.0,180.3,10.7,1022.0,697.7,28,37.36 1010 | 160.2,188.0,146.4,203.2,11.3,828.7,709.7,28,35.31 1011 | 298.1,0.0,107.0,186.4,6.1,879.0,815.2,28,42.64 1012 | 317.9,0.0,126.5,209.7,5.7,860.5,736.6,28,40.06 1013 | 287.3,120.5,93.9,187.6,9.2,904.4,695.9,28,43.80 1014 | 325.6,166.4,0.0,174.0,8.9,881.6,790.0,28,61.24 1015 | 355.9,0.0,141.6,193.3,11.0,801.4,778.4,28,40.87 1016 | 132.0,206.5,160.9,178.9,5.5,866.9,735.6,28,33.31 1017 | 322.5,148.6,0.0,185.8,8.5,951.0,709.5,28,52.43 1018 | 164.2,0.0,200.1,181.2,12.6,849.3,846.0,28,15.09 1019 | 313.8,0.0,112.6,169.9,10.1,925.3,782.9,28,38.46 1020 | 321.4,0.0,127.9,182.5,11.5,870.1,779.7,28,37.27 1021 | 139.7,163.9,127.7,236.7,5.8,868.6,655.6,28,35.23 1022 | 288.4,121.0,0.0,177.4,7.0,907.9,829.5,28,42.14 1023 | 298.2,0.0,107.0,209.7,11.1,879.6,744.2,28,31.88 1024 | 264.5,111.0,86.5,195.5,5.9,832.6,790.4,28,41.54 1025 | 159.8,250.0,0.0,168.4,12.2,1049.3,688.2,28,39.46 1026 | 166.0,259.7,0.0,183.2,12.7,858.8,826.8,28,37.92 1027 | 276.4,116.0,90.3,179.6,8.9,870.1,768.3,28,44.28 1028 | 322.2,0.0,115.6,196.0,10.4,817.9,813.4,28,31.18 1029 | 148.5,139.4,108.6,192.7,6.1,892.4,780.0,28,23.70 1030 | 159.1,186.7,0.0,175.6,11.3,989.6,788.9,28,32.77 1031 | 260.9,100.5,78.3,200.6,8.6,864.5,761.5,28,32.40 1032 | -------------------------------------------------------------------------------- /insurance.csv: -------------------------------------------------------------------------------- 1 | age,sex,bmi,children,smoker,region,charges 2 | 19,female,27.9,0,yes,southwest,16884.924 3 | 18,male,33.77,1,no,southeast,1725.5523 4 | 28,male,33,3,no,southeast,4449.462 5 | 33,male,22.705,0,no,northwest,21984.47061 6 | 32,male,28.88,0,no,northwest,3866.8552 7 | 31,female,25.74,0,no,southeast,3756.6216 8 | 46,female,33.44,1,no,southeast,8240.5896 9 | 37,female,27.74,3,no,northwest,7281.5056 10 | 37,male,29.83,2,no,northeast,6406.4107 11 | 60,female,25.84,0,no,northwest,28923.13692 12 | 25,male,26.22,0,no,northeast,2721.3208 13 | 62,female,26.29,0,yes,southeast,27808.7251 14 | 23,male,34.4,0,no,southwest,1826.843 15 | 56,female,39.82,0,no,southeast,11090.7178 16 | 27,male,42.13,0,yes,southeast,39611.7577 17 | 19,male,24.6,1,no,southwest,1837.237 18 | 52,female,30.78,1,no,northeast,10797.3362 19 | 23,male,23.845,0,no,northeast,2395.17155 20 | 56,male,40.3,0,no,southwest,10602.385 21 | 30,male,35.3,0,yes,southwest,36837.467 22 | 60,female,36.005,0,no,northeast,13228.84695 23 | 30,female,32.4,1,no,southwest,4149.736 24 | 18,male,34.1,0,no,southeast,1137.011 25 | 34,female,31.92,1,yes,northeast,37701.8768 26 | 37,male,28.025,2,no,northwest,6203.90175 27 | 59,female,27.72,3,no,southeast,14001.1338 28 | 63,female,23.085,0,no,northeast,14451.83515 29 | 55,female,32.775,2,no,northwest,12268.63225 30 | 23,male,17.385,1,no,northwest,2775.19215 31 | 31,male,36.3,2,yes,southwest,38711 32 | 22,male,35.6,0,yes,southwest,35585.576 33 | 18,female,26.315,0,no,northeast,2198.18985 34 | 19,female,28.6,5,no,southwest,4687.797 35 | 63,male,28.31,0,no,northwest,13770.0979 36 | 28,male,36.4,1,yes,southwest,51194.55914 37 | 19,male,20.425,0,no,northwest,1625.43375 38 | 62,female,32.965,3,no,northwest,15612.19335 39 | 26,male,20.8,0,no,southwest,2302.3 40 | 35,male,36.67,1,yes,northeast,39774.2763 41 | 60,male,39.9,0,yes,southwest,48173.361 42 | 24,female,26.6,0,no,northeast,3046.062 43 | 31,female,36.63,2,no,southeast,4949.7587 44 | 41,male,21.78,1,no,southeast,6272.4772 45 | 37,female,30.8,2,no,southeast,6313.759 46 | 38,male,37.05,1,no,northeast,6079.6715 47 | 55,male,37.3,0,no,southwest,20630.28351 48 | 18,female,38.665,2,no,northeast,3393.35635 49 | 28,female,34.77,0,no,northwest,3556.9223 50 | 60,female,24.53,0,no,southeast,12629.8967 51 | 36,male,35.2,1,yes,southeast,38709.176 52 | 18,female,35.625,0,no,northeast,2211.13075 53 | 21,female,33.63,2,no,northwest,3579.8287 54 | 48,male,28,1,yes,southwest,23568.272 55 | 36,male,34.43,0,yes,southeast,37742.5757 56 | 40,female,28.69,3,no,northwest,8059.6791 57 | 58,male,36.955,2,yes,northwest,47496.49445 58 | 58,female,31.825,2,no,northeast,13607.36875 59 | 18,male,31.68,2,yes,southeast,34303.1672 60 | 53,female,22.88,1,yes,southeast,23244.7902 61 | 34,female,37.335,2,no,northwest,5989.52365 62 | 43,male,27.36,3,no,northeast,8606.2174 63 | 25,male,33.66,4,no,southeast,4504.6624 64 | 64,male,24.7,1,no,northwest,30166.61817 65 | 28,female,25.935,1,no,northwest,4133.64165 66 | 20,female,22.42,0,yes,northwest,14711.7438 67 | 19,female,28.9,0,no,southwest,1743.214 68 | 61,female,39.1,2,no,southwest,14235.072 69 | 40,male,26.315,1,no,northwest,6389.37785 70 | 40,female,36.19,0,no,southeast,5920.1041 71 | 28,male,23.98,3,yes,southeast,17663.1442 72 | 27,female,24.75,0,yes,southeast,16577.7795 73 | 31,male,28.5,5,no,northeast,6799.458 74 | 53,female,28.1,3,no,southwest,11741.726 75 | 58,male,32.01,1,no,southeast,11946.6259 76 | 44,male,27.4,2,no,southwest,7726.854 77 | 57,male,34.01,0,no,northwest,11356.6609 78 | 29,female,29.59,1,no,southeast,3947.4131 79 | 21,male,35.53,0,no,southeast,1532.4697 80 | 22,female,39.805,0,no,northeast,2755.02095 81 | 41,female,32.965,0,no,northwest,6571.02435 82 | 31,male,26.885,1,no,northeast,4441.21315 83 | 45,female,38.285,0,no,northeast,7935.29115 84 | 22,male,37.62,1,yes,southeast,37165.1638 85 | 48,female,41.23,4,no,northwest,11033.6617 86 | 37,female,34.8,2,yes,southwest,39836.519 87 | 45,male,22.895,2,yes,northwest,21098.55405 88 | 57,female,31.16,0,yes,northwest,43578.9394 89 | 56,female,27.2,0,no,southwest,11073.176 90 | 46,female,27.74,0,no,northwest,8026.6666 91 | 55,female,26.98,0,no,northwest,11082.5772 92 | 21,female,39.49,0,no,southeast,2026.9741 93 | 53,female,24.795,1,no,northwest,10942.13205 94 | 59,male,29.83,3,yes,northeast,30184.9367 95 | 35,male,34.77,2,no,northwest,5729.0053 96 | 64,female,31.3,2,yes,southwest,47291.055 97 | 28,female,37.62,1,no,southeast,3766.8838 98 | 54,female,30.8,3,no,southwest,12105.32 99 | 55,male,38.28,0,no,southeast,10226.2842 100 | 56,male,19.95,0,yes,northeast,22412.6485 101 | 38,male,19.3,0,yes,southwest,15820.699 102 | 41,female,31.6,0,no,southwest,6186.127 103 | 30,male,25.46,0,no,northeast,3645.0894 104 | 18,female,30.115,0,no,northeast,21344.8467 105 | 61,female,29.92,3,yes,southeast,30942.1918 106 | 34,female,27.5,1,no,southwest,5003.853 107 | 20,male,28.025,1,yes,northwest,17560.37975 108 | 19,female,28.4,1,no,southwest,2331.519 109 | 26,male,30.875,2,no,northwest,3877.30425 110 | 29,male,27.94,0,no,southeast,2867.1196 111 | 63,male,35.09,0,yes,southeast,47055.5321 112 | 54,male,33.63,1,no,northwest,10825.2537 113 | 55,female,29.7,2,no,southwest,11881.358 114 | 37,male,30.8,0,no,southwest,4646.759 115 | 21,female,35.72,0,no,northwest,2404.7338 116 | 52,male,32.205,3,no,northeast,11488.31695 117 | 60,male,28.595,0,no,northeast,30259.99556 118 | 58,male,49.06,0,no,southeast,11381.3254 119 | 29,female,27.94,1,yes,southeast,19107.7796 120 | 49,female,27.17,0,no,southeast,8601.3293 121 | 37,female,23.37,2,no,northwest,6686.4313 122 | 44,male,37.1,2,no,southwest,7740.337 123 | 18,male,23.75,0,no,northeast,1705.6245 124 | 20,female,28.975,0,no,northwest,2257.47525 125 | 44,male,31.35,1,yes,northeast,39556.4945 126 | 47,female,33.915,3,no,northwest,10115.00885 127 | 26,female,28.785,0,no,northeast,3385.39915 128 | 19,female,28.3,0,yes,southwest,17081.08 129 | 52,female,37.4,0,no,southwest,9634.538 130 | 32,female,17.765,2,yes,northwest,32734.1863 131 | 38,male,34.7,2,no,southwest,6082.405 132 | 59,female,26.505,0,no,northeast,12815.44495 133 | 61,female,22.04,0,no,northeast,13616.3586 134 | 53,female,35.9,2,no,southwest,11163.568 135 | 19,male,25.555,0,no,northwest,1632.56445 136 | 20,female,28.785,0,no,northeast,2457.21115 137 | 22,female,28.05,0,no,southeast,2155.6815 138 | 19,male,34.1,0,no,southwest,1261.442 139 | 22,male,25.175,0,no,northwest,2045.68525 140 | 54,female,31.9,3,no,southeast,27322.73386 141 | 22,female,36,0,no,southwest,2166.732 142 | 34,male,22.42,2,no,northeast,27375.90478 143 | 26,male,32.49,1,no,northeast,3490.5491 144 | 34,male,25.3,2,yes,southeast,18972.495 145 | 29,male,29.735,2,no,northwest,18157.876 146 | 30,male,28.69,3,yes,northwest,20745.9891 147 | 29,female,38.83,3,no,southeast,5138.2567 148 | 46,male,30.495,3,yes,northwest,40720.55105 149 | 51,female,37.73,1,no,southeast,9877.6077 150 | 53,female,37.43,1,no,northwest,10959.6947 151 | 19,male,28.4,1,no,southwest,1842.519 152 | 35,male,24.13,1,no,northwest,5125.2157 153 | 48,male,29.7,0,no,southeast,7789.635 154 | 32,female,37.145,3,no,northeast,6334.34355 155 | 42,female,23.37,0,yes,northeast,19964.7463 156 | 40,female,25.46,1,no,northeast,7077.1894 157 | 44,male,39.52,0,no,northwest,6948.7008 158 | 48,male,24.42,0,yes,southeast,21223.6758 159 | 18,male,25.175,0,yes,northeast,15518.18025 160 | 30,male,35.53,0,yes,southeast,36950.2567 161 | 50,female,27.83,3,no,southeast,19749.38338 162 | 42,female,26.6,0,yes,northwest,21348.706 163 | 18,female,36.85,0,yes,southeast,36149.4835 164 | 54,male,39.6,1,no,southwest,10450.552 165 | 32,female,29.8,2,no,southwest,5152.134 166 | 37,male,29.64,0,no,northwest,5028.1466 167 | 47,male,28.215,4,no,northeast,10407.08585 168 | 20,female,37,5,no,southwest,4830.63 169 | 32,female,33.155,3,no,northwest,6128.79745 170 | 19,female,31.825,1,no,northwest,2719.27975 171 | 27,male,18.905,3,no,northeast,4827.90495 172 | 63,male,41.47,0,no,southeast,13405.3903 173 | 49,male,30.3,0,no,southwest,8116.68 174 | 18,male,15.96,0,no,northeast,1694.7964 175 | 35,female,34.8,1,no,southwest,5246.047 176 | 24,female,33.345,0,no,northwest,2855.43755 177 | 63,female,37.7,0,yes,southwest,48824.45 178 | 38,male,27.835,2,no,northwest,6455.86265 179 | 54,male,29.2,1,no,southwest,10436.096 180 | 46,female,28.9,2,no,southwest,8823.279 181 | 41,female,33.155,3,no,northeast,8538.28845 182 | 58,male,28.595,0,no,northwest,11735.87905 183 | 18,female,38.28,0,no,southeast,1631.8212 184 | 22,male,19.95,3,no,northeast,4005.4225 185 | 44,female,26.41,0,no,northwest,7419.4779 186 | 44,male,30.69,2,no,southeast,7731.4271 187 | 36,male,41.895,3,yes,northeast,43753.33705 188 | 26,female,29.92,2,no,southeast,3981.9768 189 | 30,female,30.9,3,no,southwest,5325.651 190 | 41,female,32.2,1,no,southwest,6775.961 191 | 29,female,32.11,2,no,northwest,4922.9159 192 | 61,male,31.57,0,no,southeast,12557.6053 193 | 36,female,26.2,0,no,southwest,4883.866 194 | 25,male,25.74,0,no,southeast,2137.6536 195 | 56,female,26.6,1,no,northwest,12044.342 196 | 18,male,34.43,0,no,southeast,1137.4697 197 | 19,male,30.59,0,no,northwest,1639.5631 198 | 39,female,32.8,0,no,southwest,5649.715 199 | 45,female,28.6,2,no,southeast,8516.829 200 | 51,female,18.05,0,no,northwest,9644.2525 201 | 64,female,39.33,0,no,northeast,14901.5167 202 | 19,female,32.11,0,no,northwest,2130.6759 203 | 48,female,32.23,1,no,southeast,8871.1517 204 | 60,female,24.035,0,no,northwest,13012.20865 205 | 27,female,36.08,0,yes,southeast,37133.8982 206 | 46,male,22.3,0,no,southwest,7147.105 207 | 28,female,28.88,1,no,northeast,4337.7352 208 | 59,male,26.4,0,no,southeast,11743.299 209 | 35,male,27.74,2,yes,northeast,20984.0936 210 | 63,female,31.8,0,no,southwest,13880.949 211 | 40,male,41.23,1,no,northeast,6610.1097 212 | 20,male,33,1,no,southwest,1980.07 213 | 40,male,30.875,4,no,northwest,8162.71625 214 | 24,male,28.5,2,no,northwest,3537.703 215 | 34,female,26.73,1,no,southeast,5002.7827 216 | 45,female,30.9,2,no,southwest,8520.026 217 | 41,female,37.1,2,no,southwest,7371.772 218 | 53,female,26.6,0,no,northwest,10355.641 219 | 27,male,23.1,0,no,southeast,2483.736 220 | 26,female,29.92,1,no,southeast,3392.9768 221 | 24,female,23.21,0,no,southeast,25081.76784 222 | 34,female,33.7,1,no,southwest,5012.471 223 | 53,female,33.25,0,no,northeast,10564.8845 224 | 32,male,30.8,3,no,southwest,5253.524 225 | 19,male,34.8,0,yes,southwest,34779.615 226 | 42,male,24.64,0,yes,southeast,19515.5416 227 | 55,male,33.88,3,no,southeast,11987.1682 228 | 28,male,38.06,0,no,southeast,2689.4954 229 | 58,female,41.91,0,no,southeast,24227.33724 230 | 41,female,31.635,1,no,northeast,7358.17565 231 | 47,male,25.46,2,no,northeast,9225.2564 232 | 42,female,36.195,1,no,northwest,7443.64305 233 | 59,female,27.83,3,no,southeast,14001.2867 234 | 19,female,17.8,0,no,southwest,1727.785 235 | 59,male,27.5,1,no,southwest,12333.828 236 | 39,male,24.51,2,no,northwest,6710.1919 237 | 40,female,22.22,2,yes,southeast,19444.2658 238 | 18,female,26.73,0,no,southeast,1615.7667 239 | 31,male,38.39,2,no,southeast,4463.2051 240 | 19,male,29.07,0,yes,northwest,17352.6803 241 | 44,male,38.06,1,no,southeast,7152.6714 242 | 23,female,36.67,2,yes,northeast,38511.6283 243 | 33,female,22.135,1,no,northeast,5354.07465 244 | 55,female,26.8,1,no,southwest,35160.13457 245 | 40,male,35.3,3,no,southwest,7196.867 246 | 63,female,27.74,0,yes,northeast,29523.1656 247 | 54,male,30.02,0,no,northwest,24476.47851 248 | 60,female,38.06,0,no,southeast,12648.7034 249 | 24,male,35.86,0,no,southeast,1986.9334 250 | 19,male,20.9,1,no,southwest,1832.094 251 | 29,male,28.975,1,no,northeast,4040.55825 252 | 18,male,17.29,2,yes,northeast,12829.4551 253 | 63,female,32.2,2,yes,southwest,47305.305 254 | 54,male,34.21,2,yes,southeast,44260.7499 255 | 27,male,30.3,3,no,southwest,4260.744 256 | 50,male,31.825,0,yes,northeast,41097.16175 257 | 55,female,25.365,3,no,northeast,13047.33235 258 | 56,male,33.63,0,yes,northwest,43921.1837 259 | 38,female,40.15,0,no,southeast,5400.9805 260 | 51,male,24.415,4,no,northwest,11520.09985 261 | 19,male,31.92,0,yes,northwest,33750.2918 262 | 58,female,25.2,0,no,southwest,11837.16 263 | 20,female,26.84,1,yes,southeast,17085.2676 264 | 52,male,24.32,3,yes,northeast,24869.8368 265 | 19,male,36.955,0,yes,northwest,36219.40545 266 | 53,female,38.06,3,no,southeast,20462.99766 267 | 46,male,42.35,3,yes,southeast,46151.1245 268 | 40,male,19.8,1,yes,southeast,17179.522 269 | 59,female,32.395,3,no,northeast,14590.63205 270 | 45,male,30.2,1,no,southwest,7441.053 271 | 49,male,25.84,1,no,northeast,9282.4806 272 | 18,male,29.37,1,no,southeast,1719.4363 273 | 50,male,34.2,2,yes,southwest,42856.838 274 | 41,male,37.05,2,no,northwest,7265.7025 275 | 50,male,27.455,1,no,northeast,9617.66245 276 | 25,male,27.55,0,no,northwest,2523.1695 277 | 47,female,26.6,2,no,northeast,9715.841 278 | 19,male,20.615,2,no,northwest,2803.69785 279 | 22,female,24.3,0,no,southwest,2150.469 280 | 59,male,31.79,2,no,southeast,12928.7911 281 | 51,female,21.56,1,no,southeast,9855.1314 282 | 40,female,28.12,1,yes,northeast,22331.5668 283 | 54,male,40.565,3,yes,northeast,48549.17835 284 | 30,male,27.645,1,no,northeast,4237.12655 285 | 55,female,32.395,1,no,northeast,11879.10405 286 | 52,female,31.2,0,no,southwest,9625.92 287 | 46,male,26.62,1,no,southeast,7742.1098 288 | 46,female,48.07,2,no,northeast,9432.9253 289 | 63,female,26.22,0,no,northwest,14256.1928 290 | 59,female,36.765,1,yes,northeast,47896.79135 291 | 52,male,26.4,3,no,southeast,25992.82104 292 | 28,female,33.4,0,no,southwest,3172.018 293 | 29,male,29.64,1,no,northeast,20277.80751 294 | 25,male,45.54,2,yes,southeast,42112.2356 295 | 22,female,28.82,0,no,southeast,2156.7518 296 | 25,male,26.8,3,no,southwest,3906.127 297 | 18,male,22.99,0,no,northeast,1704.5681 298 | 19,male,27.7,0,yes,southwest,16297.846 299 | 47,male,25.41,1,yes,southeast,21978.6769 300 | 31,male,34.39,3,yes,northwest,38746.3551 301 | 48,female,28.88,1,no,northwest,9249.4952 302 | 36,male,27.55,3,no,northeast,6746.7425 303 | 53,female,22.61,3,yes,northeast,24873.3849 304 | 56,female,37.51,2,no,southeast,12265.5069 305 | 28,female,33,2,no,southeast,4349.462 306 | 57,female,38,2,no,southwest,12646.207 307 | 29,male,33.345,2,no,northwest,19442.3535 308 | 28,female,27.5,2,no,southwest,20177.67113 309 | 30,female,33.33,1,no,southeast,4151.0287 310 | 58,male,34.865,0,no,northeast,11944.59435 311 | 41,female,33.06,2,no,northwest,7749.1564 312 | 50,male,26.6,0,no,southwest,8444.474 313 | 19,female,24.7,0,no,southwest,1737.376 314 | 43,male,35.97,3,yes,southeast,42124.5153 315 | 49,male,35.86,0,no,southeast,8124.4084 316 | 27,female,31.4,0,yes,southwest,34838.873 317 | 52,male,33.25,0,no,northeast,9722.7695 318 | 50,male,32.205,0,no,northwest,8835.26495 319 | 54,male,32.775,0,no,northeast,10435.06525 320 | 44,female,27.645,0,no,northwest,7421.19455 321 | 32,male,37.335,1,no,northeast,4667.60765 322 | 34,male,25.27,1,no,northwest,4894.7533 323 | 26,female,29.64,4,no,northeast,24671.66334 324 | 34,male,30.8,0,yes,southwest,35491.64 325 | 57,male,40.945,0,no,northeast,11566.30055 326 | 29,male,27.2,0,no,southwest,2866.091 327 | 40,male,34.105,1,no,northeast,6600.20595 328 | 27,female,23.21,1,no,southeast,3561.8889 329 | 45,male,36.48,2,yes,northwest,42760.5022 330 | 64,female,33.8,1,yes,southwest,47928.03 331 | 52,male,36.7,0,no,southwest,9144.565 332 | 61,female,36.385,1,yes,northeast,48517.56315 333 | 52,male,27.36,0,yes,northwest,24393.6224 334 | 61,female,31.16,0,no,northwest,13429.0354 335 | 56,female,28.785,0,no,northeast,11658.37915 336 | 43,female,35.72,2,no,northeast,19144.57652 337 | 64,male,34.5,0,no,southwest,13822.803 338 | 60,male,25.74,0,no,southeast,12142.5786 339 | 62,male,27.55,1,no,northwest,13937.6665 340 | 50,male,32.3,1,yes,northeast,41919.097 341 | 46,female,27.72,1,no,southeast,8232.6388 342 | 24,female,27.6,0,no,southwest,18955.22017 343 | 62,male,30.02,0,no,northwest,13352.0998 344 | 60,female,27.55,0,no,northeast,13217.0945 345 | 63,male,36.765,0,no,northeast,13981.85035 346 | 49,female,41.47,4,no,southeast,10977.2063 347 | 34,female,29.26,3,no,southeast,6184.2994 348 | 33,male,35.75,2,no,southeast,4889.9995 349 | 46,male,33.345,1,no,northeast,8334.45755 350 | 36,female,29.92,1,no,southeast,5478.0368 351 | 19,male,27.835,0,no,northwest,1635.73365 352 | 57,female,23.18,0,no,northwest,11830.6072 353 | 50,female,25.6,0,no,southwest,8932.084 354 | 30,female,27.7,0,no,southwest,3554.203 355 | 33,male,35.245,0,no,northeast,12404.8791 356 | 18,female,38.28,0,no,southeast,14133.03775 357 | 46,male,27.6,0,no,southwest,24603.04837 358 | 46,male,43.89,3,no,southeast,8944.1151 359 | 47,male,29.83,3,no,northwest,9620.3307 360 | 23,male,41.91,0,no,southeast,1837.2819 361 | 18,female,20.79,0,no,southeast,1607.5101 362 | 48,female,32.3,2,no,northeast,10043.249 363 | 35,male,30.5,1,no,southwest,4751.07 364 | 19,female,21.7,0,yes,southwest,13844.506 365 | 21,female,26.4,1,no,southwest,2597.779 366 | 21,female,21.89,2,no,southeast,3180.5101 367 | 49,female,30.78,1,no,northeast,9778.3472 368 | 56,female,32.3,3,no,northeast,13430.265 369 | 42,female,24.985,2,no,northwest,8017.06115 370 | 44,male,32.015,2,no,northwest,8116.26885 371 | 18,male,30.4,3,no,northeast,3481.868 372 | 61,female,21.09,0,no,northwest,13415.0381 373 | 57,female,22.23,0,no,northeast,12029.2867 374 | 42,female,33.155,1,no,northeast,7639.41745 375 | 26,male,32.9,2,yes,southwest,36085.219 376 | 20,male,33.33,0,no,southeast,1391.5287 377 | 23,female,28.31,0,yes,northwest,18033.9679 378 | 39,female,24.89,3,yes,northeast,21659.9301 379 | 24,male,40.15,0,yes,southeast,38126.2465 380 | 64,female,30.115,3,no,northwest,16455.70785 381 | 62,male,31.46,1,no,southeast,27000.98473 382 | 27,female,17.955,2,yes,northeast,15006.57945 383 | 55,male,30.685,0,yes,northeast,42303.69215 384 | 55,male,33,0,no,southeast,20781.48892 385 | 35,female,43.34,2,no,southeast,5846.9176 386 | 44,male,22.135,2,no,northeast,8302.53565 387 | 19,male,34.4,0,no,southwest,1261.859 388 | 58,female,39.05,0,no,southeast,11856.4115 389 | 50,male,25.365,2,no,northwest,30284.64294 390 | 26,female,22.61,0,no,northwest,3176.8159 391 | 24,female,30.21,3,no,northwest,4618.0799 392 | 48,male,35.625,4,no,northeast,10736.87075 393 | 19,female,37.43,0,no,northwest,2138.0707 394 | 48,male,31.445,1,no,northeast,8964.06055 395 | 49,male,31.35,1,no,northeast,9290.1395 396 | 46,female,32.3,2,no,northeast,9411.005 397 | 46,male,19.855,0,no,northwest,7526.70645 398 | 43,female,34.4,3,no,southwest,8522.003 399 | 21,male,31.02,0,no,southeast,16586.49771 400 | 64,male,25.6,2,no,southwest,14988.432 401 | 18,female,38.17,0,no,southeast,1631.6683 402 | 51,female,20.6,0,no,southwest,9264.797 403 | 47,male,47.52,1,no,southeast,8083.9198 404 | 64,female,32.965,0,no,northwest,14692.66935 405 | 49,male,32.3,3,no,northwest,10269.46 406 | 31,male,20.4,0,no,southwest,3260.199 407 | 52,female,38.38,2,no,northeast,11396.9002 408 | 33,female,24.31,0,no,southeast,4185.0979 409 | 47,female,23.6,1,no,southwest,8539.671 410 | 38,male,21.12,3,no,southeast,6652.5288 411 | 32,male,30.03,1,no,southeast,4074.4537 412 | 19,male,17.48,0,no,northwest,1621.3402 413 | 44,female,20.235,1,yes,northeast,19594.80965 414 | 26,female,17.195,2,yes,northeast,14455.64405 415 | 25,male,23.9,5,no,southwest,5080.096 416 | 19,female,35.15,0,no,northwest,2134.9015 417 | 43,female,35.64,1,no,southeast,7345.7266 418 | 52,male,34.1,0,no,southeast,9140.951 419 | 36,female,22.6,2,yes,southwest,18608.262 420 | 64,male,39.16,1,no,southeast,14418.2804 421 | 63,female,26.98,0,yes,northwest,28950.4692 422 | 64,male,33.88,0,yes,southeast,46889.2612 423 | 61,male,35.86,0,yes,southeast,46599.1084 424 | 40,male,32.775,1,yes,northeast,39125.33225 425 | 25,male,30.59,0,no,northeast,2727.3951 426 | 48,male,30.2,2,no,southwest,8968.33 427 | 45,male,24.31,5,no,southeast,9788.8659 428 | 38,female,27.265,1,no,northeast,6555.07035 429 | 18,female,29.165,0,no,northeast,7323.734819 430 | 21,female,16.815,1,no,northeast,3167.45585 431 | 27,female,30.4,3,no,northwest,18804.7524 432 | 19,male,33.1,0,no,southwest,23082.95533 433 | 29,female,20.235,2,no,northwest,4906.40965 434 | 42,male,26.9,0,no,southwest,5969.723 435 | 60,female,30.5,0,no,southwest,12638.195 436 | 31,male,28.595,1,no,northwest,4243.59005 437 | 60,male,33.11,3,no,southeast,13919.8229 438 | 22,male,31.73,0,no,northeast,2254.7967 439 | 35,male,28.9,3,no,southwest,5926.846 440 | 52,female,46.75,5,no,southeast,12592.5345 441 | 26,male,29.45,0,no,northeast,2897.3235 442 | 31,female,32.68,1,no,northwest,4738.2682 443 | 33,female,33.5,0,yes,southwest,37079.372 444 | 18,male,43.01,0,no,southeast,1149.3959 445 | 59,female,36.52,1,no,southeast,28287.89766 446 | 56,male,26.695,1,yes,northwest,26109.32905 447 | 45,female,33.1,0,no,southwest,7345.084 448 | 60,male,29.64,0,no,northeast,12730.9996 449 | 56,female,25.65,0,no,northwest,11454.0215 450 | 40,female,29.6,0,no,southwest,5910.944 451 | 35,male,38.6,1,no,southwest,4762.329 452 | 39,male,29.6,4,no,southwest,7512.267 453 | 30,male,24.13,1,no,northwest,4032.2407 454 | 24,male,23.4,0,no,southwest,1969.614 455 | 20,male,29.735,0,no,northwest,1769.53165 456 | 32,male,46.53,2,no,southeast,4686.3887 457 | 59,male,37.4,0,no,southwest,21797.0004 458 | 55,female,30.14,2,no,southeast,11881.9696 459 | 57,female,30.495,0,no,northwest,11840.77505 460 | 56,male,39.6,0,no,southwest,10601.412 461 | 40,female,33,3,no,southeast,7682.67 462 | 49,female,36.63,3,no,southeast,10381.4787 463 | 42,male,30,0,yes,southwest,22144.032 464 | 62,female,38.095,2,no,northeast,15230.32405 465 | 56,male,25.935,0,no,northeast,11165.41765 466 | 19,male,25.175,0,no,northwest,1632.03625 467 | 30,female,28.38,1,yes,southeast,19521.9682 468 | 60,female,28.7,1,no,southwest,13224.693 469 | 56,female,33.82,2,no,northwest,12643.3778 470 | 28,female,24.32,1,no,northeast,23288.9284 471 | 18,female,24.09,1,no,southeast,2201.0971 472 | 27,male,32.67,0,no,southeast,2497.0383 473 | 18,female,30.115,0,no,northeast,2203.47185 474 | 19,female,29.8,0,no,southwest,1744.465 475 | 47,female,33.345,0,no,northeast,20878.78443 476 | 54,male,25.1,3,yes,southwest,25382.297 477 | 61,male,28.31,1,yes,northwest,28868.6639 478 | 24,male,28.5,0,yes,northeast,35147.52848 479 | 25,male,35.625,0,no,northwest,2534.39375 480 | 21,male,36.85,0,no,southeast,1534.3045 481 | 23,male,32.56,0,no,southeast,1824.2854 482 | 63,male,41.325,3,no,northwest,15555.18875 483 | 49,male,37.51,2,no,southeast,9304.7019 484 | 18,female,31.35,0,no,southeast,1622.1885 485 | 51,female,39.5,1,no,southwest,9880.068 486 | 48,male,34.3,3,no,southwest,9563.029 487 | 31,female,31.065,0,no,northeast,4347.02335 488 | 54,female,21.47,3,no,northwest,12475.3513 489 | 19,male,28.7,0,no,southwest,1253.936 490 | 44,female,38.06,0,yes,southeast,48885.13561 491 | 53,male,31.16,1,no,northwest,10461.9794 492 | 19,female,32.9,0,no,southwest,1748.774 493 | 61,female,25.08,0,no,southeast,24513.09126 494 | 18,female,25.08,0,no,northeast,2196.4732 495 | 61,male,43.4,0,no,southwest,12574.049 496 | 21,male,25.7,4,yes,southwest,17942.106 497 | 20,male,27.93,0,no,northeast,1967.0227 498 | 31,female,23.6,2,no,southwest,4931.647 499 | 45,male,28.7,2,no,southwest,8027.968 500 | 44,female,23.98,2,no,southeast,8211.1002 501 | 62,female,39.2,0,no,southwest,13470.86 502 | 29,male,34.4,0,yes,southwest,36197.699 503 | 43,male,26.03,0,no,northeast,6837.3687 504 | 51,male,23.21,1,yes,southeast,22218.1149 505 | 19,male,30.25,0,yes,southeast,32548.3405 506 | 38,female,28.93,1,no,southeast,5974.3847 507 | 37,male,30.875,3,no,northwest,6796.86325 508 | 22,male,31.35,1,no,northwest,2643.2685 509 | 21,male,23.75,2,no,northwest,3077.0955 510 | 24,female,25.27,0,no,northeast,3044.2133 511 | 57,female,28.7,0,no,southwest,11455.28 512 | 56,male,32.11,1,no,northeast,11763.0009 513 | 27,male,33.66,0,no,southeast,2498.4144 514 | 51,male,22.42,0,no,northeast,9361.3268 515 | 19,male,30.4,0,no,southwest,1256.299 516 | 39,male,28.3,1,yes,southwest,21082.16 517 | 58,male,35.7,0,no,southwest,11362.755 518 | 20,male,35.31,1,no,southeast,27724.28875 519 | 45,male,30.495,2,no,northwest,8413.46305 520 | 35,female,31,1,no,southwest,5240.765 521 | 31,male,30.875,0,no,northeast,3857.75925 522 | 50,female,27.36,0,no,northeast,25656.57526 523 | 32,female,44.22,0,no,southeast,3994.1778 524 | 51,female,33.915,0,no,northeast,9866.30485 525 | 38,female,37.73,0,no,southeast,5397.6167 526 | 42,male,26.07,1,yes,southeast,38245.59327 527 | 18,female,33.88,0,no,southeast,11482.63485 528 | 19,female,30.59,2,no,northwest,24059.68019 529 | 51,female,25.8,1,no,southwest,9861.025 530 | 46,male,39.425,1,no,northeast,8342.90875 531 | 18,male,25.46,0,no,northeast,1708.0014 532 | 57,male,42.13,1,yes,southeast,48675.5177 533 | 62,female,31.73,0,no,northeast,14043.4767 534 | 59,male,29.7,2,no,southeast,12925.886 535 | 37,male,36.19,0,no,southeast,19214.70553 536 | 64,male,40.48,0,no,southeast,13831.1152 537 | 38,male,28.025,1,no,northeast,6067.12675 538 | 33,female,38.9,3,no,southwest,5972.378 539 | 46,female,30.2,2,no,southwest,8825.086 540 | 46,female,28.05,1,no,southeast,8233.0975 541 | 53,male,31.35,0,no,southeast,27346.04207 542 | 34,female,38,3,no,southwest,6196.448 543 | 20,female,31.79,2,no,southeast,3056.3881 544 | 63,female,36.3,0,no,southeast,13887.204 545 | 54,female,47.41,0,yes,southeast,63770.42801 546 | 54,male,30.21,0,no,northwest,10231.4999 547 | 49,male,25.84,2,yes,northwest,23807.2406 548 | 28,male,35.435,0,no,northeast,3268.84665 549 | 54,female,46.7,2,no,southwest,11538.421 550 | 25,female,28.595,0,no,northeast,3213.62205 551 | 43,female,46.2,0,yes,southeast,45863.205 552 | 63,male,30.8,0,no,southwest,13390.559 553 | 32,female,28.93,0,no,southeast,3972.9247 554 | 62,male,21.4,0,no,southwest,12957.118 555 | 52,female,31.73,2,no,northwest,11187.6567 556 | 25,female,41.325,0,no,northeast,17878.90068 557 | 28,male,23.8,2,no,southwest,3847.674 558 | 46,male,33.44,1,no,northeast,8334.5896 559 | 34,male,34.21,0,no,southeast,3935.1799 560 | 35,female,34.105,3,yes,northwest,39983.42595 561 | 19,male,35.53,0,no,northwest,1646.4297 562 | 46,female,19.95,2,no,northwest,9193.8385 563 | 54,female,32.68,0,no,northeast,10923.9332 564 | 27,male,30.5,0,no,southwest,2494.022 565 | 50,male,44.77,1,no,southeast,9058.7303 566 | 18,female,32.12,2,no,southeast,2801.2588 567 | 19,female,30.495,0,no,northwest,2128.43105 568 | 38,female,40.565,1,no,northwest,6373.55735 569 | 41,male,30.59,2,no,northwest,7256.7231 570 | 49,female,31.9,5,no,southwest,11552.904 571 | 48,male,40.565,2,yes,northwest,45702.02235 572 | 31,female,29.1,0,no,southwest,3761.292 573 | 18,female,37.29,1,no,southeast,2219.4451 574 | 30,female,43.12,2,no,southeast,4753.6368 575 | 62,female,36.86,1,no,northeast,31620.00106 576 | 57,female,34.295,2,no,northeast,13224.05705 577 | 58,female,27.17,0,no,northwest,12222.8983 578 | 22,male,26.84,0,no,southeast,1664.9996 579 | 31,female,38.095,1,yes,northeast,58571.07448 580 | 52,male,30.2,1,no,southwest,9724.53 581 | 25,female,23.465,0,no,northeast,3206.49135 582 | 59,male,25.46,1,no,northeast,12913.9924 583 | 19,male,30.59,0,no,northwest,1639.5631 584 | 39,male,45.43,2,no,southeast,6356.2707 585 | 32,female,23.65,1,no,southeast,17626.23951 586 | 19,male,20.7,0,no,southwest,1242.816 587 | 33,female,28.27,1,no,southeast,4779.6023 588 | 21,male,20.235,3,no,northeast,3861.20965 589 | 34,female,30.21,1,yes,northwest,43943.8761 590 | 61,female,35.91,0,no,northeast,13635.6379 591 | 38,female,30.69,1,no,southeast,5976.8311 592 | 58,female,29,0,no,southwest,11842.442 593 | 47,male,19.57,1,no,northwest,8428.0693 594 | 20,male,31.13,2,no,southeast,2566.4707 595 | 21,female,21.85,1,yes,northeast,15359.1045 596 | 41,male,40.26,0,no,southeast,5709.1644 597 | 46,female,33.725,1,no,northeast,8823.98575 598 | 42,female,29.48,2,no,southeast,7640.3092 599 | 34,female,33.25,1,no,northeast,5594.8455 600 | 43,male,32.6,2,no,southwest,7441.501 601 | 52,female,37.525,2,no,northwest,33471.97189 602 | 18,female,39.16,0,no,southeast,1633.0444 603 | 51,male,31.635,0,no,northwest,9174.13565 604 | 56,female,25.3,0,no,southwest,11070.535 605 | 64,female,39.05,3,no,southeast,16085.1275 606 | 19,female,28.31,0,yes,northwest,17468.9839 607 | 51,female,34.1,0,no,southeast,9283.562 608 | 27,female,25.175,0,no,northeast,3558.62025 609 | 59,female,23.655,0,yes,northwest,25678.77845 610 | 28,male,26.98,2,no,northeast,4435.0942 611 | 30,male,37.8,2,yes,southwest,39241.442 612 | 47,female,29.37,1,no,southeast,8547.6913 613 | 38,female,34.8,2,no,southwest,6571.544 614 | 18,female,33.155,0,no,northeast,2207.69745 615 | 34,female,19,3,no,northeast,6753.038 616 | 20,female,33,0,no,southeast,1880.07 617 | 47,female,36.63,1,yes,southeast,42969.8527 618 | 56,female,28.595,0,no,northeast,11658.11505 619 | 49,male,25.6,2,yes,southwest,23306.547 620 | 19,female,33.11,0,yes,southeast,34439.8559 621 | 55,female,37.1,0,no,southwest,10713.644 622 | 30,male,31.4,1,no,southwest,3659.346 623 | 37,male,34.1,4,yes,southwest,40182.246 624 | 49,female,21.3,1,no,southwest,9182.17 625 | 18,male,33.535,0,yes,northeast,34617.84065 626 | 59,male,28.785,0,no,northwest,12129.61415 627 | 29,female,26.03,0,no,northwest,3736.4647 628 | 36,male,28.88,3,no,northeast,6748.5912 629 | 33,male,42.46,1,no,southeast,11326.71487 630 | 58,male,38,0,no,southwest,11365.952 631 | 44,female,38.95,0,yes,northwest,42983.4585 632 | 53,male,36.1,1,no,southwest,10085.846 633 | 24,male,29.3,0,no,southwest,1977.815 634 | 29,female,35.53,0,no,southeast,3366.6697 635 | 40,male,22.705,2,no,northeast,7173.35995 636 | 51,male,39.7,1,no,southwest,9391.346 637 | 64,male,38.19,0,no,northeast,14410.9321 638 | 19,female,24.51,1,no,northwest,2709.1119 639 | 35,female,38.095,2,no,northeast,24915.04626 640 | 39,male,26.41,0,yes,northeast,20149.3229 641 | 56,male,33.66,4,no,southeast,12949.1554 642 | 33,male,42.4,5,no,southwest,6666.243 643 | 42,male,28.31,3,yes,northwest,32787.45859 644 | 61,male,33.915,0,no,northeast,13143.86485 645 | 23,female,34.96,3,no,northwest,4466.6214 646 | 43,male,35.31,2,no,southeast,18806.14547 647 | 48,male,30.78,3,no,northeast,10141.1362 648 | 39,male,26.22,1,no,northwest,6123.5688 649 | 40,female,23.37,3,no,northeast,8252.2843 650 | 18,male,28.5,0,no,northeast,1712.227 651 | 58,female,32.965,0,no,northeast,12430.95335 652 | 49,female,42.68,2,no,southeast,9800.8882 653 | 53,female,39.6,1,no,southeast,10579.711 654 | 48,female,31.13,0,no,southeast,8280.6227 655 | 45,female,36.3,2,no,southeast,8527.532 656 | 59,female,35.2,0,no,southeast,12244.531 657 | 52,female,25.3,2,yes,southeast,24667.419 658 | 26,female,42.4,1,no,southwest,3410.324 659 | 27,male,33.155,2,no,northwest,4058.71245 660 | 48,female,35.91,1,no,northeast,26392.26029 661 | 57,female,28.785,4,no,northeast,14394.39815 662 | 37,male,46.53,3,no,southeast,6435.6237 663 | 57,female,23.98,1,no,southeast,22192.43711 664 | 32,female,31.54,1,no,northeast,5148.5526 665 | 18,male,33.66,0,no,southeast,1136.3994 666 | 64,female,22.99,0,yes,southeast,27037.9141 667 | 43,male,38.06,2,yes,southeast,42560.4304 668 | 49,male,28.7,1,no,southwest,8703.456 669 | 40,female,32.775,2,yes,northwest,40003.33225 670 | 62,male,32.015,0,yes,northeast,45710.20785 671 | 40,female,29.81,1,no,southeast,6500.2359 672 | 30,male,31.57,3,no,southeast,4837.5823 673 | 29,female,31.16,0,no,northeast,3943.5954 674 | 36,male,29.7,0,no,southeast,4399.731 675 | 41,female,31.02,0,no,southeast,6185.3208 676 | 44,female,43.89,2,yes,southeast,46200.9851 677 | 45,male,21.375,0,no,northwest,7222.78625 678 | 55,female,40.81,3,no,southeast,12485.8009 679 | 60,male,31.35,3,yes,northwest,46130.5265 680 | 56,male,36.1,3,no,southwest,12363.547 681 | 49,female,23.18,2,no,northwest,10156.7832 682 | 21,female,17.4,1,no,southwest,2585.269 683 | 19,male,20.3,0,no,southwest,1242.26 684 | 39,male,35.3,2,yes,southwest,40103.89 685 | 53,male,24.32,0,no,northwest,9863.4718 686 | 33,female,18.5,1,no,southwest,4766.022 687 | 53,male,26.41,2,no,northeast,11244.3769 688 | 42,male,26.125,2,no,northeast,7729.64575 689 | 40,male,41.69,0,no,southeast,5438.7491 690 | 47,female,24.1,1,no,southwest,26236.57997 691 | 27,male,31.13,1,yes,southeast,34806.4677 692 | 21,male,27.36,0,no,northeast,2104.1134 693 | 47,male,36.2,1,no,southwest,8068.185 694 | 20,male,32.395,1,no,northwest,2362.22905 695 | 24,male,23.655,0,no,northwest,2352.96845 696 | 27,female,34.8,1,no,southwest,3577.999 697 | 26,female,40.185,0,no,northwest,3201.24515 698 | 53,female,32.3,2,no,northeast,29186.48236 699 | 41,male,35.75,1,yes,southeast,40273.6455 700 | 56,male,33.725,0,no,northwest,10976.24575 701 | 23,female,39.27,2,no,southeast,3500.6123 702 | 21,female,34.87,0,no,southeast,2020.5523 703 | 50,female,44.745,0,no,northeast,9541.69555 704 | 53,male,41.47,0,no,southeast,9504.3103 705 | 34,female,26.41,1,no,northwest,5385.3379 706 | 47,female,29.545,1,no,northwest,8930.93455 707 | 33,female,32.9,2,no,southwest,5375.038 708 | 51,female,38.06,0,yes,southeast,44400.4064 709 | 49,male,28.69,3,no,northwest,10264.4421 710 | 31,female,30.495,3,no,northeast,6113.23105 711 | 36,female,27.74,0,no,northeast,5469.0066 712 | 18,male,35.2,1,no,southeast,1727.54 713 | 50,female,23.54,2,no,southeast,10107.2206 714 | 43,female,30.685,2,no,northwest,8310.83915 715 | 20,male,40.47,0,no,northeast,1984.4533 716 | 24,female,22.6,0,no,southwest,2457.502 717 | 60,male,28.9,0,no,southwest,12146.971 718 | 49,female,22.61,1,no,northwest,9566.9909 719 | 60,male,24.32,1,no,northwest,13112.6048 720 | 51,female,36.67,2,no,northwest,10848.1343 721 | 58,female,33.44,0,no,northwest,12231.6136 722 | 51,female,40.66,0,no,northeast,9875.6804 723 | 53,male,36.6,3,no,southwest,11264.541 724 | 62,male,37.4,0,no,southwest,12979.358 725 | 19,male,35.4,0,no,southwest,1263.249 726 | 50,female,27.075,1,no,northeast,10106.13425 727 | 30,female,39.05,3,yes,southeast,40932.4295 728 | 41,male,28.405,1,no,northwest,6664.68595 729 | 29,female,21.755,1,yes,northeast,16657.71745 730 | 18,female,40.28,0,no,northeast,2217.6012 731 | 41,female,36.08,1,no,southeast,6781.3542 732 | 35,male,24.42,3,yes,southeast,19361.9988 733 | 53,male,21.4,1,no,southwest,10065.413 734 | 24,female,30.1,3,no,southwest,4234.927 735 | 48,female,27.265,1,no,northeast,9447.25035 736 | 59,female,32.1,3,no,southwest,14007.222 737 | 49,female,34.77,1,no,northwest,9583.8933 738 | 37,female,38.39,0,yes,southeast,40419.0191 739 | 26,male,23.7,2,no,southwest,3484.331 740 | 23,male,31.73,3,yes,northeast,36189.1017 741 | 29,male,35.5,2,yes,southwest,44585.45587 742 | 45,male,24.035,2,no,northeast,8604.48365 743 | 27,male,29.15,0,yes,southeast,18246.4955 744 | 53,male,34.105,0,yes,northeast,43254.41795 745 | 31,female,26.62,0,no,southeast,3757.8448 746 | 50,male,26.41,0,no,northwest,8827.2099 747 | 50,female,30.115,1,no,northwest,9910.35985 748 | 34,male,27,2,no,southwest,11737.84884 749 | 19,male,21.755,0,no,northwest,1627.28245 750 | 47,female,36,1,no,southwest,8556.907 751 | 28,male,30.875,0,no,northwest,3062.50825 752 | 37,female,26.4,0,yes,southeast,19539.243 753 | 21,male,28.975,0,no,northwest,1906.35825 754 | 64,male,37.905,0,no,northwest,14210.53595 755 | 58,female,22.77,0,no,southeast,11833.7823 756 | 24,male,33.63,4,no,northeast,17128.42608 757 | 31,male,27.645,2,no,northeast,5031.26955 758 | 39,female,22.8,3,no,northeast,7985.815 759 | 47,female,27.83,0,yes,southeast,23065.4207 760 | 30,male,37.43,3,no,northeast,5428.7277 761 | 18,male,38.17,0,yes,southeast,36307.7983 762 | 22,female,34.58,2,no,northeast,3925.7582 763 | 23,male,35.2,1,no,southwest,2416.955 764 | 33,male,27.1,1,yes,southwest,19040.876 765 | 27,male,26.03,0,no,northeast,3070.8087 766 | 45,female,25.175,2,no,northeast,9095.06825 767 | 57,female,31.825,0,no,northwest,11842.62375 768 | 47,male,32.3,1,no,southwest,8062.764 769 | 42,female,29,1,no,southwest,7050.642 770 | 64,female,39.7,0,no,southwest,14319.031 771 | 38,female,19.475,2,no,northwest,6933.24225 772 | 61,male,36.1,3,no,southwest,27941.28758 773 | 53,female,26.7,2,no,southwest,11150.78 774 | 44,female,36.48,0,no,northeast,12797.20962 775 | 19,female,28.88,0,yes,northwest,17748.5062 776 | 41,male,34.2,2,no,northwest,7261.741 777 | 51,male,33.33,3,no,southeast,10560.4917 778 | 40,male,32.3,2,no,northwest,6986.697 779 | 45,male,39.805,0,no,northeast,7448.40395 780 | 35,male,34.32,3,no,southeast,5934.3798 781 | 53,male,28.88,0,no,northwest,9869.8102 782 | 30,male,24.4,3,yes,southwest,18259.216 783 | 18,male,41.14,0,no,southeast,1146.7966 784 | 51,male,35.97,1,no,southeast,9386.1613 785 | 50,female,27.6,1,yes,southwest,24520.264 786 | 31,female,29.26,1,no,southeast,4350.5144 787 | 35,female,27.7,3,no,southwest,6414.178 788 | 60,male,36.955,0,no,northeast,12741.16745 789 | 21,male,36.86,0,no,northwest,1917.3184 790 | 29,male,22.515,3,no,northeast,5209.57885 791 | 62,female,29.92,0,no,southeast,13457.9608 792 | 39,female,41.8,0,no,southeast,5662.225 793 | 19,male,27.6,0,no,southwest,1252.407 794 | 22,female,23.18,0,no,northeast,2731.9122 795 | 53,male,20.9,0,yes,southeast,21195.818 796 | 39,female,31.92,2,no,northwest,7209.4918 797 | 27,male,28.5,0,yes,northwest,18310.742 798 | 30,male,44.22,2,no,southeast,4266.1658 799 | 30,female,22.895,1,no,northeast,4719.52405 800 | 58,female,33.1,0,no,southwest,11848.141 801 | 33,male,24.795,0,yes,northeast,17904.52705 802 | 42,female,26.18,1,no,southeast,7046.7222 803 | 64,female,35.97,0,no,southeast,14313.8463 804 | 21,male,22.3,1,no,southwest,2103.08 805 | 18,female,42.24,0,yes,southeast,38792.6856 806 | 23,male,26.51,0,no,southeast,1815.8759 807 | 45,female,35.815,0,no,northwest,7731.85785 808 | 40,female,41.42,1,no,northwest,28476.73499 809 | 19,female,36.575,0,no,northwest,2136.88225 810 | 18,male,30.14,0,no,southeast,1131.5066 811 | 25,male,25.84,1,no,northeast,3309.7926 812 | 46,female,30.8,3,no,southwest,9414.92 813 | 33,female,42.94,3,no,northwest,6360.9936 814 | 54,male,21.01,2,no,southeast,11013.7119 815 | 28,male,22.515,2,no,northeast,4428.88785 816 | 36,male,34.43,2,no,southeast,5584.3057 817 | 20,female,31.46,0,no,southeast,1877.9294 818 | 24,female,24.225,0,no,northwest,2842.76075 819 | 23,male,37.1,3,no,southwest,3597.596 820 | 47,female,26.125,1,yes,northeast,23401.30575 821 | 33,female,35.53,0,yes,northwest,55135.40209 822 | 45,male,33.7,1,no,southwest,7445.918 823 | 26,male,17.67,0,no,northwest,2680.9493 824 | 18,female,31.13,0,no,southeast,1621.8827 825 | 44,female,29.81,2,no,southeast,8219.2039 826 | 60,male,24.32,0,no,northwest,12523.6048 827 | 64,female,31.825,2,no,northeast,16069.08475 828 | 56,male,31.79,2,yes,southeast,43813.8661 829 | 36,male,28.025,1,yes,northeast,20773.62775 830 | 41,male,30.78,3,yes,northeast,39597.4072 831 | 39,male,21.85,1,no,northwest,6117.4945 832 | 63,male,33.1,0,no,southwest,13393.756 833 | 36,female,25.84,0,no,northwest,5266.3656 834 | 28,female,23.845,2,no,northwest,4719.73655 835 | 58,male,34.39,0,no,northwest,11743.9341 836 | 36,male,33.82,1,no,northwest,5377.4578 837 | 42,male,35.97,2,no,southeast,7160.3303 838 | 36,male,31.5,0,no,southwest,4402.233 839 | 56,female,28.31,0,no,northeast,11657.7189 840 | 35,female,23.465,2,no,northeast,6402.29135 841 | 59,female,31.35,0,no,northwest,12622.1795 842 | 21,male,31.1,0,no,southwest,1526.312 843 | 59,male,24.7,0,no,northeast,12323.936 844 | 23,female,32.78,2,yes,southeast,36021.0112 845 | 57,female,29.81,0,yes,southeast,27533.9129 846 | 53,male,30.495,0,no,northeast,10072.05505 847 | 60,female,32.45,0,yes,southeast,45008.9555 848 | 51,female,34.2,1,no,southwest,9872.701 849 | 23,male,50.38,1,no,southeast,2438.0552 850 | 27,female,24.1,0,no,southwest,2974.126 851 | 55,male,32.775,0,no,northwest,10601.63225 852 | 37,female,30.78,0,yes,northeast,37270.1512 853 | 61,male,32.3,2,no,northwest,14119.62 854 | 46,female,35.53,0,yes,northeast,42111.6647 855 | 53,female,23.75,2,no,northeast,11729.6795 856 | 49,female,23.845,3,yes,northeast,24106.91255 857 | 20,female,29.6,0,no,southwest,1875.344 858 | 48,female,33.11,0,yes,southeast,40974.1649 859 | 25,male,24.13,0,yes,northwest,15817.9857 860 | 25,female,32.23,1,no,southeast,18218.16139 861 | 57,male,28.1,0,no,southwest,10965.446 862 | 37,female,47.6,2,yes,southwest,46113.511 863 | 38,female,28,3,no,southwest,7151.092 864 | 55,female,33.535,2,no,northwest,12269.68865 865 | 36,female,19.855,0,no,northeast,5458.04645 866 | 51,male,25.4,0,no,southwest,8782.469 867 | 40,male,29.9,2,no,southwest,6600.361 868 | 18,male,37.29,0,no,southeast,1141.4451 869 | 57,male,43.7,1,no,southwest,11576.13 870 | 61,male,23.655,0,no,northeast,13129.60345 871 | 25,female,24.3,3,no,southwest,4391.652 872 | 50,male,36.2,0,no,southwest,8457.818 873 | 26,female,29.48,1,no,southeast,3392.3652 874 | 42,male,24.86,0,no,southeast,5966.8874 875 | 43,male,30.1,1,no,southwest,6849.026 876 | 44,male,21.85,3,no,northeast,8891.1395 877 | 23,female,28.12,0,no,northwest,2690.1138 878 | 49,female,27.1,1,no,southwest,26140.3603 879 | 33,male,33.44,5,no,southeast,6653.7886 880 | 41,male,28.8,1,no,southwest,6282.235 881 | 37,female,29.5,2,no,southwest,6311.952 882 | 22,male,34.8,3,no,southwest,3443.064 883 | 23,male,27.36,1,no,northwest,2789.0574 884 | 21,female,22.135,0,no,northeast,2585.85065 885 | 51,female,37.05,3,yes,northeast,46255.1125 886 | 25,male,26.695,4,no,northwest,4877.98105 887 | 32,male,28.93,1,yes,southeast,19719.6947 888 | 57,male,28.975,0,yes,northeast,27218.43725 889 | 36,female,30.02,0,no,northwest,5272.1758 890 | 22,male,39.5,0,no,southwest,1682.597 891 | 57,male,33.63,1,no,northwest,11945.1327 892 | 64,female,26.885,0,yes,northwest,29330.98315 893 | 36,female,29.04,4,no,southeast,7243.8136 894 | 54,male,24.035,0,no,northeast,10422.91665 895 | 47,male,38.94,2,yes,southeast,44202.6536 896 | 62,male,32.11,0,no,northeast,13555.0049 897 | 61,female,44,0,no,southwest,13063.883 898 | 43,female,20.045,2,yes,northeast,19798.05455 899 | 19,male,25.555,1,no,northwest,2221.56445 900 | 18,female,40.26,0,no,southeast,1634.5734 901 | 19,female,22.515,0,no,northwest,2117.33885 902 | 49,male,22.515,0,no,northeast,8688.85885 903 | 60,male,40.92,0,yes,southeast,48673.5588 904 | 26,male,27.265,3,no,northeast,4661.28635 905 | 49,male,36.85,0,no,southeast,8125.7845 906 | 60,female,35.1,0,no,southwest,12644.589 907 | 26,female,29.355,2,no,northeast,4564.19145 908 | 27,male,32.585,3,no,northeast,4846.92015 909 | 44,female,32.34,1,no,southeast,7633.7206 910 | 63,male,39.8,3,no,southwest,15170.069 911 | 32,female,24.6,0,yes,southwest,17496.306 912 | 22,male,28.31,1,no,northwest,2639.0429 913 | 18,male,31.73,0,yes,northeast,33732.6867 914 | 59,female,26.695,3,no,northwest,14382.70905 915 | 44,female,27.5,1,no,southwest,7626.993 916 | 33,male,24.605,2,no,northwest,5257.50795 917 | 24,female,33.99,0,no,southeast,2473.3341 918 | 43,female,26.885,0,yes,northwest,21774.32215 919 | 45,male,22.895,0,yes,northeast,35069.37452 920 | 61,female,28.2,0,no,southwest,13041.921 921 | 35,female,34.21,1,no,southeast,5245.2269 922 | 62,female,25,0,no,southwest,13451.122 923 | 62,female,33.2,0,no,southwest,13462.52 924 | 38,male,31,1,no,southwest,5488.262 925 | 34,male,35.815,0,no,northwest,4320.41085 926 | 43,male,23.2,0,no,southwest,6250.435 927 | 50,male,32.11,2,no,northeast,25333.33284 928 | 19,female,23.4,2,no,southwest,2913.569 929 | 57,female,20.1,1,no,southwest,12032.326 930 | 62,female,39.16,0,no,southeast,13470.8044 931 | 41,male,34.21,1,no,southeast,6289.7549 932 | 26,male,46.53,1,no,southeast,2927.0647 933 | 39,female,32.5,1,no,southwest,6238.298 934 | 46,male,25.8,5,no,southwest,10096.97 935 | 45,female,35.3,0,no,southwest,7348.142 936 | 32,male,37.18,2,no,southeast,4673.3922 937 | 59,female,27.5,0,no,southwest,12233.828 938 | 44,male,29.735,2,no,northeast,32108.66282 939 | 39,female,24.225,5,no,northwest,8965.79575 940 | 18,male,26.18,2,no,southeast,2304.0022 941 | 53,male,29.48,0,no,southeast,9487.6442 942 | 18,male,23.21,0,no,southeast,1121.8739 943 | 50,female,46.09,1,no,southeast,9549.5651 944 | 18,female,40.185,0,no,northeast,2217.46915 945 | 19,male,22.61,0,no,northwest,1628.4709 946 | 62,male,39.93,0,no,southeast,12982.8747 947 | 56,female,35.8,1,no,southwest,11674.13 948 | 42,male,35.8,2,no,southwest,7160.094 949 | 37,male,34.2,1,yes,northeast,39047.285 950 | 42,male,31.255,0,no,northwest,6358.77645 951 | 25,male,29.7,3,yes,southwest,19933.458 952 | 57,male,18.335,0,no,northeast,11534.87265 953 | 51,male,42.9,2,yes,southeast,47462.894 954 | 30,female,28.405,1,no,northwest,4527.18295 955 | 44,male,30.2,2,yes,southwest,38998.546 956 | 34,male,27.835,1,yes,northwest,20009.63365 957 | 31,male,39.49,1,no,southeast,3875.7341 958 | 54,male,30.8,1,yes,southeast,41999.52 959 | 24,male,26.79,1,no,northwest,12609.88702 960 | 43,male,34.96,1,yes,northeast,41034.2214 961 | 48,male,36.67,1,no,northwest,28468.91901 962 | 19,female,39.615,1,no,northwest,2730.10785 963 | 29,female,25.9,0,no,southwest,3353.284 964 | 63,female,35.2,1,no,southeast,14474.675 965 | 46,male,24.795,3,no,northeast,9500.57305 966 | 52,male,36.765,2,no,northwest,26467.09737 967 | 35,male,27.1,1,no,southwest,4746.344 968 | 51,male,24.795,2,yes,northwest,23967.38305 969 | 44,male,25.365,1,no,northwest,7518.02535 970 | 21,male,25.745,2,no,northeast,3279.86855 971 | 39,female,34.32,5,no,southeast,8596.8278 972 | 50,female,28.16,3,no,southeast,10702.6424 973 | 34,female,23.56,0,no,northeast,4992.3764 974 | 22,female,20.235,0,no,northwest,2527.81865 975 | 19,female,40.5,0,no,southwest,1759.338 976 | 26,male,35.42,0,no,southeast,2322.6218 977 | 29,male,22.895,0,yes,northeast,16138.76205 978 | 48,male,40.15,0,no,southeast,7804.1605 979 | 26,male,29.15,1,no,southeast,2902.9065 980 | 45,female,39.995,3,no,northeast,9704.66805 981 | 36,female,29.92,0,no,southeast,4889.0368 982 | 54,male,25.46,1,no,northeast,25517.11363 983 | 34,male,21.375,0,no,northeast,4500.33925 984 | 31,male,25.9,3,yes,southwest,19199.944 985 | 27,female,30.59,1,no,northeast,16796.41194 986 | 20,male,30.115,5,no,northeast,4915.05985 987 | 44,female,25.8,1,no,southwest,7624.63 988 | 43,male,30.115,3,no,northwest,8410.04685 989 | 45,female,27.645,1,no,northwest,28340.18885 990 | 34,male,34.675,0,no,northeast,4518.82625 991 | 24,female,20.52,0,yes,northeast,14571.8908 992 | 26,female,19.8,1,no,southwest,3378.91 993 | 38,female,27.835,2,no,northeast,7144.86265 994 | 50,female,31.6,2,no,southwest,10118.424 995 | 38,male,28.27,1,no,southeast,5484.4673 996 | 27,female,20.045,3,yes,northwest,16420.49455 997 | 39,female,23.275,3,no,northeast,7986.47525 998 | 39,female,34.1,3,no,southwest,7418.522 999 | 63,female,36.85,0,no,southeast,13887.9685 1000 | 33,female,36.29,3,no,northeast,6551.7501 1001 | 36,female,26.885,0,no,northwest,5267.81815 1002 | 30,male,22.99,2,yes,northwest,17361.7661 1003 | 24,male,32.7,0,yes,southwest,34472.841 1004 | 24,male,25.8,0,no,southwest,1972.95 1005 | 48,male,29.6,0,no,southwest,21232.18226 1006 | 47,male,19.19,1,no,northeast,8627.5411 1007 | 29,male,31.73,2,no,northwest,4433.3877 1008 | 28,male,29.26,2,no,northeast,4438.2634 1009 | 47,male,28.215,3,yes,northwest,24915.22085 1010 | 25,male,24.985,2,no,northeast,23241.47453 1011 | 51,male,27.74,1,no,northeast,9957.7216 1012 | 48,female,22.8,0,no,southwest,8269.044 1013 | 43,male,20.13,2,yes,southeast,18767.7377 1014 | 61,female,33.33,4,no,southeast,36580.28216 1015 | 48,male,32.3,1,no,northwest,8765.249 1016 | 38,female,27.6,0,no,southwest,5383.536 1017 | 59,male,25.46,0,no,northwest,12124.9924 1018 | 19,female,24.605,1,no,northwest,2709.24395 1019 | 26,female,34.2,2,no,southwest,3987.926 1020 | 54,female,35.815,3,no,northwest,12495.29085 1021 | 21,female,32.68,2,no,northwest,26018.95052 1022 | 51,male,37,0,no,southwest,8798.593 1023 | 22,female,31.02,3,yes,southeast,35595.5898 1024 | 47,male,36.08,1,yes,southeast,42211.1382 1025 | 18,male,23.32,1,no,southeast,1711.0268 1026 | 47,female,45.32,1,no,southeast,8569.8618 1027 | 21,female,34.6,0,no,southwest,2020.177 1028 | 19,male,26.03,1,yes,northwest,16450.8947 1029 | 23,male,18.715,0,no,northwest,21595.38229 1030 | 54,male,31.6,0,no,southwest,9850.432 1031 | 37,female,17.29,2,no,northeast,6877.9801 1032 | 46,female,23.655,1,yes,northwest,21677.28345 1033 | 55,female,35.2,0,yes,southeast,44423.803 1034 | 30,female,27.93,0,no,northeast,4137.5227 1035 | 18,male,21.565,0,yes,northeast,13747.87235 1036 | 61,male,38.38,0,no,northwest,12950.0712 1037 | 54,female,23,3,no,southwest,12094.478 1038 | 22,male,37.07,2,yes,southeast,37484.4493 1039 | 45,female,30.495,1,yes,northwest,39725.51805 1040 | 22,male,28.88,0,no,northeast,2250.8352 1041 | 19,male,27.265,2,no,northwest,22493.65964 1042 | 35,female,28.025,0,yes,northwest,20234.85475 1043 | 18,male,23.085,0,no,northeast,1704.70015 1044 | 20,male,30.685,0,yes,northeast,33475.81715 1045 | 28,female,25.8,0,no,southwest,3161.454 1046 | 55,male,35.245,1,no,northeast,11394.06555 1047 | 43,female,24.7,2,yes,northwest,21880.82 1048 | 43,female,25.08,0,no,northeast,7325.0482 1049 | 22,male,52.58,1,yes,southeast,44501.3982 1050 | 25,female,22.515,1,no,northwest,3594.17085 1051 | 49,male,30.9,0,yes,southwest,39727.614 1052 | 44,female,36.955,1,no,northwest,8023.13545 1053 | 64,male,26.41,0,no,northeast,14394.5579 1054 | 49,male,29.83,1,no,northeast,9288.0267 1055 | 47,male,29.8,3,yes,southwest,25309.489 1056 | 27,female,21.47,0,no,northwest,3353.4703 1057 | 55,male,27.645,0,no,northwest,10594.50155 1058 | 48,female,28.9,0,no,southwest,8277.523 1059 | 45,female,31.79,0,no,southeast,17929.30337 1060 | 24,female,39.49,0,no,southeast,2480.9791 1061 | 32,male,33.82,1,no,northwest,4462.7218 1062 | 24,male,32.01,0,no,southeast,1981.5819 1063 | 57,male,27.94,1,no,southeast,11554.2236 1064 | 59,male,41.14,1,yes,southeast,48970.2476 1065 | 36,male,28.595,3,no,northwest,6548.19505 1066 | 29,female,25.6,4,no,southwest,5708.867 1067 | 42,female,25.3,1,no,southwest,7045.499 1068 | 48,male,37.29,2,no,southeast,8978.1851 1069 | 39,male,42.655,0,no,northeast,5757.41345 1070 | 63,male,21.66,1,no,northwest,14349.8544 1071 | 54,female,31.9,1,no,southeast,10928.849 1072 | 37,male,37.07,1,yes,southeast,39871.7043 1073 | 63,male,31.445,0,no,northeast,13974.45555 1074 | 21,male,31.255,0,no,northwest,1909.52745 1075 | 54,female,28.88,2,no,northeast,12096.6512 1076 | 60,female,18.335,0,no,northeast,13204.28565 1077 | 32,female,29.59,1,no,southeast,4562.8421 1078 | 47,female,32,1,no,southwest,8551.347 1079 | 21,male,26.03,0,no,northeast,2102.2647 1080 | 28,male,31.68,0,yes,southeast,34672.1472 1081 | 63,male,33.66,3,no,southeast,15161.5344 1082 | 18,male,21.78,2,no,southeast,11884.04858 1083 | 32,male,27.835,1,no,northwest,4454.40265 1084 | 38,male,19.95,1,no,northwest,5855.9025 1085 | 32,male,31.5,1,no,southwest,4076.497 1086 | 62,female,30.495,2,no,northwest,15019.76005 1087 | 39,female,18.3,5,yes,southwest,19023.26 1088 | 55,male,28.975,0,no,northeast,10796.35025 1089 | 57,male,31.54,0,no,northwest,11353.2276 1090 | 52,male,47.74,1,no,southeast,9748.9106 1091 | 56,male,22.1,0,no,southwest,10577.087 1092 | 47,male,36.19,0,yes,southeast,41676.0811 1093 | 55,female,29.83,0,no,northeast,11286.5387 1094 | 23,male,32.7,3,no,southwest,3591.48 1095 | 22,female,30.4,0,yes,northwest,33907.548 1096 | 50,female,33.7,4,no,southwest,11299.343 1097 | 18,female,31.35,4,no,northeast,4561.1885 1098 | 51,female,34.96,2,yes,northeast,44641.1974 1099 | 22,male,33.77,0,no,southeast,1674.6323 1100 | 52,female,30.875,0,no,northeast,23045.56616 1101 | 25,female,33.99,1,no,southeast,3227.1211 1102 | 33,female,19.095,2,yes,northeast,16776.30405 1103 | 53,male,28.6,3,no,southwest,11253.421 1104 | 29,male,38.94,1,no,southeast,3471.4096 1105 | 58,male,36.08,0,no,southeast,11363.2832 1106 | 37,male,29.8,0,no,southwest,20420.60465 1107 | 54,female,31.24,0,no,southeast,10338.9316 1108 | 49,female,29.925,0,no,northwest,8988.15875 1109 | 50,female,26.22,2,no,northwest,10493.9458 1110 | 26,male,30,1,no,southwest,2904.088 1111 | 45,male,20.35,3,no,southeast,8605.3615 1112 | 54,female,32.3,1,no,northeast,11512.405 1113 | 38,male,38.39,3,yes,southeast,41949.2441 1114 | 48,female,25.85,3,yes,southeast,24180.9335 1115 | 28,female,26.315,3,no,northwest,5312.16985 1116 | 23,male,24.51,0,no,northeast,2396.0959 1117 | 55,male,32.67,1,no,southeast,10807.4863 1118 | 41,male,29.64,5,no,northeast,9222.4026 1119 | 25,male,33.33,2,yes,southeast,36124.5737 1120 | 33,male,35.75,1,yes,southeast,38282.7495 1121 | 30,female,19.95,3,no,northwest,5693.4305 1122 | 23,female,31.4,0,yes,southwest,34166.273 1123 | 46,male,38.17,2,no,southeast,8347.1643 1124 | 53,female,36.86,3,yes,northwest,46661.4424 1125 | 27,female,32.395,1,no,northeast,18903.49141 1126 | 23,female,42.75,1,yes,northeast,40904.1995 1127 | 63,female,25.08,0,no,northwest,14254.6082 1128 | 55,male,29.9,0,no,southwest,10214.636 1129 | 35,female,35.86,2,no,southeast,5836.5204 1130 | 34,male,32.8,1,no,southwest,14358.36437 1131 | 19,female,18.6,0,no,southwest,1728.897 1132 | 39,female,23.87,5,no,southeast,8582.3023 1133 | 27,male,45.9,2,no,southwest,3693.428 1134 | 57,male,40.28,0,no,northeast,20709.02034 1135 | 52,female,18.335,0,no,northwest,9991.03765 1136 | 28,male,33.82,0,no,northwest,19673.33573 1137 | 50,female,28.12,3,no,northwest,11085.5868 1138 | 44,female,25,1,no,southwest,7623.518 1139 | 26,female,22.23,0,no,northwest,3176.2877 1140 | 33,male,30.25,0,no,southeast,3704.3545 1141 | 19,female,32.49,0,yes,northwest,36898.73308 1142 | 50,male,37.07,1,no,southeast,9048.0273 1143 | 41,female,32.6,3,no,southwest,7954.517 1144 | 52,female,24.86,0,no,southeast,27117.99378 1145 | 39,male,32.34,2,no,southeast,6338.0756 1146 | 50,male,32.3,2,no,southwest,9630.397 1147 | 52,male,32.775,3,no,northwest,11289.10925 1148 | 60,male,32.8,0,yes,southwest,52590.82939 1149 | 20,female,31.92,0,no,northwest,2261.5688 1150 | 55,male,21.5,1,no,southwest,10791.96 1151 | 42,male,34.1,0,no,southwest,5979.731 1152 | 18,female,30.305,0,no,northeast,2203.73595 1153 | 58,female,36.48,0,no,northwest,12235.8392 1154 | 43,female,32.56,3,yes,southeast,40941.2854 1155 | 35,female,35.815,1,no,northwest,5630.45785 1156 | 48,female,27.93,4,no,northwest,11015.1747 1157 | 36,female,22.135,3,no,northeast,7228.21565 1158 | 19,male,44.88,0,yes,southeast,39722.7462 1159 | 23,female,23.18,2,no,northwest,14426.07385 1160 | 20,female,30.59,0,no,northeast,2459.7201 1161 | 32,female,41.1,0,no,southwest,3989.841 1162 | 43,female,34.58,1,no,northwest,7727.2532 1163 | 34,male,42.13,2,no,southeast,5124.1887 1164 | 30,male,38.83,1,no,southeast,18963.17192 1165 | 18,female,28.215,0,no,northeast,2200.83085 1166 | 41,female,28.31,1,no,northwest,7153.5539 1167 | 35,female,26.125,0,no,northeast,5227.98875 1168 | 57,male,40.37,0,no,southeast,10982.5013 1169 | 29,female,24.6,2,no,southwest,4529.477 1170 | 32,male,35.2,2,no,southwest,4670.64 1171 | 37,female,34.105,1,no,northwest,6112.35295 1172 | 18,male,27.36,1,yes,northeast,17178.6824 1173 | 43,female,26.7,2,yes,southwest,22478.6 1174 | 56,female,41.91,0,no,southeast,11093.6229 1175 | 38,male,29.26,2,no,northwest,6457.8434 1176 | 29,male,32.11,2,no,northwest,4433.9159 1177 | 22,female,27.1,0,no,southwest,2154.361 1178 | 52,female,24.13,1,yes,northwest,23887.6627 1179 | 40,female,27.4,1,no,southwest,6496.886 1180 | 23,female,34.865,0,no,northeast,2899.48935 1181 | 31,male,29.81,0,yes,southeast,19350.3689 1182 | 42,female,41.325,1,no,northeast,7650.77375 1183 | 24,female,29.925,0,no,northwest,2850.68375 1184 | 25,female,30.3,0,no,southwest,2632.992 1185 | 48,female,27.36,1,no,northeast,9447.3824 1186 | 23,female,28.49,1,yes,southeast,18328.2381 1187 | 45,male,23.56,2,no,northeast,8603.8234 1188 | 20,male,35.625,3,yes,northwest,37465.34375 1189 | 62,female,32.68,0,no,northwest,13844.7972 1190 | 43,female,25.27,1,yes,northeast,21771.3423 1191 | 23,female,28,0,no,southwest,13126.67745 1192 | 31,female,32.775,2,no,northwest,5327.40025 1193 | 41,female,21.755,1,no,northeast,13725.47184 1194 | 58,female,32.395,1,no,northeast,13019.16105 1195 | 48,female,36.575,0,no,northwest,8671.19125 1196 | 31,female,21.755,0,no,northwest,4134.08245 1197 | 19,female,27.93,3,no,northwest,18838.70366 1198 | 19,female,30.02,0,yes,northwest,33307.5508 1199 | 41,male,33.55,0,no,southeast,5699.8375 1200 | 40,male,29.355,1,no,northwest,6393.60345 1201 | 31,female,25.8,2,no,southwest,4934.705 1202 | 37,male,24.32,2,no,northwest,6198.7518 1203 | 46,male,40.375,2,no,northwest,8733.22925 1204 | 22,male,32.11,0,no,northwest,2055.3249 1205 | 51,male,32.3,1,no,northeast,9964.06 1206 | 18,female,27.28,3,yes,southeast,18223.4512 1207 | 35,male,17.86,1,no,northwest,5116.5004 1208 | 59,female,34.8,2,no,southwest,36910.60803 1209 | 36,male,33.4,2,yes,southwest,38415.474 1210 | 37,female,25.555,1,yes,northeast,20296.86345 1211 | 59,male,37.1,1,no,southwest,12347.172 1212 | 36,male,30.875,1,no,northwest,5373.36425 1213 | 39,male,34.1,2,no,southeast,23563.01618 1214 | 18,male,21.47,0,no,northeast,1702.4553 1215 | 52,female,33.3,2,no,southwest,10806.839 1216 | 27,female,31.255,1,no,northwest,3956.07145 1217 | 18,male,39.14,0,no,northeast,12890.05765 1218 | 40,male,25.08,0,no,southeast,5415.6612 1219 | 29,male,37.29,2,no,southeast,4058.1161 1220 | 46,female,34.6,1,yes,southwest,41661.602 1221 | 38,female,30.21,3,no,northwest,7537.1639 1222 | 30,female,21.945,1,no,northeast,4718.20355 1223 | 40,male,24.97,2,no,southeast,6593.5083 1224 | 50,male,25.3,0,no,southeast,8442.667 1225 | 20,female,24.42,0,yes,southeast,26125.67477 1226 | 41,male,23.94,1,no,northeast,6858.4796 1227 | 33,female,39.82,1,no,southeast,4795.6568 1228 | 38,male,16.815,2,no,northeast,6640.54485 1229 | 42,male,37.18,2,no,southeast,7162.0122 1230 | 56,male,34.43,0,no,southeast,10594.2257 1231 | 58,male,30.305,0,no,northeast,11938.25595 1232 | 52,male,34.485,3,yes,northwest,60021.39897 1233 | 20,female,21.8,0,yes,southwest,20167.33603 1234 | 54,female,24.605,3,no,northwest,12479.70895 1235 | 58,male,23.3,0,no,southwest,11345.519 1236 | 45,female,27.83,2,no,southeast,8515.7587 1237 | 26,male,31.065,0,no,northwest,2699.56835 1238 | 63,female,21.66,0,no,northeast,14449.8544 1239 | 58,female,28.215,0,no,northwest,12224.35085 1240 | 37,male,22.705,3,no,northeast,6985.50695 1241 | 25,female,42.13,1,no,southeast,3238.4357 1242 | 52,male,41.8,2,yes,southeast,47269.854 1243 | 64,male,36.96,2,yes,southeast,49577.6624 1244 | 22,female,21.28,3,no,northwest,4296.2712 1245 | 28,female,33.11,0,no,southeast,3171.6149 1246 | 18,male,33.33,0,no,southeast,1135.9407 1247 | 28,male,24.3,5,no,southwest,5615.369 1248 | 45,female,25.7,3,no,southwest,9101.798 1249 | 33,male,29.4,4,no,southwest,6059.173 1250 | 18,female,39.82,0,no,southeast,1633.9618 1251 | 32,male,33.63,1,yes,northeast,37607.5277 1252 | 24,male,29.83,0,yes,northeast,18648.4217 1253 | 19,male,19.8,0,no,southwest,1241.565 1254 | 20,male,27.3,0,yes,southwest,16232.847 1255 | 40,female,29.3,4,no,southwest,15828.82173 1256 | 34,female,27.72,0,no,southeast,4415.1588 1257 | 42,female,37.9,0,no,southwest,6474.013 1258 | 51,female,36.385,3,no,northwest,11436.73815 1259 | 54,female,27.645,1,no,northwest,11305.93455 1260 | 55,male,37.715,3,no,northwest,30063.58055 1261 | 52,female,23.18,0,no,northeast,10197.7722 1262 | 32,female,20.52,0,no,northeast,4544.2348 1263 | 28,male,37.1,1,no,southwest,3277.161 1264 | 41,female,28.05,1,no,southeast,6770.1925 1265 | 43,female,29.9,1,no,southwest,7337.748 1266 | 49,female,33.345,2,no,northeast,10370.91255 1267 | 64,male,23.76,0,yes,southeast,26926.5144 1268 | 55,female,30.5,0,no,southwest,10704.47 1269 | 24,male,31.065,0,yes,northeast,34254.05335 1270 | 20,female,33.3,0,no,southwest,1880.487 1271 | 45,male,27.5,3,no,southwest,8615.3 1272 | 26,male,33.915,1,no,northwest,3292.52985 1273 | 25,female,34.485,0,no,northwest,3021.80915 1274 | 43,male,25.52,5,no,southeast,14478.33015 1275 | 35,male,27.61,1,no,southeast,4747.0529 1276 | 26,male,27.06,0,yes,southeast,17043.3414 1277 | 57,male,23.7,0,no,southwest,10959.33 1278 | 22,female,30.4,0,no,northeast,2741.948 1279 | 32,female,29.735,0,no,northwest,4357.04365 1280 | 39,male,29.925,1,yes,northeast,22462.04375 1281 | 25,female,26.79,2,no,northwest,4189.1131 1282 | 48,female,33.33,0,no,southeast,8283.6807 1283 | 47,female,27.645,2,yes,northwest,24535.69855 1284 | 18,female,21.66,0,yes,northeast,14283.4594 1285 | 18,male,30.03,1,no,southeast,1720.3537 1286 | 61,male,36.3,1,yes,southwest,47403.88 1287 | 47,female,24.32,0,no,northeast,8534.6718 1288 | 28,female,17.29,0,no,northeast,3732.6251 1289 | 36,female,25.9,1,no,southwest,5472.449 1290 | 20,male,39.4,2,yes,southwest,38344.566 1291 | 44,male,34.32,1,no,southeast,7147.4728 1292 | 38,female,19.95,2,no,northeast,7133.9025 1293 | 19,male,34.9,0,yes,southwest,34828.654 1294 | 21,male,23.21,0,no,southeast,1515.3449 1295 | 46,male,25.745,3,no,northwest,9301.89355 1296 | 58,male,25.175,0,no,northeast,11931.12525 1297 | 20,male,22,1,no,southwest,1964.78 1298 | 18,male,26.125,0,no,northeast,1708.92575 1299 | 28,female,26.51,2,no,southeast,4340.4409 1300 | 33,male,27.455,2,no,northwest,5261.46945 1301 | 19,female,25.745,1,no,northwest,2710.82855 1302 | 45,male,30.36,0,yes,southeast,62592.87309 1303 | 62,male,30.875,3,yes,northwest,46718.16325 1304 | 25,female,20.8,1,no,southwest,3208.787 1305 | 43,male,27.8,0,yes,southwest,37829.7242 1306 | 42,male,24.605,2,yes,northeast,21259.37795 1307 | 24,female,27.72,0,no,southeast,2464.6188 1308 | 29,female,21.85,0,yes,northeast,16115.3045 1309 | 32,male,28.12,4,yes,northwest,21472.4788 1310 | 25,female,30.2,0,yes,southwest,33900.653 1311 | 41,male,32.2,2,no,southwest,6875.961 1312 | 42,male,26.315,1,no,northwest,6940.90985 1313 | 33,female,26.695,0,no,northwest,4571.41305 1314 | 34,male,42.9,1,no,southwest,4536.259 1315 | 19,female,34.7,2,yes,southwest,36397.576 1316 | 30,female,23.655,3,yes,northwest,18765.87545 1317 | 18,male,28.31,1,no,northeast,11272.33139 1318 | 19,female,20.6,0,no,southwest,1731.677 1319 | 18,male,53.13,0,no,southeast,1163.4627 1320 | 35,male,39.71,4,no,northeast,19496.71917 1321 | 39,female,26.315,2,no,northwest,7201.70085 1322 | 31,male,31.065,3,no,northwest,5425.02335 1323 | 62,male,26.695,0,yes,northeast,28101.33305 1324 | 62,male,38.83,0,no,southeast,12981.3457 1325 | 42,female,40.37,2,yes,southeast,43896.3763 1326 | 31,male,25.935,1,no,northwest,4239.89265 1327 | 61,male,33.535,0,no,northeast,13143.33665 1328 | 42,female,32.87,0,no,northeast,7050.0213 1329 | 51,male,30.03,1,no,southeast,9377.9047 1330 | 23,female,24.225,2,no,northeast,22395.74424 1331 | 52,male,38.6,2,no,southwest,10325.206 1332 | 57,female,25.74,2,no,southeast,12629.1656 1333 | 23,female,33.4,0,no,southwest,10795.93733 1334 | 52,female,44.7,3,no,southwest,11411.685 1335 | 50,male,30.97,3,no,northwest,10600.5483 1336 | 18,female,31.92,0,no,northeast,2205.9808 1337 | 18,female,36.85,0,no,southeast,1629.8335 1338 | 21,female,25.8,0,no,southwest,2007.945 1339 | 61,female,29.07,0,yes,northwest,29141.3603 -------------------------------------------------------------------------------- /usedcars.csv: -------------------------------------------------------------------------------- 1 | year,model,price,mileage,color,transmission 2 | 2011,SEL,21992,7413,Yellow,AUTO 3 | 2011,SEL,20995,10926,Gray,AUTO 4 | 2011,SEL,19995,7351,Silver,AUTO 5 | 2011,SEL,17809,11613,Gray,AUTO 6 | 2012,SE,17500,8367,White,AUTO 7 | 2010,SEL,17495,25125,Silver,AUTO 8 | 2011,SEL,17000,27393,Blue,AUTO 9 | 2010,SEL,16995,21026,Silver,AUTO 10 | 2011,SES,16995,32655,Silver,AUTO 11 | 2010,SES,16995,36116,Silver,AUTO 12 | 2010,SES,16995,40539,Black,AUTO 13 | 2011,SES,16992,9199,Silver,AUTO 14 | 2011,SEL,16950,9388,Green,AUTO 15 | 2010,SES,16950,32058,Red,AUTO 16 | 2011,SE,16000,15367,White,AUTO 17 | 2011,SES,15999,16368,Blue,AUTO 18 | 2010,SEL,15999,19926,Silver,AUTO 19 | 2010,SES,15995,36049,Silver,AUTO 20 | 2011,SEL,15992,11662,Blue,AUTO 21 | 2011,SEL,15992,32069,Silver,AUTO 22 | 2010,SES,15988,16035,Silver,MANUAL 23 | 2010,SEL,15980,39943,White,AUTO 24 | 2011,SE,15899,36685,Silver,AUTO 25 | 2010,SEL,15889,24920,Black,AUTO 26 | 2009,SEL,15688,20019,Blue,AUTO 27 | 2010,SE,15500,29338,Blue,AUTO 28 | 2010,SE,15499,7784,Black,AUTO 29 | 2010,SE,15499,35636,Black,AUTO 30 | 2010,SES,15298,22029,Gray,AUTO 31 | 2009,SEL,14999,33107,Silver,AUTO 32 | 2010,SES,14999,36306,Red,AUTO 33 | 2009,SE,14995,34419,Black,MANUAL 34 | 2011,SE,14992,4867,Black,AUTO 35 | 2011,SEL,14992,18948,Black,AUTO 36 | 2009,SES,14992,24030,Red,AUTO 37 | 2010,SEL,14990,33036,Black,AUTO 38 | 2011,SE,14989,23967,White,AUTO 39 | 2010,SE,14906,37905,Silver,AUTO 40 | 2010,SE,14900,28955,White,AUTO 41 | 2010,SE,14893,11165,White,AUTO 42 | 2010,SES,14761,44813,Black,AUTO 43 | 2010,SES,14699,36469,Gray,AUTO 44 | 2010,SES,14677,22143,Black,MANUAL 45 | 2009,SES,14549,34046,Silver,AUTO 46 | 2010,SE,14499,32703,Red,AUTO 47 | 2010,SES,14495,35894,Silver,AUTO 48 | 2010,SE,14495,38275,Black,AUTO 49 | 2010,SE,14480,24855,Blue,AUTO 50 | 2009,SEL,14477,29501,Gray,MANUAL 51 | 2009,SEL,14355,35394,Red,AUTO 52 | 2010,SE,14299,36447,Black,AUTO 53 | 2010,SES,14275,35318,Black,AUTO 54 | 2010,SES,14000,24929,Silver,AUTO 55 | 2009,SE,13999,23785,Red,AUTO 56 | 2010,SE,13997,15167,Black,MANUAL 57 | 2010,SE,13995,13541,Silver,AUTO 58 | 2010,SE,13995,20278,Black,MANUAL 59 | 2009,SES,13995,46126,Black,AUTO 60 | 2009,SES,13995,53733,Silver,AUTO 61 | 2009,SES,13992,21108,Silver,AUTO 62 | 2010,SE,13992,21721,Green,AUTO 63 | 2010,SES,13992,26716,Gray,MANUAL 64 | 2009,SES,13992,26887,Black,AUTO 65 | 2009,SE,13991,36252,Silver,MANUAL 66 | 2009,SE,13950,9450,Black,AUTO 67 | 2010,SE,13950,31414,Black,AUTO 68 | 2010,SE,13950,37185,Blue,AUTO 69 | 2010,SE,13895,48174,Gray,AUTO 70 | 2009,SE,13888,50533,White,AUTO 71 | 2009,SE,13845,36713,Blue,AUTO 72 | 2009,SES,13799,34888,Black,AUTO 73 | 2009,SES,13742,38380,Black,AUTO 74 | 2010,SEL,13687,35574,Gray,AUTO 75 | 2009,SEL,13663,27528,Silver,AUTO 76 | 2010,SES,13599,33302,Red,AUTO 77 | 2009,SEL,13584,43369,Red,AUTO 78 | 2009,SES,13425,64055,Black,AUTO 79 | 2010,SE,13384,41342,Gray,AUTO 80 | 2010,SE,13383,34503,Black,AUTO 81 | 2010,SE,13350,16573,Blue,AUTO 82 | 2009,SES,12999,32403,Blue,AUTO 83 | 2009,SE,12998,34846,Blue,AUTO 84 | 2007,SE,12997,39665,Red,AUTO 85 | 2010,SE,12995,21325,Black,AUTO 86 | 2010,SE,12995,32743,Black,MANUAL 87 | 2010,SE,12995,40058,White,MANUAL 88 | 2009,SE,12995,42325,Blue,AUTO 89 | 2009,SE,12995,44518,Red,AUTO 90 | 2009,SE,12995,53902,Gray,AUTO 91 | 2008,SE,12995,127327,Red,AUTO 92 | 2009,SE,12992,27136,Gray,AUTO 93 | 2009,SES,12990,45813,Silver,AUTO 94 | 2009,SE,12988,31538,Gray,AUTO 95 | 2010,SE,12849,29517,Silver,AUTO 96 | 2010,SE,12780,35871,Black,AUTO 97 | 2008,SE,12777,49787,Black,MANUAL 98 | 2008,SES,12704,36323,Blue,AUTO 99 | 2009,SES,12595,39211,Blue,AUTO 100 | 2009,SE,12507,44789,Gray,AUTO 101 | 2008,SE,12500,45996,White,MANUAL 102 | 2009,SE,12500,54988,White,MANUAL 103 | 2009,SE,12280,29288,Red,AUTO 104 | 2009,SE,11999,36124,Blue,AUTO 105 | 2009,SE,11992,32559,Black,MANUAL 106 | 2009,SES,11984,59048,Black,AUTO 107 | 2009,SE,11980,55170,Red,AUTO 108 | 2010,SE,11792,39722,Green,AUTO 109 | 2008,SE,11754,38286,Black,AUTO 110 | 2008,SES,11749,57341,Red,AUTO 111 | 2008,SES,11495,82221,Silver,AUTO 112 | 2008,SE,11450,85229,Red,MANUAL 113 | 2009,SES,10995,42834,Red,AUTO 114 | 2005,SES,10995,69415,Blue,AUTO 115 | 2009,SEL,10995,78264,Gray,AUTO 116 | 2009,SE,10979,60709,Red,AUTO 117 | 2008,SE,10955,39643,Gray,AUTO 118 | 2009,SE,10955,40180,Gold,AUTO 119 | 2008,SE,10836,40330,Green,MANUAL 120 | 2007,SES,10815,77231,Red,AUTO 121 | 2007,SE,10770,72937,Silver,MANUAL 122 | 2010,SE,10717,64199,Black,AUTO 123 | 2007,SES,10000,63926,Red,AUTO 124 | 2007,SES,9999,74427,Silver,AUTO 125 | 2007,SES,9999,78948,Black,MANUAL 126 | 2006,SE,9995,51311,Silver,AUTO 127 | 2008,SE,9995,95364,White,AUTO 128 | 2008,SE,9992,74109,White,AUTO 129 | 2007,SE,9651,63296,Blue,AUTO 130 | 2007,SES,9000,80605,Red,AUTO 131 | 2006,SE,8999,49656,Silver,AUTO 132 | 2007,SE,8996,48652,Silver,MANUAL 133 | 2006,SE,8800,71331,White,AUTO 134 | 2008,SE,8495,106171,Black,AUTO 135 | 2008,SE,8494,68901,Silver,AUTO 136 | 2009,SE,8480,70036,White,MANUAL 137 | 2007,SES,7999,81596,Yellow,MANUAL 138 | 2006,SES,7995,35000,Black,MANUAL 139 | 2006,SES,7995,97987,Red,AUTO 140 | 2003,SES,7900,96000,White,AUTO 141 | 2005,SES,7488,59013,Red,AUTO 142 | 2004,SE,6999,105714,Silver,AUTO 143 | 2007,SE,6995,86862,White,AUTO 144 | 2000,SE,6980,60161,Green,AUTO 145 | 2004,SES,6980,101130,Gray,AUTO 146 | 2004,SES,6950,119720,Black,AUTO 147 | 2006,SES,6200,95000,Silver,AUTO 148 | 2002,SE,5995,87003,Red,AUTO 149 | 2000,SE,5980,96841,Red,AUTO 150 | 2001,SE,4899,151479,Yellow,AUTO 151 | 2000,SE,3800,109259,Red,AUTO 152 | --------------------------------------------------------------------------------