-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrips.txt
2996 lines (1498 loc) · 173 KB
/
Trips.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
4.06666666667('Santa Cruz County', 'United States')Forrest of Nicene Mark Waterfallbeautiful dressing wife
4.06666666667('Santa Cruz County', 'United States')Serrena at beach
4.06666666667('Santa Cruz County', 'United States')Capitola Pierocean california beach water beautiful hair berkeley pier pretty anniversary gorgeous mexican mature german stunning wife venetian brunette lovely capitola 40s syrian
4.06666666667('Santa Cruz County', 'United States')The Venetian
23.25('San Francisco County', 'United States')Pam Cox
23.25('San Francisco County', 'United States')Inspecting the hive for a queen
23.25('San Francisco County', 'United States')3 beekeepers
23.25('San Francisco County', 'United States')IMG_9851
23.25('San Francisco County', 'United States')_MG_0183_pp
23.25('San Francisco County', 'United States')Serrena at Baker Beach
23.25('San Francisco County', 'United States')Sean at Baker Beach
23.25('San Francisco County', 'United States')_MG_0098_pp
23.25('San Francisco County', 'United States')Baker Beach
23.25('San Francisco County', 'United States')_MG_0069
23.25('San Francisco County', 'United States')Golden Gate Windmill
23.25('San Francisco County', 'United States')Golden Gate Windmill
23.25('San Francisco County', 'United States')Wall of graffiti with the Pacific Ocean behind her
23.25('San Francisco County', 'United States')Serrena at Baker Beach in San Francisco
73.9333333333('Alameda County', 'United States')Serrena and Ben enjoying the backyard. 10 fruit trees and the yard is done.
73.9333333333('Alameda County', 'United States')Finally took out the rats nests. No more Italian cypress trees.
73.9333333333('Alameda County', 'United States')Finally took out the rats nests. No more Italian cypress trees.
1.75('Alameda County', 'United States')Our old queens were producing sloppy cone and fairly aggressive bees. We executed them and replaced them with some nice chill Italian queens. Some of that honey now gets converted to honey wine and the entire hive is much more relaxed. :)
1.75('Alameda County', 'United States')The old queen
1.75('Alameda County', 'United States')Adding the new queen to the hive. A nice relaxed Italian.
1.75('Alameda County', 'United States')Serrena hunting for the old queen
1.75('Alameda County', 'United States')2016-04-11_04-50-38
1.75('Alameda County', 'United States')Looking through another frame for the queen.
0.516666666667('Contra Costa County', 'United States')Castle Rock
0.516666666667('Contra Costa County', 'United States')Hiking in Castle Rock
0.516666666667('Contra Costa County', 'United States')Hiking in Castle Rock
0.516666666667('Contra Costa County', 'United States')Castle Rock Hike
0.516666666667('Contra Costa County', 'United States')Castle Rock Hiking Trail
0.516666666667('Contra Costa County', 'United States')Castle Rock
0.516666666667('Contra Costa County', 'United States')Castle Rockbeautiful pretty gorgeous lovely
98.1666666667('Alameda County', 'United States')Solar Panels in Fremont
98.1666666667('Alameda County', 'United States')First frame from the hive
98.1666666667('Alameda County', 'United States')Serrena and Ben moving boxes
0.0166666666667('Alameda County', 'United States')_MG_9702
0.0166666666667('Alameda County', 'United States')_MG_9701
0.0166666666667('Alameda County', 'United States')_MG_9700
0.0166666666667('Alameda County', 'United States')_MG_9696
0.0166666666667('Alameda County', 'United States')Eagle Scout Badge
0.0166666666667('Alameda County', 'United States')_MG_9691
0.0166666666667('Alameda County', 'United States')_MG_9689
0.0166666666667('Alameda County', 'United States')_MG_9688
0.0166666666667('Alameda County', 'United States')_MG_9685
0.716666666667('Santa Clara County', 'United States')Uvas Canyon Waterfall Shoot
0.716666666667('Santa Clara County', 'United States')roseglam
0.716666666667('Santa Clara County', 'United States')_MG_9627
0.716666666667('Santa Clara County', 'United States')_MG_9562_pp
0.716666666667('Santa Clara County', 'United States')_MG_9482_pp
0.716666666667('Santa Clara County', 'United States')_MG_9475_pp
363.683333333('Napa County', 'United States')Bryce Canyon with snow
363.683333333('Napa County', 'United States')Bryce Canyon with snow
363.683333333('Napa County', 'United States')Bryce Canyon with snow and moon
363.683333333('Napa County', 'United States')Down in the hoodoos
363.683333333('Napa County', 'United States')Hoodoo bridge
363.683333333('Napa County', 'United States')Abdallah avoiding the ice trail
363.683333333('Napa County', 'United States')Bryce Canyon ice trail
363.683333333('Napa County', 'United States')Bryce Canyon
363.683333333('Napa County', 'United States')Bryce Canyon
363.683333333('Napa County', 'United States')Serrena at Lagunitascalifornia beer sampler flight ale craft petaluma sucks lagunitas lager sumpin
363.683333333('Napa County', 'United States')Calistoga Mustard
845.283333333('Napa County', 'United States')Pleasanton Ridge
845.283333333('Napa County', 'United States')Castle Montelena
845.283333333('Napa County', 'United States')Serrena Carter in Calistoga
845.283333333('Napa County', 'United States')_MG_7179_pp
845.283333333('Napa County', 'United States')Serrena in front of Chateau Montelena
845.283333333('Napa County', 'United States')_MG_7162_pp
845.283333333('Napa County', 'United States')Serrena in front of fireplace.beauty sunshine model floor gorgeous mexican german stunning wife brunette hardwood syrian ageless
168.15('Alameda County', 'United States')Brochure Work
168.15('Alameda County', 'United States')Serrena at the Backdoor Lounge
168.15('Alameda County', 'United States')Serrena at the Backdoor Lounge
168.15('Alameda County', 'United States')Serrena at the Backdoor Lounge
168.15('Alameda County', 'United States')Serrena at the Backdoor Lounge
168.15('Alameda County', 'United States')Serrena at the Backdoor Lounge
168.15('Alameda County', 'United States')Quarry Lakes
168.15('Alameda County', 'United States')Quarry Lakes
168.15('Alameda County', 'United States')_MG_8976
168.15('Alameda County', 'United States')_MG_8974
168.15('Alameda County', 'United States')_MG_8970
168.15('Alameda County', 'United States')_MG_8957
168.15('Alameda County', 'United States')_MG_8954
168.15('Alameda County', 'United States')_MG_8941
168.15('Alameda County', 'United States')_MG_8939
168.15('Alameda County', 'United States')_MG_8936
168.15('Alameda County', 'United States')_MG_8933
168.15('Alameda County', 'United States')Serrena
168.15('Alameda County', 'United States')Serrena
0.866666666667('Alameda County', 'United States')_MG_8806
0.866666666667('Alameda County', 'United States')_MG_8805
0.866666666667('Alameda County', 'United States')_MG_8804
0.866666666667('Alameda County', 'United States')_MG_8803
0.866666666667('Alameda County', 'United States')_MG_8802
0.866666666667('Alameda County', 'United States')_MG_8801
0.866666666667('Alameda County', 'United States')_MG_8800
0.866666666667('Alameda County', 'United States')_MG_8799
0.866666666667('Alameda County', 'United States')_MG_8798
0.866666666667('Alameda County', 'United States')_MG_8797
0.866666666667('Alameda County', 'United States')_MG_8796
0.866666666667('Alameda County', 'United States')_MG_8795
0.866666666667('Alameda County', 'United States')_MG_8794
0.866666666667('Alameda County', 'United States')_MG_8793
0.866666666667('Alameda County', 'United States')_MG_8792
0.866666666667('Alameda County', 'United States')_MG_8791
0.866666666667('Alameda County', 'United States')_MG_8790
0.866666666667('Alameda County', 'United States')_MG_8785
0.866666666667('Alameda County', 'United States')_MG_8784
0.866666666667('Alameda County', 'United States')_MG_8783
0.866666666667('Alameda County', 'United States')_MG_8782
0.866666666667('Alameda County', 'United States')_MG_8781
0.866666666667('Alameda County', 'United States')_MG_8780
0.866666666667('Alameda County', 'United States')_MG_8778
0.866666666667('Alameda County', 'United States')_MG_8777
0.866666666667('Alameda County', 'United States')_MG_8776
0.866666666667('Alameda County', 'United States')_MG_8775
0.866666666667('Alameda County', 'United States')_MG_8772
0.866666666667('Alameda County', 'United States')_MG_8770
0.866666666667('Alameda County', 'United States')_MG_8769
0.866666666667('Alameda County', 'United States')_MG_8768
0.866666666667('Alameda County', 'United States')_MG_8767
0.866666666667('Alameda County', 'United States')_MG_8765
0.866666666667('Alameda County', 'United States')_MG_8764
0.866666666667('Alameda County', 'United States')_MG_8762
0.866666666667('Alameda County', 'United States')_MG_8761
0.866666666667('Alameda County', 'United States')_MG_8758
0.866666666667('Alameda County', 'United States')_MG_8757
0.866666666667('Alameda County', 'United States')_MG_8756
0.866666666667('Alameda County', 'United States')_MG_8753
0.866666666667('Alameda County', 'United States')_MG_8739
0.866666666667('Alameda County', 'United States')_MG_8738
0.866666666667('Alameda County', 'United States')_MG_8737
0.866666666667('Alameda County', 'United States')_MG_8736
0.866666666667('Alameda County', 'United States')_MG_8735
0.866666666667('Alameda County', 'United States')_MG_8734
0.866666666667('Alameda County', 'United States')_MG_8733
0.866666666667('Alameda County', 'United States')_MG_8732
0.866666666667('Alameda County', 'United States')_MG_8731
0.866666666667('Alameda County', 'United States')_MG_8730
0.866666666667('Alameda County', 'United States')_MG_8729
0.866666666667('Alameda County', 'United States')_MG_8728
0.866666666667('Alameda County', 'United States')_MG_8727
0.866666666667('Alameda County', 'United States')_MG_8726
0.866666666667('Alameda County', 'United States')_MG_8725
0.866666666667('Alameda County', 'United States')_MG_8724
0.866666666667('Alameda County', 'United States')_MG_8723
0.866666666667('Alameda County', 'United States')_MG_8722
0.866666666667('Alameda County', 'United States')_MG_8721
0.866666666667('Alameda County', 'United States')_MG_8720
0.866666666667('Alameda County', 'United States')_MG_8719
0.866666666667('Alameda County', 'United States')_MG_8718
0.866666666667('Alameda County', 'United States')_MG_8717
0.866666666667('Alameda County', 'United States')_MG_8716
0.866666666667('Alameda County', 'United States')_MG_8715
0.866666666667('Alameda County', 'United States')_MG_8714
0.866666666667('Alameda County', 'United States')_MG_8713
0.866666666667('Alameda County', 'United States')_MG_8712
0.866666666667('Alameda County', 'United States')_MG_8711
0.866666666667('Alameda County', 'United States')_MG_8710
0.866666666667('Alameda County', 'United States')_MG_8709
0.866666666667('Alameda County', 'United States')_MG_8708
0.866666666667('Alameda County', 'United States')_MG_8707
0.866666666667('Alameda County', 'United States')_MG_8706
0.866666666667('Alameda County', 'United States')_MG_8705
0.866666666667('Alameda County', 'United States')_MG_8704
0.866666666667('Alameda County', 'United States')_MG_8702
0.866666666667('Alameda County', 'United States')_MG_8701
0.866666666667('Alameda County', 'United States')_MG_8698
53.5666666667('San Mateo County', 'United States')Quarry Lakes
53.5666666667('San Mateo County', 'United States')Serrenacoyote park old sexy canon bay san francisco mark gorgeous flash 45 east hills ii area wife l 5d carter years regional 70300 serrena 580exii
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
53.5666666667('San Mateo County', 'United States')South San Francisco Las Fiestas Patrias
3.95('San Francisco County', 'United States')_MG_8452
3.95('San Francisco County', 'United States')_MG_8445
3.95('San Francisco County', 'United States')_MG_8443
3.95('San Francisco County', 'United States')_MG_8442
3.95('San Francisco County', 'United States')_MG_8440
3.95('San Francisco County', 'United States')_MG_8426-HDR
3.95('San Francisco County', 'United States')_MG_8405
72.15('Ventura County', 'United States')Serrena in Balboa Park
72.15('Ventura County', 'United States')_MG_7784
72.15('Ventura County', 'United States')_MG_7782
72.15('Ventura County', 'United States')_MG_7781
72.15('Ventura County', 'United States')_MG_7780
72.15('Ventura County', 'United States')Ventura Beach
1.63333333333('Lane County', 'United States')Serrena and Sarah
1.63333333333('Lane County', 'United States')_MG_7669
1.63333333333('Lane County', 'United States')Charles showing duck to daughter
1.63333333333('Lane County', 'United States')Cyrus on skateboard ramp
1.63333333333('Lane County', 'United States')Sarah's parents and uncle
1.63333333333('Lane County', 'United States')Adam's son
1.63333333333('Lane County', 'United States')_MG_7649
1.63333333333('Lane County', 'United States')_MG_7648
1.63333333333('Lane County', 'United States')_MG_7647
1.63333333333('Lane County', 'United States')Adam and parents
1.63333333333('Lane County', 'United States')Sarah's parents
1.63333333333('Lane County', 'United States')Sarah and Charles family
1.63333333333('Lane County', 'United States')Esther glamorized
1.63333333333('Lane County', 'United States')_MG_7627
1.63333333333('Lane County', 'United States')_MG_7626
1.63333333333('Lane County', 'United States')Grandma and grandaughter
1.63333333333('Lane County', 'United States')Sarah and Charles
1.63333333333('Lane County', 'United States')Esther
1.63333333333('Lane County', 'United States')Charles daughters
1.63333333333('Lane County', 'United States')Charles and daughter hugging after toast
1.63333333333('Lane County', 'United States')Charles daughter toasting
1.63333333333('Lane County', 'United States')_MG_7608
1.63333333333('Lane County', 'United States')Charles and Sarah
1.63333333333('Lane County', 'United States')Charles and Sarah
1.63333333333('Lane County', 'United States')Charles
1.63333333333('Lane County', 'United States')Charles dad
1.63333333333('Lane County', 'United States')Charles daughters
1.63333333333('Lane County', 'United States')Adam, son and mom
1.63333333333('Lane County', 'United States')Sarah's mom
1.63333333333('Lane County', 'United States')_MG_7596
1.63333333333('Lane County', 'United States')_MG_7593
1.63333333333('Lane County', 'United States')_MG_7591
1.63333333333('Lane County', 'United States')_MG_7590
1.63333333333('Lane County', 'United States')_MG_7589
1.63333333333('Lane County', 'United States')_MG_7587
4.25('Lane County', 'United States')Sarah and Charles daughter
4.25('Lane County', 'United States')_MG_7581
4.25('Lane County', 'United States')Adam and mother
4.25('Lane County', 'United States')Charles daughter glamorized
4.25('Lane County', 'United States')Charles daughter
4.25('Lane County', 'United States')Esther
4.25('Lane County', 'United States')_MG_7567
4.25('Lane County', 'United States')_MG_7561
4.25('Lane County', 'United States')Charles' and Sarah's daughters
4.25('Lane County', 'United States')_MG_7550
4.25('Lane County', 'United States')_MG_7548
4.25('Lane County', 'United States')Sarah and Adam
4.25('Lane County', 'United States')_MG_7543
4.25('Lane County', 'United States')Serrena and Adam
4.25('Lane County', 'United States')Adam
4.25('Lane County', 'United States')Glamorous Serrena
4.25('Lane County', 'United States')Cupcakes
124.333333333('Mono County', 'United States')Bakpacking trail
124.333333333('Mono County', 'United States')Leave No Trace
124.333333333('Mono County', 'United States')Summit Peak
124.333333333('Mono County', 'United States')Eastern Sierra backpacking trip
124.333333333('Mono County', 'United States')East Lake Campsite
124.333333333('Mono County', 'United States')Rainbow trout
124.333333333('Mono County', 'United States')Big rainbow trout for Serrena
124.333333333('Mono County', 'United States')Rainbow trout
124.333333333('Mono County', 'United States')Eastern Sierra Backpacking
124.333333333('Mono County', 'United States')East Lake kitchen
124.333333333('Mono County', 'United States')Yellowstone Park
124.333333333('Mono County', 'United States')Yellowstone Park
124.333333333('Mono County', 'United States')Serrena looking sporty
124.333333333('Mono County', 'United States')Her first catch
0.35('Alameda County', 'United States')Dethrone a King
0.35('Alameda County', 'United States')Steve Kerr and family
0.35('Alameda County', 'United States')Steve Kerr
0.35('Alameda County', 'United States')_MG_6791
0.35('Alameda County', 'United States')Stephen Curry
0.35('Alameda County', 'United States')Stephen Curry with NBA Championship Trophy
0.35('Alameda County', 'United States')_MG_6769
0.35('Alameda County', 'United States')David Lee
0.35('Alameda County', 'United States')Leandro Barbosa
0.35('Alameda County', 'United States')Leandro Barbosa
0.35('Alameda County', 'United States')Harrison Barnes
0.35('Alameda County', 'United States')Rick Berry
0.35('Alameda County', 'United States')Al Attles
0.35('Alameda County', 'United States')Nate Thurmond
0.35('Alameda County', 'United States')Gavin Newsom
0.35('Alameda County', 'United States')Marreese Speights
0.35('Alameda County', 'United States')Draymond Green and surprise guest Marshawn Lynch
0.35('Alameda County', 'United States')Draymond Green and Marshawn Lynch
0.35('Alameda County', 'United States')Congresswoman Barbara Lee
0.35('Alameda County', 'United States')Nancy Pelosi
0.35('Alameda County', 'United States')Libby Schaaf
0.35('Alameda County', 'United States')Libby Schaaf, and M.C. Hammer
0.35('Alameda County', 'United States')Warriors Cheerleader
0.35('Alameda County', 'United States')Klay Thompson
48.55('Alameda County', 'United States')Saturday, October 09, 2004 (6)
48.55('Alameda County', 'United States')Serrena in hammock
48.55('Alameda County', 'United States')Serrena in hammock
48.55('Alameda County', 'United States')Ben and Serrena Mothers Day 2015
48.55('Alameda County', 'United States')Ben and Serrena
48.55('Alameda County', 'United States')Ben and Serrena
48.55('Alameda County', 'United States')Ben at the park
48.55('Alameda County', 'United States')Serrena using the slap strap
48.55('Alameda County', 'United States')Serrena
48.55('Alameda County', 'United States')Ben with hammock
870.833333333('San Francisco County', 'United States')Bliss
870.833333333('San Francisco County', 'United States')Tulip and windmill
870.833333333('San Francisco County', 'United States')Serrena walking the Lands End circle
1321.48333333('Alameda County', 'United States')Treasure Island Bliss
1321.48333333('Alameda County', 'United States')"Pub Scouts"
1321.48333333('Alameda County', 'United States')In Italy?
1321.48333333('Alameda County', 'United States')Serrena and Corey
1321.48333333('Alameda County', 'United States')Serrena on the lake
1321.48333333('Alameda County', 'United States')Serrena
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
28.5166666667('Washington County', 'United States')Epic Southwest HAT 2014
42.45('Mendocino County', 'United States')Sunshine in Elk California
42.45('Mendocino County', 'United States')Sunset behind my Sunshine
42.45('Mendocino County', 'United States')Anniversary at Greenwood Pier Inn
42.45('Mendocino County', 'United States')_MG_3085
42.45('Mendocino County', 'United States')Pacific Ocean directly beneath our cottage at Greenwood Pier Inn
42.45('Mendocino County', 'United States')View from hot tub in Greenwood Pier Inn Sea Castle
20.05('Monterey County', 'United States')_MG_1366
20.05('Monterey County', 'United States')_MG_1276
20.05('Monterey County', 'United States')Serrena backpacking in Big Sur
20.05('Monterey County', 'United States')Serrena by the camp fire
20.05('Monterey County', 'United States')In the golden sunlight during Big Sur backpacking trip
20.05('Monterey County', 'United States')_MG_1012
20.05('Monterey County', 'United States')Serrena looking for a campsite
0.0666666666667('Alameda County', 'United States')Campanille
0.0666666666667('Alameda County', 'United States')Sather Gate
0.0666666666667('Alameda County', 'United States')Sather Gate
0.0666666666667('Alameda County', 'United States')Sather Gate
0.7('San Francisco County', 'United States')Serrena testing out the bars
0.7('San Francisco County', 'United States')Serrena and Corey
0.7('San Francisco County', 'United States')Serrena in Alcatraz Library
0.7('San Francisco County', 'United States')Serrena in Alcatraz Prison
717.866666667('Alameda County', 'United States')Serrena in the valley
717.866666667('Alameda County', 'United States')Ben, Serrena, Irma, and Joe at Quarry Lakes bench
1844.13333333('Alameda County', 'United States')Serrena looking hot as ever in front of our Aptos apartment
1844.13333333('Alameda County', 'United States')Bongo Burger and coffee
1844.13333333('Alameda County', 'United States')Bongo Burger this time
1844.13333333('Alameda County', 'United States')Serrena walking down Euclid Ave
1844.13333333('Alameda County', 'United States')Serrena at Euclid Hall
1844.13333333('Alameda County', 'United States')_MG_9208berkeley student ave uc euclid coopoerative
1844.13333333('Alameda County', 'United States')Oscars
1146.7('Orleans Parish', 'United States')Baboon Lake
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013beautiful pretty gorgeous lovely
1146.7('Orleans Parish', 'United States')New Orleans 2013beautiful pretty gorgeous lovely
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')Serrena Marie Carter
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')New Orleans 2013
1146.7('Orleans Parish', 'United States')Serrena's first drink in New Orleans
1146.7('Orleans Parish', 'United States')New Orleans 2013
24.8833333333('Sonoma County', 'United States')Wright's Beach. Valentines Day 2013
24.8833333333('Sonoma County', 'United States')Russian River Brewery
318.816666667('Alameda County', 'United States')Mission Peak afternoon hike
318.816666667('Alameda County', 'United States')Hiking Coyote Hills
318.816666667('Alameda County', 'United States')Hike to Mission Peak
318.816666667('Alameda County', 'United States')Hike to Mission Peak
318.816666667('Alameda County', 'United States')Serrena at top of Mission Peak
328.9('Santa Clara County', 'United States')White Sands New Mexico
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
328.9('Santa Clara County', 'United States')Henry Coe State Parkcalifornia park bay state henry area coe
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
0.816666666667('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
8.3('Marin County', 'United States')Angel Island
0.0('San Francisco County', 'United States')Serrena and Benocean birthday family friends golden gate san francisco exploratorium 2012
0.0('San Francisco County', 'United States')Serrenaocean birthday family friends golden gate san francisco exploratorium 2012
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011
8.35('San Francisco County', 'United States')Mystery Trip 2011