-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlookup.sql
2971 lines (2961 loc) · 241 KB
/
lookup.sql
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
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 23, 2012 at 11:58 AM
-- Server version: 5.6.5-m8
-- PHP Version: 5.3.13
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `NBN`
--
-- --------------------------------------------------------
--
-- Table structure for table `lookup`
--
CREATE TABLE IF NOT EXISTS `lookup` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`postcode` int(11) NOT NULL,
`suburb` text NOT NULL,
`status` text NOT NULL,
`service` text NOT NULL,
`commencment` text,
`completion` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2920 ;
--
-- Dumping data for table `lookup`
--
INSERT INTO `lookup` (`id`, `postcode`, `suburb`, `status`, `service`, `commencment`, `completion`) VALUES
(1, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(2, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(3, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(4, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(5, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(6, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(7, 2351, 'Armidale', 'Active', 'Fibre', '', ''),
(8, 2350, 'Armidale', 'Active', 'Fibre', '', ''),
(9, 2533, 'Kiama Downs', 'Active', 'Fibre', '', ''),
(10, 2533, 'Minnamurra', 'Active', 'Fibre', '', ''),
(11, 4814, 'Aitkenvale', 'Active', 'Fibre', '', ''),
(12, 4812, 'Mundingburra', 'Active', 'Fibre', '', ''),
(13, 5172, 'Willunga', 'Active', 'Fibre', '', ''),
(14, 5172, 'Willunga South', 'Active', 'Fibre', '', ''),
(15, 7304, 'Deloraine', 'Active', 'Fibre', '', ''),
(16, 7253, 'George Town', 'Active', 'Fibre', '', ''),
(17, 7050, 'Kingston Beach', 'Active', 'Fibre', '', ''),
(18, 7171, 'Midway Point', 'Active', 'Fibre', '', ''),
(19, 7260, 'Scottsdale', 'Active', 'Fibre', '', ''),
(20, 7330, 'Smithton', 'Active', 'Fibre', '', ''),
(21, 7172, 'Sorell', 'Active', 'Fibre', '', ''),
(22, 7216, 'St Helens', 'Active', 'Fibre', '', ''),
(23, 7216, 'Stieglitz', 'Active', 'Fibre', '', ''),
(24, 7190, 'Triabunna', 'Active', 'Fibre', '', ''),
(25, 3056, 'Brunswick', 'Active', 'Fibre', '', ''),
(26, 3752, 'South Morang', 'Active', 'Fibre', '', ''),
(27, 2358, 'Arding', 'Active', 'Wireless', '', ''),
(28, 2350, 'Armidale', 'Active', 'Wireless', '', ''),
(29, 2350, 'Armidale', 'Active', 'Wireless', '', ''),
(30, 2345, 'Attunga', 'Active', 'Wireless', '', ''),
(31, 2355, 'Bendemeer', 'Active', 'Wireless', '', ''),
(32, 2340, 'Bithramere', 'Active', 'Wireless', '', ''),
(33, 2340, 'Calala', 'Active', 'Wireless', '', ''),
(34, 2340, 'Calala', 'Active', 'Wireless', '', ''),
(35, 2340, 'Daruka', 'Active', 'Wireless', '', ''),
(36, 2340, 'Dungowan', 'Active', 'Wireless', '', ''),
(37, 2344, 'Duri', 'Active', 'Wireless', '', ''),
(38, 2340, 'East Tamworth', 'Active', 'Wireless', '', ''),
(39, 2340, 'Hallsville', 'Active', 'Wireless', '', ''),
(40, 2340, 'Hillvue', 'Active', 'Wireless', '', ''),
(41, 2340, 'Kingswood', 'Active', 'Wireless', '', ''),
(42, 2340, 'Kingswood', 'Active', 'Wireless', '', ''),
(43, 2352, 'Kootingal', 'Active', 'Wireless', '', ''),
(44, 2340, 'Loomberah', 'Active', 'Wireless', '', ''),
(45, 2340, 'Moore Creek', 'Active', 'Wireless', '', ''),
(46, 2340, 'Nemingha', 'Active', 'Wireless', '', ''),
(47, 2340, 'Nemingha', 'Active', 'Wireless', '', ''),
(48, 2340, 'Nundle', 'Active', 'Wireless', '', ''),
(49, 2340, 'Oxley Vale', 'Active', 'Wireless', '', ''),
(50, 2343, 'Quirindi', 'Active', 'Wireless', '', ''),
(51, 2340, 'Somerton', 'Active', 'Wireless', '', ''),
(52, 2340, 'Somerton', 'Active', 'Wireless', '', ''),
(53, 2340, 'Taminda', 'Active', 'Wireless', '', ''),
(54, 2340, 'Timbumburi', 'Active', 'Wireless', '', ''),
(55, 2352, 'Tintinhull', 'Active', 'Wireless', '', ''),
(56, 2358, 'Uralla', 'Active', 'Wireless', '', ''),
(57, 2340, 'Wallamore', 'Active', 'Wireless', '', ''),
(58, 2340, 'Wallamore', 'Active', 'Wireless', '', ''),
(59, 2340, 'Wallamore', 'Active', 'Wireless', '', ''),
(60, 2340, 'Warral', 'Active', 'Wireless', '', ''),
(61, 2340, 'Warral', 'Active', 'Wireless', '', ''),
(62, 2340, 'Warral', 'Active', 'Wireless', '', ''),
(63, 2340, 'Westdale', 'Active', 'Wireless', '', ''),
(64, 2344, 'Winton', 'Active', 'Wireless', '', ''),
(65, 2340, 'Woolomin', 'Active', 'Wireless', '', ''),
(66, 4350, 'Athol', 'Active', 'Wireless', '', ''),
(67, 4350, 'Athol', 'Active', 'Wireless', '', ''),
(68, 4401, 'Biddeston', 'Active', 'Wireless', '', ''),
(69, 4401, 'Biddeston', 'Active', 'Wireless', '', ''),
(70, 4352, 'Blanchview', 'Active', 'Wireless', '', ''),
(71, 4356, 'Bongeen', 'Active', 'Wireless', '', ''),
(72, 4404, 'Bowenville', 'Active', 'Wireless', '', ''),
(73, 4364, 'Brookstead', 'Active', 'Wireless', '', ''),
(74, 4352, 'Cabarlah', 'Active', 'Wireless', '', ''),
(75, 4358, 'Cambooya', 'Active', 'Wireless', '', ''),
(76, 4358, 'Cambooya', 'Active', 'Wireless', '', ''),
(77, 4350, 'Drayton', 'Active', 'Wireless', '', ''),
(78, 4359, 'East Greenmount', 'Active', 'Wireless', '', ''),
(79, 4356, 'Felton', 'Active', 'Wireless', '', ''),
(80, 4356, 'Felton', 'Active', 'Wireless', '', ''),
(81, 4352, 'Geham', 'Active', 'Wireless', '', ''),
(82, 4352, 'Glencoe', 'Active', 'Wireless', '', ''),
(83, 4352, 'Glencoe', 'Active', 'Wireless', '', ''),
(84, 4350, 'Glenvale', 'Active', 'Wireless', '', ''),
(85, 4354, 'Goombungee', 'Active', 'Wireless', '', ''),
(86, 4352, 'Gowrie Junction', 'Active', 'Wireless', '', ''),
(87, 4350, 'Gowrie Mountain', 'Active', 'Wireless', '', ''),
(88, 4350, 'Gowrie Mountain', 'Active', 'Wireless', '', ''),
(89, 4359, 'Greenmount', 'Active', 'Wireless', '', ''),
(90, 4352, 'Groomsville', 'Active', 'Wireless', '', ''),
(91, 4356, 'Irongate', 'Active', 'Wireless', '', ''),
(92, 4356, 'Irongate', 'Active', 'Wireless', '', ''),
(93, 4403, 'Jondaryan', 'Active', 'Wireless', '', ''),
(94, 4403, 'Jondaryan', 'Active', 'Wireless', '', ''),
(95, 4400, 'Kingsthorpe', 'Active', 'Wireless', '', ''),
(96, 4352, 'Kleinton', 'Active', 'Wireless', '', ''),
(97, 4356, 'Linthorpe', 'Active', 'Wireless', '', ''),
(98, 4352, 'Meringandan West', 'Active', 'Wireless', '', ''),
(99, 4350, 'Mount Kynoch', 'Active', 'Wireless', '', ''),
(100, 4350, 'Mount Rascal', 'Active', 'Wireless', '', ''),
(101, 4401, 'Oakey', 'Active', 'Wireless', '', ''),
(102, 4401, 'Oakey', 'Active', 'Wireless', '', ''),
(103, 4356, 'Pittsworth', 'Active', 'Wireless', '', ''),
(104, 4352, 'Postmans Ridge', 'Active', 'Wireless', '', ''),
(105, 4356, 'Scrubby Mountain', 'Active', 'Wireless', '', ''),
(106, 4363, 'Southbrook', 'Active', 'Wireless', '', ''),
(107, 4356, 'Stoneleigh', 'Active', 'Wireless', '', ''),
(108, 4352, 'Vale View', 'Active', 'Wireless', '', ''),
(109, 4350, 'Wellcamp', 'Active', 'Wireless', '', ''),
(110, 4350, 'Westbrook', 'Active', 'Wireless', '', ''),
(111, 4350, 'Westbrook', 'Active', 'Wireless', '', ''),
(112, 4352, 'Withcott', 'Active', 'Wireless', '', ''),
(113, 4352, 'Yandilla', 'Active', 'Wireless', '', ''),
(114, 3350, 'Alfredton', 'Active', 'Wireless', '', ''),
(115, 3364, 'Allendale', 'Active', 'Wireless', '', ''),
(116, 3350, 'Ballarat East', 'Active', 'Wireless', '', ''),
(117, 3364, 'Broomfield', 'Active', 'Wireless', '', ''),
(118, 3350, 'Brown Hill', 'Active', 'Wireless', '', ''),
(119, 3350, 'Brown Hill', 'Active', 'Wireless', '', ''),
(120, 3350, 'Brown Hill', 'Active', 'Wireless', '', ''),
(121, 3352, 'Bungaree', 'Active', 'Wireless', '', ''),
(122, 3357, 'Buninyong', 'Active', 'Wireless', '', ''),
(123, 3352, 'Bunkers Hill', 'Active', 'Wireless', '', ''),
(124, 3352, 'Bunkers Hill', 'Active', 'Wireless', '', ''),
(125, 3352, 'Burrumbeet', 'Active', 'Wireless', '', ''),
(126, 3352, 'Cambrian Hill', 'Active', 'Wireless', '', ''),
(127, 3352, 'Cardigan', 'Active', 'Wireless', '', ''),
(128, 3352, 'Cardigan', 'Active', 'Wireless', '', ''),
(129, 3351, 'Carngham', 'Active', 'Wireless', '', ''),
(130, 3351, 'Carngham', 'Active', 'Wireless', '', ''),
(131, 3351, 'Carngham', 'Active', 'Wireless', '', ''),
(132, 3352, 'Clarendon', 'Active', 'Wireless', '', ''),
(133, 3363, 'Dean', 'Active', 'Wireless', '', ''),
(134, 3356, 'Delacombe', 'Active', 'Wireless', '', ''),
(135, 3352, 'Dunnstown', 'Active', 'Wireless', '', ''),
(136, 3352, 'Durham Lead', 'Active', 'Wireless', '', ''),
(137, 3334, 'Elaine', 'Active', 'Wireless', '', ''),
(138, 3352, 'Enfield', 'Active', 'Wireless', '', ''),
(139, 3352, 'Garibaldi', 'Active', 'Wireless', '', ''),
(140, 3352, 'Garibaldi', 'Active', 'Wireless', '', ''),
(141, 3345, 'Gordon', 'Active', 'Wireless', '', ''),
(142, 3351, 'Haddon', 'Active', 'Wireless', '', ''),
(143, 3351, 'Haddon', 'Active', 'Wireless', '', ''),
(144, 3352, 'Invermay', 'Active', 'Wireless', '', ''),
(145, 3352, 'Invermay', 'Active', 'Wireless', '', ''),
(146, 3364, 'Kingston', 'Active', 'Wireless', '', ''),
(147, 3352, 'Lal Lal', 'Active', 'Wireless', '', ''),
(148, 3352, 'Millbrook', 'Active', 'Wireless', '', ''),
(149, 3352, 'Miners Rest', 'Active', 'Wireless', '', ''),
(150, 3355, 'Mitchell Park', 'Active', 'Wireless', '', ''),
(151, 3334, 'Morrisons', 'Active', 'Wireless', '', ''),
(152, 3352, 'Mount Egerton', 'Active', 'Wireless', '', ''),
(153, 3352, 'Mount Rowan', 'Active', 'Wireless', '', ''),
(154, 3352, 'Mount Rowan', 'Active', 'Wireless', '', ''),
(155, 3352, 'Napoleons', 'Active', 'Wireless', '', ''),
(156, 3352, 'Napoleons', 'Active', 'Wireless', '', ''),
(157, 3352, 'Navigators', 'Active', 'Wireless', '', ''),
(158, 3352, 'Navigators', 'Active', 'Wireless', '', ''),
(159, 3350, 'Nerrina', 'Active', 'Wireless', '', ''),
(160, 3350, 'Nerrina', 'Active', 'Wireless', '', ''),
(161, 3351, 'Ross Creek', 'Active', 'Wireless', '', ''),
(162, 3351, 'Scarsdale', 'Active', 'Wireless', '', ''),
(163, 3351, 'Smythes Creek', 'Active', 'Wireless', '', ''),
(164, 3351, 'Smythes Creek', 'Active', 'Wireless', '', ''),
(165, 3351, 'Smythesdale', 'Active', 'Wireless', '', ''),
(166, 3351, 'Smythesdale', 'Active', 'Wireless', '', ''),
(167, 3351, 'Smythesdale', 'Active', 'Wireless', '', ''),
(168, 3351, 'Snake Valley', 'Active', 'Wireless', '', ''),
(169, 3352, 'Springbank', 'Active', 'Wireless', '', ''),
(170, 3352, 'Springbank', 'Active', 'Wireless', '', ''),
(171, 3352, 'Trawalla', 'Active', 'Wireless', '', ''),
(172, 3352, 'Warrenheip', 'Active', 'Wireless', '', ''),
(173, 3352, 'Warrenheip', 'Active', 'Wireless', '', ''),
(174, 3352, 'Yendon', 'Active', 'Wireless', '', ''),
(175, 3352, 'Yendon', 'Active', 'Wireless', '', ''),
(176, 6532, 'Deepdale', 'Active', 'Wireless', '', ''),
(177, 6532, 'Drummond Cove', 'Active', 'Wireless', '', ''),
(178, 6532, 'Glenfield', 'Active', 'Wireless', '', ''),
(179, 6532, 'Howatharra', 'Active', 'Wireless', '', ''),
(180, 6532, 'Minnenooka', 'Active', 'Wireless', '', ''),
(181, 6532, 'Moonyoonooka', 'Active', 'Wireless', '', ''),
(182, 6532, 'Moonyoonooka', 'Active', 'Wireless', '', ''),
(183, 6530, 'Moresby', 'Active', 'Wireless', '', ''),
(184, 6530, 'Moresby', 'Active', 'Wireless', '', ''),
(185, 6532, 'Rudds Gully', 'Active', 'Wireless', '', ''),
(186, 6530, 'Spalding', 'Active', 'Wireless', '', ''),
(187, 6530, 'Sunset Beach', 'Active', 'Wireless', '', ''),
(188, 6530, 'Waggrakine', 'Active', 'Wireless', '', ''),
(189, 6532, 'White Peak', 'Active', 'Wireless', '', ''),
(190, 2615, 'Macgregor', 'Active', 'Greenfields Fibre', '', ''),
(191, 2615, 'Macgregor', 'Active', 'Greenfields Fibre', '', ''),
(192, 2615, 'Macgregor', 'Active', 'Greenfields Fibre', '', ''),
(193, 2602, 'Watson', 'Active', 'Greenfields Fibre', '', ''),
(194, 2602, 'Watson', 'Active', 'Greenfields Fibre', '', ''),
(195, 2575, 'Balaclava', 'Active', 'Greenfields Fibre', '', ''),
(196, 2795, 'Bathurst', 'Active', 'Greenfields Fibre', '', ''),
(197, 2153, 'Bella Vista', 'Active', 'Greenfields Fibre', '', ''),
(198, 2153, 'Bella Vista', 'Active', 'Greenfields Fibre', '', ''),
(199, 2264, 'Bonnells Bay', 'Active', 'Greenfields Fibre', '', ''),
(200, 2177, 'Bonnyrigg', 'Active', 'Greenfields Fibre', '', ''),
(201, 2650, 'Boorooma', 'Active', 'Greenfields Fibre', '', ''),
(202, 2154, 'Castle Hill', 'Active', 'Greenfields Fibre', '', ''),
(203, 2325, 'Cessnock', 'Active', 'Greenfields Fibre', '', ''),
(204, 2138, 'Concord West', 'Active', 'Greenfields Fibre', '', ''),
(205, 2138, 'Concord West', 'Active', 'Greenfields Fibre', '', ''),
(206, 2749, 'Cranebrook', 'Active', 'Greenfields Fibre', '', ''),
(207, 2767, 'Doonside', 'Active', 'Greenfields Fibre', '', ''),
(208, 2830, 'Dubbo', 'Active', 'Greenfields Fibre', '', ''),
(209, 2323, 'East Maitland', 'Active', 'Greenfields Fibre', '', ''),
(210, 2323, 'East Maitland', 'Active', 'Greenfields Fibre', '', ''),
(211, 2323, 'East Maitland', 'Active', 'Greenfields Fibre', '', ''),
(212, 2122, 'Eastwood', 'Active', 'Greenfields Fibre', '', ''),
(213, 2174, 'Edmondson Park', 'Active', 'Greenfields Fibre', '', ''),
(214, 2529, 'Flinders', 'Active', 'Greenfields Fibre', '', ''),
(215, 2321, 'Gillieston Heights', 'Active', 'Greenfields Fibre', '', ''),
(216, 2580, 'Goulburn', 'Active', 'Greenfields Fibre', '', ''),
(217, 2567, 'Harrington Park', 'Active', 'Greenfields Fibre', '', ''),
(218, 2567, 'Harrington Park', 'Active', 'Greenfields Fibre', '', ''),
(219, 2540, 'Hyams Beach', 'Active', 'Greenfields Fibre', '', ''),
(220, 2155, 'Kellyville', 'Active', 'Greenfields Fibre', '', ''),
(221, 2445, 'Lake Cathie', 'Active', 'Greenfields Fibre', '', ''),
(222, 2641, 'Lavington', 'Active', 'Greenfields Fibre', '', ''),
(223, 2141, 'Lidcombe', 'Active', 'Greenfields Fibre', '', ''),
(224, 2170, 'Liverpool', 'Active', 'Greenfields Fibre', '', ''),
(225, 2020, 'Mascot', 'Active', 'Greenfields Fibre', '', ''),
(226, 2171, 'Middleton Grange', 'Active', 'Greenfields Fibre', '', ''),
(227, 2170, 'Moorebank', 'Active', 'Greenfields Fibre', '', ''),
(228, 2170, 'Moorebank', 'Active', 'Greenfields Fibre', '', ''),
(229, 2745, 'Mulgoa', 'Active', 'Greenfields Fibre', '', ''),
(230, 2482, 'Mullumbimby', 'Active', 'Greenfields Fibre', '', ''),
(231, 2333, 'Muswellbrook', 'Active', 'Greenfields Fibre', '', ''),
(232, 2320, 'Oakhampton', 'Active', 'Greenfields Fibre', '', ''),
(233, 2320, 'Oakhampton', 'Active', 'Greenfields Fibre', '', ''),
(234, 2748, 'Orchard Hills', 'Active', 'Greenfields Fibre', '', ''),
(235, 2145, 'Pemulwuy', 'Active', 'Greenfields Fibre', '', ''),
(236, 2750, 'Penrith', 'Active', 'Greenfields Fibre', '', ''),
(237, 2756, 'Pitt Town', 'Active', 'Greenfields Fibre', '', ''),
(238, 2016, 'Redfern', 'Active', 'Greenfields Fibre', '', ''),
(239, 2138, 'Rhodes', 'Active', 'Greenfields Fibre', '', ''),
(240, 2320, 'Rutherford', 'Active', 'Greenfields Fibre', '', ''),
(241, 2112, 'Ryde', 'Active', 'Greenfields Fibre', '', ''),
(242, 2112, 'Ryde', 'Active', 'Greenfields Fibre', '', ''),
(243, 2529, 'Shell Cove', 'Active', 'Greenfields Fibre', '', ''),
(244, 2541, 'South Nowra', 'Active', 'Greenfields Fibre', '', ''),
(245, 2570, 'Spring Farm', 'Active', 'Greenfields Fibre', '', ''),
(246, 2570, 'Spring Farm', 'Active', 'Greenfields Fibre', '', ''),
(247, 2570, 'Spring Farm', 'Active', 'Greenfields Fibre', '', ''),
(248, 2570, 'Spring Farm', 'Active', 'Greenfields Fibre', '', ''),
(249, 2573, 'Tahmoor', 'Active', 'Greenfields Fibre', '', ''),
(250, 2769, 'The Ponds', 'Active', 'Greenfields Fibre', '', ''),
(251, 2769, 'The Ponds', 'Active', 'Greenfields Fibre', '', ''),
(252, 2769, 'The Ponds', 'Active', 'Greenfields Fibre', '', ''),
(253, 2769, 'The Ponds', 'Active', 'Greenfields Fibre', '', ''),
(254, 2769, 'The Ponds', 'Active', 'Greenfields Fibre', '', ''),
(255, 2515, 'Thirroul', 'Active', 'Greenfields Fibre', '', ''),
(256, 2444, 'Thrumster', 'Active', 'Greenfields Fibre', '', ''),
(257, 2650, 'Wagga Wagga', 'Active', 'Greenfields Fibre', '', ''),
(258, 2528, 'Warilla', 'Active', 'Greenfields Fibre', '', ''),
(259, 2528, 'Warilla', 'Active', 'Greenfields Fibre', '', ''),
(260, 2477, 'Wollongbar', 'Active', 'Greenfields Fibre', '', ''),
(261, 4817, 'Alice River', 'Active', 'Greenfields Fibre', '', ''),
(262, 4300, 'Augustine Heights', 'Active', 'Greenfields Fibre', '', ''),
(263, 4300, 'Augustine Heights', 'Active', 'Greenfields Fibre', '', ''),
(264, 4740, 'Beaconsfield', 'Active', 'Greenfields Fibre', '', ''),
(265, 4560, 'Bli Bli', 'Active', 'Greenfields Fibre', '', ''),
(266, 4034, 'Boondall', 'Active', 'Greenfields Fibre', '', ''),
(267, 4006, 'Bowen Hills', 'Active', 'Greenfields Fibre', '', ''),
(268, 4750, 'Bucasia', 'Active', 'Greenfields Fibre', '', ''),
(269, 4304, 'Bundamba', 'Active', 'Greenfields Fibre', '', ''),
(270, 4505, 'Burpengary', 'Active', 'Greenfields Fibre', '', ''),
(271, 4818, 'Bushland Beach', 'Active', 'Greenfields Fibre', '', ''),
(272, 4818, 'Bushland Beach', 'Active', 'Greenfields Fibre', '', ''),
(273, 4503, 'Dakabin', 'Active', 'Greenfields Fibre', '', ''),
(274, 4077, 'Doolandella', 'Active', 'Greenfields Fibre', '', ''),
(275, 4077, 'Durack', 'Active', 'Greenfields Fibre', '', ''),
(276, 4869, 'Edmonton', 'Active', 'Greenfields Fibre', '', ''),
(277, 4300, 'Goodna', 'Active', 'Greenfields Fibre', '', ''),
(278, 4300, 'Goodna', 'Active', 'Greenfields Fibre', '', ''),
(279, 4347, 'Grantham', 'Active', 'Greenfields Fibre', '', ''),
(280, 4347, 'Grantham', 'Active', 'Greenfields Fibre', '', ''),
(281, 4503, 'Griffin', 'Active', 'Greenfields Fibre', '', ''),
(282, 4118, 'Hillcrest', 'Active', 'Greenfields Fibre', '', ''),
(283, 4305, 'Ipswich', 'Active', 'Greenfields Fibre', '', ''),
(284, 4059, 'Kelvin Grove', 'Active', 'Greenfields Fibre', '', ''),
(285, 4341, 'Laidley', 'Active', 'Greenfields Fibre', '', ''),
(286, 4207, 'Logan Village', 'Active', 'Greenfields Fibre', '', ''),
(287, 4207, 'Luscombe', 'Active', 'Greenfields Fibre', '', ''),
(288, 4207, 'Luscombe', 'Active', 'Greenfields Fibre', '', ''),
(289, 4207, 'Luscombe', 'Active', 'Greenfields Fibre', '', ''),
(290, 4558, 'Maroochydore', 'Active', 'Greenfields Fibre', '', ''),
(291, 4558, 'Maroochydore', 'Active', 'Greenfields Fibre', '', ''),
(292, 4006, 'Newstead', 'Active', 'Greenfields Fibre', '', ''),
(293, 4509, 'North Lakes', 'Active', 'Greenfields Fibre', '', ''),
(294, 4509, 'North Lakes', 'Active', 'Greenfields Fibre', '', ''),
(295, 4509, 'North Lakes', 'Active', 'Greenfields Fibre', '', ''),
(296, 4509, 'North Lakes', 'Active', 'Greenfields Fibre', '', ''),
(297, 4502, 'Petrie', 'Active', 'Greenfields Fibre', '', ''),
(298, 4123, 'Rochedale', 'Active', 'Greenfields Fibre', '', ''),
(299, 4740, 'Rural View', 'Active', 'Greenfields Fibre', '', ''),
(300, 4306, 'South Ripley', 'Active', 'Greenfields Fibre', '', ''),
(301, 4500, 'Warner', 'Active', 'Greenfields Fibre', '', ''),
(302, 5372, 'Freeling', 'Active', 'Greenfields Fibre', '', ''),
(303, 5115, 'Munno Para West', 'Active', 'Greenfields Fibre', '', ''),
(304, 5355, 'Nuriootpa', 'Active', 'Greenfields Fibre', '', ''),
(305, 5169, 'Seaford Meadows', 'Active', 'Greenfields Fibre', '', ''),
(306, 5169, 'Seaford Meadows', 'Active', 'Greenfields Fibre', '', ''),
(307, 5114, 'Smithfield', 'Active', 'Greenfields Fibre', '', ''),
(308, 5114, 'Smithfield', 'Active', 'Greenfields Fibre', '', ''),
(309, 5114, 'Smithfield', 'Active', 'Greenfields Fibre', '', ''),
(310, 5126, 'Surrey Downs', 'Active', 'Greenfields Fibre', '', ''),
(311, 3350, 'Alfredton', 'Active', 'Greenfields Fibre', '', ''),
(312, 3350, 'Alfredton', 'Active', 'Greenfields Fibre', '', ''),
(313, 3331, 'Bannockburn', 'Active', 'Greenfields Fibre', '', ''),
(314, 3977, 'Botanic Ridge', 'Active', 'Greenfields Fibre', '', ''),
(315, 3977, 'Botanic Ridge', 'Active', 'Greenfields Fibre', '', ''),
(316, 3058, 'Coburg', 'Active', 'Greenfields Fibre', '', ''),
(317, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(318, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(319, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(320, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(321, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(322, 3064, 'Craigieburn', 'Active', 'Greenfields Fibre', '', ''),
(323, 3977, 'Cranbourne', 'Active', 'Greenfields Fibre', '', ''),
(324, 3977, 'Cranbourne', 'Active', 'Greenfields Fibre', '', ''),
(325, 3977, 'Cranbourne', 'Active', 'Greenfields Fibre', '', ''),
(326, 3977, 'Cranbourne', 'Active', 'Greenfields Fibre', '', ''),
(327, 3977, 'Cranbourne East', 'Active', 'Greenfields Fibre', '', ''),
(328, 3977, 'Cranbourne East', 'Active', 'Greenfields Fibre', '', ''),
(329, 3977, 'Cranbourne East', 'Active', 'Greenfields Fibre', '', ''),
(330, 3977, 'Cranbourne East', 'Active', 'Greenfields Fibre', '', ''),
(331, 3977, 'Cranbourne West', 'Active', 'Greenfields Fibre', '', ''),
(332, 3977, 'Cranbourne West', 'Active', 'Greenfields Fibre', '', ''),
(333, 3977, 'Cranbourne West', 'Active', 'Greenfields Fibre', '', ''),
(334, 3136, 'Croydon', 'Active', 'Greenfields Fibre', '', ''),
(335, 3008, 'Docklands', 'Active', 'Greenfields Fibre', '', ''),
(336, 3754, 'Doreen', 'Active', 'Greenfields Fibre', '', ''),
(337, 3754, 'Doreen', 'Active', 'Greenfields Fibre', '', ''),
(338, 3754, 'Doreen', 'Active', 'Greenfields Fibre', '', ''),
(339, 3754, 'Doreen', 'Active', 'Greenfields Fibre', '', ''),
(340, 3076, 'Epping', 'Active', 'Greenfields Fibre', '', ''),
(341, 3076, 'Epping', 'Active', 'Greenfields Fibre', '', ''),
(342, 3180, 'Knoxfield', 'Active', 'Greenfields Fibre', '', ''),
(343, 3180, 'Knoxfield', 'Active', 'Greenfields Fibre', '', ''),
(344, 3180, 'Knoxfield', 'Active', 'Greenfields Fibre', '', ''),
(345, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(346, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(347, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(348, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(349, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(350, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(351, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(352, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(353, 3754, 'Mernda', 'Active', 'Greenfields Fibre', '', ''),
(354, 3931, 'Mornington', 'Active', 'Greenfields Fibre', '', ''),
(355, 3170, 'Mulgrave', 'Active', 'Greenfields Fibre', '', ''),
(356, 3030, 'Point Cook', 'Active', 'Greenfields Fibre', '', ''),
(357, 3850, 'Sale', 'Active', 'Greenfields Fibre', '', ''),
(358, 3171, 'Springvale', 'Active', 'Greenfields Fibre', '', ''),
(359, 3171, 'Springvale', 'Active', 'Greenfields Fibre', '', ''),
(360, 3029, 'Tarneit', 'Active', 'Greenfields Fibre', '', ''),
(361, 3616, 'Tatura', 'Active', 'Greenfields Fibre', '', ''),
(362, 3756, 'Wallan', 'Active', 'Greenfields Fibre', '', ''),
(363, 3750, 'Wollert', 'Active', 'Greenfields Fibre', '', ''),
(364, 3750, 'Wollert', 'Active', 'Greenfields Fibre', '', ''),
(365, 3750, 'Wollert', 'Active', 'Greenfields Fibre', '', ''),
(366, 3750, 'Wollert', 'Active', 'Greenfields Fibre', '', ''),
(367, 3024, 'Wyndham Vale', 'Active', 'Greenfields Fibre', '', ''),
(368, 3024, 'Wyndham Vale', 'Active', 'Greenfields Fibre', '', ''),
(369, 3063, 'Yuroke', 'Active', 'Greenfields Fibre', '', ''),
(370, 6164, 'Atwell', 'Active', 'Greenfields Fibre', '', ''),
(371, 6164, 'Aubin Grove', 'Active', 'Greenfields Fibre', '', ''),
(372, 6171, 'Baldivis', 'Active', 'Greenfields Fibre', '', ''),
(373, 6171, 'Baldivis', 'Active', 'Greenfields Fibre', '', ''),
(374, 6171, 'Baldivis', 'Active', 'Greenfields Fibre', '', ''),
(375, 6726, 'Cable Beach', 'Active', 'Greenfields Fibre', '', ''),
(376, 6725, 'Djugun', 'Active', 'Greenfields Fibre', '', ''),
(377, 6112, 'Harrisdale', 'Active', 'Greenfields Fibre', '', ''),
(378, 6110, 'Southern River', 'Active', 'Greenfields Fibre', '', ''),
(379, 6164, 'Success', 'Active', 'Greenfields Fibre', '', ''),
(380, 2914, 'Amaroo', 'Work commenced', 'Fibre', 'Sep-11', ''),
(381, 2913, 'Franklin', 'Work commenced', 'Fibre', 'Apr-12', ''),
(382, 2912, 'Gungahlin', 'Work commenced', 'Fibre', 'Feb-12', ''),
(383, 2914, 'Harrison', 'Work commenced', 'Fibre', 'May-12', ''),
(384, 2914, 'Harrison', 'Work commenced', 'Fibre', 'Apr-12', ''),
(385, 2911, 'Mitchell', 'Work commenced', 'Fibre', 'Apr-12', ''),
(386, 2913, 'Ngunnawal', 'Work commenced', 'Fibre', 'Sep-11', ''),
(387, 2913, 'Ngunnawal', 'Work commenced', 'Fibre', 'Sep-11', ''),
(388, 2913, 'Palmerston', 'Work commenced', 'Fibre', 'Mar-12', ''),
(389, 2602, 'Watson', 'Work commenced', 'Fibre', 'Apr-12', ''),
(390, 2753, 'Agnes Banks', 'Work commenced', 'Fibre', 'Sep-12', ''),
(391, 2350, 'Armidale', 'Work commenced', 'Fibre', 'Jul-11', ''),
(392, 2350, 'Armidale', 'Work commenced', 'Fibre', 'Jul-11', ''),
(393, 2144, 'Auburn', 'Work commenced', 'Fibre', 'Oct-12', ''),
(394, 2144, 'Auburn', 'Work commenced', 'Fibre', 'Nov-12', ''),
(395, 2144, 'Auburn', 'Work commenced', 'Fibre', 'Aug-12', ''),
(396, 2518, 'Bellambi', 'Work commenced', 'Fibre', 'Nov-12', ''),
(397, 2141, 'Berala', 'Work commenced', 'Fibre', 'Oct-12', ''),
(398, 2141, 'Berala', 'Work commenced', 'Fibre', 'Mar-12', ''),
(399, 2141, 'Berala', 'Work commenced', 'Fibre', 'Aug-12', ''),
(400, 2261, 'Berkeley Vale', 'Work commenced', 'Fibre', 'Apr-12', ''),
(401, 2261, 'Berkeley Vale', 'Work commenced', 'Fibre', 'Apr-12', ''),
(402, 2148, 'Blacktown', 'Work commenced', 'Fibre', 'Apr-12', ''),
(403, 2148, 'Blacktown', 'Work commenced', 'Fibre', 'Mar-12', ''),
(404, 2148, 'Blacktown', 'Work commenced', 'Fibre', 'Jan-12', ''),
(405, 2148, 'Blacktown', 'Work commenced', 'Fibre', 'Feb-12', ''),
(406, 2756, 'Bligh Park', 'Work commenced', 'Fibre', 'Dec-11', ''),
(407, 2450, 'Boambee', 'Work commenced', 'Fibre', 'Jun-12', ''),
(408, 2452, 'Boambee East', 'Work commenced', 'Fibre', 'Mar-12', ''),
(409, 2452, 'Boambee East', 'Work commenced', 'Fibre', 'Jun-12', ''),
(410, 2850, 'Bombira', 'Work commenced', 'Fibre', 'Nov-12', ''),
(411, 2533, 'Bombo', 'Work commenced', 'Fibre', 'Aug-11', ''),
(412, 2441, 'Bonville', 'Work commenced', 'Fibre', 'Mar-12', ''),
(413, 2765, 'Box Hill', 'Work commenced', 'Fibre', 'Oct-12', ''),
(414, 2765, 'Box Hill', 'Work commenced', 'Fibre', 'Apr-12', ''),
(415, 2530, 'Brownsville', 'Work commenced', 'Fibre', 'Sep-12', ''),
(416, 2850, 'Burrundulla', 'Work commenced', 'Fibre', 'Nov-12', ''),
(417, 2261, 'Chittaway Bay', 'Work commenced', 'Fibre', 'Apr-12', ''),
(418, 2261, 'Chittaway Point', 'Work commenced', 'Fibre', 'Apr-12', ''),
(419, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'Mar-12', ''),
(420, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'Apr-12', ''),
(421, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'Jun-12', ''),
(422, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'Aug-11', ''),
(423, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'Jul-11', ''),
(424, 2450, 'Coffs Harbour', 'Work commenced', 'Fibre', 'May-12', ''),
(425, 2505, 'Coniston', 'Work commenced', 'Fibre', 'Nov-12', ''),
(426, 2500, 'Coniston', 'Work commenced', 'Fibre', 'Nov-12', ''),
(427, 2518, 'Corrimal', 'Work commenced', 'Fibre', 'Nov-12', ''),
(428, 2430, 'Cundletown', 'Work commenced', 'Fibre', 'Oct-12', ''),
(429, 2530, 'Dapto', 'Work commenced', 'Fibre', 'Nov-12', ''),
(430, 2530, 'Dapto', 'Work commenced', 'Fibre', 'Sep-12', ''),
(431, 2530, 'Dapto', 'Work commenced', 'Fibre', 'Sep-12', ''),
(432, 2518, 'East Corrimal', 'Work commenced', 'Fibre', 'Nov-12', ''),
(433, 2250, 'East Gosford', 'Work commenced', 'Fibre', 'May-12', ''),
(434, 2250, 'East Gosford', 'Work commenced', 'Fibre', 'Apr-12', ''),
(435, 2258, 'Fountaindale', 'Work commenced', 'Fibre', 'Apr-12', ''),
(436, 2261, 'Glenning Valley', 'Work commenced', 'Fibre', 'Apr-12', ''),
(437, 2250, 'Gosford', 'Work commenced', 'Fibre', 'May-12', ''),
(438, 2250, 'Gosford', 'Work commenced', 'Fibre', 'Apr-12', ''),
(439, 2250, 'Gosford', 'Work commenced', 'Fibre', 'Sep-12', ''),
(440, 2753, 'Hobartville', 'Work commenced', 'Fibre', 'Sep-12', ''),
(441, 2140, 'Homebush', 'Work commenced', 'Fibre', 'Jul-12', ''),
(442, 2140, 'Homebush West', 'Work commenced', 'Fibre', 'Sep-12', ''),
(443, 2533, 'Jamberoo', 'Work commenced', 'Fibre', 'Aug-11', ''),
(444, 2750, 'Jamisontown', 'Work commenced', 'Fibre', 'Sep-12', ''),
(445, 2750, 'Jamisontown', 'Work commenced', 'Fibre', 'Sep-12', ''),
(446, 2530, 'Kanahooka', 'Work commenced', 'Fibre', 'Sep-12', ''),
(447, 2250, 'Kariong', 'Work commenced', 'Fibre', 'Nov-12', ''),
(448, 2533, 'Kiama', 'Work commenced', 'Fibre', 'Aug-11', ''),
(449, 2533, 'Kiama', 'Work commenced', 'Fibre', 'Aug-11', ''),
(450, 2533, 'Kiama Heights', 'Work commenced', 'Fibre', 'Aug-11', ''),
(451, 2261, 'Killarney Vale', 'Work commenced', 'Fibre', 'Apr-12', ''),
(452, 2261, 'Killarney Vale', 'Work commenced', 'Fibre', 'May-12', ''),
(453, 2747, 'Kingswood', 'Work commenced', 'Fibre', 'Apr-12', ''),
(454, 2256, 'Koolewong', 'Work commenced', 'Fibre', 'Oct-12', ''),
(455, 2530, 'Koonawarra', 'Work commenced', 'Fibre', 'Sep-12', ''),
(456, 2450, 'Korora', 'Work commenced', 'Fibre', 'Sep-12', ''),
(457, 2147, 'Lalor Park', 'Work commenced', 'Fibre', 'Mar-12', ''),
(458, 2141, 'Lidcombe', 'Work commenced', 'Fibre', 'Nov-12', ''),
(459, 2141, 'Lidcombe', 'Work commenced', 'Fibre', 'Dec-11', ''),
(460, 2141, 'Lidcombe', 'Work commenced', 'Fibre', 'Oct-12', ''),
(461, 2141, 'Lidcombe', 'Work commenced', 'Fibre', 'Nov-12', ''),
(462, 2753, 'Londonderry', 'Work commenced', 'Fibre', 'Sep-12', ''),
(463, 2261, 'Long Jetty', 'Work commenced', 'Fibre', 'Nov-12', ''),
(464, 2500, 'Mangerton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(465, 2500, 'Mangerton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(466, 2765, 'Marsden Park', 'Work commenced', 'Fibre', 'Aug-12', ''),
(467, 2530, 'Marshall Mount', 'Work commenced', 'Fibre', 'Nov-12', ''),
(468, 2250, 'Mount Elliot', 'Work commenced', 'Fibre', 'Nov-12', ''),
(469, 2500, 'Mount Saint Thomas', 'Work commenced', 'Fibre', 'Nov-12', ''),
(470, 2850, 'Mudgee', 'Work commenced', 'Fibre', 'Sep-12', ''),
(471, 2850, 'Mudgee', 'Work commenced', 'Fibre', 'Nov-12', ''),
(472, 2850, 'Mudgee', 'Work commenced', 'Fibre', 'Nov-12', ''),
(473, 2250, 'Narara', 'Work commenced', 'Fibre', 'Sep-12', ''),
(474, 2450, 'North Boambee Valley', 'Work commenced', 'Fibre', 'Jun-12', ''),
(475, 2450, 'North Boambee Valley', 'Work commenced', 'Fibre', 'May-12', ''),
(476, 2250, 'North Gosford', 'Work commenced', 'Fibre', 'Sep-12', ''),
(477, 2765, 'Oakville', 'Work commenced', 'Fibre', 'Oct-12', ''),
(478, 2750, 'Penrith', 'Work commenced', 'Fibre', 'Apr-12', ''),
(479, 2750, 'Penrith', 'Work commenced', 'Fibre', 'Nov-11', ''),
(480, 2530, 'Penrose', 'Work commenced', 'Fibre', 'Nov-12', ''),
(481, 2250, 'Point Clare', 'Work commenced', 'Fibre', 'Oct-12', ''),
(482, 2250, 'Point Frederick', 'Work commenced', 'Fibre', 'Apr-12', ''),
(483, 2148, 'Prospect', 'Work commenced', 'Fibre', 'Nov-12', ''),
(484, 2850, 'Putta Bucca', 'Work commenced', 'Fibre', 'Nov-12', ''),
(485, 2143, 'Regents Park', 'Work commenced', 'Fibre', 'Mar-12', ''),
(486, 2753, 'Richmond', 'Work commenced', 'Fibre', 'Sep-12', ''),
(487, 2753, 'Richmond', 'Work commenced', 'Fibre', 'Sep-11', ''),
(488, 2753, 'Richmond Lowlands', 'Work commenced', 'Fibre', 'Sep-12', ''),
(489, 2765, 'Riverstone', 'Work commenced', 'Fibre', 'Apr-12', ''),
(490, 2765, 'Riverstone', 'Work commenced', 'Fibre', 'Aug-12', ''),
(491, 2765, 'Riverstone', 'Work commenced', 'Fibre', 'Aug-11', ''),
(492, 2141, 'Rookwood', 'Work commenced', 'Fibre', 'Dec-11', ''),
(493, 2450, 'Sapphire Beach', 'Work commenced', 'Fibre', 'Sep-12', ''),
(494, 2452, 'Sawtell', 'Work commenced', 'Fibre', 'Mar-12', ''),
(495, 2762, 'Schofields', 'Work commenced', 'Fibre', 'Aug-12', ''),
(496, 2762, 'Schofields', 'Work commenced', 'Fibre', 'Aug-11', ''),
(497, 2147, 'Seven Hills', 'Work commenced', 'Fibre', 'Sep-12', ''),
(498, 2147, 'Seven Hills', 'Work commenced', 'Fibre', 'Nov-12', ''),
(499, 2261, 'Shelly Beach', 'Work commenced', 'Fibre', 'Nov-12', ''),
(500, 2250, 'Somersby', 'Work commenced', 'Fibre', 'Nov-12', ''),
(501, 2750, 'South Penrith', 'Work commenced', 'Fibre', 'Sep-12', ''),
(502, 2756, 'South Windsor', 'Work commenced', 'Fibre', 'Oct-11', ''),
(503, 2756, 'South Windsor', 'Work commenced', 'Fibre', 'Nov-11', ''),
(504, 2250, 'Springfield', 'Work commenced', 'Fibre', 'May-12', ''),
(505, 2135, 'Strathfield', 'Work commenced', 'Fibre', 'Jun-12', ''),
(506, 2140, 'Strathfield', 'Work commenced', 'Fibre', 'Jul-12', ''),
(507, 2135, 'Strathfield', 'Work commenced', 'Fibre', 'Jul-12', ''),
(508, 2430, 'Taree', 'Work commenced', 'Fibre', 'Oct-12', ''),
(509, 2430, 'Taree', 'Work commenced', 'Fibre', 'Sep-12', ''),
(510, 2430, 'Taree', 'Work commenced', 'Fibre', 'Oct-12', ''),
(511, 2430, 'Taree', 'Work commenced', 'Fibre', 'Sep-12', ''),
(512, 2250, 'Tascott', 'Work commenced', 'Fibre', 'Oct-12', ''),
(513, 2430, 'Tinonee', 'Work commenced', 'Fibre', 'Sep-12', ''),
(514, 2452, 'Toormina', 'Work commenced', 'Fibre', 'Feb-12', ''),
(515, 2452, 'Toormina', 'Work commenced', 'Fibre', 'Mar-12', ''),
(516, 2261, 'Tumbi Umbi', 'Work commenced', 'Fibre', 'Apr-12', ''),
(517, 2765, 'Vineyard', 'Work commenced', 'Fibre', 'Oct-12', ''),
(518, 2250, 'West Gosford', 'Work commenced', 'Fibre', 'May-12', ''),
(519, 2250, 'West Gosford', 'Work commenced', 'Fibre', 'Sep-12', ''),
(520, 2500, 'West Wollongong', 'Work commenced', 'Fibre', 'Nov-12', ''),
(521, 2756, 'Windsor', 'Work commenced', 'Fibre', 'Oct-11', ''),
(522, 2500, 'Wollongong', 'Work commenced', 'Fibre', 'Sep-12', ''),
(523, 2500, 'Wollongong', 'Work commenced', 'Fibre', 'Sep-12', ''),
(524, 2250, 'Wyoming', 'Work commenced', 'Fibre', 'Nov-12', ''),
(525, 810, 'Alawa', 'Work commenced', 'Fibre', 'May-12', ''),
(526, 812, 'Anula', 'Work commenced', 'Fibre', 'Sep-12', ''),
(527, 812, 'Anula', 'Work commenced', 'Fibre', 'May-12', ''),
(528, 820, 'Bayview', 'Work commenced', 'Fibre', 'Nov-12', ''),
(529, 810, 'Casuarina', 'Work commenced', 'Fibre', 'Apr-12', ''),
(530, 800, 'Darwin City', 'Work commenced', 'Fibre', 'Dec-11', ''),
(531, 800, 'Darwin City', 'Work commenced', 'Fibre', 'Jan-12', ''),
(532, 800, 'Darwin City', 'Work commenced', 'Fibre', 'Dec-11', ''),
(533, 800, 'Darwin City', 'Work commenced', 'Fibre', 'Jul-12', ''),
(534, 800, 'Darwin City', 'Work commenced', 'Fibre', 'Sep-12', ''),
(535, 820, 'East Point', 'Work commenced', 'Fibre', 'Sep-12', ''),
(536, 820, 'Eaton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(537, 820, 'Fannie Bay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(538, 812, 'Karama', 'Work commenced', 'Fibre', 'Nov-12', ''),
(539, 820, 'Larrakeyah', 'Work commenced', 'Fibre', 'Sep-12', ''),
(540, 812, 'Leanyer', 'Work commenced', 'Fibre', 'Apr-12', ''),
(541, 820, 'Ludmilla', 'Work commenced', 'Fibre', 'Nov-12', ''),
(542, 810, 'Lyons', 'Work commenced', 'Fibre', 'Jun-12', ''),
(543, 812, 'Malak', 'Work commenced', 'Fibre', 'Sep-12', ''),
(544, 812, 'Malak', 'Work commenced', 'Fibre', 'Nov-12', ''),
(545, 812, 'Marrara', 'Work commenced', 'Fibre', 'Sep-12', ''),
(546, 810, 'Moil', 'Work commenced', 'Fibre', 'May-12', ''),
(547, 810, 'Moil', 'Work commenced', 'Fibre', 'Sep-12', ''),
(548, 820, 'Parap', 'Work commenced', 'Fibre', 'Nov-12', ''),
(549, 820, 'Parap', 'Work commenced', 'Fibre', 'Sep-12', ''),
(550, 820, 'Stuart Park', 'Work commenced', 'Fibre', 'Sep-11', ''),
(551, 820, 'The Gardens', 'Work commenced', 'Fibre', 'Sep-12', ''),
(552, 820, 'The Narrows', 'Work commenced', 'Fibre', 'Nov-12', ''),
(553, 810, 'Tiwi', 'Work commenced', 'Fibre', 'Jun-12', ''),
(554, 810, 'Wagaman', 'Work commenced', 'Fibre', 'May-12', ''),
(555, 810, 'Wanguri', 'Work commenced', 'Fibre', 'Apr-12', ''),
(556, 820, 'Woolner', 'Work commenced', 'Fibre', 'Nov-12', ''),
(557, 812, 'Wulagi', 'Work commenced', 'Fibre', 'May-12', ''),
(558, 4814, 'Aitkenvale', 'Work commenced', 'Fibre', 'Aug-11', ''),
(559, 4700, 'Allenstown', 'Work commenced', 'Fibre', 'Nov-12', ''),
(560, 4007, 'Ascot', 'Work commenced', 'Fibre', 'Sep-12', ''),
(561, 4007, 'Ascot', 'Work commenced', 'Fibre', 'Sep-12', ''),
(562, 4007, 'Ascot', 'Work commenced', 'Fibre', 'Sep-12', ''),
(563, 4034, 'Aspley', 'Work commenced', 'Fibre', 'Nov-11', ''),
(564, 4034, 'Aspley', 'Work commenced', 'Fibre', 'Jun-12', ''),
(565, 4034, 'Aspley', 'Work commenced', 'Fibre', 'Jun-12', ''),
(566, 4300, 'Augustine Heights', 'Work commenced', 'Fibre', 'Oct-12', ''),
(567, 4014, 'Banyo', 'Work commenced', 'Fibre', 'May-12', ''),
(568, 4014, 'Banyo', 'Work commenced', 'Fibre', 'Sep-12', ''),
(569, 4300, 'Bellbird Park', 'Work commenced', 'Fibre', 'Oct-12', ''),
(570, 4300, 'Bellbird Park', 'Work commenced', 'Fibre', 'Dec-11', ''),
(571, 4300, 'Bellbird Park', 'Work commenced', 'Fibre', 'Apr-12', ''),
(572, 4304, 'Blackstone', 'Work commenced', 'Fibre', 'Nov-12', ''),
(573, 4035, 'Bridgeman Downs', 'Work commenced', 'Fibre', 'Oct-12', ''),
(574, 4035, 'Bridgeman Downs', 'Work commenced', 'Fibre', 'Jun-12', ''),
(575, 4304, 'Bundamba', 'Work commenced', 'Fibre', 'Nov-12', ''),
(576, 4870, 'Bungalow', 'Work commenced', 'Fibre', 'Aug-12', ''),
(577, 4870, 'Cairns City', 'Work commenced', 'Fibre', 'Sep-12', ''),
(578, 4870, 'Cairns City', 'Work commenced', 'Fibre', 'Aug-12', ''),
(579, 4870, 'Cairns North', 'Work commenced', 'Fibre', 'Sep-12', ''),
(580, 4034, 'Carseldine', 'Work commenced', 'Fibre', 'Oct-12', ''),
(581, 4810, 'Castle Hill', 'Work commenced', 'Fibre', 'Apr-12', ''),
(582, 4305, 'Coalfalls', 'Work commenced', 'Fibre', 'Nov-12', ''),
(583, 4301, 'Collingwood Park', 'Work commenced', 'Fibre', 'Apr-12', ''),
(584, 4814, 'Cranbrook', 'Work commenced', 'Fibre', 'Feb-12', ''),
(585, 4812, 'Currajong', 'Work commenced', 'Fibre', 'Sep-11', ''),
(586, 4303, 'Dinmore', 'Work commenced', 'Fibre', 'Nov-12', ''),
(587, 4009, 'Eagle Farm', 'Work commenced', 'Fibre', 'Sep-12', ''),
(588, 4740, 'East Mackay', 'Work commenced', 'Fibre', 'Aug-12', ''),
(589, 4740, 'East Mackay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(590, 4350, 'East Toowoomba', 'Work commenced', 'Fibre', 'Jan-12', ''),
(591, 4350, 'East Toowoomba', 'Work commenced', 'Fibre', 'Oct-11', ''),
(592, 4350, 'East Toowoomba', 'Work commenced', 'Fibre', 'Sep-11', ''),
(593, 4350, 'East Toowoomba', 'Work commenced', 'Fibre', 'Sep-12', ''),
(594, 4304, 'Ebbw Vale', 'Work commenced', 'Fibre', 'Nov-12', ''),
(595, 4300, 'Goodna', 'Work commenced', 'Fibre', 'Oct-11', ''),
(596, 4300, 'Goodna', 'Work commenced', 'Fibre', 'Dec-11', ''),
(597, 4812, 'Gulliver', 'Work commenced', 'Fibre', 'Aug-11', ''),
(598, 4007, 'Hamilton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(599, 4007, 'Hamilton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(600, 4007, 'Hamilton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(601, 4350, 'Harlaxton', 'Work commenced', 'Fibre', 'Mar-12', ''),
(602, 4814, 'Heatley', 'Work commenced', 'Fibre', 'Feb-12', ''),
(603, 4814, 'Heatley', 'Work commenced', 'Fibre', 'Aug-12', ''),
(604, 4011, 'Hendra', 'Work commenced', 'Fibre', 'Sep-12', ''),
(605, 4812, 'Hermit Park', 'Work commenced', 'Fibre', 'Sep-12', ''),
(606, 4305, 'Ipswich', 'Work commenced', 'Fibre', 'Nov-12', ''),
(607, 4305, 'Ipswich', 'Work commenced', 'Fibre', 'Oct-12', ''),
(608, 4503, 'Kallangur', 'Work commenced', 'Fibre', 'Sep-12', ''),
(609, 4503, 'Kallangur', 'Work commenced', 'Fibre', 'Nov-12', ''),
(610, 4817, 'Kirwan', 'Work commenced', 'Fibre', 'Aug-12', ''),
(611, 4503, 'Kurwongbah', 'Work commenced', 'Fibre', 'Sep-12', ''),
(612, 4740, 'Mackay', 'Work commenced', 'Fibre', 'Jul-12', ''),
(613, 4740, 'Mackay', 'Work commenced', 'Fibre', 'Aug-12', ''),
(614, 4350, 'Mount Kynoch', 'Work commenced', 'Fibre', 'Mar-12', ''),
(615, 4350, 'Mount Lofty', 'Work commenced', 'Fibre', 'Sep-11', ''),
(616, 4812, 'Mundingburra', 'Work commenced', 'Fibre', 'Aug-11', ''),
(617, 4812, 'Mysterton', 'Work commenced', 'Fibre', 'Aug-11', ''),
(618, 4812, 'Mysterton', 'Work commenced', 'Fibre', 'Sep-11', ''),
(619, 4303, 'New Chum', 'Work commenced', 'Fibre', 'Nov-12', ''),
(620, 4350, 'North Toowoomba', 'Work commenced', 'Fibre', 'Oct-11', ''),
(621, 4350, 'North Toowoomba', 'Work commenced', 'Fibre', 'Mar-12', ''),
(622, 4810, 'North Ward', 'Work commenced', 'Fibre', 'Apr-12', ''),
(623, 4810, 'North Ward', 'Work commenced', 'Fibre', 'May-12', ''),
(624, 4013, 'Northgate', 'Work commenced', 'Fibre', 'Sep-12', ''),
(625, 4013, 'Northgate', 'Work commenced', 'Fibre', 'Sep-12', ''),
(626, 4014, 'Nudgee', 'Work commenced', 'Fibre', 'May-12', ''),
(627, 4014, 'Nudgee Beach', 'Work commenced', 'Fibre', 'May-12', ''),
(628, 4012, 'Nundah', 'Work commenced', 'Fibre', 'Sep-12', ''),
(629, 4870, 'Parramatta Park', 'Work commenced', 'Fibre', 'Aug-12', ''),
(630, 4502, 'Petrie', 'Work commenced', 'Fibre', 'Sep-12', ''),
(631, 4812, 'Pimlico', 'Work commenced', 'Fibre', 'Aug-11', ''),
(632, 4812, 'Pimlico', 'Work commenced', 'Fibre', 'Sep-11', ''),
(633, 4008, 'Pinkenba', 'Work commenced', 'Fibre', 'Sep-12', ''),
(634, 4870, 'Portsmith', 'Work commenced', 'Fibre', 'Aug-12', ''),
(635, 4350, 'Prince Henry Heights', 'Work commenced', 'Fibre', 'Sep-11', ''),
(636, 4810, 'Railway Estate', 'Work commenced', 'Fibre', 'Aug-12', ''),
(637, 4810, 'Railway Estate', 'Work commenced', 'Fibre', 'Sep-12', ''),
(638, 4350, 'Rangeville', 'Work commenced', 'Fibre', 'Sep-12', ''),
(639, 4301, 'Redbank', 'Work commenced', 'Fibre', 'Oct-11', ''),
(640, 4301, 'Redbank', 'Work commenced', 'Fibre', 'Apr-12', ''),
(641, 4301, 'Redbank Plains', 'Work commenced', 'Fibre', 'Sep-12', ''),
(642, 4301, 'Redbank Plains', 'Work commenced', 'Fibre', 'Jun-12', ''),
(643, 4301, 'Redbank Plains', 'Work commenced', 'Fibre', 'Sep-12', ''),
(644, 4350, 'Redwood', 'Work commenced', 'Fibre', 'Sep-12', ''),
(645, 4350, 'Redwood', 'Work commenced', 'Fibre', 'Sep-11', ''),
(646, 4700, 'Rockhampton City', 'Work commenced', 'Fibre', 'Nov-12', ''),
(647, 4305, 'Sadliers Crossing', 'Work commenced', 'Fibre', 'Nov-12', ''),
(648, 4740, 'South Mackay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(649, 4350, 'South Toowoomba', 'Work commenced', 'Fibre', 'Jan-12', ''),
(650, 4810, 'South Townsville', 'Work commenced', 'Fibre', 'Aug-12', ''),
(651, 4700, 'The Range', 'Work commenced', 'Fibre', 'Nov-12', ''),
(652, 4350, 'Toowoomba City', 'Work commenced', 'Fibre', 'Oct-11', ''),
(653, 4350, 'Toowoomba City', 'Work commenced', 'Fibre', 'Jan-12', ''),
(654, 4810, 'Townsville City', 'Work commenced', 'Fibre', 'Aug-12', ''),
(655, 4810, 'Townsville City', 'Work commenced', 'Fibre', 'Mar-12', ''),
(656, 4810, 'Townsville City', 'Work commenced', 'Fibre', 'May-12', ''),
(657, 4814, 'Vincent', 'Work commenced', 'Fibre', 'Feb-12', ''),
(658, 4014, 'Virginia', 'Work commenced', 'Fibre', 'Sep-12', ''),
(659, 4810, 'West End', 'Work commenced', 'Fibre', 'Aug-12', ''),
(660, 4305, 'West Ipswich', 'Work commenced', 'Fibre', 'Nov-12', ''),
(661, 4700, 'West Rockhampton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(662, 4352, 'Withcott', 'Work commenced', 'Fibre', 'Sep-12', ''),
(663, 4305, 'Woodend', 'Work commenced', 'Fibre', 'Nov-12', ''),
(664, 4034, 'Zillmere', 'Work commenced', 'Fibre', 'May-12', ''),
(665, 5154, 'Aldgate', 'Work commenced', 'Fibre', 'Aug-12', ''),
(666, 5173, 'Aldinga', 'Work commenced', 'Fibre', 'Mar-12', ''),
(667, 5173, 'Aldinga Beach', 'Work commenced', 'Fibre', 'Aug-12', ''),
(668, 5173, 'Aldinga Beach', 'Work commenced', 'Fibre', 'Mar-12', ''),
(669, 5173, 'Aldinga Beach', 'Work commenced', 'Fibre', 'Mar-12', ''),
(670, 5084, 'Blair Athol', 'Work commenced', 'Fibre', 'Sep-12', ''),
(671, 5155, 'Bridgewater', 'Work commenced', 'Fibre', 'Aug-12', ''),
(672, 5083, 'Broadview', 'Work commenced', 'Fibre', 'Sep-12', ''),
(673, 5062, 'Brown Hill Creek', 'Work commenced', 'Fibre', 'Feb-12', ''),
(674, 5204, 'Carrickalinga', 'Work commenced', 'Fibre', 'Sep-12', ''),
(675, 5152, 'Cleland', 'Work commenced', 'Fibre', 'Feb-12', ''),
(676, 5081, 'Collinswood', 'Work commenced', 'Fibre', 'Oct-12', ''),
(677, 5081, 'Collinswood', 'Work commenced', 'Fibre', 'Sep-12', ''),
(678, 5152, 'Crafers', 'Work commenced', 'Fibre', 'Feb-12', ''),
(679, 5152, 'Crafers West', 'Work commenced', 'Fibre', 'Feb-12', ''),
(680, 5008, 'Dudley Park', 'Work commenced', 'Fibre', 'Apr-12', ''),
(681, 5211, 'Encounter Bay', 'Work commenced', 'Fibre', 'Oct-12', ''),
(682, 5085, 'Enfield', 'Work commenced', 'Fibre', 'Sep-12', ''),
(683, 5082, 'Fitzroy', 'Work commenced', 'Fibre', 'Oct-11', ''),
(684, 5081, 'Gilberton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(685, 5211, 'Hayborough', 'Work commenced', 'Fibre', 'Oct-12', ''),
(686, 5089, 'Highbury', 'Work commenced', 'Fibre', 'Nov-11', ''),
(687, 5088, 'Holden Hill', 'Work commenced', 'Fibre', 'Nov-11', ''),
(688, 5090, 'Hope Valley', 'Work commenced', 'Fibre', 'Nov-11', ''),
(689, 5090, 'Hope Valley', 'Work commenced', 'Fibre', 'Nov-11', ''),
(690, 5098, 'Ingle Farm', 'Work commenced', 'Fibre', 'Feb-12', ''),
(691, 5098, 'Ingle Farm', 'Work commenced', 'Fibre', 'Nov-12', ''),
(692, 5084, 'Kilburn', 'Work commenced', 'Fibre', 'Sep-12', ''),
(693, 5211, 'McCracken', 'Work commenced', 'Fibre', 'Oct-12', ''),
(694, 5171, 'McLaren Flat', 'Work commenced', 'Fibre', 'Mar-12', ''),
(695, 5171, 'McLaren Vale', 'Work commenced', 'Fibre', 'Mar-12', ''),
(696, 5081, 'Medindie', 'Work commenced', 'Fibre', 'Nov-12', ''),
(697, 5081, 'Medindie Gardens', 'Work commenced', 'Fibre', 'Oct-12', ''),
(698, 5081, 'Medindie Gardens', 'Work commenced', 'Fibre', 'Nov-12', ''),
(699, 5169, 'Moana', 'Work commenced', 'Fibre', 'Jun-12', ''),
(700, 5092, 'Modbury', 'Work commenced', 'Fibre', 'Nov-11', ''),
(701, 5092, 'Modbury', 'Work commenced', 'Fibre', 'Oct-11', ''),
(702, 5155, 'Mount George', 'Work commenced', 'Fibre', 'Aug-12', ''),
(703, 5083, 'Nailsworth', 'Work commenced', 'Fibre', 'Oct-12', ''),
(704, 5083, 'Nailsworth', 'Work commenced', 'Fibre', 'Sep-12', ''),
(705, 5204, 'Normanville', 'Work commenced', 'Fibre', 'Sep-12', ''),
(706, 5082, 'Ovingham', 'Work commenced', 'Fibre', 'Oct-11', ''),
(707, 5096, 'Para Hills', 'Work commenced', 'Fibre', 'Oct-12', ''),
(708, 5096, 'Para Hills', 'Work commenced', 'Fibre', 'Nov-12', ''),
(709, 5093, 'Para Vista', 'Work commenced', 'Fibre', 'Feb-12', ''),
(710, 5151, 'Piccadilly', 'Work commenced', 'Fibre', 'Feb-12', ''),
(711, 5700, 'Port Augusta', 'Work commenced', 'Fibre', 'Sep-12', ''),
(712, 5700, 'Port Augusta', 'Work commenced', 'Fibre', 'Sep-12', ''),
(713, 5700, 'Port Augusta West', 'Work commenced', 'Fibre', 'Sep-12', ''),
(714, 5167, 'Port Noarlunga South', 'Work commenced', 'Fibre', 'Aug-12', ''),
(715, 5173, 'Port Willunga', 'Work commenced', 'Fibre', 'Mar-12', ''),
(716, 5082, 'Prospect', 'Work commenced', 'Fibre', 'Oct-11', ''),
(717, 5082, 'Prospect', 'Work commenced', 'Fibre', 'Sep-12', ''),
(718, 5082, 'Prospect', 'Work commenced', 'Fibre', 'Apr-12', ''),
(719, 5169, 'Seaford', 'Work commenced', 'Fibre', 'Aug-12', ''),
(720, 5169, 'Seaford', 'Work commenced', 'Fibre', 'Jun-12', ''),
(721, 5169, 'Seaford Meadows', 'Work commenced', 'Fibre', 'Aug-12', ''),
(722, 5169, 'Seaford Rise', 'Work commenced', 'Fibre', 'Aug-12', ''),
(723, 5083, 'Sefton Park', 'Work commenced', 'Fibre', 'Sep-12', ''),
(724, 5152, 'Stirling', 'Work commenced', 'Fibre', 'Feb-12', ''),
(725, 5152, 'Stirling', 'Work commenced', 'Fibre', 'Aug-12', ''),
(726, 5710, 'Stirling North', 'Work commenced', 'Fibre', 'Sep-12', ''),
(727, 5255, 'Strathalbyn', 'Work commenced', 'Fibre', 'Jul-12', ''),
(728, 5081, 'Vale Park', 'Work commenced', 'Fibre', 'Oct-12', ''),
(729, 5093, 'Valley View', 'Work commenced', 'Fibre', 'Oct-11', ''),
(730, 5093, 'Valley View', 'Work commenced', 'Fibre', 'Feb-12', ''),
(731, 5211, 'Victor Harbor', 'Work commenced', 'Fibre', 'Oct-12', ''),
(732, 5211, 'Victor Harbor', 'Work commenced', 'Fibre', 'Sep-12', ''),
(733, 5081, 'Walkerville', 'Work commenced', 'Fibre', 'Oct-12', ''),
(734, 5081, 'Walkerville', 'Work commenced', 'Fibre', 'Nov-12', ''),
(735, 5700, 'Wami Kata', 'Work commenced', 'Fibre', 'Sep-12', ''),
(736, 5203, 'Yankalilla', 'Work commenced', 'Fibre', 'Sep-12', ''),
(737, 7004, 'Battery Point', 'Work commenced', 'Fibre', 'Mar-12', ''),
(738, 7018, 'Bellerive', 'Work commenced', 'Fibre', 'Jul-12', ''),
(739, 7018, 'Bellerive', 'Work commenced', 'Fibre', 'Mar-12', ''),
(740, 7216, 'Binalong Bay', 'Work commenced', 'Fibre', 'Apr-12', ''),
(741, 7052, 'Blackmans Bay', 'Work commenced', 'Fibre', 'May-12', ''),
(742, 7052, 'Blackmans Bay', 'Work commenced', 'Fibre', 'Mar-12', ''),
(743, 7053, 'Bonnet Hill', 'Work commenced', 'Fibre', 'Sep-12', ''),
(744, 7005, 'Dynnyrne', 'Work commenced', 'Fibre', 'Feb-12', ''),
(745, 7005, 'Dynnyrne', 'Work commenced', 'Fibre', 'Mar-12', ''),
(746, 7250, 'East Launceston', 'Work commenced', 'Fibre', 'Mar-12', ''),
(747, 7250, 'East Launceston', 'Work commenced', 'Fibre', 'Mar-12', ''),
(748, 7000, 'Glebe', 'Work commenced', 'Fibre', 'Aug-12', ''),
(749, 7000, 'Hobart', 'Work commenced', 'Fibre', 'Mar-12', ''),
(750, 7000, 'Hobart', 'Work commenced', 'Fibre', 'Aug-12', ''),
(751, 7000, 'Hobart', 'Work commenced', 'Fibre', 'Mar-12', ''),
(752, 7018, 'Howrah', 'Work commenced', 'Fibre', 'Jul-12', ''),
(753, 7055, 'Huntingfield', 'Work commenced', 'Fibre', 'May-12', ''),
(754, 7248, 'Invermay', 'Work commenced', 'Fibre', 'Oct-12', ''),
(755, 7050, 'Kingston', 'Work commenced', 'Fibre', 'May-12', ''),
(756, 7050, 'Kingston', 'Work commenced', 'Fibre', 'May-12', ''),
(757, 7050, 'Kingston', 'Work commenced', 'Fibre', 'Sep-12', ''),
(758, 7250, 'Launceston', 'Work commenced', 'Fibre', 'Jan-12', ''),
(759, 7250, 'Launceston', 'Work commenced', 'Fibre', 'Mar-12', ''),
(760, 7015, 'Lindisfarne', 'Work commenced', 'Fibre', 'Sep-12', ''),
(761, 7015, 'Lindisfarne', 'Work commenced', 'Fibre', 'Sep-12', ''),
(762, 7018, 'Montagu Bay', 'Work commenced', 'Fibre', 'Mar-12', ''),
(763, 7018, 'Mornington', 'Work commenced', 'Fibre', 'Sep-12', ''),
(764, 7170, 'Mount Rumney', 'Work commenced', 'Fibre', 'Sep-12', ''),
(765, 7248, 'Mowbray', 'Work commenced', 'Fibre', 'Oct-12', ''),
(766, 7250, 'Newstead', 'Work commenced', 'Fibre', 'Mar-12', ''),
(767, 7250, 'Newstead', 'Work commenced', 'Fibre', 'Mar-12', ''),
(768, 7000, 'North Hobart', 'Work commenced', 'Fibre', 'Aug-12', ''),
(769, 7000, 'Queens Domain', 'Work commenced', 'Fibre', 'Aug-12', ''),
(770, 7250, 'Ravenswood', 'Work commenced', 'Fibre', 'Nov-12', ''),
(771, 7250, 'Riverside', 'Work commenced', 'Fibre', 'Sep-12', ''),
(772, 7015, 'Rose Bay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(773, 7018, 'Rosny', 'Work commenced', 'Fibre', 'Mar-12', ''),
(774, 7018, 'Rosny Park', 'Work commenced', 'Fibre', 'Mar-12', ''),
(775, 7005, 'Sandy Bay', 'Work commenced', 'Fibre', 'Feb-12', ''),
(776, 7322, 'Somerset', 'Work commenced', 'Fibre', 'Apr-12', ''),
(777, 7004, 'South Hobart', 'Work commenced', 'Fibre', 'Jun-11', ''),
(778, 7249, 'South Launceston', 'Work commenced', 'Fibre', 'Apr-12', ''),
(779, 7249, 'South Launceston', 'Work commenced', 'Fibre', 'Mar-12', ''),
(780, 7250, 'Trevallyn', 'Work commenced', 'Fibre', 'Sep-12', ''),
(781, 7018, 'Warrane', 'Work commenced', 'Fibre', 'Sep-12', ''),
(782, 7018, 'Warrane', 'Work commenced', 'Fibre', 'Mar-12', ''),
(783, 7250, 'Waverley', 'Work commenced', 'Fibre', 'Nov-12', ''),
(784, 7000, 'West Hobart', 'Work commenced', 'Fibre', 'Feb-12', ''),
(785, 7250, 'West Launceston', 'Work commenced', 'Fibre', 'Apr-12', ''),
(786, 3042, 'Airport West', 'Work commenced', 'Fibre', 'Sep-12', ''),
(787, 3042, 'Airport West', 'Work commenced', 'Fibre', 'May-12', ''),
(788, 3340, 'Bacchus Marsh', 'Work commenced', 'Fibre', 'Nov-11', ''),
(789, 3340, 'Bacchus Marsh', 'Work commenced', 'Fibre', 'Oct-11', ''),
(790, 3350, 'Bakery Hill', 'Work commenced', 'Fibre', 'Oct-12', ''),
(791, 3350, 'Ballarat Central', 'Work commenced', 'Fibre', 'Apr-12', ''),
(792, 3350, 'Ballarat Central', 'Work commenced', 'Fibre', 'Apr-12', ''),
(793, 3350, 'Ballarat East', 'Work commenced', 'Fibre', 'Oct-12', ''),
(794, 3350, 'Ballarat North', 'Work commenced', 'Fibre', 'Jul-12', ''),
(795, 3350, 'Ballarat North', 'Work commenced', 'Fibre', 'Sep-12', ''),
(796, 3350, 'Black Hill', 'Work commenced', 'Fibre', 'Nov-12', ''),
(797, 3350, 'Black Hill', 'Work commenced', 'Fibre', 'Jul-12', ''),
(798, 3350, 'Brown Hill', 'Work commenced', 'Fibre', 'Nov-12', ''),
(799, 3350, 'Brown Hill', 'Work commenced', 'Fibre', 'Oct-12', ''),
(800, 3056, 'Brunswick', 'Work commenced', 'Fibre', 'Mar-12', ''),
(801, 3056, 'Brunswick', 'Work commenced', 'Fibre', 'Mar-12', '');
INSERT INTO `lookup` (`id`, `postcode`, `suburb`, `status`, `service`, `commencment`, `completion`) VALUES
(802, 3057, 'Brunswick East', 'Work commenced', 'Fibre', 'Mar-12', ''),
(803, 3057, 'Brunswick East', 'Work commenced', 'Fibre', 'May-12', ''),
(804, 3055, 'Brunswick West', 'Work commenced', 'Fibre', 'Jun-12', ''),
(805, 3083, 'Bundoora', 'Work commenced', 'Fibre', 'Aug-12', ''),
(806, 3053, 'Carlton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(807, 3053, 'Carlton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(808, 3053, 'Carlton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(809, 3054, 'Carlton North', 'Work commenced', 'Fibre', 'Jun-12', ''),
(810, 3363, 'Creswick', 'Work commenced', 'Fibre', 'Sep-12', ''),
(811, 3340, 'Darley', 'Work commenced', 'Fibre', 'Mar-12', ''),
(812, 3041, 'Essendon Fields', 'Work commenced', 'Fibre', 'Sep-12', ''),
(813, 3350, 'Eureka', 'Work commenced', 'Fibre', 'Oct-12', ''),
(814, 3043, 'Gladstone Park', 'Work commenced', 'Fibre', 'May-12', ''),
(815, 3043, 'Gladstone Park', 'Work commenced', 'Fibre', 'Nov-12', ''),
(816, 3043, 'Gowanbrae', 'Work commenced', 'Fibre', 'May-12', ''),
(817, 3350, 'Invermay Park', 'Work commenced', 'Fibre', 'Sep-12', ''),
(818, 3042, 'Keilor Park', 'Work commenced', 'Fibre', 'Sep-12', ''),
(819, 3337, 'Kurunjang', 'Work commenced', 'Fibre', 'Sep-12', ''),
(820, 3337, 'Kurunjang', 'Work commenced', 'Fibre', 'Sep-12', ''),
(821, 3350, 'Lake Wendouree', 'Work commenced', 'Fibre', 'Apr-12', ''),
(822, 3340, 'Maddingley', 'Work commenced', 'Fibre', 'Nov-11', ''),
(823, 3000, 'Melbourne', 'Work commenced', 'Fibre', 'Sep-12', ''),
(824, 3337, 'Melton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(825, 3337, 'Melton', 'Work commenced', 'Fibre', 'Jun-12', ''),
(826, 3337, 'Melton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(827, 3338, 'Melton South', 'Work commenced', 'Fibre', 'Sep-12', ''),
(828, 3338, 'Melton South', 'Work commenced', 'Fibre', 'Jun-12', ''),
(829, 3337, 'Melton West', 'Work commenced', 'Fibre', 'Sep-12', ''),
(830, 3337, 'Melton West', 'Work commenced', 'Fibre', 'Nov-12', ''),
(831, 3082, 'Mill Park', 'Work commenced', 'Fibre', 'Nov-12', ''),
(832, 3082, 'Mill Park', 'Work commenced', 'Fibre', 'Mar-12', ''),
(833, 3082, 'Mill Park', 'Work commenced', 'Fibre', 'Sep-12', ''),
(834, 3082, 'Mill Park', 'Work commenced', 'Fibre', 'Apr-12', ''),
(835, 3350, 'Nerrina', 'Work commenced', 'Fibre', 'Nov-12', ''),
(836, 3350, 'Newington', 'Work commenced', 'Fibre', 'Apr-12', ''),
(837, 3052, 'Parkville', 'Work commenced', 'Fibre', 'Jun-12', ''),
(838, 3052, 'Parkville', 'Work commenced', 'Fibre', 'Mar-12', ''),
(839, 3054, 'Princes Hill', 'Work commenced', 'Fibre', 'Jun-12', ''),
(840, 3350, 'Redan', 'Work commenced', 'Fibre', 'Apr-12', ''),
(841, 3350, 'Soldiers Hill', 'Work commenced', 'Fibre', 'Jul-12', ''),
(842, 3752, 'South Morang', 'Work commenced', 'Fibre', 'Jan-12', ''),
(843, 3041, 'Strathmore Heights', 'Work commenced', 'Fibre', 'May-12', ''),
(844, 3043, 'Tullamarine', 'Work commenced', 'Fibre', 'Nov-12', ''),
(845, 3043, 'Tullamarine', 'Work commenced', 'Fibre', 'Sep-12', ''),
(846, 3043, 'Tullamarine', 'Work commenced', 'Fibre', 'May-12', ''),
(847, 3049, 'Westmeadows', 'Work commenced', 'Fibre', 'Nov-12', ''),
(848, 6153, 'Applecross', 'Work commenced', 'Fibre', 'Apr-12', ''),
(849, 6153, 'Applecross', 'Work commenced', 'Fibre', 'Feb-12', ''),
(850, 6153, 'Ardross', 'Work commenced', 'Fibre', 'Jun-12', ''),
(851, 6153, 'Ardross', 'Work commenced', 'Fibre', 'Apr-12', ''),
(852, 6209, 'Barragup', 'Work commenced', 'Fibre', 'Sep-12', ''),
(853, 6150, 'Bateman', 'Work commenced', 'Fibre', 'Nov-12', ''),
(854, 6530, 'Beachlands', 'Work commenced', 'Fibre', 'Sep-11', ''),
(855, 6530, 'Beresford', 'Work commenced', 'Fibre', 'Mar-12', ''),
(856, 6530, 'Beresford', 'Work commenced', 'Fibre', 'May-12', ''),
(857, 6530, 'Bluff Point', 'Work commenced', 'Fibre', 'Jun-12', ''),
(858, 6154, 'Booragoon', 'Work commenced', 'Fibre', 'Apr-12', ''),
(859, 6154, 'Booragoon', 'Work commenced', 'Fibre', 'Sep-12', ''),
(860, 6153, 'Brentwood', 'Work commenced', 'Fibre', 'Sep-12', ''),
(861, 6100, 'Burswood', 'Work commenced', 'Fibre', 'Jan-12', ''),
(862, 6100, 'Burswood', 'Work commenced', 'Fibre', 'Oct-11', ''),
(863, 6101, 'Carlisle', 'Work commenced', 'Fibre', 'Oct-12', ''),
(864, 6101, 'Carlisle', 'Work commenced', 'Fibre', 'Sep-12', ''),
(865, 6152, 'Como', 'Work commenced', 'Fibre', 'Nov-12', ''),
(866, 6152, 'Como', 'Work commenced', 'Fibre', 'Nov-12', ''),
(867, 6152, 'Como', 'Work commenced', 'Fibre', 'Sep-12', ''),
(868, 6210, 'Coodanup', 'Work commenced', 'Fibre', 'Sep-12', ''),
(869, 6210, 'Coodanup', 'Work commenced', 'Fibre', 'Nov-12', ''),
(870, 6532, 'Deepdale', 'Work commenced', 'Fibre', 'Mar-12', ''),
(871, 6210, 'Dudley Park', 'Work commenced', 'Fibre', 'Mar-12', ''),
(872, 6210, 'Dudley Park', 'Work commenced', 'Fibre', 'Nov-12', ''),
(873, 6101, 'East Victoria Park', 'Work commenced', 'Fibre', 'Dec-11', ''),
(874, 6101, 'East Victoria Park', 'Work commenced', 'Fibre', 'Oct-12', ''),
(875, 6101, 'East Victoria Park', 'Work commenced', 'Fibre', 'Oct-11', ''),
(876, 6209, 'Furnissdale', 'Work commenced', 'Fibre', 'Sep-12', ''),
(877, 6530, 'Geraldton', 'Work commenced', 'Fibre', 'Dec-11', ''),
(878, 6530, 'Geraldton', 'Work commenced', 'Fibre', 'Sep-11', ''),
(879, 6174, 'Golden Bay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(880, 6210, 'Greenfields', 'Work commenced', 'Fibre', 'Sep-12', ''),
(881, 6210, 'Greenfields', 'Work commenced', 'Fibre', 'Sep-12', ''),
(882, 6210, 'Greenfields', 'Work commenced', 'Fibre', 'Apr-12', ''),
(883, 6165, 'Hope Valley', 'Work commenced', 'Fibre', 'Nov-12', ''),
(884, 6530, 'Karloo', 'Work commenced', 'Fibre', 'Dec-11', ''),
(885, 6151, 'Kensington', 'Work commenced', 'Fibre', 'Sep-12', ''),
(886, 6105, 'Kewdale', 'Work commenced', 'Fibre', 'Sep-12', ''),
(887, 6100, 'Lathlain', 'Work commenced', 'Fibre', 'Sep-12', ''),
(888, 6100, 'Lathlain', 'Work commenced', 'Fibre', 'Aug-12', ''),
(889, 6210, 'Madora Bay', 'Work commenced', 'Fibre', 'Sep-12', ''),
(890, 6530, 'Mahomets Flats', 'Work commenced', 'Fibre', 'Sep-12', ''),
(891, 6210, 'Mandurah', 'Work commenced', 'Fibre', 'Feb-12', ''),
(892, 6210, 'Mandurah', 'Work commenced', 'Fibre', 'Mar-12', ''),
(893, 6210, 'Mandurah', 'Work commenced', 'Fibre', 'Nov-11', ''),
(894, 6210, 'Meadow Springs', 'Work commenced', 'Fibre', 'Apr-12', ''),
(895, 6210, 'Meadow Springs', 'Work commenced', 'Fibre', 'Jul-12', ''),
(896, 6167, 'Medina', 'Work commenced', 'Fibre', 'Nov-12', ''),
(897, 6153, 'Mount Pleasant', 'Work commenced', 'Fibre', 'Feb-12', ''),
(898, 6153, 'Mount Pleasant', 'Work commenced', 'Fibre', 'Sep-12', ''),
(899, 6153, 'Mount Pleasant', 'Work commenced', 'Fibre', 'Jun-12', ''),
(900, 6530, 'Mount Tarcoola', 'Work commenced', 'Fibre', 'Sep-12', ''),
(901, 6530, 'Mount Tarcoola', 'Work commenced', 'Fibre', 'Nov-12', ''),
(902, 6150, 'Murdoch', 'Work commenced', 'Fibre', 'Nov-12', ''),
(903, 6165, 'Naval Base', 'Work commenced', 'Fibre', 'Nov-12', ''),
(904, 6208, 'North Yunderup', 'Work commenced', 'Fibre', 'Sep-12', ''),
(905, 6535, 'Northampton', 'Work commenced', 'Fibre', 'Nov-12', ''),
(906, 6167, 'Orelia', 'Work commenced', 'Fibre', 'Nov-12', ''),
(907, 6208, 'Pinjarra', 'Work commenced', 'Fibre', 'Apr-12', ''),
(908, 6530, 'Rangeway', 'Work commenced', 'Fibre', 'Dec-11', ''),
(909, 6208, 'Ravenswood', 'Work commenced', 'Fibre', 'Jun-12', ''),
(910, 6103, 'Rivervale', 'Work commenced', 'Fibre', 'Jan-12', ''),
(911, 6103, 'Rivervale', 'Work commenced', 'Fibre', 'Aug-12', ''),
(912, 6532, 'Rudds Gully', 'Work commenced', 'Fibre', 'Mar-12', ''),
(913, 6210, 'San Remo', 'Work commenced', 'Fibre', 'Apr-12', ''),
(914, 6210, 'San Remo', 'Work commenced', 'Fibre', 'Sep-12', ''),
(915, 6210, 'Silver Sands', 'Work commenced', 'Fibre', 'Mar-12', ''),
(916, 6175, 'Singleton', 'Work commenced', 'Fibre', 'Sep-12', ''),
(917, 6151, 'South Perth', 'Work commenced', 'Fibre', 'Sep-12', ''),
(918, 6151, 'South Perth', 'Work commenced', 'Fibre', 'May-12', ''),
(919, 6151, 'South Perth', 'Work commenced', 'Fibre', 'Apr-12', ''),
(920, 6208, 'South Yunderup', 'Work commenced', 'Fibre', 'Sep-12', ''),
(921, 6530, 'Spalding', 'Work commenced', 'Fibre', 'Jun-12', ''),
(922, 6530, 'Spalding', 'Work commenced', 'Fibre', 'May-12', ''),
(923, 6530, 'Strathalbyn', 'Work commenced', 'Fibre', 'May-12', ''),
(924, 6530, 'Tarcoola Beach', 'Work commenced', 'Fibre', 'Sep-12', ''),
(925, 6530, 'Tarcoola Beach', 'Work commenced', 'Fibre', 'Nov-12', ''),
(926, 6530, 'Utakarra', 'Work commenced', 'Fibre', 'Mar-12', ''),
(927, 6530, 'Utakarra', 'Work commenced', 'Fibre', 'Dec-11', ''),
(928, 6100, 'Victoria Park', 'Work commenced', 'Fibre', 'Dec-11', ''),
(929, 6100, 'Victoria Park', 'Work commenced', 'Fibre', 'Nov-11', ''),
(930, 6100, 'Victoria Park', 'Work commenced', 'Fibre', 'Oct-11', ''),
(931, 6530, 'Wandina', 'Work commenced', 'Fibre', 'Nov-12', ''),
(932, 6166, 'Wattleup', 'Work commenced', 'Fibre', 'Nov-12', ''),
(933, 6530, 'Webberton', 'Work commenced', 'Fibre', 'May-12', ''),
(934, 6530, 'West End', 'Work commenced', 'Fibre', 'Sep-12', ''),
(935, 6150, 'Winthrop', 'Work commenced', 'Fibre', 'Oct-12', ''),
(936, 6530, 'Wonthella', 'Work commenced', 'Fibre', 'Mar-12', ''),
(937, 6530, 'Wonthella', 'Work commenced', 'Fibre', 'Dec-11', ''),
(938, 6530, 'Woorree', 'Work commenced', 'Fibre', 'Mar-12', ''),
(939, 6530, 'Woorree', 'Work commenced', 'Fibre', 'May-12', ''),
(940, 2340, 'Hallsville', 'Work commenced', 'Wireless', 'Jul-11', ''),
(941, 2352, 'Kootingal', 'Work commenced', 'Wireless', 'Jul-11', ''),
(942, 2353, 'Moonbi', 'Work commenced', 'Wireless', 'Jul-11', ''),
(943, 2340, 'Moore Creek', 'Work commenced', 'Wireless', 'Jul-11', ''),
(944, 2340, 'North Tamworth', 'Work commenced', 'Wireless', 'Jul-11', ''),
(945, 2340, 'Wallamore', 'Work commenced', 'Wireless', 'Jul-11', ''),
(946, 2340, 'Westdale', 'Work commenced', 'Wireless', 'Jul-11', ''),
(947, 822, 'Acacia Hills', 'Work commenced', 'Wireless', 'Aug-11', ''),
(948, 838, 'Berry Springs', 'Work commenced', 'Wireless', 'Aug-11', ''),
(949, 838, 'Berry Springs', 'Work commenced', 'Wireless', 'Aug-11', ''),
(950, 838, 'Berry Springs', 'Work commenced', 'Wireless', 'Aug-11', ''),
(951, 822, 'Blackmore', 'Work commenced', 'Wireless', 'Aug-11', ''),
(952, 841, 'Darwin River', 'Work commenced', 'Wireless', 'Aug-11', ''),
(953, 840, 'Dundee Beach', 'Work commenced', 'Wireless', 'Aug-11', ''),
(954, 822, 'Lambells Lagoon', 'Work commenced', 'Wireless', 'Aug-11', ''),
(955, 822, 'Livingstone', 'Work commenced', 'Wireless', 'Aug-11', ''),