-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.json
1728 lines (1728 loc) · 60.2 KB
/
new.json
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
{
"success": true,
"message": null,
"messages": null,
"data": [{
"code": "BU50",
"groupname": "Hike MK Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "hikemk.org.uk",
"status": "Hosted"
}, {
"code": "AV",
"groupname": "",
"areaname": "Avon Area",
"domain": "avon-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV01",
"groupname": "Bristol Group",
"areaname": "Avon Area",
"domain": "bristolramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV02",
"groupname": "Somer Valley Group",
"areaname": "Avon Area",
"domain": "somervalleyramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV04",
"groupname": "Bath Group",
"areaname": "Avon Area",
"domain": "bathramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV05",
"groupname": "Severnside Group",
"areaname": "Avon Area",
"domain": "severnside-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV07",
"groupname": "Kingswood Group",
"areaname": "Avon Area",
"domain": "kingswoodramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV08",
"groupname": "Clevedon Group",
"areaname": "Avon Area",
"domain": "clevedonramblers.org.uk",
"status": "Hosted"
}, {
"code": "AV50",
"groupname": "Brunel Walking & Activity Group",
"areaname": "Avon Area",
"domain": "brunelwalking.org.uk",
"status": "Hosted"
}, {
"code": "BK01",
"groupname": "East Berkshire Group",
"areaname": "Berkshire Area",
"domain": "eastberksramblers.org",
"status": "Hosted"
}, {
"code": "BK02",
"groupname": "Mid Berks Group",
"areaname": "Berkshire Area",
"domain": "mbra.org.uk",
"status": "Hosted"
}, {
"code": "BK03",
"groupname": "West Berkshire Group",
"areaname": "Berkshire Area",
"domain": "wberksramblers.org.uk",
"status": "Hosted"
}, {
"code": "BK05",
"groupname": "Pang Valley Group",
"areaname": "Berkshire Area",
"domain": "pvramblers.org.uk",
"status": "Hosted"
}, {
"code": "BU01",
"groupname": "Amersham & District Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "amershamramblers.org.uk",
"status": "Hosted"
}, {
"code": "BU04",
"groupname": "Hillingdon Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "hillingdonramblers.org.uk",
"status": "Hosted"
}, {
"code": "BU",
"groupname": "",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "bucks-wmiddx-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "BU09",
"groupname": "Wycombe District Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "wycomberamblers.org.uk",
"status": "Hosted"
}, {
"code": "BU40",
"groupname": "Chilterns Weekend Walkers Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "chilternsww.co.uk",
"status": "Hosted"
}, {
"code": "BU51",
"groupname": "Chiltern Young Walkers Group",
"areaname": "Buckinghamshire, Milton Keynes & West Middlesex Area",
"domain": "chilterns2030s.org.uk",
"status": "Hosted"
}, {
"code": "CB02",
"groupname": "Huntingdonshire Group",
"areaname": "Cambridgeshire & Peterborough Area",
"domain": "huntsramblers.org.uk",
"status": "Hosted"
}, {
"code": "CB04",
"groupname": "Fenland Group",
"areaname": "Cambridgeshire & Peterborough Area",
"domain": "fenlandramblers.org.uk",
"status": "Hosted"
}, {
"code": "CB50",
"groupname": "Peterborough Walkers Group",
"areaname": "Cambridgeshire & Peterborough Area",
"domain": "pyw.org.uk",
"status": "Hosted"
}, {
"code": "CA02",
"groupname": "Dinefwr Group",
"areaname": "Carmarthenshire Area",
"domain": "dinefwrramblers.org.uk",
"status": "Hosted"
}, {
"code": "",
"groupname": "locahaberandlorn-ramblers.org.uk",
"areaname": "Central",
"domain": "locahaberandlorn-ramblers.org.uk",
"status": "Unknown"
}, {
"code": "",
"groupname": "medalroutes.org.uk",
"areaname": "Central",
"domain": "medalroutes.org.uk",
"status": "HostedDNSSet"
}, {
"code": "",
"groupname": "ramblers-webs.org.uk",
"areaname": "Central",
"domain": "ramblers-webs.org.uk",
"status": "Hosted"
}, {
"code": "",
"groupname": "ramblersforum.org.uk",
"areaname": "Central",
"domain": "ramblersforum.org.uk",
"status": "Hosted"
}, {
"code": "",
"groupname": "theramblers.org.uk",
"areaname": "Central",
"domain": "theramblers.org.uk",
"status": "Hosted"
}, {
"code": "",
"groupname": "walkinginfo.co.uk",
"areaname": "Central",
"domain": "walkinginfo.co.uk",
"status": "Hosted"
}, {
"code": "",
"groupname": "wessexrailwaywalks.org.uk",
"areaname": "Central",
"domain": "wessexrailwaywalks.org.uk",
"status": "Hosted"
}, {
"code": "CE02",
"groupname": "Cardigan & District Group",
"areaname": "Ceredigion Area",
"domain": "cardiganramblers.org.uk",
"status": "Hosted"
}, {
"code": "CH03",
"groupname": "South Cheshire Group",
"areaname": "Cheshire East Area",
"domain": "ramblerssouthcheshire.org.uk",
"status": "Hosted"
}, {
"code": "CY03",
"groupname": "Dumfries & District Group",
"areaname": "Clydesdale to Solway Area",
"domain": "dumfriesramblers.org.uk",
"status": "Hosted"
}, {
"code": "DE",
"groupname": "",
"areaname": "Derbyshire Area",
"domain": "derbyshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "DE01",
"groupname": "Amber Valley Group",
"areaname": "Derbyshire Area",
"domain": "ambervalleyramblers.org.uk",
"status": "Hosted"
}, {
"code": "DE02",
"groupname": "Derby & S Derbyshire Group",
"areaname": "Derbyshire Area",
"domain": "derbyramblers.org.uk",
"status": "Hosted"
}, {
"code": "DE03",
"groupname": "Erewash District Group",
"areaname": "Derbyshire Area",
"domain": "erewashramblers.org.uk",
"status": "Hosted"
}, {
"code": "DE04",
"groupname": "Derbyshire Dales Group",
"areaname": "Derbyshire Area",
"domain": "derbyshiredalesramblers.org.uk",
"status": "Hosted"
}, {
"code": "DN02",
"groupname": "Exeter & District Group",
"areaname": "Devon Area",
"domain": "exeterramblers.org.uk",
"status": "Hosted"
}, {
"code": "DN16",
"groupname": "Teignmouth & Dawlish Group",
"areaname": "Devon Area",
"domain": "teignramblers.org.uk",
"status": "Hosted"
}, {
"code": "DN51",
"groupname": "Devon Bootlegs Group",
"areaname": "Devon Area",
"domain": "devonbootlegs.org.uk",
"status": "Hosted"
}, {
"code": "DT50",
"groupname": "Dorset Young Walkers Group",
"areaname": "Dorset Area",
"domain": "dorsetyoungwalkers.org.uk",
"status": "DELETED"
}, {
"code": "ER",
"groupname": "",
"areaname": "East Yorkshire & Derwent Area",
"domain": "eastyorkshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "ER04",
"groupname": "Ryedale Group",
"areaname": "East Yorkshire & Derwent Area",
"domain": "ryedaleramblers.org.uk",
"status": "DELETED"
}, {
"code": "ER05",
"groupname": "Scarborough & District Group",
"areaname": "East Yorkshire & Derwent Area",
"domain": "scarboroughramblers.org.uk",
"status": "Hosted"
}, {
"code": "ER07",
"groupname": "York Group",
"areaname": "East Yorkshire & Derwent Area",
"domain": "yorkramblers.org.uk",
"status": "Hosted"
}, {
"code": "ER50",
"groupname": "East Yorks Get Your Boots On Group",
"areaname": "East Yorkshire & Derwent Area",
"domain": "gybo.org.uk",
"status": "Hosted"
}, {
"code": "ES",
"groupname": "",
"areaname": "Essex Area",
"domain": "essexarearamblers.co.uk",
"status": "Hosted"
}, {
"code": "ES01",
"groupname": "Brentwood Group",
"areaname": "Essex Area",
"domain": "brentwoodramblers.org.uk",
"status": "Hosted"
}, {
"code": "ES02",
"groupname": "Colchester Group",
"areaname": "Essex Area",
"domain": "colchester-ramblers.co.uk",
"status": "Hosted"
}, {
"code": "ES04",
"groupname": "Thurrock Group",
"areaname": "Essex Area",
"domain": "thurrockramblers.org.uk",
"status": "Hosted"
}, {
"code": "ES05",
"groupname": "West Essex Group",
"areaname": "Essex Area",
"domain": "west-essexramblers.org.uk",
"status": "Hosted"
}, {
"code": "ES09",
"groupname": "Basildon Greenway Group",
"areaname": "Essex Area",
"domain": "greenwayramblers.org.uk",
"status": "Hosted"
}, {
"code": "ES10",
"groupname": "Tendring District Group",
"areaname": "Essex Area",
"domain": "tendringramblers.co.uk",
"status": "Hosted"
}, {
"code": "ES14",
"groupname": "Stort Valley Group",
"areaname": "Essex Area",
"domain": "stortvalleyramblers.org.uk",
"status": "Hosted"
}, {
"code": "ES15",
"groupname": "Uttlesford Group",
"areaname": "Essex Area",
"domain": "uttlesfordramblers.org",
"status": "Hosted"
}, {
"code": "ES30",
"groupname": "Essex Friends Group",
"areaname": "Essex Area",
"domain": "essexfriendsramblers.org.uk",
"status": "HostedNotproduction"
}, {
"code": "ES31",
"groupname": "East Essex Friends Group",
"areaname": "Essex Area",
"domain": "eastessexfriends.org.uk",
"status": "Hosted"
}, {
"code": "ES32",
"groupname": "Lea Valley Friends Group",
"areaname": "Essex Area",
"domain": "leavalleyfriends.org.uk",
"status": "Hosted"
}, {
"code": "ES50",
"groupname": "Hike Essex Group",
"areaname": "Essex Area",
"domain": "hikeessex.org.uk",
"status": "Hosted"
}, {
"code": "CF",
"groupname": "",
"areaname": "Forth Valley, Fife & Tayside Area",
"domain": "fvft-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "CF01",
"groupname": "Dalgety Bay & District Group",
"areaname": "Forth Valley, Fife & Tayside Area",
"domain": "dalgetybayramblers.org.uk",
"status": "Hosted"
}, {
"code": "SW01",
"groupname": "Cardiff Group",
"areaname": "Glamorgan Area",
"domain": "cardifframblers.org.uk",
"status": "Hosted"
}, {
"code": "SW07",
"groupname": "cynonvalleyramblers.org.uk",
"areaname": "Central",
"domain": "cynonvalleyramblers.org.uk",
"status": "Hosted"
}, {
"code": "SW12",
"groupname": "Taff Ely Group",
"areaname": "Glamorgan Area",
"domain": "taffelyramblers.org.uk",
"status": "Hosted"
}, {
"code": "SW50",
"groupname": "Tiger Bay Ramblers Group",
"areaname": "Glamorgan Area",
"domain": "tigerbayramblers.org.uk",
"status": "Hosted"
}, {
"code": "GR",
"groupname": "",
"areaname": "Gloucestershire",
"domain": "gloucestershireramblers.org.uk",
"status": "Hosted"
}, {
"code": "GR01",
"groupname": "Cirencester Group",
"areaname": "Gloucestershire",
"domain": "cirencesterramblers.org.uk",
"status": "Hosted"
}, {
"code": "GR05",
"groupname": "Cleeve Group",
"areaname": "Gloucestershire",
"domain": "cleeveramblers.org.uk",
"status": "DELETED"
}, {
"code": "GR50",
"groupname": "Gloucestershire Walking Group",
"areaname": "Gloucestershire",
"domain": "gwg.org.uk",
"status": "Hosted"
}, {
"code": "MR",
"groupname": "",
"areaname": "Greater Manchester & High Peak Area",
"domain": "manchester-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "MR02",
"groupname": "Bury Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "buryramblers.com",
"status": "Hosted"
}, {
"code": "MR03",
"groupname": "Rochdale Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "rochdaleramblers.org.uk",
"status": "Hosted"
}, {
"code": "MR04",
"groupname": "High Peak",
"areaname": "Greater Manchester & High Peak Area",
"domain": "newmillsramblers.co.uk",
"status": "NotbeingRENEWED"
}, {
"code": "MR10",
"groupname": "Manchester and Salford Ramblers Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "manchesterandsalfordramblers.org.uk",
"status": "Hosted"
}, {
"code": "MR12",
"groupname": "Tameside Ramblers Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "tamesideramblers.org.uk",
"status": "Hosted"
}, {
"code": "MR40",
"groupname": "Manchester Weekend Walkers Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "mwwalkers.org.uk",
"status": "Hosted"
}, {
"code": "MR50",
"groupname": "Mad Walkers (Manchester & District) Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "madwalkers.org.uk",
"status": "Hosted"
}, {
"code": "MR70",
"groupname": "Manchester Coach Rambles Group",
"areaname": "Greater Manchester & High Peak Area",
"domain": "manchestercoachrambles.org.uk",
"status": "Hosted"
}, {
"code": "WX",
"groupname": "",
"areaname": "Hampshire Area",
"domain": "hampshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX01",
"groupname": "Alton Group",
"areaname": "Hampshire Area",
"domain": "altonramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX02",
"groupname": "Andover Group",
"areaname": "Hampshire Area",
"domain": "andoverramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX04",
"groupname": "New Forest Group",
"areaname": "Hampshire Area",
"domain": "newforestramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX06",
"groupname": "Portsmouth Group",
"areaname": "Hampshire Area",
"domain": "portsmouthramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX09",
"groupname": "South East Hants Group",
"areaname": "Hampshire Area",
"domain": "sehampshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX12",
"groupname": "Eastleigh Group",
"areaname": "Hampshire Area",
"domain": "eastleighramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX13",
"groupname": "North Hampshire Downs Group",
"areaname": "Hampshire Area",
"domain": "northhampshiredownsramblers.org.uk",
"status": "Hosted"
}, {
"code": "WX51",
"groupname": "Hampshire 40+ Walking Group",
"areaname": "Hampshire Area",
"domain": "hampshirewalkers.org.uk",
"status": "Hosted"
}, {
"code": "HW",
"groupname": "",
"areaname": "Herefordshire Area",
"domain": "herefordshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "HW",
"groupname": "",
"areaname": "Herefordshire Area",
"domain": "herefordshiretrail.com",
"status": "Hosted"
}, {
"code": "HF01",
"groupname": "West Herts Group",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "westhertsramblers.org.uk",
"status": "Hosted"
}, {
"code": "HF02",
"groupname": "East Hertfordshire Group",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "easthertsramblers.co.uk",
"status": "Hosted"
}, {
"code": "HF03",
"groupname": "North Hertfordshire Group",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "nhrg.org.uk",
"status": "Hosted"
}, {
"code": "HF06",
"groupname": "Watford & Three Rivers Group",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "watfordand3riversramblers.org.uk",
"status": "NotbeingRENEWED"
}, {
"code": "HF51",
"groupname": "Herts Weekend Walkers",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "hertsww.org.uk",
"status": "Hosted"
}, {
"code": "HF52",
"groupname": "Stag Walkers Group",
"areaname": "Hertfordshire & North Middlesex Area",
"domain": "stagwalkers.org.uk",
"status": "Hosted"
}, {
"code": "SC01",
"groupname": "Badenoch & Strathspey Group",
"areaname": "Highland & Islands Area",
"domain": "badenochandstrathspeyramblers.org.uk",
"status": "Hosted"
}, {
"code": "SC02",
"groupname": "Lochaber & Lorn Group",
"areaname": "Highland & Islands Area",
"domain": "lochaberandlorn-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL",
"groupname": "",
"areaname": "Inner London Area",
"domain": "innerlondonramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL",
"groupname": "",
"areaname": "Inner London Area",
"domain": "londonramblers.org.uk",
"status": "DELETED"
}, {
"code": "IL01",
"groupname": "Blackheath Group",
"areaname": "Inner London Area",
"domain": "blackheathramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL03",
"groupname": "South Bank Group",
"areaname": "Inner London Area",
"domain": "southbankramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL05",
"groupname": "Hammersmith & Wandsworth Group",
"areaname": "Inner London Area",
"domain": "hfwramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL06",
"groupname": "Kensington, Chelsea & Westminster Group",
"areaname": "Inner London Area",
"domain": "kcwramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL08",
"groupname": "West London Group",
"areaname": "Inner London Area",
"domain": "westlondonramblers.org.uk",
"status": "Hosted"
}, {
"code": "IL40",
"groupname": "London Strollers Group",
"areaname": "Inner London Area",
"domain": "londonstrollers.org.uk",
"status": "Hosted"
}, {
"code": "IL50",
"groupname": "Metropolitan Walkers Group",
"areaname": "Inner London Area",
"domain": "metropolitan-walkers.org.uk",
"status": "Hosted"
}, {
"code": "IL51",
"groupname": "Capital Walkers Group",
"areaname": "Inner London Area",
"domain": "capitalwalkers.org.uk",
"status": "Hosted"
}, {
"code": "IW50",
"groupname": "Wight Sole Group",
"areaname": "Isle of Wight Area",
"domain": "wightsole.org.uk",
"status": "Hosted"
}, {
"code": "LD",
"groupname": "",
"areaname": "Lake District Area",
"domain": "lakedistrictramblers.org.uk",
"status": "HostedNotproduction"
}, {
"code": "LD01",
"groupname": "Furness Group",
"areaname": "Lake District Area",
"domain": "furnessramblers.org.uk",
"status": "Hosted"
}, {
"code": "LD04",
"groupname": "Lancaster Group",
"areaname": "Lake District Area",
"domain": "lancasterramblers.org.uk",
"status": "Hosted"
}, {
"code": "LD50",
"groupname": "Summit Good Group",
"areaname": "Lake District Area",
"domain": "summitgood.org.uk",
"status": "Hosted"
}, {
"code": "LE",
"groupname": "",
"areaname": "Leicestershire & Rutland Area",
"domain": "leicsra.org.uk",
"status": "Hosted"
}, {
"code": "LE01",
"groupname": "Hinckley Group",
"areaname": "Leicestershire & Rutland Area",
"domain": "hinckleyramblers.org.uk",
"status": "Hosted"
}, {
"code": "LE03",
"groupname": "Melton Mowbray Group",
"areaname": "Leicestershire & Rutland Area",
"domain": "meltonramblers.org.uk",
"status": "Hosted"
}, {
"code": "LE06",
"groupname": "Loughborough & District Group",
"areaname": "Leicestershire & Rutland Area",
"domain": "loughboroughramblers.org.uk",
"status": "Hosted"
}, {
"code": "LE50",
"groupname": "Leicestershire & Rutland Walking Group",
"areaname": "Leicestershire & Rutland Area",
"domain": "lrwg.org.uk",
"status": "Hosted"
}, {
"code": "LI",
"groupname": "",
"areaname": "Lincolnshire Area",
"domain": "lincolnshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "LI08",
"groupname": "Sleaford Ramblers Group",
"areaname": "Lincolnshire Area",
"domain": "sleafordramblers.org.uk",
"status": "Hosted"
}, {
"code": "LB50",
"groupname": "Edinburgh Young Walkers Group",
"areaname": "Lothian & Borders Area",
"domain": "eyw.org.uk",
"status": "HostedDNSSet"
}, {
"code": "LL02",
"groupname": "Liverpool Group",
"areaname": "Merseyside and West Cheshire Area",
"domain": "liverpoolramblers.org.uk",
"status": "Hosted"
}, {
"code": "LL03",
"groupname": "Wirral Group",
"areaname": "Merseyside and West Cheshire Area",
"domain": "wirralramblers.org.uk",
"status": "Hosted"
}, {
"code": "ML",
"groupname": "",
"areaname": "Mid Lancashire Area",
"domain": "lancashire-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "ML02",
"groupname": "Fylde Group",
"areaname": "Mid Lancashire Area",
"domain": "fylderamblers.org.uk",
"status": "Hosted"
}, {
"code": "ML03",
"groupname": "Garstang & District Group",
"areaname": "Mid Lancashire Area",
"domain": "garstangramblers.org.uk",
"status": "Hosted"
}, {
"code": "ML05",
"groupname": "South Ribble Group",
"areaname": "Mid Lancashire Area",
"domain": "southribbleramblers.org.uk",
"status": "Hosted"
}, {
"code": "MC",
"groupname": "",
"areaname": "North and Mid Cheshire Area",
"domain": "nmc-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "MC50",
"groupname": "Cheshire Walkers Group",
"areaname": "North and Mid Cheshire Area",
"domain": "cheshirewalkers.org.uk",
"status": "Hosted"
}, {
"code": "LN02",
"groupname": "Clitheroe Group",
"areaname": "North East Lancashire Area",
"domain": "clitheroeramblers.co.uk",
"status": "Hosted"
}, {
"code": "LN04",
"groupname": "Rossendale Group",
"areaname": "North East Lancashire Area",
"domain": "rossendale-ramblers.co.uk",
"status": "Hosted"
}, {
"code": "SL",
"groupname": "",
"areaname": "North Strathclyde Area",
"domain": "northstrathclyderamblers.org.uk",
"status": "HostedNotproduction"
}, {
"code": "SL01",
"groupname": "Glasgow Group",
"areaname": "North Strathclyde Area",
"domain": "glasgowramblers.org.uk",
"status": "Hosted"
}, {
"code": "SL03",
"groupname": "Cumbernauld & Kilsyth Group",
"areaname": "North Strathclyde Area",
"domain": "cumbernauldkilsythramblers.org.uk",
"status": "Hosted"
}, {
"code": "SL06",
"groupname": "Helensburgh & West Dunbartonshire Group",
"areaname": "North Strathclyde Area",
"domain": "hwdramblers.org.uk",
"status": "Hosted"
}, {
"code": "LW",
"groupname": "",
"areaname": "North Wales Area",
"domain": "ramblersnorthwales.org.uk",
"status": "Hosted"
}, {
"code": "LW02",
"groupname": "Conwy Valley Group",
"areaname": "North Wales Area",
"domain": "conwyvalleyra.org.uk",
"status": "Hosted"
}, {
"code": "LW03",
"groupname": "Ynys Mon Group",
"areaname": "North Wales Area",
"domain": "ynysmonramblers.org.uk",
"status": "Hosted"
}, {
"code": "LW06",
"groupname": "Meirionnydd Group",
"areaname": "North Wales Area",
"domain": "meirionnyddramblers.org.uk",
"status": "Hosted"
}, {
"code": "LW07",
"groupname": "Berwyn Group",
"areaname": "North Wales Area",
"domain": "berwynra.org.uk",
"status": "Hosted"
}, {
"code": "LW08",
"groupname": "Vale of Clwyd Group",
"areaname": "North Wales Area",
"domain": "voc-ramblers.org.uk",
"status": "Tobetransferred"
}, {
"code": "LW09",
"groupname": "Deeside Group",
"areaname": "North Wales Area",
"domain": "deesideramblers.org.uk",
"status": "Hosted"
}, {
"code": "NY06",
"groupname": "Northallerton Group",
"areaname": "North Yorks & South Durham Area",
"domain": "northallertonramblers.org.uk",
"status": "Hosted"
}, {
"code": "NP",
"groupname": "",
"areaname": "Northamptonshire Area",
"domain": "northantsramblers.org.uk",
"status": "Hosted"
}, {
"code": "NP01",
"groupname": "Ramblers Northampton Group",
"areaname": "Northamptonshire Area",
"domain": "northamptonra.org.uk",
"status": "Hosted"
}, {
"code": "NN02",
"groupname": "Chester le Street Group",
"areaname": "Northumbria Area",
"domain": "chester-le-street-ramblers.org.uk",
"status": "DELETED"
}, {
"code": "CY02",
"groupname": "Biggar Group",
"areaname": "Clydesdale to Solway Area",
"domain": "biggarramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE",
"groupname": "",
"areaname": "Nottinghamshire Area",
"domain": "nottsarearamblers.org.uk",
"status": "Hosted"
}, {
"code": "NE01",
"groupname": "Newark Group",
"areaname": "Nottinghamshire Area",
"domain": "newarkramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE07",
"groupname": "Rushcliffe Group",
"areaname": "Nottinghamshire Area",
"domain": "rushclifferamblers.org",
"status": "Hosted"
}, {
"code": "NE08",
"groupname": "Broxtowe Group",
"areaname": "Nottinghamshire Area",
"domain": "broxtoweramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE09",
"groupname": "Gedling Group",
"areaname": "Nottinghamshire Area",
"domain": "gedlingramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE10",
"groupname": "Mansfield & Sherwood Ramblers",
"areaname": "Nottinghamshire Area",
"domain": "mansfieldramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE11",
"groupname": "Southwell Group",
"areaname": "Nottinghamshire Area",
"domain": "southwellramblers.org.uk",
"status": "Hosted"
}, {
"code": "NE50",
"groupname": "Notts Derby Walking Group",
"areaname": "Nottinghamshire Area",
"domain": "ndwg.org.uk",
"status": "Hosted"
}, {
"code": "OX",
"groupname": "",
"areaname": "Oxfordshire Area",
"domain": "ramblers-oxon.org.uk",
"status": "Hosted"
}, {
"code": "OX40",
"groupname": "Oxon Weekend Walkers Group",
"areaname": "Oxfordshire Area",
"domain": "oxonww.org",
"status": "Hosted"
}, {
"code": "PE01",
"groupname": "Pembrokeshire Group",
"areaname": "Pembrokeshire Area",
"domain": "pembrokeshireramblers.org.uk",
"status": "Hosted"
}, {
"code": "RB",
"groupname": "",
"areaname": "Renfrewshire, Cowal & Bute Area",
"domain": "rcbarearamblers.org.uk",
"status": "HostedNotproduction"
}, {
"code": "RB02",
"groupname": "Eastwood Group",
"areaname": "Renfrewshire, Cowal & Bute Area",
"domain": "eastwood-ramblers.org.uk",
"status": "Hosted"
}, {
"code": "RB03",
"groupname": "Inverclyde Group",
"areaname": "Renfrewshire, Cowal & Bute Area",
"domain": "inverclyderamblers.org.uk",
"status": "Hosted"
}, {
"code": "RB04",
"groupname": "Isle of Bute Group",
"areaname": "Renfrewshire, Cowal & Bute Area",
"domain": "buteramblers.org.uk",
"status": "Hosted"
}, {
"code": "SS",
"groupname": "",
"areaname": "Shropshire Area",
"domain": "shropshireramblers.org.uk",
"status": "HostedNotproduction"
}, {
"code": "SS02",
"groupname": "Telford & East Shropshire Group",
"areaname": "Shropshire Area",
"domain": "tesramblers.org.uk",
"status": "Hosted"
}, {
"code": "SS04",
"groupname": "Oswestry Group",
"areaname": "Shropshire Area",
"domain": "oswestryramblers.org.uk",
"status": "Unknown"
}, {
"code": "SS50",
"groupname": "Shropshire Young Ramblers Group",
"areaname": "Shropshire Area",
"domain": "syr.org.uk",
"status": "Hosted"