-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17.csv
We can't make this file beautiful and searchable because it's too large.
3742 lines (3742 loc) · 764 KB
/
17.csv
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
sa4_name_2016,sa4_code,anzsco,unempratemvmt,score00,averageannualmvmt20132016mvmt,score0001,housepiceandrentpurchaseprice,weeklyrentprice,purchasescore,rentscore,incomemedian,score,occunemp,occempscore,patentsincreasepat,increasetrade,increasenewbusiness,scorepatents,scoretrademarks,scoreentries,unemprate,unempscore,total_businesses2013,total_business2014,increasetotalbus201314,incbus_score,sa4_code,NSWscore,state,propjvinc201316,jv_score,priorityoccup_score,occupunemprate,occunempscore,numbus_industry201315mvmt,_201315score
Capital Region,101,11,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,0,1,0,1.775513209,3,9.595959596,2
Capital Region,101,12,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,12.98917569,1,0,1.775513209,3,9.595959596,2
Capital Region,101,13,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,125.7944587,3,1,1.934726957,2,9.595959596,2
Capital Region,101,14,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,60.24204393,2,0,1.38456451,3,9.595959596,2
Capital Region,101,21,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,9.459459459,0,0,3.044104943,1,9.595959596,2
Capital Region,101,22,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,128.2010096,3,0,2.395599968,2,9.595959596,2
Capital Region,101,23,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,55.50151976,2,2,2.744430198,2,9.595959596,2
Capital Region,101,24,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,88.50221767,1,1,1.983106736,2,9.595959596,2
Capital Region,101,25,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,153.2659637,3,3,0.842000852,3,9.595959596,2
Capital Region,101,26,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,26.48698885,0,1,2.189164464,2,9.595959596,2
Capital Region,101,27,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,79.0922619,1,1,1.637641677,3,9.595959596,2
Capital Region,101,31,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,44.91193738,2,1,1.48376513,3,9.595959596,2
Capital Region,101,32,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,63.79310345,2,2,3.672178202,0,9.595959596,2
Capital Region,101,33,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,78.68525896,2,3,3.087091782,1,9.595959596,2
Capital Region,101,34,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,316.6219839,3,2,3.928639959,0,9.595959596,2
Capital Region,101,35,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,50.43010753,3,2,3.215717391,1,9.595959596,2
Capital Region,101,36,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,104.6106557,0,0,4.462419792,0,9.595959596,2
Capital Region,101,39,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,220.1716738,3,0,1.495232111,3,9.595959596,2
Capital Region,101,41,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,109.0305445,3,1,3.48189448,0,9.595959596,2
Capital Region,101,42,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,25.54517134,1,0,4.393815552,0,9.595959596,2
Capital Region,101,43,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,24.54258675,0,0,5.277350171,0,9.595959596,2
Capital Region,101,44,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,80.11152416,3,0,3.334412454,1,9.595959596,2
Capital Region,101,45,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,165.2380952,3,0,2.763530685,2,9.595959596,2
Capital Region,101,51,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,69.95884774,1,0,2.535082122,2,9.595959596,2
Capital Region,101,52,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,1,0,2.826080167,1,9.595959596,2
Capital Region,101,53,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,1,0,3.294490254,1,9.595959596,2
Capital Region,101,54,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,87.48043818,2,0,4.703538895,0,9.595959596,2
Capital Region,101,55,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,66.55328798,3,0,1.166403088,3,9.595959596,2
Capital Region,101,56,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,500,3,0,3.351366358,1,9.595959596,2
Capital Region,101,59,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,57.24381625,3,0,2.833331772,1,9.595959596,2
Capital Region,101,61,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,39.44337812,2,0,1.418062031,3,9.595959596,2
Capital Region,101,62,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,32.25806452,3,0,5.58626565,0,9.595959596,2
Capital Region,101,63,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,83.4179357,3,0,2.852111249,1,9.595959596,2
Capital Region,101,71,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,14.13612565,2,0,3.517283791,0,9.595959596,2
Capital Region,101,72,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,29.69387755,1,0,4.54891329,0,9.595959596,2
Capital Region,101,73,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,45.88744589,1,0,2.452576498,2,9.595959596,2
Capital Region,101,74,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,53.45679012,3,0,6.827084124,0,9.595959596,2
Capital Region,101,81,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,89.8989899,2,0,5.323702597,0,9.595959596,2
Capital Region,101,82,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,42.56756757,0,0,8.599890638,0,9.595959596,2
Capital Region,101,83,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,97.18309859,2,0,7.394282019,0,9.595959596,2
Capital Region,101,84,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,85.67480424,2,0,5.816067226,0,9.595959596,2
Capital Region,101,85,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,501.6216216,0,0,8.407560815,0,9.595959596,2
Capital Region,101,89,4.76401994,2,9.541299645,2,320,320,2,2,60100,2,,,-35.18518519,-1.923076923,19.40133038,0,2,2,2.410084962,3,19577,19171,-2.073862185,0,101,,1,23.44086022,2,0,3.879472423,0,9.595959596,2
Central Coast,102,11,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,139.9991297,3,0,1.775513209,3,2.040816327,1
Central Coast,102,12,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,1,1,0,1.775513209,3,2.040816327,1
Central Coast,102,13,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,125.7944587,2,1,1.934726957,2,2.040816327,1
Central Coast,102,14,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,45.50128535,3,0,1.38456451,3,2.040816327,1
Central Coast,102,21,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,266.2337662,3,0,3.044104943,1,2.040816327,1
Central Coast,102,22,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,128.2010096,2,0,2.395599968,2,2.040816327,1
Central Coast,102,23,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,38.61335384,2,2,2.744430198,2,2.040816327,1
Central Coast,102,24,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,41.40798226,1,1,1.983106736,2,2.040816327,1
Central Coast,102,25,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,153.2659637,2,3,0.842000852,3,2.040816327,1
Central Coast,102,26,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,70.15429122,2,1,2.189164464,2,2.040816327,1
Central Coast,102,27,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,53.5389482,2,1,1.637641677,3,2.040816327,1
Central Coast,102,31,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,68.68217054,3,1,1.48376513,3,2.040816327,1
Central Coast,102,32,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,63.74100719,3,2,3.672178202,0,2.040816327,1
Central Coast,102,33,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,95.09493671,2,3,3.087091782,1,2.040816327,1
Central Coast,102,34,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,64.21052632,3,2,3.928639959,0,2.040816327,1
Central Coast,102,35,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,38.31775701,3,2,3.215717391,1,2.040816327,1
Central Coast,102,36,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,34.8219333,2,0,4.462419792,0,2.040816327,1
Central Coast,102,39,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,220.1716738,2,0,1.495232111,3,2.040816327,1
Central Coast,102,41,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,178.4194529,3,1,3.48189448,0,2.040816327,1
Central Coast,102,42,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,67.11349419,3,0,4.393815552,0,2.040816327,1
Central Coast,102,43,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,-16.6841553,1,0,5.277350171,0,2.040816327,1
Central Coast,102,44,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,80.11152416,1,0,3.334412454,1,2.040816327,1
Central Coast,102,45,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,100,2,0,2.763530685,2,2.040816327,1
Central Coast,102,51,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,2.535082122,2,2.040816327,1
Central Coast,102,52,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,2.826080167,1,2.040816327,1
Central Coast,102,53,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,121.3716108,3,0,3.294490254,1,2.040816327,1
Central Coast,102,54,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,28.89963724,2,0,4.703538895,0,2.040816327,1
Central Coast,102,55,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,87.4435411,3,0,1.166403088,3,2.040816327,1
Central Coast,102,56,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,500,3,0,3.351366358,1,2.040816327,1
Central Coast,102,59,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,62.62295082,3,0,2.833331772,1,2.040816327,1
Central Coast,102,61,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,36.69821241,3,0,1.418062031,3,2.040816327,1
Central Coast,102,62,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,32.25806452,3,0,5.58626565,0,2.040816327,1
Central Coast,102,63,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,83.4179357,1,0,2.852111249,1,2.040816327,1
Central Coast,102,71,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,66.56394453,3,0,3.517283791,0,2.040816327,1
Central Coast,102,72,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,119.8770492,3,0,4.54891329,0,2.040816327,1
Central Coast,102,73,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,119.8770492,3,0,2.452576498,2,2.040816327,1
Central Coast,102,74,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,64.35006435,3,0,6.827084124,0,2.040816327,1
Central Coast,102,81,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,35.52795031,3,0,5.323702597,0,2.040816327,1
Central Coast,102,82,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,57.66016713,3,0,8.599890638,0,2.040816327,1
Central Coast,102,83,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,0,2,0,7.394282019,0,2.040816327,1
Central Coast,102,84,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,143.3476395,3,0,5.816067226,0,2.040816327,1
Central Coast,102,85,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,6.95900858,3,0,8.407560815,0,2.040816327,1
Central Coast,102,89,4.807315702,1,29.46353664,3,570,430,1,1,58400,1,,,3.370786517,15.28822055,22.36786469,3,3,3,2.956059067,2,19614,19907,1.493830937,2,102,,1,18.46361186,3,0,3.879472423,0,2.040816327,1
New South Wales - Central West,103,11,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,433.2935561,3,0,1.775513209,3,0.662251656,0
New South Wales - Central West,103,12,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,1,0,0,1.775513209,3,0.662251656,0
New South Wales - Central West,103,13,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,161.1739365,3,1,1.934726957,2,0.662251656,0
New South Wales - Central West,103,14,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,45.50128535,1,0,1.38456451,3,0.662251656,0
New South Wales - Central West,103,21,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,299.4708995,3,0,3.044104943,1,0.662251656,0
New South Wales - Central West,103,22,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,165.1234568,3,0,2.395599968,2,0.662251656,0
New South Wales - Central West,103,23,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,36.16843279,2,2,2.744430198,2,0.662251656,0
New South Wales - Central West,103,24,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,123.5491071,3,1,1.983106736,2,0.662251656,0
New South Wales - Central West,103,25,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,229.5609756,3,3,0.842000852,3,0.662251656,0
New South Wales - Central West,103,26,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,107.8144078,3,1,2.189164464,2,0.662251656,0
New South Wales - Central West,103,27,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,118.940754,3,1,1.637641677,3,0.662251656,0
New South Wales - Central West,103,31,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,100,3,1,1.48376513,3,0.662251656,0
New South Wales - Central West,103,32,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,63.74100719,2,2,3.672178202,0,0.662251656,0
New South Wales - Central West,103,33,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,95.09493671,1,3,3.087091782,1,0.662251656,0
New South Wales - Central West,103,34,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,64.21052632,2,2,3.928639959,0,0.662251656,0
New South Wales - Central West,103,35,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,30.92783505,1,2,3.215717391,1,0.662251656,0
New South Wales - Central West,103,36,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,34.8219333,0,0,4.462419792,0,0.662251656,0
New South Wales - Central West,103,39,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,199.1525424,3,0,1.495232111,3,0.662251656,0
New South Wales - Central West,103,41,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,178.4194529,3,1,3.48189448,0,0.662251656,0
New South Wales - Central West,103,42,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,67.11349419,0,0,4.393815552,0,0.662251656,0
New South Wales - Central West,103,43,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,-16.6841553,1,0,5.277350171,0,0.662251656,0
New South Wales - Central West,103,44,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,91.00850547,3,0,3.334412454,1,0.662251656,0
New South Wales - Central West,103,45,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,200,3,0,2.763530685,2,0.662251656,0
New South Wales - Central West,103,51,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,2.535082122,2,0.662251656,0
New South Wales - Central West,103,52,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,2.826080167,1,0.662251656,0
New South Wales - Central West,103,53,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,121.3716108,2,0,3.294490254,1,0.662251656,0
New South Wales - Central West,103,54,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,28.89963724,2,0,4.703538895,0,0.662251656,0
New South Wales - Central West,103,55,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,87.4435411,3,0,1.166403088,3,0.662251656,0
New South Wales - Central West,103,56,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,66.50717703,2,0,3.351366358,1,0.662251656,0
New South Wales - Central West,103,59,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,62.62295082,3,0,2.833331772,1,0.662251656,0
New South Wales - Central West,103,61,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,36.69821241,1,0,1.418062031,3,0.662251656,0
New South Wales - Central West,103,62,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,20.10928962,1,0,5.58626565,0,0.662251656,0
New South Wales - Central West,103,63,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,57.23172628,3,0,2.852111249,1,0.662251656,0
New South Wales - Central West,103,71,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,66.56394453,3,0,3.517283791,0,0.662251656,0
New South Wales - Central West,103,72,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,119.8770492,3,0,4.54891329,0,0.662251656,0
New South Wales - Central West,103,73,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,119.8770492,3,0,2.452576498,2,0.662251656,0
New South Wales - Central West,103,74,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,64.35006435,1,0,6.827084124,0,0.662251656,0
New South Wales - Central West,103,81,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,35.52795031,0,0,5.323702597,0,0.662251656,0
New South Wales - Central West,103,82,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,57.66016713,1,0,8.599890638,0,0.662251656,0
New South Wales - Central West,103,83,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,-5.123339658,1,0,7.394282019,0,0.662251656,0
New South Wales - Central West,103,84,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,143.3476395,1,0,5.816067226,0,0.662251656,0
New South Wales - Central West,103,85,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,6.95900858,0,0,8.407560815,0,0.662251656,0
New South Wales - Central West,103,89,4.76401994,1,-9.726504977,0,342.5,320,2,2,56600,1,,,12.90322581,-32.2147651,20.10550996,3,0,2,2.662458459,2,18054,18365,1.722609948,2,103,,1,18.46361186,1,0,3.879472423,0,0.662251656,0
Coffs Harbour - Grafton,104,11,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,433.2935561,2,0,1.775513209,3,8.181818182,2
Coffs Harbour - Grafton,104,12,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,500.2145923,3,0,1.775513209,3,8.181818182,2
Coffs Harbour - Grafton,104,13,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,161.1739365,2,1,1.934726957,2,8.181818182,2
Coffs Harbour - Grafton,104,14,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,11.54684096,1,0,1.38456451,3,8.181818182,2
Coffs Harbour - Grafton,104,21,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,299.4708995,2,0,3.044104943,1,8.181818182,2
Coffs Harbour - Grafton,104,22,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,165.1234568,3,0,2.395599968,2,8.181818182,2
Coffs Harbour - Grafton,104,23,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,130.9475397,3,2,2.744430198,2,8.181818182,2
Coffs Harbour - Grafton,104,24,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,123.5491071,2,1,1.983106736,2,8.181818182,2
Coffs Harbour - Grafton,104,25,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,229.5609756,0,3,0.842000852,3,8.181818182,2
Coffs Harbour - Grafton,104,26,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,120.0889248,3,1,2.189164464,2,8.181818182,2
Coffs Harbour - Grafton,104,27,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,118.940754,2,1,1.637641677,3,8.181818182,2
Coffs Harbour - Grafton,104,31,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,100,2,1,1.48376513,3,8.181818182,2
Coffs Harbour - Grafton,104,32,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,21.76560122,2,2,3.672178202,0,8.181818182,2
Coffs Harbour - Grafton,104,33,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.96674584,1,3,3.087091782,1,8.181818182,2
Coffs Harbour - Grafton,104,34,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,9.89010989,2,2,3.928639959,0,8.181818182,2
Coffs Harbour - Grafton,104,35,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,8.955223881,2,2,3.215717391,1,8.181818182,2
Coffs Harbour - Grafton,104,36,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,88.31775701,3,0,4.462419792,0,8.181818182,2
Coffs Harbour - Grafton,104,39,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,199.1525424,1,0,1.495232111,3,8.181818182,2
Coffs Harbour - Grafton,104,41,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,122.9712859,2,1,3.48189448,0,8.181818182,2
Coffs Harbour - Grafton,104,42,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,12.34106208,0,0,4.393815552,0,8.181818182,2
Coffs Harbour - Grafton,104,43,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-13.05285868,1,0,5.277350171,0,8.181818182,2
Coffs Harbour - Grafton,104,44,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,91.00850547,1,0,3.334412454,1,8.181818182,2
Coffs Harbour - Grafton,104,45,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,200,1,0,2.763530685,2,8.181818182,2
Coffs Harbour - Grafton,104,51,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.535082122,2,8.181818182,2
Coffs Harbour - Grafton,104,52,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.826080167,1,8.181818182,2
Coffs Harbour - Grafton,104,53,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,3.294490254,1,8.181818182,2
Coffs Harbour - Grafton,104,54,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,37.71313942,3,0,4.703538895,0,8.181818182,2
Coffs Harbour - Grafton,104,55,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,86.55126498,3,0,1.166403088,3,8.181818182,2
Coffs Harbour - Grafton,104,56,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,20.02781641,1,0,3.351366358,1,8.181818182,2
Coffs Harbour - Grafton,104,59,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,44.4527178,3,0,2.833331772,1,8.181818182,2
Coffs Harbour - Grafton,104,61,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,23.71541502,3,0,1.418062031,3,8.181818182,2
Coffs Harbour - Grafton,104,62,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,15.92039801,3,0,5.58626565,0,8.181818182,2
Coffs Harbour - Grafton,104,63,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,57.23172628,2,0,2.852111249,1,8.181818182,2
Coffs Harbour - Grafton,104,71,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.33538841,1,0,3.517283791,0,8.181818182,2
Coffs Harbour - Grafton,104,72,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,4.54891329,0,8.181818182,2
Coffs Harbour - Grafton,104,73,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,2.452576498,2,8.181818182,2
Coffs Harbour - Grafton,104,74,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,5.614035088,2,0,6.827084124,0,8.181818182,2
Coffs Harbour - Grafton,104,81,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.34515366,3,0,5.323702597,0,8.181818182,2
Coffs Harbour - Grafton,104,82,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,72.15346535,3,0,8.599890638,0,8.181818182,2
Coffs Harbour - Grafton,104,83,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,17.7920686,2,0,7.394282019,0,8.181818182,2
Coffs Harbour - Grafton,104,84,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.8740458,3,0,5.816067226,0,8.181818182,2
Coffs Harbour - Grafton,104,85,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-2.748091603,3,0,8.407560815,0,8.181818182,2
Coffs Harbour - Grafton,104,89,4.76401994,1,-16.90371219,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,24.47643979,3,0,3.879472423,0,8.181818182,2
Far West and Orana,105,11,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,69.97782705,1,0,1.775513209,3,-14.28571429,0
Far West and Orana,105,12,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,500.2145923,2,0,1.775513209,3,-14.28571429,0
Far West and Orana,105,13,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.48519041,1,1,1.934726957,2,-14.28571429,0
Far West and Orana,105,14,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,44.24119241,3,0,1.38456451,3,-14.28571429,0
Far West and Orana,105,21,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.30965909,1,0,3.044104943,1,-14.28571429,0
Far West and Orana,105,22,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,72.55301794,2,0,2.395599968,2,-14.28571429,0
Far West and Orana,105,23,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,130.9475397,0,2,2.744430198,2,-14.28571429,0
Far West and Orana,105,24,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,83.36414048,2,1,1.983106736,2,-14.28571429,0
Far West and Orana,105,25,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,105.9595407,3,3,0.842000852,3,-14.28571429,0
Far West and Orana,105,26,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,120.0889248,3,1,2.189164464,2,-14.28571429,0
Far West and Orana,105,27,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,65.04132231,2,1,1.637641677,3,-14.28571429,0
Far West and Orana,105,31,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,62.3119015,0,1,1.48376513,3,-14.28571429,0
Far West and Orana,105,32,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,21.76560122,1,2,3.672178202,0,-14.28571429,0
Far West and Orana,105,33,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.96674584,1,3,3.087091782,1,-14.28571429,0
Far West and Orana,105,34,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,29.35251799,3,2,3.928639959,0,-14.28571429,0
Far West and Orana,105,35,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,8.955223881,2,2,3.215717391,1,-14.28571429,0
Far West and Orana,105,36,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,88.31775701,0,0,4.462419792,0,-14.28571429,0
Far West and Orana,105,39,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,135.479798,3,0,1.495232111,3,-14.28571429,0
Far West and Orana,105,41,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,108.3188908,3,1,3.48189448,0,-14.28571429,0
Far West and Orana,105,42,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,87.60162602,3,0,4.393815552,0,-14.28571429,0
Far West and Orana,105,43,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.23146474,3,0,5.277350171,0,-14.28571429,0
Far West and Orana,105,44,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-15.98272138,1,0,3.334412454,1,-14.28571429,0
Far West and Orana,105,45,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-10.38834951,0,0,2.763530685,2,-14.28571429,0
Far West and Orana,105,51,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,2.535082122,2,-14.28571429,0
Far West and Orana,105,52,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,2.826080167,1,-14.28571429,0
Far West and Orana,105,53,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,52.88544358,0,0,3.294490254,1,-14.28571429,0
Far West and Orana,105,54,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,37.71313942,2,0,4.703538895,0,-14.28571429,0
Far West and Orana,105,55,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,50,0,0,1.166403088,3,-14.28571429,0
Far West and Orana,105,56,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,902.3809524,3,0,3.351366358,1,-14.28571429,0
Far West and Orana,105,59,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,44.4527178,1,0,2.833331772,1,-14.28571429,0
Far West and Orana,105,61,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,23.71541502,1,0,1.418062031,3,-14.28571429,0
Far West and Orana,105,62,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,15.92039801,2,0,5.58626565,0,-14.28571429,0
Far West and Orana,105,63,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,17.56007394,2,0,2.852111249,1,-14.28571429,0
Far West and Orana,105,71,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.24486508,2,0,3.517283791,0,-14.28571429,0
Far West and Orana,105,72,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,119.5325543,2,0,4.54891329,0,-14.28571429,0
Far West and Orana,105,73,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,119.5325543,2,0,2.452576498,2,-14.28571429,0
Far West and Orana,105,74,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,43.24324324,3,0,6.827084124,0,-14.28571429,0
Far West and Orana,105,81,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,48.34515366,2,0,5.323702597,0,-14.28571429,0
Far West and Orana,105,82,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,72.15346535,0,0,8.599890638,0,-14.28571429,0
Far West and Orana,105,83,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,17.7920686,0,0,7.394282019,0,-14.28571429,0
Far West and Orana,105,84,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,33.8740458,2,0,5.816067226,0,-14.28571429,0
Far West and Orana,105,85,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,-2.748091603,1,0,8.407560815,0,-14.28571429,0
Far West and Orana,105,89,4.76401994,1,7.616241292,2,120,240,3,3,52000,1,,,-35.71428571,36.36363636,13.96648045,0,3,1,5.035872523,0,10827,10977,1.385425326,2,105,,1,24.47643979,2,0,3.879472423,0,-14.28571429,0
Hunter Valley exc Newcastle,106,11,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,91.80327869,2,0,1.775513209,3,5.288461538,2
Hunter Valley exc Newcastle,106,12,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,100.3076923,2,0,1.775513209,3,5.288461538,2
Hunter Valley exc Newcastle,106,13,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,11.08094349,1,1,1.934726957,2,5.288461538,2
Hunter Valley exc Newcastle,106,14,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,44.24119241,0,0,1.38456451,3,5.288461538,2
Hunter Valley exc Newcastle,106,21,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,28.59122402,0,0,3.044104943,1,5.288461538,2
Hunter Valley exc Newcastle,106,22,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.44520977,0,0,2.395599968,2,5.288461538,2
Hunter Valley exc Newcastle,106,23,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-9.708737864,1,2,2.744430198,2,5.288461538,2
Hunter Valley exc Newcastle,106,24,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,103.898051,3,1,1.983106736,2,5.288461538,2
Hunter Valley exc Newcastle,106,25,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,105.9595407,0,3,0.842000852,3,5.288461538,2
Hunter Valley exc Newcastle,106,26,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,107.3770492,3,1,2.189164464,2,5.288461538,2
Hunter Valley exc Newcastle,106,27,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,60.02029427,1,1,1.637641677,3,5.288461538,2
Hunter Valley exc Newcastle,106,31,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,31.36966127,2,1,1.48376513,3,5.288461538,2
Hunter Valley exc Newcastle,106,32,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,8.655616943,2,2,3.672178202,0,5.288461538,2
Hunter Valley exc Newcastle,106,33,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,46.11398964,2,3,3.087091782,1,5.288461538,2
Hunter Valley exc Newcastle,106,34,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,29.35251799,2,2,3.928639959,0,5.288461538,2
Hunter Valley exc Newcastle,106,35,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,0,1,2,3.215717391,1,5.288461538,2
Hunter Valley exc Newcastle,106,36,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-9.589041096,1,0,4.462419792,0,5.288461538,2
Hunter Valley exc Newcastle,106,39,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,135.479798,1,0,1.495232111,3,5.288461538,2
Hunter Valley exc Newcastle,106,41,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,108.3188908,1,1,3.48189448,0,5.288461538,2
Hunter Valley exc Newcastle,106,42,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,87.60162602,0,0,4.393815552,0,5.288461538,2
Hunter Valley exc Newcastle,106,43,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,24.23146474,1,0,5.277350171,0,5.288461538,2
Hunter Valley exc Newcastle,106,44,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-25,0,0,3.334412454,1,5.288461538,2
Hunter Valley exc Newcastle,106,45,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-22.24215247,0,0,2.763530685,2,5.288461538,2
Hunter Valley exc Newcastle,106,51,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,2.535082122,2,5.288461538,2
Hunter Valley exc Newcastle,106,52,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,2.826080167,1,5.288461538,2
Hunter Valley exc Newcastle,106,53,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,26.79658952,2,0,3.294490254,1,5.288461538,2
Hunter Valley exc Newcastle,106,54,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,15.06849315,1,0,4.703538895,0,5.288461538,2
Hunter Valley exc Newcastle,106,55,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,18.8034188,2,0,1.166403088,3,5.288461538,2
Hunter Valley exc Newcastle,106,56,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,902.3809524,3,0,3.351366358,1,5.288461538,2
Hunter Valley exc Newcastle,106,59,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,27.11323764,2,0,2.833331772,1,5.288461538,2
Hunter Valley exc Newcastle,106,61,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,1.708428246,2,0,1.418062031,3,5.288461538,2
Hunter Valley exc Newcastle,106,62,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,14.07867495,1,0,5.58626565,0,5.288461538,2
Hunter Valley exc Newcastle,106,63,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,17.56007394,0,0,2.852111249,1,5.288461538,2
Hunter Valley exc Newcastle,106,71,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,24.24486508,2,0,3.517283791,0,5.288461538,2
Hunter Valley exc Newcastle,106,72,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.4501992,2,0,4.54891329,0,5.288461538,2
Hunter Valley exc Newcastle,106,73,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,37.4501992,2,0,2.452576498,2,5.288461538,2
Hunter Valley exc Newcastle,106,74,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,43.24324324,1,0,6.827084124,0,5.288461538,2
Hunter Valley exc Newcastle,106,81,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-7.524271845,0,0,5.323702597,0,5.288461538,2
Hunter Valley exc Newcastle,106,82,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,36.72316384,2,0,8.599890638,0,5.288461538,2
Hunter Valley exc Newcastle,106,83,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-19.93704092,1,0,7.394282019,0,5.288461538,2
Hunter Valley exc Newcastle,106,84,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,25.37313433,1,0,5.816067226,0,5.288461538,2
Hunter Valley exc Newcastle,106,85,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,-31.97831978,0,0,8.407560815,0,5.288461538,2
Hunter Valley exc Newcastle,106,89,4.76401994,1,5.521688482,2,272.5,320,3,3,67400,2,,,-43.42105263,-9.701492537,18.44284925,0,1,2,3.44116144,1,16287,16361,0.454350095,1,106,,1,7.744874715,2,0,3.879472423,0,5.288461538,2
Illawarra,107,11,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,91.80327869,0,0,1.775513209,3,3.333333333,1
Illawarra,107,12,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,100.3076923,0,0,1.775513209,3,3.333333333,1
Illawarra,107,13,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,1,1,1,1.934726957,2,3.333333333,1
Illawarra,107,14,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,45.62926224,3,0,1.38456451,3,3.333333333,1
Illawarra,107,21,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,128.9516129,3,0,3.044104943,1,3.333333333,1
Illawarra,107,22,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,47.15096926,2,0,2.395599968,2,3.333333333,1
Illawarra,107,23,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,8.4609076,2,2,2.744430198,2,3.333333333,1
Illawarra,107,24,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,103.898051,2,1,1.983106736,2,3.333333333,1
Illawarra,107,25,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,61.91910499,2,3,0.842000852,3,3.333333333,1
Illawarra,107,26,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,107.3770492,1,1,2.189164464,2,3.333333333,1
Illawarra,107,27,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,74.73540457,2,1,1.637641677,3,3.333333333,1
Illawarra,107,31,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,31.36966127,1,1,1.48376513,3,3.333333333,1
Illawarra,107,32,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,23.13284865,2,2,3.672178202,0,3.333333333,1
Illawarra,107,33,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,46.11398964,0,3,3.087091782,1,3.333333333,1
Illawarra,107,34,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.45929339,3,2,3.928639959,0,3.333333333,1
Illawarra,107,35,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.429941396,1,2,3.215717391,1,3.333333333,1
Illawarra,107,36,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,9.794520548,1,0,4.462419792,0,3.333333333,1
Illawarra,107,39,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.35557987,1,0,1.495232111,3,3.333333333,1
Illawarra,107,41,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,77.74657775,2,1,3.48189448,0,3.333333333,1
Illawarra,107,42,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.19983172,1,0,4.393815552,0,3.333333333,1
Illawarra,107,43,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-8.002936858,1,0,5.277350171,0,3.333333333,1
Illawarra,107,44,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-25.52499261,1,0,3.334412454,1,3.333333333,1
Illawarra,107,45,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,17.78036026,2,0,2.763530685,2,3.333333333,1
Illawarra,107,51,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.535082122,2,3.333333333,1
Illawarra,107,52,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.826080167,1,3.333333333,1
Illawarra,107,53,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,3.294490254,1,3.333333333,1
Illawarra,107,54,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,11.91066998,1,0,4.703538895,0,3.333333333,1
Illawarra,107,55,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,21.50189087,2,0,1.166403088,3,3.333333333,1
Illawarra,107,56,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,85.13011152,3,0,3.351366358,1,3.333333333,1
Illawarra,107,59,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.11323764,1,0,2.833331772,1,3.333333333,1
Illawarra,107,61,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,2.228915663,2,0,1.418062031,3,3.333333333,1
Illawarra,107,62,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.11355311,2,0,5.58626565,0,3.333333333,1
Illawarra,107,63,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.54565061,3,0,2.852111249,1,3.333333333,1
Illawarra,107,71,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.91752577,1,0,3.517283791,0,3.333333333,1
Illawarra,107,72,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,4.54891329,0,3.333333333,1
Illawarra,107,73,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,2.452576498,2,3.333333333,1
Illawarra,107,74,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-10.44776119,1,0,6.827084124,0,3.333333333,1
Illawarra,107,81,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-3.484320557,2,0,5.323702597,0,3.333333333,1
Illawarra,107,82,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,36.72316384,2,0,8.599890638,0,3.333333333,1
Illawarra,107,83,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-19.93704092,0,0,7.394282019,0,3.333333333,1
Illawarra,107,84,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-29.18395574,1,0,5.816067226,0,3.333333333,1
Illawarra,107,85,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-4.465493911,2,0,8.407560815,0,3.333333333,1
Illawarra,107,89,4.022070821,2,17.10680631,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.419354839,1,0,3.879472423,0,3.333333333,1
Mid North Coast,108,11,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,69.97782705,2,0,1.775513209,3,-3.03030303,0
Mid North Coast,108,12,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,500.2145923,3,0,1.775513209,3,-3.03030303,0
Mid North Coast,108,13,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,24.48519041,2,1,1.934726957,2,-3.03030303,0
Mid North Coast,108,14,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,45.62926224,1,0,1.38456451,3,-3.03030303,0
Mid North Coast,108,21,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,128.9516129,2,0,3.044104943,1,-3.03030303,0
Mid North Coast,108,22,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,72.55301794,3,0,2.395599968,2,-3.03030303,0
Mid North Coast,108,23,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,130.9475397,3,2,2.744430198,2,-3.03030303,0
Mid North Coast,108,24,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,54.53815261,2,1,1.983106736,2,-3.03030303,0
Mid North Coast,108,25,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,61.91910499,0,3,0.842000852,3,-3.03030303,0
Mid North Coast,108,26,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,120.0889248,3,1,2.189164464,2,-3.03030303,0
Mid North Coast,108,27,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,74.73540457,2,1,1.637641677,3,-3.03030303,0
Mid North Coast,108,31,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,62.3119015,2,1,1.48376513,3,-3.03030303,0
Mid North Coast,108,32,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,23.13284865,2,2,3.672178202,0,-3.03030303,0
Mid North Coast,108,33,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,33.96674584,1,3,3.087091782,1,-3.03030303,0
Mid North Coast,108,34,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,51.45929339,2,2,3.928639959,0,-3.03030303,0
Mid North Coast,108,35,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,8.955223881,2,2,3.215717391,1,-3.03030303,0
Mid North Coast,108,36,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,88.31775701,3,0,4.462419792,0,-3.03030303,0
Mid North Coast,108,39,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,25.35557987,1,0,1.495232111,3,-3.03030303,0
Mid North Coast,108,41,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,77.74657775,2,1,3.48189448,0,-3.03030303,0
Mid North Coast,108,42,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,25.19983172,0,0,4.393815552,0,-3.03030303,0
Mid North Coast,108,43,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-8.002936858,1,0,5.277350171,0,-3.03030303,0
Mid North Coast,108,44,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-15.98272138,1,0,3.334412454,1,-3.03030303,0
Mid North Coast,108,45,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,17.78036026,1,0,2.763530685,2,-3.03030303,0
Mid North Coast,108,51,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,2.535082122,2,-3.03030303,0
Mid North Coast,108,52,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,2.826080167,1,-3.03030303,0
Mid North Coast,108,53,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,52.88544358,2,0,3.294490254,1,-3.03030303,0
Mid North Coast,108,54,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,37.71313942,3,0,4.703538895,0,-3.03030303,0
Mid North Coast,108,55,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,50,3,0,1.166403088,3,-3.03030303,0
Mid North Coast,108,56,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,85.13011152,1,0,3.351366358,1,-3.03030303,0
Mid North Coast,108,59,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,44.4527178,3,0,2.833331772,1,-3.03030303,0
Mid North Coast,108,61,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,23.71541502,3,0,1.418062031,3,-3.03030303,0
Mid North Coast,108,62,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,15.92039801,3,0,5.58626565,0,-3.03030303,0
Mid North Coast,108,63,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,51.54565061,2,0,2.852111249,1,-3.03030303,0
Mid North Coast,108,71,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,5.24137931,1,0,3.517283791,0,-3.03030303,0
Mid North Coast,108,72,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,119.5325543,3,0,4.54891329,0,-3.03030303,0
Mid North Coast,108,73,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,119.5325543,3,0,2.452576498,2,-3.03030303,0
Mid North Coast,108,74,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,5.614035088,2,0,6.827084124,0,-3.03030303,0
Mid North Coast,108,81,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,48.34515366,3,0,5.323702597,0,-3.03030303,0
Mid North Coast,108,82,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,72.15346535,3,0,8.599890638,0,-3.03030303,0
Mid North Coast,108,83,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,17.7920686,2,0,7.394282019,0,-3.03030303,0
Mid North Coast,108,84,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,33.8740458,3,0,5.816067226,0,-3.03030303,0
Mid North Coast,108,85,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,-2.748091603,3,0,8.407560815,0,-3.03030303,0
Mid North Coast,108,89,4.76401994,1,11.83306837,3,445,400,1,1,45100,1,,,-12.12121212,-18.18181818,16.30811936,2,0,1,4.365944298,1,14834,14914,0.539301604,1,108,,1,24.47643979,3,0,3.879472423,0,-3.03030303,0
Murray,109,11,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,69.97782705,1,0,1.775513209,3,-7.608695652,0
Murray,109,12,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,750.1805054,3,0,1.775513209,3,-7.608695652,0
Murray,109,13,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.9231852,2,1,1.934726957,2,-7.608695652,0
Murray,109,14,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,27.47440273,2,0,1.38456451,3,-7.608695652,0
Murray,109,21,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,179.9450549,3,0,3.044104943,1,-7.608695652,0
Murray,109,22,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,72.55301794,1,0,2.395599968,2,-7.608695652,0
Murray,109,23,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,130.9475397,2,2,2.744430198,2,-7.608695652,0
Murray,109,24,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.53815261,1,1,1.983106736,2,-7.608695652,0
Murray,109,25,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,61.61550185,2,3,0.842000852,3,-7.608695652,0
Murray,109,26,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,191.7365642,3,1,2.189164464,2,-7.608695652,0
Murray,109,27,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,75.63510393,3,1,1.637641677,3,-7.608695652,0
Murray,109,31,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,62.3119015,1,1,1.48376513,3,-7.608695652,0
Murray,109,32,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,104.6534653,3,2,3.672178202,0,-7.608695652,0
Murray,109,33,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.99121265,1,3,3.087091782,1,-7.608695652,0
Murray,109,34,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.36030341,2,2,3.928639959,0,-7.608695652,0
Murray,109,35,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,8.955223881,0,2,3.215717391,1,-7.608695652,0
Murray,109,36,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,88.31775701,3,0,4.462419792,0,-7.608695652,0
Murray,109,39,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,84.05017921,3,0,1.495232111,3,-7.608695652,0
Murray,109,41,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,107.1213036,3,1,3.48189448,0,-7.608695652,0
Murray,109,42,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,64.26332288,3,0,4.393815552,0,-7.608695652,0
Murray,109,43,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,10.49180328,2,0,5.277350171,0,-7.608695652,0
Murray,109,44,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,30.78614623,3,0,3.334412454,1,-7.608695652,0
Murray,109,45,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.29425557,2,0,2.763530685,2,-7.608695652,0
Murray,109,51,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.535082122,2,-7.608695652,0
Murray,109,52,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.826080167,1,-7.608695652,0
Murray,109,53,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,3.294490254,1,-7.608695652,0
Murray,109,54,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,37.71313942,2,0,4.703538895,0,-7.608695652,0
Murray,109,55,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,50,3,0,1.166403088,3,-7.608695652,0
Murray,109,56,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.92172211,2,0,3.351366358,1,-7.608695652,0
Murray,109,59,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.4527178,1,0,2.833331772,1,-7.608695652,0
Murray,109,61,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.00293255,3,0,1.418062031,3,-7.608695652,0
Murray,109,62,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.92039801,2,0,5.58626565,0,-7.608695652,0
Murray,109,63,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,158.4170854,3,0,2.852111249,1,-7.608695652,0
Murray,109,71,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,16.67659321,2,0,3.517283791,0,-7.608695652,0
Murray,109,72,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,4.54891329,0,-7.608695652,0
Murray,109,73,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,2.452576498,2,-7.608695652,0
Murray,109,74,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.57348407,3,0,6.827084124,0,-7.608695652,0
Murray,109,81,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,48.34515366,1,0,5.323702597,0,-7.608695652,0
Murray,109,82,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,116.2790698,3,0,8.599890638,0,-7.608695652,0
Murray,109,83,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,17.7920686,1,0,7.394282019,0,-7.608695652,0
Murray,109,84,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.8740458,0,0,5.816067226,0,-7.608695652,0
Murray,109,85,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,-2.748091603,1,0,8.407560815,0,-7.608695652,0
Murray,109,89,4.76401994,1,-21.02988372,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,24.47643979,1,0,3.879472423,0,-7.608695652,0
New England and North West,110,11,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,12.51141553,1,0,1.775513209,3,-4.316546763,0
New England and North West,110,12,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,750.1805054,2,0,1.775513209,3,-4.316546763,0
New England and North West,110,13,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.9231852,1,1,1.934726957,2,-4.316546763,0
New England and North West,110,14,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.24119241,3,0,1.38456451,3,-4.316546763,0
New England and North West,110,21,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,179.9450549,1,0,3.044104943,1,-4.316546763,0
New England and North West,110,22,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.44520977,2,0,2.395599968,2,-4.316546763,0
New England and North West,110,23,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,41.21385446,0,2,2.744430198,2,-4.316546763,0
New England and North West,110,24,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,83.36414048,2,1,1.983106736,2,-4.316546763,0
New England and North West,110,25,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,105.9595407,3,3,0.842000852,3,-4.316546763,0
New England and North West,110,26,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,191.7365642,3,1,2.189164464,2,-4.316546763,0
New England and North West,110,27,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,75.63510393,2,1,1.637641677,3,-4.316546763,0
New England and North West,110,31,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-5.532503458,0,1,1.48376513,3,-4.316546763,0
New England and North West,110,32,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,104.6534653,1,2,3.672178202,0,-4.316546763,0
New England and North West,110,33,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.99121265,1,3,3.087091782,1,-4.316546763,0
New England and North West,110,34,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,29.35251799,3,2,3.928639959,0,-4.316546763,0
New England and North West,110,35,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,0,2,2,3.215717391,1,-4.316546763,0
New England and North West,110,36,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,85.64814815,0,0,4.462419792,0,-4.316546763,0
New England and North West,110,39,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,135.479798,3,0,1.495232111,3,-4.316546763,0
New England and North West,110,41,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,108.3188908,3,1,3.48189448,0,-4.316546763,0
New England and North West,110,42,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,87.60162602,3,0,4.393815552,0,-4.316546763,0
New England and North West,110,43,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.23146474,3,0,5.277350171,0,-4.316546763,0
New England and North West,110,44,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,30.78614623,1,0,3.334412454,1,-4.316546763,0
New England and North West,110,45,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.29425557,0,0,2.763530685,2,-4.316546763,0
New England and North West,110,51,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.535082122,2,-4.316546763,0
New England and North West,110,52,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.826080167,1,-4.316546763,0
New England and North West,110,53,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,3.294490254,1,-4.316546763,0
New England and North West,110,54,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,32.73305085,2,0,4.703538895,0,-4.316546763,0
New England and North West,110,55,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.30103806,0,0,1.166403088,3,-4.316546763,0
New England and North West,110,56,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,902.3809524,3,0,3.351366358,1,-4.316546763,0
New England and North West,110,59,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,3.760445682,1,0,2.833331772,1,-4.316546763,0
New England and North West,110,61,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,39.00293255,1,0,1.418062031,3,-4.316546763,0
New England and North West,110,62,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,14.07867495,2,0,5.58626565,0,-4.316546763,0
New England and North West,110,63,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,158.4170854,2,0,2.852111249,1,-4.316546763,0
New England and North West,110,71,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.24486508,2,0,3.517283791,0,-4.316546763,0
New England and North West,110,72,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,4.54891329,0,-4.316546763,0
New England and North West,110,73,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,2.452576498,2,-4.316546763,0
New England and North West,110,74,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,54.57348407,3,0,6.827084124,0,-4.316546763,0
New England and North West,110,81,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-7.524271845,2,0,5.323702597,0,-4.316546763,0
New England and North West,110,82,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,116.2790698,0,0,8.599890638,0,-4.316546763,0
New England and North West,110,83,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-37.30822873,0,0,7.394282019,0,-4.316546763,0
New England and North West,110,84,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,25.37313433,2,0,5.816067226,0,-4.316546763,0
New England and North West,110,85,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-31.97831978,1,0,8.407560815,0,-4.316546763,0
New England and North West,110,89,4.76401994,1,1.228766088,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,7.744874715,2,0,3.879472423,0,-4.316546763,0
Newcastle and Lake Macquarie,111,11,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,91.80327869,2,0,1.775513209,3,4.105571848,1
Newcastle and Lake Macquarie,111,12,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,100.3076923,2,0,1.775513209,3,4.105571848,1
Newcastle and Lake Macquarie,111,13,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,11.08094349,1,1,1.934726957,2,4.105571848,1
Newcastle and Lake Macquarie,111,14,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,44.24119241,0,0,1.38456451,3,4.105571848,1
Newcastle and Lake Macquarie,111,21,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,28.59122402,0,0,3.044104943,1,4.105571848,1
Newcastle and Lake Macquarie,111,22,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.44520977,0,0,2.395599968,2,4.105571848,1
Newcastle and Lake Macquarie,111,23,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.708737864,1,2,2.744430198,2,4.105571848,1
Newcastle and Lake Macquarie,111,24,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,103.898051,3,1,1.983106736,2,4.105571848,1
Newcastle and Lake Macquarie,111,25,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,105.9595407,0,3,0.842000852,3,4.105571848,1
Newcastle and Lake Macquarie,111,26,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,107.3770492,3,1,2.189164464,2,4.105571848,1
Newcastle and Lake Macquarie,111,27,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,60.02029427,1,1,1.637641677,3,4.105571848,1
Newcastle and Lake Macquarie,111,31,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,31.36966127,2,1,1.48376513,3,4.105571848,1
Newcastle and Lake Macquarie,111,32,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,8.655616943,2,2,3.672178202,0,4.105571848,1
Newcastle and Lake Macquarie,111,33,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,46.11398964,2,3,3.087091782,1,4.105571848,1
Newcastle and Lake Macquarie,111,34,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,29.35251799,2,2,3.928639959,0,4.105571848,1
Newcastle and Lake Macquarie,111,35,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,0,1,2,3.215717391,1,4.105571848,1
Newcastle and Lake Macquarie,111,36,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.589041096,1,0,4.462419792,0,4.105571848,1
Newcastle and Lake Macquarie,111,39,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,135.479798,1,0,1.495232111,3,4.105571848,1
Newcastle and Lake Macquarie,111,41,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,108.3188908,1,1,3.48189448,0,4.105571848,1
Newcastle and Lake Macquarie,111,42,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,87.60162602,0,0,4.393815552,0,4.105571848,1
Newcastle and Lake Macquarie,111,43,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.23146474,1,0,5.277350171,0,4.105571848,1
Newcastle and Lake Macquarie,111,44,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-25,0,0,3.334412454,1,4.105571848,1
Newcastle and Lake Macquarie,111,45,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-22.24215247,0,0,2.763530685,2,4.105571848,1
Newcastle and Lake Macquarie,111,51,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.535082122,2,4.105571848,1
Newcastle and Lake Macquarie,111,52,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.826080167,1,4.105571848,1
Newcastle and Lake Macquarie,111,53,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,3.294490254,1,4.105571848,1
Newcastle and Lake Macquarie,111,54,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,15.06849315,1,0,4.703538895,0,4.105571848,1
Newcastle and Lake Macquarie,111,55,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,18.8034188,2,0,1.166403088,3,4.105571848,1
Newcastle and Lake Macquarie,111,56,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,902.3809524,3,0,3.351366358,1,4.105571848,1
Newcastle and Lake Macquarie,111,59,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,27.11323764,2,0,2.833331772,1,4.105571848,1
Newcastle and Lake Macquarie,111,61,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,1.708428246,2,0,1.418062031,3,4.105571848,1
Newcastle and Lake Macquarie,111,62,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,14.07867495,1,0,5.58626565,0,4.105571848,1
Newcastle and Lake Macquarie,111,63,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,17.56007394,0,0,2.852111249,1,4.105571848,1
Newcastle and Lake Macquarie,111,71,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.24486508,2,0,3.517283791,0,4.105571848,1
Newcastle and Lake Macquarie,111,72,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,4.54891329,0,4.105571848,1
Newcastle and Lake Macquarie,111,73,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,2.452576498,2,4.105571848,1
Newcastle and Lake Macquarie,111,74,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,43.24324324,1,0,6.827084124,0,4.105571848,1
Newcastle and Lake Macquarie,111,81,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-7.524271845,0,0,5.323702597,0,4.105571848,1
Newcastle and Lake Macquarie,111,82,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,36.72316384,2,0,8.599890638,0,4.105571848,1
Newcastle and Lake Macquarie,111,83,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-19.93704092,1,0,7.394282019,0,4.105571848,1
Newcastle and Lake Macquarie,111,84,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,25.37313433,1,0,5.816067226,0,4.105571848,1
Newcastle and Lake Macquarie,111,85,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-31.97831978,0,0,8.407560815,0,4.105571848,1
Newcastle and Lake Macquarie,111,89,4.76401994,1,16.51830311,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,7.744874715,2,0,3.879472423,0,4.105571848,1
Richmond - Tweed,112,11,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,91.80327869,2,0,1.775513209,3,7.947019868,2
Richmond - Tweed,112,12,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,500.2145923,3,0,1.775513209,3,7.947019868,2
Richmond - Tweed,112,13,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,24.48519041,2,1,1.934726957,2,7.947019868,2
Richmond - Tweed,112,14,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,10.71253071,1,0,1.38456451,3,7.947019868,2
Richmond - Tweed,112,21,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,33.30965909,2,0,3.044104943,1,7.947019868,2
Richmond - Tweed,112,22,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,72.55301794,3,0,2.395599968,2,7.947019868,2
Richmond - Tweed,112,23,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,130.9475397,3,2,2.744430198,2,7.947019868,2
Richmond - Tweed,112,24,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,103.898051,2,1,1.983106736,2,7.947019868,2
Richmond - Tweed,112,25,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,20.41696621,0,3,0.842000852,3,7.947019868,2
Richmond - Tweed,112,26,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,120.0889248,3,1,2.189164464,2,7.947019868,2
Richmond - Tweed,112,27,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,65.04132231,2,1,1.637641677,3,7.947019868,2
Richmond - Tweed,112,31,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,62.3119015,2,1,1.48376513,3,7.947019868,2
Richmond - Tweed,112,32,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,21.76560122,2,2,3.672178202,0,7.947019868,2
Richmond - Tweed,112,33,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,46.11398964,1,3,3.087091782,1,7.947019868,2
Richmond - Tweed,112,34,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,9.89010989,2,2,3.928639959,0,7.947019868,2
Richmond - Tweed,112,35,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,8.955223881,2,2,3.215717391,1,7.947019868,2
Richmond - Tweed,112,36,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,88.31775701,3,0,4.462419792,0,7.947019868,2
Richmond - Tweed,112,39,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,19.95359629,1,0,1.495232111,3,7.947019868,2
Richmond - Tweed,112,41,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,74.83974359,2,1,3.48189448,0,7.947019868,2
Richmond - Tweed,112,42,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,12.34106208,0,0,4.393815552,0,7.947019868,2
Richmond - Tweed,112,43,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-13.05285868,1,0,5.277350171,0,7.947019868,2
Richmond - Tweed,112,44,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-15.98272138,1,0,3.334412454,1,7.947019868,2
Richmond - Tweed,112,45,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-10.38834951,1,0,2.763530685,2,7.947019868,2
Richmond - Tweed,112,51,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,2.535082122,2,7.947019868,2
Richmond - Tweed,112,52,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,2.826080167,1,7.947019868,2
Richmond - Tweed,112,53,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,52.88544358,2,0,3.294490254,1,7.947019868,2
Richmond - Tweed,112,54,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,37.71313942,3,0,4.703538895,0,7.947019868,2
Richmond - Tweed,112,55,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,50,3,0,1.166403088,3,7.947019868,2
Richmond - Tweed,112,56,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,65.07936508,1,0,3.351366358,1,7.947019868,2
Richmond - Tweed,112,59,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,44.4527178,3,0,2.833331772,1,7.947019868,2
Richmond - Tweed,112,61,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,23.71541502,3,0,1.418062031,3,7.947019868,2
Richmond - Tweed,112,62,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,15.92039801,3,0,5.58626565,0,7.947019868,2
Richmond - Tweed,112,63,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-1.572617946,2,0,2.852111249,1,7.947019868,2
Richmond - Tweed,112,71,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,13.91752577,1,0,3.517283791,0,7.947019868,2
Richmond - Tweed,112,72,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,119.5325543,3,0,4.54891329,0,7.947019868,2
Richmond - Tweed,112,73,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,119.5325543,3,0,2.452576498,2,7.947019868,2
Richmond - Tweed,112,74,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,5.614035088,2,0,6.827084124,0,7.947019868,2
Richmond - Tweed,112,81,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,48.34515366,3,0,5.323702597,0,7.947019868,2
Richmond - Tweed,112,82,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,72.15346535,3,0,8.599890638,0,7.947019868,2
Richmond - Tweed,112,83,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,17.7920686,2,0,7.394282019,0,7.947019868,2
Richmond - Tweed,112,84,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,33.8740458,3,0,5.816067226,0,7.947019868,2
Richmond - Tweed,112,85,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,-2.748091603,3,0,8.407560815,0,7.947019868,2
Richmond - Tweed,112,89,4.76401994,1,18.11854957,3,521.25,460,1,0,50400,1,,,-20,-10.9540636,15.91346154,1,0,1,3.203093267,2,20141,20182,0.203564868,0,112,,1,24.47643979,3,0,3.879472423,0,7.947019868,2
Riverina,113,11,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,69.97782705,1,0,1.775513209,3,11.45833333,3
Riverina,113,12,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,750.1805054,3,0,1.775513209,3,11.45833333,3
Riverina,113,13,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.9231852,2,1,1.934726957,2,11.45833333,3
Riverina,113,14,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,27.47440273,2,0,1.38456451,3,11.45833333,3
Riverina,113,21,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,179.9450549,3,0,3.044104943,1,11.45833333,3
Riverina,113,22,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,72.55301794,1,0,2.395599968,2,11.45833333,3
Riverina,113,23,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,130.9475397,2,2,2.744430198,2,11.45833333,3
Riverina,113,24,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.53815261,1,1,1.983106736,2,11.45833333,3
Riverina,113,25,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,61.61550185,2,3,0.842000852,3,11.45833333,3
Riverina,113,26,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,191.7365642,3,1,2.189164464,2,11.45833333,3
Riverina,113,27,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,75.63510393,3,1,1.637641677,3,11.45833333,3
Riverina,113,31,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,62.3119015,1,1,1.48376513,3,11.45833333,3
Riverina,113,32,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,104.6534653,3,2,3.672178202,0,11.45833333,3
Riverina,113,33,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.99121265,1,3,3.087091782,1,11.45833333,3
Riverina,113,34,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.36030341,2,2,3.928639959,0,11.45833333,3
Riverina,113,35,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,8.955223881,0,2,3.215717391,1,11.45833333,3
Riverina,113,36,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,88.31775701,3,0,4.462419792,0,11.45833333,3
Riverina,113,39,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,84.05017921,3,0,1.495232111,3,11.45833333,3
Riverina,113,41,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,107.1213036,3,1,3.48189448,0,11.45833333,3
Riverina,113,42,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,64.26332288,3,0,4.393815552,0,11.45833333,3
Riverina,113,43,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,10.49180328,2,0,5.277350171,0,11.45833333,3
Riverina,113,44,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,30.78614623,3,0,3.334412454,1,11.45833333,3
Riverina,113,45,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.29425557,2,0,2.763530685,2,11.45833333,3
Riverina,113,51,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.535082122,2,11.45833333,3
Riverina,113,52,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.826080167,1,11.45833333,3
Riverina,113,53,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,3.294490254,1,11.45833333,3
Riverina,113,54,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,37.71313942,2,0,4.703538895,0,11.45833333,3
Riverina,113,55,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,50,3,0,1.166403088,3,11.45833333,3
Riverina,113,56,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.92172211,2,0,3.351366358,1,11.45833333,3
Riverina,113,59,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.4527178,1,0,2.833331772,1,11.45833333,3
Riverina,113,61,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.00293255,3,0,1.418062031,3,11.45833333,3
Riverina,113,62,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.92039801,2,0,5.58626565,0,11.45833333,3
Riverina,113,63,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,158.4170854,3,0,2.852111249,1,11.45833333,3
Riverina,113,71,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,16.67659321,2,0,3.517283791,0,11.45833333,3
Riverina,113,72,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,4.54891329,0,11.45833333,3
Riverina,113,73,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,2.452576498,2,11.45833333,3
Riverina,113,74,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.57348407,3,0,6.827084124,0,11.45833333,3
Riverina,113,81,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,48.34515366,1,0,5.323702597,0,11.45833333,3
Riverina,113,82,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,116.2790698,3,0,8.599890638,0,11.45833333,3
Riverina,113,83,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,17.7920686,1,0,7.394282019,0,11.45833333,3
Riverina,113,84,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.8740458,0,0,5.816067226,0,11.45833333,3
Riverina,113,85,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,-2.748091603,1,0,8.407560815,0,11.45833333,3
Riverina,113,89,5.505969058,1,10.83912951,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,24.47643979,1,0,3.879472423,0,11.45833333,3
Southern Highlands and Shoalhaven,114,11,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,1,0,1.775513209,3,3.703703704,1
Southern Highlands and Shoalhaven,114,12,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,750.1805054,1,0,1.775513209,3,3.703703704,1
Southern Highlands and Shoalhaven,114,13,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,125.7944587,3,1,1.934726957,2,3.703703704,1
Southern Highlands and Shoalhaven,114,14,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.37370994,2,0,1.38456451,3,3.703703704,1
Southern Highlands and Shoalhaven,114,21,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,179.9450549,0,0,3.044104943,1,3.703703704,1
Southern Highlands and Shoalhaven,114,22,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,128.2010096,3,0,2.395599968,2,3.703703704,1
Southern Highlands and Shoalhaven,114,23,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,41.21385446,2,2,2.744430198,2,3.703703704,1
Southern Highlands and Shoalhaven,114,24,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,21.42658895,1,1,1.983106736,2,3.703703704,1
Southern Highlands and Shoalhaven,114,25,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,153.2659637,3,3,0.842000852,3,3.703703704,1
Southern Highlands and Shoalhaven,114,26,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,191.7365642,0,1,2.189164464,2,3.703703704,1
Southern Highlands and Shoalhaven,114,27,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,75.63510393,1,1,1.637641677,3,3.703703704,1
Southern Highlands and Shoalhaven,114,31,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,24.98915401,2,1,1.48376513,3,3.703703704,1
Southern Highlands and Shoalhaven,114,32,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,104.6534653,2,2,3.672178202,0,3.703703704,1
Southern Highlands and Shoalhaven,114,33,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,50,2,3,3.087091782,1,3.703703704,1
Southern Highlands and Shoalhaven,114,34,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,30.05836576,3,2,3.928639959,0,3.703703704,1
Southern Highlands and Shoalhaven,114,35,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,38.31775701,3,2,3.215717391,1,3.703703704,1
Southern Highlands and Shoalhaven,114,36,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,85.64814815,0,0,4.462419792,0,3.703703704,1
Southern Highlands and Shoalhaven,114,39,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,220.1716738,3,0,1.495232111,3,3.703703704,1
Southern Highlands and Shoalhaven,114,41,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,109.0305445,3,1,3.48189448,0,3.703703704,1
Southern Highlands and Shoalhaven,114,42,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,64.26332288,1,0,4.393815552,0,3.703703704,1
Southern Highlands and Shoalhaven,114,43,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,10.49180328,0,0,5.277350171,0,3.703703704,1
Southern Highlands and Shoalhaven,114,44,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,80.11152416,3,0,3.334412454,1,3.703703704,1
Southern Highlands and Shoalhaven,114,45,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,100,3,0,2.763530685,2,3.703703704,1
Southern Highlands and Shoalhaven,114,51,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.535082122,2,3.703703704,1
Southern Highlands and Shoalhaven,114,52,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.826080167,1,3.703703704,1
Southern Highlands and Shoalhaven,114,53,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,3.294490254,1,3.703703704,1
Southern Highlands and Shoalhaven,114,54,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.73305085,2,0,4.703538895,0,3.703703704,1
Southern Highlands and Shoalhaven,114,55,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,66.55328798,3,0,1.166403088,3,3.703703704,1
Southern Highlands and Shoalhaven,114,56,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,500,3,0,3.351366358,1,3.703703704,1
Southern Highlands and Shoalhaven,114,59,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,57.24381625,3,0,2.833331772,1,3.703703704,1
Southern Highlands and Shoalhaven,114,61,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,39.00293255,2,0,1.418062031,3,3.703703704,1
Southern Highlands and Shoalhaven,114,62,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.25806452,3,0,5.58626565,0,3.703703704,1
Southern Highlands and Shoalhaven,114,63,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,158.4170854,3,0,2.852111249,1,3.703703704,1
Southern Highlands and Shoalhaven,114,71,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,16.67659321,2,0,3.517283791,0,3.703703704,1
Southern Highlands and Shoalhaven,114,72,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,4.54891329,0,3.703703704,1
Southern Highlands and Shoalhaven,114,73,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,2.452576498,2,3.703703704,1
Southern Highlands and Shoalhaven,114,74,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,54.57348407,3,0,6.827084124,0,3.703703704,1
Southern Highlands and Shoalhaven,114,81,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,5.323702597,0,3.703703704,1
Southern Highlands and Shoalhaven,114,82,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,116.2790698,0,0,8.599890638,0,3.703703704,1
Southern Highlands and Shoalhaven,114,83,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,7.394282019,0,3.703703704,1
Southern Highlands and Shoalhaven,114,84,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,13.59223301,2,0,5.816067226,0,3.703703704,1
Southern Highlands and Shoalhaven,114,85,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-37.02956989,0,0,8.407560815,0,3.703703704,1
Southern Highlands and Shoalhaven,114,89,4.76401994,1,21.86066172,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,12.92834891,2,0,3.879472423,0,3.703703704,1
Sydney - Baulkham Hills and Hawkesbury,115,11,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,23.34152334,2,0,1.775513209,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,12,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,1,0,0,1.775513209,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,13,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,125.7944587,2,1,1.934726957,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,14,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,55.32359081,3,0,1.38456451,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,21,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,44.44444444,2,0,3.044104943,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,22,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,128.2010096,2,0,2.395599968,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,23,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,59.55574183,3,2,2.744430198,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,24,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,61.29032258,2,1,1.983106736,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,25,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,153.2659637,2,3,0.842000852,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,26,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,30.09463722,2,1,2.189164464,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,27,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,28.47533632,1,1,1.637641677,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,31,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,77.05627706,3,1,1.48376513,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,32,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,44.40860215,3,2,3.672178202,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,33,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,99.29824561,3,3,3.087091782,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,34,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,92.81183932,3,2,3.928639959,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,35,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,55.01858736,3,2,3.215717391,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,36,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,52.25522552,2,0,4.462419792,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,39,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,220.1716738,2,0,1.495232111,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,41,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,109.0305445,2,1,3.48189448,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,42,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,85.30612245,3,0,4.393815552,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,43,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,37.76150628,3,0,5.277350171,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,44,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,80.11152416,2,0,3.334412454,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,45,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,100,2,0,2.763530685,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,51,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,2.535082122,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,52,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,2.826080167,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,53,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.0952381,3,0,3.294490254,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,54,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,48.72685185,3,0,4.703538895,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,55,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,66.55328798,2,0,1.166403088,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,56,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,500,3,0,3.351366358,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,59,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,57.24381625,2,0,2.833331772,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,61,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,36.63101604,3,0,1.418062031,3,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,62,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,48.37872892,3,0,5.58626565,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,63,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,83.4179357,2,0,2.852111249,1,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,71,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,63.18944844,3,0,3.517283791,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,72,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,121.3250518,3,0,4.54891329,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,73,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,121.3250518,3,0,2.452576498,2,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,74,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,53.45679012,3,0,6.827084124,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,81,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,23.84792627,3,0,5.323702597,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,82,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,70.07874016,3,0,8.599890638,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,83,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,28.4843869,3,0,7.394282019,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,84,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,72.19589258,3,0,5.816067226,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,85,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,-13.77018044,2,0,8.407560815,0,0.510204082,0
Sydney - Baulkham Hills and Hawkesbury,115,89,6.281881935,0,-7.665991175,0,1150,575,0,0,116100,3,,,1.398601399,-6.85840708,31.02431835,3,1,3,1.302621175,3,23284,24092,3.470194125,3,115,,1,35.57951482,3,0,3.879472423,0,0.510204082,0
Sydney - Blacktown,116,11,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,23.34152334,2,0,1.775513209,3,9.497206704,2
Sydney - Blacktown,116,12,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,0,0,0,1.775513209,3,9.497206704,2
Sydney - Blacktown,116,13,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.45209581,2,1,1.934726957,2,9.497206704,2
Sydney - Blacktown,116,14,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,55.32359081,3,0,1.38456451,3,9.497206704,2
Sydney - Blacktown,116,21,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,44.44444444,2,0,3.044104943,1,9.497206704,2
Sydney - Blacktown,116,22,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.5630713,2,0,2.395599968,2,9.497206704,2
Sydney - Blacktown,116,23,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,59.55574183,3,2,2.744430198,2,9.497206704,2
Sydney - Blacktown,116,24,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,61.29032258,2,1,1.983106736,2,9.497206704,2
Sydney - Blacktown,116,25,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,49.80031949,2,3,0.842000852,3,9.497206704,2
Sydney - Blacktown,116,26,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,30.09463722,2,1,2.189164464,2,9.497206704,2
Sydney - Blacktown,116,27,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.47533632,1,1,1.637641677,3,9.497206704,2
Sydney - Blacktown,116,31,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,77.05627706,3,1,1.48376513,3,9.497206704,2
Sydney - Blacktown,116,32,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,44.40860215,3,2,3.672178202,0,9.497206704,2
Sydney - Blacktown,116,33,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,99.29824561,3,3,3.087091782,1,9.497206704,2
Sydney - Blacktown,116,34,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,92.81183932,3,2,3.928639959,0,9.497206704,2
Sydney - Blacktown,116,35,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,55.01858736,3,2,3.215717391,1,9.497206704,2
Sydney - Blacktown,116,36,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,52.25522552,2,0,4.462419792,0,9.497206704,2
Sydney - Blacktown,116,39,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,57.23923197,2,0,1.495232111,3,9.497206704,2
Sydney - Blacktown,116,41,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,50.64575646,2,1,3.48189448,0,9.497206704,2
Sydney - Blacktown,116,42,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,85.30612245,3,0,4.393815552,0,9.497206704,2
Sydney - Blacktown,116,43,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,37.76150628,3,0,5.277350171,0,9.497206704,2
Sydney - Blacktown,116,44,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,21.71492205,2,0,3.334412454,1,9.497206704,2
Sydney - Blacktown,116,45,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,31.03448276,2,0,2.763530685,2,9.497206704,2
Sydney - Blacktown,116,51,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,2.535082122,2,9.497206704,2
Sydney - Blacktown,116,52,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,2.826080167,1,9.497206704,2
Sydney - Blacktown,116,53,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.0952381,3,0,3.294490254,1,9.497206704,2
Sydney - Blacktown,116,54,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,48.72685185,3,0,4.703538895,0,9.497206704,2
Sydney - Blacktown,116,55,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.23674476,2,0,1.166403088,3,9.497206704,2
Sydney - Blacktown,116,56,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,77.36625514,3,0,3.351366358,1,9.497206704,2
Sydney - Blacktown,116,59,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,32.63506064,2,0,2.833331772,1,9.497206704,2
Sydney - Blacktown,116,61,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,36.63101604,3,0,1.418062031,3,9.497206704,2
Sydney - Blacktown,116,62,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,48.37872892,3,0,5.58626565,0,9.497206704,2
Sydney - Blacktown,116,63,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,1.773533424,2,0,2.852111249,1,9.497206704,2
Sydney - Blacktown,116,71,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,63.18944844,3,0,3.517283791,0,9.497206704,2
Sydney - Blacktown,116,72,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,121.3250518,3,0,4.54891329,0,9.497206704,2
Sydney - Blacktown,116,73,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,121.3250518,3,0,2.452576498,2,9.497206704,2
Sydney - Blacktown,116,74,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,45.84103512,3,0,6.827084124,0,9.497206704,2
Sydney - Blacktown,116,81,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,23.84792627,3,0,5.323702597,0,9.497206704,2
Sydney - Blacktown,116,82,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,70.07874016,3,0,8.599890638,0,9.497206704,2
Sydney - Blacktown,116,83,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,28.4843869,3,0,7.394282019,0,9.497206704,2
Sydney - Blacktown,116,84,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,72.19589258,3,0,5.816067226,0,9.497206704,2
Sydney - Blacktown,116,85,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,-13.77018044,2,0,8.407560815,0,9.497206704,2
Sydney - Blacktown,116,89,6.281881935,0,12.41697443,3,808.5,570,0,0,80800,2,,,17.30769231,13.42592593,13.94422311,3,3,1,3.329813816,2,16258,16486,1.402386517,2,116,,1,35.57951482,3,0,3.879472423,0,9.497206704,2
Sydney - City and Inner South,117,11,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,23.34152334,2,0,1.775513209,3,9.148264984,2
Sydney - City and Inner South,117,12,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,0,0,0,1.775513209,3,9.148264984,2
Sydney - City and Inner South,117,13,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.45209581,2,1,1.934726957,2,9.148264984,2
Sydney - City and Inner South,117,14,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,55.32359081,3,0,1.38456451,3,9.148264984,2
Sydney - City and Inner South,117,21,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,44.44444444,2,0,3.044104943,1,9.148264984,2
Sydney - City and Inner South,117,22,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.5630713,2,0,2.395599968,2,9.148264984,2
Sydney - City and Inner South,117,23,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,59.55574183,3,2,2.744430198,2,9.148264984,2
Sydney - City and Inner South,117,24,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,61.29032258,2,1,1.983106736,2,9.148264984,2
Sydney - City and Inner South,117,25,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,49.80031949,2,3,0.842000852,3,9.148264984,2
Sydney - City and Inner South,117,26,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,30.09463722,2,1,2.189164464,2,9.148264984,2
Sydney - City and Inner South,117,27,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.47533632,1,1,1.637641677,3,9.148264984,2
Sydney - City and Inner South,117,31,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,77.05627706,3,1,1.48376513,3,9.148264984,2
Sydney - City and Inner South,117,32,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,44.40860215,3,2,3.672178202,0,9.148264984,2
Sydney - City and Inner South,117,33,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,99.29824561,3,3,3.087091782,1,9.148264984,2
Sydney - City and Inner South,117,34,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,92.81183932,3,2,3.928639959,0,9.148264984,2
Sydney - City and Inner South,117,35,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,55.01858736,3,2,3.215717391,1,9.148264984,2
Sydney - City and Inner South,117,36,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,52.25522552,2,0,4.462419792,0,9.148264984,2
Sydney - City and Inner South,117,39,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,57.23923197,2,0,1.495232111,3,9.148264984,2
Sydney - City and Inner South,117,41,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,50.64575646,2,1,3.48189448,0,9.148264984,2
Sydney - City and Inner South,117,42,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,85.30612245,3,0,4.393815552,0,9.148264984,2
Sydney - City and Inner South,117,43,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,37.76150628,3,0,5.277350171,0,9.148264984,2
Sydney - City and Inner South,117,44,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,21.71492205,2,0,3.334412454,1,9.148264984,2
Sydney - City and Inner South,117,45,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,31.03448276,2,0,2.763530685,2,9.148264984,2
Sydney - City and Inner South,117,51,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,2.535082122,2,9.148264984,2
Sydney - City and Inner South,117,52,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,2.826080167,1,9.148264984,2
Sydney - City and Inner South,117,53,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.0952381,3,0,3.294490254,1,9.148264984,2
Sydney - City and Inner South,117,54,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,48.72685185,3,0,4.703538895,0,9.148264984,2
Sydney - City and Inner South,117,55,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.23674476,2,0,1.166403088,3,9.148264984,2
Sydney - City and Inner South,117,56,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,77.36625514,3,0,3.351366358,1,9.148264984,2
Sydney - City and Inner South,117,59,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,32.63506064,2,0,2.833331772,1,9.148264984,2
Sydney - City and Inner South,117,61,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,36.63101604,3,0,1.418062031,3,9.148264984,2
Sydney - City and Inner South,117,62,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,48.37872892,3,0,5.58626565,0,9.148264984,2
Sydney - City and Inner South,117,63,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,1.773533424,2,0,2.852111249,1,9.148264984,2
Sydney - City and Inner South,117,71,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,63.18944844,3,0,3.517283791,0,9.148264984,2
Sydney - City and Inner South,117,72,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,121.3250518,3,0,4.54891329,0,9.148264984,2
Sydney - City and Inner South,117,73,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,121.3250518,3,0,2.452576498,2,9.148264984,2
Sydney - City and Inner South,117,74,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,45.84103512,3,0,6.827084124,0,9.148264984,2
Sydney - City and Inner South,117,81,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,23.84792627,3,0,5.323702597,0,9.148264984,2
Sydney - City and Inner South,117,82,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,70.07874016,3,0,8.599890638,0,9.148264984,2
Sydney - City and Inner South,117,83,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,28.4843869,3,0,7.394282019,0,9.148264984,2
Sydney - City and Inner South,117,84,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,72.19589258,3,0,5.816067226,0,9.148264984,2
Sydney - City and Inner South,117,85,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,-13.77018044,2,0,8.407560815,0,9.148264984,2
Sydney - City and Inner South,117,89,6.261252502,1,13.86060543,3,1950,1020,0,0,91300,3,,,-17.24137931,8.318687756,25.00276947,1,2,3,3.061408312,2,66772,68350,2.36326604,3,117,,1,35.57951482,3,0,3.879472423,0,9.148264984,2
Sydney - Eastern Suburbs,118,11,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,23.34152334,2,0,1.775513209,3,3.95256917,1
Sydney - Eastern Suburbs,118,12,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,0,0,0,1.775513209,3,3.95256917,1
Sydney - Eastern Suburbs,118,13,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.45209581,2,1,1.934726957,2,3.95256917,1
Sydney - Eastern Suburbs,118,14,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,55.32359081,3,0,1.38456451,3,3.95256917,1
Sydney - Eastern Suburbs,118,21,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,44.44444444,2,0,3.044104943,1,3.95256917,1
Sydney - Eastern Suburbs,118,22,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.5630713,2,0,2.395599968,2,3.95256917,1
Sydney - Eastern Suburbs,118,23,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,59.55574183,3,2,2.744430198,2,3.95256917,1
Sydney - Eastern Suburbs,118,24,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,61.29032258,2,1,1.983106736,2,3.95256917,1
Sydney - Eastern Suburbs,118,25,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,49.80031949,2,3,0.842000852,3,3.95256917,1
Sydney - Eastern Suburbs,118,26,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,30.09463722,2,1,2.189164464,2,3.95256917,1
Sydney - Eastern Suburbs,118,27,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.47533632,1,1,1.637641677,3,3.95256917,1
Sydney - Eastern Suburbs,118,31,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,77.05627706,3,1,1.48376513,3,3.95256917,1
Sydney - Eastern Suburbs,118,32,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,44.40860215,3,2,3.672178202,0,3.95256917,1
Sydney - Eastern Suburbs,118,33,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,99.29824561,3,3,3.087091782,1,3.95256917,1
Sydney - Eastern Suburbs,118,34,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,92.81183932,3,2,3.928639959,0,3.95256917,1
Sydney - Eastern Suburbs,118,35,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,55.01858736,3,2,3.215717391,1,3.95256917,1
Sydney - Eastern Suburbs,118,36,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,52.25522552,2,0,4.462419792,0,3.95256917,1
Sydney - Eastern Suburbs,118,39,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,57.23923197,2,0,1.495232111,3,3.95256917,1
Sydney - Eastern Suburbs,118,41,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,50.64575646,2,1,3.48189448,0,3.95256917,1
Sydney - Eastern Suburbs,118,42,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,85.30612245,3,0,4.393815552,0,3.95256917,1
Sydney - Eastern Suburbs,118,43,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,37.76150628,3,0,5.277350171,0,3.95256917,1
Sydney - Eastern Suburbs,118,44,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,21.71492205,2,0,3.334412454,1,3.95256917,1
Sydney - Eastern Suburbs,118,45,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,31.03448276,2,0,2.763530685,2,3.95256917,1
Sydney - Eastern Suburbs,118,51,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,2.535082122,2,3.95256917,1
Sydney - Eastern Suburbs,118,52,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,2.826080167,1,3.95256917,1
Sydney - Eastern Suburbs,118,53,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.0952381,3,0,3.294490254,1,3.95256917,1
Sydney - Eastern Suburbs,118,54,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,48.72685185,3,0,4.703538895,0,3.95256917,1
Sydney - Eastern Suburbs,118,55,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.23674476,2,0,1.166403088,3,3.95256917,1
Sydney - Eastern Suburbs,118,56,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,77.36625514,3,0,3.351366358,1,3.95256917,1
Sydney - Eastern Suburbs,118,59,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,32.63506064,2,0,2.833331772,1,3.95256917,1
Sydney - Eastern Suburbs,118,61,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,36.63101604,3,0,1.418062031,3,3.95256917,1
Sydney - Eastern Suburbs,118,62,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,48.37872892,3,0,5.58626565,0,3.95256917,1
Sydney - Eastern Suburbs,118,63,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,1.773533424,2,0,2.852111249,1,3.95256917,1
Sydney - Eastern Suburbs,118,71,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,63.18944844,3,0,3.517283791,0,3.95256917,1
Sydney - Eastern Suburbs,118,72,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,121.3250518,3,0,4.54891329,0,3.95256917,1
Sydney - Eastern Suburbs,118,73,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,121.3250518,3,0,2.452576498,2,3.95256917,1
Sydney - Eastern Suburbs,118,74,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,45.84103512,3,0,6.827084124,0,3.95256917,1
Sydney - Eastern Suburbs,118,81,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,23.84792627,3,0,5.323702597,0,3.95256917,1
Sydney - Eastern Suburbs,118,82,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,70.07874016,3,0,8.599890638,0,3.95256917,1
Sydney - Eastern Suburbs,118,83,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,28.4843869,3,0,7.394282019,0,3.95256917,1
Sydney - Eastern Suburbs,118,84,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,72.19589258,3,0,5.816067226,0,3.95256917,1
Sydney - Eastern Suburbs,118,85,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,-13.77018044,2,0,8.407560815,0,3.95256917,1
Sydney - Eastern Suburbs,118,89,3.571234891,2,-6.845578742,0,1686,850,0,0,105100,3,,,-2.234636872,-2.773497689,20.64329027,2,1,2,2.096379441,3,28405,29014,2.143988734,2,118,,1,35.57951482,3,0,3.879472423,0,3.95256917,1
Sydney - Inner South West,119,11,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.34152334,2,0,1.775513209,3,8.366533865,2
Sydney - Inner South West,119,12,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,0,0,0,1.775513209,3,8.366533865,2
Sydney - Inner South West,119,13,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.45209581,2,1,1.934726957,2,8.366533865,2
Sydney - Inner South West,119,14,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.32359081,3,0,1.38456451,3,8.366533865,2
Sydney - Inner South West,119,21,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.44444444,2,0,3.044104943,1,8.366533865,2
Sydney - Inner South West,119,22,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.5630713,2,0,2.395599968,2,8.366533865,2
Sydney - Inner South West,119,23,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,59.55574183,3,2,2.744430198,2,8.366533865,2
Sydney - Inner South West,119,24,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,61.29032258,2,1,1.983106736,2,8.366533865,2
Sydney - Inner South West,119,25,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,49.80031949,2,3,0.842000852,3,8.366533865,2
Sydney - Inner South West,119,26,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,30.09463722,2,1,2.189164464,2,8.366533865,2
Sydney - Inner South West,119,27,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.47533632,1,1,1.637641677,3,8.366533865,2
Sydney - Inner South West,119,31,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.05627706,3,1,1.48376513,3,8.366533865,2
Sydney - Inner South West,119,32,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.40860215,3,2,3.672178202,0,8.366533865,2
Sydney - Inner South West,119,33,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,99.29824561,3,3,3.087091782,1,8.366533865,2
Sydney - Inner South West,119,34,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,92.81183932,3,2,3.928639959,0,8.366533865,2
Sydney - Inner South West,119,35,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.01858736,3,2,3.215717391,1,8.366533865,2
Sydney - Inner South West,119,36,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,52.25522552,2,0,4.462419792,0,8.366533865,2
Sydney - Inner South West,119,39,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,57.23923197,2,0,1.495232111,3,8.366533865,2
Sydney - Inner South West,119,41,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,50.64575646,2,1,3.48189448,0,8.366533865,2
Sydney - Inner South West,119,42,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,85.30612245,3,0,4.393815552,0,8.366533865,2
Sydney - Inner South West,119,43,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,37.76150628,3,0,5.277350171,0,8.366533865,2
Sydney - Inner South West,119,44,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,21.71492205,2,0,3.334412454,1,8.366533865,2
Sydney - Inner South West,119,45,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,31.03448276,2,0,2.763530685,2,8.366533865,2
Sydney - Inner South West,119,51,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.535082122,2,8.366533865,2
Sydney - Inner South West,119,52,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.826080167,1,8.366533865,2
Sydney - Inner South West,119,53,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,3.294490254,1,8.366533865,2
Sydney - Inner South West,119,54,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.72685185,3,0,4.703538895,0,8.366533865,2
Sydney - Inner South West,119,55,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.23674476,2,0,1.166403088,3,8.366533865,2
Sydney - Inner South West,119,56,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.36625514,3,0,3.351366358,1,8.366533865,2
Sydney - Inner South West,119,59,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,32.63506064,2,0,2.833331772,1,8.366533865,2
Sydney - Inner South West,119,61,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.63101604,3,0,1.418062031,3,8.366533865,2
Sydney - Inner South West,119,62,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.37872892,3,0,5.58626565,0,8.366533865,2
Sydney - Inner South West,119,63,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,1.773533424,2,0,2.852111249,1,8.366533865,2
Sydney - Inner South West,119,71,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.18944844,3,0,3.517283791,0,8.366533865,2
Sydney - Inner South West,119,72,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,4.54891329,0,8.366533865,2
Sydney - Inner South West,119,73,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,2.452576498,2,8.366533865,2
Sydney - Inner South West,119,74,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,45.84103512,3,0,6.827084124,0,8.366533865,2
Sydney - Inner South West,119,81,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.84792627,3,0,5.323702597,0,8.366533865,2
Sydney - Inner South West,119,82,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,70.07874016,3,0,8.599890638,0,8.366533865,2
Sydney - Inner South West,119,83,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.4843869,3,0,7.394282019,0,8.366533865,2
Sydney - Inner South West,119,84,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,72.19589258,3,0,5.816067226,0,8.366533865,2
Sydney - Inner South West,119,85,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,-13.77018044,2,0,8.407560815,0,8.366533865,2
Sydney - Inner South West,119,89,4.782343474,1,3.740784319,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,35.57951482,3,0,3.879472423,0,8.366533865,2
Sydney - Inner West,120,11,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,23.34152334,2,0,1.775513209,3,10.13215859,2
Sydney - Inner West,120,12,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,0,0,0,1.775513209,3,10.13215859,2
Sydney - Inner West,120,13,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.45209581,2,1,1.934726957,2,10.13215859,2
Sydney - Inner West,120,14,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,55.32359081,3,0,1.38456451,3,10.13215859,2
Sydney - Inner West,120,21,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,44.44444444,2,0,3.044104943,1,10.13215859,2
Sydney - Inner West,120,22,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.5630713,2,0,2.395599968,2,10.13215859,2
Sydney - Inner West,120,23,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,59.55574183,3,2,2.744430198,2,10.13215859,2
Sydney - Inner West,120,24,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,61.29032258,2,1,1.983106736,2,10.13215859,2
Sydney - Inner West,120,25,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,49.80031949,2,3,0.842000852,3,10.13215859,2
Sydney - Inner West,120,26,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,30.09463722,2,1,2.189164464,2,10.13215859,2
Sydney - Inner West,120,27,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.47533632,1,1,1.637641677,3,10.13215859,2
Sydney - Inner West,120,31,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,77.05627706,3,1,1.48376513,3,10.13215859,2
Sydney - Inner West,120,32,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,44.40860215,3,2,3.672178202,0,10.13215859,2
Sydney - Inner West,120,33,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,99.29824561,3,3,3.087091782,1,10.13215859,2
Sydney - Inner West,120,34,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,92.81183932,3,2,3.928639959,0,10.13215859,2
Sydney - Inner West,120,35,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,55.01858736,3,2,3.215717391,1,10.13215859,2
Sydney - Inner West,120,36,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,52.25522552,2,0,4.462419792,0,10.13215859,2
Sydney - Inner West,120,39,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,57.23923197,2,0,1.495232111,3,10.13215859,2
Sydney - Inner West,120,41,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,50.64575646,2,1,3.48189448,0,10.13215859,2
Sydney - Inner West,120,42,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,85.30612245,3,0,4.393815552,0,10.13215859,2
Sydney - Inner West,120,43,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,37.76150628,3,0,5.277350171,0,10.13215859,2
Sydney - Inner West,120,44,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,21.71492205,2,0,3.334412454,1,10.13215859,2
Sydney - Inner West,120,45,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,31.03448276,2,0,2.763530685,2,10.13215859,2
Sydney - Inner West,120,51,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,2.535082122,2,10.13215859,2
Sydney - Inner West,120,52,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,2.826080167,1,10.13215859,2
Sydney - Inner West,120,53,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.0952381,3,0,3.294490254,1,10.13215859,2
Sydney - Inner West,120,54,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,48.72685185,3,0,4.703538895,0,10.13215859,2
Sydney - Inner West,120,55,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.23674476,2,0,1.166403088,3,10.13215859,2
Sydney - Inner West,120,56,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,77.36625514,3,0,3.351366358,1,10.13215859,2
Sydney - Inner West,120,59,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,32.63506064,2,0,2.833331772,1,10.13215859,2
Sydney - Inner West,120,61,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,36.63101604,3,0,1.418062031,3,10.13215859,2
Sydney - Inner West,120,62,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,48.37872892,3,0,5.58626565,0,10.13215859,2
Sydney - Inner West,120,63,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,1.773533424,2,0,2.852111249,1,10.13215859,2
Sydney - Inner West,120,71,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,63.18944844,3,0,3.517283791,0,10.13215859,2
Sydney - Inner West,120,72,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,121.3250518,3,0,4.54891329,0,10.13215859,2
Sydney - Inner West,120,73,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,121.3250518,3,0,2.452576498,2,10.13215859,2
Sydney - Inner West,120,74,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,45.84103512,3,0,6.827084124,0,10.13215859,2
Sydney - Inner West,120,81,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,23.84792627,3,0,5.323702597,0,10.13215859,2
Sydney - Inner West,120,82,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,70.07874016,3,0,8.599890638,0,10.13215859,2
Sydney - Inner West,120,83,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,28.4843869,3,0,7.394282019,0,10.13215859,2
Sydney - Inner West,120,84,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,72.19589258,3,0,5.816067226,0,10.13215859,2
Sydney - Inner West,120,85,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,-13.77018044,2,0,8.407560815,0,10.13215859,2
Sydney - Inner West,120,89,3.955538298,2,-6.419934249,1,1927.5,630,0,0,96800,3,,,-26.97368421,9.041394336,27.65425931,1,3,3,2.447919737,3,28126,29191,3.786532034,3,120,,1,35.57951482,3,0,3.879472423,0,10.13215859,2
Sydney - North Sydney and Hornsby,121,11,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,23.34152334,2,0,1.775513209,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,12,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,0,0,0,1.775513209,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,13,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.45209581,2,1,1.934726957,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,14,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,55.32359081,3,0,1.38456451,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,21,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,44.44444444,2,0,3.044104943,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,22,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.5630713,2,0,2.395599968,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,23,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,59.55574183,3,2,2.744430198,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,24,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,61.29032258,2,1,1.983106736,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,25,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,49.80031949,2,3,0.842000852,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,26,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,30.09463722,2,1,2.189164464,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,27,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.47533632,1,1,1.637641677,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,31,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,77.05627706,3,1,1.48376513,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,32,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,44.40860215,3,2,3.672178202,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,33,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,99.29824561,3,3,3.087091782,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,34,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,92.81183932,3,2,3.928639959,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,35,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,55.01858736,3,2,3.215717391,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,36,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,52.25522552,2,0,4.462419792,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,39,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,57.23923197,2,0,1.495232111,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,41,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,50.64575646,2,1,3.48189448,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,42,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,85.30612245,3,0,4.393815552,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,43,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,37.76150628,3,0,5.277350171,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,44,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,21.71492205,2,0,3.334412454,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,45,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,31.03448276,2,0,2.763530685,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,51,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,2.535082122,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,52,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,2.826080167,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,53,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.0952381,3,0,3.294490254,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,54,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,48.72685185,3,0,4.703538895,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,55,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.23674476,2,0,1.166403088,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,56,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,77.36625514,3,0,3.351366358,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,59,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,32.63506064,2,0,2.833331772,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,61,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,36.63101604,3,0,1.418062031,3,3.525954946,1
Sydney - North Sydney and Hornsby,121,62,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,48.37872892,3,0,5.58626565,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,63,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,1.773533424,2,0,2.852111249,1,3.525954946,1
Sydney - North Sydney and Hornsby,121,71,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,63.18944844,3,0,3.517283791,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,72,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,121.3250518,3,0,4.54891329,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,73,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,121.3250518,3,0,2.452576498,2,3.525954946,1
Sydney - North Sydney and Hornsby,121,74,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,45.84103512,3,0,6.827084124,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,81,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,23.84792627,3,0,5.323702597,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,82,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,70.07874016,3,0,8.599890638,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,83,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,28.4843869,3,0,7.394282019,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,84,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,72.19589258,3,0,5.816067226,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,85,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,-13.77018044,2,0,8.407560815,0,3.525954946,1
Sydney - North Sydney and Hornsby,121,89,3.297046852,2,-4.112809466,1,1000,600,0,0,122900,3,,,-17.99065421,-4.304347826,16.6443178,1,1,1,2.886875352,2,51206,51785,1.130726868,1,121,,1,35.57951482,3,0,3.879472423,0,3.525954946,1
Sydney - Northern Beaches,122,11,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,23.34152334,2,0,1.775513209,3,5.429071804,2
Sydney - Northern Beaches,122,12,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,0,0,0,1.775513209,3,5.429071804,2
Sydney - Northern Beaches,122,13,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.45209581,2,1,1.934726957,2,5.429071804,2
Sydney - Northern Beaches,122,14,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,55.32359081,3,0,1.38456451,3,5.429071804,2
Sydney - Northern Beaches,122,21,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,44.44444444,2,0,3.044104943,1,5.429071804,2
Sydney - Northern Beaches,122,22,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.5630713,2,0,2.395599968,2,5.429071804,2
Sydney - Northern Beaches,122,23,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,59.55574183,3,2,2.744430198,2,5.429071804,2
Sydney - Northern Beaches,122,24,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,61.29032258,2,1,1.983106736,2,5.429071804,2
Sydney - Northern Beaches,122,25,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,49.80031949,2,3,0.842000852,3,5.429071804,2
Sydney - Northern Beaches,122,26,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,30.09463722,2,1,2.189164464,2,5.429071804,2
Sydney - Northern Beaches,122,27,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.47533632,1,1,1.637641677,3,5.429071804,2
Sydney - Northern Beaches,122,31,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,77.05627706,3,1,1.48376513,3,5.429071804,2
Sydney - Northern Beaches,122,32,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,44.40860215,3,2,3.672178202,0,5.429071804,2
Sydney - Northern Beaches,122,33,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,99.29824561,3,3,3.087091782,1,5.429071804,2
Sydney - Northern Beaches,122,34,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,92.81183932,3,2,3.928639959,0,5.429071804,2
Sydney - Northern Beaches,122,35,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,55.01858736,3,2,3.215717391,1,5.429071804,2
Sydney - Northern Beaches,122,36,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,52.25522552,2,0,4.462419792,0,5.429071804,2
Sydney - Northern Beaches,122,39,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,57.23923197,2,0,1.495232111,3,5.429071804,2
Sydney - Northern Beaches,122,41,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,50.64575646,2,1,3.48189448,0,5.429071804,2
Sydney - Northern Beaches,122,42,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,85.30612245,3,0,4.393815552,0,5.429071804,2
Sydney - Northern Beaches,122,43,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,37.76150628,3,0,5.277350171,0,5.429071804,2
Sydney - Northern Beaches,122,44,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,21.71492205,2,0,3.334412454,1,5.429071804,2
Sydney - Northern Beaches,122,45,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,31.03448276,2,0,2.763530685,2,5.429071804,2
Sydney - Northern Beaches,122,51,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,2.535082122,2,5.429071804,2
Sydney - Northern Beaches,122,52,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,2.826080167,1,5.429071804,2
Sydney - Northern Beaches,122,53,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.0952381,3,0,3.294490254,1,5.429071804,2
Sydney - Northern Beaches,122,54,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,48.72685185,3,0,4.703538895,0,5.429071804,2
Sydney - Northern Beaches,122,55,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.23674476,2,0,1.166403088,3,5.429071804,2
Sydney - Northern Beaches,122,56,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,77.36625514,3,0,3.351366358,1,5.429071804,2
Sydney - Northern Beaches,122,59,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,32.63506064,2,0,2.833331772,1,5.429071804,2
Sydney - Northern Beaches,122,61,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,36.63101604,3,0,1.418062031,3,5.429071804,2
Sydney - Northern Beaches,122,62,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,48.37872892,3,0,5.58626565,0,5.429071804,2
Sydney - Northern Beaches,122,63,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,1.773533424,2,0,2.852111249,1,5.429071804,2
Sydney - Northern Beaches,122,71,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,63.18944844,3,0,3.517283791,0,5.429071804,2
Sydney - Northern Beaches,122,72,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,121.3250518,3,0,4.54891329,0,5.429071804,2
Sydney - Northern Beaches,122,73,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,121.3250518,3,0,2.452576498,2,5.429071804,2
Sydney - Northern Beaches,122,74,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,45.84103512,3,0,6.827084124,0,5.429071804,2
Sydney - Northern Beaches,122,81,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,23.84792627,3,0,5.323702597,0,5.429071804,2
Sydney - Northern Beaches,122,82,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,70.07874016,3,0,8.599890638,0,5.429071804,2
Sydney - Northern Beaches,122,83,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,28.4843869,3,0,7.394282019,0,5.429071804,2
Sydney - Northern Beaches,122,84,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,72.19589258,3,0,5.816067226,0,5.429071804,2
Sydney - Northern Beaches,122,85,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,-13.77018044,2,0,8.407560815,0,5.429071804,2
Sydney - Northern Beaches,122,89,6.281881935,0,0.177252274,1,1250,795,0,0,105500,3,,,-9.756097561,0.305810398,17.57129715,2,2,2,1.50671873,3,28471,29001,1.861543325,2,122,,1,35.57951482,3,0,3.879472423,0,5.429071804,2
Sydney - Outer South West,123,11,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,23.34152334,2,0,1.775513209,3,3.465346535,1
Sydney - Outer South West,123,12,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,0,0,0,1.775513209,3,3.465346535,1
Sydney - Outer South West,123,13,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.45209581,2,1,1.934726957,2,3.465346535,1
Sydney - Outer South West,123,14,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,55.32359081,3,0,1.38456451,3,3.465346535,1
Sydney - Outer South West,123,21,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,44.44444444,2,0,3.044104943,1,3.465346535,1
Sydney - Outer South West,123,22,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.5630713,2,0,2.395599968,2,3.465346535,1
Sydney - Outer South West,123,23,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,59.55574183,3,2,2.744430198,2,3.465346535,1
Sydney - Outer South West,123,24,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,61.29032258,2,1,1.983106736,2,3.465346535,1
Sydney - Outer South West,123,25,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,49.80031949,2,3,0.842000852,3,3.465346535,1
Sydney - Outer South West,123,26,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,30.09463722,2,1,2.189164464,2,3.465346535,1
Sydney - Outer South West,123,27,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.47533632,1,1,1.637641677,3,3.465346535,1
Sydney - Outer South West,123,31,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,77.05627706,3,1,1.48376513,3,3.465346535,1
Sydney - Outer South West,123,32,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,44.40860215,3,2,3.672178202,0,3.465346535,1
Sydney - Outer South West,123,33,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,99.29824561,3,3,3.087091782,1,3.465346535,1
Sydney - Outer South West,123,34,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,92.81183932,3,2,3.928639959,0,3.465346535,1
Sydney - Outer South West,123,35,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,55.01858736,3,2,3.215717391,1,3.465346535,1
Sydney - Outer South West,123,36,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,52.25522552,2,0,4.462419792,0,3.465346535,1
Sydney - Outer South West,123,39,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,57.23923197,2,0,1.495232111,3,3.465346535,1
Sydney - Outer South West,123,41,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,50.64575646,2,1,3.48189448,0,3.465346535,1
Sydney - Outer South West,123,42,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,85.30612245,3,0,4.393815552,0,3.465346535,1
Sydney - Outer South West,123,43,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,37.76150628,3,0,5.277350171,0,3.465346535,1
Sydney - Outer South West,123,44,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,21.71492205,2,0,3.334412454,1,3.465346535,1
Sydney - Outer South West,123,45,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,31.03448276,2,0,2.763530685,2,3.465346535,1
Sydney - Outer South West,123,51,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,2.535082122,2,3.465346535,1
Sydney - Outer South West,123,52,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,2.826080167,1,3.465346535,1
Sydney - Outer South West,123,53,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.0952381,3,0,3.294490254,1,3.465346535,1
Sydney - Outer South West,123,54,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,48.72685185,3,0,4.703538895,0,3.465346535,1
Sydney - Outer South West,123,55,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.23674476,2,0,1.166403088,3,3.465346535,1
Sydney - Outer South West,123,56,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,77.36625514,3,0,3.351366358,1,3.465346535,1
Sydney - Outer South West,123,59,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,32.63506064,2,0,2.833331772,1,3.465346535,1
Sydney - Outer South West,123,61,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,36.63101604,3,0,1.418062031,3,3.465346535,1
Sydney - Outer South West,123,62,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,48.37872892,3,0,5.58626565,0,3.465346535,1
Sydney - Outer South West,123,63,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,1.773533424,2,0,2.852111249,1,3.465346535,1
Sydney - Outer South West,123,71,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,63.18944844,3,0,3.517283791,0,3.465346535,1
Sydney - Outer South West,123,72,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,121.3250518,3,0,4.54891329,0,3.465346535,1
Sydney - Outer South West,123,73,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,121.3250518,3,0,2.452576498,2,3.465346535,1
Sydney - Outer South West,123,74,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,45.84103512,3,0,6.827084124,0,3.465346535,1
Sydney - Outer South West,123,81,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,23.84792627,3,0,5.323702597,0,3.465346535,1
Sydney - Outer South West,123,82,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,70.07874016,3,0,8.599890638,0,3.465346535,1
Sydney - Outer South West,123,83,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,28.4843869,3,0,7.394282019,0,3.465346535,1
Sydney - Outer South West,123,84,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,72.19589258,3,0,5.816067226,0,3.465346535,1
Sydney - Outer South West,123,85,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,-13.77018044,2,0,8.407560815,0,3.465346535,1
Sydney - Outer South West,123,89,16.55086547,0,-7.656124187,0,551,440,1,1,80900,2,,,4.081632653,10.35502959,14.92159838,3,3,1,3.095160428,2,14167,14354,1.319968942,1,123,,1,35.57951482,3,0,3.879472423,0,3.465346535,1
Sydney - Outer West and Blue Mountains,124,11,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,433.2935561,3,0,1.775513209,3,2.743902439,1
Sydney - Outer West and Blue Mountains,124,12,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,0,0,0,1.775513209,3,2.743902439,1
Sydney - Outer West and Blue Mountains,124,13,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,161.1739365,3,1,1.934726957,2,2.743902439,1
Sydney - Outer West and Blue Mountains,124,14,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,55.32359081,1,0,1.38456451,3,2.743902439,1
Sydney - Outer West and Blue Mountains,124,21,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,299.4708995,3,0,3.044104943,1,2.743902439,1
Sydney - Outer West and Blue Mountains,124,22,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,165.1234568,3,0,2.395599968,2,2.743902439,1
Sydney - Outer West and Blue Mountains,124,23,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,59.55574183,2,2,2.744430198,2,2.743902439,1
Sydney - Outer West and Blue Mountains,124,24,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,123.5491071,3,1,1.983106736,2,2.743902439,1
Sydney - Outer West and Blue Mountains,124,25,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,229.5609756,3,3,0.842000852,3,2.743902439,1
Sydney - Outer West and Blue Mountains,124,26,6.281881935,0,-3.852674726,1,575,375,1,2,78400,2,,,-17.1875,2.258064516,15.63330381,1,2,1,0.78235059,3,18791,18813,0.117077324,0,124,,1,107.8144078,3,1,2.189164464,2,2.743902439,1