-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.csv
We can't make this file beautiful and searchable because it's too large.
3742 lines (3742 loc) · 768 KB
/
7.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.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,12,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,13,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,14,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,21,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,22,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,23,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,24,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,25,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,26,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,27,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,31,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,32,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,33,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,34,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,35,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,36,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,39,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,41,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,42,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,43,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,44,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,45,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,51,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,52,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,53,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,54,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,55,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,56,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,59,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,61,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,62,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,63,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,71,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,72,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,73,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,74,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,81,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,82,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,83,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,84,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,85,4.911096342,2,5.460272932,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,-5.411415864,0
Capital Region,101,89,4.911096342,2,5.460272932,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,-5.411415864,0
Central Coast,102,11,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,12,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,13,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,14,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,21,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,22,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,23,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,24,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,25,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,26,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,27,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,31,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,32,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,33,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,34,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,35,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,36,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,39,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,41,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,42,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,43,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,44,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,45,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,51,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,52,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,53,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,54,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,55,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,56,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,59,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,61,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,62,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,63,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,71,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,72,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,73,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,74,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,81,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,82,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,83,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,84,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,85,3.980744997,3,16.67446471,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,-3.820375335,1
Central Coast,102,89,3.980744997,3,16.67446471,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,-3.820375335,1
New South Wales - Central West,103,11,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,12,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,13,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,14,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,21,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,22,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,23,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,24,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,25,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,26,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,27,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,31,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,32,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,33,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,34,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,35,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,36,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,39,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,41,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,42,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,43,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,44,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,45,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,51,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,52,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,53,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,54,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,55,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,56,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,59,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,61,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,62,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,63,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,71,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,72,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,73,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,74,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,81,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,82,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,83,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,84,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,85,6.009534222,1,-5.881075152,1,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,-4.306632214,1
New South Wales - Central West,103,89,6.009534222,1,-5.881075152,1,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,-4.306632214,1
Coffs Harbour - Grafton,104,11,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,12,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,13,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,14,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,21,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,22,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,23,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,24,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,25,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,26,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,27,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,31,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,32,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,33,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,34,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,35,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,36,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,39,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,41,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,42,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,43,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,44,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,45,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,51,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,52,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,53,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,54,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,55,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,56,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,59,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,61,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,62,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,63,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,71,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,72,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,73,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,74,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,81,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,82,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,83,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,84,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,85,7.615115488,0,24.21673651,3,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,-3.969270166,1
Coffs Harbour - Grafton,104,89,7.615115488,0,24.21673651,3,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,-3.969270166,1
Far West and Orana,105,11,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,12,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,13,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,14,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,21,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,22,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,23,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,24,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,25,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,26,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,27,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,31,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,32,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,33,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,34,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,35,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,36,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,39,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,41,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,42,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,43,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,44,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,45,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,51,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,52,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,53,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,54,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,55,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,56,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,59,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,61,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,62,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,63,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,71,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,72,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,73,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,74,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,81,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,82,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,83,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,84,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,85,7.615115488,0,44.9811471,3,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,-0.441176471,3
Far West and Orana,105,89,7.615115488,0,44.9811471,3,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,-0.441176471,3
Hunter Valley exc Newcastle,106,11,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,12,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,13,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,14,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,21,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,22,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,23,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,24,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,25,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,26,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,27,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,31,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,32,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,33,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,34,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,35,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,36,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,39,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,41,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,42,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,43,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,44,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,45,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,51,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,52,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,53,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,54,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,55,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,56,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,59,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,61,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,62,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,63,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,71,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,72,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,73,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,74,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,81,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,82,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,83,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,84,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,85,10.61593987,0,-6.943239434,0,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.228215768,0
Hunter Valley exc Newcastle,106,89,10.61593987,0,-6.943239434,0,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.228215768,0
Illawarra,107,11,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,12,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,13,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,14,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,21,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,22,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,23,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,24,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,25,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,26,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,27,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,31,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,32,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,33,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,34,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,35,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,36,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,39,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,41,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,42,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,43,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,44,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,45,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,51,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,52,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,53,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,54,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,55,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,56,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,59,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,61,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,62,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,63,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,71,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,72,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,73,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,74,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,81,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,82,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,83,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,84,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,85,7.159984897,1,3.03999883,2,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,-1.061410159,2
Illawarra,107,89,7.159984897,1,3.03999883,2,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,-1.061410159,2
Mid North Coast,108,11,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,12,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,13,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,14,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,21,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,22,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,23,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,24,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,25,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,26,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,27,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,31,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,32,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,33,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,34,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,35,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,36,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,39,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,41,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,42,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,43,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,44,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,45,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,51,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,52,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,53,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,54,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,55,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,56,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,59,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,61,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,62,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,63,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,71,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,72,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,73,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,74,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,81,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,82,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,83,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,84,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,85,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Mid North Coast,108,89,9.75162522,0,-6.034067752,0,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,-2.730375427,2
Murray,109,11,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,12,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,13,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,14,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,21,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,22,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,23,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,24,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,25,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,26,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,27,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,31,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,32,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,33,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,34,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,35,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,36,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,39,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,41,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,42,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,43,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,44,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,45,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,51,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,52,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,53,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,54,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,55,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,56,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,59,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,61,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,62,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,63,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,71,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,72,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,73,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,74,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,81,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,82,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,83,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,84,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,85,9.597852217,0,-0.508795159,1,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,-11.51079137,0
Murray,109,89,9.597852217,0,-0.508795159,1,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,-11.51079137,0
New England and North West,110,11,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,12,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,13,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,14,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,21,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,22,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,23,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,24,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,25,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,26,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,27,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,31,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,32,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,33,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,34,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,35,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,36,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,39,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,41,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,42,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,43,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,44,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,45,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,51,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,52,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,53,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,54,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,55,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,56,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,59,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,61,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,62,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,63,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,71,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,72,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,73,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,74,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,81,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,82,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,83,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,84,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,85,7.960598479,0,-11.88576917,0,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,-3.342618384,1
New England and North West,110,89,7.960598479,0,-11.88576917,0,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,-3.342618384,1
Newcastle and Lake Macquarie,111,11,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,12,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,13,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,14,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,21,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,22,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,23,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,24,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,25,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,26,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,27,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,31,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,32,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,33,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,34,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,35,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,36,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,39,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,41,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,42,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,43,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,44,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,45,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,51,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,52,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,53,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,54,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,55,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,56,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,59,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,61,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,62,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,63,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,71,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,72,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,73,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,74,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,81,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,82,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,83,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,84,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,85,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Newcastle and Lake Macquarie,111,89,6.0200075,1,-7.301790401,0,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,-2.918403812,2
Richmond - Tweed,112,11,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,12,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,13,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,14,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,21,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,22,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,23,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,24,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,25,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,26,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,27,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,31,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,32,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,33,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,34,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,35,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,36,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,39,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,41,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,42,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,43,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,44,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,45,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,51,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,52,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,53,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,54,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,55,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,56,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,59,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,61,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,62,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,63,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,71,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,72,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,73,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,74,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,81,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,82,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,83,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,84,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,85,6.810881824,1,0.540811256,1,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,-2.407407407,2
Richmond - Tweed,112,89,6.810881824,1,0.540811256,1,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,-2.407407407,2
Riverina,113,11,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,12,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,13,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,14,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,21,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,22,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,23,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,24,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,25,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,26,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,27,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,31,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,32,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,33,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,34,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,35,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,36,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,39,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,41,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,42,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,43,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,44,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,45,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,51,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,52,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,53,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,54,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,55,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,56,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,59,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,61,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,62,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,63,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,71,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,72,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,73,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,74,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,81,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,82,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,83,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,84,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,85,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Riverina,113,89,7.313634305,1,-13.53805844,0,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,-4.596412556,1
Southern Highlands and Shoalhaven,114,11,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,12,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,13,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,14,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,21,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,22,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,23,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,24,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,25,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,26,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,27,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,31,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,32,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,33,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,34,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,35,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,36,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,39,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,41,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,42,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,43,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,44,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,45,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,51,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,52,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,53,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,54,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,55,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,56,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,59,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,61,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,62,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,63,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,71,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,72,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,73,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,74,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,81,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,82,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,83,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,84,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,85,7.615115488,0,3.164495523,2,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,-5.004906771,0
Southern Highlands and Shoalhaven,114,89,7.615115488,0,3.164495523,2,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,-5.004906771,0
Sydney - Baulkham Hills and Hawkesbury,115,11,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,12,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,13,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,14,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,21,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,22,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,23,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,24,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,25,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,26,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,27,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,31,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,32,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,33,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,34,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,35,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,36,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,39,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,41,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,42,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,43,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,44,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,45,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,51,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,52,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,53,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,54,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,55,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,56,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,59,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,61,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,62,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,63,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,71,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,72,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,73,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,74,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,81,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,82,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,83,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,84,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,85,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Baulkham Hills and Hawkesbury,115,89,2.868718639,3,-3.665753353,1,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,1.521438451,3
Sydney - Blacktown,116,11,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,12,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,13,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,14,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,21,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,22,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,23,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,24,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,25,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,26,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,27,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,31,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,32,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,33,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,34,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,35,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,36,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,39,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,41,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,42,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,43,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,44,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,45,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,51,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,52,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,53,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,54,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,55,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,56,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,59,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,61,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,62,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,63,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,71,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,72,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,73,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,74,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,81,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,82,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,83,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,84,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,85,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - Blacktown,116,89,5.211132117,2,9.093313852,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,2.716049383,3
Sydney - City and Inner South,117,11,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,12,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,13,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,14,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,21,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,22,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,23,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,24,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,25,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,26,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,27,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,31,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,32,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,33,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,34,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,35,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,36,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,39,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,41,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,42,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,43,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,44,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,45,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,51,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,52,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,53,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,54,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,55,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,56,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,59,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,61,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,62,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,63,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,71,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,72,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,73,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,74,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,81,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,82,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,83,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,84,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,85,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - City and Inner South,117,89,3.202297589,3,-13.42697323,0,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,-3.646563815,1
Sydney - Eastern Suburbs,118,11,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,12,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,13,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,14,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,21,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,22,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,23,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,24,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,25,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,26,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,27,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,31,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,32,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,33,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,34,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,35,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,36,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,39,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,41,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,42,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,43,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,44,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,45,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,51,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,52,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,53,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,54,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,55,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,56,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,59,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,61,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,62,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,63,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,71,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,72,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,73,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,74,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,81,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,82,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,83,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,84,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,85,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Eastern Suburbs,118,89,4.876832084,2,-11.67380143,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,-0.484652666,3
Sydney - Inner South West,119,11,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,12,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,13,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,14,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,21,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,22,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,23,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,24,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,25,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,26,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,27,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,31,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,32,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,33,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,34,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,35,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,36,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,39,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,41,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,42,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,43,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,44,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,45,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,51,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,52,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,53,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,54,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,55,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,56,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,59,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,61,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,62,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,63,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,71,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,72,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,73,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,74,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,81,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,82,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,83,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,84,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,85,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner South West,119,89,3.16172481,3,-5.048126513,1,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,-0.616787342,3
Sydney - Inner West,120,11,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,12,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,13,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,14,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,21,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,22,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,23,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,24,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,25,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,26,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,27,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,31,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,32,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,33,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,34,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,35,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,36,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,39,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,41,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,42,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,43,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,44,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,45,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,51,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,52,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,53,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,54,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,55,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,56,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,59,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,61,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,62,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,63,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,71,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,72,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,73,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,74,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,81,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,82,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,83,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,84,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,85,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - Inner West,120,89,7.428435964,0,10.77997117,3,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,0.09478673,3
Sydney - North Sydney and Hornsby,121,11,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,12,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,13,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,14,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,21,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,22,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,23,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,24,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,25,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,26,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,27,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,31,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,32,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,33,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,34,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,35,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,36,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,39,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,41,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,42,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,43,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,44,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,45,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,51,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,52,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,53,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,54,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,55,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,56,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,59,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,61,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,62,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,63,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,71,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,72,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,73,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,74,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,81,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,82,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,83,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,84,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,85,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - North Sydney and Hornsby,121,89,3.826227057,3,-6.371914597,0,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,-0.556586271,3
Sydney - Northern Beaches,122,11,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,12,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,13,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,14,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,21,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,22,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,23,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,24,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,25,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,26,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,27,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,31,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,32,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,33,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,34,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,35,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,36,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,39,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,41,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,42,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,43,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,44,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,45,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,51,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,52,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,53,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,54,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,55,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,56,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,59,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,61,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,62,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,63,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,71,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,72,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,73,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,74,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,81,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,82,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,83,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,84,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,85,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Northern Beaches,122,89,2.971630029,3,-3.161005715,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,-0.347826087,3
Sydney - Outer South West,123,11,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,12,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,13,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,14,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,21,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,22,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,23,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,24,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,25,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,26,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,27,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,31,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,32,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,33,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,34,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,35,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,36,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,39,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,41,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,42,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,43,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,44,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,45,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,51,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,52,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,53,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,54,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,55,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,56,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,59,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,61,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,62,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,63,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,71,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,72,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,73,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,74,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,81,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,82,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,83,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,84,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,85,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer South West,123,89,5.488958139,2,-8.907990182,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,-4.467005076,1
Sydney - Outer West and Blue Mountains,124,11,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,12,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,13,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,14,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,21,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,22,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,23,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,24,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,25,8.452199173,0,0.000701558,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,-6.451612903,0
Sydney - Outer West and Blue Mountains,124,26,8.452199173,0,0.000701558,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,-6.451612903,0