-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathftf_home.txt
7328 lines (7328 loc) · 807 KB
/
ftf_home.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
GC6HGAN:[['lavaflow'], 0, datetime.date(2016, 5, 19), 'Church Micro 9560...Willoughby on the Wolds', (52.82233, -1.06125)]
GCAVXXQ:[['chilli.monster'], 0, datetime.date(2024, 8, 1), 'Zero', (52.82168, -1.05813)]
GCAAKPM:[['PlasmaWave'], 0, datetime.date(2023, 7, 7), 'A-MAZE-ing!', (52.82062, -1.06053)]
GCAZR0N:[['KaosCL'], 1, datetime.date(2024, 11, 1), 'Sing, O Muse!', (52.82033, -1.05763)]
GCA83FF:[['PlasmaWave'], 0, datetime.date(2023, 5, 6), 'Willoughby Park (TeamPi24 1K finds!)', (52.82433, -1.05587)]
GCA9H6G:[['Spire67', 'PlasmaWave'], 0, datetime.date(2023, 6, 23), 'The Lost Amulet', (52.82198, -1.05498)]
GC39AA6:[['PlasmaWave'], 1, datetime.date(2011, 12, 18), 'Willoughby Stile', (52.8216, -1.06663)]
GCA35VQ:[['PlasmaWave'], 0, datetime.date(2022, 12, 31), 'The Rews Pot', (52.81972, -1.0646)]
GCA9HTE:[['PlasmaWave'], 0, datetime.date(2023, 6, 7), 'Village Hall Series 1638 - Willoughby', (52.82075, -1.05452)]
GCA90AN:[['PlasmaWave'], 0, datetime.date(2023, 5, 27), 'Willoughby Library', (52.8223, -1.05317)]
GC6HGAN:[['lavaflow'], 0, datetime.date(2016, 5, 19), 'Church Micro 9560...Willoughby on the Wolds', (52.82233, -1.06125)]
GCAVXXQ:[['chilli.monster'], 0, datetime.date(2024, 8, 1), 'Zero', (52.82168, -1.05813)]
GCAAKPM:[['PlasmaWave'], 0, datetime.date(2023, 7, 7), 'A-MAZE-ing!', (52.82062, -1.06053)]
GCAZR0N:[['KaosCL'], 1, datetime.date(2024, 11, 1), 'Sing, O Muse!', (52.82033, -1.05763)]
GCA83FF:[['PlasmaWave'], 0, datetime.date(2023, 5, 6), 'Willoughby Park (TeamPi24 1K finds!)', (52.82433, -1.05587)]
GCA9H6G:[['Spire67', 'PlasmaWave'], 0, datetime.date(2023, 6, 23), 'The Lost Amulet', (52.82198, -1.05498)]
GC39AA6:[['PlasmaWave'], 1, datetime.date(2011, 12, 18), 'Willoughby Stile', (52.8216, -1.06663)]
GCA35VQ:[['PlasmaWave'], 0, datetime.date(2022, 12, 31), 'The Rews Pot', (52.81972, -1.0646)]
GCA9HTE:[['PlasmaWave'], 0, datetime.date(2023, 6, 7), 'Village Hall Series 1638 - Willoughby', (52.82075, -1.05452)]
GCA90AN:[['PlasmaWave'], 0, datetime.date(2023, 5, 27), 'Willoughby Library', (52.8223, -1.05317)]
GCAX6Q1:[['TMFamily', 'ladyxtal', 'Twenty4Seven', 'BazzaLagos', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #1 - Screw-top', (52.8187, -1.05302)]
GC2VAKK:[['BalooCrew'], 0, datetime.date(2011, 5, 1), 'Wild about WILLoughby?', (52.8198, -1.05042)]
GC3Y6VP:[['BalooCrew', 'PlasmaWave'], 14, datetime.date(2012, 10, 15), 'K4', (52.81862, -1.07038)]
GCAAKPY:[['PlasmaWave'], 0, datetime.date(2023, 7, 7), 'Willoughby Wood', (52.82203, -1.04872)]
GCAX6Q3:[['Twenty4Seven', 'PlasmaWave', 'BazzaLagos', 'ladyxtal', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #10 - Snake', (52.81563, -1.06145)]
GCAN3GB:[['Muttlee333'], 0, datetime.date(2024, 4, 18), 'YOSM #0970 Willoughby', (52.8253, -1.06835)]
GCAX6PR:[['Twenty4Seven', 'BazzaLagos', 'TMFamily', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #2 - Locked Up', (52.81643, -1.04992)]
GCAX6QG:[['ladyxtal', 'BazzaLagos', 'Twenty4Seven', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #9 - Metal', (52.81328, -1.05912)]
GCAX6PK:[['Twenty4Seven', 'BazzaLagos', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #3 - Birdhouse', (52.81437, -1.04718)]
GC5VKDE:[['BalooCrew', 'PlasmaWave', 'lavaflow'], 1, datetime.date(2015, 5, 22), 'Cables everywhere! #4', (52.8294, -1.07985)]
GC3Y6G3:[['BalooCrew', 'PlasmaWave'], 11, datetime.date(2012, 10, 15), 'K1', (52.80992, -1.08708)]
GCAX6QC:[['BazzaLagos', 'Twenty4Seven', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #8 - Tennis again?', (52.81007, -1.05273)]
GCAX6Q6:[['Twenty4Seven', 'BazzaLagos', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #4 - Tennis', (52.8118, -1.04637)]
GC5VKGN:[['BalooCrew', 'PlasmaWave', 'lavaflow'], 1, datetime.date(2015, 5, 22), 'Cables everywhere! #11', (52.82687, -1.08488)]
GC4W0GH:[['lavaflow'], 0, datetime.date(2013, 12, 29), 'Katys Big Old TB Hotel just off the A46', (52.81908, -1.03613)]
GCAX6QR:[['BazzaLagos', 'Twenty4Seven', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #7 - Surprise!', (52.8077, -1.05057)]
GC5VKDQ:[['BalooCrew', 'PlasmaWave', 'lavaflow'], 1, datetime.date(2015, 5, 22), 'Cables everywhere! #5', (52.83217, -1.08563)]
GCAX6QY:[['Twenty4Seven', 'BazzaLagos', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #5 - Picturesque', (52.80812, -1.04502)]
GC3HX3Q:[['Mellyandmallies'], 12, datetime.date(2012, 4, 28), 'Mains Socket', (52.82578, -1.01165)]
GCAX6QT:[['Twenty4Seven', 'BazzaLagos', 'ladyxtal', 'PlasmaWave', 'Talpa europaea', 'ErewashPaddler', 'MIKSUFF', 'LandMB', 'Sooseeker'], 0, datetime.date(2024, 9, 29), 'WAW #6 - pH', (52.80668, -1.04867)]
GC5VKG7:[['BalooCrew', 'PlasmaWave', 'lavaflow'], 1, datetime.date(2015, 5, 22), 'Cables everywhere! #10', (52.82877, -1.09003)]
GC2VNYX:[['lavaflow'], 2, datetime.date(2011, 5, 13), 'Evil Last Log', (52.82927, -1.1031)]
GC4YEEZ:[['Grumpiest Horse'], 0, datetime.date(2014, 2, 12), 'Church Micro 5239...Widmerpool', (52.84723, -1.06768)]
GC3Y6VF:[['Muttlee333'], 1, datetime.date(2012, 10, 15), 'K3', (52.81913, -1.02497)]
GC96PMA:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'The Element Carbon', (52.81092, -1.10382)]
GC565XG:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2014, 6, 6), 'D Day - Plus 70 years', (52.83577, -1.10355)]
GC96PMG:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'The Element Helium', (52.80395, -1.09795)]
GC3HE86:[['lavaflow'], 0, datetime.date(2012, 4, 22), "Keith's 1000th", (52.82023, -1.01182)]
GC4YDXK:[['PlasmaWave'], 0, datetime.date(2014, 2, 11), 'Church Micro 5226...Wysall', (52.83812, -1.10487)]
GC5NXGX:[['PlasmaWave', 'BalooCrew'], 0, datetime.date(2015, 3, 7), "Christine's Cache #3", (52.79232, -1.06372)]
GC96PM7:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'The Element Oxygen', (52.80773, -1.10498)]
GC4431V:[['PlasmaWave'], 2, datetime.date(2013, 1, 12), 'Cachefinders Hotel Booking Experts!', (52.84242, -1.07367)]
GC4YEFZ:[['PlasmaWave'], 0, datetime.date(2014, 2, 12), 'Church Micro 5240...Wymeswold', (52.8058, -1.10732)]
GC3HT5R:[['PlasmaWave'], 0, datetime.date(2012, 4, 23), 'Half Way Across the Bridge of Life (40 Today!)', (52.85257, -1.03627)]
GC9BQF0:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 25), 'The Element Actinium (a new home)', (52.81242, -1.11263)]
GC96JXD:[['KaosCL'], 0, datetime.date(2021, 4, 1), 'The Element Gold', (52.80668, -1.11763)]
GC96PKZ:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'The Element Germanium', (52.80883, -1.11175)]
GC6RE2D:[['PlasmaWave'], 1, datetime.date(2016, 9, 3), 'REALLY SideTracked - Upper Broughton', (52.82667, -1.00447)]
GC2P137:[['northking'], 0, datetime.date(2011, 2, 19), 'A-Road Anarchy - A46/A606 Widmerpool LUCKY ESCAPE', (52.85183, -1.0298)]
GC97J34:[['longwhatton34', 'PlasmaWave'], 0, datetime.date(2021, 4, 1), 'Compound_C12H20O4', (52.80207, -1.09192)]
GC35ZJ9:[['diy356'], 0, datetime.date(2011, 10, 16), 'CKTV 6 - Ivor The Engine', (52.85718, -1.03853)]
GC4Y1XT:[['Muttlee333'], 0, datetime.date(2014, 2, 4), 'Belvoir Vale', (52.85622, -1.03475)]
GC1R7XC:[['RoPeHe'], 1, datetime.date(2009, 5, 13), "April Mae's Goblin Lair", (52.85533, -1.092)]
GC5JK0J:[['the_dolan', 'richt2000'], 0, datetime.date(2015, 1, 4), 'Agent Gamma Charlie', (52.85795, -1.03727)]
GC3Y6QE:[['Sueandadrian'], 13, datetime.date(2012, 10, 15), 'K2', (52.79072, -1.02658)]
GC7CH44:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2017, 10, 12), 'VS#1324 Old Dalby', (52.80748, -1.0016)]
GCAN3G9:[['Kev + Jackie'], 0, datetime.date(2024, 4, 18), 'YOSM #0969 Rempstone Hill', (52.82363, -1.12647)]
GC7JQH9:[['white star'], 0, datetime.date(2018, 2, 25), 'WonderWold', (52.8612, -1.07855)]
GCQEJT:[['Nottingham Nutters'], 1, datetime.date(2005, 9, 8), 'Palindrome Hunter', (52.84208, -1.00167)]
GC9674Y:[['Grumpiest Horse'], 0, datetime.date(2021, 3, 29), "Stylin'", (52.8593, -1.09128)]
GC5EB33:[['NottsWalker'], 0, datetime.date(2014, 10, 15), 'Hill Top #2', (52.82587, -1.12837)]
GC9JWHY:[['chilli.monster'], 0, datetime.date(2021, 12, 8), 'So You Think You Know Rushcliffe', (52.86923, -1.11785)]
GC4CCQZ:[['PlasmaWave'], 0, datetime.date(2013, 5, 25), 'Solar Power', (52.79752, -1.11463)]
GC6XD33:[['PlasmaWave', 'fairyspan', 'BiggyEeyore'], 0, datetime.date(2016, 11, 27), '>>>>> South Nottinghamshire Treasure Quest (1) >>', (52.85478, -1.105)]
GC2RQ82:[['lavaflow'], 1, datetime.date(2011, 4, 8), 'Sidetracked - Old Dalby', (52.80965, -0.99518)]
GC5PV04:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2015, 3, 22), 'Random Bus Stop (One a Day Drive By)', (52.86062, -1.03025)]
GC6RFY7:[['chilli.monster'], 0, datetime.date(2016, 9, 6), 'Bookworm II', (52.82848, -0.98995)]
GC8MPVB:[['Spire67', 'PlasmaWave', 'Twenty4Seven', 'Cotgrave_Man'], 0, datetime.date(2020, 3, 14), 'Watch your speed', (52.86272, -1.03023)]
GC8MQTP:[['Twenty4Seven', 'Spire67', 'PlasmaWave'], 0, datetime.date(2020, 3, 18), 'A Christmas plantation', (52.83325, -1.13202)]
GC74FF7:[['Spire67', 'DrunkNinjaHippo'], 0, datetime.date(2017, 5, 11), 'Balthazar (Resited)', (52.85267, -1.11588)]
GC49DMJ:[['lavaflow'], 0, datetime.date(2013, 4, 9), 'Church Micro 1838...Stanton', (52.86962, -1.06242)]
GC5W0BA:[['BalooCrew', 'lavaflow'], 1, datetime.date(2015, 5, 22), 'The Feignies Connection', (52.86917, -1.07542)]
GC6JHJD:[['NottsWalker'], 0, datetime.date(2016, 6, 5), 'Church Micro 9562...Keyworth St Margaret Clitherow', (52.86997, -1.0737)]
GC66HYP:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #26 - Bonus One', (52.7869, -1.11245)]
GC7M212:[['PlasmaWave', 'Grumpiest Horse'], 0, datetime.date(2018, 3, 27), 'Pot Look', (52.8674, -1.0903)]
GC66HXX:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #20', (52.79073, -1.11958)]
GC74VWA:[['PlasmaWave'], 1, datetime.date(2017, 5, 2), 'Assume Nothing', (52.8676, -1.09268)]
GC5HMAE:[['JohnnyBGoode'], 0, datetime.date(2014, 12, 25), 'Caspar', (52.8494, -1.1283)]
GC7HAMW:[['Kev + Jackie'], 0, datetime.date(2018, 1, 20), 'Prestwold Amble #21', (52.78925, -1.1205)]
GC88FDQ:[['PlasmaWave'], 0, datetime.date(2019, 5, 27), 'British Red Telephone Box In Decay', (52.87195, -1.05017)]
GC66HXQ:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #19', (52.78992, -1.12267)]
GC8WQW3:[['jez130'], 13, datetime.date(2020, 7, 19), 'Berrycott Lane', (52.77252, -1.06555)]
GC66HY0:[['Kev + Jackie'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #22', (52.78782, -1.12097)]
GC4CCTC:[['PlasmaWave'], 0, datetime.date(2013, 5, 25), 'Phone Box', (52.79823, -1.13503)]
GC66HXF:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #18', (52.78952, -1.12523)]
GC6JGYZ:[['NottsWalker'], 0, datetime.date(2016, 6, 5), 'Church Micro 9561...Keyworth - St Mary Magdalene', (52.87155, -1.08747)]
GC7ZYKT:[['PlasmaWave'], 0, datetime.date(2018, 11, 8), 'Rempstone oil fields', (52.8171, -1.1453)]
GC66QP8:[['Kev + Jackie'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #23', (52.78718, -1.1232)]
GC3Y6W4:[['BalooCrew', 'PlasmaWave'], 11, datetime.date(2012, 10, 15), 'K5', (52.82803, -0.97473)]
GC44TW9:[['PlasmaWave'], 0, datetime.date(2013, 1, 29), "Jakob's Birthday Cache", (52.86377, -1.11517)]
GC74FXV:[['chilli.monster'], 0, datetime.date(2017, 4, 24), 'Gracias', (52.87107, -1.10102)]
GC66HXC:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #17', (52.78908, -1.12773)]
GC8240D:[['mart41', 'KaosCL', 'Spire67', 'the_dolan', 'random1se', 'ErewashPaddler', 'PlasmaWave', 'NottsWalker', 'ilsonannie', 'BigLynx'], 0, datetime.date(2019, 1, 12), 'Grumpy Lands on the Green', (52.87565, -1.06768)]
GC773FG:[['KaosCL'], 0, datetime.date(2017, 6, 16), "Samuel's Legacy", (52.87153, -1.09565)]
GC66HY9:[['Kev + Jackie'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #24', (52.7872, -1.12567)]
GC5HM9W:[['KaosCL', 'BigLynx'], 0, datetime.date(2014, 12, 25), 'Melchior', (52.84843, -1.13835)]
GC6DDAN:[['BalooCrew', 'lavaflow'], 0, datetime.date(2016, 3, 21), 'Church Micro 9259...Rempstone - All Saints', (52.8146, -1.14803)]
GC44AEW:[['PlasmaWave'], 0, datetime.date(2013, 1, 14), 'Humpty Dumpty', (52.83258, -1.14815)]
GC7YZ6P:[['PlasmaWave'], 0, datetime.date(2018, 10, 13), 'Guardians of the Galaxy', (52.8089, -1.1467)]
GC39YRE:[['PlasmaWave'], 1, datetime.date(2012, 1, 2), 'Stanford Stomp #11: Sutcliffe Hill', (52.81237, -1.1481)]
GC4YE0C:[['PlasmaWave'], 0, datetime.date(2014, 2, 11), 'Church Micro 5223...Costock', (52.8317, -1.15038)]
GC8240X:[['mart41', 'KaosCL', 'Spire67', 'the_dolan', 'ErewashPaddler', 'PlasmaWave', 'NottsWalker', 'BigLynx'], 0, datetime.date(2019, 1, 12), 'Grumpy Goes a Fairway', (52.87717, -1.06502)]
GC66HXA:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #16', (52.78827, -1.1303)]
GC66HX3:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Little Bridges # 744 ... Prestwold Amble #13', (52.79097, -1.13487)]
GC66HYF:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #25', (52.78582, -1.12742)]
GC66HX6:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #14', (52.78972, -1.13313)]
GC6EE81:[['PlasmaWave'], 0, datetime.date(2016, 3, 29), 'Church Micro 9278 Ragdale', (52.77213, -1.01762)]
GC846QP:[['chilli.monster'], 0, datetime.date(2019, 3, 4), 'Just another filmpot', (52.87845, -1.06278)]
GC3924Q:[['PlasmaWave'], 0, datetime.date(2011, 12, 17), 'CKTV 7 - Underground Ernie', (52.84237, -0.97443)]
GC82JAV:[['Twenty4Seven'], 0, datetime.date(2019, 1, 22), 'A Fine Pair # 640 ~ Burton on the Wolds', (52.78477, -1.1277)]
GC66CQA:[['KaosCL', 'Kev + Jackie', 'BigLynx'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #01', (52.78627, -1.1303)]
GC2PRBK:[['Treecrabs'], 4, datetime.date(2011, 3, 9), 'Kryptos Graphein (Codebreaker)', (52.82842, -0.96845)]
GC67Y57:[['BOB6661'], 0, datetime.date(2015, 12, 8), 'Little Bridges # 759 ... Prestwold Amble #15', (52.7875, -1.13245)]
GC66HX0:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #12', (52.79118, -1.13822)]
GC4MBWN:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2013, 9, 2), 'Stanford Stomp: The Watcher in the Water Returns!', (52.8049, -1.14948)]
GC2R7WD:[['PlasmaWave'], 0, datetime.date(2011, 4, 3), 'Have not got a clue!', (52.8125, -0.96825)]
GC6W1JK:[['PlasmaWave'], 0, datetime.date(2016, 10, 27), 'Lucy of the lamp light', (52.85658, -1.13655)]
GCA4C3A:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2023, 2, 10), 'Geological Walk Adventure Lab Bonus', (52.87755, -1.07933)]
GC66HTN:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #02', (52.78638, -1.13388)]
GC66HWW:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #11', (52.79177, -1.14065)]
GCA3BWX:[['Spire67', 'PlasmaWave'], 0, datetime.date(2023, 1, 23), 'Village Hall Series 1379 - Kinoulton', (52.86848, -1.00192)]
GC66J3P:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #27 - Bonus Two', (52.78852, -1.13752)]
GCAQWMF:[['PlasmaWave'], 0, datetime.date(2024, 5, 20), 'Stuck Between a......', (52.87558, -1.10067)]
GC81MJN:[['thepanther1', 'random1se', 'ilsonannie', 'Talpa europaea', 'PlasmaWave', 'NottsWalker', 'Guiding Nutter'], 0, datetime.date(2019, 1, 12), 'Grumpy Checks The Post', (52.87733, -1.09448)]
GC5EJRG:[['KaosCL', 'PlasmaWave', 'BigLynx'], 0, datetime.date(2014, 10, 18), 'CPRE', (52.78278, -1.13018)]
GC4CCQ2:[['PlasmaWave'], 0, datetime.date(2013, 5, 25), 'Green Hill Hideaway 2', (52.80352, -0.96945)]
GC66HTR:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #03', (52.78683, -1.13683)]
GC66HVJ:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #10', (52.79175, -1.14322)]
GC82K90:[['Twenty4Seven'], 0, datetime.date(2019, 1, 22), 'A Fine Pair (but not quite) ~ Hoton', (52.79628, -1.14808)]
GC7YQN3:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2018, 10, 9), 'Dead Or Alive', (52.8524, -1.1461)]
GC5EJR2:[['KaosCL', 'PlasmaWave', 'BigLynx'], 0, datetime.date(2014, 10, 18), "Formerly 5 Tree's now 2 Tree's", (52.7822, -1.13227)]
GC473FQ:[['PlasmaWave'], 0, datetime.date(2013, 3, 6), 'Church Micro 3440…Bunny', (52.86102, -1.13632)]
GC4FNDB:[['BalooCrew', 'PlasmaWave'], 0, datetime.date(2013, 7, 9), 'A Place Where Cows Roam (SHARMARAMA12)', (52.78012, -1.12928)]
GC67BQM:[['3dartdonna', 'BOB6661'], 0, datetime.date(2015, 11, 30), 'Church Micro 8741...Hoton', (52.79757, -1.14992)]
GC32TTJ:[['PlasmaWave'], 1, datetime.date(2011, 8, 24), 'CKTV 4 - Willo The Wisp', (52.86898, -0.99747)]
GC19MEY:[['EllieLoy'], 1, datetime.date(2008, 2, 24), 'Vimy View', (52.87445, -1.00998)]
GC72TAJ:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2017, 3, 28), 'The Dharma Initiative #1', (52.87213, -1.00383)]
GC66HVE:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #09', (52.79168, -1.14585)]
GC47V81:[['PlasmaWave'], 0, datetime.date(2013, 3, 19), 'Bunny Moors', (52.86018, -1.13958)]
GC6DQ36:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#2 - St. Peter-in-the-Rushes Saunter', (52.81705, -1.16052)]
GC66HTT:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #04', (52.78575, -1.13995)]
GC6DNVQ:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#1 - St. Peter-in-the-Rushes Saunter', (52.8154, -1.16038)]
GC6WJMG:[['Kev + Jackie'], 0, datetime.date(2016, 11, 8), '👉 Hoton TB Hotel 👈', (52.79457, -1.14983)]
GC66HV8:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #08', (52.79243, -1.14793)]
GC5EJQ9:[['KaosCL', 'PlasmaWave', 'BalooCrew', 'BigLynx'], 0, datetime.date(2014, 10, 18), "Jean's Scenic View", (52.7813, -1.1343)]
GC5EJT5:[['KaosCL', 'DaffyD1uk', 'PlasmaWave', 'BalooCrew', 'fliss29', 'BigLynx'], 0, datetime.date(2014, 10, 18), 'Gate to nowhere', (52.78002, -1.13233)]
GCAQXC1:[['PlasmaWave', 'Spire67'], 0, datetime.date(2024, 5, 21), "He's a Hero", (52.87915, -1.10025)]
GC6CF6P:[['Spire67', 'KaosCL'], 0, datetime.date(2016, 3, 3), 'Brachys', (52.82625, -0.95925)]
GC6DDAG:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#3 - St. Peter-in-the-Rushes Saunter', (52.8187, -1.16222)]
GC8ME43:[['Spire67', 'PlasmaWave'], 0, datetime.date(2020, 3, 13), 'Sneaky by the Canal II', (52.86728, -0.99003)]
GC66HV0:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #06', (52.78835, -1.1455)]
GC66HV3:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Prestwold Amble #07', (52.78967, -1.14702)]
GC66CH3:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Church Micro 8660...Prestwold', (52.7871, -1.14395)]
GC6H0HP:[['Kev + Jackie'], 0, datetime.date(2016, 5, 8), 'BUG TRAIL TB HOTEL', (52.76075, -1.05602)]
GC66HTX:[['lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 12, 5), 'Little Bridges # 743 ... Prestwold Amble #05', (52.78562, -1.14448)]
GC6DQA7:[['NottsWalker'], 0, datetime.date(2016, 3, 25), 'Little Bridges # 834 - St. Peter-in-the-Rushes #4', (52.8203, -1.16215)]
GC6DQ42:[['NottsWalker'], 0, datetime.date(2016, 3, 25), 'Little Bridges # 833 - St. Peter-in-the-Rushes #5', (52.82117, -1.16435)]
GCAA0EK:[['PlasmaWave'], 0, datetime.date(2023, 7, 7), 'Film Pot Base Of Post 2', (52.86957, -1.1308)]
GC9Y4FY:[['PlasmaWave'], 0, datetime.date(2022, 8, 6), 'Logged It', (52.88323, -1.09185)]
GC6Y0ZT:[['PlasmaWave'], 1, datetime.date(2016, 12, 16), 'Little Bridges # 1010 Walton Brook', (52.77485, -1.12918)]
GC9TH93:[['PlasmaWave'], 0, datetime.date(2023, 1, 4), 'Vimy Poplar Avenue', (52.87607, -1.00253)]
GC6XH5Q:[['PlasmaWave'], 0, datetime.date(2016, 12, 2), '1000 days', (52.77365, -1.1276)]
GC6Y10E:[['PlasmaWave'], 1, datetime.date(2016, 12, 16), 'Off the beaten track', (52.7762, -1.13242)]
GC6X6ZD:[['PlasmaWave'], 1, datetime.date(2016, 11, 26), 'The large Holly Tree', (52.77273, -1.12585)]
GC5QV9W:[['PlasmaWave', 'BalooCrew'], 0, datetime.date(2015, 4, 10), 'The Vertical Ammo Can', (52.76282, -1.09697)]
GC6DQCE:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#6 - St. Peter-in-the-Rushes Saunter', (52.82282, -1.16692)]
GC6HG9Y:[['lavaflow'], 0, datetime.date(2016, 5, 19), 'Church Micro 9546...Walton on the Wolds', (52.77118, -1.12365)]
GC1C9BP:[['RoPeHe'], 0, datetime.date(2008, 5, 16), "The Hall's Hidey Hole", (52.78202, -1.14322)]
GC2T481:[['lavaflow'], 0, datetime.date(2011, 5, 7), 'The somloci trail - Prestwold 10', (52.7845, -1.14672)]
GC4PA1T:[['lavaflow', 'BalooCrew'], 0, datetime.date(2013, 10, 1), "Cache 'n' Carry", (52.88698, -1.04508)]
GC6RE25:[['BOB6661', 'Spire67'], 0, datetime.date(2016, 9, 3), 'REALLY SideTracked - Plumtree', (52.8861, -1.08563)]
GC4QPCF:[['PlasmaWave'], 0, datetime.date(2013, 10, 23), 'Bradmore', (52.87238, -1.13027)]
GCAFBGW:[['KaosCL'], 2, datetime.date(2023, 10, 22), 'Days of Future Past', (52.88532, -1.09077)]
GC6DQCR:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#7 - St. Peter-in-the-Rushes Saunter', (52.82408, -1.16893)]
GC2T47X:[['lavaflow'], 0, datetime.date(2011, 5, 7), 'The somloci trail - Prestwold 9', (52.77955, -1.14187)]
GC8JYC8:[['Twenty4Seven'], 0, datetime.date(2020, 2, 7), 'Another lay-by cache', (52.88313, -1.10477)]
GC976HM:[['PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Village Sign Kinoulton', (52.87238, -0.98862)]
GC71ZV0:[['PlasmaWave'], 0, datetime.date(2017, 3, 15), 'A Long Tale', (52.83998, -1.16617)]
GC6DQD6:[['NottsWalker'], 0, datetime.date(2016, 3, 25), '#8 - St. Peter-in-the-Rushes Saunter', (52.82623, -1.16988)]
GC7WWFD:[['PlasmaWave'], 1, datetime.date(2018, 9, 5), "Here's to you Mrs. RuddRobinson", (52.86995, -1.13797)]
GC5178F:[['Y6GST'], 7, datetime.date(2014, 4, 6), 'Leicestershire Explorer', (52.76947, -1.12548)]
GC9T9PY:[['PlasmaWave'], 0, datetime.date(2022, 5, 5), "Don't be stumped at the Bridge", (52.88695, -1.08978)]
GC9TTZA:[['Twenty4Seven', 'Spire67'], 38, datetime.date(2022, 5, 17), 'A brief history of East Leake', (52.83193, -1.1707)]
GCAN4AQ:[['Kev + Jackie'], 0, datetime.date(2024, 4, 18), 'YOSM #0968 East Leake', (52.84305, -1.16685)]
GC4FW3V:[['BalooCrew', 'PlasmaWave'], 0, datetime.date(2013, 7, 9), 'nodnoL', (52.8648, -1.14877)]
GC7ZH4K:[['mart41', 'GizmoTheExplorer', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 27), 'Legend of Boggy Creek', (52.89038, -1.07157)]
GC898AT:[['PlasmaWave'], 0, datetime.date(2019, 11, 9), '🐭 Mousetrap 🧀', (52.85418, -1.13257)]
GC43H2Q:[['KaosCL', 'BigLynx'], 0, datetime.date(2012, 12, 31), 'Alice in Wonderland', (52.82655, -1.1728)]
GC51PM4:[['lavaflow', 'BalooCrew'], 1, datetime.date(2014, 4, 8), 'Church Micro 5488...East Leake - Baptist', (52.82898, -1.17383)]
GC4B2DX:[['PlasmaWave'], 0, datetime.date(2013, 5, 1), 'Church Micro 3649...Bradmore', (52.87482, -1.13383)]
GC2VV3H:[['PlasmaWave'], 0, datetime.date(2011, 5, 9), 'Log Cabin', (52.84532, -1.16737)]
GC99BPG:[['Spire67', 'Grumpiest Horse', 'PlasmaWave', 'graceandwill'], 0, datetime.date(2021, 4, 16), 'Nearly stylish', (52.88925, -1.08887)]
GC7WYWR:[['GizmoTheExplorer', 'Grumpiest Horse'], 1, datetime.date(2018, 9, 5), "Who's Screws", (52.8627, -1.15332)]
GC2RDZ8:[['jayjaybee8'], 2, datetime.date(2011, 4, 3), 'Stanford Hall', (52.8093, -1.17237)]
GC2T47N:[['pfaffabouters'], 0, datetime.date(2011, 5, 7), 'The somloci trail - Prestwold 8', (52.7793, -1.14943)]
GC7CFGQ:[['PlasmaWave'], 0, datetime.date(2017, 9, 18), 'Farmer Street Folly', (52.877, -1.13257)]
GC7WWED:[['chilli.monster'], 1, datetime.date(2018, 9, 5), 'The RuddRobinson Project (ion)', (52.87448, -1.13768)]
GC9TGZC:[['PlasmaWave'], 0, datetime.date(2022, 5, 15), 'Bridge End', (52.88195, -0.99967)]
GC2J50G:[['jefayle'], 1, datetime.date(2010, 11, 12), 'Quarry View', (52.81888, -1.17565)]
GC7GEXA:[['PlasmaWave'], 0, datetime.date(2018, 1, 3), 'Little Bridges # 1330 Lantern Lane', (52.85262, -1.16563)]
GC772QE:[['PlasmaWave'], 0, datetime.date(2017, 9, 18), 'Gaze by the gate', (52.8785, -1.13125)]
GC2516E:[['BalooCrew'], 1, datetime.date(2010, 3, 14), 'Mossy Bench', (52.75662, -1.09815)]
GC69ED7:[['PlasmaWave', 'Kev + Jackie', '3dartdonna'], 0, datetime.date(2016, 1, 10), 'Seagrave banks', (52.75468, -1.08683)]
GCAEBKE:[['Twenty4Seven', 'Spire67', 'PlasmaWave'], 0, datetime.date(2023, 11, 26), 'The Ruddy Doctor 24: 15th Doc / 60th Anniversary', (52.85935, -1.16028)]
GC6BF9Z:[['chilli.monster'], 1, datetime.date(2016, 2, 20), 'REALLY SideTracked - Grimston - Saxelbye', (52.78172, -0.96638)]
GCAV66X:[['LandMB', 'Twenty4Seven', 'PlasmaWave', 'FiddleCath67', 'ErewashPaddler', 'Sooseeker', 'wavydale', 'MIKSUFF', 'Kev + Jackie', 'caydensmum', 'Grahamthegray', 'Elliottgeogirls', 'Mumandjack', 'RiotFour', 'Team Airborn 12', 'DTS63', 'deltic40', 'manxrose', 'Whothrewthats', 'TeamPi24'], 0, datetime.date(2024, 10, 19), 'Notts Labcache Pool Bonus #03', (52.82898, -1.18758)]
GCAX53G:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2024, 10, 1), 'Answers On A Postcard', (52.83107, -1.17332)]
GC7CN5P:[['Spire67', 'PlasmaWave'], 0, datetime.date(2017, 9, 25), 'Thank you fans', (52.88353, -1.12113)]
GC6JGYJ:[['NottsWalker'], 0, datetime.date(2016, 6, 5), 'Church Micro 9638...Plumtree', (52.89185, -1.08792)]
GC5JXZ9:[['northking', 'PlasmaWave', 'lavaflow'], 0, datetime.date(2015, 1, 20), 'Turritella and other fossils', (52.85175, -0.95355)]
GC1ZYE0:[['JohnnyBGoode'], 13, datetime.date(2009, 10, 23), 'Clipstone-on-the-Wolds Woods', (52.8936, -1.05075)]
GC7CA4F:[['PlasmaWave'], 0, datetime.date(2017, 9, 17), 'Timber!', (52.8801, -1.13032)]
GCAV6AJ:[['Twenty4Seven', 'KaosCL', 'NottsWalker', 'PlasmaWave', 'DIGGEMUP', 'MIKSUFF', 'mart41', '3dartdonna', 'Sooseeker', 'Kev + Jackie', 'Mumandjack', 'Arrowrat', 'deltic40', 'NottsLabAdmins', 'MonkeyMilo'], 0, datetime.date(2024, 8, 10), 'Notts Labcache Pool Bonus #02', (52.83415, -1.1778)]
GC7CN55:[['Spire67'], 0, datetime.date(2017, 9, 27), 'Barn Farm view', (52.88245, -1.12547)]
GC49CNP:[['BazingaBunch'], 0, datetime.date(2013, 4, 9), 'Church Micro 1497...Seagrave', (52.7528, -1.08305)]
GC9PE6R:[['PlasmaWave'], 0, datetime.date(2022, 3, 7), 'Church Micro 14326...Saxelby', (52.78232, -0.96355)]
GCARAM3:[['Cheka990', 'PlasmaWave', 'mart41', 'Kev + Jackie', 'elmowhitehead', 'ErewashPaddler', 'Sooseeker', 'deltic40', 'MonkeyMilo', 'geolab_finder'], 0, datetime.date(2024, 6, 15), 'Notts Labcache Pool Bonus #01', (52.83097, -1.18782)]
GC76FZC:[['PlasmaWave'], 0, datetime.date(2017, 9, 17), 'Caught short?', (52.88157, -1.12853)]
GC7CR91:[['Spire67'], 0, datetime.date(2017, 9, 27), 'Halt! Who goes there.....everybody!', (52.8851, -1.11945)]
GCAW7JG:[['Twenty4Seven', 'PlasmaWave', 'NottsLabAdmins'], 0, datetime.date(2024, 9, 21), 'Name That Tune - Ad Lab Bonus', (52.836, -1.18562)]
GC51Q5V:[['BalooCrew', 'lavaflow'], 0, datetime.date(2014, 4, 8), 'Church Micro 5487...East Leake - Methodist', (52.82958, -1.17975)]
GC89NJM:[['Twenty4Seven', 'Kev + Jackie'], 0, datetime.date(2019, 6, 20), 'A Fine Pair # 1337 ~ Seagrave', (52.7524, -1.08322)]
GC2KY8V:[['jayjaybee8'], 1, datetime.date(2011, 1, 3), 'Meadow Park #6 – Finale Bonus Cache', (52.8323, -1.17758)]
GC43GX3:[['KaosCL', 'BigLynx'], 0, datetime.date(2012, 12, 31), 'The Dormouse', (52.82815, -1.17945)]
GC2599Z:[['JohnnyBGoode'], 0, datetime.date(2010, 5, 1), 'Prestwold Natural Burial Ground', (52.77805, -1.15385)]
GC81MH5:[['PlasmaWave', 'NottsWalker'], 0, datetime.date(2019, 1, 12), 'Grumpy Gets His Feet Wet', (52.89423, -1.07833)]
GC6TD9K:[['BalooCrew'], 0, datetime.date(2016, 10, 1), 'Little Bridges # 967 - Sheepwash Stroll #1', (52.82612, -1.18012)]
GC6JQ95:[['Kev + Jackie'], 0, datetime.date(2016, 6, 5), 'Church Micro 9646...East Leake - Our Lady RC', (52.83513, -1.17993)]
GC6TD95:[['Aladdin Sane'], 3, datetime.date(2016, 10, 1), 'Sheepwash Stroll #2', (52.82315, -1.18073)]
GC7645M:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2017, 6, 16), 'VS #1232 Seagrave (Leicestershire)', (52.75237, -1.08852)]
GC6TD8Q:[['BOB6661'], 0, datetime.date(2016, 10, 1), 'Sheepwash Stroll #3', (52.8208, -1.18082)]
GC9GMY7:[['chilli.monster'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 19: The Comic Relief Doctors', (52.89228, -1.12983)]
GC2ADHQ:[['BalooCrew'], 2, datetime.date(2010, 6, 18), 'The Pinfold', (52.83105, -1.18065)]
GC9GMY0:[['PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 18: The Valeyard', (52.89248, -1.1253)]
GC2VH58:[['lavaflow'], 0, datetime.date(2011, 5, 7), 'Tribute to SOMLOCI - Standalone Bonus', (52.77917, -1.15833)]
GC6WZ4W:[['PlasmaWave', 'NottsWalker'], 0, datetime.date(2016, 11, 16), 'Little Bridges # 997 River Smite, Nether Broughton', (52.81752, -0.93932)]
GC9GMXW:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 17: The Fugitive Doctor', (52.8928, -1.12215)]
GC7CRA5:[['Grumpiest Horse', 'Spire67', 'PlasmaWave'], 0, datetime.date(2017, 9, 27), 'Hard wired', (52.88775, -1.11908)]
GC4YNE4:[['Grumpiest Horse'], 0, datetime.date(2014, 2, 16), 'Log with a Twist', (52.87898, -1.14012)]
GC9GMXK:[['Aladdin Sane'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 16: The Thirteenth Doctor', (52.89283, -1.1001)]
GC7WWC1:[['GizmoTheExplorer', 'Grumpiest Horse'], 1, datetime.date(2018, 9, 5), 'RuddRobin the Boy Wonder', (52.87007, -1.15487)]
GC513MP:[['BalooCrew', 'lavaflow'], 0, datetime.date(2014, 4, 8), 'Church Micro 5486...East Leake - St Mary', (52.83045, -1.18498)]
GC9GWMP:[['Aladdin Sane', 'chilli.monster'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 22: Bonus2: Day of the Doctor', (52.86747, -1.15852)]
GC51AQW:[['KaosCL', 'BigLynx'], 0, datetime.date(2014, 3, 31), 'Draw-Bridge', (52.75635, -1.1145)]
GC97RAP:[['Spire67', 'PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Sylvester', (52.88495, -0.99268)]
GC2KY9F:[['BalooCrew'], 1, datetime.date(2011, 1, 3), 'Meadow Park #1 – The Burrows', (52.83627, -1.1819)]
GC8W0P7:[['KaosCL', 'BigLynx'], 0, datetime.date(2020, 7, 9), 'Congratulations', (52.75533, -1.11218)]
GCAY52R:[['happygirlie', 'Grumpiest Horse', 'the_dolan', 'KaosCL', 'nerdsville', 'PlasmaWave', 'nuthatch69', 'JM282', 'Kev + Jackie', 'richt2000', 'NottsLabAdmins', 'Elliottgeogirls', 'Levibez', 'deltic40', 'elmowhitehead', 'HotHeads33', 'RiotFour', 'ladyxtal'], 0, datetime.date(2024, 10, 13), 'Plastered EarthCache ~ East Leake', (52.83042, -1.18402)]
GC9MTD6:[['Twenty4Seven', 'longwhatton34', 'the_dolan', 'Kev + Jackie', 'lorry14', 'Ukecan', 'MIKSUFF', 'ErewashPaddler', 'BaldBenny', 'Sooseeker', 'deltic40', 'elmowhitehead', 'Mat Smith', 'Cachley82', 'Grumpiest Horse', 'white star'], 0, datetime.date(2022, 2, 22), "'Deuces Wild!' Celebration", (52.83302, -1.18388)]
GC2T46C:[['PlasmaWave'], 0, datetime.date(2011, 5, 7), 'The somloci trail - Prestwold 1', (52.77995, -1.1626)]
GC9GMXG:[['Aladdin Sane', 'chilli.monster'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 15: The Twelfth Doctor', (52.89363, -1.10292)]
GC7Z9AN:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #13 - Ruh-roh - Grave Hand!', (52.89505, -1.02507)]
GC2KY9V:[['BalooCrew'], 1, datetime.date(2011, 1, 3), 'Meadow Park #2 – Heron Bridge', (52.83485, -1.18385)]
GC7Z9AM:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #12 - duunnn dunnn. dundundundun!', (52.89578, -1.02757)]
GC2KY88:[['JohnnyBGoode'], 2, datetime.date(2011, 1, 2), 'Major Oak Cloned', (52.833, -1.18087)]
GC7Z48B:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #11 - The Nest', (52.89638, -1.03053)]
GC9X63M:[['Anna+Blake'], 0, datetime.date(2022, 7, 16), 'Nottingham 2022 A-Z - Victoria Cross', (52.89627, -1.094)]
GC7Z9A4:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #10 - Weres Wolfs Chompers?', (52.89705, -1.03268)]
GC7CT4N:[['Spire67'], 0, datetime.date(2017, 9, 27), 'Sambucus Nigra', (52.89018, -1.1196)]
GC9GMXC:[['chilli.monster', 'PlasmaWave'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 14: The Dream Lord', (52.89418, -1.10525)]
GC11GEH:[['Nottingham Nutters'], 1, datetime.date(2007, 3, 17), "The Dragonlady's Mothering Sunday Cache", (52.89778, -1.03507)]
GC2RA5K:[['BalooCrew'], 1, datetime.date(2011, 4, 5), 'REALLY SideTracked - Rushcliffe Halt (GCRN)', (52.84343, -1.1828)]
GC2A9HP:[['theguestfamily'], 0, datetime.date(2010, 6, 15), 'Village View', (52.82355, -1.18742)]
GC1AJ5V:[['Aladdin Sane'], 0, datetime.date(2008, 3, 26), 'Swing into action', (52.8557, -0.94588)]
GC7Z97R:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #7 - Somebodies Watching Me!', (52.89837, -1.03762)]
GC9GMX9:[['chilli.monster', 'PlasmaWave'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 13: The Eleventh Doctor', (52.89422, -1.10815)]
GC9RX9C:[['PlasmaWave'], 0, datetime.date(2022, 5, 1), 'Post it', (52.75468, -1.11997)]
GC9HP7T:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 10, 31), 'Tigger', (52.88648, -0.98823)]
GC7Z99N:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #8 - One-Eyed Giant', (52.89913, -1.04057)]
GC32REK:[['PlasmaWave'], 1, datetime.date(2011, 8, 22), 'Cold War Cache', (52.90018, -1.06408)]
GC2KYB7:[['jayjaybee8'], 1, datetime.date(2011, 1, 3), 'Meadow Park #3 – Railway Tunnel', (52.83475, -1.18737)]
GC3CP1X:[['PlasmaWave'], 0, datetime.date(2012, 2, 27), '1947', (52.82483, -1.18908)]
GC7Z96F:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #6 - Captain Hooks Cursed Treasure', (52.89928, -1.03577)]
GC39E4F:[['PlasmaWave'], 0, datetime.date(2011, 12, 20), 'CKTV 8 - Eureka!', (52.89372, -1.11458)]
GC7EDGX:[['mart41'], 0, datetime.date(2017, 11, 7), 'Km106.5 N', (52.8922, -1.11998)]
GC9GMWZ:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 10: The Ninth Doctor', (52.89323, -1.11675)]
GC9GMX4:[['PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 12: The Meta-crisis Doctor', (52.89477, -1.11187)]
GC9GWMZ:[['jez130'], 2, datetime.date(2021, 12, 25), 'The Ruddy Doctor 21: Time & Ruddy Dimensions', (52.85975, -1.17478)]
GCA1GE2:[['MisterDoctor2020'], 1, datetime.date(2022, 10, 30), 'Sileby Brook 3', (52.7464, -1.08713)]
GC81RK4:[['PlasmaWave'], 0, datetime.date(2018, 12, 30), 'Daily Streaker v.7', (52.89747, -1.02072)]
GC6EG5J:[['PlasmaWave'], 0, datetime.date(2016, 4, 11), 'Church Micro 9398....Hoby Methodist', (52.75095, -1.00928)]
GC297J9:[['Pinfold'], 3, datetime.date(2010, 6, 1), 'June 2010', (52.87668, -0.96587)]
GC9MVQB:[['Spire67', 'PlasmaWave'], 251, datetime.date(2022, 3, 6), 'Hanging Bison mk3', (52.75347, -1.12162)]
GC81RR8:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2019, 1, 3), 'Little Bridges #1593 St Margarets view, Owthorpe', (52.89268, -1.00058)]
GC5V9K9:[['NottsWalker'], 1, datetime.date(2015, 5, 13), 'REALLY SideTracked - East Leake (GCR)', (52.83113, -1.19025)]
GC9GMWW:[['PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 9 Bonus: The War Doctor', (52.8905, -1.1275)]
GCAGA46:[['Twenty4Seven', 'Aladdin Sane'], 0, datetime.date(2023, 12, 31), 'Fraxinus', (52.86917, -1.16648)]
GC9GWN3:[['jez130'], 2, datetime.date(2021, 12, 25), 'The Ruddy Doctor 20: The Key to Time', (52.8629, -1.17328)]
GC9MVPH:[['Spire67', 'PlasmaWave'], 0, datetime.date(2022, 2, 2), 'The Horse Paddocks', (52.75397, -1.12402)]
GC9TGYD:[['PlasmaWave'], 0, datetime.date(2022, 5, 15), 'Canal Corner', (52.88877, -0.98845)]
GC2KYBR:[['jayjaybee8'], 1, datetime.date(2011, 1, 3), 'Meadow Park #4 – Gypsum Mine Air Shafts', (52.83585, -1.18982)]
GC81RQA:[['PlasmaWave', 'mart41'], 0, datetime.date(2019, 1, 15), 'A Village Sign, Owthorpe', (52.89437, -1.00465)]
GC6E55X:[['mart41'], 0, datetime.date(2016, 3, 31), 'Little Bridges # 840 - Woodgate View', (52.82543, -1.19135)]
GC1NZBT:[['RoPeHe'], 1, datetime.date(2009, 3, 25), "Weasel's Weevenge", (52.83582, -1.18995)]
GC7Z47Y:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), "Happy Halloween #3 - It's ALIVE!", (52.9007, -1.03455)]
GC9GMWR:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 8: The Eighth Doctor', (52.89525, -1.12133)]
GC96ADD:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 4, 1), 'Sammy', (52.86462, -1.17272)]
GC6EG4P:[['PlasmaWave'], 0, datetime.date(2016, 4, 17), 'Church Micro 9399....Hoby All Saints', (52.74947, -1.0101)]
GC30RP5:[['Team Heidi'], 2, datetime.date(2011, 7, 24), 'Babbling', (52.74987, -1.00763)]
GC2T46J:[['PlasmaWave'], 0, datetime.date(2011, 5, 7), 'The somloci trail - Prestwold 2', (52.77798, -1.16983)]
GC6XVBM:[['Spire67', 'mart41'], 0, datetime.date(2016, 12, 9), 'Nosy!', (52.88658, -1.1408)]
GC81RNQ:[['PlasmaWave'], 0, datetime.date(2018, 12, 30), 'Church Micro 3361 Owthorpe', (52.89468, -1.00228)]
GC9GMX1:[['chilli.monster', 'PlasmaWave'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 11: The Tenth Doctor', (52.89603, -1.11463)]
GC97B3W:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 06 Mining or Military?', (52.78603, -0.94325)]
GC7Z47N:[['Cotgrave_Man', 'PlasmaWave'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #2 - Rattastic', (52.90195, -1.0393)]
GC7EN5R:[['PlasmaWave'], 0, datetime.date(2017, 11, 10), 'VS#1340 Cotgrave', (52.9017, -1.0366)]
GC9GMWK:[['PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 7: The Seventh Doctor', (52.89677, -1.1219)]
GC6FM80:[['chilli.monster'], 0, datetime.date(2016, 4, 21), 'REALLY SideTracked - GCRN Ruddington', (52.88432, -1.14597)]
GC2JDWX:[['svk616g'], 1, datetime.date(2010, 11, 23), 'Clipston', (52.90317, -1.05767)]
GC9MVNR:[['PlasmaWave', 'Spire67', 'KaosCL', 'Aladdin Sane'], 0, datetime.date(2022, 2, 2), 'High Meadow 2-2-22', (52.75312, -1.12633)]
GC8Z00J:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2020, 8, 26), 'Step on my old size nines', (52.83102, -1.19313)]
GC7Z484:[['PlasmaWave', 'Cotgrave_Man'], 0, datetime.date(2018, 10, 31), 'Happy Halloween #5 - Spooky Highfive!', (52.9015, -1.03095)]
GC8JY6N:[['PlasmaWave', 'Twenty4Seven', 'Spire67'], 0, datetime.date(2020, 2, 4), 'Stocking Lane', (52.8446, -1.18932)]
GC63B2P:[['the_dolan', 'The Old Soldier', 'Ey Up Me Duck', 'Spire67', 'KaosCL', 'richt2000'], 0, datetime.date(2015, 10, 10), '#7 Dark Swarm', (52.9038, -1.05983)]
GC9GMWF:[['PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 6: The Sixth Doctor', (52.89895, -1.12287)]
GC8V005:[['PlasmaWave'], 0, datetime.date(2020, 6, 27), 'Forest Fumble #2', (52.90307, -1.04343)]
GC96ACG:[['RuddRobins'], 3, datetime.date(2021, 4, 1), 'Modge', (52.86678, -1.17325)]
GC97B3M:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 05 Silver Birch', (52.78412, -0.94328)]
GC3CK6H:[['theguestfamily'], 0, datetime.date(2012, 2, 17), 'One Thousand', (52.82437, -1.19493)]
GCA1GDQ:[['MisterDoctor2020'], 1, datetime.date(2022, 10, 30), 'Sileby Brook 2', (52.7436, -1.08882)]
GC641YF:[['Boba&René'], 0, datetime.date(2015, 10, 10), '#11 Neon Mind', (52.90405, -1.04807)]
GC7Z47J:[['Cotgrave_Man', 'PlasmaWave'], 0, datetime.date(2018, 10, 31), "Happy Halloween! #1 - Don't say his name 3 times", (52.90317, -1.0377)]
GCAW2VN:[['PlasmaWave', 'Spire67'], 0, datetime.date(2024, 9, 18), 'Field View', (52.88958, -0.98302)]
GC96AC5:[['PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Mog', (52.8713, -1.16937)]
GC7XA8F:[['NottsWalker', 'Badger539', 'PlasmaWave'], 0, datetime.date(2018, 9, 5), 'Ruddy Hell', (52.88817, -1.14893)]
GCA5E6Z:[['PlasmaWave'], 0, datetime.date(2023, 3, 15), 'Scrache Card', (52.9042, -1.07192)]
GC9GMWE:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 5: The Fifth Doctor', (52.89802, -1.1249)]
GC4XDNG:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2014, 1, 24), 'The Resting Tree', (52.89185, -1.13303)]
GC9JAN7:[['PlasmaWave'], 0, datetime.date(2021, 11, 16), 'Hedgehog House', (52.75693, -1.14068)]
GC8H6RW:[['PlasmaWave', 'NottsWalker', 'graceandwill', 'Kev + Jackie'], 0, datetime.date(2019, 12, 27), 'Daily Streaker v.8', (52.91075, -1.03823)]
GC97B3H:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 04 Stay on Track', (52.78203, -0.94298)]
GC6QBGV:[['BOB6661', 'PlasmaWave', 'HalfpintMonkeyGirl'], 0, datetime.date(2016, 9, 4), 'The Samuel Carter pillars', (52.88882, -1.1422)]
GC8P8Y2:[['PlasmaWave'], 0, datetime.date(2020, 5, 21), 'Daily Exercise 1', (52.85077, -1.18877)]
GC97BNB:[['PlasmaWave', 'longwhatton34', 'HPRH'], 0, datetime.date(2021, 5, 1), '4) A great view', (52.75158, -1.12983)]
GC83984:[['PlasmaWave'], 1, datetime.date(2019, 2, 12), 'Ruddy Kids!', (52.8882, -1.14495)]
GC93X49:[['PlasmaWave', 'longwhatton34', 'jez130'], 0, datetime.date(2021, 1, 1), '1) A Woodland Walk', (52.75358, -1.13533)]
GC97B43:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 08 Not your Footpath', (52.78658, -0.93748)]
GC2KYCH:[['jayjaybee8'], 1, datetime.date(2011, 1, 3), 'Meadow Park #5 – Fox Hill Woods', (52.83565, -1.19622)]
GC7WWE9:[['PlasmaWave'], 1, datetime.date(2018, 9, 5), 'The Treasure of RuddRobins Rock', (52.88798, -1.15987)]
GC641YM:[['Ey Up Me Duck', 'The Old Soldier', 'PlasmaWave', 'BalooCrew', 'NottsWalker', 'lavaflow'], 0, datetime.date(2015, 10, 10), '#10 Scorpio Girl', (52.90572, -1.049)]
GC9GMW6:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 3: The Third Doctor', (52.89558, -1.12832)]
GCAVQXH:[['PlasmaWave'], 1, datetime.date(2024, 8, 1), 'End of the road', (52.76717, -0.9586)]
GC7WV1R:[['graceandwill'], 0, datetime.date(2018, 9, 5), 'RuddRobin Redbreast', (52.89017, -1.14468)]
GC6WRBF:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2016, 11, 12), 'Stanford Stomp #22: Moat Hill Spinney', (52.78972, -1.18712)]
GC4V3ZZ:[['chilli.monster'], 0, datetime.date(2013, 12, 25), 'Bah Humbug 5', (52.901, -1.10925)]
GC9GMW0:[['Aladdin Sane', 'PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 1: The First Doctor', (52.8937, -1.13365)]
GC9GNNW:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 0: Gallifrey Falls', (52.89277, -1.1364)]
GC97B48:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 10 Field Corner', (52.78862, -0.93478)]
GC4CCVQ:[['KaosCL', 'BigLynx'], 0, datetime.date(2013, 5, 25), 'Location', (52.79802, -1.14383)]
GC7R9WV:[['PlasmaWave'], 0, datetime.date(2018, 7, 4), 'The Greatest Showman', (52.88655, -1.15293)]
GC97BMX:[['PlasmaWave', 'longwhatton34', 'HPRH'], 0, datetime.date(2021, 5, 1), '2) Sequoia seed container', (52.75207, -1.13427)]
GC59BV6:[['Just-Us-Two'], 0, datetime.date(2014, 7, 24), 'Moor Lane & Beyond', (52.86617, -1.17942)]
GC7WVW4:[['PlasmaWave', 'NottsWalker', 'Badger539'], 0, datetime.date(2018, 9, 5), 'RuddRobin Hood', (52.87697, -1.16672)]
GC6E7T0:[['lavaflow'], 0, datetime.date(2016, 4, 22), 'Church Micro....9279 Long Clawson Baptist', (52.83933, -0.92467)]
GC9GMWA:[['PlasmaWave', 'Aladdin Sane', 'Twenty4Seven'], 1, datetime.date(2021, 12, 25), 'The Ruddy Doctor 4: The Fourth Doctor', (52.89667, -1.1265)]
GC8W29M:[['PlasmaWave'], 0, datetime.date(2020, 7, 5), 'Hit me, baby, one more time', (52.83067, -1.19875)]
GC4HJ5A:[['PlasmaWave'], 0, datetime.date(2013, 8, 19), "Nutters' 60th Birthday cache", (52.86932, -1.17632)]
GC9GMW3:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 12, 25), 'The Ruddy Doctor 2: The Second Doctor', (52.89475, -1.1308)]
GC9YQXC:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'long walk home!', (52.79832, -0.92693)]
GC97B4F:[['PlasmaWave', 'Kev + Jackie'], 1, datetime.date(2021, 4, 7), 'A wander from Welby - 11 Gate to No where', (52.78887, -0.93243)]
GC92BKX:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2020, 12, 8), 'roll up and shine', (52.84635, -1.1955)]
GC947NK:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2020, 12, 25), 'Mama told me not to Come', (52.84038, -1.19795)]
GC9YQX5:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'time for a drink?', (52.80215, -0.92475)]
GC975V3:[['PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Little Bridges # 2180 Colston Bassett', (52.88555, -0.96612)]
GC45GYV:[['PlasmaWave'], 0, datetime.date(2013, 2, 6), 'Danger Of Death', (52.89178, -1.1428)]
GC7WTZE:[['chilli.monster'], 1, datetime.date(2018, 9, 5), 'Ruddy Arborescent', (52.89162, -1.14712)]
GCA1GDA:[['MisterDoctor2020'], 1, datetime.date(2022, 10, 30), 'Sileby Brook 1', (52.73997, -1.0913)]
GC8VJYK:[['PlasmaWave', 'Treecrabs'], 0, datetime.date(2020, 6, 28), 'Bugged out', (52.82712, -1.20132)]
GC97B3F:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 03 Seven Bar Gate', (52.78163, -0.93745)]
GC7H8QQ:[['KaosCL', 'the_dolan', 'BigLynx'], 0, datetime.date(2018, 2, 6), 'Groundhog Day', (52.90667, -1.08717)]
GC7H8QN:[['NottsWalker', 'PlasmaWave'], 1, datetime.date(2018, 2, 5), 'Groundhog Day', (52.90667, -1.08717)]
GC7H8QJ:[['Muttlee333'], 0, datetime.date(2018, 2, 2), 'Groundhog Day', (52.90667, -1.08717)]
GC97BRR:[['PlasmaWave', 'longwhatton34', 'HPRH'], 0, datetime.date(2021, 5, 1), '8) Poppyfields', (52.7519, -1.13863)]
GC975W7:[['PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Charlie Brown', (52.88948, -0.97225)]
GC8KF44:[['Spire67', 'graceandwill', 'PlasmaWave'], 0, datetime.date(2020, 3, 8), "Village Hall Series #700 - St Peter's Rooms", (52.8862, -1.15567)]
GC96FJB:[['Spire67', 'PlasmaWave'], 1, datetime.date(2021, 3, 29), 'Gizmo', (52.89163, -0.97667)]
GCAWBQ4:[['PlasmaWave', 'Spire67'], 0, datetime.date(2024, 9, 18), 'Beside the Smite', (52.8887, -0.9701)]
GC97B51:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 16 Which Gate?', (52.78522, -0.93353)]
GC7FX2T:[['PlasmaWave'], 0, datetime.date(2017, 12, 11), 'Daily Streaker', (52.90638, -1.02892)]
GC7WV0J:[['PlasmaWave', 'NottsWalker', 'Badger539'], 0, datetime.date(2018, 9, 5), 'Der Schweizerische RuddRobins', (52.8846, -1.15768)]
GC8VT7F:[['KaosCL', 'BigLynx'], 10, datetime.date(2020, 7, 11), 'Agent Vee', (52.83937, -1.19993)]
GC96ACT:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 4, 1), 'Mollie', (52.86567, -1.18387)]
GC2JMDR:[['northking'], 1, datetime.date(2010, 11, 23), "'grave", (52.90858, -1.04885)]
GC6NB8T:[['julienmel'], 0, datetime.date(2016, 7, 15), 'REALLY SideTracked - Frisby', (52.75418, -0.97538)]
GC73JP5:[['PlasmaWave', 'fairyspan'], 1, datetime.date(2017, 6, 20), 'Mammar and Granddad Roy', (52.90747, -1.03478)]
GC8WAPJ:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 7, 9), 'Maybe tomorrow', (52.83107, -1.2023)]
GC7WT5Y:[['PlasmaWave'], 1, datetime.date(2018, 9, 5), 'Find X: Here it is! (Ruddy Depot)', (52.89052, -1.14942)]
GCAFAD1:[['TeamPi24'], 2, datetime.date(2023, 10, 22), 'Never Skip The Intro', (52.8771, -1.09738)]
GCAXXFF:[['Kev + Jackie'], 0, datetime.date(2024, 9, 12), 'A wander from Welby - 12 Back to the Road', (52.78962, -0.92895)]
GCABWXB:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2023, 7, 26), 'Stanford pumping station', (52.79447, -1.19557)]
GC6MYX9:[['Kev + Jackie', 'BOB6661'], 0, datetime.date(2016, 7, 8), 'VS #715 Stanford on Soar', (52.7991, -1.19548)]
GC6HG9W:[['lavaflow'], 0, datetime.date(2016, 5, 19), 'Church Micro 5982...Stanford on Soar', (52.79552, -1.19837)]
GC9XQYR:[['chilli.monster'], 0, datetime.date(2022, 10, 23), 'The Ruddy Doctor 23: 14th Doc/ Power of the Doctor', (52.8905, -1.15)]
GC7PXF8:[['PlasmaWave'], 0, datetime.date(2018, 5, 21), 'Roam around the Green', (52.89088, -1.14927)]
GC7WTZ4:[['Aladdin Sane', 'Badger539'], 0, datetime.date(2018, 9, 5), 'Ruddy Railway', (52.88287, -1.16397)]
GC1R4P1:[['the2shoes'], 2, datetime.date(2009, 5, 10), 'THE WREAKE VALLEY VIEW', (52.7468, -0.99273)]
GC8WAQ6:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 7, 9), 'A thousand trees', (52.82927, -1.20353)]
GC97B4P:[['Nightworker33'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 13 Sticks', (52.78813, -0.92945)]
GC7H8QP:[['Muttlee333'], 0, datetime.date(2018, 2, 3), 'Groundhog Day', (52.90498, -1.10742)]
GC43YQH:[['northking'], 0, datetime.date(2013, 1, 8), 'Tollerton Rest', (52.90892, -1.0801)]
GC8K4NX:[['Spire67', 'Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 2, 11), 'Don’t know the way? Check with the Zebra!', (52.82262, -1.2044)]
GC97B4T:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 14 Another Great View', (52.78643, -0.92985)]
GC63B02:[['PlasmaWave', 'lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 10, 10), '#5 Obsidian Spirit', (52.9101, -1.06262)]
GC7WV16:[['chilli.monster'], 1, datetime.date(2018, 9, 5), 'Quicker than you can say Jack RuddRobinson', (52.89515, -1.14377)]
GC97B37:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 02 Just Past the Bunker', (52.78143, -0.93355)]
GC9R518:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2022, 4, 15), 'Candy', (52.8651, -1.1875)]
GC97BPH:[['PlasmaWave', 'longwhatton34', 'HPRH', 'FiddleCath67', 'MIKSUFF', 'ladyxtal', 'Mat Smith', 'BlitzMar2010', 'Charell', 'cachingpad', 'J1974W', 'SDH11', 'DBH5', 'abinewcombe10'], 0, datetime.date(2021, 5, 1), '5) An FTF surprise', (52.7476, -1.13418)]
GC7WWEX:[['KaosCL', 'chilli.monster', 'BigLynx'], 1, datetime.date(2018, 9, 5), 'Christopher RuddRobinson', (52.9, -1.12988)]
GC6EFVK:[['PlasmaWave'], 0, datetime.date(2016, 4, 29), 'Church Micro 9483.... Thrussington', (52.73633, -1.03808)]
GCA3MDZ:[['chilli.monster'], 0, datetime.date(2023, 2, 19), 'Ring Ring Ring', (52.90475, -1.1134)]
GC6HGA0:[['lavaflow'], 0, datetime.date(2016, 5, 19), 'Church Micro 9547...Barrow-upon-Soar', (52.75257, -1.1474)]
GC97B4X:[['Nightworker33'], 0, datetime.date(2021, 3, 29), 'A wander from Welby - 15 Pill Box', (52.78472, -0.92995)]
GC4WE1J:[['TheCFCs', 'Nightworker33'], 0, datetime.date(2014, 1, 26), 'Church Micro 4866...Ruddington', (52.89243, -1.15007)]
GC97BR1:[['PlasmaWave', 'longwhatton34', 'HPRH'], 0, datetime.date(2021, 5, 1), '6) SideTracked - Barrow Gypsum Sidings', (52.74598, -1.13125)]
GC6EG85:[['lavaflow'], 0, datetime.date(2016, 4, 29), 'Church Micro 9480....Frisby on the Wreake', (52.75113, -0.95957)]
GC9R512:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2022, 4, 15), 'Tiddles', (52.86903, -1.18497)]
GC7RBRT:[['simhatus'], 1, datetime.date(2018, 10, 19), '20096', (52.90948, -1.03282)]
GC63AZT:[['PlasmaWave', 'lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 10, 10), '#3 Quantum Shadow', (52.91105, -1.05647)]
GC7WW39:[['PlasmaWave'], 1, datetime.date(2018, 9, 5), 'Ruddy Luddites', (52.89915, -1.13423)]
GC9RX9P:[['PlasmaWave'], 0, datetime.date(2022, 5, 1), '7) A Scary cache (part 2)', (52.74768, -1.13733)]
GC1R7XJ:[['the2shoes'], 1, datetime.date(2009, 5, 11), 'THE WREAKE VALLEY Mill 7', (52.75648, -0.96395)]
GC7WVZ7:[['KaosCL', 'chilli.monster', 'BigLynx'], 1, datetime.date(2018, 9, 5), 'Dread Pirate RuddRobins', (52.8955, -1.14787)]
GC63AZY:[['PlasmaWave', 'lavaflow', 'BalooCrew', 'NottsWalker'], 0, datetime.date(2015, 10, 10), '#4 Giga Bane', (52.91168, -1.05878)]
GC97V7W:[['Spire67'], 0, datetime.date(2021, 3, 29), 'GET seven', (52.91025, -1.08677)]
GCAY4E5:[['PlasmaWave', 'Spire67'], 0, datetime.date(2024, 9, 18), 'Junction', (52.89475, -0.97338)]
GC7ET6M:[['PlasmaWave'], 0, datetime.date(2017, 11, 13), "Going on holiday? Don't forget to pack your trunk!", (52.78162, -0.93023)]
GC7N8AQ:[['PlasmaWave'], 0, datetime.date(2018, 4, 19), 'Nottinghamshire Extremes - South', (52.7909, -1.19828)]
GC9X25K:[['Spire67', 'Twenty4Seven'], 0, datetime.date(2022, 7, 15), 'A - Alpha (Samantha Morton) - Nottingham 2022 A-Z', (52.91208, -1.05183)]
GC9X25H:[['Spire67', 'Twenty4Seven'], 0, datetime.date(2022, 7, 15), 'J - Joe Dempsie - Nottingham 2022 A-Z', (52.91188, -1.04742)]
GC3VCZB:[['PlasmaWave', 'rr300tdi'], 0, datetime.date(2012, 10, 1), 'SideTracked - Barrow Upon Soar', (52.74937, -1.1445)]
GC6RWA0:[['Kev + Jackie'], 0, datetime.date(2016, 9, 12), 'Walkies for Charlie ( now Polly )', (52.75095, -0.97307)]
GC98XAG:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2021, 4, 7), 'A wander from Welby - 1 Lyndsay messed up!', (52.7802, -0.93067)]
GC7H3C2:[['fairyspan', 'Tentmantent'], 0, datetime.date(2018, 1, 14), 'Daily streaker v3', (52.91133, -1.03567)]
GC7WV28:[['NottsWalker', 'PlasmaWave', 'Aladdin Sane'], 1, datetime.date(2018, 9, 5), 'Oh No, Ruddy Maths . . .', (52.89197, -1.13893)]
GC9XMAH:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2022, 8, 2), 'Little Bridges # 2555 Bridge 31 wooden stairs', (52.75857, -1.16388)]
GC7F2MJ:[['NottsWalker'], 0, datetime.date(2017, 11, 20), "Rob's 30th Birthday Cache 3", (52.8244, -1.2091)]
GC9TT9N:[['KaosCL'], 0, datetime.date(2022, 7, 3), 'Crossing the line', (52.79455, -1.20147)]
GC97VP1:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET eight', (52.91083, -1.09072)]
GC97VQ2:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET the glorious twelfth', (52.90933, -1.10132)]
GC2PJ6Y:[['jayjaybee8'], 1, datetime.date(2011, 3, 1), 'Geodog George', (52.89855, -1.13745)]
GC8M740:[['Cotgrave_Man'], 0, datetime.date(2020, 3, 10), 'A Fine Pair #1443 - Colston Bassett', (52.88988, -0.96538)]
GC96FJ0:[['PlasmaWave'], 0, datetime.date(2021, 4, 7), 'Kim', (52.86872, -1.18897)]
GC85QJF:[['Lunatuck'], 0, datetime.date(2019, 4, 10), 'Requiem for Burl Ives', (52.89893, -1.14067)]
GC2Z8C8:[['Eddy6954'], 0, datetime.date(2011, 7, 1), 'REALLY SideLined - Stanford Bridge', (52.79663, -1.20312)]
GC5KD4X:[['PlasmaWave'], 0, datetime.date(2015, 1, 20), 'Stanford to West Leake - Peek-a-boo!', (52.80035, -1.20483)]
GC6RE2T:[['PlasmaWave'], 0, datetime.date(2016, 9, 3), 'REALLY SideTracked - Barrow Upon Soar & Quorn', (52.75127, -1.15117)]
GC7HV6N:[['PlasmaWave'], 0, datetime.date(2018, 2, 2), 'Brian is homeless !!!', (52.77868, -0.93082)]
GC8KTY2:[['Cotgrave_Man'], 0, datetime.date(2020, 2, 23), 'Village Hall Series #698 - Colston Bassett', (52.89155, -0.96302)]
GC90PKQ:[['PlasmaWave'], 0, datetime.date(2020, 10, 2), 'I wanna get lost with you', (52.82855, -1.21025)]
GC7ZX95:[['fliss29', 'DaffyD1uk'], 0, datetime.date(2018, 11, 11), 'First 50 Heroes - George William Underwood', (52.76645, -1.17778)]
GC6YE9K:[['greenfingers92'], 0, datetime.date(2016, 12, 24), 'REALLY SideTracked - Brooksby', (52.73862, -1.006)]
GC97VNH:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET six', (52.91238, -1.08445)]
GC7G99B:[['lavaflow', 'PlasmaWave'], 1, datetime.date(2017, 12, 22), 'Carol Vorderman', (52.90963, -1.0157)]
GCA8VXH:[['Kev + Jackie'], 0, datetime.date(2023, 5, 20), 'Loughborough’s penthouse', (52.76765, -1.17988)]
GC110GR:[['MJB58', 'Aladdin Sane'], 0, datetime.date(2007, 2, 25), 'Cotgrave Cachabout', (52.91322, -1.04358)]
GC9B3DX:[['PlasmaWave'], 0, datetime.date(2021, 5, 17), 'Camoflaged climbing cache', (52.80623, -1.20857)]
GC7M0KR:[['Lunatuck'], 0, datetime.date(2018, 3, 28), 'Daily Streaker v.5', (52.91173, -1.02793)]
GC4ZBB6:[['SMacB'], 0, datetime.date(2014, 3, 4), 'SideTracked - Trainspotting in Lufbra', (52.77538, -1.18902)]
GC5ZGKE:[['chilli.monster'], 0, datetime.date(2015, 7, 19), 'Shine Bright', (52.8961, -1.15033)]
GC7WV04:[['PlasmaWave'], 0, datetime.date(2018, 9, 5), 'Roam Around Rudd', (52.89113, -1.161)]
GC7WWE2:[['PlasmaWave', 'NottsWalker', 'Badger539'], 0, datetime.date(2018, 9, 5), 'RuddRobin the Hooded Man', (52.89163, -1.15503)]
GC3H0ZT:[['BalooCrew'], 0, datetime.date(2012, 4, 14), 'Cause of a Storm (sharmarama4)', (52.74525, -1.13997)]
GC97V9G:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET eleven', (52.91107, -1.10102)]
GC969YM:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 3, 29), 'Vegas Two Times', (52.85223, -1.204)]
GCAD6PA:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2023, 8, 26), 'A view of Loughborough', (52.79468, -1.20443)]
GC1BN91:[['Sid_James'], 1, datetime.date(2008, 4, 27), 'Big Meadow Cache V2', (52.78913, -1.20158)]
GC8BKJ6:[['PlasmaWave'], 0, datetime.date(2019, 8, 17), 'YOSM #0010 Cold Harbour', (52.81835, -1.21207)]
GCA97QF:[['Kev + Jackie'], 0, datetime.date(2023, 5, 27), 'The deep dark hole…', (52.77635, -1.19115)]
GC97V9P:[['Grumpiest Horse', 'white star'], 0, datetime.date(2021, 3, 29), 'GET lucky', (52.91072, -1.10445)]
GC7M0K9:[['PlasmaWave'], 1, datetime.date(2018, 3, 28), 'Daily Streaker v.4', (52.91193, -1.02375)]
GC7K48J:[['NottsWalker'], 0, datetime.date(2018, 3, 6), 'Little Bridges # 1357 - Midshires Way', (52.83462, -1.21133)]
GC97V7P:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET High! (five)', (52.9133, -1.08683)]
GC8WBHC:[['PlasmaWave'], 0, datetime.date(2020, 7, 14), 'Church Micro 13455 Edwalton - Holy Rood', (52.90953, -1.1114)]
GC7ENYK:[['NottsWalker', 'PlasmaWave'], 0, datetime.date(2017, 11, 12), 'Whos eyes?', (52.90818, -1.11718)]
GC7BQD8:[['Spire67'], 1, datetime.date(2017, 9, 3), 'Lexico', (52.91018, -1.01248)]
GC2M2MF:[['美丽'], 0, datetime.date(2011, 1, 5), '509D66-1D991', (52.83173, -1.21233)]
GC7WTZ9:[['NottsWalker', 'Badger539', 'PlasmaWave'], 0, datetime.date(2018, 9, 5), 'Space Family RuddRobins', (52.8984, -1.14808)]
GC8TFBE:[['KaosCL', 'jez130'], 4, datetime.date(2020, 6, 11), 'Bridges of Charnwood', (52.74073, -1.12962)]
GCAAR09:[['Twenty4Seven', 'PlasmaWave'], 2, datetime.date(2023, 7, 7), 'Bridge 35 Moor Lane Bridge', (52.76912, -1.19198)]
GC8M623:[['Cotgrave_Man'], 0, datetime.date(2020, 3, 10), 'Church Micro 3442...Colston Bassett - St John', (52.89287, -0.96133)]
GC83BY2:[['KaosCL', 'PlasmaWave', 'the_dolan', 'BigLynx'], 0, datetime.date(2019, 2, 12), 'They shall not pass....', (52.90442, -1.13217)]
GC83EMR:[['KaosCL', 'PlasmaWave', 'the_dolan', 'BigLynx'], 0, datetime.date(2019, 2, 12), 'Hemidactylus too', (52.9019, -1.14033)]
GC9XMDW:[['PlasmaWave'], 0, datetime.date(2022, 8, 2), 'Flesh Hovel Lane sewage treatment', (52.75757, -1.16905)]
GC7HV9C:[['PlasmaWave'], 0, datetime.date(2018, 2, 2), 'Postcode Cache 206 - Lima Echo 14', (52.77265, -0.93193)]
GC38DQA:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#11 - Grange Farm', (52.8447, -1.20987)]
GC81MV6:[['vixpatt'], 1, datetime.date(2018, 12, 27), '(Christmas) Da(Y)ily Streaker 6', (52.91418, -1.03332)]
GC84D39:[['KaosCL', 'Spire67', 'richt2000', 'the_dolan', 'BigLynx'], 0, datetime.date(2019, 3, 26), 'Pozzolan!', (52.9014, -1.14275)]
GC6V05X:[['batesandlaw'], 0, datetime.date(2016, 10, 7), 'SideTracked - Loughborough', (52.77862, -1.19532)]
GC9XMBR:[['PlasmaWave'], 0, datetime.date(2022, 8, 2), 'Flesh Hovel Lane', (52.75597, -1.1671)]
GC1RMVA:[['jefayle'], 2, datetime.date(2009, 5, 22), 'THE WREAKE VALLEY Lake View 5', (52.76013, -0.94738)]
GC7H3CK:[['NottsWalker'], 0, datetime.date(2018, 1, 14), 'The back entrance to the country park.', (52.91518, -1.04182)]
GC7B9CN:[['PlasmaWave'], 1, datetime.date(2017, 10, 31), 'Church Micro 3441...Colston Bassett - St Mary', (52.89753, -0.9684)]
GCAF3GJ:[['PlasmaWave'], 0, datetime.date(2023, 10, 10), 'Fox hill trail', (52.79483, -1.20758)]
GC38D4H:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#8 - Forest Edge', (52.85118, -1.2077)]
GC7W1P6:[['BiggyEeyore'], 0, datetime.date(2018, 8, 14), 'Ruddy Cyclists!', (52.89878, -1.15058)]
GCA75XH:[['PlasmaWave'], 0, datetime.date(2023, 5, 1), 'Film Pot Base Of Post', (52.82663, -1.21485)]
GC96ACY:[['PlasmaWave', 'Spire67'], 0, datetime.date(2021, 4, 1), 'Roxy', (52.86822, -1.19565)]
GC85YQW:[['Twenty4Seven'], 0, datetime.date(2019, 4, 10), 'A little light relief...', (52.90335, -1.13948)]
GCA8E2E:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2023, 5, 9), 'Walkies #1', (52.76883, -1.1868)]
GC8H4QX:[['Cotgrave_Man'], 0, datetime.date(2019, 12, 23), 'REALLY SideTracked - Ruddington', (52.89528, -1.15887)]
GC83BX9:[['KaosCL', 'PlasmaWave', 'the_dolan', 'BigLynx'], 0, datetime.date(2019, 2, 12), 'Listen, I think its humming...', (52.90497, -1.13557)]
GC9HP65:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 10, 26), 'Flash', (52.86587, -1.19865)]
GC97VN2:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET the fourth bridge', (52.91493, -1.09018)]
GC798CV:[['PlasmaWave'], 0, datetime.date(2017, 7, 23), "'You're going to need a bigger boat'", (52.77053, -0.93213)]
GC38D5R:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#9 - Cuckoo Cuckoo', (52.84855, -1.21007)]
GC8M74X:[['Cotgrave_Man'], 0, datetime.date(2020, 3, 10), 'VS#1724 - Colston Bassett', (52.89428, -0.95987)]
GC6V85C:[['BalooCrew'], 0, datetime.date(2016, 10, 15), 'River side cache', (52.73045, -1.087)]
GC6J9XX:[['3dartdonna'], 0, datetime.date(2016, 5, 23), 'WLH#14 - Crownend Wood View', (52.83763, -1.21443)]
GC890FW:[['PlasmaWave'], 0, datetime.date(2020, 5, 25), 'Going Cuckoo', (52.85385, -1.20787)]
GC9XMD8:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2022, 8, 2), 'Little Bridges # 2558 in the woods', (52.75947, -1.1757)]
GC6JC6A:[['lavaflow'], 0, datetime.date(2016, 5, 26), 'Little Bridges # 881 - Kingston Brook', (52.83167, -1.21597)]
GC2NR2Q:[['northking'], 0, datetime.date(2011, 2, 20), "....so where's the village?", (52.78072, -0.92132)]
GC82M31:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 1, 28), "Now you see it, now you don't!", (52.90283, -1.14365)]
GC96ATN:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 3, 29), 'Check My Eyelids for Holes', (52.85517, -1.20752)]
GC928M8:[['PlasmaWave', 'Twenty4Seven', 'NottsWalker'], 1, datetime.date(2020, 11, 4), 'REALLY SideTracked - Rearsby', (52.72983, -1.03492)]
GC97VQF:[['Grumpiest Horse', 'chilli.monster', 'white star'], 0, datetime.date(2021, 3, 29), 'GET FORE! (teen)', (52.91295, -1.10785)]
GC2B7DA:[['Fosiposi'], 0, datetime.date(2010, 7, 5), 'Sharp', (52.90798, -1.12878)]
GC97B1W:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'Holwell Pumping Station', (52.76952, -0.9318)]
GC38D3Q:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#7 - Cuckoo Bush Farm', (52.85387, -1.20863)]
GC8HX6Q:[['PlasmaWave', 'the_dolan', 'chilli.monster', 'richt2000'], 0, datetime.date(2020, 1, 11), 'Tight Rope', (52.91132, -1.11673)]
GC97B1K:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'A Bridge Over the test Track', (52.77212, -0.92858)]
GC38D8K:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#10 - Leake New Wood', (52.84612, -1.21272)]
GCA8PR2:[['PlasmaWave'], 0, datetime.date(2023, 5, 16), 'Bridge 37 - Little Moor Lane towpath', (52.77475, -1.19555)]
GC2AACR:[['northking'], 1, datetime.date(2010, 6, 17), 'Quality', (52.82812, -1.21725)]
GC38DR8:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#13 - Fox Hill View', (52.84105, -1.21465)]
GC63HFB:[['mart41'], 0, datetime.date(2015, 9, 30), 'Edwalton - A-Z Nottinghamshire', (52.91247, -1.11213)]
GC8EZHD:[['emmakeeling', 'KaosCL'], 2, datetime.date(2020, 5, 29), 'Geodog Sam #3', (52.85667, -1.2075)]
GC7H8QK:[['KaosCL', 'the_dolan', 'BigLynx', 'richt2000'], 0, datetime.date(2018, 2, 4), 'Groundhog Day', (52.91665, -1.0856)]
GC83BWK:[['KaosCL', 'PlasmaWave', 'the_dolan', 'BigLynx'], 0, datetime.date(2019, 2, 12), 'Huh, no sign....', (52.90537, -1.13908)]
GC5AFQB:[['PlasmaWave'], 0, datetime.date(2014, 8, 8), 'Gotham City', (52.85837, -1.20667)]
GC97V79:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET a hattrick', (52.91627, -1.09105)]
GC38DRR:[['BalooCrew'], 0, datetime.date(2011, 12, 10), 'WLH#15 - Back of Beyond', (52.83505, -1.21693)]
GCA8FBG:[['PlasmaWave'], 0, datetime.date(2023, 5, 12), 'Walkies #6', (52.77743, -1.19918)]
GC7VH5B:[['PlasmaWave'], 1, datetime.date(2018, 8, 7), 'Church Micro 3628 ...Cropwell Bishop-St Giles', (52.9064, -0.98443)]
GC97VQQ:[['chilli.monster'], 0, datetime.date(2021, 3, 29), 'GET fifteen', (52.91458, -1.10465)]
GC2H991:[['Pinfold'], 2, datetime.date(2010, 10, 26), 'Holwell Hop', (52.80477, -0.90568)]
GC85QM0:[['Twenty4Seven'], 0, datetime.date(2019, 4, 10), 'Four mile house', (52.90468, -1.14263)]
GC38DQM:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#12 - Ash Spinney View', (52.84275, -1.21545)]
GCA86DD:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2023, 5, 9), 'X marks the spot!', (52.77262, -1.19528)]
GC70CHY:[['PlasmaWave'], 0, datetime.date(2017, 2, 12), 'Scalford Hide & Seek 3', (52.8173, -0.90258)]
GC8H4QC:[['chilli.monster'], 0, datetime.date(2019, 12, 23), 'REALLY SideTracked - Edwalton', (52.91193, -1.11912)]
GC6JC36:[['Kev + Jackie'], 0, datetime.date(2016, 5, 24), 'Church Micro 5225...West Leake, St. Helena', (52.83318, -1.21835)]
GC9XMCV:[['Kev + Jackie'], 0, datetime.date(2022, 8, 2), 'Little Bridges # 2559 Concrete beam', (52.76035, -1.18058)]
GC9R1A9:[['chilli.monster'], 1, datetime.date(2022, 4, 13), 'An Outstanding Forest Walk', (52.92335, -1.14725)]
GC5QVA3:[['PlasmaWave', 'BalooCrew'], 0, datetime.date(2015, 4, 10), 'SideTracked - Sileby', (52.73163, -1.10983)]
GCAVJRB:[['PlasmaWave', 'Spire67'], 0, datetime.date(2024, 9, 18), 'Bonus for Colston Bassett Lab Caches', (52.8949, -0.95497)]
GC1Q93E:[['Sukygoeswandering'], 2, datetime.date(2009, 4, 19), 'Meander By The Mill', (52.72692, -1.0478)]
GCA8MF4:[['PlasmaWave'], 0, datetime.date(2023, 5, 16), 'Walkies #7', (52.77827, -1.20187)]
GC6YE9F:[['BOB6661'], 0, datetime.date(2016, 12, 24), 'REALLY SideTracked - Ashfordby', (52.75638, -0.94517)]
GC71H4G:[['KaosCL', 'BigLynx'], 0, datetime.date(2017, 3, 18), 'Bookworm #1', (52.77058, -1.19493)]
GC2DJGB:[['foxtrott3r'], 1, datetime.date(2010, 9, 3), 'Ruddington Grange', (52.90287, -1.1509)]
GC82Z1H:[['RuddRobins'], 0, datetime.date(2019, 1, 30), 'Under the old oak tree.....', (52.90635, -1.14233)]
GC38F4Y:[['BalooCrew'], 0, datetime.date(2011, 12, 10), 'WLH#16 - Light at the end ...', (52.83483, -1.22005)]
GC4XBHG:[['PlasmaWave'], 0, datetime.date(2014, 1, 29), 'Church Micro 4867...Gotham', (52.86592, -1.20487)]
GC8CNQC:[['NottsWalker'], 0, datetime.date(2019, 8, 30), 'Black Gate', (52.91665, -1.10267)]
GCAZRA7:[['TeamPi24'], 0, datetime.date(2024, 10, 31), 'A Dark and Muddy Adventure', (52.91015, -1.13173)]
GC6TFD1:[['chilli.monster'], 0, datetime.date(2016, 10, 9), '#1 Lunatic flies!', (52.9189, -1.03462)]
GC6HGA3:[['longwhatton34'], 0, datetime.date(2016, 5, 19), 'Church Micro 9548...Sileby', (52.73102, -1.11313)]
GC7H3D9:[['Tentmantent'], 0, datetime.date(2018, 1, 14), 'Meadow crescent rocks', (52.91847, -1.03002)]
GC4ZPDN:[['BalooCrew', 'lavaflow'], 1, datetime.date(2014, 3, 14), 'Sneaky Leaky', (52.82917, -1.22157)]
GC97VBF:[['Grumpiest Horse'], 0, datetime.date(2021, 3, 29), 'GET sixteen', (52.9164, -1.1065)]
GC38D32:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#5 - Trees Everywhere', (52.85015, -1.21558)]
GC8TN9K:[['PlasmaWave'], 1, datetime.date(2020, 6, 18), 'City View 4 - At the Sharp End', (52.91043, -1.13202)]
GC4JMW5:[['fliss29'], 0, datetime.date(2013, 8, 14), 'REALLY SideTracked - Loughborough Central (GCR)', (52.7686, -1.19458)]
GC7H3E8:[['Tentmantent'], 0, datetime.date(2018, 1, 14), 'Nottingham to Grantham canal, in the trees', (52.91715, -1.019)]
GC6Z8EH:[['chilli.monster'], 0, datetime.date(2017, 2, 12), 'Sword in the Stone', (52.9161, -1.10893)]
GCA8ENQ:[['Kev + Jackie'], 0, datetime.date(2023, 5, 11), 'Russell Street', (52.77193, -1.19823)]
GCA8FWA:[['PlasmaWave'], 0, datetime.date(2023, 5, 12), 'Walkies #4', (52.76507, -1.19063)]
GC1QZB8:[['RoPeHe'], 1, datetime.date(2009, 5, 5), 'West Leake Hills', (52.85205, -1.21517)]
GC9YQWH:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'holwell wander final stop!', (52.80508, -0.90153)]
GC8WBTF:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 7, 11), 'Traffic', (52.833, -1.22193)]
GC57DQW:[['PlasmaWave'], 0, datetime.date(2014, 6, 23), 'GTB #4...Close to 200', (52.728, -1.02123)]
GC8X843:[['chilli.monster'], 0, datetime.date(2020, 8, 23), 'Blocked', (52.90928, -1.13753)]
GC9AAXN:[['KaosCL'], 0, datetime.date(2021, 5, 9), "N 52° 46.825' W 1° 12.410'", (52.75863, -1.21975)]
GC84GCA:[['NottsWalker'], 0, datetime.date(2019, 3, 12), 'WLH#17a - In memory of ...', (52.83708, -1.22137)]
GCA8HXJ:[['Kev + Jackie'], 0, datetime.date(2023, 5, 12), 'Chapman Street', (52.77343, -1.20077)]
GC6EG35:[['PlasmaWave'], 0, datetime.date(2016, 4, 11), 'Church Micro 9396....Ratcliffe on the Wreake', (52.72488, -1.06847)]
GC8KHTP:[['Spire67', 'PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2020, 2, 29), 'EMA Flight Path', (52.81038, -1.22195)]
GC38D3B:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#6 - Crownend Wood', (52.85552, -1.21432)]
GC97VMY:[['PlasmaWave'], 0, datetime.date(2021, 3, 29), 'GET a second', (52.91907, -1.09473)]
GC38D13:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#2 - Wossock Lane', (52.84125, -1.22088)]
GC38D1T:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#3 - Trolls Bridge', (52.84352, -1.22057)]
GC6EG42:[['PlasmaWave'], 0, datetime.date(2016, 4, 11), 'Church Micro 9395....Rearsby', (52.72533, -1.03648)]
GC6NC1F:[['PlasmaWave', 'BOB6661'], 0, datetime.date(2016, 7, 15), 'VS #747 Gotham', (52.86838, -1.206)]
GC38D2N:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#4 - Pipeline', (52.84637, -1.21972)]
GC97VR6:[['Grumpiest Horse'], 0, datetime.date(2021, 3, 29), 'GET seventeen', (52.9182, -1.10458)]
GCA9BG0:[['Spire67', 'Twenty4Seven'], 0, datetime.date(2023, 6, 6), 'A brief history of West Leake', (52.83, -1.224)]
GCAHE0Y:[['Kev + Jackie'], 0, datetime.date(2023, 12, 25), 'The Crazy Christmas Elves - Christmas Potatoes', (52.76773, -1.19662)]
GC38D0K:[['jayjaybee8'], 0, datetime.date(2011, 12, 10), 'WLH#1 - Dark Lane', (52.83912, -1.22242)]
GCAQVN5:[['PlasmaWave'], 0, datetime.date(2024, 6, 30), 'What’s in a name?', (52.8993, -1.1653)]
GC7VFG4:[['mart41', 'PlasmaWave'], 0, datetime.date(2019, 1, 24), 'Boris Belvoir Beaver Teaser', (52.91333, -0.99308)]
GC4JZ35:[['PlasmaWave'], 1, datetime.date(2013, 8, 19), 'Church Micro 4128...Loughborough', (52.77405, -1.20337)]
GC1RMTM:[['DickyTraveller'], 1, datetime.date(2009, 5, 25), 'THE WREAKE VALLEY Rural Bliss 4', (52.75682, -0.93837)]
GC8KKGG:[['Spire67', 'PlasmaWave'], 0, datetime.date(2020, 2, 24), 'Village Hall Series #699 - Cropwell Bishop', (52.91275, -0.99045)]
GCAJ9QZ:[['longwhatton34'], 0, datetime.date(2024, 2, 3), 'Charnwood Water', (52.7628, -1.19142)]
GC6THG9:[['mart41'], 0, datetime.date(2016, 10, 9), '#2 Moss digs in!', (52.92132, -1.03758)]
GC6RXVF:[['PlasmaWave', 'BOB6661'], 1, datetime.date(2016, 9, 15), 'You Shell Not Be Moved', (52.72497, -1.03275)]
GC2T6Y5:[['Fingolfin_UK'], 0, datetime.date(2011, 5, 7), 'The somloci trail #13 - Charnwood Water #3 (Bonus)', (52.76192, -1.19405)]
GC2T47A:[['Fingolfin_UK'], 0, datetime.date(2011, 5, 7), 'The somloci trail #11 - Charnwood Water #1', (52.76112, -1.18963)]
GC6THKJ:[['chilli.monster'], 0, datetime.date(2016, 10, 9), '#7 Tuckerific!', (52.92185, -1.04195)]
GC9W7JP:[['Spire67', 'Twenty4Seven'], 0, datetime.date(2022, 7, 15), 'Nottingham 2022 A-Z - C is for Canal', (52.9225, -1.06185)]
GCA3T7Y:[['PlasmaWave'], 0, datetime.date(2023, 2, 19), 'Ding Ding Ding', (52.91127, -1.13715)]
GC97V68:[['Spire67'], 0, datetime.date(2021, 3, 29), 'Gamston,Edwalton,Tollerton...GET ONE', (52.92025, -1.09675)]
GC4YB76:[['PlasmaWave'], 0, datetime.date(2014, 2, 9), 'Sneaky Leake: A Surprise Package', (52.82363, -1.22573)]
GCAWNZB:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2024, 8, 20), 'The View of Golden Fields', (52.86923, -1.2071)]
GC378A3:[['Lord & Lady Boogie'], 0, datetime.date(2011, 11, 6), 'Soar Valley View #2', (52.80838, -1.22435)]
GCAMBAZ:[['Spire67', 'PlasmaWave'], 0, datetime.date(2024, 3, 26), 'WOODY WOOD PECKER #1', (52.89373, -1.1776)]
GC840W3:[['PlasmaWave'], 0, datetime.date(2019, 3, 23), 'Village Hall Series #373 - Hose', (52.8564, -0.90475)]
GC4XD3X:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2014, 2, 3), 'Humble Pie #1: Humble Beginnings', (52.72367, -1.08123)]
GC74GPE:[['chilli.monster'], 0, datetime.date(2017, 5, 17), '40yrs of Star Wars - Princess Leia', (52.90128, -1.16377)]
GC78WXG:[['Guiding Nutter', 'chilli.monster', 'skybluesbazza'], 0, datetime.date(2017, 7, 16), 'WB #6 - Then and Now - Boundary Road Bridge', (52.9157, -1.12313)]
GC1Y315:[['Jonovich'], 0, datetime.date(2009, 9, 2), "ROSIE'S RETURN", (52.76495, -0.92573)]
GCA8MG5:[['PlasmaWave'], 0, datetime.date(2023, 5, 16), 'The first lost duck🦆….', (52.77932, -1.2097)]
GC7KA7N:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2018, 3, 11), 'The Wofpack #1', (52.72282, -1.07073)]
GCABMKP:[['Twenty4Seven'], 0, datetime.date(2024, 6, 21), 'So You Think You Know Charnwood', (52.74975, -1.17092)]
GC7H3E2:[['Tentmantent'], 0, datetime.date(2018, 1, 14), 'Nottingham to Grantham canal, at Stragglethorpe', (52.91905, -1.01217)]
GC9YQTK:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'fire pit', (52.80117, -0.89835)]
GCAWWGW:[['Twenty4Seven', 'PlasmaWave'], 1, datetime.date(2024, 8, 23), 'Near the trees and in the leaves', (52.86683, -1.2105)]
GCAWWG4:[['Twenty4Seven', 'PlasmaWave'], 1, datetime.date(2024, 8, 23), 'A rocky situation', (52.86833, -1.20927)]
GCA93AD:[['Spire67', 'PlasmaWave', 'Twenty4Seven'], 1, datetime.date(2023, 6, 7), 'The SKWRURPB not the TKEFT/TPHAEUGS', (52.9265, -1.1345)]
GCAK1Q6:[['sazblondie52'], 0, datetime.date(2024, 2, 4), 'Sileby road', (52.73295, -1.13612)]
GCAP42Y:[['PlasmaWave'], 0, datetime.date(2024, 4, 13), 'City View 5 - From the East', (52.92212, -1.09155)]
GC69N4R:[['emmakeeling', 'Spire67', 'KaosCL'], 0, datetime.date(2016, 2, 29), 'Leap Day 1', (52.92122, -1.09907)]
GC6AE27:[['DrumTooT'], 0, datetime.date(2016, 1, 31), '10. Bonus. R2D2 Where are you?', (52.9129, -1.13667)]
GC6VDRR:[['chilli.monster'], 0, datetime.date(2016, 10, 16), '#10 Algebrador!', (52.92315, -1.03958)]
GC8K5YE:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 2, 12), 'Hungary Lane - Power Station', (52.82272, -1.2278)]
GC4JQ8V:[['lavaflow'], 0, datetime.date(2013, 8, 17), 'Soar Valley Walk #2', (52.7971, -1.2222)]
GC7P14Z:[['Cotgrave_Man'], 0, datetime.date(2018, 6, 18), '#6a Sneaky Scamp', (52.92327, -1.041)]
GC5QKF2:[['DaffyD1uk', 'BalooCrew', 'KaosCL', 'BigLynx'], 0, datetime.date(2015, 4, 4), 'Raft race', (52.76073, -1.19245)]
GC9JBYZ:[['Kev + Jackie'], 0, datetime.date(2021, 11, 14), 'GET eighteen (and come of age)', (52.9209, -1.10288)]
GC9B62E:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 17), 'A numbers game_BODMAS/PEDAMS', (52.76238, -1.2446)]
GC7HM4P:[['PlasmaWave'], 0, datetime.date(2018, 1, 29), 'Hedge Your Bets...', (52.83418, -1.22753)]
GC9B643:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 17), 'A numbers game_number fill', (52.76665, -1.21363)]
GC9B5Z9:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 17), 'A numbers game_crossword', (52.75785, -1.22735)]
GC6DTD0:[['BOB6661'], 0, datetime.date(2016, 3, 21), 'Golf or Fishing?', (52.72138, -1.05893)]
GC2T66Z:[['Fingolfin_UK'], 0, datetime.date(2011, 5, 7), 'The somloci trail #12 - Charnwood Water #2', (52.75888, -1.19125)]
GCATBDJ:[['FiddleCath67', 'Spire67'], 0, datetime.date(2024, 6, 26), 'WOODY WOOD PECKER #2A', (52.89432, -1.18062)]
GC6DW7T:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'R & B #2 Rearsby and Back', (52.72167, -1.04558)]
GC6Z7B9:[['PlasmaWave', 'Spire67'], 0, datetime.date(2017, 1, 19), 'Sidetracked -set in concrete', (52.9058, -1.1585)]
GC7GPYH:[['Lunatuck'], 0, datetime.date(2018, 1, 8), "It's a grand view from here", (52.91157, -1.14433)]
GC97EK3:[['Aladdin Sane'], 1, datetime.date(2021, 3, 29), 'Bonus Adventure Lab Tucker', (52.92447, -1.04388)]
GCAE7Q5:[['white star', 'Cheka990'], 0, datetime.date(2023, 9, 17), 'Bring it on.', (52.92315, -1.09227)]
GC7F1JF:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2017, 12, 25), 'Another Christmas Puzzle', (52.92438, -1.04287)]
GC2TKRR:[['jayjaybee8'], 0, datetime.date(2011, 5, 7), 'The somloci trail #15 - Lánchíd', (52.76245, -1.19672)]
GC8A23B:[['Grumpiest Horse', 'PlasmaWave'], 0, datetime.date(2019, 6, 27), 'The dead centre of town...', (52.91347, -1.13903)]
GCA8WPB:[['DBH5', 'SDH11', 'PlasmaWave'], 0, datetime.date(2023, 5, 20), 'Not another lost duck!?!', (52.78537, -1.21772)]
GC5G0XX:[['PlasmaWave'], 0, datetime.date(2014, 11, 16), "St Paul's West Bridgford Church Micro 6640", (52.91458, -1.1358)]
GC643G8:[['DaffyD1uk'], 0, datetime.date(2015, 9, 30), "Lola's Geocache", (52.73505, -1.14705)]
GC7EVRA:[['Kev + Jackie'], 0, datetime.date(2017, 11, 20), 'The old Mill', (52.72802, -1.1235)]
GC6DW6C:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'R & B #1 Rearsby and Back', (52.72082, -1.0498)]
GCARXYX:[['Kev + Jackie'], 0, datetime.date(2024, 6, 21), 'QWEST - Witches Gate', (52.74478, -1.17013)]
GC8ZM36:[['Twenty4Seven'], 0, datetime.date(2020, 9, 20), 'Loughborough Heritage Tour - Adventure Lab Bonus', (52.76903, -1.21173)]
GC1H6G1:[['RoPeHe'], 1, datetime.date(2008, 10, 13), 'Johnny Cache 1', (52.7902, -1.22147)]
GC9HJ21:[['FiddleCath67', 'PlasmaWave', 'Twenty4Seven', 'NottsWalker'], 0, datetime.date(2021, 11, 14), 'Spire Run Tree Climb 2 - Barking Up The Wrong Tree', (52.90527, -1.16223)]
GC6618G:[['lavaflow'], 0, datetime.date(2015, 10, 31), 'Attack Warning RED - Melton Mowbray ROC', (52.78752, -0.90135)]
GC6YX4H:[['PlasmaWave'], 0, datetime.date(2017, 1, 7), 'OLMIAC! #2', (52.9225, -1.10282)]
GC66Q2M:[['PlasmaWave'], 0, datetime.date(2015, 11, 14), 'Welcome to Loughborough', (52.7573, -1.19162)]
GC6DW9Y:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'R & B #3 Rearsby and Back', (52.72087, -1.04037)]
GCA8MGP:[['Kev + Jackie'], 0, datetime.date(2023, 5, 16), 'The lost baby duck…🐣', (52.78207, -1.21675)]
GC7HPPC:[['PlasmaWave'], 0, datetime.date(2018, 2, 4), 'Hedge Your Bets 2', (52.83483, -1.22978)]
GC6YX4E:[['PlasmaWave'], 0, datetime.date(2017, 1, 7), 'OK Lets make it a Circuit! #1', (52.92317, -1.10067)]
GC9B618:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 17), 'A numbers game_equations_', (52.78345, -1.17985)]
GC6MQT4:[['skybluesbazza', 'Guiding Nutter'], 0, datetime.date(2016, 7, 3), 'Another bolt', (52.9135, -1.14253)]
GC9YQT7:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'tea time maybe', (52.79582, -0.89597)]
GC6YX57:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #3', (52.92213, -1.10778)]
GC4Y15T:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2014, 2, 3), 'Blackberry Pie #4: Pick Your Own', (52.72142, -1.09215)]
GC7BMK0:[['Spire67', 'PlasmaWave'], 0, datetime.date(2017, 8, 31), 'Pandamonium', (52.91862, -1.12527)]
GCAFFC1:[['Aladdin Sane', 'PlasmaWave'], 1, datetime.date(2023, 10, 22), 'Spire Run Tree Climb 1 - Branching Out', (52.90502, -1.16462)]
GCA8MHH:[['Kev + Jackie'], 0, datetime.date(2023, 5, 16), 'The big lost duck…🦆', (52.77985, -1.2162)]
GC8FYRH:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 11, 18), 'Landcroft Lane - Green House', (52.8316, -1.23128)]
GC6YYRZ:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #4', (52.92188, -1.11038)]
GC82260:[['Spire67', 'Lunatuck', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2019, 1, 4), 'Nottingham to Grantham Canal - The Holey Tree', (52.92157, -1.0084)]
GC563CM:[['KaosCL', 'BigLynx'], 0, datetime.date(2014, 6, 2), 'Liar,Liar Pants on Fire!', (52.77843, -1.21537)]
GC4XBQ4:[['PlasmaWave'], 0, datetime.date(2014, 3, 8), 'Church Micro 4861...Clifton', (52.89692, -1.18078)]
GC80JRD:[['PlasmaWave'], 0, datetime.date(2018, 11, 24), 'Village Hall Series #263 - Mountsorrel', (52.7298, -1.13587)]
GC8H2B5:[['PlasmaWave'], 0, datetime.date(2019, 12, 25), 'Landcroft Lane - Unusual Stile', (52.8296, -1.23215)]
GC6Z787:[['NottsWalker', 'PlasmaWave', 'mart41', 'chilli.monster'], 0, datetime.date(2017, 1, 15), 'Sidetracked -echoes of the past', (52.90855, -1.15812)]
GC6YVFR:[['Grumpiest Horse'], 1, datetime.date(2017, 1, 7), 'DYBN! #12', (52.92437, -1.09903)]
GC9HJ23:[['FiddleCath67', 'PlasmaWave', 'Twenty4Seven', 'Aladdin Sane', 'NottsWalker'], 0, datetime.date(2021, 11, 14), 'Spire Run Tree Climb 3 - A Bird In The Hand', (52.90737, -1.1614)]
GC6Z8BZ:[['PlasmaWave', 'longwhatton34', 'Kev + Jackie'], 1, datetime.date(2017, 1, 20), 'Bookworm V', (52.77082, -1.20958)]
GC4M0Z2:[['BalooCrew', 'batesandlaw'], 0, datetime.date(2013, 8, 29), 'Loughborough Colleges - A Tribute', (52.76997, -1.2145)]
GC6HGA6:[['longwhatton34'], 0, datetime.date(2016, 5, 19), 'Church Micro 9549...Mountsorrel - St Peter', (52.7306, -1.14062)]
GC8ZQJ2:[['PlasmaWave'], 0, datetime.date(2020, 9, 10), 'Phoenix', (52.83558, -1.23193)]
GC9GKQ8:[['PlasmaWave'], 0, datetime.date(2021, 9, 24), 'MCU 12: Giant-Man', (52.75313, -0.93277)]
GC9F2DH:[['3dartdonna'], 0, datetime.date(2021, 9, 7), '#LestWeForgetThem 009 - Loughborough - Major Lloyd', (52.75955, -1.20262)]
GC2DH05:[['foxtrott3r'], 1, datetime.date(2010, 9, 3), 'Wilwell Cuttings', (52.9103, -1.15523)]
GC9FA29:[['KaosCL'], 0, datetime.date(2021, 9, 7), '#LestWeForgetThem 011 - Loughborough final puzzle', (52.761, -1.19588)]
GC9J612:[['mart41', 'PlasmaWave'], 0, datetime.date(2021, 11, 27), 'Round the houses', (52.91367, -1.14642)]
GC6G4R7:[['Kev + Jackie'], 0, datetime.date(2016, 4, 22), "Moonkai's Third", (52.72822, -1.1337)]
GC9BF4B:[['Kev + Jackie'], 0, datetime.date(2021, 6, 1), '#LestWeForgetThem 008 - Loughborough Cemetery POW', (52.758, -1.20408)]
GC9F8EE:[['PlasmaWave'], 0, datetime.date(2021, 9, 7), '#LestWeForgetThem 010 - Loughborough Cemetery P2', (52.76162, -1.20115)]
GC1Q1RT:[['the family bu'], 0, datetime.date(2009, 4, 15), 'Duck on the towpath', (52.9272, -1.07478)]
GC4XD5B:[['julienmel'], 0, datetime.date(2014, 2, 3), 'Humble Pie #4 - Humbly Swaying', (52.71955, -1.0878)]
GCARXYH:[['Kev + Jackie'], 0, datetime.date(2024, 6, 21), 'QWEST - The Tree', (52.74373, -1.17392)]
GC6ZDD9:[['PlasmaWave'], 0, datetime.date(2017, 1, 20), 'REALLY SideTracked - Loughborough Derby Road', (52.77658, -1.21593)]
GC7GTCP:[['chilli.monster', 'mart41'], 0, datetime.date(2018, 1, 9), 'FS#3 -Blues and twos…..', (52.91735, -1.13603)]
GC9HJ25:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 11, 14), 'Spire Run Tree Climb 4 - You Must Be Nuts', (52.9088, -1.16092)]
GCAJ7WZ:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '5) Cossington meadows', (52.72553, -1.12608)]
GC6YVF9:[['Grumpiest Horse'], 1, datetime.date(2017, 1, 7), 'DYBN! #11', (52.92515, -1.1014)]
GC46N81:[['PlasmaWave'], 0, datetime.date(2013, 3, 3), 'Church Micro 3407...Clifton', (52.89992, -1.17942)]
GCAJGBV:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2024, 3, 1), 'Virtual Reward 4.0 - Loughborough Bells', (52.76942, -1.2105)]
GC6TFHD:[['mart41'], 0, datetime.date(2016, 10, 9), '#4 Summer is here!', (52.92745, -1.04097)]
GC9YP45:[['PlasmaWave'], 0, datetime.date(2022, 8, 21), 'Without ‘Feather’ Ado!', (52.9166, -0.98133)]
GC6GKFJ:[['Treecrabs', 'KaosCL'], 0, datetime.date(2016, 5, 24), 'Greenline turns blue', (52.92032, -1.12708)]
GC6THH5:[['mart41'], 0, datetime.date(2016, 10, 9), '#5 Millie the Babe!', (52.92798, -1.0487)]
GC6HCGW:[['NottsWalker'], 0, datetime.date(2016, 5, 19), 'Church Micro 5983...Normanton on Soar', (52.80167, -1.23148)]
GC6DWBY:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'R & B #4 Rearsby and Back', (52.71803, -1.0437)]
GCA9NPV:[['jez130', 'Kev + Jackie', 'FiddleCath67', 'Mat Smith', 'lgxkls'], 0, datetime.date(2023, 6, 10), 'Normanton on Soar Chain Ferry', (52.80068, -1.23127)]
GC8M7GB:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 3, 7), 'Barton Lane', (52.88593, -1.20077)]
GC865XC:[['Spire67'], 1, datetime.date(2019, 4, 21), 'The FTF Goblin', (52.92443, -1.1085)]
GC9HJ27:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 11, 14), 'Spire Run Tree Climb 5 - Dryad', (52.90823, -1.1636)]
GC6YTXV:[['skybluesbazza', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #10', (52.92513, -1.10498)]
GC6YYT8:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #5', (52.92383, -1.1133)]
GC7P153:[['Cotgrave_Man'], 1, datetime.date(2018, 6, 18), '#4a A River runs through it', (52.92825, -1.04495)]
GC61DX8:[['skybluesbazza', 'Guiding Nutter', 'pennilane'], 0, datetime.date(2015, 8, 18), 'City view', (52.91972, -1.13142)]
GC6Z5CP:[['NottsWalker', 'PlasmaWave', 'mart41', 'chilli.monster'], 0, datetime.date(2017, 1, 15), 'All things bright and beautiful', (52.91112, -1.15807)]
GC89RRG:[['longwhatton34'], 0, datetime.date(2019, 6, 21), 'Close To Home', (52.71732, -1.04702)]
GC9GJTH:[['PlasmaWave'], 0, datetime.date(2021, 9, 22), 'MCU 11: Age of micros', (52.75435, -0.92722)]
GC7J0TW:[['PlasmaWave'], 0, datetime.date(2018, 2, 21), 'Hill', (52.83702, -1.2346)]
GCAJ7WJ:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '6) Rivers edge', (52.72373, -1.12258)]
GC68N01:[['TechTooT'], 0, datetime.date(2015, 12, 29), '5. Star Wars Box set', (52.91335, -1.15238)]
GC6DWEP:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'R & B #5 Rearsby and Back', (52.71715, -1.04972)]
GC6YYTF:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #6', (52.92348, -1.11642)]
GC6AE0F:[['NottsWalker', 'PlasmaWave'], 0, datetime.date(2016, 1, 31), '7. Use the Schwartz!', (52.91717, -1.1249)]
GC94CCK:[['PlasmaWave'], 0, datetime.date(2021, 4, 23), 'CMRL 10: Douglas', (52.929, -1.05383)]
GC696DP:[['NottsWalker'], 1, datetime.date(2016, 1, 7), '1. Your weapons.... you will need them!', (52.91513, -1.15383)]
GC8KHTX:[['PlasmaWave', 'Spire67', 'Twenty4Seven'], 0, datetime.date(2020, 2, 28), 'VS #714 Normanton on Soar', (52.80265, -1.2333)]
GC8K5XJ:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2020, 2, 11), 'Landcroft Lane - Former Tall Perennial', (52.82962, -1.2363)]
GC61EYP:[['pennilane'], 0, datetime.date(2015, 8, 18), 'City view 2 - Tennis Rackets and a Big Cigar?', (52.9229, -1.12072)]
GC739P7:[['PlasmaWave'], 0, datetime.date(2017, 4, 6), 'REALLY SideTracked - Hathern', (52.80622, -1.23463)]
GC8K5YP:[['Twenty4Seven', 'Spire67', 'PlasmaWave'], 0, datetime.date(2020, 2, 13), 'Hungary Lane - Fields Beyond', (52.82207, -1.23685)]
GC7P3QR:[['PlasmaWave', 'NottsWalker', 'Lunatuck'], 0, datetime.date(2018, 5, 3), 'Luna', (52.92238, -0.99763)]
GCAPX1K:[['Twenty4Seven'], 0, datetime.date(2024, 4, 29), 'Oh! Not another film cannister', (52.90302, -1.17693)]
GC9HJ3M:[['PlasmaWave', 'Twenty4Seven', 'NottsWalker'], 0, datetime.date(2021, 11, 14), 'Spire Run Tree Climb Plus - Amazing Cone', (52.9102, -1.162)]
GC9YQRM:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'a wander to holwell', (52.79037, -0.89292)]
GC94CCR:[['chilli.monster'], 0, datetime.date(2021, 1, 1), 'CMRL 9: Donald', (52.92937, -1.0515)]
GC6HGA9:[['Kev + Jackie'], 0, datetime.date(2016, 5, 19), 'Church Micro 9550...Mountsorrel - Christ Church', (52.72815, -1.14158)]
GC7TTMM:[['chilli.monster'], 0, datetime.date(2018, 7, 22), 'James Blunt Puzzle Cache', (52.92868, -1.0855)]
GCARXY9:[['Kev + Jackie'], 0, datetime.date(2024, 6, 21), 'QWEST - Cradock Drive', (52.74223, -1.17632)]
GC74GMC:[['Spire67'], 0, datetime.date(2017, 5, 17), "40 yrs of Star Wars - There's always a bigger fish", (52.9222, -1.12852)]
GC7JEBX:[['PlasmaWave'], 0, datetime.date(2018, 2, 21), 'Scotland Farm', (52.83822, -1.23598)]
GCA8VZM:[['longwhatton34', 'PlasmaWave', 'Kev + Jackie', 'SDH11', 'DBH5'], 0, datetime.date(2023, 5, 20), 'Easy Walk #2', (52.75332, -1.19517)]
GCAJ7WE:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '7) Hula Hula', (52.72233, -1.12185)]
GC6AB58:[['GizmoTheExplorer'], 0, datetime.date(2016, 1, 31), '3. A galaxy far far away', (52.9214, -1.14438)]
GC9BCVB:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 6, 1), '#LestWeForgetThem 006 - Loughborough Cemetery P.1', (52.75563, -1.19878)]
GCAJ7XB:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '4) Truck stop', (52.72342, -1.1272)]
GC82265:[['Lunatuck', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2019, 1, 4), 'Nottingham to Grantham Canal-The Metal begins', (52.92462, -1.00357)]
GC9EWRR:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 8, 10), "Josh's Cache", (52.79068, -1.23022)]
GC6DXEY:[['Sarasdor'], 0, datetime.date(2016, 3, 22), 'Spectator bench', (52.71548, -1.05975)]
GC9B608:[['HPRH'], 0, datetime.date(2021, 5, 17), 'Jog on_Ivanhoe Way', (52.77613, -1.2207)]
GC6VD0N:[['james@bunny'], 0, datetime.date(2016, 10, 15), 'SPANKSY', (52.86012, -1.22767)]
GC4V9PF:[['stuarthowe11'], 0, datetime.date(2013, 12, 15), 'Church Micro 4733...Quorn - Baptist', (52.74082, -1.17548)]
GC8KFYY:[['Twenty4Seven', 'Spire67', 'PlasmaWave', 'ladyxtal'], 0, datetime.date(2020, 2, 27), 'REALLY SideTracked - Hathern Station', (52.81132, -1.23753)]
GC56BR7:[['Grumpiest Horse'], 0, datetime.date(2014, 9, 1), 'Zebedee', (52.78467, -1.2271)]
GC6A7TZ:[['chilli.monster'], 0, datetime.date(2016, 1, 31), '9. You came in that? You’re braver than I thought!', (52.91545, -1.13123)]
GC4K4M7:[['PlasmaWave'], 0, datetime.date(2013, 8, 22), 'Church Micro 4160...Loughborough-St Peter', (52.77315, -1.21855)]
GC815PY:[['longwhatton34'], 0, datetime.date(2018, 12, 9), 'REALLY SideTracked - Cossington Gate', (52.71745, -1.0973)]
GC70CHC:[['PlasmaWave'], 0, datetime.date(2017, 2, 12), 'Scalford Hide & Seek 2', (52.82387, -0.8823)]
GC5M3JT:[['Kev + Jackie'], 0, datetime.date(2015, 2, 7), 'Mirkwood Wander: Bag End', (52.8726, -1.21922)]
GC9WFQ3:[['PlasmaWave'], 0, datetime.date(2022, 6, 28), 'Lake side view', (52.9235, -0.99597)]
GC5Z5RM:[['Spire67'], 0, datetime.date(2015, 7, 12), 'Silverdale #7 Tramway Capend', (52.91187, -1.16208)]
GC9BF3E:[['PlasmaWave', 'Twenty4Seven', 'KaosCL'], 0, datetime.date(2021, 6, 1), '#LestWeForgetThem 007 - Loughborough Hindoostan', (52.75665, -1.2016)]
GC7WV4F:[['Cotgrave_Man'], 0, datetime.date(2018, 8, 30), 'Tree Race', (52.92468, -1.00092)]
GC6YTXK:[['skybluesbazza', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #9', (52.92697, -1.109)]
GC9YQRG:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), '4th on the way to holwel', (52.78788, -0.89178)]
GCAGV2E:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2023, 11, 26), 'a good call', (52.80428, -1.23668)]
GC6YYTJ:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #7', (52.92505, -1.1194)]
GC6MJ15:[['PlasmaWave'], 0, datetime.date(2016, 7, 1), 'Silverdale #8 Nottingham express fairham Brooke', (52.91107, -1.16438)]
GC68F1A:[['TechTooT'], 0, datetime.date(2015, 12, 23), '4. These are the droids you are looking for!', (52.92163, -1.15988)]
GC8GPTA:[['Spire67', 'PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 12, 22), 'Landcroft Lane - Mighty Perennial', (52.82945, -1.23932)]
GC6AC7W:[['chilli.monster'], 0, datetime.date(2016, 1, 31), '8. Let the Wookiee win', (52.91895, -1.13417)]
GC99ATC:[['BOB6661'], 0, datetime.date(2021, 5, 6), 'one.two.three', (52.75645, -1.22208)]
GCAJWJP:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2024, 2, 3), 'Sileby Mill bonus', (52.72305, -1.13037)]
GC99V1F:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 6), 'three.one.two', (52.7812, -1.21202)]
GC9FB4C:[['Kev + Jackie'], 0, datetime.date(2021, 8, 24), 'MCU 10: Guardians of the Cache', (52.75505, -0.92048)]
GC99V0W:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2021, 5, 6), 'two.three.one', (52.7651, -1.24645)]
GCAJ7WC:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '8) Boggy end', (52.72075, -1.12152)]
GC83BPY:[['Eviepops'], 0, datetime.date(2019, 2, 21), 'CMRL 8: Duck', (52.9316, -1.05367)]
GC8B2J7:[['PlasmaWave', 'Spire67'], 0, datetime.date(2019, 7, 24), 'No place like home', (52.71448, -1.04762)]
GC36WWB:[['jayjaybee8'], 1, datetime.date(2011, 10, 30), 'Hathern Trail No.12: Gate closed but horse bolted?', (52.79768, -1.23592)]
GC6HGAB:[['Kev + Jackie'], 0, datetime.date(2016, 5, 19), 'Church Micro 9559...Mountsorrel - Methodist', (52.7254, -1.13992)]
GC798N7:[['KaosCL'], 1, datetime.date(2017, 11, 15), 'Fantastic Beasts', (52.92513, -1.12747)]
GC8K5YW:[['PlasmaWave', 'Spire67', 'longwhatton34', 'Twenty4Seven'], 0, datetime.date(2020, 2, 10), 'Hungary Lane - ZZZZZZZ', (52.82048, -1.24122)]
GCAJ7XE:[['Twenty4Seven', 'Aladdin Sane', 'bubblys', 'BazzaLagos', 'LandMB', 'longwhatton34', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '3) The Black Cat', (52.72163, -1.12758)]
GC5VX1T:[['Grumpiest Horse'], 1, datetime.date(2015, 5, 23), 'No. 4 White Elephant Way', (52.915, -1.15817)]
GC7JEET:[['PlasmaWave'], 0, datetime.date(2018, 2, 21), 'A Bridge to Farm....', (52.83667, -1.24012)]
GC5M3HZ:[['Kev + Jackie', 'PlasmaWave'], 0, datetime.date(2015, 2, 7), 'Mirkwood Wander: Treebeard', (52.87388, -1.22083)]
GCAZTMY:[['Kev + Jackie'], 0, datetime.date(2024, 11, 1), 'Possibly Stolen (Not Stolen) Fox Box', (52.72833, -1.15112)]
GC6EG1W:[['PlasmaWave'], 1, datetime.date(2016, 4, 29), 'Church Micro 9481....East Goscote', (52.71373, -1.05097)]
GCA7ZCQ:[['white star'], 0, datetime.date(2023, 5, 5), 'Ole Brumm', (52.92997, -1.1003)]
GC5M3MK:[['PlasmaWave', 'lavaflow'], 0, datetime.date(2015, 2, 7), 'Mirkwood Wander: Hobbit Hole', (52.86722, -1.22743)]
GC167A3:[['uk_searcher'], 0, datetime.date(2007, 9, 26), 'The Scalford Storm', (52.81743, -0.87888)]
GCAJ7W9:[['Twenty4Seven', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '9) Laurel tree corner', (52.71948, -1.12257)]
GC9B3YE:[['Kev + Jackie'], 0, datetime.date(2021, 5, 17), 'MCU 9: The Summer Sailer', (52.75568, -0.91657)]
GC3NPQW:[['Spire67'], 1, datetime.date(2012, 6, 18), 'Under The Ivy', (52.92472, -1.13032)]
GC6TGTR:[['Eviepops'], 0, datetime.date(2016, 9, 27), 'Scalford scramble', (52.80807, -0.88008)]
GC69623:[['DrumTooT', 'TechTooT'], 1, datetime.date(2016, 1, 7), '6. Happy new light year!', (52.92177, -1.14148)]
GCAJ7XG:[['Twenty4Seven', 'Aladdin Sane', 'bubblys', 'BazzaLagos', 'LandMB', 'longwhatton34', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '2) Hook a Duck', (52.7201, -1.12647)]
GC970JW:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2021, 3, 30), "No-One's Perfect", (52.8266, -1.24303)]
GC8Z03K:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 8, 29), 'Chaos from the top down', (52.80903, -1.2418)]
GC5X0Z7:[['Aladdin Sane', 'PlasmaWave'], 1, datetime.date(2015, 6, 8), 'Silverdale #5 Wicked Step Mother', (52.91517, -1.16103)]
GC9YMZ6:[['PlasmaWave'], 0, datetime.date(2022, 8, 22), 'Lost the kids in the park! Walk to holwell', (52.7792, -0.89307)]
GC798P0:[['Spire67'], 0, datetime.date(2017, 8, 3), 'WB #10 - Then and Now - Stroll through the Avenue', (52.92683, -1.12315)]
GC2BXKN:[['MOMELT'], 1, datetime.date(2010, 7, 19), 'Sysonby 1', (52.76565, -0.9042)]
GCA9WT6:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2023, 6, 28), '10', (52.91303, -1.16792)]
GC6THVB:[['PlasmaWave'], 0, datetime.date(2016, 9, 27), 'Day Light Robbery', (52.75083, -1.19955)]
GC8G0RX:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 11, 23), 'Landcroft Lane - Passing Place', (52.82932, -1.24368)]
GC7P2E7:[['stuarthowe11'], 0, datetime.date(2018, 5, 5), '衛報龍', (52.72943, -1.15915)]
GC7HGFD:[['PlasmaWave', 'Guiding Nutter', 'skybluesbazza'], 0, datetime.date(2018, 5, 6), "'Just popping to the shops....won't be long!", (52.91897, -1.15283)]
GC5VX1H:[['Grumpiest Horse'], 1, datetime.date(2015, 5, 23), 'No. 3 White Elephant Way', (52.91733, -1.15758)]
GCA8VYT:[['Kev + Jackie', 'longwhatton34', 'PlasmaWave', 'SDH11', 'DBH5'], 0, datetime.date(2023, 5, 20), 'Easy Walk #1', (52.74957, -1.19865)]
GC6YJV8:[['longwhatton34'], 1, datetime.date(2016, 12, 28), 'REALLY SideTracked - Mountsorrel Heritage', (52.72727, -1.15398)]
GCAMD9C:[['Y715UJU'], 0, datetime.date(2024, 3, 9), '15) Hydrant', (52.71977, -1.12915)]
GC8B2HV:[['pfaffabouters'], 0, datetime.date(2019, 7, 24), 'Round the bend', (52.71182, -1.0585)]
GCAJ7W6:[['Twenty4Seven', 'JM282', 'BazzaLagos', 'longwhatton34', 'LandMB', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '10) Buddleja', (52.71862, -1.12442)]
GC9VB9K:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2022, 6, 12), 'All the 8s', (52.92338, -1.14155)]
GC5V6TT:[['Kev + Jackie'], 1, datetime.date(2015, 5, 13), 'REALLY SideTracked - Quorn & Woodhouse', (52.74145, -1.186)]
GC2B5T8:[['northking'], 1, datetime.date(2010, 7, 3), 'Rugby', (52.92085, -1.1485)]
GC6YTX9:[['skybluesbazza', 'PlasmaWave', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #8', (52.93033, -1.11102)]
GCAN3G4:[['Kev + Jackie'], 0, datetime.date(2024, 4, 18), 'YOSM #0972 Cottagers Hill', (52.86377, -1.23272)]
GC7ENGF:[['PlasmaWave'], 0, datetime.date(2017, 11, 10), 'Off yer trolley, Bridgford style', (52.92412, -1.13877)]
GC78GC4:[['KaosCL'], 0, datetime.date(2017, 7, 12), 'Night at the Moovies', (52.91508, -1.11502)]
GC8M7DT:[['Guiding Nutter', 'skybluesbazza'], 0, datetime.date(2020, 7, 21), 'WB #14 Then & Now West Bridgford Bonus', (52.92017, -1.12348)]
GC69DCE:[['Grumpiest Horse'], 0, datetime.date(2016, 2, 29), 'Leap Day 13: Bridgfords Old Air Raid Shelter', (52.92832, -1.12273)]
GC6W6R6:[['PlasmaWave'], 0, datetime.date(2016, 11, 2), 'Darcy Gardens Hide', (52.7792, -0.89017)]
GCAJ7W4:[['Aladdin Sane', 'Twenty4Seven', 'Chief.Splash', 'the_dolan', 'KaosCL', 'richt2000', 'BazzaLagos', 'LandMB', 'longwhatton34', 'PlasmaWave', 'ErewashPaddler', 'MIKSUFF', 'Sooseeker', 'MonkeyMilo', 'ladyxtal'], 0, datetime.date(2024, 2, 3), '1) Metal gate', (52.71832, -1.12667)]
GC83HP3:[['Eviepops'], 0, datetime.date(2019, 2, 21), 'CMRL 7: Toby', (52.93503, -1.05705)]
GC5X9KX:[['Spire67'], 0, datetime.date(2015, 6, 10), 'Silverdale #13 V for victory', (52.91517, -1.16632)]
GC840XT:[['PlasmaWave'], 0, datetime.date(2019, 3, 23), 'Village Hall Series #374 - Harby', (52.87388, -0.89513)]
GC8GB04:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 12, 8), 'Landcroft Lane - Equestrian Dept', (52.82878, -1.24632)]
GC6YYTK:[['PlasmaWave'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #8', (52.92942, -1.1208)]
GC6MZ4W:[['KaosCL', 'PlasmaWave', 'BigLynx'], 0, datetime.date(2016, 7, 8), 'Vs #713 Sutton Bonington', (52.81835, -1.2467)]
GC5VX1B:[['Grumpiest Horse'], 1, datetime.date(2015, 5, 23), 'No. 2 White Elephant Way', (52.91928, -1.15715)]
GCAMD8Z:[['PlasmaWave'], 0, datetime.date(2024, 3, 9), '14) Fencing', (52.71827, -1.1296)]
GC42GQV:[['KaosCL'], 0, datetime.date(2012, 12, 9), "KaosCL's 1000", (52.77417, -1.22883)]
GC6PDX5:[['Guiding Nutter', 'skybluesbazza'], 0, datetime.date(2016, 7, 31), 'End of the Line', (52.92752, -1.13082)]
GC61KB5:[['3dartdonna', 'BOB6661'], 0, datetime.date(2015, 10, 28), 'FS #24 - Loughborough', (52.77208, -1.22655)]
GCAMD4T:[['PlasmaWave'], 0, datetime.date(2024, 3, 9), '11) Torchy', (52.71707, -1.12545)]
GC4Q2KE:[['Avocet Flyer'], 0, datetime.date(2013, 10, 20), 'community access', (52.92057, -1.15467)]
GC25PPY:[['Sukygoeswandering'], 0, datetime.date(2010, 5, 1), 'Lufbra Uni #1 - East Entrance', (52.76952, -1.2251)]
GC1WTGQ:[['Aladdin Sane'], 0, datetime.date(2009, 8, 8), 'Stop for a Jar at The Test Match!', (52.92895, -1.12522)]
GC4DEFF:[['PlasmaWave'], 0, datetime.date(2013, 7, 11), 'Church Micro 3926...Sutton Bonington', (52.8204, -1.24772)]
GC9WN7Z:[['chilli.monster'], 0, datetime.date(2022, 7, 31), '…the mouse hides', (52.92258, -1.14942)]
GC25PRZ:[['Sukygoeswandering'], 0, datetime.date(2010, 5, 1), 'Lufbra Uni #5 - Department of Geography', (52.76753, -1.22382)]
GC9TVG6:[['Twenty4Seven', 'Spire67', 'graceandwill'], 0, datetime.date(2022, 5, 22), 'Zouch Radial Gate', (52.80573, -1.24568)]
GC6YT1N:[['skybluesbazza', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #7', (52.93193, -1.1114)]
GC9872G:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 4, 5), 'MCU 5: The Thirsty Ranger', (52.75913, -0.90595)]
GC5ZMTW:[['Spire67'], 0, datetime.date(2015, 7, 21), 'silverdale #14 Gem,s corner point', (52.91703, -1.1655)]
GC7RGPM:[['3dartdonna'], 0, datetime.date(2018, 6, 22), 'REALLY SideTracked - Nunckley Hill Heritage', (52.72553, -1.15792)]
GC83HNM:[['Eviepops'], 0, datetime.date(2019, 2, 21), 'CMRL 6: Percy', (52.93675, -1.05822)]
GC7HGDD:[['NottsWalker'], 1, datetime.date(2018, 5, 21), 'WB #13 - Then and Now - Sir Julien Cahn', (52.92672, -1.13822)]
GC8KTVW:[['graceandwill'], 0, datetime.date(2020, 2, 23), 'Village Hall Series #697 - Cropwell Butler', (52.92657, -0.9825)]
GC4ADP5:[['the_dolan'], 0, datetime.date(2013, 4, 23), 'Church Micro 3617 Langar', (52.90452, -0.92862)]
GCAMD57:[['PlasmaWave'], 0, datetime.date(2024, 3, 9), '12) Magnatron', (52.71575, -1.12603)]
GC2KNG0:[['JohnnyBGoode'], 1, datetime.date(2010, 12, 27), 'Lufbra Uni #6a - Towers Hall', (52.76558, -1.22417)]
GC9XV8A:[['chilli.monster'], 0, datetime.date(2022, 7, 31), 'The mouse seeks…', (52.92312, -1.1519)]
GC6HCH1:[['NottsWalker'], 0, datetime.date(2016, 5, 19), 'Church Micro 9542...Sutton Bonington - Methodist', (52.81963, -1.24995)]
GC8FMWN:[['PlasmaWave'], 0, datetime.date(2019, 11, 26), 'Geodog Sam #1', (52.8822, -1.22282)]
GC6V07N:[['KaosCL'], 0, datetime.date(2016, 10, 7), 'Egerton View', (52.76522, -0.89697)]
GC8G55K:[['PlasmaWave', 'Twenty4Seven', 'Kev + Jackie'], 0, datetime.date(2019, 12, 1), 'Landcroft Lane - Half Each', (52.82757, -1.25017)]
GC6DQJV:[['lavaflow'], 0, datetime.date(2016, 3, 20), "James' Birthday Cache", (52.92793, -0.98458)]
GC8KCM1:[['PlasmaWave', 'Spire67'], 0, datetime.date(2020, 2, 16), 'On the road to see batman', (52.85048, -1.24507)]
GC6YQ52:[['skybluesbazza', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #6', (52.93305, -1.11463)]
GC9B3W4:[['Kev + Jackie'], 0, datetime.date(2021, 5, 17), 'MCU 7: Free Ironic Man', (52.75582, -0.90655)]
GC9V3M3:[['chilli.monster'], 0, datetime.date(2022, 6, 18), 'The West Bridgford Bank Heist', (52.92368, -1.13613)]
GCAW2E1:[['deltic40', 'Malhatus', 'PlasmaWave'], 0, datetime.date(2024, 9, 7), "Where's Wally - September", (52.93658, -1.08818)]
GCATPT5:[['Spire67', 'PlasmaWave'], 0, datetime.date(2024, 7, 4), 'On my way to Rushcliffe Arena', (52.92482, -1.14848)]
GC6NY1M:[['Dr_Suess'], 0, datetime.date(2016, 7, 25), 'Euro 2016 Bonus – West Germany', (52.92883, -1.11023)]
GC820KX:[['chilli.monster'], 0, datetime.date(2019, 1, 20), 'A Fine Pair # 1276 ~ Langar', (52.90368, -0.92502)]
GC25PX9:[['Sukygoeswandering'], 0, datetime.date(2010, 5, 1), "Lufbra Uni #2 - Student's Union", (52.76897, -1.22858)]
GC6KN1J:[['Spire67'], 5, datetime.date(2016, 6, 15), 'Euro 2016 – Slovakia', (52.92585, -1.13227)]
GC8F48Z:[['KaosCL'], 0, datetime.date(2019, 12, 3), 'Geodog Sam #2', (52.87407, -1.23167)]
GC6K9FY:[['PlasmaWave', 'NottsWalker'], 0, datetime.date(2016, 6, 16), 'Euro 2016 – Wales', (52.94125, -1.13228)]
GC2E938:[['rascalgaskells'], 0, datetime.date(2010, 8, 31), 'Hathern Trail No.2: "Rock-On"', (52.80298, -1.24852)]
GC2M4DN:[['PlasmaWave'], 0, datetime.date(2011, 1, 7), '"The real people" part 2', (52.92453, -0.9702)]
GC66V43:[['pennilane'], 0, datetime.date(2015, 12, 8), 'Advent 8 - The Snowman', (52.93305, -1.11768)]
GC83HNF:[['Twenty4Seven'], 0, datetime.date(2019, 2, 21), 'CMRL 5: James', (52.93837, -1.05878)]
GC754D9:[['chilli.monster'], 0, datetime.date(2017, 5, 8), 'Power 2 Da People!', (52.93667, -1.09333)]
GC6JWJP:[['Dr_Suess'], 0, datetime.date(2016, 6, 11), 'Euro 2016 – Russia', (52.91362, -1.1219)]
GC4M364:[['BalooCrew'], 0, datetime.date(2013, 8, 29), 'FAITHS FIRST', (52.77825, -1.23683)]
GC9PFRX:[['Spire67'], 1, datetime.date(2022, 3, 23), 'From detention to relaxation', (52.93027, -1.11778)]
GC8Z9T3:[['longwhatton34'], 0, datetime.date(2020, 9, 2), "Dude Where's My Cache", (52.72103, -1.15063)]
GC6M8KZ:[['white star'], 0, datetime.date(2016, 6, 27), 'Euro 2016 – Iceland', (52.93152, -1.12633)]
GC6YYTT:[['mart41'], 1, datetime.date(2017, 1, 7), 'OLMIAC! #9', (52.93285, -1.12013)]
GC8H4R1:[['batesandlaw'], 0, datetime.date(2019, 12, 23), 'MINI SideTracked - Soar Valley Garden Railway', (52.82217, -1.25205)]
GC7GYV3:[['Kev + Jackie'], 0, datetime.date(2018, 1, 9), 'Width Restriction', (52.71148, -1.11128)]
GC25PYC:[['niknrich'], 0, datetime.date(2010, 5, 1), 'Lufbra Uni #3 - Student Experience', (52.76755, -1.22868)]
GC1RYDA:[['chocolatechicks'], 1, datetime.date(2009, 5, 28), 'C is for Choo Choo Cache', (52.72273, -1.1562)]
GCAMD89:[['PlasmaWave'], 0, datetime.date(2024, 3, 9), '13) No Cycling', (52.71435, -1.127)]
GC25PXQ:[['niknrich'], 0, datetime.date(2010, 5, 1), 'Lufbra Uni #4 - Schofield', (52.76575, -1.2274)]
GCA3QTF:[['chilli.monster'], 0, datetime.date(2023, 1, 17), 'An A to Z of…West Bridgford (part 2)', (52.92545, -1.1416)]
GC4YJVQ:[['Smudger105e'], 0, datetime.date(2014, 2, 15), 'Twins Treasure 1', (52.86327, -1.24075)]
GC85HN4:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2019, 4, 3), 'I Moustache You a Question', (52.73523, -1.18608)]
GCARWD1:[['NottsWalker', 'Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2024, 11, 2), "Where's Wally - November", (52.93803, -1.08698)]
GC5VX12:[['DVBC'], 0, datetime.date(2015, 5, 23), 'No 1 White Elephant Way', (52.92377, -1.1563)]
GCA1972:[['GizmoTheExplorer'], 0, datetime.date(2022, 11, 15), 'An A to Z of…West Bridgford', (52.93398, -1.12763)]
GC73E5Z:[['jez130'], 0, datetime.date(2017, 4, 12), 'GTB #6...Trees', (52.7123, -1.11908)]
GC7HAJ3:[['Kev + Jackie'], 0, datetime.date(2018, 1, 20), 'Little Bridges # 1356 - Pasture Lane', (52.81913, -1.2531)]
GC6HGAD:[['longwhatton34'], 0, datetime.date(2016, 5, 19), 'Church Micro 9551...Rothley - Sacred Heart RC', (52.71628, -1.1377)]
GCA7RRN:[['white star'], 0, datetime.date(2023, 5, 1), 'Hooked on geocaching', (52.93093, -1.13272)]
GC32J16:[['jayjaybee8'], 0, datetime.date(2011, 8, 20), 'CKTV 2 – Trumpton', (52.872, -1.23563)]
GC6RP04:[['richt2000', 'the_dolan'], 0, datetime.date(2016, 10, 8), 'Church Micro 3663...West Bridgford - St Giles', (52.932, -1.129)]
GC8C73F:[['Spire67', 'PlasmaWave'], 0, datetime.date(2020, 3, 5), 'Church Micro 3422...West Bridgford - Holy Spirit', (52.93047, -1.13595)]
GC6HCH6:[['NottsWalker'], 0, datetime.date(2016, 5, 19), 'Church Micro 6031...Sutton Bonington - St Michael', (52.82392, -1.25393)]
GC994Y6:[['PlasmaWave'], 0, datetime.date(2021, 4, 15), 'Little Bridges # 2230 Compound 9_C2H2', (52.76948, -1.23238)]
GCATPT7:[['Spire67', 'KaosCL'], 0, datetime.date(2024, 7, 2), 'On my way to Chateau Mews', (52.9265, -1.1507)]
GC6V076:[['BOB6661'], 0, datetime.date(2016, 10, 7), 'King George Playing Fields', (52.7064, -1.04452)]
GC6YQ4Y:[['skybluesbazza', 'Guiding Nutter'], 1, datetime.date(2017, 1, 7), 'DYBN! #5', (52.93438, -1.12005)]
GC9G9YR:[['DBH5'], 0, datetime.date(2021, 9, 15), 'Countdown to Extinction', (52.77817, -1.23972)]
GC5KETH:[['BalooCrew', 'PlasmaWave', 'lavaflow'], 0, datetime.date(2015, 1, 20), 'Sink the Bismarck = but how ?', (52.73945, -1.19693)]
GC8HFN1:[['stuarthowe11'], 0, datetime.date(2020, 1, 5), 'A Fine Pair # 1412 ~ Sutton Bonington', (52.82552, -1.25498)]
GCA5C34:[['PlasmaWave'], 1, datetime.date(2023, 3, 9), 'Cluedo Adventure Lab Bonus', (52.93433, -1.12392)]
GC8BTXT:[['PlasmaWave'], 0, datetime.date(2019, 8, 10), 'REALLY SideTracked - Melton Mowbray North', (52.76838, -0.88763)]
GCAQ24Y:[['Cheka990'], 0, datetime.date(2024, 5, 4), 'If only… There was a phone box?', (52.93277, -1.13253)]
GC7ERCN:[['PlasmaWave'], 0, datetime.date(2017, 11, 13), 'Not a travel bug (2)', (52.78277, -0.87705)]
GC7EXZN:[['Kev + Jackie'], 0, datetime.date(2018, 1, 9), 'Perching Post', (52.70912, -1.11262)]
GC43Z67:[['Aladdin Sane'], 0, datetime.date(2013, 1, 7), 'Down a blind alley', (52.93653, -1.11463)]
GCAC3ZC:[['Kev + Jackie'], 0, datetime.date(2023, 8, 1), 'El Toro', (52.76588, -1.23178)]
GC77D0P:[['Guiding Nutter', 'skybluesbazza'], 0, datetime.date(2017, 6, 20), 'WB #1 - Then and Now - Three Points', (52.932, -1.1368)]
GC5CA1J:[['chilli.monster'], 0, datetime.date(2014, 9, 5), "Woody's Hole", (52.93025, -1.14358)]
GC7ERBY:[['PlasmaWave'], 0, datetime.date(2017, 11, 13), 'Not a travel bug (1)', (52.7783, -0.8791)]
GCA6MQH:[['white star'], 0, datetime.date(2023, 4, 1), 'DYBN4.5', (52.93545, -1.12228)]
GC5VX95:[['Grumpiest Horse'], 1, datetime.date(2015, 5, 23), 'White Elephant Keepers Cottage', (52.92667, -1.15575)]
GC3V0CN:[['KaosCL', 'BigLynx'], 0, datetime.date(2012, 8, 21), 'Atomic "Family"', (52.78495, -1.2466)]
GC2YCBM:[['RoPeHe'], 0, datetime.date(2011, 8, 18), "Bl4ck4dd3r's dog walk. #2 Clifton Grove", (52.91308, -1.18853)]
GC84PAR:[['Spire67', 'PlasmaWave'], 0, datetime.date(2019, 3, 22), "VS#1621 Radcliffe on Trent - St Mary's", (52.93923, -1.02107)]
GC73JKW:[['mart41', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 5 Orpheus May Clinker', (52.94008, -1.09242)]
GC7EY1A:[['Kev + Jackie'], 0, datetime.date(2018, 1, 9), 'Log Me Do', (52.70813, -1.1103)]
GC73NV6:[['KaosCL', 'BigLynx'], 0, datetime.date(2017, 4, 11), 'Ants in your Pants.', (52.92968, -1.14698)]
GC6ZTJK:[['PlasmaWave', 'mart41', 'KaosCL', 'BigLynx'], 0, datetime.date(2017, 1, 30), 'POWER PLANT', (52.86613, -1.24405)]
GC4Z0FT:[['lavaflow'], 0, datetime.date(2014, 2, 23), 'Twinkle Twinkle Little Cub', (52.93847, -1.1073)]
GC7ZGAE:[['white star'], 0, datetime.date(2018, 10, 26), 'The long walk home', (52.93677, -1.11805)]
GC49Q7W:[['BalooCrew'], 0, datetime.date(2013, 5, 22), 'Are we nearly there yet 1?', (52.87857, -0.8865)]
GC7928W:[['Spire67'], 0, datetime.date(2017, 7, 19), "WB #8 - Then and Now - Jesse Boot's - Summer House", (52.93177, -1.14093)]
GCARA81:[['Twenty4Seven', 'Spire67', 'PlasmaWave'], 0, datetime.date(2024, 7, 9), 'You wait all day then 3 come along together!', (52.88853, -1.22552)]
GC83HNB:[['Eviepops'], 0, datetime.date(2019, 2, 21), 'CMRL 4: Gordon', (52.9422, -1.05833)]
GC9VAYK:[['PlasmaWave', 'Spire67', 'Cheka990'], 0, datetime.date(2022, 5, 30), 'School Run', (52.9354, -1.12647)]
GC4WDZC:[['BalooCrew', 'PlasmaWave', 'Avocet Flyer'], 0, datetime.date(2014, 1, 19), 'Church Micro 4862...Barton-In-Fabis', (52.8898, -1.2242)]
GC83X9Q:[['Spire67', 'PlasmaWave'], 0, datetime.date(2019, 3, 28), 'Furry friends', (52.9422, -1.05405)]
GC5YT95:[['KaosCL'], 17, datetime.date(2015, 7, 11), 'An Exciting Image?', (52.78, -1.245)]
GC8THH8:[['stuarthowe11'], 0, datetime.date(2020, 6, 10), 'Caching Line', (52.73735, -1.19833)]
GC7EVZA:[['longwhatton34'], 0, datetime.date(2017, 11, 18), 'Little Lake View', (52.7065, -1.10438)]
GC73JHC:[['PlasmaWave'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 2 Blackbeard', (52.93942, -1.10423)]
GC7EVZZ:[['longwhatton34'], 0, datetime.date(2017, 11, 18), 'Junction Jetty', (52.70692, -1.10783)]
GCANJJG:[['lysajsilver'], 0, datetime.date(2024, 3, 30), 'Swan Song Cache', (52.78095, -0.87563)]
GCA9C3A:[['Spire67', 'Twenty4Seven'], 1, datetime.date(2023, 6, 11), 'A brief history of Kingston-upon-Soar', (52.84473, -1.25518)]
GC2AACP:[['northking', 'PlasmaWave'], 1, datetime.date(2010, 6, 17), 'Leics - Notts Border', (52.80452, -1.25608)]
GC7EX6P:[['Kev + Jackie'], 0, datetime.date(2018, 1, 9), 'Steel Stud', (52.70775, -1.11378)]
GC73JMK:[['mart41', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 6 Evil Rocky Red Hat', (52.9413, -1.09002)]
GC73JFJ:[['PlasmaWave'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 1 Heron and Bluebirds Ahoy!', (52.93858, -1.11152)]
GC73JK9:[['mart41', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 4 Ship Ahoy!', (52.94082, -1.0957)]
GCABMP9:[['Spire67', 'PlasmaWave'], 1, datetime.date(2023, 8, 3), 'An A to Z of ... Clifton', (52.91438, -1.18892)]
GC7VEX7:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2018, 8, 30), 'Thrumpton 2', (52.87275, -1.2414)]
GC5TMEG:[['PlasmaWave', 'Avocet Flyer', 'chilli.monster'], 0, datetime.date(2015, 5, 6), 'Locked in Love', (52.92963, -1.15155)]
GC73JJ9:[['mart41', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 3 Jim Lad!', (52.94072, -1.09822)]
GC74JF2:[['Spire67', 'DrunkNinjaHippo'], 0, datetime.date(2017, 5, 17), '40yrs of Star Wars - Who said what?', (52.9315, -1.14507)]
GC16894:[['Black Five'], 1, datetime.date(2007, 9, 27), 'She Went of Her Own Accord', (52.84398, -1.25638)]
GC6HCHB:[['NottsWalker'], 0, datetime.date(2016, 5, 19), 'Church Micro 6030...Kingston on Soar', (52.84468, -1.25618)]
GC5X9VW:[['PlasmaWave', 'Grumpiest Horse', 'Aladdin Sane', 'NottsWalker', 'the_dolan'], 0, datetime.date(2015, 9, 17), 'Love Boat', (52.93325, -1.13925)]
GC8KFYD:[['Twenty4Seven', 'PlasmaWave'], 0, datetime.date(2020, 2, 20), 'REALLY SideTracked - Kegworth', (52.8353, -1.2584)]
GC7EQ5T:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2017, 11, 12), 'Postcode Cache 103 – Lima Echo 12', (52.82717, -1.25935)]
GC7EXV9:[['sezzy1973'], 0, datetime.date(2017, 11, 18), 'Grow your own.', (52.80795, -0.86357)]
GC7TQP6:[['PlasmaWave'], 0, datetime.date(2019, 1, 25), 'VS#1480 Kingston-on-Soar', (52.84435, -1.25633)]
GCA6MQE:[['white star'], 0, datetime.date(2023, 4, 1), 'DYBN4 reborn', (52.93692, -1.1237)]
GC8ZB2V:[['longwhatton34'], 0, datetime.date(2020, 9, 2), 'Tango and Cache', (52.7157, -1.15052)]
GC2CMDJ:[['RoPeHe'], 0, datetime.date(2010, 8, 2), 'August 2010', (52.9164, -1.18597)]
GC84DEC:[['PlasmaWave', 'Spire67'], 0, datetime.date(2019, 3, 11), 'Radcliffe Totem Poles #3 - Canadian Estate', (52.9428, -1.04583)]
GC7EVZ1:[['longwhatton34'], 0, datetime.date(2017, 11, 18), 'Ash Cache', (52.7053, -1.10203)]
GC7VYJT:[['BiggyEeyore'], 0, datetime.date(2018, 8, 16), 'Happy Birthday Biggy!', (52.92417, -1.16837)]
GC8Y30Y:[['PlasmaWave', 'Kev + Jackie'], 0, datetime.date(2020, 8, 11), "Loki's Locker", (52.70305, -1.07605)]
GCAA6Q4:[['PlasmaWave', 'Kev + Jackie'], 1, datetime.date(2023, 6, 19), 'Easy Walk #3', (52.73922, -1.20367)]
GC63F0Q:[['Spire67'], 0, datetime.date(2015, 9, 30), 'V-Nottinghamshire A-Z.........VICTORIA EMBANKMENT', (52.93253, -1.14308)]
GC7VEXK:[['NottsWalker', 'mart41', 'Aladdin Sane'], 2, datetime.date(2018, 8, 30), 'Thrumpton 3', (52.87152, -1.24325)]
GC7ANV9:[['BOB6661'], 0, datetime.date(2017, 11, 7), 'Church Micro 5998...Hathern - Baptist', (52.79293, -1.2538)]
GC5RD3X:[['Guiding Nutter', 'skybluesbazza', 'NottsWalker'], 0, datetime.date(2015, 4, 15), 'Ankle Biter', (52.9314, -1.1479)]
GC7VEWM:[['Twenty4Seven'], 0, datetime.date(2018, 8, 30), 'A Fine Pair # 1146 ~ Thrumpton', (52.87497, -1.24072)]
GC73JN7:[['mart41', 'PlasmaWave', 'NottsWalker'], 0, datetime.date(2017, 5, 1), 'Trent Pirates 7 Billy Belly Bones', (52.94245, -1.08825)]
GC2R3KW:[['JohnnyBGoode'], 1, datetime.date(2011, 3, 29), 'Eric!', (52.72588, -1.17912)]
GC5EYMZ:[['Team-Triplet'], 0, datetime.date(2014, 10, 19), 'Watery Woodbrook - Moat Road', (52.75492, -1.22552)]
GC7VYKY:[['PlasmaWave', 'NottsWalker', 'Cotgrave_Man'], 0, datetime.date(2018, 8, 18), "Kiss me and I'll tell you.", (52.91428, -1.19132)]
GC1M9ZH:[['rascalgaskells'], 4, datetime.date(2009, 2, 2), 'Lark Rise to Candlemas', (52.74663, -1.21543)]
GC83HMV:[['Eviepops'], 0, datetime.date(2019, 2, 21), 'CMRL 3: Henry', (52.94367, -1.05728)]
GC7EX5D:[['longwhatton34'], 0, datetime.date(2017, 11, 18), "It Isn't Ivy", (52.70632, -1.11232)]
GC6XZW0:[['PlasmaWave', 'NottsWalker'], 0, datetime.date(2016, 12, 17), "Jim's Piratical Rumbustification Cache", (52.94132, -1.10072)]
GC5MVE0:[['PlasmaWave'], 0, datetime.date(2015, 2, 15), 'D/T Challenge - A sting in the tail!', (52.93648, -1.1295)]
GC6HCGF:[['KaosCL', 'BigLynx'], 0, datetime.date(2016, 5, 19), 'Church Micro 5981...Hathern - St Peter & St Paul', (52.79725, -1.25618)]
GC8A67M:[['PlasmaWave', 'Twenty4Seven'], 0, datetime.date(2019, 7, 2), 'War Memorial #800 - Victoria Embankment Nottingham', (52.93412, -1.14765)]
GC7H5D1:[['PlasmaWave'], 0, datetime.date(2018, 5, 31), 'A Fine Pair # 997 ~ Kingston-on-Soar', (52.84468, -1.25758)]
GC49Q4A:[['BalooCrew'], 0, datetime.date(2013, 5, 22), 'The old fellow', (52.87948, -0.88367)]
GC9HT6K:[['Spire67', 'PlasmaWave'], 0, datetime.date(2021, 10, 31), 'Dewberry Hill 1', (52.94263, -1.03125)]