-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13.csv
We can't make this file beautiful and searchable because it's too large.
3742 lines (3742 loc) · 763 KB
/
13.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,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,12,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,13,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,14,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,21,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,22,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,23,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,24,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,25,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,26,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,27,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,31,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,32,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,33,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,34,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,35,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,36,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,39,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,41,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,42,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,43,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,44,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,45,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,51,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,52,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,53,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,54,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,55,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,56,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,59,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,61,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,62,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,63,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,71,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,72,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,73,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,74,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,81,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,82,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,83,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,84,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,85,7.686506162,1,4.771288628,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,-2.080706179,0
Capital Region,101,89,7.686506162,1,4.771288628,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,-2.080706179,0
Central Coast,102,11,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,12,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,13,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,14,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,21,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,22,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,23,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,24,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,25,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,26,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,27,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,31,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,32,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,33,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,34,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,35,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,36,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,39,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,41,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,42,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,43,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,44,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,45,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,51,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,52,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,53,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,54,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,55,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,56,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,59,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,61,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,62,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,63,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,71,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,72,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,73,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,74,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,81,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,82,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,83,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,84,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,85,3.915631856,2,20.20533609,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,-0.116776956,1
Central Coast,102,89,3.915631856,2,20.20533609,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,-0.116776956,1
New South Wales - Central West,103,11,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,12,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,13,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,14,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,21,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,22,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,23,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,24,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,25,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,26,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,27,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,31,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,32,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,33,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,34,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,35,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,36,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,39,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,41,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,42,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,43,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,44,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,45,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,51,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,52,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,53,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,54,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,55,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,56,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,59,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,61,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,62,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,63,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,71,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,72,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,73,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,74,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,81,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,82,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,83,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,84,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,85,7.686506162,1,52.98384889,3,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,5.071770335,3
New South Wales - Central West,103,89,7.686506162,1,52.98384889,3,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,5.071770335,3
Coffs Harbour - Grafton,104,11,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,433.2935561,2,0,1.775513209,3,-1.288659794,0
Coffs Harbour - Grafton,104,12,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,500.2145923,3,0,1.775513209,3,-1.288659794,0
Coffs Harbour - Grafton,104,13,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,161.1739365,2,1,1.934726957,2,-1.288659794,0
Coffs Harbour - Grafton,104,14,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,11.54684096,1,0,1.38456451,3,-1.288659794,0
Coffs Harbour - Grafton,104,21,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,299.4708995,2,0,3.044104943,1,-1.288659794,0
Coffs Harbour - Grafton,104,22,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,165.1234568,3,0,2.395599968,2,-1.288659794,0
Coffs Harbour - Grafton,104,23,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,130.9475397,3,2,2.744430198,2,-1.288659794,0
Coffs Harbour - Grafton,104,24,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,123.5491071,2,1,1.983106736,2,-1.288659794,0
Coffs Harbour - Grafton,104,25,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,229.5609756,0,3,0.842000852,3,-1.288659794,0
Coffs Harbour - Grafton,104,26,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,120.0889248,3,1,2.189164464,2,-1.288659794,0
Coffs Harbour - Grafton,104,27,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,118.940754,2,1,1.637641677,3,-1.288659794,0
Coffs Harbour - Grafton,104,31,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,100,2,1,1.48376513,3,-1.288659794,0
Coffs Harbour - Grafton,104,32,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,21.76560122,2,2,3.672178202,0,-1.288659794,0
Coffs Harbour - Grafton,104,33,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.96674584,1,3,3.087091782,1,-1.288659794,0
Coffs Harbour - Grafton,104,34,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,9.89010989,2,2,3.928639959,0,-1.288659794,0
Coffs Harbour - Grafton,104,35,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,8.955223881,2,2,3.215717391,1,-1.288659794,0
Coffs Harbour - Grafton,104,36,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,88.31775701,3,0,4.462419792,0,-1.288659794,0
Coffs Harbour - Grafton,104,39,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,199.1525424,1,0,1.495232111,3,-1.288659794,0
Coffs Harbour - Grafton,104,41,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,122.9712859,2,1,3.48189448,0,-1.288659794,0
Coffs Harbour - Grafton,104,42,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,12.34106208,0,0,4.393815552,0,-1.288659794,0
Coffs Harbour - Grafton,104,43,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-13.05285868,1,0,5.277350171,0,-1.288659794,0
Coffs Harbour - Grafton,104,44,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,91.00850547,1,0,3.334412454,1,-1.288659794,0
Coffs Harbour - Grafton,104,45,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,200,1,0,2.763530685,2,-1.288659794,0
Coffs Harbour - Grafton,104,51,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.535082122,2,-1.288659794,0
Coffs Harbour - Grafton,104,52,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,2.826080167,1,-1.288659794,0
Coffs Harbour - Grafton,104,53,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,52.88544358,2,0,3.294490254,1,-1.288659794,0
Coffs Harbour - Grafton,104,54,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,37.71313942,3,0,4.703538895,0,-1.288659794,0
Coffs Harbour - Grafton,104,55,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,86.55126498,3,0,1.166403088,3,-1.288659794,0
Coffs Harbour - Grafton,104,56,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,20.02781641,1,0,3.351366358,1,-1.288659794,0
Coffs Harbour - Grafton,104,59,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,44.4527178,3,0,2.833331772,1,-1.288659794,0
Coffs Harbour - Grafton,104,61,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,23.71541502,3,0,1.418062031,3,-1.288659794,0
Coffs Harbour - Grafton,104,62,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,15.92039801,3,0,5.58626565,0,-1.288659794,0
Coffs Harbour - Grafton,104,63,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,57.23172628,2,0,2.852111249,1,-1.288659794,0
Coffs Harbour - Grafton,104,71,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.33538841,1,0,3.517283791,0,-1.288659794,0
Coffs Harbour - Grafton,104,72,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,4.54891329,0,-1.288659794,0
Coffs Harbour - Grafton,104,73,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,119.5325543,3,0,2.452576498,2,-1.288659794,0
Coffs Harbour - Grafton,104,74,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,5.614035088,2,0,6.827084124,0,-1.288659794,0
Coffs Harbour - Grafton,104,81,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,48.34515366,3,0,5.323702597,0,-1.288659794,0
Coffs Harbour - Grafton,104,82,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,72.15346535,3,0,8.599890638,0,-1.288659794,0
Coffs Harbour - Grafton,104,83,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,17.7920686,2,0,7.394282019,0,-1.288659794,0
Coffs Harbour - Grafton,104,84,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,33.8740458,3,0,5.816067226,0,-1.288659794,0
Coffs Harbour - Grafton,104,85,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,-2.748091603,3,0,8.407560815,0,-1.288659794,0
Coffs Harbour - Grafton,104,89,7.686506162,1,-7.944937924,0,570,393,1,1,48600,1,,,-26.92307692,-5.882352941,14.22805247,1,1,1,0.884563288,3,9875,9868,-0.070886076,0,104,,1,24.47643979,3,0,3.879472423,0,-1.288659794,0
Far West and Orana,105,11,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,12,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,13,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,14,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,21,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,22,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,23,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,24,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,25,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,26,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,27,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,31,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,32,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,33,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,34,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,35,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,36,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,39,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,41,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,42,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,43,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,44,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,45,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,51,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,52,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,53,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,54,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,55,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,56,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,59,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,61,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,62,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,63,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,71,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,72,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,73,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,74,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,81,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,82,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,83,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,84,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,85,7.686506162,1,0,0,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,-1.863354037,0
Far West and Orana,105,89,7.686506162,1,0,0,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,-1.863354037,0
Hunter Valley exc Newcastle,106,11,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,12,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,13,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,14,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,21,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,22,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,23,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,24,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,25,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,26,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,27,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,31,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,32,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,33,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,34,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,35,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,36,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,39,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,41,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,42,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,43,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,44,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,45,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,51,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,52,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,53,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,54,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,55,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,56,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,59,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,61,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,62,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,63,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,71,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,72,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,73,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,74,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,81,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,82,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,83,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,84,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,85,7.686506162,1,-9.695537,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,-1.525198939,0
Hunter Valley exc Newcastle,106,89,7.686506162,1,-9.695537,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,-1.525198939,0
Illawarra,107,11,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,91.80327869,0,0,1.775513209,3,2.46659815,2
Illawarra,107,12,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,100.3076923,0,0,1.775513209,3,2.46659815,2
Illawarra,107,13,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,1,1,1,1.934726957,2,2.46659815,2
Illawarra,107,14,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,45.62926224,3,0,1.38456451,3,2.46659815,2
Illawarra,107,21,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,128.9516129,3,0,3.044104943,1,2.46659815,2
Illawarra,107,22,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,47.15096926,2,0,2.395599968,2,2.46659815,2
Illawarra,107,23,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,8.4609076,2,2,2.744430198,2,2.46659815,2
Illawarra,107,24,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,103.898051,2,1,1.983106736,2,2.46659815,2
Illawarra,107,25,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,61.91910499,2,3,0.842000852,3,2.46659815,2
Illawarra,107,26,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,107.3770492,1,1,2.189164464,2,2.46659815,2
Illawarra,107,27,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,74.73540457,2,1,1.637641677,3,2.46659815,2
Illawarra,107,31,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,31.36966127,1,1,1.48376513,3,2.46659815,2
Illawarra,107,32,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,23.13284865,2,2,3.672178202,0,2.46659815,2
Illawarra,107,33,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,46.11398964,0,3,3.087091782,1,2.46659815,2
Illawarra,107,34,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.45929339,3,2,3.928639959,0,2.46659815,2
Illawarra,107,35,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.429941396,1,2,3.215717391,1,2.46659815,2
Illawarra,107,36,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,9.794520548,1,0,4.462419792,0,2.46659815,2
Illawarra,107,39,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.35557987,1,0,1.495232111,3,2.46659815,2
Illawarra,107,41,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,77.74657775,2,1,3.48189448,0,2.46659815,2
Illawarra,107,42,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,25.19983172,1,0,4.393815552,0,2.46659815,2
Illawarra,107,43,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-8.002936858,1,0,5.277350171,0,2.46659815,2
Illawarra,107,44,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-25.52499261,1,0,3.334412454,1,2.46659815,2
Illawarra,107,45,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,17.78036026,2,0,2.763530685,2,2.46659815,2
Illawarra,107,51,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.535082122,2,2.46659815,2
Illawarra,107,52,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,2.826080167,1,2.46659815,2
Illawarra,107,53,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,41.19891008,2,0,3.294490254,1,2.46659815,2
Illawarra,107,54,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,11.91066998,1,0,4.703538895,0,2.46659815,2
Illawarra,107,55,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,21.50189087,2,0,1.166403088,3,2.46659815,2
Illawarra,107,56,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,85.13011152,3,0,3.351366358,1,2.46659815,2
Illawarra,107,59,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.11323764,1,0,2.833331772,1,2.46659815,2
Illawarra,107,61,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,2.228915663,2,0,1.418062031,3,2.46659815,2
Illawarra,107,62,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.11355311,2,0,5.58626565,0,2.46659815,2
Illawarra,107,63,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,51.54565061,3,0,2.852111249,1,2.46659815,2
Illawarra,107,71,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,13.91752577,1,0,3.517283791,0,2.46659815,2
Illawarra,107,72,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,4.54891329,0,2.46659815,2
Illawarra,107,73,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,27.44680851,1,0,2.452576498,2,2.46659815,2
Illawarra,107,74,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-10.44776119,1,0,6.827084124,0,2.46659815,2
Illawarra,107,81,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-3.484320557,2,0,5.323702597,0,2.46659815,2
Illawarra,107,82,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,36.72316384,2,0,8.599890638,0,2.46659815,2
Illawarra,107,83,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-19.93704092,0,0,7.394282019,0,2.46659815,2
Illawarra,107,84,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-29.18395574,1,0,5.816067226,0,2.46659815,2
Illawarra,107,85,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-4.465493911,2,0,8.407560815,0,2.46659815,2
Illawarra,107,89,7.686506162,1,29.48963544,3,655,480,0,0,65000,2,,,-28.98550725,-8.571428571,18.09018568,1,1,2,2.475010413,3,15073,15256,1.214091422,1,107,,1,-9.419354839,1,0,3.879472423,0,2.46659815,2
Mid North Coast,108,11,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,12,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,13,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,14,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,21,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,22,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,23,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,24,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,25,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,26,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,27,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,31,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,32,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,33,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,34,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,35,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,36,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,39,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,41,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,42,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,43,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,44,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,45,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,51,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,52,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,53,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,54,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,55,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,56,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,59,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,61,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,62,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,63,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,71,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,72,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,73,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,74,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,81,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,82,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,83,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,84,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,85,7.686506162,1,-4.250817962,1,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,4.65337132,3
Mid North Coast,108,89,7.686506162,1,-4.250817962,1,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,4.65337132,3
Murray,109,11,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,69.97782705,1,0,1.775513209,3,2.583586626,2
Murray,109,12,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,750.1805054,3,0,1.775513209,3,2.583586626,2
Murray,109,13,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.9231852,2,1,1.934726957,2,2.583586626,2
Murray,109,14,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,27.47440273,2,0,1.38456451,3,2.583586626,2
Murray,109,21,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,179.9450549,3,0,3.044104943,1,2.583586626,2
Murray,109,22,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,72.55301794,1,0,2.395599968,2,2.583586626,2
Murray,109,23,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,130.9475397,2,2,2.744430198,2,2.583586626,2
Murray,109,24,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.53815261,1,1,1.983106736,2,2.583586626,2
Murray,109,25,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,61.61550185,2,3,0.842000852,3,2.583586626,2
Murray,109,26,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,191.7365642,3,1,2.189164464,2,2.583586626,2
Murray,109,27,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,75.63510393,3,1,1.637641677,3,2.583586626,2
Murray,109,31,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,62.3119015,1,1,1.48376513,3,2.583586626,2
Murray,109,32,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,104.6534653,3,2,3.672178202,0,2.583586626,2
Murray,109,33,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.99121265,1,3,3.087091782,1,2.583586626,2
Murray,109,34,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.36030341,2,2,3.928639959,0,2.583586626,2
Murray,109,35,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,8.955223881,0,2,3.215717391,1,2.583586626,2
Murray,109,36,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,88.31775701,3,0,4.462419792,0,2.583586626,2
Murray,109,39,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,84.05017921,3,0,1.495232111,3,2.583586626,2
Murray,109,41,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,107.1213036,3,1,3.48189448,0,2.583586626,2
Murray,109,42,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,64.26332288,3,0,4.393815552,0,2.583586626,2
Murray,109,43,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,10.49180328,2,0,5.277350171,0,2.583586626,2
Murray,109,44,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,30.78614623,3,0,3.334412454,1,2.583586626,2
Murray,109,45,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.29425557,2,0,2.763530685,2,2.583586626,2
Murray,109,51,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.535082122,2,2.583586626,2
Murray,109,52,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,2.826080167,1,2.583586626,2
Murray,109,53,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,52.88544358,1,0,3.294490254,1,2.583586626,2
Murray,109,54,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,37.71313942,2,0,4.703538895,0,2.583586626,2
Murray,109,55,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,50,3,0,1.166403088,3,2.583586626,2
Murray,109,56,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.92172211,2,0,3.351366358,1,2.583586626,2
Murray,109,59,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,44.4527178,1,0,2.833331772,1,2.583586626,2
Murray,109,61,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,39.00293255,3,0,1.418062031,3,2.583586626,2
Murray,109,62,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,15.92039801,2,0,5.58626565,0,2.583586626,2
Murray,109,63,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,158.4170854,3,0,2.852111249,1,2.583586626,2
Murray,109,71,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,16.67659321,2,0,3.517283791,0,2.583586626,2
Murray,109,72,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,4.54891329,0,2.583586626,2
Murray,109,73,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,119.5325543,1,0,2.452576498,2,2.583586626,2
Murray,109,74,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,54.57348407,3,0,6.827084124,0,2.583586626,2
Murray,109,81,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,48.34515366,1,0,5.323702597,0,2.583586626,2
Murray,109,82,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,116.2790698,3,0,8.599890638,0,2.583586626,2
Murray,109,83,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,17.7920686,1,0,7.394282019,0,2.583586626,2
Murray,109,84,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,33.8740458,0,0,5.816067226,0,2.583586626,2
Murray,109,85,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,-2.748091603,1,0,8.407560815,0,2.583586626,2
Murray,109,89,7.686506162,1,-17.94668535,0,237.65,280,3,3,53600,1,,,16.66666667,-8.602150538,32.62135922,3,1,3,3.591017499,1,11022,11185,1.478860461,2,109,,1,24.47643979,1,0,3.879472423,0,2.583586626,2
New England and North West,110,11,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,12.51141553,1,0,1.775513209,3,-0.298507463,0
New England and North West,110,12,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,750.1805054,2,0,1.775513209,3,-0.298507463,0
New England and North West,110,13,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.9231852,1,1,1.934726957,2,-0.298507463,0
New England and North West,110,14,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.24119241,3,0,1.38456451,3,-0.298507463,0
New England and North West,110,21,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,179.9450549,1,0,3.044104943,1,-0.298507463,0
New England and North West,110,22,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.44520977,2,0,2.395599968,2,-0.298507463,0
New England and North West,110,23,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,41.21385446,0,2,2.744430198,2,-0.298507463,0
New England and North West,110,24,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,83.36414048,2,1,1.983106736,2,-0.298507463,0
New England and North West,110,25,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,105.9595407,3,3,0.842000852,3,-0.298507463,0
New England and North West,110,26,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,191.7365642,3,1,2.189164464,2,-0.298507463,0
New England and North West,110,27,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,75.63510393,2,1,1.637641677,3,-0.298507463,0
New England and North West,110,31,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-5.532503458,0,1,1.48376513,3,-0.298507463,0
New England and North West,110,32,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,104.6534653,1,2,3.672178202,0,-0.298507463,0
New England and North West,110,33,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,44.99121265,1,3,3.087091782,1,-0.298507463,0
New England and North West,110,34,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,29.35251799,3,2,3.928639959,0,-0.298507463,0
New England and North West,110,35,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,0,2,2,3.215717391,1,-0.298507463,0
New England and North West,110,36,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,85.64814815,0,0,4.462419792,0,-0.298507463,0
New England and North West,110,39,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,135.479798,3,0,1.495232111,3,-0.298507463,0
New England and North West,110,41,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,108.3188908,3,1,3.48189448,0,-0.298507463,0
New England and North West,110,42,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,87.60162602,3,0,4.393815552,0,-0.298507463,0
New England and North West,110,43,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.23146474,3,0,5.277350171,0,-0.298507463,0
New England and North West,110,44,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,30.78614623,1,0,3.334412454,1,-0.298507463,0
New England and North West,110,45,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,33.29425557,0,0,2.763530685,2,-0.298507463,0
New England and North West,110,51,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.535082122,2,-0.298507463,0
New England and North West,110,52,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,2.826080167,1,-0.298507463,0
New England and North West,110,53,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,21.24401914,0,0,3.294490254,1,-0.298507463,0
New England and North West,110,54,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,32.73305085,2,0,4.703538895,0,-0.298507463,0
New England and North West,110,55,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.30103806,0,0,1.166403088,3,-0.298507463,0
New England and North West,110,56,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,902.3809524,3,0,3.351366358,1,-0.298507463,0
New England and North West,110,59,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,3.760445682,1,0,2.833331772,1,-0.298507463,0
New England and North West,110,61,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,39.00293255,1,0,1.418062031,3,-0.298507463,0
New England and North West,110,62,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,14.07867495,2,0,5.58626565,0,-0.298507463,0
New England and North West,110,63,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,158.4170854,2,0,2.852111249,1,-0.298507463,0
New England and North West,110,71,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,24.24486508,2,0,3.517283791,0,-0.298507463,0
New England and North West,110,72,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,4.54891329,0,-0.298507463,0
New England and North West,110,73,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,37.4501992,2,0,2.452576498,2,-0.298507463,0
New England and North West,110,74,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,54.57348407,3,0,6.827084124,0,-0.298507463,0
New England and North West,110,81,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-7.524271845,2,0,5.323702597,0,-0.298507463,0
New England and North West,110,82,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,116.2790698,0,0,8.599890638,0,-0.298507463,0
New England and North West,110,83,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-37.30822873,0,0,7.394282019,0,-0.298507463,0
New England and North West,110,84,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,25.37313433,2,0,5.816067226,0,-0.298507463,0
New England and North West,110,85,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,-31.97831978,1,0,8.407560815,0,-0.298507463,0
New England and North West,110,89,7.686506162,1,-1.805843922,1,319,335,2,2,52500,1,,,-31.42857143,-18.05555556,17.81231321,0,0,2,2.182385057,3,18896,19073,0.936706181,1,110,,1,7.744874715,2,0,3.879472423,0,-0.298507463,0
Newcastle and Lake Macquarie,111,11,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,91.80327869,2,0,1.775513209,3,0.161290323,1
Newcastle and Lake Macquarie,111,12,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,100.3076923,2,0,1.775513209,3,0.161290323,1
Newcastle and Lake Macquarie,111,13,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,11.08094349,1,1,1.934726957,2,0.161290323,1
Newcastle and Lake Macquarie,111,14,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,44.24119241,0,0,1.38456451,3,0.161290323,1
Newcastle and Lake Macquarie,111,21,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,28.59122402,0,0,3.044104943,1,0.161290323,1
Newcastle and Lake Macquarie,111,22,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.44520977,0,0,2.395599968,2,0.161290323,1
Newcastle and Lake Macquarie,111,23,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.708737864,1,2,2.744430198,2,0.161290323,1
Newcastle and Lake Macquarie,111,24,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,103.898051,3,1,1.983106736,2,0.161290323,1
Newcastle and Lake Macquarie,111,25,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,105.9595407,0,3,0.842000852,3,0.161290323,1
Newcastle and Lake Macquarie,111,26,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,107.3770492,3,1,2.189164464,2,0.161290323,1
Newcastle and Lake Macquarie,111,27,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,60.02029427,1,1,1.637641677,3,0.161290323,1
Newcastle and Lake Macquarie,111,31,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,31.36966127,2,1,1.48376513,3,0.161290323,1
Newcastle and Lake Macquarie,111,32,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,8.655616943,2,2,3.672178202,0,0.161290323,1
Newcastle and Lake Macquarie,111,33,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,46.11398964,2,3,3.087091782,1,0.161290323,1
Newcastle and Lake Macquarie,111,34,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,29.35251799,2,2,3.928639959,0,0.161290323,1
Newcastle and Lake Macquarie,111,35,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,0,1,2,3.215717391,1,0.161290323,1
Newcastle and Lake Macquarie,111,36,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-9.589041096,1,0,4.462419792,0,0.161290323,1
Newcastle and Lake Macquarie,111,39,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,135.479798,1,0,1.495232111,3,0.161290323,1
Newcastle and Lake Macquarie,111,41,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,108.3188908,1,1,3.48189448,0,0.161290323,1
Newcastle and Lake Macquarie,111,42,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,87.60162602,0,0,4.393815552,0,0.161290323,1
Newcastle and Lake Macquarie,111,43,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.23146474,1,0,5.277350171,0,0.161290323,1
Newcastle and Lake Macquarie,111,44,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-25,0,0,3.334412454,1,0.161290323,1
Newcastle and Lake Macquarie,111,45,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-22.24215247,0,0,2.763530685,2,0.161290323,1
Newcastle and Lake Macquarie,111,51,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.535082122,2,0.161290323,1
Newcastle and Lake Macquarie,111,52,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,2.826080167,1,0.161290323,1
Newcastle and Lake Macquarie,111,53,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,26.79658952,2,0,3.294490254,1,0.161290323,1
Newcastle and Lake Macquarie,111,54,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,15.06849315,1,0,4.703538895,0,0.161290323,1
Newcastle and Lake Macquarie,111,55,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,18.8034188,2,0,1.166403088,3,0.161290323,1
Newcastle and Lake Macquarie,111,56,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,902.3809524,3,0,3.351366358,1,0.161290323,1
Newcastle and Lake Macquarie,111,59,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,27.11323764,2,0,2.833331772,1,0.161290323,1
Newcastle and Lake Macquarie,111,61,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,1.708428246,2,0,1.418062031,3,0.161290323,1
Newcastle and Lake Macquarie,111,62,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,14.07867495,1,0,5.58626565,0,0.161290323,1
Newcastle and Lake Macquarie,111,63,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,17.56007394,0,0,2.852111249,1,0.161290323,1
Newcastle and Lake Macquarie,111,71,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,24.24486508,2,0,3.517283791,0,0.161290323,1
Newcastle and Lake Macquarie,111,72,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,4.54891329,0,0.161290323,1
Newcastle and Lake Macquarie,111,73,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,37.4501992,2,0,2.452576498,2,0.161290323,1
Newcastle and Lake Macquarie,111,74,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,43.24324324,1,0,6.827084124,0,0.161290323,1
Newcastle and Lake Macquarie,111,81,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-7.524271845,0,0,5.323702597,0,0.161290323,1
Newcastle and Lake Macquarie,111,82,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,36.72316384,2,0,8.599890638,0,0.161290323,1
Newcastle and Lake Macquarie,111,83,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-19.93704092,1,0,7.394282019,0,0.161290323,1
Newcastle and Lake Macquarie,111,84,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,25.37313433,1,0,5.816067226,0,0.161290323,1
Newcastle and Lake Macquarie,111,85,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,-31.97831978,0,0,8.407560815,0,0.161290323,1
Newcastle and Lake Macquarie,111,89,7.686506162,1,13.49773608,3,500,400,1,1,66000,2,,,-35.67839196,-1.814516129,13.14328027,0,2,0,5.247947194,0,22022,22341,1.448551449,2,111,,1,7.744874715,2,0,3.879472423,0,0.161290323,1
Richmond - Tweed,112,11,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,12,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,13,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,14,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,21,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,22,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,23,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,24,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,25,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,26,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,27,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,31,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,32,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,33,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,34,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,35,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,36,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,39,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,41,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,42,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,43,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,44,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,45,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,51,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,52,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,53,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,54,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,55,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,56,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,59,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,61,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,62,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,63,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,71,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,72,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,73,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,74,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,81,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,82,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,83,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,84,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,85,7.686506162,0,-15.30236662,0,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,0.576822234,1
Richmond - Tweed,112,89,7.686506162,0,-15.30236662,0,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,0.576822234,1
Riverina,113,11,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,69.97782705,1,0,1.775513209,3,7.656967841,3
Riverina,113,12,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,750.1805054,3,0,1.775513209,3,7.656967841,3
Riverina,113,13,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.9231852,2,1,1.934726957,2,7.656967841,3
Riverina,113,14,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,27.47440273,2,0,1.38456451,3,7.656967841,3
Riverina,113,21,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,179.9450549,3,0,3.044104943,1,7.656967841,3
Riverina,113,22,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,72.55301794,1,0,2.395599968,2,7.656967841,3
Riverina,113,23,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,130.9475397,2,2,2.744430198,2,7.656967841,3
Riverina,113,24,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.53815261,1,1,1.983106736,2,7.656967841,3
Riverina,113,25,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,61.61550185,2,3,0.842000852,3,7.656967841,3
Riverina,113,26,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,191.7365642,3,1,2.189164464,2,7.656967841,3
Riverina,113,27,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,75.63510393,3,1,1.637641677,3,7.656967841,3
Riverina,113,31,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,62.3119015,1,1,1.48376513,3,7.656967841,3
Riverina,113,32,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,104.6534653,3,2,3.672178202,0,7.656967841,3
Riverina,113,33,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.99121265,1,3,3.087091782,1,7.656967841,3
Riverina,113,34,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.36030341,2,2,3.928639959,0,7.656967841,3
Riverina,113,35,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,8.955223881,0,2,3.215717391,1,7.656967841,3
Riverina,113,36,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,88.31775701,3,0,4.462419792,0,7.656967841,3
Riverina,113,39,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,84.05017921,3,0,1.495232111,3,7.656967841,3
Riverina,113,41,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,107.1213036,3,1,3.48189448,0,7.656967841,3
Riverina,113,42,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,64.26332288,3,0,4.393815552,0,7.656967841,3
Riverina,113,43,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,10.49180328,2,0,5.277350171,0,7.656967841,3
Riverina,113,44,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,30.78614623,3,0,3.334412454,1,7.656967841,3
Riverina,113,45,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.29425557,2,0,2.763530685,2,7.656967841,3
Riverina,113,51,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.535082122,2,7.656967841,3
Riverina,113,52,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,2.826080167,1,7.656967841,3
Riverina,113,53,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,52.88544358,1,0,3.294490254,1,7.656967841,3
Riverina,113,54,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,37.71313942,2,0,4.703538895,0,7.656967841,3
Riverina,113,55,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,50,3,0,1.166403088,3,7.656967841,3
Riverina,113,56,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.92172211,2,0,3.351366358,1,7.656967841,3
Riverina,113,59,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,44.4527178,1,0,2.833331772,1,7.656967841,3
Riverina,113,61,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,39.00293255,3,0,1.418062031,3,7.656967841,3
Riverina,113,62,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,15.92039801,2,0,5.58626565,0,7.656967841,3
Riverina,113,63,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,158.4170854,3,0,2.852111249,1,7.656967841,3
Riverina,113,71,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,16.67659321,2,0,3.517283791,0,7.656967841,3
Riverina,113,72,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,4.54891329,0,7.656967841,3
Riverina,113,73,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,119.5325543,1,0,2.452576498,2,7.656967841,3
Riverina,113,74,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,54.57348407,3,0,6.827084124,0,7.656967841,3
Riverina,113,81,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,48.34515366,1,0,5.323702597,0,7.656967841,3
Riverina,113,82,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,116.2790698,3,0,8.599890638,0,7.656967841,3
Riverina,113,83,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,17.7920686,1,0,7.394282019,0,7.656967841,3
Riverina,113,84,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,33.8740458,0,0,5.816067226,0,7.656967841,3
Riverina,113,85,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,-2.748091603,1,0,8.407560815,0,7.656967841,3
Riverina,113,89,7.686506162,0,25.67133932,3,367,320,2,2,57900,1,,,-52,-10.6741573,16,0,0,1,3.553753831,1,14817,14989,1.160828778,1,113,,1,24.47643979,1,0,3.879472423,0,7.656967841,3
Southern Highlands and Shoalhaven,114,11,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,1,0,1.775513209,3,1.661129568,1
Southern Highlands and Shoalhaven,114,12,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,750.1805054,1,0,1.775513209,3,1.661129568,1
Southern Highlands and Shoalhaven,114,13,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,125.7944587,3,1,1.934726957,2,1.661129568,1
Southern Highlands and Shoalhaven,114,14,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.37370994,2,0,1.38456451,3,1.661129568,1
Southern Highlands and Shoalhaven,114,21,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,179.9450549,0,0,3.044104943,1,1.661129568,1
Southern Highlands and Shoalhaven,114,22,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,128.2010096,3,0,2.395599968,2,1.661129568,1
Southern Highlands and Shoalhaven,114,23,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,41.21385446,2,2,2.744430198,2,1.661129568,1
Southern Highlands and Shoalhaven,114,24,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,21.42658895,1,1,1.983106736,2,1.661129568,1
Southern Highlands and Shoalhaven,114,25,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,153.2659637,3,3,0.842000852,3,1.661129568,1
Southern Highlands and Shoalhaven,114,26,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,191.7365642,0,1,2.189164464,2,1.661129568,1
Southern Highlands and Shoalhaven,114,27,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,75.63510393,1,1,1.637641677,3,1.661129568,1
Southern Highlands and Shoalhaven,114,31,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,24.98915401,2,1,1.48376513,3,1.661129568,1
Southern Highlands and Shoalhaven,114,32,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,104.6534653,2,2,3.672178202,0,1.661129568,1
Southern Highlands and Shoalhaven,114,33,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,50,2,3,3.087091782,1,1.661129568,1
Southern Highlands and Shoalhaven,114,34,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,30.05836576,3,2,3.928639959,0,1.661129568,1
Southern Highlands and Shoalhaven,114,35,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,38.31775701,3,2,3.215717391,1,1.661129568,1
Southern Highlands and Shoalhaven,114,36,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,85.64814815,0,0,4.462419792,0,1.661129568,1
Southern Highlands and Shoalhaven,114,39,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,220.1716738,3,0,1.495232111,3,1.661129568,1
Southern Highlands and Shoalhaven,114,41,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,109.0305445,3,1,3.48189448,0,1.661129568,1
Southern Highlands and Shoalhaven,114,42,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,64.26332288,1,0,4.393815552,0,1.661129568,1
Southern Highlands and Shoalhaven,114,43,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,10.49180328,0,0,5.277350171,0,1.661129568,1
Southern Highlands and Shoalhaven,114,44,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,80.11152416,3,0,3.334412454,1,1.661129568,1
Southern Highlands and Shoalhaven,114,45,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,100,3,0,2.763530685,2,1.661129568,1
Southern Highlands and Shoalhaven,114,51,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.535082122,2,1.661129568,1
Southern Highlands and Shoalhaven,114,52,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,2.826080167,1,1.661129568,1
Southern Highlands and Shoalhaven,114,53,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,23.04111715,1,0,3.294490254,1,1.661129568,1
Southern Highlands and Shoalhaven,114,54,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.73305085,2,0,4.703538895,0,1.661129568,1
Southern Highlands and Shoalhaven,114,55,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,66.55328798,3,0,1.166403088,3,1.661129568,1
Southern Highlands and Shoalhaven,114,56,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,500,3,0,3.351366358,1,1.661129568,1
Southern Highlands and Shoalhaven,114,59,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,57.24381625,3,0,2.833331772,1,1.661129568,1
Southern Highlands and Shoalhaven,114,61,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,39.00293255,2,0,1.418062031,3,1.661129568,1
Southern Highlands and Shoalhaven,114,62,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,32.25806452,3,0,5.58626565,0,1.661129568,1
Southern Highlands and Shoalhaven,114,63,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,158.4170854,3,0,2.852111249,1,1.661129568,1
Southern Highlands and Shoalhaven,114,71,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,16.67659321,2,0,3.517283791,0,1.661129568,1
Southern Highlands and Shoalhaven,114,72,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,4.54891329,0,1.661129568,1
Southern Highlands and Shoalhaven,114,73,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-16.66666667,1,0,2.452576498,2,1.661129568,1
Southern Highlands and Shoalhaven,114,74,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,54.57348407,3,0,6.827084124,0,1.661129568,1
Southern Highlands and Shoalhaven,114,81,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,5.323702597,0,1.661129568,1
Southern Highlands and Shoalhaven,114,82,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,116.2790698,0,0,8.599890638,0,1.661129568,1
Southern Highlands and Shoalhaven,114,83,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,0,2,0,7.394282019,0,1.661129568,1
Southern Highlands and Shoalhaven,114,84,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,13.59223301,2,0,5.816067226,0,1.661129568,1
Southern Highlands and Shoalhaven,114,85,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,-37.02956989,0,0,8.407560815,0,1.661129568,1
Southern Highlands and Shoalhaven,114,89,7.686506162,0,28.87135269,3,317,320,2,2,52200,1,,,-13.33333333,11.35135135,16.80672269,2,3,1,0.925295648,3,10889,10911,0.202038755,0,114,,1,12.92834891,2,0,3.879472423,0,1.661129568,1
Sydney - Baulkham Hills and Hawkesbury,115,11,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,12,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,13,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,14,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,21,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,22,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,23,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,24,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,25,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,26,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,27,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,31,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,32,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,33,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,34,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,35,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,36,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,39,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,41,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,42,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,43,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,44,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,45,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,51,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,52,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,53,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,54,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,55,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,56,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,59,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,61,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,62,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,63,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,71,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,72,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,73,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,74,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,81,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,82,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,83,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,84,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,85,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Baulkham Hills and Hawkesbury,115,89,7.744718684,0,18.51987307,3,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,3.610755442,2
Sydney - Blacktown,116,11,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,12,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,13,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,14,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,21,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,22,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,23,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,24,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,25,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,26,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,27,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,31,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,32,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,33,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,34,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,35,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,36,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,39,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,41,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,42,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,43,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,44,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,45,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,51,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,52,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,53,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,54,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,55,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,56,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,59,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,61,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,62,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,63,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,71,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,72,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,73,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,74,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,81,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,82,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,83,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,84,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,85,5.752836627,1,19.94198963,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.181603774,2
Sydney - Blacktown,116,89,5.752836627,1,19.94198963,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.181603774,2
Sydney - City and Inner South,117,11,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,12,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,13,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,14,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,21,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,22,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,23,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,24,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,25,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,26,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,27,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,31,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,32,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,33,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,34,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,35,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,36,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,39,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,41,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,42,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,43,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,44,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,45,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,51,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,52,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,53,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,54,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,55,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,56,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,59,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,61,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,62,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,63,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,71,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,72,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,73,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,74,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,81,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,82,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,83,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,84,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,85,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - City and Inner South,117,89,3.586131102,3,7.025103092,2,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,6.390757531,3
Sydney - Eastern Suburbs,118,11,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,12,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,13,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,14,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,21,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,22,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,23,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,24,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,25,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,26,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,27,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,31,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,32,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,33,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,34,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,35,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,36,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,39,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,41,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,42,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,43,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,44,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,45,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,51,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,52,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,53,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,54,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,55,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,56,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,59,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,61,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,62,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,63,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,71,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,72,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,73,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,74,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,81,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,82,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,83,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,84,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,85,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Eastern Suburbs,118,89,2.057049113,3,1.783433889,2,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,4.997341839,3
Sydney - Inner South West,119,11,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.34152334,2,0,1.775513209,3,5.381561535,3
Sydney - Inner South West,119,12,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,0,0,0,1.775513209,3,5.381561535,3
Sydney - Inner South West,119,13,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.45209581,2,1,1.934726957,2,5.381561535,3
Sydney - Inner South West,119,14,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.32359081,3,0,1.38456451,3,5.381561535,3
Sydney - Inner South West,119,21,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.44444444,2,0,3.044104943,1,5.381561535,3
Sydney - Inner South West,119,22,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.5630713,2,0,2.395599968,2,5.381561535,3
Sydney - Inner South West,119,23,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,59.55574183,3,2,2.744430198,2,5.381561535,3
Sydney - Inner South West,119,24,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,61.29032258,2,1,1.983106736,2,5.381561535,3
Sydney - Inner South West,119,25,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,49.80031949,2,3,0.842000852,3,5.381561535,3
Sydney - Inner South West,119,26,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,30.09463722,2,1,2.189164464,2,5.381561535,3
Sydney - Inner South West,119,27,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.47533632,1,1,1.637641677,3,5.381561535,3
Sydney - Inner South West,119,31,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.05627706,3,1,1.48376513,3,5.381561535,3
Sydney - Inner South West,119,32,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,44.40860215,3,2,3.672178202,0,5.381561535,3
Sydney - Inner South West,119,33,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,99.29824561,3,3,3.087091782,1,5.381561535,3
Sydney - Inner South West,119,34,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,92.81183932,3,2,3.928639959,0,5.381561535,3
Sydney - Inner South West,119,35,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,55.01858736,3,2,3.215717391,1,5.381561535,3
Sydney - Inner South West,119,36,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,52.25522552,2,0,4.462419792,0,5.381561535,3
Sydney - Inner South West,119,39,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,57.23923197,2,0,1.495232111,3,5.381561535,3
Sydney - Inner South West,119,41,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,50.64575646,2,1,3.48189448,0,5.381561535,3
Sydney - Inner South West,119,42,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,85.30612245,3,0,4.393815552,0,5.381561535,3
Sydney - Inner South West,119,43,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,37.76150628,3,0,5.277350171,0,5.381561535,3
Sydney - Inner South West,119,44,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,21.71492205,2,0,3.334412454,1,5.381561535,3
Sydney - Inner South West,119,45,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,31.03448276,2,0,2.763530685,2,5.381561535,3
Sydney - Inner South West,119,51,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.535082122,2,5.381561535,3
Sydney - Inner South West,119,52,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,2.826080167,1,5.381561535,3
Sydney - Inner South West,119,53,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.0952381,3,0,3.294490254,1,5.381561535,3
Sydney - Inner South West,119,54,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.72685185,3,0,4.703538895,0,5.381561535,3
Sydney - Inner South West,119,55,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.23674476,2,0,1.166403088,3,5.381561535,3
Sydney - Inner South West,119,56,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,77.36625514,3,0,3.351366358,1,5.381561535,3
Sydney - Inner South West,119,59,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,32.63506064,2,0,2.833331772,1,5.381561535,3
Sydney - Inner South West,119,61,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,36.63101604,3,0,1.418062031,3,5.381561535,3
Sydney - Inner South West,119,62,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,48.37872892,3,0,5.58626565,0,5.381561535,3
Sydney - Inner South West,119,63,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,1.773533424,2,0,2.852111249,1,5.381561535,3
Sydney - Inner South West,119,71,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,63.18944844,3,0,3.517283791,0,5.381561535,3
Sydney - Inner South West,119,72,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,4.54891329,0,5.381561535,3
Sydney - Inner South West,119,73,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,121.3250518,3,0,2.452576498,2,5.381561535,3
Sydney - Inner South West,119,74,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,45.84103512,3,0,6.827084124,0,5.381561535,3
Sydney - Inner South West,119,81,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,23.84792627,3,0,5.323702597,0,5.381561535,3
Sydney - Inner South West,119,82,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,70.07874016,3,0,8.599890638,0,5.381561535,3
Sydney - Inner South West,119,83,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,28.4843869,3,0,7.394282019,0,5.381561535,3
Sydney - Inner South West,119,84,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,72.19589258,3,0,5.816067226,0,5.381561535,3
Sydney - Inner South West,119,85,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,-13.77018044,2,0,8.407560815,0,5.381561535,3
Sydney - Inner South West,119,89,2.67121134,3,0.78625932,2,895,500,0,0,68100,2,,,-25.67567568,2.479338843,24.36281859,1,2,3,2.471884783,3,44393,45723,2.995967833,3,119,,1,35.57951482,3,0,3.879472423,0,5.381561535,3
Sydney - Inner West,120,11,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,12,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,13,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,14,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,21,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,22,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,23,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,24,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,25,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,26,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,27,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,31,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,32,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,33,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,34,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,35,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,36,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,39,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,41,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,42,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,43,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,44,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,45,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,51,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,52,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,53,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,54,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,55,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,56,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,59,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,61,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,62,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,63,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,71,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,72,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,73,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,74,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,81,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,82,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,83,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,84,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,85,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - Inner West,120,89,4.873954042,2,14.46295643,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,6.099009901,3
Sydney - North Sydney and Hornsby,121,11,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,12,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,13,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,14,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,21,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,22,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,23,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,24,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,25,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,26,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,27,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,31,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,32,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,33,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,34,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,35,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,36,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,39,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,41,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,42,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,43,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,44,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,45,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,51,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,52,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,53,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,54,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,55,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,56,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,59,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,61,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,62,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,63,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,71,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,72,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,73,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,74,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,81,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,82,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,83,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,84,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,85,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - North Sydney and Hornsby,121,89,1.226815801,3,5.715637536,2,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,2.016447889,2
Sydney - Northern Beaches,122,11,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,12,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,13,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,14,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,21,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,22,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,23,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,24,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,25,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,26,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,27,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,31,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,32,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,33,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,34,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,35,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,36,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,39,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,41,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,42,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,43,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,44,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,45,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,51,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,52,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,53,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,54,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,55,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,56,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,59,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,61,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,62,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,63,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,71,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,72,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,73,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,74,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,81,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,82,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,83,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,84,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,85,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Northern Beaches,122,89,4.401722151,2,-0.321673004,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,3.58675133,2
Sydney - Outer South West,123,11,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,12,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,13,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,14,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,21,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,22,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,23,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,24,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,25,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,26,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,27,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,31,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,32,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,33,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,34,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,35,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,36,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,39,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,41,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,42,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,43,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,44,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,45,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,51,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,52,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,53,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,54,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,55,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,56,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,59,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,61,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,62,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,63,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,71,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,72,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,73,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,74,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,81,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,82,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,83,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,84,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,85,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer South West,123,89,4.873954042,2,23.40625999,3,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,0.207612457,1
Sydney - Outer West and Blue Mountains,124,11,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,12,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,13,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,14,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,21,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,22,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,23,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,24,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,25,4.873954042,2,-2.522464711,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,0.747314339,1
Sydney - Outer West and Blue Mountains,124,26,4.873954042,2,-2.522464711,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,0.747314339,1