├── testfiles ├── Cycling_09-43-10.ttbin └── Cycling_09-43-10.csv ├── README.md └── ttbin.c /testfiles/Cycling_09-43-10.ttbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyKaon/TomTom-ttbin-file-format/HEAD/testfiles/Cycling_09-43-10.ttbin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #_DEPRECATED_ 2 | Due to my employer's intellectual property policy I can't work on this project anymore. I recommend forking it if you would like updates. 3 | 4 | --- 5 | 6 | My guesses so far about the .ttbin file format generated by the TomTom cardio GPS watches. 7 | 8 | 9 | Notes: 10 | ------ 11 | 0. The file format is a repetition of 1 byte tags followed by N bytes of data with N depending on the tag value. 12 | 1. The GPS coordinates are a bit different from what the TomTom software extracts as it seems to smooth the data. 13 | 2. A BPM of zero means that the was no reading, the TomTom software tends to use and old value instead. 14 | 3. The meaning of some tags and parts of the data is still unknown. 15 | 16 | To compile: 17 | ----------- 18 | gcc -std=c99 ttbin.c 19 | -------------------------------------------------------------------------------- /ttbin.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | // Header (Tag 0x20) 7 | typedef struct __attribute__((__packed__)) { 8 | uint8_t file_format; // Currently 07, have also seen 05 9 | uint8_t version[4]; // Watch software version. 10 | uint16_t unkown1; 11 | uint32_t timestamp; // Seconds since 1/1/1970 12 | uint8_t unknown2[105]; 13 | } Header; 14 | 15 | // Record lengths (Tag 0x16) 16 | // This might be variable length??? 17 | // Each entry is { uint8_t tag; uint16_t (length + 1); } 18 | // for example: 21 07 00 19 | typedef struct __attribute__((__packed__)) { 20 | uint8_t entries[69]; 21 | } RecordLengths; 22 | 23 | // Tag 0x22 24 | typedef struct __attribute__((__packed__)) { 25 | int32_t latitude; // in 1e-7 degrees 26 | int32_t longitude; // in 1e-7 degrees 27 | uint16_t heading; // degrees * 100, 0 = North, 9000 = East... 28 | uint16_t speed; // 100 * m/s 29 | uint32_t time; // seconds since 1970 30 | uint16_t calories; 31 | float inc_distance; 32 | float cum_distance; 33 | uint8_t cycles; // Tomtom CSV calls it "cycles", maybe steps? 34 | } GPS; 35 | 36 | // Tag 0x25 37 | typedef struct __attribute__((__packed__)) { 38 | uint8_t heart_rate; 39 | uint8_t u1; 40 | uint32_t time; 41 | } HeartRate; 42 | 43 | // Tag 0x21 44 | typedef struct __attribute__((__packed__)) { 45 | uint8_t lap; 46 | uint8_t activity; 47 | uint32_t time; 48 | } Lap; 49 | 50 | typedef struct __attribute__((__packed__)) { 51 | uint8_t u[2]; 52 | uint32_t time; 53 | } UnknownAndTime; 54 | 55 | // Tag 0x27 56 | typedef struct __attribute__((__packed__)) { 57 | uint32_t activity_type; // 7 = treadmill? 58 | uint32_t distance; // meters. 59 | uint32_t duration; // seconds (add 1). 60 | uint32_t calories; 61 | } Summary; 62 | 63 | // Tag 0x32 64 | typedef struct __attribute__((__packed__)) { 65 | uint32_t time; // seconds since 1970 66 | float distance; // meters 67 | uint32_t calories; 68 | uint32_t steps; // steps? 69 | uint16_t u2; 70 | } Treadmill; 71 | 72 | // Tag 0x23 ?? 73 | typedef struct __attribute__((__packed__)) { 74 | uint16_t u1; 75 | uint16_t u2; 76 | uint8_t u3; 77 | uint8_t u4[4]; 78 | uint8_t u5[4]; 79 | uint16_t u6; 80 | uint8_t u7[4]; 81 | } R23; 82 | 83 | typedef struct __attribute__((__packed__)) { 84 | uint32_t time; // Seconds since 1/1/1970 85 | uint8_t u[14]; 86 | uint32_t calories; 87 | } Swim; 88 | 89 | void ReadStruct(FILE* f, void* data, int size) { 90 | if (fread(data, 1, size, f) != size) { 91 | perror("Failed to read the file"); 92 | exit(-1); 93 | } 94 | } 95 | 96 | // Activities: 97 | // 0: Run 98 | // 1: Cycle 99 | // 2: Swim 100 | // 7: Treadmill 101 | 102 | const char* GetActivityType(uint8_t activity) { 103 | static char type[128]; 104 | switch(activity) { 105 | case 0: return "Run"; 106 | case 1: return "Cycle"; 107 | case 2: return "Swim"; 108 | case 7: return "Treadmill"; 109 | default: 110 | snprintf(type, sizeof(type), "Type %i", activity); 111 | return type; 112 | } 113 | } 114 | 115 | const char* GetGMTTime(uint32_t seconds) { 116 | time_t tt = seconds; 117 | static char buffer[128]; 118 | if (strftime(buffer, sizeof(buffer), "%F %T", gmtime(&tt)) > 0) { 119 | return buffer; 120 | } 121 | return ""; 122 | } 123 | 124 | const char* GetLocalTime(uint32_t seconds) { 125 | time_t tt = seconds; 126 | static char buffer[128]; 127 | if (strftime(buffer, sizeof(buffer), "%F %T", localtime(&tt)) > 0) { 128 | return buffer; 129 | } 130 | return ""; 131 | } 132 | 133 | void ReadAndDump(int size, FILE* f) { 134 | uint8_t buffer[256]; 135 | if (fread(buffer, 1, size, f) != size) { 136 | perror("Failed to read the file"); 137 | exit(-1); 138 | } 139 | for (int i = 0; i < size; ++i) { 140 | printf(" %02X", buffer[i]); 141 | if (i % 32 == 31) { 142 | printf("\n"); 143 | } 144 | } 145 | if (size % 32 != 0) { 146 | printf("\n"); 147 | } 148 | } 149 | 150 | void Dump(const uint8_t* data, int size) { 151 | for (int i = 0; i < size; ++i) { 152 | printf(" %02X", data[i]); 153 | if (i % 32 == 31) { 154 | printf("\n"); 155 | } 156 | } 157 | if (size % 32 != 0) { 158 | printf("\n"); 159 | } 160 | } 161 | 162 | int main(int argc, char** argv) { 163 | if (argc < 2) { 164 | printf("Need the filename.\n"); 165 | return -1; 166 | } 167 | 168 | FILE* f = fopen(argv[1], "r"); 169 | if (f == NULL) { 170 | printf("Failed to open: %s\n", argv[1]); 171 | return -1; 172 | } 173 | 174 | uint8_t buffer[255]; 175 | 176 | Header header; 177 | RecordLengths record_lengths; 178 | GPS gps; 179 | HeartRate heart; 180 | Summary summary; 181 | Treadmill treadmill; 182 | Swim swim; 183 | Lap lap; 184 | UnknownAndTime r35; 185 | R23 r23; 186 | while(!feof(f)) { 187 | if (fread(buffer, 1, 1, f) < 1) { 188 | return 0; 189 | } 190 | uint8_t tag = buffer[0]; 191 | switch(tag) { 192 | case 0x20: 193 | ReadStruct(f, &header, sizeof(header)); 194 | printf("[%s] Header: file format %i, watch version (%i,%i,%i,%i)\n", 195 | GetGMTTime(header.timestamp), header.file_format, 196 | header.version[0], header.version[1], 197 | header.version[2], header.version[3]); 198 | break; 199 | 200 | case 0x16: 201 | ReadStruct(f, &record_lengths, sizeof(record_lengths)); 202 | printf("Record lengths (ignored)\n"); 203 | break; 204 | 205 | case 0x21: 206 | ReadStruct(f, &lap, sizeof(lap)); 207 | printf("[%s] Lap: %i activity: %s\n", GetGMTTime(lap.time), lap.lap, 208 | GetActivityType(lap.activity)); 209 | break; 210 | 211 | case 0x22: 212 | printf("\n"); 213 | ReadStruct(f, &gps, sizeof(gps)); 214 | if (gps.time != 0xffffffff) { 215 | printf("[%s] GPS: Lat: %f, Long: %f, Speed: %.2f m/s, " 216 | "Cal: %i, Distance: %f m (+ %f m), Cycles: %i " 217 | "Heading %.2f\u00B0\n", 218 | GetLocalTime(gps.time), 219 | gps.latitude * 1e-7, gps.longitude * 1e-7, gps.speed * 0.01, 220 | gps.calories, gps.cycles, 221 | gps.cum_distance, gps.inc_distance, gps.heading * .01); 222 | } else { 223 | printf("No GPS lock\n"); 224 | } 225 | printf("\n"); 226 | break; 227 | 228 | case 0x23: 229 | ReadStruct(f, &r23, sizeof(r23)); 230 | printf("Tag 0x23: %04X %04X %02X\n", r23.u1, r23.u2, r23.u3); 231 | Dump((const uint8_t*)&r23, sizeof(r23)); 232 | break; 233 | 234 | case 0x25: 235 | ReadStruct(f, &heart, sizeof(heart)); 236 | printf("[%s] Heart BPM: %i\n", GetGMTTime(heart.time), 237 | heart.heart_rate); 238 | break; 239 | 240 | case 0x26: 241 | printf("Tag 0x26: "); 242 | ReadAndDump(6, f); 243 | break; 244 | 245 | case 0x27: 246 | ReadStruct(f, &summary, sizeof(summary)); 247 | printf("Summary:\n Activity type: %s\n Distance %im\n" 248 | " Duration: %i s\n Calories: %i\n", 249 | GetActivityType(summary.activity_type), summary.distance, 250 | summary.duration + 1, summary.calories); 251 | break; 252 | 253 | case 0x30: 254 | printf("Tag 0x30: "); 255 | ReadAndDump(2, f); 256 | break; 257 | 258 | case 0x32: 259 | ReadStruct(f, &treadmill, sizeof(Treadmill)); 260 | printf("[%s] Treadmill: Distance: %.2f m Calories: %i Steps: %i\n", 261 | GetGMTTime(treadmill.time), treadmill.distance, 262 | treadmill.calories, treadmill.steps); 263 | break; 264 | 265 | case 0x34: 266 | ReadStruct(f, &swim, sizeof(swim)); 267 | printf("Swim: %s Calories: %i\n", GetGMTTime(swim.time), 268 | swim.calories); 269 | for (int i = 0; i < sizeof(swim.u); ++i) { 270 | printf(" %02X", swim.u[i]); 271 | } 272 | printf("\n"); 273 | break; 274 | 275 | 276 | case 0x35: 277 | ReadStruct(f, &r35, sizeof(r35)); 278 | printf("Tag 0x35: %02X %02X %s\n", r35.u[0], r35.u[1], 279 | GetLocalTime(r35.time)); 280 | break; 281 | 282 | case 0x37: 283 | printf("Tag 0x37: "); 284 | ReadAndDump(1, f); 285 | break; 286 | 287 | default: 288 | printf("Unknow tag: %02X at %li\n", tag, ftell(f) - 1); 289 | break; 290 | } 291 | }; 292 | 293 | return 0; 294 | } 295 | -------------------------------------------------------------------------------- /testfiles/Cycling_09-43-10.csv: -------------------------------------------------------------------------------- 1 | time,activityType,lapNumber,distance,speed,calories,lat,long,elevation,heartRate,cycles 2 | 0,1,1,0.00,5.04,0,37.370023,-122.065358,47.00,142,0 3 | 1,1,1,5.50,4.73,0,37.369976,-122.065349,48.00,142,0 4 | 2,1,1,5.10,4.30,0,37.369939,-122.065358,48.00,142,0 5 | 3,1,1,4.90,4.15,0,37.369909,-122.065381,48.00,142,0 6 | 4,1,1,4.80,4.20,0,37.369885,-122.065417,48.00,144,0 7 | 5,1,1,4.80,4.38,0,37.369865,-122.065461,48.00,145,0 8 | 6,1,1,4.80,4.64,0,37.369847,-122.065510,48.00,146,0 9 | 7,1,1,4.90,4.89,1,37.369829,-122.065563,48.00,147,0 10 | 8,1,1,4.90,5.11,1,37.369810,-122.065615,48.00,147,0 11 | 9,1,1,5.00,5.35,1,37.369787,-122.065666,48.00,148,0 12 | 10,1,1,5.20,5.68,1,37.369764,-122.065724,48.00,148,0 13 | 11,1,1,5.40,5.97,1,37.369745,-122.065792,48.00,149,0 14 | 12,1,1,5.50,5.98,1,37.369740,-122.065860,47.00,149,0 15 | 13,1,1,5.60,5.89,2,37.369759,-122.065917,47.00,149,0 16 | 14,1,1,5.70,5.91,2,37.369797,-122.065963,47.00,148,0 17 | 15,1,1,5.80,6.14,2,37.369846,-122.066005,47.00,149,0 18 | 16,1,1,6.00,6.58,2,37.369898,-122.066047,47.00,149,0 19 | 17,1,1,6.20,7.04,2,37.369953,-122.066089,47.00,149,0 20 | 18,1,1,6.50,7.51,3,37.370011,-122.066133,47.00,150,0 21 | 19,1,1,6.90,7.98,3,37.370072,-122.066180,47.00,150,0 22 | 20,1,1,7.20,8.43,3,37.370137,-122.066230,47.00,149,0 23 | 21,1,1,7.20,8.84,3,37.370205,-122.066282,47.00,149,0 24 | 22,1,1,7.20,9.18,4,37.370276,-122.066336,47.00,150,0 25 | 23,1,1,7.20,9.51,4,37.370349,-122.066392,47.00,150,0 26 | 24,1,1,7.20,9.85,4,37.370425,-122.066450,46.00,149,0 27 | 25,1,1,7.80,10.22,5,37.370503,-122.066512,46.00,149,0 28 | 26,1,1,8.30,10.63,5,37.370585,-122.066579,46.00,149,0 29 | 27,1,1,8.90,11.13,6,37.370670,-122.066654,46.00,149,0 30 | 28,1,1,9.50,11.62,6,37.370759,-122.066731,46.00,149,0 31 | 29,1,1,10.00,11.95,6,37.370851,-122.066808,46.00,148,0 32 | 30,1,1,10.50,12.01,7,37.370945,-122.066879,46.00,148,0 33 | 31,1,1,10.90,11.90,7,37.371040,-122.066944,46.00,149,0 34 | 32,1,1,11.10,11.74,7,37.371137,-122.067005,46.00,149,0 35 | 33,1,1,11.30,11.56,8,37.371234,-122.067063,46.00,149,0 36 | 34,1,1,11.30,11.40,8,37.371331,-122.067118,46.00,149,0 37 | 35,1,1,11.40,11.27,8,37.371426,-122.067171,46.00,150,0 38 | 36,1,1,11.40,11.19,9,37.371520,-122.067225,46.00,150,0 39 | 37,1,1,11.40,11.12,9,37.371612,-122.067278,46.00,151,0 40 | 38,1,1,11.40,11.01,10,37.371702,-122.067331,46.00,151,0 41 | 39,1,1,11.30,10.82,10,37.371791,-122.067382,46.00,152,0 42 | 40,1,1,11.30,10.62,10,37.371880,-122.067431,46.00,152,0 43 | 41,1,1,11.20,10.49,11,37.371968,-122.067477,46.00,152,0 44 | 42,1,1,11.10,10.44,11,37.372056,-122.067519,46.00,152,0 45 | 43,1,1,11.00,10.34,11,37.372146,-122.067555,46.00,152,0 46 | 44,1,1,10.90,10.14,12,37.372236,-122.067587,46.00,152,0 47 | 45,1,1,10.70,9.89,12,37.372324,-122.067620,45.00,152,0 48 | 46,1,1,10.70,9.67,12,37.372404,-122.067662,45.00,152,0 49 | 47,1,1,10.70,9.46,13,37.372480,-122.067711,45.00,152,0 50 | 48,1,1,10.70,9.27,13,37.372552,-122.067766,45.00,152,0 51 | 49,1,1,32.40,8.80,14,37.372619,-122.067819,45.00,152,0 52 | 50,1,1,7.80,7.53,14,37.372677,-122.067866,45.00,152,0 53 | 51,1,1,6.10,5.87,14,37.372723,-122.067901,44.00,152,0 54 | 52,1,1,4.50,4.30,15,37.372758,-122.067924,44.00,153,0 55 | 53,1,1,3.10,2.91,15,37.372783,-122.067938,44.00,154,0 56 | 54,1,1,1.70,1.54,15,37.372798,-122.067947,44.00,154,0 57 | 55,1,1,0.90,0.75,15,37.372807,-122.067952,44.00,154,0 58 | 56,1,1,0.50,0.38,15,37.372810,-122.067954,44.00,154,0 59 | 57,1,1,0.30,0.08,15,37.372811,-122.067955,44.00,154,0 60 | 58,1,1,0.60,0.09,15,37.372811,-122.067956,44.00,155,0 61 | 59,1,1,0.00,0.26,15,37.372812,-122.067956,44.00,154,0 62 | 60,1,1,0.00,0.21,15,37.372812,-122.067957,44.00,153,0 63 | 61,1,1,0.00,0.22,15,37.372812,-122.067958,44.00,153,0 64 | 62,1,1,0.00,0.22,15,37.372813,-122.067958,44.00,153,0 65 | 63,1,1,0.00,0.30,15,37.372813,-122.067959,44.00,153,0 66 | 64,1,1,0.00,0.11,15,37.372813,-122.067959,44.00,152,0 67 | 65,1,1,0.00,0.02,15,37.372813,-122.067959,44.00,152,0 68 | 66,1,1,0.00,0.00,15,37.372813,-122.067960,44.00,151,0 69 | 67,1,1,0.00,0.00,15,37.372813,-122.067960,44.00,151,0 70 | 68,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,152,0 71 | 69,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,152,0 72 | 70,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,152,0 73 | 71,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,152,0 74 | 72,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,150,0 75 | 73,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,149,0 76 | 74,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,149,0 77 | 75,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,149,0 78 | 76,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,148,0 79 | 77,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,146,0 80 | 78,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,144,0 81 | 79,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,144,0 82 | 80,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 83 | 81,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 84 | 82,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 85 | 83,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 86 | 84,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 87 | 85,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 88 | 86,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 89 | 87,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 90 | 88,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 91 | 89,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 92 | 90,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 93 | 91,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 94 | 92,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 95 | 93,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 96 | 94,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 97 | 95,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 98 | 96,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 99 | 97,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 100 | 98,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 101 | 99,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 102 | 100,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 103 | 101,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 104 | 102,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,139,0 105 | 103,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,139,0 106 | 104,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,139,0 107 | 105,1,1,0.00,0.05,15,37.372814,-122.067961,44.00,140,0 108 | 106,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,140,0 109 | 107,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 110 | 108,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 111 | 109,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 112 | 110,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 113 | 111,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 114 | 112,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 115 | 113,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,143,0 116 | 114,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 117 | 115,1,1,0.00,0.09,15,37.372814,-122.067961,44.00,141,0 118 | 116,1,1,0.00,0.11,15,37.372814,-122.067961,44.00,141,0 119 | 117,1,1,0.00,0.03,15,37.372814,-122.067961,44.00,141,0 120 | 118,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 121 | 119,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,140,0 122 | 120,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,140,0 123 | 121,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,140,0 124 | 122,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,140,0 125 | 123,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 126 | 124,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 127 | 125,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 128 | 126,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 129 | 127,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 130 | 128,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 131 | 129,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 132 | 130,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 133 | 131,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 134 | 132,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 135 | 133,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 136 | 134,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 137 | 135,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 138 | 136,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,139,0 139 | 137,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,139,0 140 | 138,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 141 | 139,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 142 | 140,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 143 | 141,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,139,0 144 | 142,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,138,0 145 | 143,1,1,0.00,0.05,15,37.372814,-122.067961,44.00,138,0 146 | 144,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,138,0 147 | 145,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,138,0 148 | 146,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,137,0 149 | 147,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,137,0 150 | 148,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,137,0 151 | 149,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,137,0 152 | 150,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,136,0 153 | 151,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,133,0 154 | 152,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,133,0 155 | 153,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,131,0 156 | 154,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,129,0 157 | 155,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,128,0 158 | 156,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,127,0 159 | 157,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,127,0 160 | 158,1,1,0.00,0.11,15,37.372814,-122.067961,44.00,126,0 161 | 159,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,125,0 162 | 160,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 163 | 161,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 164 | 162,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 165 | 163,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 166 | 164,1,1,0.00,0.05,15,37.372814,-122.067961,44.00,125,0 167 | 165,1,1,0.00,0.12,15,37.372814,-122.067961,44.00,124,0 168 | 166,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,123,0 169 | 167,1,1,0.00,0.07,15,37.372814,-122.067961,44.00,123,0 170 | 168,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,122,0 171 | 169,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 172 | 170,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 173 | 171,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,122,0 174 | 172,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,123,0 175 | 173,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 176 | 174,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,125,0 177 | 175,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,124,0 178 | 176,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,124,0 179 | 177,1,1,0.00,0.12,15,37.372814,-122.067961,44.00,124,0 180 | 178,1,1,0.00,0.09,15,37.372814,-122.067961,44.00,124,0 181 | 179,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,124,0 182 | 180,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,124,0 183 | 181,1,1,0.00,0.19,15,37.372814,-122.067961,44.00,124,0 184 | 182,1,1,0.00,0.15,15,37.372814,-122.067961,44.00,123,0 185 | 183,1,1,0.00,0.19,15,37.372814,-122.067961,44.00,123,0 186 | 184,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,123,0 187 | 185,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,123,0 188 | 186,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 189 | 187,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 190 | 188,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 191 | 189,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,122,0 192 | 190,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,120,0 193 | 191,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,120,0 194 | 192,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,120,0 195 | 193,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,120,0 196 | 194,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,120,0 197 | 195,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,120,0 198 | 196,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,119,0 199 | 197,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,118,0 200 | 198,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,119,0 201 | 199,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,119,0 202 | 200,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,120,0 203 | 201,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,120,0 204 | 202,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,120,0 205 | 203,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,119,0 206 | 204,1,1,0.00,0.05,15,37.372814,-122.067960,44.00,119,0 207 | 205,1,1,0.00,0.08,15,37.372814,-122.067960,44.00,119,0 208 | 206,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,121,0 209 | 207,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,122,0 210 | 208,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,123,0 211 | 209,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,122,0 212 | 210,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,122,0 213 | 211,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,122,0 214 | 212,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,122,0 215 | 213,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,122,0 216 | 214,1,1,0.00,0.17,15,37.372814,-122.067960,44.00,123,0 217 | 215,1,1,0.00,0.05,15,37.372814,-122.067960,44.00,124,0 218 | 216,1,1,0.00,0.28,15,37.372814,-122.067960,44.00,124,0 219 | 217,1,1,0.00,0.27,15,37.372814,-122.067960,44.00,124,0 220 | 218,1,1,0.00,0.13,15,37.372814,-122.067960,44.00,124,0 221 | 219,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,124,0 222 | 220,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,124,0 223 | 221,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,124,0 224 | 222,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,124,0 225 | 223,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,124,0 226 | 224,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,125,0 227 | 225,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,127,0 228 | 226,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,127,0 229 | 227,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,127,0 230 | 228,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,128,0 231 | 229,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,127,0 232 | 230,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,127,0 233 | 231,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 234 | 232,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 235 | 233,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 236 | 234,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 237 | 235,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 238 | 236,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,125,0 239 | 237,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,125,0 240 | 238,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 241 | 239,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 242 | 240,1,1,0.00,0.04,15,37.372814,-122.067960,44.00,126,0 243 | 241,1,1,0.00,0.04,15,37.372814,-122.067960,44.00,126,0 244 | 242,1,1,0.00,0.11,15,37.372814,-122.067960,44.00,126,0 245 | 243,1,1,0.00,0.08,15,37.372814,-122.067960,44.00,126,0 246 | 244,1,1,0.00,0.01,15,37.372814,-122.067960,44.00,126,0 247 | 245,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 248 | 246,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 249 | 247,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 250 | 248,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,126,0 251 | 249,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,130,0 252 | 250,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,131,0 253 | 251,1,1,0.00,0.07,15,37.372814,-122.067960,44.00,132,0 254 | 252,1,1,0.00,0.14,15,37.372814,-122.067960,44.00,132,0 255 | 253,1,1,0.00,0.03,15,37.372814,-122.067960,44.00,133,0 256 | 254,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,134,0 257 | 255,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,134,0 258 | 256,1,1,0.00,0.01,15,37.372814,-122.067960,44.00,134,0 259 | 257,1,1,0.00,0.04,15,37.372814,-122.067960,44.00,135,0 260 | 258,1,1,0.00,0.01,15,37.372814,-122.067960,44.00,136,0 261 | 259,1,1,0.00,0.18,15,37.372814,-122.067960,44.00,136,0 262 | 260,1,1,0.00,0.12,15,37.372814,-122.067960,44.00,136,0 263 | 261,1,1,0.00,0.10,15,37.372814,-122.067960,44.00,136,0 264 | 262,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,137,0 265 | 263,1,1,0.00,0.16,15,37.372814,-122.067961,44.00,140,0 266 | 264,1,1,0.00,0.20,15,37.372814,-122.067961,44.00,141,0 267 | 265,1,1,0.00,0.07,15,37.372814,-122.067961,44.00,142,0 268 | 266,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,142,0 269 | 267,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,142,0 270 | 268,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 271 | 269,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 272 | 270,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 273 | 271,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 274 | 272,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 275 | 273,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 276 | 274,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,142,0 277 | 275,1,1,0.00,0.04,15,37.372814,-122.067961,44.00,142,0 278 | 276,1,1,0.00,0.01,15,37.372814,-122.067961,44.00,142,0 279 | 277,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 280 | 278,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 281 | 279,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 282 | 280,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 283 | 281,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 284 | 282,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 285 | 283,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 286 | 284,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 287 | 285,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 288 | 286,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 289 | 287,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,,0 290 | 288,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 291 | 289,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 292 | 290,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 293 | 291,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 294 | 292,1,1,0.00,0.07,15,37.372814,-122.067961,44.00,,0 295 | 293,1,1,0.00,0.08,15,37.372814,-122.067961,44.00,140,0 296 | 294,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,140,0 297 | 295,1,1,0.00,0.09,15,37.372814,-122.067961,44.00,140,0 298 | 296,1,1,0.00,0.02,15,37.372814,-122.067961,44.00,140,0 299 | 297,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 300 | 298,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,140,0 301 | 299,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 302 | 300,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,141,0 303 | 301,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,141,0 304 | 302,1,1,0.00,0.06,15,37.372814,-122.067961,44.00,141,0 305 | 303,1,1,0.00,0.03,15,37.372814,-122.067961,44.00,142,0 306 | 304,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,,0 307 | 305,1,1,0.00,0.00,15,37.372814,-122.067961,44.00,142,0 308 | 306,1,1,0.00,0.12,15,37.372814,-122.067961,44.00,143,0 309 | 307,1,1,0.00,0.03,15,37.372814,-122.067961,44.00,143,0 310 | 308,1,1,0.00,0.31,15,37.372814,-122.067961,44.00,,0 311 | 309,1,1,0.00,0.11,15,37.372814,-122.067961,44.00,143,0 312 | 310,1,1,0.00,0.16,15,37.372814,-122.067961,44.00,,0 313 | 311,1,1,0.00,0.11,15,37.372814,-122.067960,44.00,143,0 314 | 312,1,1,0.00,0.04,15,37.372814,-122.067960,44.00,143,0 315 | 313,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,144,0 316 | 314,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,144,0 317 | 315,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,,0 318 | 316,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,145,0 319 | 317,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,145,0 320 | 318,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,144,0 321 | 319,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,142,0 322 | 320,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,141,0 323 | 321,1,1,0.00,0.14,15,37.372814,-122.067960,44.00,141,0 324 | 322,1,1,0.00,0.43,15,37.372814,-122.067960,44.00,,0 325 | 323,1,1,0.00,0.13,15,37.372814,-122.067960,44.00,140,0 326 | 324,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,140,0 327 | 325,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,140,0 328 | 326,1,1,0.00,0.09,15,37.372814,-122.067960,44.00,140,0 329 | 327,1,1,0.00,0.28,15,37.372814,-122.067960,44.00,140,0 330 | 328,1,1,0.00,0.07,15,37.372814,-122.067960,44.00,139,0 331 | 329,1,1,0.00,0.29,15,37.372814,-122.067960,44.00,138,0 332 | 330,1,1,0.00,0.07,15,37.372814,-122.067960,44.00,138,0 333 | 331,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,138,0 334 | 332,1,1,0.00,0.01,15,37.372814,-122.067960,44.00,137,0 335 | 333,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,,0 336 | 334,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,137,0 337 | 335,1,1,0.00,0.05,15,37.372814,-122.067960,44.00,137,0 338 | 336,1,1,0.00,0.01,15,37.372814,-122.067960,44.00,137,0 339 | 337,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,137,0 340 | 338,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,137,0 341 | 339,1,1,0.00,0.13,15,37.372814,-122.067960,44.00,137,0 342 | 340,1,1,0.00,0.03,15,37.372814,-122.067960,44.00,137,0 343 | 341,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,137,0 344 | 342,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,137,0 345 | 343,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,136,0 346 | 344,1,1,0.00,0.02,15,37.372814,-122.067960,44.00,135,0 347 | 345,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,135,0 348 | 346,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,135,0 349 | 347,1,1,0.00,0.00,15,37.372814,-122.067960,44.00,135,0 350 | 348,1,1,0.00,0.00,15,37.372813,-122.067960,44.00,134,0 351 | 349,1,1,0.00,0.00,15,37.372812,-122.067959,44.00,134,0 352 | 350,1,1,0.00,0.00,15,37.372810,-122.067956,44.00,134,0 353 | 351,1,1,0.00,0.00,15,37.372805,-122.067951,44.00,134,0 354 | 352,1,1,0.00,0.00,15,37.372796,-122.067941,44.00,134,0 355 | 353,1,1,0.00,0.00,15,37.372792,-122.067937,44.00,132,0 356 | 354,1,1,0.00,0.00,15,37.372786,-122.067931,44.00,130,0 357 | 355,1,1,0.00,0.00,15,37.372780,-122.067924,44.00,130,0 358 | 356,1,1,0.00,0.00,15,37.372776,-122.067919,44.00,,0 359 | 357,1,1,0.00,0.24,15,37.372775,-122.067918,44.00,129,0 360 | 358,1,1,0.00,0.07,15,37.372775,-122.067918,44.00,129,0 361 | 359,1,1,0.00,0.04,15,37.372774,-122.067918,44.00,129,0 362 | 360,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,129,0 363 | 361,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,128,0 364 | 362,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,129,0 365 | 363,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,132,0 366 | 364,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,133,0 367 | 365,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,133,0 368 | 366,1,1,0.00,0.00,15,37.372774,-122.067918,44.00,134,0 369 | 367,1,1,0.00,0.00,15,37.372774,-122.067917,44.00,135,0 370 | 368,1,1,0.00,0.00,15,37.372773,-122.067919,44.00,135,0 371 | 369,1,1,0.00,1.57,15,37.372776,-122.067933,44.00,135,0 372 | 370,1,1,0.00,0.69,15,37.372777,-122.067943,44.00,135,0 373 | 371,1,1,0.30,0.08,15,37.372778,-122.067946,44.00,135,0 374 | 372,1,1,0.50,0.30,15,37.372778,-122.067947,44.00,135,0 375 | 373,1,1,0.30,0.20,15,37.372778,-122.067947,44.00,135,0 376 | 374,1,1,0.30,0.10,15,37.372778,-122.067949,44.00,135,0 377 | 375,1,1,0.00,0.04,15,37.372778,-122.067950,44.00,134,0 378 | 376,1,1,0.00,0.00,15,37.372778,-122.067952,44.00,134,0 379 | 377,1,1,0.00,0.16,15,37.372778,-122.067955,44.00,135,0 380 | 378,1,1,0.00,0.80,15,37.372778,-122.067957,44.00,135,0 381 | 379,1,1,0.00,0.68,15,37.372778,-122.067959,44.00,136,0 382 | 380,1,1,0.20,0.02,15,37.372778,-122.067960,44.00,136,0 383 | 381,1,1,0.50,0.31,15,37.372778,-122.067962,44.00,136,0 384 | 382,1,1,0.60,0.33,15,37.372778,-122.067963,44.00,137,0 385 | 383,1,1,0.00,0.07,16,37.372778,-122.067964,44.00,137,0 386 | 384,1,1,0.00,0.01,16,37.372777,-122.067964,44.00,139,0 387 | 385,1,1,0.00,0.00,16,37.372777,-122.067964,44.00,140,0 388 | 386,1,1,0.00,0.09,16,37.372777,-122.067965,44.00,140,0 389 | 387,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,140,0 390 | 388,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 391 | 389,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 392 | 390,1,1,0.00,0.04,16,37.372777,-122.067965,44.00,142,0 393 | 391,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,141,0 394 | 392,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 395 | 393,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 396 | 394,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 397 | 395,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 398 | 396,1,1,0.00,0.15,16,37.372777,-122.067965,44.00,142,0 399 | 397,1,1,0.00,0.04,16,37.372777,-122.067965,44.00,142,0 400 | 398,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 401 | 399,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 402 | 400,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 403 | 401,1,1,0.00,0.03,16,37.372777,-122.067965,44.00,143,0 404 | 402,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 405 | 403,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,144,0 406 | 404,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,148,0 407 | 405,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 408 | 406,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 409 | 407,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 410 | 408,1,1,0.00,0.20,16,37.372777,-122.067965,44.00,148,0 411 | 409,1,1,0.00,0.11,16,37.372777,-122.067965,44.00,148,0 412 | 410,1,1,0.00,0.15,16,37.372777,-122.067965,44.00,148,0 413 | 411,1,1,0.00,0.01,16,37.372777,-122.067965,44.00,149,0 414 | 412,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 415 | 413,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 416 | 414,1,1,0.00,0.10,16,37.372777,-122.067965,44.00,149,0 417 | 415,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,149,0 418 | 416,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 419 | 417,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,149,0 420 | 418,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,148,0 421 | 419,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,146,0 422 | 420,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 423 | 421,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 424 | 422,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,146,0 425 | 423,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,146,0 426 | 424,1,1,0.00,0.10,16,37.372777,-122.067965,44.00,146,0 427 | 425,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,147,0 428 | 426,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 429 | 427,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 430 | 428,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 431 | 429,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,148,0 432 | 430,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,147,0 433 | 431,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,145,0 434 | 432,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 435 | 433,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 436 | 434,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 437 | 435,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,143,0 438 | 436,1,1,0.00,0.18,16,37.372777,-122.067965,44.00,142,0 439 | 437,1,1,0.00,0.05,16,37.372777,-122.067965,44.00,142,0 440 | 438,1,1,0.00,0.01,16,37.372777,-122.067965,44.00,142,0 441 | 439,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 442 | 440,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,142,0 443 | 441,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 444 | 442,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 445 | 443,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 446 | 444,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 447 | 445,1,1,0.00,0.09,16,37.372777,-122.067965,44.00,141,0 448 | 446,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,140,0 449 | 447,1,1,0.00,0.16,16,37.372777,-122.067965,44.00,140,0 450 | 448,1,1,0.00,0.04,16,37.372777,-122.067965,44.00,139,0 451 | 449,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,139,0 452 | 450,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,139,0 453 | 451,1,1,0.00,0.10,16,37.372777,-122.067965,44.00,140,0 454 | 452,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,141,0 455 | 453,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,141,0 456 | 454,1,1,0.00,0.07,16,37.372777,-122.067965,44.00,141,0 457 | 455,1,1,0.00,0.01,16,37.372777,-122.067965,44.00,141,0 458 | 456,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,140,0 459 | 457,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,140,0 460 | 458,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,140,0 461 | 459,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,139,0 462 | 460,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 463 | 461,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 464 | 462,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 465 | 463,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 466 | 464,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 467 | 465,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 468 | 466,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 469 | 467,1,1,0.00,0.01,16,37.372777,-122.067965,44.00,137,0 470 | 468,1,1,0.00,0.25,16,37.372777,-122.067965,44.00,137,0 471 | 469,1,1,0.00,0.16,16,37.372777,-122.067965,44.00,137,0 472 | 470,1,1,0.00,0.22,16,37.372777,-122.067965,44.00,137,0 473 | 471,1,1,0.00,0.04,16,37.372777,-122.067965,44.00,137,0 474 | 472,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 475 | 473,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 476 | 474,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,136,0 477 | 475,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,136,0 478 | 476,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,135,0 479 | 477,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,135,0 480 | 478,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,135,0 481 | 479,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,135,0 482 | 480,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,136,0 483 | 481,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 484 | 482,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,138,0 485 | 483,1,1,0.00,0.12,16,37.372777,-122.067965,44.00,139,0 486 | 484,1,1,0.00,0.04,16,37.372777,-122.067965,44.00,138,0 487 | 485,1,1,0.00,0.07,16,37.372777,-122.067965,44.00,137,0 488 | 486,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,137,0 489 | 487,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,136,0 490 | 488,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 491 | 489,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 492 | 490,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 493 | 491,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 494 | 492,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 495 | 493,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,137,0 496 | 494,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,136,0 497 | 495,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,135,0 498 | 496,1,1,0.00,0.09,16,37.372777,-122.067965,44.00,134,0 499 | 497,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,134,0 500 | 498,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,134,0 501 | 499,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,133,0 502 | 500,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,132,0 503 | 501,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,130,0 504 | 502,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,129,0 505 | 503,1,1,0.00,0.19,16,37.372777,-122.067965,44.00,129,0 506 | 504,1,1,0.00,0.12,16,37.372777,-122.067965,44.00,129,0 507 | 505,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,129,0 508 | 506,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,129,0 509 | 507,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,129,0 510 | 508,1,1,0.00,0.07,16,37.372777,-122.067965,44.00,129,0 511 | 509,1,1,0.00,0.02,16,37.372777,-122.067965,44.00,130,0 512 | 510,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,131,0 513 | 511,1,1,0.00,0.00,16,37.372777,-122.067965,44.00,139,0 514 | 512,1,1,0.00,0.00,16,37.372777,-122.067964,44.00,141,0 515 | 513,1,1,0.00,0.00,16,37.372777,-122.067963,44.00,141,0 516 | 514,1,1,0.00,0.23,16,37.372776,-122.067957,44.00,141,0 517 | 515,1,1,0.00,0.05,16,37.372773,-122.067940,44.00,140,0 518 | 516,1,1,0.00,0.05,16,37.372771,-122.067923,44.00,140,0 519 | 517,1,1,0.00,0.53,16,37.372771,-122.067920,44.00,139,0 520 | 518,1,1,0.30,0.19,16,37.372771,-122.067920,44.00,139,0 521 | 519,1,1,0.10,0.00,16,37.372771,-122.067920,44.00,139,0 522 | 520,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,139,0 523 | 521,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,139,0 524 | 522,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,139,0 525 | 523,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,141,0 526 | 524,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,141,0 527 | 525,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,,0 528 | 526,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,143,0 529 | 527,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,145,0 530 | 528,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,146,0 531 | 529,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,,0 532 | 530,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,147,0 533 | 531,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,,0 534 | 532,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,147,0 535 | 533,1,1,0.00,0.02,16,37.372771,-122.067920,44.00,147,0 536 | 534,1,1,0.00,0.09,16,37.372771,-122.067920,44.00,148,0 537 | 535,1,1,0.00,0.01,16,37.372771,-122.067920,44.00,148,0 538 | 536,1,1,0.00,0.10,16,37.372771,-122.067920,44.00,148,0 539 | 537,1,1,0.00,0.03,16,37.372771,-122.067920,44.00,149,0 540 | 538,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,152,0 541 | 539,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,,0 542 | 540,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,153,0 543 | 541,1,1,0.00,0.00,16,37.372771,-122.067920,44.00,153,0 544 | 542,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,153,0 545 | 543,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,153,0 546 | 544,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,,0 547 | 545,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,152,0 548 | 546,1,1,0.00,0.00,16,37.372771,-122.067919,44.00,152,0 549 | 547,1,1,0.00,0.00,16,37.372771,-122.067918,44.00,152,0 550 | 548,1,1,0.00,0.00,16,37.372771,-122.067918,44.00,151,0 551 | 549,1,1,0.00,0.00,16,37.372771,-122.067917,44.00,151,0 552 | 550,1,1,0.00,0.00,16,37.372770,-122.067916,44.00,149,0 553 | 551,1,1,0.00,0.44,16,37.372770,-122.067916,44.00,148,0 554 | 552,1,1,0.00,0.25,16,37.372770,-122.067915,44.00,147,0 555 | 553,1,1,0.00,0.12,16,37.372770,-122.067915,44.00,147,0 556 | 554,1,1,0.00,0.17,16,37.372770,-122.067914,44.00,147,0 557 | 555,1,1,0.00,0.07,16,37.372770,-122.067914,44.00,147,0 558 | 556,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,147,0 559 | 557,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,147,0 560 | 558,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,147,0 561 | 559,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,146,0 562 | 560,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,142,0 563 | 561,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 564 | 562,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,141,0 565 | 563,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 566 | 564,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 567 | 565,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 568 | 566,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 569 | 567,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 570 | 568,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 571 | 569,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 572 | 570,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 573 | 571,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 574 | 572,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 575 | 573,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 576 | 574,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 577 | 575,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 578 | 576,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 579 | 577,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 580 | 578,1,1,0.00,0.08,16,37.372770,-122.067913,44.00,139,0 581 | 579,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,139,0 582 | 580,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,139,0 583 | 581,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 584 | 582,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 585 | 583,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 586 | 584,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 587 | 585,1,1,0.00,0.10,16,37.372770,-122.067913,44.00,138,0 588 | 586,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,137,0 589 | 587,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,139,0 590 | 588,1,1,0.00,0.07,16,37.372770,-122.067913,44.00,138,0 591 | 589,1,1,0.00,0.06,16,37.372770,-122.067913,44.00,138,0 592 | 590,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,138,0 593 | 591,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 594 | 592,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 595 | 593,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 596 | 594,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,138,0 597 | 595,1,1,0.00,0.09,16,37.372770,-122.067913,44.00,137,0 598 | 596,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,136,0 599 | 597,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 600 | 598,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,136,0 601 | 599,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,137,0 602 | 600,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,137,0 603 | 601,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,137,0 604 | 602,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 605 | 603,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 606 | 604,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 607 | 605,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 608 | 606,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 609 | 607,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 610 | 608,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,130,0 611 | 609,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,128,0 612 | 610,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 613 | 611,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 614 | 612,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,126,0 615 | 613,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,125,0 616 | 614,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,125,0 617 | 615,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 618 | 616,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,124,0 619 | 617,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 620 | 618,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,125,0 621 | 619,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,125,0 622 | 620,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,125,0 623 | 621,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,126,0 624 | 622,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 625 | 623,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 626 | 624,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 627 | 625,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,126,0 628 | 626,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,126,0 629 | 627,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 630 | 628,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,121,0 631 | 629,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,119,0 632 | 630,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,119,0 633 | 631,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 634 | 632,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,118,0 635 | 633,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 636 | 634,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 637 | 635,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,117,0 638 | 636,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,116,0 639 | 637,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 640 | 638,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 641 | 639,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 642 | 640,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,117,0 643 | 641,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,117,0 644 | 642,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,118,0 645 | 643,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,122,0 646 | 644,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,123,0 647 | 645,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 648 | 646,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 649 | 647,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 650 | 648,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 651 | 649,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 652 | 650,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,127,0 653 | 651,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,128,0 654 | 652,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,129,0 655 | 653,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,129,0 656 | 654,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,129,0 657 | 655,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,128,0 658 | 656,1,1,0.00,0.11,16,37.372770,-122.067913,44.00,127,0 659 | 657,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,125,0 660 | 658,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,124,0 661 | 659,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,124,0 662 | 660,1,1,0.00,0.20,16,37.372770,-122.067913,44.00,124,0 663 | 661,1,1,0.00,0.14,16,37.372770,-122.067913,44.00,123,0 664 | 662,1,1,0.00,0.11,16,37.372770,-122.067913,44.00,123,0 665 | 663,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,123,0 666 | 664,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,123,0 667 | 665,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,122,0 668 | 666,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,120,0 669 | 667,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,120,0 670 | 668,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,121,0 671 | 669,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,122,0 672 | 670,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,129,0 673 | 671,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 674 | 672,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 675 | 673,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 676 | 674,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,134,0 677 | 675,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,134,0 678 | 676,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,134,0 679 | 677,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 680 | 678,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 681 | 679,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 682 | 680,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 683 | 681,1,1,0.00,0.20,16,37.372770,-122.067913,44.00,140,0 684 | 682,1,1,0.00,0.08,16,37.372770,-122.067913,44.00,140,0 685 | 683,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,140,0 686 | 684,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 687 | 685,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 688 | 686,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 689 | 687,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,141,0 690 | 688,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,141,0 691 | 689,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,141,0 692 | 690,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,140,0 693 | 691,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,140,0 694 | 692,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,140,0 695 | 693,1,1,0.00,0.13,16,37.372770,-122.067913,44.00,139,0 696 | 694,1,1,0.00,0.20,16,37.372770,-122.067913,44.00,139,0 697 | 695,1,1,0.00,0.15,16,37.372770,-122.067913,44.00,139,0 698 | 696,1,1,0.00,0.14,16,37.372770,-122.067913,44.00,139,0 699 | 697,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,139,0 700 | 698,1,1,0.00,0.06,16,37.372770,-122.067913,44.00,139,0 701 | 699,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,139,0 702 | 700,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 703 | 701,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 704 | 702,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 705 | 703,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 706 | 704,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 707 | 705,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 708 | 706,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 709 | 707,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 710 | 708,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 711 | 709,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,132,0 712 | 710,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,131,0 713 | 711,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,131,0 714 | 712,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,131,0 715 | 713,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,131,0 716 | 714,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 717 | 715,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 718 | 716,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,131,0 719 | 717,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,130,0 720 | 718,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,130,0 721 | 719,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,129,0 722 | 720,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,130,0 723 | 721,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 724 | 722,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,130,0 725 | 723,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 726 | 724,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 727 | 725,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,132,0 728 | 726,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 729 | 727,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 730 | 728,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,133,0 731 | 729,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,134,0 732 | 730,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 733 | 731,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 734 | 732,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 735 | 733,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 736 | 734,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 737 | 735,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 738 | 736,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,135,0 739 | 737,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 740 | 738,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 741 | 739,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 742 | 740,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 743 | 741,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 744 | 742,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 745 | 743,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 746 | 744,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 747 | 745,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 748 | 746,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 749 | 747,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,138,0 750 | 748,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 751 | 749,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 752 | 750,1,1,0.00,0.10,16,37.372770,-122.067913,44.00,137,0 753 | 751,1,1,0.00,0.11,16,37.372770,-122.067913,44.00,137,0 754 | 752,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,137,0 755 | 753,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 756 | 754,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 757 | 755,1,1,0.00,0.10,16,37.372770,-122.067913,44.00,136,0 758 | 756,1,1,0.00,0.07,16,37.372770,-122.067913,44.00,136,0 759 | 757,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,,0 760 | 758,1,1,0.00,0.07,16,37.372770,-122.067913,44.00,136,0 761 | 759,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,136,0 762 | 760,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,136,0 763 | 761,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 764 | 762,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,136,0 765 | 763,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 766 | 764,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,137,0 767 | 765,1,1,0.00,0.13,16,37.372770,-122.067913,44.00,138,0 768 | 766,1,1,0.00,0.07,16,37.372770,-122.067913,44.00,138,0 769 | 767,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,140,0 770 | 768,1,1,0.00,0.07,16,37.372770,-122.067913,44.00,,0 771 | 769,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,143,0 772 | 770,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 773 | 771,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,146,0 774 | 772,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,146,0 775 | 773,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,146,0 776 | 774,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,146,0 777 | 775,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,146,0 778 | 776,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,145,0 779 | 777,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,145,0 780 | 778,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,145,0 781 | 779,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 782 | 780,1,1,0.00,0.06,16,37.372770,-122.067913,44.00,145,0 783 | 781,1,1,0.00,0.10,16,37.372770,-122.067913,44.00,144,0 784 | 782,1,1,0.00,0.02,16,37.372770,-122.067913,44.00,144,0 785 | 783,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,144,0 786 | 784,1,1,0.00,0.04,16,37.372770,-122.067913,44.00,144,0 787 | 785,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 788 | 786,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 789 | 787,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 790 | 788,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,142,0 791 | 789,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,141,0 792 | 790,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 793 | 791,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,,0 794 | 792,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,139,0 795 | 793,1,1,0.00,0.16,16,37.372770,-122.067913,44.00,139,0 796 | 794,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,139,0 797 | 795,1,1,0.00,0.01,16,37.372770,-122.067913,44.00,139,0 798 | 796,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 799 | 797,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,139,0 800 | 798,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 801 | 799,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,140,0 802 | 800,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,142,0 803 | 801,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,142,0 804 | 802,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,142,0 805 | 803,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 806 | 804,1,1,0.00,0.03,16,37.372770,-122.067913,44.00,143,0 807 | 805,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 808 | 806,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,143,0 809 | 807,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,144,0 810 | 808,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,144,0 811 | 809,1,1,0.00,0.00,16,37.372770,-122.067913,44.00,145,0 812 | 810,1,1,0.00,0.05,16,37.372770,-122.067913,44.00,,0 813 | 811,1,1,0.00,0.15,16,37.372770,-122.067913,44.00,147,0 814 | 812,1,1,0.00,0.10,16,37.372770,-122.067914,44.00,147,0 815 | 813,1,1,0.00,0.17,16,37.372770,-122.067914,44.00,,0 816 | 814,1,1,0.00,0.16,16,37.372770,-122.067915,44.00,147,0 817 | 815,1,1,0.00,0.26,16,37.372771,-122.067915,44.00,148,0 818 | 816,1,1,0.00,0.19,16,37.372771,-122.067916,44.00,,0 819 | 817,1,1,0.00,0.07,16,37.372771,-122.067917,44.00,148,0 820 | 818,1,1,0.00,0.09,16,37.372771,-122.067918,44.00,148,0 821 | 819,1,1,0.00,0.00,16,37.372772,-122.067918,44.00,149,0 822 | 820,1,1,0.00,0.03,16,37.372772,-122.067919,44.00,150,0 823 | 821,1,1,0.00,0.10,16,37.372772,-122.067920,44.00,154,0 824 | 822,1,1,0.00,0.15,16,37.372773,-122.067921,44.00,155,0 825 | 823,1,1,0.00,0.20,16,37.372773,-122.067922,44.00,,0 826 | 824,1,1,0.00,0.12,16,37.372773,-122.067923,44.00,156,0 827 | 825,1,1,0.00,0.07,16,37.372773,-122.067924,44.00,156,0 828 | 826,1,1,0.00,0.14,16,37.372774,-122.067925,44.00,156,0 829 | 827,1,1,0.00,0.05,16,37.372774,-122.067926,44.00,156,0 830 | 828,1,1,0.00,0.19,16,37.372774,-122.067926,44.00,156,0 831 | 829,1,1,0.00,0.05,16,37.372774,-122.067927,44.00,156,0 832 | 830,1,1,0.00,0.01,16,37.372774,-122.067927,44.00,,0 833 | 831,1,1,0.00,0.05,16,37.372775,-122.067928,44.00,157,0 834 | 832,1,1,0.00,0.02,16,37.372775,-122.067929,44.00,158,0 835 | 833,1,1,0.00,0.07,16,37.372775,-122.067929,44.00,158,0 836 | 834,1,1,0.00,0.02,16,37.372775,-122.067930,44.00,157,0 837 | 835,1,1,0.00,0.07,16,37.372775,-122.067930,44.00,156,0 838 | 836,1,1,0.00,0.01,16,37.372776,-122.067932,44.00,155,0 839 | 837,1,1,0.00,0.13,16,37.372777,-122.067936,44.00,154,0 840 | 838,1,1,1.20,0.95,16,37.372780,-122.067947,44.00,154,0 841 | 839,1,1,1.60,1.44,16,37.372787,-122.067964,44.00,155,0 842 | 840,1,1,2.50,2.34,16,37.372801,-122.067987,44.00,154,0 843 | 841,1,1,3.20,3.03,16,37.372820,-122.068012,44.00,154,0 844 | 842,1,1,3.50,3.38,16,37.372843,-122.068038,44.00,154,0 845 | 843,1,1,3.70,3.53,16,37.372869,-122.068062,44.00,153,0 846 | 844,1,1,0.00,3.58,16,37.372897,-122.068084,44.00,152,0 847 | 845,1,1,0.00,3.60,16,37.372927,-122.068104,43.00,152,0 848 | 846,1,1,3.80,3.65,16,37.372959,-122.068124,43.00,151,0 849 | 847,1,1,4.10,3.90,16,37.372992,-122.068144,43.00,150,0 850 | 848,1,1,4.50,4.27,16,37.373029,-122.068164,43.00,150,0 851 | 849,1,1,0.00,4.87,17,37.373070,-122.068185,43.00,149,0 852 | 850,1,1,5.10,5.46,17,37.373116,-122.068207,43.00,149,0 853 | 851,1,1,8.20,5.98,17,37.373167,-122.068229,42.00,149,0 854 | 852,1,1,6.10,6.36,17,37.373223,-122.068253,42.00,,0 855 | 853,1,1,6.50,6.75,17,37.373283,-122.068277,42.00,149,0 856 | 854,1,1,6.90,7.07,17,37.373346,-122.068302,42.00,147,0 857 | 855,1,1,7.20,7.43,18,37.373413,-122.068329,41.00,147,0 858 | 856,1,1,7.60,7.81,18,37.373482,-122.068357,41.00,,0 859 | 857,1,1,8.00,8.23,18,37.373554,-122.068386,41.00,146,0 860 | 858,1,1,8.40,8.60,19,37.373628,-122.068417,41.00,145,0 861 | 859,1,1,8.80,8.96,19,37.373705,-122.068449,41.00,145,0 862 | 860,1,1,9.20,9.25,19,37.373786,-122.068484,40.00,146,0 863 | 861,1,1,9.50,9.54,19,37.373870,-122.068519,40.00,146,0 864 | 862,1,1,9.80,9.75,20,37.373958,-122.068552,40.00,146,0 865 | 863,1,1,10.00,9.92,20,37.374047,-122.068576,40.00,147,0 866 | 864,1,1,10.10,10.07,20,37.374138,-122.068589,39.00,147,0 867 | 865,1,1,10.30,10.17,21,37.374231,-122.068593,39.00,,0 868 | 866,1,1,10.50,10.25,21,37.374327,-122.068595,39.00,149,0 869 | 867,1,1,10.50,10.22,22,37.374423,-122.068601,39.00,149,0 870 | 868,1,1,10.50,10.14,22,37.374517,-122.068613,40.00,149,0 871 | 869,1,1,10.60,10.27,22,37.374610,-122.068630,40.00,149,0 872 | 870,1,1,0.00,10.43,23,37.374703,-122.068652,40.00,149,0 873 | 871,1,1,0.00,10.60,23,37.374800,-122.068676,40.00,150,0 874 | 872,1,1,11.00,10.69,23,37.374898,-122.068697,40.00,,0 875 | 873,1,1,11.00,10.69,24,37.374996,-122.068710,40.00,150,0 876 | 874,1,1,11.00,10.65,24,37.375095,-122.068709,40.00,150,0 877 | 875,1,1,0.00,10.70,25,37.375192,-122.068693,40.00,150,0 878 | 876,1,1,34.50,10.81,25,37.375290,-122.068666,40.00,150,0 879 | 877,1,1,18.10,10.98,25,37.375390,-122.068637,40.00,150,0 880 | 878,1,1,11.20,11.09,26,37.375493,-122.068616,40.00,150,0 881 | 879,1,1,11.30,11.05,26,37.375595,-122.068615,40.00,150,0 882 | 880,1,1,11.20,11.00,26,37.375693,-122.068644,40.00,149,0 883 | 881,1,1,11.20,11.00,27,37.375785,-122.068697,40.00,149,0 884 | 882,1,1,11.20,10.99,27,37.375871,-122.068764,40.00,149,0 885 | 883,1,1,11.20,11.16,27,37.375954,-122.068838,40.00,149,0 886 | 884,1,1,11.30,11.10,28,37.376038,-122.068911,40.00,149,0 887 | 885,1,1,11.50,10.99,28,37.376125,-122.068975,40.00,153,0 888 | 886,1,1,11.30,10.86,29,37.376217,-122.069025,40.00,156,0 889 | 887,1,1,11.20,10.79,29,37.376313,-122.069060,40.00,157,0 890 | 888,1,1,11.20,10.80,29,37.376411,-122.069084,40.00,158,0 891 | 889,1,1,0.00,10.89,30,37.376510,-122.069104,40.00,158,0 892 | 890,1,1,0.00,10.97,30,37.376609,-122.069121,40.00,159,0 893 | 891,1,1,11.40,11.03,30,37.376709,-122.069136,40.00,,0 894 | 892,1,1,11.40,10.97,31,37.376808,-122.069151,40.00,159,0 895 | 893,1,1,11.40,10.89,31,37.376908,-122.069164,40.00,159,0 896 | 894,1,1,0.00,10.76,32,37.377008,-122.069176,40.00,159,0 897 | 895,1,1,34.50,10.88,32,37.377108,-122.069185,40.00,159,0 898 | 896,1,1,18.60,11.06,32,37.377208,-122.069192,40.00,,0 899 | 897,1,1,11.30,11.06,33,37.377308,-122.069195,40.00,159,0 900 | 898,1,1,11.30,10.93,33,37.377408,-122.069194,40.00,,0 901 | 899,1,1,11.40,10.85,33,37.377507,-122.069188,40.00,159,0 902 | 900,1,1,11.30,10.75,34,37.377606,-122.069180,40.00,159,0 903 | 901,1,1,0.00,10.55,34,37.377705,-122.069170,40.00,160,0 904 | 902,1,1,17.50,10.36,34,37.377802,-122.069160,40.00,160,0 905 | 903,1,1,14.30,10.58,35,37.377898,-122.069153,40.00,160,0 906 | 904,1,1,10.80,10.59,35,37.377993,-122.069149,40.00,160,0 907 | 905,1,1,10.60,10.10,36,37.378086,-122.069151,40.00,,0 908 | 906,1,1,10.10,9.94,36,37.378176,-122.069160,40.00,161,0 909 | 907,1,1,10.00,9.54,36,37.378265,-122.069177,40.00,161,0 910 | 908,1,1,9.80,9.48,37,37.378351,-122.069201,40.00,,0 911 | 909,1,1,9.60,9.69,37,37.378438,-122.069230,41.00,161,0 912 | 910,1,1,9.80,9.96,37,37.378524,-122.069264,41.00,161,0 913 | 911,1,1,10.20,10.30,38,37.378611,-122.069299,41.00,161,0 914 | 912,1,1,10.40,10.37,38,37.378700,-122.069334,41.00,162,0 915 | 913,1,1,10.50,10.38,38,37.378791,-122.069368,41.00,162,0 916 | 914,1,1,10.50,9.95,39,37.378886,-122.069399,41.00,162,0 917 | 915,1,1,10.20,9.45,39,37.378983,-122.069424,42.00,163,0 918 | 916,1,1,9.80,10.05,40,37.379082,-122.069441,42.00,,0 919 | 917,1,1,11.80,11.14,40,37.379182,-122.069449,42.00,163,0 920 | 918,1,1,11.60,11.17,40,37.379282,-122.069444,42.00,163,0 921 | 919,1,1,11.10,10.60,41,37.379381,-122.069428,41.00,163,0 922 | 920,1,1,10.80,10.25,41,37.379474,-122.069403,41.00,163,0 923 | 921,1,1,0.00,9.85,41,37.379561,-122.069370,40.00,162,0 924 | 922,1,1,0.00,9.51,42,37.379644,-122.069334,40.00,,0 925 | 923,1,1,9.60,9.15,42,37.379723,-122.069298,40.00,162,0 926 | 924,1,1,9.50,9.04,43,37.379802,-122.069267,39.00,163,0 927 | 925,1,1,0.00,8.93,43,37.379883,-122.069242,39.00,163,0 928 | 926,1,1,33.60,8.89,43,37.379963,-122.069221,39.00,,0 929 | 927,1,1,13.70,9.05,44,37.380044,-122.069196,38.00,165,0 930 | 928,1,1,9.20,9.18,44,37.380123,-122.069165,38.00,165,0 931 | 929,1,1,9.30,9.34,44,37.380201,-122.069127,37.00,,0 932 | 930,1,1,9.60,9.32,45,37.380278,-122.069084,37.00,164,0 933 | 931,1,1,9.50,9.22,45,37.380354,-122.069038,37.00,165,0 934 | 932,1,1,9.40,9.24,45,37.380430,-122.068990,37.00,163,0 935 | 933,1,1,9.20,8.81,46,37.380506,-122.068942,36.00,,0 936 | 934,1,1,9.00,9.22,46,37.380581,-122.068894,36.00,162,0 937 | 935,1,1,9.30,9.41,47,37.380656,-122.068850,36.00,162,0 938 | 936,1,1,9.40,8.74,47,37.380732,-122.068808,36.00,163,0 939 | 937,1,1,9.00,8.94,47,37.380808,-122.068770,36.00,163,0 940 | 938,1,1,9.00,8.88,48,37.380885,-122.068736,36.00,,0 941 | 939,1,1,9.00,8.93,48,37.380962,-122.068705,36.00,163,0 942 | 940,1,1,9.00,8.93,48,37.381041,-122.068679,36.00,163,0 943 | 941,1,1,9.10,9.07,49,37.381122,-122.068658,36.00,163,0 944 | 942,1,1,9.20,9.20,49,37.381204,-122.068640,36.00,163,0 945 | 943,1,1,9.40,9.25,49,37.381287,-122.068625,36.00,163,0 946 | 944,1,1,9.40,9.36,50,37.381372,-122.068610,36.00,164,0 947 | 945,1,1,9.50,9.61,50,37.381457,-122.068591,36.00,164,0 948 | 946,1,1,9.80,9.67,51,37.381544,-122.068567,36.00,164,0 949 | 947,1,1,9.70,9.39,51,37.381632,-122.068545,36.00,164,0 950 | 948,1,1,9.50,9.68,51,37.381722,-122.068533,36.00,164,0 951 | 949,1,1,10.50,10.03,52,37.381815,-122.068533,36.00,164,0 952 | 950,1,1,10.70,10.19,52,37.381909,-122.068533,36.00,,0 953 | 951,1,1,10.60,10.16,52,37.382002,-122.068518,36.00,164,0 954 | 952,1,1,10.70,10.26,53,37.382094,-122.068495,36.00,165,0 955 | 953,1,1,0.00,10.30,53,37.382186,-122.068471,36.00,165,0 956 | 954,1,1,0.00,9.86,54,37.382278,-122.068460,36.00,164,0 957 | 955,1,1,10.20,9.67,54,37.382368,-122.068465,36.00,164,0 958 | 956,1,1,5.50,10.07,54,37.382460,-122.068475,36.00,165,0 959 | 957,1,1,30.40,10.13,55,37.382553,-122.068485,36.00,165,0 960 | 958,1,1,13.60,9.89,55,37.382646,-122.068495,36.00,165,0 961 | 959,1,1,10.10,9.87,55,37.382737,-122.068504,36.00,165,0 962 | 960,1,1,10.10,9.76,56,37.382826,-122.068511,36.00,,0 963 | 961,1,1,9.90,9.68,56,37.382914,-122.068517,35.00,165,0 964 | 962,1,1,9.80,9.59,56,37.383000,-122.068521,35.00,165,0 965 | 963,1,1,9.80,9.34,57,37.383087,-122.068523,35.00,165,0 966 | 964,1,1,9.60,9.20,57,37.383172,-122.068525,35.00,165,0 967 | 965,1,1,9.40,8.89,58,37.383256,-122.068528,35.00,165,0 968 | 966,1,1,9.10,8.56,58,37.383336,-122.068535,35.00,165,0 969 | 967,1,1,8.80,8.25,58,37.383411,-122.068546,34.00,165,0 970 | 968,1,1,8.40,7.88,58,37.383483,-122.068560,34.00,165,0 971 | 969,1,1,8.00,7.49,59,37.383550,-122.068574,34.00,164,0 972 | 970,1,1,7.60,7.19,59,37.383616,-122.068587,34.00,,0 973 | 971,1,1,7.20,6.93,59,37.383679,-122.068597,34.00,164,0 974 | 972,1,1,7.00,6.79,60,37.383741,-122.068607,34.00,164,0 975 | 973,1,1,6.90,6.88,60,37.383804,-122.068616,33.00,,0 976 | 974,1,1,6.90,7.00,60,37.383867,-122.068624,33.00,164,0 977 | 975,1,1,7.10,7.26,60,37.383931,-122.068633,33.00,163,0 978 | 976,1,1,7.30,7.47,61,37.383999,-122.068643,33.00,,0 979 | 977,1,1,7.60,7.64,61,37.384069,-122.068653,33.00,163,0 980 | 978,1,1,7.80,7.93,61,37.384142,-122.068664,33.00,164,0 981 | 979,1,1,8.10,8.19,62,37.384218,-122.068676,33.00,164,0 982 | 980,1,1,8.30,8.35,62,37.384294,-122.068687,33.00,165,0 983 | 981,1,1,8.50,8.43,62,37.384371,-122.068698,33.00,165,0 984 | 982,1,1,8.60,8.57,62,37.384447,-122.068708,33.00,,0 985 | 983,1,1,8.60,8.21,63,37.384523,-122.068716,33.00,165,0 986 | 984,1,1,8.30,7.33,63,37.384594,-122.068726,33.00,165,0 987 | 985,1,1,7.40,5.87,63,37.384647,-122.068747,33.00,165,0 988 | 986,1,1,5.90,4.37,63,37.384671,-122.068786,33.00,165,0 989 | 987,1,1,4.10,3.45,63,37.384667,-122.068822,33.00,,0 990 | 988,1,1,3.60,3.32,64,37.384642,-122.068833,33.00,165,0 991 | 989,1,1,4.20,4.04,64,37.384604,-122.068824,33.00,166,0 992 | 990,1,1,5.10,4.86,64,37.384563,-122.068807,33.00,,0 993 | 991,1,1,0.00,5.51,64,37.384515,-122.068790,33.00,166,0 994 | 992,1,1,4.60,6.08,64,37.384462,-122.068775,33.00,167,0 995 | 993,1,1,8.30,6.17,64,37.384407,-122.068764,33.00,165,0 996 | 994,1,1,6.20,4.93,64,37.384363,-122.068765,33.00,,0 997 | 995,1,1,5.00,3.41,65,37.384341,-122.068785,33.00,165,0 998 | 996,1,1,3.30,2.62,65,37.384341,-122.068814,33.00,165,0 999 | 997,1,1,2.50,2.60,65,37.384359,-122.068836,33.00,166,0 1000 | 998,1,1,2.70,3.57,65,37.384389,-122.068841,33.00,166,0 1001 | 999,1,1,3.70,4.57,65,37.384431,-122.068833,33.00,166,0 1002 | 1000,1,1,4.70,5.22,65,37.384480,-122.068824,33.00,166,0 1003 | 1001,1,1,5.30,5.84,65,37.384534,-122.068822,33.00,,0 1004 | 1002,1,1,5.90,6.42,65,37.384593,-122.068834,33.00,166,0 1005 | 1003,1,1,6.50,6.71,66,37.384653,-122.068847,33.00,164,0 1006 | 1004,1,1,6.80,6.94,66,37.384716,-122.068841,33.00,163,0 1007 | 1005,1,1,7.10,7.23,66,37.384780,-122.068808,33.00,163,0 1008 | 1006,1,1,7.40,7.46,66,37.384843,-122.068772,33.00,163,0 1009 | 1007,1,1,7.40,6.03,67,37.384903,-122.068759,33.00,163,0 1010 | 1008,1,1,6.50,6.68,67,37.384966,-122.068766,33.00,163,0 1011 | 1009,1,1,7.10,7.91,67,37.385035,-122.068784,33.00,163,0 1012 | 1010,1,1,8.20,8.26,67,37.385110,-122.068809,32.00,163,0 1013 | 1011,1,1,8.50,8.89,67,37.385189,-122.068836,32.00,163,0 1014 | 1012,1,1,9.90,9.49,68,37.385273,-122.068864,32.00,,0 1015 | 1013,1,1,10.30,9.85,68,37.385360,-122.068888,32.00,163,0 1016 | 1014,1,1,10.20,9.84,68,37.385448,-122.068909,32.00,162,0 1017 | 1015,1,1,10.30,9.86,69,37.385537,-122.068924,32.00,161,0 1018 | 1016,1,1,0.00,9.55,69,37.385626,-122.068932,32.00,161,0 1019 | 1017,1,1,12.10,9.22,70,37.385714,-122.068934,32.00,160,0 1020 | 1018,1,1,16.10,8.89,70,37.385801,-122.068934,32.00,160,0 1021 | 1019,1,1,9.00,8.88,70,37.385884,-122.068933,31.00,158,0 1022 | 1020,1,1,9.30,8.85,71,37.385966,-122.068932,31.00,158,0 1023 | 1021,1,1,1.30,8.75,71,37.386047,-122.068931,31.00,158,0 1024 | 1022,1,1,15.20,8.70,71,37.386126,-122.068929,31.00,158,0 1025 | 1023,1,1,10.50,8.76,72,37.386205,-122.068927,31.00,158,0 1026 | 1024,1,1,9.00,8.75,72,37.386285,-122.068926,31.00,159,0 1027 | 1025,1,1,9.00,8.69,72,37.386364,-122.068925,31.00,159,0 1028 | 1026,1,1,8.90,8.80,73,37.386445,-122.068924,31.00,159,0 1029 | 1027,1,1,9.00,8.86,73,37.386527,-122.068924,31.00,159,0 1030 | 1028,1,1,9.10,8.92,74,37.386610,-122.068923,31.00,159,0 1031 | 1029,1,1,9.10,8.97,74,37.386694,-122.068923,31.00,159,0 1032 | 1030,1,1,9.10,9.13,74,37.386778,-122.068922,31.00,159,0 1033 | 1031,1,1,9.30,9.24,75,37.386863,-122.068922,31.00,159,0 1034 | 1032,1,1,9.40,9.23,75,37.386948,-122.068920,31.00,159,0 1035 | 1033,1,1,9.40,9.19,75,37.387033,-122.068920,31.00,,0 1036 | 1034,1,1,9.30,8.95,76,37.387116,-122.068928,31.00,159,0 1037 | 1035,1,1,9.10,8.67,76,37.387196,-122.068950,31.00,159,0 1038 | 1036,1,1,8.80,8.62,76,37.387273,-122.068978,32.00,159,0 1039 | 1037,1,1,9.00,8.49,77,37.387348,-122.069005,32.00,159,0 1040 | 1038,1,1,9.10,8.65,77,37.387425,-122.069023,32.00,159,0 1041 | 1039,1,1,0.00,8.86,78,37.387506,-122.069029,32.00,159,0 1042 | 1040,1,1,14.30,8.89,78,37.387589,-122.069034,32.00,160,0 1043 | 1041,1,1,12.00,9.03,78,37.387671,-122.069041,32.00,160,0 1044 | 1042,1,1,9.20,9.10,79,37.387753,-122.069050,32.00,161,0 1045 | 1043,1,1,9.30,9.21,79,37.387836,-122.069058,32.00,,0 1046 | 1044,1,1,9.50,9.26,79,37.387920,-122.069066,32.00,161,0 1047 | 1045,1,1,9.60,9.16,80,37.388004,-122.069075,32.00,161,0 1048 | 1046,1,1,9.40,8.98,80,37.388087,-122.069085,32.00,161,0 1049 | 1047,1,1,9.10,8.65,81,37.388169,-122.069096,32.00,160,0 1050 | 1048,1,1,8.70,8.28,81,37.388250,-122.069107,32.00,159,0 1051 | 1049,1,1,8.50,8.73,81,37.388331,-122.069116,32.00,159,0 1052 | 1050,1,1,9.00,8.83,82,37.388412,-122.069120,31.00,159,0 1053 | 1051,1,1,9.10,8.65,82,37.388493,-122.069120,31.00,160,0 1054 | 1052,1,1,8.90,8.56,82,37.388574,-122.069118,30.00,161,0 1055 | 1053,1,1,8.70,8.55,83,37.388653,-122.069117,30.00,161,0 1056 | 1054,1,1,8.70,8.50,83,37.388730,-122.069122,29.00,,0 1057 | 1055,1,1,8.70,8.28,83,37.388806,-122.069130,29.00,161,0 1058 | 1056,1,1,8.40,8.14,84,37.388880,-122.069141,28.00,161,0 1059 | 1057,1,1,8.30,8.00,84,37.388952,-122.069153,28.00,161,0 1060 | 1058,1,1,8.10,7.75,84,37.389024,-122.069164,27.00,161,0 1061 | 1059,1,1,7.90,7.64,84,37.389094,-122.069173,27.00,159,0 1062 | 1060,1,1,7.70,7.49,85,37.389163,-122.069178,27.00,159,0 1063 | 1061,1,1,7.70,7.41,85,37.389230,-122.069179,27.00,158,0 1064 | 1062,1,1,7.80,7.14,85,37.389294,-122.069178,27.00,,0 1065 | 1063,1,1,0.70,5.79,86,37.389353,-122.069177,27.00,158,0 1066 | 1064,1,1,11.00,5.21,86,37.389407,-122.069180,27.00,157,0 1067 | 1065,1,1,5.20,4.79,86,37.389455,-122.069189,27.00,157,0 1068 | 1066,1,1,5.30,4.87,86,37.389501,-122.069197,27.00,,0 1069 | 1067,1,1,6.00,5.55,86,37.389548,-122.069201,27.00,157,0 1070 | 1068,1,1,0.00,5.66,87,37.389598,-122.069195,28.00,157,0 1071 | 1069,1,1,9.30,5.38,87,37.389653,-122.069185,28.00,158,0 1072 | 1070,1,1,8.30,5.46,87,37.389709,-122.069177,28.00,158,0 1073 | 1071,1,1,5.70,5.73,87,37.389766,-122.069178,28.00,156,0 1074 | 1072,1,1,6.00,5.94,87,37.389822,-122.069192,28.00,155,0 1075 | 1073,1,1,6.30,6.36,87,37.389879,-122.069214,28.00,155,0 1076 | 1074,1,1,6.80,6.43,88,37.389938,-122.069234,28.00,154,0 1077 | 1075,1,1,7.00,6.76,88,37.390000,-122.069246,28.00,152,0 1078 | 1076,1,1,7.30,7.11,88,37.390064,-122.069250,28.00,152,0 1079 | 1077,1,1,7.50,6.99,88,37.390129,-122.069250,28.00,,0 1080 | 1078,1,1,7.40,6.86,89,37.390195,-122.069248,28.00,151,0 1081 | 1079,1,1,7.20,6.71,89,37.390261,-122.069247,28.00,150,0 1082 | 1080,1,1,7.20,7.35,89,37.390327,-122.069246,28.00,149,0 1083 | 1081,1,1,7.80,7.47,89,37.390394,-122.069246,28.00,149,0 1084 | 1082,1,1,7.80,7.51,90,37.390463,-122.069246,28.00,148,0 1085 | 1083,1,1,7.80,7.40,90,37.390533,-122.069246,28.00,148,0 1086 | 1084,1,1,7.60,7.46,90,37.390603,-122.069247,28.00,147,0 1087 | 1085,1,1,7.70,7.25,90,37.390671,-122.069248,28.00,146,0 1088 | 1086,1,1,7.40,7.09,91,37.390736,-122.069251,28.00,146,0 1089 | 1087,1,1,7.30,7.13,91,37.390797,-122.069254,27.00,,0 1090 | 1088,1,1,7.20,6.44,91,37.390852,-122.069258,27.00,145,0 1091 | 1089,1,1,5.40,5.04,92,37.390902,-122.069264,27.00,145,0 1092 | 1090,1,1,1.70,3.95,92,37.390944,-122.069273,27.00,145,0 1093 | 1091,1,1,4.00,3.68,92,37.390978,-122.069287,27.00,145,0 1094 | 1092,1,1,3.90,3.60,92,37.391004,-122.069307,27.00,144,0 1095 | 1093,1,1,3.40,3.07,92,37.391021,-122.069334,27.00,144,0 1096 | 1094,1,1,2.80,2.49,92,37.391027,-122.069363,27.00,145,0 1097 | 1095,1,1,0.00,2.51,92,37.391020,-122.069388,27.00,146,0 1098 | 1096,1,1,0.00,2.58,92,37.391001,-122.069404,27.00,147,0 1099 | 1097,1,1,3.70,3.39,93,37.390973,-122.069412,27.00,147,0 1100 | 1098,1,1,4.60,3.56,93,37.390940,-122.069415,27.00,,0 1101 | 1099,1,1,4.30,3.58,93,37.390906,-122.069414,27.00,146,0 1102 | 1100,1,1,3.70,3.45,93,37.390875,-122.069411,27.00,146,0 1103 | 1101,1,1,3.70,3.42,93,37.390846,-122.069407,27.00,146,0 1104 | 1102,1,1,3.50,3.29,93,37.390817,-122.069402,27.00,146,0 1105 | 1103,1,1,3.70,3.31,93,37.390786,-122.069394,27.00,145,0 1106 | 1104,1,1,3.40,3.07,93,37.390758,-122.069385,27.00,145,0 1107 | 1105,1,1,0.00,2.64,93,37.390738,-122.069375,27.00,145,0 1108 | 1106,1,1,0.00,2.12,93,37.390732,-122.069367,27.00,145,0 1109 | 1107,1,1,2.20,1.96,93,37.390742,-122.069360,27.00,146,0 1110 | 1108,1,1,0.00,2.49,93,37.390767,-122.069355,27.00,146,0 1111 | 1109,1,1,2.80,3.66,94,37.390800,-122.069353,27.00,,0 1112 | 1110,1,1,4.00,4.21,94,37.390838,-122.069354,27.00,146,0 1113 | 1111,1,1,4.40,4.66,94,37.390878,-122.069357,27.00,147,0 1114 | 1112,1,1,5.00,4.65,94,37.390922,-122.069361,27.00,148,0 1115 | 1113,1,1,5.20,4.83,94,37.390968,-122.069367,27.00,149,0 1116 | 1114,1,1,5.70,5.27,94,37.391016,-122.069372,27.00,149,0 1117 | 1115,1,1,6.00,5.61,94,37.391066,-122.069378,27.00,150,0 1118 | 1116,1,1,0.00,5.17,94,37.391117,-122.069382,27.00,152,0 1119 | 1117,1,1,6.30,5.13,94,37.391170,-122.069384,26.00,152,0 1120 | 1118,1,1,8.90,4.98,95,37.391223,-122.069386,26.00,154,0 1121 | 1119,1,1,5.20,5.17,95,37.391277,-122.069386,26.00,,0 1122 | 1120,1,1,6.10,5.71,95,37.391331,-122.069385,26.00,155,0 1123 | 1121,1,1,0.50,5.84,95,37.391385,-122.069383,26.00,155,0 1124 | 1122,1,1,6.50,6.06,95,37.391439,-122.069381,26.00,157,0 1125 | 1123,1,1,6.30,5.95,96,37.391492,-122.069379,26.00,159,0 1126 | 1124,1,1,6.00,5.65,96,37.391544,-122.069377,26.00,159,0 1127 | 1125,1,1,0.00,5.43,96,37.391594,-122.069375,25.00,160,0 1128 | 1126,1,1,13.10,5.23,96,37.391644,-122.069374,25.00,162,0 1129 | 1127,1,1,8.60,4.93,96,37.391694,-122.069372,25.00,163,0 1130 | 1128,1,1,5.20,4.54,96,37.391742,-122.069370,25.00,165,0 1131 | 1129,1,1,4.80,4.28,97,37.391789,-122.069368,25.00,165,0 1132 | 1130,1,1,4.80,4.35,97,37.391836,-122.069366,25.00,,0 1133 | 1131,1,1,4.80,4.66,97,37.391882,-122.069364,25.00,165,0 1134 | 1132,1,1,5.10,5.24,97,37.391931,-122.069361,25.00,165,0 1135 | 1133,1,1,5.80,5.64,97,37.391986,-122.069357,25.00,165,0 1136 | 1134,1,1,6.40,6.87,97,37.392050,-122.069351,25.00,166,0 1137 | 1135,1,1,7.70,7.73,98,37.392124,-122.069343,25.00,166,0 1138 | 1136,1,1,8.70,8.35,98,37.392206,-122.069334,25.00,166,0 1139 | 1137,1,1,9.30,8.61,98,37.392291,-122.069324,25.00,166,0 1140 | 1138,1,1,9.70,9.25,98,37.392376,-122.069314,25.00,166,0 1141 | 1139,1,1,10.20,9.29,99,37.392459,-122.069304,25.00,167,0 1142 | 1140,1,1,10.00,9.34,99,37.392543,-122.069293,25.00,,0 1143 | 1141,1,1,9.80,9.26,99,37.392628,-122.069280,25.00,167,0 1144 | 1142,1,1,9.70,9.38,100,37.392714,-122.069265,25.00,167,0 1145 | 1143,1,1,9.70,9.51,100,37.392798,-122.069248,25.00,167,0 1146 | 1144,1,1,9.60,9.01,100,37.392879,-122.069228,25.00,167,0 1147 | 1145,1,1,8.90,7.63,101,37.392953,-122.069207,24.00,167,0 1148 | 1146,1,1,7.70,6.86,101,37.393018,-122.069189,24.00,166,0 1149 | 1147,1,1,6.90,5.88,101,37.393071,-122.069177,24.00,166,0 1150 | 1148,1,1,5.90,4.25,101,37.393110,-122.069176,24.00,166,0 1151 | 1149,1,1,4.10,2.62,102,37.393132,-122.069188,24.00,166,0 1152 | 1150,1,1,2.30,1.87,102,37.393139,-122.069207,24.00,168,0 1153 | 1151,1,1,2.40,2.11,102,37.393131,-122.069226,24.00,,0 1154 | 1152,1,1,3.20,2.94,102,37.393109,-122.069237,24.00,168,0 1155 | 1153,1,1,4.10,3.79,102,37.393078,-122.069241,24.00,169,0 1156 | 1154,1,1,0.00,4.37,102,37.393038,-122.069244,24.00,168,0 1157 | 1155,1,1,3.00,4.78,102,37.392995,-122.069247,24.00,168,0 1158 | 1156,1,1,6.30,5.12,102,37.392949,-122.069254,24.00,167,0 1159 | 1157,1,1,5.10,5.34,103,37.392902,-122.069264,24.00,166,0 1160 | 1158,1,1,5.40,5.74,103,37.392854,-122.069275,25.00,165,0 1161 | 1159,1,1,5.80,5.83,103,37.392806,-122.069284,25.00,164,0 1162 | 1160,1,1,5.90,4.94,103,37.392761,-122.069288,25.00,163,0 1163 | 1161,1,1,5.10,4.43,103,37.392722,-122.069281,25.00,162,0 1164 | 1162,1,1,4.40,4.17,103,37.392695,-122.069260,25.00,,0 1165 | 1163,1,1,4.30,3.95,104,37.392681,-122.069222,25.00,162,0 1166 | 1164,1,1,3.90,2.83,104,37.392684,-122.069178,25.00,162,0 1167 | 1165,1,1,3.20,3.73,104,37.392703,-122.069139,25.00,161,0 1168 | 1166,1,1,4.00,4.46,104,37.392739,-122.069117,25.00,161,0 1169 | 1167,1,1,5.00,5.63,104,37.392790,-122.069106,25.00,161,0 1170 | 1168,1,1,6.10,5.82,104,37.392850,-122.069101,25.00,160,0 1171 | 1169,1,1,6.30,6.36,104,37.392917,-122.069095,25.00,160,0 1172 | 1170,1,1,6.80,6.92,104,37.392987,-122.069083,24.00,159,0 1173 | 1171,1,1,7.50,7.62,105,37.393058,-122.069072,24.00,159,0 1174 | 1172,1,1,8.10,7.79,105,37.393132,-122.069070,24.00,159,0 1175 | 1173,1,1,8.60,8.30,105,37.393209,-122.069083,24.00,,0 1176 | 1174,1,1,0.00,8.48,105,37.393288,-122.069105,24.00,159,0 1177 | 1175,1,1,14.80,8.99,106,37.393371,-122.069129,24.00,,0 1178 | 1176,1,1,12.40,9.25,106,37.393458,-122.069146,24.00,158,0 1179 | 1177,1,1,9.80,9.57,106,37.393550,-122.069150,24.00,158,0 1180 | 1178,1,1,10.00,10.00,107,37.393644,-122.069142,24.00,158,0 1181 | 1179,1,1,10.60,10.19,107,37.393738,-122.069124,24.00,158,0 1182 | 1180,1,1,10.60,10.20,107,37.393832,-122.069098,23.00,158,0 1183 | 1181,1,1,10.60,10.23,108,37.393924,-122.069069,23.00,158,0 1184 | 1182,1,1,10.60,10.08,108,37.394015,-122.069041,23.00,158,0 1185 | 1183,1,1,0.00,10.07,108,37.394106,-122.069019,23.00,158,0 1186 | 1184,1,1,0.00,10.15,109,37.394197,-122.069005,23.00,,0 1187 | 1185,1,1,10.30,9.85,109,37.394289,-122.068997,23.00,157,0 1188 | 1186,1,1,10.30,9.85,109,37.394382,-122.068993,23.00,157,0 1189 | 1187,1,1,10.50,10.11,110,37.394478,-122.068988,22.00,158,0 1190 | 1188,1,1,0.00,10.19,110,37.394570,-122.068976,22.00,158,0 1191 | 1189,1,1,33.50,9.52,111,37.394655,-122.068956,22.00,159,0 1192 | 1190,1,1,16.40,8.63,111,37.394734,-122.068945,22.00,159,0 1193 | 1191,1,1,8.10,7.71,111,37.394809,-122.068961,21.00,158,0 1194 | 1192,1,1,8.50,8.09,112,37.394877,-122.069004,21.00,159,0 1195 | 1193,1,1,8.80,8.34,112,37.394935,-122.069065,21.00,160,0 1196 | 1194,1,1,7.90,7.52,112,37.394984,-122.069133,21.00,,0 1197 | 1195,1,1,0.00,6.66,112,37.395028,-122.069200,21.00,160,0 1198 | 1196,1,1,0.00,6.22,113,37.395068,-122.069256,21.00,160,0 1199 | 1197,1,1,5.90,5.56,113,37.395105,-122.069294,21.00,160,0 1200 | 1198,1,1,4.10,4.40,113,37.395141,-122.069306,21.00,161,0 1201 | 1199,1,1,18.10,3.90,113,37.395177,-122.069297,21.00,161,0 1202 | 1200,1,1,5.70,4.64,114,37.395214,-122.069271,21.00,161,0 1203 | 1201,1,1,5.00,5.32,114,37.395254,-122.069233,21.00,162,0 1204 | 1202,1,1,5.70,6.17,114,37.395296,-122.069186,21.00,162,0 1205 | 1203,1,1,6.50,6.77,114,37.395341,-122.069133,21.00,162,0 1206 | 1204,1,1,7.00,6.95,114,37.395391,-122.069077,21.00,162,0 1207 | 1205,1,1,7.80,7.45,115,37.395444,-122.069018,22.00,161,0 1208 | 1206,1,1,8.60,8.22,115,37.395501,-122.068958,22.00,160,0 1209 | 1207,1,1,9.10,8.67,115,37.395560,-122.068896,22.00,160,0 1210 | 1208,1,1,8.80,8.43,115,37.395621,-122.068832,22.00,159,0 1211 | 1209,1,1,0.00,8.23,116,37.395684,-122.068770,22.00,160,0 1212 | 1210,1,1,0.00,8.59,116,37.395751,-122.068715,22.00,160,0 1213 | 1211,1,1,11.10,9.14,116,37.395823,-122.068670,22.00,160,0 1214 | 1212,1,1,20.70,8.63,117,37.395900,-122.068640,22.00,159,0 1215 | 1213,1,1,10.20,8.25,117,37.395980,-122.068616,22.00,158,0 1216 | 1214,1,1,8.40,8.03,117,37.396060,-122.068589,22.00,158,0 1217 | 1215,1,1,8.10,7.95,117,37.396137,-122.068553,22.00,159,0 1218 | 1216,1,1,7.90,7.49,118,37.396211,-122.068514,21.00,159,0 1219 | 1217,1,1,7.70,7.53,118,37.396286,-122.068479,21.00,159,0 1220 | 1218,1,1,8.60,8.48,118,37.396361,-122.068457,21.00,158,0 1221 | 1219,1,1,9.40,8.52,118,37.396437,-122.068453,21.00,158,0 1222 | 1220,1,1,9.10,8.15,119,37.396514,-122.068458,21.00,158,0 1223 | 1221,1,1,8.50,8.10,119,37.396590,-122.068463,21.00,158,0 1224 | 1222,1,1,8.40,7.95,119,37.396662,-122.068458,21.00,157,0 1225 | 1223,1,1,8.20,7.61,120,37.396733,-122.068447,21.00,157,0 1226 | 1224,1,1,7.70,7.44,120,37.396802,-122.068438,21.00,156,0 1227 | 1225,1,1,7.70,7.64,120,37.396871,-122.068436,21.00,155,0 1228 | 1226,1,1,7.80,7.29,120,37.396942,-122.068447,21.00,155,0 1229 | 1227,1,1,8.50,7.99,121,37.397014,-122.068468,21.00,155,0 1230 | 1228,1,1,0.00,8.52,121,37.397089,-122.068496,21.00,154,0 1231 | 1229,1,1,14.00,9.09,121,37.397167,-122.068528,21.00,154,0 1232 | 1230,1,1,12.20,9.12,122,37.397247,-122.068559,21.00,155,0 1233 | 1231,1,1,9.60,9.16,122,37.397329,-122.068589,21.00,155,0 1234 | 1232,1,1,9.50,9.05,122,37.397412,-122.068615,21.00,155,0 1235 | 1233,1,1,9.30,8.97,122,37.397494,-122.068637,21.00,156,0 1236 | 1234,1,1,9.20,9.02,123,37.397575,-122.068658,21.00,156,0 1237 | 1235,1,1,9.30,8.93,123,37.397656,-122.068685,21.00,156,0 1238 | 1236,1,1,9.20,9.27,123,37.397738,-122.068720,21.00,156,0 1239 | 1237,1,1,9.50,9.51,124,37.397819,-122.068761,21.00,157,0 1240 | 1238,1,1,9.80,9.72,124,37.397901,-122.068800,21.00,157,0 1241 | 1239,1,1,10.00,9.43,125,37.397984,-122.068830,21.00,157,0 1242 | 1240,1,1,9.70,9.09,125,37.398067,-122.068847,20.00,157,0 1243 | 1241,1,1,9.40,9.00,125,37.398151,-122.068858,20.00,157,0 1244 | 1242,1,1,9.20,8.94,126,37.398234,-122.068870,20.00,157,0 1245 | 1243,1,1,9.10,9.00,126,37.398316,-122.068890,20.00,157,0 1246 | 1244,1,1,9.20,8.79,126,37.398394,-122.068921,20.00,157,0 1247 | 1245,1,1,9.00,8.43,127,37.398466,-122.068961,20.00,157,0 1248 | 1246,1,1,8.60,8.18,127,37.398530,-122.069011,20.00,158,0 1249 | 1247,1,1,8.40,8.07,127,37.398586,-122.069071,20.00,158,0 1250 | 1248,1,1,8.30,7.95,128,37.398638,-122.069133,20.00,158,0 1251 | 1249,1,1,8.10,7.68,128,37.398691,-122.069191,20.00,159,0 1252 | 1250,1,1,7.80,6.82,128,37.398748,-122.069239,20.00,158,0 1253 | 1251,1,1,7.10,6.91,128,37.398811,-122.069272,20.00,158,0 1254 | 1252,1,1,7.00,6.95,129,37.398877,-122.069287,20.00,158,0 1255 | 1253,1,1,7.20,7.36,129,37.398945,-122.069281,21.00,158,0 1256 | 1254,1,1,7.70,7.29,129,37.399016,-122.069254,21.00,158,0 1257 | 1255,1,1,8.00,7.54,130,37.399087,-122.069222,21.00,158,0 1258 | 1256,1,1,8.40,7.94,130,37.399159,-122.069201,21.00,158,0 1259 | 1257,1,1,0.00,7.62,130,37.399231,-122.069204,20.00,157,0 1260 | 1258,1,1,13.10,8.14,130,37.399303,-122.069224,20.00,156,0 1261 | 1259,1,1,10.90,8.19,131,37.399377,-122.069246,20.00,156,0 1262 | 1260,1,1,8.60,8.21,131,37.399453,-122.069257,20.00,156,0 1263 | 1261,1,1,8.70,8.57,131,37.399530,-122.069247,20.00,156,0 1264 | 1262,1,1,9.00,8.31,132,37.399609,-122.069226,20.00,155,0 1265 | 1263,1,1,8.70,8.43,132,37.399690,-122.069208,19.00,154,0 1266 | 1264,1,1,8.70,8.73,132,37.399773,-122.069204,19.00,153,0 1267 | 1265,1,1,9.20,9.00,132,37.399856,-122.069214,19.00,153,0 1268 | 1266,1,1,9.40,9.13,133,37.399938,-122.069238,19.00,153,0 1269 | 1267,1,1,9.50,9.01,133,37.400019,-122.069272,19.00,153,0 1270 | 1268,1,1,9.30,9.15,133,37.400098,-122.069313,19.00,152,0 1271 | 1269,1,1,9.40,9.16,134,37.400175,-122.069352,19.00,152,0 1272 | 1270,1,1,9.40,8.82,134,37.400254,-122.069376,18.00,152,0 1273 | 1271,1,1,9.10,8.57,134,37.400337,-122.069377,18.00,152,0 1274 | 1272,1,1,8.80,8.93,135,37.400422,-122.069364,18.00,152,0 1275 | 1273,1,1,9.30,9.58,135,37.400510,-122.069347,18.00,152,0 1276 | 1274,1,1,10.00,9.58,135,37.400601,-122.069337,18.00,152,0 1277 | 1275,1,1,10.10,9.89,136,37.400693,-122.069340,18.00,152,0 1278 | 1276,1,1,10.40,9.90,136,37.400787,-122.069352,18.00,152,0 1279 | 1277,1,1,10.00,9.43,136,37.400879,-122.069362,18.00,152,0 1280 | 1278,1,1,9.60,9.11,137,37.400970,-122.069363,18.00,152,0 1281 | 1279,1,1,10.10,9.67,137,37.401058,-122.069356,18.00,153,0 1282 | 1280,1,1,0.00,9.61,138,37.401144,-122.069343,17.00,153,0 1283 | 1281,1,1,0.00,9.36,138,37.401228,-122.069328,17.00,153,0 1284 | 1282,1,1,9.40,9.06,138,37.401310,-122.069313,17.00,154,0 1285 | 1283,1,1,9.10,8.77,139,37.401389,-122.069300,17.00,154,0 1286 | 1284,1,1,0.00,8.55,139,37.401467,-122.069293,17.00,154,0 1287 | 1285,1,1,33.40,8.19,139,37.401542,-122.069295,17.00,155,0 1288 | 1286,1,1,13.00,7.96,140,37.401614,-122.069311,17.00,155,0 1289 | 1287,1,1,8.10,7.84,140,37.401681,-122.069344,17.00,155,0 1290 | 1288,1,1,8.00,7.71,140,37.401748,-122.069381,17.00,156,0 1291 | 1289,1,1,7.90,7.48,140,37.401815,-122.069408,17.00,156,0 1292 | 1290,1,1,7.60,7.32,141,37.401882,-122.069424,17.00,157,0 1293 | 1291,1,1,7.60,7.29,141,37.401946,-122.069435,17.00,157,0 1294 | 1292,1,1,0.00,6.83,141,37.402007,-122.069444,16.00,158,0 1295 | 1293,1,1,9.90,5.85,142,37.402065,-122.069452,16.00,158,0 1296 | 1294,1,1,9.70,5.63,142,37.402119,-122.069458,16.00,158,0 1297 | 1295,1,1,5.50,5.30,142,37.402171,-122.069464,16.00,158,0 1298 | 1296,1,1,5.30,4.79,142,37.402222,-122.069470,16.00,159,0 1299 | 1297,1,1,5.30,4.89,143,37.402272,-122.069475,16.00,159,0 1300 | 1298,1,1,0.60,5.48,143,37.402321,-122.069480,16.00,160,0 1301 | 1299,1,1,9.10,5.39,143,37.402370,-122.069485,16.00,160,0 1302 | 1300,1,1,6.60,5.43,143,37.402421,-122.069491,16.00,161,0 1303 | 1301,1,1,5.70,5.61,144,37.402472,-122.069497,16.00,162,0 1304 | 1302,1,1,6.00,6.10,144,37.402526,-122.069504,16.00,162,0 1305 | 1303,1,1,6.50,6.16,144,37.402582,-122.069512,16.00,162,0 1306 | 1304,1,1,6.60,6.44,144,37.402642,-122.069522,16.00,162,0 1307 | 1305,1,1,6.80,6.60,144,37.402705,-122.069533,16.00,163,0 1308 | 1306,1,1,7.00,6.86,144,37.402773,-122.069545,16.00,163,0 1309 | 1307,1,1,7.40,7.46,145,37.402845,-122.069559,16.00,163,0 1310 | 1308,1,1,8.00,7.96,145,37.402921,-122.069573,16.00,163,0 1311 | 1309,1,1,8.50,8.32,145,37.403002,-122.069587,16.00,163,0 1312 | 1310,1,1,8.90,8.66,145,37.403086,-122.069599,16.00,163,0 1313 | 1311,1,1,9.20,9.29,145,37.403174,-122.069610,16.00,164,0 1314 | 1312,1,1,9.90,9.99,146,37.403266,-122.069619,16.00,164,0 1315 | 1313,1,1,10.60,10.21,146,37.403362,-122.069624,16.00,164,0 1316 | 1314,1,1,10.70,10.54,146,37.403460,-122.069626,16.00,163,0 1317 | 1315,1,1,11.60,11.10,147,37.403562,-122.069625,16.00,163,0 1318 | 1316,1,1,11.80,11.24,147,37.403666,-122.069621,16.00,163,0 1319 | 1317,1,1,11.80,11.38,147,37.403771,-122.069613,17.00,163,0 1320 | 1318,1,1,0.00,11.45,148,37.403879,-122.069603,17.00,163,0 1321 | 1319,1,1,16.40,11.46,148,37.403988,-122.069590,17.00,164,0 1322 | 1320,1,1,17.50,11.53,148,37.404097,-122.069573,17.00,164,0 1323 | 1321,1,1,11.80,12.03,149,37.404205,-122.069553,17.00,164,0 1324 | 1322,1,1,12.20,11.65,149,37.404312,-122.069528,17.00,164,0 1325 | 1323,1,1,11.90,10.83,150,37.404414,-122.069498,17.00,163,0 1326 | 1324,1,1,11.20,11.12,150,37.404512,-122.069460,16.00,163,0 1327 | 1325,1,1,11.30,11.87,150,37.404609,-122.069398,16.00,163,0 1328 | 1326,1,1,12.20,12.17,151,37.404706,-122.069311,16.00,164,0 1329 | 1327,1,1,12.70,12.29,151,37.404807,-122.069246,15.00,164,0 1330 | 1328,1,1,12.80,11.51,151,37.404910,-122.069210,15.00,164,0 1331 | 1329,1,1,11.90,11.05,152,37.405014,-122.069194,15.00,162,0 1332 | 1330,1,1,11.30,11.18,152,37.405120,-122.069189,15.00,162,0 1333 | 1331,1,1,11.50,11.33,152,37.405226,-122.069190,15.00,164,0 1334 | 1332,1,1,11.60,11.60,153,37.405333,-122.069191,15.00,165,0 1335 | 1333,1,1,11.90,11.93,153,37.405442,-122.069191,15.00,165,0 1336 | 1334,1,1,12.30,12.15,154,37.405552,-122.069189,15.00,165,0 1337 | 1335,1,1,12.50,12.29,154,37.405664,-122.069185,15.00,165,0 1338 | 1336,1,1,12.60,12.26,154,37.405776,-122.069179,15.00,166,0 1339 | 1337,1,1,12.60,12.22,155,37.405889,-122.069174,14.00,166,0 1340 | 1338,1,1,12.50,12.20,155,37.406002,-122.069169,14.00,166,0 1341 | 1339,1,1,12.50,12.03,155,37.406114,-122.069167,14.00,166,0 1342 | 1340,1,1,12.30,11.85,156,37.406225,-122.069168,14.00,166,0 1343 | 1341,1,1,12.10,11.78,156,37.406335,-122.069173,13.00,167,0 1344 | 1342,1,1,12.20,11.67,157,37.406442,-122.069181,13.00,167,0 1345 | 1343,1,1,12.00,11.50,157,37.406549,-122.069191,13.00,167,0 1346 | 1344,1,1,0.00,11.51,157,37.406656,-122.069203,12.00,166,0 1347 | 1345,1,1,19.20,11.36,158,37.406761,-122.069212,12.00,166,0 1348 | 1346,1,1,15.50,11.41,158,37.406866,-122.069209,12.00,166,0 1349 | 1347,1,1,11.70,11.45,158,37.406968,-122.069187,12.00,167,0 1350 | 1348,1,1,11.70,11.17,159,37.407069,-122.069165,13.00,,0 1351 | 1349,1,1,11.30,10.85,159,37.407169,-122.069148,13.00,167,0 1352 | 1350,1,1,11.20,10.78,159,37.407268,-122.069136,13.00,167,0 1353 | 1351,1,1,0.00,10.79,160,37.407367,-122.069126,13.00,168,0 1354 | 1352,1,1,18.40,10.82,160,37.407465,-122.069119,13.00,169,0 1355 | 1353,1,1,14.80,10.82,161,37.407563,-122.069114,12.00,170,0 1356 | 1354,1,1,11.00,10.86,161,37.407662,-122.069109,12.00,170,0 1357 | 1355,1,1,11.10,10.92,161,37.407760,-122.069104,12.00,170,0 1358 | 1356,1,1,11.10,10.97,162,37.407859,-122.069097,11.00,170,0 1359 | 1357,1,1,11.20,11.01,162,37.407958,-122.069091,11.00,170,0 1360 | 1358,1,1,11.20,10.88,162,37.408057,-122.069084,11.00,169,0 1361 | 1359,1,1,11.00,10.70,163,37.408155,-122.069077,10.00,169,0 1362 | 1360,1,1,10.80,10.42,163,37.408252,-122.069072,10.00,169,0 1363 | 1361,1,1,10.60,10.37,163,37.408348,-122.069069,10.00,168,0 1364 | 1362,1,1,10.50,10.52,164,37.408441,-122.069067,9.00,168,0 1365 | 1363,1,1,10.60,10.32,164,37.408533,-122.069069,9.00,168,0 1366 | 1364,1,1,10.40,9.96,165,37.408620,-122.069073,9.00,168,0 1367 | 1365,1,1,9.80,9.08,165,37.408701,-122.069079,9.00,168,0 1368 | 1366,1,1,8.50,7.41,165,37.408774,-122.069088,9.00,167,0 1369 | 1367,1,1,7.40,6.96,166,37.408838,-122.069099,8.00,166,0 1370 | 1368,1,1,6.80,6.40,166,37.408895,-122.069110,8.00,166,0 1371 | 1369,1,1,0.00,6.21,166,37.408948,-122.069121,8.00,166,0 1372 | 1370,1,1,8.80,5.81,166,37.408998,-122.069131,8.00,166,0 1373 | 1371,1,1,7.80,5.45,167,37.409048,-122.069141,8.00,165,0 1374 | 1372,1,1,5.40,5.29,167,37.409096,-122.069149,8.00,164,0 1375 | 1373,1,1,5.30,5.11,167,37.409143,-122.069158,8.00,164,0 1376 | 1374,1,1,5.20,5.05,167,37.409188,-122.069167,8.00,164,0 1377 | 1375,1,1,5.10,4.94,167,37.409232,-122.069177,8.00,163,0 1378 | 1376,1,1,5.00,4.87,168,37.409275,-122.069189,8.00,162,0 1379 | 1377,1,1,4.90,4.78,168,37.409316,-122.069201,8.00,161,0 1380 | 1378,1,1,4.80,4.73,168,37.409356,-122.069215,8.00,160,0 1381 | 1379,1,1,4.70,4.59,168,37.409397,-122.069227,8.00,159,0 1382 | 1380,1,1,4.60,4.45,168,37.409439,-122.069239,8.00,159,0 1383 | 1381,1,1,4.50,4.40,168,37.409482,-122.069248,8.00,158,0 1384 | 1382,1,1,4.50,4.75,168,37.409529,-122.069254,8.00,157,0 1385 | 1383,1,1,4.80,5.31,169,37.409579,-122.069255,8.00,156,0 1386 | 1384,1,1,5.40,5.93,169,37.409633,-122.069251,8.00,156,0 1387 | 1385,1,1,6.00,6.47,169,37.409691,-122.069242,8.00,156,0 1388 | 1386,1,1,6.60,6.98,169,37.409753,-122.069231,8.00,156,0 1389 | 1387,1,1,7.10,7.36,169,37.409819,-122.069216,8.00,155,0 1390 | 1388,1,1,8.00,7.71,170,37.409887,-122.069201,8.00,155,0 1391 | 1389,1,1,8.30,7.97,170,37.409958,-122.069184,8.00,155,0 1392 | 1390,1,1,0.00,8.20,170,37.410031,-122.069169,9.00,155,0 1393 | 1391,1,1,12.90,8.27,171,37.410106,-122.069154,9.00,155,0 1394 | 1392,1,1,11.10,8.41,171,37.410182,-122.069140,9.00,155,0 1395 | 1393,1,1,8.60,8.57,171,37.410260,-122.069126,9.00,155,0 1396 | 1394,1,1,8.70,8.61,171,37.410339,-122.069111,9.00,155,0 1397 | 1395,1,1,8.80,8.76,172,37.410418,-122.069094,9.00,155,0 1398 | 1396,1,1,8.90,8.87,172,37.410499,-122.069078,9.00,156,0 1399 | 1397,1,1,9.00,8.93,172,37.410580,-122.069065,9.00,156,0 1400 | 1398,1,1,9.10,8.99,173,37.410662,-122.069058,9.00,156,0 1401 | 1399,1,1,9.20,9.05,173,37.410745,-122.069057,9.00,156,0 1402 | 1400,1,1,9.20,9.09,173,37.410828,-122.069060,9.00,156,0 1403 | 1401,1,1,9.30,9.18,174,37.410912,-122.069066,9.00,156,0 1404 | 1402,1,1,9.30,9.33,174,37.410998,-122.069075,9.00,157,0 1405 | 1403,1,1,9.50,9.51,175,37.411084,-122.069085,9.00,157,0 1406 | 1404,1,1,9.70,9.64,175,37.411172,-122.069095,9.00,157,0 1407 | 1405,1,1,10.10,9.76,175,37.411261,-122.069104,9.00,157,0 1408 | 1406,1,1,10.20,9.82,176,37.411352,-122.069113,9.00,157,0 1409 | 1407,1,1,0.00,9.84,176,37.411442,-122.069120,9.00,158,0 1410 | 1408,1,1,16.20,9.87,176,37.411533,-122.069127,9.00,158,0 1411 | 1409,1,1,13.40,9.81,177,37.411624,-122.069133,9.00,158,0 1412 | 1410,1,1,10.00,9.75,177,37.411715,-122.069138,8.00,158,0 1413 | 1411,1,1,9.90,9.71,177,37.411805,-122.069143,8.00,159,0 1414 | 1412,1,1,9.90,9.65,178,37.411894,-122.069146,8.00,159,0 1415 | 1413,1,1,9.80,9.57,178,37.411982,-122.069149,8.00,159,0 1416 | 1414,1,1,9.70,9.50,179,37.412069,-122.069149,8.00,159,0 1417 | 1415,1,1,9.70,9.43,179,37.412155,-122.069148,8.00,159,0 1418 | 1416,1,1,9.60,9.36,179,37.412240,-122.069145,8.00,159,0 1419 | 1417,1,1,9.50,9.29,180,37.412324,-122.069139,8.00,159,0 1420 | 1418,1,1,9.40,9.24,180,37.412408,-122.069129,8.00,159,0 1421 | 1419,1,1,9.40,9.22,180,37.412492,-122.069116,8.00,159,0 1422 | 1420,1,1,9.30,9.14,181,37.412574,-122.069100,8.00,159,0 1423 | 1421,1,1,9.50,9.14,181,37.412656,-122.069079,8.00,159,0 1424 | 1422,1,1,1.30,9.02,182,37.412737,-122.069054,8.00,158,0 1425 | 1423,1,1,15.30,8.92,182,37.412817,-122.069024,8.00,158,0 1426 | 1424,1,1,10.60,8.88,182,37.412897,-122.068991,8.00,158,0 1427 | 1425,1,1,9.00,8.93,183,37.412978,-122.068957,8.00,158,0 1428 | 1426,1,1,9.10,9.24,183,37.413060,-122.068925,8.00,157,0 1429 | 1427,1,1,9.30,9.32,183,37.413143,-122.068903,8.00,157,0 1430 | 1428,1,1,9.40,9.01,184,37.413226,-122.068897,8.00,157,0 1431 | 1429,1,1,9.10,8.88,184,37.413307,-122.068899,8.00,157,0 1432 | 1430,1,1,9.00,8.78,184,37.413388,-122.068901,8.00,157,0 1433 | 1431,1,1,8.90,8.75,185,37.413469,-122.068900,7.00,157,0 1434 | 1432,1,1,8.90,8.77,185,37.413549,-122.068897,7.00,157,0 1435 | 1433,1,1,8.90,8.81,186,37.413630,-122.068895,7.00,157,0 1436 | 1434,1,1,8.90,8.86,186,37.413711,-122.068893,6.00,157,0 1437 | 1435,1,1,9.00,8.88,186,37.413792,-122.068892,6.00,157,0 1438 | 1436,1,1,9.00,8.93,187,37.413873,-122.068890,5.00,157,0 1439 | 1437,1,1,9.10,8.92,187,37.413954,-122.068888,5.00,157,0 1440 | 1438,1,1,9.10,8.94,187,37.414035,-122.068887,5.00,157,0 1441 | 1439,1,1,9.10,8.91,188,37.414116,-122.068885,4.00,158,0 1442 | 1440,1,1,9.00,8.82,188,37.414198,-122.068884,4.00,157,0 1443 | 1441,1,1,9.00,8.81,188,37.414280,-122.068882,4.00,157,0 1444 | 1442,1,1,9.00,8.83,189,37.414361,-122.068881,4.00,157,0 1445 | 1443,1,1,9.00,8.84,189,37.414443,-122.068880,4.00,158,0 1446 | 1444,1,1,9.00,8.86,190,37.414525,-122.068879,4.00,,0 1447 | 1445,1,1,9.00,8.91,190,37.414607,-122.068878,4.00,157,0 1448 | 1446,1,1,9.00,8.95,190,37.414689,-122.068876,4.00,157,0 1449 | 1447,1,1,9.10,8.96,191,37.414771,-122.068875,4.00,157,0 1450 | 1448,1,1,9.10,8.98,191,37.414853,-122.068874,4.00,157,0 1451 | 1449,1,1,9.10,8.94,191,37.414935,-122.068873,4.00,157,0 1452 | 1450,1,1,9.10,8.92,192,37.415017,-122.068872,4.00,157,0 1453 | 1451,1,1,9.00,8.92,192,37.415100,-122.068871,4.00,,0 1454 | 1452,1,1,9.00,8.92,193,37.415182,-122.068869,4.00,157,0 1455 | 1453,1,1,9.00,8.91,193,37.415264,-122.068868,4.00,157,0 1456 | 1454,1,1,9.00,8.91,193,37.415346,-122.068867,4.00,157,0 1457 | 1455,1,1,9.00,8.93,194,37.415428,-122.068865,4.00,156,0 1458 | 1456,1,1,9.00,8.91,194,37.415509,-122.068864,4.00,,0 1459 | 1457,1,1,9.00,8.91,194,37.415591,-122.068862,4.00,156,0 1460 | 1458,1,1,9.00,8.91,195,37.415673,-122.068861,4.00,156,0 1461 | 1459,1,1,9.00,8.92,195,37.415755,-122.068859,4.00,156,0 1462 | 1460,1,1,9.00,8.91,195,37.415836,-122.068857,4.00,156,0 1463 | 1461,1,1,9.00,8.92,196,37.415918,-122.068855,4.00,156,0 1464 | 1462,1,1,9.00,8.90,196,37.415999,-122.068853,4.00,157,0 1465 | 1463,1,1,9.20,8.93,197,37.416080,-122.068851,4.00,157,0 1466 | 1464,1,1,9.20,8.96,197,37.416162,-122.068850,4.00,157,0 1467 | 1465,1,1,9.20,8.95,197,37.416243,-122.068849,4.00,156,0 1468 | 1466,1,1,9.10,8.87,198,37.416324,-122.068848,3.00,156,0 1469 | 1467,1,1,0.00,8.80,198,37.416405,-122.068849,3.00,156,0 1470 | 1468,1,1,0.00,8.75,198,37.416487,-122.068850,3.00,157,0 1471 | 1469,1,1,9.00,8.75,199,37.416569,-122.068852,3.00,157,0 1472 | 1470,1,1,5.20,8.91,199,37.416651,-122.068854,3.00,157,0 1473 | 1471,1,1,27.00,9.15,199,37.416734,-122.068855,2.00,157,0 1474 | 1472,1,1,12.20,9.28,200,37.416818,-122.068855,2.00,156,0 1475 | 1473,1,1,9.40,9.41,200,37.416904,-122.068854,2.00,156,0 1476 | 1474,1,1,9.50,9.51,201,37.416990,-122.068851,2.00,156,0 1477 | 1475,1,1,9.60,9.47,201,37.417078,-122.068846,2.00,156,0 1478 | 1476,1,1,9.60,9.24,201,37.417167,-122.068842,2.00,157,0 1479 | 1477,1,1,9.50,9.58,202,37.417255,-122.068840,2.00,157,0 1480 | 1478,1,1,9.60,9.59,202,37.417340,-122.068844,2.00,156,0 1481 | 1479,1,1,9.70,9.19,202,37.417422,-122.068858,2.00,156,0 1482 | 1480,1,1,9.30,8.73,203,37.417500,-122.068890,2.00,157,0 1483 | 1481,1,1,8.90,9.12,203,37.417576,-122.068937,2.00,157,0 1484 | 1482,1,1,9.10,8.99,204,37.417654,-122.068969,2.00,157,0 1485 | 1483,1,1,9.10,8.88,204,37.417736,-122.068982,2.00,157,0 1486 | 1484,1,1,9.10,9.00,204,37.417820,-122.068985,2.00,158,0 1487 | 1485,1,1,9.20,9.23,205,37.417906,-122.068983,2.00,159,0 1488 | 1486,1,1,9.30,9.27,205,37.417992,-122.068983,2.00,,0 1489 | 1487,1,1,9.40,9.26,205,37.418078,-122.068985,2.00,161,0 1490 | 1488,1,1,9.40,9.23,206,37.418164,-122.068988,2.00,162,0 1491 | 1489,1,1,9.40,9.19,206,37.418248,-122.068989,2.00,163,0 1492 | 1490,1,1,9.30,9.15,206,37.418332,-122.068989,2.00,164,0 1493 | 1491,1,1,9.30,9.11,207,37.418415,-122.068988,3.00,164,0 1494 | 1492,1,1,9.30,9.08,207,37.418497,-122.068987,3.00,165,0 1495 | 1493,1,1,9.20,9.01,208,37.418579,-122.068985,3.00,165,0 1496 | 1494,1,1,9.10,8.95,208,37.418661,-122.068984,3.00,165,0 1497 | 1495,1,1,9.10,8.92,208,37.418743,-122.068982,3.00,165,0 1498 | 1496,1,1,9.10,8.93,209,37.418824,-122.068981,3.00,165,0 1499 | 1497,1,1,9.00,8.93,209,37.418905,-122.068981,3.00,164,0 1500 | 1498,1,1,9.00,8.93,209,37.418987,-122.068981,3.00,164,0 1501 | 1499,1,1,9.20,8.92,210,37.419068,-122.068981,3.00,164,0 1502 | 1500,1,1,9.20,8.87,210,37.419148,-122.068983,3.00,163,0 1503 | 1501,1,1,0.00,8.86,210,37.419229,-122.068985,3.00,163,0 1504 | 1502,1,1,14.70,8.82,211,37.419309,-122.068987,3.00,163,0 1505 | 1503,1,1,12.00,8.73,211,37.419388,-122.068991,2.00,163,0 1506 | 1504,1,1,8.90,8.63,212,37.419467,-122.068996,2.00,162,0 1507 | 1505,1,1,8.80,8.64,212,37.419546,-122.069003,2.00,162,0 1508 | 1506,1,1,9.00,8.64,212,37.419626,-122.069013,1.00,162,0 1509 | 1507,1,1,8.80,8.44,213,37.419702,-122.069030,1.00,161,0 1510 | 1508,1,1,0.00,7.81,213,37.419760,-122.069070,1.00,161,0 1511 | 1509,1,1,12.70,6.92,213,37.419787,-122.069140,1.00,161,0 1512 | 1510,1,1,9.20,6.52,214,37.419797,-122.069218,1.00,161,0 1513 | 1511,1,1,6.70,6.74,214,37.419800,-122.069296,2.00,160,0 1514 | 1512,1,1,7.00,6.91,214,37.419797,-122.069374,2.00,161,0 1515 | 1513,1,1,7.10,6.92,214,37.419795,-122.069452,2.00,161,0 1516 | 1514,1,1,7.10,6.85,214,37.419796,-122.069529,2.00,161,0 1517 | 1515,1,1,7.00,6.70,215,37.419797,-122.069605,2.00,162,0 1518 | 1516,1,1,6.80,6.40,215,37.419796,-122.069678,2.00,162,0 1519 | 1517,1,1,6.50,6.07,215,37.419790,-122.069748,3.00,162,0 1520 | 1518,1,1,6.20,5.83,215,37.419780,-122.069815,3.00,162,0 1521 | 1519,1,1,6.00,5.83,216,37.419769,-122.069880,3.00,162,0 1522 | 1520,1,1,6.10,6.14,216,37.419758,-122.069943,3.00,161,0 1523 | 1521,1,1,6.40,6.21,216,37.419750,-122.070006,3.00,161,0 1524 | 1522,1,1,6.40,5.39,216,37.419744,-122.070068,3.00,161,0 1525 | 1523,1,1,5.70,4.62,216,37.419744,-122.070127,3.00,160,0 1526 | 1524,1,1,4.90,4.34,217,37.419748,-122.070184,3.00,160,0 1527 | 1525,1,1,4.50,4.47,217,37.419755,-122.070240,3.00,160,0 1528 | 1526,1,1,4.60,4.69,217,37.419763,-122.070294,4.00,159,0 1529 | 1527,1,1,5.20,4.87,217,37.419769,-122.070349,4.00,159,0 1530 | 1528,1,1,5.30,5.05,217,37.419771,-122.070403,4.00,159,0 1531 | 1529,1,1,5.30,5.01,217,37.419767,-122.070459,4.00,159,0 1532 | 1530,1,1,5.30,5.05,217,37.419753,-122.070517,4.00,158,0 1533 | 1531,1,1,0.00,5.25,218,37.419732,-122.070577,4.00,156,0 1534 | 1532,1,1,0.00,5.14,218,37.419722,-122.070636,4.00,155,0 1535 | 1533,1,1,5.20,4.92,218,37.419740,-122.070689,4.00,154,0 1536 | 1534,1,1,5.30,5.03,218,37.419777,-122.070731,4.00,153,0 1537 | 1535,1,1,5.30,5.13,218,37.419818,-122.070756,4.00,153,0 1538 | 1536,1,1,0.00,4.99,218,37.419861,-122.070772,4.00,153,0 1539 | 1537,1,1,10.90,4.97,219,37.419906,-122.070785,4.00,152,0 1540 | 1538,1,1,7.60,5.17,219,37.419952,-122.070805,4.00,152,0 1541 | 1539,1,1,5.30,5.46,219,37.419998,-122.070832,4.00,152,0 1542 | 1540,1,1,5.60,5.83,219,37.420042,-122.070869,3.00,151,0 1543 | 1541,1,1,5.90,6.18,219,37.420082,-122.070917,3.00,151,0 1544 | 1542,1,1,6.30,6.49,219,37.420118,-122.070976,3.00,151,0 1545 | 1543,1,1,6.60,6.73,220,37.420149,-122.071044,3.00,151,0 1546 | 1544,1,1,6.90,6.85,220,37.420178,-122.071116,3.00,151,0 1547 | 1545,1,1,7.00,6.98,220,37.420206,-122.071190,3.00,150,0 1548 | 1546,1,1,7.10,7.18,220,37.420233,-122.071265,3.00,150,0 1549 | 1547,1,1,7.30,7.29,220,37.420259,-122.071341,3.00,150,0 1550 | 1548,1,1,7.40,7.40,221,37.420286,-122.071419,3.00,150,0 1551 | 1549,1,1,7.50,7.48,221,37.420313,-122.071498,3.00,150,0 1552 | 1550,1,1,7.60,7.62,221,37.420340,-122.071579,3.00,149,0 1553 | 1551,1,1,7.80,7.79,222,37.420369,-122.071661,3.00,149,0 1554 | 1552,1,1,7.90,8.04,222,37.420399,-122.071746,3.00,150,0 1555 | 1553,1,1,8.50,8.26,222,37.420431,-122.071832,3.00,150,0 1556 | 1554,1,1,8.70,8.46,222,37.420463,-122.071920,3.00,150,0 1557 | 1555,1,1,8.90,8.61,223,37.420495,-122.072011,3.00,150,0 1558 | 1556,1,1,9.00,8.74,223,37.420527,-122.072103,4.00,151,0 1559 | 1557,1,1,0.00,8.90,223,37.420559,-122.072197,4.00,151,0 1560 | 1558,1,1,0.00,9.02,224,37.420590,-122.072293,4.00,152,0 1561 | 1559,1,1,9.40,9.09,224,37.420619,-122.072392,4.00,153,0 1562 | 1560,1,1,9.40,9.12,224,37.420647,-122.072492,4.00,154,0 1563 | 1561,1,1,9.50,9.17,225,37.420674,-122.072593,3.00,154,0 1564 | 1562,1,1,0.00,9.21,225,37.420698,-122.072695,3.00,155,0 1565 | 1563,1,1,0.00,9.18,225,37.420721,-122.072798,2.00,156,0 1566 | 1564,1,1,9.40,9.14,226,37.420741,-122.072901,2.00,156,0 1567 | 1565,1,1,9.40,9.09,226,37.420759,-122.073003,1.00,157,0 1568 | 1566,1,1,9.30,9.02,227,37.420775,-122.073105,1.00,157,0 1569 | 1567,1,1,6.70,8.91,227,37.420789,-122.073207,0.00,158,0 1570 | 1568,1,1,9.10,8.83,227,37.420800,-122.073308,0.00,158,0 1571 | 1569,1,1,9.10,8.79,228,37.420809,-122.073408,0.00,158,0 1572 | 1570,1,1,9.00,8.72,228,37.420816,-122.073509,0.00,159,0 1573 | 1571,1,1,8.90,8.65,228,37.420821,-122.073608,0.00,159,0 1574 | 1572,1,1,9.60,8.58,229,37.420824,-122.073708,0.00,159,0 1575 | 1573,1,1,8.80,8.55,229,37.420825,-122.073807,1.00,159,0 1576 | 1574,1,1,8.80,8.58,230,37.420824,-122.073907,1.00,159,0 1577 | 1575,1,1,8.90,8.66,230,37.420820,-122.074006,1.00,159,0 1578 | 1576,1,1,8.90,8.76,230,37.420814,-122.074106,1.00,158,0 1579 | 1577,1,1,9.00,8.84,231,37.420805,-122.074207,2.00,159,0 1580 | 1578,1,1,9.20,8.91,231,37.420792,-122.074309,2.00,159,0 1581 | 1579,1,1,9.30,8.99,231,37.420776,-122.074412,2.00,159,0 1582 | 1580,1,1,9.50,9.09,231,37.420757,-122.074516,2.00,159,0 1583 | 1581,1,1,9.50,9.14,232,37.420741,-122.074621,2.00,160,0 1584 | 1582,1,1,6.80,9.15,232,37.420733,-122.074727,2.00,160,0 1585 | 1583,1,1,9.50,9.17,232,37.420728,-122.074834,3.00,160,0 1586 | 1584,1,1,9.60,9.21,233,37.420719,-122.074939,3.00,160,0 1587 | 1585,1,1,9.60,9.20,233,37.420705,-122.075043,3.00,160,0 1588 | 1586,1,1,9.50,9.16,234,37.420689,-122.075146,3.00,160,0 1589 | 1587,1,1,7.60,9.14,234,37.420673,-122.075248,3.00,160,0 1590 | 1588,1,1,9.50,9.13,234,37.420657,-122.075350,2.00,161,0 1591 | 1589,1,1,9.50,9.07,235,37.420641,-122.075452,2.00,161,0 1592 | 1590,1,1,9.40,8.96,235,37.420626,-122.075553,2.00,161,0 1593 | 1591,1,1,9.30,8.94,235,37.420611,-122.075655,2.00,161,0 1594 | 1592,1,1,8.70,8.91,236,37.420598,-122.075757,2.00,161,0 1595 | 1593,1,1,9.30,8.87,236,37.420585,-122.075859,2.00,161,0 1596 | 1594,1,1,9.30,8.91,236,37.420574,-122.075962,2.00,161,0 1597 | 1595,1,1,9.20,8.88,237,37.420564,-122.076065,2.00,161,0 1598 | 1596,1,1,9.30,8.87,237,37.420556,-122.076167,2.00,161,0 1599 | 1597,1,1,8.70,8.79,238,37.420548,-122.076268,2.00,161,0 1600 | 1598,1,1,9.00,8.63,238,37.420542,-122.076366,2.00,160,0 1601 | 1599,1,1,9.00,8.58,238,37.420536,-122.076462,2.00,160,0 1602 | 1600,1,1,8.50,8.15,239,37.420531,-122.076554,2.00,161,0 1603 | 1601,1,1,7.80,7.40,239,37.420527,-122.076642,2.00,161,0 1604 | 1602,1,1,10.10,6.97,239,37.420524,-122.076726,3.00,161,0 1605 | 1603,1,1,7.10,6.82,240,37.420522,-122.076807,3.00,162,0 1606 | 1604,1,1,7.10,6.77,240,37.420520,-122.076885,3.00,162,0 1607 | 1605,1,1,7.00,6.67,240,37.420519,-122.076960,3.00,163,0 1608 | 1606,1,1,6.80,6.54,240,37.420518,-122.077033,3.00,163,0 1609 | 1607,1,1,12.00,6.39,241,37.420519,-122.077105,3.00,164,0 1610 | 1608,1,1,6.50,6.23,241,37.420519,-122.077175,3.00,164,0 1611 | 1609,1,1,6.10,5.78,241,37.420520,-122.077242,3.00,164,0 1612 | 1610,1,1,5.40,5.11,241,37.420522,-122.077304,3.00,163,0 1613 | 1611,1,1,4.70,4.45,241,37.420522,-122.077359,4.00,163,0 1614 | 1612,1,1,10.70,3.90,241,37.420523,-122.077405,4.00,163,0 1615 | 1613,1,1,3.80,3.57,242,37.420524,-122.077446,4.00,162,0 1616 | 1614,1,1,3.60,3.39,242,37.420527,-122.077484,4.00,162,0 1617 | 1615,1,1,3.50,3.30,242,37.420531,-122.077519,4.00,162,0 1618 | 1616,1,1,3.40,3.22,242,37.420536,-122.077555,4.00,161,0 1619 | 1617,1,1,11.10,3.25,242,37.420543,-122.077591,4.00,161,0 1620 | 1618,1,1,3.50,3.27,242,37.420549,-122.077627,4.00,160,0 1621 | 1619,1,1,3.40,3.21,242,37.420555,-122.077665,4.00,159,0 1622 | 1620,1,1,3.30,3.15,242,37.420560,-122.077701,4.00,159,0 1623 | 1621,1,1,3.10,2.91,242,37.420563,-122.077732,3.00,159,0 1624 | 1622,1,1,4.60,2.35,242,37.420565,-122.077756,3.00,160,0 1625 | 1623,1,1,2.00,1.81,242,37.420566,-122.077774,3.00,159,0 1626 | 1624,1,1,0.50,0.38,242,37.420566,-122.077786,3.00,159,0 1627 | 1625,1,1,0.40,0.17,243,37.420566,-122.077792,3.00,158,0 1628 | 1626,1,1,0.30,0.06,243,37.420566,-122.077795,3.00,158,0 1629 | 1627,1,1,0.00,0.05,243,37.420566,-122.077795,3.00,158,0 1630 | 1628,1,1,0.00,0.01,243,37.420566,-122.077794,3.00,158,0 1631 | 1629,1,1,0.00,0.00,243,37.420566,-122.077794,3.00,157,0 1632 | 1630,1,1,0.00,0.01,243,37.420566,-122.077795,3.00,157,0 1633 | 1631,1,1,0.00,0.13,243,37.420566,-122.077796,3.00,157,0 1634 | 1632,1,1,0.00,0.10,243,37.420566,-122.077797,3.00,157,0 1635 | 1633,1,1,0.00,0.06,243,37.420566,-122.077798,3.00,157,0 1636 | 1634,1,1,0.00,0.01,243,37.420566,-122.077799,3.00,157,0 1637 | 1635,1,1,0.00,0.00,243,37.420565,-122.077798,3.00,157,0 1638 | 1636,1,1,0.00,0.00,243,37.420565,-122.077796,3.00,157,0 1639 | 1637,1,1,0.00,0.00,243,37.420565,-122.077797,3.00,156,0 1640 | 1638,1,1,0.00,0.00,243,37.420566,-122.077802,3.00,156,0 1641 | 1639,1,1,0.00,0.31,243,37.420569,-122.077815,3.00,155,0 1642 | 1640,1,1,10.20,1.76,243,37.420573,-122.077840,3.00,154,0 1643 | 1641,1,1,3.40,3.18,243,37.420578,-122.077875,3.00,153,0 1644 | 1642,1,1,4.50,4.29,243,37.420584,-122.077922,3.00,152,0 1645 | 1643,1,1,5.30,5.10,243,37.420592,-122.077979,3.00,151,0 1646 | 1644,1,1,6.00,5.80,243,37.420600,-122.078045,3.00,151,0 1647 | 1645,1,1,0.00,6.56,243,37.420608,-122.078120,3.00,151,0 1648 | 1646,1,1,0.00,7.23,243,37.420617,-122.078202,3.00,151,0 1649 | 1647,1,1,7.90,7.68,244,37.420625,-122.078289,2.00,151,0 1650 | 1648,1,1,8.30,8.06,244,37.420634,-122.078381,2.00,152,0 1651 | 1649,1,1,8.60,8.36,244,37.420643,-122.078477,2.00,152,0 1652 | 1650,1,1,0.00,8.61,244,37.420652,-122.078575,2.00,153,0 1653 | 1651,1,1,0.00,8.78,245,37.420660,-122.078674,2.00,153,0 1654 | 1652,1,1,9.20,8.94,245,37.420668,-122.078776,1.00,153,0 1655 | 1653,1,1,9.40,9.15,245,37.420675,-122.078879,1.00,154,0 1656 | 1654,1,1,9.60,9.29,246,37.420683,-122.078984,1.00,155,0 1657 | 1655,1,1,1.60,9.35,246,37.420691,-122.079090,1.00,155,0 1658 | 1656,1,1,9.70,9.38,247,37.420698,-122.079197,1.00,155,0 1659 | 1657,1,1,9.70,9.40,247,37.420705,-122.079306,1.00,156,0 1660 | 1658,1,1,9.70,9.39,247,37.420712,-122.079415,1.00,156,0 1661 | 1659,1,1,9.70,9.43,248,37.420720,-122.079525,1.00,156,0 1662 | 1660,1,1,7.10,9.52,248,37.420727,-122.079636,1.00,156,0 1663 | 1661,1,1,9.80,9.57,248,37.420734,-122.079747,1.00,156,0 1664 | 1662,1,1,9.90,9.62,249,37.420740,-122.079858,1.00,156,0 1665 | 1663,1,1,10.00,9.69,249,37.420747,-122.079970,1.00,158,0 1666 | 1664,1,1,10.00,9.71,249,37.420754,-122.080081,1.00,159,0 1667 | 1665,1,1,8.30,9.71,250,37.420761,-122.080192,0.00,159,0 1668 | 1666,1,1,9.90,9.62,250,37.420767,-122.080303,0.00,159,0 1669 | 1667,1,1,9.80,9.51,251,37.420774,-122.080413,0.00,160,0 1670 | 1668,1,1,9.70,9.43,251,37.420780,-122.080522,0.00,160,0 1671 | 1669,1,1,9.60,9.36,251,37.420786,-122.080630,0.00,159,0 1672 | 1670,1,1,9.80,9.33,252,37.420792,-122.080738,0.00,159,0 1673 | 1671,1,1,9.70,9.27,252,37.420798,-122.080844,0.00,159,0 1674 | 1672,1,1,9.60,9.23,252,37.420804,-122.080949,0.00,159,0 1675 | 1673,1,1,9.50,9.16,253,37.420810,-122.081053,0.00,160,0 1676 | 1674,1,1,9.40,9.07,253,37.420816,-122.081156,0.00,161,0 1677 | 1675,1,1,9.80,8.94,253,37.420822,-122.081259,0.00,162,0 1678 | 1676,1,1,9.20,8.83,254,37.420827,-122.081361,0.00,161,0 1679 | 1677,1,1,9.00,8.72,254,37.420833,-122.081463,1.00,161,0 1680 | 1678,1,1,9.00,8.67,255,37.420839,-122.081564,1.00,162,0 1681 | 1679,1,1,9.00,8.73,255,37.420844,-122.081666,2.00,162,0 1682 | 1680,1,1,10.20,8.78,255,37.420850,-122.081768,2.00,162,0 1683 | 1681,1,1,9.20,8.87,256,37.420855,-122.081870,2.00,163,0 1684 | 1682,1,1,9.30,8.97,256,37.420861,-122.081972,2.00,163,0 1685 | 1683,1,1,9.30,9.03,256,37.420866,-122.082075,2.00,163,0 1686 | 1684,1,1,9.40,9.09,257,37.420872,-122.082178,2.00,162,0 1687 | 1685,1,1,7.90,9.11,257,37.420877,-122.082283,2.00,163,0 1688 | 1686,1,1,9.40,9.11,258,37.420883,-122.082388,3.00,163,0 1689 | 1687,1,1,9.40,9.12,258,37.420889,-122.082494,3.00,163,0 1690 | 1688,1,1,9.40,9.14,258,37.420894,-122.082600,3.00,163,0 1691 | 1689,1,1,9.50,9.21,259,37.420901,-122.082708,3.00,163,0 1692 | 1690,1,1,8.00,9.27,259,37.420907,-122.082815,4.00,164,0 1693 | 1691,1,1,9.60,9.32,259,37.420914,-122.082923,4.00,163,0 1694 | 1692,1,1,9.70,9.45,260,37.420921,-122.083031,4.00,163,0 1695 | 1693,1,1,9.80,9.55,260,37.420928,-122.083140,4.00,163,0 1696 | 1694,1,1,9.80,9.52,260,37.420936,-122.083247,5.00,164,0 1697 | 1695,1,1,7.70,9.34,261,37.420943,-122.083354,5.00,164,0 1698 | 1696,1,1,9.40,9.12,261,37.420951,-122.083460,5.00,164,0 1699 | 1697,1,1,9.20,8.90,262,37.420958,-122.083564,5.00,164,0 1700 | 1698,1,1,8.90,8.66,262,37.420965,-122.083666,5.00,164,0 1701 | 1699,1,1,8.80,8.53,262,37.420972,-122.083766,6.00,164,0 1702 | 1700,1,1,10.90,8.51,263,37.420978,-122.083864,6.00,164,0 1703 | 1701,1,1,8.70,8.49,263,37.420984,-122.083960,6.00,164,0 1704 | 1702,1,1,8.70,8.42,263,37.420990,-122.084054,6.00,165,0 1705 | 1703,1,1,8.60,8.31,264,37.420995,-122.084148,6.00,165,0 1706 | 1704,1,1,8.50,8.21,264,37.421001,-122.084241,6.00,165,0 1707 | 1705,1,1,10.10,8.11,264,37.421006,-122.084335,6.00,165,0 1708 | 1706,1,1,8.30,8.04,265,37.421012,-122.084428,6.00,164,0 1709 | 1707,1,1,8.20,7.93,265,37.421017,-122.084521,6.00,164,0 1710 | 1708,1,1,8.10,7.80,265,37.421023,-122.084612,7.00,164,0 1711 | 1709,1,1,8.00,7.68,266,37.421029,-122.084700,7.00,163,0 1712 | 1710,1,1,9.60,7.50,266,37.421034,-122.084786,7.00,163,0 1713 | 1711,1,1,7.50,7.20,266,37.421040,-122.084867,7.00,162,0 1714 | 1712,1,1,7.10,6.81,266,37.421046,-122.084942,7.00,162,0 1715 | 1713,1,1,6.40,6.17,267,37.421051,-122.085012,7.00,162,0 1716 | 1714,1,1,5.60,5.38,267,37.421056,-122.085074,7.00,162,0 1717 | 1715,1,1,11.80,4.55,267,37.421061,-122.085128,7.00,162,0 1718 | 1716,1,1,4.00,3.76,267,37.421066,-122.085172,7.00,162,0 1719 | 1717,1,1,3.20,3.00,267,37.421071,-122.085206,7.00,162,0 1720 | 1718,1,1,2.60,2.32,267,37.421078,-122.085232,7.00,161,0 1721 | 1719,1,1,2.60,2.35,267,37.421090,-122.085253,7.00,161,0 1722 | 1720,1,1,16.70,2.73,268,37.421109,-122.085272,7.00,160,0 1723 | 1721,1,1,3.20,3.01,268,37.421134,-122.085288,7.00,160,0 1724 | 1722,1,1,3.30,3.17,268,37.421162,-122.085300,7.00,160,0 1725 | 1723,1,1,3.50,3.30,268,37.421193,-122.085305,7.00,160,0 1726 | 1724,1,1,3.60,3.39,268,37.421225,-122.085303,7.00,160,0 1727 | 1725,1,1,1.80,3.42,268,37.421254,-122.085292,7.00,159,0 1728 | 1726,1,1,12.70,3.37,268,37.421280,-122.085274,7.00,159,0 1729 | 1727,1,1,5.30,3.41,268,37.421301,-122.085247,7.00,159,0 1730 | 1728,1,1,3.40,3.39,268,37.421315,-122.085215,7.00,158,0 1731 | 1729,1,1,3.40,3.27,268,37.421325,-122.085178,7.00,158,0 1732 | 1730,1,1,3.30,3.23,268,37.421330,-122.085141,7.00,158,0 1733 | 1731,1,1,3.20,3.19,268,37.421331,-122.085105,7.00,157,0 1734 | 1732,1,1,3.20,2.93,269,37.421331,-122.085071,8.00,157,0 1735 | 1733,1,1,3.00,2.70,269,37.421331,-122.085040,8.00,157,0 1736 | 1734,1,1,2.80,2.66,269,37.421333,-122.085014,8.00,157,0 1737 | 1735,1,1,2.70,2.62,269,37.421339,-122.084992,8.00,157,0 1738 | 1736,1,1,2.60,2.40,269,37.421345,-122.084974,8.00,157,0 1739 | 1737,1,1,2.40,1.97,269,37.421353,-122.084960,8.00,157,0 1740 | 1738,1,1,1.90,1.32,269,37.421361,-122.084948,8.00,156,0 1741 | 1739,1,1,1.20,0.85,269,37.421368,-122.084940,8.00,156,0 1742 | 1740,1,1,0.70,0.35,269,37.421374,-122.084934,8.00,156,0 1743 | 1741,1,1,0.20,0.00,269,37.421377,-122.084931,8.00,156,0 1744 | 1742,1,1,0.00,0.11,269,37.421379,-122.084930,8.00,156,0 1745 | 1743,1,1,0.00,0.06,269,37.421380,-122.084930,8.00,156,0 1746 | 1744,1,1,0.00,0.10,269,37.421380,-122.084931,8.00,,0 1747 | 1745,1,1,0.00,0.12,269,37.421379,-122.084933,8.00,156,0 1748 | 1746,1,1,0.00,0.11,269,37.421379,-122.084934,8.00,156,0 1749 | 1747,1,1,0.00,0.11,269,37.421379,-122.084936,8.00,157,0 1750 | 1748,1,1,0.00,0.23,269,37.421379,-122.084937,8.00,157,0 1751 | 1749,1,1,0.00,0.22,269,37.421380,-122.084937,8.00,157,0 1752 | 1750,1,1,0.00,0.15,269,37.421381,-122.084938,8.00,157,0 1753 | 1751,1,1,0.00,0.17,269,37.421383,-122.084937,8.00,157,0 1754 | 1752,1,1,0.00,0.09,269,37.421384,-122.084937,8.00,157,0 1755 | 1753,1,1,0.00,0.29,269,37.421385,-122.084937,8.00,157,0 1756 | 1754,1,1,0.00,0.02,269,37.421385,-122.084937,8.00,157,0 1757 | 1755,1,1,0.00,0.00,269,37.421384,-122.084938,8.00,157,0 1758 | 1756,1,1,0.00,0.00,269,37.421384,-122.084941,8.00,158,0 1759 | 1757,1,1,1.30,1.03,269,37.421384,-122.084948,8.00,158,0 1760 | 1758,1,1,1.90,1.62,269,37.421386,-122.084962,8.00,158,0 1761 | 1759,1,1,2.30,2.14,269,37.421391,-122.084982,8.00,158,0 1762 | 1760,1,1,2.70,2.49,269,37.421396,-122.085009,8.00,162,0 1763 | 1761,1,1,0.00,2.63,269,37.421402,-122.085039,8.00,165,0 1764 | 1762,1,1,0.00,2.61,269,37.421406,-122.085070,8.00,165,0 1765 | 1763,1,1,3.00,2.62,269,37.421409,-122.085102,8.00,165,0 1766 | 1764,1,1,3.00,2.63,270,37.421411,-122.085132,8.00,164,0 1767 | 1765,1,1,2.80,2.53,270,37.421412,-122.085160,8.00,164,0 1768 | 1766,1,1,0.00,2.37,270,37.421413,-122.085186,8.00,164,0 1769 | 1767,1,1,0.00,1.93,270,37.421414,-122.085208,7.00,164,0 1770 | 1768,1,1,4.40,1.46,270,37.421416,-122.085226,7.00,164,0 1771 | 1769,1,1,4.70,1.10,270,37.421417,-122.085238,7.00,164,0 1772 | 1770,1,1,1.40,0.75,270,37.421421,-122.085246,7.00,164,0 1773 | 1771,1,1,0.70,0.36,270,37.421426,-122.085250,7.00,164,0 1774 | 1772,1,1,0.30,0.49,270,37.421434,-122.085251,7.00,164,0 1775 | 1773,1,1,0.30,1.61,270,37.421446,-122.085249,7.00,164,0 1776 | 1774,1,1,1.70,2.06,270,37.421461,-122.085246,7.00,164,0 1777 | 1775,1,1,2.20,2.63,270,37.421481,-122.085243,8.00,165,0 1778 | 1776,1,1,2.70,2.49,270,37.421503,-122.085241,8.00,165,0 1779 | 1777,1,1,2.50,2.64,270,37.421529,-122.085241,8.00,165,0 1780 | 1778,1,1,3.10,2.76,270,37.421556,-122.085241,8.00,165,0 1781 | 1779,1,1,3.40,3.04,270,37.421584,-122.085242,8.00,164,0 1782 | 1780,1,1,3.40,3.05,270,37.421611,-122.085244,8.00,164,0 1783 | 1781,1,1,3.40,2.96,270,37.421636,-122.085245,8.00,164,0 1784 | 1782,1,1,0.00,2.76,271,37.421659,-122.085246,8.00,164,0 1785 | 1783,1,1,2.00,1.99,271,37.421678,-122.085246,8.00,164,0 1786 | 1784,1,1,3.90,1.66,271,37.421696,-122.085247,8.00,164,0 1787 | 1785,1,1,1.70,1.90,271,37.421714,-122.085251,8.00,164,0 1788 | 1786,1,1,1.90,2.44,271,37.421734,-122.085257,8.00,164,0 1789 | 1787,1,1,2.50,2.84,271,37.421758,-122.085268,8.00,164,0 1790 | 1788,1,1,3.10,2.89,271,37.421783,-122.085281,8.00,163,0 1791 | 1789,1,1,3.20,2.77,271,37.421805,-122.085297,8.00,163,0 1792 | 1790,1,1,3.10,2.40,271,37.421821,-122.085314,8.00,162,0 1793 | 1791,1,1,2.50,1.81,271,37.421831,-122.085330,8.00,162,0 1794 | 1792,1,1,1.80,1.37,271,37.421837,-122.085343,8.00,162,0 1795 | 1793,1,1,0.30,0.89,271,37.421840,-122.085354,8.00,162,0 1796 | 1794,1,1,1.90,0.37,271,37.421841,-122.085361,8.00,162,0 1797 | 1795,1,1,0.60,0.09,272,37.421841,-122.085362,8.00,162,0 1798 | 1796,1,1,0.20,0.38,272,37.421842,-122.085356,8.00,161,0 1799 | --------------------------------------------------------------------------------